diff --git a/copyright.txt b/copyright.txt index 2b3f1fe69..19fcb099e 100644 --- a/copyright.txt +++ b/copyright.txt @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/.version b/openlp/.version index 1fe2d3795..cd5ac039d 100644 --- a/openlp/.version +++ b/openlp/.version @@ -1 +1 @@ -1.9.12 +2.0 diff --git a/openlp/__init__.py b/openlp/__init__.py index 8b3a5dbc3..6d30697eb 100644 --- a/openlp/__init__.py +++ b/openlp/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/__init__.py b/openlp/core/__init__.py index 548a18c79..23f129ad0 100644 --- a/openlp/core/__init__.py +++ b/openlp/core/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -59,7 +60,7 @@ __all__ = [u'OpenLP', u'main'] log = logging.getLogger() -application_stylesheet = u""" +nt_repair_stylesheet = u""" QMainWindow::separator { border: none; @@ -127,8 +128,16 @@ class OpenLP(QtGui.QApplication): if FirstTimeForm(screens).exec_() == QtGui.QDialog.Accepted: Settings().setValue(u'general/has run wizard', QtCore.QVariant(True)) + # Correct stylesheet bugs if os.name == u'nt': + base_color = self.palette().color(QtGui.QPalette.Active, + QtGui.QPalette.Base) + application_stylesheet = \ + u'* {alternate-background-color: ' + \ + base_color.name() + ';}\n' + application_stylesheet += nt_repair_stylesheet self.setStyleSheet(application_stylesheet) + # show the splashscreen show_splash = Settings().value( u'general/show splash', QtCore.QVariant(True)).toBool() if show_splash: diff --git a/openlp/core/lib/__init__.py b/openlp/core/lib/__init__.py index 5966e39f9..68c7a0e75 100644 --- a/openlp/core/lib/__init__.py +++ b/openlp/core/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/db.py b/openlp/core/lib/db.py index 925d383e4..4df80ebe5 100644 --- a/openlp/core/lib/db.py +++ b/openlp/core/lib/db.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -25,6 +26,7 @@ # with this program; if not, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### + """ The :mod:`db` module provides the core database functionality for OpenLP """ @@ -83,11 +85,13 @@ def upgrade_db(url, upgrade): Provides a class for the metadata table. """ pass - load_changes = True + load_changes = False + tables = [] try: tables = upgrade.upgrade_setup(metadata) + load_changes = True except (SQLAlchemyError, DBAPIError): - load_changes = False + pass metadata_table = Table(u'metadata', metadata, Column(u'key', types.Unicode(64), primary_key=True), Column(u'value', types.UnicodeText(), default=None) @@ -97,6 +101,7 @@ def upgrade_db(url, upgrade): version_meta = session.query(Metadata).get(u'version') if version_meta is None: version_meta = Metadata.populate(key=u'version', value=u'0') + session.add(version_meta) version = 0 else: version = int(version_meta.value) @@ -109,17 +114,17 @@ def upgrade_db(url, upgrade): try: getattr(upgrade, u'upgrade_%d' % version) \ (session, metadata, tables) - version_meta.value = unicode(version) except (SQLAlchemyError, DBAPIError): log.exception(u'Could not run database upgrade script ' '"upgrade_%s", upgrade process has been halted.', version) break + version_meta.value = unicode(version) + session.commit() version += 1 else: version_meta = Metadata.populate(key=u'version', value=int(upgrade.__version__)) - session.add(version_meta) - session.commit() + session.commit() return int(version_meta.value), upgrade.__version__ diff --git a/openlp/core/lib/dockwidget.py b/openlp/core/lib/dockwidget.py index 519b8f92c..ab147fa00 100644 --- a/openlp/core/lib/dockwidget.py +++ b/openlp/core/lib/dockwidget.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -25,6 +26,7 @@ # with this program; if not, write to the Free Software Foundation, Inc., 59 # # Temple Place, Suite 330, Boston, MA 02111-1307 USA # ############################################################################### + """ Provide additional functionality required by OpenLP from the inherited QDockWidget. diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index da6f2f24a..52e06bc78 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/formattingtags.py b/openlp/core/lib/formattingtags.py index 4e418f867..26ae397a4 100644 --- a/openlp/core/lib/formattingtags.py +++ b/openlp/core/lib/formattingtags.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/htmlbuilder.py b/openlp/core/lib/htmlbuilder.py index b36401fc4..7230f1b17 100644 --- a/openlp/core/lib/htmlbuilder.py +++ b/openlp/core/lib/htmlbuilder.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/imagemanager.py b/openlp/core/lib/imagemanager.py index c6891db33..8062bf646 100644 --- a/openlp/core/lib/imagemanager.py +++ b/openlp/core/lib/imagemanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -125,7 +126,9 @@ class Image(object): self.priority = Priority.Normal self.source = source self.background = background - self.timestamp = os.stat(path).st_mtime + self.timestamp = 0 + if os.path.exists(path): + self.timestamp = os.stat(path).st_mtime self.secondary_priority = Image.secondary_priority Image.secondary_priority += 1 @@ -295,9 +298,11 @@ class ImageManager(QtCore.QObject): # Check if the there are any images with the same path and check if the # timestamp has changed. for image in self._cache.values(): - if image.path == path and image.timestamp != os.stat(path).st_mtime: - image.timestamp = os.stat(path).st_mtime - self._resetImage(image) + if os.path.exists(path): + if image.path == path and \ + image.timestamp != os.stat(path).st_mtime: + image.timestamp = os.stat(path).st_mtime + self._resetImage(image) # We want only one thread. if not self.imageThread.isRunning(): self.imageThread.start() diff --git a/openlp/core/lib/listwidgetwithdnd.py b/openlp/core/lib/listwidgetwithdnd.py index c2d9c1ed4..2a2ae8158 100644 --- a/openlp/core/lib/listwidgetwithdnd.py +++ b/openlp/core/lib/listwidgetwithdnd.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/mediamanageritem.py b/openlp/core/lib/mediamanageritem.py index ce0797240..8e1107f1a 100644 --- a/openlp/core/lib/mediamanageritem.py +++ b/openlp/core/lib/mediamanageritem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -253,9 +254,11 @@ class MediaManagerItem(QtGui.QWidget): shortcuts=[QtCore.Qt.Key_Plus, QtCore.Qt.Key_Equal], triggers=self.onAddClick) if self.addToServiceItem: + create_widget_action(self.listView, separator=True) create_widget_action(self.listView, text=translate( 'OpenLP.MediaManagerItem', '&Add to selected Service Item'), - icon=u':/general/general_add.png', triggers=self.onAddEditClick) + icon=u':/general/general_add.png', + triggers=self.onAddEditClick) self.addCustomContextActions() # Create the context menu and add all actions from the listView. self.menu = QtGui.QMenu() diff --git a/openlp/core/lib/mediaplayer.py b/openlp/core/lib/mediaplayer.py index 75f2c71d3..d065a8617 100644 --- a/openlp/core/lib/mediaplayer.py +++ b/openlp/core/lib/mediaplayer.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index eb3db3650..70261bad3 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/pluginmanager.py b/openlp/core/lib/pluginmanager.py index 8899f5846..3fdaec1f5 100644 --- a/openlp/core/lib/pluginmanager.py +++ b/openlp/core/lib/pluginmanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -85,6 +86,14 @@ class PluginManager(object): log.debug(u'finding plugins in %s at depth %d', unicode(plugin_dir), startdepth) for root, dirs, files in os.walk(plugin_dir): + # TODO Presentation plugin is not yet working on Mac OS X. + # For now just ignore it. The following code will hide it + # in settings dialog. + if sys.platform == 'darwin': + present_plugin_dir = os.path.join(plugin_dir, 'presentations') + # Ignore files from the presentation plugin directory. + if root.startswith(present_plugin_dir): + continue for name in files: if name.endswith(u'.py') and not name.startswith(u'__'): path = os.path.abspath(os.path.join(root, name)) diff --git a/openlp/core/lib/renderer.py b/openlp/core/lib/renderer.py index f16568f06..bb6daed82 100644 --- a/openlp/core/lib/renderer.py +++ b/openlp/core/lib/renderer.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/searchedit.py b/openlp/core/lib/searchedit.py index 742f51084..ca93d77ba 100644 --- a/openlp/core/lib/searchedit.py +++ b/openlp/core/lib/searchedit.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/serviceitem.py b/openlp/core/lib/serviceitem.py index a5b9c524b..167c1cbad 100644 --- a/openlp/core/lib/serviceitem.py +++ b/openlp/core/lib/serviceitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -451,14 +452,27 @@ class ServiceItem(object): except IndexError: return u'' - def get_frame_path(self, row=0): + def get_frame_path(self, row=0, frame=None): """ Returns the path of the raw frame """ - try: - return self._raw_frames[row][u'path'] - except IndexError: - return u'' + if not frame: + try: + frame = self._raw_frames[row] + except IndexError: + return u'' + if self.is_image(): + path_from = frame[u'path'] + else: + path_from = os.path.join(frame[u'path'], frame[u'title']) + return path_from + + def remove_frame(self, frame): + """ + Remove the soecified frame from the item + """ + if frame in self._raw_frames: + self._raw_frames.remove(frame) def get_media_time(self): """ @@ -495,3 +509,17 @@ class ServiceItem(object): self._new_item() self.render() + def remove_invalid_frames(self, invalid_paths=None): + """ + Remove invalid frames, such as ones where the file no longer exists. + """ + if self.uses_file(): + for frame in self.get_frames(): + if self.get_frame_path(frame=frame) in invalid_paths: + self.remove_frame(frame) + + def validate(self): + """ + Validates this service item + """ + return bool(self._raw_frames) diff --git a/openlp/core/lib/settings.py b/openlp/core/lib/settings.py index 6d144cf53..082ef0fc6 100644 --- a/openlp/core/lib/settings.py +++ b/openlp/core/lib/settings.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/settingsmanager.py b/openlp/core/lib/settingsmanager.py index 619078e46..357b87352 100644 --- a/openlp/core/lib/settingsmanager.py +++ b/openlp/core/lib/settingsmanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/settingstab.py b/openlp/core/lib/settingstab.py index 27aef98cd..a5e30914c 100644 --- a/openlp/core/lib/settingstab.py +++ b/openlp/core/lib/settingstab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/spelltextedit.py b/openlp/core/lib/spelltextedit.py index 840365ecc..5b539e3ca 100644 --- a/openlp/core/lib/spelltextedit.py +++ b/openlp/core/lib/spelltextedit.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/theme.py b/openlp/core/lib/theme.py index 78e1bf358..88b4b84b3 100644 --- a/openlp/core/lib/theme.py +++ b/openlp/core/lib/theme.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/toolbar.py b/openlp/core/lib/toolbar.py index d3ea137f8..bec3c1642 100644 --- a/openlp/core/lib/toolbar.py +++ b/openlp/core/lib/toolbar.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/lib/ui.py b/openlp/core/lib/ui.py index 3ecfa049e..fcf11f4f7 100644 --- a/openlp/core/lib/ui.py +++ b/openlp/core/lib/ui.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/resources.py.orig b/openlp/core/resources.py.orig new file mode 100644 index 000000000..db3ee1353 --- /dev/null +++ b/openlp/core/resources.py.orig @@ -0,0 +1,71800 @@ +# -*- coding: utf-8 -*- + +# Resource object code +# +# +# WARNING! All changes made in this file will be lost! + +from PyQt4 import QtCore + +qt_resource_data = "\ +\x00\x00\x02\xfa\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ +\x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ +\x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ +\xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ +\x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ +\x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ +\xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ +\x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ +\xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ +\xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ +\x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ +\xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ +\x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ +\x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ +\x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ +\x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ +\xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ +\x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ +\x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ +\x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ +\x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ +\x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ +\x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ +\x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ +\x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ +\xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ +\xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ +\x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ +\xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ +\xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ +\x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ +\xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ +\xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ +\xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ +\xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ +\x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ +\x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ +\x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ +\xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ +\xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ +\xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xe4\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x61\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x3f\x48\x1b\x71\x1c\xc5\x3f\x97\xe4\xee\ +\x42\x34\x69\x72\x36\xa5\xc9\x10\x84\x0a\x5a\x5b\xed\x2e\x08\x82\ +\x20\x62\xb3\x74\x56\x07\x43\x24\x22\x88\x10\x14\x1d\x5c\xdc\x9c\ +\x1c\x0c\x0e\x2e\x82\xa5\x55\xf7\x0a\x16\x0a\x0e\xa2\x2d\xa9\xd8\ +\x42\x6d\x11\xea\xa2\x55\x2f\x86\x84\xa8\xf1\xf4\xce\x24\xe6\xd7\ +\x49\x4b\xc1\xfe\x01\xdf\xf4\x96\xef\x87\xc7\xe3\xfb\x24\x21\x04\ +\x92\x24\xd9\x00\x0d\x78\x0c\xf8\xf9\xbb\x32\xc0\x36\x90\x13\x42\ +\x94\x01\x6c\x9a\xa6\xb5\x25\x12\x89\x45\x5d\xd7\xf7\xc4\x3f\xa4\ +\xeb\xfa\x5e\x22\x91\x58\xd4\x34\xad\x0d\xb0\x39\x00\x6d\x7c\x7c\ +\x3c\x12\xed\xe9\x79\xfe\x7e\x72\xd2\x5a\x5f\x5b\x13\x12\x48\x36\ +\x45\xc1\xe1\x74\x62\x77\x3a\x29\x99\x26\x45\xc3\xc0\xae\x28\x3c\ +\x68\x6d\x75\x47\xa3\xd1\x30\xc0\xc0\xc0\xc0\x27\x09\x68\xd6\x75\ +\xfd\xd5\xf6\xf4\xb4\x27\xb3\xba\xea\xf5\xd5\xd6\xa2\x7a\x3c\x38\ +\x35\x0d\x67\x55\x15\x76\x45\xa1\x64\x9a\x58\xb9\x1c\x66\x2e\xc7\ +\x65\x2e\xc7\xbd\x86\x06\xa3\xba\xb3\x33\x17\x0c\x06\xbb\x6c\x80\ +\x3f\x10\x08\x84\xbe\xcf\xce\x7a\x6d\x8a\x82\x10\x82\xfa\x48\x04\ +\xc9\xe1\xe0\xfc\xe8\x08\x43\xd7\x29\x16\x0a\xdc\x6b\x69\xa1\x5c\ +\x2e\x73\x55\x28\xf0\x63\x69\xa9\x32\x10\x08\x84\x00\xbf\xed\xba\ +\x99\x8b\x74\x9a\x92\x65\xf1\xa8\xbb\x1b\x4f\x4d\x0d\x4f\x7b\x7b\ +\xb9\x2a\x16\x29\x5d\x5e\xf2\x30\x1c\x46\x09\x06\xd1\xda\xdb\x39\ +\xdb\xdf\x27\xbf\xbb\x7b\xd3\xa8\xe3\xda\x88\x72\x99\x73\x5d\xe7\ +\xc3\xe8\x28\x9e\x85\x05\xee\x87\x42\x34\xf4\xf7\x63\x59\x16\x45\ +\x45\xc1\x4c\xa5\xf8\x36\x31\x81\x79\x70\x40\xc9\x34\x6f\x00\x37\ +\x09\x00\x90\x24\xb2\x9b\x9b\xbc\xe9\xe8\xe0\xf4\xf0\x10\x97\xdf\ +\x8f\xe2\xf3\x61\x65\xb3\x7c\x8c\xc5\x30\x76\x76\x00\x28\x9e\x9f\ +\xdf\x0e\x28\x1a\x06\x76\x55\x45\x08\x41\xa1\x50\x40\x96\x65\x64\ +\x59\x46\x55\x55\x64\xa7\x13\xd9\xe5\xa2\x70\x76\xf6\x67\x80\x99\ +\xcd\xe2\x6b\x6c\xa4\x69\x6e\x0e\xc9\xed\x26\x9f\x4a\x21\x0c\x03\ +\x77\x20\x40\xd3\xcc\x0c\x52\x65\x25\xd6\xf1\xf1\x6f\xa1\x6f\x00\ +\x36\x59\xc6\xe1\x72\x11\x8a\xc5\x90\x7d\x3e\x2e\x32\x19\xde\x76\ +\x75\xf1\x2e\x12\xe1\x2a\x9f\xc7\xe5\xf7\x53\x17\x8f\x83\x10\xb7\ +\x03\xe4\x8a\x0a\x8a\x86\xc1\xd6\xf0\x30\xe9\x64\x92\xf5\xbe\x3e\ +\xd2\x1b\x1b\xec\xaf\xac\xb0\x14\x0e\x93\x4d\x26\xf9\x3c\x34\x04\ +\x80\xea\xf5\xfe\xaa\xed\xfa\x91\xbe\x4e\x4d\x79\xbe\x4c\x4c\x78\ +\xf9\x0f\x3d\x1b\x19\xc9\x3f\x19\x1c\x3c\x09\x06\x83\x5d\x76\xe0\ +\xa2\xba\xba\xba\xf1\xc5\xe0\x60\x9d\x05\xa7\x27\x5b\x5b\xae\x2b\ +\xcb\x92\x6e\x3b\x54\xbd\x5e\xea\xe3\xf1\x4c\xf3\xd8\x98\xfa\x7a\ +\x7e\x7e\x65\x79\x79\xf9\x25\xdc\x71\x4c\xd2\x5d\xe7\xfc\x13\x60\ +\xdb\x4d\xfb\x64\xb3\xd1\xa8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x03\x1b\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x98\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x4d\x48\x14\x61\x18\xc7\xff\x33\xbb\xe3\ +\xa6\xd9\xd7\xda\x52\xec\xe6\xb4\xe4\x65\xc5\x18\x8c\x8e\x0a\x5d\ +\x0a\xbc\x04\x41\x84\x12\x1e\x42\x3a\x58\xd3\xa1\x6b\x08\x11\x1d\ +\xea\x12\x95\xd0\x61\xc3\xa2\x3a\xe4\x46\xe2\x1a\x24\x68\xac\x60\ +\x1f\x08\x65\xb5\xda\xd8\x84\x52\xe2\x7e\xb1\xd6\xba\xed\x36\xb9\ +\x33\xbb\xce\xec\xbe\x4f\x97\x35\x57\xac\x93\xcf\xf1\x85\xff\xef\ +\xe5\xe1\xff\x7b\x38\x22\x42\xe5\x70\x1c\x27\x00\x70\x02\x70\x01\ +\x70\x97\x9f\x93\x00\x96\x00\x64\x88\xc8\x5a\x17\x20\x22\x54\x40\ +\x9c\xa2\x28\x76\x06\x02\x81\x61\x55\x55\x15\x5d\xd7\xb3\xba\xae\ +\x67\x55\x55\x55\x02\x81\xc0\xb0\x28\x8a\x9d\x65\xf8\x5a\xae\x22\ +\xec\x93\x65\xb9\x57\xd3\xb4\x54\xae\x60\x51\xdf\x88\x42\xe7\x6e\ +\x8d\xd2\xf9\xdb\xa3\xf4\x60\x74\x86\x72\x05\x8b\x34\x4d\x4b\xc9\ +\xb2\xdc\x0b\xc0\xb7\x0a\x59\x05\x38\x65\x59\xee\x65\x8c\xb1\xc0\ +\xf8\x2c\x79\x3b\xee\xd0\xc1\xae\xbb\x34\x97\xc8\xd2\x97\xc8\x0f\ +\xea\xee\x9b\xa2\x96\x0b\x0f\xe9\xe9\xcb\x59\x62\x8c\xb1\x32\xc4\ +\xb9\xfa\xb9\x20\x8a\x62\xa7\xa6\x69\xa9\xa1\x89\xaf\xe4\x3c\x7e\ +\x83\x5a\x2e\xbf\x22\xf9\x7e\x98\x74\x5d\x27\xc6\x18\x5d\xea\x9f\ +\xa1\x93\x37\xdf\x52\xdb\xb5\x09\x1a\x9b\x8a\x92\xa6\x69\xa9\xf2\ +\x3a\x82\x0d\x80\xcb\xef\xf7\xf7\x34\x49\xcd\xcd\x67\xae\x0f\xa1\ +\xc6\xe3\x83\x8d\xe7\x90\x37\x09\x8b\x19\x1d\x93\xdf\x32\x98\x8e\ +\xe5\x60\x98\x25\xac\x14\x19\xa6\xe3\x3a\x3a\x5a\xbd\x5b\xeb\x3d\ +\x6e\xc7\xe0\xe0\x60\xc8\x0e\xc0\x25\x49\x92\x18\x9a\x8a\x21\x95\ +\x2b\xa2\xc4\x5b\xb0\x4a\x04\xbb\x8d\xc3\x42\xc6\x82\x6f\xaf\x80\ +\xf4\xb2\x09\xc3\x2c\x41\x2f\x14\x11\x4b\x33\x8c\x7f\x8a\x43\x92\ +\x24\x11\x80\xcb\x0e\xc0\xed\xf5\x7a\xeb\x1f\xf5\xbf\x47\xc9\x51\ +\x87\xbc\x59\x42\x32\x5b\x40\xda\x7f\x14\x3b\xb7\xd5\x80\x31\x86\ +\x9e\x81\x39\x54\x57\xd9\x50\xeb\xb0\x83\x00\xcc\xc4\x96\x71\xa4\ +\xad\xa1\x1e\x80\x9b\xaf\xac\xf4\x67\xce\xc2\x8e\x1a\x01\x00\xb0\ +\xbb\x7b\x0c\x86\x61\x00\x00\xaa\xec\x3c\xb6\x08\x36\x08\x76\x0e\ +\xb9\x42\x11\xc4\xad\x65\x78\x00\xc9\x48\x24\x12\x6f\x95\x44\xac\ +\x14\x74\x08\x36\xfe\x2f\x24\x9f\xcf\xc3\x30\x0c\xd4\x3a\xec\xa8\ +\xae\xe2\xf1\x4b\xb7\xa0\x19\x16\x0e\x1f\xa8\x43\x24\x12\x89\x03\ +\x48\xf2\x00\x96\x14\x45\x89\x1d\x3b\x24\x62\xff\x76\x20\x9a\x36\ +\xe0\xf3\xd4\xc2\xe3\xac\x86\x61\x18\x30\x0c\x03\x3c\xcf\x61\xe9\ +\xb7\x89\xac\x6e\xa1\x69\xdf\x76\xb4\x36\xee\x81\xa2\x28\xb1\xb2\ +\x9d\x6b\x35\x86\xc2\x51\xaa\x3a\x71\x8f\x76\x75\x3d\xa7\x70\x38\ +\x4c\xaa\xaa\xd2\xfc\xfc\x3c\x25\x12\x09\x42\x7b\x90\x84\xd3\xcf\ +\xe8\xcd\xe7\xef\xeb\x6a\xdc\x20\x52\x28\x1c\xa5\x86\xb3\xfd\x84\ +\x53\x03\x84\xf6\x20\x71\x1d\x41\x42\x7b\x90\x1a\x2f\x8e\xd0\x6b\ +\x75\x71\xa3\x48\xff\x52\x39\x6f\x16\x69\xf8\xdd\x02\x5d\x79\x3c\ +\x49\x57\x9f\x7c\xa0\x17\x1f\x63\x94\x37\x8b\xff\x57\x79\x33\xc7\ +\xc4\x6d\xf6\x9c\xff\x00\x21\x6f\xc6\x8f\xe7\x92\xcc\x66\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xfa\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ +\x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ +\x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ +\xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ +\x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ +\x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ +\xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ +\x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ +\xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ +\xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ +\x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ +\xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ +\x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ +\x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ +\x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ +\x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ +\xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ +\x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ +\x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ +\x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ +\x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ +\x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ +\x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ +\x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ +\x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ +\xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ +\xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ +\x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ +\xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ +\xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ +\x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ +\xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ +\xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ +\xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ +\xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ +\x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ +\x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ +\x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ +\xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ +\xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ +\xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x93\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x10\x49\x44\ +\x41\x54\x38\x8d\x8d\x92\x4b\x68\x9c\x75\x14\xc5\xcf\xff\xf5\x8d\ +\x93\x49\x32\x43\x6a\x66\x52\xd2\x58\xc7\x45\x68\x25\x0b\xa3\x55\ +\xd1\x2c\xc4\x2a\x84\x46\x48\xcc\x42\x1a\x28\x48\x5d\x84\x16\x77\ +\xa6\x0a\x55\x49\xc9\xba\x8b\x71\x11\x5d\xb8\x91\x88\xb3\xe9\xc6\ +\x8d\x68\x8b\x15\x22\x56\x8b\xb1\xd0\x2a\x34\x10\x1b\x32\x69\x43\ +\x26\x69\x27\x4e\xe6\x99\x7c\xf3\xfd\x5f\xd7\x45\xec\x03\x17\xe2\ +\x85\xb3\xbb\xe7\x70\xb8\xf7\xc7\x88\x08\xff\x77\x66\x67\x67\x5f\ +\xdf\x28\x6e\xbe\x1b\x6f\x4b\xe4\xcf\x9d\xfb\xf8\x6b\x00\xe0\xff\ +\x65\x98\x9f\x9f\x3f\x74\xe6\xcc\xfb\x73\x27\x4e\xbc\xbd\xb2\xba\ +\x7a\x67\x7b\x74\x74\xec\x72\xa9\x54\x1b\xaf\x56\x9a\xef\xdd\xdf\ +\x61\x8f\x36\x20\xa2\xee\xe9\xe9\xe9\x0f\x0a\x85\xc2\xf8\xc8\xc8\ +\x1b\x5d\x13\x13\xc7\xbb\x3e\xfb\xf4\x73\xcc\xff\xf8\x0b\x3d\x79\ +\xb0\x6f\x5b\x48\x7b\xf1\xca\x95\x9f\x2f\x5d\xbb\xf6\xdb\x0f\x44\ +\x74\xef\xbe\x09\x93\x93\x93\x1f\xe5\xbf\xca\x6f\x7a\xef\xfd\x8d\ +\x1b\xbf\xd3\xd8\xd8\x5b\xfe\x9d\x93\xa7\x1a\x67\xcf\x7e\xf8\xed\ +\xf0\xf0\xf0\x69\x00\x87\x00\x08\x22\xc2\xbf\x25\x01\xa0\x5c\xae\ +\xa8\x0b\x17\xbe\xeb\xf9\x75\xe1\xfa\xb2\xd6\xcd\x6f\xaa\xd5\xd2\ +\x1f\xde\xb7\x6a\xdd\xe9\xe4\xd6\xd4\xd4\xd4\x76\x36\x9b\xed\x29\ +\x97\xcb\x4f\xe5\x72\xb9\xbb\x03\x03\x03\xbb\x73\x73\x73\x07\xfb\ +\xfb\xfb\x2f\xcf\xcc\xcc\x78\x10\x11\xce\x9f\xff\x64\xf0\xc8\x0b\ +\xaf\xd2\xf1\x89\x93\x54\x2e\x57\x68\xe4\xd8\x9b\x34\xf8\xcc\x8b\ +\xb4\xb4\xf4\x27\xad\xac\x14\xe8\xd9\xc1\x97\xe8\xb5\xa3\xc7\xa8\ +\x52\xa9\xd0\xa5\x8b\xdf\xd3\xd3\x87\x07\x29\x97\xfb\x22\x45\x44\ +\x7b\x37\x18\x1a\x3a\x7a\x38\xde\x16\x5f\xd8\xd7\x95\x6c\x30\xc6\ +\xb9\x8e\x74\x4c\x4a\x65\xe3\x6d\x31\x13\xb5\x8c\x32\x3a\x92\x32\ +\x50\x46\x4a\x61\xc3\x30\x0c\x8c\xb6\x22\x99\xea\x3c\x90\xcf\x7f\ +\xb9\x2b\x01\xc0\x98\xa8\x9e\x4d\x3f\xd1\x11\xc4\x62\x1d\x42\x48\ +\xc8\x2e\x05\x06\x06\xc6\x38\xda\xdb\x01\x4f\x1e\xd6\x3a\x38\x67\ +\x21\x65\x0c\x61\xd8\xc2\xad\x5b\xcb\xf4\xe0\x8d\xa5\x52\xc9\xad\ +\xde\xbe\x83\x74\x3a\x8d\x46\xbd\x01\x6f\x3d\x36\x37\xee\xa2\x56\ +\xad\xa2\xb7\x77\x3f\x3c\x01\x9b\x1b\x1b\x88\x05\x0a\xdd\x8f\xef\ +\xc3\xe2\xcd\x9b\x28\xdd\xdb\x7a\x18\xc0\x39\x87\xb5\x0e\x3b\xcd\ +\x1d\x64\x32\x19\x58\xef\xc1\xb8\xc0\xf8\xf8\x28\xfa\xfa\x0e\x40\ +\xb7\x34\x1a\xf5\x26\x52\xa9\x24\x00\x06\xe7\x1c\x38\xdf\x43\xe8\ +\x1f\x90\x18\x92\x9d\x1d\x38\xf2\xfc\x73\x58\x2f\x16\x61\xb4\x41\ +\xd4\xd2\x58\x58\xb8\x8e\xc5\xc5\x25\x44\x91\x81\x75\x0e\x20\xa0\ +\x5e\xaf\x03\x8c\x01\xec\x11\x90\x86\x5e\x7e\xa5\xb7\x33\x99\x5a\ +\x57\x32\x80\x90\x0a\x89\x44\x02\xce\x11\x98\x10\x48\x77\x67\x50\ +\xab\x6f\x23\x0a\x5b\xb0\xce\xa1\x5a\xab\xc1\x18\x8d\x28\xac\xb7\ +\x5d\xbd\xfa\x53\x28\x01\x60\xbd\x58\x74\xc1\xd6\x5f\x08\x54\x0c\ +\x2a\x08\xa0\xa4\x82\x94\x0a\x9c\x0b\x28\x29\xb1\xdb\xac\x83\x73\ +\x06\x06\x42\x71\x6d\x15\x5a\x6b\x68\x13\x11\x80\x3d\x90\x32\x99\ +\xb4\x68\x4f\x74\x40\x48\xb5\x27\x21\xc1\x39\x07\x63\x0c\x42\x49\ +\x84\x2d\x0d\xe7\x2c\xac\x73\xe8\xee\xd9\x0f\x63\x35\x74\xb8\xc3\ +\x1e\x04\xac\xad\xad\x39\xa5\x14\xa4\x0c\x20\xa5\x84\x14\x12\x5c\ +\x08\x30\xc6\x50\x58\x59\x06\x79\x82\xf7\x0e\xd6\x59\x58\x6b\x60\ +\x8d\x81\x31\xfa\x61\x03\x63\xf4\x16\x88\xb2\xde\x39\xde\x68\xe8\ +\x24\x91\x8f\x93\xa7\xb8\x27\xff\x18\x88\x38\xe3\x2c\x62\x8c\x87\ +\x8c\xb1\x50\x08\xd9\x60\x8c\x45\xd6\x9a\x08\x00\xfe\x06\x5b\x7b\ +\x9e\x53\x59\xbb\x17\xfa\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\x27\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xa4\x49\x44\ +\x41\x54\x38\x8d\x95\x93\x3f\x88\x13\x41\x14\x87\xbf\x37\x13\x35\ +\x31\x82\x32\x1a\xb0\x50\xd0\x42\x83\xa4\x48\x25\xb8\x81\x2d\xdc\ +\xd6\x32\xb5\x81\x2c\xd8\x88\xb5\x08\x82\xa2\xd8\xda\x0a\x69\x52\ +\x5a\xa4\x10\x2c\x6c\x0e\xbc\xc3\x62\xab\x58\x6e\x3a\xe5\xe4\x0e\ +\x2c\x94\x5b\x53\x78\x1c\xa7\x71\x9e\x85\xd9\xcd\x5d\x5c\xa3\x3e\ +\x18\x78\xcc\xfb\xbd\x6f\x7e\xf3\x4f\xd2\x34\xbd\x24\x22\x86\x92\ +\x18\x8d\x46\xb7\xda\xed\xf6\x8b\x66\xb3\xb9\x53\x56\x07\x90\xc1\ +\x60\xf0\xd1\x5a\x7b\xac\xac\xa8\xaa\x35\xe0\x9b\x88\xfc\x28\xab\ +\x7b\xef\x67\x95\x46\xa3\x71\x34\x0c\x43\x27\x22\x0b\xea\x81\x1c\ +\xa8\x2d\x41\x8b\x3c\x49\x92\xcc\x2c\x89\xff\x2b\x44\x84\x4a\x9e\ +\xe4\xa0\x55\xc0\x27\x6e\x17\x80\xfb\x3b\xc7\x8b\xb9\x4a\xde\xfc\ +\x2f\x80\x5d\x3e\xcf\x35\x17\x16\x80\x55\x0e\x1e\x9e\xca\x00\x78\ +\x34\x75\x73\xc0\xa7\xb9\xe6\xe2\xdf\x01\x22\xc2\x94\x4d\x00\x8c\ +\x39\xb3\x04\x90\x72\xc0\xdd\x93\xef\x01\x78\xfa\xf5\x32\x22\xc2\ +\x17\x3e\x00\x60\xed\xb5\x43\x5b\x30\xc6\xa0\xaa\x8b\x43\x34\xc6\ +\x60\x8c\x61\x93\x8d\x79\xc3\x15\x00\xa6\x05\xc0\xa2\xaa\x85\x03\ +\x6b\x2d\xde\xfb\xc5\x21\xe6\x80\x97\x7b\xb7\x31\xc6\x14\x36\x5f\ +\x7f\x7f\x50\x58\x55\x55\xd6\xf7\x1f\xa3\xaa\xc5\xea\x00\x95\xc9\ +\x64\xb2\x5d\xad\x56\x7f\x7b\xca\x22\xc2\x6c\x36\xab\x59\x6b\xf7\ +\x45\xc4\xe7\x90\x83\x91\xa6\xe9\x56\x41\x2c\x1b\xbd\x5e\xef\x5e\ +\xbf\xdf\x3f\xbb\x4a\x53\xfa\x89\x00\xe2\x38\x3e\xdf\x6a\xb5\xae\ +\x7a\xef\x6f\xc6\x71\x7c\xe4\x4f\x3a\x59\xb6\x15\xc7\x71\xa3\xd3\ +\xe9\xdc\x49\x92\x64\x2f\xcb\xb2\xd3\xf5\x7a\x7d\x2d\x0c\xc3\x1b\ +\xe3\xf1\xf8\x2d\xf0\x7c\x38\x1c\xfa\x43\x0d\xb9\x15\x40\x82\x20\ +\x78\x16\x04\xc1\xab\x28\x8a\xce\x01\x75\xe7\xdc\x1b\xe7\x5c\x17\ +\x38\xd1\xed\x76\xaf\x47\x51\xf4\xce\x39\xd7\xe6\xd7\xf5\x8b\xaa\ +\xf2\x13\xa3\xf2\xb5\x50\x77\x5a\x2a\xf8\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\xb2\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x2f\x49\x44\ +\x41\x54\x78\xda\x5d\x93\x4b\x4f\x1b\x67\x14\x86\xdf\xb9\x9a\xf1\ +\x35\xd4\x30\x80\x5d\x30\x34\x76\x0a\xa9\x62\x64\xa5\xc5\x11\x5d\ +\x21\x58\x75\x89\xba\xe9\xb6\xab\x4a\x49\xb7\x2c\xf9\x05\x20\xf5\ +\x0f\xb0\xa8\x14\x2a\xb5\xdd\x77\x81\x2a\x41\x43\x85\x6c\xab\x44\ +\x56\x2c\x5a\xda\x92\xc4\xe3\x00\x1e\xc0\xf1\x95\xf1\x65\x3e\xcf\ +\x4c\xcf\x58\x05\x45\x79\xa5\x33\x33\x8b\x73\xde\xef\x9c\xe7\x7c\ +\xc3\x39\x8e\x83\xf7\xc5\x71\x9c\x08\x60\x8c\x62\x26\x12\x89\xdc\ +\x5f\x5e\x5e\x7e\x34\x3f\x3f\x3f\xab\xeb\xba\xb9\xb1\xb1\xf1\xe5\ +\xe1\xe1\x61\x7b\x73\x73\x73\x74\x7b\x7b\x5b\xe3\x00\xf0\x14\x13\ +\xff\x27\xcf\xad\xac\xac\x3c\x4a\x26\x93\xb3\xe9\x74\x3a\x3e\x39\ +\x39\x19\x56\x14\x45\xb8\x31\x36\x0c\x83\xcd\xcd\xcd\x7d\xa1\xaa\ +\xea\x77\x13\x13\x13\x23\x9a\xa6\xbd\x12\x01\x3c\x7c\x4a\x5a\x5c\ +\x5c\xbc\x2b\xcb\xb2\xc0\x18\x73\x3b\x80\x28\x8a\x10\x04\x01\x1c\ +\xcf\xa3\xd1\x71\xf0\xf6\xda\x42\x62\xfc\x03\x69\x78\x78\x38\xb1\ +\xbe\xbe\x7e\x8f\x0e\x93\xf2\xf9\xbc\xe2\x1a\xe8\xd3\xd3\xd3\x2a\ +\xb3\x1c\xe1\x58\xbb\xc6\xc7\x11\x05\xf5\x36\x50\x31\xfa\x00\x1c\ +\x32\x72\x10\x0e\xc8\x98\x19\x1f\x82\xcf\x2b\x83\xba\xba\xbf\xb6\ +\xb6\xf6\x72\x75\x75\x75\x76\x6b\x6b\x4b\xe3\x01\x5c\x64\x32\x99\ +\xe3\x8b\xa6\x85\x17\xe7\x0c\x27\x57\x16\x15\x49\xf8\xf4\xa3\x20\ +\xd2\xf7\x42\x88\xa9\x5e\x74\x2d\x1e\x27\x97\x7d\x34\xa9\x93\x54\ +\x2a\xf5\x89\xdb\xa1\xc7\xe3\x19\xe0\xe2\x09\xa2\x49\x06\x85\xa9\ +\xb0\x8c\x58\xd8\x83\xa0\x4f\xc2\x95\xe1\x90\x99\x89\x3f\x29\x04\ +\x32\x4b\xcd\x04\xf0\x60\xca\x0f\x9e\x46\x5a\x5a\x5a\x9a\xa5\x62\ +\x81\xa7\xd1\x5c\x0d\x9e\x3b\x3b\x3b\x99\x76\x5f\x44\xb3\x4b\xed\ +\xfa\x3d\xf8\xec\x6e\x10\xb1\x11\x1f\x44\x49\x40\xb9\xc6\x70\xf8\ +\xfa\x1a\xc5\xab\x1e\x25\xdb\x88\xc7\xe3\xa3\xd1\x68\xd4\x13\x08\ +\x04\x1c\x00\x83\x75\xa1\xd9\x6c\xfe\x3b\x24\x58\xb6\x47\x16\xf9\ +\xfc\x9b\x2e\xc6\x5a\x0e\x3e\x0c\xfb\x10\x1f\xf3\xa2\x66\x58\xb8\ +\xa8\x77\xd1\x30\x4c\x74\xba\x26\x02\x7e\xbf\x48\x1c\x86\x6a\xb5\ +\x9a\x3d\x18\x01\x18\xe8\xf5\xd5\xa5\xde\x48\x46\xbd\xb0\x6c\x8e\ +\xe8\x8b\xd0\x9b\x26\x4a\x95\x1e\xbc\xb2\x83\x87\x33\x3e\xa4\x62\ +\x0a\x46\x83\x22\x5a\x6d\x06\xbf\xdf\x3f\x54\x2e\x97\xad\x77\x0d\ +\x2e\xf7\xf7\xf7\x8f\x43\x44\x3b\x44\x8b\x49\xc7\x83\x78\x30\x19\ +\x80\x28\x00\x27\x7a\x07\xd9\x93\x26\xf2\xc5\x6b\xf4\x58\x1f\x9c\ +\xcd\x40\xdc\xa4\x4a\xa5\x62\xdd\x32\x70\x41\x1e\x1c\x1c\x14\x44\ +\xaa\xd0\xde\xf6\x90\x7b\xd5\x82\x56\xe9\x42\x0d\x4a\x70\xe1\x0a\ +\x94\x45\x6b\xc6\x79\xb5\x07\xbd\xde\x43\xa9\x54\x12\xaa\xd5\x2a\ +\x13\x05\x5e\xb8\xbd\xca\xa1\x50\xe8\x6b\xed\xcd\xf9\xd6\x2f\x2f\ +\x1a\x98\x1e\x51\xe0\x0c\x8c\x6d\x8c\xf8\x05\x8c\x87\x24\x74\xcd\ +\x3e\x4a\x04\xb2\xd5\xe9\x80\x9d\x3e\x73\x54\x6f\x91\xfb\xf9\xa7\ +\xef\xff\x1a\x40\xbc\x01\xd9\xed\xb4\xed\xe8\xb0\x87\x8f\xa9\x0a\ +\xb1\x70\x70\x5a\x69\xa3\x5c\x67\x38\xab\xba\x2c\x78\x44\xee\x88\ +\x50\x15\x07\x3f\xee\x14\x59\xa7\x92\x91\x7f\xcd\xb6\xbe\xb9\x35\ +\x70\x41\x9e\x9d\x96\x9a\x4c\x9a\xba\xf3\xfb\x71\x1d\xe9\x44\x10\ +\xc9\x29\x5a\x25\x0f\xd8\xb6\x0d\x57\xad\x56\x8b\xfd\x71\x74\xa4\ +\x67\xb2\xcf\x8b\xcf\xf6\x7e\x4b\x54\xeb\xc6\xfe\xbb\x06\x17\xbb\ +\xbb\xbb\x47\x8f\x9f\x7c\xfb\xb9\xe5\xf0\x50\x64\xde\x21\x50\xac\ +\x50\x28\xe8\x04\x58\xcb\x66\xb3\x7f\xd3\x7d\xc9\xd1\xc8\x2f\x41\ +\x6c\x29\xce\x1d\xd2\xad\x01\x7d\xb3\x85\x85\x85\x6c\xa3\xd1\xb0\ +\x72\xb9\xdc\x3f\x7b\x7b\x7b\xcf\x4d\xd3\x74\x93\x8b\x14\x67\x14\ +\x06\xe5\xdc\xfc\xee\x5f\x01\x48\xd0\xfb\x87\xff\x00\xdf\x34\x7e\ +\xa9\xf2\x5a\xd3\x9b\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x03\x3e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xbb\x49\x44\ +\x41\x54\x78\xda\xa5\x93\x7b\x48\x53\x51\x1c\xc7\x7f\x77\x0f\xbb\ +\xdb\x9c\x4a\x64\x39\xa6\xe6\x4a\xd4\xa4\x97\xf9\x8f\x4a\xe4\x1f\ +\x3d\xfc\xa7\x21\x54\xd0\x9f\xf9\x48\x87\x98\x42\x7f\xf6\x97\x42\ +\xff\xf5\x00\xf5\xfa\x60\x19\x81\xd0\x42\x7a\x61\x52\x08\x86\x4d\ +\xa8\x6d\x38\x1f\x9b\x33\x1f\x2c\x71\xb8\xcd\x2d\xf3\x6e\xb2\xdd\ +\xb9\xee\xbc\xbb\xf7\x74\xaf\xe1\xd2\xb2\xbf\x3c\x70\x38\xe7\xf7\ +\xfd\xfd\xce\x97\x0f\xe7\x77\x0e\x86\x10\x82\xfd\x0c\xc9\x5e\x62\ +\x5d\xa7\x43\x13\x07\xae\x14\x30\x38\x2b\xe2\x10\x87\x30\x91\x8d\ +\xe5\xe2\x96\xbe\xe6\x62\xf7\xdf\xb5\xbb\x08\x1a\xbb\xe7\x92\xa3\ +\x1c\xf3\xb0\x48\x93\xaa\x2b\xc8\x54\x62\x59\x87\x64\x20\xa4\x3d\ +\x64\x14\x66\xdd\x61\xf4\xd5\x43\x11\x52\x69\xfc\x9e\xbe\xbe\x38\ +\xfa\x8f\x81\xae\x6d\x52\x25\x4f\x95\x99\x6f\x9e\x57\xe7\xa4\x29\ +\x92\xc0\xea\x0c\x0a\x07\x19\x9e\x02\x3b\x9a\xae\x90\x94\x15\x1c\ +\x04\x2f\xf9\x13\x5e\x99\xbd\xce\x20\x03\x25\x86\x86\x53\xeb\xc2\ +\x39\xd1\xb6\x13\x9b\x24\xee\xad\xbb\x92\x93\xf3\x7d\x9d\x86\xc7\ +\xef\x9c\xa3\xa3\xb3\x81\x62\x77\x30\xac\x58\xf5\x61\xc9\xc6\x99\ +\xd5\xb2\x07\x6f\x9d\x16\x8a\x8e\x43\xed\x25\x4d\x1e\x8e\x58\x22\ +\x81\x2d\x10\x54\x77\x4c\xdd\x78\xf1\xd9\x87\x26\x96\xc2\xa8\x8a\ +\xb0\xbf\xe6\xc5\x2d\x32\xf4\x67\x85\xd6\x56\x24\xaa\xe9\xb2\xbd\ +\xb7\xbb\x28\xd4\x67\xf4\xa2\x6a\xc2\x5e\x21\xe8\xbf\x09\x30\x4c\ +\x2b\x20\x0e\x58\x56\xa2\x1c\x16\xd3\x21\x5e\x32\x5a\xad\x47\x9e\ +\xf7\xf7\xdf\xd7\xeb\xf5\x8d\x7e\xbf\x5f\xde\xd2\x02\x1c\x07\xcc\ +\xed\x81\x31\x1f\x5d\xc2\xd7\x02\xa0\x6b\x09\x82\x3b\x4f\x67\xe6\ +\x82\x11\x16\xd5\x10\xf6\x11\x21\x76\xb9\x5c\xf8\xd0\x47\xe3\x62\ +\x38\x42\xa3\x50\x28\x84\x0c\x06\xc3\x00\xaf\x4b\x85\x5c\x5d\xf7\ +\xb4\x39\x10\x61\x39\x5d\xcf\xf4\x64\x82\x20\x4d\x26\x55\x85\xe9\ +\x38\xe2\x30\xb4\x2c\xc4\xb1\x58\x4c\xa1\x52\xa9\x8e\x31\x2c\x0b\ +\x98\xe4\x00\xe4\xe7\xe7\x5f\xd8\x6e\x79\x9c\xe5\x16\x68\x86\x45\ +\xc9\x32\x49\x46\xe2\x12\x7f\x84\x63\xd3\x29\x32\x09\x92\x4b\xc5\ +\x1a\x21\x66\x59\x96\x1a\x33\x9b\x26\x22\xe1\x10\x6c\xd2\x51\x20\ +\x49\x72\x98\x97\x37\x85\x9c\x5c\x26\xe1\x92\xc4\xa2\xf9\x20\x15\ +\xb3\x25\x0c\x78\xc3\x71\xbe\x45\xe4\x89\x2c\x25\xd4\x76\xd9\x8e\ +\x17\x16\x16\x6e\xaa\x32\xd2\x2f\x1a\x47\x86\xa1\xa3\xbd\x0d\x70\ +\x1c\xaf\x12\x7c\xab\xbb\xec\xd9\x27\x33\x53\xc8\x65\x32\xea\x00\ +\xc0\x86\x12\x06\x2c\xc0\x93\xc1\x71\xbf\xf3\x7a\xa9\x7a\x51\x81\ +\x4b\x2f\xd7\xb6\x3b\x94\x5a\xad\x96\xe2\x8d\x40\xad\x56\x43\x79\ +\x79\x39\x7d\xab\x67\x4a\x9c\x8a\x4b\xf3\x2a\x4b\x54\x8b\x1f\xac\ +\xfe\x79\x31\x12\xf5\x27\x0c\xfa\x1a\xcf\x7c\x5b\xf2\x51\x8f\xcc\ +\x0b\x41\x7f\xf3\xd5\xdc\x8d\xec\x0c\xfc\xf0\xce\x36\x6f\xd5\x34\ +\x9c\x63\xef\x56\xe6\x7a\x3f\x39\xd6\x7c\xcb\x6b\x1b\x6f\x7a\x9b\ +\x4e\x07\x76\xfd\x85\x67\x4d\x45\x83\x40\xd8\x82\x2b\x81\xa8\xb2\ +\xbe\x42\xe3\x86\x3d\xc6\xcb\x2f\x2b\x9e\x79\x0f\xb5\xc1\xd7\x7a\ +\x76\x3e\xa4\x5d\xb3\xa6\x73\x4a\xb6\xbd\x37\x99\x4c\x0c\x41\x10\ +\x21\x61\xff\xbf\xb9\xef\xef\xfc\x0b\xa5\xaf\x95\x23\x5d\x97\x84\ +\x4f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x5f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xdc\x49\x44\ +\x41\x54\x38\x8d\xa5\x53\x4d\x6b\x13\x51\x14\x3d\xf7\xa5\xf3\xc1\ +\x64\x66\x60\x5a\x5a\x4b\xfd\x28\x96\x66\x51\xb1\xc5\x56\x02\x82\ +\x74\x11\xc4\x65\xdd\xfa\x13\x8a\xb8\x70\xe9\x4a\x14\x7f\x41\x57\ +\x2e\x0a\x82\xe0\x4a\xb2\xad\xae\x84\x86\x22\x88\x46\xe2\x47\xc1\ +\xd8\x42\x95\x68\x28\xd1\x36\xe9\x64\xd2\x24\xf3\xf5\xde\x73\x65\ +\x6a\xed\x34\x28\xde\xdd\xbd\xe7\x70\xee\xb9\xef\x71\x48\x4a\x89\ +\xff\xa9\x81\x7f\x21\xd3\x02\x9d\xd4\xf4\xd4\x05\xdb\x31\x8d\x1f\ +\xcb\x6e\x1e\x00\x28\xc9\x01\xe5\x48\x87\x89\x99\xb3\xd3\xa3\xf3\ +\x63\xe3\x43\xf3\xce\x88\x75\xde\xb1\xec\x53\x43\xb6\xa3\x0d\xa6\ +\x1d\xbc\x7a\x51\x7e\xb3\xb2\x58\xc8\x1e\xeb\x60\xf6\xda\xf8\xe2\ +\x95\x4b\xb9\x25\x06\x05\x7e\x10\xa1\xe3\x07\xe8\xb4\x7c\x7c\xa9\ +\x79\x58\x6f\xd5\x50\xa9\x7e\x6b\xf4\x3d\x41\xb1\x14\xac\xbe\x7d\ +\x87\x46\xe8\xa2\x19\x37\xe1\x86\x4d\x08\x2e\x02\x44\xf8\xc8\x38\ +\x6d\x29\x6d\xe6\xf5\x15\xf0\x29\x50\x36\xbf\x57\x5e\xfb\x6a\x54\ +\x80\x86\xf7\x50\xf1\x01\x6d\x7c\x92\xf7\x65\x3c\xf9\xe4\xc4\x65\ +\xaf\xd4\xb9\xd3\x57\xc0\x1e\xb6\x42\xb5\x50\x2f\x76\x1f\x87\xb7\ +\xff\xc4\x4c\xd2\x11\x30\x4e\x7d\x05\x0c\xa6\x33\x22\x50\x12\xa6\ +\xa5\x4c\xa6\xa7\xe2\x1e\xc6\x92\x48\x9c\x4b\x76\x0c\x84\x38\x8c\ +\x28\x12\x07\x3f\x97\xc8\x6a\x86\x5d\x70\xc1\x13\x05\xf6\xa2\x7d\ +\x74\xa2\x6e\xaf\x4f\x3c\xa1\x11\xb4\xc1\xa5\x38\x34\xcb\xed\x90\ +\x59\x5d\x43\xa6\xbe\xa1\x4e\x86\xf1\xc1\xde\x44\x07\x6e\xd0\x42\ +\x2c\xe2\x5e\x9f\x79\x40\xd7\x47\xb7\xe7\xaa\xe9\x09\x94\x54\x23\ +\x7c\xe8\x7f\xf6\xb5\x23\x0e\xe6\xf2\x34\xcc\xce\xe1\xde\x7e\x05\ +\xd3\xc1\x06\x46\xe2\x1d\xda\xfa\x85\x05\xbb\xc8\x96\xbf\x96\x2c\ +\x63\x96\xc1\x1a\xc3\x4b\x4f\x13\x37\x8f\x08\xd4\xb7\xf1\x74\x61\ +\xe6\x6a\xb6\x3c\x55\x84\xb7\xee\xc6\xed\x48\xde\x05\x00\x22\x32\ +\x00\x2c\xd7\x32\x28\x8a\x3d\xb2\xf9\x2e\xdf\x04\xd0\x22\x22\x26\ +\xa5\x14\xbd\x2c\x9c\xbe\xa5\x5e\x4c\x4f\x89\x1b\x03\x67\x10\xd6\ +\x1e\xf1\x67\xf5\x3c\x9e\x4b\x29\xfd\xc4\x97\xfc\xad\x0e\x85\x89\ +\x88\x52\x00\x08\x00\x97\x7f\x99\xf3\x9f\xf1\xc3\xc9\xfa\x1d\x76\ +\x03\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x4e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ +\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xcb\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x3b\x6b\x94\x41\x14\x86\x9f\xd9\x8b\xab\ +\x59\x51\xd0\x20\x44\x4c\xd0\x34\xb1\xd5\xb5\x54\x74\xff\x82\x58\ +\x68\x97\xff\x62\x1f\x82\x82\xbf\xc1\x26\x76\x5e\xd0\x5a\x12\xc4\ +\x2d\x04\x6d\xc3\x4a\x10\x89\x49\x0a\x43\x76\xbf\x6f\xe6\xcc\x39\ +\xc7\xe2\xcb\xae\xab\xbb\xa9\x32\xcd\x19\x86\x79\xdf\x79\xce\x65\ +\x82\xbb\x73\x9a\xd5\x18\x6d\x5e\x3c\x7a\xf8\x39\xa6\xd4\x31\x35\ +\x4c\x33\x26\x19\xcb\x82\xa5\x2a\x6a\x4a\xa8\x64\x54\x12\x75\xc9\ +\xbd\xa7\xfd\xfe\x9d\x7f\x0c\x8a\xa2\xec\x74\x6f\x5c\xc7\x73\x25\ +\x56\x49\x68\x4c\x68\x8a\xe4\x18\xd1\xb2\x8a\x52\x96\x7c\xfc\xb5\ +\xd7\x99\x22\x30\x11\x2c\x46\x4c\x15\xcb\x19\x4d\x52\x11\x48\xc6\ +\xb2\x1e\x9f\x2b\xa8\xe2\x66\xd3\x29\x98\x48\xf5\x82\x64\xf6\x06\ +\x03\xce\xb8\x71\x54\x94\xb8\x1b\x97\xcc\xb1\x9c\xab\xd4\xfe\x33\ +\xa8\x8d\x36\x2a\x82\xc6\xc8\xef\xc1\x11\x2b\x8f\x9f\x90\xe7\xda\ +\x2c\x76\xbb\x5c\xb9\x75\x9b\x83\xe1\x90\xfd\x61\xc1\x5e\x51\x50\ +\x26\x39\x89\x20\x23\x65\xc4\x5b\x67\xa9\xb9\xb1\x74\xf7\x1e\x87\ +\xdf\xfb\x5c\xed\x74\xb8\xb0\xb0\x40\xad\xd9\xc4\xd5\xf8\xf2\xfc\ +\xd9\x09\x04\x59\x28\x8a\x82\xa5\xfb\x0f\x28\xf7\x0f\xb8\xb8\xb8\ +\x48\xa3\x56\x67\x77\x6b\x8b\xd6\xb9\x39\x5a\xed\xf3\xec\x7c\x78\ +\x4f\xdd\x99\x6d\x60\x22\x88\x2a\x36\x1c\xd2\xdf\xd8\xe0\xa0\xd7\ +\x23\xa8\xd2\xbe\x3c\xcf\xce\xbb\xb7\xec\x6e\x6e\x32\xbf\x72\x93\ +\x5a\x4a\xfc\x95\x4f\xa4\xa0\x22\x34\xca\x92\x1f\xaf\x36\x68\xba\ +\xf3\xf3\xcd\x6b\x5c\x15\x95\x8c\xe7\xcc\xe0\xeb\x37\x72\x4a\xd4\ +\x43\xc0\x42\x98\x5d\x03\x8d\x11\xcc\x31\x53\x5c\xab\xd6\x8d\xe6\ +\xc2\x44\x70\xc0\x00\x9f\x45\x60\x22\x68\x19\x71\x77\xdc\x6c\x6c\ +\x50\xb5\x4f\xb1\x63\xb1\x86\x80\xcf\x26\xa8\xe6\x80\x91\x81\x29\ +\xa6\x86\xb9\x57\xe2\x10\xc6\x51\x4f\xaa\xc1\xb5\xd5\x55\xda\xcb\ +\xcb\x30\x81\x39\x19\x1d\x38\xdc\xde\xe6\xd3\xfa\xfa\xb4\x41\xc3\ +\xbd\xf7\x72\x6d\x6d\x3c\xe3\x0e\x78\x08\x63\xa1\x8f\x08\x80\x46\ +\x08\xbd\xd1\xbd\x70\xda\xef\xfc\x07\x11\x4a\x6f\x13\xfe\x0f\xc3\ +\x88\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x16\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ +\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x93\x49\x44\ +\x41\x54\x38\x8d\xa5\x91\x4f\x6b\x13\x41\x18\x87\x9f\xdd\x9d\x92\ +\xcd\x6e\x34\x69\xd5\x50\x85\xb6\xf1\xcf\xa5\xa1\x88\x39\x45\x50\ +\xf0\xd6\x8b\x57\x3f\x81\x67\x69\x6f\xe6\xdc\xe3\x7c\x02\x11\x04\ +\x5b\xbf\x81\x87\x82\x20\x08\xde\xec\x41\x68\xa3\x10\x0a\x92\x08\ +\x42\x12\x30\xdd\x98\x6d\xe9\xba\x99\xcc\x8e\x07\x6b\x93\x1a\x2b\ +\xa5\x79\x4f\x2f\x03\xcf\xc3\x6f\xde\x9f\x65\x8c\x61\x92\xb1\x27\ +\xa2\x01\x21\xa5\x9c\x28\x82\x00\xa8\x54\x2a\xe7\x82\xa5\x94\xbf\ +\x05\x00\x8f\xd7\x3e\x52\xea\x6d\xe1\x25\x35\xda\x49\x01\xaf\x65\ +\xf0\xf3\x79\x7e\xe6\xbe\x70\x29\xf5\x9d\xf4\x8f\x79\x36\xf4\x3d\ +\x0e\xb5\x83\xd6\x86\x77\xcf\xee\x03\x23\x37\xf0\x54\x8f\xc4\xa9\ +\xd3\x4b\x39\x24\xfd\x00\x1d\x84\x64\xc3\x01\x3b\x3a\x62\xf6\xee\ +\x55\xc4\x8d\x88\x47\x33\x7b\xc4\xc6\x26\xc6\x39\xf9\x05\x80\xae\ +\x93\x61\x37\xf1\x21\x52\xc4\xfb\x9a\x42\x18\x33\xe5\x29\xca\xea\ +\x0e\x9f\x23\x9b\xd9\x2b\x55\xaa\x7b\x39\xfa\x08\x34\xc3\xb3\x1d\ +\x27\xd8\xb7\x7c\x3a\xba\x4c\xf6\x43\xcc\x85\x86\xe2\x6b\x56\x13\ +\x1c\xc6\x2c\x75\x1d\x4a\xcf\xf3\x84\xd9\x65\xde\x07\x39\x06\xb6\ +\xa0\x6f\x89\xf1\x04\xf5\xc0\x60\x5b\xf3\x5c\x54\x21\xc5\xd6\x2e\ +\x4d\xe3\xf2\x7a\xe1\x13\xd7\xdd\x27\xa8\xe5\x03\x5e\xbc\x99\x23\ +\x42\x60\xac\x51\x6a\x64\x75\x33\x2e\x00\xdb\x0f\x2b\x6c\x35\x5e\ +\xe1\x35\x37\x29\x14\x1f\xb0\xbe\x38\x43\xad\x7d\x0d\x3c\x43\xea\ +\x1f\x4d\x1c\x0b\xd2\x47\x02\x00\xbf\x53\xe5\xd6\xcd\x22\x07\xb7\ +\x9f\xd2\xe8\x0e\x70\x33\xa7\x57\x39\x96\x00\x63\xe8\x38\xd3\xd4\ +\x06\x8b\xf8\x4a\x90\xce\x88\xd3\xd8\x93\x82\xb7\x2b\x97\x87\xaf\ +\xab\x2f\xff\x0b\x8d\x09\xa4\x94\x67\x06\xfe\x1e\x0b\x58\x00\xe6\ +\x18\x56\x6a\x9d\x81\x33\x40\x02\x7c\xfb\x53\xca\xd4\x39\x03\xa8\ +\x5f\xd3\x56\x89\xec\x63\x12\x58\x4f\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x02\x02\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x7f\x49\x44\ +\x41\x54\x78\xda\x8d\x93\xbf\x4b\xc3\x40\x14\xc7\xdf\x5d\x0a\x71\ +\xa8\xfd\x0b\x04\x17\x07\x27\xff\x83\xe6\x7f\xd0\xfc\x27\x1d\x54\ +\x68\x37\x17\x57\x87\xee\x42\xe7\x80\x75\x11\x71\x76\xab\x4b\xea\ +\xa8\xad\x53\x88\xc1\xd0\xa9\x81\x24\x6d\x9e\xef\x85\x3b\xae\x77\ +\x45\xf0\xc1\x37\xef\xee\xfd\xf8\xbc\x97\x40\x04\x00\x9c\x90\xce\ +\xe0\x7f\x16\x23\xe2\xc7\x6e\xa0\xc3\xcd\xdf\x59\x16\x21\x02\x78\ +\x9e\x04\x29\x04\x08\x29\x41\xb0\x67\x71\x15\x79\x49\xb1\xc3\x6e\ +\x37\xa4\xdb\x1e\x00\x54\x4d\x6b\x59\x96\xc1\x62\xb9\x64\x90\x8a\ +\x0b\x7e\xe8\xfb\x29\xdd\xfb\x60\xec\x8b\x00\x3c\xd9\x03\x40\x6c\ +\xa7\xc4\x71\x0c\x41\x10\xd0\x16\x1e\xc5\xcd\x26\x0c\x58\xad\x56\ +\x37\x74\x46\x3d\x71\x34\x1c\xde\xb6\x00\xa1\xd6\x96\x6a\x75\xae\ +\x90\x3c\x50\xe7\x8c\x24\xec\xbc\x56\xaf\xd7\xf3\x19\xa0\x1b\xd9\ +\xb3\x78\xa3\x56\xd2\x01\x4b\x05\x6a\x4d\x9d\x2d\x80\x67\x00\xec\ +\x8d\x14\xc8\x05\xb0\x19\x80\xf2\x8e\x18\x6a\x6d\x68\x99\x06\x08\ +\x96\x2a\x22\xe3\x49\xa6\xd9\x00\x74\xde\xf2\x1d\x7d\x90\x66\x82\ +\x5e\xd7\x69\x76\x01\x66\x03\x2b\xa9\x37\x70\x1b\x5d\x88\x01\xb8\ +\xa6\x81\x7f\x40\x10\x11\xaa\xaa\x82\xb2\xaa\x70\xfe\x3e\x4f\x18\ +\x80\x94\x41\x2a\x16\x8a\xee\x4e\xb2\x9a\x93\x24\x01\xdf\x3f\x80\ +\xbb\xf1\xf8\x65\xfa\x30\x9d\x70\xfe\x98\x74\x4e\xba\x60\xf5\x83\ +\xe0\xbe\x28\x0a\x2c\xcb\x12\x69\x12\x6e\x36\x1b\xdc\x6e\xb7\xd8\ +\x34\x0d\xae\xd7\x6b\x4c\xd3\x14\x07\x57\xd7\xaf\x54\x7b\xc4\x40\ +\xa6\x5a\x0a\xc3\x70\xa0\x01\x75\x5d\x5b\x80\x9f\x3c\x6f\x2e\x87\ +\xa3\x67\x6e\x26\x71\xfd\xfe\x37\x88\xa2\xe8\x49\xfd\x1f\xd2\xcd\ +\x7d\x2e\x16\xf9\xdb\x6c\xf6\x48\x8d\xb9\x8e\xfd\x02\x81\x94\x9d\ +\xac\x38\xaa\x49\xce\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x02\x13\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xe4\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x42\x88\xdb\x42\x88\xdb\x42\x87\xdb\x41\x87\xdb\x21\x64\xb2\x23\ +\x6b\xbf\x23\x6c\xc1\x29\x71\xc4\x31\x66\xa6\x31\x77\xca\x3a\x7e\ +\xcf\x41\x87\xdb\x43\x85\xd5\x48\x7c\xbe\x4b\x8c\xda\x54\x93\xe0\ +\x55\x84\xc1\x68\x90\xc4\x6e\x95\xc8\x72\xa5\xe4\x78\xa8\xe6\x79\ +\xa8\xe4\x7e\x96\xb3\x7e\x97\xb4\x85\x9a\xb3\x8b\xb6\xec\x94\xa5\ +\xb7\x95\xb7\xe1\x98\xbc\xeb\xa0\xc5\xf2\xa1\xc2\xed\xa4\xc5\xec\ +\xa5\xc6\xec\xa6\xc6\xec\xa9\xc7\xee\xad\xca\xed\xaf\xcb\xed\xaf\ +\xcb\xef\xb1\xcc\xf0\xbc\xd3\xf1\xbf\xd6\xf4\xc0\xd8\xf1\xe3\xe4\ +\xe5\xe6\xe7\xe8\xe7\xe8\xe8\xe9\xea\xeb\xeb\xec\xec\xec\xed\xed\ +\xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\ +\xf1\xf1\xf1\xf2\xf2\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf5\ +\xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\ +\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\ +\xfe\xfe\xff\xff\xff\x08\x2e\x0f\x60\x00\x00\x00\x09\x74\x52\x4e\ +\x53\x00\x1f\x3c\x3e\x3f\xfa\xfc\xfd\xfe\x0a\x2f\x02\x16\x00\x00\ +\x00\x8c\x49\x44\x41\x54\x18\x19\x05\xc1\x41\x4a\x03\x51\x14\x04\ +\xc0\xea\xfe\x2f\x82\x89\x88\x20\xb8\xf4\x3c\x1e\xd9\x03\x09\x82\ +\x3b\x03\x6e\x74\x32\x63\x55\x48\x09\x1c\xf6\xc3\xd0\x37\x00\xef\ +\x37\x73\xba\xdc\x7c\xa4\x4d\x92\x67\x4c\x5e\xbf\xb5\xed\x6a\xe2\ +\xbc\x8c\xdf\x5d\x3b\x6b\xad\xf0\xf4\xf0\x39\xd9\x76\x9d\x99\x95\ +\xb0\xdf\x4c\x42\xe7\xd4\x26\x60\x24\x66\xb5\x49\x22\xe4\x62\x0f\ +\x80\xa3\x26\x8f\xdb\xcb\x0e\xe8\xd7\x5c\xa7\xfb\xf6\xf7\x0b\xb8\ +\xdb\xda\x49\xd6\x6c\x80\x59\xc9\xf4\xb4\xf7\x0c\xd0\x53\xa7\xd3\ +\x1f\x00\xf7\xed\xe4\x0a\x00\x92\x24\x02\x70\x1c\xc7\x3f\xb4\x2c\ +\x21\xd5\x80\x04\x87\x89\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x02\xa0\xde\ +\x42\ +\x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ +\x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ +\x00\xa8\xa0\x02\x00\xe9\x24\x00\x00\xe9\x24\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x17\x2e\x27\x1b\x30\x2e\x19\x27\x27\x17\x2e\ +\x2a\x1d\x39\x37\x1d\x32\x32\x14\x23\x1f\x17\x2d\x27\x11\x1d\x1d\ +\x11\x1b\x1b\x0d\x17\x15\x0d\x15\x13\x0e\x18\x0e\x0c\x14\x11\x0c\ +\x18\x11\x11\x1d\x18\x11\x1f\x1a\x14\x25\x20\x1f\x36\x3a\x33\x55\ +\x53\x36\x60\x6e\x44\x74\x81\x46\x71\x80\x41\x6b\x7f\x41\x69\x7d\ +\x41\x6c\x79\x40\x67\x75\x43\x6e\x7d\x42\x6d\x80\x45\x70\x83\x3c\ +\x64\x75\x28\x48\x45\x26\x44\x3e\x31\x57\x67\x3c\x65\x76\x24\x46\ +\x47\x24\x42\x3e\x24\x40\x3e\x27\x43\x4b\x23\x40\x41\x54\x7c\xaa\ +\x25\x61\xaf\x12\x46\x9e\x23\x53\xb2\x61\x80\xd6\x45\x4e\xbc\x38\ +\x46\xda\x2f\x35\x93\x42\x41\x79\x3d\x38\x6c\x3e\x3f\x64\x3d\x44\ +\x5b\x38\x3e\x6e\x34\x3d\x75\x34\x3b\x4c\x3a\x3f\x4b\x3a\x42\x5d\ +\x2e\x3c\x60\x1d\x37\x7e\x11\x35\x9b\x0d\x36\xa7\x06\x31\x9e\x08\ +\x32\x9e\x09\x32\x9c\x08\x31\x9a\x0b\x34\x9b\x0d\x35\x98\x0b\x32\ +\x92\x0c\x34\x96\x10\x3c\x98\x14\x3c\x84\x11\x43\x9b\x09\x43\xa9\ +\x06\x44\xa4\x0c\x45\xa7\x09\x47\xac\x05\x4a\xa8\x06\x71\xc4\x03\ +\x79\xc7\x13\x9c\xd9\x12\x57\xa9\x17\x55\xac\x0a\x49\x9d\x18\x6f\ +\xce\x16\x72\xd7\x17\x73\xda\x37\xaf\xe2\x52\xa5\xca\x11\x5f\x95\ +\x2a\x55\x88\x60\x89\xb8\x5d\x91\xb4\x0a\x6e\xb3\x03\x2b\x5c\x03\ +\x10\x26\x03\x05\x06\x07\x0a\x09\x55\x3e\x2a\x6a\x4f\x3f\x34\x34\ +\x50\x22\x4d\x87\x75\x7b\x88\x9e\x6f\x46\x2c\x77\xcb\x0a\x6d\xcf\ +\x0e\x60\xbd\x0b\x6c\xca\x0b\x49\x9f\x22\x8a\xde\x13\x6b\xc5\x10\ +\x6e\xcc\x15\x7d\xde\x0f\x76\xd3\x15\x6a\xbc\x20\x7d\xcb\x29\x74\ +\xb3\x21\x69\xa3\x2d\x7e\xbb\x20\x77\xb8\x27\x8d\xce\x2b\x9d\xdd\ +\x1a\x7e\xbf\x0f\x50\x80\x64\x56\x3a\x4d\x50\x37\x6f\x79\x4e\x76\ +\x7e\x52\x6e\x75\x4f\x70\x77\x5f\x77\x7e\x60\x7d\x86\x68\x6f\x74\ +\x63\xb2\xb0\x9f\xc8\xc2\xb3\x69\x9d\xc0\x5a\x6e\x7d\x93\x82\x72\ +\x48\x51\x65\x84\x6d\x60\xaa\xb8\xcc\x82\x92\xc8\xbb\xbc\xbf\xbe\ +\xaa\x89\xac\x98\x7f\x6f\x50\x40\x68\x4c\x44\x65\x46\x35\x70\x40\ +\x26\x77\x41\x25\x67\x3a\x2a\x50\x2f\x29\x78\x4a\x2b\xcb\x93\x42\ +\xd1\xa2\x57\xcd\x9e\x5e\x6b\x83\x8a\x26\x59\x82\x27\x5c\x8a\x2a\ +\x5d\x7f\x29\x64\x84\x27\x69\x87\x2a\x6e\x8a\x30\x60\x65\x00\x00\ +\x00\x13\x25\x20\x14\x1f\x1c\x1a\x23\x23\x1c\x2e\x2c\x1d\x31\x2e\ +\x20\x3a\x37\x19\x30\x2c\x12\x23\x1b\x18\x2c\x29\x19\x2a\x2b\x15\ +\x26\x22\x11\x1c\x19\x11\x19\x16\x0e\x18\x16\x10\x18\x16\x0f\x1b\ +\x15\x11\x1d\x18\x18\x27\x26\x1c\x2e\x2a\x2a\x48\x4f\x35\x58\x55\ +\x3a\x5f\x6e\x47\x6f\x8a\x49\x75\x90\x4c\x77\x95\x46\x73\x8d\x41\ +\x6f\x8a\x40\x6e\x85\x43\x6f\x83\x43\x73\x85\x3e\x6e\x7b\x29\x4e\ +\x55\x24\x47\x52\x39\x64\x71\x48\x74\x88\x2c\x4f\x57\x2d\x4e\x51\ +\x24\x45\x45\x2d\x50\x4b\x29\x43\x3f\x4f\x84\xc3\x18\x50\xa2\x2d\ +\x4f\xba\x61\x67\xdf\x42\x47\xc7\x30\x3e\xca\x33\x3d\xc4\x3a\x3d\ +\x93\x40\x39\x5e\x3f\x3c\x5c\x3d\x3f\x46\x40\x41\x46\x3d\x3f\x54\ +\x31\x3a\x73\x2f\x37\x48\x31\x38\x36\x31\x3b\x39\x2e\x3f\x4e\x2d\ +\x3d\x5c\x25\x37\x6a\x16\x34\x86\x08\x33\xa1\x05\x30\xa2\x08\x33\ +\xa1\x0d\x35\xa1\x0c\x36\x9f\x0c\x35\x9d\x09\x34\x9b\x10\x38\xa0\ +\x0e\x3d\xa1\x0d\x42\xa2\x09\x47\xa8\x04\x4a\xae\x04\x4d\xa9\x03\ +\x46\xa2\x03\x57\xb8\x04\x62\xb7\x16\x91\xd3\x23\xb1\xe8\x16\x7b\ +\xaf\x04\x13\x40\x05\x28\x68\x13\x67\xc5\x14\x6e\xd2\x14\x61\xcb\ +\x32\x80\xe0\x24\x88\xce\x74\xc9\xe9\x65\x9a\xbf\x62\x94\xba\xbb\ +\xd4\xe0\xb6\xd2\xe1\x47\x8f\xb9\x00\x2b\x52\x03\x13\x2b\x05\x09\ +\x12\x05\x0a\x11\x0a\x1b\x3f\x18\x50\xa0\x1b\x5e\xb2\x1e\x5b\xaf\ +\x30\x5c\xa2\x98\x7a\x69\x57\x77\xa1\x11\x72\xcd\x0c\x6e\xca\x1b\ +\x64\xbc\x1c\x79\xd7\x2a\x8d\xdb\x09\x41\x8a\x10\x5d\xae\x17\x7a\ +\xd7\x11\x63\xbc\x13\x56\xa8\x1f\x82\xc9\x34\x90\xd4\x22\x6a\xa9\ +\x2e\x8f\xcc\x20\x7a\xc0\x1a\x84\xca\x1e\x8a\xca\x0b\x5e\xa0\x0f\ +\x73\xbc\x45\x51\x4e\x77\x74\x4a\x61\x6a\x4f\x7d\x8b\x71\x7b\x88\ +\x70\x6a\x76\x59\x7f\x8a\x68\x8f\x9c\x7e\x67\x6c\x5e\xa4\x9e\x85\ +\xbe\xbb\xaf\x10\x73\xb7\x14\x28\x3e\xad\x75\x40\x68\x5a\x62\x6b\ +\x41\x26\x96\x78\x53\xc8\xb7\xa0\xb8\xaa\x9a\x65\x4a\x44\x70\x66\ +\x5c\x7b\x67\x52\x51\x31\x1b\x67\x43\x2b\x77\x44\x27\x7e\x48\x28\ +\x6f\x3f\x27\x66\x36\x23\x5f\x34\x1f\x8a\x4c\x1b\xd5\xa7\x5b\xd0\ +\xa3\x63\x6f\x81\x87\x3e\x78\xa1\x37\x65\x86\x27\x5e\x8a\x29\x6a\ +\x8b\x2a\x70\x8d\x2f\x71\x8a\x36\x4e\x42\x00\x00\x00\x17\x28\x26\ +\x1a\x2a\x29\x15\x22\x22\x16\x22\x21\x18\x22\x1f\x18\x28\x24\x17\ +\x2b\x28\x15\x26\x22\x1a\x2c\x28\x15\x28\x22\x10\x1e\x17\x10\x19\ +\x13\x13\x21\x1f\x15\x27\x22\x12\x1d\x18\x10\x19\x16\x12\x1d\x1b\ +\x17\x25\x23\x19\x2c\x28\x1e\x34\x2b\x1c\x32\x31\x3b\x5e\x68\x48\ +\x70\x85\x4a\x73\x88\x49\x71\x80\x49\x73\x83\x4a\x75\x89\x45\x70\ +\x81\x49\x71\x81\x47\x72\x81\x33\x55\x61\x2d\x51\x64\x35\x60\x73\ +\x31\x5c\x62\x38\x62\x68\x32\x56\x5e\x2d\x4f\x53\x2c\x51\x57\x22\ +\x3f\x3f\x38\x54\x68\x31\x70\xb6\x18\x48\xa5\x52\x5f\xcf\x45\x46\ +\xb9\x3d\x44\xac\x39\x46\xca\x36\x3a\x9b\x44\x41\x90\x41\x3c\x73\ +\x3b\x3d\x6b\x39\x40\x6d\x3e\x41\x50\x42\x3e\x54\x32\x39\x9d\x22\ +\x3c\x7b\x26\x3d\x47\x29\x3d\x42\x28\x3f\x4c\x2e\x40\x4d\x32\x3b\ +\x5c\x24\x38\x5e\x19\x37\x7a\x06\x2f\x9e\x05\x30\xa3\x05\x32\xa6\ +\x06\x33\xa1\x08\x34\xa2\x08\x36\xa4\x0b\x3a\xa9\x0a\x39\xa8\x09\ +\x3f\xa8\x08\x47\xa9\x03\x4c\xac\x01\x50\xab\x02\x4c\xa5\x06\x5f\ +\xb6\x09\x6a\xa7\x44\xa2\xd0\x56\xc7\xef\x12\x43\x65\x04\x1c\x46\ +\x13\x59\xb5\x10\x66\xc4\x14\x69\xc3\x12\x78\xcf\x24\x78\xd9\x32\ +\x7e\xe3\x59\xa6\xd8\x23\x64\x8e\x51\x9f\xc9\x6c\xa2\xbe\x9b\xba\ +\xca\x27\x4b\x68\x09\x2b\x50\x13\x38\x63\x0e\x3d\x68\x08\x1a\x33\ +\x0b\x1d\x3a\x16\x36\x69\x18\x50\x9f\x1d\x5c\xb1\x1a\x55\xab\x56\ +\x6c\x9a\x87\x69\x53\x72\x79\x7d\x44\x6c\x95\x68\x75\x8c\x51\x6f\ +\xa0\x09\x5e\xb7\x0d\x4a\x92\x10\x63\xb3\x17\x84\xd8\x10\x5c\xaf\ +\x13\x65\xb3\x2c\x94\xd9\x23\x87\xd4\x22\x85\xd0\x21\x8a\xcf\x14\ +\x58\x98\x14\x6d\xb5\x17\x76\xbd\x0d\x54\x95\x47\xa6\xd9\x24\x3f\ +\x51\x5c\x53\x2e\x76\x7b\x58\x71\x7f\x69\x8a\x98\x79\x86\x95\x7f\ +\x93\xa1\x88\xa0\xae\x7a\x94\x9c\x91\x89\x85\x74\x8e\x82\x6d\x4c\ +\x73\x92\x5b\x54\x54\xb9\x7f\x42\x8d\x5d\x3e\x54\x30\x21\x97\x63\ +\x35\x94\x6b\x3c\xa5\x87\x66\x6f\x46\x29\x7e\x55\x2f\x73\x42\x1f\ +\x5e\x33\x19\x7e\x57\x3b\x71\x42\x24\x79\x47\x28\x73\x40\x22\x7e\ +\x40\x1d\x80\x44\x21\xa5\x60\x23\xcd\x91\x3a\xbd\x83\x35\xb8\x86\ +\x41\x8c\x80\x60\xa9\x8a\x59\x47\x6d\x85\x21\x60\x80\x2c\x6d\x86\ +\x30\x5b\x5c\x31\x5c\x66\x00\x00\x00\x17\x28\x26\x18\x27\x22\x15\ +\x2a\x25\x16\x26\x24\x16\x24\x22\x11\x16\x15\x14\x1c\x1a\x17\x26\ +\x24\x1d\x2e\x2b\x18\x2c\x2a\x14\x27\x23\x15\x28\x23\x15\x25\x21\ +\x14\x26\x20\x11\x1f\x19\x10\x1c\x15\x12\x21\x1c\x2b\x46\x4e\x29\ +\x43\x48\x18\x2b\x2c\x17\x2b\x2a\x1e\x39\x3a\x32\x57\x62\x40\x67\ +\x76\x3c\x64\x75\x3c\x65\x73\x3a\x64\x6d\x39\x63\x6e\x3a\x65\x71\ +\x38\x5e\x69\x31\x56\x6d\x40\x6e\x81\x41\x71\x83\x34\x5a\x61\x34\ +\x5c\x67\x34\x5e\x76\x38\x64\x77\x3d\x68\x7d\x2c\x50\x56\x47\x6a\ +\x8f\x27\x64\xae\x21\x51\xaa\x52\x5b\xcc\x46\x42\xac\x32\x36\x8c\ +\x34\x3d\xb4\x3b\x37\x77\x4c\x42\x6b\x41\x3b\x61\x3b\x3d\x61\x38\ +\x40\x6d\x42\x40\x42\x36\x42\x9f\x2e\x3d\xca\x1c\x43\xa8\x19\x47\ +\x68\x23\x42\x53\x25\x42\x55\x25\x3c\x56\x21\x39\x55\x20\x39\x46\ +\x25\x3f\x46\x1b\x3a\x62\x11\x34\x76\x0d\x37\x8b\x08\x34\xa6\x08\ +\x33\xa6\x08\x32\xa5\x0d\x38\xa4\x05\x38\xa7\x0a\x3a\xa3\x08\x43\ +\xa8\x05\x45\xab\x02\x4d\xac\x02\x58\xb4\x09\x57\x98\x22\x69\x90\ +\x2a\x79\xa7\x29\x7b\xab\x08\x4b\x81\x0a\x30\x69\x14\x71\xcf\x0e\ +\x67\xc3\x0e\x6f\xc9\x2d\x94\xdf\x31\x98\xeb\x36\x88\xe9\x5f\xa5\ +\xe6\x28\x5b\x89\x1f\x84\xbc\x34\x94\xc5\x40\x9a\xcc\x02\x38\x67\ +\x0f\x1e\x34\x17\x6f\xab\x39\x78\xa7\x0d\x33\x5e\x04\x0c\x16\x0b\ +\x0a\x0f\x19\x33\x5e\x1d\x5a\xad\x1a\x58\xae\x6e\x65\x6b\xbf\x69\ +\x0b\xbb\x69\x11\xb6\x72\x22\xa9\x68\x25\x3c\x3e\x51\x12\x6a\xbe\ +\x0c\x51\x9e\x14\x61\xb4\x14\x6e\xc0\x0d\x70\xc5\x14\x7c\xcf\x21\ +\x8d\xd9\x15\x70\xbc\x14\x71\xbc\x18\x70\xbd\x12\x60\xab\x25\x7b\ +\xbf\x1a\x62\xa0\x25\x43\x63\x58\x6e\x68\x3c\x4e\x4c\x5d\x5c\x42\ +\x82\x85\x60\x82\x92\x7c\x87\x97\x7f\x90\xa0\x8b\xb3\xc6\xba\xc0\ +\xce\xab\xa9\xba\xac\x69\x6c\x4f\x5d\x4b\x2a\xb3\x98\x6b\xbe\x90\ +\x58\xaa\x65\x20\x77\x41\x23\x59\x32\x20\x80\x58\x35\x86\x58\x2a\ +\x8b\x53\x25\x9c\x62\x31\x7c\x4b\x28\x69\x3a\x1c\x68\x3d\x1e\x73\ +\x46\x27\x72\x3f\x1e\x7f\x4e\x27\x7c\x4e\x34\x98\x56\x23\xac\x68\ +\x21\xb8\x71\x1a\xc3\x7e\x25\xa9\x6c\x23\x8f\x5a\x22\xb1\x7a\x33\ +\xc5\x8e\x3c\x8c\x7e\x54\x2a\x65\x84\x2e\x57\x5e\x2f\x37\x1c\x30\ +\x34\x16\x00\x00\x00\x15\x24\x24\x16\x27\x2a\x17\x25\x22\x12\x1e\ +\x18\x15\x28\x23\x12\x1c\x1c\x0d\x13\x11\x1e\x28\x2d\x15\x1f\x1e\ +\x18\x29\x26\x1b\x34\x2b\x13\x26\x1e\x10\x1b\x13\x0e\x1d\x1a\x0d\ +\x1b\x17\x12\x21\x1c\x12\x23\x1f\x2a\x42\x3d\x24\x3d\x35\x30\x4b\ +\x4e\x16\x2c\x25\x25\x42\x49\x37\x60\x6d\x3d\x69\x77\x3e\x6b\x79\ +\x3b\x63\x75\x37\x61\x6d\x37\x63\x71\x36\x62\x6d\x2f\x58\x6a\x38\ +\x63\x70\x3c\x69\x73\x39\x67\x69\x29\x4e\x4c\x3a\x65\x70\x45\x71\ +\x83\x41\x6b\x76\x36\x5c\x5b\x25\x3f\x3b\x51\x7e\xaa\x1e\x57\xa2\ +\x20\x4d\xac\x45\x4b\xdd\x33\x31\xa1\x30\x39\xb6\x3a\x41\xb9\x3f\ +\x38\x80\x50\x43\x5a\x3c\x3f\x66\x3c\x43\x70\x3c\x40\x50\x44\x43\ +\x2f\x27\x48\xab\x1b\x4b\xb7\x0b\x48\x91\x09\x4f\x7e\x15\x48\x6c\ +\x19\x44\x70\x14\x39\x81\x1a\x36\x55\x1f\x39\x3b\x28\x3d\x37\x2b\ +\x40\x39\x27\x41\x41\x2c\x46\x4b\x1d\x3d\x6f\x1b\x43\xa4\x0d\x36\ +\xa9\x0f\x3a\x9d\x08\x43\xaf\x07\x37\xa9\x09\x39\xa4\x07\x45\xa9\ +\x04\x4a\x9b\x0e\x59\x8e\x27\x4d\x5d\x34\x5e\x70\x18\x4d\x79\x09\ +\x3e\x77\x0b\x72\xb8\x11\x6c\xb7\x0f\x72\xcb\x12\x71\xcc\x13\x7a\ +\xcf\x1c\x6f\xbb\x1c\x71\xce\x16\x63\xc3\x28\x7c\xd3\x13\x3c\x84\ +\x09\x6d\xad\x5a\xb8\xe6\x49\x9e\xd1\x00\x55\x94\x06\x42\x7e\x19\ +\x8f\xd3\x45\x7d\xa2\x05\x1c\x37\x03\x08\x13\x08\x05\x04\x18\x11\ +\x10\x34\x41\x5a\x27\x57\x9c\x9c\x6c\x3e\xc2\x71\x11\xb8\x62\x06\ +\xbd\x6a\x10\x91\x59\x30\x23\x1f\x29\x37\x79\xb7\x13\x6f\xbf\x1b\ +\x6c\xb6\x0d\x39\x7b\x08\x64\xb6\x1f\x95\xe4\x1d\x87\xd4\x0f\x60\ +\xa7\x13\x68\xb2\x0c\x70\xc0\x10\x7b\xcd\x08\x51\x9d\x15\x59\xa1\ +\x25\x5b\x9c\x33\x52\x76\x4f\x56\x47\x6c\x71\x54\x80\x86\x61\x93\ +\xa3\x88\x94\xa7\x92\xa5\xb9\xa7\x8b\x9a\x8f\x8c\x95\x6c\xb9\xc3\ +\xa9\x49\x40\x2f\x24\x10\x03\xa7\x75\x2b\x97\x52\x14\x90\x4b\x16\ +\x6f\x43\x27\x57\x33\x21\x7c\x50\x28\x91\x65\x3f\xaf\x71\x36\x93\ +\x58\x1e\x6b\x4c\x2e\x6b\x3c\x1d\x6b\x3b\x1e\x79\x40\x1b\x88\x54\ +\x24\x79\x47\x21\x7b\x49\x2b\x9d\x60\x23\xb7\x7a\x23\xbf\x7f\x20\ +\xb3\x7b\x2e\xa8\x71\x2b\x91\x5b\x24\x83\x53\x24\x91\x5d\x24\xa2\ +\x7d\x40\x4a\x72\x72\x2f\x3b\x27\x2e\x31\x13\x3e\x45\x1c\x00\x00\ +\x00\x14\x24\x20\x27\x40\x39\x18\x2b\x25\x12\x25\x1e\x16\x2a\x26\ +\x13\x26\x23\x0b\x14\x14\x1b\x25\x22\x11\x17\x12\x0e\x12\x11\x15\ +\x25\x1f\x19\x2c\x28\x14\x23\x1e\x14\x27\x23\x14\x27\x21\x12\x20\ +\x1c\x11\x1d\x18\x19\x2a\x2d\x1f\x37\x41\x24\x3c\x46\x20\x3e\x4d\ +\x19\x30\x2c\x2e\x53\x5a\x3f\x6c\x77\x3e\x6d\x78\x3c\x6a\x71\x38\ +\x65\x6c\x37\x63\x6e\x39\x65\x77\x3a\x68\x7a\x3a\x6b\x78\x3b\x69\ +\x76\x33\x5b\x5c\x25\x4a\x53\x2f\x5c\x6c\x3f\x6f\x82\x33\x5c\x69\ +\x26\x4a\x4c\x33\x56\x6b\x38\x6e\xa7\x1c\x4f\x9d\x21\x4a\xa6\x3c\ +\x42\xcd\x2f\x2f\x9f\x31\x3d\xc3\x3d\x45\xd3\x53\x4e\xdd\x41\x3d\ +\xa0\x3c\x41\x7a\x3d\x43\x64\x46\x47\x68\x46\x41\x70\x20\x41\xaf\ +\x10\x52\xa7\x09\x4f\x85\x0c\x50\x7b\x11\x4f\x7a\x13\x45\x8e\x11\ +\x41\x80\x1d\x3d\x49\x22\x38\x33\x25\x3d\x34\x27\x3f\x37\x29\x40\ +\x3a\x30\x46\x3f\x30\x4a\x4a\x25\x45\x5a\x16\x39\x7f\x1f\x3e\x57\ +\x21\x43\x6a\x1e\x44\x75\x10\x35\x8c\x0b\x3f\xa8\x13\x47\x79\x2f\ +\x57\x61\x3d\x54\x56\x4a\x42\x31\x2e\x56\x72\x09\x6c\xb5\x13\x86\ +\xce\x0d\x6f\xbd\x0b\x7a\xce\x11\x7a\xd2\x22\x86\xd5\x18\x6c\xc3\ +\x22\x80\xd6\x0d\x3e\x8a\x0b\x38\x8c\x29\x77\xea\x19\x8c\xd8\x7b\ +\xbe\xe4\x4d\x86\xbe\x04\x45\x89\x03\x6e\xb6\x00\x5c\x9b\x02\x25\ +\x44\x01\x11\x2d\x02\x07\x13\x09\x06\x05\x0c\x07\x06\x31\x22\x16\ +\x67\x45\x27\xbf\x77\x1f\xc3\x7a\x20\xb3\x64\x10\xaa\x5e\x18\x57\ +\x4b\x4d\x28\x2e\x43\x22\x3e\x79\x16\x4d\x8d\x10\x35\x59\x10\x3a\ +\x74\x0e\x66\xb2\x0f\x73\xbd\x14\x75\xbb\x0b\x53\x97\x13\x72\xbf\ +\x0e\x78\xcb\x0b\x56\x9e\x23\x6b\xbb\x13\x4d\x9d\x23\x5d\xab\x23\ +\x5d\xa1\x47\x6e\x8c\x70\x78\x63\x7a\x84\x6a\x87\x96\x7b\x91\x9f\ +\x84\x81\x8a\x67\x7e\x70\x4b\xa6\x9a\x83\xc4\xb2\x8e\x8d\x67\x40\ +\x66\x2f\x0d\x89\x4a\x0c\x9d\x54\x14\x7d\x3b\x12\xa3\x69\x2c\x9a\ +\x68\x3b\x9b\x67\x36\x98\x6d\x39\x9b\x5e\x1f\x5c\x35\x1c\x5c\x39\ +\x22\x7c\x4d\x27\x7d\x49\x22\x91\x58\x23\x93\x63\x38\x78\x42\x1e\ +\x6c\x35\x16\x9e\x6b\x40\x81\x4c\x1d\xac\x72\x25\x94\x68\x2f\x86\ +\x54\x20\x85\x50\x1b\x85\x54\x2a\x80\x55\x26\xa5\x80\x3e\x6c\x7b\ +\x5c\x33\x3b\x20\x42\x44\x19\x47\x4c\x18\x00\x00\x00\x14\x29\x28\ +\x24\x3a\x3d\x1a\x27\x23\x10\x18\x16\x13\x22\x1b\x15\x27\x20\x17\ +\x2b\x27\x13\x21\x1d\x0c\x15\x12\x0c\x11\x10\x10\x19\x14\x18\x2f\ +\x27\x1c\x35\x33\x1b\x33\x32\x15\x27\x24\x13\x1f\x1b\x11\x20\x1c\ +\x21\x34\x2e\x27\x3f\x3d\x35\x52\x55\x43\x6b\x77\x31\x59\x74\x26\ +\x45\x4f\x38\x61\x6c\x3d\x69\x7c\x38\x66\x76\x3b\x67\x75\x3a\x67\ +\x76\x38\x65\x6e\x36\x66\x6a\x39\x68\x70\x33\x60\x66\x26\x4f\x5b\ +\x3b\x67\x7f\x45\x76\x88\x49\x7a\x8e\x3a\x65\x71\x38\x66\x85\x52\ +\x7a\x98\x33\x6c\xad\x13\x48\x99\x1e\x4b\x9d\x2a\x39\xa7\x3c\x3c\ +\xb4\x38\x42\xcc\x33\x3a\xd1\x4e\x46\xe3\x3c\x38\xd3\x3f\x3d\xd0\ +\x36\x35\xd7\x37\x36\xd4\x2f\x32\xc9\x2a\x46\xb9\x0f\x4e\xa2\x0f\ +\x4c\x79\x10\x50\x7a\x12\x4f\x82\x0e\x48\x90\x16\x48\x70\x21\x43\ +\x3e\x24\x3e\x3b\x25\x3b\x37\x24\x3d\x38\x25\x42\x41\x29\x41\x3e\ +\x27\x41\x43\x2a\x48\x4b\x27\x48\x4f\x28\x44\x4c\x2a\x44\x48\x2d\ +\x48\x51\x26\x43\x5a\x19\x42\x7c\x22\x44\x62\x36\x59\x64\x3c\x67\ +\x72\x42\x4e\x53\x3e\x4d\x5a\x1f\x7e\xb7\x11\x6c\xab\x15\x74\xb4\ +\x0b\x65\xa5\x0b\x6e\xb4\x12\x6d\xb1\x09\x63\xb3\x07\x5c\xb9\x1a\ +\x78\xdc\x36\x82\xe3\x1a\x6f\xd5\x1e\x76\xc2\x4c\x96\xcc\x4d\xa9\ +\xd6\x0b\x5b\x91\x00\x20\x43\x11\x48\x77\x24\x64\x99\x1c\x4c\x85\ +\x03\x05\x0c\x07\x05\x03\x18\x10\x0b\x46\x2d\x14\x57\x3a\x19\x82\ +\x54\x23\xba\x78\x27\xaa\x6d\x2e\x5f\x3d\x2a\x2e\x2a\x33\x34\x3d\ +\x58\x4b\x6d\x9e\x1c\x41\x85\x18\x2b\x50\x15\x31\x67\x13\x4b\x91\ +\x1d\x6e\xb9\x1f\x86\xc5\x17\x6b\xab\x27\x79\xba\x1d\x64\xa7\x1d\ +\x5b\xa5\x24\x61\xab\x23\x5e\xae\x21\x5d\xaf\x33\x72\xb4\x54\x7e\ +\x92\x81\x92\x84\x7d\x8b\x81\x7d\x8a\x81\x82\x8b\x6c\x8f\x76\x42\ +\x7e\x66\x48\xc8\xc9\xbe\xaf\x7a\x3a\xac\x6b\x22\xbf\x72\x10\xc1\ +\x74\x14\xba\x6e\x12\xb3\x68\x1d\x8e\x4b\x1a\x92\x58\x27\x7b\x45\ +\x16\x87\x4a\x1d\x81\x4e\x23\x68\x47\x2c\x69\x42\x25\x7a\x48\x20\ +\x93\x5a\x23\x9e\x65\x25\x88\x57\x23\x7c\x48\x1f\x75\x4c\x2d\x81\ +\x64\x4d\x7a\x54\x2e\x78\x4d\x28\x6f\x45\x26\x88\x60\x32\x8f\x66\ +\x36\x80\x58\x28\x8e\x6c\x36\x90\x69\x37\x60\x64\x5b\x31\x39\x24\ +\x3c\x3c\x14\x48\x4a\x1b\x00\x00\x00\x18\x2a\x27\x18\x26\x1e\x11\ +\x18\x13\x13\x1b\x18\x10\x1c\x1b\x11\x1b\x15\x0e\x19\x14\x0e\x1e\ +\x18\x0d\x16\x15\x0e\x1a\x17\x1a\x2a\x2b\x17\x27\x22\x15\x29\x21\ +\x16\x2b\x25\x14\x22\x20\x0f\x1b\x16\x10\x1c\x18\x15\x26\x24\x1e\ +\x35\x36\x30\x4e\x60\x32\x53\x61\x41\x6b\x7b\x40\x6c\x83\x39\x64\ +\x78\x3e\x6a\x7c\x3e\x6b\x7e\x3e\x6a\x7b\x3b\x67\x75\x38\x67\x72\ +\x37\x68\x72\x38\x67\x76\x34\x5f\x70\x36\x64\x73\x37\x64\x6c\x39\ +\x66\x6d\x3f\x66\x73\x40\x6e\x88\x46\x77\x8c\x51\x7b\x9d\x2c\x66\ +\xaa\x13\x46\x96\x19\x4a\x9a\x29\x46\xa8\x37\x44\xbb\x39\x40\xd1\ +\x32\x39\xcf\x50\x47\xe3\x32\x2d\xc0\x35\x31\xd5\x24\x26\xcf\x2e\ +\x2d\xd0\x38\x38\xd2\x1e\x3e\xac\x11\x4e\xa6\x0f\x51\x95\x0f\x50\ +\x7f\x15\x4c\x77\x14\x4b\x74\x1e\x44\x58\x23\x46\x43\x26\x44\x3c\ +\x27\x3c\x35\x25\x3f\x3d\x2a\x41\x3b\x2d\x44\x42\x28\x43\x44\x27\ +\x42\x43\x24\x44\x4d\x25\x47\x51\x26\x46\x53\x25\x4a\x63\x22\x4a\ +\x68\x21\x45\x66\x21\x48\x71\x27\x4f\x7e\x27\x56\x94\x22\x50\x93\ +\x27\x43\x72\x20\x56\x8b\x12\x64\xa8\x12\x70\xb1\x09\x67\xaa\x10\ +\x6d\xaa\x11\x6e\xa6\x0c\x69\xb7\x09\x68\xbd\x07\x79\xcf\x14\x84\ +\xdc\x12\x7f\xc1\x0c\x63\x9c\x23\x68\x9f\x18\x51\x74\x04\x1c\x2b\ +\x04\x27\x4b\x1c\x88\xc2\x12\x64\x9d\x11\x2c\x4e\x04\x05\x03\x09\ +\x07\x05\x0b\x07\x04\x46\x2c\x17\x55\x35\x15\x82\x5a\x2e\xa8\x72\ +\x34\x5e\x4b\x3d\x27\x1e\x22\x2a\x20\x25\x4a\x5b\x75\x41\x69\xa2\ +\x34\x4c\x78\x19\x33\x61\x13\x3b\x7e\x11\x3e\x8a\x19\x47\x92\x14\ +\x3f\x73\x10\x38\x7e\x14\x4a\x95\x19\x49\x8b\x16\x4b\x92\x1a\x53\ +\x9e\x2c\x65\xae\x25\x61\xaf\x3d\x78\xbc\x76\x91\x8c\x74\x89\x73\ +\x72\x81\x77\x84\x73\x53\x86\x62\x39\x9f\x9c\x8b\x7d\x6e\x5c\xba\ +\xa6\x82\xba\x92\x5b\xc0\x8f\x46\xc0\x87\x34\xbf\x82\x29\xc6\x87\ +\x29\xbf\x81\x2b\x90\x60\x2a\x6f\x3f\x14\x7f\x4d\x24\x8c\x60\x33\ +\x8e\x69\x3a\x86\x5f\x39\x7c\x4f\x27\x83\x5b\x29\x97\x62\x29\xa1\ +\x63\x22\x8b\x59\x24\x77\x4b\x28\x6d\x50\x38\x6a\x48\x25\x71\x4d\ +\x2b\x6a\x4f\x2e\x7b\x59\x32\x87\x5d\x2e\x90\x6a\x39\x8b\x64\x34\ +\x98\x68\x2c\x92\x66\x2d\x48\x40\x28\x39\x3b\x19\x3d\x3e\x15\x4d\ +\x4d\x16\x00\x00\x00\x17\x28\x23\x11\x1e\x18\x0d\x11\x0f\x0e\x16\ +\x13\x15\x1e\x1e\x13\x1d\x19\x12\x1a\x16\x12\x1f\x1b\x12\x21\x1c\ +\x14\x20\x1d\x21\x31\x30\x1c\x2a\x27\x12\x1e\x1a\x17\x28\x20\x25\ +\x3d\x41\x25\x3b\x41\x15\x24\x28\x16\x28\x25\x18\x2c\x26\x2d\x4c\ +\x55\x45\x71\x89\x48\x7b\x93\x44\x75\x8e\x41\x6f\x84\x3d\x6b\x7c\ +\x42\x6e\x80\x3e\x6d\x80\x3e\x6d\x80\x3b\x6a\x7a\x3b\x6a\x76\x3c\ +\x6a\x7a\x3b\x69\x7a\x3b\x6b\x79\x39\x6a\x71\x38\x68\x6f\x37\x68\ +\x6c\x3e\x6e\x73\x3f\x6f\x76\x46\x73\x98\x28\x61\xa9\x12\x49\x9c\ +\x18\x48\x99\x23\x49\xa0\x32\x45\xb6\x3c\x43\xd7\x2f\x35\xcb\x4e\ +\x45\xdf\x36\x30\xc2\x38\x34\xd4\x28\x2f\xce\x2c\x2e\xd1\x47\x3f\ +\xdc\x22\x3a\xb1\x14\x50\xad\x0e\x52\xab\x0e\x51\x8f\x16\x4a\x6f\ +\x17\x48\x5f\x1c\x41\x47\x21\x43\x40\x27\x41\x3a\x24\x3a\x32\x24\ +\x3c\x39\x28\x3c\x36\x2e\x44\x40\x35\x4d\x4b\x29\x47\x4d\x20\x46\ +\x68\x21\x4a\x77\x27\x50\x6d\x1e\x47\x6d\x22\x49\x7a\x1b\x46\x86\ +\x1a\x47\x9e\x14\x46\xb2\x12\x3d\xb0\x16\x3e\xa0\x1a\x41\x93\x2a\ +\x53\x97\x18\x5a\x9f\x18\x59\x9a\x17\x69\xa4\x16\x4c\x6a\x17\x34\ +\x37\x12\x37\x46\x11\x40\x5b\x0c\x56\x77\x09\x59\x80\x0f\x3c\x55\ +\x15\x27\x30\x2e\x3f\x3a\x26\x1e\x11\x18\x2f\x3f\x0a\x8a\xd5\x05\ +\x6f\xad\x09\x3a\x6f\x03\x0c\x19\x06\x06\x05\x0b\x08\x06\x0c\x08\ +\x05\x3b\x29\x14\x61\x48\x36\xad\x80\x4e\xa5\x6c\x33\x46\x2c\x1f\ +\x28\x22\x29\x33\x2d\x34\x58\x6b\x7b\x56\x7f\xa9\x0e\x26\x51\x0c\ +\x24\x59\x14\x3d\x83\x13\x3f\x8a\x13\x3b\x81\x0e\x2b\x60\x0e\x36\ +\x7c\x11\x43\x95\x14\x38\x7d\x13\x39\x75\x1a\x54\x9e\x1c\x58\xa8\ +\x25\x61\xae\x4b\x82\xbf\x62\x9a\xce\x38\x49\x48\x3d\x47\x49\x8c\ +\x51\x1c\x83\x49\x2c\xa5\xa5\xaf\xb9\xbb\xad\xb8\xa4\x7c\xb9\x9e\ +\x64\xc5\xaf\x82\xa6\x96\x73\x98\x7c\x50\x95\x7f\x4c\x90\x70\x3a\ +\x70\x52\x2e\x6d\x4a\x26\x9f\x7b\x4a\xb4\x8e\x55\xa0\x79\x46\x8a\ +\x68\x45\x70\x51\x2b\x88\x65\x32\x9a\x6a\x35\xa3\x6e\x31\x95\x69\ +\x3c\x71\x54\x3b\x53\x3f\x2c\x7b\x66\x4e\x7a\x66\x47\x7e\x65\x3e\ +\x90\x6c\x3c\x9d\x7b\x4b\x8f\x6f\x3b\x81\x63\x36\xa0\x72\x35\xa3\ +\x71\x29\x5c\x4a\x1e\x3e\x3f\x19\x48\x4b\x1b\x4d\x4f\x16\x00\x00\ +\x00\x16\x28\x24\x10\x1e\x1b\x0d\x14\x11\x0d\x16\x11\x15\x1d\x1d\ +\x13\x1b\x18\x10\x17\x16\x11\x1f\x1a\x17\x28\x26\x12\x1e\x1a\x10\ +\x18\x14\x14\x1f\x19\x10\x1c\x17\x15\x27\x22\x1f\x35\x34\x27\x3f\ +\x3f\x20\x35\x32\x1c\x36\x43\x23\x44\x66\x22\x3b\x45\x38\x5b\x6e\ +\x48\x76\x8a\x54\x7b\x8d\x65\x80\x8e\x4b\x6b\x7f\x37\x60\x71\x43\ +\x74\x8b\x44\x75\x8a\x41\x71\x82\x41\x70\x7e\x3f\x6f\x83\x40\x71\ +\x80\x3e\x6e\x7f\x3c\x6d\x7e\x3b\x6d\x7c\x36\x6b\x70\x37\x6c\x6b\ +\x35\x65\x65\x3f\x71\x9d\x1d\x56\xa6\x15\x4c\x9f\x12\x44\x9b\x1e\ +\x4a\x9e\x31\x45\xb3\x3d\x42\xd6\x29\x31\xc7\x4e\x47\xe2\x32\x2d\ +\xb9\x3b\x38\xd9\x2c\x37\xce\x26\x2b\xd1\x48\x3f\xe3\x27\x37\xb0\ +\x16\x4d\xb1\x12\x53\x9d\x16\x4e\x72\x1a\x4a\x5b\x1a\x42\x48\x24\ +\x46\x47\x24\x43\x3c\x2c\x42\x39\x25\x34\x2d\x2e\x4b\x5c\x57\x77\ +\x86\x48\x63\x69\x53\x78\x85\x36\x68\x97\x15\x50\xa2\x14\x4a\xa5\ +\x2f\x64\xa7\x47\x7a\xb5\x24\x54\xae\x1d\x50\xae\x16\x49\xb6\x0f\ +\x3a\xa8\x13\x38\xa1\x14\x3a\x99\x19\x45\x9f\x1f\x4f\x9b\x26\x4c\ +\x8f\x28\x49\x8c\x23\x43\x69\x1b\x27\x1f\x1c\x20\x14\x18\x1c\x0f\ +\x18\x1b\x0f\x1c\x24\x1b\x18\x21\x1a\x1d\x22\x1d\x36\x2e\x1a\x40\ +\x34\x1b\x3d\x36\x21\x2b\x62\x7e\x0a\x83\xc8\x08\x4c\x88\x05\x20\ +\x42\x04\x0f\x1b\x08\x05\x05\x0c\x08\x07\x15\x0c\x06\x40\x42\x52\ +\xa0\x77\x4e\xc3\x87\x34\xb5\x75\x35\x70\x39\x11\x36\x29\x26\x33\ +\x27\x28\x39\x41\x4b\x21\x40\x70\x0f\x2a\x63\x12\x33\x6f\x15\x3d\ +\x82\x13\x39\x7d\x14\x37\x76\x13\x34\x6f\x0e\x35\x79\x15\x3a\x78\ +\x23\x55\x9b\x10\x4c\x91\x1b\x4b\x7b\x11\x3b\x64\x1b\x45\x64\x28\ +\x51\x6e\x2b\x56\x77\x1a\x38\x58\x23\x43\x6f\x67\x60\x63\x95\x61\ +\x39\xb6\xaf\xa8\xc0\xc4\xb9\xaf\x99\x69\xbf\x9b\x5c\xc8\xaf\x7d\ +\x8d\x7f\x61\x68\x6b\x55\x63\x66\x53\x64\x55\x36\x67\x51\x34\x88\ +\x68\x3b\xa9\x90\x59\xa1\x8d\x5e\x97\x7b\x49\x88\x65\x35\x87\x6a\ +\x3b\x8e\x6b\x3a\x93\x6a\x31\x8a\x66\x34\x83\x68\x42\x7f\x61\x3d\ +\x5e\x44\x29\x4c\x3e\x34\x66\x5a\x48\x9d\x8b\x6a\x92\x76\x43\x8f\ +\x74\x45\x86\x6a\x3c\x88\x70\x48\xbd\x89\x3f\xc2\x86\x2e\x6f\x56\ +\x1a\x42\x3f\x18\x44\x44\x1a\x55\x58\x19\x00\x00\x00\x14\x22\x1e\ +\x15\x25\x1e\x17\x24\x21\x15\x22\x21\x16\x1d\x19\x15\x1a\x19\x14\ +\x1b\x1c\x11\x1e\x1c\x1b\x30\x2e\x14\x24\x20\x0e\x17\x13\x0f\x1b\ +\x17\x12\x24\x1f\x18\x2d\x2c\x24\x3d\x40\x1c\x33\x2e\x17\x29\x28\ +\x34\x5b\x7b\x4c\x76\x87\x2e\x53\x71\x42\x72\x93\x44\x72\x8e\x42\ +\x70\x88\x4d\x6f\x7f\x74\x84\x85\x3b\x65\x7d\x3e\x6d\x81\x40\x6f\ +\x83\x3c\x66\x79\x38\x5f\x76\x3a\x5f\x73\x37\x5d\x6e\x3b\x68\x77\ +\x40\x73\x87\x42\x74\x8b\x44\x76\x8d\x3d\x70\x86\x39\x65\x74\x38\ +\x6a\x95\x19\x52\xa8\x0f\x44\x9d\x11\x45\x9b\x18\x45\x9e\x2a\x43\ +\xb5\x38\x3c\xcd\x2d\x30\xc5\x47\x40\xda\x29\x27\xa8\x3c\x3b\xd9\ +\x34\x3e\xc6\x27\x2d\xca\x37\x39\xdb\x1d\x2a\xa4\x12\x53\xba\x0d\ +\x51\x8f\x18\x45\x48\x29\x4a\x39\x22\x48\x3e\x23\x44\x3e\x24\x39\ +\x35\x2a\x3a\x39\x53\x6e\x7c\x8c\xb9\xd1\x87\xb7\xd3\x83\xaa\xc4\ +\x4f\x79\xac\x15\x50\xa8\x18\x55\xb0\x17\x54\xae\x30\x68\xbc\x6e\ +\x96\xc4\x3b\x6e\xba\x27\x61\xc1\x11\x49\xb4\x10\x4b\xbb\x18\x49\ +\xa5\x1e\x4b\x9a\x1a\x4b\x93\x1e\x4e\x96\x25\x48\x7b\x2b\x49\x88\ +\x26\x39\x5f\x19\x1f\x1c\x1f\x21\x19\x1d\x23\x16\x1e\x21\x19\x2c\ +\x27\x15\x2d\x2d\x1c\x2e\x2f\x1e\x3c\x33\x1e\x42\x37\x1e\x42\x37\ +\x1e\x30\x4e\x58\x12\x5e\x9b\x0a\x24\x46\x04\x15\x2c\x09\x0b\x0e\ +\x0c\x08\x06\x10\x0a\x09\x1f\x2a\x47\x53\x73\xa9\xc8\xb4\x9c\x8b\ +\x6c\x42\xa5\x62\x1d\x6a\x3e\x18\x41\x29\x21\x3a\x27\x1f\x2d\x36\ +\x4d\x0f\x30\x6c\x14\x3e\x8a\x0f\x34\x77\x14\x3d\x80\x13\x3a\x81\ +\x0d\x3c\x7c\x17\x47\x7c\x17\x3c\x68\x18\x3d\x69\x10\x29\x45\x13\ +\x38\x5a\x1c\x3a\x3e\x19\x39\x41\x1b\x3b\x42\x1b\x37\x38\x1d\x39\ +\x38\x17\x3d\x59\x2f\x61\x91\x50\x61\x7a\x9b\x67\x35\xb7\x95\x71\ +\xb9\xb3\xaa\xbb\x96\x5a\xc1\x9f\x66\xc5\xa8\x6f\x8f\x7b\x57\x6e\ +\x68\x50\x47\x38\x24\x75\x66\x4c\x79\x5f\x38\x85\x6d\x44\x92\x84\ +\x5d\x9b\x88\x5d\x87\x6d\x3d\x85\x6a\x3e\x7b\x61\x3a\x7c\x60\x37\ +\x7a\x60\x37\x6f\x5e\x3e\x70\x60\x3e\x76\x60\x3a\x74\x62\x44\x7b\ +\x66\x42\xa0\x86\x5a\x92\x7d\x54\x85\x72\x4b\x83\x69\x3e\x9d\x7b\ +\x4b\xbf\x8e\x4c\xc3\x8e\x48\xbf\x8a\x3e\x95\x7b\x53\x52\x4e\x3e\ +\x2c\x30\x1e\x3d\x40\x1d\x00\x00\x00\x15\x22\x1e\x13\x22\x1c\x15\ +\x2a\x23\x1a\x29\x26\x0b\x14\x0e\x11\x1d\x16\x15\x20\x1b\x11\x1a\ +\x18\x1c\x30\x2b\x16\x26\x20\x10\x1a\x16\x11\x1c\x19\x16\x28\x23\ +\x19\x30\x2b\x1f\x38\x30\x14\x28\x22\x19\x2d\x2e\x3d\x5f\x5f\x3e\ +\x67\x84\x4c\x7b\x93\x46\x77\x97\x4b\x7c\x9f\x48\x78\x99\x43\x73\ +\x93\x3c\x6e\x8a\x3f\x6f\x85\x3f\x6b\x7f\x3e\x6a\x7d\x3d\x6a\x81\ +\x3f\x6e\x87\x44\x6d\x84\x4b\x74\x88\x43\x6c\x87\x43\x74\x82\x38\ +\x63\x67\x3e\x6b\x72\x45\x78\x89\x41\x6c\x7d\x2e\x5e\x95\x14\x4f\ +\xa7\x11\x46\x9e\x0c\x3c\x91\x15\x47\x9e\x23\x45\xad\x38\x43\xcc\ +\x38\x3b\xc5\x47\x42\xd3\x36\x33\xbe\x43\x40\xd9\x36\x3d\xca\x2f\ +\x37\xce\x2a\x32\xcf\x1c\x29\xa5\x12\x4e\xac\x09\x43\x99\x0c\x41\ +\x6a\x12\x47\x64\x38\x5e\x68\x50\x74\x8e\x48\x67\x93\x6b\x90\xb6\ +\x72\x9f\xca\x6b\x96\xc8\x53\x7b\xbf\x3e\x71\xba\x13\x4c\xa2\x15\ +\x4a\xa7\x18\x50\xaf\x15\x4d\xb5\x15\x50\xb9\x2f\x63\xb8\x20\x56\ +\xaf\x14\x4f\xb5\x0f\x49\xb5\x0e\x4b\xb7\x15\x4d\xa7\x2a\x64\xa2\ +\x36\x6a\x93\x1a\x40\x6f\x24\x47\x71\x28\x49\x78\x2b\x48\x82\x2b\ +\x43\x70\x28\x3e\x5e\x36\x4a\x6c\x26\x2c\x21\x45\x34\x1c\x40\x35\ +\x1c\x40\x39\x22\x40\x39\x20\x41\x35\x1a\x42\x36\x1c\x42\x36\x1c\ +\x30\x31\x2e\x26\x2a\x2a\x3a\x34\x27\x29\x23\x16\x1d\x16\x10\x31\ +\x1e\x11\x3f\x33\x30\x53\x71\xa2\x66\x56\x4f\x24\x32\x50\x6e\x40\ +\x1f\x44\x2f\x20\x35\x2d\x29\x2e\x25\x28\x1c\x2f\x54\x18\x4a\x96\ +\x13\x41\x8d\x0c\x30\x71\x12\x37\x7a\x10\x36\x7c\x13\x38\x6b\x1a\ +\x3f\x66\x1b\x39\x50\x1b\x3c\x4e\x1b\x3a\x40\x1c\x3b\x48\x1a\x37\ +\x36\x1a\x34\x2c\x19\x36\x37\x1b\x3b\x3b\x1b\x33\x2d\x1c\x37\x38\ +\x14\x3a\x58\x4e\x57\x66\x93\x65\x47\xa6\x8b\x71\xba\xc0\xc3\xae\ +\x92\x67\xbb\x9e\x6d\xc4\xa9\x74\x94\x7e\x54\x68\x5f\x46\x56\x44\ +\x30\x68\x58\x3b\x79\x67\x4a\x7b\x70\x50\x83\x70\x48\x80\x65\x3a\ +\x85\x6d\x3f\x81\x65\x39\x6a\x57\x38\x69\x59\x43\x61\x55\x3e\x79\ +\x70\x59\x77\x73\x5e\x88\x7b\x5b\x92\x7b\x5b\x8a\x76\x54\x81\x6e\ +\x4d\x80\x6f\x48\x76\x70\x58\xa4\x8c\x5e\xc7\x92\x47\xc4\x8c\x44\ +\xbe\x87\x46\xbb\x7e\x37\x9d\x7b\x52\x5c\x7e\x86\x37\x51\x56\x25\ +\x2a\x1d\x00\x00\x00\x18\x28\x26\x17\x29\x28\x16\x28\x23\x17\x29\ +\x23\x11\x22\x1f\x12\x22\x1c\x0f\x1a\x12\x11\x1f\x18\x15\x25\x21\ +\x19\x2d\x29\x16\x26\x21\x1a\x2c\x2a\x15\x27\x1e\x1b\x32\x2f\x1b\ +\x34\x2e\x1c\x34\x31\x1b\x34\x34\x24\x42\x47\x3e\x64\x69\x42\x75\ +\x9f\x55\x84\x9e\x55\x89\xa8\x57\x8a\xad\x52\x84\xa6\x50\x81\xa5\ +\x4a\x79\x99\x46\x79\x99\x45\x75\x92\x41\x72\x8e\x42\x72\x88\x44\ +\x74\x8c\x45\x76\x8e\x47\x78\x8c\x41\x6f\x86\x2b\x52\x60\x2b\x4b\ +\x46\x36\x5a\x59\x39\x5d\x62\x28\x59\x93\x11\x49\xa2\x11\x45\x96\ +\x1d\x47\x8e\x2e\x4a\x7b\x3d\x4a\x84\x42\x4a\x94\x3d\x44\x9d\x39\ +\x44\x9c\x3b\x43\xb7\x36\x3f\xc7\x33\x39\xcc\x3a\x41\xd2\x37\x3d\ +\xd5\x24\x2d\xba\x14\x47\xa3\x06\x49\xb0\x05\x46\xa1\x0d\x46\x74\ +\x5f\x87\x9b\x55\x78\xc3\x4d\x72\xc1\x4b\x73\xbf\x48\x6e\xc4\x47\ +\x6c\xc5\x43\x6c\xbe\x25\x56\xa6\x0f\x43\x9e\x11\x47\xa4\x15\x44\ +\xa9\x27\x60\xbf\x1d\x5a\xbd\x1a\x4d\xab\x0e\x4b\xb7\x10\x4c\xb7\ +\x0d\x48\xb3\x19\x53\xb6\x23\x63\xb9\x3e\x83\xc3\x36\x62\x7d\x12\ +\x23\x34\x20\x47\x71\x26\x45\x68\x27\x46\x73\x2c\x47\x67\x37\x4c\ +\x51\x2b\x3b\x37\x2d\x3b\x2a\x37\x45\x3d\x35\x36\x2b\x35\x32\x1e\ +\x42\x3d\x28\x40\x3a\x24\x41\x36\x1c\x41\x39\x20\x46\x3a\x20\x52\ +\x3d\x22\x46\x3c\x23\x45\x3c\x22\x49\x38\x1f\x4c\x37\x22\x40\x3d\ +\x4a\x26\x41\x7d\x19\x40\x81\x2a\x5a\x9e\x28\x4b\x7e\x1c\x21\x33\ +\x25\x32\x42\x23\x39\x58\x14\x39\x7a\x17\x3c\x80\x15\x38\x7d\x0e\ +\x30\x71\x12\x39\x7e\x13\x35\x6b\x17\x34\x4e\x15\x33\x44\x23\x40\ +\x4a\x28\x43\x49\x16\x36\x41\x1a\x37\x3a\x19\x37\x39\x1b\x35\x2e\ +\x19\x32\x2f\x1d\x3b\x36\x19\x33\x31\x1a\x35\x2b\x1b\x38\x42\x29\ +\x41\x5e\x7f\x5c\x45\xc1\x86\x3c\xba\xb2\xa2\xa9\x9b\x84\xb5\x9a\ +\x71\xb8\xac\x8f\x8e\x83\x6d\x57\x5e\x65\x53\x4f\x4b\x6a\x5c\x42\ +\x6c\x5c\x3f\x68\x5b\x46\x72\x5e\x49\x81\x67\x45\x65\x55\x53\x58\ +\x4c\x54\x63\x58\x56\x4d\x49\x75\x46\x4d\x8b\x83\x82\x90\x66\x6c\ +\xa1\x66\x61\x6e\x75\x71\x99\x5e\x5b\x9b\x42\x41\x70\x8e\x8c\x7b\ +\x9a\x94\x76\xa0\x8c\x68\xbf\x8e\x4e\xc5\x92\x4d\xb7\x87\x47\xcd\ +\x97\x4c\xc1\x89\x3f\xb7\x93\x5c\x51\x6c\x79\x21\x3b\x52\x00\x00\ +\x00\x14\x1f\x1d\x15\x20\x1b\x11\x1e\x1a\x1b\x2c\x29\x17\x29\x25\ +\x17\x2a\x24\x11\x1f\x19\x0e\x1c\x14\x10\x20\x1d\x19\x30\x29\x19\ +\x2b\x27\x1a\x2c\x29\x1c\x32\x31\x23\x40\x3e\x21\x39\x37\x1d\x35\ +\x31\x19\x32\x2b\x22\x41\x41\x2d\x52\x5c\x4d\x80\x8e\x3d\x66\x79\ +\x51\x89\xad\x53\x86\xa5\x4d\x81\xa1\x4d\x83\xa1\x49\x80\x9d\x4b\ +\x7d\x9b\x49\x7c\x99\x49\x7d\x9d\x45\x7b\x9a\x45\x79\x99\x48\x7d\ +\x99\x45\x78\x90\x41\x6a\x7c\x3b\x64\x80\x21\x3e\x45\x20\x3b\x3e\ +\x24\x40\x43\x27\x59\x91\x0e\x45\xa0\x1c\x4a\x8f\x3c\x51\x5a\x54\ +\x57\x31\x4b\x55\x34\x3a\x52\x57\x31\x54\x74\x29\x53\x86\x23\x4d\ +\x95\x2a\x48\xaa\x2d\x44\xb9\x38\x48\xcc\x31\x36\xc9\x23\x2f\xb0\ +\x13\x47\xa9\x04\x4c\xb5\x06\x49\xad\x15\x46\x65\x32\x5a\x65\x4d\ +\x75\xc0\x3a\x60\xba\x37\x5d\xbb\x46\x6d\xc9\x4b\x6f\xc6\x1c\x45\ +\x9a\x10\x48\xa6\x12\x4c\xa8\x0c\x43\xab\x11\x3a\xa8\x1b\x4d\xab\ +\x15\x50\xb2\x11\x4a\xab\x11\x4d\xb5\x11\x4c\xb6\x12\x49\xae\x1f\ +\x5e\xba\x30\x77\xcc\x46\x80\xb0\x18\x29\x30\x09\x10\x15\x23\x37\ +\x42\x26\x47\x68\x2b\x49\x6e\x30\x43\x49\x23\x2e\x1d\x1c\x2c\x18\ +\x1c\x29\x18\x22\x30\x1e\x2d\x40\x3e\x2c\x38\x35\x47\x48\x3b\x3e\ +\x3b\x2c\x44\x3d\x2a\x4f\x40\x2c\x47\x3f\x2e\x45\x3b\x28\x49\x3a\ +\x25\x46\x38\x24\x4a\x42\x35\x3d\x4a\x5d\x21\x4d\x89\x16\x4b\x8d\ +\x11\x48\x92\x1a\x4f\x91\x16\x4c\x89\x0c\x32\x6a\x12\x36\x6d\x15\ +\x3f\x7d\x11\x36\x79\x0e\x30\x74\x14\x39\x7c\x14\x39\x78\x12\x37\ +\x7a\x13\x33\x62\x1e\x3a\x49\x18\x35\x3c\x17\x39\x45\x16\x35\x3a\ +\x18\x35\x3f\x1c\x38\x44\x1b\x36\x3b\x1b\x37\x38\x1b\x34\x2e\x18\ +\x32\x32\x1a\x37\x35\x18\x30\x2e\x1e\x38\x38\x18\x39\x4d\x40\x4b\ +\x56\x84\x67\x4b\x83\x71\x60\x92\x8d\x8e\xa7\x98\x7e\xb1\xa6\x91\ +\x85\x88\x85\x6c\x74\x72\x80\x6e\x5a\x74\x59\x3d\x52\x43\x5c\x4a\ +\x46\x88\x42\x3c\x98\x4a\x40\x8d\x20\x25\xa3\x2b\x32\xa0\x39\x4f\ +\xb8\x16\x28\xc9\x17\x2c\xcd\x35\x5d\xdf\x0d\x26\xbd\x1c\x3b\xb1\ +\x22\x41\xc7\x17\x2b\xba\x13\x1d\x82\x55\x55\x95\x5a\x5a\x92\x7a\ +\x6a\x7c\xb5\x7f\x47\xc4\x8b\x47\xc9\x9a\x59\xcf\x9a\x4e\xda\xaa\ +\x5b\xdd\xa1\x4d\x75\x74\x7b\x1f\x5e\xaa\x00\x00\x00\x17\x24\x22\ +\x12\x1b\x1a\x1b\x2b\x28\x17\x24\x22\x1d\x2e\x30\x21\x36\x38\x18\ +\x2b\x28\x12\x23\x1f\x13\x24\x1d\x14\x27\x21\x16\x29\x25\x1d\x34\ +\x32\x20\x3c\x38\x22\x41\x40\x27\x44\x4b\x1b\x30\x2e\x17\x2d\x28\ +\x1a\x32\x2c\x20\x3c\x36\x25\x3e\x38\x36\x5d\x6d\x54\x8d\xac\x4e\ +\x87\xab\x4f\x86\xac\x4a\x82\xa3\x4d\x83\xa3\x4c\x7e\x9f\x4a\x7d\ +\x9e\x4d\x81\x9f\x4c\x82\xa1\x4c\x82\x9f\x4e\x87\xa3\x45\x77\x8a\ +\x2f\x54\x58\x45\x70\x7a\x2b\x4c\x52\x28\x49\x4f\x27\x49\x5a\x29\ +\x5d\x9b\x13\x4a\xa2\x17\x46\x97\x23\x4c\x87\x36\x53\x6d\x44\x54\ +\x43\x35\x52\x5c\x39\x5d\x89\x3b\x61\xad\x26\x58\x99\x31\x55\x92\ +\x2e\x4e\x99\x2d\x4f\xb4\x2f\x46\xc4\x24\x41\xa8\x15\x50\xb5\x04\ +\x4d\xb5\x07\x49\x9b\x0f\x4c\x7c\x19\x4b\x5f\x4e\x76\xaa\x45\x70\ +\xc4\x39\x5c\xc1\x44\x67\xc9\x27\x53\xac\x11\x45\xa2\x0d\x43\x9f\ +\x15\x4b\xae\x0c\x3d\xa8\x14\x41\xa5\x22\x54\xab\x1b\x52\xa6\x16\ +\x4f\xa7\x19\x54\xaf\x18\x51\xaf\x1b\x55\xb3\x28\x6c\xc1\x48\x91\ +\xda\x4b\x6a\x75\x04\x08\x0e\x17\x21\x2b\x24\x36\x4c\x28\x40\x55\ +\x2f\x40\x4c\x2d\x36\x24\x20\x2b\x17\x1d\x27\x15\x1d\x29\x16\x22\ +\x31\x20\x22\x39\x33\x1a\x30\x30\x22\x2e\x23\x35\x30\x1f\x3f\x35\ +\x2f\x67\x52\x48\x56\x44\x3d\x46\x3b\x38\x3f\x39\x38\x3f\x48\x51\ +\x2e\x64\x89\x18\x48\x84\x10\x4b\x8a\x14\x4f\x8c\x13\x4e\x90\x14\ +\x55\x94\x14\x52\x8e\x08\x39\x77\x0e\x2c\x64\x14\x37\x74\x14\x3d\ +\x7e\x10\x2e\x6f\x10\x33\x75\x0e\x34\x73\x0c\x31\x6d\x0f\x2c\x49\ +\x16\x33\x3e\x19\x38\x41\x16\x3a\x46\x15\x35\x3e\x16\x36\x3f\x18\ +\x35\x3d\x1a\x33\x39\x1a\x37\x3d\x1d\x36\x32\x19\x31\x2f\x1a\x35\ +\x38\x1d\x36\x35\x1b\x33\x31\x1e\x3d\x4b\x16\x3d\x5a\x25\x50\x7e\ +\x3a\x45\x59\x50\x4a\x50\x95\xa1\xa2\xb6\xb1\x9f\xab\xaa\x91\x70\ +\x65\x52\x81\x5e\x38\x65\x51\x79\x68\x6d\xd6\x51\x57\xe4\x0b\x13\ +\xc1\x08\x10\xb5\x0a\x13\xb9\x1f\x33\xc9\x29\x58\xd8\x13\x39\xca\ +\x20\x3f\xd6\x1b\x38\xd6\x12\x26\xba\x16\x32\xc8\x14\x32\xd3\x12\ +\x29\xaa\x0c\x19\xb2\x05\x0e\xad\x12\x19\xa3\x24\x21\x73\x6f\x51\ +\x63\x6a\x50\x95\xc2\x97\x6e\xce\x99\x50\xd6\xa4\x57\xbc\x90\x5e\ +\x43\x63\x99\x13\x5b\xaf\x00\x00\x00\x1b\x2b\x2f\x17\x25\x27\x1a\ +\x2b\x27\x15\x23\x1f\x19\x27\x25\x1e\x28\x26\x15\x20\x1d\x15\x27\ +\x21\x15\x29\x23\x15\x27\x25\x13\x24\x23\x14\x25\x1d\x1d\x36\x30\ +\x2a\x47\x4c\x47\x74\xa2\x39\x5e\x87\x1c\x31\x3a\x18\x2f\x29\x13\ +\x27\x23\x12\x25\x22\x1e\x38\x36\x42\x6e\x77\x4d\x83\x98\x52\x87\ +\xa4\x50\x85\xa3\x52\x83\xa7\x4e\x80\xa3\x4d\x7e\xa0\x4f\x7e\x9d\ +\x4b\x7d\x9e\x4c\x7e\x9a\x47\x7a\x95\x3e\x71\x8f\x2c\x57\x74\x24\ +\x46\x4b\x1e\x42\x4c\x2d\x61\x80\x3c\x6f\x8e\x25\x58\x93\x13\x4a\ +\xa4\x13\x43\x9b\x10\x44\x9c\x1f\x4d\x9d\x37\x51\x88\x49\x5a\x90\ +\x4a\x5d\x97\x42\x4d\xbd\x4a\x5c\xb6\x3d\x54\xa6\x43\x58\xac\x49\ +\x60\xae\x46\x5c\xb5\x3d\x5a\xb7\x1d\x52\xb4\x02\x4c\xb3\x07\x47\ +\x95\x0a\x4e\x8e\x14\x52\x73\x40\x67\x73\x5f\x88\xc5\x4f\x78\xce\ +\x3c\x64\xbb\x16\x4d\xaf\x0f\x49\xa8\x11\x4a\xad\x12\x41\xa9\x12\ +\x41\xa9\x16\x47\xa8\x16\x4d\xa9\x21\x52\xad\x16\x4e\xa6\x17\x4e\ +\xa7\x1c\x53\xaa\x28\x65\xb1\x4c\x8e\xd3\x84\xb9\xd9\x1c\x25\x20\ +\x12\x19\x24\x21\x2b\x34\x2a\x3f\x40\x2c\x3c\x36\x30\x3c\x32\x27\ +\x2e\x1b\x1f\x26\x14\x1c\x26\x12\x24\x31\x1a\x1d\x2b\x18\x19\x27\ +\x18\x15\x25\x1e\x29\x38\x42\x14\x23\x27\x34\x2a\x2c\x4c\x3b\x3d\ +\x42\x35\x33\x55\x4b\x4e\x30\x30\x35\x29\x54\x7f\x05\x56\x9f\x0c\ +\x4e\x92\x14\x53\x92\x14\x4f\x8b\x14\x4f\x91\x14\x4e\x89\x11\x47\ +\x86\x0b\x33\x72\x0b\x28\x63\x14\x2e\x61\x11\x32\x6f\x15\x3c\x7f\ +\x10\x31\x72\x0d\x2f\x6e\x0c\x2c\x5a\x13\x2b\x42\x17\x36\x45\x1b\ +\x3f\x51\x18\x37\x39\x16\x35\x3a\x17\x37\x41\x17\x34\x3b\x1b\x37\ +\x3d\x18\x34\x3a\x1d\x37\x31\x1d\x33\x2f\x1b\x38\x39\x1b\x31\x35\ +\x1b\x32\x2f\x1d\x3e\x4a\x1e\x48\x6a\x1f\x4b\x7c\x44\x44\x55\x63\ +\x5a\x62\x8a\x9c\xb0\x91\x9c\x9b\x9f\xa0\x7f\x7b\x6f\x53\x5c\x4a\ +\x65\x35\x3d\xdf\x85\x96\xf3\x37\x3a\xa9\x0b\x0f\xa0\x0b\x13\xb5\ +\x0b\x16\xa7\x1d\x38\xc6\x1c\x52\xd7\x21\x46\xde\x0a\x13\x9e\x08\ +\x10\x85\x1f\x35\xc9\x20\x43\xcf\x1e\x46\xd0\x1a\x3d\xd4\x0c\x2c\ +\xbe\x15\x37\xcf\x18\x3f\xd2\x12\x3c\xb3\x17\x26\x92\x1c\x1e\xb3\ +\x70\x55\x59\xcf\xa3\x6f\xd9\xa9\x69\x80\x79\x7c\x22\x5b\xac\x19\ +\x5d\xb4\x00\x00\x00\x1d\x2d\x31\x1a\x27\x22\x13\x22\x1c\x11\x1f\ +\x1a\x13\x20\x1d\x13\x20\x20\x15\x25\x23\x17\x25\x22\x22\x39\x39\ +\x18\x2f\x2d\x12\x27\x1f\x11\x20\x1c\x11\x23\x22\x2a\x51\x77\x3d\ +\x6b\x73\x3a\x62\x71\x23\x42\x46\x11\x23\x21\x15\x28\x2a\x1d\x34\ +\x34\x14\x2a\x2b\x1e\x41\x57\x37\x6b\x8a\x43\x7a\x96\x45\x7a\x95\ +\x44\x7c\x96\x45\x7f\x97\x48\x80\x99\x4c\x7f\x9c\x4b\x7e\x9e\x4e\ +\x82\xa0\x4b\x81\xa2\x4a\x7e\x91\x3a\x63\x67\x29\x4c\x65\x3f\x77\ +\x99\x49\x86\x92\x45\x7b\x87\x2c\x62\xa0\x12\x45\x9e\x13\x48\x9f\ +\x28\x4b\xa0\x50\x52\xbe\x4f\x49\xc3\x4a\x4b\xc3\x44\x49\xc0\x4c\ +\x55\xaf\x53\x61\xa5\x55\x64\x9f\x52\x61\x98\x57\x66\x97\x53\x65\ +\x9d\x43\x59\xa2\x29\x51\xa6\x0d\x4c\x8f\x0b\x4a\x88\x0b\x4d\x94\ +\x11\x4c\x76\x39\x5c\x5f\x6b\x9e\xb8\x62\xa0\xc9\x3d\x6e\xb0\x2f\ +\x6a\xbc\x17\x55\xb4\x14\x51\xb3\x10\x43\xa9\x15\x4c\xb0\x15\x4d\ +\xaf\x19\x52\xb8\x10\x49\xac\x0f\x4a\xab\x1c\x50\xa5\x2c\x69\xb7\ +\x31\x76\xc5\x74\xb6\xd8\x56\x65\x4d\x02\x07\x0b\x23\x2d\x33\x25\ +\x30\x26\x24\x2f\x18\x22\x2e\x1b\x2a\x32\x1f\x1c\x24\x14\x20\x2d\ +\x17\x20\x2d\x17\x29\x30\x1c\x18\x20\x0c\x19\x22\x0f\x19\x23\x0c\ +\x17\x26\x25\x14\x41\x71\x0c\x29\x4d\x2c\x26\x2b\x3f\x35\x35\x37\ +\x37\x35\x1f\x1f\x22\x14\x41\x72\x13\x5f\xa9\x14\x58\x9e\x11\x4f\ +\x91\x11\x51\x93\x10\x50\x8c\x13\x4f\x8a\x0d\x44\x8b\x11\x36\x77\ +\x0d\x2c\x6b\x0c\x27\x5a\x19\x37\x6c\x0f\x35\x75\x15\x41\x84\x0d\ +\x31\x6e\x0b\x2d\x66\x0d\x29\x58\x1a\x3f\x4f\x13\x39\x4c\x19\x38\ +\x39\x18\x36\x37\x14\x35\x40\x17\x38\x42\x19\x37\x42\x1d\x36\x39\ +\x1e\x37\x37\x1b\x32\x2c\x1a\x30\x2b\x17\x2e\x34\x1a\x33\x3b\x1b\ +\x3f\x55\x0f\x4a\x88\x14\x39\x75\x1f\x2c\x5c\x24\x32\x64\x39\x47\ +\x68\x8b\x98\x99\xa9\xa4\x7e\x6a\x61\x52\x30\x30\xa7\x1e\x2c\xdf\ +\x19\x21\xae\x12\x1a\x82\x15\x2b\x84\x12\x27\x9a\x15\x33\xbf\x1e\ +\x3e\xd4\x2f\x6d\xe6\x23\x63\xd7\x11\x2b\x8e\x24\x48\xcb\x14\x26\ +\xac\x1b\x38\xb6\x19\x35\xc5\x30\x69\xda\x21\x4d\xc5\x13\x39\xb1\ +\x2e\x65\xde\x1e\x36\xa0\x19\x24\x9a\x21\x27\xac\x44\x34\x3d\xba\ +\x9e\x81\x7f\x82\xa6\x1d\x60\xbb\x28\x78\xc5\x2c\x7b\xc7\x00\x00\ +\x00\x2a\x3e\x41\x14\x24\x1e\x13\x21\x1c\x1a\x2b\x2e\x2a\x46\x57\ +\x20\x33\x39\x16\x25\x22\x16\x28\x2b\x3b\x60\x78\x33\x52\x59\x1b\ +\x2d\x29\x17\x2a\x27\x1c\x35\x38\x39\x65\x5d\x4c\x91\xb2\x4a\x93\ +\xbb\x3c\x7e\xa9\x27\x57\x83\x2b\x59\x7f\x1b\x35\x36\x1d\x3c\x3f\ +\x35\x66\x70\x41\x80\x98\x44\x84\x9d\x43\x82\xa0\x43\x83\x9b\x42\ +\x81\x97\x42\x82\x98\x45\x80\x97\x48\x80\x9b\x47\x82\x9e\x48\x7d\ +\x93\x2a\x4f\x57\x26\x4f\x6a\x4b\x80\x9f\x4e\x82\x97\x31\x57\x66\ +\x2a\x4a\x51\x26\x54\x88\x1d\x49\xaa\x2c\x4e\x9e\x45\x55\x97\x4d\ +\x4c\xa4\x4f\x4d\xba\x48\x47\xb0\x4a\x52\xbe\x47\x55\xab\x32\x4b\ +\xa7\x3c\x4f\xab\x46\x53\xb3\x4d\x54\xb8\x4b\x50\xb9\x34\x45\xba\ +\x19\x4e\x9a\x17\x4c\x7b\x18\x4a\x6f\x16\x4b\x6f\x25\x57\x86\x4c\ +\x75\x88\x56\x96\xb1\x3f\x8c\xb5\x2a\x7b\xbf\x2b\x6c\xb8\x2a\x6b\ +\xbe\x16\x4e\xb5\x27\x56\xb5\x26\x5a\xb2\x10\x48\xa8\x15\x50\xb3\ +\x11\x4d\xab\x19\x52\xae\x29\x5e\xaa\x33\x77\xc4\x75\xb6\xe5\x99\ +\xbf\xb5\x04\x08\x00\x11\x17\x19\x21\x2b\x22\x25\x2e\x1c\x2e\x33\ +\x22\x22\x29\x14\x15\x1d\x0f\x1f\x29\x16\x28\x33\x1b\x1e\x28\x0f\ +\x1a\x26\x0f\x18\x20\x0b\x1a\x1f\x0c\x18\x1f\x0f\x27\x31\x29\x59\ +\x6a\x6c\x0c\x10\x05\x1b\x1f\x1f\x24\x2d\x36\x1c\x20\x26\x1e\x20\ +\x21\x2a\x5e\x7d\x0b\x39\x77\x09\x4f\x98\x14\x5a\x9f\x15\x53\x91\ +\x0e\x50\x95\x0d\x5b\xa5\x16\x52\x9b\x17\x44\x84\x10\x37\x79\x0d\ +\x2d\x6b\x10\x2c\x62\x17\x3c\x7b\x12\x40\x7f\x0b\x34\x6d\x0a\x25\ +\x5d\x12\x3b\x73\x16\x31\x40\x18\x3d\x46\x19\x3a\x3c\x18\x37\x38\ +\x16\x34\x3e\x1b\x3b\x47\x18\x39\x46\x1c\x36\x34\x18\x33\x36\x1b\ +\x34\x37\x1e\x3a\x42\x19\x3b\x5e\x19\x37\x54\x16\x39\x56\x0d\x40\ +\x86\x21\x31\x64\x29\x31\x5a\x28\x30\x66\x29\x30\x4f\x4a\x4b\x50\ +\x6d\x70\x62\x84\x7d\x85\x21\x28\xba\x2e\x31\xb7\x1f\x23\xaa\x10\ +\x11\x6a\x11\x11\x6a\x23\x29\x8d\x32\x46\x8d\x29\x3d\xa6\x41\x59\ +\xc4\x2f\x55\xc2\x3a\x75\xc5\x20\x58\xc4\x1a\x4b\xc6\x12\x39\xbe\ +\x1d\x50\xd5\x2b\x6e\xdc\x30\x78\xe2\x1c\x5a\xcb\x1b\x44\xb9\x14\ +\x1b\x75\x24\x37\xae\x3b\x53\xce\x60\x79\xd0\x6e\x7f\xc5\x1f\x5f\ +\xed\x29\x77\xe0\x3a\xae\xea\x36\xad\xeb\x00\x00\x00\x15\x21\x1a\ +\x11\x1d\x1c\x16\x25\x22\x25\x3a\x41\x3d\x60\x6f\x28\x3e\x42\x13\ +\x1e\x1c\x1c\x31\x30\x30\x48\x3a\x1b\x2c\x29\x21\x35\x36\x1b\x33\ +\x37\x19\x32\x33\x2f\x5c\x7d\x3f\x7a\xa2\x4b\x8f\xac\x4c\x92\xb0\ +\x4f\x91\xb1\x4d\x8e\xb0\x2c\x57\x70\x16\x2e\x36\x20\x42\x53\x3b\ +\x70\x84\x43\x80\x98\x4a\x84\xa0\x46\x80\x9a\x44\x7e\x98\x42\x7e\ +\x96\x41\x7d\x91\x42\x7f\x94\x44\x80\x95\x3f\x76\x85\x2a\x5a\x71\ +\x42\x7c\x99\x34\x60\x67\x37\x60\x63\x37\x64\x6d\x2d\x54\x64\x27\ +\x55\x88\x28\x54\xa1\x5b\x60\x65\x5c\x57\x58\x47\x4c\x69\x61\x69\ +\x99\x4b\x53\x88\x3d\x45\x89\x4f\x57\xbf\x45\x51\xc3\x2e\x48\xb4\ +\x25\x4c\xa7\x32\x4e\xb8\x3a\x46\xc9\x2e\x42\xbb\x29\x5b\xb6\x30\ +\x62\xb8\x2d\x55\xa4\x29\x51\x91\x2a\x51\x87\x32\x55\x86\x64\x8d\ +\xa5\x65\x9d\xbd\x3d\x81\xb3\x35\x77\xb9\x3f\x7e\xc8\x1a\x56\xb4\ +\x29\x5d\xb8\x17\x50\xaf\x14\x51\xaf\x17\x54\xb4\x10\x4a\xa4\x16\ +\x4a\xa1\x2b\x68\xb5\x52\x92\xcc\x7c\xa3\xaa\x3b\x4f\x30\x09\x0c\ +\x0a\x1c\x22\x19\x1f\x24\x15\x46\x4d\x3d\x13\x19\x0f\x1c\x25\x12\ +\x22\x2b\x19\x25\x2d\x1a\x24\x2b\x14\x1a\x23\x11\x17\x1f\x0e\x19\ +\x1f\x0c\x1b\x23\x0e\x1c\x22\x0f\x1c\x23\x10\x2e\x34\x1d\x15\x19\ +\x0f\x09\x12\x16\x09\x25\x3a\x15\x2c\x41\x22\x45\x4c\x1e\x71\x99\ +\x04\x43\x8a\x08\x55\xa7\x0c\x52\x9e\x0d\x52\x9d\x0d\x57\xa3\x15\ +\x54\x9e\x1b\x47\x8e\x1a\x48\x85\x19\x4a\x90\x17\x37\x7a\x12\x2e\ +\x67\x0d\x31\x71\x0b\x31\x6e\x10\x32\x68\x16\x36\x5e\x17\x31\x3e\ +\x1c\x3a\x4f\x1a\x3d\x45\x24\x42\x40\x1f\x3e\x3e\x17\x39\x3b\x1a\ +\x3a\x43\x17\x39\x49\x20\x41\x59\x1a\x39\x48\x1a\x3f\x57\x1f\x4f\ +\x71\x18\x42\x5e\x1a\x3a\x5d\x16\x38\x60\x17\x32\x67\x26\x34\x68\ +\x29\x32\x5e\x20\x28\x50\x23\x28\x3f\x22\x29\x4b\x35\x42\x58\x6f\ +\x7b\x88\x85\x7e\x7d\x9a\x87\x71\x7e\x77\x92\x7c\x76\x82\x63\x56\ +\x52\x6c\x60\x58\x93\x83\x86\x99\x93\xaa\x7b\x95\xc4\x4c\xab\xe7\ +\x1b\x68\xc4\x20\x5e\xce\x21\x69\xd2\x29\x93\xe7\x25\x72\xd3\x2b\ +\x73\xdc\x18\x4f\xd7\x21\x44\xc1\x2e\x39\xb3\x0f\x1c\x9f\x2d\x59\ +\xd1\x36\x76\xe2\x1d\x61\xe1\x2b\x78\xe6\x22\x64\xec\x1e\x60\xdd\ +\x2e\x98\xec\x30\xa1\xe4\x00\x00\x00\x15\x20\x1c\x14\x23\x1e\x14\ +\x22\x1f\x21\x36\x3b\x36\x52\x60\x22\x32\x3b\x27\x41\x4c\x1e\x33\ +\x3f\x14\x23\x1f\x19\x2d\x2f\x1d\x34\x39\x28\x47\x51\x29\x55\x77\ +\x3c\x79\xa8\x57\x98\xbd\x50\x90\xb3\x4e\x8e\xae\x4e\x8c\xa8\x4b\ +\x8c\xa8\x48\x86\xa5\x2d\x5f\x7d\x28\x56\x72\x37\x71\x90\x46\x83\ +\xa0\x47\x82\xa0\x44\x81\x9e\x45\x81\x9f\x45\x81\x9f\x42\x80\x9c\ +\x42\x82\x9b\x42\x7e\x98\x34\x68\x7f\x3d\x79\x96\x49\x88\x9b\x37\ +\x6d\x79\x30\x68\x87\x31\x68\x81\x32\x65\x78\x29\x58\x90\x18\x50\ +\xa2\x3a\x56\x77\x46\x4f\x49\x5c\x5b\x6a\x63\x64\x79\x6d\x6f\x7f\ +\x41\x4e\x7a\x43\x52\xa9\x45\x50\xb8\x3a\x4a\xb1\x2d\x52\x9d\x2b\ +\x55\xa7\x22\x4b\xa5\x1e\x4c\xa6\x48\x78\xcb\x4a\x72\xcc\x31\x55\ +\xbc\x35\x56\xbb\x37\x5d\xb7\x34\x55\xae\x44\x65\xac\x5b\x82\xc5\ +\x50\x82\xc0\x4d\x8c\xb8\x49\x89\xbb\x3d\x75\xb6\x24\x5d\xb4\x28\ +\x64\xb7\x2e\x65\xb4\x15\x4f\xa9\x0f\x46\xa3\x11\x41\x96\x2c\x65\ +\xb1\x4e\x7b\x95\x20\x2e\x20\x29\x32\x2a\x14\x19\x0e\x16\x1b\x0e\ +\x29\x2e\x21\x2e\x37\x24\x16\x1c\x0f\x20\x2a\x1a\x26\x2f\x1b\x26\ +\x2d\x17\x16\x1c\x0a\x13\x19\x0c\x18\x20\x0b\x19\x20\x0e\x1b\x21\ +\x0e\x1d\x26\x12\x13\x1c\x11\x1a\x23\x16\x1e\x24\x18\x0f\x1b\x1b\ +\x0e\x17\x12\x17\x17\x15\x28\x43\x47\x2a\x82\x98\x12\x71\xb0\x0e\ +\x5a\xad\x06\x4b\xa2\x08\x4c\xa1\x11\x57\xa5\x15\x4f\xa0\x17\x49\ +\x93\x14\x40\x7a\x17\x45\x85\x14\x3e\x81\x1d\x3e\x7a\x0d\x29\x58\ +\x0c\x31\x65\x10\x33\x62\x16\x33\x3b\x19\x38\x48\x14\x3a\x52\x19\ +\x39\x38\x19\x39\x39\x1a\x3a\x3b\x1b\x3e\x46\x1e\x3f\x50\x18\x36\ +\x42\x1f\x42\x5c\x17\x41\x5d\x14\x44\x66\x1f\x53\x7e\x1f\x52\x7a\ +\x22\x54\x7b\x19\x45\x7a\x18\x33\x77\x19\x25\x4c\x29\x30\x3e\x21\ +\x26\x40\x2c\x30\x43\x25\x2c\x40\x1d\x24\x34\x64\x7a\x8a\xa0\xb7\ +\xc1\xa4\xb1\xbc\x68\x72\xad\x74\x76\x93\x7b\x75\x7a\x7f\x74\x7d\ +\x78\x6b\x7b\x93\x85\x8c\x99\x96\x9c\x50\xa4\xd1\x25\x80\xda\x13\ +\x35\xb5\x1f\x63\xd5\x1f\x6d\xd3\x17\x3d\xbb\x55\x84\xd6\x39\x72\ +\xd4\x48\x72\xca\x53\x73\xdb\x23\x3b\xc3\x3e\x77\xdc\x57\x9b\xed\ +\x26\x69\xe7\x25\x6d\xef\x20\x5a\xe6\x2f\x6d\xdf\x3d\x9c\xe6\x25\ +\x7a\xde\x00\x00\x00\x1f\x31\x33\x19\x2a\x2b\x15\x1f\x1d\x1c\x2e\ +\x31\x2e\x4a\x61\x3a\x5d\x74\x35\x57\x67\x45\x6b\x7c\x13\x22\x1e\ +\x1a\x2e\x29\x23\x3e\x3a\x28\x47\x4c\x48\x84\xa0\x52\x93\xbb\x58\ +\x97\xb9\x54\x94\xb6\x51\x8e\xb2\x4e\x89\xad\x4c\x89\xa9\x4b\x88\ +\xa8\x48\x87\xa5\x3f\x7c\x9c\x44\x82\x9f\x46\x82\xa0\x43\x81\x9f\ +\x42\x82\xa1\x42\x81\xa2\x45\x83\xa1\x46\x84\xa3\x45\x84\xa2\x48\ +\x85\xa1\x41\x7d\x9a\x47\x83\x92\x31\x5d\x5d\x30\x61\x7b\x3f\x79\ +\x87\x44\x7e\x8c\x3a\x6e\x6f\x2d\x5d\x89\x14\x4b\xa2\x11\x49\x9f\ +\x24\x49\x94\x5a\x5c\xab\x55\x5b\x8f\x48\x58\x8c\x47\x5e\xa2\x3d\ +\x50\x9f\x46\x58\xae\x4c\x5d\xb8\x4b\x5f\xb2\x46\x5b\xba\x31\x4c\ +\xb4\x18\x4f\xa5\x31\x69\xb7\x48\x78\xc0\x4f\x79\xc8\x4c\x75\xc8\ +\x57\x7f\xcc\x53\x7a\xc7\x4e\x74\xcf\x56\x7e\xcf\x5c\x82\xca\x5f\ +\x8f\xc5\x41\x7b\xae\x1e\x57\xa7\x21\x57\xa4\x2c\x60\x87\x33\x5f\ +\x73\x17\x4d\x89\x15\x48\x93\x16\x4b\x89\x1d\x50\x7b\x1f\x3b\x43\ +\x16\x1d\x13\x26\x2e\x1e\x1b\x21\x13\x23\x28\x1b\x43\x48\x3f\x20\ +\x29\x19\x1b\x22\x11\x21\x29\x1b\x21\x28\x1a\x19\x1f\x10\x1d\x23\ +\x14\x14\x1b\x0e\x18\x1e\x0e\x18\x1f\x0c\x19\x1f\x0b\x1d\x23\x0f\ +\x17\x21\x0d\x13\x26\x22\x24\x2a\x1d\x1e\x2a\x27\x1b\x26\x20\x0a\ +\x0b\x0b\x2d\x35\x4b\x37\x86\x94\x22\x8c\xb7\x14\x5b\xa2\x07\x3f\ +\x90\x0b\x39\x82\x19\x42\x79\x1f\x53\x95\x1b\x4b\x91\x0e\x33\x68\ +\x1a\x43\x7e\x10\x33\x6f\x15\x36\x71\x13\x2e\x60\x18\x35\x65\x17\ +\x36\x57\x18\x36\x3f\x13\x2d\x38\x1a\x3a\x4b\x1d\x3f\x43\x1d\x3d\ +\x41\x1e\x46\x56\x29\x49\x56\x1c\x3c\x4c\x17\x3a\x4d\x17\x3c\x4f\ +\x16\x44\x5b\x14\x49\x68\x18\x48\x69\x1b\x4a\x6f\x22\x55\x7f\x2c\ +\x5f\x8b\x22\x4f\x86\x1e\x2c\x4e\x25\x2a\x35\x21\x28\x37\x22\x27\ +\x33\x1d\x24\x30\x15\x1d\x2a\x60\x6e\x72\xa8\xb5\xb8\xae\xc5\xd2\ +\x85\x99\xb0\x81\x86\x94\x81\x7a\x7e\x65\x62\x6b\x70\x6d\x7e\x5a\ +\x5e\x85\x5b\x7c\xd2\x42\x72\xde\x25\x90\xec\x15\x56\xd8\x18\x47\ +\xda\x16\x39\xd0\x25\x49\xdf\x55\x7e\xdb\x36\x55\xdf\x3e\x61\xe4\ +\x5e\x8d\xe8\x37\x76\xee\x27\x67\xe1\x46\x83\xec\x2f\x77\xed\x1e\ +\x5e\xdf\x1b\x53\xd0\x2b\x70\xde\x2a\x70\xe1\x1c\x5f\xe7\x00\x00\ +\x00\x25\x40\x3e\x25\x3f\x46\x17\x2a\x2c\x1f\x31\x31\x38\x5a\x63\ +\x3c\x5d\x61\x1f\x30\x2e\x2d\x45\x3e\x13\x24\x24\x21\x3e\x5c\x1c\ +\x3e\x6c\x13\x2a\x3f\x33\x5c\x69\x58\x96\xb8\x57\x96\xc3\x55\x93\ +\xbc\x56\x93\xbb\x57\x93\xba\x53\x90\xb8\x54\x91\xb9\x50\x8c\xb0\ +\x4d\x8d\xb5\x4c\x8c\xb3\x48\x87\xae\x49\x88\xab\x48\x87\xaa\x49\ +\x88\xa9\x4a\x89\xad\x4a\x88\xaa\x48\x86\xa8\x48\x86\xa3\x3f\x75\ +\x82\x2d\x55\x58\x2b\x5d\x78\x3f\x7e\x9d\x31\x5d\x6c\x22\x45\x4d\ +\x20\x43\x44\x2b\x53\x76\x10\x47\x9d\x11\x48\xa4\x29\x4c\xa5\x47\ +\x4b\xa2\x3a\x4a\xa3\x49\x5b\xb6\x52\x5e\xb4\x57\x66\xbe\x5b\x65\ +\xbe\x4f\x5a\xb6\x54\x5e\xc7\x53\x5c\xd2\x4b\x52\xd7\x36\x48\xcf\ +\x1b\x47\xb1\x09\x3c\xa2\x22\x39\xb1\x29\x3b\xad\x5f\x7a\xc6\x3c\ +\x58\xa6\x43\x65\x9b\x48\x6e\x95\x69\x8f\xac\x6a\x9c\xb8\x6f\xa2\ +\xbe\x2f\x5b\x75\x26\x50\x5f\x29\x52\x4f\x27\x50\x46\x21\x4b\x55\ +\x22\x4e\x5e\x1c\x49\x51\x2b\x52\x41\x24\x4b\x56\x1b\x2a\x28\x1e\ +\x22\x16\x1d\x23\x15\x31\x36\x27\x27\x2a\x22\x1b\x1f\x0f\x22\x2a\ +\x16\x3c\x3e\x2f\x15\x1c\x0a\x1e\x25\x14\x1f\x26\x17\x1b\x22\x0f\ +\x14\x1c\x0c\x19\x1f\x0c\x1e\x25\x12\x22\x2c\x1e\x2a\x39\x2c\x4d\ +\x56\x4d\x26\x30\x2a\x27\x2e\x24\x14\x19\x0f\x09\x0c\x14\x1a\x21\ +\x2d\x2d\x51\x63\x26\x7e\xa0\x0c\x47\x8e\x09\x2f\x67\x0d\x23\x46\ +\x15\x33\x63\x13\x3b\x68\x17\x3d\x6b\x14\x2f\x56\x11\x33\x64\x1b\ +\x3c\x6c\x0d\x28\x63\x10\x27\x50\x11\x27\x43\x13\x2a\x37\x14\x30\ +\x37\x1a\x3a\x3b\x0d\x1d\x25\x1b\x3c\x47\x1c\x47\x61\x22\x4f\x61\ +\x12\x27\x2d\x19\x36\x3c\x2a\x49\x4f\x22\x42\x46\x1c\x3e\x44\x1a\ +\x47\x5d\x1e\x43\x60\x19\x49\x6f\x29\x5d\x8a\x20\x4c\x79\x34\x56\ +\x7a\x17\x29\x49\x26\x30\x46\x1c\x23\x2d\x1b\x21\x2a\x23\x2a\x32\ +\x1e\x24\x2f\x22\x27\x2f\x5d\x62\x64\xa4\xa6\xac\xa6\xbc\xc4\x91\ +\xa2\xa6\x53\x52\x56\x30\x36\x45\x51\x55\x6a\x2d\x41\x89\x23\x4a\ +\xc4\x2e\x43\xdd\x46\xa0\xf2\x11\x3b\xa5\x23\x43\xdf\x33\x53\xd2\ +\x1f\x3e\xb7\x26\x37\xca\x44\x5a\xd8\x3e\x49\xb7\x28\x4f\xe7\x27\ +\x50\xe2\x22\x50\xd9\x21\x61\xeb\x22\x70\xde\x15\x57\xd1\x13\x47\ +\xc7\x11\x46\xca\x1c\x62\xe5\x36\x79\xf1\x00\x00\x00\x27\x42\x40\ +\x46\x63\x6b\x3a\x5b\x63\x27\x43\x47\x1e\x2e\x2a\x20\x32\x2f\x14\ +\x23\x1e\x1d\x2c\x26\x20\x38\x40\x3e\x65\x74\x61\x97\xaa\x56\x89\ +\xa9\x36\x5d\x88\x43\x78\xa0\x60\x9e\xc9\x5d\x99\xc3\x5b\x98\xc1\ +\x59\x96\xbf\x5e\x99\xc9\x5a\x95\xc0\x57\x93\xbc\x55\x91\xb7\x58\ +\x93\xb7\x56\x92\xb7\x55\x94\xbd\x51\x90\xb9\x4f\x8f\xb6\x4e\x8b\ +\xb1\x4a\x8a\xad\x4c\x8b\xa9\x4c\x89\xaa\x41\x7c\xa4\x38\x72\xa0\ +\x47\x86\xa3\x4f\x90\xa6\x3a\x71\x82\x2e\x5d\x6c\x29\x60\x87\x35\ +\x64\x99\x20\x51\x97\x33\x4b\x68\x41\x4a\x60\x3f\x47\x6d\x3f\x4a\ +\x98\x3c\x49\xb1\x4c\x5a\xcf\x50\x59\xb6\x50\x5e\xb8\x61\x6d\xce\ +\x5e\x6b\xcb\x41\x4f\xcd\x39\x46\xcd\x31\x41\xcd\x1f\x36\xb6\x0c\ +\x23\xb1\x04\x10\xa8\x18\x22\xa3\x09\x15\x9b\x12\x20\xa3\x12\x26\ +\x9b\x13\x2d\x8c\x1b\x40\x82\x17\x42\x69\x22\x53\x6e\x1a\x42\x4f\ +\x1c\x46\x43\x1f\x47\x44\x20\x48\x3f\x27\x4c\x41\x28\x4b\x40\x2a\ +\x4b\x43\x3d\x5d\x3c\x3c\x54\x35\x23\x3e\x4d\x1d\x27\x21\x30\x39\ +\x32\x23\x29\x1f\x12\x17\x0c\x14\x19\x0c\x31\x38\x2a\x21\x2a\x17\ +\x19\x1d\x0d\x18\x1f\x0d\x19\x21\x0f\x1b\x25\x10\x1c\x24\x11\x23\ +\x2b\x1b\x18\x22\x0f\x1c\x27\x14\x2e\x3a\x2f\x25\x2f\x15\x14\x18\ +\x0b\x0c\x10\x0e\x09\x0a\x0c\x1f\x28\x38\x45\x5a\x70\x19\x3d\x71\ +\x0e\x2b\x64\x0c\x32\x78\x0b\x27\x67\x0b\x28\x53\x12\x2c\x58\x17\ +\x35\x5f\x15\x39\x64\x19\x38\x5f\x16\x31\x59\x15\x38\x6e\x0f\x28\ +\x58\x1b\x35\x66\x13\x26\x38\x19\x32\x41\x0e\x27\x43\x11\x31\x3e\ +\x16\x32\x3c\x14\x29\x37\x16\x3b\x58\x1e\x4c\x64\x0a\x1c\x24\x1d\ +\x35\x36\x20\x3e\x40\x24\x43\x53\x1f\x49\x6c\x1a\x48\x6d\x1b\x46\ +\x61\x16\x3b\x55\x18\x39\x53\x21\x42\x5f\x1f\x40\x5b\x2b\x3d\x4c\ +\x6c\x71\x6e\x3a\x42\x5b\x1e\x24\x56\x19\x21\x58\x19\x1f\x44\x17\ +\x1c\x33\x1b\x22\x35\x3d\x48\x54\x83\x95\x9e\x7b\x8a\x9a\x25\x2d\ +\x41\x1e\x28\x37\x4e\x60\x79\x27\x2e\x88\x1a\x2b\xca\x48\x55\xaa\ +\x6a\x80\xa1\x1c\x2b\x82\x4d\x67\xc7\x2a\x49\xc3\x1e\x3a\xb9\x28\ +\x39\xc9\x33\x4a\xd4\x2e\x3e\xc6\x34\x49\xce\x2b\x3d\xd7\x1c\x3e\ +\xd9\x18\x48\xd6\x19\x48\xd8\x32\x66\xde\x06\x21\x98\x12\x35\xb5\ +\x4e\x83\xe7\x5a\x8e\xe6\x00\x00\x00\x2e\x53\x55\x20\x35\x2e\x1b\ +\x31\x2e\x24\x3b\x2d\x1a\x2b\x24\x19\x28\x23\x17\x25\x1e\x0f\x18\ +\x14\x26\x40\x3e\x2a\x41\x3c\x2d\x41\x37\x35\x55\x5b\x4f\x7f\x8d\ +\x53\x83\x8e\x52\x83\x90\x55\x8a\x9c\x57\x8f\xa6\x5a\x94\xb0\x5c\ +\x96\xb3\x5d\x97\xb8\x5b\x96\xbc\x59\x95\xbe\x55\x93\xba\x55\x92\ +\xb8\x54\x92\xb8\x57\x94\xb5\x55\x92\xb4\x51\x90\xb3\x52\x91\xb6\ +\x50\x90\xb6\x4e\x8e\xb3\x50\x8e\xb2\x51\x8e\xb0\x37\x68\x76\x24\ +\x47\x45\x28\x50\x62\x3d\x77\xb2\x5c\x9d\xc8\x50\x84\xb3\x2d\x54\ +\x7b\x4b\x52\x30\x4c\x55\x3b\x3f\x51\x70\x42\x54\x93\x42\x4e\xb6\ +\x52\x5a\xd7\x3b\x43\xaf\x4d\x56\xba\x4d\x5a\xbc\x45\x54\xb5\x33\ +\x42\xb2\x40\x49\xb8\x3c\x48\xb7\x1b\x29\xb5\x0a\x16\xb6\x06\x12\ +\xa1\x05\x12\x9f\x07\x12\xa9\x08\x15\xaa\x09\x16\xa6\x07\x13\xaa\ +\x0a\x15\x9b\x10\x1e\xa0\x0e\x23\x96\x13\x3c\x84\x15\x46\x62\x18\ +\x47\x4a\x20\x4a\x46\x22\x47\x3f\x24\x4a\x40\x2c\x4f\x46\x3b\x5c\ +\x4f\x33\x59\x77\x21\x55\x93\x2b\x4b\x86\x41\x4b\x4e\x2a\x35\x36\ +\x1d\x25\x17\x1d\x23\x12\x1c\x22\x0d\x1d\x22\x14\x21\x28\x19\x16\ +\x1b\x0f\x16\x1b\x0c\x19\x1f\x0d\x29\x2d\x21\x2c\x36\x2c\x2b\x35\ +\x28\x35\x3d\x2f\x2c\x33\x25\x14\x18\x11\x06\x08\x07\x15\x19\x1f\ +\x35\x45\x51\x46\x5e\x6e\x40\x55\x66\x19\x44\x7c\x0b\x37\x7a\x0c\ +\x22\x5f\x0f\x27\x5c\x0d\x28\x52\x0f\x2c\x58\x11\x31\x57\x1d\x3b\ +\x62\x19\x3c\x65\x1a\x3b\x65\x11\x2b\x53\x25\x41\x76\x30\x4a\x6a\ +\x13\x23\x2c\x15\x26\x2e\x17\x31\x46\x18\x35\x42\x18\x3b\x4d\x15\ +\x32\x46\x0e\x1d\x25\x20\x47\x58\x1f\x3e\x4f\x10\x21\x28\x22\x44\ +\x54\x27\x4e\x60\x1f\x41\x51\x20\x3a\x44\x1b\x39\x47\x1d\x39\x45\ +\x1c\x3c\x42\x25\x49\x57\x1c\x3c\x54\x23\x35\x5b\x45\x3a\x34\x54\ +\x47\x39\x5b\x50\x54\x42\x3f\x6f\x34\x2e\x6f\x1a\x22\x67\x18\x21\ +\x5e\x20\x27\x51\x1f\x29\x4e\x2d\x38\x60\x28\x37\x81\x1f\x28\x52\ +\x27\x37\x76\x0d\x10\x87\x1e\x2b\xbf\x17\x29\x76\x44\x54\x8d\x1e\ +\x2a\x6d\x18\x2c\x8d\x1d\x36\xd1\x11\x23\xaa\x25\x3e\xc2\x30\x3c\ +\xc9\x26\x32\xe0\x2f\x42\xe3\x22\x4d\xcc\x1b\x57\xbb\x31\x65\xe0\ +\x2d\x69\xe6\x23\x4e\xc9\x0d\x29\x9b\x20\x4a\xad\x34\x68\xce\x36\ +\x6e\xe0\x00\x00\x00\x3d\x70\x72\x2a\x46\x4e\x38\x69\x70\x1f\x34\ +\x30\x1a\x2a\x28\x17\x26\x24\x15\x23\x21\x15\x25\x24\x22\x37\x32\ +\x1b\x2f\x2e\x20\x35\x37\x23\x3a\x34\x32\x59\x5b\x36\x4c\x4c\x36\ +\x49\x4c\x39\x55\x55\x3d\x68\x6f\x41\x69\x71\x41\x69\x73\x41\x6a\ +\x76\x46\x71\x80\x4c\x7a\x8b\x51\x85\x96\x5a\x94\xb0\x55\x94\xb4\ +\x50\x8e\xad\x4f\x8f\xae\x50\x91\xb3\x54\x92\xb7\x56\x91\xb6\x52\ +\x91\xb8\x52\x92\xb7\x4f\x8d\xaf\x31\x64\x80\x2e\x62\x8f\x4b\x89\ +\xbc\x61\x9d\xbd\x5f\x9b\xbc\x56\x8a\xaf\x27\x5b\xa0\x51\x5d\xa6\ +\x4b\x54\x47\x40\x4f\x77\x41\x4f\xa4\x3d\x49\xa6\x4a\x56\xaf\x38\ +\x47\x9b\x43\x54\x94\x40\x50\x96\x2b\x3d\x9b\x1d\x31\x98\x36\x44\ +\xb1\x1e\x30\xb3\x0b\x18\xb5\x0a\x13\x9d\x08\x13\x92\x08\x13\x9e\ +\x08\x15\x9d\x0a\x18\xa1\x0d\x18\xa6\x08\x14\xaa\x0a\x14\xa0\x09\ +\x16\xa3\x0f\x18\xa1\x0f\x1c\xa2\x0e\x2b\x97\x0b\x3d\x85\x18\x4d\ +\x63\x1b\x49\x52\x23\x52\x59\x21\x4f\x6f\x21\x59\xa6\x20\x5c\xb1\ +\x2c\x5f\xc0\x43\x55\xd5\x41\x49\xa6\x33\x36\x50\x25\x28\x16\x2e\ +\x32\x21\x1e\x24\x15\x1b\x20\x0d\x20\x26\x15\x1a\x21\x0f\x19\x1e\ +\x0d\x1b\x21\x0b\x34\x3b\x2f\x3f\x4c\x3a\x1b\x24\x14\x20\x29\x18\ +\x1d\x22\x11\x11\x14\x0b\x05\x06\x07\x1d\x24\x2a\x45\x59\x64\x3e\ +\x53\x61\x33\x44\x55\x19\x42\x80\x0c\x39\x7c\x0b\x26\x60\x0c\x27\ +\x66\x0c\x2c\x67\x0d\x2e\x60\x10\x2f\x5c\x14\x34\x60\x28\x49\x6e\ +\x1d\x41\x6e\x16\x36\x5a\x13\x29\x4a\x19\x31\x49\x12\x25\x29\x1a\ +\x2f\x2b\x17\x2f\x34\x18\x36\x40\x16\x34\x3d\x18\x43\x58\x0f\x24\ +\x2e\x16\x28\x32\x25\x4c\x5e\x10\x1d\x23\x1a\x2f\x30\x21\x40\x49\ +\x1a\x3b\x45\x1a\x3e\x52\x1b\x41\x62\x23\x41\x4c\x25\x38\x2f\x20\ +\x31\x2c\x1e\x35\x40\x16\x35\x5a\x2e\x48\x5f\x18\x23\x41\x27\x2a\ +\x43\x29\x2a\x34\x26\x2c\x32\x21\x2a\x35\x25\x2d\x44\x28\x32\x55\ +\x2a\x3b\x6c\x30\x3f\x72\x29\x3a\x87\x24\x33\x95\x23\x31\x80\x1d\ +\x24\x9a\x19\x26\xb0\x15\x22\x6b\x42\x58\xa2\x0d\x1e\x7c\x18\x25\ +\xaa\x17\x28\xbd\x1a\x2b\xb1\x24\x3a\xc1\x13\x2f\xbe\x26\x36\xdb\ +\x2b\x3f\xe0\x24\x57\xc9\x28\x99\xd2\x24\x77\xd7\x23\x64\xbe\x13\ +\x39\x87\x0f\x1c\x50\x06\x11\x58\x2d\x5b\xcb\x41\x7e\xea\x00\x00\ +\x00\x32\x4f\x4b\x2e\x4d\x53\x30\x54\x43\x1c\x2e\x27\x18\x27\x20\ +\x18\x27\x25\x17\x24\x21\x18\x2a\x26\x18\x2c\x24\x1a\x31\x29\x20\ +\x35\x30\x21\x2e\x2d\x21\x32\x2d\x2e\x43\x52\x2b\x32\x3a\x26\x32\ +\x38\x28\x43\x49\x27\x44\x46\x2e\x4c\x53\x37\x61\x6a\x39\x66\x75\ +\x38\x63\x77\x3b\x63\x78\x41\x6f\x88\x45\x7c\x98\x4b\x87\xa4\x4d\ +\x8a\xab\x52\x8e\xb0\x54\x93\xb6\x55\x93\xb7\x59\x95\xbd\x55\x93\ +\xb5\x4f\x8e\xb1\x46\x83\xab\x56\x95\xbe\x59\x97\xbb\x59\x95\xba\ +\x51\x8d\xa8\x44\x70\x79\x2d\x60\xa3\x48\x4f\x87\x51\x53\x66\x44\ +\x4e\x97\x3c\x49\x97\x3d\x4b\x93\x49\x58\x98\x3f\x4e\x94\x3d\x4d\ +\x8d\x1f\x33\x95\x16\x2c\x97\x1d\x37\x97\x1c\x2d\xa7\x0f\x1b\xb4\ +\x0b\x15\xa7\x09\x12\x90\x09\x15\x9f\x0a\x15\xa2\x07\x13\xa4\x0a\ +\x17\xa4\x08\x15\xa5\x08\x15\xa3\x09\x13\xa6\x08\x14\xa8\x0b\x18\ +\xa4\x0a\x18\xa7\x14\x1f\x9f\x12\x20\x9c\x16\x43\x8e\x0f\x4e\x89\ +\x12\x52\xa0\x15\x57\xb6\x28\x66\xbb\x2e\x59\x9b\x4f\x5a\xb1\x4c\ +\x4c\xbb\x4a\x42\x6e\x4e\x44\x3c\x3e\x3e\x26\x31\x36\x1e\x12\x17\ +\x0d\x18\x1c\x0e\x34\x3a\x2d\x2a\x31\x21\x21\x29\x16\x1f\x24\x12\ +\x32\x38\x26\x1c\x23\x16\x19\x1f\x14\x1f\x23\x13\x1a\x1f\x0a\x15\ +\x1b\x08\x07\x0a\x08\x07\x09\x0b\x24\x29\x2d\x2f\x35\x3b\x23\x25\ +\x2a\x22\x2f\x3e\x20\x2e\x40\x14\x35\x68\x10\x2b\x6f\x0c\x27\x63\ +\x0c\x30\x6c\x11\x35\x6e\x10\x31\x65\x0f\x2f\x58\x15\x35\x57\x16\ +\x34\x55\x15\x2f\x4a\x15\x2d\x42\x13\x27\x33\x18\x2f\x35\x16\x2f\ +\x42\x19\x35\x3c\x1c\x34\x32\x1d\x3e\x44\x17\x31\x36\x0c\x1b\x20\ +\x29\x53\x6d\x17\x2a\x2f\x1a\x2d\x2d\x21\x3e\x46\x1b\x38\x45\x1f\ +\x40\x4d\x23\x46\x59\x1c\x3a\x42\x1c\x32\x29\x1f\x35\x32\x20\x34\ +\x38\x1f\x38\x4d\x2a\x45\x6d\x11\x2c\x67\x15\x28\x5b\x1d\x27\x3a\ +\x22\x2b\x4a\x22\x2f\x6a\x20\x2b\x69\x23\x33\x7e\x1a\x2c\x95\x1f\ +\x30\xa5\x2c\x3f\xab\x30\x41\x9e\x24\x39\x9d\x2d\x3f\xb3\x2b\x3f\ +\xa8\x19\x29\x68\x2b\x3d\x95\x17\x2d\x7a\x0d\x18\x70\x1b\x29\xa7\ +\x16\x22\xa1\x12\x21\x9e\x17\x33\xcb\x1a\x4b\xd1\x32\x6f\xdb\x2b\ +\x6e\xd8\x1c\x54\xac\x12\x3c\x98\x1a\x4b\xac\x0d\x25\x61\x0b\x16\ +\x42\x16\x2a\x93\x27\x47\xdb\x30\x57\xe2\x00\x00\x00\x1d\x34\x30\ +\x20\x39\x35\x17\x24\x21\x19\x25\x23\x15\x22\x1d\x16\x23\x20\x16\ +\x24\x20\x15\x1e\x1b\x14\x1f\x1c\x17\x28\x21\x1d\x33\x31\x1a\x2b\ +\x27\x16\x1e\x1a\x2c\x40\x5b\x1b\x1d\x1e\x1b\x22\x22\x1d\x27\x23\ +\x1c\x2b\x22\x1e\x33\x2b\x26\x3b\x37\x29\x41\x3e\x2c\x47\x3f\x2d\ +\x4a\x42\x34\x59\x55\x3e\x72\x71\x45\x7b\x86\x4a\x82\x98\x47\x7c\ +\x94\x44\x77\x8d\x4c\x84\x9a\x55\x90\xae\x56\x92\xbb\x52\x90\xbe\ +\x53\x91\xbd\x54\x93\xbf\x58\x94\xc2\x51\x92\xbc\x49\x88\xb0\x27\ +\x58\x76\x30\x5c\x98\x49\x47\x92\x66\x60\xbb\x49\x4b\xa1\x49\x54\ +\x85\x41\x56\x7c\x40\x50\x76\x44\x53\x9e\x34\x49\xa8\x25\x3d\x9b\ +\x1b\x2f\x92\x25\x39\x98\x28\x3a\xaa\x0c\x17\xa8\x07\x0f\x8f\x0b\ +\x17\xa9\x07\x13\xa1\x11\x1c\xa8\x0e\x18\xa6\x08\x16\xaa\x08\x15\ +\xa6\x07\x15\xa9\x06\x12\xaa\x06\x12\xac\x09\x15\xaa\x0a\x16\xaa\ +\x0c\x18\xaf\x0f\x1c\xa6\x13\x1e\x85\x0d\x3e\xad\x0f\x57\xc3\x2b\ +\x51\x88\x45\x51\x65\x53\x4d\x52\x62\x54\x49\x65\x58\x57\x4c\x3f\ +\x2a\x4a\x3b\x24\x43\x35\x22\x45\x3a\x21\x15\x18\x0d\x15\x16\x12\ +\x4c\x52\x42\x3e\x40\x30\x46\x48\x3a\x33\x3d\x2f\x1a\x1e\x0c\x24\ +\x28\x19\x27\x2e\x20\x13\x16\x09\x22\x23\x1b\x37\x3a\x2b\x09\x0c\ +\x07\x04\x06\x06\x08\x0a\x09\x1b\x1b\x1f\x1f\x1f\x22\x1e\x20\x27\ +\x29\x2c\x34\x20\x32\x4a\x11\x2f\x68\x0c\x29\x69\x0d\x2a\x65\x0e\ +\x30\x6b\x12\x33\x6c\x0e\x30\x68\x11\x2d\x5b\x12\x2d\x54\x14\x30\ +\x54\x17\x33\x48\x12\x30\x4e\x11\x2a\x44\x14\x2f\x56\x19\x37\x42\ +\x1b\x38\x3c\x1d\x3d\x59\x19\x36\x52\x0b\x15\x19\x1b\x3b\x49\x1e\ +\x36\x47\x19\x33\x39\x1b\x40\x4e\x1d\x44\x53\x1b\x42\x54\x20\x44\ +\x54\x2c\x4c\x54\x28\x45\x4e\x2f\x4b\x62\x1b\x39\x63\x14\x33\x6d\ +\x13\x31\x6d\x12\x33\x74\x15\x32\x74\x1b\x2a\x68\x19\x27\x82\x1c\ +\x2f\x91\x15\x25\x98\x0e\x21\xa7\x0a\x21\xbd\x1f\x33\xc4\x2b\x3e\ +\xb2\x27\x3a\xa4\x22\x37\xb2\x2d\x41\xc3\x3b\x53\xca\x23\x37\xa9\ +\x2b\x3e\x97\x16\x29\x73\x14\x1e\x60\x0a\x14\x7d\x0f\x1d\xa8\x10\ +\x23\xbf\x42\x67\xdd\x76\xad\xd5\x25\x7c\xc6\x1e\x64\xb0\x16\x44\ +\x8f\x19\x3c\x8d\x1a\x3a\x91\x15\x2c\x81\x0e\x1b\x7b\x1c\x33\xc7\ +\x24\x41\xda\x18\x2f\xd9\x00\x00\x00\x1d\x37\x35\x16\x27\x27\x11\ +\x1c\x14\x12\x1e\x1b\x13\x20\x1b\x15\x26\x22\x17\x2c\x26\x18\x2c\ +\x29\x18\x26\x28\x15\x1d\x21\x1f\x2a\x2e\x17\x1d\x1e\x0e\x12\x13\ +\x40\x4e\x5c\x11\x15\x15\x1a\x1e\x21\x14\x19\x19\x15\x1b\x17\x14\ +\x1e\x16\x19\x1d\x1a\x17\x23\x1d\x18\x26\x21\x1b\x2b\x29\x1e\x30\ +\x2d\x1f\x31\x2b\x23\x38\x2d\x26\x40\x33\x31\x4e\x43\x39\x5e\x57\ +\x38\x64\x61\x3e\x6b\x6b\x42\x73\x6f\x4f\x7f\x81\x4f\x87\x98\x51\ +\x8c\xa2\x55\x91\xac\x55\x95\xb0\x52\x94\xb7\x51\x94\xbd\x4a\x7a\ +\xb6\x59\x5b\xc9\x4f\x57\xaf\x3b\x45\x87\x4e\x56\x87\x47\x52\x8c\ +\x40\x4e\x8f\x43\x52\xad\x3d\x53\x94\x33\x45\x8a\x2e\x3f\x9e\x24\ +\x38\x98\x15\x28\xa3\x08\x12\xa7\x0a\x16\x96\x09\x16\xab\x08\x14\ +\xa4\x08\x13\x9f\x07\x14\xa6\x05\x14\xaa\x05\x14\xa7\x06\x14\xaa\ +\x04\x12\xab\x05\x12\xb0\x08\x16\xa6\x0a\x19\xb0\x0d\x1a\xab\x0e\ +\x18\x9e\x0e\x17\x91\x16\x38\xb5\x19\x51\xba\x45\x59\x86\x5a\x55\ +\x6a\x66\x5e\x5c\x55\x4d\x38\x5c\x4f\x35\x51\x42\x29\x4a\x3a\x23\ +\x59\x49\x37\x59\x48\x2f\x33\x36\x22\x18\x1e\x14\x57\x60\x53\x4d\ +\x54\x49\x39\x3b\x2f\x1b\x1e\x12\x1e\x22\x10\x1b\x21\x0f\x1a\x21\ +\x11\x0f\x14\x0a\x41\x40\x33\x32\x2f\x26\x07\x09\x08\x05\x06\x08\ +\x06\x07\x05\x15\x15\x17\x21\x23\x27\x1e\x20\x26\x20\x24\x30\x1d\ +\x25\x37\x16\x2b\x59\x0e\x29\x67\x0f\x2c\x64\x0f\x2c\x69\x0d\x2c\ +\x67\x0f\x33\x6b\x0d\x2f\x6d\x0d\x29\x60\x12\x2e\x4f\x16\x32\x4f\ +\x11\x30\x4e\x11\x31\x5c\x14\x2f\x52\x19\x39\x4a\x17\x38\x59\x17\ +\x35\x60\x14\x36\x78\x08\x13\x28\x1c\x2f\x3f\x24\x3e\x50\x13\x24\ +\x2e\x18\x34\x4c\x1d\x3c\x54\x21\x3f\x53\x20\x42\x5c\x2e\x54\x6b\ +\x23\x43\x67\x16\x36\x6c\x11\x39\x80\x11\x36\x7c\x14\x36\x78\x13\ +\x38\x7b\x13\x32\x7d\x14\x25\x98\x20\x31\xbb\x1d\x2b\xa7\x15\x25\ +\xbd\x22\x34\xcf\x1f\x34\xbe\x15\x2a\xab\x22\x39\xbc\x38\x4c\xc7\ +\x33\x48\xbb\x38\x4e\xc3\x29\x42\xcf\x1e\x33\xa8\x21\x3b\x94\x05\ +\x0f\x46\x0b\x15\x77\x16\x26\xca\x11\x29\xd0\x21\x46\xc4\x27\x41\ +\x8f\x2e\x4c\x88\x32\x70\xbd\x24\x63\xb1\x19\x59\xb3\x21\x4f\x9f\ +\x18\x38\x9b\x1c\x3d\xc8\x1d\x44\xc9\x24\x49\xd1\x21\x3a\xcf\x19\ +\x33\xb9\x00\x00\x00\x1b\x2e\x27\x15\x24\x1c\x11\x1d\x1a\x16\x27\ +\x28\x1f\x38\x3a\x1c\x36\x31\x17\x2c\x25\x1e\x35\x34\x20\x37\x37\ +\x23\x40\x4d\x27\x47\x52\x1b\x2c\x32\x12\x1c\x23\x2a\x34\x3d\x11\ +\x17\x1a\x15\x1a\x1d\x12\x14\x15\x0f\x11\x12\x14\x17\x17\x12\x17\ +\x17\x14\x1a\x18\x16\x1d\x1c\x18\x21\x21\x1b\x23\x21\x1a\x27\x26\ +\x1b\x29\x29\x1e\x2e\x2c\x20\x2e\x2d\x21\x30\x30\x22\x32\x2c\x23\ +\x34\x2d\x22\x37\x31\x26\x3b\x33\x2d\x43\x3c\x30\x4f\x44\x35\x57\ +\x4d\x3a\x69\x65\x42\x73\x72\x44\x71\x6d\x37\x65\x8d\x1a\x53\xa6\ +\x11\x45\x99\x1d\x4b\x99\x3b\x50\x7e\x4b\x59\x7e\x40\x51\x9c\x3b\ +\x49\x89\x3d\x52\x82\x36\x49\x8b\x20\x35\x92\x16\x2b\x91\x12\x24\ +\xb4\x09\x12\x9f\x0c\x16\x94\x09\x14\x97\x0a\x16\x98\x09\x14\xa4\ +\x07\x14\xad\x05\x12\xa7\x06\x13\xa8\x06\x14\xac\x06\x13\xac\x05\ +\x13\xac\x06\x15\xb2\x0d\x1a\xaa\x0d\x18\xa0\x13\x21\xa4\x13\x20\ +\x9f\x19\x28\xa1\x20\x43\xb7\x4b\x6d\xc5\x69\x63\x99\x5b\x4d\x39\ +\x62\x57\x43\x5e\x4f\x34\x54\x43\x23\x50\x3e\x28\x51\x3f\x29\x4b\ +\x3d\x2e\x4b\x3f\x2a\x46\x4b\x3e\x49\x53\x3f\x20\x27\x18\x1b\x1e\ +\x19\x0f\x11\x0c\x1b\x1e\x12\x1e\x25\x1e\x19\x1f\x17\x19\x1e\x12\ +\x19\x1f\x15\x15\x16\x13\x0c\x0b\x0b\x0c\x0b\x0b\x0e\x0c\x0f\x16\ +\x13\x15\x1c\x1d\x1f\x21\x21\x25\x22\x26\x31\x20\x28\x3d\x1d\x2d\ +\x5a\x0e\x28\x69\x0f\x2a\x65\x0f\x31\x69\x0f\x2e\x68\x0d\x2c\x68\ +\x0f\x32\x6c\x0f\x30\x6b\x14\x38\x77\x13\x34\x59\x14\x32\x4f\x16\ +\x38\x60\x18\x35\x50\x15\x2c\x34\x18\x33\x41\x0f\x2d\x5c\x1b\x3b\ +\x7c\x22\x38\x61\x0b\x16\x24\x39\x65\x8b\x1f\x37\x49\x1a\x35\x4f\ +\x2f\x52\x75\x32\x5a\x82\x41\x6a\x94\x1a\x3c\x6c\x11\x31\x74\x15\ +\x37\x7b\x13\x3a\x7f\x10\x35\x80\x14\x38\x7c\x11\x34\x79\x17\x33\ +\x81\x1d\x2f\xa8\x14\x26\xc6\x1d\x31\xc7\x1f\x33\xbf\x27\x3a\xbc\ +\x1f\x31\xbf\x29\x3b\xc9\x27\x3a\xc0\x2c\x41\xbe\x24\x38\xb4\x3a\ +\x54\xbd\x85\x94\xd1\x75\x88\xb7\x44\x60\xa2\x24\x3b\x78\x15\x23\ +\x7d\x1c\x2e\xaa\x25\x42\xa3\x23\x45\x9d\x25\x40\x9b\x24\x41\xa3\ +\x33\x59\xaf\x27\x52\x99\x1f\x46\x8a\x1b\x41\x7a\x1c\x45\x80\x1c\ +\x44\x8a\x1b\x3c\x8a\x20\x43\x9b\x1c\x45\x9a\x19\x40\x9c\x00\x00\ +\x00\x1e\x32\x38\x14\x2a\x27\x1c\x33\x31\x24\x43\x42\x28\x4b\x4b\ +\x25\x41\x3e\x1d\x36\x31\x23\x3f\x3b\x1f\x3d\x3e\x33\x63\x62\x33\ +\x62\x60\x2e\x5b\x5d\x1a\x2c\x2c\x1e\x2e\x2f\x15\x22\x24\x16\x24\ +\x26\x12\x1b\x1d\x10\x19\x19\x12\x17\x18\x15\x1b\x1d\x13\x17\x17\ +\x12\x16\x15\x13\x19\x17\x18\x1a\x1a\x19\x1f\x1f\x19\x24\x23\x1a\ +\x22\x24\x1a\x23\x25\x17\x22\x21\x1a\x1f\x23\x1a\x23\x24\x19\x25\ +\x26\x1d\x2a\x29\x1f\x2e\x2b\x21\x32\x2d\x23\x35\x33\x23\x37\x35\ +\x1f\x3b\x36\x22\x43\x3f\x33\x58\x6d\x22\x60\xad\x10\x44\x9b\x17\ +\x4c\x9d\x1c\x4a\x96\x29\x50\x9e\x36\x51\x79\x43\x53\x7b\x3f\x4e\ +\x8f\x27\x3a\x9b\x17\x26\x84\x16\x2a\x8a\x0e\x22\xa9\x05\x10\x95\ +\x08\x14\x95\x0b\x12\x8e\x08\x12\xa2\x08\x12\xac\x07\x13\xa4\x08\ +\x14\xae\x07\x13\xac\x0a\x16\xad\x08\x14\xad\x06\x14\xaa\x05\x14\ +\xb0\x0b\x18\xa1\x0c\x1c\xa9\x10\x20\xaa\x16\x25\xa5\x19\x2e\xa8\ +\x3a\x61\xc6\x63\x7a\xce\x57\x51\x71\x59\x4e\x33\x5e\x50\x32\x4d\ +\x3e\x21\x47\x37\x20\x55\x43\x2c\x5b\x48\x30\x4b\x3c\x27\x53\x46\ +\x33\x31\x32\x1f\x2d\x38\x2f\x16\x1c\x14\x33\x36\x26\x22\x29\x18\ +\x0a\x0d\x07\x0f\x12\x0f\x07\x09\x07\x05\x07\x06\x26\x26\x26\x35\ +\x31\x2c\x2c\x27\x26\x25\x21\x23\x26\x1f\x22\x21\x1b\x1d\x25\x25\ +\x2b\x28\x2f\x3e\x20\x2b\x4e\x1e\x2c\x52\x1a\x27\x4a\x15\x29\x57\ +\x10\x2f\x71\x0e\x2c\x68\x12\x31\x67\x0f\x32\x6c\x0d\x2e\x6b\x10\ +\x30\x69\x12\x35\x6d\x10\x32\x6f\x14\x2d\x54\x17\x28\x35\x18\x30\ +\x45\x14\x2f\x60\x10\x2b\x5c\x0e\x2f\x76\x13\x33\x81\x1d\x39\x78\ +\x0c\x17\x28\x22\x3c\x52\x39\x5f\x89\x22\x45\x66\x29\x54\x76\x27\ +\x56\x81\x41\x6c\x92\x1d\x41\x7e\x12\x37\x81\x12\x38\x7d\x11\x39\ +\x81\x11\x38\x82\x15\x3b\x81\x16\x38\x7d\x16\x38\x84\x29\x39\xb4\ +\x23\x36\xd2\x2f\x43\xcc\x26\x3a\xb8\x2e\x3e\xbd\x28\x37\xc8\x27\ +\x39\xc6\x21\x35\xc8\x1d\x32\xbc\x22\x37\xb4\x6b\x7e\xce\xf0\xf3\ +\xf8\xe1\xe7\xf0\xc4\xd1\xe3\xaa\xbc\xd9\x83\x95\xba\x5f\x6e\x99\ +\x3a\x49\x7a\x29\x3b\x70\x24\x3b\x71\x1f\x31\x69\x22\x38\x7b\x25\ +\x3f\x7e\x25\x45\x85\x22\x42\x7e\x1a\x39\x7b\x1b\x33\x70\x19\x32\ +\x7d\x19\x38\x85\x1f\x4e\x94\x1a\x4e\x8e\x00\x00\x00\x23\x39\x3d\ +\x20\x3b\x3b\x22\x3c\x39\x27\x44\x42\x22\x40\x3d\x1c\x32\x30\x25\ +\x42\x44\x27\x46\x4b\x22\x44\x3e\x25\x41\x37\x28\x44\x44\x30\x5b\ +\x53\x1d\x34\x36\x1f\x2e\x33\x1c\x2c\x2b\x26\x4b\x4f\x19\x2c\x2b\ +\x16\x27\x28\x15\x25\x25\x1e\x2d\x33\x1b\x26\x28\x1c\x27\x2f\x1a\ +\x25\x2e\x18\x1e\x20\x18\x20\x24\x18\x20\x21\x19\x23\x27\x1a\x22\ +\x27\x18\x20\x24\x18\x1e\x25\x16\x1c\x20\x15\x1b\x22\x19\x1f\x23\ +\x1c\x22\x26\x1b\x23\x26\x1f\x29\x28\x22\x38\x3c\x21\x3b\x3e\x23\ +\x37\x38\x27\x38\x43\x2d\x6a\xb6\x15\x49\xa0\x14\x48\x9b\x19\x4a\ +\x9c\x20\x52\x9f\x29\x5a\xa2\x43\x57\x8d\x2e\x39\x86\x20\x31\x8d\ +\x13\x28\x9b\x0d\x1a\x7a\x09\x18\x98\x0c\x16\x84\x0c\x17\x96\x0b\ +\x14\x94\x09\x12\xa0\x07\x12\xaa\x06\x13\xa9\x07\x13\xb0\x07\x12\ +\xa7\x07\x14\xaa\x08\x15\xae\x0a\x18\xb1\x08\x15\xa9\x0a\x18\xa7\ +\x0b\x19\xaf\x12\x1f\xa8\x14\x26\xa8\x27\x3c\xbf\x58\x64\xc8\x6a\ +\x61\x7b\x5d\x51\x43\x5b\x4d\x31\x5f\x4e\x2d\x52\x42\x25\x4b\x3c\ +\x26\x46\x36\x24\x49\x3a\x28\x4e\x40\x28\x4e\x3d\x25\x44\x3a\x28\ +\x20\x24\x1a\x1f\x23\x14\x14\x18\x0d\x20\x25\x13\x19\x20\x11\x03\ +\x03\x05\x04\x05\x06\x06\x07\x08\x22\x20\x1d\x31\x2a\x26\x28\x23\ +\x24\x27\x20\x22\x21\x1f\x28\x21\x27\x44\x21\x32\x63\x1e\x40\x8b\ +\x1e\x31\x75\x1e\x2a\x5a\x21\x2c\x54\x1d\x2f\x57\x11\x30\x6b\x0c\ +\x2d\x6f\x0e\x2d\x6c\x12\x34\x6e\x11\x34\x6d\x10\x2d\x67\x10\x2d\ +\x67\x10\x35\x70\x10\x31\x6c\x12\x27\x47\x13\x29\x48\x0b\x29\x6e\ +\x0c\x2c\x72\x0f\x2f\x76\x0f\x2f\x77\x12\x2f\x70\x16\x30\x5a\x19\ +\x42\x78\x22\x54\x96\x20\x52\x94\x15\x43\x83\x14\x3f\x79\x17\x41\ +\x7f\x13\x3a\x82\x15\x37\x7e\x12\x35\x7b\x12\x37\x81\x10\x36\x80\ +\x17\x3d\x82\x19\x46\x8f\x19\x35\x85\x23\x33\xbc\x25\x36\xd0\x16\ +\x27\xd3\x35\x47\xd1\x1e\x31\xcf\x1f\x34\xd3\x37\x4c\xcf\x2c\x3f\ +\xc4\x1f\x31\xaa\x2e\x43\xad\xc6\xd1\xe8\xf3\xf4\xfb\xe4\xea\xf3\ +\xd7\xdf\xe9\xd3\xdc\xe6\xcf\xd9\xe5\xc9\xd4\xe2\xb9\xc7\xdd\xa0\ +\xae\xcc\x81\x90\xb2\x67\x75\x98\x47\x51\x76\x18\x1f\x3c\x10\x1d\ +\x38\x50\x69\x8b\x40\x53\x88\x13\x22\x54\x12\x21\x57\x16\x28\x61\ +\x18\x2b\x63\x1d\x43\x93\x00\x00\x00\x22\x3a\x3a\x20\x41\x41\x31\ +\x48\x55\x1e\x30\x25\x1e\x35\x2f\x21\x3c\x37\x2c\x49\x4a\x42\x5a\ +\x56\x25\x37\x36\x21\x39\x3a\x2b\x4f\x50\x2a\x52\x52\x32\x56\x6c\ +\x2b\x39\x43\x1d\x2d\x34\x2a\x55\x54\x26\x4a\x50\x24\x42\x46\x22\ +\x3f\x45\x24\x41\x72\x23\x3f\x64\x29\x46\x69\x25\x3f\x67\x1d\x2e\ +\x4b\x1a\x2a\x43\x1e\x2e\x3d\x20\x30\x3a\x1e\x29\x34\x1d\x24\x2c\ +\x18\x1f\x26\x17\x1b\x20\x17\x1c\x1d\x1b\x1f\x1f\x1b\x1e\x1f\x18\ +\x1c\x1f\x1b\x22\x27\x23\x37\x3f\x23\x32\x39\x26\x36\x3e\x24\x36\ +\x38\x2c\x64\xac\x16\x4d\xa3\x13\x48\x9c\x17\x47\x9c\x21\x50\x9e\ +\x29\x5c\xab\x38\x5a\xa1\x30\x42\x8d\x32\x40\x87\x28\x3a\x8c\x0e\ +\x1f\x86\x09\x11\x9d\x0a\x0f\x65\x0d\x17\x99\x08\x10\x99\x09\x13\ +\xa9\x06\x11\xa6\x08\x16\xb2\x06\x13\xaa\x0b\x16\xa6\x07\x13\xab\ +\x0a\x15\xab\x06\x15\xa7\x09\x18\xad\x08\x18\xac\x0c\x19\xa8\x11\ +\x23\xaa\x13\x25\xa8\x36\x46\xce\x56\x5d\xc5\x65\x5f\x69\x61\x53\ +\x39\x54\x44\x27\x5e\x51\x40\x64\x5e\x56\x4e\x48\x41\x40\x38\x31\ +\x43\x3a\x30\x48\x3e\x30\x4a\x3c\x2e\x43\x40\x36\x2a\x31\x1c\x18\ +\x1e\x0e\x0f\x13\x0c\x21\x27\x17\x22\x2a\x17\x04\x06\x08\x0d\x10\ +\x10\x0b\x0c\x0d\x0e\x0d\x0d\x31\x2d\x30\x2e\x2d\x37\x2c\x2e\x41\ +\x44\x4e\x6f\x32\x57\x96\x15\x50\xaf\x19\x43\xa1\x1f\x45\x99\x22\ +\x3d\x7c\x23\x3a\x66\x22\x3c\x62\x14\x35\x70\x10\x31\x70\x0e\x2f\ +\x72\x0b\x2a\x6d\x12\x31\x6c\x14\x35\x71\x10\x30\x6b\x0e\x2c\x69\ +\x14\x35\x75\x14\x32\x70\x0e\x2d\x6c\x0b\x29\x71\x0c\x2b\x70\x11\ +\x33\x7e\x0f\x2f\x76\x0f\x2e\x6e\x19\x40\x7f\x17\x4b\x92\x12\x44\ +\x8c\x11\x45\x94\x11\x44\x90\x13\x3c\x7f\x1a\x41\x85\x15\x3b\x82\ +\x13\x35\x7a\x10\x38\x80\x0d\x35\x82\x11\x39\x82\x1e\x48\x91\x13\ +\x3b\x80\x1a\x2b\x80\x1d\x2f\xa5\x1e\x30\xc0\x1b\x2b\xe2\x1a\x28\ +\xe6\x1e\x30\xe8\x1d\x31\xdc\x28\x3c\xcd\x21\x36\xba\x26\x3d\xaf\ +\x53\x69\xb5\xf6\xfa\xfc\xef\xf2\xf9\xe7\xeb\xf4\xde\xe6\xef\xdd\ +\xe4\xed\xda\xe3\xea\xd8\xdf\xe9\xd4\xdc\xe7\xd0\xd9\xe3\xca\xd3\ +\xe0\xc0\xcb\xdb\xa7\xb0\xc6\x42\x45\x5c\x10\x1e\x3c\x58\x71\x8e\ +\x84\x92\xa4\x12\x20\x37\x2a\x3a\x5f\x07\x0e\x27\x02\x07\x1b\x07\ +\x12\x3b\x00\x00\x00\x20\x38\x33\x20\x3b\x36\x2d\x41\x45\x18\x22\ +\x29\x16\x25\x24\x1b\x30\x2e\x1b\x32\x2a\x21\x32\x31\x26\x45\x54\ +\x36\x66\x6d\x36\x6f\x73\x30\x66\x67\x3a\x5d\x58\x30\x41\x48\x5a\ +\x70\x7d\x2f\x55\x61\x32\x61\x6a\x2e\x48\x51\x2f\x5c\x67\x9d\xa8\ +\x9d\x7f\x90\x83\x78\x8b\x89\x9a\xad\xaf\x87\xa0\xb9\x71\xa1\xdc\ +\x54\x83\xcc\x40\x6e\xbc\x34\x63\xb4\x29\x53\xa7\x1f\x44\x9f\x1b\ +\x3d\x93\x19\x30\x71\x16\x20\x38\x17\x21\x3c\x19\x2b\x55\x1e\x36\ +\x55\x21\x39\x50\x26\x3b\x51\x26\x39\x48\x25\x32\x39\x39\x60\x95\ +\x12\x4c\xa1\x15\x4e\xa4\x17\x4a\xa1\x1c\x4c\xa0\x22\x52\x9d\x29\ +\x59\xa3\x25\x54\xa6\x2e\x51\x8b\x33\x45\x6c\x22\x33\xa2\x09\x14\ +\x9f\x0a\x0f\x6a\x0c\x11\x93\x08\x10\x92\x06\x13\xad\x09\x13\xa1\ +\x0a\x16\xb3\x0c\x16\xa9\x08\x11\xa0\x08\x14\xac\x07\x15\xa3\x0b\ +\x17\xa5\x07\x17\xb2\x09\x15\xa9\x12\x23\xa2\x1f\x3a\x9d\x2d\x5a\ +\xb8\x68\x6f\xe1\x55\x51\x80\x5b\x4f\x4d\x5b\x4b\x2d\x7a\x6e\x66\ +\xac\xb9\xc3\x74\x8d\x9f\x5e\x71\x7f\x4b\x55\x5d\x23\x24\x2a\x11\ +\x11\x15\x1b\x23\x35\x29\x31\x3f\x2d\x3a\x37\x24\x34\x2c\x1b\x24\ +\x1e\x46\x4a\x47\x27\x2d\x20\x0c\x10\x11\x0c\x0f\x0f\x0d\x0c\x0d\ +\x09\x08\x0a\x41\x3b\x41\x54\x53\x66\x5b\x6b\x96\x4e\x5e\x7b\x2d\ +\x5b\x9f\x1a\x52\xb8\x1c\x46\xa2\x1e\x4b\x9e\x26\x4b\x82\x1f\x52\ +\x98\x21\x4b\x7d\x1a\x41\x7d\x11\x33\x75\x10\x34\x78\x10\x36\x79\ +\x10\x30\x73\x0f\x35\x77\x0e\x33\x78\x0e\x2f\x75\x10\x30\x72\x15\ +\x35\x7a\x18\x3d\x86\x11\x2f\x78\x10\x2e\x73\x13\x35\x7e\x1d\x41\ +\x80\x19\x4d\x92\x25\x65\xab\x13\x4a\x98\x10\x41\x8e\x13\x46\x94\ +\x16\x45\x8d\x15\x40\x82\x14\x3e\x81\x14\x3b\x7f\x16\x39\x7f\x12\ +\x3b\x85\x11\x3a\x88\x16\x41\x8a\x1b\x48\x92\x18\x30\x62\x2d\x39\ +\x6d\x22\x33\x89\x22\x34\xb8\x17\x26\xdf\x20\x2c\xef\x1d\x2f\xea\ +\x1b\x2d\xde\x21\x33\xcc\x31\x47\xbb\x37\x52\xbe\x96\xa6\xd2\xf6\ +\xf8\xfd\xf2\xf3\xf9\xe8\xec\xf5\xe3\xe9\xf1\xe3\xe8\xf1\xe1\xe7\ +\xf0\xdf\xe7\xef\xde\xe5\xee\xde\xe3\xec\xd9\xe0\xe8\xd4\xdb\xe4\ +\xc2\xc8\xd4\x57\x60\x83\x27\x3c\x6e\x5d\x70\x95\x8b\x95\xa1\x1a\ +\x25\x2b\x58\x68\x74\x4f\x5c\x69\x3d\x4d\x68\x0c\x18\x36\x00\x00\ +\x00\x1d\x31\x33\x1c\x35\x33\x1c\x31\x36\x1f\x31\x3b\x18\x2a\x27\ +\x1b\x31\x2c\x1a\x2e\x2a\x2a\x4d\x4c\x52\x71\x69\x39\x59\x54\x37\ +\x6b\x67\x33\x60\x5c\x22\x39\x38\x30\x5a\x5b\x48\x64\x6a\x3d\x65\ +\x70\x3a\x5f\x65\x30\x45\x4b\x3c\x58\x63\x4b\x5b\x60\x35\x41\x44\ +\x2a\x32\x2e\x40\x3f\x30\x48\x3e\x26\x81\x77\x51\xeb\xeb\xd9\xf7\ +\xfe\xff\xf4\xfd\xfd\xeb\xfa\xfd\xe7\xf8\xfd\xdb\xf1\xfd\xba\xd0\ +\xe0\x76\x8b\xa9\x67\x85\xb2\x91\xbc\xef\x85\xb2\xf1\x82\xa9\xe7\ +\x6b\x98\xdc\x68\x90\xd0\x6b\x89\xc3\x53\x75\xb0\x10\x4d\xa3\x14\ +\x4a\xa1\x16\x4b\xa2\x17\x4d\xa0\x25\x58\xa5\x23\x51\x9c\x21\x53\ +\xa3\x22\x50\xa1\x27\x47\xa4\x15\x20\x72\x1b\x2a\xaa\x04\x09\x6a\ +\x09\x12\x9e\x06\x0f\x91\x07\x12\xa9\x07\x14\xa5\x06\x16\xb0\x09\ +\x16\xa7\x08\x14\xb0\x06\x10\xa5\x08\x14\x9f\x09\x17\xb3\x09\x17\ +\xa1\x12\x20\x9c\x3a\x4f\x62\x58\x76\x51\x5f\x80\x57\x3f\x5e\xbe\ +\x4c\x55\xb8\x58\x4b\x4f\x84\x78\x70\xe8\xe7\xed\xc1\xd3\xde\x70\ +\x8b\x9d\x68\x7e\x8b\x60\x73\x7d\x46\x52\x5d\x14\x19\x1f\x09\x0c\ +\x15\x09\x0d\x12\x11\x1a\x1f\x2a\x33\x32\x22\x2c\x27\x1e\x24\x1e\ +\x19\x20\x1c\x10\x15\x15\x11\x0f\x0f\x10\x0e\x10\x22\x22\x24\x44\ +\x3f\x45\x5c\x56\x5d\x88\x98\xbe\x7d\x8a\xb0\x37\x5a\x99\x1a\x4c\ +\xa5\x28\x57\x98\x28\x44\x6e\x24\x57\x9a\x25\x56\x8c\x20\x41\x68\ +\x24\x43\x6b\x18\x3b\x7d\x11\x35\x77\x14\x36\x76\x10\x39\x7d\x0f\ +\x35\x83\x12\x33\x7a\x0f\x32\x72\x11\x33\x7b\x16\x36\x82\x1d\x3b\ +\x7c\x2e\x57\x95\x31\x5f\x9f\x3b\x6c\xa8\x54\x96\xca\x28\x6b\xb2\ +\x1b\x62\xaf\x15\x4f\x9a\x16\x47\x91\x11\x46\x93\x17\x45\x8c\x15\ +\x3f\x7e\x18\x41\x80\x18\x3e\x81\x16\x3c\x82\x16\x3f\x8c\x17\x45\ +\x8f\x17\x44\x8d\x15\x49\x92\x1f\x38\x68\x3d\x4a\x5f\x44\x4a\x50\ +\x3e\x45\x6e\x48\x75\xd1\x28\x58\xeb\x29\x64\xf6\x30\x70\xf5\x26\ +\x44\xce\x27\x3e\xb7\x2a\x48\xbc\xc5\xd2\xe6\xef\xf0\xf7\xec\xef\ +\xf7\xe8\xec\xf4\xe6\xeb\xf2\xe5\xeb\xf3\xe5\xe9\xf1\xe3\xea\xf0\ +\xe3\xe9\xf0\xe4\xe8\xf0\xe0\xe6\xed\xde\xe4\xe9\xc8\xce\xda\x5e\ +\x6f\x9f\x43\x5f\x8a\x7f\x94\xb1\x88\x93\x9e\x17\x21\x26\x56\x66\ +\x70\x44\x52\x52\x71\x82\x83\x25\x2b\x2a\x00\x00\x00\x26\x47\x45\ +\x1e\x37\x33\x22\x39\x45\x21\x38\x39\x20\x3a\x3d\x1a\x30\x2d\x16\ +\x28\x23\x1f\x38\x2f\x22\x41\x39\x25\x44\x3d\x27\x4e\x47\x1f\x3d\ +\x3a\x28\x4a\x45\x1f\x30\x2f\x2a\x41\x43\x33\x4d\x52\x2c\x45\x47\ +\x1e\x2d\x28\x20\x33\x38\x51\x81\xa2\x3b\x56\x6a\x2b\x42\x58\x26\ +\x3b\x4f\x2a\x3f\x56\x2e\x48\x62\x57\x58\x43\xb1\xa2\x7a\xc7\xbc\ +\xa6\xd2\xcd\xbb\xd0\xc6\xaa\xcc\xbd\x9c\xa8\x94\x78\x86\x7e\x6c\ +\x9a\x9a\x91\xe5\xdc\xd2\xf6\xf0\xe2\xfd\xf6\xea\xff\xfe\xf5\xfa\ +\xfb\xf6\xf2\xf9\xf8\xad\xba\xcf\x1c\x5b\xad\x0d\x41\x9b\x12\x48\ +\x9f\x16\x4c\xa0\x1f\x54\xa6\x23\x54\xa2\x29\x56\x97\x32\x4d\x63\ +\x23\x36\x77\x22\x31\x7b\x24\x32\x97\x0f\x16\x73\x27\x2f\x9a\x03\ +\x0b\x85\x07\x12\xa2\x09\x15\xa9\x0a\x17\xa7\x09\x15\xac\x09\x17\ +\xb1\x09\x13\xa6\x0b\x16\xa4\x0b\x14\x9e\x0d\x17\xa5\x36\x49\x67\ +\x6d\x8a\x46\x68\x82\x36\x60\x7a\x41\x39\x69\xb1\x45\x64\xc7\x87\ +\x8c\xc7\xeb\xed\xf1\xfa\xfc\xff\xea\xf0\xf6\x76\x91\xa1\x61\x7c\ +\x8a\x5a\x71\x7c\x5b\x6d\x76\x42\x4f\x56\x10\x12\x10\x0d\x0c\x0a\ +\x0b\x0b\x0b\x10\x0f\x0d\x20\x1c\x18\x31\x30\x26\x39\x41\x2f\x44\ +\x47\x3c\x45\x42\x45\x3b\x3a\x4e\x54\x4b\x53\x47\x40\x3e\x99\xa3\ +\xaa\xa3\xb0\xb7\x76\x7b\x99\x3c\x60\xa5\x1b\x56\xb8\x1c\x50\xab\ +\x24\x4f\x99\x29\x50\x89\x2f\x50\x73\x25\x42\x62\x13\x38\x71\x0f\ +\x32\x73\x12\x36\x79\x10\x35\x77\x11\x34\x75\x15\x3f\x88\x0f\x32\ +\x80\x0e\x33\x79\x11\x35\x80\x10\x30\x77\x10\x2a\x62\x1a\x47\x8b\ +\x4f\x93\xc8\x68\xad\xda\x43\x91\xce\x23\x68\xb6\x1b\x5b\xa9\x19\ +\x47\x90\x14\x48\x94\x14\x42\x95\x14\x3d\x85\x15\x3c\x7d\x17\x43\ +\x84\x1b\x48\x92\x1a\x44\x8f\x1f\x4d\x96\x18\x49\x8f\x15\x43\x8c\ +\x18\x4a\x96\x28\x3c\x61\x49\x50\x4b\x52\x56\x4a\x59\x6e\x79\x48\ +\x86\xd0\x2f\x82\xf1\x2f\x84\xf5\x31\x7f\xf1\x2d\x54\xc9\x72\x86\ +\xcc\x50\x74\xc6\xe3\xed\xf5\xe7\xea\xf3\xea\xed\xf6\xe9\xec\xf4\ +\xe8\xec\xf3\xe6\xec\xf4\xe7\xec\xf2\xe7\xeb\xf1\xe7\xeb\xf1\xe6\ +\xeb\xef\xe5\xe9\xee\xe4\xe8\xec\xc1\xc6\xce\x53\x61\x79\x66\x81\ +\x9d\xb5\xc9\xd8\x7a\x7e\x86\x15\x1f\x21\x34\x3d\x46\x47\x51\x51\ +\x52\x5b\x59\x1e\x25\x1d\x00\x00\x00\x25\x46\x51\x2c\x49\x58\x2b\ +\x4c\x5e\x27\x41\x46\x2c\x4a\x5a\x24\x3c\x3a\x1f\x37\x31\x1e\x35\ +\x2e\x22\x42\x40\x2a\x4f\x4c\x2a\x52\x4c\x28\x4a\x44\x24\x3b\x39\ +\x1a\x26\x2a\x1f\x2f\x32\x2d\x4b\x4d\x29\x4a\x4b\x18\x25\x23\x20\ +\x36\x36\x40\x62\x64\x3e\x57\x67\x3e\x5a\x6d\x3b\x57\x68\x38\x52\ +\x63\x3e\x64\x80\x35\x58\x74\x2b\x43\x4c\x3d\x57\x5b\x45\x61\x5c\ +\x38\x4a\x3e\x33\x3e\x3c\x38\x57\x70\x33\x45\x50\x39\x45\x4b\x54\ +\x48\x37\x6f\x62\x42\x84\x76\x58\x9d\x9b\x84\xa5\xb2\xa8\xa0\xaf\ +\xb4\x83\x95\x9d\x21\x5e\xb2\x0a\x3f\x9a\x12\x45\x9e\x19\x4a\x9c\ +\x1e\x53\xa7\x20\x53\xa8\x24\x53\x97\x2d\x37\x60\x22\x2d\x7b\x22\ +\x32\x96\x20\x2e\xa2\x14\x20\x83\x09\x10\x7f\x0b\x10\x81\x0a\x14\ +\x99\x0a\x18\xad\x0d\x19\xa9\x07\x15\xb2\x08\x15\xab\x07\x12\x9d\ +\x0a\x13\x96\x1a\x25\x74\x25\x32\x6f\x5e\x72\x5a\x71\x8a\x44\x6a\ +\x82\x38\x5f\x7e\x57\x44\x7d\xc0\x8d\xae\xe1\xf2\xf4\xfe\xfb\xfd\ +\xff\xf7\xf9\xfe\xf6\xf8\xfc\xc4\xd3\xde\x74\x93\xa9\x59\x72\x83\ +\x55\x6a\x77\x5f\x71\x7f\x2f\x39\x3e\x0b\x0a\x0a\x0d\x0d\x0c\x0c\ +\x0e\x0d\x0c\x0c\x0c\x11\x11\x10\x2d\x26\x1d\x43\x3e\x3f\x42\x46\ +\x5d\x3b\x3c\x6c\x59\x5a\x80\x5d\x60\x75\x7c\x89\xa4\x7e\x70\x68\ +\x5e\x3c\x27\x5b\x4d\x4e\x46\x53\x74\x4b\x43\x50\x41\x3c\x50\x34\ +\x3c\x6b\x1f\x41\x95\x25\x48\x7f\x1c\x40\x7d\x12\x36\x7d\x0f\x2f\ +\x71\x10\x35\x7c\x0c\x33\x74\x23\x57\x98\x13\x46\x99\x13\x3f\x8d\ +\x13\x3e\x8b\x14\x35\x73\x14\x3b\x7e\x19\x43\x89\x2b\x6f\xb8\x55\ +\x9f\xd3\x49\x91\xc7\x21\x60\xab\x17\x4a\x98\x15\x3f\x8e\x1a\x47\ +\x92\x14\x3f\x95\x11\x35\x85\x17\x3d\x80\x1a\x51\x9a\x33\x6a\xaa\ +\x17\x44\x8c\x15\x4b\x94\x17\x4a\x92\x17\x46\x8d\x1d\x4d\x98\x28\ +\x48\x77\x43\x54\x5f\x4c\x53\x4a\x4f\x51\x3d\x51\x5f\x5e\x4d\x93\ +\xe8\x36\x8d\xf5\x47\x96\xeb\x93\xad\xe2\xd3\xda\xec\xa8\xb9\xd6\ +\xe2\xea\xf2\xe6\xea\xf2\xe8\xeb\xf2\xe8\xeb\xf2\xe8\xeb\xf3\xe8\ +\xec\xf4\xe9\xed\xf3\xe9\xec\xf3\xe9\xed\xf2\xe7\xec\xf0\xe6\xeb\ +\xef\xe5\xe9\xed\xaf\xb0\xb7\x4c\x5c\x6c\x8c\xa8\xbc\xc2\xd2\xdf\ +\x4c\x4f\x4f\x20\x2b\x2a\x41\x4b\x55\x21\x29\x2d\x18\x20\x1d\x1d\ +\x2a\x20\x00\x00\x00\x25\x44\x4b\x30\x4b\x4f\x31\x53\x5b\x28\x45\ +\x42\x2a\x45\x44\x21\x35\x33\x19\x2d\x27\x1a\x2f\x2b\x20\x3d\x36\ +\x25\x43\x3c\x25\x46\x40\x24\x46\x3a\x19\x2e\x29\x17\x24\x20\x17\ +\x22\x1c\x19\x2d\x26\x22\x3b\x3b\x22\x31\x34\x20\x31\x34\x28\x3f\ +\x3b\x32\x4c\x56\x36\x54\x5a\x30\x45\x45\x31\x49\x51\x46\x71\x83\ +\x4c\x7a\x8f\x33\x47\x49\x2e\x44\x47\x25\x37\x36\x27\x3e\x40\x2c\ +\x45\x46\x30\x46\x45\x33\x4a\x4d\x30\x48\x4b\x23\x35\x36\x1c\x2e\ +\x2d\x1a\x2a\x2a\x23\x35\x2e\x35\x52\x4e\x44\x70\x76\x4d\x86\x9d\ +\x2a\x5f\xa7\x09\x41\x9c\x14\x47\x9e\x18\x49\x9b\x1b\x4e\xa1\x1b\ +\x4f\xa5\x20\x51\x9a\x3f\x4c\x44\x41\x44\x3e\x31\x3e\x75\x26\x36\ +\x8a\x1d\x23\x5c\x34\x3a\x67\x1d\x29\x76\x15\x1d\x6c\x0b\x15\xa5\ +\x09\x15\xae\x0a\x16\xb2\x16\x22\xaa\x15\x1d\x95\x11\x18\x52\x3b\ +\x45\x35\x44\x51\x33\x47\x57\x2c\x5b\x6f\x31\x53\x6b\x3b\x80\x99\ +\x9b\xc1\xd2\xe9\xfb\xfc\xfe\xfa\xfb\xfe\xf7\xfa\xfd\xf6\xf9\xfe\ +\xf3\xf7\xfb\xed\xf0\xf5\xb2\xc4\xd0\x5f\x7d\x8e\x51\x6b\x7c\x63\ +\x78\x87\x5a\x6c\x79\x0b\x0e\x0d\x0c\x0d\x0c\x09\x0a\x0b\x08\x0a\ +\x0d\x0a\x0a\x0b\x15\x10\x0e\x20\x1e\x27\x24\x28\x3d\x44\x49\x8a\ +\x46\x47\x5d\x54\x4d\x57\x59\x5c\x81\x47\x46\x53\x59\x37\x26\x65\ +\x39\x1e\x60\x37\x21\x4d\x33\x27\x44\x2c\x20\x4e\x30\x24\x48\x3a\ +\x45\x34\x48\x87\x1a\x53\xb9\x0d\x48\xab\x10\x33\x7a\x16\x3a\x88\ +\x16\x44\x87\x24\x62\xa2\x13\x4a\x9c\x18\x4b\x98\x1f\x4f\x95\x24\ +\x4a\x84\x1a\x45\x8b\x13\x42\x8f\x24\x71\xc0\x6e\xb2\xd9\x68\x9a\ +\xc1\x2c\x5f\xb3\x15\x44\x99\x16\x40\x92\x15\x32\x7b\x13\x37\x90\ +\x10\x31\x89\x17\x3d\x84\x1a\x5b\xab\x38\x6e\xaa\x17\x45\x8e\x16\ +\x4c\x98\x17\x4b\x95\x19\x48\x90\x1d\x4c\x96\x28\x55\x8c\x3c\x59\ +\x74\x55\x5e\x4f\x5c\x64\x4c\x58\x68\x48\x54\x83\xad\x36\x8f\xf5\ +\x85\xb6\xed\xed\xf1\xfa\xf0\xf2\xf9\xe2\xe8\xf0\xd3\xde\xe8\xda\ +\xe1\xea\xde\xe4\xec\xe4\xe9\xef\xe5\xeb\xf1\xe7\xec\xf0\xe8\xec\ +\xf2\xe8\xec\xf1\xe9\xec\xf2\xe7\xec\xf0\xe7\xea\xef\xe1\xe4\xe7\ +\x86\x88\x91\x6b\x81\x8d\xae\xc4\xd3\xb2\xbc\xc5\x24\x2a\x22\x5a\ +\x6a\x6f\x3b\x44\x4d\x3f\x4e\x56\x29\x32\x32\x2b\x3f\x37\x00\x00\ +\x00\x20\x37\x36\x22\x3f\x40\x1e\x34\x33\x1c\x31\x2b\x1c\x2c\x28\ +\x19\x29\x26\x18\x2a\x25\x16\x26\x22\x19\x2f\x2c\x28\x48\x44\x28\ +\x42\x3d\x28\x45\x45\x20\x3a\x37\x18\x2d\x28\x1b\x2d\x2d\x1d\x30\ +\x33\x2a\x42\x4f\x2c\x43\x4f\x21\x33\x35\x23\x32\x34\x29\x3f\x46\ +\x2a\x42\x4b\x20\x30\x35\x2f\x44\x4e\x36\x56\x5d\x3a\x57\x59\x25\ +\x34\x36\x22\x30\x2e\x1f\x2c\x28\x20\x2b\x29\x20\x2e\x2e\x1f\x2e\ +\x2d\x1f\x2a\x27\x19\x21\x1d\x19\x25\x22\x1b\x2a\x26\x1c\x2b\x27\ +\x1e\x30\x32\x27\x42\x57\x29\x43\x52\x3c\x66\x79\x34\x64\xa3\x11\ +\x50\xa8\x12\x44\x9c\x17\x4b\x9f\x1a\x4d\x9f\x19\x4e\xa1\x1c\x4d\ +\xa1\x28\x52\x7e\x3b\x4a\x35\x57\x52\x28\x38\x4e\x35\x44\x58\x4c\ +\x4a\x4e\x33\x4d\x5b\x39\x44\x55\x32\x32\x43\x4e\x27\x34\x73\x09\ +\x12\xae\x27\x2f\xb7\x12\x1a\x66\x1a\x1e\x1f\x3c\x4a\x2a\x3b\x4a\ +\x28\x3b\x4f\x2b\x3b\x50\x2d\x7b\x8c\x87\xdf\xe5\xee\xfb\xfb\xfe\ +\xfb\xfb\xfe\xf9\xfa\xfd\xf8\xf9\xfe\xf5\xf8\xfd\xf1\xf5\xf9\xeb\ +\xf0\xf4\xe2\xe8\xeb\xb0\xc0\xca\x6d\x87\x9a\x64\x7c\x8d\x64\x79\ +\x86\x08\x0d\x0c\x0d\x0e\x0f\x2e\x35\x41\x41\x4d\x5a\x32\x3a\x44\ +\x17\x19\x1d\x0f\x0d\x10\x19\x17\x1e\x1d\x1c\x37\x1d\x18\x33\x4c\ +\x42\x44\x60\x51\x4b\x41\x4b\x58\x3d\x44\x4c\x4d\x39\x2f\x43\x30\ +\x29\x30\x2c\x31\x2b\x26\x28\x44\x2d\x23\x47\x34\x2a\x50\x43\x44\ +\x4b\x38\x47\x20\x52\xa0\x14\x47\x9c\x18\x34\x7c\x14\x34\x6d\x28\ +\x65\xb1\x23\x64\xb8\x20\x5c\xaa\x23\x5d\xab\x18\x44\x91\x18\x42\ +\x89\x12\x41\x90\x1c\x5d\xbc\x4e\x99\xd6\x5b\x8e\xc1\x22\x45\x9d\ +\x16\x3b\x87\x14\x3b\x81\x16\x37\x7a\x14\x3d\x8f\x14\x40\x9b\x1f\ +\x52\x99\x34\x81\xc6\x36\x6e\xb1\x1c\x46\x89\x1b\x4f\x9a\x1c\x4c\ +\x95\x1c\x46\x8d\x21\x4e\x95\x21\x55\x92\x3d\x5f\x74\x63\x6e\x57\ +\x57\x71\x7b\x5e\x7e\xa1\x5f\x6e\x6e\x6a\xa4\xd1\xd6\xe6\xf9\xf2\ +\xf3\xfb\xf0\xf4\xfa\xe4\xea\xf3\xd8\xe2\xeb\xd4\xdf\xe9\xd1\xdc\ +\xe6\xcf\xda\xe5\xda\xe2\xe9\xe1\xe9\xed\xe3\xe9\xef\xe5\xea\xee\ +\xe6\xeb\xee\xe5\xea\xed\xe5\xe9\xec\xd3\xd4\xd8\x4a\x54\x61\x89\ +\xa3\xb2\xbd\xcf\xda\x7a\x80\x80\x24\x31\x26\x80\x91\x95\x4c\x56\ +\x5d\x41\x56\x62\x1e\x27\x23\x56\x6f\x6c\x00\x00\x00\x27\x46\x3e\ +\x2b\x4b\x4c\x26\x40\x40\x2d\x4b\x51\x1b\x2e\x33\x1c\x2b\x27\x20\ +\x32\x33\x16\x2b\x28\x22\x37\x34\x2e\x4e\x52\x21\x32\x2f\x26\x44\ +\x43\x2b\x4a\x44\x1e\x3a\x2f\x24\x39\x35\x29\x40\x48\x3f\x67\x78\ +\x43\x68\x79\x29\x42\x47\x22\x30\x33\x32\x47\x58\x35\x4d\x62\x26\ +\x35\x43\x36\x4f\x61\x39\x53\x61\x33\x47\x4f\x2b\x3f\x43\x23\x35\ +\x34\x18\x22\x1d\x1b\x26\x25\x1f\x29\x23\x23\x31\x2b\x1c\x28\x23\ +\x17\x21\x1e\x17\x20\x1c\x19\x25\x1e\x17\x24\x1f\x19\x25\x22\x2d\ +\x44\x3f\x41\x6e\x82\x47\x7e\x9e\x42\x71\x9c\x19\x5c\xb5\x11\x4a\ +\xa2\x14\x47\x9e\x1e\x4e\xa4\x18\x50\xa3\x18\x4c\xa0\x1b\x4d\xa1\ +\x27\x53\x92\x49\x53\x53\x41\x4e\x2a\x3e\x4a\x27\x59\x64\x2e\x4b\ +\x55\x34\x45\x50\x31\x43\x51\x2d\x42\x55\x32\x39\x49\x57\x29\x3a\ +\x8d\x1d\x26\x57\x16\x1b\x1c\x38\x50\x3a\x35\x47\x24\x4b\x68\x65\ +\x45\x56\x55\xae\xb7\xb9\xfa\xfc\xff\xfc\xfb\xfe\xfa\xfb\xfd\xf9\ +\xfa\xfe\xf6\xf8\xfd\xf2\xf6\xfc\xed\xf1\xf5\xe9\xed\xf1\xdf\xe5\ +\xe9\xcb\xd4\xd8\x9b\xa8\xb0\x72\x85\x95\x31\x3b\x42\x07\x0f\x16\ +\x2d\x37\x44\x5c\x70\x7f\x57\x66\x70\x51\x5e\x66\x4e\x56\x5f\x29\ +\x30\x3f\x0b\x0d\x24\x0b\x0e\x2e\x15\x17\x30\x21\x23\x2e\x46\x31\ +\x1f\x5b\x3b\x24\x56\x3a\x27\x4d\x35\x27\x47\x30\x22\x45\x2f\x23\ +\x47\x2f\x23\x48\x2f\x25\x56\x34\x22\x66\x35\x13\x6c\x37\x18\x64\ +\x38\x29\x45\x41\x68\x20\x39\x74\x18\x2b\x4a\x3d\x5c\x89\x2d\x65\ +\xae\x31\x5e\x91\x23\x55\x95\x12\x37\x82\x15\x40\x84\x13\x51\xa4\ +\x10\x59\xc2\x23\x66\xcd\x2f\x6c\xa6\x1e\x47\x89\x15\x3f\x7f\x18\ +\x41\x79\x19\x42\x87\x17\x43\x90\x1a\x45\x96\x1b\x4c\x94\x5d\x9f\ +\xcf\x2c\x67\xae\x18\x3e\x82\x1f\x4e\x99\x21\x4e\x96\x1c\x4b\x92\ +\x22\x58\x99\x2b\x5e\x89\x57\x74\x62\x64\x74\x5b\x52\x6e\x6c\x2f\ +\x5d\xb0\x44\x65\x7c\x87\x9a\xdd\xf5\xf7\xfc\xf0\xf3\xfb\xef\xf2\ +\xfa\xe5\xeb\xf4\xdf\xe7\xf0\xde\xe6\xef\xda\xe4\xec\xd3\xde\xe8\ +\xc7\xd4\xdf\xca\xd4\xdd\xd5\xdd\xe3\xe1\xe5\xea\xe1\xe5\xe9\xe2\ +\xe6\xe9\xe2\xe5\xe8\xaa\xaf\xb7\x6d\x7f\x8e\x98\xaf\xbe\xb6\xc2\ +\xca\x35\x3d\x32\x6d\x7f\x7b\xae\xb8\xbf\x3d\x44\x47\x4c\x5a\x60\ +\x1e\x24\x1e\x53\x6a\x6b\x00\x00\x00\x16\x23\x1c\x1d\x2f\x32\x28\ +\x45\x4f\x2a\x4c\x48\x27\x41\x40\x26\x38\x39\x24\x34\x36\x25\x38\ +\x37\x20\x33\x34\x28\x41\x34\x1b\x30\x2a\x22\x38\x34\x19\x2d\x27\ +\x1d\x31\x30\x29\x3e\x42\x3b\x53\x65\x47\x63\x75\x44\x65\x75\x31\ +\x48\x53\x2c\x41\x51\x3b\x53\x6b\x41\x5a\x71\x3a\x50\x5f\x36\x4f\ +\x51\x36\x41\x3e\x30\x3f\x40\x2e\x3d\x40\x2e\x3f\x45\x1d\x28\x29\ +\x14\x1b\x17\x16\x1d\x1a\x16\x1d\x18\x17\x22\x1f\x18\x2a\x25\x17\ +\x21\x1b\x12\x1a\x13\x16\x1d\x1b\x18\x21\x19\x19\x25\x21\x29\x3c\ +\x30\x35\x49\x3b\x31\x47\x45\x22\x60\xba\x16\x50\xa6\x14\x4b\xa4\ +\x13\x48\x9f\x19\x4f\xa6\x12\x43\x9b\x15\x47\xa0\x1d\x4c\xa0\x28\ +\x53\x9f\x30\x50\x7a\x36\x52\x6a\x40\x5f\x72\x4b\x5c\x59\x50\x5b\ +\x31\x47\x54\x27\x43\x52\x2d\x42\x52\x27\x50\x61\x30\x5d\x6c\x39\ +\x4a\x56\x49\x33\x4d\x3b\x50\x61\x44\x6b\x79\x8a\x4c\x5d\x62\xad\ +\xb4\xb8\xf7\xf8\xfc\xf9\xfb\xfd\xf8\xfa\xfe\xf6\xf8\xfd\xf3\xf6\ +\xfb\xef\xf2\xf7\xe8\xee\xf3\xe0\xe6\xea\xcd\xd7\xdb\xa7\xb5\xbc\ +\x81\x93\x9e\x40\x49\x4f\x07\x0e\x19\x23\x30\x40\x97\xa6\xb7\xa5\ +\xb3\xbe\x58\x6b\x75\x4d\x5e\x66\x4e\x5c\x64\x52\x5c\x67\x2d\x34\ +\x4d\x0a\x0c\x31\x0a\x0b\x30\x17\x13\x1d\x25\x18\x0f\x74\x56\x46\ +\xa2\x8e\x85\x93\x89\x87\x85\x72\x6f\x6b\x47\x36\x66\x37\x1b\x69\ +\x39\x1b\x6b\x3a\x1c\x69\x38\x1d\x67\x37\x1c\x69\x3b\x20\x35\x37\ +\x72\x13\x22\x53\x24\x17\x13\x61\x30\x1a\x61\x42\x40\x24\x55\x7d\ +\x1b\x46\x83\x13\x35\x73\x15\x45\x8b\x14\x57\xa9\x59\x97\xca\x3a\ +\x6f\xb9\x17\x34\x7a\x1d\x43\x83\x1d\x4d\x90\x1d\x46\x89\x1f\x47\ +\x7e\x1a\x41\x81\x1c\x43\x87\x27\x56\x98\x42\x8b\xcb\x28\x62\x9f\ +\x24\x53\x9a\x1b\x4a\x93\x1c\x4e\x98\x1c\x53\x9d\x2b\x66\x9f\x52\ +\x77\x7f\x61\x81\x8e\x54\x71\x72\x54\x6b\x4b\x52\x69\x51\x44\x62\ +\x97\xbe\xcd\xea\xeb\xee\xf6\xf3\xf5\xfb\xee\xf1\xf8\xe4\xeb\xf4\ +\xe3\xea\xf3\xe3\xea\xf3\xe1\xe8\xf1\xdd\xe6\xef\xdb\xe2\xec\xd4\ +\xdc\xe5\xc5\xd0\xd9\xc1\xcb\xd2\xc6\xcd\xd2\xd1\xd5\xd9\xb6\xb8\ +\xc0\x70\x82\x8d\xb9\xcb\xd7\xb4\xc4\xcf\x72\x78\x75\x22\x2f\x21\ +\xa4\xb0\xaf\xa6\xad\xa9\x23\x2b\x1e\x15\x1d\x12\x0c\x14\x0a\x73\ +\x8d\x90\x00\x00\x00\x14\x26\x20\x21\x34\x33\x26\x40\x42\x16\x27\ +\x1e\x14\x24\x1e\x24\x3b\x36\x26\x3b\x38\x24\x35\x31\x25\x38\x38\ +\x1b\x2c\x2f\x1d\x33\x31\x1b\x2f\x27\x18\x2a\x25\x18\x2d\x26\x25\ +\x37\x33\x31\x49\x46\x34\x4f\x4e\x3c\x5b\x5d\x35\x4f\x53\x36\x50\ +\x52\x45\x60\x6c\x43\x5d\x6f\x3b\x54\x61\x2a\x3e\x3d\x20\x2a\x29\ +\x1e\x29\x24\x1f\x2a\x23\x2a\x36\x33\x29\x3a\x3d\x19\x25\x23\x1a\ +\x25\x22\x1b\x27\x1d\x18\x21\x1b\x19\x24\x20\x17\x21\x1f\x18\x22\ +\x1c\x18\x23\x1e\x13\x18\x13\x17\x24\x1f\x1a\x2a\x24\x18\x23\x20\ +\x17\x1e\x23\x24\x56\xa0\x1a\x55\xab\x1d\x55\xa7\x17\x51\xa7\x17\ +\x4d\xa5\x12\x46\x9b\x16\x48\x9f\x20\x47\x8d\x28\x3f\x74\x21\x4e\ +\x9a\x22\x4c\x95\x2d\x52\x90\x41\x5e\x76\x5f\x66\x2e\x63\x6e\x1e\ +\x5a\x67\x20\x58\x68\x26\x55\x65\x2a\x5b\x6a\x2e\x68\x79\x43\x5a\ +\x6b\x6b\x79\x82\x8d\x73\x82\xa0\x4d\x5e\x91\x99\xa4\xc0\xee\xf1\ +\xf8\xf8\xf9\xfe\xf5\xf8\xfd\xf2\xf6\xfb\xef\xf3\xf7\xe9\xee\xf3\ +\xe1\xe7\xec\xcd\xd6\xdc\xa9\xb7\xbf\x80\x92\x9d\x3f\x4a\x51\x08\ +\x0c\x19\x1e\x25\x36\x90\xa0\xb2\xed\xf0\xf5\xe6\xec\xef\x7c\x90\ +\x9b\x52\x65\x74\x4d\x5c\x69\x54\x5f\x69\x54\x5d\x6b\x21\x26\x42\ +\x0a\x0d\x29\x11\x0e\x11\x21\x1c\x1a\x4a\x3e\x3a\x6f\x60\x55\x75\ +\x66\x5d\x83\x75\x72\x7c\x6e\x6d\x60\x36\x1b\x66\x39\x1a\x68\x3e\ +\x23\x66\x38\x1e\x8b\x6f\x63\x74\x6f\x77\x1e\x2c\x6a\x25\x21\x2c\ +\x49\x2d\x1e\x67\x39\x1a\x5f\x43\x49\x29\x49\x74\x1d\x40\x6f\x22\ +\x44\x6c\x17\x4a\x90\x2a\x6a\xb4\x24\x59\xa7\x19\x3a\x89\x1e\x41\ +\x8a\x1a\x3b\x80\x23\x4e\x90\x23\x51\x93\x1f\x49\x88\x1f\x47\x83\ +\x22\x4a\x84\x2e\x5c\x9a\x42\x8b\xcf\x30\x60\x9a\x24\x50\x91\x1d\ +\x51\x9b\x1e\x50\x97\x31\x61\x90\x4e\x7a\x9b\x52\x79\x8d\x4c\x73\ +\x84\x4f\x6e\x6b\x53\x68\x4d\x4f\x64\x5a\x49\x6f\xa0\xe4\xee\xf5\ +\xde\xe5\xef\xe9\xed\xf6\xe7\xec\xf4\xe5\xec\xf5\xe5\xec\xf4\xe3\ +\xeb\xf3\xe2\xe9\xf2\xe2\xe9\xf1\xe2\xe9\xf0\xdf\xe6\xed\xd9\xe0\ +\xe7\xd5\xdd\xe4\x66\x69\x78\x47\x50\x68\x4d\x5b\x7d\x92\xa3\xad\ +\xa9\xb9\xc1\xa6\xae\xb4\x32\x3a\x2f\x57\x6a\x60\xac\xb4\xb4\x3c\ +\x42\x34\x1e\x2a\x17\x1f\x2a\x19\x19\x28\x18\xa5\xba\xbc\x00\x00\ +\x00\x1c\x35\x34\x1c\x2e\x2d\x1f\x35\x33\x1a\x2c\x29\x1a\x2d\x2a\ +\x24\x38\x35\x25\x3d\x37\x1a\x2f\x28\x29\x40\x40\x29\x41\x45\x28\ +\x40\x44\x20\x35\x37\x18\x2c\x28\x19\x2c\x27\x1c\x2e\x2c\x23\x3b\ +\x3a\x22\x38\x37\x2a\x3f\x3d\x23\x36\x31\x1e\x2a\x29\x29\x3a\x3d\ +\x3c\x51\x59\x32\x44\x47\x21\x30\x2d\x1a\x28\x26\x1b\x29\x26\x1c\ +\x29\x27\x1f\x2c\x2b\x2a\x3b\x37\x19\x26\x21\x1c\x28\x23\x1b\x26\ +\x24\x18\x25\x20\x19\x26\x23\x1a\x27\x24\x17\x1e\x1a\x18\x21\x1e\ +\x16\x1f\x1b\x1c\x2e\x2a\x1c\x2a\x23\x1b\x23\x20\x2b\x43\x4b\x29\ +\x4f\x87\x19\x5b\xb3\x21\x58\xa7\x1b\x58\xae\x19\x53\xaa\x15\x48\ +\x9c\x15\x45\x98\x20\x30\x59\x2e\x1e\x23\x2a\x47\x83\x28\x47\x7e\ +\x3b\x31\x2d\x5f\x62\x2e\x6e\x6d\x18\x68\x6d\x1c\x5c\x69\x1d\x60\ +\x6f\x21\x60\x72\x2f\x5c\x6b\x26\x6d\x7c\x4d\x73\x79\x76\x34\x32\ +\x32\x72\x7e\x90\x63\x7a\x9c\xa9\xbc\xd0\xe4\xeb\xf3\xf5\xf9\xfd\ +\xf2\xf6\xfb\xee\xf3\xf7\xea\xef\xf3\xe2\xe8\xed\xcd\xd6\xdb\xa4\ +\xb3\xbb\x80\x94\x9f\x45\x50\x56\x08\x0a\x16\x1e\x27\x39\x8a\x9a\ +\xad\xec\xf0\xf4\xf9\xf9\xfb\xf5\xf8\xf8\xd2\xdb\xe3\x87\x9e\xb0\ +\x50\x63\x73\x50\x5e\x6a\x60\x6d\x78\x3e\x49\x5a\x16\x1a\x29\x16\ +\x13\x13\x13\x14\x17\x14\x12\x13\x15\x0e\x0e\x35\x26\x1d\x58\x45\ +\x39\x82\x6e\x62\x73\x54\x42\x71\x4d\x2f\x74\x4e\x2b\x67\x3b\x1b\ +\x98\x82\x73\x8a\x8c\x93\x43\x39\x43\x4c\x30\x1f\x60\x39\x22\x60\ +\x3a\x21\x5b\x39\x2a\x57\x49\x49\x2f\x3e\x4f\x2c\x46\x6f\x30\x4e\ +\x7f\x5c\x7b\xa0\x61\x94\xc0\x47\x59\x87\x45\x52\x7b\x21\x48\x8f\ +\x25\x49\x8d\x2a\x5f\xa1\x22\x56\x97\x1e\x4c\x8e\x25\x4f\x8a\x2a\ +\x5b\x9a\x42\x7f\xba\x2b\x62\xa1\x1f\x50\x91\x2f\x5d\x8e\x3b\x69\ +\x86\x4a\x71\x8a\x4f\x76\x91\x50\x75\x82\x53\x6e\x65\x58\x6d\x52\ +\x52\x67\x43\x4d\x64\x6c\x36\x54\x99\xed\xf5\xf8\xe2\xe7\xf0\xe8\ +\xec\xf5\xe5\xec\xf3\xe5\xec\xf4\xe4\xec\xf4\xe3\xeb\xf3\xe3\xeb\ +\xf2\xe4\xeb\xf2\xe6\xeb\xf1\xe3\xe9\xef\xe1\xe7\xec\xdc\xe1\xe7\ +\x7a\x83\x97\x43\x57\x74\x68\x7a\x92\x8f\xa8\xb8\x93\x9f\xa7\x58\ +\x62\x61\x22\x2e\x20\x41\x4c\x3f\x59\x5e\x53\x1a\x25\x13\x1f\x2b\ +\x18\x19\x23\x13\x52\x67\x5c\xd7\xe2\xe5\x00\x00\x00\x26\x48\x49\ +\x20\x35\x38\x19\x2c\x2d\x18\x2c\x27\x18\x2b\x26\x2f\x4e\x50\x2d\ +\x44\x3f\x1d\x35\x2e\x1d\x35\x2f\x27\x42\x3e\x2d\x47\x49\x32\x53\ +\x5c\x1d\x33\x32\x1a\x2f\x2a\x20\x34\x32\x22\x39\x36\x26\x3d\x3e\ +\x26\x3d\x3b\x1a\x2b\x26\x20\x2e\x36\x28\x37\x3f\x2a\x3a\x3c\x1c\ +\x2a\x26\x19\x26\x22\x1b\x2a\x28\x1c\x2d\x29\x1e\x31\x2c\x22\x33\ +\x30\x1e\x2d\x28\x19\x25\x22\x19\x26\x21\x19\x24\x1f\x1a\x26\x1f\ +\x18\x24\x20\x1b\x29\x26\x1a\x29\x25\x18\x24\x22\x19\x25\x20\x21\ +\x33\x30\x19\x26\x21\x1f\x29\x2b\x2c\x3d\x3e\x2c\x4c\x6a\x17\x59\ +\xb3\x20\x56\xa0\x20\x58\xa9\x1b\x54\xab\x1c\x4c\x9a\x18\x44\x91\ +\x25\x27\x40\x2b\x12\x0c\x34\x32\x50\x2a\x4c\x87\x38\x25\x20\x41\ +\x39\x29\x59\x5b\x20\x59\x62\x23\x58\x65\x1e\x5d\x6a\x29\x55\x67\ +\x28\x65\x72\x47\x86\x8d\x84\x5c\x5f\x67\x12\x0e\x0c\x44\x46\x4a\ +\x7e\x96\xa8\x98\xac\xc0\xd2\xde\xe7\xe2\xe8\xec\xf3\xf7\xfb\xeb\ +\xef\xf5\xe2\xe8\xec\xcf\xd6\xdc\xa3\xb1\xb7\x7a\x8e\x98\x5b\x65\ +\x6b\x0a\x0d\x18\x21\x2b\x3f\x85\x96\xa7\xe8\xec\xf2\xfa\xfa\xfe\ +\xf7\xf7\xfc\xf2\xf5\xf7\xed\xf1\xf3\xd0\xd9\xe0\x84\x96\xa7\x54\ +\x6a\x79\x63\x75\x83\x51\x5e\x6b\x19\x1b\x1e\x1f\x22\x2b\x3a\x43\ +\x51\x3e\x46\x50\x34\x38\x3f\x1f\x1c\x1d\x1c\x14\x0f\x3c\x2f\x24\ +\xa4\x93\x78\x99\x7e\x5b\xa5\x87\x63\x70\x53\x35\x5c\x3c\x26\x67\ +\x42\x28\x69\x44\x2e\x77\x5b\x4c\x75\x5c\x51\x65\x43\x32\x55\x3c\ +\x33\x42\x37\x37\x3e\x37\x3d\x3a\x3e\x60\x62\x4f\x56\x89\x64\x4c\ +\x8b\x76\x6f\x63\x58\x67\x39\x48\x74\x1e\x45\x8a\x25\x51\x99\x24\ +\x57\x9f\x2e\x69\xaf\x1f\x52\x97\x22\x53\x97\x26\x5a\x9f\x32\x6b\ +\xad\x3a\x57\x82\x3b\x5e\x7d\x4d\x7b\x7c\x6b\x63\x51\x65\x5e\x55\ +\x4f\x65\x64\x4e\x66\x5a\x4c\x5e\x43\x5e\x73\x5c\xa7\xb8\xb0\xc6\ +\xcf\xd1\x78\x93\xc1\x84\xa9\xd7\xd6\xe4\xf2\xed\xf1\xf7\xe6\xeb\ +\xf3\xe4\xeb\xf2\xe4\xeb\xf3\xe3\xea\xf1\xe4\xeb\xf1\xe7\xec\xf3\ +\xe8\xed\xf0\xe4\xeb\xef\xe6\xec\xef\xf0\xf3\xf7\xab\xb4\xc3\x7d\ +\x94\xa5\xa2\xb5\xc6\x34\x6e\xa5\x3b\x66\x8f\x40\x59\x6f\x20\x3c\ +\x4d\x1d\x30\x34\x23\x30\x26\x21\x2e\x21\x1e\x29\x19\x24\x35\x27\ +\xa9\xbb\xba\xdc\xe4\xe8\x00\x00\x00\x2c\x47\x4b\x28\x45\x40\x1d\ +\x35\x30\x19\x27\x24\x15\x26\x22\x24\x3c\x37\x21\x35\x30\x1b\x2f\ +\x29\x1c\x33\x2e\x20\x39\x35\x2b\x48\x52\x3e\x68\x77\x2e\x47\x55\ +\x21\x35\x35\x1b\x2d\x2c\x23\x3c\x3c\x29\x42\x48\x2a\x40\x44\x22\ +\x2f\x36\x30\x47\x4f\x27\x3b\x41\x24\x38\x3a\x18\x2a\x29\x18\x23\ +\x21\x1c\x2f\x2b\x21\x31\x34\x1e\x31\x2d\x1e\x30\x2d\x1d\x2c\x27\ +\x1a\x29\x27\x1b\x2c\x29\x17\x1d\x19\x17\x1f\x1a\x18\x23\x1f\x19\ +\x27\x20\x19\x24\x1e\x1c\x2c\x29\x1c\x2d\x27\x1e\x2f\x2b\x1d\x2e\ +\x29\x1d\x25\x21\x16\x1b\x17\x20\x30\x3b\x1d\x55\xa9\x2f\x56\x93\ +\x26\x5a\xa4\x19\x55\xaa\x1f\x49\x8f\x20\x40\x7f\x2d\x1d\x1f\x31\ +\x17\x15\x34\x24\x2e\x2b\x4d\x8d\x37\x22\x22\x39\x25\x24\x44\x40\ +\x26\x48\x51\x20\x4c\x5a\x22\x54\x61\x2a\x62\x75\x49\x83\x8f\x8b\ +\x36\x3c\x46\xb1\xb5\xb8\x2f\x2b\x29\x1e\x1a\x19\x60\x6a\x73\x7a\ +\x90\xa3\xad\xbb\xc7\xc5\xd3\xdb\xc2\xca\xd0\xe5\xea\xed\xcf\xd9\ +\xdd\xa8\xb5\xbd\x78\x8c\x97\x64\x70\x77\x0c\x0e\x15\x1e\x27\x39\ +\x86\x96\xaa\xe3\xe8\xef\xf8\xfa\xfd\xf8\xf9\xfd\xf6\xf6\xfb\xef\ +\xf3\xf6\xe9\xed\xef\xe0\xe4\xe6\xc5\xcd\xd4\x8f\x9e\xaa\x6e\x81\ +\x8e\x39\x43\x49\x12\x16\x1e\x4d\x5c\x6c\x5a\x6b\x78\x56\x67\x6f\ +\x57\x62\x69\x56\x5d\x64\x3c\x40\x46\x19\x16\x16\x43\x34\x28\x83\ +\x6a\x58\x90\x74\x60\x89\x7c\x76\xa6\xb1\xb5\x7b\x88\x8f\x89\x92\ +\x96\x85\x81\x7e\x91\x8e\x8c\x87\x82\x81\x64\x5c\x62\x63\x5d\x65\ +\x65\x5d\x61\x65\x58\x60\x70\x45\x33\xb0\x7b\x44\x83\x5c\x48\x8c\ +\x63\x4a\x4a\x52\x6d\x1b\x45\x8c\x1f\x4b\x93\x25\x59\xa8\x23\x59\ +\xa5\x25\x4f\x93\x33\x4f\x80\x43\x54\x77\x5e\x47\x4e\x85\x49\x2b\ +\x68\x73\x5d\x68\x7b\x69\x8b\x53\x32\x7e\x49\x2c\x69\x52\x31\x5e\ +\x5a\x3b\x5d\x77\x71\xbf\xcd\xd0\xf0\xf5\xfa\xf2\xf6\xfc\xcd\xdc\ +\xea\x91\xb8\xdf\x66\x90\xc5\x9b\xa8\xbd\xe5\xeb\xf1\xe2\xeb\xf2\ +\xe2\xea\xf2\xe3\xea\xf1\xe5\xeb\xf1\xe8\xed\xf1\xe7\xec\xf1\xe8\ +\xed\xf1\xe9\xed\xf1\xb2\xb8\xbc\x76\x8b\x99\xa3\xb7\xc3\xa2\xbe\ +\xd3\x03\x56\xa2\x50\x81\xac\x45\x70\x9c\x2a\x53\x7e\x19\x3e\x64\ +\x18\x37\x4b\x40\x4a\x49\x33\x41\x3a\x7f\x93\x93\xd0\xdd\xe1\xd7\ +\xe0\xe5\x00\x00\x00\x25\x3f\x3a\x2a\x3b\x44\x23\x39\x38\x1c\x34\ +\x2f\x18\x2f\x2b\x18\x2f\x29\x17\x27\x24\x1b\x30\x2e\x1a\x31\x28\ +\x20\x37\x31\x26\x3f\x40\x43\x6a\x76\x32\x47\x4f\x23\x3c\x40\x21\ +\x38\x3a\x26\x39\x3b\x27\x36\x3a\x26\x38\x3e\x2c\x40\x48\x29\x3b\ +\x4d\x36\x51\x68\x2e\x44\x51\x26\x3e\x43\x1c\x2c\x31\x1f\x2f\x33\ +\x22\x2c\x2b\x22\x32\x33\x24\x3b\x39\x1e\x36\x33\x24\x3a\x33\x1b\ +\x27\x20\x1c\x2b\x26\x17\x23\x1a\x19\x24\x1b\x16\x21\x1a\x17\x22\ +\x19\x1b\x27\x23\x1a\x28\x23\x20\x32\x30\x18\x24\x1f\x10\x12\x0e\ +\x10\x11\x0d\x12\x18\x1d\x19\x46\x87\x27\x5b\xa8\x1e\x52\xa1\x1c\ +\x55\xa6\x16\x48\x9b\x24\x42\x7e\x31\x1e\x1d\x35\x1b\x16\x37\x22\ +\x21\x31\x4d\x88\x35\x2c\x38\x38\x1f\x19\x3b\x30\x23\x4a\x50\x24\ +\x53\x5b\x24\x4e\x5e\x2f\xa7\xb1\xa8\xa0\xa8\xaf\x18\x1e\x1f\x41\ +\x40\x41\x14\x12\x11\x17\x11\x11\x30\x2b\x2c\x67\x72\x7a\x65\x74\ +\x7c\x91\x9e\xa5\x98\xab\xb2\x90\x9b\xa2\xb0\xbd\xc4\x86\x97\xa2\ +\x6a\x77\x80\x14\x1a\x20\x1f\x20\x29\x9a\xa1\xad\xe5\xeb\xf2\xfa\ +\xfb\xfe\xfa\xfa\xff\xf7\xf7\xfd\xf2\xf5\xf9\xed\xf0\xf4\xe4\xe8\ +\xec\xd6\xdc\xe0\xb8\xc0\xc8\x8e\x9d\xa8\x5e\x6a\x73\x0e\x11\x18\ +\x50\x5f\x70\xa0\xb0\xc1\x50\x67\x76\x50\x61\x6d\x50\x5f\x68\x53\ +\x5f\x65\x7f\x87\x8c\x9d\xa3\xab\x1a\x18\x1a\x28\x1f\x1a\x51\x41\ +\x35\x71\x63\x58\x86\x7c\x7b\x7e\x75\x6f\x87\x87\x87\x77\x7a\x7a\ +\x93\x98\x91\x80\x8c\x90\x55\x5d\x66\x8d\x98\xa0\x8f\x8c\x89\x90\ +\x55\x29\x78\x46\x26\x90\x47\x17\x92\x62\x4e\x8f\x7b\x77\x74\x74\ +\x8c\x33\x51\x8e\x1f\x4d\x93\x1b\x4c\x98\x20\x43\x87\x60\x3d\x3b\ +\x8c\x4b\x29\x9c\x4c\x16\x91\x45\x1b\x8a\x48\x20\x97\x5f\x3a\x8b\ +\x55\x3a\x83\x43\x24\x90\x4a\x26\x86\x48\x1e\x7d\x5d\x3e\xc1\xc3\ +\xc8\xf3\xf8\xfd\xf2\xf6\xfb\xf1\xf5\xfb\xd2\xdf\xe8\xb2\xca\xdb\ +\xa7\xc7\xdf\x6a\x8c\xba\x56\x6b\x92\xc5\xcf\xda\xdf\xe6\xee\xe2\ +\xe8\xef\xe6\xeb\xef\xe7\xec\xf0\xe6\xea\xef\xe8\xed\xf0\xd5\xd9\ +\xdd\x6d\x78\x84\x9c\xb2\xc1\xcb\xd8\xdf\x4f\x92\xc7\x0a\x61\xab\ +\x86\xae\xcb\x4d\x81\xb0\x67\x95\xb9\x31\x5d\x8e\x28\x4f\x70\x44\ +\x47\x49\x25\x28\x26\x5c\x62\x5c\x9e\xa2\x9f\xc5\xcf\xd0\x00\x00\ +\x00\x27\x51\x4f\x2d\x5f\x58\x32\x51\x50\x20\x37\x35\x1e\x38\x31\ +\x1a\x31\x29\x16\x2c\x28\x20\x39\x35\x1a\x2d\x29\x19\x2e\x2a\x25\ +\x3b\x3a\x2f\x46\x41\x25\x3d\x43\x21\x39\x35\x2a\x44\x4c\x33\x4d\ +\x57\x24\x39\x3f\x24\x3d\x3c\x1d\x33\x2f\x30\x48\x5c\x46\x62\x72\ +\x3d\x57\x68\x35\x4c\x5e\x34\x4f\x60\x30\x41\x4c\x28\x37\x40\x2d\ +\x41\x47\x27\x3e\x3a\x29\x42\x3a\x22\x36\x31\x1c\x25\x22\x1f\x2d\ +\x26\x18\x23\x1d\x18\x23\x20\x16\x1e\x18\x19\x26\x22\x1c\x2c\x29\ +\x1d\x2d\x27\x20\x34\x2e\x15\x1d\x15\x12\x13\x0f\x10\x11\x0f\x11\ +\x14\x10\x17\x35\x5d\x23\x59\xaa\x1f\x52\xa4\x1a\x50\xa4\x1d\x51\ +\xa7\x21\x3f\x7d\x30\x1f\x23\x36\x1d\x1a\x39\x20\x1b\x33\x3e\x69\ +\x30\x39\x58\x39\x20\x17\x38\x29\x21\x4e\x56\x26\x58\x5e\x21\xb0\ +\xb7\xb4\xa9\xac\xb0\xd5\xd9\xdc\x31\x36\x3a\x0a\x0b\x0a\x11\x10\ +\x0f\x1c\x16\x13\x12\x0c\x0a\x2e\x29\x2b\x5a\x63\x66\x4b\x54\x58\ +\x59\x62\x65\x99\xa6\xb3\xb7\xc7\xcf\x52\x5f\x62\x23\x2d\x35\x0f\ +\x13\x1b\x27\x2a\x33\xcb\xca\xcd\xfd\xfe\xff\xfa\xfa\xfe\xf7\xf8\ +\xfe\xf3\xf7\xfb\xee\xf3\xf7\xe8\xec\xef\xdc\xe2\xe6\xc4\xcd\xd3\ +\x98\xa8\xb4\x76\x85\x8f\x1c\x20\x24\x2d\x38\x48\xb8\xc4\xcf\xf4\ +\xf7\xfa\x94\xa9\xb8\x61\x79\x8d\x5e\x74\x83\x53\x64\x6d\x5c\x6c\ +\x75\xb2\xba\xbc\x6f\x77\x7d\x11\x0e\x0f\x1e\x17\x13\x2d\x21\x18\ +\x64\x4d\x40\x85\x6e\x5a\x85\x72\x69\x84\x74\x66\xa2\x92\x68\xc8\ +\xb2\x78\xbf\xd3\xce\x5d\x7e\x93\x50\x56\x66\x9c\x74\x51\xb3\x67\ +\x22\xa4\x5b\x22\xa3\x4b\x0c\xa9\x62\x2e\x72\x77\x8f\x37\x62\xa4\ +\x31\x63\xaa\x33\x52\x8a\x83\x58\x42\xa7\x4e\x09\xa3\x4d\x0e\x9c\ +\x4d\x1c\x79\x49\x36\x78\x47\x33\x94\x5e\x43\x9f\x95\x99\xd1\xca\ +\xcc\xbb\xa7\xa8\x7f\x49\x34\x99\x76\x65\xf1\xf9\xff\xeb\xf0\xf6\ +\xf0\xf4\xfa\xea\xee\xf6\xce\xdc\xe5\xc0\xd1\xdd\xb6\xcd\xdb\xaf\ +\xcb\xdc\x87\xa9\xcf\x37\x51\x86\x6d\x7c\x9a\xc8\xd2\xdc\xdf\xe6\ +\xeb\xe4\xeb\xf0\xe4\xea\xee\xe1\xe6\xea\x9b\xa0\xa9\x81\x95\xa4\ +\xca\xd6\xde\xb4\xcf\xe2\x05\x6c\xbd\x58\x99\xc7\x76\xa2\xc8\x0a\ +\x62\xad\x00\x59\xa5\x02\x54\x9b\x6f\x8e\xa0\x78\x82\x86\x3e\x43\ +\x49\x42\x4b\x51\x13\x10\x14\x17\x13\x11\x00\x00\x00\x1d\x35\x2d\ +\x1c\x31\x2d\x1b\x2f\x2a\x2c\x4b\x49\x24\x43\x46\x20\x3c\x3f\x1c\ +\x33\x31\x21\x3a\x3b\x1d\x34\x31\x1a\x30\x2b\x1c\x31\x2e\x1d\x31\ +\x2e\x23\x3b\x40\x20\x35\x38\x35\x56\x62\x38\x51\x59\x23\x37\x39\ +\x1f\x36\x37\x20\x36\x36\x22\x37\x38\x31\x45\x53\x44\x5e\x72\x47\ +\x69\x83\x47\x67\x79\x32\x47\x4f\x33\x4b\x54\x2f\x4a\x4e\x2c\x45\ +\x48\x2c\x45\x41\x22\x36\x2e\x1b\x2a\x25\x1a\x27\x24\x19\x28\x25\ +\x1a\x24\x21\x12\x17\x13\x16\x1d\x1a\x1b\x29\x26\x1d\x2d\x29\x21\ +\x34\x30\x14\x1b\x17\x10\x13\x10\x15\x17\x15\x17\x1a\x16\x15\x26\ +\x3a\x24\x48\x8a\x22\x4e\x9c\x17\x4a\x9e\x1c\x51\xa4\x22\x46\x8a\ +\x31\x23\x2a\x30\x19\x14\x38\x1e\x1a\x36\x33\x4b\x2c\x44\x77\x35\ +\x23\x1d\x3b\x32\x24\x52\x51\x16\x86\x55\x14\xd0\xbb\xb2\x90\x98\ +\x9c\xeb\xed\xef\x77\x80\x84\x16\x18\x18\x1b\x16\x13\x17\x10\x0e\ +\x0e\x0c\x0b\x04\x05\x04\x19\x16\x16\x47\x4c\x4f\x4b\x52\x5c\x94\ +\x9e\xa9\xbe\xca\xcf\x73\x82\x85\x35\x42\x44\x14\x1b\x27\x24\x2b\ +\x34\x9b\x9e\xa5\xfc\xfd\xff\xf7\xf9\xfe\xf5\xf7\xfc\xf0\xf3\xf8\ +\xea\xef\xf2\xe0\xe6\xea\xce\xd5\xdc\xa5\xb4\xbe\x89\x9a\xa6\x36\ +\x3b\x3d\x14\x1a\x24\x8a\x98\xa8\xf1\xf5\xfa\xf9\xfa\xfe\xf0\xf5\ +\xfb\xb3\xc5\xd4\x78\x93\xa3\x53\x69\x76\x53\x67\x73\x72\x83\x8d\ +\x9a\xa5\xaa\x0f\x0c\x0c\x1c\x17\x14\x1c\x17\x16\x20\x16\x15\x33\ +\x27\x1e\x69\x67\x62\x96\x90\x7c\xb8\x9d\x64\xd5\xbf\x85\xd3\xd8\ +\xc5\x92\x9b\x95\x65\x5d\x51\x93\x7c\x65\x81\x51\x29\x90\x59\x2a\ +\xb2\x61\x1a\xa2\x52\x14\x8e\x67\x50\x64\x76\x95\x58\x83\xb8\x68\ +\x51\x52\x9a\x48\x13\x90\x48\x1b\x89\x46\x1f\x7a\x46\x33\x40\x43\ +\x54\x7b\x7d\x89\xd5\xd6\xd9\xf1\xf4\xf5\xed\xef\xf0\xf3\xf8\xfb\ +\xa4\xaa\xb9\xc0\xcc\xd2\xdd\xe8\xf1\xec\xf1\xf7\xf6\xf7\xfc\xe1\ +\xe8\xf1\xd1\xdc\xe6\xc9\xd8\xe1\xc2\xd5\xe0\xbc\xd0\xdc\xad\xc4\ +\xd5\x98\xb3\xcb\x65\x80\xaa\x46\x5e\x84\x8b\x97\xa4\xd1\xd9\xe0\ +\xcd\xd1\xd5\xab\xb4\xbb\x96\xa9\xb8\xb5\xc8\xd4\xc7\xd6\xe1\x42\ +\x92\xcd\x00\x6e\xc4\x4d\x98\xcb\x3e\x89\xc3\x00\x67\xbb\x00\x63\ +\xb5\x19\x69\xa5\xad\xb8\xbe\x55\x5a\x5e\x64\x6e\x72\x96\xa4\xab\ +\x64\x65\x6c\x1b\x0a\x08\x00\x00\x00\x25\x43\x40\x20\x35\x2d\x1f\ +\x35\x3e\x2c\x53\x4f\x2b\x53\x5b\x36\x61\x6a\x32\x55\x62\x28\x45\ +\x47\x27\x42\x43\x1c\x30\x2c\x1e\x32\x30\x19\x2d\x2a\x1f\x39\x3a\ +\x23\x36\x40\x3f\x5c\x68\x47\x6b\x76\x30\x4c\x59\x2a\x43\x4e\x20\ +\x33\x33\x21\x36\x3d\x34\x4e\x5c\x44\x61\x71\x3e\x5a\x60\x34\x4a\ +\x49\x36\x4a\x50\x39\x54\x61\x34\x5b\x5b\x31\x57\x51\x2e\x4e\x49\ +\x25\x3e\x38\x1f\x32\x2d\x19\x27\x20\x1a\x28\x23\x14\x19\x14\x15\ +\x1e\x1a\x15\x1e\x1b\x19\x27\x22\x20\x36\x32\x1c\x2a\x26\x13\x18\ +\x14\x12\x13\x10\x13\x16\x12\x17\x1c\x17\x18\x1e\x1f\x1c\x42\x81\ +\x18\x4c\xa3\x1a\x4e\xa4\x1b\x4b\x9e\x23\x4e\x96\x30\x2b\x3d\x2f\ +\x19\x18\x32\x1b\x1a\x36\x26\x2c\x29\x4b\x86\x37\x34\x33\x41\x3e\ +\x25\x7c\x46\x15\x98\x46\x15\xc7\xb2\xa8\xcd\xd2\xd6\xff\xff\xff\ +\xe9\xee\xf1\x4a\x4f\x53\x15\x0e\x0b\x0f\x0c\x0c\x09\x09\x09\x07\ +\x08\x08\x04\x05\x04\x0b\x0c\x0e\x35\x38\x3f\x41\x45\x50\x5f\x64\ +\x7a\x3b\x40\x48\x27\x2c\x36\x32\x3d\x49\x4d\x59\x65\xac\xb6\xc2\ +\xf2\xf4\xf8\xf5\xf8\xfc\xf1\xf4\xf8\xec\xf0\xf3\xe4\xe9\xed\xd1\ +\xda\xdf\xae\xbb\xc3\x92\xa6\xb2\x57\x5f\x61\x0c\x0f\x11\x5c\x6c\ +\x7a\xdb\xe3\xec\xfb\xfc\xff\xf8\xf9\xfe\xf3\xf6\xfb\xec\xf0\xf3\ +\xc9\xd4\xdc\x97\xa8\xb4\x74\x88\x97\x76\x89\x98\x60\x69\x6e\x1b\ +\x1c\x20\x45\x4b\x53\x51\x56\x5e\x68\x6d\x74\x6b\x6f\x73\x3d\x3f\ +\x3f\x34\x29\x19\x58\x37\x16\x9d\x8e\x73\x9c\x9e\xa9\x88\x6d\x5e\ +\x5e\x42\x2e\x7c\x49\x25\x70\x34\x0c\x62\x2c\x0a\x8a\x47\x16\xac\ +\x51\x0c\xa3\x4d\x0c\x9c\x56\x27\x76\x55\x4b\x6b\x4d\x46\x7d\x56\ +\x47\x67\x41\x38\x6a\x3b\x2b\x5d\x3d\x33\x7c\x7b\x81\xd2\xd8\xdc\ +\xdd\xe0\xe0\xe3\xe3\xe3\xeb\xea\xea\xeb\xec\xef\xd7\xe4\xed\xe0\ +\xeb\xf4\xd2\xe0\xe9\xe2\xea\xf1\xea\xee\xf5\xdd\xe5\xee\xd5\xe1\ +\xe9\xd1\xdd\xe6\xcc\xda\xe3\xc7\xd6\xe0\xc0\xd0\xdb\xb6\xc6\xd2\ +\xa8\xbc\xcb\x8a\x9e\xb6\x38\x46\x6d\x5e\x6e\x8e\x9c\xa6\xaf\x7b\ +\x90\x9e\xbb\xcc\xd6\xd3\xdd\xe5\x6f\xa6\xd2\x05\x73\xc7\x01\x70\ +\xc8\x00\x6f\xc7\x04\x73\xc5\x00\x6f\xc3\x00\x66\xb9\x88\xb6\xd3\ +\x90\x95\x9a\x81\x8d\x94\x9d\xac\xb3\xb4\xbf\xc5\xa0\xaa\xb1\x46\ +\x24\x1e\x00\x00\x00\x28\x44\x36\x1a\x2f\x2c\x26\x47\x48\x20\x36\ +\x2c\x27\x44\x49\x40\x69\x6f\x41\x6d\x7b\x30\x57\x64\x31\x52\x5a\ +\x1f\x37\x38\x1f\x39\x39\x25\x41\x42\x21\x3c\x39\x21\x34\x38\x2f\ +\x43\x4a\x37\x52\x59\x39\x57\x63\x42\x5f\x72\x26\x41\x3d\x24\x3d\ +\x42\x31\x4b\x53\x35\x4c\x51\x2c\x3e\x40\x26\x36\x3a\x25\x39\x3a\ +\x30\x45\x47\x32\x4d\x4f\x2f\x53\x50\x32\x58\x52\x24\x3b\x33\x1f\ +\x31\x2d\x19\x26\x22\x17\x21\x1c\x12\x16\x12\x16\x20\x17\x1b\x29\ +\x27\x1b\x28\x25\x1f\x31\x2c\x1a\x26\x23\x10\x14\x10\x12\x15\x11\ +\x10\x13\x0d\x15\x17\x12\x13\x15\x0c\x1b\x35\x5f\x18\x4d\xa4\x1a\ +\x4e\xa4\x1c\x4c\xa1\x20\x4f\x9d\x2f\x33\x52\x37\x25\x24\x32\x1d\ +\x1c\x35\x24\x28\x2a\x47\x80\x32\x40\x51\x74\x43\x20\xb6\x49\x07\ +\x5d\x9e\x9c\xe8\xf9\xfd\xfe\xfd\xfe\xf9\xfb\xfd\xfc\xfd\xff\xd8\ +\xdc\xe0\x2b\x2f\x34\x04\x04\x05\x09\x09\x09\x06\x08\x07\x05\x03\ +\x03\x2a\x28\x2c\x31\x33\x3b\x28\x2d\x53\x13\x15\x31\x09\x07\x15\ +\x18\x22\x89\x8f\x9f\xa9\x70\x80\x89\xbc\xca\xd5\xdc\xe0\xe6\xeb\ +\xec\xef\xef\xf3\xf6\xe6\xea\xf0\xd7\xdd\xe2\xb9\xc5\xcc\x91\xa3\ +\xae\x81\x8e\x92\x0f\x11\x13\x40\x4e\x5d\xb5\xc4\xd0\xfb\xfb\xff\ +\xf8\xfa\xfe\xf4\xf8\xfd\xf0\xf3\xf9\xe8\xec\xf0\xdc\xe2\xe7\xc5\ +\xcf\xd6\x99\xa9\xb6\x95\xa4\xaf\x2b\x2d\x2f\x7d\x8a\x99\x7f\x90\ +\x9b\x81\x91\x9a\xa6\xb2\xba\xe3\xe6\xe9\xc8\xcb\xd1\x64\x62\x63\ +\x2e\x1b\x0f\x2d\x24\x25\x31\x34\x69\x70\x5e\x6b\x84\x7f\x83\x9a\ +\x90\x90\xae\x90\x80\xa0\x6a\x42\x7c\x36\x07\x78\x33\x07\x8e\x3e\ +\x09\x9a\x67\x4a\xc5\xb6\xb1\xd3\xd1\xd5\xd9\xd8\xde\xd1\xcf\xd4\ +\x9e\x84\x82\x72\x49\x3a\xba\xb9\xbc\xc4\xc8\xcc\xcb\xcd\xcd\xde\ +\xe0\xe3\xe7\xea\xee\xe4\xea\xee\xd0\xdd\xe5\xe5\xec\xf4\xdd\xe7\ +\xef\xe4\xea\xf3\xe1\xe8\xf1\xdc\xe5\xee\xd9\xe3\xec\xd6\xe1\xea\ +\xd3\xde\xe8\xcf\xdb\xe4\xcb\xd8\xe1\xc6\xd3\xdd\xc5\xd3\xdc\xbc\ +\xc8\xd4\x59\x67\x9b\x29\x3d\x84\xba\xc5\xd0\xad\xc2\xcf\xd6\xe2\ +\xe7\x9a\xbf\xde\x0e\x74\xc4\x00\x70\xc8\x01\x74\xca\x00\x75\xca\ +\x01\x78\xca\x00\x73\xc7\x34\x8e\xc8\xcc\xdd\xe7\xa1\xab\xb1\xc1\ +\xcc\xd2\xca\xd4\xda\xc5\xce\xd5\xb8\xc7\xce\x71\x56\x56\x00\x00\ +\x00\x1b\x33\x2b\x22\x3c\x37\x1b\x2d\x24\x1c\x2a\x2b\x30\x59\x61\ +\x33\x5b\x5b\x34\x5f\x6a\x43\x6f\x8a\x46\x70\x7d\x33\x5e\x64\x2b\ +\x4b\x54\x27\x41\x46\x21\x39\x34\x20\x37\x3f\x27\x40\x48\x2f\x4b\ +\x64\x37\x54\x66\x47\x61\x72\x26\x3c\x3e\x26\x3e\x3f\x33\x49\x50\ +\x30\x46\x50\x26\x38\x3e\x2c\x40\x47\x2c\x41\x4d\x2c\x47\x4f\x2c\ +\x45\x44\x2b\x4e\x42\x2d\x4d\x42\x26\x3e\x38\x23\x39\x37\x1d\x29\ +\x25\x17\x1d\x1a\x19\x22\x20\x17\x24\x23\x1c\x28\x22\x1a\x26\x22\ +\x1e\x32\x2b\x1b\x2a\x22\x16\x1b\x16\x13\x17\x11\x1a\x23\x1f\x18\ +\x1a\x19\x19\x1c\x18\x20\x29\x32\x1f\x53\xa3\x1b\x4f\xa6\x1c\x4e\ +\xa4\x20\x53\xa6\x2a\x37\x5d\x34\x23\x21\x30\x1d\x1d\x34\x1d\x1e\ +\x32\x40\x6b\x58\x44\x4b\xa5\x4b\x16\x92\x75\x58\xb5\xee\xf6\xfd\ +\xfc\xfe\xfa\xfb\xfe\xf8\xfa\xfe\xf5\xf8\xfc\xf1\xf5\xf9\xd4\xdc\ +\xdf\x39\x42\x48\x00\x01\x02\x07\x07\x06\x06\x05\x05\x0a\x0d\x10\ +\x20\x29\x46\x18\x1b\x36\x08\x07\x13\x15\x1d\x72\x07\x26\xdb\x7a\ +\x8b\xe8\x94\xa4\xa4\x85\x97\xa5\xb8\xca\xd6\x9d\xaa\xb5\xbf\xc3\ +\xc8\xde\xe3\xe6\xc3\xcc\xd3\x9d\xab\xb6\x92\xa4\xad\x2e\x30\x2e\ +\x40\x4c\x5d\x93\xaa\xba\xf7\xfa\xfd\xfb\xfb\xfe\xf6\xf9\xfe\xf2\ +\xf6\xfb\xec\xf1\xf5\xe4\xe9\xee\xd5\xdc\xe2\xb3\xc1\xca\xa8\xbc\ +\xc8\x63\x66\x66\x69\x6b\x6e\xbf\xcd\xd7\x7c\x90\x9c\x7f\x91\x9a\ +\x86\x98\xa0\xb2\xbd\xc2\xf4\xf6\xf8\xdb\xdf\xe6\x51\x4c\x4d\x2c\ +\x2c\x30\xac\xba\xc8\xc2\xcb\xd2\xd8\xde\xe1\xe8\xed\xef\xf1\xf2\ +\xf5\xee\xee\xf3\x9e\x8c\x87\x3d\x1d\x10\x7e\x74\x70\xd4\xda\xde\ +\xe2\xe6\xea\xee\xf1\xf5\xf6\xf7\xfc\xf9\xfa\xff\xf0\xf1\xf6\xa1\ +\x98\x9b\xae\xb7\xc1\xb3\xb9\xbe\xba\xbe\xbf\xe7\xe9\xec\xee\xf1\ +\xf8\xdd\xe4\xec\xce\xdb\xe4\xd2\xde\xe5\xe4\xea\xf1\xe3\xea\xf1\ +\xdf\xe7\xf0\xdd\xe6\xef\xda\xe3\xec\xd8\xe3\xeb\xd6\xe1\xea\xd5\ +\xe0\xe8\xd2\xdd\xe5\xcf\xd9\xe2\xcf\xda\xe2\xc1\xcd\xd7\x72\x89\ +\xa9\x61\x78\xa6\xc9\xd5\xdb\x63\x78\x71\x7d\x9e\xb2\x43\x86\xbc\ +\x0d\x6f\xbc\x00\x6e\xc3\x00\x74\xc9\x01\x78\xcd\x00\x79\xcd\x0b\ +\x7d\xca\xa0\xc9\xe0\xdf\xe6\xec\xdb\xe2\xe7\xdb\xe3\xe9\xd9\xe1\ +\xe7\xd4\xdb\xe1\xcb\xd7\xdc\x99\x8c\x90\x00\x00\x00\x1c\x34\x30\ +\x1c\x31\x2d\x22\x39\x3e\x22\x42\x40\x26\x49\x44\x2b\x56\x54\x30\ +\x63\x6f\x4a\x7d\x8c\x3c\x67\x6a\x30\x55\x56\x37\x5e\x6e\x43\x6b\ +\x80\x26\x43\x4c\x27\x46\x41\x2c\x47\x50\x3e\x5b\x6b\x52\x72\x8a\ +\x4f\x6c\x85\x33\x4b\x5a\x2a\x4b\x4e\x2d\x45\x56\x35\x4e\x5e\x35\ +\x4d\x60\x39\x51\x65\x39\x51\x63\x35\x56\x60\x2a\x49\x44\x28\x42\ +\x3f\x2c\x4a\x45\x25\x3d\x37\x29\x3f\x38\x1b\x2a\x27\x17\x20\x1e\ +\x1b\x26\x21\x1d\x2f\x26\x1b\x23\x22\x22\x37\x35\x23\x38\x34\x1b\ +\x27\x20\x14\x15\x11\x14\x15\x11\x16\x1b\x15\x18\x1c\x19\x15\x19\ +\x12\x13\x17\x0e\x2e\x57\x8f\x1b\x53\xaa\x1d\x4c\xa4\x1c\x4c\xa3\ +\x28\x37\x61\x32\x1c\x1c\x2f\x1c\x1d\x33\x1d\x1c\x4f\x38\x39\x9d\ +\x59\x34\x49\xb1\xbd\x64\xed\xff\xf9\xfb\xfe\xf9\xfa\xfd\xf9\xfa\ +\xfe\xf6\xf8\xfd\xf1\xf4\xfa\xeb\xf0\xf3\xe4\xea\xee\xd5\xdd\xe1\ +\x69\x74\x79\x10\x14\x18\x0a\x0c\x11\x3a\x3e\x49\x25\x27\x2e\x08\ +\x09\x17\x22\x25\x59\x0f\x29\xc8\x00\x20\xd8\x20\x43\xe9\x7d\x91\ +\xe0\x7d\x90\xa3\x81\x94\xa1\x95\xa9\xb4\x82\x93\x9e\x9e\xa7\xb0\ +\xb4\xbf\xc6\x82\x92\x99\x44\x4c\x51\x0c\x0e\x13\xd1\xd5\xd9\xec\ +\xf1\xf6\xfd\xfd\xfd\xf9\xfa\xfd\xf5\xf8\xfd\xf0\xf4\xf9\xe7\xec\ +\xf1\xdb\xe2\xe7\xc6\xd1\xd8\xaa\xbd\xc9\xa5\xb1\xb4\x20\x1f\x1d\ +\xdb\xe0\xe3\xd1\xdc\xe3\x7e\x98\xa3\x90\xa6\xb8\xda\xe3\xea\x88\ +\x9a\xa3\xa1\xb0\xb6\xe7\xef\xf4\x7c\x7e\x84\xba\xc2\xc9\xb4\xc4\ +\xcf\xa8\xb7\xbe\xba\xc4\xc8\xe1\xe5\xe5\xf6\xf7\xf9\xf9\xfa\xfe\ +\xed\xf0\xf7\x78\x78\x7f\xc4\xd0\xd8\xc1\xcd\xd5\xd2\xda\xde\xea\ +\xee\xf0\xf5\xf7\xfb\xfa\xfb\xff\xf9\xf9\xfe\xc9\xd9\xe5\xb3\xc3\ +\xd1\xb5\xbd\xc4\xb4\xba\xc1\xde\xe2\xe6\xe5\xea\xf0\xd7\xe1\xea\ +\xd3\xdd\xe6\xcb\xd9\xe2\xc6\xd5\xdf\xd9\xe2\xeb\xe0\xe8\xf0\xdf\ +\xe7\xf0\xdc\xe5\xee\xda\xe4\xec\xda\xe3\xec\xd8\xe2\xeb\xd5\xde\ +\xe7\xd1\xdb\xe3\xcc\xd6\xdf\xaa\xb9\xc5\x85\xa0\xb2\xb7\xca\xd9\ +\xb6\xc4\xc0\x13\x38\x19\x19\x30\x31\x34\x4a\x52\x2c\x60\x85\x0a\ +\x5f\x9a\x04\x6f\xb7\x04\x75\xc5\x07\x7a\xc7\x71\xb2\xd9\xe1\xe9\ +\xed\xe2\xe8\xec\xe1\xe8\xeb\xde\xe6\xea\xdd\xe6\xea\xdb\xe3\xe8\ +\xdc\xe5\xea\xba\xa4\x9f\x00\x00\x00\x1d\x34\x2e\x20\x3a\x36\x24\ +\x42\x3e\x20\x39\x35\x24\x40\x47\x2a\x4d\x4d\x28\x52\x51\x3a\x6b\ +\x6e\x3c\x6a\x7f\x2e\x54\x58\x30\x54\x5b\x40\x67\x76\x35\x55\x58\ +\x21\x40\x45\x28\x44\x46\x30\x48\x4a\x42\x5c\x6d\x54\x75\x8c\x41\ +\x5b\x71\x3b\x5a\x6b\x40\x62\x75\x40\x59\x6d\x36\x51\x5e\x42\x5a\ +\x64\x43\x59\x6d\x36\x50\x56\x24\x3b\x36\x23\x3b\x34\x29\x45\x40\ +\x25\x3b\x35\x23\x38\x35\x24\x3b\x35\x16\x23\x1e\x1a\x24\x21\x17\ +\x25\x1b\x1e\x32\x2e\x20\x35\x30\x29\x41\x3a\x1b\x25\x20\x14\x17\ +\x14\x12\x13\x0f\x10\x11\x0d\x13\x14\x10\x14\x19\x15\x18\x22\x1e\ +\x30\x41\x4c\x2c\x65\xb5\x1e\x50\xa8\x1e\x53\xab\x23\x36\x66\x30\ +\x19\x19\x30\x1a\x19\x47\x2b\x2d\x9a\x5f\x43\xad\x64\x2c\x91\xb3\ +\xa5\xe4\xf4\xf5\xfa\xfb\xfd\xf9\xfa\xfe\xf6\xf8\xfd\xf1\xf5\xf9\ +\xea\xef\xf2\xe1\xe8\xeb\xd9\xe1\xe5\xc9\xd4\xd6\xa8\xb4\xb6\x6a\ +\x76\x7c\x42\x49\x56\x17\x17\x1b\x0e\x0e\x0f\x26\x2b\x52\x7a\x87\ +\xc1\x51\x6d\xe0\x04\x25\xda\x00\x21\xd9\x16\x35\xe3\x5b\x6c\xd5\ +\x66\x76\x90\x61\x6c\x75\x80\x8f\x9c\xb3\xc5\xd0\xa4\xb5\xbc\x44\ +\x53\x59\x1b\x26\x32\x14\x1a\x22\xb6\xb6\xb8\xff\xff\xff\xfa\xfb\ +\xfd\xf6\xf9\xfe\xf3\xf6\xfb\xed\xf0\xf6\xe1\xe7\xec\xcd\xd9\xdf\ +\xb3\xc3\xcb\xba\xcb\xd3\x42\x46\x43\x65\x67\x68\xff\xff\xff\xf4\ +\xf7\xfc\xc6\xd6\xe2\x9e\xba\xcc\x96\xb1\xc2\x8f\xa4\xae\x7b\x90\ +\x99\xc2\xcf\xd9\x96\x98\x9c\xd2\xd9\xdf\xa6\xb8\xc2\x9e\xad\xb5\ +\xaa\xb8\xbf\xbb\xc5\xcb\xd5\xda\xdc\xe9\xed\xef\xee\xf1\xf6\xb3\ +\xc0\xcc\xbe\xcd\xdb\xb9\xc6\xce\xbc\xc9\xce\xe3\xe9\xed\xec\xf0\ +\xf4\xf2\xf5\xf8\xeb\xef\xf3\xc0\xd3\xdf\xac\xc4\xd3\xd6\xe0\xe7\ +\xe0\xe7\xeb\xe5\xeb\xf0\xde\xe5\xec\xda\xe2\xea\xd7\xe0\xe9\xd2\ +\xdc\xe5\xc4\xd0\xdc\xb4\xc7\xd2\xcc\xd9\xe0\xde\xe7\xee\xdf\xe7\ +\xef\xdd\xe6\xef\xdc\xe5\xee\xdb\xe3\xec\xd7\xe1\xe9\xd2\xdd\xe4\ +\xc6\xd0\xd9\x82\x98\xa5\xa9\xbf\xcb\xe8\xef\xf7\x6f\x8e\x6c\x2d\ +\x5a\x2c\x39\x56\x57\x1c\x32\x32\x17\x26\x23\x10\x2e\x43\x0d\x4c\ +\x79\x4c\x88\xaa\x80\xb2\xcd\xd6\xe3\xe8\xe1\xe7\xeb\xe1\xe8\xea\ +\xe1\xe8\xeb\xe1\xe7\xed\xe0\xe7\xeb\xdf\xe6\xec\xdf\xe7\xec\xcf\ +\xca\xca\x00\x00\x00\x1b\x32\x30\x1d\x37\x34\x1f\x38\x34\x20\x3a\ +\x35\x1d\x33\x33\x1f\x3c\x3a\x2d\x5c\x5e\x38\x64\x78\x45\x70\x82\ +\x2f\x58\x5b\x33\x59\x65\x35\x5d\x67\x35\x53\x5b\x2d\x48\x5c\x30\ +\x50\x58\x26\x45\x4a\x3a\x5d\x73\x4b\x6e\x7f\x43\x5c\x67\x46\x63\ +\x72\x46\x64\x72\x4c\x66\x7b\x3f\x5a\x72\x3d\x56\x67\x3d\x57\x68\ +\x36\x55\x60\x2b\x45\x45\x29\x45\x42\x2d\x4d\x4e\x2c\x4a\x44\x27\ +\x3e\x3c\x26\x3e\x38\x19\x26\x22\x1b\x29\x25\x1c\x2c\x2b\x20\x31\ +\x2b\x20\x33\x2d\x20\x35\x2c\x16\x1d\x17\x14\x17\x14\x13\x14\x10\ +\x12\x14\x0f\x12\x14\x10\x14\x1a\x11\x16\x1d\x17\x1b\x22\x1b\x34\ +\x5d\x99\x1d\x50\xa9\x1d\x52\xad\x23\x42\x7d\x2f\x1c\x20\x3c\x24\ +\x22\x92\x5f\x50\xba\x59\x21\xcb\x4c\x00\xd5\x55\x03\xe7\xb8\x99\ +\xf8\xfa\xfd\xf6\xf8\xfd\xf1\xf5\xf9\xe9\xed\xf0\xe0\xe7\xea\xd7\ +\xdf\xe4\xd1\xdb\xe0\xb0\xbc\xbd\x62\x6b\x6d\x3c\x3e\x44\x26\x25\ +\x26\x18\x14\x14\x25\x24\x27\x8c\x95\xba\x60\x7e\xee\x89\x9f\xe5\ +\x34\x52\xe0\x01\x22\xda\x00\x1f\xd9\x00\x19\xdd\x2b\x3b\xca\x41\ +\x50\x97\x74\x7f\xa2\xbc\xc6\xce\xaf\xbd\xc3\x55\x64\x6f\x32\x3b\ +\x48\x2d\x39\x41\x8e\x99\xa4\xf6\xf9\xfe\xf9\xfb\xfe\xf2\xf7\xfc\ +\xee\xf3\xf9\xe6\xeb\xf1\xd7\xdf\xe6\xbf\xcd\xd4\xb3\xc5\xcf\x95\ +\x9f\xa0\x1c\x1d\x1d\xcb\xce\xd0\xff\xfe\xff\xfa\xfa\xff\xf5\xf7\ +\xfc\xd9\xe3\xeb\xb7\xca\xd7\xa7\xba\xc6\x8e\xa3\xaf\xb1\xc4\xd1\ +\x73\x7a\x81\xdd\xe0\xe6\xcd\xd7\xe0\xaa\xb9\xc2\xc8\xd6\xdf\xd3\ +\xdd\xe5\xaf\xbb\xc2\xbc\xc8\xce\xcf\xd9\xe1\xaa\xb8\xc0\xd4\xdf\ +\xe8\xb9\xc8\xd1\xbd\xcb\xd1\xfa\xfa\xfd\xe6\xed\xf4\xde\xe6\xec\ +\xc5\xd1\xdb\xa3\xbe\xd0\x9f\xb9\xca\xb6\xc4\xcc\xe7\xed\xf0\xe1\ +\xe8\xee\xde\xe6\xed\xdd\xe5\xed\xdb\xe2\xeb\xd5\xdf\xe8\xcc\xd7\ +\xe0\xb8\xc9\xd4\xa5\xb9\xc4\xbc\xca\xd1\xe4\xeb\xf0\xe5\xeb\xf3\ +\xe0\xe8\xf0\xdf\xe7\xee\xdb\xe3\xeb\xd6\xde\xe4\xa1\xb2\xbf\xa4\ +\xb8\xc4\xe9\xf0\xf7\xd1\xdb\xcd\x41\x74\x2c\x54\x7d\x5f\x69\x82\ +\x81\x31\x53\x47\x26\x3e\x36\x17\x1f\x1b\x0e\x12\x12\x51\x52\x4c\ +\x84\x88\x83\xc0\xc8\xc9\xdc\xe4\xe9\xdf\xe5\xe8\xdf\xe5\xea\xe1\ +\xe7\xeb\xe1\xe8\xeb\xe1\xe7\xeb\xe0\xe6\xea\xe0\xe7\xec\x00\x00\ +\x00\x1f\x39\x38\x23\x40\x39\x1c\x31\x33\x21\x41\x39\x21\x3e\x37\ +\x23\x48\x47\x23\x45\x41\x3b\x67\x79\x46\x70\x81\x30\x55\x5a\x3a\ +\x58\x64\x34\x59\x61\x3e\x64\x70\x43\x64\x82\x3e\x60\x71\x2d\x4f\ +\x59\x33\x4e\x59\x3b\x54\x5d\x32\x49\x56\x39\x56\x66\x3e\x5d\x6a\ +\x45\x61\x77\x4a\x6d\x82\x3c\x51\x5d\x37\x4f\x56\x3f\x5f\x64\x2c\ +\x41\x3d\x2d\x49\x44\x35\x62\x61\x33\x5d\x56\x2b\x45\x40\x23\x3a\ +\x34\x1e\x30\x2f\x1d\x2d\x2a\x21\x32\x2f\x1d\x2e\x2a\x23\x37\x34\ +\x1e\x2a\x25\x17\x1b\x18\x16\x17\x16\x13\x14\x11\x14\x17\x13\x13\ +\x17\x13\x13\x17\x12\x1a\x24\x21\x1e\x2a\x26\x29\x3e\x52\x2c\x64\ +\xb6\x1b\x4f\xa8\x1e\x49\x94\x3c\x34\x4a\x7d\x47\x3b\xb2\x54\x1e\ +\xcb\x4c\x00\xd2\x50\x00\xc4\x59\x0a\xc6\xbe\xac\xf6\xf8\xfd\xf1\ +\xf5\xf9\xec\xf0\xf3\xe3\xe9\xeb\xdb\xe3\xe7\xd0\xdb\xdf\xbc\xc6\ +\xca\x75\x7f\x83\x56\x55\x5a\x27\x22\x22\x16\x0f\x0e\x35\x2d\x2d\ +\x62\x63\x66\xd5\xd7\xd5\xa5\xbd\xf8\x5f\x7b\xeb\x31\x52\xeb\x08\ +\x29\xe6\x01\x1e\xde\x00\x13\xd7\x00\x08\xc1\x06\x0e\xa5\x1a\x22\ +\x78\x39\x41\x68\x44\x4d\x6b\x17\x1a\x24\x42\x49\x5a\x69\x79\x82\ +\xa0\xb1\xbc\xdb\xe7\xef\xf0\xf5\xfa\xf2\xf6\xfb\xea\xef\xf4\xdc\ +\xe4\xea\xc9\xd4\xdb\xaf\xbf\xc9\xb3\xc4\xca\x4d\x52\x51\x4f\x51\ +\x53\xfc\xfb\xfd\xfc\xfb\xfe\xf8\xf9\xfe\xf3\xf6\xfb\xed\xf0\xf5\ +\xdf\xe5\xe9\xc1\xce\xd5\xa3\xb6\xc2\x9e\xb0\xba\x6d\x72\x7a\xe1\ +\xe4\xea\xf3\xf6\xfc\xe1\xe8\xf0\xda\xe3\xec\xd6\xdf\xe8\xc8\xd3\ +\xdb\xad\xbe\xcb\xa8\xbe\xcd\x96\xa2\xa9\xd2\xd5\xd9\xe3\xea\xf1\ +\xdb\xe4\xeb\xe9\xed\xf4\xe1\xe8\xee\xca\xd7\xe0\xa2\xb8\xc8\x8f\ +\xab\xbf\x9e\xb9\xcb\x68\x78\x84\xd0\xdb\xe1\xe6\xeb\xf0\xe1\xe8\ +\xef\xdf\xe6\xee\xde\xe5\xec\xd9\xe2\xea\xd2\xdc\xe3\xc7\xd3\xdd\ +\xb6\xc6\xcf\xa7\xb9\xc3\x8a\x90\x9c\xde\xe5\xeb\xe5\xec\xf3\xe3\ +\xea\xf1\xdb\xe2\xea\xa4\xb6\xc3\xc2\xd1\xda\xf1\xf4\xfa\xef\xf1\ +\xf0\x80\xaa\x68\x55\x8e\x45\x6c\x8a\x7b\x59\x80\x53\x3e\x6b\x3a\ +\x35\x57\x3c\x39\x48\x48\x17\x18\x1c\x15\x18\x18\x0d\x0e\x0f\x3a\ +\x3c\x39\x7c\x84\x81\xc9\xd4\xd6\xdf\xe7\xeb\xdd\xe5\xe9\xe0\xe7\ +\xea\xe0\xe7\xeb\xe0\xe7\xea\xe1\xe7\xec\x00\x00\x00\x21\x3e\x39\ +\x1a\x32\x27\x14\x28\x27\x1e\x39\x33\x17\x2b\x2a\x26\x4f\x4c\x2a\ +\x54\x59\x3b\x6c\x7a\x3d\x6e\x76\x37\x59\x6c\x2f\x4c\x4e\x2b\x4f\ +\x56\x34\x56\x64\x4b\x69\x73\x42\x65\x6f\x30\x55\x5c\x32\x4f\x5e\ +\x32\x46\x58\x41\x52\x58\x3c\x57\x65\x40\x5b\x6c\x45\x61\x72\x4a\ +\x65\x72\x3f\x52\x60\x30\x49\x53\x37\x4e\x50\x1f\x2e\x2a\x21\x39\ +\x30\x34\x5e\x5b\x31\x57\x50\x28\x40\x3b\x24\x39\x38\x1f\x31\x2f\ +\x1f\x33\x31\x1e\x31\x2d\x25\x3e\x3b\x24\x39\x36\x1f\x28\x23\x1b\ +\x1e\x19\x1b\x1c\x1a\x1f\x23\x1f\x2b\x32\x32\x25\x2d\x2c\x25\x2f\ +\x2b\x24\x31\x2c\x20\x2d\x29\x22\x30\x32\x3d\x66\xa3\x16\x4f\xa7\ +\x2a\x4e\x9c\x79\x62\x78\xa6\x5d\x3a\xc4\x51\x02\xc4\x5b\x0c\xca\ +\x5f\x11\x49\xad\xaa\xaa\xed\xf9\xf2\xf6\xf9\xec\xf1\xf5\xe5\xeb\ +\xee\xdc\xe3\xe6\xce\xd7\xda\xb2\xbc\xbc\x76\x80\x82\x52\x51\x55\ +\x29\x20\x1e\x08\x04\x04\x12\x06\x03\xa0\x99\x9c\x9c\xa4\xa8\xa4\ +\xa6\xa7\xdd\xde\xde\x7b\x94\xe1\x11\x37\xeb\x03\x23\xe8\x00\x18\ +\xde\x00\x0f\xcc\x00\x09\xad\x00\x08\x82\x11\x1b\x5b\x27\x32\x5d\ +\x0c\x0e\x1d\x0f\x12\x22\x33\x42\x70\xa2\xb0\xc2\x8c\x9c\xa7\xb9\ +\xca\xd4\xd2\xe0\xe7\xd8\xe1\xe7\xe2\xe9\xee\xd5\xde\xe4\xbb\xc9\ +\xcf\xa8\xbc\xc5\x8a\x95\x98\x17\x19\x19\xba\xbd\xbf\xfe\xfc\xfe\ +\xfa\xfb\xfe\xf6\xf9\xfd\xf1\xf4\xf9\xe8\xec\xf2\xd4\xdd\xe2\xbc\ +\xca\xd2\xa0\xb5\xc1\x8e\x9b\xa3\x72\x73\x79\xe8\xe8\xee\xf5\xf7\ +\xfc\xf0\xf4\xf9\xe8\xec\xf3\xdc\xe3\xe9\xc8\xd3\xdb\x9e\xb2\xc2\ +\xa4\xb9\xc7\x86\x90\x98\xa9\xa9\xaa\xf7\xfc\xff\xed\xf1\xf8\xe3\ +\xe9\xf1\xd9\xe2\xe9\xc8\xd4\xdf\xa9\xbe\xcc\x8c\xa7\xb9\x94\xad\ +\xbc\x7c\x90\x9d\x5f\x65\x69\xe9\xf0\xf1\xe6\xeb\xee\xe2\xe9\xee\ +\xdf\xe6\xec\xdc\xe5\xe9\xd9\xe1\xe8\xd2\xdb\xe3\xc9\xd5\xdd\xb5\ +\xc2\xca\x50\x68\x85\x73\x8c\xa8\xd3\xdd\xe0\xcc\xd2\xd7\xba\xc9\ +\xd3\xbb\xcb\xd5\xd1\xda\xde\xf7\xf8\xf9\xab\xc4\x9a\x4d\x8f\x29\ +\x66\xa4\x49\x7e\x98\x80\x3e\x78\x26\x36\x6f\x1d\x4c\x74\x4c\x38\ +\x43\x45\x38\x43\x48\x38\x3c\x3f\x1b\x1c\x1e\x06\x04\x06\x0b\x0d\ +\x0c\x23\x28\x27\x7b\x83\x7f\xd4\xdc\xdd\xe1\xe8\xeb\xdf\xe7\xeb\ +\xe0\xe6\xeb\xe3\xe9\xec\x00\x00\x00\x26\x46\x44\x18\x2c\x2d\x1f\ +\x38\x3b\x20\x3b\x38\x21\x39\x47\x27\x44\x3f\x20\x39\x33\x34\x6b\ +\x72\x3f\x76\x83\x3d\x6c\x7c\x29\x4b\x51\x35\x60\x72\x41\x6e\x86\ +\x3e\x61\x74\x29\x41\x49\x2c\x47\x50\x37\x52\x5c\x3d\x57\x62\x34\ +\x47\x53\x31\x4b\x58\x39\x4f\x5e\x3a\x51\x58\x3c\x54\x60\x3a\x50\ +\x5a\x44\x5e\x6d\x35\x4f\x55\x28\x41\x43\x27\x47\x41\x2a\x4d\x46\ +\x30\x59\x55\x2a\x48\x45\x24\x39\x38\x1d\x2e\x2d\x1e\x2d\x2c\x29\ +\x47\x46\x2c\x4b\x47\x23\x37\x33\x1e\x2d\x27\x14\x14\x11\x13\x15\ +\x13\x15\x16\x13\x15\x19\x14\x19\x20\x18\x14\x15\x0f\x17\x19\x15\ +\x22\x2c\x27\x2d\x42\x3f\x3c\x59\x6e\x35\x6e\xba\x69\x5f\x7e\xac\ +\x5a\x33\xc7\x4e\x03\xc8\x58\x0a\x66\xa3\x98\x3d\xbd\xc7\x87\xe8\ +\xf5\xeb\xf5\xfa\xee\xf2\xf6\xe7\xec\xef\xdd\xe4\xe7\xce\xd7\xd9\ +\xb0\xbc\xbc\x72\x77\x70\x4a\x32\x28\x1f\x0d\x07\x05\x03\x04\x0b\ +\x03\x03\x4a\x12\x01\xa1\x3c\x14\xc4\xba\xb4\x8e\x93\x96\xba\xbd\ +\xc3\xfd\xff\xff\x86\xa0\xe2\x01\x21\xda\x00\x13\xd4\x00\x10\xb9\ +\x00\x0b\x8e\x10\x1e\x66\x2d\x3c\x68\x07\x09\x1e\x0f\x0f\x18\x5a\ +\x5d\x71\xb1\xbb\xc6\x49\x58\x81\xa0\xb0\xc0\x74\x8b\xa0\x9b\xab\ +\xb7\x9e\xb3\xbe\x95\xa6\xb2\xa6\xb2\xbb\x9c\xad\xb6\x6e\x7d\x7f\ +\x29\x2d\x2d\x44\x46\x49\xeb\xeb\xee\xfe\xfd\xff\xfa\xfb\xfd\xf5\ +\xf8\xfd\xed\xf3\xf7\xe3\xe9\xee\xd3\xdc\xe3\xb3\xc1\xcc\x9d\xb4\ +\xc2\x78\x83\x88\x68\x6c\x72\xeb\xed\xf3\xf5\xf8\xfd\xf0\xf4\xf9\ +\xe8\xec\xf3\xdb\xe2\xe9\xc4\xd0\xd9\xa1\xb6\xc4\xa6\xbd\xc8\x85\ +\x8f\x94\x79\x76\x76\xfa\xfe\xff\xee\xf2\xf8\xe6\xed\xf4\xdb\xe3\ +\xea\xcc\xd7\xe0\xb4\xc6\xd2\x97\xb0\xbf\x8d\xa7\xb5\x8b\x9f\xa9\ +\x3e\x46\x4d\x99\x9f\x9e\xeb\xef\xf2\xe5\xeb\xed\xe3\xe9\xed\xde\ +\xe6\xea\xdd\xe4\xe8\xd8\xe0\xe7\xd5\xde\xe5\x9a\xa9\xb4\x76\x8d\ +\x9b\x8a\x9f\xaa\xbd\xc6\xca\xa4\xb4\xbc\xb9\xc7\xcf\xb6\xc6\xcd\ +\xdf\xe7\xe8\xc0\xd8\xaf\x59\x9e\x32\x48\x8c\x21\x5b\xa4\x32\x52\ +\x96\x29\x48\x85\x2b\x43\x79\x2e\x72\x90\x7a\x93\xa3\xa9\x7b\x87\ +\x8e\x54\x5c\x60\x37\x38\x3e\x1a\x17\x17\x09\x03\x04\x04\x04\x04\ +\x07\x06\x06\x1e\x21\x1e\x80\x7f\x7a\xc2\xbb\xb3\xd5\xdf\xe1\xdc\ +\xe5\xe9\x00\x00\x00\x1a\x2f\x2c\x27\x4b\x43\x20\x3a\x37\x1f\x3e\ +\x39\x23\x40\x3f\x26\x40\x55\x1a\x2d\x38\x23\x38\x4a\x39\x63\x63\ +\x3b\x79\x87\x39\x63\x71\x3d\x62\x75\x49\x77\x88\x47\x69\x79\x37\ +\x50\x5b\x38\x53\x62\x30\x41\x49\x2e\x43\x50\x3b\x50\x5f\x3f\x58\ +\x6c\x3e\x58\x65\x34\x4f\x5a\x39\x55\x65\x37\x4f\x57\x3a\x54\x53\ +\x37\x54\x52\x28\x3b\x35\x26\x3c\x34\x2d\x4d\x46\x34\x5b\x5b\x2c\ +\x4c\x46\x29\x4a\x47\x26\x40\x3e\x1e\x2f\x2d\x2b\x49\x43\x2a\x43\ +\x3f\x1c\x31\x2b\x1d\x2c\x24\x16\x1a\x16\x18\x1d\x17\x18\x1c\x19\ +\x19\x1f\x1c\x12\x17\x12\x11\x12\x0f\x17\x20\x1f\x1f\x2e\x2a\x21\ +\x32\x2c\x2c\x42\x42\x78\x7e\x8d\xa0\x61\x3f\xbf\x4c\x05\xd0\x52\ +\x00\x87\x8f\x75\x24\xea\xff\x61\xe6\xfc\xe8\xf5\xfa\xf0\xf3\xf6\ +\xe8\xee\xef\xdd\xe5\xe6\xbc\xb3\xa9\x7b\x54\x3d\x54\x3c\x33\x3d\ +\x1d\x12\x1e\x06\x02\x03\x03\x03\x0e\x06\x04\x40\x0f\x04\xa9\x2c\ +\x01\x81\x34\x0d\x91\x6e\x59\xbe\xc9\xd0\xfa\xfd\xff\xf3\xf7\xfc\ +\xf2\xf7\xf6\xb6\xc7\xdf\x30\x46\xbd\x07\x15\x99\x12\x20\x70\x36\ +\x47\x70\x0e\x11\x27\x10\x12\x13\x3c\x3f\x4e\x83\x8e\xa4\x87\x92\ +\xaa\x0f\x22\x52\x12\x25\x56\x58\x78\xa1\x57\x76\x93\x58\x69\x74\ +\x93\xa5\xb2\xc0\xd1\xdc\xc2\xd0\xd9\x8f\x9e\xa4\x3c\x47\x4c\x78\ +\x7a\x7d\xf5\xf3\xf5\xfc\xfb\xfc\xf9\xfa\xfd\xf4\xf7\xfc\xed\xf1\ +\xf7\xe1\xe7\xec\xc6\xd1\xd9\xa4\xb6\xc1\xa1\xb4\xbf\x60\x67\x69\ +\x71\x77\x7b\xf1\xf2\xf9\xf4\xf8\xfd\xf0\xf4\xf9\xe7\xec\xf2\xdb\ +\xe1\xe9\xc3\xcf\xd7\xa2\xb7\xc5\xa7\xbd\xc8\x93\x9d\xa4\x55\x50\ +\x50\xe6\xe9\xec\xf0\xf4\xf9\xe9\xee\xf4\xde\xe8\xee\xd2\xdd\xe6\ +\xbf\xce\xd8\x9d\xb3\xc1\x88\x9f\xab\x8e\xa0\xa9\x69\x77\x80\x3a\ +\x3c\x3d\xcc\xd1\xd1\xe8\xec\xee\xe5\xeb\xee\xe2\xe7\xeb\xde\xe4\ +\xe9\xd5\xde\xe5\xac\xba\xc7\x94\xac\xbb\xc1\xd3\xde\xb9\xc4\xd0\ +\x78\x78\x8c\xa7\xb4\xb8\xd1\xde\xde\xe3\xec\xe5\xaa\xcc\x92\x5d\ +\xa9\x30\x5c\xa8\x2f\x4d\x97\x25\x5f\xab\x37\x5b\xa7\x30\x4b\x91\ +\x27\x5f\x92\x51\xa1\xb3\xb6\xa0\xac\xb2\x98\xa5\xab\x81\x8e\x95\ +\x54\x59\x5f\x32\x2d\x2d\x17\x0c\x0d\x0f\x0b\x0e\x05\x03\x04\x03\ +\x03\x03\x00\x00\x00\x10\x00\x00\x49\x41\x36\x83\xac\xb5\x00\x00\ +\x00\x18\x30\x2e\x1c\x33\x2e\x19\x32\x2b\x22\x45\x42\x25\x45\x48\ +\x2d\x4d\x5d\x2b\x4c\x5b\x25\x38\x4b\x1b\x33\x2d\x33\x6c\x77\x41\ +\x72\x85\x3b\x60\x6b\x3d\x66\x6f\x43\x67\x7b\x3c\x60\x71\x3e\x59\ +\x6c\x38\x4f\x5f\x3b\x5b\x73\x40\x5e\x72\x3d\x4f\x57\x3e\x58\x69\ +\x3e\x5c\x6f\x39\x5b\x6b\x37\x56\x5a\x30\x4b\x47\x24\x3c\x32\x17\ +\x22\x1d\x21\x35\x30\x29\x4a\x42\x30\x57\x50\x2e\x50\x4f\x30\x59\ +\x57\x2a\x47\x44\x22\x3a\x3a\x26\x40\x3e\x2b\x48\x47\x28\x40\x40\ +\x1d\x27\x23\x16\x1a\x14\x1c\x21\x1c\x22\x2e\x2a\x22\x2d\x2b\x1d\ +\x26\x24\x1b\x20\x1e\x1d\x29\x25\x20\x2e\x27\x26\x39\x37\x64\x59\ +\x4b\x91\x57\x38\xb5\x46\x07\xce\x4e\x00\xcd\x58\x04\xb6\xab\x90\ +\xec\xfd\xff\xfb\xf7\xfa\xf1\xf3\xf7\xe9\xee\xf1\xde\xe6\xe9\xc5\ +\xc5\xbf\x77\x4e\x37\x44\x17\x09\x31\x1a\x12\x15\x0a\x06\x04\x03\ +\x04\x0d\x04\x03\x38\x0e\x03\x99\x26\x00\xb9\x2f\x00\xa0\x4c\x28\ +\x8e\xe3\xf5\xff\xff\xff\xf4\xf7\xfb\xee\xf3\xf5\xe0\xe9\xec\xd1\ +\xdb\xde\xae\xbd\xb9\x62\x72\x86\x4d\x5c\x6f\x20\x23\x28\x0a\x0a\ +\x08\x3c\x3d\x41\x7f\x89\x9a\xad\xb7\xc8\x6f\x7e\xa3\x25\x35\x61\ +\x04\x17\x4a\x03\x16\x49\x2c\x41\x6f\x52\x64\x82\x8d\x99\xa7\xb3\ +\xba\xc0\xb7\xbe\xc4\x91\x9c\xa1\x39\x43\x49\x50\x52\x56\xec\xeb\ +\xed\xfb\xfc\xfd\xf7\xf9\xfd\xf2\xf6\xfb\xe8\xee\xf4\xd9\xe0\xe7\ +\xbf\xcc\xd3\x99\xac\xb6\x98\xa8\xb0\x43\x47\x48\x8b\x90\x95\xf7\ +\xf8\xfd\xf5\xf9\xfe\xf1\xf5\xfb\xe8\xed\xf3\xdb\xe3\xea\xc6\xd1\ +\xd9\xa1\xb4\xc2\xa6\xba\xc5\xa0\xab\xb1\x3e\x3b\x3a\xcc\xcd\xd0\ +\xf4\xf8\xfc\xec\xf0\xf7\xe2\xe9\xf1\xd6\xe0\xe7\xc4\xd1\xda\xa8\ +\xba\xc5\x8e\xa1\xac\x90\xa3\xab\x87\x93\x9c\x15\x19\x1d\x6f\x72\ +\x73\xda\xde\xdd\xea\xef\xf2\xe6\xea\xed\xd8\xe1\xe6\xc1\xce\xd9\ +\xaa\xbf\xcd\xbe\xcf\xd7\xdd\xe6\xed\x7e\x7d\xac\x00\x03\x3a\x45\ +\x4a\x56\x86\x98\x81\x8f\xb7\x82\x72\xab\x5f\x5d\xa3\x30\x5c\xa8\ +\x2d\x59\xa5\x2a\x5d\xaa\x2b\x5a\xa5\x2b\x64\xa4\x4c\xac\xc4\xba\ +\xbe\xc9\xcf\x9f\xac\xb2\x94\xa0\xa5\xab\xb8\xbd\x85\x90\x97\x4d\ +\x4d\x52\x39\x1e\x12\x3e\x1d\x0f\x17\x0d\x0b\x06\x04\x06\x03\x03\ +\x03\x01\x04\x05\x00\x00\x00\x14\x0a\x04\x00\x00\x00\x24\x42\x3f\ +\x28\x4a\x4b\x26\x44\x45\x25\x4a\x47\x24\x48\x42\x24\x49\x44\x28\ +\x4a\x50\x23\x3d\x3d\x1b\x33\x2c\x2c\x51\x5c\x45\x72\x82\x3d\x61\ +\x70\x3d\x6a\x7d\x43\x63\x71\x48\x6f\x86\x46\x69\x7f\x46\x63\x78\ +\x4d\x6e\x85\x45\x62\x6c\x2f\x44\x53\x3e\x57\x64\x49\x63\x79\x48\ +\x69\x7c\x31\x4a\x50\x28\x38\x36\x22\x36\x31\x1a\x26\x21\x22\x38\ +\x30\x26\x40\x3a\x2c\x4e\x48\x30\x53\x55\x37\x63\x63\x2e\x51\x53\ +\x30\x53\x55\x26\x3e\x3e\x2b\x48\x44\x27\x42\x3e\x1d\x2c\x27\x12\ +\x15\x11\x15\x19\x13\x1e\x22\x1d\x17\x1c\x14\x19\x20\x18\x1c\x23\ +\x1d\x1f\x2b\x26\x1f\x30\x2e\x60\x64\x61\xa2\x63\x40\xac\x46\x0f\ +\xc7\x4a\x01\xd7\x51\x00\x77\x98\x7c\xa6\xee\xfb\xfc\xf8\xfc\xf2\ +\xf6\xfb\xec\xf5\xf8\xe3\xee\xf1\xd6\xe0\xe2\x7c\x6c\x5c\x43\x1f\ +\x11\x39\x1e\x17\x18\x0c\x08\x03\x03\x03\x0b\x07\x05\x2d\x0d\x05\ +\x91\x27\x02\xb8\x3c\x0f\xa9\x4d\x26\x89\xa5\xa3\x90\xee\xff\xf7\ +\xf8\xfc\xef\xf4\xf6\xe6\xed\xee\xd4\xdf\xe0\xad\xb9\xbb\x75\x83\ +\x84\x6c\x76\x77\x32\x33\x30\x0a\x09\x09\x14\x17\x18\x8d\x8f\x94\ +\xca\xd1\xda\x6f\x80\xa4\x53\x62\x98\x8a\x94\xac\x0d\x27\x69\x07\ +\x19\x4c\x03\x16\x4a\x03\x11\x40\x16\x1d\x3c\x2d\x31\x3c\x42\x48\ +\x4f\x2b\x31\x34\x31\x3f\x48\x4d\x59\x62\xc3\xca\xcf\xf8\xf9\xfd\ +\xf5\xf8\xfd\xef\xf3\xf9\xe6\xec\xf1\xd4\xde\xe3\xb0\xbe\xc5\x8c\ +\x9e\xa8\x90\x9d\xa4\x23\x23\x22\x9c\xa0\xa4\xfa\xfc\xff\xf7\xfa\ +\xfe\xf2\xf6\xfb\xe8\xee\xf4\xdd\xe5\xea\xc9\xd3\xdb\xa0\xb1\xbc\ +\x9b\xaf\xbb\xa5\xb0\xb7\x1f\x1e\x1e\xae\xaf\xb1\xf5\xfa\xfe\xef\ +\xf3\xf9\xe7\xed\xf4\xdc\xe4\xeb\xcc\xd6\xde\xaf\xbe\xc7\x91\xa2\ +\xac\x84\x97\xa0\x65\x71\x7a\x38\x44\x4d\x29\x2f\x36\x5d\x60\x60\ +\xac\xb1\xb3\xc3\xcd\xcf\xd8\xe3\xe9\xe2\xeb\xf1\xe2\xeb\xee\xd8\ +\xdd\xe2\x86\x83\xc2\x08\x0a\x71\x04\x0a\x52\x00\x04\x35\x11\x18\ +\x30\x57\x67\x61\x90\xb1\x8a\x7b\xad\x62\x57\x9c\x26\x56\x9d\x24\ +\x50\x9c\x21\x6b\xac\x55\xbc\xd3\xc3\xdd\xe3\xeb\xca\xd4\xd9\xa9\ +\xb5\xbc\x8b\x97\x99\xbd\xcb\xcf\xb0\xb9\xc0\x6e\x75\x7c\x50\x32\ +\x26\x6f\x2c\x09\x58\x27\x0e\x1c\x10\x0e\x05\x06\x09\x04\x04\x03\ +\x03\x03\x04\x01\x04\x06\x00\x00\x00\x2a\x51\x51\x37\x6f\x72\x30\ +\x5d\x5a\x30\x5b\x55\x20\x3e\x35\x20\x41\x3e\x25\x48\x49\x20\x39\ +\x34\x16\x27\x21\x2e\x4d\x5d\x47\x6e\x80\x46\x6a\x7c\x3d\x61\x68\ +\x38\x5a\x6a\x4b\x6d\x7e\x49\x71\x83\x46\x67\x7b\x43\x62\x76\x40\ +\x5c\x6b\x34\x4f\x64\x3a\x55\x68\x42\x61\x75\x4b\x67\x77\x38\x55\ +\x5c\x26\x41\x3c\x1f\x30\x29\x18\x21\x20\x1a\x26\x22\x1f\x34\x2c\ +\x2e\x56\x51\x30\x57\x57\x36\x65\x65\x33\x5c\x5a\x33\x58\x54\x2d\ +\x4e\x4f\x26\x40\x3c\x26\x3e\x39\x18\x1f\x1c\x16\x1a\x14\x18\x1d\ +\x17\x19\x1b\x19\x13\x16\x15\x15\x19\x16\x18\x1f\x1b\x1a\x29\x28\ +\x51\x50\x4d\x95\x5f\x42\xa9\x50\x1e\xa9\x5c\x23\x56\xaa\xa4\x4d\ +\xaa\xa5\x59\xe0\xf1\xe2\xf6\xfc\xf2\xf6\xf9\xdf\xd9\xcf\xc7\xad\ +\x99\xab\x85\x6e\x79\x4d\x39\x40\x30\x29\x36\x20\x15\x14\x0a\x06\ +\x05\x03\x02\x0a\x06\x04\x1f\x07\x02\x8d\x24\x00\xbb\x37\x08\x8b\ +\x91\x8a\x23\xc1\xdc\x51\xda\xf2\xf6\xf9\xfc\xf0\xf5\xf9\xe8\xee\ +\xf1\xda\xe2\xe5\xb5\xc3\xc2\x6f\x7c\x7e\x64\x70\x74\x3a\x3b\x38\ +\x07\x07\x07\x13\x0c\x09\x52\x51\x55\xb0\xb5\xb7\xf5\xf7\xf9\x98\ +\xa7\xc1\x20\x3e\x8e\x39\x57\xa4\x12\x36\x8f\x0a\x25\x6b\x0e\x1f\ +\x53\x07\x15\x3c\x0c\x17\x2f\x1d\x24\x2d\x23\x27\x2f\x16\x16\x12\ +\x59\x5d\x55\x7f\x8f\x95\xab\xb8\xc0\xeb\xf1\xf9\xef\xf3\xf8\xee\ +\xf2\xf7\xe3\xea\xf0\xcb\xd5\xdc\x9f\xaf\xb8\x85\x95\x9e\x55\x5c\ +\x5f\x0e\x11\x11\x76\x75\x74\xf6\xf5\xf7\xf8\xfa\xfe\xf1\xf5\xfa\ +\xe8\xec\xf2\xdb\xe3\xe8\xc5\xcf\xd7\x9d\xae\xb7\x90\xa3\xae\x7e\ +\x83\x84\x0d\x0b\x0e\x89\x8b\x8c\xf2\xf6\xfa\xf1\xf5\xfa\xeb\xf0\ +\xf5\xde\xe6\xed\xcc\xd8\xde\xb8\xc6\xcd\xa4\xb1\xba\x8d\x9e\xa9\ +\x7c\x8f\x9a\x75\x88\x94\x37\x40\x48\x26\x31\x36\x75\x81\x88\xa7\ +\xb7\xbb\xda\xe3\xe7\xff\xff\xff\xdb\xd8\xe9\x55\x52\xb7\x0a\x0c\ +\x99\x01\x06\x80\x03\x07\x66\x05\x09\x52\x03\x07\x35\x18\x1f\x31\ +\x36\x44\x34\x5b\x87\x3b\x60\xa9\x31\x7a\xb4\x68\xb9\xd7\xb7\xca\ +\xdc\xd3\xda\xe2\xe7\xdc\xe5\xe7\xd8\xe0\xe4\xc6\xd0\xd6\x94\xa3\ +\xa8\xc0\xcd\xd0\xc2\xcb\xcf\x85\x8f\x96\x49\x33\x2f\x68\x28\x07\ +\x75\x30\x0b\x5d\x27\x0c\x21\x15\x12\x06\x07\x0a\x04\x03\x04\x03\ +\x03\x05\x00\x00\x00\x27\x48\x49\x36\x6d\x61\x23\x44\x3a\x29\x52\ +\x49\x2b\x59\x56\x27\x4e\x4a\x24\x47\x46\x26\x4e\x4e\x1c\x36\x39\ +\x3c\x67\x75\x42\x64\x75\x3d\x64\x74\x32\x56\x6a\x3f\x61\x73\x3c\ +\x57\x62\x41\x61\x70\x4a\x69\x81\x50\x6c\x7c\x4a\x65\x77\x48\x66\ +\x7e\x44\x61\x72\x40\x5b\x69\x3e\x57\x5e\x2a\x42\x3f\x26\x3d\x38\ +\x22\x3a\x37\x26\x3e\x3d\x21\x32\x30\x20\x34\x30\x30\x5b\x5c\x38\ +\x65\x65\x37\x6c\x6b\x35\x5b\x5d\x25\x3e\x39\x2c\x4b\x46\x22\x3a\ +\x39\x26\x3e\x3b\x17\x1f\x1a\x11\x11\x0c\x16\x1b\x18\x17\x1a\x16\ +\x1e\x25\x22\x19\x24\x1c\x13\x1d\x19\x4b\x29\x12\xa1\x3c\x07\xa1\ +\x4d\x24\x8e\x6a\x4c\x94\x92\x76\x4a\xe8\xff\x46\xe2\xf9\xdf\xf5\ +\xfb\xee\xf3\xf5\xd4\xbf\xab\x9c\x3f\x06\x91\x37\x08\x6c\x23\x05\ +\x40\x2b\x24\x3d\x22\x18\x14\x0a\x06\x02\x03\x03\x0a\x04\x06\x17\ +\x05\x02\x82\x37\x21\xb0\x5a\x3b\xb3\x2e\x00\x88\x61\x45\x76\xb7\ +\xba\xd2\xf9\xff\xf4\xf7\xfa\xeb\xf1\xf3\xde\xe6\xe7\xbf\xcb\xcc\ +\x7d\x88\x89\x66\x6d\x70\x3a\x3f\x3d\x06\x06\x04\x08\x06\x06\x1b\ +\x0a\x04\xaa\x86\x67\xbd\xc2\xc9\xff\xff\xff\xf8\xfa\xfd\xa9\xbb\ +\xd5\x22\x4a\x9b\x14\x35\x86\x0b\x24\x62\x0d\x1e\x4f\x0b\x19\x3b\ +\x22\x2f\x44\x1f\x24\x31\x0c\x0e\x14\x43\x44\x43\x82\x7a\x67\x84\ +\x87\x83\x8c\x99\xa0\xb3\xbb\xc3\xdd\xe8\xf0\xcd\xd9\xe0\xc8\xd2\ +\xd9\xac\xba\xc0\xbf\xce\xd9\x53\x61\x62\x2a\x2e\x31\x46\x52\x56\ +\x54\x5a\x5a\xb8\xbb\xbb\xf8\xfa\xfe\xef\xf3\xf9\xe7\xec\xf2\xdb\ +\xe2\xe8\xcb\xd3\xdb\x99\xa6\xaf\x81\x93\x9c\x36\x3a\x3c\x2c\x30\ +\x35\x3f\x46\x49\xc7\xc9\xc9\xf6\xf9\xfe\xee\xf2\xf8\xe4\xea\xf1\ +\xdb\xe3\xe9\xc1\xca\xd1\x76\x84\x90\x8f\xa2\xac\xbe\xcd\xd6\x99\ +\xa8\xb2\x2a\x31\x3d\x32\x34\x39\xbb\xbf\xce\xd7\xdb\xe2\xc7\xc5\ +\xe1\x7b\x79\xcc\x22\x26\xb3\x02\x07\xa8\x00\x05\xa1\x01\x04\x91\ +\x00\x05\x77\x01\x06\x69\x04\x09\x4d\x3d\x46\x4d\x2b\x2d\x2e\x1d\ +\x27\x1e\x64\x74\x62\xd8\xe1\xdb\xa4\xa7\xa6\xe3\xe9\xec\xd7\xdf\ +\xe2\xda\xe2\xe4\xe1\xe8\xea\xdb\xe2\xe7\xc1\xcc\xd2\xc3\xcf\xd5\ +\xc5\xcf\xd4\xa4\xb0\xb7\x77\x79\x7e\x50\x31\x26\x40\x13\x03\x6b\ +\x2c\x0b\x63\x2a\x0c\x25\x19\x15\x09\x0a\x0c\x05\x04\x05\x00\x00\ +\x00\x27\x49\x57\x23\x41\x38\x1a\x34\x2c\x27\x4c\x49\x2f\x5a\x53\ +\x28\x51\x47\x24\x47\x47\x2a\x55\x58\x27\x45\x44\x36\x5a\x63\x41\ +\x6b\x7d\x40\x69\x7e\x43\x68\x74\x3c\x59\x63\x30\x4a\x53\x40\x5f\ +\x71\x53\x73\x89\x3f\x57\x63\x35\x4b\x58\x4b\x70\x88\x45\x67\x7a\ +\x42\x5a\x6c\x36\x50\x5c\x29\x47\x43\x1b\x2c\x2a\x25\x3a\x35\x27\ +\x3f\x39\x22\x32\x2f\x1b\x29\x24\x2c\x4f\x48\x2d\x52\x4a\x32\x63\ +\x63\x32\x59\x58\x2b\x4b\x4e\x29\x3f\x41\x26\x41\x3b\x24\x37\x31\ +\x16\x1c\x15\x12\x16\x11\x17\x1f\x18\x22\x32\x2c\x23\x2e\x29\x17\ +\x21\x1c\x2d\x27\x20\x8e\x39\x0c\xa6\x38\x00\xa7\x41\x02\x29\xcb\ +\xe5\x71\xef\xff\xff\xfb\xfd\xf7\xf8\xfd\xf1\xf4\xfa\xe1\xdb\xd2\ +\x9a\x44\x0b\x8c\x2e\x00\x6a\x21\x01\x44\x23\x18\x3c\x22\x18\x12\ +\x08\x06\x02\x03\x05\x07\x05\x04\x14\x08\x05\x73\x31\x20\xb1\x65\ +\x46\xaf\x33\x01\xb5\x34\x00\xb6\x3a\x00\xaa\x2f\x00\xa7\x52\x29\ +\xdb\xd5\xce\xe3\xea\xee\xc6\xd1\xd3\x8a\x96\x96\x68\x67\x62\x3b\ +\x37\x33\x03\x05\x04\x08\x06\x07\x13\x06\x03\x76\x47\x1b\xcc\xd9\ +\xd6\xff\xff\xff\xfa\xfc\xfd\xf7\xf9\xfe\xf8\xfb\xff\xdb\xe5\xed\ +\x52\x70\x9b\x17\x37\x66\x10\x28\x50\x1d\x38\x56\x3c\x53\x66\x18\ +\x1f\x28\x0d\x0d\x10\x67\x66\x62\xb5\xb4\xae\x6e\x60\x44\x72\x6e\ +\x61\x63\x68\x65\x7e\x85\x88\x9e\xaa\xb1\x8f\x9c\xa3\xa9\xb8\xc0\ +\xdc\xe6\xed\x8f\xa0\xa8\x45\x4f\x55\x7d\x81\x83\x8f\x98\x98\x8f\ +\x9c\x9f\xc9\xcf\xd0\xfb\xfa\xfc\xe5\xe8\xec\xbf\xc4\xc7\x97\x9e\ +\xa1\xbb\xca\xd1\xc6\xd4\xdd\x88\x9a\xa6\x5d\x6c\x72\x81\x8f\x97\ +\x87\x96\x9b\xc5\xcf\xd3\xf0\xf4\xf7\xf3\xf5\xfa\xd0\xd9\xe1\x9f\ +\xb0\xba\x81\x8c\x93\x84\x8f\x92\xb5\xc1\xc7\x67\x6b\x7e\x12\x1a\ +\x2f\x04\x06\x07\x14\x15\x3b\x45\x4d\xb4\x52\x5f\xc3\x37\x44\xc2\ +\x08\x0f\xbb\x02\x07\xb0\x01\x05\xa9\x01\x05\xa0\x00\x04\x89\x00\ +\x04\x76\x43\x4f\x79\x55\x58\x5a\x1a\x21\x20\x2d\x31\x32\x1c\x1c\ +\x1e\x1b\x18\x19\x70\x72\x73\x71\x72\x74\xd1\xdc\xd9\xd8\xe2\xe6\ +\xe4\xe9\xed\xe3\xe9\xec\xd9\xe1\xe3\xcd\xd6\xdc\xc7\xd1\xd6\xc4\ +\xce\xd4\xab\xb8\xbf\x8c\x95\x9b\x4f\x47\x47\x31\x15\x0d\x67\x2a\ +\x0a\x68\x2b\x0b\x25\x18\x17\x0c\x09\x0b\x00\x00\x00\x30\x4d\x55\ +\x26\x42\x3d\x22\x47\x49\x2d\x58\x52\x27\x4b\x45\x24\x45\x3f\x1d\ +\x3a\x37\x2c\x55\x5b\x21\x41\x3f\x26\x45\x47\x40\x69\x7b\x3a\x65\ +\x73\x3f\x69\x7b\x35\x52\x61\x31\x50\x5f\x45\x68\x7f\x4d\x68\x76\ +\x3c\x54\x60\x3c\x57\x69\x46\x60\x6c\x40\x60\x6a\x44\x5e\x68\x42\ +\x5e\x6a\x2d\x4b\x4b\x28\x41\x3e\x24\x38\x36\x21\x34\x32\x21\x31\ +\x2c\x1c\x29\x27\x27\x4a\x45\x2f\x59\x58\x35\x63\x64\x2e\x57\x56\ +\x2d\x51\x4f\x30\x52\x58\x1f\x34\x2e\x16\x1e\x18\x15\x1b\x16\x15\ +\x19\x14\x15\x1a\x16\x18\x1e\x16\x16\x19\x12\x1c\x2b\x2c\x23\x97\ +\xba\x64\x72\x62\xa8\x3c\x00\xa7\x6e\x3f\xb3\xed\xfb\xe1\xf7\xfe\ +\xf9\xf8\xfd\xf2\xf5\xf8\xf0\xf7\xfb\x80\x65\x46\x78\x37\x12\x6a\ +\x21\x01\x46\x28\x1e\x31\x1e\x19\x0f\x09\x06\x03\x03\x05\x06\x04\ +\x04\x0f\x04\x02\x5c\x1e\x0e\xa8\x60\x43\xb1\x2e\x00\xb4\x33\x00\ +\xb6\x37\x00\xb0\x35\x00\xa3\x2b\x00\x83\x4a\x33\xd1\xe3\xea\xcc\ +\xd6\xd7\x96\xa1\xa1\x64\x63\x60\x34\x2e\x26\x04\x03\x03\x08\x06\ +\x06\x09\x05\x04\x58\x24\x00\xaa\x90\x5e\xa1\xed\xf9\xff\xfc\xfd\ +\xf8\xfa\xfd\xf4\xf8\xfd\xf3\xf7\xfb\xec\xf0\xf4\xd7\xe2\xe4\xa4\ +\xb9\xc1\x6a\x8e\x9f\x54\x76\x88\x46\x51\x54\x0a\x0c\x0d\x15\x16\ +\x17\x88\x84\x7b\xa5\x9c\x8e\xc0\xc0\xbd\x60\x4f\x2d\x63\x50\x34\ +\x58\x52\x46\x51\x53\x4e\x5b\x62\x62\x9f\xa9\xad\xbd\xc3\xc5\x84\ +\x8e\x90\x2b\x2b\x29\x3e\x3d\x41\x9a\xa2\xaa\x9d\xaa\xae\x9a\xa5\ +\xa9\xbd\xc0\xbf\xd1\xd6\xd8\xaf\xba\xc2\x81\x8e\x94\xc2\xce\xd6\ +\xe1\xe9\xf1\xc8\xd1\xd9\x53\x5a\x60\x81\x87\x8e\xac\xba\xc1\xc7\ +\xd1\xd9\xd8\xe0\xe2\xe0\xe5\xe5\xc1\xc7\xc8\x9e\xa5\xa4\x86\x90\ +\x93\xa4\xad\xb0\x60\x60\x66\x15\x1b\x2d\x20\x27\x44\x08\x0a\x12\ +\x03\x03\x02\x39\x39\x51\x7a\x7d\xbb\x65\x69\xcf\x12\x19\xc9\x0e\ +\x14\xbf\x04\x0b\xb1\x0d\x14\xa9\x05\x0c\x95\x52\x60\x9c\x9b\xa9\ +\xaf\x7d\x87\x8a\x54\x57\x57\x38\x3a\x3a\x2c\x2a\x2b\x0e\x0b\x0b\ +\x0a\x0e\x0e\x5e\x47\x37\x7d\x6c\x5d\x92\xc2\xc8\xd6\xea\xef\xeb\ +\xee\xf0\xe1\xe8\xea\xdd\xe6\xec\xd5\xdf\xe3\xd2\xda\xde\xc0\xcc\ +\xd1\xa8\xb2\xb9\x7a\x81\x88\x3c\x35\x37\x3c\x15\x05\x6d\x2b\x09\ +\x6a\x2d\x0c\x2b\x21\x1f\x00\x00\x00\x26\x44\x3e\x23\x42\x42\x2c\ +\x52\x4e\x2e\x5a\x5d\x30\x5d\x5d\x2d\x54\x51\x20\x39\x39\x20\x3a\ +\x36\x2f\x5c\x6a\x26\x46\x46\x38\x5d\x67\x3a\x6a\x7c\x48\x78\x8d\ +\x38\x5a\x6c\x38\x57\x6b\x4c\x6e\x85\x41\x5b\x69\x37\x51\x61\x48\ +\x67\x7b\x38\x4f\x5d\x39\x56\x64\x30\x4d\x54\x38\x58\x5f\x26\x40\ +\x3a\x26\x3e\x3b\x26\x3c\x35\x26\x3d\x39\x1c\x2a\x26\x22\x37\x31\ +\x28\x46\x40\x35\x63\x61\x36\x69\x6e\x33\x5b\x5d\x31\x56\x5a\x2f\ +\x52\x4f\x24\x38\x32\x1c\x29\x22\x18\x1d\x17\x17\x1b\x19\x19\x21\ +\x1c\x14\x18\x11\x25\x2a\x2a\x2a\x2e\x34\x58\xb9\xd7\x35\xa1\xad\ +\x76\x7b\x61\x73\xe5\xf5\xff\xfd\xff\xfa\xf9\xfd\xf3\xf8\xfd\xea\ +\xf0\xf1\xcc\xbf\xb2\x54\x93\x99\x49\x2e\x19\x49\x1f\x11\x30\x1b\ +\x14\x0c\x07\x07\x03\x04\x08\x06\x04\x07\x0f\x06\x05\x4a\x1c\x0e\ +\x9f\x48\x28\xb0\x41\x14\xb4\x31\x00\xb3\x37\x02\xab\x3c\x09\xa5\ +\x27\x00\x89\x4e\x3b\x53\xbd\xdf\xb5\xd6\xde\x9e\xa7\xa6\x68\x65\ +\x60\x31\x22\x1b\x05\x04\x03\x06\x05\x04\x07\x06\x04\x2c\x14\x07\ +\x89\x74\x47\x86\xc6\xbe\xf2\xf9\xfc\xfa\xfb\xfd\xf6\xf9\xfe\xf3\ +\xf8\xfc\xf0\xf4\xf7\xdf\xe6\xea\xb9\xc5\xca\x8e\x9a\x9f\x69\x71\ +\x72\x5c\x5e\x5c\x18\x1b\x19\x05\x09\x09\x35\x37\x39\xa2\x9e\x92\ +\x6c\x59\x3a\xac\xa1\x91\x63\x53\x33\x56\x42\x20\x51\x3f\x26\x3b\ +\x30\x1a\x40\x38\x2a\x44\x3c\x36\x2f\x2c\x29\x26\x27\x29\x0d\x0f\ +\x14\x29\x2d\x35\x6e\x6e\x77\x97\x9e\xa4\xaf\xb9\xbd\x9a\xa1\xa2\ +\x98\x9e\x9e\x87\x8f\x90\x85\x8e\x8f\xb1\xba\xbe\xb8\xbd\xc2\x6c\ +\x6d\x73\x13\x15\x1c\x37\x3c\x43\x89\x92\x9f\xa9\xb3\xbe\xbd\xc6\ +\xce\xc0\xc6\xcc\xa5\xab\xb0\x8f\x97\x9f\x84\x88\x92\x51\x56\x5e\ +\x20\x26\x31\x22\x2a\x35\x27\x30\x49\x0e\x12\x1e\x05\x04\x04\x03\ +\x03\x05\x0f\x13\x5c\x00\x08\xba\x00\x08\xcb\x00\x02\xc4\x14\x22\ +\xbd\x31\x3d\xb8\x74\x82\xc0\xb9\xc6\xcf\xb6\xc1\xc7\x9a\xa6\xad\ +\x76\x7d\x81\x3f\x3f\x3f\x32\x2f\x2e\x1d\x15\x16\x0c\x06\x06\x00\ +\x00\x01\x16\x0a\x04\x44\x40\x2c\x82\x96\x8d\xa3\xd7\xe2\xe1\xed\ +\xf1\xc9\xb1\xa4\xc0\xc7\xc3\xbb\xdf\xe9\xd4\xdc\xe1\xc4\xce\xd3\ +\xa1\xab\xb1\x55\x57\x5e\x30\x19\x11\x5a\x21\x04\x71\x2c\x09\x67\ +\x2c\x0c\x00\x00\x00\x1b\x2f\x2e\x23\x3e\x3a\x31\x56\x54\x2b\x57\ +\x50\x2e\x58\x50\x23\x3e\x35\x1e\x2c\x33\x1c\x33\x33\x2e\x59\x5e\ +\x1d\x33\x2e\x27\x3f\x3e\x34\x58\x62\x48\x77\x8f\x40\x6b\x7e\x3c\ +\x5e\x74\x4b\x71\x8a\x4d\x69\x7e\x43\x60\x74\x47\x6a\x7b\x44\x60\ +\x72\x3b\x55\x63\x33\x56\x5e\x2d\x48\x49\x26\x41\x3e\x2c\x4c\x46\ +\x22\x34\x30\x27\x3f\x3a\x1e\x2c\x28\x22\x34\x2c\x27\x44\x39\x2f\ +\x54\x4e\x3b\x70\x7a\x38\x61\x69\x2c\x47\x45\x30\x54\x52\x22\x33\ +\x2b\x16\x1e\x17\x17\x1c\x18\x1b\x20\x1c\x1b\x25\x1f\x20\x27\x26\ +\xa1\xa7\xab\x4e\x4f\x57\xcb\xe2\xec\x2f\xcf\xea\x5e\xdf\xf2\xd7\ +\xf7\xfe\xfb\xf9\xfd\xf6\xf8\xfd\xed\xf2\xf0\xbc\x97\x79\x8d\x42\ +\x19\x54\x21\x06\x46\x22\x18\x2d\x1a\x14\x0c\x08\x0b\x04\x04\x0e\ +\x03\x04\x0b\x10\x08\x09\x30\x13\x08\x92\x49\x2e\xb5\x56\x31\xb6\ +\x45\x16\xb3\x35\x00\xb0\x36\x00\x8a\x5a\x3f\x49\x8a\x97\x5f\xb8\ +\xcf\xa8\xd8\xe4\xa6\xae\xad\x69\x67\x63\x40\x30\x25\x0c\x07\x05\ +\x06\x05\x04\x07\x05\x05\x13\x09\x03\x70\x4c\x27\x66\xcb\xd3\x8f\ +\xf4\xff\xf9\xfc\xff\xf7\xfa\xfe\xf5\xf8\xfe\xf2\xf6\xfa\xe8\xee\ +\xf1\xcb\xd6\xda\x9e\xaa\xaf\x69\x72\x73\x66\x64\x63\x37\x33\x31\ +\x06\x09\x0b\x05\x09\x0a\x65\x69\x69\xda\xdb\xda\x85\x7c\x67\x64\ +\x4f\x28\x67\x54\x2e\x5d\x49\x26\x45\x34\x1a\x33\x27\x0e\x20\x17\ +\x09\x15\x0d\x07\x1b\x1b\x1a\x31\x33\x38\x05\x09\x0b\x32\x35\x3c\ +\x31\x30\x38\x32\x2d\x33\x56\x55\x5a\x66\x67\x6b\x7f\x7c\x7f\x7a\ +\x78\x7b\x6b\x6b\x6d\x50\x50\x51\x32\x31\x33\x24\x28\x33\x17\x1b\ +\x22\x21\x21\x21\x38\x41\x56\x34\x44\x5f\x45\x53\x6d\x44\x51\x6a\ +\x34\x41\x58\x17\x24\x3b\x0d\x18\x2e\x54\x59\x65\x15\x18\x1e\x1a\ +\x21\x29\x2d\x36\x4a\x1a\x1f\x30\x04\x04\x04\x04\x03\x03\x02\x03\ +\x09\x2f\x33\x68\x6f\x7c\xcc\x86\x94\xdb\xab\xb5\xe1\xc2\xcc\xe0\ +\xdc\xe4\xe6\xd1\xd8\xde\xc3\xcc\xd3\xb1\xbe\xc2\x9b\xa3\xaa\x60\ +\x62\x63\x38\x35\x35\x22\x14\x12\x1c\x0a\x04\x0c\x06\x06\x02\x05\ +\x08\x10\x07\x06\x33\x1d\x0f\x3e\x7a\x7e\x97\xb7\xbb\x97\x3c\x0b\ +\x92\x57\x32\x54\xa5\xab\xa0\xe0\xef\xd9\xde\xe2\xc7\xd0\xd6\x8f\ +\x96\x9f\x40\x36\x37\x48\x15\x02\x6b\x2b\x08\x6f\x2c\x07\x00\x00\ +\x00\x19\x2d\x2a\x25\x41\x48\x28\x47\x42\x23\x44\x39\x23\x41\x3a\ +\x1f\x3b\x37\x1d\x35\x32\x21\x3c\x38\x28\x4f\x4a\x23\x3d\x3d\x1d\ +\x32\x2b\x20\x39\x3c\x4d\x7a\x93\x4c\x72\x7e\x45\x6a\x7f\x52\x79\ +\x8d\x4c\x67\x7b\x48\x63\x76\x47\x6b\x82\x43\x64\x77\x45\x5f\x71\ +\x3b\x53\x5f\x24\x37\x36\x1f\x2e\x27\x20\x34\x2d\x25\x3c\x35\x2c\ +\x44\x3d\x22\x33\x32\x20\x2d\x27\x1e\x2e\x28\x2d\x4e\x48\x3e\x75\ +\x7e\x37\x66\x71\x2b\x4f\x51\x2a\x47\x44\x1e\x26\x21\x18\x1d\x19\ +\x1c\x26\x1b\x15\x1b\x12\x32\x3a\x36\x9b\xa2\xa8\xb7\xbb\xbd\x66\ +\x69\x70\xf6\xf9\xfe\xc7\xf2\xfc\xe3\xf8\xfe\xfa\xf9\xfe\xf5\xf7\ +\xfd\xf1\xf5\xf6\xbe\x95\x75\x8e\x32\x03\x66\x1a\x00\x46\x29\x25\ +\x2f\x1a\x18\x0d\x09\x0f\x05\x06\x0e\x05\x05\x10\x0a\x07\x08\x1a\ +\x0c\x08\x76\x31\x19\xab\x52\x2e\xb1\x31\x01\xb3\x31\x00\xb4\x39\ +\x00\xa2\x3e\x13\x4e\x9a\xa9\x48\xd4\xf7\xb1\xde\xea\xaa\xb4\xb3\ +\x66\x6b\x69\x4f\x3d\x32\x0f\x0a\x07\x06\x05\x04\x06\x05\x04\x0a\ +\x06\x05\x43\x21\x07\xcc\x72\x0d\xc4\x88\x30\xd9\xc1\x9d\xf6\xf6\ +\xf5\xf6\xfa\xfe\xf2\xf6\xfb\xee\xf2\xf6\xdb\xe4\xe8\xb1\xbd\xc3\ +\x77\x81\x83\x60\x61\x60\x55\x4d\x48\x0f\x0f\x0e\x06\x07\x07\x05\ +\x07\x08\xb4\xba\xbf\xbb\xbf\xc0\xca\xcd\xcb\x84\x7d\x67\x6a\x59\ +\x33\x5a\x46\x24\x48\x35\x18\x31\x25\x10\x21\x18\x0d\x15\x11\x0b\ +\x2a\x2b\x2b\x17\x17\x14\x02\x07\x0a\x33\x36\x3b\x85\x85\x8f\x2c\ +\x29\x31\x0e\x0a\x12\x15\x10\x16\x20\x1c\x1f\x1b\x18\x18\x14\x11\ +\x11\x09\x06\x06\x0c\x0c\x0c\x31\x38\x44\x20\x27\x30\x06\x08\x07\ +\x17\x20\x2c\x1a\x2c\x48\x19\x29\x49\x0e\x20\x3f\x09\x1c\x3a\x0a\ +\x1a\x35\x09\x15\x2c\x11\x16\x26\x07\x0b\x12\x16\x1a\x22\x39\x43\ +\x58\x2d\x32\x45\x06\x06\x08\x03\x03\x03\x03\x04\x05\x0a\x0c\x0d\ +\x7c\x81\x84\xe0\xe7\xea\xe9\xee\xef\xe3\xe9\xed\xdd\xe3\xe8\xd6\ +\xdd\xe2\xcc\xd5\xdb\xc1\xcb\xd1\xb3\xbd\xc3\x8c\x94\x98\x50\x4f\ +\x50\x24\x15\x0f\x1e\x09\x01\x19\x08\x03\x09\x05\x06\x01\x02\x03\ +\x05\x03\x01\x13\x10\x0d\x53\x31\x1d\x9d\x3c\x04\x9a\x39\x00\x85\ +\x3d\x10\x49\x86\x83\x83\xd2\xe5\xd4\xdf\xe4\xc4\xcd\xd3\x7c\x7e\ +\x88\x3f\x1e\x15\x5b\x1d\x00\x6d\x2a\x06\x00\x00\x00\x37\x59\x68\ +\x28\x3e\x39\x18\x27\x27\x1a\x32\x2d\x1d\x38\x33\x22\x40\x38\x20\ +\x3b\x31\x19\x2d\x2d\x2e\x51\x58\x20\x38\x32\x19\x2c\x27\x1a\x30\ +\x30\x47\x70\x83\x48\x6d\x7d\x43\x69\x80\x4e\x73\x8d\x4e\x6e\x86\ +\x4a\x69\x7f\x57\x7c\x96\x44\x66\x7b\x45\x5e\x6a\x3a\x54\x5e\x22\ +\x39\x37\x19\x29\x26\x1e\x2e\x25\x22\x32\x31\x23\x38\x30\x2c\x47\ +\x40\x20\x2f\x2a\x1c\x2b\x24\x23\x3f\x3c\x3b\x71\x7a\x3b\x70\x7d\ +\x31\x59\x53\x1f\x30\x2b\x20\x2e\x2b\x1a\x21\x1d\x17\x1c\x15\x18\ +\x21\x1d\xa1\xab\xad\xd3\xd7\xdc\x9f\xa5\xa6\x8f\x92\x9a\xfa\xfd\ +\xff\xf8\xf9\xfe\xfa\xfa\xfe\xf7\xf8\xfd\xf2\xf6\xf9\xd4\xca\xc2\ +\x8b\x64\x4c\x5d\x30\x1e\x49\x3f\x40\x29\x2c\x2d\x12\x14\x15\x06\ +\x07\x08\x05\x05\x08\x0a\x07\x0a\x16\x0b\x08\x5c\x20\x0d\xae\x5d\ +\x40\xb2\x3a\x0a\xb3\x33\x00\xb6\x3d\x01\xac\x39\x00\xa4\x3c\x13\ +\xb8\xb0\xab\xd5\xea\xf0\xaf\xbc\xbb\x66\x70\x70\x4f\x3c\x30\x0b\ +\x06\x05\x04\x04\x05\x06\x06\x04\x06\x05\x03\x19\x0b\x03\xb1\x63\ +\x18\xde\x89\x24\xd8\x7e\x12\xd8\x6c\x00\xe6\xcd\xb2\xf5\xf9\xff\ +\xf0\xf4\xf8\xe6\xeb\xef\xc9\xd3\xd8\x93\xa0\xa4\x5d\x62\x62\x5a\ +\x49\x41\x16\x0d\x0a\x03\x07\x07\x04\x08\x09\x18\x0b\x06\xcb\x9f\ +\x89\xa9\xae\xb0\xe2\xe4\xe5\xf6\xf9\xfc\x98\x98\x8c\x53\x43\x29\ +\x49\x35\x18\x30\x24\x0f\x20\x17\x0c\x19\x14\x0e\x38\x36\x35\x0b\ +\x0f\x10\x02\x08\x0a\x2e\x31\x35\x8a\x8e\x95\x47\x46\x4d\x91\x92\ +\x99\x43\x3f\x45\x0f\x0a\x0b\x13\x10\x13\x0d\x0a\x0d\x12\x10\x13\ +\x0e\x0c\x0d\x20\x22\x28\x20\x27\x2e\x09\x0d\x12\x0b\x11\x19\x24\ +\x34\x4b\x1b\x2c\x46\x16\x26\x43\x10\x20\x3f\x0b\x19\x36\x0a\x17\ +\x2f\x08\x11\x22\x07\x0a\x13\x1a\x21\x29\x3a\x42\x4f\x35\x3a\x49\ +\x11\x11\x14\x03\x03\x03\x05\x03\x04\x04\x04\x05\x04\x04\x07\x92\ +\x96\x96\xe3\xe9\xec\xe6\xea\xee\xe1\xe7\xea\xdb\xe2\xe6\xd3\xdb\ +\xdf\xcb\xd4\xd9\xc2\xcc\xd0\xae\xb7\xbf\x7b\x7f\x83\x2e\x1f\x1d\ +\x1e\x09\x01\x1e\x09\x02\x1a\x09\x02\x07\x03\x01\x02\x02\x02\x03\ +\x02\x01\x04\x03\x03\x2a\x0d\x02\x7f\x2e\x03\x9e\x35\x00\x58\x68\ +\x56\x0e\xb6\xda\xd2\xe8\xec\xda\xe1\xe6\xc4\xce\xd4\x94\x9d\xa1\ +\x6e\x51\x46\x5b\x26\x0e\x00\x00\x00\x48\x75\x8c\x30\x57\x63\x24\ +\x3c\x40\x23\x3f\x3a\x1c\x33\x2e\x22\x3d\x41\x1d\x37\x35\x19\x2d\ +\x2c\x29\x4d\x4b\x27\x4b\x49\x1f\x38\x39\x24\x46\x4a\x3d\x66\x7c\ +\x46\x69\x76\x3d\x63\x79\x4e\x72\x8b\x51\x71\x83\x46\x68\x7d\x54\ +\x77\x8e\x53\x77\x8e\x3b\x50\x55\x33\x53\x52\x2d\x50\x4e\x22\x38\ +\x35\x25\x3d\x3d\x2d\x4a\x45\x26\x37\x31\x26\x39\x33\x1f\x2e\x26\ +\x1a\x21\x1b\x29\x45\x42\x39\x6a\x66\x3e\x6f\x75\x2f\x51\x50\x26\ +\x3b\x39\x1f\x30\x2a\x1f\x28\x21\x15\x19\x12\x3c\x40\x40\xc5\xcb\ +\xcd\xdc\xe0\xe3\x73\x78\x79\xbd\xbb\xc5\xfd\xfe\xff\xf9\xfa\xff\ +\xf7\xf9\xfe\xf2\xf6\xf9\xeb\xf0\xf1\xb4\xdb\xe5\x21\x89\xac\x37\ +\x50\x5c\x3e\x54\x5b\x20\x33\x34\x1e\x2f\x2d\x09\x08\x08\x08\x06\ +\x05\x0d\x09\x06\x3d\x15\x09\xab\x5b\x3e\xb1\x47\x1e\xb3\x2f\x00\ +\xb6\x3a\x03\xb2\x38\x01\xa7\x33\x05\x8b\x7f\x77\x94\xe1\xf8\xbd\ +\xc4\xc2\x67\x6c\x6a\x46\x2d\x1d\x0d\x06\x00\x05\x06\x06\x07\x07\ +\x05\x07\x07\x05\x09\x05\x03\x6f\x3b\x17\xdf\x72\x00\xda\x74\x00\ +\xdc\x6e\x00\xbb\x83\x3b\xa5\xe5\xf3\xf5\xf7\xfb\xe9\xef\xf3\xd9\ +\xe2\xe8\xaf\xbb\xbe\x6e\x76\x76\x57\x43\x3b\x24\x10\x06\x04\x06\ +\x08\x05\x08\x08\x01\x07\x09\x4a\x1d\x05\x9c\x40\x07\xc3\xbb\xb5\ +\xfc\xff\xff\xfa\xfa\xfe\xfa\xfe\xff\xc9\xd0\xd2\x8f\x93\x93\x5c\ +\x61\x5e\x38\x3a\x38\x42\x3f\x3c\x36\x36\x36\x02\x07\x07\x02\x07\ +\x08\x35\x3a\x3b\x9f\xa3\xa6\x80\x81\x89\x2e\x20\x25\x3e\x33\x3a\ +\x14\x0f\x11\x0f\x0b\x0d\x0c\x09\x0b\x07\x06\x09\x0b\x0c\x0d\x1f\ +\x23\x27\x30\x3a\x43\x10\x14\x1e\x01\x03\x09\x94\x9f\xa5\x4d\x5d\ +\x73\x24\x32\x4c\x1a\x28\x45\x17\x26\x3e\x1b\x2a\x3e\x24\x30\x41\ +\x48\x54\x5e\x40\x48\x51\x2d\x32\x3a\x47\x50\x5e\x1f\x1b\x1e\x05\ +\x02\x02\x05\x04\x04\x05\x05\x05\x05\x06\x05\x01\x02\x01\x98\x9a\ +\x9c\xe3\xea\xec\xe5\xeb\xed\xe1\xe6\xea\xd6\xde\xe3\xcc\xd5\xd9\ +\xc5\xce\xd3\xc3\xcd\xd4\xa7\xad\xb4\x48\x35\x33\x1e\x09\x03\x1e\ +\x09\x01\x1e\x0a\x02\x17\x07\x02\x04\x02\x02\x01\x01\x01\x02\x01\ +\x01\x01\x01\x02\x09\x02\x01\x51\x24\x0d\x86\x37\x08\x5c\x62\x4b\ +\x5d\x84\x80\xd1\xcb\xc4\xb5\xd9\xe5\xc6\xd4\xdc\xbd\xcc\xd2\x88\ +\x7b\x79\x00\x00\x00\x55\x7c\x8a\x58\x8d\x9c\x46\x76\x87\x2d\x51\ +\x50\x23\x3f\x3b\x2a\x4d\x4c\x26\x40\x42\x1e\x30\x36\x1d\x34\x2d\ +\x27\x46\x48\x28\x44\x46\x23\x40\x40\x41\x69\x72\x3d\x60\x76\x4a\ +\x75\x91\x51\x77\x8c\x4f\x73\x8b\x45\x6b\x7b\x43\x62\x6b\x4a\x65\ +\x71\x39\x52\x5d\x22\x32\x2d\x2b\x49\x41\x26\x40\x38\x2c\x4b\x45\ +\x2c\x46\x3d\x24\x36\x30\x24\x36\x30\x21\x30\x29\x1a\x22\x20\x27\ +\x41\x3b\x30\x5c\x58\x41\x72\x7e\x32\x4e\x50\x21\x32\x2c\x23\x39\ +\x33\x1e\x2b\x24\x1a\x24\x1f\x51\x54\x54\xc0\xc7\xca\xed\xf0\xf6\ +\x4b\x51\x50\xb5\xad\xb3\xff\xff\xff\xf8\xf9\xfe\xf4\xf6\xfa\xed\ +\xf1\xf6\xd3\xd2\xce\x91\x96\x95\x4a\x53\x55\x4a\x52\x50\x25\x3b\ +\x38\x27\x3b\x37\x31\x4d\x52\x18\x20\x23\x07\x02\x02\x30\x0f\x07\ +\x9a\x4e\x33\xa6\x3e\x12\xb3\x2c\x00\xb5\x33\x00\xa0\x6a\x4b\x74\ +\x69\x59\x7b\x6b\x61\x82\xe1\xf7\xb2\xc9\xcd\x70\x71\x6c\x3c\x26\ +\x1b\x15\x09\x05\x05\x06\x05\x06\x05\x03\x07\x06\x04\x05\x05\x02\ +\x31\x1c\x15\xc8\x6c\x11\xdb\x71\x02\xd2\x78\x13\xcf\x7a\x1e\x55\ +\xc3\xcd\xae\xea\xf6\xf2\xf4\xf8\xe4\xea\xee\xc6\xcf\xd2\x7f\x7e\ +\x7b\x51\x3c\x31\x38\x25\x1d\x09\x09\x07\x05\x07\x06\x05\x07\x07\ +\x00\x05\x07\x84\x34\x05\xb9\x58\x0f\xb0\xda\xe1\xfd\xfe\xff\xf6\ +\xf9\xfe\xf1\xf6\xf9\xeb\xf0\xf4\xdf\xe6\xe9\xb7\xc1\xc5\x66\x6b\ +\x6d\x5e\x59\x54\x1d\x1d\x1c\x04\x08\x09\x02\x06\x06\x40\x46\x49\ +\x93\x99\x9f\xb8\xbe\xc2\x6a\x6e\x76\x4c\x4b\x50\x36\x36\x3c\x29\ +\x29\x2d\x26\x28\x2e\x26\x28\x2d\x2a\x31\x35\x64\x72\x77\x3f\x4b\ +\x50\x17\x1b\x24\x05\x08\x0e\x57\x5c\x5c\xfe\xff\xff\xb9\xc3\xcc\ +\x9a\xa6\xb3\xa1\xad\xb8\xbc\xc8\xcf\xd0\xdd\xe2\x9a\xa4\xab\x4d\ +\x55\x5a\x39\x41\x49\x4f\x59\x63\x24\x19\x18\x04\x03\x03\x04\x04\ +\x04\x04\x03\x03\x04\x05\x05\x05\x06\x07\x07\x0b\x0e\x96\x9a\x9c\ +\xe5\xeb\xef\xe7\xec\xef\xdb\xe1\xe4\xbd\xc6\xcd\xc8\xd1\xd4\xd8\ +\xe0\xe6\xc6\xce\xd5\x85\x89\x8d\x44\x32\x2e\x1e\x08\x00\x1e\x09\ +\x02\x1e\x09\x01\x0f\x04\x01\x02\x01\x01\x03\x01\x01\x01\x01\x01\ +\x01\x01\x02\x00\x00\x02\x26\x0e\x05\x6e\x22\x00\x96\x2c\x00\x84\ +\x39\x0e\x41\x85\x86\x7a\xc5\xd4\xb9\xd5\xde\xc5\xd3\xdb\x00\x00\ +\x00\x53\x7c\x8c\x5f\x91\x9c\x5b\x84\x86\x41\x6a\x6b\x2c\x56\x55\ +\x29\x4c\x4a\x26\x3d\x40\x20\x34\x34\x20\x39\x38\x26\x45\x44\x24\ +\x3f\x3e\x28\x4e\x51\x31\x5c\x5a\x37\x5d\x6b\x4c\x79\x8f\x52\x76\ +\x8c\x54\x75\x8a\x4d\x71\x82\x3d\x5a\x6b\x34\x53\x60\x3c\x5b\x65\ +\x20\x2a\x27\x25\x3e\x36\x24\x3e\x36\x24\x3b\x33\x23\x37\x32\x25\ +\x38\x2d\x21\x34\x2c\x1b\x28\x22\x1d\x2a\x27\x1f\x32\x2b\x31\x59\ +\x55\x3d\x6c\x6f\x2d\x48\x43\x24\x38\x32\x29\x3d\x39\x20\x2e\x2a\ +\x1e\x2c\x27\x65\x69\x68\xcb\xd0\xd4\xd8\xdf\xdd\x14\x17\x15\x6e\ +\x66\x68\xff\xff\xff\xf5\xf7\xfc\xee\xf3\xf7\xdc\xdf\xdb\x76\x4b\ +\x32\x40\x20\x11\x26\x23\x1d\x22\x34\x2f\x2a\x43\x3f\x2d\x44\x43\ +\x31\x4d\x4d\x15\x1a\x1d\x24\x07\x01\x81\x1c\x00\xac\x40\x17\xaf\ +\x3b\x0e\xab\x46\x1e\xb7\x3d\x0a\x64\xb8\xc3\x39\xdc\xff\x7e\xdc\ +\xf4\xbd\xd1\xd5\x80\x82\x7e\x3f\x2c\x22\x19\x0d\x09\x07\x08\x07\ +\x07\x06\x05\x07\x05\x03\x07\x05\x03\x10\x0a\x0b\x9a\x63\x36\xd7\ +\x7a\x17\xd9\x73\x05\x9c\x96\x66\x3e\xb9\xc5\x80\xe0\xf1\xf1\xf6\ +\xf9\xe9\xef\xf2\xd7\xe0\xe4\x9d\xa4\xa2\x49\x30\x23\x3e\x20\x11\ +\x11\x0d\x09\x08\x07\x05\x06\x07\x06\x04\x08\x07\x11\x09\x06\xaa\ +\x43\x03\xb9\x59\x15\x8e\xdb\xe7\xfd\xfd\xff\xf6\xf9\xfd\xf0\xf4\ +\xf8\xe5\xeb\xed\xd2\xda\xdd\x9c\xa6\xa9\x5f\x5d\x59\x4d\x43\x3b\ +\x08\x0b\x0c\x05\x08\x0b\x01\x06\x08\x42\x3c\x37\xb4\xa8\x9a\xa7\ +\xaa\xa8\xba\xbe\xc1\xea\xf0\xf5\xc2\xca\xd1\xad\xb4\xbb\x9b\xa7\ +\xb0\x82\x90\x98\x5b\x66\x6a\x7c\x89\x8e\x5f\x6a\x6f\x16\x18\x1d\ +\x09\x0c\x10\x11\x15\x1a\xd7\xdd\xe0\xf8\xfc\xff\xf6\xf8\xfd\xef\ +\xf3\xf6\xe3\xe9\xed\xd0\xd9\xdd\xaa\xb3\xba\x5e\x66\x6c\x47\x4d\ +\x53\x51\x55\x5f\x22\x0f\x09\x08\x05\x03\x03\x04\x03\x05\x04\x04\ +\x06\x06\x05\x06\x06\x07\x05\x07\x06\x14\x17\x17\x8c\x8b\x8b\xe1\ +\xe1\xe2\xe4\xe8\xec\xbd\xc7\xce\xe2\xe9\xec\xde\xe4\xe7\xd2\xd8\ +\xdc\xb5\xbe\xc4\x89\x8e\x92\x49\x3d\x3b\x1b\x05\x00\x1e\x0a\x01\ +\x1b\x08\x02\x07\x03\x01\x02\x01\x01\x02\x02\x00\x01\x02\x01\x02\ +\x01\x01\x00\x00\x02\x06\x02\x02\x38\x16\x04\x74\x26\x00\x95\x34\ +\x00\x38\x83\x87\x49\xca\xe8\xcd\xdc\xe2\x00\x00\x00\x58\x80\x85\ +\x3d\x5b\x50\x47\x6f\x76\x48\x76\x82\x39\x6f\x6d\x2c\x55\x51\x23\ +\x3d\x3c\x24\x42\x42\x27\x4b\x4f\x24\x41\x3c\x26\x44\x42\x2b\x54\ +\x50\x2b\x57\x52\x37\x5e\x6c\x43\x6d\x7e\x50\x75\x8d\x53\x73\x89\ +\x52\x73\x86\x4a\x6e\x81\x36\x57\x61\x2c\x4b\x4a\x21\x30\x31\x26\ +\x40\x3b\x2b\x47\x41\x2e\x4e\x48\x2e\x4c\x47\x24\x36\x2e\x24\x36\ +\x30\x25\x38\x34\x1d\x2c\x25\x1d\x2b\x26\x2c\x4d\x46\x3a\x69\x6d\ +\x2a\x49\x47\x23\x36\x32\x2a\x3e\x39\x27\x3a\x35\x21\x31\x2d\x7b\ +\x80\x81\xdc\xe2\xe7\x9b\xa5\xa2\x08\x0a\x0c\x28\x26\x28\xbb\xb3\ +\xb8\xf7\xfc\xfd\xe7\xee\xee\x8c\x78\x64\x4f\x31\x26\x3e\x42\x3d\ +\x28\x41\x3f\x22\x36\x33\x1f\x31\x2f\x29\x3e\x3d\x11\x1c\x1c\x14\ +\x08\x06\x69\x14\x00\xa4\x2a\x01\xb1\x34\x01\xaa\x3f\x12\x67\x8a\ +\x88\x37\xb4\xc5\x85\xdf\xf0\xc6\xe8\xf0\xc4\xd6\xdb\x8b\x94\x92\ +\x4a\x45\x43\x19\x10\x11\x09\x09\x0c\x09\x0b\x0e\x08\x07\x07\x08\ +\x06\x03\x02\x00\x00\x60\x49\x3b\xcc\x6e\x12\xdb\x6f\x00\xd4\x78\ +\x0c\x8a\xb2\x99\x78\xea\xff\xda\xf3\xfa\xec\xf0\xf4\xe0\xe7\xeb\ +\xc1\xcb\xce\x69\x66\x62\x46\x2e\x24\x20\x15\x10\x08\x08\x06\x07\ +\x08\x06\x07\x07\x05\x02\x05\x06\x38\x1a\x09\xb5\x4d\x09\x60\x52\ +\x4c\x9d\xe1\xf0\xff\xfe\xff\xf5\xf8\xfc\xed\xf2\xf6\xe2\xe8\xeb\ +\xca\xd2\xd5\x85\x8d\x8f\x5c\x55\x4e\x27\x23\x1f\x05\x09\x0c\x04\ +\x09\x0b\x02\x08\x0a\x2c\x1c\x0c\xb6\x71\x1e\xa0\x85\x65\xd5\xd5\ +\xd8\xf2\xf6\xfc\xec\xf0\xf5\xde\xe6\xeb\xc4\xcf\xd6\x91\x9d\xa2\ +\x5c\x66\x6b\x75\x81\x86\x58\x5e\x60\x0f\x0f\x0e\x08\x09\x07\x0a\ +\x0b\x0c\x7a\x7f\x7e\xfa\xfe\xff\xf0\xf3\xf8\xeb\xef\xf4\xe4\xea\ +\xed\xd6\xdd\xe3\xb9\xc3\xca\x70\x79\x7f\x44\x4b\x50\x46\x43\x48\ +\x25\x0e\x06\x0c\x05\x02\x03\x04\x03\x04\x04\x04\x05\x05\x05\x05\ +\x05\x05\x04\x06\x05\x05\x07\x05\x14\x10\x0f\x75\x67\x62\xcc\xdb\ +\xe2\xda\xe0\xe5\xe4\xea\xed\xda\xe0\xe4\xd8\xdf\xe3\xc4\xce\xd3\ +\xae\xb7\xbd\x8e\x92\x97\x20\x04\x00\x1d\x09\x01\x1f\x0a\x02\x17\ +\x07\x02\x02\x01\x01\x02\x01\x00\x01\x01\x01\x01\x02\x01\x01\x02\ +\x01\x02\x01\x02\x00\x00\x02\x13\x07\x02\x4b\x18\x00\x4a\x69\x62\ +\x3b\xc7\xe5\xda\xe7\xeb\x00\x00\x00\x3d\x4e\x49\x24\x38\x36\x3f\ +\x72\x7c\x4f\x80\x83\x3c\x74\x74\x2e\x5e\x59\x20\x3e\x38\x28\x52\ +\x54\x2e\x5d\x5b\x27\x46\x40\x28\x4a\x43\x24\x44\x49\x2d\x5d\x5f\ +\x34\x57\x5c\x3f\x6c\x7f\x52\x7b\x92\x55\x76\x87\x4f\x73\x87\x48\ +\x71\x88\x3e\x5a\x60\x23\x36\x34\x2b\x41\x3d\x22\x39\x33\x2a\x4b\ +\x44\x2b\x4d\x45\x2c\x4e\x42\x26\x3c\x38\x21\x35\x30\x26\x35\x32\ +\x1a\x27\x1e\x1e\x2d\x26\x2c\x4d\x49\x38\x66\x67\x31\x56\x55\x26\ +\x40\x38\x28\x3f\x3f\x2c\x42\x3c\x1f\x2a\x26\x89\x8a\x8c\xe6\xeb\ +\xef\xa8\xb1\xb1\x0b\x11\x12\x1d\x1a\x17\x33\x2a\x2b\xb0\xa9\xaf\ +\xa0\x9f\x92\x4e\x54\x5b\x49\x5a\x5a\x32\x51\x50\x2e\x4b\x4c\x28\ +\x42\x42\x21\x36\x35\x11\x16\x15\x04\x0c\x13\x1f\x59\x75\x7d\x4d\ +\x3b\xad\x2f\x00\xb3\x33\x00\xb1\x35\x00\x92\x7c\x68\x5a\xe7\xff\ +\xc4\xea\xf3\xd5\xdd\xdd\x8e\x98\x97\x51\x5a\x64\x18\x12\x15\x0a\ +\x0c\x14\x09\x0a\x12\x08\x0b\x0f\x09\x0a\x08\x09\x06\x02\x27\x1b\ +\x19\xa3\x5c\x1d\xd6\x6d\x03\xdb\x6f\x00\xd9\x75\x0a\xda\xbb\x95\ +\xee\xfb\xff\xef\xf4\xf7\xe7\xed\xf1\xd8\xe1\xe5\x98\xa2\xa3\x4b\ +\x41\x39\x2b\x1c\x14\x0c\x0b\x07\x07\x07\x04\x06\x07\x06\x06\x05\ +\x05\x00\x03\x05\x65\x29\x04\xa9\x3f\x02\x30\x4a\x56\xc8\xef\xfa\ +\xff\xfe\xff\xf4\xf6\xfb\xec\xf0\xf3\xdf\xe5\xe7\xbe\xc7\xcb\x73\ +\x77\x76\x48\x3f\x37\x12\x13\x11\x04\x08\x09\x04\x09\x0a\x02\x08\ +\x09\x28\x1b\x0e\xb3\x62\x01\xb0\x79\x2b\x9f\xdd\xee\xf5\xf5\xfa\ +\xe9\xed\xf2\xdc\xe3\xe8\xc5\xcf\xd7\x93\xa0\xa6\x5f\x69\x6d\x72\ +\x7d\x82\x4b\x48\x45\x0a\x07\x03\x0a\x09\x07\x0a\x0b\x08\x2b\x2d\ +\x2a\xee\xf3\xf6\xf2\xf5\xfa\xee\xf1\xf6\xe7\xec\xef\xdb\xe2\xe7\ +\xc5\xcf\xd4\x8a\x93\x98\x49\x50\x55\x38\x30\x30\x1e\x09\x02\x13\ +\x06\x03\x03\x03\x04\x05\x04\x04\x05\x05\x05\x05\x06\x05\x08\x07\ +\x06\x09\x09\x07\x09\x0a\x08\x11\x09\x08\x42\x6a\x7e\xbc\xde\xed\ +\xe3\xe8\xeb\xde\xe4\xe8\xdc\xe2\xe6\xc8\xd0\xd4\xb9\xc4\xc9\xb5\ +\xba\xc0\x35\x09\x00\x23\x09\x01\x1d\x09\x01\x1f\x0a\x02\x13\x05\ +\x02\x01\x01\x01\x01\x01\x01\x01\x02\x01\x01\x02\x02\x02\x02\x01\ +\x01\x01\x01\x01\x02\x01\x05\x03\x02\x1e\x10\x09\x5d\x3c\x23\x5b\ +\xab\xb6\x00\x00\x00\x21\x32\x2d\x1e\x36\x31\x3f\x65\x6b\x4c\x75\ +\x82\x40\x78\x85\x36\x6a\x6a\x23\x42\x3d\x25\x48\x46\x2a\x4f\x4c\ +\x27\x49\x44\x24\x3e\x39\x2b\x4e\x49\x2b\x50\x47\x2d\x4f\x57\x3f\ +\x6b\x7e\x59\x85\x9e\x54\x78\x90\x55\x7c\x97\x4d\x76\x87\x30\x51\ +\x55\x20\x37\x34\x20\x31\x2a\x22\x39\x34\x26\x3f\x34\x27\x44\x3f\ +\x2c\x4a\x46\x2a\x41\x39\x25\x3b\x36\x1e\x28\x24\x1b\x26\x23\x1d\ +\x30\x29\x23\x3d\x34\x32\x57\x55\x30\x4f\x4f\x27\x3f\x39\x3a\x52\ +\x50\x2d\x41\x3c\x1a\x25\x1e\x98\x9c\x9e\xec\xef\xf4\xf8\xfc\xff\ +\x44\x4c\x4d\x17\x14\x14\x0c\x0d\x0d\x07\x06\x07\x40\x47\x4d\x35\ +\x45\x45\x2c\x45\x42\x2f\x4e\x4b\x2c\x41\x3e\x2a\x43\x40\x24\x2d\ +\x31\x25\x25\x28\x25\x2f\x37\x47\xbe\xe1\x38\xb8\xcf\x94\x46\x23\ +\xb1\x34\x02\xa1\x64\x45\x92\xe3\xf6\xef\xf4\xf8\xdb\xe2\xe3\x98\ +\xa1\xa0\x63\x67\x6c\x1b\x1a\x21\x0a\x0c\x16\x09\x0b\x15\x07\x09\ +\x10\x07\x09\x0f\x0a\x09\x08\x0c\x06\x02\x66\x40\x29\xce\x6e\x14\ +\xd9\x6c\x01\xda\x70\x01\xbb\x81\x30\x87\xde\xf3\xea\xf5\xfb\xee\ +\xf2\xf5\xe2\xe6\xe7\xb3\xaf\xa9\x4e\x39\x2f\x31\x23\x1d\x13\x10\ +\x0d\x09\x08\x06\x09\x0a\x07\x07\x07\x06\x07\x06\x03\x0a\x06\x06\ +\x8b\x5f\x46\x8e\x3b\x0e\x55\x25\x0a\xc8\x76\x40\xe8\xd8\xcf\xf3\ +\xf8\xfd\xea\xee\xf3\xd9\xe0\xe3\xad\xb6\xb8\x61\x5f\x5b\x2d\x25\ +\x21\x05\x0a\x0b\x04\x0a\x0a\x05\x08\x08\x04\x07\x08\x26\x1b\x0f\ +\xad\x65\x08\xd1\x78\x04\x78\xc7\xd8\xf7\xf7\xfb\xea\xee\xf2\xdb\ +\xe2\xe8\xc6\xd2\xd8\x98\xa5\xac\x5f\x68\x6c\x6e\x74\x77\x39\x2f\ +\x2a\x0a\x0a\x06\x09\x0a\x06\x0b\x0a\x08\x18\x19\x17\xa6\xa9\xa9\ +\xf6\xfa\xfd\xf0\xf3\xf8\xe9\xee\xf1\xe0\xe6\xea\xcd\xd7\xde\xa0\ +\xaa\xb2\x56\x5b\x60\x23\x14\x10\x1a\x08\x02\x16\x07\x02\x06\x05\ +\x05\x05\x06\x06\x06\x06\x05\x05\x06\x04\x08\x09\x07\x0a\x0a\x08\ +\x0a\x0a\x09\x08\x0c\x11\x0c\x09\x11\x50\x84\x9c\xcf\xe7\xf3\xe5\ +\xe9\xeb\xdb\xe2\xe5\xc9\xd2\xd6\xc5\xce\xd4\xc6\xc8\xcb\x4f\x0f\ +\x00\x36\x0f\x03\x1f\x0a\x03\x1e\x09\x01\x1e\x0a\x01\x09\x02\x02\ +\x01\x01\x01\x01\x01\x01\x01\x02\x01\x02\x01\x01\x03\x02\x01\x02\ +\x01\x02\x02\x02\x03\x02\x02\x03\x0b\x00\x00\x20\x4b\x54\x00\x00\ +\x00\x25\x3d\x45\x25\x3f\x3f\x30\x51\x58\x4a\x6e\x77\x4c\x7e\x8c\ +\x39\x68\x69\x28\x49\x4a\x28\x50\x52\x2e\x5a\x5d\x2a\x50\x50\x24\ +\x3a\x36\x23\x42\x42\x29\x55\x57\x2c\x5c\x5e\x3c\x66\x7b\x55\x7e\ +\x94\x58\x81\x94\x55\x80\x96\x4f\x7d\x92\x30\x52\x4e\x23\x3d\x34\ +\x1d\x29\x24\x27\x3d\x39\x2a\x46\x41\x32\x52\x4e\x32\x58\x50\x27\ +\x3f\x38\x28\x40\x39\x1e\x2c\x27\x1a\x27\x1e\x23\x37\x2d\x26\x3d\ +\x38\x32\x58\x56\x36\x53\x51\x29\x41\x40\x35\x50\x4f\x29\x3f\x38\ +\x2c\x3c\x39\xa3\xa8\xaa\xf2\xf5\xfa\xf9\xfa\xfd\xe0\xe4\xe7\x39\ +\x3e\x40\x0b\x0e\x10\x22\x28\x2c\x2c\x3a\x39\x23\x35\x35\x25\x37\ +\x33\x33\x56\x58\x2f\x51\x54\x5e\x6b\x6b\x2a\x2c\x2f\x1d\x1f\x1e\ +\x4d\x4b\x52\xe1\xf6\xfc\x48\xe5\xff\x2d\xc5\xdd\x76\x73\x67\x51\ +\xdd\xfa\x7b\xe1\xf6\xe2\xe6\xe8\xa3\xac\xac\x53\x58\x56\x22\x1e\ +\x1f\x0c\x0d\x14\x0c\x0d\x12\x09\x0c\x12\x08\x0a\x12\x08\x08\x0e\ +\x09\x0a\x09\x2b\x1b\x10\xa7\x5c\x20\xd9\x6c\x00\xc9\x83\x2d\xaa\ +\x82\x3d\x84\xb5\xa5\x94\xed\xff\xf7\xf9\xfd\xd8\xcb\xbd\x9d\x60\ +\x31\x54\x1c\x00\x38\x24\x1b\x24\x19\x11\x0a\x0a\x07\x09\x0b\x08\ +\x09\x09\x07\x08\x08\x06\x06\x06\x03\x1f\x14\x0d\x9a\x5b\x39\x83\ +\x32\x08\x85\x32\x02\xc6\x59\x11\xcc\xbc\xac\xec\xf7\xfe\xe8\xed\ +\xf0\xd2\xd9\xde\x96\x9e\x9f\x46\x41\x3c\x18\x15\x14\x06\x09\x0c\ +\x06\x0a\x0c\x06\x07\x06\x05\x06\x05\x20\x15\x0a\xa8\x61\x07\xc0\ +\x86\x2f\x4c\xb8\xd1\xee\xf7\xfe\xe9\xee\xf3\xd3\xdb\xe2\xce\xd7\ +\xde\xa3\xab\xb4\x5b\x63\x66\x62\x5e\x5d\x2a\x1b\x13\x0e\x0f\x0a\ +\x0b\x0b\x07\x0a\x0a\x06\x09\x0b\x08\x4d\x46\x40\xe7\xe4\xe3\xf1\ +\xf5\xfa\xec\xef\xf4\xe4\xea\xed\xd4\xdc\xe2\xb3\xbe\xc6\x5c\x56\ +\x56\x1e\x0a\x04\x1b\x09\x03\x1a\x07\x00\x0c\x06\x03\x06\x06\x05\ +\x06\x06\x05\x07\x06\x04\x0a\x07\x05\x08\x09\x07\x0c\x0b\x08\x0a\ +\x0a\x09\x07\x0b\x14\x02\x0c\x24\x41\x8b\xae\xe5\xec\xf0\xe4\xe8\ +\xec\xd5\xdc\xe1\xcc\xd6\xda\xd5\xda\xdf\x74\x43\x33\x49\x11\x00\ +\x2a\x0b\x04\x1d\x09\x02\x1f\x0a\x01\x18\x08\x01\x04\x01\x02\x01\ +\x01\x01\x02\x02\x00\x00\x01\x01\x01\x02\x02\x01\x02\x01\x01\x02\ +\x01\x02\x02\x02\x01\x03\x03\x03\x00\x00\x00\x00\x00\x39\x58\x5d\ +\x24\x39\x3c\x2f\x51\x5a\x32\x51\x57\x4a\x7b\x8b\x3c\x71\x78\x32\ +\x5e\x64\x2a\x53\x54\x38\x5d\x62\x31\x5c\x56\x27\x46\x40\x22\x3f\ +\x3e\x2c\x5c\x5e\x2a\x56\x57\x37\x67\x73\x4d\x78\x91\x57\x84\x9a\ +\x4f\x7f\x92\x49\x74\x7c\x2c\x4a\x44\x21\x37\x31\x20\x30\x2c\x23\ +\x39\x33\x2a\x45\x3f\x30\x51\x4d\x2d\x50\x4a\x2a\x43\x3d\x29\x43\ +\x3d\x1f\x33\x2e\x1b\x28\x20\x1e\x2c\x27\x27\x3f\x3a\x30\x55\x51\ +\x2e\x4d\x45\x35\x55\x55\x3a\x58\x59\x26\x3b\x37\x3e\x4d\x4b\xb0\ +\xb5\xb8\xf6\xf8\xfd\xf5\xf8\xfc\xef\xf2\xf6\xb9\xc3\xc2\x34\x3f\ +\x40\x20\x2c\x2d\x23\x33\x32\x29\x3e\x3b\x26\x32\x2f\x33\x51\x50\ +\x59\x7b\x81\xad\xb4\xb6\x30\x32\x36\x23\x24\x26\x68\x6e\x73\xef\ +\xeb\xef\xea\xfa\xfd\x74\xe8\xfe\x37\xe6\xff\x88\xe6\xf9\xec\xed\ +\xec\xaf\xba\xb9\x60\x68\x67\x1b\x21\x22\x0c\x0f\x11\x0e\x0f\x0d\ +\x0b\x0d\x0e\x09\x0c\x0d\x08\x0a\x11\x08\x09\x0f\x0e\x0c\x0a\x65\ +\x3d\x20\xd4\x75\x1b\xe2\x63\x00\x8b\xbc\xa9\x37\xe2\xff\x5c\xe1\ +\xf9\xed\xf6\xfb\xeb\xef\xef\xa6\x64\x2a\x74\x2a\x00\x3c\x23\x17\ +\x2c\x20\x1c\x0b\x0c\x09\x0a\x0b\x08\x08\x0a\x07\x0a\x0a\x07\x09\ +\x09\x06\x05\x06\x03\x3b\x26\x1a\xa3\x4c\x1c\x3a\x16\x08\xaa\x3e\ +\x00\xb2\x63\x28\x7f\xd7\xe6\xd4\xee\xf6\xe4\xe8\xec\xc9\xd0\xd3\ +\x7f\x83\x83\x38\x31\x2a\x0a\x0c\x0e\x08\x0d\x17\x09\x0c\x14\x07\ +\x0a\x0c\x06\x0a\x0c\x1a\x17\x17\xa1\x62\x14\xb8\x8b\x40\x3c\xa3\ +\xaf\xd6\xd5\xc8\xe3\xdb\xd5\xdd\xe3\xea\xd7\xe0\xe6\xa5\xae\xb5\ +\x58\x5f\x60\x4a\x38\x30\x30\x1d\x15\x14\x11\x0b\x0b\x0c\x05\x0b\ +\x0b\x06\x0a\x0b\x08\x1d\x19\x13\x9c\xa0\x9f\xed\xf7\xfd\xee\xf1\ +\xf6\xe7\xec\xef\xdb\xe1\xe5\xc2\xcc\xd3\x65\x59\x55\x21\x0b\x02\ +\x1b\x08\x02\x19\x07\x01\x0e\x07\x04\x05\x05\x05\x06\x05\x05\x06\ +\x07\x05\x07\x06\x06\x09\x09\x07\x0a\x09\x07\x07\x0b\x13\x05\x0d\ +\x21\x08\x13\x26\x12\x1f\x32\x88\x96\x9f\xe0\xe9\xee\xe2\xe6\xeb\ +\xd9\xe0\xe4\xd6\xdd\xe1\xc0\xbe\xc2\x68\x3c\x2e\x3a\x20\x16\x1e\ +\x12\x0e\x1d\x09\x01\x1e\x0a\x02\x0f\x05\x02\x02\x01\x02\x01\x01\ +\x01\x01\x01\x01\x02\x01\x01\x01\x01\x01\x01\x02\x01\x01\x01\x01\ +\x01\x02\x02\x03\x02\x02\x00\x00\x00\x2e\x46\x45\x24\x3a\x43\x43\ +\x63\x6e\x31\x52\x5c\x50\x79\x82\x43\x7a\x84\x36\x67\x72\x2f\x59\ +\x62\x3c\x5d\x68\x35\x59\x5a\x27\x47\x43\x1f\x37\x37\x2e\x5b\x5d\ +\x35\x66\x71\x2f\x5c\x62\x4b\x73\x86\x59\x83\x95\x51\x81\x8e\x39\ +\x57\x53\x2b\x48\x46\x28\x41\x3a\x22\x34\x2c\x1f\x33\x2e\x23\x38\ +\x31\x27\x3e\x39\x34\x5d\x57\x2c\x4a\x44\x27\x3a\x34\x23\x33\x2f\ +\x1f\x31\x2a\x1b\x2a\x27\x25\x39\x36\x31\x56\x59\x31\x55\x56\x3e\ +\x61\x64\x34\x53\x53\x2b\x43\x3f\x45\x54\x53\xbd\xc1\xc5\xf5\xf8\ +\xfc\xed\xf2\xf5\xd0\xd6\xd5\x73\x7a\x75\x3a\x49\x46\x2f\x44\x43\ +\x2a\x3f\x3a\x28\x3e\x3c\x2a\x36\x32\x28\x3e\x3e\x5b\x73\x77\xa7\ +\xb3\xb3\x36\x39\x3d\x57\x5c\x5e\x71\x74\x78\xf6\xf5\xfa\xfe\xfe\ +\xfe\xfd\xfc\xfe\xd2\xf2\xfb\xeb\xef\xf1\xbc\xc5\xc5\x74\x7d\x7c\ +\x36\x39\x35\x12\x13\x12\x11\x11\x0c\x0e\x0f\x0c\x0c\x0c\x0e\x09\ +\x0b\x0c\x08\x0a\x10\x09\x09\x12\x21\x11\x0b\xb2\x55\x0c\xbb\x87\ +\x45\x8d\x9d\x7a\x8e\xde\xe6\xc9\xf2\xfc\xd4\xf3\xfb\xf3\xf5\xf9\ +\xbe\x9e\x81\x85\x41\x0f\x4d\x26\x11\x35\x2f\x30\x0e\x0c\x07\x0a\ +\x0c\x0b\x0a\x0b\x08\x09\x0a\x07\x09\x0a\x06\x07\x08\x05\x03\x04\ +\x01\x57\x35\x25\x8d\x4c\x2a\x65\x28\x07\xa3\x5b\x1e\x85\x9c\x8f\ +\x89\xe9\xfb\xe9\xf0\xf5\xe0\xe5\xe8\xba\xc2\xc6\x60\x60\x5f\x2f\ +\x26\x1f\x06\x09\x07\x0a\x0e\x15\x09\x0d\x19\x09\x0b\x11\x07\x0c\ +\x11\x1b\x19\x19\x9b\x6d\x37\xca\x7e\x19\xc6\x7a\x1a\xd2\x7a\x24\ +\xbd\x91\x5e\xc3\xdb\xe7\xcf\xd9\xe0\xa0\xa9\xaf\x56\x60\x62\x45\ +\x33\x2a\x2e\x1c\x15\x10\x0f\x09\x0b\x0d\x06\x0d\x0e\x08\x0c\x10\ +\x12\x0a\x0e\x12\x47\x62\x6c\xd7\xe7\xee\xf0\xf3\xf8\xea\xee\xf0\ +\xe1\xe5\xea\xc7\xd0\xd7\x8b\x90\x93\x2a\x19\x13\x1b\x07\x01\x19\ +\x08\x01\x0f\x08\x05\x04\x04\x04\x04\x05\x05\x06\x06\x06\x07\x08\ +\x06\x07\x07\x05\x07\x0a\x0a\x05\x0c\x19\x05\x0e\x24\x08\x13\x26\ +\x08\x13\x26\x15\x1b\x24\x78\x92\x9f\xdc\xea\xf0\xe4\xe8\xeb\xdb\ +\xe2\xe6\xd3\xda\xe0\xae\xaa\xab\x82\x84\x87\x36\x2b\x29\x1c\x08\ +\x03\x1d\x09\x01\x1b\x09\x02\x08\x05\x05\x01\x02\x02\x00\x01\x00\ +\x01\x00\x00\x01\x00\x00\x01\x01\x01\x01\x01\x01\x01\x02\x02\x03\ +\x02\x02\x00\x00\x00\x39\x53\x50\x2a\x43\x49\x48\x65\x6c\x39\x54\ +\x60\x3a\x53\x52\x3c\x66\x75\x39\x6e\x80\x4b\x77\x8d\x4b\x6f\x81\ +\x43\x67\x6a\x27\x4e\x48\x1e\x36\x32\x26\x49\x45\x2f\x5b\x61\x32\ +\x59\x5c\x33\x55\x5e\x54\x7d\x92\x4b\x71\x7e\x26\x3b\x38\x27\x42\ +\x3f\x28\x42\x3a\x22\x34\x30\x21\x33\x30\x1e\x2f\x29\x22\x38\x37\ +\x2d\x50\x4b\x2e\x4c\x47\x25\x36\x33\x1b\x29\x24\x25\x38\x32\x1d\ +\x2d\x29\x22\x37\x34\x2c\x4a\x4a\x35\x5a\x57\x3d\x62\x65\x3b\x5b\ +\x59\x30\x4a\x4d\x50\x5e\x5e\xcc\xcf\xd5\xe5\xe8\xec\xd9\xe2\xe3\ +\x6a\x73\x6e\x2f\x3d\x3a\x35\x4c\x4f\x2e\x49\x48\x26\x39\x33\x28\ +\x3a\x38\x26\x33\x32\x2a\x42\x45\x4b\x66\x6f\x9a\xa6\xa4\x5b\x59\ +\x5b\x7c\x81\x83\x4a\x4b\x4d\xe5\xe3\xe4\xfd\xff\xff\xf7\xf8\xfd\ +\xf0\xf2\xf4\xc7\xd1\xd1\x79\x82\x84\x3e\x4b\x57\x13\x19\x1b\x12\ +\x13\x10\x11\x12\x0c\x10\x0f\x0b\x0e\x0d\x0c\x0a\x0c\x0b\x07\x0b\ +\x11\x0a\x09\x13\x65\x2a\x02\xd2\x60\x00\xcb\x77\x21\x43\xc2\xca\ +\xb8\xf2\xfd\xfa\xfa\xfe\xf3\xf6\xfa\xea\xef\xf3\x91\xb4\xc0\x3b\ +\x38\x2d\x51\x4b\x4d\x18\x19\x18\x0b\x0c\x09\x0b\x0d\x09\x0a\x0c\ +\x08\x0a\x0b\x09\x06\x06\x05\x06\x06\x04\x0c\x0d\x0c\x6c\x45\x30\ +\x84\x3e\x1b\x6b\x27\x03\xb3\x8e\x6c\x29\xd6\xf7\x99\xe6\xf6\xf0\ +\xf0\xf2\xda\xe0\xe4\xa4\xac\xad\x4d\x47\x41\x22\x1b\x12\x08\x0b\ +\x06\x08\x0c\x0e\x08\x0c\x15\x08\x0b\x0e\x08\x07\x07\x1a\x14\x11\ +\x97\x6f\x46\xcc\x81\x1b\xd2\x72\x01\xcf\x67\x00\x8d\x74\x45\x67\ +\xba\xdd\xc4\xd2\xdb\x9f\xa9\xaf\x56\x5f\x62\x49\x3d\x38\x26\x18\ +\x13\x0b\x0e\x0d\x0b\x0e\x08\x0d\x12\x19\x0c\x18\x28\x0b\x16\x27\ +\x14\x39\x53\xaa\xcd\xdb\xf0\xf4\xf8\xec\xf0\xf3\xe4\xe9\xed\xcf\ +\xd8\xde\xa5\xb1\xb8\x48\x45\x44\x1b\x08\x03\x1a\x07\x00\x15\x07\ +\x03\x06\x06\x05\x04\x05\x04\x06\x07\x05\x08\x08\x07\x08\x0b\x0d\ +\x04\x0b\x17\x03\x0b\x1e\x03\x0b\x20\x05\x0f\x27\x09\x13\x26\x05\ +\x08\x0e\x0d\x16\x1c\x73\x9a\xad\xe1\xea\xee\xe0\xe7\xeb\xd9\xe0\ +\xe6\xce\xd5\xdb\xbf\xcb\xd2\x59\x3f\x3a\x2c\x0c\x04\x19\x07\x02\ +\x1d\x09\x03\x0f\x06\x04\x03\x05\x0b\x02\x01\x02\x00\x00\x01\x01\ +\x01\x01\x02\x01\x01\x02\x02\x02\x02\x02\x02\x02\x01\x02\x00\x00\ +\x00\x34\x4f\x54\x26\x46\x4f\x2f\x48\x4c\x2d\x45\x56\x3a\x52\x58\ +\x36\x5d\x6a\x47\x78\x8a\x58\x7b\x88\x54\x7a\x8f\x46\x70\x7a\x2e\ +\x54\x4f\x23\x40\x3c\x25\x48\x48\x2c\x57\x5c\x2e\x5a\x63\x2f\x4f\ +\x5b\x4e\x7a\x92\x46\x76\x82\x28\x3f\x40\x3d\x5f\x69\x29\x4a\x4c\ +\x23\x39\x39\x23\x38\x35\x1c\x2d\x28\x31\x4f\x4d\x2c\x4d\x4b\x31\ +\x51\x4a\x29\x41\x3f\x22\x36\x33\x1f\x34\x33\x25\x3a\x39\x2a\x43\ +\x42\x34\x4e\x50\x39\x5c\x6b\x42\x64\x6e\x3a\x52\x54\x39\x53\x55\ +\x5b\x68\x68\xb9\xc2\xc2\x7f\x84\x87\x6b\x6c\x69\x34\x44\x42\x2f\ +\x46\x49\x33\x47\x48\x2f\x4b\x4b\x27\x38\x33\x21\x2e\x2b\x21\x2f\ +\x2a\x26\x38\x37\x47\x60\x66\x96\xa4\xa2\x66\x65\x68\x7f\x85\x86\ +\x27\x2a\x2d\x91\x8c\x90\xfb\xfb\xff\xf1\xf5\xf8\xd4\xdc\xdb\x7c\ +\x85\x87\x4c\x58\x5f\x11\x28\x40\x0f\x1f\x31\x10\x18\x17\x13\x14\ +\x0d\x11\x10\x0c\x0e\x0e\x0c\x0b\x0c\x0b\x0a\x0a\x0f\x09\x18\x2b\ +\x9b\x69\x3a\xd6\x61\x00\xcc\x8d\x44\xe3\xe9\xe4\xf5\xfa\xfe\xf3\ +\xf6\xfc\xed\xf2\xf7\xd0\xce\xc8\x63\x5d\x4d\x38\x29\x1d\x2b\x23\ +\x1f\x0b\x0d\x0a\x0b\x0c\x0a\x0b\x0b\x08\x0a\x0b\x07\x0a\x0b\x07\ +\x09\x09\x05\x08\x09\x06\x18\x17\x14\x7f\x57\x42\x6d\x33\x14\x95\ +\x3a\x01\xa9\x6a\x39\xa8\xf4\xff\xef\xf4\xf8\xe7\xeb\xee\xd3\xdb\ +\xdd\x7e\x83\x83\x4b\x3d\x36\x0d\x0a\x06\x0a\x0b\x08\x0a\x0a\x07\ +\x09\x07\x06\x0a\x07\x06\x09\x04\x03\x15\x0f\x0c\x92\x6d\x46\xcc\ +\x80\x1e\xd1\x74\x02\xd0\x67\x00\x91\x71\x3c\x69\xb9\xdb\xc7\xd6\ +\xde\x9d\xa8\xaf\x55\x5d\x60\x4d\x44\x3f\x26\x18\x12\x09\x0d\x0e\ +\x0b\x11\x17\x0b\x17\x2b\x0b\x1a\x33\x0b\x19\x31\x03\x13\x26\x6d\ +\x9f\xb4\xea\xf1\xf8\xed\xf1\xf5\xe7\xec\xf0\xd9\xe1\xe6\xb8\xc4\ +\xcc\x5b\x52\x51\x1b\x09\x02\x1b\x07\x00\x17\x07\x02\x09\x06\x05\ +\x04\x07\x05\x05\x08\x05\x09\x09\x09\x06\x0c\x19\x02\x0b\x1f\x02\ +\x0a\x1e\x03\x0c\x1f\x05\x10\x23\x08\x12\x26\x05\x08\x10\x03\x02\ +\x01\x02\x0d\x13\xa0\xb8\xc2\xe6\xea\xec\xe1\xe7\xea\xd9\xdf\xe4\ +\xca\xd4\xda\xab\xae\xb1\x43\x1a\x10\x21\x09\x03\x12\x0f\x10\x15\ +\x0e\x10\x08\x0c\x15\x02\x03\x05\x01\x01\x00\x01\x02\x02\x02\x01\ +\x01\x02\x01\x02\x02\x02\x02\x02\x02\x02\x00\x00\x00\x29\x45\x44\ +\x43\x59\x4b\x28\x3a\x42\x36\x53\x65\x4e\x65\x72\x3c\x54\x61\x4f\ +\x6f\x84\x5f\x72\x7a\x5a\x7b\x84\x54\x7d\x87\x36\x5e\x60\x25\x42\ +\x40\x23\x3d\x38\x2d\x56\x61\x42\x6a\x78\x32\x53\x58\x43\x6d\x82\ +\x3e\x61\x62\x28\x3a\x3b\x36\x53\x56\x42\x69\x6d\x28\x42\x3a\x23\ +\x38\x31\x1c\x27\x20\x26\x3c\x3b\x33\x5a\x58\x2b\x49\x4b\x2d\x4b\ +\x49\x26\x42\x3e\x2b\x49\x48\x22\x38\x35\x2a\x3f\x39\x38\x50\x50\ +\x71\x8a\x92\x94\xa1\xa4\x40\x58\x5a\x35\x4c\x4a\x61\x6f\x6e\xa6\ +\xac\xac\x51\x64\x64\x3e\x5c\x63\x2c\x41\x40\x30\x48\x45\x2e\x45\ +\x42\x2d\x42\x43\x28\x3d\x3c\x20\x31\x2d\x20\x31\x2f\x28\x3a\x3a\ +\x44\x5a\x62\xa3\xb3\xb5\x96\x9a\x9e\x88\x91\x92\x22\x2a\x2c\x30\ +\x2e\x31\xab\xa5\xa9\xd5\xdb\xdb\x7e\x87\x84\x41\x4a\x49\x2e\x49\ +\x4a\x21\x3d\x4c\x0f\x22\x38\x13\x17\x15\x12\x15\x0d\x13\x10\x0c\ +\x10\x0f\x0b\x0d\x0d\x0a\x08\x07\x05\x30\x6a\x87\x3e\xbb\xd1\xbc\ +\x76\x2b\x79\xbb\xad\xc4\xf7\xff\xf7\xf9\xfe\xf0\xf4\xf9\xe0\xe3\ +\xe2\x9e\x79\x5a\x50\x23\x07\x34\x27\x1e\x11\x11\x0b\x0c\x0d\x0a\ +\x0b\x0d\x0b\x0d\x0e\x0c\x0a\x0c\x09\x0a\x0b\x07\x0c\x0c\x08\x09\ +\x09\x06\x25\x1f\x1a\x89\x52\x37\x57\x25\x0d\xb8\x48\x01\xbe\x6e\ +\x3b\xe7\xfe\xff\xee\xf0\xf4\xe5\xea\xee\xc6\xcf\xd1\x5d\x5f\x5e\ +\x37\x24\x1d\x09\x08\x05\x0a\x0a\x06\x08\x08\x07\x09\x08\x06\x08\ +\x05\x04\x08\x07\x06\x0a\x09\x0b\x88\x4e\x09\xce\x8d\x37\xd2\x73\ +\x03\xab\x7c\x39\x39\xa1\xc0\x56\xba\xe1\xc5\xd4\xdc\x9a\xa5\xab\ +\x53\x56\x59\x40\x2d\x24\x26\x19\x14\x07\x0b\x10\x09\x12\x25\x09\ +\x16\x2f\x08\x12\x29\x0a\x13\x24\x06\x0b\x13\x53\x58\x59\xe4\xe8\ +\xed\xef\xf3\xf6\xe9\xee\xf1\xe0\xe7\xec\xc7\xcd\xd3\x54\x32\x27\ +\x20\x09\x02\x1a\x07\x00\x18\x08\x02\x0d\x07\x05\x08\x08\x06\x08\ +\x08\x05\x07\x0a\x10\x04\x0d\x1f\x06\x0e\x21\x06\x0f\x23\x07\x0f\ +\x22\x07\x0f\x24\x07\x13\x27\x05\x09\x15\x02\x01\x01\x01\x02\x00\ +\x15\x1d\x21\xc2\xcb\xd0\xe5\xeb\xee\xe0\xe6\xe9\xd8\xde\xe2\xc8\ +\xd2\xd9\x90\x8a\x8b\x33\x12\x0b\x1b\x2d\x39\x15\x1a\x25\x0a\x0a\ +\x11\x05\x07\x0d\x01\x02\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\ +\x01\x01\x02\x02\x02\x01\x00\x00\x00\x25\x46\x45\x1e\x2e\x28\x1e\ +\x31\x31\x35\x4e\x4a\x4d\x67\x71\x4c\x65\x75\x4d\x64\x70\x55\x61\ +\x60\x4f\x61\x69\x53\x70\x77\x3b\x61\x63\x26\x44\x42\x20\x35\x34\ +\x2b\x51\x61\x42\x6c\x83\x3b\x61\x66\x36\x5c\x66\x2b\x43\x46\x2b\ +\x41\x48\x35\x50\x5f\x39\x57\x59\x29\x43\x3f\x26\x3d\x3b\x1c\x27\ +\x23\x22\x37\x36\x39\x5d\x5c\x34\x5d\x5c\x30\x52\x50\x29\x4a\x47\ +\x34\x50\x53\x2a\x48\x49\x28\x42\x3d\x31\x4c\x49\x48\x61\x5a\x57\ +\x6a\x6a\x47\x64\x6c\x32\x4d\x4c\x44\x56\x57\x47\x59\x59\x3b\x59\ +\x5d\x57\x74\x80\x34\x4c\x4c\x35\x4d\x4d\x31\x4c\x49\x2c\x45\x47\ +\x2c\x47\x47\x1f\x31\x2a\x21\x30\x2d\x2e\x42\x43\x47\x5b\x65\xb0\ +\xbe\xc4\xbf\xc4\xc8\xb4\xbd\xbd\x16\x1e\x1e\x17\x16\x15\x19\x16\ +\x16\x43\x41\x41\x2d\x34\x33\x2b\x44\x3f\x29\x44\x40\x30\x50\x54\ +\x1e\x3d\x64\x11\x29\x40\x14\x1a\x1b\x13\x13\x0e\x12\x12\x0a\x0e\ +\x0e\x0b\x01\x00\x00\xd3\xda\xdf\x5b\xdb\xf6\x33\xd4\xf0\x93\xe9\ +\xf6\xf2\xfa\xfe\xf4\xf7\xfb\xea\xef\xf3\xbd\xaa\x96\x60\x24\x00\ +\x56\x49\x44\x27\x29\x23\x10\x13\x0d\x0e\x0f\x0b\x0f\x10\x0d\x0c\ +\x0e\x09\x0a\x0c\x09\x09\x0b\x07\x09\x0a\x06\x0b\x0b\x07\x32\x22\ +\x18\x88\x47\x26\x7a\x35\x0a\xc3\x4a\x02\x9a\x96\x80\x82\xe7\xfd\ +\xf5\xf3\xf5\xe4\xea\xec\xa4\xab\xac\x52\x4f\x49\x16\x09\x01\x0a\ +\x0b\x07\x0a\x0a\x06\x08\x08\x06\x07\x08\x07\x08\x06\x05\x07\x07\ +\x06\x14\x11\x11\x8e\x5a\x25\xcc\x94\x4f\xd1\x72\x01\xc4\x6a\x0f\ +\x69\xaa\xb1\xad\xdd\xed\xd3\xdc\xe2\x94\x9d\xa4\x39\x2d\x25\x41\ +\x30\x2a\x26\x19\x16\x06\x09\x0b\x07\x11\x20\x08\x13\x26\x05\x0a\ +\x11\x08\x0b\x10\x0a\x0c\x15\x0a\x0d\x13\xb4\xc6\xce\xf1\xf4\xf8\ +\xed\xf0\xf4\xea\xf1\xf7\xb3\xa0\x99\x5c\x25\x0d\x26\x0b\x01\x1a\ +\x07\x01\x18\x07\x02\x0d\x08\x06\x07\x07\x07\x06\x07\x07\x03\x06\ +\x07\x05\x0e\x1d\x05\x0f\x23\x06\x0f\x23\x05\x10\x22\x05\x11\x23\ +\x07\x13\x29\x05\x0e\x1c\x02\x01\x01\x03\x03\x03\x01\x01\x00\x23\ +\x28\x2d\xc3\xcb\xcd\xea\xef\xf2\xe0\xe6\xea\xd6\xdc\xe2\xc3\xcf\ +\xd6\x82\x81\x83\x59\x62\x69\x21\x22\x2a\x0e\x09\x0f\x08\x0a\x14\ +\x03\x03\x05\x00\x02\x01\x01\x01\x02\x02\x02\x02\x00\x01\x00\x06\ +\x0b\x0f\x00\x00\x00\x48\x66\x64\x1f\x3e\x40\x22\x3d\x40\x32\x51\ +\x5a\x50\x63\x6c\x58\x72\x7c\x51\x6c\x7a\x4d\x5c\x67\x46\x5c\x69\ +\x51\x69\x72\x3f\x65\x6d\x2d\x54\x57\x29\x47\x4d\x30\x56\x6a\x54\ +\x7d\x96\x43\x68\x75\x2a\x40\x3d\x27\x3a\x3b\x2d\x45\x4b\x4d\x74\ +\x87\x3a\x5d\x5f\x29\x42\x3e\x28\x41\x44\x1b\x2e\x2c\x26\x3d\x3f\ +\x3c\x5b\x60\x37\x5b\x5f\x34\x56\x5c\x30\x55\x5b\x3f\x60\x6c\x30\ +\x55\x59\x26\x40\x3d\x3a\x55\x56\x49\x68\x70\x4d\x63\x6c\x49\x5f\ +\x68\x3b\x5d\x63\x34\x4f\x51\x31\x4a\x4a\x3e\x5f\x67\x55\x72\x7d\ +\x42\x5f\x64\x37\x51\x4f\x30\x4a\x48\x2d\x47\x47\x2f\x4c\x4d\x20\ +\x33\x2f\x26\x39\x39\x30\x46\x4d\x4d\x5c\x63\xb2\xbd\xc1\xd4\xda\ +\xde\xf7\xfa\xfb\x66\x6f\x70\x13\x17\x17\x0b\x0d\x0e\x10\x1d\x1d\ +\x2c\x4a\x48\x2f\x4f\x4e\x2b\x47\x45\x31\x55\x52\x32\x53\x65\x25\ +\x4b\x79\x2c\x39\x39\x22\x2a\x28\x18\x1b\x11\x13\x14\x10\x0d\x0f\ +\x11\xe0\xe4\xeb\xee\xf9\xfd\xa2\xf0\xfd\xdd\xf8\xfd\xf9\xf9\xfd\ +\xef\xf4\xf8\xdf\xe6\xe9\x83\x76\x64\x47\x42\x42\x40\x42\x43\x12\ +\x15\x13\x0f\x12\x0d\x0f\x12\x0c\x0e\x10\x0b\x0d\x0f\x0b\x0b\x0c\ +\x09\x0b\x0c\x08\x0a\x0b\x06\x0a\x0a\x07\x41\x36\x2d\x77\x48\x2e\ +\x88\x41\x18\x7a\x98\x8b\x52\xc4\xd3\xb3\xeb\xf9\xf2\xf2\xf5\xd8\ +\xe0\xe1\x77\x7d\x7c\x42\x3a\x36\x09\x05\x02\x07\x08\x06\x08\x08\ +\x05\x06\x06\x03\x05\x06\x04\x06\x07\x05\x07\x07\x07\x0f\x0e\x11\ +\x7c\x4f\x20\xc4\x8b\x3f\xd0\x71\x01\xce\x64\x00\xb5\x86\x4a\xbd\ +\xdd\xea\xd3\xde\xe5\x82\x7d\x79\x32\x16\x02\x48\x37\x2e\x26\x18\ +\x15\x05\x0a\x0e\x08\x12\x21\x0a\x16\x2b\x08\x0f\x19\x09\x0c\x12\ +\x0b\x0d\x15\x06\x09\x11\x42\x62\x6f\xf0\xf7\xfb\xef\xf2\xf7\xee\ +\xf4\xfa\xb2\x98\x8a\x6a\x28\x09\x31\x0d\x00\x1a\x08\x03\x1b\x08\ +\x01\x11\x08\x05\x06\x07\x07\x04\x06\x06\x07\x0a\x0e\x05\x0e\x20\ +\x06\x0f\x22\x06\x10\x23\x07\x11\x25\x06\x12\x24\x08\x14\x28\x06\ +\x12\x25\x02\x05\x0a\x02\x03\x02\x03\x03\x03\x04\x03\x04\x34\x37\ +\x37\xbf\xc4\xc7\xec\xf0\xf5\xdf\xe6\xe9\xd0\xd9\xdf\xbf\xc9\xd0\ +\x8c\x95\x9c\x43\x41\x45\x11\x0a\x11\x0a\x0b\x18\x03\x05\x09\x03\ +\x05\x05\x01\x01\x02\x01\x01\x01\x02\x03\x04\x0a\x15\x22\x00\x00\ +\x00\x3f\x57\x5a\x3d\x64\x66\x32\x57\x5e\x32\x4a\x4e\x38\x4b\x54\ +\x4c\x63\x71\x50\x6e\x7d\x4b\x6b\x7e\x4e\x69\x7d\x48\x5c\x6a\x44\ +\x5f\x6c\x33\x5a\x61\x32\x57\x60\x44\x6e\x87\x58\x81\x99\x50\x79\ +\x89\x2a\x42\x42\x25\x32\x33\x25\x39\x3f\x54\x78\x85\x45\x68\x6b\ +\x27\x3f\x3c\x28\x40\x41\x2a\x42\x43\x2d\x43\x4a\x44\x69\x7f\x47\ +\x6d\x7d\x3a\x60\x6d\x3c\x65\x7a\x41\x65\x72\x38\x5d\x68\x29\x47\ +\x46\x3a\x54\x57\x50\x68\x70\x4f\x6a\x74\x6e\x86\x90\x51\x6f\x74\ +\x39\x59\x5c\x36\x53\x55\x46\x62\x6c\x59\x72\x7b\x47\x60\x5f\x33\ +\x57\x59\x2b\x46\x44\x2a\x40\x40\x30\x4c\x4d\x25\x38\x36\x2d\x40\ +\x41\x3b\x51\x59\x55\x65\x6c\xaa\xba\xc1\xe5\xe9\xef\xfa\xfb\xfe\ +\xde\xe4\xe7\x6d\x78\x77\x24\x32\x33\x2c\x4a\x4e\x35\x56\x55\x34\ +\x59\x5d\x2b\x48\x47\x2c\x4f\x4d\x38\x58\x56\x35\x4d\x64\x33\x4e\ +\x6c\x41\x4b\x3e\x3f\x46\x2b\x2b\x2d\x22\x35\x3d\x42\xdd\xdf\xe6\ +\xfb\xfd\xfe\xff\xfd\xfd\xfa\xfb\xfd\xf3\xf6\xfb\xe9\xee\xf2\xca\ +\xd6\xda\x50\x74\x7f\x3f\x53\x5f\x1f\x2a\x3a\x0d\x13\x17\x10\x0e\ +\x0a\x0f\x12\x0c\x0d\x11\x0c\x0d\x0f\x0a\x0e\x0f\x0a\x0b\x0c\x09\ +\x09\x0a\x06\x0e\x0a\x06\x4e\x31\x22\x79\x3d\x21\x9a\x4a\x1b\x49\ +\xdb\xf5\x55\xe0\xf8\xea\xf4\xf9\xe9\xec\xf0\xc0\xc9\xcb\x5f\x63\ +\x63\x24\x1f\x1a\x03\x04\x04\x04\x05\x04\x04\x06\x05\x04\x04\x03\ +\x05\x03\x03\x04\x05\x03\x06\x09\x0a\x07\x0c\x15\x77\x53\x2d\xc5\ +\x8f\x49\xd0\x74\x04\xcf\x62\x00\xab\x77\x31\x80\xc6\xd9\xca\xde\ +\xe7\x82\x76\x6d\x34\x17\x01\x44\x2e\x22\x26\x19\x15\x0a\x0b\x0c\ +\x0c\x0d\x11\x0b\x0b\x0e\x0b\x0c\x0e\x0b\x0e\x18\x0b\x0f\x17\x0c\ +\x11\x1b\x0a\x19\x23\xbc\xdc\xe8\xf5\xf6\xfa\xec\xf2\xf6\xd7\xd7\ +\xd7\x79\x3a\x1b\x37\x17\x08\x1a\x07\x00\x1a\x08\x02\x11\x0a\x08\ +\x05\x06\x06\x04\x07\x07\x06\x0d\x1a\x04\x0d\x21\x06\x0e\x21\x07\ +\x0f\x22\x08\x12\x26\x09\x11\x26\x07\x13\x27\x07\x15\x2b\x04\x0c\ +\x18\x02\x02\x01\x03\x03\x02\x04\x04\x05\x07\x07\x06\x39\x3c\x3b\ +\xc4\xc9\xcb\xe8\xee\xf1\xdd\xe4\xe9\xd1\xd8\xde\xb0\xbb\xc2\x75\ +\x7c\x84\x2b\x28\x2a\x13\x13\x24\x03\x07\x14\x08\x0b\x0f\x02\x02\ +\x04\x00\x00\x00\x06\x13\x1c\x07\x14\x25\x00\x00\x00\x2a\x41\x4a\ +\x48\x6e\x72\x51\x6d\x67\x1d\x32\x31\x26\x41\x49\x4d\x64\x6a\x58\ +\x77\x7e\x55\x78\x87\x5a\x7b\x91\x5b\x77\x8e\x58\x6e\x80\x44\x62\ +\x6f\x37\x5c\x69\x4b\x6f\x77\x53\x72\x7d\x59\x75\x7b\x32\x50\x51\ +\x1f\x33\x36\x34\x50\x5e\x51\x78\x85\x46\x6e\x78\x2e\x4e\x50\x2e\ +\x50\x54\x2f\x4b\x4a\x29\x44\x47\x52\x78\x8d\x59\x84\x9e\x4c\x7b\ +\x92\x4f\x7d\x96\x42\x69\x80\x44\x69\x7b\x32\x56\x61\x41\x5f\x6d\ +\x5c\x71\x79\x5d\x71\x75\x60\x6f\x69\x49\x65\x6d\x3c\x5b\x60\x3a\ +\x56\x5a\x43\x5e\x66\x4e\x66\x6d\x40\x5d\x64\x3b\x60\x64\x2a\x48\ +\x49\x2b\x46\x47\x2b\x4b\x4b\x29\x3f\x3d\x2d\x43\x40\x34\x47\x4a\ +\x4b\x5d\x61\xac\xbb\xc2\xee\xf0\xf5\xf3\xf5\xf9\xcb\xd2\xd1\x5a\ +\x6a\x6b\x2f\x51\x54\x34\x5d\x63\x31\x4e\x4d\x34\x5e\x60\x2f\x52\ +\x53\x2e\x53\x51\x33\x5a\x5e\x46\x65\x6c\x2b\x43\x66\x36\x52\x6e\ +\x42\x51\x4c\x42\x48\x42\x54\x5c\x63\xc9\xc8\xcd\xfd\xfe\xff\xfa\ +\xfb\xfe\xf5\xf9\xfd\xee\xf3\xf6\xda\xe3\xe7\x9f\xa9\xab\x36\x35\ +\x33\x1f\x25\x38\x0c\x21\x40\x0f\x1f\x34\x0e\x15\x19\x0f\x10\x08\ +\x10\x12\x0c\x0d\x0f\x0a\x0d\x0d\x0a\x0c\x0c\x08\x0b\x0b\x07\x12\ +\x0d\x08\x5c\x1f\x02\x6b\x40\x2b\x69\xa7\xaf\x96\xe5\xf3\xec\xf6\ +\xfd\xef\xf2\xf6\xde\xe4\xe6\x9f\xa8\xab\x67\x6c\x6b\x13\x0f\x0d\ +\x03\x03\x04\x03\x04\x04\x03\x05\x05\x04\x04\x04\x04\x03\x02\x03\ +\x02\x03\x06\x06\x05\x08\x0f\x17\x78\x4f\x23\xc8\x9c\x64\xce\x72\ +\x02\xc4\x66\x0b\x7e\x8f\x7c\x69\xbe\xd7\xc7\xdb\xe6\x89\x84\x7e\ +\x2a\x1f\x14\x36\x24\x18\x29\x1a\x15\x0c\x0a\x06\x0d\x0a\x08\x0b\ +\x07\x05\x0e\x0b\x08\x10\x0f\x0f\x0e\x13\x20\x0d\x16\x23\x0a\x10\ +\x1a\x85\x94\x98\xf6\xf9\xfe\xee\xf2\xf6\xe8\xef\xf5\x97\x7c\x6d\ +\x37\x57\x62\x1a\x06\x00\x1b\x07\x01\x14\x0b\x0a\x05\x07\x07\x04\ +\x09\x14\x04\x0e\x1f\x04\x0e\x21\x05\x0e\x23\x07\x11\x25\x06\x12\ +\x26\x09\x12\x28\x07\x13\x26\x08\x14\x2b\x06\x14\x2b\x02\x05\x0b\ +\x02\x02\x02\x02\x04\x04\x05\x05\x05\x05\x06\x05\x3a\x3c\x3b\xcf\ +\xd4\xd5\xe6\xeb\xee\xdd\xe4\xe7\xcb\xd4\xda\xa6\xb0\xb8\x62\x67\ +\x6e\x23\x23\x2a\x0c\x10\x25\x07\x0b\x10\x0d\x16\x1a\x26\x43\x5b\ +\x10\x23\x3b\x07\x11\x24\x00\x00\x00\x3b\x54\x65\x51\x70\x75\x4b\ +\x6b\x69\x2e\x55\x5c\x30\x51\x53\x47\x60\x63\x58\x75\x75\x5e\x7b\ +\x7d\x56\x75\x7e\x58\x78\x80\x58\x79\x86\x50\x74\x88\x45\x6c\x82\ +\x47\x68\x7a\x52\x70\x80\x64\x73\x76\x4e\x62\x61\x2f\x4c\x52\x44\ +\x6a\x75\x4f\x7a\x80\x4e\x74\x7f\x30\x4f\x4d\x3c\x5e\x63\x36\x59\ +\x5b\x27\x40\x43\x44\x6d\x73\x51\x7a\x7f\x53\x7a\x83\x55\x79\x81\ +\x4d\x74\x83\x55\x73\x80\x48\x6b\x76\x5c\x72\x77\x5e\x6e\x74\x54\ +\x6e\x76\x48\x5f\x6b\x44\x62\x71\x3a\x59\x60\x3e\x5f\x66\x3a\x54\ +\x5d\x39\x51\x5a\x3b\x51\x55\x41\x62\x6b\x30\x51\x54\x2a\x46\x47\ +\x31\x53\x5b\x2d\x49\x4e\x32\x4a\x50\x3a\x55\x5f\x52\x67\x76\xb7\ +\xc0\xc5\xee\xf0\xf4\xdd\xe3\xe3\x75\x80\x7e\x42\x5e\x64\x3e\x64\ +\x68\x34\x5d\x5d\x32\x54\x55\x34\x5c\x5d\x32\x5b\x5c\x2e\x52\x4d\ +\x30\x59\x55\x40\x60\x67\x49\x65\x6f\x2e\x46\x68\x39\x4a\x52\x50\ +\x5a\x5f\x6a\x75\x79\x7e\x78\x7a\xff\xff\xff\xf7\xfb\xfe\xf1\xf6\ +\xfb\xe6\xec\xef\xc0\xca\xcc\x3e\x2e\x22\x25\x1d\x25\x0d\x21\x40\ +\x0c\x23\x43\x0e\x21\x3f\x0c\x24\x3f\x0e\x1f\x31\x10\x10\x09\x0f\ +\x0e\x09\x0d\x0e\x0a\x0c\x0f\x0b\x0c\x0b\x08\x16\x17\x15\x6b\x4a\ +\x3a\x71\x29\x05\x39\xa5\xb1\xb9\xef\xfb\xf6\xf8\xfc\xea\xef\xf1\ +\xd1\xd9\xda\x7e\x85\x87\x5b\x5b\x5a\x05\x05\x05\x04\x04\x04\x05\ +\x04\x04\x04\x05\x05\x04\x05\x04\x05\x05\x03\x06\x08\x05\x09\x08\ +\x05\x03\x04\x05\x6e\x4f\x30\xc9\x9e\x6c\xd2\x76\x03\xbe\x6f\x17\ +\x33\xa9\xc9\x5e\xca\xea\xce\xde\xe6\x94\x99\x9a\x31\x43\x4a\x3a\ +\x28\x1f\x29\x18\x13\x0c\x0a\x05\x0c\x0a\x04\x0c\x0b\x07\x0d\x0a\ +\x09\x10\x0c\x08\x12\x16\x1e\x0d\x17\x28\x0c\x17\x23\x2b\x31\x35\ +\xf4\xf9\xfd\xf0\xf4\xf8\xe7\xec\xf0\xd3\xdd\xe2\x6a\x65\x62\x22\ +\x08\x00\x1a\x0a\x05\x13\x0c\x0e\x07\x0c\x16\x04\x0c\x1e\x02\x0d\ +\x1d\x03\x0b\x1b\x04\x0c\x1e\x04\x0e\x20\x07\x12\x26\x09\x13\x27\ +\x08\x13\x27\x08\x14\x28\x07\x18\x31\x07\x17\x28\x03\x04\x07\x03\ +\x03\x04\x04\x04\x04\x06\x06\x06\x02\x02\x02\x3a\x3c\x3a\xd7\xdd\ +\xe0\xe6\xea\xed\xdd\xe2\xe8\xc6\xce\xd7\x96\xa2\xa9\x46\x48\x4d\ +\x0b\x0c\x22\x1f\x34\x4b\x81\xbc\xd3\x91\xd0\xf7\x1e\x40\x78\x06\ +\x13\x35\x00\x00\x00\x6d\x88\x8b\x61\x7a\x82\x58\x69\x6f\x4a\x64\ +\x6d\x41\x5f\x6a\x31\x48\x4c\x4b\x69\x78\x5f\x7b\x86\x5a\x77\x80\ +\x4f\x6e\x74\x55\x73\x79\x53\x75\x7b\x4e\x71\x7b\x51\x74\x7f\x52\ +\x71\x78\x4e\x6c\x68\x3f\x63\x60\x30\x53\x56\x4b\x74\x7f\x50\x75\ +\x7b\x4e\x72\x7b\x3c\x5e\x6a\x3b\x57\x63\x3b\x58\x5f\x37\x52\x63\ +\x52\x6d\x7c\x62\x7a\x84\x5d\x72\x7d\x70\x7d\x83\x88\x92\x96\x7f\ +\x89\x8c\x5e\x74\x7d\x4f\x66\x6f\x57\x68\x6f\x4d\x64\x68\x47\x5f\ +\x67\x41\x58\x57\x3f\x5e\x66\x3e\x61\x6b\x38\x53\x5b\x49\x60\x6b\ +\x4d\x5b\x67\x58\x72\x84\x39\x59\x60\x2f\x52\x5a\x37\x59\x61\x38\ +\x5f\x6a\x36\x57\x5f\x31\x4d\x57\x56\x6d\x7a\xc1\xcb\xce\xa7\xac\ +\xae\x82\x89\x8a\x3d\x57\x58\x3d\x5d\x60\x3c\x5e\x5f\x35\x5c\x5a\ +\x30\x56\x58\x2c\x41\x3d\x32\x54\x4e\x2f\x50\x4f\x2d\x51\x4f\x36\ +\x5b\x5f\x48\x66\x73\x48\x63\x7b\x2f\x47\x66\x60\x6e\x78\x72\x7a\ +\x7c\x12\x11\x11\xb8\xb2\xb7\xfa\xfc\xff\xee\xf3\xf8\xd3\xde\xe1\ +\x77\x7d\x7b\x26\x1b\x1a\x12\x1f\x39\x0c\x1d\x3d\x0d\x21\x41\x0e\ +\x23\x44\x0c\x21\x3a\x0c\x1e\x2e\x0e\x13\x0e\x0e\x0f\x09\x0d\x0d\ +\x08\x0c\x0b\x06\x0c\x0c\x08\x0d\x1b\x1d\x32\x90\xae\x64\x6c\x69\ +\xc1\xca\xc9\xf7\xf9\xfe\xf2\xf6\xfa\xe5\xeb\xed\xbe\xc6\xc9\x63\ +\x67\x68\x37\x33\x2f\x04\x07\x06\x04\x07\x07\x03\x04\x04\x03\x03\ +\x03\x04\x06\x03\x06\x06\x03\x06\x06\x04\x07\x06\x03\x04\x03\x02\ +\x67\x4e\x32\xc0\x83\x38\xce\x74\x08\xb0\x7b\x33\x81\xb2\xb5\xe2\ +\xf4\xfb\xdb\xe1\xe8\xa8\xb3\xbb\x3b\x30\x27\x3a\x27\x1b\x21\x16\ +\x11\x0b\x09\x06\x0c\x08\x05\x0d\x0a\x07\x0d\x0b\x08\x0e\x0b\x08\ +\x12\x0c\x09\x16\x12\x11\x10\x1f\x3a\x13\x23\x39\xa5\xae\xb4\xf7\ +\xfa\xfe\xea\xef\xf3\xdb\xe5\xec\x7a\x58\x4b\x2f\x0a\x00\x1a\x0f\ +\x0c\x19\x19\x1a\x08\x0c\x19\x02\x08\x15\x02\x08\x15\x02\x0a\x18\ +\x02\x0a\x19\x01\x0b\x1a\x04\x0d\x1e\x06\x11\x24\x08\x13\x26\x09\ +\x14\x29\x07\x12\x2b\x09\x1b\x32\x09\x1a\x31\x04\x0b\x13\x02\x05\ +\x08\x03\x03\x04\x04\x04\x03\x00\x00\x00\x3b\x3b\x3b\xd3\xd6\xdb\ +\xe7\xec\xee\xdd\xe4\xe9\xbb\xbf\xc6\x37\x32\x36\x05\x07\x09\x18\ +\x28\x40\x73\xb1\xdb\x4a\x89\xd2\x1c\x59\xb2\x10\x41\x93\x00\x00\ +\x00\x61\x76\x80\x61\x7e\x85\x5f\x78\x7b\x58\x75\x84\x51\x72\x81\ +\x2b\x43\x47\x40\x62\x6f\x67\x7e\x83\x5d\x76\x7b\x5f\x78\x7c\x5e\ +\x7a\x7b\x4e\x70\x73\x4f\x70\x74\x4b\x6c\x76\x4d\x66\x72\x4c\x60\ +\x64\x45\x6e\x6f\x3d\x63\x6e\x50\x69\x73\x56\x6f\x77\x51\x6a\x72\ +\x47\x64\x6e\x48\x67\x6c\x54\x71\x7c\x55\x6f\x7f\x7b\x88\x90\x7f\ +\x8c\x93\x8b\x95\x99\x81\x8a\x8c\x7b\x82\x85\x6e\x78\x79\x65\x71\ +\x78\x5e\x67\x6c\x5a\x5d\x5e\x44\x53\x59\x3d\x5a\x62\x37\x50\x56\ +\x39\x53\x54\x3e\x5b\x61\x39\x4b\x50\x3f\x54\x5b\x3f\x52\x5a\x51\ +\x73\x7f\x3c\x63\x6c\x35\x55\x5a\x3f\x5f\x67\x42\x65\x6f\x40\x64\ +\x71\x37\x57\x5f\x5d\x6d\x78\xaa\xb4\xb9\x61\x72\x74\x38\x50\x55\ +\x48\x65\x64\x3f\x5e\x61\x3b\x59\x59\x34\x53\x53\x2f\x51\x4e\x21\ +\x34\x2f\x2f\x49\x44\x30\x4e\x4c\x32\x52\x54\x2e\x57\x5c\x4a\x6b\ +\x72\x4e\x67\x6f\x33\x50\x72\x73\x91\xbc\x5d\x6a\x6e\x0b\x0d\x0d\ +\x1d\x18\x1a\xa8\xa3\xa7\xd1\xd3\xd6\xa6\xae\xae\x34\x3b\x3d\x20\ +\x38\x4e\x11\x25\x41\x0c\x1d\x3b\x0b\x1d\x3c\x0e\x21\x42\x0e\x1e\ +\x39\x0d\x1a\x24\x0e\x16\x10\x10\x14\x0a\x11\x11\x0a\x0e\x0d\x06\ +\x0c\x0b\x09\x12\x15\x14\x3f\x73\x85\x61\xae\xc3\x6a\xd2\xe5\xf1\ +\xf8\xfe\xf0\xf5\xf8\xe1\xe7\xea\xa3\xab\xad\x54\x56\x54\x12\x10\ +\x0e\x09\x0b\x0a\x05\x05\x05\x04\x05\x04\x04\x04\x04\x03\x03\x02\ +\x04\x04\x03\x04\x04\x02\x05\x04\x04\x01\x01\x03\x78\x43\x06\xc8\ +\x7a\x16\xcd\x78\x0f\x96\x8e\x61\x5e\xc0\xd7\xd2\xec\xf5\xdf\xe5\ +\xea\xab\xb6\xbb\x2f\x18\x0c\x32\x1e\x14\x1b\x18\x16\x0c\x09\x05\ +\x0b\x09\x06\x0c\x08\x05\x0d\x0a\x06\x0f\x0b\x07\x0f\x0c\x09\x17\ +\x0d\x09\x17\x16\x18\x12\x24\x3e\x50\x61\x78\xf2\xf6\xf9\xef\xf2\ +\xf6\xe1\xe8\xee\x9d\x90\x8d\x35\x0a\x00\x17\x13\x12\x19\x19\x18\ +\x08\x0e\x18\x02\x08\x16\x02\x09\x17\x03\x0a\x1a\x02\x0a\x17\x02\ +\x0a\x1a\x01\x0b\x1b\x01\x0b\x1c\x04\x0e\x1f\x09\x13\x29\x08\x13\ +\x2a\x07\x12\x27\x08\x19\x30\x0a\x1f\x38\x0c\x1c\x32\x09\x15\x23\ +\x08\x11\x1a\x08\x15\x1e\x1d\x31\x3d\x62\x78\x83\xc3\xd0\xd8\xa4\ +\xa1\xa7\x50\x49\x4c\x08\x09\x0b\x03\x03\x03\x08\x0e\x1b\x1d\x48\ +\x87\x18\x51\xaa\x11\x46\xa3\x0f\x41\xa1\x00\x00\x00\x5a\x6e\x75\ +\x60\x76\x79\x64\x7e\x8c\x66\x7d\x85\x69\x7b\x7b\x50\x69\x6d\x31\ +\x48\x49\x63\x7c\x85\x6c\x84\x8c\x6f\x85\x8d\x6e\x83\x88\x63\x80\ +\x8a\x60\x7d\x83\x5f\x7c\x87\x4f\x6c\x75\x50\x69\x71\x47\x63\x6b\ +\x47\x5d\x6a\x4e\x5a\x69\x4e\x61\x72\x56\x6a\x7b\x59\x6b\x75\x59\ +\x70\x75\x61\x78\x7c\x71\x83\x8a\x7c\x84\x86\x80\x89\x8c\x88\x8d\ +\x8b\x83\x86\x83\x6a\x76\x79\x60\x6c\x6e\x79\x7e\x82\x67\x6a\x6c\ +\x63\x62\x66\x4b\x61\x71\x44\x5f\x6b\x41\x5c\x66\x40\x5a\x62\x3f\ +\x56\x56\x3d\x50\x4f\x40\x52\x54\x45\x61\x6c\x57\x7b\x8c\x40\x69\ +\x79\x36\x5a\x68\x40\x5f\x6c\x3c\x5c\x6d\x3f\x5f\x6c\x39\x5a\x64\ +\x51\x68\x71\x67\x73\x7c\x4a\x5e\x63\x47\x60\x6b\x47\x63\x73\x43\ +\x64\x74\x3c\x5c\x67\x35\x56\x5c\x30\x4f\x4d\x20\x2f\x2c\x26\x3c\ +\x39\x2d\x49\x4b\x36\x5c\x66\x3b\x5f\x65\x46\x5d\x65\x51\x6d\x76\ +\x4c\x62\x6f\x89\x9a\xaa\xa1\xaa\xae\x09\x0d\x0f\x0b\x0c\x0c\x14\ +\x11\x11\x3e\x3d\x3d\x33\x35\x37\x2c\x3d\x45\x34\x53\x61\x26\x4a\ +\x71\x1d\x3e\x65\x11\x2c\x51\x0a\x1d\x41\x0c\x1e\x3e\x0d\x21\x3f\ +\x0e\x1e\x29\x0f\x16\x0b\x12\x14\x0a\x11\x10\x09\x10\x0f\x0d\x38\ +\x3c\x3d\x78\x7b\x82\x7c\xd6\xeb\x9e\xe8\xf7\xf3\xf8\xfe\xee\xf1\ +\xf5\xd8\xdf\xe2\x85\x8c\x8e\x39\x3a\x39\x0e\x0f\x0e\x08\x0a\x09\ +\x06\x07\x07\x05\x07\x06\x04\x04\x04\x04\x04\x02\x03\x03\x03\x02\ +\x03\x02\x04\x03\x03\x02\x00\x00\x46\x4f\x43\x9f\x80\x46\xd0\x72\ +\x00\xce\x6a\x03\xa4\xb0\xa1\xd7\xf1\xfd\xe6\xec\xf1\xa5\xb0\xb6\ +\x24\x12\x07\x23\x24\x25\x1c\x1a\x17\x0e\x0c\x07\x0e\x0c\x07\x0c\ +\x09\x07\x0c\x09\x07\x0e\x0a\x08\x0f\x0c\x0a\x14\x0e\x0b\x19\x0e\ +\x09\x16\x19\x22\x24\x3c\x5c\xbb\xc4\xcb\xf4\xf7\xfc\xe7\xeb\xf0\ +\xc5\xca\xcd\x46\x2c\x1f\x12\x25\x30\x1d\x1d\x1a\x0d\x10\x17\x03\ +\x09\x13\x02\x0a\x16\x04\x0a\x13\x03\x0a\x13\x03\x0a\x16\x02\x0b\ +\x1d\x02\x0b\x1d\x02\x0b\x1d\x04\x0f\x24\x04\x10\x29\x07\x10\x22\ +\x08\x0e\x1d\x08\x12\x27\x0b\x1b\x35\x0c\x22\x40\x0e\x23\x3f\x1d\ +\x4c\x75\x5a\xa1\xd4\x70\xb9\xdd\x6b\xa2\xca\x2a\x39\x53\x01\x03\ +\x05\x00\x02\x02\x03\x09\x0b\x3a\x47\x4e\x1f\x36\x65\x24\x4a\xa3\ +\x29\x47\xa2\x2f\x46\x9f\x00\x00\x00\x5b\x66\x63\x4a\x54\x56\x57\ +\x6d\x7a\x5d\x6d\x77\x55\x61\x68\x62\x6e\x70\x49\x5c\x63\x5a\x6b\ +\x69\x7a\x84\x7f\x87\x8f\x8b\x88\x91\x8d\x8c\x94\x96\x89\x92\x94\ +\x81\x91\x94\x78\x89\x8e\x6e\x7d\x84\x52\x60\x70\x4e\x5b\x71\x5f\ +\x71\x7e\x6d\x77\x80\x73\x7d\x85\x69\x75\x7c\x6c\x78\x7e\x76\x82\ +\x86\x7e\x85\x86\x7f\x86\x87\x81\x88\x88\x73\x78\x7a\x53\x56\x5b\ +\x51\x62\x6a\x4d\x60\x66\x62\x69\x6b\x6f\x72\x72\x57\x64\x69\x49\ +\x58\x62\x3b\x54\x5c\x43\x5f\x63\x48\x60\x63\x3b\x4e\x4f\x39\x4f\ +\x56\x36\x47\x49\x40\x5e\x67\x5a\x7b\x89\x48\x70\x7e\x40\x6a\x78\ +\x3f\x5d\x6a\x4a\x64\x72\x43\x5d\x66\x3f\x60\x66\x42\x5b\x5e\x45\ +\x5d\x67\x4d\x6d\x7f\x4e\x73\x86\x54\x7d\x90\x50\x7a\x8c\x48\x6c\ +\x75\x43\x6a\x74\x2f\x52\x53\x21\x32\x2f\x29\x44\x41\x35\x52\x54\ +\x44\x6e\x77\x44\x66\x70\x45\x5a\x61\x55\x70\x7c\x51\x69\x77\x87\ +\x94\x9d\xec\xf0\xf2\x71\x7b\x80\x00\x00\x04\x04\x04\x04\x02\x04\ +\x05\x17\x22\x2d\x36\x49\x48\x36\x55\x67\x30\x53\x67\x2e\x58\x77\ +\x2a\x4e\x78\x20\x44\x83\x12\x34\x69\x0c\x24\x4d\x08\x1c\x3b\x0e\ +\x19\x1d\x10\x15\x0a\x0e\x11\x0e\x10\x11\x0e\x72\x75\x77\xb1\xb5\ +\xbb\xc0\xe2\xeb\xe5\xf6\xfc\xf4\xf6\xfc\xeb\xef\xf3\xcb\xd1\xd3\ +\x69\x70\x72\x25\x27\x26\x08\x09\x09\x07\x08\x06\x06\x09\x08\x07\ +\x09\x08\x06\x08\x08\x08\x0a\x08\x08\x0a\x08\x08\x08\x07\x06\x06\ +\x05\x02\x00\x00\x23\x38\x42\x4f\xa8\xc0\x6c\x88\x75\xb7\x71\x27\ +\x7c\xa6\xa2\xbc\xec\xfc\xf1\xf3\xf7\xa7\xb4\xba\x3a\x3b\x39\x1c\ +\x36\x45\x1c\x1b\x17\x0f\x0e\x07\x0f\x0d\x08\x0e\x0b\x07\x0d\x0b\ +\x07\x0e\x0b\x09\x0f\x0c\x0b\x10\x0c\x0b\x15\x0e\x0a\x1e\x1b\x19\ +\x10\x27\x4b\x71\x80\x90\xf4\xf7\xfb\xeb\xf0\xf3\xd4\xdc\xdf\x87\ +\x8f\x93\x2b\x36\x3b\x20\x16\x11\x10\x0e\x13\x05\x09\x11\x02\x0b\ +\x16\x04\x09\x12\x04\x0a\x12\x04\x0a\x15\x03\x0a\x1d\x04\x0c\x1f\ +\x04\x0d\x20\x02\x0c\x20\x02\x0d\x26\x04\x0f\x26\x08\x10\x23\x08\ +\x11\x25\x07\x13\x2a\x07\x14\x31\x05\x11\x2d\x15\x44\x83\x25\x65\ +\xba\x2a\x6e\xc3\x27\x6a\xc3\x20\x58\xa5\x29\x3c\x55\x4c\x57\x59\ +\x9f\xaf\xb2\x9d\xa8\xb0\x39\x48\x67\x31\x48\xa7\x4b\x55\xa0\x62\ +\x63\x35\x00\x00\x00\x4e\x5d\x5a\x52\x5a\x5e\x54\x5d\x62\x4f\x5b\ +\x63\x45\x4f\x52\x51\x5c\x64\x55\x63\x69\x48\x5d\x66\x45\x5d\x60\ +\x4d\x60\x6b\x4e\x5c\x66\x5a\x64\x6a\x6f\x72\x71\x80\x81\x7f\x8c\ +\x92\x8f\x87\x91\x91\x77\x84\x8a\x6d\x79\x82\x7b\x86\x89\x76\x7d\ +\x7e\x75\x7e\x82\x7c\x87\x8a\x7c\x86\x89\x82\x87\x8b\x85\x89\x89\ +\x80\x86\x86\x7f\x87\x83\x72\x7b\x7e\x56\x63\x73\x48\x55\x66\x50\ +\x5f\x66\x4a\x5e\x6a\x4d\x5d\x67\x4b\x5c\x6d\x46\x56\x64\x3f\x59\ +\x62\x40\x5b\x63\x45\x61\x68\x3c\x57\x5b\x3e\x51\x4e\x33\x45\x44\ +\x3e\x56\x68\x52\x79\x84\x4b\x73\x81\x47\x6c\x77\x3b\x58\x63\x44\ +\x5a\x62\x47\x63\x74\x4c\x73\x84\x4d\x72\x83\x50\x76\x85\x53\x7b\ +\x89\x53\x78\x7e\x52\x73\x79\x55\x73\x76\x45\x63\x62\x44\x5f\x63\ +\x33\x54\x57\x24\x3e\x3b\x25\x3b\x37\x32\x4b\x4a\x48\x6c\x70\x47\ +\x66\x6e\x43\x5d\x67\x59\x73\x81\x52\x6d\x7c\x87\x95\x9e\xed\xf0\ +\xf2\xf3\xf6\xfa\xa9\xb4\xb6\x33\x41\x42\x16\x1f\x2b\x2b\x4a\x70\ +\x36\x52\x64\x3b\x4d\x45\x32\x50\x5d\x31\x52\x61\x31\x53\x75\x31\ +\x58\x94\x2c\x56\xa2\x20\x4f\x9c\x18\x43\x86\x0c\x2a\x4f\x0c\x1b\ +\x1a\x0e\x13\x0b\x1a\x1b\x18\x81\x84\x89\xbc\xc2\xc6\xd4\xda\xe0\ +\xf6\xf9\xfe\xf2\xf6\xfb\xe8\xed\xf0\xb3\xba\xbc\x4e\x53\x55\x1a\ +\x1c\x1a\x0a\x0c\x09\x07\x09\x07\x09\x0a\x08\x05\x07\x07\x04\x07\ +\x05\x06\x07\x06\x07\x09\x09\x05\x07\x05\x05\x04\x04\x04\x04\x04\ +\x0d\x10\x11\x6e\x72\x77\x9a\xd1\xdf\x1b\xb0\xd7\x31\xbc\xe1\xc6\ +\xed\xf7\xef\xf1\xf6\xb6\xc0\xc7\x52\x5e\x64\x31\x34\x38\x18\x10\ +\x0a\x0f\x0c\x06\x0f\x0c\x07\x0f\x0c\x07\x0d\x0c\x08\x0c\x0b\x08\ +\x0c\x0b\x09\x0e\x0b\x0b\x13\x0e\x0b\x1f\x19\x16\x13\x23\x42\x3b\ +\x4d\x65\xce\xd5\xd9\xf0\xf3\xf7\xdc\xe3\xe6\xa5\xb0\xb6\x42\x42\ +\x44\x1b\x0d\x06\x12\x11\x16\x05\x0b\x11\x04\x0b\x1a\x04\x0a\x12\ +\x05\x0b\x13\x06\x0b\x13\x04\x0c\x18\x07\x0e\x20\x05\x0d\x22\x09\ +\x12\x29\x0c\x15\x2e\x0b\x13\x30\x0e\x13\x30\x0d\x13\x31\x0d\x16\ +\x36\x0a\x16\x31\x07\x14\x2c\x10\x2f\x65\x12\x45\x99\x13\x46\x9c\ +\x14\x4c\xa5\x10\x4d\xa6\x2f\x5c\x9f\xc9\xd2\xdd\xe3\xe9\xed\xd3\ +\xdb\xe1\x7b\x85\x98\x3d\x47\x97\x65\x64\x5c\x67\x60\x20\x00\x00\ +\x00\x45\x4f\x52\x4a\x55\x5b\x51\x5a\x5a\x4e\x59\x59\x51\x5c\x5f\ +\x48\x56\x5a\x54\x60\x5e\x46\x54\x50\x45\x53\x4f\x45\x5b\x5d\x46\ +\x5e\x62\x42\x55\x58\x52\x60\x68\x4e\x56\x5c\x4e\x56\x61\x69\x6e\ +\x6f\x7e\x88\x87\x82\x8c\x90\x7e\x8d\x93\x7a\x88\x8d\x7e\x88\x8e\ +\x7e\x85\x88\x7f\x89\x8b\x85\x8a\x89\x83\x88\x88\x80\x88\x86\x71\ +\x78\x77\x69\x76\x7a\x58\x63\x6b\x4b\x62\x6f\x54\x64\x6f\x55\x6d\ +\x7a\x4f\x6c\x78\x4f\x64\x6f\x48\x5c\x66\x40\x57\x5b\x43\x58\x5b\ +\x46\x60\x63\x3c\x54\x55\x38\x4a\x49\x2e\x41\x44\x4e\x70\x7e\x53\ +\x7a\x88\x53\x76\x84\x4e\x6b\x79\x4a\x60\x6b\x4c\x68\x7a\x50\x76\ +\x8a\x54\x79\x8d\x51\x70\x81\x4b\x68\x75\x50\x69\x75\x4c\x63\x6d\ +\x4e\x62\x6d\x4f\x68\x77\x41\x65\x70\x39\x59\x5e\x34\x50\x53\x25\ +\x3e\x3a\x26\x3d\x3d\x38\x56\x5b\x4f\x6d\x76\x44\x69\x77\x3f\x5f\ +\x67\x57\x75\x83\x58\x74\x84\x8b\x98\xa3\xed\xf0\xf3\xf0\xf4\xf9\ +\xd7\xe0\xe3\x8a\x98\x9d\x2d\x50\x80\x2a\x51\x85\x34\x58\x7f\x38\ +\x51\x62\x3a\x4f\x50\x32\x50\x63\x2e\x53\x6e\x31\x56\x80\x2c\x56\ +\x95\x2d\x54\xa1\x26\x52\xa2\x23\x50\x96\x1b\x42\x6e\x10\x29\x3d\ +\x14\x1d\x1d\x7f\x84\x8b\xba\xc6\xcd\xc3\xca\xd2\xf8\xfb\xff\xf2\ +\xf5\xfa\xe0\xe6\xe8\x95\x9d\x9f\x34\x39\x38\x14\x17\x12\x0d\x0f\ +\x0a\x0d\x0f\x0c\x0a\x0c\x0a\x05\x08\x07\x07\x0a\x0a\x07\x0a\x0a\ +\x06\x08\x0a\x08\x09\x0a\x04\x05\x03\x01\x02\x00\x42\x45\x45\x64\ +\x6e\x73\xa0\xa3\xa3\xe9\xf5\xf8\xc4\xea\xf4\xe2\xf1\xf8\xeb\xf0\ +\xf3\xc1\xcb\xd2\x5d\x65\x69\x29\x19\x14\x14\x0d\x0a\x0c\x0b\x07\ +\x0d\x0a\x08\x0d\x0a\x07\x0d\x09\x07\x0c\x08\x07\x0e\x0a\x09\x0f\ +\x0b\x08\x13\x0d\x0b\x1a\x12\x0d\x15\x1d\x2d\x0a\x1e\x3a\x9b\xa5\ +\xac\xf1\xf6\xfa\xe5\xe9\xee\xb7\xc1\xc8\x52\x55\x58\x18\x0c\x06\ +\x0c\x0d\x12\x15\x3d\x6b\x0c\x2b\x56\x04\x11\x24\x04\x0d\x16\x04\ +\x0b\x13\x10\x17\x1d\x09\x10\x1f\x0e\x15\x2c\x10\x14\x35\x10\x14\ +\x34\x0f\x14\x33\x0f\x13\x35\x11\x16\x39\x12\x17\x3e\x14\x19\x3f\ +\x0f\x17\x39\x0a\x21\x4c\x12\x46\x9b\x10\x44\x9a\x11\x45\x9a\x1a\ +\x4e\x9d\x1a\x53\x9c\x3a\x61\x90\xcf\xd3\xd3\xe8\xed\xf1\xd4\xdb\ +\xe3\x7c\x82\x76\x49\x4d\x33\x38\x42\x39\x00\x00\x00\x3e\x46\x44\ +\x49\x4b\x48\x4e\x4d\x4a\x4d\x4e\x4f\x4f\x50\x4e\x45\x4b\x4b\x3d\ +\x48\x4b\x37\x42\x42\x39\x43\x42\x3d\x45\x48\x43\x4b\x4e\x4c\x54\ +\x58\x55\x58\x57\x46\x56\x5b\x4b\x60\x6d\x4b\x64\x71\x50\x68\x6f\ +\x5c\x60\x5f\x74\x75\x6c\x7e\x81\x7b\x80\x86\x82\x82\x89\x84\x7b\ +\x80\x79\x74\x76\x6e\x6e\x73\x69\x5b\x68\x66\x4d\x62\x6a\x42\x57\ +\x62\x40\x53\x65\x4a\x5b\x68\x4e\x64\x6f\x52\x6d\x76\x4c\x6e\x74\ +\x51\x70\x74\x50\x6b\x75\x42\x60\x6c\x43\x63\x6d\x42\x5a\x5e\x40\ +\x5a\x60\x35\x4b\x50\x39\x53\x5f\x49\x66\x73\x43\x62\x6d\x53\x75\ +\x84\x52\x71\x83\x54\x6d\x77\x4e\x6b\x75\x50\x6d\x78\x51\x72\x84\ +\x4f\x6f\x84\x55\x77\x8d\x4c\x69\x77\x50\x6a\x79\x54\x76\x8b\x59\ +\x7e\x93\x4d\x77\x88\x3b\x60\x68\x2f\x4c\x4f\x2a\x4f\x50\x2f\x52\ +\x55\x44\x65\x72\x4c\x6d\x7b\x47\x6c\x77\x3b\x62\x6e\x58\x76\x83\ +\x5f\x79\x89\x87\x94\x9f\xea\xed\xf2\xe5\xec\xef\xaf\xba\xbd\x42\ +\x57\x72\x14\x4c\xa0\x12\x4b\xa4\x2a\x4e\x7c\x38\x50\x61\x37\x4d\ +\x59\x35\x50\x5d\x30\x51\x67\x30\x54\x6a\x32\x54\x79\x2f\x57\x9a\ +\x2b\x58\xa2\x23\x4c\x90\x24\x48\x6f\x27\x53\x8e\x1e\x44\x72\x74\ +\x84\x94\xc7\xd2\xd7\xc5\xcc\xd3\xf8\xfb\xff\xf0\xf3\xf8\xd2\xd9\ +\xdc\x70\x77\x7a\x26\x2b\x2a\x0d\x12\x08\x0e\x11\x07\x0c\x0f\x0a\ +\x0b\x0d\x08\x07\x09\x08\x05\x05\x04\x03\x05\x04\x04\x05\x04\x06\ +\x07\x05\x06\x08\x06\x04\x06\x04\x43\x43\x40\xce\xd2\xd4\x5d\x68\ +\x6e\xd1\xd3\xd4\xfb\xfc\xff\xf3\xf6\xfb\xea\xef\xf3\xc7\xd1\xd8\ +\x68\x73\x78\x23\x14\x0f\x10\x0f\x0d\x0c\x0b\x08\x0e\x0a\x06\x0c\ +\x09\x06\x0a\x06\x05\x0a\x08\x06\x0c\x09\x07\x0d\x0b\x09\x11\x0d\ +\x0b\x15\x10\x0c\x12\x15\x19\x05\x12\x25\x51\x5b\x63\xe1\xe6\xe9\ +\xea\xee\xf1\xc8\xd0\xd5\x6d\x75\x7b\x23\x23\x24\x0b\x0f\x14\x12\ +\x47\x85\x12\x4a\x81\x13\x48\x7e\x0f\x2a\x46\x0d\x1c\x2c\x10\x18\ +\x25\x11\x16\x2d\x11\x16\x33\x10\x16\x37\x11\x14\x34\x0f\x14\x33\ +\x12\x16\x38\x16\x1a\x38\x17\x1a\x3c\x17\x1b\x3d\x17\x1a\x3d\x0f\ +\x18\x3d\x18\x46\x98\x15\x4d\xa5\x3a\x56\x79\x58\x5b\x3c\x64\x61\ +\x2f\x64\x5b\x1f\x6d\x6b\x23\xc3\xc6\xad\xcd\xd0\xd5\x6e\x73\x77\ +\x5c\x5f\x30\x62\x66\x29\x00\x00\x00\x39\x40\x39\x34\x34\x30\x35\ +\x33\x32\x3f\x3e\x39\x44\x42\x40\x45\x45\x47\x3e\x42\x44\x3d\x42\ +\x48\x42\x4a\x49\x3c\x47\x48\x3f\x46\x47\x4a\x4d\x4c\x3f\x42\x45\ +\x53\x58\x56\x59\x5e\x5e\x4e\x5c\x5d\x4c\x56\x56\x3d\x3f\x3f\x44\ +\x44\x40\x56\x50\x49\x57\x54\x4a\x65\x63\x59\x64\x63\x5d\x4e\x54\ +\x56\x41\x4f\x57\x42\x53\x5d\x3f\x50\x54\x3d\x49\x51\x53\x5e\x69\ +\x5c\x67\x71\x5f\x6a\x72\x5c\x73\x7d\x4f\x6d\x79\x4a\x68\x6d\x4d\ +\x6d\x71\x48\x67\x6d\x44\x5f\x62\x43\x5c\x63\x42\x5a\x60\x34\x4e\ +\x55\x43\x63\x70\x52\x72\x7e\x4e\x73\x83\x4f\x72\x83\x52\x76\x87\ +\x4a\x68\x76\x4a\x69\x76\x4c\x6b\x7a\x51\x73\x88\x54\x75\x85\x52\ +\x73\x7d\x49\x6c\x73\x4f\x6c\x74\x50\x6f\x77\x4e\x71\x7b\x4e\x71\ +\x7f\x44\x69\x76\x32\x49\x50\x33\x5b\x61\x3d\x64\x6f\x4e\x71\x82\ +\x52\x76\x86\x51\x74\x83\x4a\x74\x89\x62\x83\x97\x5e\x7b\x8c\x87\ +\x97\xa1\xdc\xe0\xe3\xcb\xd2\xd7\x6b\x77\x77\x25\x3d\x54\x14\x49\ +\x94\x0f\x4b\xa2\x10\x47\x9a\x28\x4c\x7e\x3a\x4e\x5b\x37\x4d\x5f\ +\x2f\x4f\x6d\x2e\x53\x6e\x2f\x56\x76\x30\x56\x86\x2e\x54\x99\x1d\ +\x3a\x6e\x11\x1e\x36\x17\x28\x43\x2b\x57\xa0\x7a\x95\xbf\xd2\xd7\ +\xd9\x85\x86\x8a\xd6\xd4\xd8\xf8\xfc\xff\xc3\xcc\xce\x4e\x54\x52\ +\x35\x3c\x2b\x23\x29\x16\x0e\x14\x09\x0d\x0e\x09\x0c\x0d\x08\x09\ +\x0a\x08\x07\x08\x07\x07\x07\x05\x06\x06\x05\x08\x0b\x0d\x07\x0a\ +\x0a\x05\x07\x07\x17\x15\x13\x99\x96\x94\xb3\xba\xc0\x5f\x67\x6d\ +\xe0\xe2\xe6\xfb\xff\xff\xec\xf1\xf5\xce\xd6\xde\x7a\x86\x8b\x2a\ +\x29\x29\x0d\x11\x12\x0b\x0b\x07\x0d\x0a\x07\x0d\x0a\x07\x0b\x09\ +\x07\x0c\x09\x08\x0e\x0b\x0a\x0f\x0c\x0a\x12\x0d\x0a\x11\x0e\x0b\ +\x10\x11\x15\x0a\x14\x22\x0e\x19\x24\xbe\xc3\xc6\xf3\xf6\xfa\xd8\ +\xe0\xe5\x87\x90\x96\x27\x2a\x2a\x11\x14\x1b\x10\x4e\x8f\x12\x50\ +\x8c\x16\x49\x7b\x28\x4f\x70\x36\x59\x75\x4a\x60\x82\x26\x35\x6a\ +\x14\x1a\x42\x10\x16\x36\x12\x17\x37\x14\x18\x38\x14\x18\x3a\x14\ +\x18\x39\x17\x1a\x3b\x18\x1b\x3e\x18\x1b\x3d\x15\x17\x39\x35\x55\ +\xa6\x3e\x62\xb4\x5d\x5d\x44\x6e\x60\x0f\x6a\x5f\x0f\x69\x5e\x14\ +\x62\x60\x1a\x6a\x6b\x20\x87\x8b\x5b\x6f\x7c\x7a\x7a\x80\x3f\x86\ +\x87\x2f\x00\x00\x00\x2e\x32\x2f\x2b\x2e\x2c\x31\x30\x2e\x34\x34\ +\x2f\x34\x35\x32\x37\x38\x39\x38\x3a\x39\x3f\x43\x44\x41\x43\x40\ +\x36\x3c\x3a\x37\x3d\x3c\x3f\x40\x41\x3f\x42\x44\x47\x45\x43\x4f\ +\x4d\x4b\x48\x49\x48\x41\x40\x3e\x3d\x3d\x3a\x31\x30\x2f\x34\x32\ +\x30\x30\x30\x2c\x43\x41\x3d\x56\x55\x53\x54\x57\x57\x4d\x56\x5b\ +\x43\x50\x59\x3f\x4b\x53\x44\x4c\x57\x52\x5b\x60\x4e\x58\x5d\x4e\ +\x62\x6e\x50\x6e\x7f\x52\x76\x88\x51\x6e\x79\x50\x6d\x72\x4a\x6a\ +\x76\x3e\x60\x69\x42\x5a\x60\x3f\x55\x5a\x37\x4f\x54\x51\x71\x80\ +\x4f\x68\x74\x55\x78\x8d\x58\x77\x86\x56\x71\x7f\x4e\x71\x80\x4f\ +\x73\x83\x53\x74\x7f\x53\x71\x7e\x49\x67\x70\x42\x62\x66\x41\x62\ +\x61\x44\x66\x6b\x4f\x72\x81\x50\x77\x87\x4e\x74\x83\x41\x62\x6f\ +\x2f\x47\x4d\x41\x5d\x69\x51\x76\x8a\x5b\x7c\x8f\x59\x77\x89\x58\ +\x7d\x90\x58\x7f\x92\x62\x83\x94\x5c\x79\x8b\x89\x9a\xa1\x92\x9a\ +\x9b\x69\x70\x73\x3e\x53\x58\x3e\x5c\x67\x30\x50\x6f\x12\x49\x9a\ +\x10\x4a\xa0\x15\x4b\x9a\x2d\x4c\x73\x35\x52\x71\x32\x4f\x66\x30\ +\x4f\x67\x2f\x54\x70\x2b\x51\x75\x34\x50\x80\x21\x39\x62\x19\x2f\ +\x51\x15\x29\x48\x1c\x2a\x5c\x5b\x73\xa9\xd8\xdd\xde\x48\x4a\x4e\ +\x3d\x3a\x3c\x6c\x67\x69\x5d\x5b\x5d\x2a\x31\x28\x4f\x5d\x3f\x4c\ +\x61\x58\x3b\x49\x2b\x32\x39\x18\x18\x1e\x0b\x06\x06\x03\x07\x08\ +\x06\x06\x07\x06\x05\x07\x07\x09\x0d\x0f\x08\x0b\x0a\x09\x0c\x0f\ +\x06\x07\x0a\x3b\x3a\x3a\xea\xef\xf4\x8b\x98\x9f\x66\x69\x6f\xb6\ +\xb1\xb2\xf0\xf1\xf5\xe6\xec\xf2\x88\x8e\x92\x1b\x1d\x1f\x0a\x0c\ +\x0b\x0c\x0b\x08\x0c\x09\x06\x0c\x09\x07\x0e\x0a\x09\x0d\x0b\x09\ +\x0d\x0a\x08\x0d\x0b\x08\x10\x0c\x08\x0f\x0f\x0f\x0d\x14\x25\x09\ +\x17\x30\x05\x13\x25\x40\x4a\x5a\xb9\xb7\xb9\xc3\xc0\xc4\x68\x64\ +\x67\x0e\x0e\x0d\x14\x19\x21\x0e\x4c\x8d\x10\x50\x8c\x13\x4b\x81\ +\x1d\x4b\x73\x46\x6d\x8d\x7b\x94\xc7\x55\x6d\xc0\x47\x5e\xa7\x29\ +\x39\x76\x10\x18\x45\x11\x16\x3c\x14\x18\x3c\x15\x19\x3d\x16\x1a\ +\x3e\x18\x1a\x3f\x17\x1b\x40\x17\x1a\x3d\x31\x41\x84\x6b\x7f\xd4\ +\x6a\x67\x57\x65\x5b\x17\x66\x5b\x11\x63\x5a\x13\x6d\x69\x1f\x76\ +\x73\x20\x7a\x7b\x23\x83\x84\x3a\x8a\x8c\x37\x90\x91\x34\x00\x00\ +\x00\x2f\x38\x34\x2a\x2c\x2b\x2d\x2f\x2d\x39\x3a\x36\x30\x31\x2e\ +\x2e\x2e\x2c\x31\x33\x2f\x31\x31\x30\x30\x31\x2e\x2d\x2e\x2c\x2c\ +\x2d\x27\x3f\x3d\x3b\x35\x34\x32\x2e\x2f\x2d\x3c\x3b\x39\x3e\x3d\ +\x3d\x40\x3d\x3d\x3d\x3c\x38\x30\x34\x31\x2f\x32\x2f\x28\x2a\x26\ +\x31\x31\x2d\x37\x35\x2e\x48\x47\x42\x53\x55\x56\x54\x5b\x61\x47\ +\x4d\x53\x40\x47\x4b\x49\x55\x59\x4c\x60\x6f\x57\x7f\x98\x57\x7c\ +\x90\x55\x7a\x8b\x4f\x74\x84\x4f\x70\x83\x50\x70\x7e\x3e\x5f\x61\ +\x40\x59\x60\x3b\x50\x53\x3d\x5a\x68\x4d\x71\x83\x54\x72\x7e\x50\ +\x67\x71\x52\x67\x74\x52\x73\x89\x52\x73\x7e\x4b\x6c\x72\x4d\x68\ +\x71\x4c\x6b\x78\x4b\x6b\x78\x44\x65\x6c\x57\x72\x7b\x63\x74\x79\ +\x53\x70\x75\x54\x76\x86\x55\x78\x8a\x4b\x73\x84\x35\x56\x5d\x4f\ +\x6e\x80\x5d\x80\x94\x66\x85\x95\x62\x81\x8e\x55\x75\x81\x53\x75\ +\x7f\x5d\x7d\x8b\x5c\x7a\x8c\x85\x98\xa2\x6d\x76\x79\x3c\x52\x57\ +\x3d\x53\x56\x42\x5b\x5b\x3d\x54\x58\x34\x57\x7a\x13\x4e\xa3\x15\ +\x4d\xa2\x1d\x52\x99\x30\x4f\x6f\x36\x51\x64\x33\x4c\x59\x2e\x54\ +\x79\x34\x51\x86\x38\x4c\x7e\x2d\x44\x68\x15\x2f\x55\x18\x31\x5a\ +\x0a\x1b\x3a\x2f\x3c\x5c\xc1\xc7\xd1\x58\x60\x64\x0c\x0f\x10\x0c\ +\x0c\x0d\x0d\x0f\x12\x39\x4e\x5f\x4f\x75\x8d\x54\x72\x7c\x67\x79\ +\x64\x4e\x63\x4a\x43\x56\x4b\x21\x33\x43\x06\x0b\x13\x06\x08\x07\ +\x06\x0a\x0e\x16\x1e\x20\x23\x2c\x30\x08\x0b\x0e\x07\x0a\x0d\x09\ +\x0b\x0f\xbd\xbd\xc1\xd4\xdd\xe2\x73\x7e\x83\x2a\x2b\x2c\x33\x2f\ +\x2e\x2e\x28\x2c\x1b\x1c\x1e\x0a\x0d\x0c\x0f\x12\x0d\x0d\x0b\x08\ +\x0d\x08\x06\x0d\x09\x06\x0e\x0a\x0a\x0d\x0a\x07\x0d\x08\x06\x0e\ +\x0d\x12\x0e\x11\x16\x0b\x18\x2f\x09\x18\x31\x09\x18\x31\x0a\x1c\ +\x35\x0b\x1c\x37\x21\x26\x31\x26\x21\x1e\x0d\x0d\x0e\x02\x01\x00\ +\x1b\x23\x2d\x14\x59\xa1\x11\x51\x8b\x15\x51\x7b\x15\x4a\x73\x29\ +\x4c\x71\x5e\x76\xaa\x78\x92\xd2\x8e\xa6\xe3\x61\x79\xcc\x4c\x69\ +\xbe\x25\x38\x7a\x11\x19\x46\x16\x1a\x41\x18\x1c\x43\x18\x1c\x3f\ +\x16\x19\x3c\x15\x19\x3b\x1a\x23\x53\x60\x78\xdc\x64\x72\xa0\x6d\ +\x65\x2d\x66\x5d\x1e\x5d\x5f\x1c\x7a\x7b\x1a\x8b\x8f\x31\x89\x8c\ +\x30\x81\x83\x28\x8b\x8a\x28\x8d\x8c\x2c\x00\x00\x00\x2f\x3a\x34\ +\x2f\x34\x31\x37\x41\x3a\x39\x40\x3b\x2a\x2c\x25\x24\x21\x1d\x21\ +\x1e\x1a\x22\x21\x1e\x28\x25\x24\x26\x24\x22\x29\x2a\x26\x3e\x3b\ +\x37\x35\x32\x2e\x28\x26\x28\x3a\x3a\x39\x3f\x3f\x3b\x3f\x3e\x3b\ +\x39\x3a\x36\x31\x37\x32\x30\x36\x30\x29\x28\x26\x2d\x2e\x28\x28\ +\x2b\x26\x30\x31\x2c\x42\x43\x3e\x60\x64\x64\x4f\x52\x52\x41\x46\ +\x47\x38\x44\x42\x40\x57\x5b\x50\x68\x68\x48\x5e\x64\x4c\x68\x71\ +\x4f\x72\x7a\x50\x6f\x79\x48\x6a\x6f\x3b\x60\x66\x3c\x54\x56\x32\ +\x44\x46\x3c\x55\x5d\x4c\x6b\x78\x4d\x6c\x7b\x4b\x6d\x7c\x4a\x6b\ +\x70\x49\x67\x69\x45\x62\x69\x49\x6a\x72\x46\x65\x6f\x4e\x74\x89\ +\x51\x77\x8b\x50\x6c\x7b\x5e\x6b\x6e\x4d\x59\x61\x50\x6f\x7f\x54\ +\x74\x82\x56\x73\x80\x51\x78\x88\x36\x5b\x63\x51\x78\x89\x56\x7a\ +\x88\x54\x73\x7d\x4e\x6c\x76\x4d\x72\x83\x4f\x78\x90\x5e\x87\x9b\ +\x65\x87\x9b\x6a\x81\x91\x59\x73\x79\x3d\x54\x58\x3b\x4d\x4c\x32\ +\x44\x44\x45\x5c\x5f\x4c\x61\x60\x2b\x46\x6d\x0f\x4a\x9f\x15\x50\ +\xa2\x21\x4b\x83\x30\x4d\x6c\x2f\x50\x6f\x38\x51\x8c\x3a\x4d\x85\ +\x3c\x4f\x7b\x3c\x4f\x78\x39\x4d\x8e\x3c\x4d\xb6\x39\x4c\xad\x37\ +\x4d\x84\x9f\xab\xbc\xd2\xd9\xdc\x36\x3e\x45\x0b\x0f\x12\x0d\x11\ +\x16\x1c\x29\x38\x3c\x58\x74\x60\x7c\x8b\x62\x7a\x88\x56\x6c\x84\ +\x3f\x52\x6e\x32\x49\x69\x1f\x35\x4f\x0b\x15\x22\x0a\x12\x1c\x07\ +\x0c\x10\x0f\x13\x1c\x0b\x0f\x15\x0b\x0e\x15\x0a\x0e\x14\x20\x21\ +\x28\xdb\xdd\xe1\xc8\xd2\xd9\x45\x4e\x52\x1b\x1a\x1b\x10\x12\x13\ +\x09\x0b\x0b\x10\x12\x0f\x41\x3f\x2a\x40\x32\x1b\x16\x11\x09\x0d\ +\x09\x07\x0e\x10\x15\x0d\x12\x1b\x0b\x16\x27\x0b\x18\x2c\x0a\x1b\ +\x37\x0b\x1b\x37\x0a\x1a\x37\x0a\x1a\x33\x0a\x1b\x35\x09\x1b\x37\ +\x12\x22\x37\x16\x13\x13\x04\x07\x0a\x06\x09\x0b\x2c\x36\x41\x21\ +\x55\x93\x19\x56\x8c\x11\x53\x8c\x16\x4a\x88\x16\x27\x49\x93\xac\ +\xc7\x96\xa7\xcc\x79\x88\xc4\x6a\x84\xd8\x6c\x88\xdc\x6b\x89\xe0\ +\x56\x73\xc8\x27\x3c\x7d\x1a\x21\x49\x1c\x1e\x3f\x1a\x1f\x42\x18\ +\x1c\x40\x16\x1b\x3f\x52\x6d\xc0\x7a\x97\xcc\x65\x77\x4c\x58\x5b\ +\x18\x61\x65\x15\x6e\x70\x23\x80\x83\x27\x86\x86\x2a\x88\x89\x28\ +\x8a\x8c\x29\x9a\x9d\x34\x00\x00\x00\x33\x3f\x38\x31\x39\x34\x2e\ +\x30\x2c\x3b\x3c\x37\x26\x27\x23\x26\x24\x23\x21\x20\x1d\x22\x20\ +\x1c\x29\x28\x25\x29\x2b\x28\x28\x29\x25\x3b\x3a\x36\x33\x31\x2a\ +\x2a\x29\x27\x34\x35\x32\x3e\x3c\x39\x3a\x37\x33\x3a\x3a\x36\x35\ +\x38\x34\x2e\x32\x2e\x2a\x2b\x28\x2d\x2f\x2b\x2f\x30\x2d\x31\x34\ +\x34\x36\x3c\x3a\x60\x63\x64\x5d\x63\x65\x58\x5c\x5a\x31\x39\x32\ +\x52\x59\x5a\x4f\x53\x51\x3b\x42\x42\x46\x5a\x62\x4a\x63\x6d\x4a\ +\x67\x71\x47\x68\x6d\x40\x61\x65\x3b\x55\x59\x34\x4a\x51\x42\x63\ +\x6f\x4b\x6f\x7c\x4d\x70\x78\x49\x67\x6f\x46\x64\x67\x45\x5d\x60\ +\x48\x62\x6c\x4c\x6d\x78\x4f\x70\x7e\x56\x76\x83\x55\x76\x86\x54\ +\x70\x86\x55\x6b\x81\x5a\x79\x8f\x58\x80\x93\x58\x7c\x8e\x57\x7a\ +\x87\x59\x7e\x90\x4e\x7a\x94\x55\x85\x91\x4f\x76\x84\x4e\x76\x81\ +\x52\x7a\x8a\x55\x80\x95\x55\x85\x9b\x5d\x87\x96\x66\x85\x91\x5b\ +\x75\x80\x44\x5d\x5e\x33\x46\x43\x34\x44\x42\x35\x43\x42\x3d\x51\ +\x53\x4f\x6b\x78\x5e\x7d\x88\x2d\x49\x6e\x12\x4a\x9d\x17\x4d\x9c\ +\x26\x47\x71\x36\x50\x8b\x39\x4c\x94\x3e\x50\x88\x3e\x4e\x8c\x3e\ +\x4f\x94\x3c\x4f\xa7\x3d\x4e\xa7\x3d\x53\x7d\x46\x5b\x86\x85\x8d\ +\xb3\xf7\xf9\xfc\xf9\xff\xff\x8d\x9c\x9d\x3b\x49\x53\x2f\x3c\x4a\ +\x32\x41\x4d\x55\x69\x7c\x47\x59\x6b\x44\x5a\x70\x43\x59\x71\x38\ +\x4d\x64\x2b\x41\x5f\x44\x70\x9a\x21\x3b\x57\x11\x1c\x29\x06\x0a\ +\x0f\x0a\x0f\x16\x0d\x12\x1c\x0b\x0f\x17\x0c\x11\x1a\x41\x42\x49\ +\xea\xed\xf0\xde\xe6\xea\x8b\x94\x97\x4a\x56\x59\x39\x45\x4a\x2f\ +\x36\x39\x4b\x46\x30\x60\x51\x29\x43\x43\x22\x17\x2c\x48\x1b\x47\ +\x85\x11\x31\x62\x0b\x23\x4d\x0b\x1e\x3a\x14\x24\x3d\x23\x35\x4b\ +\x37\x50\x63\x2b\x3d\x4e\x2f\x42\x48\x43\x63\x79\x42\x5c\x6c\xa5\ +\xad\xaf\x7d\x88\x8a\x5a\x66\x6a\x31\x3b\x47\x25\x58\x9c\x1f\x5c\ +\xa7\x0c\x5a\xad\x08\x55\xad\x33\x5c\x8b\x71\x70\x6e\x6c\x72\x89\ +\x44\x53\x89\x5f\x78\xbe\x79\x95\xe2\x79\x93\xdf\x72\x8f\xe0\x77\ +\x93\xeb\x5b\x77\xca\x33\x44\x82\x22\x29\x58\x1c\x20\x46\x1a\x1e\ +\x45\x3a\x45\x77\x63\x73\xa7\x64\x70\x5c\x69\x71\x30\x60\x64\x1f\ +\x6f\x73\x23\x7e\x81\x24\x7f\x83\x28\x82\x83\x20\x8e\x8e\x2d\x6e\ +\x6c\x23\x00\x00\x00\x35\x43\x3b\x31\x3a\x35\x34\x3d\x39\x39\x38\ +\x35\x27\x25\x21\x24\x24\x20\x22\x21\x1d\x22\x23\x1f\x29\x25\x23\ +\x29\x2c\x28\x28\x2a\x26\x3a\x38\x33\x2f\x2e\x29\x27\x27\x24\x35\ +\x37\x33\x3e\x3d\x39\x36\x37\x32\x33\x36\x30\x31\x38\x31\x30\x33\ +\x2f\x2b\x2b\x29\x2b\x2f\x29\x2e\x31\x2d\x34\x35\x2f\x36\x3a\x34\ +\x4f\x52\x50\x54\x56\x55\x48\x4b\x45\x2c\x2e\x27\x4d\x51\x4e\x52\ +\x52\x4a\x2e\x32\x33\x50\x5d\x67\x56\x6c\x79\x61\x7e\x8f\x62\x7f\ +\x91\x4b\x6c\x78\x39\x54\x5a\x44\x62\x6c\x50\x74\x7e\x51\x76\x7e\ +\x4a\x68\x71\x48\x60\x6d\x47\x61\x6f\x42\x60\x6b\x46\x63\x6e\x49\ +\x61\x6a\x4d\x65\x6c\x51\x6e\x7a\x57\x77\x8a\x5c\x7f\x91\x5a\x82\ +\x92\x57\x7e\x8b\x53\x7a\x83\x51\x72\x7b\x58\x72\x7a\x60\x7d\x8a\ +\x59\x7d\x83\x53\x79\x80\x50\x73\x77\x4f\x72\x75\x4e\x6c\x72\x4f\ +\x69\x6e\x4e\x69\x6c\x4a\x5d\x5c\x57\x6c\x76\x59\x71\x7f\x41\x57\ +\x5c\x36\x49\x47\x33\x42\x3e\x3a\x47\x45\x42\x53\x52\x48\x58\x57\ +\x42\x4e\x45\x32\x37\x2f\x1d\x32\x57\x11\x48\x9a\x18\x4c\x98\x27\ +\x4f\x93\x3b\x53\x96\x40\x53\xa6\x41\x50\x95\x43\x57\xa5\x41\x55\ +\x9d\x38\x50\x7b\x41\x59\x92\x43\x54\x83\x67\x69\x6d\xdd\xde\xe1\ +\xf1\xf6\xfa\x78\x80\x81\x3f\x4f\x5f\x27\x33\x3d\x45\x59\x68\x59\ +\x71\x84\x22\x2e\x36\x3c\x50\x5e\x52\x6b\x82\x50\x66\x7a\x36\x54\ +\x73\x3f\x67\x96\x24\x41\x68\x24\x3b\x5d\x0a\x12\x1f\x0f\x18\x22\ +\x19\x2c\x47\x12\x20\x33\x0d\x15\x25\x0e\x14\x1b\x69\x6b\x6e\xe8\ +\xec\xf0\xf9\xfd\xff\xf5\xfb\xff\xba\xc5\xcc\x3f\x43\x47\x4d\x4c\ +\x30\x52\x67\x25\x1a\x28\x20\x23\x56\x9d\x23\x5c\xaf\x21\x5c\xb1\ +\x26\x56\x99\x38\x51\x6c\x52\x6e\x7d\x5f\x82\x94\x50\x6c\x83\x48\ +\x63\x77\x4f\x6f\x7b\x64\x8a\x99\x5b\x7b\x88\xa0\xa7\xaa\xf3\xf8\ +\xfc\x93\x9d\xa3\x44\x4f\x57\x23\x5f\xab\x22\x60\xaf\x20\x5b\xa9\ +\x18\x59\xad\x27\x5c\x9d\x50\x55\x3d\x6c\x62\x36\x79\x74\x67\x80\ +\x90\xad\x8a\xa3\xe4\x86\x9e\xe6\x81\x9a\xe5\x82\x9a\xe3\x84\x9c\ +\xea\x7c\x97\xe3\x5a\x71\xb7\x3b\x49\x7f\x24\x2c\x54\x1f\x22\x3d\ +\x21\x22\x1b\x4a\x4f\x1b\x71\x79\x2b\x78\x7e\x2a\x72\x76\x23\x7d\ +\x7e\x23\x7d\x7f\x27\x71\x71\x2d\x64\x64\x28\x68\x6a\x29\x00\x00\ +\x00\x3a\x48\x42\x31\x38\x32\x31\x3a\x36\x38\x3c\x36\x28\x28\x24\ +\x25\x27\x1f\x25\x27\x22\x26\x24\x20\x27\x25\x20\x2a\x2a\x27\x2a\ +\x2b\x26\x36\x34\x31\x2e\x2c\x2b\x28\x2b\x26\x32\x36\x31\x3c\x3e\ +\x39\x36\x38\x33\x34\x37\x31\x32\x38\x32\x33\x34\x32\x2d\x2d\x2a\ +\x2c\x2f\x2a\x2e\x30\x2e\x29\x2b\x26\x29\x2c\x27\x2d\x2e\x27\x36\ +\x36\x33\x36\x3b\x37\x2c\x34\x2d\x3a\x41\x3c\x3e\x3f\x36\x3b\x43\ +\x42\x65\x70\x76\x72\x80\x82\x77\x7f\x7b\x7e\x85\x7f\x76\x8a\x8f\ +\x44\x5b\x62\x5e\x74\x7f\x5c\x7d\x8c\x56\x77\x88\x52\x6e\x87\x4d\ +\x60\x78\x4f\x63\x75\x4f\x70\x82\x51\x71\x83\x56\x6d\x7b\x55\x6f\ +\x80\x58\x70\x7d\x5a\x76\x83\x57\x7b\x8a\x57\x7f\x92\x52\x70\x7e\ +\x47\x5b\x5f\x32\x39\x33\x33\x35\x30\x39\x3f\x3c\x37\x3e\x39\x36\ +\x3d\x3a\x34\x3c\x33\x31\x38\x32\x30\x34\x30\x38\x43\x41\x3e\x49\ +\x4a\x40\x4c\x4e\x50\x61\x67\x54\x67\x6f\x43\x50\x52\x37\x4a\x45\ +\x32\x3f\x39\x35\x3f\x3d\x30\x32\x2e\x2c\x2d\x28\x2d\x2f\x2b\x27\ +\x28\x24\x25\x28\x22\x20\x39\x5b\x13\x4c\x9a\x1a\x51\xa0\x28\x51\ +\x9a\x3e\x55\x95\x42\x59\x9f\x44\x58\xa5\x4d\x5f\x9d\x3b\x56\x97\ +\x2c\x56\xa3\x38\x49\x58\x55\x4c\x3b\xc3\xc2\xc1\xea\xef\xf2\x4e\ +\x5b\x5f\x3d\x4e\x5a\x3a\x4b\x57\x51\x67\x76\x50\x64\x73\x35\x46\ +\x55\x45\x5b\x6c\x55\x6a\x7c\x2d\x40\x53\x32\x49\x64\x28\x43\x69\ +\x29\x49\x74\x26\x43\x65\x0c\x13\x20\x0d\x14\x1c\x21\x35\x54\x24\ +\x3d\x61\x1d\x34\x55\x16\x29\x41\x1a\x25\x35\x90\x92\x95\xed\xf0\ +\xf3\xeb\xf0\xf4\xbd\xc6\xcb\x47\x4e\x4c\x57\x66\x2b\x3f\x5c\x1d\ +\x15\x38\x5c\x23\x5b\xa9\x21\x5b\xad\x27\x59\xa0\x3b\x59\x78\x5a\ +\x76\x87\x5d\x76\x84\x5a\x6c\x73\x50\x66\x73\x47\x5c\x65\x4b\x5a\ +\x60\x49\x56\x58\x45\x4b\x4d\x59\x61\x66\xdb\xe0\xe4\xca\xd6\xda\ +\x9d\xa7\xa8\x3f\x69\x9d\x21\x5e\xb2\x22\x5b\xa8\x24\x5d\xac\x2a\ +\x63\xb1\x3b\x64\x8f\x59\x60\x40\x66\x5e\x28\x83\x81\x61\x9d\xa4\ +\xad\xaf\xc4\xf0\xa7\xbc\xeb\x90\xa8\xe4\x8c\x9e\xce\x95\xa7\xcd\ +\x8d\x9f\xc9\x8a\x9c\xcb\x6d\x7f\xb3\x41\x48\x53\x25\x26\x13\x2e\ +\x31\x0e\x6d\x75\x1e\x7e\x84\x26\x80\x83\x29\x71\x75\x27\x65\x67\ +\x30\x56\x5f\x49\x5c\x5d\x33\x66\x66\x2d\x00\x00\x00\x3a\x47\x43\ +\x33\x40\x3a\x34\x3b\x33\x39\x3e\x3a\x2c\x2e\x26\x24\x26\x1f\x26\ +\x26\x20\x28\x26\x22\x24\x23\x1e\x29\x2c\x25\x29\x2d\x26\x32\x33\ +\x30\x2c\x2b\x28\x2a\x2e\x28\x32\x3c\x38\x36\x3d\x35\x34\x37\x33\ +\x31\x35\x30\x34\x3c\x35\x33\x39\x33\x2c\x2d\x28\x2b\x2e\x2a\x2e\ +\x32\x2b\x2a\x2c\x28\x2b\x2e\x25\x2a\x2c\x26\x2e\x2e\x2c\x36\x39\ +\x38\x36\x3f\x3d\x33\x3a\x37\x2a\x2d\x28\x3a\x42\x42\x52\x55\x56\ +\x62\x6a\x67\x58\x63\x61\x47\x54\x53\x6f\x74\x6f\x50\x69\x71\x5d\ +\x75\x81\x63\x7a\x86\x5f\x78\x82\x5e\x76\x85\x5e\x74\x84\x55\x6f\ +\x85\x53\x70\x83\x4c\x6a\x7a\x4c\x6b\x7a\x53\x78\x87\x50\x73\x7f\ +\x55\x7c\x90\x55\x76\x8f\x4c\x69\x78\x45\x5c\x6b\x3a\x48\x4c\x2a\ +\x31\x31\x29\x2d\x2c\x28\x2a\x28\x2a\x2d\x28\x30\x33\x31\x30\x38\ +\x33\x2f\x39\x34\x2d\x33\x31\x36\x3a\x38\x37\x3c\x3a\x32\x36\x31\ +\x37\x39\x35\x35\x37\x33\x2b\x2a\x27\x32\x41\x3c\x2f\x3d\x3d\x2f\ +\x36\x33\x2c\x2c\x28\x2c\x2e\x28\x30\x34\x31\x2c\x2d\x2b\x29\x2c\ +\x26\x2b\x2e\x29\x23\x3d\x5e\x15\x4a\x9b\x17\x50\x9f\x27\x52\x94\ +\x33\x5c\xa3\x45\x5e\xae\x49\x59\xb0\x3f\x50\x94\x29\x58\x9f\x43\ +\x4c\x52\x47\x37\x1f\xa6\xa1\x9b\xd9\xe1\xe2\x68\x79\x7d\x48\x5b\ +\x66\x46\x58\x61\x4f\x62\x6d\x49\x5c\x69\x47\x5b\x6c\x55\x6a\x7a\ +\x4e\x65\x73\x38\x51\x67\x2d\x3d\x53\x21\x31\x4e\x2a\x46\x72\x34\ +\x4f\x73\x02\x08\x0f\x11\x20\x31\x1a\x31\x51\x33\x4e\x73\x23\x3d\ +\x5e\x29\x41\x65\x1f\x38\x59\x33\x48\x64\xc7\xd0\xdb\xee\xf2\xf7\ +\xbe\xc8\xce\x6f\x84\x88\x4c\x74\x43\x28\x47\x3c\x20\x52\x9d\x1f\ +\x59\xaa\x21\x5b\xac\x2a\x51\x83\x4b\x61\x6d\x50\x61\x63\x4b\x54\ +\x58\x4a\x50\x54\x40\x48\x49\x41\x47\x4c\x42\x47\x4b\x44\x4d\x50\ +\x4c\x54\x58\x4e\x58\x5f\x94\x98\x9c\xe6\xe8\xeb\xa2\xa7\xa9\x52\ +\x57\x5d\x2b\x49\x6f\x1a\x55\xa8\x1b\x55\xa7\x21\x5b\xab\x26\x61\ +\xae\x33\x63\x96\x4a\x61\x64\x5f\x5c\x31\x6f\x64\x35\x85\x82\x61\ +\xa5\xae\xa4\xa3\xb4\xd0\x93\x9b\x9b\x8d\x8e\x6d\x83\x89\x62\x8f\ +\x97\x8c\x81\x87\x75\x6c\x72\x37\x69\x6d\x1f\x61\x67\x0f\x7c\x7e\ +\x17\x86\x88\x20\x81\x80\x23\x65\x66\x26\x61\x61\x2f\x5b\x5e\x3a\ +\x58\x59\x2f\x63\x65\x2f\x00\x00\x00\x37\x47\x40\x2e\x37\x2e\x31\ +\x3a\x35\x36\x3d\x3b\x2b\x2b\x25\x26\x29\x23\x25\x28\x21\x26\x26\ +\x22\x28\x26\x23\x2b\x2e\x29\x2e\x33\x2e\x34\x35\x33\x2b\x2e\x26\ +\x2c\x33\x2d\x33\x3d\x37\x36\x3d\x39\x35\x3d\x39\x35\x37\x32\x31\ +\x35\x30\x32\x36\x2f\x2c\x30\x2b\x2d\x31\x2a\x2c\x30\x29\x2a\x2b\ +\x27\x2b\x2e\x27\x2c\x2d\x2a\x2c\x30\x2a\x33\x38\x36\x42\x4e\x4d\ +\x34\x3b\x36\x2d\x32\x2f\x3b\x3f\x3f\x40\x46\x43\x53\x5c\x5f\x5e\ +\x68\x69\x4a\x56\x58\x5d\x68\x6c\x58\x69\x72\x57\x61\x61\x4d\x51\ +\x4d\x48\x52\x55\x4b\x5f\x6e\x50\x7a\x8f\x52\x86\x9a\x57\x86\x9c\ +\x62\x8a\xa9\x50\x75\x89\x50\x7e\x92\x58\x84\x9b\x55\x7f\x94\x54\ +\x76\x8d\x48\x67\x78\x4f\x6a\x78\x40\x51\x56\x31\x39\x36\x2a\x2d\ +\x29\x26\x27\x22\x2d\x35\x2b\x33\x3d\x38\x2f\x35\x31\x32\x37\x32\ +\x2b\x2e\x29\x29\x2a\x26\x29\x27\x26\x27\x26\x20\x27\x29\x25\x28\ +\x29\x25\x26\x27\x22\x2e\x3a\x32\x32\x45\x43\x2c\x33\x2e\x2d\x31\ +\x2d\x2e\x2f\x2d\x2c\x2b\x2a\x2a\x29\x25\x2b\x2e\x27\x2c\x30\x2a\ +\x2c\x2e\x28\x25\x3d\x5a\x14\x4f\xa0\x1a\x51\x9e\x23\x56\xa3\x2b\ +\x5d\xa8\x2d\x5b\xae\x2c\x4f\x8b\x3f\x49\x54\x39\x56\x83\x47\x3b\ +\x27\x81\x7b\x6e\xc7\xcc\xcb\x78\x80\x83\x3d\x4e\x56\x4e\x62\x6b\ +\x4f\x5f\x68\x4e\x5f\x69\x43\x55\x62\x57\x6c\x7d\x57\x6c\x80\x49\ +\x61\x75\x1c\x28\x3b\x21\x36\x53\x1e\x33\x55\x21\x35\x4f\x2c\x43\ +\x61\x18\x25\x3b\x24\x36\x54\x28\x3d\x5e\x1d\x33\x50\x28\x3b\x5c\ +\x23\x3d\x5f\x39\x55\x73\x53\x5f\x6e\xde\xe2\xe7\xd9\xe1\xe6\x8d\ +\xa0\xb8\x26\x5c\x98\x2b\x51\x64\x23\x57\x9b\x1f\x5a\xa9\x1e\x55\ +\xa1\x28\x42\x65\x40\x48\x4b\x3c\x41\x41\x3e\x4b\x55\x4f\x55\x56\ +\x4a\x51\x55\x44\x4a\x52\x48\x50\x52\x49\x50\x54\x4c\x53\x52\x44\ +\x4a\x4b\x4c\x4e\x51\x81\x81\x81\xaa\xb2\xb6\x4e\x52\x55\x43\x48\ +\x49\x34\x48\x61\x1e\x56\xa1\x1d\x58\xab\x21\x59\xa8\x23\x5f\xab\ +\x25\x61\xad\x2e\x63\xa0\x3c\x62\x87\x4c\x63\x60\x6d\x73\x31\x77\ +\x76\x32\x7b\x7d\x3a\x62\x69\x10\x67\x6f\x20\x72\x78\x2c\x74\x79\ +\x24\x68\x6f\x0e\x6d\x75\x15\x78\x7c\x15\x87\x88\x1e\x8b\x8c\x1d\ +\x76\x73\x1e\x60\x5c\x2b\x64\x61\x2e\x66\x63\x30\x62\x61\x2f\x5e\ +\x62\x2d\x00\x00\x00\x32\x41\x3b\x2e\x31\x2a\x35\x40\x3a\x38\x40\ +\x38\x28\x2b\x25\x27\x27\x21\x26\x27\x22\x28\x29\x24\x28\x29\x25\ +\x2c\x2e\x28\x30\x34\x2f\x36\x37\x33\x2d\x2e\x28\x2d\x33\x2f\x2f\ +\x39\x31\x33\x3c\x35\x34\x39\x33\x35\x3a\x35\x34\x3b\x37\x31\x34\ +\x2f\x2b\x2e\x28\x2f\x33\x2f\x2f\x34\x2e\x2c\x30\x2b\x2d\x35\x2b\ +\x2d\x2e\x28\x2d\x32\x2d\x33\x3d\x39\x45\x4f\x4a\x37\x41\x3b\x39\ +\x3f\x3c\x3f\x44\x41\x40\x46\x44\x51\x58\x57\x5f\x67\x67\x4f\x54\ +\x54\x41\x47\x46\x3c\x48\x44\x35\x3c\x3b\x2a\x30\x2d\x47\x6d\x7e\ +\x54\x83\x95\x58\x92\xa4\x5d\x94\xb2\x57\x7c\x8c\x63\x77\x7f\x55\ +\x82\x9a\x55\x7f\x95\x52\x72\x80\x47\x55\x5d\x4d\x5e\x6a\x55\x76\ +\x7d\x4d\x63\x66\x3b\x4a\x4a\x31\x39\x35\x2b\x2e\x2d\x29\x2c\x27\ +\x2e\x33\x2d\x2f\x33\x2f\x2a\x2b\x25\x34\x39\x35\x30\x36\x32\x2c\ +\x2e\x2a\x27\x27\x21\x2a\x27\x22\x28\x28\x22\x2b\x2a\x25\x28\x29\ +\x26\x27\x29\x23\x32\x3c\x36\x2c\x2d\x29\x30\x30\x2f\x2c\x30\x29\ +\x28\x28\x23\x29\x2a\x25\x2c\x2f\x2a\x2d\x33\x2e\x2e\x36\x30\x2c\ +\x2e\x27\x26\x37\x4d\x16\x4d\x9e\x1b\x51\xa0\x21\x59\xa4\x27\x61\ +\xa9\x24\x5e\xab\x34\x4e\x71\x3a\x4a\x60\x48\x46\x47\x64\x55\x44\ +\x98\x96\x91\x41\x44\x42\x2e\x3a\x4b\x41\x53\x61\x50\x63\x6f\x56\ +\x67\x73\x4c\x5e\x6e\x52\x65\x73\x4c\x62\x79\x35\x47\x57\x26\x3f\ +\x57\x2b\x49\x6c\x1f\x34\x53\x1d\x31\x4e\x25\x3d\x5e\x23\x3f\x5f\ +\x22\x3e\x5f\x26\x3f\x5d\x18\x30\x4a\x25\x3b\x59\x3e\x59\x73\x4e\ +\x67\x7f\x34\x4f\x70\x62\x6a\x78\xdb\xe0\xe4\x4e\x61\x81\x1e\x52\ +\xa5\x2b\x5e\x99\x28\x58\x91\x22\x5d\xab\x21\x57\xa3\x20\x3a\x5f\ +\x43\x51\x5e\x43\x50\x57\x4c\x59\x5d\x40\x48\x4e\x4e\x56\x59\x46\ +\x4e\x54\x48\x4e\x54\x44\x48\x4a\x40\x41\x41\x41\x44\x42\x40\x41\ +\x40\x4b\x4c\x4f\x6b\x6c\x71\x4b\x50\x54\x4d\x55\x59\x50\x5b\x5c\ +\x3b\x4e\x65\x1f\x50\x93\x1a\x54\xa6\x1e\x5a\xa8\x21\x60\xb0\x1f\ +\x5e\xac\x25\x60\xb0\x2d\x65\xac\x4b\x69\x72\x5b\x6e\x46\x73\x7d\ +\x29\x63\x6e\x1d\x56\x62\x0f\x64\x6f\x06\x66\x6f\x08\x65\x6f\x08\ +\x65\x70\x13\x72\x78\x09\x80\x81\x17\x89\x87\x1a\x70\x6f\x1c\x5f\ +\x5d\x25\x5b\x58\x28\x57\x58\x2f\x51\x55\x2e\x66\x68\x30\x00\x00\ +\x00\x31\x3d\x38\x32\x38\x33\x2f\x35\x2d\x34\x38\x33\x2b\x2b\x27\ +\x26\x26\x22\x29\x2b\x26\x29\x2a\x25\x2a\x2d\x29\x2f\x33\x2f\x32\ +\x3c\x36\x34\x38\x32\x2c\x2e\x28\x2d\x38\x32\x36\x47\x41\x37\x42\ +\x3c\x37\x3d\x3a\x35\x38\x33\x36\x3e\x38\x35\x3b\x36\x2d\x31\x2c\ +\x2e\x32\x2d\x30\x34\x2c\x2d\x31\x2b\x2d\x31\x2b\x2f\x33\x2e\x30\ +\x33\x31\x2f\x36\x30\x37\x3e\x37\x38\x3c\x39\x3b\x40\x3d\x3e\x43\ +\x3e\x42\x49\x45\x5c\x65\x61\x60\x69\x67\x49\x52\x54\x3a\x48\x46\ +\x38\x48\x47\x2d\x3a\x39\x34\x48\x4e\x4a\x69\x72\x46\x66\x6e\x53\ +\x7e\x91\x5c\x81\x8a\x4a\x67\x6b\x41\x64\x75\x56\x76\x8b\x50\x6d\ +\x7a\x40\x4f\x56\x47\x59\x68\x4a\x57\x65\x49\x61\x64\x46\x63\x6a\ +\x44\x56\x5e\x2f\x35\x30\x2b\x2e\x29\x28\x28\x24\x2b\x2e\x27\x32\ +\x39\x34\x33\x39\x37\x34\x3e\x38\x2f\x33\x2f\x26\x25\x21\x27\x26\ +\x22\x28\x26\x22\x29\x29\x23\x2a\x2d\x27\x2b\x2d\x28\x28\x2a\x24\ +\x29\x2a\x27\x32\x34\x34\x30\x33\x2f\x2f\x32\x2d\x2b\x2e\x29\x2a\ +\x2a\x26\x30\x35\x30\x31\x37\x32\x2b\x2f\x28\x27\x2c\x27\x25\x29\ +\x21\x28\x3c\x4e\x26\x5a\xa2\x1d\x54\xa1\x22\x59\xa6\x22\x5c\xaa\ +\x1d\x54\xa2\x39\x46\x57\x43\x44\x42\x4d\x41\x2c\x4a\x3b\x27\x4b\ +\x3c\x29\x39\x40\x4a\x2a\x3b\x55\x34\x45\x5f\x49\x5b\x6f\x50\x66\ +\x79\x3b\x4b\x5a\x57\x74\x8e\x39\x52\x66\x43\x5f\x79\x4a\x73\x95\ +\x3f\x63\x87\x1c\x34\x50\x30\x4f\x72\x48\x68\x86\x58\x79\x97\x49\ +\x67\x83\x4d\x69\x81\x3f\x5b\x74\x47\x61\x7e\x49\x63\x7c\x2e\x43\ +\x5b\x1c\x2f\x42\x7f\x83\x8b\x3c\x4e\x62\x1c\x48\x89\x20\x58\xa9\ +\x26\x5d\xa6\x23\x57\xa5\x20\x58\xa7\x1d\x3e\x6c\x3e\x4d\x55\x42\ +\x56\x61\x43\x50\x57\x47\x50\x56\x56\x60\x67\x44\x4a\x4a\x40\x42\ +\x3f\x3d\x3c\x3b\x3f\x3b\x39\x43\x46\x48\x43\x47\x49\x46\x4d\x4f\ +\x4b\x52\x54\x4f\x59\x5b\x4e\x57\x5c\x4e\x56\x56\x49\x53\x51\x35\ +\x42\x4f\x21\x4d\x87\x1c\x5a\xa9\x23\x61\xb1\x24\x63\xb1\x21\x5f\ +\xaf\x26\x66\xb8\x24\x60\xb5\x2d\x62\xa7\x69\x75\x33\x73\x7c\x26\ +\x61\x6c\x12\x66\x72\x0d\x6c\x7a\x19\x66\x72\x0b\x62\x6b\x16\x69\ +\x71\x13\x73\x79\x0d\x7c\x7e\x13\x72\x73\x1e\x64\x63\x20\x65\x60\ +\x1f\x5f\x5f\x29\x57\x5b\x31\x58\x59\x2f\x00\x00\x00\x2d\x34\x2d\ +\x30\x3a\x35\x34\x3e\x39\x38\x3e\x3b\x2c\x2c\x28\x28\x29\x25\x29\ +\x2d\x27\x2b\x2d\x28\x2b\x2d\x28\x30\x37\x2f\x32\x3a\x30\x35\x39\ +\x33\x2e\x31\x2c\x30\x3b\x37\x36\x47\x42\x35\x3e\x37\x36\x3d\x37\ +\x38\x3d\x37\x35\x3c\x37\x35\x3b\x35\x30\x34\x32\x30\x35\x31\x30\ +\x35\x2e\x2b\x2e\x27\x2c\x2f\x27\x30\x37\x31\x30\x36\x32\x2f\x33\ +\x2f\x2b\x2d\x28\x34\x37\x34\x30\x33\x2e\x34\x37\x30\x38\x3f\x38\ +\x43\x4c\x44\x44\x52\x52\x47\x53\x5b\x3d\x4c\x4f\x37\x4d\x4d\x34\ +\x4c\x4b\x35\x49\x4a\x49\x62\x6b\x4a\x68\x76\x4f\x6e\x75\x3c\x4d\ +\x4e\x36\x49\x4b\x37\x40\x3f\x34\x3c\x36\x39\x51\x4f\x3b\x47\x49\ +\x44\x5b\x5b\x4c\x62\x68\x47\x61\x69\x53\x6e\x78\x42\x50\x50\x33\ +\x3a\x35\x2c\x2e\x2b\x28\x2b\x26\x30\x33\x2e\x39\x46\x3e\x39\x40\ +\x3d\x34\x3b\x35\x2d\x32\x2d\x29\x2a\x23\x27\x28\x21\x2a\x29\x22\ +\x2a\x27\x22\x2b\x2b\x26\x2e\x34\x2e\x2d\x34\x31\x2b\x2c\x27\x3b\ +\x40\x3f\x32\x33\x30\x2d\x30\x2a\x2d\x30\x2a\x2b\x2c\x29\x30\x37\ +\x30\x31\x3a\x36\x2d\x33\x30\x29\x2b\x26\x27\x2e\x26\x40\x59\x5e\ +\x56\x8b\xaf\x2a\x5c\x9a\x16\x4b\x9c\x18\x52\xa3\x1a\x58\xa8\x23\ +\x57\xa2\x35\x4b\x63\x4a\x41\x2f\x4a\x3d\x28\x4b\x3e\x2a\x44\x40\ +\x38\x36\x3e\x46\x24\x37\x53\x35\x4c\x69\x4c\x5f\x72\x31\x45\x56\ +\x4c\x64\x7b\x4e\x6a\x7f\x44\x5f\x77\x4e\x6c\x87\x48\x64\x81\x3b\ +\x59\x76\x48\x69\x89\x4d\x6b\x89\x5a\x79\x98\x3f\x5b\x73\x46\x62\ +\x7f\x3d\x59\x78\x38\x4f\x73\x2c\x3c\x57\x1f\x2f\x3e\x1b\x2c\x3d\ +\x1c\x2e\x43\x23\x35\x4d\x21\x4d\x8b\x22\x57\xa8\x22\x56\xa4\x26\ +\x5b\xa8\x24\x5e\xac\x1c\x43\x7d\x1f\x2b\x3a\x37\x41\x41\x3e\x4c\ +\x52\x48\x4b\x4b\x41\x47\x4b\x38\x35\x30\x3b\x3a\x38\x41\x43\x43\ +\x45\x43\x45\x4a\x4e\x4d\x4b\x50\x54\x49\x4e\x50\x4c\x52\x53\x4d\ +\x54\x55\x4c\x53\x56\x44\x49\x4b\x3c\x41\x3f\x43\x4b\x49\x41\x4c\ +\x56\x31\x57\x86\x20\x5e\xac\x23\x64\xb5\x26\x6b\xba\x24\x66\xb7\ +\x26\x65\xb3\x29\x65\xb2\x42\x6b\x87\x5b\x6e\x41\x45\x58\x46\x57\ +\x64\x42\x5a\x64\x33\x52\x61\x32\x43\x52\x97\x47\x5d\x82\x57\x65\ +\x48\x62\x63\x20\x65\x64\x1b\x62\x5d\x15\x60\x5c\x12\x61\x5f\x1e\ +\x6e\x73\x34\x6c\x6f\x3a\x00\x00\x00\x2b\x2e\x2e\x3c\x49\x46\x34\ +\x3f\x36\x37\x42\x3c\x2f\x32\x2b\x2c\x2f\x29\x2e\x31\x2a\x2b\x2c\ +\x27\x2c\x2e\x27\x2e\x35\x2e\x31\x39\x31\x35\x3a\x33\x2d\x31\x2b\ +\x31\x3b\x36\x39\x4a\x47\x3b\x47\x45\x38\x40\x3d\x3a\x3f\x3a\x37\ +\x3c\x37\x36\x3e\x37\x34\x38\x36\x32\x35\x31\x30\x34\x2d\x2e\x30\ +\x29\x2d\x30\x2a\x30\x36\x31\x37\x40\x3d\x3c\x43\x40\x30\x32\x2c\ +\x30\x33\x2f\x30\x34\x2f\x30\x34\x2f\x34\x3f\x39\x34\x44\x42\x48\ +\x5d\x62\x50\x61\x69\x48\x5a\x62\x35\x47\x45\x36\x50\x4f\x39\x4f\ +\x51\x3a\x47\x4d\x3a\x43\x47\x3c\x55\x52\x35\x43\x41\x30\x3b\x39\ +\x2b\x30\x2e\x2c\x36\x33\x3a\x57\x55\x3d\x59\x59\x3c\x57\x53\x4c\ +\x65\x69\x51\x72\x7f\x58\x73\x81\x3c\x49\x48\x31\x38\x32\x2d\x30\ +\x2b\x29\x29\x25\x30\x33\x2d\x37\x41\x3b\x39\x43\x40\x37\x3f\x3a\ +\x2f\x36\x2e\x2e\x2f\x2a\x2b\x2a\x25\x2b\x2b\x27\x2b\x29\x25\x29\ +\x26\x22\x2e\x33\x29\x32\x39\x34\x2d\x2e\x28\x39\x3f\x3d\x34\x38\ +\x35\x31\x32\x30\x32\x35\x31\x2f\x30\x2e\x31\x3a\x34\x32\x40\x39\ +\x30\x37\x34\x2a\x2f\x2a\x27\x2c\x26\x55\x79\x87\x61\x8f\xa5\x47\ +\x6e\x8a\x25\x51\x8d\x15\x4e\xa3\x17\x52\xa5\x1d\x59\xac\x26\x59\ +\x9e\x3f\x43\x46\x4a\x3c\x27\x4b\x40\x2e\x47\x3f\x2d\x3e\x3d\x3b\ +\x2a\x38\x4d\x20\x3a\x5f\x28\x39\x4e\x29\x3a\x47\x4f\x64\x78\x4f\ +\x66\x7a\x4a\x61\x75\x50\x67\x7e\x3d\x55\x6a\x4d\x67\x7e\x4e\x68\ +\x82\x50\x6b\x86\x4c\x6e\x8d\x40\x63\x85\x3f\x53\x6f\x36\x50\x75\ +\x29\x45\x69\x19\x2a\x3f\x1c\x2d\x3d\x1e\x30\x46\x1a\x2e\x42\x1c\ +\x37\x56\x21\x54\x9b\x21\x56\xa5\x23\x5a\xab\x25\x5a\xa5\x27\x60\ +\xae\x1e\x50\x93\x12\x21\x36\x39\x44\x46\x37\x3f\x43\x42\x49\x48\ +\x2e\x2d\x2f\x30\x2c\x26\x3c\x3b\x35\x46\x47\x46\x49\x47\x47\x4e\ +\x4e\x50\x4e\x55\x5b\x4b\x52\x58\x4e\x54\x56\x4e\x55\x58\x49\x4f\ +\x52\x40\x47\x47\x41\x48\x46\x4c\x54\x54\x55\x61\x67\x53\x5f\x67\ +\x34\x50\x72\x26\x63\xad\x28\x69\xba\x27\x6a\xb8\x24\x65\xb4\x25\ +\x5f\xae\x27\x5f\xad\x2c\x5c\xa2\x2f\x49\xbb\x3d\x42\xc7\x33\x3d\ +\xb9\x41\x4e\xba\x3d\x49\xdf\x35\x4a\xd9\x38\x48\xc7\x3f\x47\xaa\ +\x46\x4c\x94\x4e\x58\x6f\x6d\x72\x38\x6a\x6d\x19\x70\x77\x27\x67\ +\x6b\x26\x00\x00\x00\x39\x41\x3f\x3c\x43\x3c\x36\x3f\x3a\x36\x42\ +\x39\x2e\x32\x2a\x2c\x2f\x29\x2b\x2d\x25\x2b\x30\x29\x2c\x2c\x25\ +\x2e\x33\x2c\x33\x3e\x34\x33\x3d\x35\x33\x38\x31\x33\x3f\x39\x39\ +\x4d\x4b\x3a\x46\x42\x37\x41\x3c\x38\x3e\x38\x35\x3d\x36\x38\x3f\ +\x39\x33\x37\x32\x32\x36\x2f\x2e\x33\x2b\x2d\x32\x2b\x2d\x30\x27\ +\x30\x37\x31\x3f\x48\x44\x42\x49\x42\x33\x3c\x33\x34\x3a\x37\x35\ +\x3b\x36\x30\x35\x30\x36\x3d\x3a\x36\x41\x3d\x47\x5a\x60\x55\x6a\ +\x6e\x4f\x66\x6b\x40\x60\x65\x41\x61\x63\x3c\x56\x56\x3c\x4d\x4e\ +\x38\x44\x46\x3e\x5a\x58\x3d\x55\x53\x36\x3f\x3d\x2e\x2f\x2d\x2b\ +\x32\x2d\x37\x52\x4c\x3d\x60\x5d\x41\x5e\x62\x4b\x63\x67\x58\x78\ +\x85\x54\x67\x6a\x39\x45\x45\x30\x36\x31\x2c\x30\x2b\x2a\x27\x21\ +\x30\x35\x2e\x38\x45\x3f\x39\x44\x41\x39\x42\x3e\x32\x38\x31\x2b\ +\x2d\x26\x2b\x2b\x27\x2c\x2e\x27\x2c\x2f\x28\x29\x29\x25\x2b\x2d\ +\x25\x2f\x35\x2f\x32\x39\x36\x45\x53\x56\x34\x3a\x34\x2f\x33\x2d\ +\x3e\x46\x49\x2c\x2c\x29\x31\x38\x34\x32\x42\x3a\x32\x3c\x39\x2f\ +\x35\x32\x2d\x35\x32\x54\x76\x84\x52\x76\x89\x52\x77\x89\x4b\x6d\ +\x80\x2d\x51\x81\x14\x53\xa8\x12\x4f\xa4\x21\x5b\xad\x30\x52\x7c\ +\x49\x40\x30\x44\x3a\x28\x4b\x42\x2e\x4e\x41\x2f\x45\x42\x3e\x35\ +\x3d\x46\x1f\x35\x4d\x3e\x55\x68\x45\x5a\x6a\x2b\x36\x45\x46\x5b\ +\x6f\x48\x5c\x70\x53\x6a\x7f\x46\x5b\x6e\x49\x62\x76\x50\x73\x92\ +\x57\x83\xad\x28\x3e\x5e\x20\x3e\x5e\x2d\x4b\x77\x2e\x4f\x79\x30\ +\x50\x7b\x1f\x37\x4f\x1c\x30\x49\x1c\x33\x4c\x24\x50\x8e\x22\x58\ +\xa7\x21\x55\xa3\x22\x58\xa7\x21\x57\xa6\x24\x5b\xaa\x23\x5a\xa6\ +\x14\x2e\x56\x32\x40\x44\x47\x57\x5e\x3b\x40\x40\x35\x36\x34\x2d\ +\x2a\x23\x3e\x3a\x38\x48\x46\x48\x4d\x4b\x4c\x54\x56\x5a\x4c\x52\ +\x55\x4b\x4e\x4f\x4b\x50\x54\x4c\x55\x58\x50\x59\x64\x42\x4e\x52\ +\x44\x45\x48\x50\x58\x5a\x56\x60\x63\x51\x59\x62\x46\x4a\x4f\x39\ +\x4d\x64\x26\x5d\xa3\x24\x64\xb5\x23\x63\xb4\x22\x5c\xad\x25\x5f\ +\xae\x24\x58\xac\x2e\x45\xcd\x39\x37\xe3\x30\x40\xd9\x35\x4f\xd2\ +\x3a\x55\xce\x44\x55\xd9\x41\x55\xd9\x42\x4b\xde\x3f\x41\xda\x3f\ +\x3c\xcf\x49\x4a\xad\x5e\x63\x64\x68\x6f\x3e\x4d\x54\x2c\x00\x00\ +\x00\x3f\x46\x44\x34\x3b\x34\x38\x46\x3f\x38\x40\x39\x30\x34\x2e\ +\x2c\x31\x29\x2c\x2e\x26\x2c\x33\x2c\x2d\x30\x2a\x2a\x2d\x26\x31\ +\x3b\x34\x35\x3f\x37\x32\x36\x2f\x31\x3b\x32\x39\x4e\x4b\x38\x45\ +\x40\x37\x40\x3d\x3b\x41\x3d\x36\x3f\x3d\x37\x3b\x36\x34\x3c\x36\ +\x31\x35\x2f\x2d\x32\x2b\x2f\x36\x2d\x2e\x2f\x27\x34\x3b\x36\x52\ +\x57\x57\x4a\x50\x49\x36\x3e\x37\x37\x3d\x37\x37\x41\x3b\x35\x3a\ +\x36\x3b\x40\x3e\x39\x39\x39\x45\x4f\x53\x51\x66\x6c\x4d\x65\x6f\ +\x44\x65\x6a\x40\x59\x59\x3e\x52\x4f\x3c\x49\x47\x36\x46\x42\x3c\ +\x53\x52\x38\x44\x41\x36\x39\x39\x28\x2b\x24\x29\x2c\x26\x39\x5a\ +\x55\x41\x67\x65\x4a\x71\x75\x4c\x6c\x72\x5b\x79\x85\x50\x65\x6b\ +\x42\x52\x57\x2e\x31\x2c\x2b\x2e\x27\x28\x28\x24\x2d\x31\x29\x3b\ +\x4e\x48\x3c\x48\x45\x37\x3c\x35\x34\x3a\x35\x2f\x31\x2d\x2b\x2c\ +\x2a\x2e\x2f\x27\x2f\x33\x2b\x30\x31\x2f\x32\x37\x33\x36\x3f\x38\ +\x35\x3e\x39\x4e\x5f\x61\x3c\x46\x46\x30\x34\x2d\x35\x3d\x35\x2e\ +\x31\x2e\x30\x3b\x35\x34\x47\x42\x38\x47\x45\x32\x3a\x37\x36\x4a\ +\x4c\x55\x7f\x90\x57\x80\x92\x57\x7d\x8f\x55\x7d\x90\x51\x75\x8a\ +\x31\x53\x7e\x14\x4d\xa3\x1d\x50\x97\x3b\x46\x51\x49\x40\x2f\x52\ +\x44\x31\x4b\x42\x2c\x4d\x42\x2b\x49\x3f\x2e\x46\x3e\x2e\x47\x45\ +\x40\x31\x4b\x69\x2a\x48\x67\x2e\x4a\x66\x4e\x70\x91\x37\x49\x60\ +\x3f\x51\x6c\x1d\x2e\x42\x40\x57\x71\x4b\x68\x86\x43\x6d\x9f\x30\ +\x46\x65\x3d\x66\x8f\x31\x4d\x72\x14\x21\x39\x21\x35\x55\x20\x34\ +\x4e\x1d\x31\x49\x27\x45\x6b\x1c\x56\xa8\x1b\x53\xa6\x1f\x53\xa1\ +\x21\x54\xa3\x21\x56\xaa\x1e\x55\xa4\x1f\x5b\xad\x13\x3c\x76\x2a\ +\x39\x44\x51\x63\x74\x38\x36\x35\x38\x39\x34\x31\x2e\x28\x44\x41\ +\x3d\x4a\x4c\x4c\x4f\x4f\x4f\x53\x59\x5c\x47\x4a\x4e\x4c\x4d\x4d\ +\x53\x58\x5d\x55\x61\x6a\x59\x66\x6d\x4a\x59\x5a\x50\x5b\x5a\x5b\ +\x64\x67\x5f\x6b\x72\x59\x63\x6d\x4a\x54\x5d\x50\x57\x5a\x3e\x56\ +\x67\x2b\x5c\x96\x27\x63\xb2\x23\x60\xb4\x24\x5d\xb0\x24\x5d\xae\ +\x2a\x4e\xc5\x2b\x38\xd4\x29\x4e\xc2\x2c\x4c\xca\x2a\x55\xc4\x32\ +\x5b\xc4\x3a\x5b\xc9\x4d\x5d\xda\x55\x54\xe2\x42\x43\xdc\x48\x44\ +\xdd\x4f\x4d\xdd\x50\x54\xd7\x4f\x58\xd4\x00\x00\x00\x48\x4f\x4e\ +\x33\x39\x36\x34\x41\x3c\x39\x47\x42\x32\x38\x31\x2e\x31\x2b\x2e\ +\x32\x2b\x2c\x2f\x27\x2c\x32\x2b\x2c\x2f\x2a\x33\x3d\x39\x38\x42\ +\x3b\x34\x3c\x37\x2f\x36\x30\x37\x4d\x48\x38\x48\x45\x39\x45\x3d\ +\x38\x41\x3c\x36\x43\x3e\x34\x3b\x31\x37\x3d\x38\x32\x39\x33\x2e\ +\x33\x2d\x30\x34\x2e\x30\x35\x2c\x35\x3c\x37\x51\x54\x4e\x45\x49\ +\x42\x36\x3c\x37\x36\x3c\x36\x38\x41\x3a\x35\x3e\x34\x3a\x3f\x3b\ +\x3b\x3b\x39\x42\x4a\x50\x55\x6a\x74\x4b\x64\x66\x40\x5f\x5d\x41\ +\x5c\x5d\x40\x5a\x5d\x3d\x4b\x4a\x38\x47\x44\x40\x5e\x5c\x3e\x54\ +\x51\x35\x43\x41\x2d\x32\x2d\x27\x28\x23\x31\x44\x3b\x41\x62\x62\ +\x51\x75\x7e\x56\x70\x7c\x5b\x7a\x86\x49\x60\x63\x40\x4c\x4d\x2f\ +\x32\x2c\x2a\x2d\x27\x29\x2a\x25\x33\x39\x33\x3a\x48\x43\x3d\x4e\ +\x49\x38\x3e\x38\x37\x3a\x37\x2d\x2e\x29\x30\x32\x2f\x2f\x35\x2f\ +\x2d\x2f\x2a\x2f\x31\x2c\x32\x35\x2e\x33\x38\x34\x38\x3e\x3d\x46\ +\x55\x56\x38\x43\x41\x35\x3e\x3c\x37\x3c\x39\x36\x3f\x39\x36\x49\ +\x46\x34\x48\x40\x3c\x52\x50\x34\x46\x43\x48\x65\x70\x57\x82\x93\ +\x57\x7d\x8d\x51\x74\x83\x4d\x6c\x7c\x4f\x73\x85\x54\x76\x88\x3e\ +\x5e\x7d\x1b\x50\x9c\x1c\x53\xa6\x2c\x5a\x99\x3d\x4a\x5b\x4a\x42\ +\x35\x4c\x41\x2c\x4b\x40\x2d\x49\x40\x2e\x4f\x43\x2e\x3b\x3a\x37\ +\x30\x4f\x70\x3d\x66\x96\x39\x51\x70\x17\x23\x33\x2c\x46\x67\x28\ +\x42\x63\x28\x45\x67\x32\x58\x83\x36\x54\x7b\x15\x24\x37\x25\x35\ +\x4e\x24\x36\x4f\x1f\x31\x46\x21\x31\x46\x1c\x2b\x42\x2a\x32\x41\ +\x28\x57\x9d\x1a\x54\xa4\x1a\x51\xa5\x19\x4d\x9e\x1c\x50\xa1\x1c\ +\x51\xa4\x1f\x55\xa5\x1e\x59\xab\x1a\x50\x99\x1e\x32\x4d\x48\x56\ +\x57\x43\x49\x50\x39\x3a\x38\x34\x31\x29\x43\x42\x3e\x46\x46\x44\ +\x52\x55\x56\x52\x57\x5d\x4c\x50\x54\x50\x55\x57\x56\x5d\x62\x59\ +\x63\x6b\x51\x5b\x60\x46\x4d\x4b\x4b\x4d\x4b\x4f\x55\x54\x53\x58\ +\x57\x59\x63\x66\x4a\x52\x5a\x45\x4d\x4d\x3e\x55\x54\x3b\x52\x5a\ +\x35\x63\x97\x29\x65\xb2\x21\x5d\xae\x26\x63\xb2\x1f\x55\xa5\x21\ +\x58\xac\x1e\x57\xaf\x1f\x57\xae\x29\x5d\xb6\x2c\x5e\xb4\x36\x65\ +\xb2\x43\x5b\xbe\x44\x45\xe0\x57\x51\xe3\x54\x51\xe4\x4d\x4a\xe3\ +\x4d\x4b\xe3\x59\x57\xe3\x00\x00\x00\x54\x5d\x61\x3f\x48\x44\x38\ +\x44\x3e\x3a\x44\x3e\x34\x3d\x35\x2d\x31\x2b\x2e\x34\x2e\x2f\x36\ +\x2f\x31\x36\x30\x2b\x31\x2a\x33\x3d\x36\x39\x47\x41\x36\x3e\x39\ +\x32\x3b\x36\x39\x4b\x4a\x36\x46\x41\x36\x41\x3d\x38\x42\x3d\x34\ +\x42\x3b\x35\x3e\x36\x34\x38\x33\x31\x35\x2f\x2f\x37\x30\x35\x38\ +\x31\x30\x33\x2e\x34\x39\x37\x3b\x3c\x3b\x36\x3b\x38\x36\x42\x3b\ +\x38\x45\x3e\x3a\x48\x40\x34\x3c\x33\x38\x3e\x3a\x36\x39\x36\x38\ +\x43\x3f\x59\x6f\x7d\x47\x5d\x5e\x41\x61\x5d\x43\x60\x60\x40\x5d\ +\x60\x3c\x4f\x4d\x34\x43\x3c\x40\x5d\x57\x3e\x4f\x4e\x39\x48\x44\ +\x2f\x36\x2e\x29\x29\x25\x31\x3d\x3b\x4a\x6d\x74\x53\x76\x7f\x59\ +\x72\x7c\x5a\x7b\x86\x55\x73\x81\x43\x52\x52\x30\x35\x30\x2a\x2e\ +\x28\x28\x2a\x25\x32\x3c\x34\x3e\x52\x50\x3c\x4b\x47\x38\x40\x3b\ +\x3c\x41\x3f\x34\x38\x36\x2e\x32\x2d\x30\x38\x2f\x2e\x34\x2d\x33\ +\x37\x33\x31\x35\x2f\x2d\x30\x2b\x3a\x40\x3f\x4e\x61\x69\x3e\x50\ +\x50\x3a\x47\x42\x36\x3e\x39\x36\x3f\x39\x3a\x51\x4d\x38\x4f\x4b\ +\x45\x5f\x64\x3d\x51\x54\x59\x7e\x8f\x5d\x7e\x91\x56\x77\x8a\x50\ +\x73\x86\x51\x76\x8c\x54\x7c\x91\x54\x78\x91\x50\x67\x7d\x43\x5b\ +\x75\x23\x4c\x88\x21\x5b\xa9\x26\x5e\xae\x38\x56\x7e\x45\x45\x44\ +\x40\x44\x48\x3e\x41\x44\x46\x46\x41\x42\x3f\x3b\x3f\x53\x69\x30\ +\x55\x85\x16\x30\x56\x24\x38\x55\x31\x45\x60\x28\x3f\x5e\x2d\x4d\ +\x78\x24\x3f\x5b\x16\x2a\x3f\x20\x32\x48\x21\x31\x45\x1f\x32\x4b\ +\x20\x32\x4d\x2b\x2f\x3c\x28\x33\x48\x2f\x39\x55\x22\x4b\x91\x16\ +\x53\xa7\x15\x52\xa5\x13\x4e\xa2\x12\x48\x9b\x17\x4e\xa3\x19\x50\ +\xa5\x1c\x56\xa7\x1e\x5b\xaa\x11\x2c\x54\x3e\x47\x4f\x48\x4a\x4a\ +\x2f\x31\x2a\x35\x33\x2c\x44\x40\x3e\x4c\x4d\x4e\x5a\x5d\x5f\x4f\ +\x56\x5d\x4f\x53\x57\x53\x5b\x61\x51\x57\x5d\x48\x49\x4b\x3a\x3b\ +\x34\x42\x47\x42\x48\x4b\x49\x50\x54\x52\x52\x59\x5d\x51\x59\x5a\ +\x47\x53\x5b\x44\x5b\x64\x50\x60\x6b\x5d\x68\x6f\x4d\x53\x57\x33\ +\x55\x7b\x29\x5e\xa4\x29\x65\xb5\x23\x5c\xac\x25\x5e\xad\x20\x5e\ +\xb0\x1e\x5d\xae\x20\x58\xa7\x27\x5f\xa6\x2d\x63\xa5\x28\x60\xae\ +\x2f\x5a\xc2\x3b\x51\xd0\x46\x50\xd9\x4e\x50\xdf\x4b\x4f\xe0\x46\ +\x48\xdd\x00\x00\x00\x48\x51\x56\x44\x4a\x47\x3c\x47\x46\x39\x42\ +\x3a\x32\x36\x30\x2e\x32\x2e\x30\x37\x32\x30\x35\x2d\x32\x3a\x33\ +\x2d\x30\x29\x32\x37\x32\x39\x49\x42\x38\x43\x3e\x3a\x41\x3e\x37\ +\x46\x41\x3a\x4b\x48\x37\x42\x3a\x39\x43\x3e\x36\x41\x3b\x39\x43\ +\x3d\x37\x3c\x36\x31\x35\x2d\x2f\x38\x2d\x34\x3a\x33\x33\x39\x33\ +\x35\x3a\x36\x3a\x3a\x3b\x35\x3a\x38\x37\x44\x3e\x38\x41\x3e\x37\ +\x3f\x39\x34\x3a\x35\x37\x3d\x3c\x3e\x46\x49\x37\x48\x43\x4f\x69\ +\x6d\x3f\x54\x4f\x42\x5f\x5c\x45\x61\x61\x40\x5f\x5f\x39\x48\x46\ +\x3b\x4f\x4e\x3f\x58\x53\x43\x5c\x55\x3d\x4f\x49\x2e\x34\x2d\x2a\ +\x2d\x29\x31\x36\x34\x4f\x6b\x71\x53\x77\x7d\x54\x6b\x72\x59\x76\ +\x7f\x55\x6e\x77\x3f\x4e\x4c\x2f\x34\x30\x2a\x2d\x26\x27\x2a\x24\ +\x36\x43\x3e\x3f\x57\x55\x3f\x4c\x4a\x44\x50\x50\x38\x3c\x3b\x2f\ +\x32\x2d\x2d\x2e\x2a\x2f\x33\x2d\x2f\x36\x2e\x34\x3a\x36\x30\x33\ +\x2e\x34\x3a\x39\x44\x4f\x56\x56\x6f\x79\x44\x5d\x5e\x36\x45\x41\ +\x39\x43\x3f\x32\x39\x34\x35\x45\x3e\x3e\x5a\x59\x4f\x6c\x73\x4e\ +\x69\x74\x5f\x86\x98\x5a\x7a\x8f\x5c\x7d\x95\x5a\x7c\x91\x53\x72\ +\x88\x48\x5f\x6d\x46\x56\x5f\x50\x5d\x68\x51\x5b\x66\x3d\x44\x4e\ +\x24\x3d\x61\x1b\x4e\x9a\x24\x5c\xab\x2b\x58\x98\x24\x57\x9e\x23\ +\x53\x99\x23\x50\x90\x26\x4c\x84\x28\x50\x86\x21\x51\x98\x1f\x50\ +\x96\x25\x3f\x66\x2d\x40\x62\x26\x4c\x84\x23\x4e\x8e\x21\x48\x7f\ +\x1b\x41\x75\x1c\x3c\x6f\x1e\x3a\x6a\x1d\x41\x7c\x22\x40\x73\x2e\ +\x46\x72\x27\x48\x81\x22\x41\x7a\x24\x42\x77\x18\x55\xab\x17\x54\ +\xa6\x16\x54\xa7\x15\x4e\xa0\x18\x53\xa8\x11\x49\x9f\x15\x50\xa5\ +\x1b\x5a\xaf\x0e\x34\x6b\x47\x51\x5b\x41\x47\x48\x31\x33\x2c\x37\ +\x38\x33\x48\x49\x49\x4e\x4f\x53\x57\x5b\x5d\x4f\x56\x5c\x4d\x52\ +\x57\x49\x4c\x4d\x3c\x39\x37\x34\x30\x2a\x38\x37\x2e\x41\x45\x3d\ +\x4d\x53\x4f\x59\x5f\x61\x5a\x65\x6a\x49\x4e\x50\x4d\x56\x59\x4d\ +\x5a\x5a\x4e\x59\x5b\x47\x52\x55\x47\x50\x52\x41\x4c\x4c\x2b\x47\ +\x63\x29\x57\x96\x28\x65\xb8\x24\x5f\xae\x22\x60\xae\x21\x5c\xac\ +\x1f\x59\xaa\x25\x61\xaf\x24\x61\xb0\x29\x64\xaf\x24\x61\xab\x28\ +\x67\xb5\x21\x57\xb4\x2b\x50\xbf\x34\x51\xca\x3c\x49\xd7\x00\x00\ +\x00\x36\x45\x53\x44\x4f\x52\x3c\x4c\x46\x38\x43\x3e\x34\x3a\x36\ +\x30\x35\x31\x32\x3f\x35\x33\x3d\x33\x2f\x35\x2e\x2d\x33\x2e\x33\ +\x3a\x37\x3c\x4e\x47\x39\x44\x41\x3c\x42\x3e\x37\x41\x3d\x3e\x51\ +\x4e\x3a\x48\x43\x3a\x46\x3f\x31\x3a\x36\x36\x44\x3a\x35\x3e\x34\ +\x30\x36\x2f\x30\x39\x30\x3b\x42\x3d\x36\x40\x37\x39\x40\x3d\x40\ +\x46\x4c\x36\x3e\x3c\x3a\x47\x43\x3b\x4b\x44\x36\x3d\x36\x33\x37\ +\x31\x37\x3a\x3a\x40\x48\x47\x39\x4e\x4b\x41\x60\x5c\x40\x56\x53\ +\x40\x5d\x5a\x45\x62\x63\x43\x62\x65\x36\x47\x45\x38\x4c\x4a\x3d\ +\x51\x4b\x40\x4f\x4a\x3d\x4f\x48\x2c\x34\x2b\x2a\x2d\x27\x2a\x2e\ +\x2b\x4d\x67\x6d\x57\x79\x80\x5b\x79\x88\x54\x6e\x76\x54\x6c\x72\ +\x44\x55\x59\x2e\x33\x2f\x2b\x2f\x29\x2d\x32\x2c\x3c\x4c\x45\x47\ +\x5f\x5c\x45\x55\x53\x44\x51\x51\x41\x4b\x4c\x32\x3a\x35\x2e\x33\ +\x2c\x2f\x33\x2c\x2e\x33\x2b\x36\x41\x3c\x36\x40\x3c\x38\x43\x42\ +\x4c\x57\x5b\x4f\x61\x63\x41\x56\x55\x3c\x4c\x49\x3b\x45\x44\x35\ +\x3f\x3b\x36\x40\x3e\x49\x63\x67\x55\x72\x7b\x4e\x66\x6f\x4d\x63\ +\x65\x42\x51\x57\x3e\x46\x4b\x49\x54\x5d\x4c\x5b\x6b\x4c\x58\x65\ +\x4a\x58\x62\x58\x65\x6f\x4c\x58\x66\x31\x33\x32\x2f\x34\x33\x33\ +\x40\x53\x20\x48\x86\x1c\x5b\xb5\x1d\x57\xac\x20\x5b\xac\x19\x58\ +\xac\x19\x54\xa6\x18\x52\xa6\x19\x53\xa2\x20\x4d\x93\x2d\x41\x64\ +\x2f\x47\x70\x22\x51\x9a\x1e\x53\xa1\x1f\x53\xa1\x1d\x50\x9e\x1f\ +\x46\x8b\x1b\x41\x84\x21\x45\x89\x21\x4a\x8e\x1c\x4f\x9b\x1f\x4b\ +\x92\x22\x45\x85\x23\x3b\x6b\x17\x50\xa5\x16\x50\xa1\x18\x52\xa6\ +\x17\x51\xa3\x14\x4e\xa4\x11\x4b\xa2\x12\x4d\xa4\x1a\x54\xaa\x16\ +\x43\x87\x36\x3d\x47\x3d\x44\x40\x36\x37\x2f\x40\x40\x3b\x4f\x51\ +\x54\x51\x53\x58\x4d\x59\x5d\x3b\x4a\x4c\x3a\x45\x46\x3a\x3b\x39\ +\x36\x38\x34\x35\x36\x2f\x39\x39\x33\x3e\x48\x42\x49\x5b\x61\x58\ +\x61\x65\x55\x60\x65\x4d\x55\x5a\x4d\x53\x59\x40\x48\x4a\x44\x4d\ +\x57\x4e\x54\x54\x4d\x5f\x62\x50\x5f\x5d\x31\x44\x49\x29\x3a\x43\ +\x2a\x4f\x84\x28\x60\xaf\x23\x63\xb1\x23\x62\xb1\x20\x5d\xab\x23\ +\x60\xaf\x25\x60\xac\x2a\x65\xad\x26\x63\xae\x28\x63\xaf\x1e\x5a\ +\xa9\x17\x53\xa9\x1e\x57\xb0\x22\x4f\xb6\x00\x00\x00\x22\x35\x34\ +\x3e\x4a\x44\x3b\x4b\x43\x37\x41\x3b\x35\x3f\x37\x36\x3f\x37\x31\ +\x3a\x31\x33\x41\x38\x2e\x37\x2e\x2d\x33\x2d\x32\x38\x35\x40\x51\ +\x50\x44\x53\x52\x3a\x44\x3b\x30\x3b\x35\x3f\x52\x4e\x39\x43\x3e\ +\x37\x43\x3b\x2e\x30\x2b\x37\x46\x3d\x34\x3b\x36\x33\x3a\x35\x35\ +\x3e\x37\x3e\x47\x42\x34\x3e\x37\x34\x3c\x37\x3d\x43\x44\x37\x42\ +\x3d\x3b\x4d\x47\x3b\x4b\x45\x36\x3f\x3b\x35\x3f\x39\x35\x37\x34\ +\x3c\x40\x40\x3b\x4d\x46\x3d\x5a\x55\x3b\x4f\x4a\x3e\x59\x55\x42\ +\x5b\x56\x41\x64\x61\x38\x4e\x4b\x39\x4a\x45\x42\x61\x5d\x42\x59\ +\x59\x39\x46\x43\x2d\x31\x2b\x29\x2b\x26\x2e\x32\x2e\x49\x64\x6a\ +\x58\x7f\x8a\x64\x86\x95\x53\x6f\x7c\x51\x6a\x76\x44\x54\x54\x2f\ +\x35\x30\x30\x35\x2f\x2f\x36\x2f\x3a\x46\x41\x46\x60\x5d\x44\x54\ +\x54\x41\x4e\x4e\x39\x3e\x3a\x34\x39\x32\x2f\x31\x2c\x2c\x30\x29\ +\x32\x3a\x32\x39\x42\x3e\x3a\x45\x42\x3f\x4a\x49\x46\x51\x51\x46\ +\x57\x57\x44\x59\x58\x40\x51\x4d\x3d\x4b\x4a\x33\x3a\x32\x36\x3c\ +\x37\x3e\x47\x46\x3d\x4d\x4e\x38\x47\x45\x37\x3a\x3b\x3f\x46\x49\ +\x49\x52\x61\x4f\x5b\x6c\x43\x51\x5c\x45\x4d\x4f\x53\x62\x6c\x5a\ +\x6c\x76\x4a\x55\x5f\x29\x29\x25\x3c\x45\x48\x46\x55\x5a\x4e\x5c\ +\x6c\x33\x4c\x72\x1c\x57\xab\x17\x52\xa9\x1c\x59\xa9\x21\x5b\xaa\ +\x1b\x54\xa8\x1e\x56\xa8\x1f\x4e\x92\x2c\x49\x75\x30\x4e\x7c\x23\ +\x53\x9b\x23\x55\xa2\x24\x58\xa2\x19\x50\x9f\x19\x46\x8f\x23\x4b\ +\x90\x21\x48\x8b\x29\x51\x94\x21\x51\x9a\x21\x48\x87\x26\x42\x76\ +\x2a\x3b\x61\x1e\x51\x9f\x16\x50\xa2\x14\x4e\xa1\x17\x51\xa5\x16\ +\x51\xa4\x19\x53\xa8\x16\x4f\xa6\x17\x53\xa7\x19\x4d\x98\x26\x30\ +\x40\x33\x36\x2e\x3c\x3f\x36\x4b\x4d\x4c\x52\x55\x59\x4e\x50\x55\ +\x45\x4c\x50\x42\x53\x4f\x45\x56\x58\x39\x46\x49\x38\x3f\x3d\x36\ +\x43\x41\x3b\x42\x44\x3a\x47\x41\x48\x5c\x60\x55\x61\x67\x4a\x53\ +\x54\x4a\x59\x5b\x46\x4d\x48\x4b\x57\x5b\x47\x57\x5d\x46\x59\x5c\ +\x3e\x52\x55\x3e\x4e\x4f\x38\x4b\x4b\x2b\x3e\x42\x25\x35\x34\x26\ +\x3f\x5e\x2e\x65\xaf\x26\x66\xb2\x23\x61\xaf\x27\x61\xaf\x29\x64\ +\xb0\x28\x62\xaa\x28\x66\xb1\x26\x63\xb1\x25\x63\xb1\x20\x5b\xab\ +\x1f\x5c\xad\x1f\x5c\xaa\x00\x00\x00\x24\x39\x3b\x31\x48\x44\x34\ +\x43\x39\x39\x49\x3f\x35\x41\x3a\x37\x42\x3a\x33\x40\x38\x37\x48\ +\x3e\x30\x3b\x34\x30\x39\x31\x2f\x36\x2f\x47\x57\x57\x43\x56\x54\ +\x37\x40\x35\x2e\x33\x2c\x3e\x47\x44\x39\x44\x3e\x35\x3c\x36\x2d\ +\x2f\x29\x39\x47\x44\x35\x3f\x39\x36\x43\x3f\x38\x46\x3f\x3b\x49\ +\x41\x37\x40\x3a\x3e\x48\x47\x3b\x3d\x3d\x34\x3b\x37\x35\x47\x41\ +\x3a\x49\x46\x3a\x48\x40\x35\x3a\x34\x37\x39\x36\x39\x40\x41\x39\ +\x4c\x48\x3e\x5a\x55\x3b\x4e\x4a\x3d\x59\x57\x42\x5a\x57\x3d\x57\ +\x54\x3a\x54\x54\x3b\x4b\x4b\x47\x67\x64\x46\x5e\x5b\x3d\x4a\x48\ +\x31\x36\x30\x2c\x2b\x26\x2f\x33\x2e\x41\x55\x56\x56\x7b\x84\x5f\ +\x78\x83\x56\x71\x79\x51\x68\x6e\x37\x45\x41\x30\x3a\x35\x2f\x36\ +\x2e\x35\x42\x40\x3a\x46\x44\x4a\x62\x69\x44\x58\x5b\x51\x60\x68\ +\x44\x4d\x4e\x2e\x31\x2c\x2f\x32\x2e\x33\x3a\x32\x37\x41\x3d\x3c\ +\x4b\x48\x3b\x46\x41\x3e\x4c\x49\x48\x54\x58\x44\x55\x5b\x3f\x55\ +\x52\x42\x55\x52\x38\x42\x3a\x35\x41\x40\x34\x3c\x37\x34\x3d\x38\ +\x36\x46\x43\x35\x41\x3e\x3e\x44\x43\x4d\x56\x64\x4b\x54\x59\x47\ +\x54\x5c\x3d\x4a\x4e\x33\x36\x2f\x5a\x6a\x71\x5b\x6b\x79\x3f\x47\ +\x4d\x2b\x2c\x28\x42\x4f\x49\x54\x6b\x78\x5a\x6b\x77\x57\x69\x77\ +\x40\x51\x62\x1f\x49\x8f\x12\x4b\xa3\x19\x55\xa8\x1f\x5a\xab\x22\ +\x5d\xad\x25\x5b\xa0\x2e\x51\x83\x30\x50\x86\x2d\x5f\xa2\x26\x59\ +\xa6\x27\x5a\xa5\x22\x56\xa4\x1b\x51\x9c\x1d\x46\x89\x23\x4b\x8c\ +\x22\x4a\x8b\x21\x53\x9c\x20\x48\x87\x2c\x3b\x61\x2b\x30\x45\x21\ +\x45\x87\x19\x53\xa8\x19\x52\xa4\x12\x4e\xa2\x18\x51\xa3\x19\x53\ +\xa6\x18\x53\xa9\x1a\x55\xaa\x1e\x58\xa8\x1d\x29\x3e\x38\x3a\x32\ +\x41\x45\x3e\x4e\x50\x50\x4c\x49\x49\x4b\x4a\x48\x44\x4b\x4c\x45\ +\x49\x46\x4f\x58\x59\x3c\x4f\x4e\x2e\x43\x42\x32\x47\x49\x37\x4b\ +\x49\x37\x4c\x4d\x44\x58\x5c\x52\x5c\x5f\x49\x5b\x61\x3f\x50\x52\ +\x3c\x49\x4a\x47\x57\x5a\x42\x58\x62\x39\x4a\x4a\x3a\x54\x58\x25\ +\x3f\x3d\x23\x39\x3c\x35\x4a\x53\x20\x33\x38\x27\x43\x3d\x20\x35\ +\x36\x2c\x52\x81\x31\x6a\xb2\x24\x5f\xae\x22\x5a\xa6\x27\x60\xae\ +\x26\x61\xac\x2b\x67\xaf\x2f\x6e\xb5\x2e\x6b\xb4\x26\x63\xae\x28\ +\x63\xae\x00\x00\x00\x2f\x45\x43\x33\x48\x46\x35\x44\x40\x3b\x4c\ +\x45\x36\x40\x39\x35\x3e\x36\x2f\x33\x2a\x36\x48\x3e\x33\x40\x37\ +\x31\x3e\x35\x2d\x34\x2c\x47\x52\x56\x47\x55\x54\x37\x3d\x37\x2f\ +\x34\x2c\x3b\x48\x41\x3d\x48\x43\x31\x37\x31\x2e\x2f\x2a\x35\x3f\ +\x3a\x39\x47\x44\x3e\x54\x53\x3d\x51\x4e\x37\x45\x3c\x3b\x44\x40\ +\x40\x45\x44\x3d\x3f\x3d\x37\x40\x3b\x3a\x51\x4a\x3e\x48\x45\x3c\ +\x4b\x47\x37\x3e\x38\x3d\x40\x40\x3e\x48\x49\x3e\x52\x4d\x3d\x5d\ +\x56\x40\x59\x55\x41\x5b\x57\x42\x5e\x5a\x40\x5c\x5a\x3e\x5a\x59\ +\x3a\x47\x41\x41\x5b\x57\x45\x5e\x5a\x3d\x4f\x4a\x37\x43\x3c\x2c\ +\x2e\x2a\x2e\x2c\x28\x39\x4c\x48\x55\x7a\x82\x5e\x78\x82\x5d\x78\ +\x86\x4e\x66\x6b\x3c\x51\x4f\x34\x3f\x3a\x33\x39\x35\x32\x3b\x34\ +\x48\x59\x5a\x53\x6b\x77\x46\x5d\x62\x4d\x56\x58\x3c\x43\x41\x32\ +\x36\x30\x2c\x30\x2b\x36\x41\x39\x3f\x4d\x4c\x40\x4f\x50\x3c\x4c\ +\x4a\x46\x53\x58\x4e\x5e\x67\x4d\x62\x6d\x3f\x53\x53\x42\x5c\x57\ +\x41\x52\x50\x3a\x47\x42\x37\x42\x41\x35\x3f\x3d\x30\x36\x30\x2d\ +\x32\x2c\x42\x47\x45\x51\x5f\x68\x4e\x5a\x62\x45\x51\x55\x3e\x4c\ +\x4c\x2e\x32\x2e\x59\x67\x6a\x5c\x6e\x7e\x36\x3c\x3c\x32\x39\x33\ +\x3f\x51\x55\x53\x6c\x74\x5b\x6f\x77\x59\x6d\x7a\x49\x57\x5e\x33\ +\x35\x30\x29\x38\x4e\x1a\x45\x86\x1e\x55\xa2\x29\x63\xb5\x28\x61\ +\xaf\x2e\x56\x8e\x33\x57\x8b\x2f\x5b\x99\x2d\x63\xab\x28\x60\xa8\ +\x23\x59\xa8\x21\x58\xa5\x1e\x45\x86\x1d\x48\x90\x23\x51\x96\x1f\ +\x4e\x96\x24\x50\x91\x2d\x3e\x60\x2e\x33\x49\x26\x3a\x61\x1a\x4c\ +\x98\x1a\x51\xa2\x1d\x57\xa8\x19\x55\xaa\x18\x52\xa8\x1a\x54\xa9\ +\x19\x53\xa6\x1e\x59\xac\x1a\x2a\x41\x3b\x40\x39\x4b\x4e\x4d\x4c\ +\x51\x53\x46\x47\x44\x4c\x4e\x4e\x43\x4b\x4b\x55\x60\x5e\x43\x52\ +\x55\x36\x41\x41\x37\x42\x3c\x36\x4d\x51\x2d\x3d\x3a\x34\x4e\x51\ +\x3d\x55\x57\x41\x50\x55\x4c\x5c\x61\x33\x48\x4b\x41\x54\x5c\x4c\ +\x5b\x5e\x46\x61\x6d\x35\x48\x4e\x35\x4a\x4b\x38\x4f\x4a\x30\x45\ +\x4d\x40\x54\x5e\x30\x47\x51\x23\x38\x33\x21\x38\x36\x3b\x4d\x4c\ +\x21\x32\x4a\x26\x4d\x80\x24\x55\x99\x25\x5a\xa7\x25\x62\xad\x2a\ +\x66\xb1\x26\x62\xae\x28\x61\xab\x25\x60\xab\x23\x61\xad\x00\x00\ +\x00\x31\x3e\x38\x2e\x3c\x3a\x37\x4c\x46\x3e\x52\x4d\x37\x48\x3f\ +\x35\x41\x36\x31\x36\x2d\x34\x45\x3a\x39\x4a\x42\x35\x44\x3a\x31\ +\x3a\x31\x39\x42\x3d\x3a\x41\x3c\x35\x3d\x32\x32\x37\x2f\x37\x44\ +\x3c\x3c\x49\x43\x33\x3a\x34\x2d\x2f\x2a\x32\x3a\x32\x38\x49\x45\ +\x43\x5b\x5a\x40\x54\x4d\x37\x45\x3e\x41\x50\x52\x45\x4c\x4d\x3c\ +\x40\x3c\x35\x3d\x38\x3e\x53\x4f\x44\x54\x52\x3d\x4a\x46\x38\x3f\ +\x3b\x39\x3b\x39\x44\x4c\x4e\x41\x59\x57\x3e\x58\x51\x3e\x58\x50\ +\x3c\x54\x4f\x42\x5f\x5b\x41\x52\x50\x46\x5f\x61\x3c\x45\x43\x3d\ +\x57\x52\x43\x59\x54\x40\x4d\x4b\x38\x3c\x39\x2d\x2d\x29\x30\x33\ +\x2e\x3b\x4b\x46\x56\x78\x82\x5f\x79\x86\x5e\x7a\x85\x4a\x63\x6c\ +\x3e\x53\x4e\x33\x3c\x37\x32\x3c\x36\x35\x42\x3b\x41\x54\x51\x54\ +\x68\x6f\x58\x70\x7b\x52\x5e\x69\x3e\x48\x47\x30\x36\x2e\x2d\x33\ +\x2b\x39\x48\x43\x42\x51\x54\x40\x52\x54\x3d\x4d\x4d\x46\x55\x5a\ +\x4b\x5e\x66\x49\x5f\x65\x46\x5c\x60\x46\x5f\x5c\x42\x5a\x5d\x36\ +\x40\x40\x37\x44\x40\x35\x3f\x3c\x34\x3c\x37\x2e\x2f\x2a\x3a\x3d\ +\x38\x4f\x58\x5c\x4d\x58\x5e\x43\x4f\x52\x44\x56\x59\x35\x3d\x39\ +\x50\x5b\x56\x56\x67\x73\x2b\x2e\x29\x37\x41\x38\x4a\x62\x66\x55\ +\x69\x71\x59\x6c\x74\x55\x6a\x74\x4b\x5d\x63\x39\x3f\x3b\x36\x38\ +\x2f\x36\x3b\x35\x2c\x3c\x56\x24\x4c\x8c\x1b\x57\xb6\x25\x5b\xa5\ +\x2f\x56\x8d\x2f\x5a\x96\x2c\x5e\xa3\x2a\x60\xaa\x23\x58\xa5\x19\ +\x51\x9f\x1d\x4b\x92\x17\x48\x95\x1b\x4c\x98\x20\x4d\x96\x25\x51\ +\x95\x2a\x4a\x7e\x30\x42\x66\x2e\x3b\x5b\x24\x3f\x74\x1e\x44\x86\ +\x20\x50\x99\x1a\x4e\x9c\x1b\x54\xa5\x19\x56\xaa\x1c\x57\xac\x1e\ +\x58\xaa\x1c\x2d\x48\x42\x49\x40\x4e\x55\x54\x51\x56\x59\x4c\x4f\ +\x4e\x43\x54\x55\x32\x4c\x49\x3e\x4b\x47\x3c\x4c\x4a\x3e\x4a\x4a\ +\x2f\x44\x45\x3f\x4a\x46\x3b\x49\x47\x30\x49\x4f\x3c\x51\x53\x3f\ +\x55\x5d\x40\x51\x5a\x38\x48\x4e\x3c\x50\x56\x48\x56\x5b\x41\x5a\ +\x68\x34\x4a\x4e\x3d\x53\x58\x27\x40\x43\x38\x48\x45\x46\x55\x5b\ +\x42\x50\x56\x31\x45\x4b\x20\x36\x36\x38\x46\x46\x33\x4b\x54\x21\ +\x33\x2f\x30\x45\x56\x24\x46\x6e\x25\x51\x81\x26\x55\x90\x23\x55\ +\x9b\x22\x57\xa2\x22\x57\xa0\x22\x5b\xa8\x00\x00\x00\x2d\x33\x2e\ +\x2a\x31\x2b\x38\x4a\x3f\x3d\x50\x4b\x3a\x4d\x45\x36\x43\x38\x2f\ +\x32\x2c\x34\x42\x37\x38\x47\x40\x35\x40\x37\x33\x3e\x34\x2f\x35\ +\x2c\x31\x35\x2e\x32\x39\x32\x34\x3b\x35\x36\x41\x3c\x38\x45\x3f\ +\x35\x3a\x33\x2e\x31\x2f\x31\x3b\x35\x37\x49\x43\x40\x56\x50\x43\ +\x59\x55\x38\x49\x45\x48\x56\x58\x45\x4b\x4a\x40\x47\x46\x33\x38\ +\x34\x3f\x53\x4f\x46\x55\x53\x3f\x4c\x49\x3b\x47\x45\x3c\x3f\x3f\ +\x49\x50\x51\x44\x55\x54\x40\x5b\x53\x3c\x52\x4b\x3b\x52\x4c\x48\ +\x64\x64\x46\x5a\x5d\x52\x69\x6d\x37\x3d\x39\x3e\x54\x4e\x46\x60\ +\x5b\x47\x59\x58\x38\x3c\x3a\x35\x36\x34\x33\x36\x30\x38\x40\x3b\ +\x4d\x65\x68\x5e\x7b\x88\x59\x73\x7b\x4b\x66\x6c\x3d\x51\x4e\x36\ +\x43\x3f\x33\x3c\x38\x39\x46\x41\x42\x57\x51\x52\x64\x6c\x62\x76\ +\x81\x54\x62\x6c\x3b\x42\x40\x2d\x33\x2c\x31\x3b\x34\x43\x59\x59\ +\x44\x58\x5e\x40\x54\x55\x3c\x4c\x4f\x52\x66\x71\x48\x5c\x5e\x45\ +\x55\x54\x49\x62\x63\x48\x5f\x5f\x44\x5a\x58\x39\x47\x4a\x38\x43\ +\x3f\x3b\x48\x45\x3b\x48\x46\x2e\x33\x2d\x3e\x41\x3c\x49\x4e\x50\ +\x50\x5b\x5f\x4a\x59\x5e\x4c\x5e\x64\x3b\x45\x45\x3b\x45\x3c\x40\ +\x47\x44\x2c\x31\x29\x3b\x4d\x46\x4c\x68\x67\x58\x72\x7c\x5e\x73\ +\x7d\x56\x6b\x76\x48\x5b\x63\x35\x39\x36\x36\x37\x33\x3d\x44\x3f\ +\x39\x3c\x39\x3d\x43\x47\x3a\x55\x7e\x2b\x4d\x80\x2c\x4a\x7b\x2d\ +\x53\x8f\x2c\x5c\x9d\x2b\x60\xa7\x25\x5b\xa7\x1b\x54\xa4\x1a\x50\ +\xa0\x19\x4c\x9c\x18\x4b\x9b\x1c\x4f\x9b\x22\x52\x9d\x2c\x57\x9a\ +\x2d\x4e\x82\x2c\x3d\x63\x28\x3e\x6b\x25\x3e\x72\x26\x48\x7f\x24\ +\x48\x86\x23\x4e\x8f\x23\x55\x9c\x1e\x51\x9d\x23\x57\xa4\x28\x34\ +\x44\x4c\x4b\x45\x52\x5b\x5c\x54\x58\x58\x4e\x55\x54\x3d\x53\x55\ +\x2d\x4f\x4a\x28\x3f\x3a\x36\x4b\x47\x3e\x4c\x4c\x2d\x49\x4d\x27\ +\x38\x34\x40\x4a\x45\x42\x5e\x64\x38\x4f\x51\x47\x5d\x60\x3d\x4b\ +\x53\x3d\x4a\x4c\x33\x45\x47\x35\x43\x41\x40\x53\x5c\x35\x49\x51\ +\x3c\x4c\x4d\x39\x4b\x54\x37\x49\x4c\x40\x50\x4f\x3a\x4f\x50\x3b\ +\x54\x58\x20\x3e\x3b\x2b\x49\x41\x3d\x58\x59\x1e\x3a\x34\x32\x4c\ +\x45\x34\x50\x52\x22\x3a\x3a\x1f\x3a\x40\x1c\x33\x3e\x30\x4b\x5f\ +\x2e\x51\x67\x2c\x4e\x6e\x00\x00\x00\x29\x2d\x26\x29\x28\x22\x32\ +\x3a\x33\x36\x46\x41\x3c\x4f\x47\x38\x48\x3c\x31\x38\x31\x36\x40\ +\x3a\x36\x41\x3a\x30\x33\x2d\x32\x3d\x34\x31\x3d\x33\x33\x3a\x33\ +\x38\x40\x39\x34\x3d\x36\x37\x45\x3e\x37\x45\x40\x31\x37\x30\x30\ +\x35\x30\x33\x43\x3e\x3a\x4c\x46\x3b\x52\x4e\x40\x58\x55\x39\x49\ +\x45\x43\x52\x4d\x41\x48\x48\x43\x4c\x4e\x3b\x49\x47\x3e\x56\x53\ +\x44\x58\x56\x3c\x48\x44\x38\x3e\x39\x41\x45\x47\x4f\x5c\x60\x4d\ +\x57\x5a\x3c\x57\x4d\x3b\x58\x51\x38\x50\x48\x47\x63\x62\x4f\x68\ +\x68\x4f\x61\x62\x3c\x43\x41\x3d\x50\x4d\x44\x5f\x5c\x47\x5b\x58\ +\x3d\x43\x44\x39\x3c\x3c\x32\x37\x32\x38\x42\x41\x45\x58\x57\x5e\ +\x7d\x86\x56\x6f\x7a\x43\x62\x63\x40\x55\x54\x3b\x4b\x47\x35\x3f\ +\x3c\x34\x3d\x37\x41\x57\x54\x54\x67\x6f\x60\x71\x80\x52\x61\x6b\ +\x39\x43\x41\x2e\x36\x32\x3a\x4f\x4f\x50\x6f\x81\x4d\x64\x6c\x40\ +\x54\x58\x42\x58\x5e\x55\x6c\x78\x45\x5a\x5c\x4a\x5d\x5a\x40\x56\ +\x54\x46\x5e\x61\x3e\x51\x51\x3f\x4d\x4e\x37\x40\x3b\x39\x47\x40\ +\x34\x3d\x38\x2d\x30\x2b\x3f\x40\x3c\x48\x4d\x52\x51\x5b\x62\x51\ +\x60\x67\x50\x67\x74\x42\x56\x57\x35\x46\x41\x31\x35\x2d\x35\x3d\ +\x38\x3d\x4f\x4a\x49\x62\x5f\x55\x6d\x76\x57\x6d\x7a\x54\x68\x71\ +\x48\x5c\x61\x35\x3c\x38\x34\x39\x36\x46\x4f\x50\x40\x45\x45\x45\ +\x4b\x49\x52\x5e\x62\x47\x4f\x55\x3d\x41\x4a\x30\x3e\x54\x29\x4e\ +\x8c\x22\x58\xa6\x25\x5e\xaa\x24\x5f\xac\x1a\x53\xa3\x1d\x55\xa4\ +\x1b\x50\x9f\x21\x57\xa5\x22\x56\xa1\x22\x56\x9f\x26\x50\x8d\x2a\ +\x4b\x80\x26\x4b\x80\x25\x48\x7f\x27\x4a\x82\x28\x49\x81\x26\x46\ +\x7d\x2b\x4c\x7d\x2e\x48\x73\x27\x3c\x62\x42\x46\x4b\x4e\x4b\x48\ +\x57\x5e\x65\x53\x58\x58\x4d\x59\x5a\x40\x54\x55\x29\x42\x3e\x20\ +\x3a\x38\x29\x3e\x3b\x39\x4c\x51\x27\x3e\x3e\x23\x38\x37\x31\x3f\ +\x40\x42\x5a\x5b\x3c\x55\x53\x38\x4c\x47\x47\x58\x5b\x40\x5a\x60\ +\x40\x4e\x52\x43\x55\x60\x49\x5e\x5f\x44\x5e\x69\x38\x53\x56\x34\ +\x4c\x53\x39\x58\x59\x37\x51\x4e\x32\x53\x54\x36\x51\x56\x3b\x51\ +\x53\x42\x4f\x47\x3f\x52\x4b\x2a\x43\x46\x27\x3d\x36\x43\x55\x51\ +\x30\x4c\x4c\x21\x3d\x3a\x21\x38\x33\x2f\x44\x41\x35\x4a\x44\x3f\ +\x58\x5d\x00\x00\x00\x2a\x33\x2d\x2f\x32\x2c\x2f\x32\x2e\x33\x3e\ +\x37\x39\x48\x40\x38\x48\x3f\x35\x3f\x36\x35\x3f\x39\x38\x45\x3d\ +\x2e\x33\x2b\x31\x3b\x34\x34\x42\x3c\x39\x42\x3e\x35\x3d\x35\x34\ +\x3d\x36\x3a\x4a\x47\x3b\x48\x45\x32\x38\x31\x2f\x37\x32\x3b\x50\ +\x51\x40\x52\x52\x47\x60\x63\x4a\x67\x69\x42\x56\x5a\x4d\x60\x64\ +\x54\x61\x6a\x4d\x5a\x5f\x3f\x51\x4c\x40\x57\x56\x42\x58\x58\x3f\ +\x4f\x4b\x34\x38\x36\x3c\x3f\x3f\x53\x62\x66\x4b\x51\x51\x3b\x51\ +\x4e\x40\x60\x55\x37\x52\x4b\x46\x63\x60\x49\x61\x65\x54\x69\x71\ +\x46\x50\x50\x47\x5d\x5e\x46\x64\x5f\x43\x55\x52\x4a\x52\x53\x3a\ +\x3b\x3b\x39\x45\x42\x41\x51\x4e\x3f\x4e\x4b\x5a\x75\x7d\x52\x6c\ +\x72\x41\x5c\x59\x3f\x54\x51\x3a\x4e\x4d\x37\x46\x44\x2f\x33\x2d\ +\x3d\x50\x4c\x4b\x5c\x5f\x61\x75\x85\x51\x65\x70\x38\x45\x47\x36\ +\x4a\x49\x3f\x55\x56\x52\x71\x7e\x4e\x68\x74\x43\x5b\x6a\x4f\x6f\ +\x7e\x4b\x62\x6b\x4f\x64\x62\x3d\x4d\x4a\x40\x53\x51\x46\x5c\x5c\ +\x41\x55\x56\x3b\x49\x49\x3c\x4a\x49\x3c\x4b\x49\x39\x44\x41\x31\ +\x36\x2f\x3c\x3e\x39\x59\x66\x6b\x54\x67\x75\x4f\x5f\x69\x5a\x73\ +\x81\x48\x61\x64\x38\x4d\x4e\x31\x3a\x33\x38\x41\x3d\x39\x4a\x45\ +\x49\x60\x5f\x57\x6c\x75\x5d\x76\x80\x4d\x61\x66\x44\x57\x58\x39\ +\x44\x42\x38\x42\x3e\x47\x4f\x52\x46\x4a\x4d\x3f\x45\x43\x47\x52\ +\x50\x49\x4e\x51\x3d\x40\x40\x41\x41\x3b\x5f\x6c\x77\x32\x47\x62\ +\x29\x4f\x87\x21\x57\xa5\x19\x54\xa8\x1d\x56\xa4\x23\x59\xa3\x26\ +\x5e\xa9\x21\x5b\xa6\x20\x58\xa4\x24\x59\x9e\x1f\x50\x9a\x26\x57\ +\x9c\x23\x50\x94\x26\x52\x95\x2b\x54\x95\x27\x4a\x82\x2f\x4b\x77\ +\x32\x3e\x53\x3e\x42\x46\x4f\x56\x5a\x57\x59\x5a\x5e\x66\x70\x52\ +\x5d\x61\x33\x53\x59\x2d\x4d\x54\x27\x40\x3c\x23\x3c\x39\x22\x3b\ +\x3a\x33\x4a\x47\x28\x3e\x3e\x33\x49\x49\x44\x56\x5f\x35\x50\x53\ +\x38\x48\x49\x42\x54\x56\x4f\x60\x61\x45\x5c\x5d\x44\x59\x59\x47\ +\x64\x6a\x35\x56\x5d\x37\x51\x54\x45\x5f\x65\x42\x5a\x62\x3d\x5f\ +\x62\x34\x4e\x4f\x39\x4f\x4f\x28\x41\x3d\x3e\x51\x54\x2a\x3a\x3b\ +\x34\x47\x43\x2b\x45\x4b\x22\x3b\x37\x34\x3f\x35\x37\x4a\x49\x32\ +\x46\x44\x2c\x48\x49\x37\x50\x57\x32\x4d\x4e\x42\x4c\x53\x00\x00\ +\x00\x2d\x3d\x34\x2e\x31\x2b\x2e\x31\x29\x2d\x33\x2c\x37\x46\x39\ +\x39\x46\x3e\x37\x43\x3a\x34\x40\x3c\x3b\x4e\x42\x34\x3d\x3a\x37\ +\x44\x40\x38\x47\x3f\x38\x41\x39\x38\x3f\x3d\x33\x40\x38\x3d\x4b\ +\x48\x38\x40\x3a\x30\x34\x2f\x34\x42\x42\x46\x5c\x5a\x45\x55\x56\ +\x4c\x63\x68\x5b\x74\x7f\x51\x67\x6d\x55\x61\x63\x57\x65\x6b\x4b\ +\x5a\x5e\x40\x53\x50\x41\x57\x54\x42\x5c\x5c\x3f\x4f\x4f\x39\x3f\ +\x41\x3d\x41\x43\x44\x4c\x4f\x4a\x4d\x4c\x39\x4d\x45\x44\x60\x5e\ +\x43\x5e\x5b\x46\x65\x62\x52\x6f\x76\x51\x65\x65\x4f\x5b\x61\x3f\ +\x4a\x48\x42\x59\x56\x43\x56\x55\x50\x5c\x5f\x39\x3c\x3b\x36\x40\ +\x3e\x41\x51\x50\x40\x4f\x4c\x55\x6f\x74\x45\x59\x59\x3e\x55\x54\ +\x40\x58\x57\x3d\x56\x58\x3b\x50\x4d\x33\x3a\x34\x3c\x4f\x4b\x46\ +\x59\x5c\x5f\x76\x88\x49\x58\x5e\x36\x47\x49\x32\x46\x44\x3f\x53\ +\x5b\x50\x75\x84\x5b\x78\x88\x50\x6a\x79\x52\x67\x6e\x42\x54\x54\ +\x3f\x57\x55\x41\x56\x52\x3f\x53\x52\x3f\x58\x58\x41\x55\x55\x3d\ +\x4e\x4e\x39\x44\x41\x3d\x4a\x4a\x39\x43\x40\x35\x3b\x38\x40\x43\ +\x43\x52\x5d\x61\x59\x6c\x78\x55\x6b\x77\x55\x6b\x72\x44\x5c\x5d\ +\x39\x4e\x47\x33\x3a\x32\x3d\x4b\x46\x3d\x50\x4a\x43\x58\x53\x5b\ +\x73\x7b\x5d\x75\x84\x53\x66\x74\x48\x5f\x62\x3e\x4e\x4d\x45\x4e\ +\x4d\x4e\x59\x5c\x47\x49\x4b\x40\x45\x45\x49\x54\x55\x4d\x57\x60\ +\x3e\x3f\x3f\x42\x43\x42\x55\x60\x62\x4e\x5d\x63\x56\x62\x69\x47\ +\x4e\x59\x33\x4f\x72\x2b\x54\x8d\x2e\x5f\x9d\x25\x5a\xa0\x27\x60\ +\xa9\x26\x5f\xaa\x20\x58\xa4\x1f\x57\xa3\x20\x5a\xa5\x21\x58\xa2\ +\x21\x54\x9e\x26\x55\x97\x2d\x4c\x7b\x33\x3f\x56\x45\x4a\x4f\x38\ +\x4b\x50\x44\x53\x53\x40\x4a\x44\x62\x6e\x71\x49\x5a\x61\x2f\x4d\ +\x4c\x35\x59\x5c\x28\x46\x47\x27\x42\x42\x2c\x4d\x51\x28\x45\x44\ +\x2a\x3e\x3f\x42\x56\x5e\x45\x55\x56\x3f\x5a\x5f\x46\x62\x62\x4f\ +\x64\x6d\x4c\x5c\x5d\x53\x68\x6f\x43\x64\x6e\x42\x5c\x5e\x36\x54\ +\x5c\x34\x54\x59\x2b\x44\x4f\x4a\x59\x55\x40\x56\x62\x3f\x54\x58\ +\x3b\x4e\x50\x29\x3e\x3f\x33\x4d\x57\x41\x57\x55\x3c\x51\x4e\x47\ +\x58\x5c\x2d\x47\x4c\x2a\x42\x46\x2a\x3f\x3c\x2e\x45\x44\x2e\x49\ +\x4c\x2a\x42\x43\x31\x46\x42\x30\x40\x49\x00\x00\x00\x2d\x40\x39\ +\x2e\x34\x2d\x30\x33\x2c\x30\x37\x2f\x34\x40\x35\x37\x47\x3d\x3a\ +\x4c\x45\x39\x47\x41\x3b\x4d\x45\x38\x48\x40\x3b\x4c\x45\x3c\x4b\ +\x47\x38\x43\x39\x3c\x4c\x49\x3c\x51\x49\x3d\x4d\x48\x39\x44\x3d\ +\x31\x38\x33\x3a\x4b\x49\x49\x5e\x5b\x3d\x50\x4b\x43\x5b\x59\x53\ +\x6e\x76\x5d\x73\x7e\x5a\x6d\x75\x58\x67\x71\x4a\x5c\x5e\x3e\x54\ +\x53\x3e\x53\x4f\x3c\x51\x4c\x40\x52\x4f\x3a\x3e\x3e\x44\x4b\x4e\ +\x49\x58\x57\x4a\x51\x52\x32\x38\x34\x43\x51\x4f\x45\x51\x50\x43\ +\x5f\x5c\x50\x6a\x6e\x55\x69\x6d\x51\x61\x66\x42\x4e\x4e\x40\x55\ +\x52\x3f\x56\x52\x4e\x58\x5c\x42\x47\x44\x3b\x46\x41\x3f\x50\x4d\ +\x40\x4d\x4d\x47\x5b\x5a\x3c\x50\x49\x36\x42\x3c\x3b\x4d\x4d\x40\ +\x54\x54\x41\x53\x50\x39\x44\x3e\x3b\x4f\x4a\x42\x5b\x5c\x4f\x65\ +\x6e\x3f\x4a\x4a\x38\x46\x43\x3a\x4f\x52\x4a\x6c\x7e\x4f\x79\x87\ +\x5f\x7c\x8c\x4f\x61\x69\x3f\x4c\x48\x3b\x4d\x4b\x45\x5d\x5a\x3f\ +\x51\x4c\x3e\x4f\x4a\x3e\x54\x53\x42\x5b\x61\x40\x56\x57\x3d\x4e\ +\x4c\x3d\x4f\x4f\x35\x3d\x39\x37\x3e\x37\x41\x46\x45\x4b\x53\x55\ +\x5c\x6e\x7c\x5c\x71\x82\x4c\x60\x68\x3f\x58\x57\x3b\x4c\x47\x35\ +\x43\x3c\x3e\x50\x4b\x3c\x51\x4b\x41\x5b\x58\x54\x6c\x6e\x62\x7d\ +\x90\x4e\x61\x6e\x44\x5a\x57\x42\x55\x56\x48\x56\x55\x59\x66\x6f\ +\x3e\x41\x41\x47\x4d\x4d\x5a\x69\x72\x4b\x55\x5f\x44\x48\x48\x46\ +\x47\x4a\x47\x4f\x4c\x52\x60\x65\x59\x64\x6d\x56\x5e\x62\x50\x5a\ +\x5d\x57\x61\x68\x3e\x49\x4e\x35\x46\x5a\x34\x55\x7c\x38\x60\x98\ +\x2c\x57\x92\x2f\x58\x92\x2d\x56\x90\x29\x4f\x8d\x2c\x4b\x7c\x42\ +\x51\x67\x40\x48\x50\x3e\x50\x4a\x4b\x59\x58\x3f\x54\x58\x2c\x45\ +\x46\x27\x39\x37\x42\x53\x4f\x3a\x59\x5c\x26\x42\x43\x2a\x41\x41\ +\x2b\x4a\x4a\x2c\x3f\x42\x35\x4b\x4a\x32\x54\x55\x3b\x54\x53\x51\ +\x65\x6b\x33\x58\x5e\x42\x64\x64\x50\x6e\x76\x59\x73\x81\x53\x68\ +\x6e\x44\x63\x6b\x52\x6a\x76\x3e\x5c\x65\x42\x60\x67\x38\x56\x59\ +\x3d\x56\x5c\x3f\x51\x57\x4a\x58\x5e\x3c\x4f\x51\x40\x54\x55\x3c\ +\x4d\x50\x32\x4d\x4e\x40\x50\x4e\x37\x49\x4d\x35\x47\x47\x3d\x51\ +\x51\x4a\x5a\x5c\x3c\x4e\x50\x4b\x5a\x59\x45\x56\x61\x4f\x58\x5e\ +\x4f\x5c\x62\x58\x69\x6e\x00\x00\x00\x2d\x3e\x38\x32\x3b\x33\x30\ +\x33\x2c\x31\x39\x2f\x35\x43\x38\x38\x46\x3c\x3b\x4f\x4b\x38\x44\ +\x3c\x36\x3f\x3a\x3b\x4d\x43\x3b\x4c\x46\x3e\x4b\x46\x3c\x4b\x44\ +\x3b\x4b\x44\x41\x59\x54\x3c\x4e\x45\x38\x49\x41\x32\x3a\x33\x3a\ +\x45\x42\x46\x5f\x5c\x40\x54\x50\x3f\x53\x4e\x52\x69\x71\x62\x76\ +\x81\x5a\x6c\x73\x56\x67\x69\x42\x56\x53\x3f\x5a\x56\x42\x59\x55\ +\x3c\x4d\x43\x3c\x4b\x45\x3a\x3e\x3e\x44\x53\x52\x4a\x57\x56\x53\ +\x5d\x5e\x3e\x4a\x43\x3b\x43\x3e\x43\x49\x49\x40\x57\x55\x4b\x65\ +\x67\x5a\x73\x7b\x50\x63\x6a\x3f\x48\x49\x3b\x4a\x46\x40\x59\x56\ +\x4b\x57\x59\x3e\x41\x40\x38\x3c\x3a\x3c\x4b\x48\x3f\x4d\x4b\x3b\ +\x47\x42\x37\x43\x3c\x34\x3a\x36\x3d\x48\x49\x46\x57\x56\x3e\x4d\ +\x47\x3b\x47\x44\x3c\x4b\x49\x45\x60\x62\x3d\x52\x51\x37\x43\x41\ +\x31\x37\x32\x45\x58\x5a\x4f\x6b\x7a\x51\x77\x8b\x5e\x7d\x8c\x51\ +\x66\x6f\x35\x42\x3f\x41\x5d\x59\x43\x5d\x5c\x40\x52\x50\x3e\x49\ +\x46\x39\x47\x44\x43\x5a\x59\x3f\x56\x58\x3e\x45\x46\x43\x57\x58\ +\x3a\x44\x42\x37\x3e\x39\x40\x47\x46\x42\x48\x47\x5f\x70\x7d\x5d\ +\x73\x81\x42\x56\x57\x43\x5f\x5f\x3f\x54\x51\x37\x4b\x46\x3c\x50\ +\x4a\x3f\x57\x52\x45\x5f\x5f\x4e\x64\x63\x65\x80\x90\x3e\x4c\x51\ +\x3c\x4c\x46\x42\x58\x58\x57\x6b\x75\x56\x68\x78\x40\x42\x43\x4b\ +\x50\x50\x5a\x65\x6c\x4c\x56\x59\x4f\x57\x5c\x4c\x51\x55\x41\x4a\ +\x46\x4e\x57\x56\x57\x62\x6b\x53\x5b\x5c\x58\x61\x64\x54\x63\x6d\ +\x3e\x4b\x49\x43\x47\x44\x59\x5f\x5b\x65\x6e\x74\x4d\x51\x56\x56\ +\x5d\x68\x56\x5b\x65\x52\x53\x55\x57\x61\x6a\x42\x48\x52\x40\x52\ +\x65\x49\x59\x5b\x3a\x52\x57\x28\x46\x47\x2b\x3f\x3b\x32\x4a\x4c\ +\x32\x49\x48\x30\x53\x56\x35\x52\x56\x32\x46\x49\x37\x4b\x49\x46\ +\x58\x5d\x44\x58\x54\x45\x5f\x59\x43\x55\x50\x48\x5b\x58\x45\x61\ +\x62\x53\x73\x7d\x53\x6f\x7f\x4d\x69\x74\x54\x6d\x75\x5d\x76\x88\ +\x55\x6e\x83\x46\x60\x68\x47\x5c\x5f\x46\x5c\x64\x48\x5d\x63\x48\ +\x53\x55\x48\x5a\x69\x3c\x4e\x56\x40\x50\x59\x3c\x52\x5a\x3a\x4f\ +\x50\x48\x5c\x59\x36\x49\x4f\x2c\x3d\x3f\x36\x4a\x4a\x45\x55\x55\ +\x41\x51\x57\x48\x57\x56\x39\x4d\x51\x47\x55\x57\x46\x5e\x61\x47\ +\x5e\x65\x00\x00\x00\x31\x40\x3a\x32\x3a\x32\x31\x39\x31\x35\x3e\ +\x35\x34\x41\x37\x38\x44\x3c\x3a\x4a\x45\x3a\x4b\x40\x33\x39\x34\ +\x36\x40\x36\x33\x3b\x34\x3c\x4b\x45\x3b\x4c\x45\x3a\x46\x3b\x3b\ +\x50\x47\x3b\x4c\x41\x3a\x4a\x43\x33\x39\x36\x39\x3f\x3b\x47\x5f\ +\x5c\x42\x57\x54\x3f\x52\x4e\x47\x5b\x5d\x5d\x72\x7f\x62\x73\x7c\ +\x52\x67\x67\x40\x53\x4e\x43\x5d\x5a\x43\x5b\x59\x3c\x4e\x49\x3c\ +\x4a\x44\x3a\x40\x3d\x43\x53\x52\x4a\x5b\x5d\x4d\x55\x54\x36\x3d\ +\x36\x43\x54\x52\x3a\x3e\x3b\x3d\x51\x4d\x47\x63\x63\x53\x69\x72\ +\x56\x6b\x71\x3f\x4b\x4c\x40\x4b\x4b\x4a\x5f\x64\x4f\x5e\x64\x3e\ +\x44\x42\x37\x3e\x39\x37\x45\x40\x3e\x50\x4d\x3d\x49\x45\x39\x47\ +\x43\x42\x4e\x4e\x40\x51\x50\x49\x55\x54\x3e\x4d\x48\x3a\x4a\x44\ +\x41\x51\x51\x42\x59\x57\x3b\x57\x58\x37\x43\x40\x30\x32\x2f\x42\ +\x52\x52\x5b\x75\x88\x5d\x84\x98\x60\x82\x92\x4e\x63\x6c\x36\x48\ +\x48\x40\x60\x5d\x42\x5c\x5d\x3f\x4f\x4f\x3d\x4a\x49\x3a\x42\x42\ +\x44\x54\x59\x3f\x4e\x52\x42\x52\x51\x47\x5c\x5c\x3c\x4c\x48\x38\ +\x41\x3e\x3b\x43\x40\x44\x4d\x4c\x5f\x6e\x7c\x5a\x71\x82\x48\x5f\ +\x62\x49\x66\x6a\x3e\x55\x52\x3b\x50\x4c\x3c\x51\x4d\x40\x5a\x55\ +\x45\x61\x5f\x48\x5f\x5b\x5d\x7b\x86\x3b\x45\x46\x3c\x49\x44\x4b\ +\x68\x68\x67\x82\x94\x4d\x5b\x65\x4a\x4b\x4e\x4d\x50\x50\x50\x56\ +\x57\x4f\x55\x55\x57\x63\x68\x4d\x51\x53\x41\x4c\x4a\x49\x57\x53\ +\x59\x64\x67\x59\x61\x67\x5b\x65\x6b\x56\x63\x6f\x40\x4f\x53\x4f\ +\x54\x55\x5b\x62\x65\x5d\x69\x6f\x53\x57\x5a\x56\x5b\x5b\x5e\x64\ +\x6b\x59\x5c\x60\x58\x6a\x7c\x2c\x42\x69\x34\x4b\x53\x33\x47\x48\ +\x32\x4b\x4d\x29\x53\x55\x26\x44\x44\x35\x50\x4b\x41\x65\x66\x46\ +\x60\x64\x48\x56\x59\x47\x53\x4f\x4a\x54\x52\x51\x61\x65\x4a\x60\ +\x5e\x47\x5b\x56\x40\x48\x45\x45\x53\x4e\x62\x77\x7f\x65\x82\x98\ +\x54\x6b\x79\x4f\x6a\x73\x4e\x6c\x73\x53\x69\x70\x4d\x66\x72\x45\ +\x5a\x60\x4e\x5e\x5e\x5c\x68\x6a\x42\x5a\x72\x39\x44\x3d\x4c\x5f\ +\x62\x32\x4a\x4d\x39\x50\x56\x2a\x41\x44\x29\x3f\x42\x28\x41\x3c\ +\x3e\x4c\x50\x3b\x4a\x4d\x37\x4c\x4f\x3d\x53\x55\x36\x4b\x4d\x39\ +\x52\x59\x2c\x4d\x4c\x38\x4c\x4e\x46\x56\x5a\x48\x52\x4e\x00\x00\ +\x00\x38\x49\x44\x36\x48\x40\x37\x42\x3f\x37\x44\x38\x35\x42\x3a\ +\x38\x45\x3e\x34\x3d\x36\x3e\x52\x4b\x37\x42\x38\x34\x39\x31\x30\ +\x35\x2b\x3b\x4a\x45\x3e\x49\x43\x37\x42\x3b\x3f\x52\x4f\x3f\x52\ +\x4f\x39\x45\x3e\x30\x34\x2e\x3b\x41\x41\x50\x61\x64\x45\x5c\x5b\ +\x43\x57\x55\x3c\x4c\x47\x52\x68\x74\x5b\x6e\x72\x45\x5a\x58\x3f\ +\x53\x4f\x43\x5c\x58\x43\x5c\x5a\x42\x58\x59\x39\x43\x3f\x39\x3f\ +\x3b\x3f\x4b\x4a\x4a\x5a\x5a\x4f\x57\x56\x36\x3e\x32\x46\x5f\x5b\ +\x38\x3c\x38\x38\x41\x3b\x45\x5f\x5d\x5a\x73\x7e\x53\x68\x6f\x3d\ +\x4a\x47\x46\x4f\x52\x55\x64\x6b\x56\x63\x66\x3f\x49\x48\x35\x40\ +\x39\x36\x41\x3f\x3f\x53\x51\x3d\x4a\x44\x40\x56\x56\x45\x57\x59\ +\x4a\x5f\x66\x43\x52\x51\x3d\x51\x4d\x36\x46\x3c\x3f\x4b\x4b\x3e\ +\x4f\x4c\x40\x56\x5b\x3b\x45\x43\x39\x42\x43\x4a\x5f\x68\x64\x7b\ +\x8a\x60\x81\x8e\x58\x76\x84\x48\x60\x69\x3c\x58\x58\x3e\x5a\x56\ +\x41\x5d\x5b\x40\x55\x52\x3b\x48\x44\x3a\x41\x3f\x57\x6d\x7d\x45\ +\x5b\x63\x49\x5c\x5b\x45\x5c\x59\x39\x47\x44\x3b\x47\x42\x37\x3d\ +\x38\x4b\x55\x58\x61\x74\x80\x5c\x73\x88\x52\x6b\x7a\x51\x67\x6d\ +\x3d\x5b\x5c\x3a\x50\x4f\x3e\x4f\x4e\x3e\x56\x51\x43\x62\x61\x43\ +\x58\x55\x42\x51\x4f\x3a\x45\x40\x3f\x44\x43\x4f\x5a\x5a\x5b\x71\ +\x7a\x50\x58\x5d\x53\x58\x5e\x4b\x50\x55\x52\x5a\x60\x55\x60\x67\ +\x54\x60\x67\x4b\x50\x56\x40\x49\x47\x43\x53\x4d\x52\x5e\x5e\x5b\ +\x65\x68\x5c\x66\x6e\x5e\x6b\x76\x47\x55\x5d\x4e\x50\x52\x58\x5e\ +\x60\x59\x5f\x62\x4a\x50\x53\x43\x45\x41\x5a\x60\x63\x5c\x68\x72\ +\x46\x60\x69\x38\x59\x62\x3a\x5c\x6e\x31\x50\x58\x3d\x5d\x67\x4a\ +\x66\x71\x46\x60\x62\x3f\x51\x45\x4e\x68\x66\x4f\x65\x67\x46\x53\ +\x50\x4f\x60\x5c\x4a\x55\x4e\x61\x75\x7d\x49\x5a\x5d\x47\x5c\x58\ +\x41\x4a\x48\x4e\x58\x51\x76\x8c\xa0\x68\x80\x93\x50\x68\x71\x56\ +\x6a\x6c\x4f\x69\x71\x4b\x69\x6c\x5d\x69\x6c\x50\x58\x5c\x57\x5d\ +\x5f\x5d\x6b\x6d\x4b\x5c\x69\x35\x45\x4c\x44\x56\x52\x3a\x51\x55\ +\x3d\x50\x59\x28\x3b\x40\x29\x39\x3c\x2b\x3b\x45\x31\x3e\x3f\x31\ +\x44\x4b\x2c\x41\x42\x29\x41\x41\x2f\x4b\x51\x31\x52\x5a\x2c\x4b\ +\x4d\x33\x50\x5a\x3b\x4f\x4d\x4d\x58\x57\x00\x00\x00\x3a\x4b\x48\ +\x3a\x4e\x47\x3a\x4c\x45\x35\x43\x38\x33\x3c\x35\x3a\x41\x39\x37\ +\x3d\x34\x3b\x4b\x44\x3a\x41\x38\x39\x45\x3e\x35\x3e\x33\x33\x3a\ +\x35\x3b\x44\x3e\x3b\x4b\x45\x48\x5c\x60\x4c\x62\x63\x44\x56\x56\ +\x38\x3e\x3c\x3e\x46\x47\x54\x69\x73\x48\x62\x62\x48\x59\x59\x3b\ +\x48\x43\x43\x5c\x5b\x4c\x62\x61\x44\x5c\x57\x40\x53\x50\x42\x59\ +\x56\x3f\x56\x55\x40\x58\x54\x3b\x45\x42\x3b\x46\x41\x45\x58\x55\ +\x4c\x5d\x5e\x4c\x55\x54\x2f\x2e\x2a\x3f\x4f\x4b\x38\x3e\x38\x36\ +\x40\x3a\x3d\x54\x51\x54\x6e\x76\x51\x66\x6a\x36\x42\x3d\x47\x51\ +\x56\x5a\x68\x72\x4d\x5e\x63\x3e\x4b\x47\x39\x47\x43\x3e\x4f\x48\ +\x40\x55\x52\x40\x54\x50\x4e\x68\x72\x46\x62\x6c\x50\x66\x72\x3f\ +\x53\x50\x3b\x51\x4d\x3b\x50\x4e\x42\x4e\x52\x44\x56\x5b\x48\x5c\ +\x62\x47\x55\x5a\x3e\x4c\x4c\x4c\x60\x64\x62\x76\x83\x5a\x73\x82\ +\x52\x67\x72\x46\x65\x73\x41\x63\x65\x41\x5f\x5e\x42\x5f\x64\x43\ +\x59\x5b\x3f\x4f\x4d\x4a\x5b\x5d\x5c\x78\x89\x4c\x69\x76\x49\x69\ +\x6f\x40\x57\x59\x3b\x4d\x4c\x3b\x4a\x4a\x39\x42\x3e\x4f\x56\x5a\ +\x60\x73\x7d\x56\x6a\x79\x58\x6b\x75\x58\x66\x70\x45\x66\x6c\x3d\ +\x4f\x4d\x43\x4f\x4d\x3c\x4e\x48\x44\x61\x5f\x41\x5c\x58\x3b\x4a\ +\x49\x39\x49\x3e\x42\x4a\x47\x5a\x65\x6d\x5a\x64\x6c\x5b\x63\x6a\ +\x58\x63\x6d\x55\x5c\x63\x57\x5e\x63\x5d\x6a\x73\x5a\x65\x69\x57\ +\x5d\x69\x47\x4e\x4f\x45\x57\x50\x57\x60\x61\x5e\x68\x6e\x5d\x64\ +\x6e\x60\x68\x70\x52\x60\x6c\x4b\x4e\x52\x59\x5d\x5b\x60\x68\x6d\ +\x47\x51\x57\x52\x55\x55\x57\x5e\x61\x61\x76\x81\x58\x6a\x76\x4d\ +\x5f\x64\x63\x7a\x85\x41\x4f\x5b\x57\x63\x68\x5a\x6b\x73\x4b\x62\ +\x68\x47\x59\x56\x4b\x63\x66\x54\x6b\x6e\x44\x4d\x4b\x52\x5a\x55\ +\x4d\x5a\x5c\x55\x67\x66\x44\x54\x4f\x4b\x62\x5a\x4e\x62\x65\x5c\ +\x6b\x6e\x69\x86\x97\x54\x75\x84\x39\x52\x54\x4d\x5a\x57\x5a\x6e\ +\x74\x5f\x66\x66\x4b\x4b\x49\x50\x59\x5f\x51\x58\x59\x4a\x56\x5b\ +\x4b\x5c\x67\x3f\x4e\x57\x3c\x51\x50\x36\x4e\x4e\x41\x51\x52\x2a\ +\x3b\x46\x38\x46\x4b\x44\x57\x62\x3a\x4e\x59\x2e\x41\x49\x2f\x43\ +\x3f\x56\x6a\x79\x45\x5c\x5c\x41\x5f\x5f\x2d\x5a\x5d\x33\x52\x54\ +\x50\x5b\x4c\x4d\x5b\x67\x00\x00\x00\x40\x4d\x4d\x41\x53\x52\x3e\ +\x56\x50\x3c\x52\x48\x32\x3b\x32\x32\x34\x2e\x36\x41\x38\x39\x46\ +\x41\x3d\x49\x43\x38\x45\x3d\x36\x3e\x34\x34\x39\x32\x34\x39\x33\ +\x3d\x4f\x49\x43\x4c\x4e\x43\x51\x58\x54\x63\x6c\x3d\x47\x44\x52\ +\x64\x6e\x58\x69\x6c\x4f\x67\x67\x46\x59\x57\x3b\x4e\x4b\x43\x64\ +\x5e\x41\x5a\x57\x48\x65\x60\x41\x53\x4f\x41\x54\x4f\x42\x5d\x5d\ +\x3c\x4f\x4c\x3b\x49\x46\x3b\x4a\x45\x41\x56\x52\x4b\x5d\x5f\x51\ +\x5c\x59\x38\x3c\x38\x3c\x4d\x46\x3a\x45\x41\x3c\x48\x43\x3f\x50\ +\x4c\x4e\x69\x71\x4d\x68\x6c\x3b\x4e\x4c\x55\x62\x6a\x5f\x6f\x7b\ +\x4c\x5d\x61\x3d\x4c\x4a\x3f\x4d\x4b\x3d\x4f\x4b\x3e\x54\x53\x40\ +\x58\x5b\x55\x6e\x7a\x54\x74\x83\x54\x67\x6e\x43\x59\x56\x3e\x53\ +\x4f\x3f\x59\x57\x49\x5c\x60\x4a\x59\x5e\x42\x54\x55\x3f\x4b\x4c\ +\x3e\x4a\x48\x4a\x61\x65\x5c\x74\x80\x58\x70\x81\x4f\x60\x6d\x4d\ +\x6a\x77\x47\x65\x6a\x40\x58\x57\x46\x66\x6a\x49\x63\x6a\x42\x53\ +\x54\x51\x64\x6e\x62\x83\x98\x4a\x63\x6d\x4a\x69\x6f\x44\x5d\x60\ +\x3f\x58\x5a\x3f\x55\x57\x38\x41\x3e\x51\x5d\x67\x5d\x6f\x7d\x54\ +\x68\x72\x51\x64\x69\x59\x66\x74\x54\x6a\x72\x43\x56\x59\x46\x52\ +\x51\x3d\x4c\x47\x3b\x48\x41\x48\x66\x67\x3f\x50\x55\x3f\x4e\x49\ +\x48\x53\x4f\x5e\x68\x6e\x60\x69\x72\x63\x6e\x79\x61\x6a\x77\x56\ +\x5d\x66\x56\x61\x66\x57\x65\x6a\x5d\x65\x6e\x54\x57\x5f\x4c\x52\ +\x55\x48\x56\x55\x5a\x63\x6b\x61\x68\x6d\x54\x59\x60\x59\x5d\x63\ +\x55\x5b\x63\x44\x47\x49\x55\x58\x54\x60\x69\x70\x4e\x53\x57\x53\ +\x59\x5a\x50\x55\x58\x5e\x70\x7b\x5d\x69\x74\x52\x64\x6a\x68\x7b\ +\x83\x54\x6f\x88\x4b\x56\x59\x4b\x53\x4d\x4e\x62\x64\x54\x68\x75\ +\x47\x61\x63\x46\x52\x4d\x49\x4d\x46\x5a\x64\x66\x55\x62\x64\x52\ +\x66\x6b\x46\x59\x55\x51\x68\x65\x55\x6c\x75\x56\x66\x6d\x4e\x4e\ +\x47\x5a\x64\x62\x42\x5c\x65\x53\x61\x67\x5d\x69\x6f\x47\x4a\x48\ +\x52\x56\x4e\x4f\x5a\x61\x55\x5d\x61\x40\x53\x5d\x3a\x4c\x4d\x39\ +\x50\x57\x3b\x51\x50\x39\x4c\x51\x3f\x51\x5a\x41\x4f\x53\x33\x42\ +\x44\x30\x40\x3c\x30\x41\x46\x48\x5c\x5c\x59\x6e\x77\x64\x74\x83\ +\x3a\x48\x4c\x46\x56\x4e\x3f\x63\x67\x3a\x58\x5a\x3f\x51\x4e\x3a\ +\x4b\x46\x00\x00\x00\x3d\x4c\x46\x3b\x48\x42\x40\x55\x52\x3e\x58\ +\x4d\x31\x38\x30\x31\x30\x2c\x37\x40\x35\x36\x3b\x35\x34\x38\x32\ +\x36\x3c\x38\x37\x3d\x34\x38\x3f\x39\x36\x38\x33\x34\x3f\x36\x3b\ +\x41\x3f\x46\x4f\x4e\x3b\x41\x40\x3a\x41\x3e\x57\x6a\x76\x5a\x6b\ +\x71\x47\x59\x58\x43\x5a\x59\x40\x59\x57\x46\x6c\x69\x46\x66\x63\ +\x45\x64\x5f\x43\x58\x54\x43\x56\x52\x42\x5d\x5a\x3c\x55\x51\x3e\ +\x50\x4c\x3a\x4b\x45\x44\x5a\x59\x4f\x5f\x65\x53\x5f\x60\x3d\x45\ +\x45\x40\x51\x4d\x3a\x46\x42\x44\x56\x59\x3d\x49\x49\x44\x5e\x60\ +\x48\x66\x67\x3e\x57\x58\x54\x65\x6e\x5c\x70\x7a\x42\x5b\x5c\x3e\ +\x54\x51\x40\x51\x51\x42\x5a\x5a\x42\x5d\x5e\x42\x61\x61\x54\x6f\ +\x79\x62\x7c\x91\x55\x68\x72\x3d\x55\x53\x41\x58\x56\x44\x64\x64\ +\x50\x6c\x71\x4a\x61\x61\x49\x62\x68\x46\x58\x5b\x43\x53\x55\x4b\ +\x5c\x63\x5d\x78\x87\x62\x7f\x90\x56\x6d\x79\x54\x6e\x7b\x48\x66\ +\x6d\x3c\x54\x54\x47\x62\x67\x4a\x67\x6f\x40\x52\x54\x53\x68\x71\ +\x58\x72\x7e\x4e\x6d\x76\x4c\x6c\x76\x3e\x55\x58\x3f\x50\x51\x3f\ +\x57\x57\x3e\x47\x46\x5a\x67\x73\x5e\x71\x7f\x51\x67\x72\x54\x64\ +\x6b\x62\x73\x81\x5e\x69\x76\x44\x4f\x4f\x4b\x59\x58\x3d\x4b\x47\ +\x3b\x46\x3f\x49\x5c\x57\x43\x55\x55\x42\x50\x4c\x46\x4d\x48\x5d\ +\x67\x6f\x64\x71\x7b\x69\x76\x83\x64\x6d\x7e\x50\x57\x5b\x54\x61\ +\x62\x5c\x6c\x75\x55\x5b\x61\x50\x50\x53\x50\x53\x53\x53\x5a\x5d\ +\x57\x5d\x60\x57\x59\x5b\x52\x53\x59\x52\x54\x56\x51\x55\x58\x45\ +\x48\x4a\x52\x57\x5c\x58\x5f\x64\x4f\x55\x59\x50\x57\x5a\x52\x5d\ +\x63\x58\x70\x7a\x51\x60\x66\x56\x6b\x6e\x6c\x7e\x88\x65\x83\x9c\ +\x49\x5b\x65\x45\x51\x4c\x51\x69\x6d\x62\x7a\x8f\x45\x5c\x61\x44\ +\x52\x4d\x52\x5b\x5e\x61\x66\x65\x66\x73\x71\x5e\x70\x78\x4f\x69\ +\x69\x58\x6a\x6d\x53\x56\x56\x4e\x49\x40\x48\x48\x3d\x45\x53\x52\ +\x4b\x54\x59\x5f\x6a\x6c\x5a\x66\x6e\x59\x67\x6f\x5b\x67\x6e\x53\ +\x5b\x60\x57\x5e\x61\x46\x56\x5a\x2f\x40\x49\x32\x45\x4a\x39\x45\ +\x4a\x38\x49\x4b\x31\x43\x44\x2d\x3d\x3e\x22\x3e\x3d\x3a\x51\x57\ +\x3a\x4b\x50\x65\x72\x76\x64\x78\x86\x49\x55\x56\x38\x4b\x4f\x50\ +\x5d\x59\x32\x56\x56\x38\x5b\x5b\x43\x5d\x61\x33\x46\x4c\x00\x00\ +\x00\x3d\x4d\x48\x3b\x45\x3b\x37\x3f\x3b\x3f\x55\x4d\x32\x34\x2c\ +\x33\x33\x2f\x37\x3c\x37\x36\x3a\x34\x2f\x30\x2a\x34\x35\x31\x36\ +\x3b\x35\x3a\x40\x3c\x39\x3f\x38\x2e\x32\x29\x31\x34\x2c\x35\x39\ +\x33\x31\x31\x2b\x32\x36\x30\x53\x68\x72\x60\x71\x76\x3f\x4e\x4c\ +\x44\x64\x62\x3f\x58\x57\x46\x6d\x6a\x44\x64\x5f\x44\x63\x5d\x42\ +\x5b\x57\x45\x59\x58\x41\x55\x52\x3f\x5a\x53\x3e\x51\x4c\x3a\x4d\ +\x46\x44\x5c\x5b\x51\x64\x69\x58\x64\x66\x58\x62\x6b\x47\x56\x57\ +\x3e\x4d\x4d\x4f\x63\x6c\x3f\x51\x51\x3a\x4b\x48\x44\x60\x60\x4c\ +\x67\x72\x58\x6c\x77\x57\x6a\x71\x42\x5f\x62\x3b\x50\x4e\x40\x56\ +\x58\x3a\x48\x45\x39\x4c\x4a\x3c\x59\x56\x56\x75\x85\x6a\x84\x98\ +\x5c\x72\x82\x45\x63\x68\x3f\x55\x55\x47\x64\x68\x4d\x69\x70\x47\ +\x60\x64\x4c\x65\x68\x42\x57\x55\x41\x59\x5e\x58\x6b\x75\x56\x6a\ +\x77\x65\x81\x96\x53\x68\x77\x56\x6c\x7a\x46\x61\x69\x40\x59\x58\ +\x4a\x62\x67\x50\x73\x82\x44\x5e\x66\x4f\x60\x6b\x45\x4f\x51\x5a\ +\x73\x7f\x52\x6f\x7b\x41\x64\x6c\x3f\x4e\x4f\x3d\x4f\x50\x47\x52\ +\x54\x5a\x6b\x7c\x5d\x71\x82\x4d\x60\x69\x4e\x61\x68\x5e\x70\x7d\ +\x5a\x64\x6f\x40\x49\x47\x4e\x5a\x5d\x3f\x4d\x4b\x41\x51\x50\x43\ +\x4f\x4c\x4b\x5d\x61\x41\x4d\x48\x47\x50\x4f\x5b\x69\x6f\x63\x75\ +\x7f\x67\x73\x7e\x58\x60\x6b\x44\x49\x4a\x56\x61\x66\x5c\x6a\x73\ +\x54\x58\x5f\x51\x54\x55\x50\x51\x52\x55\x58\x5a\x58\x59\x5d\x55\ +\x59\x5e\x57\x59\x5c\x52\x55\x5d\x52\x56\x5d\x4f\x56\x5c\x5a\x62\ +\x6d\x58\x5e\x65\x4e\x59\x5f\x58\x69\x71\x52\x63\x6b\x52\x65\x70\ +\x4d\x59\x5f\x54\x65\x64\x6d\x7e\x89\x62\x7c\x8e\x42\x53\x55\x4f\ +\x5c\x5b\x5b\x71\x76\x6e\x8d\xa8\x48\x67\x73\x4e\x60\x5d\x5d\x6c\ +\x77\x6b\x64\x60\x5b\x5d\x55\x50\x4d\x47\x61\x71\x6f\x57\x5b\x5e\ +\x54\x4d\x49\x56\x4d\x45\x51\x4f\x49\x44\x51\x4a\x4b\x58\x59\x5d\ +\x68\x6c\x5a\x67\x6e\x5a\x68\x6c\x4a\x5a\x62\x4d\x5e\x66\x4b\x5c\ +\x62\x40\x52\x59\x3c\x52\x58\x2f\x45\x50\x33\x49\x4b\x2e\x44\x47\ +\x2a\x3c\x3e\x38\x4f\x57\x3a\x5a\x63\x45\x61\x62\x49\x5a\x60\x4c\ +\x54\x51\x53\x63\x69\x3b\x4d\x53\x38\x40\x3c\x48\x4e\x47\x39\x55\ +\x55\x31\x55\x56\x3e\x4d\x4c\x2e\x41\x4a\x00\x00\x00\x44\x55\x51\ +\x39\x43\x37\x36\x3b\x36\x35\x3b\x33\x2f\x2f\x29\x36\x37\x31\x35\ +\x37\x32\x33\x36\x30\x33\x36\x30\x3c\x40\x3c\x3a\x41\x3a\x3f\x4a\ +\x43\x39\x41\x39\x32\x34\x2b\x2e\x30\x2a\x35\x37\x32\x36\x39\x35\ +\x34\x3b\x33\x4e\x63\x6a\x5f\x70\x71\x3c\x50\x49\x46\x67\x64\x3f\ +\x52\x4e\x44\x66\x66\x46\x65\x61\x46\x66\x63\x45\x5c\x5a\x47\x59\ +\x59\x46\x56\x54\x41\x5d\x57\x3d\x53\x4d\x3a\x4f\x4b\x42\x5a\x57\ +\x4f\x65\x67\x58\x68\x6e\x57\x60\x65\x44\x56\x56\x49\x5e\x62\x53\ +\x69\x72\x41\x53\x53\x36\x3e\x3b\x45\x64\x62\x52\x6c\x75\x5a\x70\ +\x7d\x57\x6d\x76\x4a\x65\x67\x3f\x59\x58\x42\x57\x53\x39\x40\x39\ +\x35\x39\x35\x38\x4f\x4a\x55\x6d\x7e\x6b\x80\x95\x61\x7a\x8b\x4e\ +\x6c\x73\x40\x5a\x57\x52\x71\x7a\x50\x6f\x7a\x4f\x63\x6b\x43\x5a\ +\x5b\x40\x59\x57\x45\x60\x67\x5e\x6c\x76\x50\x5f\x6a\x64\x80\x93\ +\x5d\x77\x8a\x58\x71\x83\x48\x65\x72\x3b\x52\x55\x4c\x5e\x67\x5a\ +\x7c\x8f\x53\x6e\x7e\x4f\x5e\x6c\x3a\x3e\x3d\x5b\x6d\x75\x53\x66\ +\x71\x4c\x67\x70\x46\x5b\x5f\x43\x55\x57\x54\x66\x71\x5e\x70\x86\ +\x64\x7a\x90\x50\x5c\x64\x59\x66\x6e\x67\x77\x87\x58\x62\x70\x41\ +\x48\x45\x4c\x5a\x59\x43\x53\x53\x4c\x60\x68\x45\x54\x55\x56\x67\ +\x6d\x44\x52\x4e\x4b\x5a\x5a\x5c\x6c\x70\x5b\x6f\x7b\x54\x5b\x60\ +\x46\x47\x49\x48\x4a\x49\x5f\x68\x70\x5b\x61\x67\x56\x58\x61\x52\ +\x56\x5b\x4f\x51\x55\x52\x54\x56\x57\x59\x5e\x5a\x5e\x62\x5a\x5f\ +\x65\x56\x5b\x62\x5a\x60\x6c\x59\x62\x6f\x5c\x67\x72\x5a\x62\x66\ +\x53\x67\x6f\x5f\x73\x7e\x4c\x5e\x65\x53\x5e\x65\x56\x65\x71\x48\ +\x52\x4e\x53\x59\x58\x50\x66\x6c\x46\x5e\x5e\x5b\x6a\x71\x68\x7e\ +\x8c\x74\x94\xb0\x4e\x6e\x7f\x4f\x5a\x58\x52\x55\x50\x4e\x45\x3a\ +\x48\x3e\x31\x4d\x44\x3b\x5c\x56\x4e\x59\x52\x4d\x59\x51\x4b\x57\ +\x4a\x42\x56\x52\x4d\x3e\x4f\x48\x4e\x5f\x59\x59\x65\x67\x51\x60\ +\x64\x47\x59\x5c\x43\x49\x45\x46\x58\x60\x3b\x53\x5c\x3f\x54\x57\ +\x46\x62\x65\x39\x58\x65\x43\x59\x5c\x27\x42\x47\x2d\x46\x46\x71\ +\x80\x80\x72\x8c\x9f\x71\x84\x88\x40\x4f\x5b\x31\x3c\x37\x3f\x58\ +\x56\x42\x5a\x62\x46\x4d\x4d\x4e\x52\x4b\x49\x5a\x58\x30\x4b\x53\ +\x29\x3c\x3c\x2e\x43\x45\x00\x00\x00\x40\x52\x4c\x3c\x47\x3e\x37\ +\x3c\x34\x33\x37\x30\x2f\x31\x2a\x39\x3c\x36\x36\x39\x31\x33\x35\ +\x2e\x30\x2e\x29\x37\x3a\x35\x3a\x40\x39\x3e\x48\x44\x37\x40\x35\ +\x31\x33\x2a\x30\x33\x2b\x2f\x30\x29\x32\x36\x30\x31\x30\x2a\x44\ +\x56\x59\x55\x64\x5f\x37\x4a\x44\x44\x5f\x5c\x43\x56\x54\x44\x60\ +\x61\x45\x67\x64\x48\x69\x6a\x44\x5c\x5b\x45\x57\x56\x41\x58\x57\ +\x46\x63\x66\x43\x63\x63\x3f\x54\x52\x42\x5c\x5a\x4c\x63\x64\x5b\ +\x6a\x72\x59\x67\x75\x4f\x66\x70\x4e\x68\x6e\x4f\x64\x6a\x38\x45\ +\x40\x34\x3a\x31\x41\x5e\x5c\x4c\x6a\x74\x5e\x77\x86\x5c\x76\x83\ +\x49\x60\x60\x40\x54\x53\x46\x56\x5b\x3d\x47\x42\x3b\x45\x40\x3f\ +\x55\x52\x51\x61\x6a\x71\x88\x9d\x63\x7a\x89\x4d\x6c\x73\x46\x64\ +\x6b\x56\x78\x88\x4c\x6f\x79\x47\x5c\x62\x37\x40\x3a\x40\x59\x56\ +\x49\x66\x69\x5f\x71\x83\x56\x66\x74\x60\x7c\x8d\x5d\x76\x88\x56\ +\x6f\x7e\x51\x6e\x7f\x3f\x60\x66\x54\x65\x6c\x64\x83\x9b\x61\x7d\ +\x94\x4c\x5b\x66\x33\x37\x2f\x4b\x52\x56\x52\x61\x67\x54\x6e\x7c\ +\x4b\x62\x6b\x41\x52\x54\x64\x78\x8a\x60\x79\x89\x5a\x6a\x79\x53\ +\x5d\x67\x57\x60\x68\x65\x74\x80\x4b\x50\x58\x41\x47\x43\x49\x56\ +\x54\x4e\x5b\x5f\x5d\x6b\x73\x49\x57\x59\x54\x64\x64\x44\x50\x4d\ +\x48\x54\x50\x5e\x68\x6e\x5d\x6d\x75\x53\x59\x62\x3c\x40\x40\x4f\ +\x50\x4e\x61\x68\x6e\x5a\x5d\x61\x55\x5b\x5f\x54\x5a\x60\x4c\x50\ +\x51\x50\x54\x55\x56\x5c\x61\x5d\x64\x65\x5e\x64\x6e\x5b\x65\x6e\ +\x63\x6f\x7b\x60\x70\x81\x49\x56\x5a\x5b\x6a\x6f\x5b\x78\x8c\x5b\ +\x71\x7f\x51\x61\x6e\x52\x59\x58\x55\x66\x72\x43\x51\x51\x3f\x44\ +\x3c\x49\x5e\x5e\x5e\x70\x77\x6e\x84\x97\x73\x85\x97\x6a\x87\x9d\ +\x59\x6f\x83\x4b\x4a\x45\x4a\x41\x36\x49\x3f\x2f\x4b\x41\x32\x50\ +\x40\x36\x54\x49\x3d\x51\x42\x37\x54\x44\x3a\x4e\x43\x3a\x4c\x46\ +\x39\x4d\x49\x43\x47\x4e\x4f\x43\x55\x58\x46\x57\x5d\x4a\x5b\x5d\ +\x3a\x4c\x5c\x48\x59\x5d\x3e\x52\x5c\x35\x4f\x57\x31\x4c\x4e\x2d\ +\x4a\x48\x34\x51\x50\x3c\x55\x5a\x65\x74\x78\x6c\x7e\x92\x86\x8c\ +\x92\x64\x72\x83\x37\x44\x4a\x38\x4a\x42\x3d\x54\x57\x36\x4f\x58\ +\x27\x2e\x32\x2c\x37\x35\x2d\x3e\x3e\x27\x3a\x3e\x30\x45\x41\x2b\ +\x46\x44\x00\x00\x00\x45\x57\x52\x3f\x45\x41\x39\x43\x3c\x33\x35\ +\x2e\x32\x33\x2d\x38\x3e\x39\x37\x3c\x34\x33\x35\x2e\x37\x3b\x36\ +\x39\x3e\x39\x37\x3c\x37\x3e\x4a\x45\x39\x40\x3a\x33\x34\x2d\x30\ +\x34\x2d\x33\x38\x30\x37\x3b\x37\x37\x3c\x33\x3b\x46\x43\x3f\x4b\ +\x47\x3f\x4f\x4d\x44\x5c\x5b\x44\x55\x53\x45\x62\x60\x4d\x70\x6d\ +\x46\x67\x64\x4a\x62\x64\x4a\x5f\x68\x47\x65\x6b\x59\x71\x83\x4d\ +\x6f\x74\x44\x5c\x5f\x48\x5f\x61\x46\x5d\x61\x5c\x6e\x79\x53\x65\ +\x69\x60\x79\x89\x53\x70\x7d\x4a\x62\x64\x37\x43\x3b\x36\x3f\x3a\ +\x3d\x52\x4e\x42\x5a\x58\x5b\x75\x81\x64\x80\x8e\x43\x54\x50\x40\ +\x4f\x4b\x4e\x5f\x5f\x3f\x4b\x49\x43\x51\x50\x4d\x61\x65\x3b\x45\ +\x3e\x5c\x6f\x76\x64\x79\x88\x4d\x6a\x73\x47\x66\x6f\x4d\x57\x5c\ +\x48\x65\x6a\x43\x56\x53\x3a\x44\x40\x41\x57\x54\x54\x6b\x6e\x61\ +\x73\x80\x5b\x72\x81\x51\x66\x73\x5f\x7d\x92\x57\x75\x83\x4f\x68\ +\x74\x38\x49\x4a\x5b\x6e\x7a\x64\x7f\x93\x65\x7f\x98\x4a\x56\x5f\ +\x34\x38\x36\x3e\x42\x40\x49\x55\x56\x5d\x77\x86\x4e\x6a\x72\x4b\ +\x5e\x62\x66\x7e\x94\x5e\x75\x85\x59\x67\x74\x5f\x6c\x79\x55\x5e\ +\x6a\x57\x61\x69\x53\x59\x61\x49\x51\x53\x48\x56\x53\x4c\x53\x52\ +\x5f\x6b\x71\x40\x47\x43\x3f\x48\x43\x3e\x49\x47\x4b\x52\x4f\x62\ +\x72\x77\x60\x6a\x72\x57\x5d\x64\x3a\x3d\x3b\x45\x44\x3e\x59\x5d\ +\x62\x5b\x5f\x65\x58\x5e\x65\x55\x5c\x61\x4e\x54\x5a\x52\x5c\x61\ +\x5d\x66\x71\x61\x66\x71\x5c\x68\x70\x60\x6f\x7b\x61\x72\x82\x5c\ +\x6d\x7e\x4b\x5b\x61\x5b\x6d\x70\x6b\x86\x9a\x5a\x72\x83\x52\x60\ +\x69\x53\x5c\x61\x60\x74\x87\x49\x62\x67\x4c\x5e\x63\x56\x65\x64\ +\x70\x85\x97\x76\x8e\xa0\x69\x7c\x91\x63\x7b\x87\x58\x61\x69\x47\ +\x41\x37\x49\x40\x31\x4d\x41\x34\x3e\x4a\x3e\x4a\x48\x40\x4f\x4b\ +\x44\x46\x46\x3a\x47\x44\x36\x4d\x45\x39\x57\x57\x50\x49\x55\x55\ +\x3e\x57\x5a\x41\x5d\x62\x45\x5a\x5c\x43\x58\x5b\x40\x53\x5c\x50\ +\x5e\x5f\x4b\x5d\x5f\x4b\x5e\x66\x3d\x57\x5d\x24\x3e\x48\x37\x54\ +\x53\x7e\x8b\x85\x88\x94\x9d\x6f\x7d\x87\x77\x86\x87\x34\x4a\x5a\ +\x3f\x4f\x53\x28\x3b\x3c\x2f\x50\x56\x23\x38\x3c\x25\x37\x36\x2c\ +\x40\x44\x29\x40\x3f\x2a\x3d\x3a\x29\x3e\x3d\x26\x3b\x34\x00\x00\ +\x00\x42\x56\x4f\x41\x48\x43\x3e\x49\x42\x37\x3b\x34\x35\x39\x33\ +\x3e\x49\x44\x37\x3b\x35\x35\x37\x2f\x38\x3e\x36\x3a\x40\x37\x38\ +\x3d\x37\x3e\x4d\x47\x36\x3c\x32\x32\x34\x2c\x31\x37\x2f\x34\x37\ +\x31\x35\x36\x32\x39\x3a\x36\x2f\x30\x28\x41\x54\x53\x43\x54\x50\ +\x43\x59\x57\x40\x50\x4d\x3c\x4e\x4c\x4d\x69\x66\x46\x65\x63\x4c\ +\x62\x66\x4e\x63\x69\x44\x62\x61\x52\x69\x73\x5c\x77\x84\x50\x6c\ +\x75\x50\x68\x70\x3d\x57\x5b\x50\x61\x64\x41\x55\x54\x58\x72\x7e\ +\x58\x73\x7c\x43\x5f\x5d\x39\x48\x41\x38\x44\x3e\x39\x48\x41\x3d\ +\x51\x4b\x55\x6c\x74\x63\x80\x8e\x3a\x42\x3e\x38\x3f\x3a\x49\x5c\ +\x5c\x41\x52\x51\x4e\x63\x65\x51\x64\x68\x3b\x3e\x3e\x42\x47\x47\ +\x5d\x68\x70\x47\x57\x59\x50\x6c\x73\x54\x62\x6d\x44\x5a\x5a\x3f\ +\x55\x51\x3b\x48\x42\x3c\x4c\x4b\x4e\x65\x69\x64\x7b\x8b\x55\x68\ +\x76\x3f\x4b\x4d\x64\x82\x94\x5e\x79\x8d\x4d\x65\x71\x45\x52\x55\ +\x5c\x6d\x77\x60\x77\x89\x64\x80\x98\x48\x56\x5b\x3b\x43\x42\x3a\ +\x42\x3f\x40\x4e\x4b\x57\x6b\x74\x4c\x67\x6c\x51\x64\x69\x6d\x84\ +\x9a\x66\x78\x8a\x5c\x6b\x79\x5c\x6d\x7a\x54\x5e\x68\x59\x60\x69\ +\x5d\x66\x6c\x54\x5c\x5e\x42\x4e\x4a\x40\x43\x3f\x49\x4c\x4b\x45\ +\x47\x41\x51\x57\x56\x3f\x47\x43\x4d\x52\x50\x5b\x6a\x6d\x57\x5c\ +\x5e\x54\x5a\x5d\x3e\x3f\x3a\x42\x41\x3a\x59\x61\x67\x5a\x62\x69\ +\x5f\x64\x6f\x58\x5e\x64\x54\x5f\x68\x5c\x6a\x75\x62\x71\x7d\x61\ +\x6d\x7b\x4c\x5b\x62\x56\x64\x66\x62\x76\x83\x5f\x73\x85\x4e\x64\ +\x6a\x54\x61\x66\x6c\x81\x90\x5c\x74\x84\x57\x69\x77\x59\x69\x71\ +\x6d\x81\x95\x60\x76\x86\x4d\x61\x6b\x5e\x5b\x5a\x62\x6e\x7a\x59\ +\x65\x67\x5b\x5e\x61\x53\x62\x63\x51\x4a\x49\x49\x3e\x33\x4b\x40\ +\x31\x50\x46\x3a\x50\x48\x3c\x4f\x4a\x3d\x49\x52\x4e\x3c\x49\x40\ +\x3b\x4b\x43\x4e\x4b\x3b\x4a\x4a\x3d\x30\x4b\x4e\x34\x53\x53\x33\ +\x50\x53\x2b\x4d\x54\x32\x4a\x4e\x3e\x54\x58\x42\x52\x59\x3b\x4b\ +\x45\x58\x6e\x70\x45\x65\x68\x58\x79\x95\x3d\x64\x70\x40\x58\x5d\ +\x5f\x6b\x6b\x48\x5b\x60\x31\x45\x4c\x31\x4e\x52\x37\x50\x53\x2a\ +\x41\x40\x34\x50\x4d\x39\x53\x50\x2c\x41\x3b\x30\x4f\x59\x29\x3a\ +\x36\x28\x39\x37\x27\x37\x33\x28\x42\x42\x00\x00\x00\x44\x56\x51\ +\x44\x52\x48\x3a\x43\x39\x3a\x44\x3b\x37\x3b\x34\x3c\x45\x40\x38\ +\x3b\x37\x33\x34\x2d\x39\x40\x37\x3b\x48\x3d\x39\x40\x38\x3f\x4d\ +\x49\x37\x3d\x35\x35\x36\x30\x3b\x48\x3f\x3c\x47\x3f\x39\x3e\x3b\ +\x35\x37\x31\x35\x39\x34\x42\x58\x56\x44\x5a\x55\x41\x57\x51\x42\ +\x4f\x4a\x42\x5a\x59\x4b\x66\x62\x47\x64\x60\x4c\x60\x61\x44\x53\ +\x52\x3f\x58\x54\x51\x68\x6e\x63\x7a\x8a\x62\x7d\x8c\x5b\x74\x7f\ +\x40\x59\x5a\x3c\x4c\x49\x41\x59\x55\x4d\x6c\x71\x53\x6f\x76\x43\ +\x61\x5d\x3b\x4c\x46\x41\x55\x54\x39\x40\x3b\x44\x55\x50\x55\x69\ +\x71\x5b\x76\x80\x3a\x42\x3c\x3e\x43\x41\x4a\x63\x68\x4d\x69\x72\ +\x54\x70\x7a\x4f\x63\x67\x38\x3f\x3d\x3b\x3d\x3c\x53\x60\x64\x52\ +\x63\x66\x56\x68\x6e\x5e\x68\x6f\x4e\x6a\x6a\x3d\x54\x4e\x39\x49\ +\x43\x46\x5a\x5e\x50\x69\x6f\x68\x82\x95\x4b\x5a\x64\x40\x4c\x4e\ +\x57\x6f\x7c\x5d\x7a\x8e\x53\x69\x75\x44\x54\x56\x4c\x59\x5f\x5d\ +\x6e\x7e\x5b\x74\x85\x48\x54\x57\x42\x50\x51\x3e\x49\x4a\x37\x44\ +\x3f\x45\x4d\x4c\x4f\x65\x6c\x52\x63\x6a\x69\x7b\x8a\x64\x76\x8b\ +\x5c\x69\x73\x5b\x6b\x77\x55\x5f\x66\x5e\x64\x6b\x60\x6a\x6f\x56\ +\x5e\x5e\x3e\x44\x40\x48\x47\x45\x44\x46\x45\x49\x47\x42\x59\x5d\ +\x61\x47\x4d\x4a\x54\x58\x5a\x52\x5c\x5c\x5b\x62\x66\x4b\x4f\x50\ +\x43\x44\x42\x40\x43\x38\x5b\x6b\x6b\x5c\x66\x6d\x60\x67\x6d\x5c\ +\x62\x6c\x55\x64\x6d\x5d\x6d\x77\x56\x63\x6a\x55\x66\x6d\x42\x53\ +\x55\x50\x5c\x61\x58\x6b\x73\x5b\x6c\x73\x5b\x71\x79\x59\x6d\x7e\ +\x65\x77\x81\x5b\x74\x85\x59\x70\x7a\x63\x77\x80\x71\x86\x9d\x71\ +\x81\x90\x52\x62\x70\x5e\x58\x58\x57\x55\x56\x55\x53\x53\x5c\x57\ +\x58\x55\x57\x58\x4f\x47\x41\x4a\x3d\x2e\x4d\x40\x30\x4e\x44\x34\ +\x53\x45\x34\x53\x47\x38\x54\x51\x46\x3a\x44\x38\x2e\x46\x3e\x48\ +\x4a\x3e\x3f\x43\x38\x29\x3d\x3a\x37\x4d\x49\x2e\x4c\x4e\x2b\x47\ +\x48\x3b\x5c\x62\x4c\x5c\x5f\x39\x58\x5f\x3e\x54\x56\x30\x4b\x4e\ +\x40\x55\x52\x64\x84\x85\x2f\x53\x65\x25\x47\x49\x23\x42\x45\x29\ +\x45\x48\x2d\x43\x47\x34\x4f\x51\x38\x51\x53\x3f\x53\x56\x42\x53\ +\x53\x33\x44\x41\x33\x46\x41\x30\x4a\x5d\x24\x38\x35\x2c\x40\x40\ +\x3a\x52\x55\x37\x58\x56\x00\x00\x00\x43\x52\x4f\x48\x56\x50\x3d\ +\x48\x41\x3f\x4e\x47\x38\x3c\x36\x39\x3d\x36\x38\x3b\x35\x37\x3a\ +\x33\x3b\x46\x41\x3f\x4e\x47\x3b\x45\x3f\x3a\x48\x3e\x39\x40\x39\ +\x37\x3c\x34\x39\x45\x3e\x3f\x4d\x47\x39\x3f\x37\x3f\x4c\x4b\x42\ +\x50\x4c\x46\x58\x5a\x46\x64\x5f\x43\x5f\x59\x44\x53\x4f\x44\x5c\ +\x58\x4a\x69\x6b\x49\x67\x66\x41\x51\x49\x3a\x45\x40\x3e\x55\x4f\ +\x42\x55\x53\x60\x75\x84\x67\x7e\x8c\x62\x7c\x86\x45\x5f\x63\x3f\ +\x56\x59\x3d\x51\x4e\x45\x68\x68\x4a\x68\x70\x42\x63\x5f\x3a\x4e\ +\x49\x45\x59\x5a\x3a\x41\x3a\x41\x4a\x47\x53\x64\x6c\x4f\x65\x68\ +\x38\x41\x3a\x3c\x41\x3f\x52\x6a\x6f\x60\x81\x90\x60\x7f\x8e\x4b\ +\x60\x61\x39\x3f\x3c\x39\x40\x3e\x4e\x5b\x59\x53\x67\x6c\x52\x63\ +\x67\x5a\x64\x6c\x45\x65\x64\x40\x53\x4f\x3a\x43\x3e\x46\x56\x56\ +\x4d\x5f\x62\x62\x78\x87\x4c\x59\x62\x3c\x47\x48\x47\x55\x59\x5e\ +\x7a\x8b\x58\x6c\x75\x40\x4f\x52\x50\x5f\x67\x4c\x59\x60\x4b\x59\ +\x5c\x4a\x5c\x5f\x49\x5f\x64\x43\x53\x56\x39\x43\x40\x46\x4b\x4a\ +\x5a\x68\x74\x58\x6c\x74\x66\x77\x83\x58\x68\x76\x54\x61\x67\x54\ +\x64\x6c\x54\x5e\x65\x61\x69\x6f\x59\x5f\x60\x54\x5b\x5d\x3f\x40\ +\x3b\x51\x50\x4f\x50\x53\x56\x4a\x4b\x4a\x55\x58\x5c\x4f\x54\x55\ +\x55\x57\x57\x5b\x61\x63\x59\x5f\x67\x50\x51\x51\x3f\x40\x3f\x3f\ +\x49\x44\x51\x66\x66\x57\x65\x69\x5a\x64\x68\x5c\x68\x72\x4b\x5b\ +\x5e\x55\x68\x6c\x4b\x5b\x60\x48\x53\x52\x4f\x63\x6d\x5b\x69\x73\ +\x61\x78\x86\x5a\x6e\x7b\x60\x76\x81\x5a\x70\x86\x5d\x6c\x72\x64\ +\x7e\x8e\x5d\x7a\x8a\x6d\x86\x99\x69\x7c\x91\x77\x88\x9a\x5b\x5b\ +\x63\x62\x5d\x5c\x58\x51\x51\x5d\x55\x51\x60\x5b\x5c\x54\x4e\x4a\ +\x4c\x40\x32\x4c\x42\x32\x4e\x43\x34\x50\x48\x3a\x52\x46\x38\x51\ +\x49\x3c\x47\x4b\x3f\x36\x43\x38\x2c\x44\x3d\x31\x43\x40\x29\x3c\ +\x37\x23\x37\x33\x28\x3a\x34\x2c\x44\x43\x34\x52\x5b\x41\x59\x59\ +\x4d\x67\x6c\x2a\x48\x4a\x2f\x4d\x4f\x41\x5b\x5c\x5c\x71\x72\x55\ +\x7a\x8f\x4d\x65\x71\x46\x5c\x63\x4e\x63\x65\x43\x5d\x68\x2e\x45\ +\x4d\x30\x46\x47\x2f\x3e\x3f\x33\x45\x45\x3a\x4c\x4e\x2c\x42\x40\ +\x43\x5b\x59\x38\x53\x55\x43\x59\x5b\x36\x4f\x54\x2f\x4b\x4c\x31\ +\x4b\x47\x00\x00\x00\x47\x59\x59\x4a\x5c\x5b\x42\x52\x4b\x42\x4f\ +\x4b\x40\x43\x3f\x3c\x3f\x39\x39\x3d\x37\x38\x3b\x33\x3e\x4a\x44\ +\x43\x55\x51\x3d\x4e\x46\x39\x47\x3e\x3c\x44\x3c\x33\x35\x2e\x3f\ +\x50\x49\x44\x53\x4e\x43\x4f\x4c\x4d\x65\x65\x47\x57\x54\x4c\x56\ +\x5a\x46\x67\x66\x45\x64\x5f\x45\x56\x4f\x42\x54\x4d\x47\x6c\x69\ +\x4c\x6f\x6d\x43\x53\x4e\x35\x3c\x38\x3f\x58\x51\x41\x59\x53\x54\ +\x68\x71\x5e\x77\x88\x64\x7d\x8b\x5a\x7b\x8c\x50\x75\x82\x41\x53\ +\x54\x43\x64\x5f\x47\x61\x60\x43\x60\x5d\x3f\x59\x59\x44\x56\x56\ +\x38\x40\x38\x43\x4a\x4a\x58\x66\x71\x4a\x61\x62\x37\x42\x3a\x3b\ +\x3d\x3b\x52\x64\x66\x65\x84\x91\x60\x81\x8d\x47\x5c\x5f\x40\x4c\ +\x49\x47\x50\x51\x48\x5c\x5b\x49\x61\x62\x50\x65\x69\x56\x5d\x5f\ +\x49\x6c\x6a\x41\x58\x55\x3d\x45\x43\x45\x55\x59\x54\x6c\x75\x57\ +\x67\x73\x4f\x64\x6a\x43\x4e\x51\x4a\x59\x60\x5a\x71\x80\x5c\x73\ +\x83\x46\x59\x62\x5a\x70\x7e\x44\x52\x57\x46\x4d\x50\x58\x6a\x76\ +\x57\x70\x7f\x47\x59\x5a\x3b\x46\x42\x44\x4c\x49\x5e\x6a\x76\x54\ +\x68\x6f\x5a\x6a\x6d\x52\x5d\x63\x44\x51\x52\x49\x55\x54\x5c\x66\ +\x6c\x61\x68\x72\x5a\x5b\x5f\x4a\x53\x51\x42\x47\x40\x5a\x5b\x5c\ +\x54\x57\x5c\x56\x58\x58\x5a\x5d\x62\x54\x59\x5d\x56\x59\x57\x5e\ +\x62\x66\x4f\x53\x57\x52\x56\x55\x44\x48\x48\x4f\x66\x6b\x4d\x62\ +\x60\x56\x67\x6d\x54\x62\x69\x4d\x5b\x5d\x4b\x5d\x62\x51\x65\x69\ +\x53\x69\x76\x54\x5f\x61\x6c\x83\x96\x65\x79\x8e\x6e\x82\x95\x67\ +\x7d\x90\x6c\x85\x98\x67\x82\x9d\x51\x5f\x65\x7a\x89\x98\x6e\x80\ +\x94\x7e\x92\xa6\x62\x6d\x80\x5d\x5a\x58\x5c\x56\x55\x62\x5d\x5e\ +\x63\x5c\x5c\x64\x5c\x5a\x64\x5f\x60\x4d\x48\x3f\x4d\x42\x30\x4f\ +\x46\x35\x52\x48\x39\x50\x46\x39\x50\x44\x36\x4f\x49\x3b\x3c\x49\ +\x41\x2b\x3e\x36\x26\x3a\x34\x23\x3a\x39\x1e\x34\x31\x18\x2b\x2a\ +\x20\x33\x31\x28\x3d\x3a\x3a\x4e\x53\x42\x52\x4f\x3e\x61\x6e\x3c\ +\x5e\x63\x62\x77\x78\x6a\x79\x7f\x68\x73\x72\x4b\x68\x7a\x47\x4d\ +\x4c\x46\x4f\x51\x4f\x60\x65\x3b\x57\x62\x26\x40\x37\x2c\x47\x46\ +\x23\x41\x3e\x38\x47\x42\x3f\x51\x4a\x4d\x61\x61\x45\x57\x5d\x45\ +\x5c\x5d\x51\x67\x6c\x35\x4f\x56\x30\x49\x4e\x33\x46\x41\x00\x00\ +\x00\x48\x58\x56\x4a\x59\x55\x4a\x5c\x5a\x40\x52\x48\x3f\x48\x43\ +\x3b\x41\x3b\x3d\x45\x3b\x3b\x40\x38\x3c\x47\x3f\x42\x55\x50\x41\ +\x54\x4b\x39\x43\x39\x3a\x44\x3d\x3d\x45\x40\x40\x55\x4d\x45\x57\ +\x52\x43\x53\x52\x50\x72\x73\x46\x58\x55\x52\x58\x52\x40\x53\x4e\ +\x46\x61\x5b\x4a\x60\x59\x3c\x4a\x41\x43\x62\x5c\x49\x69\x65\x47\ +\x57\x54\x3d\x42\x3e\x3e\x52\x4d\x44\x56\x56\x55\x6a\x72\x69\x80\ +\x96\x6c\x86\x97\x66\x82\x90\x5b\x79\x82\x42\x5b\x57\x41\x5e\x5a\ +\x49\x62\x60\x45\x5e\x5b\x41\x52\x50\x3f\x41\x40\x3d\x4a\x44\x48\ +\x56\x54\x62\x6e\x76\x4c\x62\x62\x3f\x4f\x4c\x46\x55\x52\x54\x69\ +\x6f\x69\x89\x9e\x61\x80\x8b\x46\x5c\x5d\x4d\x5a\x5e\x48\x53\x53\ +\x4d\x66\x64\x4d\x67\x68\x55\x6c\x72\x52\x5a\x5c\x46\x60\x61\x4a\ +\x67\x66\x40\x4d\x49\x49\x54\x56\x5b\x71\x7c\x60\x75\x80\x50\x66\ +\x6f\x44\x4f\x54\x50\x66\x71\x55\x6e\x79\x65\x7c\x8a\x5b\x73\x85\ +\x64\x7c\x8e\x48\x5b\x61\x4c\x58\x5c\x62\x72\x78\x60\x77\x88\x49\ +\x5f\x5c\x3e\x4d\x4a\x44\x4c\x4a\x59\x61\x63\x4c\x5d\x5d\x52\x60\ +\x61\x51\x5a\x63\x48\x52\x50\x47\x56\x54\x5c\x66\x67\x5d\x63\x6a\ +\x5b\x5d\x5e\x40\x44\x42\x4c\x52\x4e\x5b\x5d\x63\x57\x59\x5b\x5b\ +\x5f\x64\x59\x5d\x63\x51\x59\x5a\x53\x58\x56\x5e\x64\x6a\x43\x47\ +\x45\x57\x5f\x66\x54\x62\x65\x5a\x6f\x7a\x49\x60\x60\x54\x62\x63\ +\x4e\x56\x58\x5a\x70\x7d\x5d\x72\x81\x69\x7e\x92\x5b\x73\x84\x58\ +\x6c\x75\x6e\x82\x91\x6d\x83\x9a\x72\x85\x99\x77\x8c\xa6\x6a\x82\ +\x98\x63\x74\x80\x63\x6f\x7b\x5f\x5b\x5b\x61\x63\x6b\x6f\x74\x77\ +\x56\x59\x60\x55\x4b\x45\x58\x51\x4e\x5b\x50\x49\x6c\x66\x64\x6c\ +\x67\x67\x67\x62\x62\x4e\x4c\x3f\x50\x47\x36\x56\x4d\x41\x52\x47\ +\x39\x49\x53\x46\x57\x52\x4a\x3f\x54\x54\x2b\x45\x40\x24\x46\x42\ +\x25\x3d\x35\x25\x3c\x38\x1a\x30\x33\x19\x2f\x2b\x24\x3c\x3a\x26\ +\x3c\x3d\x41\x5b\x5f\x4f\x6d\x71\x42\x5e\x65\x5b\x71\x72\x48\x63\ +\x66\x4a\x63\x63\x31\x4a\x55\x33\x4d\x54\x24\x3a\x36\x40\x53\x4f\ +\x52\x6b\x75\x2e\x4c\x4e\x2c\x44\x3d\x3a\x4c\x4c\x39\x4c\x46\x38\ +\x46\x42\x43\x52\x4d\x6a\x6d\x69\x51\x66\x72\x31\x49\x4e\x3a\x56\ +\x54\x25\x42\x43\x31\x4e\x4e\x30\x3c\x3b\x00\x00\x00\x45\x54\x54\ +\x4b\x5a\x57\x42\x51\x4d\x46\x5a\x58\x46\x53\x4e\x3d\x46\x3e\x44\ +\x55\x50\x41\x49\x43\x3e\x44\x3d\x42\x50\x4c\x43\x5b\x58\x3b\x46\ +\x3c\x3d\x4d\x48\x40\x49\x46\x3f\x49\x41\x42\x52\x4e\x44\x59\x5a\ +\x54\x78\x78\x3c\x40\x37\x31\x2f\x25\x37\x40\x3b\x49\x68\x63\x46\ +\x5f\x59\x41\x50\x49\x48\x66\x63\x48\x69\x64\x48\x5c\x5a\x3c\x45\ +\x3e\x3b\x48\x47\x48\x59\x57\x57\x69\x75\x65\x78\x8c\x66\x79\x87\ +\x5a\x6c\x74\x4d\x6c\x70\x45\x5e\x5d\x43\x5f\x5b\x46\x60\x5e\x45\ +\x5e\x5b\x3b\x44\x3f\x44\x4f\x4d\x3c\x47\x3f\x44\x4d\x49\x5d\x69\ +\x70\x4f\x5d\x61\x45\x5b\x58\x46\x57\x54\x50\x5f\x63\x68\x89\x9b\ +\x5b\x7a\x84\x4a\x62\x66\x53\x61\x67\x43\x53\x50\x44\x5d\x5b\x48\ +\x61\x5f\x53\x6f\x74\x50\x5a\x60\x48\x60\x60\x4b\x64\x67\x4b\x58\ +\x5b\x54\x61\x6d\x5b\x6c\x79\x5e\x73\x83\x54\x6a\x77\x4c\x5a\x60\ +\x63\x7b\x8d\x51\x69\x74\x67\x7b\x8f\x77\x8e\xa5\x60\x77\x8a\x55\ +\x69\x71\x58\x62\x65\x62\x6e\x75\x6a\x80\x90\x47\x61\x66\x40\x4f\ +\x4f\x4c\x59\x5c\x54\x57\x5a\x45\x51\x4f\x5b\x70\x7c\x43\x4c\x4d\ +\x40\x49\x44\x4e\x5e\x60\x56\x5f\x60\x56\x5a\x5d\x54\x59\x5c\x44\ +\x48\x47\x59\x5e\x63\x58\x5c\x62\x5a\x5e\x63\x5f\x64\x67\x57\x5d\ +\x65\x46\x4d\x4a\x4f\x54\x52\x4f\x55\x55\x47\x4c\x4a\x63\x72\x7e\ +\x62\x74\x80\x5d\x74\x85\x56\x73\x82\x4a\x5f\x64\x56\x62\x68\x6f\ +\x84\x9a\x6d\x83\x98\x6f\x85\x9b\x65\x7d\x92\x5b\x73\x80\x72\x85\ +\x97\x79\x8f\xa7\x74\x83\x97\x6e\x76\x85\x5a\x62\x6a\x60\x5c\x59\ +\x58\x52\x55\x56\x4e\x4d\x5a\x53\x53\x5c\x55\x54\x55\x4f\x4e\x53\ +\x47\x44\x55\x49\x42\x60\x57\x54\x64\x5e\x5b\x6c\x66\x61\x5f\x5b\ +\x59\x50\x41\x35\x51\x46\x36\x54\x4a\x3d\x54\x4d\x40\x5a\x51\x42\ +\x4f\x5d\x5c\x30\x4f\x45\x27\x4b\x49\x23\x3f\x40\x24\x3a\x37\x29\ +\x3e\x38\x25\x3b\x38\x2a\x4a\x4f\x3d\x59\x5a\x44\x5b\x5a\x56\x6c\ +\x75\x4c\x5e\x61\x59\x68\x6c\x61\x6e\x6e\x66\x7f\x90\x66\x7d\x85\ +\x5c\x77\x8c\x29\x3c\x3b\x4d\x62\x66\x52\x5c\x5c\x51\x61\x65\x45\ +\x5b\x61\x3b\x4a\x4a\x2c\x44\x4c\x35\x48\x42\x42\x4b\x43\x3b\x59\ +\x5b\x47\x5a\x59\x31\x46\x47\x25\x3f\x45\x2a\x45\x43\x25\x3f\x40\ +\x29\x3f\x3a\x1d\x36\x39\x00\x00\x00\x43\x51\x4d\x4a\x5c\x58\x3d\ +\x48\x43\x45\x5a\x58\x46\x51\x4c\x3e\x48\x45\x46\x56\x54\x41\x4b\ +\x42\x40\x4b\x43\x3d\x46\x3d\x3d\x4f\x4c\x3b\x4a\x44\x3b\x43\x41\ +\x4b\x55\x56\x45\x4d\x48\x45\x5a\x58\x4b\x66\x67\x51\x6f\x6f\x38\ +\x3c\x34\x34\x31\x2b\x39\x3e\x3c\x48\x65\x61\x4a\x63\x5e\x40\x4c\ +\x44\x43\x58\x53\x47\x62\x5e\x45\x5a\x53\x3f\x48\x42\x33\x3a\x33\ +\x48\x59\x59\x5b\x6d\x79\x63\x76\x84\x59\x63\x6a\x58\x62\x68\x49\ +\x64\x65\x45\x61\x5e\x40\x5b\x59\x44\x5f\x5b\x3e\x52\x4d\x3e\x49\ +\x48\x4a\x59\x58\x40\x52\x4d\x42\x4e\x49\x57\x61\x65\x47\x55\x52\ +\x45\x5a\x55\x47\x58\x57\x4b\x59\x5e\x6d\x87\x9c\x57\x79\x82\x4f\ +\x6b\x70\x50\x63\x66\x43\x57\x57\x47\x5c\x59\x45\x5d\x5a\x51\x6d\ +\x71\x5d\x72\x7f\x47\x5d\x5d\x47\x5f\x60\x4d\x5d\x63\x55\x64\x72\ +\x63\x76\x85\x66\x7b\x8c\x53\x6e\x78\x52\x69\x71\x67\x7b\x8c\x54\ +\x70\x7c\x6d\x85\x97\x72\x88\xa1\x5c\x6f\x7a\x53\x5e\x63\x53\x59\ +\x59\x5a\x64\x6a\x5b\x67\x6b\x4b\x68\x72\x4a\x5a\x5b\x58\x64\x6a\ +\x55\x57\x5a\x3c\x40\x38\x52\x62\x67\x42\x48\x45\x4e\x54\x55\x55\ +\x5e\x60\x4f\x55\x55\x4a\x4d\x4b\x43\x48\x44\x53\x55\x58\x60\x64\ +\x70\x5b\x63\x69\x5e\x66\x6a\x63\x69\x6e\x54\x5b\x63\x44\x50\x4d\ +\x4a\x58\x5a\x41\x4a\x48\x50\x59\x58\x6c\x83\x91\x56\x67\x6e\x66\ +\x7b\x8c\x60\x79\x88\x5a\x73\x7d\x64\x75\x7f\x72\x87\x9a\x74\x87\ +\x9d\x71\x83\x9a\x72\x85\x9c\x64\x78\x8d\x69\x6e\x76\x6f\x78\x84\ +\x6e\x6f\x76\x66\x60\x5f\x5e\x5b\x5c\x51\x4b\x47\x5b\x4e\x4d\x5e\ +\x57\x56\x5d\x56\x55\x61\x5a\x59\x59\x51\x52\x4f\x41\x3a\x55\x47\ +\x3c\x61\x56\x4f\x59\x50\x48\x60\x56\x50\x55\x4d\x42\x50\x40\x32\ +\x4a\x4c\x41\x4a\x46\x3a\x41\x45\x39\x3d\x44\x39\x40\x49\x42\x2d\ +\x3e\x34\x23\x3a\x36\x20\x37\x32\x28\x46\x43\x1c\x38\x35\x36\x4c\ +\x4e\x29\x48\x4a\x36\x4d\x4c\x3f\x54\x58\x35\x4c\x56\x4a\x5b\x59\ +\x6b\x7d\x82\x9e\xa8\xaf\x9b\xa7\xb3\x65\x7a\x86\x42\x5e\x68\x45\ +\x53\x4f\x4c\x4f\x4f\x4d\x54\x4e\x53\x60\x63\x54\x5d\x60\x4f\x55\ +\x56\x36\x51\x4e\x29\x48\x49\x36\x4b\x43\x3d\x55\x51\x2c\x4a\x4d\ +\x29\x42\x44\x24\x3c\x3f\x24\x3b\x3c\x22\x39\x39\x30\x4a\x48\x28\ +\x3e\x40\x00\x00\x00\x42\x51\x4f\x40\x4f\x4b\x38\x41\x3a\x45\x5d\ +\x5c\x44\x54\x52\x44\x50\x51\x46\x55\x51\x40\x47\x40\x3f\x49\x47\ +\x3f\x4d\x48\x3e\x4f\x4a\x3f\x4c\x47\x3c\x48\x46\x56\x64\x6d\x45\ +\x4c\x44\x45\x58\x54\x4e\x6d\x6f\x48\x60\x5a\x35\x38\x2f\x34\x33\ +\x2c\x37\x3a\x36\x48\x66\x64\x4d\x69\x65\x48\x56\x50\x3f\x52\x4b\ +\x4b\x6c\x6b\x46\x61\x5b\x41\x4b\x47\x34\x38\x2f\x47\x55\x5a\x5e\ +\x73\x7f\x68\x7a\x89\x5b\x66\x6f\x5b\x66\x6a\x43\x57\x57\x45\x67\ +\x65\x41\x5e\x5a\x41\x59\x56\x3e\x4f\x49\x44\x52\x53\x4d\x5f\x62\ +\x43\x56\x4f\x44\x50\x4d\x51\x5e\x60\x45\x53\x52\x44\x57\x53\x49\ +\x5f\x5f\x50\x62\x68\x65\x7e\x8f\x55\x75\x80\x4c\x66\x69\x47\x60\ +\x5e\x47\x5c\x5c\x46\x55\x51\x47\x61\x5e\x56\x72\x78\x62\x7a\x8a\ +\x55\x6e\x78\x4c\x69\x71\x59\x6e\x7c\x54\x66\x72\x61\x72\x80\x63\ +\x78\x87\x55\x68\x6f\x62\x76\x85\x5e\x6c\x79\x63\x74\x81\x77\x8c\ +\x9f\x67\x7b\x8a\x58\x5d\x60\x51\x57\x5b\x4e\x53\x52\x53\x5e\x60\ +\x4b\x51\x51\x55\x6a\x6f\x49\x5a\x5e\x5d\x64\x68\x4d\x51\x55\x39\ +\x39\x31\x4d\x56\x54\x46\x4c\x4b\x55\x5b\x5f\x55\x5a\x5d\x4f\x57\ +\x5a\x48\x4f\x4e\x3a\x3e\x38\x5d\x62\x67\x62\x6c\x7b\x61\x6c\x76\ +\x62\x6b\x76\x59\x60\x65\x47\x4e\x50\x49\x59\x53\x5a\x72\x7a\x4b\ +\x5f\x65\x66\x77\x7f\x6c\x87\x98\x54\x67\x6b\x67\x80\x92\x5d\x77\ +\x84\x65\x7c\x86\x62\x74\x7f\x64\x75\x84\x74\x81\x8f\x74\x81\x92\ +\x79\x87\x98\x6a\x72\x81\x50\x4d\x4d\x57\x51\x4f\x56\x50\x4c\x55\ +\x4e\x46\x5c\x56\x53\x54\x4c\x47\x5d\x53\x50\x5f\x54\x51\x61\x57\ +\x55\x66\x5e\x5c\x5d\x59\x59\x4e\x44\x3a\x4f\x44\x35\x58\x4e\x3f\ +\x53\x49\x3d\x58\x4b\x42\x52\x46\x38\x52\x46\x3a\x42\x59\x54\x32\ +\x49\x45\x35\x4b\x47\x2a\x49\x49\x1f\x3a\x33\x24\x40\x37\x21\x43\ +\x42\x26\x3d\x3a\x47\x55\x4e\x52\x67\x6b\x4d\x67\x6c\x3d\x61\x69\ +\x57\x6f\x76\x66\x76\x7e\x6c\x81\x8d\x7f\x88\x85\xa4\xae\xb5\xa3\ +\xac\xb3\x95\xa4\xb5\x6c\x71\x7a\x57\x6b\x72\x4f\x5c\x62\x3f\x46\ +\x48\x48\x4a\x45\x46\x50\x4e\x53\x57\x55\x52\x50\x4b\x55\x58\x54\ +\x3c\x4f\x50\x3b\x45\x40\x4e\x4f\x47\x37\x55\x56\x1e\x3d\x3d\x2f\ +\x4b\x48\x30\x49\x4b\x31\x4a\x4a\x34\x4f\x50\x30\x48\x46\x00\x00\ +\x00\x42\x53\x52\x3f\x4a\x44\x39\x44\x3c\x40\x56\x55\x44\x59\x59\ +\x46\x59\x58\x48\x5b\x55\x41\x45\x41\x42\x47\x42\x3d\x45\x41\x3d\ +\x48\x43\x42\x4d\x49\x46\x56\x55\x5d\x6f\x77\x49\x4e\x49\x42\x50\ +\x4c\x4d\x6b\x6a\x46\x58\x53\x38\x3e\x33\x38\x37\x30\x3b\x39\x34\ +\x45\x5e\x5e\x4c\x6b\x66\x47\x59\x53\x45\x60\x5d\x4c\x71\x6f\x45\ +\x5f\x5c\x3f\x4d\x47\x39\x3f\x36\x45\x55\x58\x5b\x6a\x6f\x63\x77\ +\x89\x4e\x53\x54\x45\x4b\x48\x3b\x48\x43\x49\x6c\x69\x3f\x55\x4f\ +\x3f\x50\x4a\x40\x54\x50\x49\x5f\x65\x51\x6a\x73\x47\x5b\x59\x47\ +\x55\x53\x4b\x59\x5a\x4b\x5e\x5f\x46\x59\x56\x48\x61\x62\x54\x67\ +\x6e\x61\x73\x7e\x57\x73\x80\x47\x60\x63\x48\x62\x61\x4a\x63\x5f\ +\x3e\x47\x41\x46\x5c\x5a\x4f\x69\x6c\x68\x83\x93\x63\x7f\x8c\x53\ +\x7b\x86\x66\x80\x95\x50\x61\x69\x4e\x5c\x5f\x60\x72\x7b\x43\x46\ +\x45\x63\x6e\x7b\x50\x5a\x5e\x58\x60\x64\x77\x8b\x9f\x4f\x5c\x61\ +\x52\x52\x53\x52\x55\x53\x4e\x53\x51\x55\x61\x64\x44\x4c\x48\x4a\ +\x4d\x4c\x4c\x63\x69\x5a\x61\x65\x45\x49\x49\x3b\x3a\x34\x61\x6b\ +\x6b\x45\x4c\x50\x5c\x68\x6e\x4e\x56\x59\x50\x5a\x5e\x58\x63\x6c\ +\x4a\x53\x55\x62\x6a\x74\x60\x6f\x7b\x5e\x6e\x76\x5f\x6d\x78\x48\ +\x50\x51\x41\x45\x42\x56\x6c\x72\x58\x6c\x6c\x5e\x72\x7b\x71\x82\ +\x91\x60\x76\x7f\x5e\x70\x73\x6f\x87\x9a\x63\x75\x83\x61\x73\x79\ +\x6b\x78\x84\x63\x6c\x76\x61\x67\x6e\x5f\x60\x64\x60\x62\x66\x52\ +\x4f\x4e\x6a\x65\x5c\x7c\x77\x74\x5a\x55\x51\x53\x47\x3b\x5f\x59\ +\x55\x52\x4c\x48\x59\x4f\x4a\x5d\x51\x4e\x62\x56\x54\x66\x60\x5a\ +\x62\x5c\x5d\x53\x45\x3c\x4f\x44\x35\x55\x4a\x3d\x56\x4e\x40\x53\ +\x49\x3c\x4d\x4b\x40\x4f\x46\x37\x39\x5c\x57\x2e\x4d\x4a\x29\x44\ +\x42\x27\x4b\x47\x1d\x3a\x34\x26\x47\x44\x2f\x49\x46\x49\x5e\x58\ +\x6c\x74\x74\x58\x5d\x61\x73\x78\x6c\x71\x81\x83\x82\x8e\x93\x8f\ +\x93\x94\x86\x99\xac\x62\x70\x73\x90\x9c\x9e\x9d\xa7\xab\x88\x98\ +\xa2\x63\x78\x89\x4a\x53\x51\x56\x62\x69\x42\x49\x46\x44\x4d\x4b\ +\x3f\x4a\x48\x43\x53\x54\x52\x49\x3d\x57\x4f\x44\x48\x5a\x55\x39\ +\x4e\x4e\x4e\x57\x57\x4b\x5d\x5b\x3c\x57\x5a\x2c\x48\x42\x2b\x49\ +\x45\x2d\x46\x44\x33\x4b\x48\x42\x59\x5b\x00\x00\x00\x3e\x50\x4a\ +\x3b\x45\x3c\x3c\x4b\x42\x44\x59\x59\x48\x63\x65\x44\x5c\x58\x44\ +\x56\x4c\x44\x4b\x48\x40\x46\x43\x3f\x4c\x46\x45\x56\x51\x40\x51\ +\x4c\x51\x65\x66\x5a\x6d\x75\x4c\x52\x4e\x43\x4d\x4b\x4b\x69\x66\ +\x44\x5a\x50\x3b\x41\x35\x3d\x41\x3a\x3f\x3e\x38\x42\x53\x50\x4e\ +\x6a\x67\x4a\x5e\x5a\x42\x54\x4f\x49\x6d\x6b\x43\x5a\x54\x45\x5b\ +\x55\x3b\x45\x3b\x3d\x4b\x47\x51\x57\x56\x5b\x6c\x74\x3d\x3f\x39\ +\x3a\x41\x3a\x3a\x46\x41\x48\x62\x5e\x41\x52\x4b\x3c\x49\x43\x44\ +\x56\x56\x55\x6f\x7a\x56\x70\x76\x4c\x62\x61\x49\x5a\x58\x4b\x59\ +\x5a\x4a\x5b\x5d\x48\x5d\x5b\x46\x5f\x63\x57\x6d\x74\x63\x74\x84\ +\x55\x6e\x77\x4c\x63\x63\x43\x52\x4f\x4e\x63\x62\x3e\x4b\x46\x46\ +\x5a\x5b\x4c\x64\x65\x62\x7c\x87\x56\x6b\x74\x59\x6c\x73\x6b\x87\ +\x9c\x4a\x5b\x5f\x3f\x46\x41\x46\x47\x44\x3c\x3a\x33\x5c\x63\x6e\ +\x40\x44\x41\x4d\x4c\x4a\x5c\x6a\x72\x4d\x52\x52\x55\x56\x57\x50\ +\x52\x52\x50\x52\x53\x4f\x56\x58\x4e\x50\x51\x4d\x4f\x50\x5b\x64\ +\x6c\x5a\x5f\x67\x42\x46\x46\x43\x46\x45\x6d\x7b\x81\x53\x5f\x65\ +\x64\x73\x7f\x4f\x56\x5a\x57\x5d\x60\x66\x77\x85\x62\x6f\x7e\x64\ +\x74\x83\x61\x74\x7e\x5f\x71\x7b\x61\x70\x7f\x3f\x46\x47\x61\x6b\ +\x6c\x67\x7a\x88\x56\x64\x63\x65\x76\x7f\x60\x63\x69\x4a\x4a\x41\ +\x5e\x68\x68\x69\x6d\x72\x6e\x71\x78\x6c\x6d\x68\x79\x86\x99\x68\ +\x6f\x78\x62\x61\x64\x59\x56\x56\x55\x4c\x47\x55\x44\x33\xbf\xb7\ +\xb2\x6e\x70\x7c\x46\x39\x30\x4e\x42\x32\x5d\x53\x4f\x77\x6d\x5f\ +\x59\x50\x4f\x5b\x4e\x46\x5f\x57\x50\x65\x5a\x55\x56\x50\x48\x55\ +\x44\x36\x51\x44\x35\x53\x42\x34\x51\x43\x33\x54\x46\x39\x49\x4f\ +\x48\x3f\x53\x4d\x2f\x58\x58\x28\x4e\x4d\x27\x41\x3c\x22\x3d\x3c\ +\x2c\x48\x44\x45\x51\x4b\x4d\x5b\x58\x58\x68\x6b\x5b\x5f\x60\x51\ +\x58\x57\x58\x63\x5e\x5c\x6b\x70\x85\x8a\x84\x88\x8a\x88\x70\x86\ +\x97\x51\x64\x65\x44\x54\x59\x66\x6b\x69\x58\x5e\x65\x48\x57\x5c\ +\x49\x4e\x49\x52\x60\x65\x43\x4d\x4d\x4e\x4d\x46\x45\x51\x4e\x33\ +\x48\x46\x39\x42\x37\x3c\x41\x37\x3f\x52\x4d\x3d\x5a\x57\x44\x50\ +\x4a\x4a\x57\x5c\x31\x48\x4c\x21\x34\x34\x1d\x3c\x34\x28\x4c\x44\ +\x2a\x49\x49\x3c\x4d\x44\x00\x00\x00\x3d\x4c\x49\x40\x4f\x49\x40\ +\x4f\x4b\x43\x58\x59\x44\x54\x4f\x43\x54\x52\x46\x59\x55\x43\x4d\ +\x46\x45\x51\x4d\x44\x55\x52\x46\x53\x51\x42\x4a\x47\x4b\x5f\x67\ +\x65\x79\x7e\x52\x5c\x5d\x43\x50\x4c\x4c\x62\x61\x46\x55\x4c\x3e\ +\x43\x3e\x4a\x53\x53\x47\x4a\x47\x3c\x41\x3b\x47\x63\x60\x4b\x66\ +\x64\x3f\x4f\x47\x48\x6c\x6a\x3f\x52\x4a\x3f\x4c\x46\x3f\x4d\x45\ +\x37\x3a\x2f\x39\x38\x31\x45\x4a\x47\x3b\x3e\x3b\x3c\x43\x3f\x45\ +\x53\x51\x48\x5f\x5d\x46\x5d\x59\x47\x56\x55\x48\x59\x5d\x57\x70\ +\x7c\x61\x7b\x83\x54\x6a\x6e\x48\x5d\x59\x44\x51\x4e\x47\x5a\x55\ +\x4f\x64\x64\x4c\x60\x61\x59\x70\x7a\x5f\x6f\x7b\x4d\x60\x60\x4b\ +\x5f\x5d\x4b\x56\x57\x51\x68\x6e\x40\x4c\x49\x4c\x5e\x5e\x50\x6a\ +\x6a\x4c\x62\x62\x44\x55\x54\x48\x48\x48\x58\x68\x6f\x4a\x5b\x5b\ +\x41\x47\x44\x43\x40\x3d\x3a\x39\x31\x41\x40\x36\x40\x40\x39\x4d\ +\x4c\x4d\x4b\x4b\x47\x50\x4f\x51\x5f\x5e\x60\x5a\x5c\x5f\x4c\x4c\ +\x4c\x4d\x52\x55\x4c\x4c\x4b\x51\x55\x59\x5d\x62\x6c\x5a\x5f\x67\ +\x40\x46\x42\x5d\x69\x6f\x74\x87\x96\x5e\x70\x7b\x63\x78\x87\x58\ +\x63\x6b\x5e\x65\x6a\x72\x81\x8e\x70\x81\x92\x68\x7c\x8c\x58\x6e\ +\x76\x60\x74\x7e\x5e\x74\x81\x48\x54\x51\x69\x6e\x73\x6b\x73\x80\ +\x5d\x64\x62\x67\x6e\x75\x52\x4e\x4b\x4d\x48\x3f\x5f\x5d\x56\x64\ +\x60\x60\x60\x54\x4d\x60\x50\x46\x67\x67\x68\x63\x65\x6d\x57\x54\ +\x56\x4f\x45\x41\x48\x3f\x33\x57\x44\x2e\xdc\xc4\xae\x70\x76\x84\ +\x47\x3c\x2c\x4e\x42\x35\x6c\x5e\x4e\x75\x73\x70\x94\x8f\x8d\x50\ +\x47\x43\x5b\x4f\x44\x5a\x4d\x45\x52\x46\x3a\x53\x44\x34\x55\x45\ +\x3a\x5a\x4f\x46\x57\x4d\x42\x59\x50\x47\x56\x56\x52\x41\x56\x58\ +\x29\x49\x46\x2c\x57\x55\x2a\x4b\x4d\x40\x56\x55\x3b\x4f\x51\x6f\ +\x6f\x6b\x87\x8b\x8f\x95\xa1\xaa\x70\x81\x8f\x92\x98\x92\x42\x59\ +\x6a\x61\x70\x78\x47\x5b\x58\x3d\x4d\x4a\x44\x4f\x47\x2f\x3f\x3e\ +\x30\x42\x43\x45\x47\x44\x52\x51\x49\x45\x43\x3d\x4e\x4f\x48\x52\ +\x62\x67\x4b\x52\x4e\x59\x5b\x58\x57\x59\x55\x3c\x46\x47\x3b\x49\ +\x46\x3f\x53\x54\x39\x58\x54\x2f\x54\x54\x38\x47\x41\x68\x70\x69\ +\x46\x62\x63\x2d\x57\x53\x33\x4a\x3f\x45\x55\x50\x36\x55\x56\x3a\ +\x4a\x47\x00\x00\x00\x41\x55\x52\x44\x56\x52\x3f\x52\x4d\x47\x57\ +\x55\x3e\x46\x40\x3f\x48\x43\x41\x4d\x47\x41\x51\x4b\x4c\x5f\x5f\ +\x43\x54\x4d\x44\x58\x53\x3d\x49\x44\x55\x6c\x76\x69\x7c\x83\x51\ +\x5f\x5d\x43\x4e\x48\x4c\x5d\x5a\x42\x4e\x44\x48\x52\x4f\x57\x66\ +\x69\x4b\x50\x4e\x3d\x3d\x36\x40\x4f\x48\x47\x5d\x57\x41\x50\x46\ +\x47\x61\x5c\x45\x58\x50\x40\x4b\x47\x40\x4b\x48\x3a\x3a\x30\x3e\ +\x42\x3a\x3d\x43\x3a\x3e\x45\x3c\x40\x48\x43\x40\x4f\x48\x50\x67\ +\x68\x50\x66\x63\x49\x5d\x5a\x47\x62\x65\x5a\x79\x83\x5e\x74\x81\ +\x5a\x6c\x74\x49\x62\x61\x45\x56\x54\x48\x57\x54\x4b\x5e\x5e\x43\ +\x4f\x4a\x5c\x74\x7b\x5c\x67\x6c\x42\x4f\x48\x47\x5e\x5c\x4a\x53\ +\x54\x57\x67\x6b\x45\x50\x4b\x4c\x5b\x58\x4e\x63\x62\x4b\x60\x62\ +\x40\x47\x42\x4c\x4b\x4b\x4d\x53\x52\x47\x55\x54\x41\x45\x41\x39\ +\x31\x29\x3d\x3b\x2e\x3f\x3c\x33\x43\x43\x3d\x4d\x4b\x49\x47\x45\ +\x44\x5b\x5d\x5f\x5e\x61\x64\x5a\x5e\x61\x4c\x4e\x50\x5b\x65\x6e\ +\x51\x5a\x5e\x57\x5d\x61\x5f\x68\x72\x59\x65\x6d\x4d\x59\x5d\x6b\ +\x79\x86\x70\x82\x90\x6b\x7b\x88\x6b\x7c\x8c\x5f\x71\x7a\x60\x6b\ +\x6e\x67\x75\x7a\x6f\x7d\x86\x67\x72\x7b\x59\x6a\x67\x69\x7c\x84\ +\x60\x70\x78\x55\x59\x59\x61\x5d\x59\x69\x6b\x73\x5d\x57\x51\x61\ +\x5d\x5b\x59\x54\x4f\x56\x53\x4b\x64\x61\x5a\x64\x5a\x55\x55\x47\ +\x3c\x59\x4e\x45\x5d\x5b\x5a\x64\x65\x6a\x61\x5f\x60\x53\x4d\x47\ +\x45\x39\x2d\x53\x42\x2c\xc4\xa7\x88\x95\x9b\xa5\x68\x62\x55\x70\ +\x6d\x6d\x69\x57\x47\x99\x8c\x7d\x62\x57\x4d\x54\x46\x3c\x57\x4b\ +\x40\x5a\x4c\x43\x5a\x4d\x42\x55\x46\x3c\x52\x42\x35\x50\x41\x31\ +\x51\x42\x32\x53\x41\x33\x4b\x48\x3e\x34\x59\x56\x2c\x4e\x4b\x43\ +\x50\x4a\x4e\x54\x47\x60\x59\x51\x98\x95\x8d\x96\x98\x9c\x8b\x8b\ +\x8a\x80\x8a\x89\x6f\x81\x87\x54\x66\x6b\x38\x4a\x48\x33\x49\x47\ +\x2a\x3f\x38\x2e\x45\x3f\x2a\x3f\x3d\x29\x38\x38\x39\x3f\x39\x35\ +\x3c\x39\x41\x3e\x37\x40\x42\x3e\x3b\x48\x46\x41\x54\x55\x3b\x43\ +\x3d\x5a\x5d\x5a\x4d\x57\x5a\x4d\x5b\x59\x48\x53\x48\x2f\x4d\x4b\ +\x30\x4d\x49\x24\x43\x43\x38\x4a\x42\x45\x51\x4a\x3e\x51\x45\x2c\ +\x4c\x46\x3f\x4a\x40\x42\x51\x4a\x42\x57\x58\x48\x59\x54\x00\x00\ +\x00\x43\x54\x53\x47\x59\x56\x43\x55\x54\x43\x55\x50\x3e\x48\x42\ +\x41\x4d\x4a\x41\x45\x3f\x46\x59\x55\x4d\x61\x5d\x3f\x45\x3d\x41\ +\x4c\x49\x41\x52\x4e\x4d\x61\x64\x6d\x81\x8b\x4f\x5c\x57\x43\x4f\ +\x47\x4a\x5e\x5c\x49\x59\x53\x53\x60\x61\x5d\x6d\x72\x53\x5c\x58\ +\x3f\x3f\x36\x39\x35\x2d\x3f\x4a\x43\x42\x53\x4c\x48\x60\x5c\x43\ +\x52\x49\x41\x49\x43\x3e\x46\x3e\x3d\x42\x3a\x41\x46\x40\x44\x4e\ +\x47\x46\x54\x4d\x3f\x47\x40\x42\x4a\x49\x4e\x69\x67\x4f\x65\x64\ +\x4a\x5a\x59\x41\x5b\x5b\x5f\x7e\x8a\x63\x7b\x8c\x5a\x6b\x73\x47\ +\x5a\x58\x51\x67\x68\x4d\x60\x5c\x49\x5c\x5c\x53\x61\x64\x55\x60\ +\x66\x51\x57\x57\x40\x49\x41\x47\x58\x56\x55\x5c\x60\x5f\x6e\x77\ +\x46\x4f\x4a\x47\x57\x52\x4b\x5e\x5d\x49\x59\x55\x49\x53\x4e\x4e\ +\x52\x50\x47\x48\x44\x48\x59\x58\x41\x46\x41\x3a\x31\x28\x41\x3e\ +\x33\x40\x3e\x37\x4e\x4d\x4a\x54\x54\x55\x4d\x4f\x4e\x5c\x5f\x61\ +\x63\x68\x6d\x57\x5a\x5b\x54\x58\x5a\x5f\x6d\x74\x57\x62\x69\x5a\ +\x64\x6c\x65\x6f\x7d\x60\x6e\x7b\x5b\x67\x70\x70\x7e\x8c\x71\x83\ +\x92\x6c\x7d\x89\x68\x78\x87\x59\x6d\x73\x4e\x5a\x52\x4e\x54\x49\ +\x53\x56\x48\x4c\x4b\x3d\x53\x52\x47\x6a\x71\x71\x5b\x5e\x59\x60\ +\x5e\x5d\x5c\x58\x53\x64\x63\x65\x58\x4f\x46\x5b\x57\x52\x53\x50\ +\x46\x51\x46\x3b\x5d\x51\x46\x5a\x4c\x40\x58\x4f\x45\x66\x64\x63\ +\x5a\x53\x51\x63\x60\x5c\x59\x54\x51\x5b\x52\x44\x69\x64\x59\x54\ +\x4d\x44\xac\x96\x7d\xd0\xcb\xc6\xa3\xa0\xa2\x74\x6a\x62\x52\x45\ +\x3a\x4e\x3e\x2d\x4f\x41\x34\x54\x44\x36\x56\x47\x3b\x51\x41\x36\ +\x51\x41\x30\x50\x43\x33\x52\x45\x34\x50\x43\x32\x50\x42\x31\x4d\ +\x46\x39\x37\x43\x3a\x37\x54\x4e\x3d\x4e\x47\x50\x45\x33\x7b\x73\ +\x61\x96\x9d\xa4\x77\x72\x70\x64\x5b\x51\x5e\x59\x4f\x3e\x4d\x48\ +\x32\x46\x45\x40\x4d\x4c\x29\x3c\x3a\x23\x36\x31\x3d\x49\x3f\x4c\ +\x54\x4c\x45\x4c\x47\x3f\x47\x43\x65\x5b\x45\x41\x4f\x53\x47\x4e\ +\x4e\x3d\x4b\x50\x37\x4a\x49\x51\x65\x67\x54\x54\x49\x66\x63\x59\ +\x3a\x4c\x4c\x25\x3d\x3a\x2d\x44\x3e\x25\x48\x42\x26\x4a\x48\x1e\ +\x36\x34\x37\x4a\x42\x30\x48\x45\x31\x44\x3d\x33\x48\x46\x38\x3a\ +\x30\x3d\x47\x41\x34\x50\x4e\x2c\x48\x45\x00\x00\x00\x47\x59\x5a\ +\x46\x58\x53\x41\x50\x4c\x47\x59\x58\x45\x50\x4c\x3f\x4a\x46\x44\ +\x4a\x45\x44\x53\x50\x4a\x5a\x53\x3f\x41\x3b\x43\x43\x3f\x43\x50\ +\x49\x43\x53\x4c\x5a\x69\x6d\x45\x52\x49\x43\x51\x4a\x48\x5b\x55\ +\x4a\x58\x58\x5e\x6d\x72\x5d\x6f\x73\x55\x5f\x5c\x3f\x43\x39\x3b\ +\x39\x31\x3b\x3f\x38\x45\x5a\x53\x48\x5c\x58\x46\x56\x52\x46\x52\ +\x4f\x42\x4d\x47\x41\x4e\x49\x46\x51\x4c\x4a\x5b\x58\x4f\x65\x64\ +\x46\x54\x52\x4d\x52\x52\x4a\x5f\x61\x4e\x68\x68\x4b\x58\x57\x44\ +\x53\x50\x51\x6a\x71\x68\x85\x98\x4c\x59\x59\x3f\x44\x3f\x46\x50\ +\x4b\x4b\x60\x60\x46\x55\x56\x5b\x6c\x71\x5f\x67\x6f\x50\x54\x53\ +\x42\x47\x43\x4c\x55\x53\x54\x59\x5b\x5a\x65\x67\x42\x46\x41\x49\ +\x56\x54\x50\x63\x66\x4a\x5a\x58\x4a\x53\x50\x57\x60\x61\x4a\x4f\ +\x4a\x47\x50\x4d\x3b\x3a\x33\x3c\x32\x2d\x44\x42\x3b\x41\x40\x3b\ +\x55\x57\x59\x5b\x60\x65\x53\x57\x58\x57\x5a\x5d\x5c\x61\x64\x4f\ +\x53\x53\x56\x5b\x5f\x5b\x69\x6d\x5d\x6d\x72\x61\x72\x80\x70\x80\ +\x94\x6b\x7f\x96\x63\x71\x7c\x6e\x7b\x89\x6a\x7a\x86\x6c\x7d\x8b\ +\x62\x6e\x72\x4e\x54\x4e\x53\x57\x51\x56\x5c\x57\x50\x51\x44\x48\ +\x42\x35\x4e\x40\x30\x5d\x50\x44\x52\x4e\x42\x61\x61\x5d\x61\x60\ +\x5d\x63\x62\x62\x55\x4b\x40\x5a\x53\x49\x4e\x49\x3d\x51\x42\x36\ +\x54\x47\x3a\x54\x45\x37\x61\x59\x52\x5e\x5a\x56\x5d\x56\x50\x53\ +\x49\x40\x58\x4c\x3f\x68\x5d\x4e\x6b\x65\x59\x6a\x5d\x4e\xa2\x93\ +\x82\x89\x74\x61\x71\x6b\x65\x49\x3d\x2e\x4f\x41\x33\x4f\x40\x33\ +\x50\x40\x30\x4e\x3f\x30\x50\x42\x31\x4f\x41\x31\x4e\x41\x2f\x4e\ +\x42\x33\x50\x44\x34\x4e\x41\x31\x4d\x42\x31\x44\x4b\x3f\x39\x48\ +\x42\x49\x4a\x44\x51\x47\x3e\x50\x45\x3a\x6e\x5c\x47\xaf\xa1\x93\ +\x8c\x8b\x8c\x6e\x6a\x67\x52\x51\x47\x33\x3d\x35\x36\x43\x41\x3b\ +\x3d\x38\x40\x50\x4a\x28\x44\x43\x2f\x42\x3c\x5f\x62\x57\x3f\x48\ +\x46\x2b\x30\x2d\x51\x50\x42\x6e\x6b\x60\x76\x73\x6c\x60\x65\x66\ +\x49\x5f\x66\x48\x5a\x57\x4e\x53\x4c\x3a\x44\x3f\x34\x45\x3f\x21\ +\x39\x35\x25\x40\x3d\x24\x41\x3b\x27\x4d\x4c\x2e\x47\x48\x35\x50\ +\x4d\x37\x54\x52\x37\x52\x56\x2f\x4e\x4e\x2a\x3b\x36\x2d\x39\x33\ +\x24\x3e\x37\x2d\x4a\x4d\x00\x00\x00\x46\x53\x52\x46\x59\x54\x46\ +\x55\x56\x53\x64\x63\x3d\x46\x3f\x3c\x43\x3c\x40\x48\x3f\x48\x52\ +\x4f\x47\x55\x51\x44\x44\x42\x44\x42\x3b\x42\x4b\x40\x42\x4e\x46\ +\x41\x49\x40\x41\x4a\x43\x41\x4f\x48\x46\x59\x53\x47\x57\x53\x63\ +\x72\x77\x56\x64\x62\x58\x65\x63\x41\x44\x3b\x3e\x3f\x36\x40\x48\ +\x3f\x43\x51\x4f\x48\x5e\x59\x46\x5a\x56\x48\x58\x57\x44\x52\x4f\ +\x46\x55\x51\x4c\x5d\x5c\x49\x58\x57\x50\x69\x6b\x59\x68\x6e\x4e\ +\x56\x54\x4c\x53\x56\x4d\x65\x67\x44\x53\x51\x40\x4b\x47\x44\x57\ +\x57\x59\x75\x7e\x47\x54\x52\x3e\x43\x3a\x41\x46\x3e\x4c\x60\x60\ +\x52\x60\x63\x4b\x59\x56\x50\x59\x59\x50\x55\x57\x4c\x53\x52\x55\ +\x60\x5e\x4d\x4f\x4f\x49\x50\x4b\x42\x48\x40\x4e\x5a\x58\x5c\x69\ +\x70\x4e\x5a\x5c\x55\x59\x58\x5c\x65\x67\x47\x4d\x45\x43\x45\x3d\ +\x3f\x39\x31\x44\x3c\x3a\x45\x41\x3b\x49\x4b\x47\x60\x68\x70\x65\ +\x6c\x77\x57\x5d\x60\x56\x5d\x60\x5d\x67\x6c\x45\x4e\x4b\x4a\x52\ +\x50\x58\x5f\x5e\x6b\x80\x8b\x6f\x82\x93\x7d\x93\xab\x6c\x80\x91\ +\x67\x76\x85\x66\x6e\x71\x73\x81\x8c\x64\x6d\x70\x4f\x53\x4b\x4d\ +\x52\x49\x5f\x61\x5c\x61\x63\x64\x51\x52\x47\x50\x49\x3c\x4f\x47\ +\x38\x4e\x44\x35\x55\x4a\x3e\x69\x67\x65\x5b\x59\x54\x5e\x5b\x54\ +\x51\x49\x39\x54\x47\x37\x4b\x45\x35\x61\x56\x4c\x51\x45\x38\x5c\ +\x51\x42\x65\x5c\x57\x55\x4a\x41\x53\x45\x39\x86\x7c\x75\x7e\x7b\ +\x7a\x54\x46\x36\x62\x55\x44\x5a\x4c\x3e\x56\x4a\x3c\x52\x43\x31\ +\x53\x45\x37\x4d\x3f\x31\x50\x41\x33\x4f\x3f\x30\x4c\x41\x30\x4d\ +\x41\x31\x4c\x3e\x2e\x4a\x3e\x2f\x4a\x40\x2f\x4b\x3f\x2f\x4b\x3c\ +\x2b\x48\x3a\x2a\x48\x3c\x2c\x41\x40\x33\x45\x3b\x2e\x70\x64\x58\ +\x4f\x4d\x43\x4d\x45\x36\x53\x50\x4a\x6e\x59\x42\x76\x6a\x57\x5f\ +\x5a\x50\x57\x5c\x53\x3a\x55\x58\x3f\x50\x4b\x3c\x44\x40\x3e\x48\ +\x3d\x2d\x4e\x4f\x30\x43\x3e\x3d\x48\x41\x50\x58\x57\x63\x5f\x56\ +\x70\x68\x65\x71\x67\x5f\x60\x60\x59\x48\x55\x55\x46\x5a\x59\x26\ +\x40\x41\x32\x46\x3e\x41\x4d\x47\x22\x39\x3a\x23\x3d\x3a\x2a\x4b\ +\x43\x2a\x4f\x51\x26\x44\x42\x23\x37\x37\x26\x40\x39\x33\x4f\x4f\ +\x38\x4f\x4a\x38\x55\x53\x3e\x58\x5d\x36\x49\x4a\x35\x4d\x4b\x3f\ +\x5f\x68\x00\x00\x00\x48\x5b\x5d\x54\x61\x5d\x4d\x54\x55\x5b\x69\ +\x66\x3e\x49\x45\x3f\x45\x3b\x3d\x41\x3a\x4f\x58\x5a\x58\x60\x61\ +\x54\x56\x56\x49\x48\x42\x40\x46\x3d\x41\x51\x4a\x45\x50\x45\x41\ +\x49\x3e\x40\x46\x3c\x45\x54\x4f\x44\x52\x49\x53\x5f\x5c\x43\x49\ +\x45\x51\x61\x5b\x3e\x42\x39\x43\x4b\x45\x43\x4b\x41\x42\x4f\x4b\ +\x4a\x5f\x5b\x44\x59\x53\x49\x5c\x59\x48\x5a\x55\x4a\x60\x5e\x53\ +\x68\x6c\x48\x58\x57\x4b\x63\x61\x4d\x5b\x5b\x51\x5d\x5d\x54\x5f\ +\x65\x51\x66\x6e\x4b\x62\x65\x42\x4f\x4b\x47\x58\x54\x51\x6f\x70\ +\x48\x58\x55\x3e\x40\x3b\x41\x43\x3a\x4d\x5c\x5d\x54\x63\x65\x53\ +\x5d\x60\x53\x5a\x5a\x58\x61\x63\x4c\x59\x56\x4b\x56\x54\x47\x47\ +\x44\x49\x51\x4e\x42\x47\x40\x4b\x52\x4f\x5d\x66\x6b\x54\x5d\x60\ +\x55\x58\x58\x5a\x62\x62\x45\x50\x4a\x46\x4b\x46\x44\x42\x3d\x47\ +\x45\x42\x42\x43\x3c\x52\x5a\x5c\x6d\x78\x84\x69\x75\x84\x5f\x6c\ +\x77\x54\x5b\x5e\x62\x70\x75\x48\x51\x52\x48\x54\x4b\x4f\x59\x52\ +\x6e\x7e\x89\x71\x7f\x90\x68\x78\x85\x64\x70\x73\x65\x70\x75\x50\ +\x52\x49\x53\x55\x4e\x4d\x50\x49\x4f\x4f\x48\x50\x4c\x40\x63\x62\ +\x5f\x65\x64\x64\x51\x46\x3d\x53\x4c\x40\x52\x4f\x45\x50\x4b\x3c\ +\x51\x48\x34\x68\x64\x5d\x66\x67\x66\x64\x5d\x53\x4f\x48\x39\x4c\ +\x46\x36\x57\x4e\x3c\x58\x4e\x42\x52\x44\x34\x50\x3f\x30\x4f\x3e\ +\x2f\x56\x48\x39\x5a\x4d\x46\x58\x49\x35\x76\x65\x52\x53\x49\x43\ +\x51\x42\x33\x50\x42\x30\x50\x42\x35\x4f\x42\x33\x4f\x40\x31\x4e\ +\x42\x30\x4e\x42\x31\x51\x44\x37\x4b\x40\x32\x4b\x43\x33\x67\x60\ +\x55\x76\x73\x70\x5c\x59\x56\x52\x4c\x47\x5d\x55\x4b\x79\x76\x70\ +\x81\x81\x7f\x89\x89\x86\x86\x86\x87\x6e\x67\x68\x7f\x75\x65\xb3\ +\xae\xa9\xb8\xb8\xbd\x60\x5d\x57\x53\x4d\x41\x4e\x48\x37\x4d\x50\ +\x47\x38\x4b\x4a\x2b\x4d\x49\x48\x57\x52\x2c\x3d\x3d\x35\x3d\x3b\ +\x5d\x5b\x54\x66\x60\x59\x5f\x5c\x58\x48\x4c\x46\x5f\x5c\x55\x70\ +\x65\x5f\x75\x79\x79\x45\x63\x65\x2d\x4f\x4e\x2c\x48\x45\x23\x40\ +\x3f\x23\x3c\x3a\x24\x3b\x35\x29\x46\x47\x26\x4b\x41\x2a\x53\x52\ +\x1d\x3b\x39\x1e\x3d\x38\x55\x61\x51\x54\x69\x69\x3a\x54\x53\x43\ +\x4d\x49\x38\x54\x50\x3e\x57\x59\x34\x4c\x4c\x27\x46\x46\x00\x00\ +\x00\x59\x6a\x71\x53\x5b\x53\x48\x51\x54\x6d\x79\x7d\x3e\x49\x43\ +\x3e\x46\x3e\x3d\x46\x3c\x55\x60\x65\x57\x5f\x5f\x51\x54\x51\x49\ +\x4d\x48\x45\x4e\x46\x43\x51\x4a\x44\x53\x49\x3f\x42\x37\x3c\x3e\ +\x33\x44\x51\x46\x45\x4c\x42\x44\x4e\x44\x43\x4c\x45\x47\x57\x50\ +\x3b\x3e\x33\x45\x50\x4a\x43\x50\x46\x40\x4a\x47\x4b\x61\x5d\x3d\ +\x46\x3d\x46\x5b\x57\x48\x5e\x5c\x4d\x69\x65\x60\x72\x7a\x46\x52\ +\x4d\x4a\x61\x5c\x57\x67\x67\x5d\x69\x6e\x52\x5a\x5a\x57\x67\x71\ +\x5a\x71\x7a\x4a\x56\x53\x4c\x5e\x5b\x4f\x6d\x6f\x48\x5a\x57\x3f\ +\x40\x39\x43\x43\x3d\x4b\x56\x4f\x64\x6f\x73\x54\x62\x62\x4f\x54\ +\x54\x56\x61\x64\x4f\x5e\x5b\x51\x58\x56\x48\x47\x47\x49\x4e\x4a\ +\x45\x4b\x44\x4a\x51\x4c\x58\x62\x66\x5a\x5d\x5e\x4c\x4d\x4a\x4b\ +\x53\x52\x48\x52\x4f\x54\x58\x58\x4a\x4d\x4b\x4c\x4f\x4c\x54\x5a\ +\x5b\x6f\x83\x8e\x72\x82\x90\x7f\x8d\x9d\x66\x7a\x84\x56\x5e\x62\ +\x6c\x76\x7a\x5f\x6a\x70\x5d\x64\x61\x5c\x63\x5f\x56\x5c\x58\x6c\ +\x79\x8a\x57\x5c\x60\x49\x4c\x40\x4d\x4d\x44\x4e\x51\x48\x4e\x51\ +\x48\x4e\x50\x45\x51\x53\x44\x59\x4f\x46\x61\x5d\x56\x5e\x5a\x5a\ +\x4e\x49\x36\x55\x56\x45\x5e\x59\x4f\x52\x48\x38\x51\x4a\x39\x6a\ +\x63\x5c\x6a\x61\x5c\x55\x49\x38\x4e\x49\x37\x50\x4c\x3b\x50\x46\ +\x36\x4e\x44\x34\x50\x44\x33\x56\x49\x3d\x5b\x4d\x41\x5a\x4c\x3e\ +\x58\x4b\x44\x52\x43\x36\x4e\x43\x33\x51\x45\x37\x51\x44\x34\x50\ +\x42\x34\x4e\x42\x34\x4f\x43\x32\x4c\x41\x32\x4c\x42\x34\x4f\x45\ +\x37\x53\x48\x40\x5c\x55\x4b\x9d\x93\x83\xbd\xb6\xaf\xba\xb6\xb0\ +\xd4\xd0\xcf\xad\xa6\xa0\xa7\xa3\x9e\xb8\xa7\x96\xd1\xc5\xb8\xd6\ +\xc9\xb9\xe2\xda\xcf\xbc\xbc\xc3\x8a\x81\x80\x7e\x77\x6e\x57\x5a\ +\x51\x52\x5c\x5f\x37\x4b\x46\x49\x4e\x4d\x38\x48\x43\x2e\x3f\x3c\ +\x36\x3f\x37\x51\x56\x50\x42\x4b\x47\x65\x66\x5d\x67\x5f\x54\x56\ +\x59\x50\x48\x4f\x4c\x61\x65\x60\x4d\x59\x5a\x7b\x70\x5d\x8c\x88\ +\x7f\x3e\x51\x4e\x3a\x52\x4f\x35\x53\x53\x30\x4e\x4c\x2b\x4b\x4d\ +\x27\x41\x3f\x33\x4f\x4f\x30\x4b\x47\x28\x52\x52\x1a\x2f\x27\x2d\ +\x45\x3d\x2d\x4f\x49\x40\x51\x49\x2d\x4c\x4e\x30\x44\x3f\x31\x50\ +\x52\x30\x4c\x48\x3e\x5b\x5e\x36\x53\x58\x00\x00\x00\x77\x80\x95\ +\x5b\x60\x65\x51\x58\x5e\x67\x71\x7e\x47\x4e\x4b\x41\x4b\x46\x40\ +\x4a\x45\x61\x6e\x77\x5c\x64\x67\x58\x60\x60\x4c\x52\x4d\x48\x52\ +\x4d\x46\x51\x47\x42\x4f\x47\x3c\x3d\x32\x3b\x37\x2f\x45\x4e\x45\ +\x49\x52\x49\x44\x4d\x42\x44\x52\x48\x45\x55\x4d\x3e\x43\x3a\x47\ +\x55\x51\x47\x5c\x55\x48\x60\x5f\x46\x58\x53\x42\x4d\x45\x46\x5a\ +\x57\x4c\x62\x62\x45\x53\x4d\x54\x62\x63\x4b\x57\x55\x4b\x62\x5f\ +\x48\x56\x53\x56\x67\x6b\x4c\x55\x59\x65\x7c\x8c\x58\x71\x78\x4a\ +\x56\x52\x50\x61\x5b\x48\x61\x5d\x4c\x64\x62\x49\x4e\x47\x48\x4d\ +\x49\x4d\x55\x51\x56\x5b\x5c\x66\x72\x7b\x5b\x62\x66\x59\x62\x65\ +\x4c\x5c\x5a\x4e\x57\x54\x56\x57\x57\x47\x4a\x45\x43\x47\x42\x46\ +\x4d\x47\x4c\x55\x53\x54\x56\x56\x60\x65\x63\x58\x61\x63\x53\x5b\ +\x5b\x57\x5e\x62\x42\x49\x49\x4f\x58\x59\x7b\x87\x8e\x93\xa6\xb4\ +\x80\x8d\x90\x6b\x76\x7c\x61\x72\x7a\x54\x5e\x5f\x68\x71\x74\x66\ +\x6d\x6e\x7d\x85\x84\x64\x6b\x6a\x54\x58\x54\x6c\x7a\x84\x4d\x52\ +\x4c\x4a\x50\x43\x4f\x55\x4e\x53\x54\x4f\x4e\x54\x47\x53\x53\x47\ +\x57\x4e\x41\x58\x4b\x41\x5e\x5a\x50\x5d\x5d\x57\x50\x4d\x3c\x53\ +\x4c\x3a\x53\x4b\x39\x50\x46\x34\x51\x46\x39\x59\x48\x38\x53\x4a\ +\x3a\x4f\x4b\x39\x55\x4a\x3e\x51\x44\x36\x4c\x41\x32\x4f\x45\x37\ +\x6f\x61\x57\x6d\x64\x64\x60\x54\x4e\x5d\x51\x49\x54\x4c\x45\x56\ +\x4d\x3c\x53\x48\x3a\x4e\x44\x35\x50\x45\x34\x4b\x3f\x2e\x4d\x42\ +\x34\x50\x46\x39\x5a\x53\x4a\x72\x69\x5d\x85\x80\x80\x8e\x86\x81\ +\xc1\xba\xb1\xda\xd3\xcd\xce\xc5\xbd\xcd\xc0\xaf\xd4\xc7\xb7\xe1\ +\xdc\xd6\xb2\xb1\xb5\xa2\x9c\x95\xae\xa0\x94\xb9\xaf\xa8\xb8\xac\ +\x9f\xca\xbb\xad\xc5\xc5\xc3\x79\x81\x84\x6e\x78\x76\x6f\x74\x6d\ +\x3d\x4a\x49\x3f\x45\x3f\x68\x6e\x68\x37\x48\x47\x62\x60\x53\x73\ +\x72\x6d\x84\x7b\x70\xab\xa6\x9a\x89\x91\x93\xc5\xb6\xa1\x8d\x98\ +\xaa\x65\x61\x58\x3c\x4b\x4d\x37\x43\x3f\x3f\x41\x38\x28\x41\x3c\ +\x36\x4e\x4a\x2b\x4c\x49\x27\x3e\x39\x2c\x45\x46\x37\x4a\x46\x50\ +\x62\x5e\x36\x55\x57\x22\x46\x45\x29\x42\x3d\x30\x3e\x3b\x27\x3d\ +\x3c\x27\x38\x37\x2d\x44\x45\x2f\x43\x42\x2c\x44\x43\x30\x4a\x45\ +\x2e\x4e\x4c\x38\x55\x56\x00\x00\x00\x93\x9c\xb7\x78\x7d\x8b\x63\ +\x6c\x76\x77\x88\xa2\x62\x6a\x6f\x53\x61\x61\x46\x51\x51\x5d\x69\ +\x6e\x5b\x63\x65\x4a\x51\x4c\x43\x4d\x46\x4c\x54\x53\x44\x4e\x45\ +\x42\x4d\x45\x3d\x40\x33\x3e\x3f\x36\x45\x4f\x47\x48\x56\x4e\x44\ +\x4b\x41\x45\x55\x4e\x43\x51\x48\x3e\x44\x3a\x43\x50\x4a\x44\x53\ +\x4c\x4d\x66\x64\x4e\x67\x68\x48\x57\x52\x4a\x5c\x5c\x4f\x65\x64\ +\x42\x53\x4e\x48\x52\x50\x4c\x5b\x59\x4f\x68\x68\x53\x67\x6a\x5b\ +\x6c\x71\x57\x69\x71\x63\x72\x7d\x4e\x5f\x60\x47\x57\x56\x51\x5e\ +\x5d\x4a\x5d\x58\x4a\x58\x53\x51\x59\x56\x4f\x56\x53\x54\x5d\x5c\ +\x4f\x51\x51\x62\x68\x6e\x61\x66\x6b\x57\x5b\x5c\x4d\x58\x58\x4f\ +\x58\x57\x54\x55\x56\x49\x49\x48\x47\x47\x45\x49\x4c\x4a\x4b\x52\ +\x51\x4d\x4e\x4e\x52\x57\x52\x65\x70\x78\x5a\x61\x68\x57\x61\x67\ +\x6b\x7d\x85\x80\x95\xa3\x8a\x96\x9f\x60\x6a\x65\x4b\x51\x46\x64\ +\x6d\x6f\x5c\x66\x65\x60\x64\x61\x80\x89\x91\x6d\x75\x78\x69\x6b\ +\x68\x5c\x5d\x5a\x53\x56\x50\x5e\x6c\x6c\x4b\x4f\x44\x5b\x60\x59\ +\x5d\x60\x5a\x58\x59\x50\x5c\x5a\x51\x60\x56\x4d\x55\x49\x3c\x53\ +\x4b\x3d\x56\x50\x41\x52\x4f\x40\x50\x45\x35\x54\x47\x39\x4f\x44\ +\x32\x4e\x41\x2e\x4e\x40\x2e\x4e\x46\x34\x4d\x49\x39\x53\x46\x3b\ +\x56\x46\x3f\x4d\x3b\x31\x4c\x3b\x2d\x50\x45\x38\x85\x74\x66\x75\ +\x6d\x6f\x54\x4a\x46\x58\x4f\x46\x62\x5b\x57\x6b\x69\x61\x5e\x5a\ +\x54\x5d\x57\x50\x62\x5d\x51\x73\x70\x67\x86\x83\x7f\x8b\x85\x81\ +\xa3\x9a\x91\xba\xac\x9c\xd1\xc9\xc2\xe3\xda\xd2\xe3\xdc\xd2\xdf\ +\xd8\xcf\xd6\xd0\xcb\x99\x93\x90\x7f\x6a\x57\xaa\x99\x7f\xdb\xcf\ +\xc1\xda\xd5\xcf\xd0\xca\xc4\xc6\xbc\xb6\xc8\xc3\xbf\xa8\x9d\x96\ +\x7d\x7a\x73\x4b\x54\x51\x3b\x4d\x47\x34\x43\x43\x3b\x45\x3e\x6e\ +\x73\x6d\x4e\x55\x52\x65\x67\x63\x69\x67\x5a\x48\x51\x49\x5e\x62\ +\x5a\x6d\x71\x62\x8c\x89\x79\xa2\x95\x83\x5f\x6b\x78\x44\x4e\x4c\ +\x2d\x3b\x35\x3a\x4a\x46\x33\x45\x42\x25\x3d\x39\x2a\x4b\x4a\x3a\ +\x59\x55\x43\x5d\x61\x3a\x4a\x4a\x49\x50\x51\x45\x53\x51\x40\x5b\ +\x5a\x28\x50\x4c\x24\x44\x43\x2d\x40\x3c\x2e\x48\x44\x3b\x51\x4a\ +\x3e\x54\x51\x2f\x46\x45\x2e\x46\x45\x32\x48\x43\x3f\x57\x58\x39\ +\x53\x58\x00\x00\x00\x92\x96\xaa\x6f\x71\x84\x74\x82\x9a\x8f\x98\ +\xb3\x7b\x84\x94\x75\x80\x89\x4a\x56\x58\x5f\x6c\x72\x64\x6f\x73\ +\x3d\x45\x3b\x3c\x49\x3e\x49\x53\x51\x4a\x56\x51\x48\x52\x50\x3f\ +\x49\x40\x41\x49\x3f\x4e\x5e\x5b\x4d\x5e\x57\x46\x4f\x46\x44\x54\ +\x4d\x42\x4e\x45\x3f\x42\x36\x3e\x4a\x41\x3e\x49\x40\x51\x65\x6d\ +\x61\x7b\x82\x48\x59\x57\x50\x63\x6c\x56\x6c\x73\x4d\x61\x61\x4d\ +\x55\x55\x46\x51\x53\x4f\x6a\x6d\x5a\x70\x7a\x66\x78\x83\x5b\x71\ +\x78\x63\x6b\x6f\x45\x49\x44\x4f\x61\x63\x5a\x66\x6a\x4d\x5d\x5a\ +\x4a\x4f\x48\x55\x5b\x5a\x54\x58\x56\x53\x5c\x5e\x54\x57\x5a\x4f\ +\x51\x54\x5a\x5d\x61\x4e\x4d\x4d\x4b\x53\x52\x54\x5b\x5b\x54\x59\ +\x60\x4f\x50\x50\x4c\x4d\x4c\x4f\x53\x53\x59\x5e\x61\x5c\x5f\x63\ +\x59\x68\x70\x60\x6d\x79\x66\x74\x80\x68\x72\x79\xab\xb9\xc5\x97\ +\xac\xbe\x5d\x68\x68\x56\x5d\x56\x5b\x65\x60\x54\x5a\x53\x53\x58\ +\x4f\x7b\x7d\x7f\x77\x80\x89\x54\x55\x53\x50\x52\x4d\x4d\x54\x4a\ +\x4f\x57\x4e\x4f\x5e\x57\x58\x5d\x53\x7e\x7c\x7b\x75\x6e\x68\x6d\ +\x62\x59\x78\x6d\x68\x69\x5c\x56\x55\x4e\x44\x52\x47\x3a\x56\x50\ +\x45\x57\x4e\x42\x51\x41\x31\x53\x44\x33\x50\x42\x2f\x4f\x43\x2e\ +\x56\x4f\x43\x59\x56\x4f\x58\x4a\x3e\x61\x56\x51\x59\x4c\x49\x4c\ +\x3d\x32\x50\x3f\x33\x5a\x52\x4c\x6e\x64\x5e\x65\x5f\x5f\x7b\x73\ +\x70\x81\x7d\x7b\xa1\x9a\x90\xc1\xba\xb3\xc6\xbf\xb8\xbc\xb7\xb2\ +\xb2\xa8\xa1\xca\xc1\xb7\xd7\xcf\xc8\xd1\xcb\xc5\xa4\x9c\x9a\xa7\ +\x98\x8a\xd7\xcb\xbe\xe0\xd9\xcf\xe0\xd9\xd0\xda\xd4\xcd\xc0\xb4\ +\xa9\x9d\x99\x97\x69\x5f\x54\xa2\x8d\x70\xe3\xd8\xc9\xde\xd8\xd1\ +\xe0\xd7\xcf\xc6\xbc\xb7\xd2\xc9\xc2\x73\x79\x81\x42\x4a\x46\x40\ +\x47\x42\x37\x3e\x37\x88\x89\x82\xa6\xa3\x9c\xb4\xb2\xb0\xbd\xb4\ +\xa6\xc7\xc7\xc9\x78\x7b\x7f\x45\x58\x5a\x43\x4d\x42\x3a\x51\x52\ +\x65\x5f\x48\x9e\x8d\x79\x44\x50\x59\x51\x60\x65\x4e\x56\x4d\x2a\ +\x4b\x51\x30\x4c\x4a\x23\x3a\x35\x2a\x43\x42\x53\x56\x4e\x60\x6d\ +\x6f\x68\x6a\x6a\x59\x5d\x5b\x47\x52\x49\x45\x4b\x41\x5e\x69\x5f\ +\x39\x56\x57\x33\x47\x45\x41\x5a\x54\x3a\x4e\x4b\x2b\x41\x3e\x24\ +\x3b\x38\x2e\x41\x3e\x1e\x32\x2f\x3e\x59\x58\x2f\x48\x4d\x00\x00\ +\x00\x62\x65\x6c\x60\x65\x71\x83\x8a\x9d\x9a\xa1\xb2\x82\x8b\x9b\ +\x89\x94\x9d\x56\x67\x73\x88\x94\x9d\x77\x87\x93\x40\x4c\x49\x42\ +\x52\x4a\x42\x4f\x49\x4c\x5e\x5b\x52\x63\x68\x53\x5f\x5d\x48\x56\ +\x52\x53\x68\x6c\x58\x6d\x6d\x52\x64\x63\x47\x59\x54\x47\x53\x50\ +\x41\x45\x3e\x40\x49\x42\x40\x48\x3e\x4c\x59\x5e\x62\x7b\x83\x53\ +\x6a\x71\x5b\x72\x80\x4f\x62\x64\x4c\x61\x5e\x42\x49\x42\x45\x50\ +\x50\x4f\x6b\x6d\x5e\x76\x82\x66\x7b\x81\x4d\x5c\x5b\x44\x44\x3c\ +\x3d\x39\x32\x53\x65\x6c\x66\x72\x7d\x5a\x62\x65\x4b\x51\x4d\x56\ +\x60\x61\x58\x5e\x60\x5e\x68\x6b\x57\x5a\x5c\x5d\x63\x69\x5a\x5e\ +\x60\x52\x53\x53\x51\x5a\x5a\x58\x60\x61\x5b\x60\x69\x5c\x61\x68\ +\x4e\x52\x52\x55\x59\x5c\x6d\x7b\x85\x6c\x7c\x87\xc7\xd3\xda\x8d\ +\x94\x98\x58\x68\x6b\x87\x94\x9d\xa3\xb0\xb8\x8e\x9a\xa5\x57\x5f\ +\x5e\x50\x53\x49\x57\x59\x51\x48\x4a\x3d\x62\x62\x59\x6d\x6f\x6f\ +\x50\x55\x4f\x4d\x53\x46\x50\x59\x52\x4e\x59\x50\x56\x57\x4f\x69\ +\x6e\x6a\x80\x82\x81\x7b\x74\x70\x5f\x52\x48\x6b\x5c\x53\x7f\x74\ +\x74\x75\x6a\x64\x5b\x57\x50\x52\x4b\x3d\x71\x63\x58\x5c\x53\x44\ +\x55\x4c\x3c\x57\x49\x3a\x54\x4d\x42\x5e\x5b\x55\x6d\x6c\x70\x61\ +\x5b\x5e\x5b\x4d\x42\x63\x53\x52\x59\x4d\x46\x4d\x40\x31\x53\x46\ +\x3d\x94\x8b\x84\xa6\x9f\x9b\xa8\xa3\x9f\xc3\xb8\xac\xda\xd0\xc6\ +\xdb\xd2\xc9\xdc\xd3\xc8\xdd\xd3\xc8\xdd\xd0\xc5\xda\xcf\xc6\xdd\ +\xd2\xca\xd5\xcb\xc2\xd8\xce\xc5\xc5\xb8\xb1\xd6\xcc\xc1\xbc\xb2\ +\xab\xcd\xc1\xb0\xd0\xc2\xb4\xde\xd7\xcd\xc3\xbd\xba\xac\xa1\x99\ +\x7e\x7a\x7b\x8f\x7e\x6c\xbb\xa6\x8f\xe3\xde\xd3\xdf\xd9\xd1\xd8\ +\xd1\xcc\xdb\xd5\xce\xcc\xc7\xc3\x56\x6c\x7a\x3e\x4d\x4c\x8e\x85\ +\x77\xdd\xd0\xbf\xb4\xb5\xbb\x81\x73\x68\xc0\xa2\x82\xdd\xd5\xcc\ +\xd4\xcd\xc7\x82\x8c\x94\x51\x58\x5c\x3c\x50\x4c\x40\x41\x30\x69\ +\x69\x64\x3e\x44\x40\x60\x6d\x73\x66\x66\x54\x31\x46\x52\x33\x4d\ +\x4c\x21\x3c\x3e\x3f\x4a\x43\x62\x5e\x50\x8f\x81\x79\x93\x83\x7d\ +\x6e\x6d\x6e\x4d\x4e\x42\x52\x52\x43\x69\x67\x62\x40\x54\x53\x27\ +\x3d\x36\x49\x4e\x3e\x45\x51\x4a\x35\x49\x4c\x2e\x47\x48\x3f\x4b\ +\x4c\x34\x49\x4c\x3b\x55\x5c\x33\x48\x48\x00\x00\x00\x63\x64\x68\ +\x64\x6b\x77\x74\x7a\x86\x83\x89\x96\x80\x88\x97\x87\x92\xa1\x69\ +\x79\x8c\xa7\xb7\xc8\x9a\xab\xbd\x61\x6f\x74\x53\x67\x64\x41\x50\ +\x4c\x4d\x5e\x5e\x5f\x74\x7f\x58\x63\x63\x50\x60\x60\x4c\x65\x65\ +\x5c\x77\x7c\x64\x80\x8a\x5a\x6f\x6f\x46\x4f\x47\x40\x48\x40\x3d\ +\x3f\x36\x40\x41\x3b\x47\x51\x4e\x60\x7b\x89\x72\x8a\xa0\x63\x73\ +\x82\x4e\x60\x66\x51\x68\x67\x44\x4f\x49\x4d\x59\x5b\x58\x70\x79\ +\x5d\x71\x79\x54\x61\x60\x46\x54\x4f\x3e\x3b\x31\x3f\x37\x31\x5b\ +\x61\x65\x65\x6e\x70\x54\x57\x57\x50\x55\x52\x57\x62\x60\x60\x68\ +\x6e\x60\x64\x67\x51\x55\x55\x54\x59\x5a\x5c\x5f\x60\x4e\x52\x4f\ +\x50\x53\x51\x47\x4a\x48\x72\x7b\x83\x7c\x83\x8d\x58\x5f\x61\x6a\ +\x77\x81\xa2\xb1\xbe\xd2\xdc\xe5\x84\x88\x89\x6e\x80\x88\xb7\xc6\ +\xcf\xad\xbe\xca\x91\xa0\xad\x5d\x61\x5f\x4d\x51\x49\x4f\x51\x4a\ +\x4d\x4e\x47\x4e\x4f\x45\x50\x4b\x43\x51\x58\x54\x4d\x56\x4a\x58\ +\x60\x58\x6b\x78\x7a\x4e\x59\x52\x54\x54\x4b\x79\x75\x74\x88\x87\ +\x87\x6d\x63\x61\x57\x49\x3e\x6c\x5b\x50\x71\x64\x5d\x68\x5f\x5b\ +\x53\x4d\x44\x5f\x58\x4c\x5c\x4d\x42\x5c\x4e\x46\x5f\x53\x4f\x59\ +\x4b\x3f\x73\x6a\x64\x79\x74\x71\x6a\x63\x60\x6b\x5f\x59\x65\x57\ +\x4f\x55\x44\x3c\x52\x44\x3c\x53\x49\x3d\x70\x60\x50\xbe\xb1\xa9\ +\xdf\xd4\xc9\xd8\xcf\xc7\xdd\xd4\xcb\xdd\xd3\xc8\xdd\xd3\xc9\xdc\ +\xd4\xca\xdb\xd2\xc9\xda\xd1\xc8\xda\xd1\xc9\xde\xd5\xcc\xdd\xd5\ +\xce\xde\xd5\xcc\xd2\xca\xc4\xd7\xca\xc1\xc4\xbf\xbe\x8b\x7f\x7e\ +\xb8\xa1\x85\xda\xd3\xc7\xce\xc5\xbf\xa9\xa2\x9d\xab\x95\x80\xa2\ +\x9a\x96\x96\x85\x76\xb4\x9b\x83\xe1\xd8\xcb\xdf\xd9\xd2\xe2\xdb\ +\xd2\xb4\xb5\xb4\x5c\x5e\x5a\x96\x8f\x81\xbf\xb1\xa1\xd7\xcb\xba\ +\xda\xd5\xd2\xb3\xb6\xbd\x6e\x69\x66\x77\x70\x62\xa6\x98\x80\x9b\ +\x93\x92\x76\x88\x97\x22\x33\x31\x49\x4a\x38\x56\x5a\x57\x37\x42\ +\x47\x84\x80\x6e\x53\x5c\x60\x43\x50\x57\x4c\x5b\x57\x3e\x54\x4d\ +\x61\x5d\x4b\x79\x66\x56\x84\x71\x66\x87\x74\x6c\x7f\x74\x6d\x67\ +\x65\x60\x55\x54\x48\x42\x5a\x5a\x37\x52\x4a\x2d\x45\x41\x3f\x44\ +\x3b\x3c\x4e\x49\x65\x6b\x63\x35\x47\x48\x39\x49\x45\x49\x61\x5f\ +\x44\x62\x65\x36\x50\x54\x00\x00\x00\x50\x56\x5d\x57\x5f\x68\x6a\ +\x7a\x8c\x7b\x88\x9a\x79\x87\x99\x85\x93\xa6\x88\x98\xad\xa4\xb2\ +\xc5\xae\xbc\xcf\x89\x97\xa5\x6e\x80\x83\x47\x59\x5a\x44\x54\x54\ +\x62\x75\x7f\x58\x65\x68\x4d\x61\x63\x4f\x6b\x6c\x5c\x75\x7e\x6a\ +\x85\x93\x66\x74\x79\x43\x4b\x3f\x44\x53\x4b\x40\x45\x3d\x3d\x3e\ +\x36\x44\x53\x4e\x61\x78\x86\x78\x92\xa8\x5c\x6c\x77\x5c\x6c\x7a\ +\x5c\x72\x79\x43\x4a\x46\x4c\x53\x54\x66\x7b\x88\x63\x75\x79\x49\ +\x51\x4c\x44\x4a\x44\x40\x3b\x34\x41\x36\x31\x51\x54\x54\x5f\x65\ +\x67\x5a\x5a\x5a\x50\x56\x56\x55\x5e\x5e\x5f\x66\x6c\x64\x67\x6d\ +\x55\x59\x58\x42\x40\x3b\x48\x47\x42\x61\x6a\x70\x55\x5a\x59\x46\ +\x4d\x4c\x83\x8f\x96\x8d\x9b\xa9\x6e\x76\x7d\x83\x8a\x8e\x9e\xa0\ +\xa2\x82\x85\x84\x5b\x65\x67\x83\x8c\x90\xb0\xbe\xc7\xa0\xaf\xb8\ +\x63\x6a\x68\x49\x4d\x46\x4c\x4f\x42\x4b\x4d\x3e\x4e\x4f\x43\x51\ +\x58\x51\x50\x56\x4d\x4e\x51\x47\x55\x5e\x56\x70\x77\x77\x76\x76\ +\x77\x68\x70\x6d\x6a\x6d\x6e\x7b\x7c\x7e\x79\x74\x72\x71\x6d\x69\ +\x5d\x57\x4e\x5d\x54\x4e\x5f\x57\x4f\x6a\x5e\x59\x71\x66\x5f\x67\ +\x5a\x52\x56\x46\x37\x5c\x4f\x47\x56\x4a\x3e\x6b\x60\x5a\x6f\x63\ +\x5d\x6c\x5e\x57\x69\x5c\x55\x65\x5a\x56\x56\x48\x41\x59\x4e\x45\ +\x53\x49\x43\x79\x73\x6d\x96\x88\x76\xcb\xc0\xb7\xde\xd3\xc9\xdd\ +\xd6\xcd\xdd\xd5\xcd\xdd\xd5\xcc\xdd\xd5\xcd\xdc\xd5\xcd\xdc\xd7\ +\xcf\xdb\xd4\xcd\xd9\xd2\xcb\xdb\xd2\xc8\xde\xd6\xcf\xdd\xd7\xce\ +\xdd\xd6\xcd\xdd\xd5\xce\xde\xd6\xce\xdf\xd9\xd3\xbb\xb5\xb1\xce\ +\xc0\xb2\xd6\xce\xc6\xa4\x9d\x9a\x90\x86\x81\x86\x71\x5c\xb1\xaa\ +\x9e\x9f\x91\x84\xe4\xda\xcd\xdf\xd7\xcf\xc9\xc3\xbf\x79\x7b\x78\ +\xa1\xa0\x94\xdb\xce\xbf\xc8\xc4\xbe\xae\xa3\x9a\xd4\xc3\xb3\xdf\ +\xd6\xce\xb5\xaf\xa9\xc1\xc1\xc5\x5a\x5f\x5e\x7f\x71\x61\x89\x8f\ +\x91\x24\x35\x39\x47\x46\x34\x61\x61\x60\x5f\x60\x60\x97\x8b\x7a\ +\xb8\xb9\xb9\xb5\xb6\xb4\x7e\x8b\x92\x4c\x5c\x6a\x4e\x47\x3b\x6b\ +\x5a\x44\x6f\x5c\x51\x6d\x5d\x52\x72\x5e\x4d\x72\x6a\x62\x5c\x54\ +\x48\x54\x54\x4e\x2e\x46\x42\x2a\x41\x3a\x41\x53\x4c\x30\x41\x43\ +\x22\x33\x2f\x37\x46\x3e\x4c\x62\x5a\x44\x5e\x5e\x41\x60\x63\x3e\ +\x52\x53\x00\x00\x00\x4c\x59\x5f\x51\x65\x74\x61\x6f\x7d\x69\x76\ +\x87\x6b\x76\x83\x78\x7e\x88\x8a\x95\xa7\xa1\xb2\xc9\xb1\xba\xc9\ +\x9c\xa8\xb8\x91\xa0\xac\x5d\x71\x77\x42\x54\x51\x59\x6b\x73\x54\ +\x61\x5f\x47\x60\x5f\x4a\x69\x67\x4e\x65\x68\x5f\x7a\x85\x5e\x6f\ +\x71\x41\x4b\x42\x45\x58\x50\x42\x49\x43\x3e\x3d\x33\x46\x57\x58\ +\x59\x70\x76\x67\x76\x84\x58\x66\x6b\x54\x66\x6d\x57\x6e\x73\x44\ +\x4c\x49\x51\x5b\x5e\x66\x78\x81\x59\x69\x68\x46\x4e\x47\x42\x40\ +\x37\x3f\x37\x2f\x4b\x43\x41\x50\x50\x50\x55\x58\x56\x5b\x60\x60\ +\x5e\x65\x67\x53\x5e\x5d\x53\x5c\x5c\x5e\x62\x65\x4e\x4f\x4e\x43\ +\x47\x3f\x54\x56\x58\x80\x8d\x98\x51\x55\x51\x4e\x58\x57\x92\x9f\ +\xa5\xbe\xcc\xd6\x73\x7c\x7c\x4d\x52\x4c\x4b\x4e\x47\x48\x4b\x44\ +\x54\x57\x56\x64\x6d\x70\x96\x9e\xa2\x86\x94\x9d\x57\x61\x60\x4e\ +\x52\x4d\x4e\x55\x4e\x4d\x54\x46\x53\x5b\x50\x57\x61\x5c\x51\x57\ +\x49\x50\x52\x49\x66\x62\x5c\x81\x82\x81\x7e\x78\x73\x76\x6b\x65\ +\x77\x73\x71\x7f\x87\x8e\x66\x6b\x71\x62\x60\x59\x75\x70\x6a\x5b\ +\x55\x4e\x6f\x66\x5c\x72\x62\x5a\x6c\x60\x55\x5f\x52\x47\x4c\x39\ +\x2a\x5a\x4f\x43\x6d\x65\x63\x73\x6a\x6b\x68\x65\x65\x58\x4f\x48\ +\x55\x44\x35\x5c\x4e\x48\x5a\x51\x49\x6e\x67\x64\x70\x66\x5f\xa3\ +\x9d\x9a\xc1\xb3\xa3\xdc\xd5\xd0\xdf\xda\xd3\xde\xd7\xd0\xe2\xda\ +\xd4\xdc\xd4\xcb\xdf\xd9\xd3\xdf\xda\xd3\xdf\xd9\xd1\xde\xd8\xd2\ +\xda\xd1\xcd\xc2\xb7\xb0\xc4\xb3\xa5\xd3\xc9\xbe\xde\xd7\xce\xdd\ +\xd6\xce\xdd\xd6\xce\xdd\xd4\xcb\xe1\xd8\xce\xde\xd6\xcd\xd9\xd3\ +\xcb\xbe\xba\xb5\xca\xbe\xb5\xb3\xac\xa8\xc5\xb8\xa5\xd5\xcd\xc6\ +\xdb\xd2\xc8\xd4\xcb\xc4\xc4\xbc\xb5\xa4\xa1\x9e\xb6\xa2\x8e\xcf\ +\xc2\xb6\xd8\xcd\xc0\xcc\xc9\xc8\xb6\xa8\x98\xd2\xc7\xb6\x84\x87\ +\x8b\x8b\x87\x7b\x78\x72\x68\x92\x8e\x89\x81\x83\x7b\x52\x60\x6d\ +\x76\x74\x6b\x80\x86\x8c\x7a\x6c\x5e\xda\xcb\xb6\xd4\xcc\xc4\xcc\ +\xc3\xb5\xbd\xb5\xaa\xa4\xa3\xac\x7f\x7a\x79\x6f\x6c\x69\x4c\x3d\ +\x2f\x52\x45\x2f\x60\x51\x43\x58\x46\x37\x51\x4c\x3d\x56\x50\x46\ +\x36\x48\x45\x29\x3f\x36\x28\x3f\x45\x27\x39\x36\x31\x4b\x45\x35\ +\x51\x4d\x4a\x59\x50\x46\x62\x60\x42\x5a\x5d\x50\x57\x4f\x00\x00\ +\x00\x41\x47\x46\x50\x5c\x5d\x3f\x41\x3d\x53\x55\x5c\x5d\x62\x6b\ +\x6c\x6e\x74\x73\x77\x85\xa4\xb6\xce\xae\xbd\xc8\x9f\xac\xba\xa2\ +\xba\xce\x7f\x95\x9b\x46\x5b\x5e\x5b\x72\x78\x4c\x5a\x55\x50\x65\ +\x68\x4e\x6a\x69\x4b\x61\x62\x4f\x6b\x6e\x4f\x64\x62\x43\x50\x4c\ +\x49\x5f\x5c\x44\x50\x4a\x41\x43\x3d\x42\x4b\x4a\x51\x69\x6a\x63\ +\x6f\x7c\x52\x5a\x5c\x52\x67\x6b\x5a\x70\x76\x46\x4d\x4b\x55\x64\ +\x6e\x64\x77\x7f\x52\x5d\x59\x45\x4c\x42\x44\x42\x39\x41\x3e\x37\ +\x53\x51\x52\x59\x5e\x5f\x50\x55\x52\x64\x6b\x70\x62\x68\x6c\x5e\ +\x68\x6d\x4e\x54\x53\x53\x56\x53\x47\x47\x44\x4d\x5a\x56\x5a\x62\ +\x65\x60\x6a\x66\x4c\x53\x4d\x5b\x67\x68\x82\x8d\x94\x83\x8d\x8e\ +\x57\x63\x60\x4e\x5a\x53\x4a\x54\x49\x4e\x54\x4d\x4d\x51\x4c\x4d\ +\x4e\x4a\x7e\x86\x8a\x99\xa8\xb3\x67\x72\x76\x4e\x54\x4e\x4d\x56\ +\x4e\x4f\x56\x4d\x58\x5e\x59\x53\x5c\x55\x4d\x57\x49\x57\x56\x50\ +\x68\x60\x59\x7d\x7d\x7d\x72\x70\x71\x70\x65\x62\x73\x6b\x66\x89\ +\x8b\x8c\x63\x66\x67\x67\x62\x5c\x5c\x54\x4e\x65\x5c\x54\x70\x66\ +\x5f\x6c\x5e\x54\x5e\x56\x4c\x5e\x53\x4b\x4c\x3a\x2c\x5d\x4f\x46\ +\x6d\x62\x5c\x6f\x65\x60\x66\x5c\x57\x5b\x4c\x44\x5e\x50\x46\x7d\ +\x75\x70\x7d\x76\x70\x92\x8e\x8c\xa3\x95\x8c\xce\xc6\xc0\xdb\xd4\ +\xcd\xe2\xdd\xd5\xe2\xdd\xd8\xdb\xd5\xd0\xbb\xb1\xad\x9a\x84\x78\ +\xa7\x94\x84\xbe\xae\xa2\xaa\x9e\x95\xcc\xbb\xab\xd8\xd4\xd2\x87\ +\x7c\x7b\x7d\x65\x56\xa9\x93\x82\xe2\xd9\xcb\xdc\xd4\xcc\xde\xd8\ +\xcf\xdd\xd5\xce\xcc\xc0\xb6\xe1\xd7\xcb\xdc\xd5\xcd\xde\xd3\xcb\ +\xdd\xd7\xd1\x8a\x80\x7e\xcc\xb4\x9c\xe1\xd8\xd0\xde\xd4\xcc\xda\ +\xd1\xcb\x9d\x96\x97\x92\x83\x7a\x94\x7e\x74\xb5\x9f\x8e\xe3\xd2\ +\xc4\xa7\xa5\xa6\x68\x6c\x6c\x79\x73\x5d\x81\x85\x85\x5d\x64\x61\ +\x6c\x6c\x67\xa1\x9c\x91\xaa\xa6\x9f\xb4\xb0\xad\xdb\xd0\xc2\xd6\ +\xd0\xcc\xb5\xab\xa2\xb2\xa3\x99\xd1\xc2\xab\xd7\xce\xc4\xcb\xc1\ +\xb7\xd5\xcc\xc2\xc7\xbd\xb0\xc7\xcc\xce\x5c\x5e\x66\x63\x55\x44\ +\x89\x77\x65\x6f\x63\x58\x62\x67\x69\x36\x41\x3a\x34\x43\x3a\x23\ +\x38\x33\x1f\x32\x37\x32\x41\x39\x44\x62\x64\x40\x5b\x5f\x3d\x4f\ +\x4c\x37\x50\x4d\x35\x52\x55\x3b\x44\x3f\x00\x00\x00\x3a\x39\x32\ +\x43\x4c\x46\x3e\x3f\x39\x51\x54\x5a\x6c\x73\x84\x97\xa6\xb8\x9f\ +\xad\xbe\xa3\xb2\xc5\xa4\xb9\xd0\x9e\xb8\xca\x85\xa9\xc5\x80\x9a\ +\xa9\x4b\x69\x72\x61\x7a\x89\x4b\x61\x61\x57\x6d\x72\x51\x67\x66\ +\x4e\x63\x60\x4f\x6d\x6d\x4a\x64\x62\x43\x4e\x49\x4a\x5a\x57\x4a\ +\x5a\x57\x47\x54\x4d\x40\x3f\x3a\x55\x6b\x72\x60\x6d\x7b\x56\x5d\ +\x61\x55\x66\x71\x4f\x61\x5f\x49\x53\x56\x5d\x71\x7d\x64\x78\x79\ +\x4d\x55\x51\x45\x49\x40\x47\x45\x3d\x47\x48\x42\x59\x5b\x5c\x5f\ +\x6c\x6d\x4d\x5c\x54\x63\x70\x77\x66\x76\x7e\x60\x6b\x6a\x4b\x51\ +\x4f\x56\x62\x60\x55\x5c\x5a\x63\x6f\x72\x61\x71\x6d\x4e\x5b\x50\ +\x50\x5a\x53\x6d\x73\x74\x83\x8b\x8f\x57\x61\x5c\x54\x5b\x56\x4f\ +\x5e\x55\x4a\x55\x49\x4b\x4e\x42\x4f\x51\x49\x56\x5d\x5e\x8e\x9a\ +\xa6\x8f\xa1\xaf\x5c\x67\x66\x4b\x54\x49\x4f\x56\x49\x5b\x62\x59\ +\x5f\x63\x60\x59\x5e\x57\x4f\x55\x48\x4f\x55\x4b\x63\x66\x61\x6e\ +\x6e\x6c\x81\x84\x86\x71\x70\x72\x74\x6f\x6b\x64\x61\x5e\x63\x5d\ +\x58\x5a\x56\x4c\x60\x5c\x54\x75\x69\x60\x68\x5f\x58\x5f\x54\x4a\ +\x65\x59\x4f\x70\x66\x5e\x55\x47\x3a\x5f\x4c\x43\x65\x59\x53\x66\ +\x59\x53\x52\x44\x36\x4c\x3d\x2e\x88\x7b\x71\x9c\x94\x8f\xa8\xa1\ +\x97\xae\xa8\xa6\x7e\x6e\x69\xaf\x99\x8a\xdd\xd3\xc7\x86\x76\x72\ +\xb6\xa2\x8e\xcf\xcd\xc9\x8e\x83\x81\x77\x60\x55\x76\x5d\x4c\x7c\ +\x60\x4f\x7a\x63\x54\xa7\x8f\x7a\xdc\xd2\xc7\xbd\xba\xb9\xab\xa5\ +\xa2\x82\x71\x69\x86\x70\x64\xaa\x92\x7f\xdb\xd0\xc3\xdf\xda\xd4\ +\x8c\x86\x8b\x8b\x77\x6a\xbe\xaa\x98\xdc\xd1\xc7\xde\xd6\xcf\xaa\ +\xa3\xa2\xd4\xc3\xb5\xc6\xb7\xab\xc2\xb2\xa7\xd2\xc3\xb7\xa3\x9e\ +\xa3\x8c\x77\x6d\x82\x71\x6a\x88\x71\x63\x93\x83\x73\x53\x60\x62\ +\x61\x63\x5d\x3e\x45\x3f\x6c\x6b\x64\x9f\x9a\x90\xc7\xbe\xb3\xd9\ +\xd0\xc5\xca\xc3\xb9\xd7\xcb\xc0\xdc\xd3\xc9\xde\xd5\xca\xdb\xd2\ +\xc9\xd3\xca\xc0\xd1\xc9\xbf\xc2\xb7\xaa\xdd\xd2\xc6\xde\xd5\xca\ +\xd5\xd0\xc7\xb4\xaa\x9f\xbf\xb3\xa5\xa4\xa4\xa8\x66\x5e\x58\xa3\ +\x89\x6a\x83\x8c\xa2\x39\x40\x38\x36\x48\x3e\x33\x48\x4f\x3d\x4d\ +\x4e\x55\x68\x61\x60\x72\x73\x46\x5a\x61\x3a\x52\x56\x3b\x51\x57\ +\x3f\x58\x5d\x43\x57\x51\x00\x00\x00\x3c\x40\x35\x41\x48\x42\x50\ +\x58\x5d\x85\x95\xae\x95\xa2\xb6\x97\xa3\xb2\x90\x98\xa4\x79\x7d\ +\x86\x7f\x8a\x97\x60\x71\x80\x59\x70\x82\x67\x77\x80\x4a\x5e\x62\ +\x5b\x75\x83\x5f\x7e\x8c\x64\x7f\x8d\x55\x6e\x6f\x4e\x67\x6a\x52\ +\x6c\x72\x49\x63\x60\x43\x51\x4b\x49\x56\x53\x49\x5a\x54\x46\x4f\ +\x49\x49\x4f\x4b\x53\x5a\x5e\x67\x73\x7f\x5c\x66\x6e\x59\x67\x75\ +\x47\x5c\x5d\x53\x64\x70\x58\x6b\x73\x5e\x71\x74\x4e\x56\x51\x44\ +\x48\x41\x46\x47\x40\x4f\x51\x51\x59\x5d\x5e\x60\x6a\x6b\x50\x61\ +\x5c\x50\x57\x4f\x5f\x6a\x66\x55\x5d\x56\x62\x69\x6a\x80\x89\x8b\ +\x4d\x50\x4b\x5d\x62\x5e\x54\x5e\x56\x50\x5c\x4f\x5c\x62\x5f\x80\ +\x88\x94\x61\x6b\x6d\x4f\x54\x4e\x50\x57\x4f\x4d\x59\x4d\x4d\x56\ +\x4a\x4f\x55\x4f\x4d\x50\x4a\x72\x7e\x86\x92\x9a\xa2\x82\x8d\x96\ +\x58\x67\x63\x53\x5b\x53\x53\x53\x4d\x5d\x58\x4f\x62\x62\x5b\x6a\ +\x68\x64\x64\x67\x66\x55\x5c\x55\x6e\x75\x75\x77\x7a\x7e\x90\x96\ +\x9a\x69\x6f\x6e\x57\x54\x51\x4e\x4e\x45\x58\x58\x4f\x6b\x63\x5b\ +\x6c\x5b\x51\x6b\x60\x59\x5d\x52\x44\x5e\x51\x4b\x60\x54\x47\x74\ +\x69\x62\x59\x4c\x40\x57\x45\x36\x62\x54\x4b\x52\x43\x3a\x4c\x3e\ +\x31\x6a\x5b\x51\xa6\x9c\x97\xab\xa3\xa1\xca\xc1\xb9\xb0\xab\xab\ +\x80\x70\x6a\x7f\x6d\x66\xb4\xa7\x97\x96\x8d\x8d\xd4\xc8\xbc\xd0\ +\xcc\xcb\x8e\x85\x85\x7e\x6a\x61\x7c\x66\x5e\x79\x62\x55\x7a\x66\ +\x5b\x7f\x67\x5a\xbb\xa7\x92\xe0\xd7\xce\xd8\xd3\xcf\x88\x84\x89\ +\x76\x61\x56\xa7\x8f\x7e\xd1\xc5\xbb\xd8\xcc\xc0\xda\xd4\xcd\x92\ +\x8d\x96\x8f\x77\x66\xd6\xc4\xb5\xe0\xd6\xcd\xdb\xd4\xcc\x7e\x74\ +\x79\x7b\x62\x55\x7e\x65\x59\x8c\x76\x65\x86\x74\x6a\x88\x74\x6b\ +\x7e\x6b\x63\x6f\x5f\x54\x5f\x54\x4a\x53\x56\x4d\x59\x5e\x5b\x4d\ +\x4e\x4b\x95\x81\x70\xd9\xc7\xb4\xda\xd2\xc8\xe1\xd8\xce\xda\xd1\ +\xc9\xdd\xd4\xca\xd8\xcd\xc3\xde\xd6\xcb\xdd\xd3\xc8\xdb\xd4\xc9\ +\xdc\xd2\xc8\xd9\xd1\xc7\xdc\xd2\xc7\xdd\xd3\xc8\xdd\xd3\xc9\xdc\ +\xd4\xcb\xce\xc7\xc0\xc5\xb8\xab\x9c\xa5\xad\x62\x6a\x6a\x62\x6b\ +\x6c\x44\x4d\x48\x2b\x3a\x39\x22\x3e\x3f\x2b\x45\x45\x27\x40\x41\ +\x2b\x40\x3c\x41\x4a\x48\x29\x42\x41\x2a\x45\x41\x35\x57\x59\x40\ +\x59\x58\x00\x00\x00\x42\x44\x3b\x42\x48\x44\x4a\x53\x50\x76\x7c\ +\x90\x8b\x91\x9f\x92\x98\xaa\x75\x79\x7c\x3f\x49\x46\x40\x47\x45\ +\x43\x44\x43\x49\x4f\x54\x4d\x57\x5b\x42\x48\x40\x58\x62\x6d\x52\ +\x67\x6d\x65\x84\x90\x5b\x75\x7c\x51\x6d\x70\x51\x72\x75\x4f\x6e\ +\x74\x54\x6d\x70\x4f\x5e\x5a\x47\x51\x4b\x49\x4d\x4a\x46\x46\x40\ +\x50\x55\x59\x69\x76\x80\x58\x61\x64\x52\x5b\x5f\x51\x68\x75\x5a\ +\x6e\x7b\x54\x66\x63\x66\x79\x80\x58\x67\x67\x4b\x54\x4b\x45\x4c\ +\x46\x56\x5f\x5b\x59\x64\x63\x62\x67\x65\x57\x5d\x55\x5e\x63\x60\ +\x57\x58\x4e\x55\x53\x4e\x63\x63\x61\x6b\x6d\x67\x4c\x54\x49\x51\ +\x55\x4a\x50\x5a\x4d\x56\x5d\x57\x79\x84\x8c\x6b\x7a\x7a\x5a\x66\ +\x65\x65\x73\x73\x55\x61\x5d\x52\x5b\x55\x5e\x64\x61\x69\x6c\x6d\ +\x6e\x71\x6e\x89\x8b\x8b\x7b\x7a\x78\x7d\x79\x75\x7e\x7b\x77\x71\ +\x68\x64\x52\x48\x3e\x6a\x66\x62\x71\x6a\x68\x80\x76\x70\x81\x79\ +\x72\x70\x6c\x68\x66\x67\x65\x69\x6c\x6a\x64\x67\x65\x58\x5d\x58\ +\x55\x58\x52\x6a\x66\x61\x5e\x53\x50\x59\x4f\x45\x56\x4a\x3f\x4f\ +\x4a\x3d\x4f\x44\x36\x4f\x47\x38\x58\x4a\x3a\x60\x53\x47\x55\x46\ +\x38\x51\x42\x32\x58\x46\x3b\x4b\x3b\x32\x56\x48\x3d\x90\x82\x76\ +\xcd\xc6\xc2\xd6\xd0\xca\xd2\xce\xc8\xc7\xc2\xc1\x89\x7c\x7c\x7d\ +\x66\x5e\x7f\x68\x5f\xb0\x9d\x8b\xd9\xd2\xcb\xd3\xcb\xc5\xac\xa7\ +\xa8\x80\x70\x69\x7c\x6a\x61\x7c\x67\x5f\x80\x6d\x67\x82\x71\x67\ +\xc3\xb5\xa8\xdb\xd1\xc7\xdd\xd4\xc9\xc8\xc5\xc6\x75\x62\x5b\x99\ +\x81\x70\x82\x6f\x67\x7f\x61\x50\xb3\x9f\x8c\xd4\xc6\xb8\xc9\xc2\ +\xbe\xb7\xab\xa4\x83\x71\x68\xac\x90\x78\xae\xaa\xac\x7c\x69\x64\ +\x78\x63\x59\x79\x63\x56\x7a\x63\x54\x84\x6e\x60\x83\x6f\x66\x57\ +\x58\x54\x33\x41\x3f\x44\x4c\x46\x82\x70\x66\x80\x6e\x68\x7c\x62\ +\x53\xb5\x9a\x81\xda\xcc\xbc\xe2\xd9\xcf\xa1\x9c\xa0\xbd\xa3\x8d\ +\xda\xd0\xc6\xd4\xc6\xbc\xdb\xd1\xc6\xe0\xd4\xc9\xde\xd6\xcc\xc6\ +\xc0\xbb\x9b\x92\x87\xd5\xc6\xb6\xde\xd6\xcb\xde\xd4\xca\xd5\xcc\ +\xc5\xb9\xaf\xab\xdb\xcb\xb4\x97\xa6\xaf\x78\x82\x7e\x37\x4e\x52\ +\x2c\x3e\x40\x2c\x4f\x52\x27\x42\x42\x2c\x44\x45\x35\x4a\x4a\x32\ +\x49\x4b\x37\x51\x53\x36\x4f\x4f\x35\x58\x5a\x35\x4e\x53\x00\x00\ +\x00\x50\x52\x4f\x4d\x52\x51\x56\x65\x70\x93\xa3\xbd\x92\xa0\xb4\ +\x7c\x81\x8d\x55\x5c\x5a\x50\x62\x68\x55\x5d\x62\x51\x55\x57\x56\ +\x5d\x63\x5c\x67\x6b\x45\x4a\x3e\x3d\x3d\x38\x48\x58\x59\x58\x71\ +\x79\x56\x73\x78\x4e\x6c\x6f\x4a\x68\x69\x58\x6f\x7a\x62\x75\x7d\ +\x52\x63\x62\x4d\x5f\x5d\x4e\x5b\x57\x43\x46\x40\x53\x54\x56\x61\ +\x6b\x6f\x4e\x58\x56\x55\x5f\x5d\x52\x5f\x5e\x57\x70\x75\x5a\x70\ +\x6f\x68\x7b\x7f\x5e\x70\x6e\x54\x5f\x5d\x4e\x55\x50\x56\x5a\x53\ +\x5a\x63\x5e\x65\x63\x5f\x61\x56\x4b\x64\x5c\x55\x55\x56\x4b\x53\ +\x57\x4b\x57\x5e\x56\x53\x5a\x51\x52\x5d\x54\x55\x60\x59\x56\x5f\ +\x5b\x63\x6e\x6e\x73\x7c\x7e\x58\x63\x5d\x57\x5b\x57\x61\x63\x61\ +\x74\x75\x75\x63\x67\x65\x79\x7a\x78\x5a\x56\x4f\x76\x73\x6e\x72\ +\x74\x71\x56\x54\x4c\x7a\x75\x73\x7f\x7a\x76\x67\x5c\x54\x53\x4c\ +\x3e\x6f\x6a\x65\x6a\x64\x5b\x73\x6b\x64\x6b\x60\x56\x57\x4e\x45\ +\x51\x52\x46\x68\x6c\x66\x69\x6c\x6c\x64\x5f\x59\x6f\x63\x5b\x69\ +\x5e\x54\x69\x5e\x55\x54\x4e\x42\x4c\x46\x36\x4c\x46\x35\x4e\x46\ +\x38\x51\x44\x36\x53\x45\x38\x50\x42\x32\x4b\x3d\x2e\x4a\x38\x2c\ +\x52\x42\x38\x4f\x40\x37\x77\x6d\x68\xa1\x96\x8e\xb5\xa6\x9d\xdd\ +\xd4\xca\xb0\xab\xaa\xc4\xb6\xa7\xb7\xb3\xb5\x7c\x6b\x66\x82\x6b\ +\x60\x97\x85\x7c\x91\x7e\x72\x9c\x8a\x81\x9a\x8b\x83\x8d\x81\x7d\ +\x75\x63\x5a\x81\x6f\x65\x95\x87\x7f\x8d\x79\x6f\x9e\x89\x7b\x98\ +\x88\x7d\xa4\x93\x85\xb3\xa7\xa1\x79\x68\x62\x83\x6e\x63\x83\x6e\ +\x64\x7f\x6a\x60\x7f\x69\x5f\xa7\x89\x6f\xd3\xc7\xba\x9c\x94\x96\ +\x80\x6b\x65\x7c\x66\x59\x97\x7f\x6d\xbb\xaf\xa7\x98\x8d\x8c\x89\ +\x7a\x77\x7c\x64\x55\x88\x6f\x62\x86\x6f\x65\x61\x60\x5d\x59\x55\ +\x4c\x8c\x77\x6c\x89\x73\x67\x83\x72\x6f\x86\x72\x65\xaf\x9a\x89\ +\x9c\x87\x7b\xc6\xb2\x9d\xd2\xcb\xc6\xb9\xa6\x98\xdf\xda\xd0\xc9\ +\xbf\xb6\xce\xc1\xb6\xae\xa2\x97\xd6\xc6\xb1\xe1\xd7\xcc\xd2\xc7\ +\xbd\xd4\xca\xc0\xdf\xd6\xcb\xd7\xcc\xc2\xc9\xc0\xbc\xac\xae\xae\ +\x76\x72\x67\x6e\x7f\x80\x2f\x4b\x4a\x28\x42\x3f\x7a\x7a\x6e\x2d\ +\x4f\x5a\x28\x42\x41\x34\x4a\x4a\x2e\x4a\x4f\x37\x4f\x4d\x47\x5d\ +\x58\x4d\x5e\x64\x4d\x6a\x73\x5f\x71\x73\x00\x00\x00\x5a\x66\x6a\ +\x64\x6c\x75\x5d\x6f\x7d\x8a\x9f\xb7\x90\xa9\xbe\x63\x74\x71\x40\ +\x4b\x45\x47\x56\x55\x58\x60\x66\x57\x5e\x61\x53\x56\x57\x57\x62\ +\x68\x47\x4f\x46\x3d\x3b\x31\x43\x4e\x4a\x4b\x5c\x5c\x4c\x68\x6c\ +\x5d\x7b\x85\x52\x6a\x6c\x56\x6a\x6e\x5d\x6f\x72\x50\x66\x65\x4e\ +\x5f\x5c\x4c\x5a\x56\x45\x49\x44\x55\x56\x59\x64\x70\x72\x52\x5e\ +\x58\x53\x5f\x59\x4f\x5e\x55\x5e\x70\x70\x6f\x87\x93\x5d\x65\x60\ +\x58\x5e\x55\x4f\x58\x51\x55\x56\x52\x65\x67\x63\x61\x5f\x5c\x68\ +\x60\x5a\x5a\x50\x42\x50\x44\x34\x52\x50\x46\x59\x66\x5e\x58\x64\ +\x5e\x50\x5a\x50\x57\x61\x5b\x57\x5e\x58\x71\x7b\x80\x7b\x87\x8d\ +\x66\x71\x6e\x50\x58\x50\x4e\x54\x49\x57\x53\x49\x57\x54\x48\x70\ +\x6e\x64\x6f\x6d\x68\x5b\x5f\x5a\x68\x69\x66\x5b\x5b\x54\x5d\x57\ +\x4e\x78\x72\x6e\x75\x6f\x6c\x56\x4d\x44\x67\x63\x5d\x74\x71\x6c\ +\x68\x60\x57\x78\x71\x6d\x54\x4f\x43\x5a\x56\x4e\x6c\x69\x63\x74\ +\x73\x6f\x72\x6d\x67\x6e\x61\x58\x59\x46\x36\x6c\x5e\x54\x5b\x4f\ +\x47\x4d\x43\x34\x47\x3e\x2f\x46\x3e\x2c\x4b\x43\x37\x51\x47\x3d\ +\x60\x55\x4b\x56\x49\x3e\x5a\x4d\x3c\x6d\x63\x5c\x70\x68\x63\x5f\ +\x56\x50\xb5\xac\xa6\xa8\xa2\xa1\x84\x70\x69\xbf\xab\x9a\xb9\xb3\ +\xb1\xaa\x98\x8d\xc2\xbd\xba\x92\x88\x85\x81\x6f\x69\x82\x70\x66\ +\x84\x71\x69\x84\x71\x67\x85\x73\x6a\x88\x77\x71\x81\x6c\x60\x88\ +\x73\x68\x81\x6d\x63\x82\x6c\x61\x82\x6b\x5f\x81\x6c\x61\x7d\x6b\ +\x67\x7c\x66\x5e\x7f\x6a\x60\x81\x6a\x5d\x83\x70\x67\x89\x73\x67\ +\xa0\x93\x8e\x7c\x67\x61\x8f\x76\x63\xaf\x9e\x92\x8e\x81\x7f\x7c\ +\x67\x5d\x84\x6f\x64\x9e\x88\x78\xb4\xa1\x92\xb4\xad\xaa\x85\x6f\ +\x68\x85\x6d\x62\x7e\x6a\x61\x69\x61\x57\x7f\x6c\x5f\x8b\x73\x66\ +\x8f\x79\x6d\x82\x71\x6b\x9b\x84\x72\xb1\x9f\x94\x83\x70\x6a\x88\ +\x6e\x60\xb8\x9e\x87\xd8\xc9\xb8\xdd\xd2\xc7\xb9\xb4\xb0\x9c\x97\ +\x92\x51\x53\x53\x93\x76\x57\xd0\xbf\xab\xcb\xbc\xad\xda\xcd\xbe\ +\xdf\xd9\xd0\xc3\xb5\xa7\xcd\xc6\xbf\xab\xa7\xa6\x98\x91\x8b\x5c\ +\x71\x7e\x3c\x51\x47\x2f\x51\x56\x48\x54\x4e\x33\x46\x46\x2e\x3f\ +\x3a\x2c\x40\x3e\x6c\x76\x6b\x42\x54\x59\x42\x4e\x41\x58\x61\x5d\ +\x63\x6b\x6a\x63\x74\x7d\x00\x00\x00\x5d\x6a\x6c\x63\x6f\x7a\x66\ +\x78\x85\x5e\x6a\x73\x58\x62\x63\x49\x58\x53\x44\x54\x4e\x4d\x5d\ +\x5c\x59\x61\x68\x58\x5e\x61\x4d\x4d\x49\x51\x59\x5d\x53\x5e\x5a\ +\x41\x43\x36\x46\x4d\x4a\x4f\x5c\x5b\x48\x5e\x5e\x63\x7d\x8b\x54\ +\x62\x5e\x4a\x5b\x56\x55\x64\x67\x5c\x70\x75\x4d\x5b\x5a\x54\x6a\ +\x72\x53\x5c\x58\x54\x5a\x60\x5c\x65\x63\x53\x5c\x51\x52\x5f\x56\ +\x52\x60\x58\x59\x66\x64\x6f\x83\x8e\x51\x58\x4c\x52\x5b\x4d\x52\ +\x5c\x4f\x6d\x67\x63\x7a\x77\x74\x6c\x67\x63\x63\x58\x4f\x57\x50\ +\x47\x54\x54\x48\x5d\x65\x63\x73\x84\x88\x54\x62\x57\x5a\x65\x5e\ +\x5f\x69\x65\x5c\x61\x5c\x8e\x93\x96\x92\x98\x9d\x60\x66\x62\x4c\ +\x53\x4a\x4e\x5b\x52\x4b\x51\x42\x4b\x52\x42\x56\x56\x49\x62\x5d\ +\x57\x76\x76\x76\x85\x86\x87\x68\x68\x66\x4e\x4b\x3a\x62\x5e\x52\ +\x63\x57\x51\x53\x46\x39\x7b\x72\x6c\x7d\x79\x75\x70\x6b\x63\x75\ +\x6b\x61\x63\x5b\x54\x6a\x66\x60\x7b\x77\x73\x83\x7c\x7a\x5e\x50\ +\x46\x58\x4c\x3f\x4f\x45\x35\x56\x4e\x43\x4f\x45\x3a\x4c\x45\x35\ +\x74\x6e\x65\x95\x91\x89\xb6\xb0\xad\x99\x95\x96\x91\x8c\x88\x5a\ +\x52\x4b\x81\x75\x67\xab\xa5\x9e\x99\x96\x96\x9d\x96\x8e\xe8\xe3\ +\xdd\xd7\xd5\xd4\x95\x87\x83\x96\x82\x79\x8e\x7d\x75\x8e\x7b\x72\ +\xa7\x98\x8f\xcc\xc3\xbb\xc6\xc3\xc2\x7c\x6e\x68\x8c\x79\x6f\x94\ +\x85\x7e\x88\x75\x6d\x84\x6e\x64\x84\x71\x67\x85\x6f\x65\x83\x71\ +\x6a\x8b\x77\x6e\x84\x6f\x63\x82\x6f\x66\x83\x6e\x66\x7e\x69\x62\ +\x7d\x67\x5c\x82\x6f\x68\x83\x6f\x67\x8d\x78\x6f\xa4\x8d\x7f\x8c\ +\x81\x82\x80\x69\x60\x91\x77\x67\xae\xa4\x9d\x83\x6f\x69\x85\x71\ +\x65\x87\x71\x67\x8e\x77\x6b\x93\x7e\x73\x81\x6b\x63\x81\x69\x5d\ +\x83\x6d\x61\x81\x6a\x5c\x83\x6b\x5a\x8c\x77\x6b\x92\x7d\x75\x82\ +\x6c\x62\x95\x7f\x71\x9c\x87\x7d\x7f\x69\x60\x8e\x7d\x72\x9e\x8c\ +\x7e\xa7\x91\x81\xac\x9e\x92\x9e\x97\x90\x89\x8c\x8c\x3d\x46\x45\ +\x97\x82\x6f\xb5\xa8\x99\x87\x80\x78\xd5\xc4\xaa\xc0\xb9\xb2\xc2\ +\xb7\xa8\x8d\x94\x9b\x70\x7a\x7d\x76\x74\x73\x50\x59\x56\x8b\x85\ +\x72\x4e\x71\x83\x31\x4d\x4d\x29\x3c\x3b\x63\x60\x50\x58\x6c\x79\ +\x84\x6d\x4e\x84\x87\x8a\x41\x4d\x4b\x3e\x4a\x49\x57\x5c\x54\x51\ +\x60\x6c\x00\x00\x00\x51\x5e\x5e\x5e\x6c\x75\x5c\x63\x6a\x4b\x4f\ +\x48\x46\x4f\x47\x46\x50\x49\x4f\x60\x62\x51\x5e\x5c\x5b\x66\x70\ +\x58\x5b\x59\x43\x3e\x38\x59\x65\x6d\x52\x5e\x59\x41\x46\x3b\x48\ +\x49\x46\x55\x57\x5b\x53\x62\x64\x59\x71\x77\x4e\x59\x57\x4e\x61\ +\x64\x56\x65\x6d\x65\x7c\x82\x51\x64\x69\x63\x72\x7d\x66\x74\x7c\ +\x66\x76\x7f\x59\x64\x5e\x51\x5c\x51\x52\x60\x52\x51\x56\x4c\x6b\ +\x7d\x8a\x7c\x91\x9a\x54\x5e\x50\x4e\x5a\x4d\x65\x65\x60\x75\x66\ +\x5f\x79\x6a\x5d\x63\x5e\x52\x55\x55\x4c\x59\x57\x52\x56\x5e\x54\ +\x84\x8d\x98\x66\x72\x71\x4f\x5a\x4e\x5a\x5e\x5a\x5e\x61\x5e\x72\ +\x77\x79\x8d\x8c\x8b\x73\x73\x73\x6e\x6d\x6b\x75\x74\x70\x74\x72\ +\x6f\x57\x58\x50\x50\x53\x46\x4b\x4e\x40\x63\x64\x60\x8a\x8c\x8f\ +\xa1\xa6\xa9\x92\x94\x94\x51\x4c\x3e\x4f\x4a\x3d\x54\x49\x3b\x5a\ +\x4e\x44\x7d\x76\x6f\x7a\x72\x6e\x76\x70\x6c\x62\x5a\x53\x64\x5e\ +\x54\x61\x5b\x56\x69\x61\x5b\x5c\x4f\x43\x54\x4a\x40\x4e\x45\x36\ +\x4c\x43\x32\x49\x44\x33\x54\x4d\x45\x7b\x77\x71\xc0\xba\xb5\xa0\ +\x98\x98\xb1\xa8\xa2\xc9\xc6\xc3\xa5\xa2\xa0\x76\x6f\x6b\xab\xa4\ +\x9a\xc7\xc2\xbc\xad\xa7\xa6\xc6\xbe\xb7\xe1\xda\xd2\xce\xcd\xcd\ +\x8b\x7e\x7a\x7f\x6a\x60\x7a\x64\x56\x8f\x7c\x72\xae\x9e\x93\xde\ +\xd1\xc4\xcb\xc7\xc2\xa8\xa2\xa3\x80\x6b\x5f\x95\x85\x7e\x89\x77\ +\x70\x82\x6e\x64\x8f\x79\x6d\x8f\x7f\x79\x87\x77\x6f\x8f\x7a\x73\ +\x8b\x77\x6e\x8d\x7a\x70\x84\x71\x68\x82\x71\x68\xa1\x95\x8b\xbd\ +\xad\xa2\xae\xa7\xa9\x8d\x78\x72\x87\x73\x68\x86\x71\x67\x83\x6e\ +\x66\x84\x70\x65\xc0\xa3\x8a\xa8\xa4\xa9\x85\x73\x6b\x85\x71\x6a\ +\x80\x69\x5e\x7d\x61\x50\x8c\x77\x6c\x83\x6d\x63\x82\x6a\x5c\x85\ +\x6c\x62\x86\x6a\x59\x84\x6e\x67\x83\x6d\x5d\x87\x70\x64\x89\x71\ +\x69\x8a\x71\x64\x8e\x78\x6e\x88\x72\x66\x6b\x63\x5d\x6c\x5f\x52\ +\xc2\xab\x93\xc7\xc1\xbc\x7b\x7e\x80\x64\x5b\x46\xc0\xb3\xa4\xbc\ +\xae\xa4\x86\x87\x8b\x87\x7f\x70\x67\x6b\x67\x77\x6c\x58\xa2\x9d\ +\x97\x67\x79\x89\x6a\x6b\x6c\x60\x6a\x72\x4f\x53\x4e\x34\x45\x42\ +\x3d\x49\x3f\x71\x6f\x67\x61\x62\x60\x44\x51\x4f\x31\x3b\x3a\x30\ +\x3e\x3e\x30\x49\x4b\x2f\x3e\x38\x51\x5e\x5d\x5d\x66\x6c\x00\x00\ +\x00\x4f\x5e\x5c\x5d\x6f\x7c\x55\x5a\x58\x4c\x4f\x4b\x47\x53\x4b\ +\x48\x4c\x47\x4d\x57\x58\x56\x5d\x63\x57\x5c\x64\x55\x59\x58\x49\ +\x45\x42\x64\x71\x7e\x5c\x6a\x6a\x46\x4f\x49\x49\x4e\x4e\x57\x61\ +\x69\x5c\x6a\x72\x4d\x60\x5c\x50\x5d\x5d\x5d\x6a\x77\x63\x76\x87\ +\x73\x81\x8a\x69\x7b\x83\x6e\x7a\x85\x6d\x78\x84\x68\x77\x79\x5d\ +\x6b\x65\x58\x65\x5d\x51\x5b\x4e\x51\x54\x4b\x75\x8c\x9c\x82\x81\ +\x7f\x7a\x76\x72\x7a\x77\x73\x78\x70\x69\x67\x5c\x55\x63\x59\x4d\ +\x56\x51\x45\x57\x57\x4e\x57\x5e\x53\x59\x5d\x59\x8d\x93\x99\x54\ +\x5c\x53\x50\x57\x4d\x4f\x54\x4b\x6e\x70\x6e\x96\x93\x93\x90\x8d\ +\x8d\x7e\x78\x77\x77\x71\x6a\x6c\x63\x5c\x8a\x86\x82\x7f\x77\x72\ +\x71\x6a\x63\x64\x64\x5c\x81\x80\x7d\x80\x7a\x76\x6c\x67\x61\x6c\ +\x68\x61\x4d\x48\x38\x50\x4d\x3b\x54\x4b\x3c\x59\x50\x45\x7f\x7b\ +\x78\x77\x6c\x67\x61\x57\x4d\x72\x6b\x64\x61\x5d\x52\x65\x5b\x51\ +\x52\x4b\x41\x56\x50\x45\x51\x4b\x3b\x4d\x47\x35\x4e\x49\x3c\x83\ +\x7e\x78\xd3\xcc\xc9\xee\xec\xeb\xd7\xd4\xd4\x90\x8e\x8f\xad\xa3\ +\x9d\xe3\xdf\xd9\xcd\xc9\xc4\xae\xa8\xa5\xc0\xb8\xb0\xdd\xd7\xd1\ +\xdb\xd6\xd2\xdd\xd8\xd3\xdc\xd6\xd1\xd5\xd1\xcd\x9c\x92\x90\x86\ +\x72\x6d\x78\x61\x54\x83\x6f\x65\x79\x61\x53\x88\x6f\x5e\xba\xa8\ +\x9a\xd9\xd1\xcd\xaa\xa3\xa3\x98\x89\x84\x89\x78\x71\x85\x70\x66\ +\x89\x73\x6a\x89\x74\x6c\x85\x71\x6a\x8b\x73\x6b\x87\x71\x69\x87\ +\x71\x62\x87\x72\x68\xa2\x84\x71\xe5\xd9\xce\xb1\xa6\xa2\xbd\xab\ +\x99\xb3\xac\xad\x89\x77\x70\x7d\x67\x5c\x83\x6d\x62\x88\x72\x6a\ +\x8e\x72\x5f\xd3\xc2\xb3\x8a\x85\x89\x7c\x66\x5e\x73\x57\x45\x7d\ +\x5e\x49\x86\x72\x6d\x8b\x72\x61\x9e\x8a\x7c\x83\x6d\x64\x86\x6b\ +\x57\x83\x6c\x63\x8c\x73\x63\x84\x6b\x63\x85\x6c\x60\x82\x6c\x5f\ +\x93\x79\x6b\xab\xa2\x9c\x5a\x58\x57\x66\x6b\x67\x8a\x79\x69\x99\ +\x8e\x82\x7c\x7a\x75\x3f\x49\x4d\xa0\x90\x76\xa1\x9f\x9b\x84\x80\ +\x78\x8a\x8d\x8e\x35\x49\x4d\x62\x5c\x4d\x9f\x8b\x75\x65\x77\x81\ +\x6e\x74\x6b\x6c\x79\x7c\x48\x50\x4f\x26\x39\x3b\x5c\x5f\x54\x5d\ +\x65\x65\x38\x44\x47\x2a\x39\x3a\x4b\x53\x50\x42\x50\x45\x5b\x65\ +\x61\x4a\x55\x56\x60\x68\x66\x5b\x67\x69\x00\x00\x00\x4e\x54\x4d\ +\x59\x69\x76\x4e\x4b\x42\x4d\x50\x4e\x49\x52\x4a\x47\x4c\x46\x49\ +\x48\x42\x53\x5a\x5e\x5f\x67\x6a\x4f\x54\x4f\x49\x4a\x49\x61\x6f\ +\x7c\x6a\x7a\x86\x4d\x55\x4f\x57\x63\x6c\x5c\x6b\x73\x64\x75\x82\ +\x52\x62\x63\x5d\x69\x70\x6d\x7f\x91\x74\x83\x92\x6d\x74\x78\x65\ +\x6f\x72\x70\x7d\x89\x64\x6f\x6f\x5f\x69\x64\x61\x67\x63\x55\x5a\ +\x51\x4e\x55\x48\x66\x7c\x89\x89\x9f\xaf\x7e\x74\x6f\x78\x6b\x64\ +\x78\x6d\x66\x66\x5f\x54\x59\x54\x4b\x56\x5d\x53\x58\x54\x4b\x56\ +\x50\x46\x51\x55\x49\x65\x6d\x71\x65\x69\x66\x59\x60\x54\x52\x56\ +\x4e\x58\x59\x52\x81\x7b\x77\x83\x7b\x79\x7f\x78\x75\x80\x7d\x7a\ +\x6c\x64\x5e\x68\x61\x5c\x74\x6a\x63\x6b\x5d\x56\x77\x6f\x68\x77\ +\x71\x6e\x85\x7e\x79\x85\x7d\x77\x60\x58\x4e\x54\x4d\x42\x57\x52\ +\x47\x52\x4e\x3f\x5e\x55\x4c\x66\x61\x56\x8f\x8b\x86\x7a\x7a\x76\ +\x6b\x69\x63\x5e\x58\x4e\x55\x4e\x3f\x4c\x46\x34\x5c\x57\x4e\x60\ +\x57\x50\x55\x4c\x3e\x4e\x44\x36\x72\x66\x59\x98\x92\x8d\xc9\xc7\ +\xc3\xeb\xe9\xe9\xdd\xdd\xde\x9c\x99\x9b\xd0\xca\xc6\xeb\xea\xe8\ +\xe1\xde\xdc\xd8\xd4\xd0\xde\xd9\xd5\xd7\xd0\xc8\xbb\xb2\xac\xb1\ +\xa3\x99\xb2\xa5\x9f\x97\x8b\x88\x8d\x7f\x77\x95\x86\x7c\x91\x81\ +\x7c\x87\x72\x6a\x72\x58\x49\x79\x5d\x4c\x7d\x67\x5c\x9e\x85\x71\ +\xc8\xba\xaf\xc2\xba\xb6\x8a\x7a\x78\x82\x68\x5a\x87\x71\x65\x87\ +\x6d\x62\x87\x71\x68\x87\x71\x67\x88\x70\x65\x8a\x70\x64\x88\x6e\ +\x61\xa6\x8a\x76\xbe\xaf\xa9\x86\x72\x6c\x88\x6c\x5e\x9d\x8b\x7e\ +\x92\x7e\x73\x8b\x74\x6b\x83\x6c\x62\x83\x68\x59\x80\x6d\x67\x97\ +\x74\x58\x9c\x91\x8f\x7b\x63\x59\x75\x59\x49\x7e\x63\x51\x84\x6c\ +\x5e\x87\x6c\x5e\xb9\xa2\x93\x82\x70\x6a\x8a\x73\x66\x85\x71\x67\ +\x91\x7c\x72\x81\x6a\x5c\x81\x69\x5a\x84\x68\x55\x8a\x74\x69\x7e\ +\x67\x59\x8f\x7c\x6d\xa6\x9f\x96\x68\x69\x6a\x95\x8e\x85\xae\x9c\ +\x85\x6d\x77\x82\x4f\x5c\x5a\x50\x54\x4a\x75\x6a\x56\x79\x83\x90\ +\x44\x50\x4a\x44\x4d\x4e\x35\x41\x3e\x2a\x45\x46\x5d\x5b\x4b\x80\ +\x7d\x77\x5a\x5d\x5d\x44\x5b\x61\x47\x52\x4d\x60\x66\x62\x68\x61\ +\x57\x83\x7b\x73\x89\x85\x7f\x72\x74\x6e\x5c\x63\x5e\x48\x5b\x58\ +\x53\x60\x67\x56\x5c\x5a\x00\x00\x00\x50\x59\x50\x50\x56\x57\x4a\ +\x48\x3f\x4e\x50\x4c\x4c\x51\x49\x4b\x50\x4b\x42\x3d\x31\x4c\x50\ +\x50\x63\x6c\x70\x4f\x58\x53\x4f\x58\x5a\x6e\x81\x92\x6b\x79\x84\ +\x50\x59\x56\x5a\x66\x6f\x66\x77\x83\x6a\x7c\x8c\x5e\x6c\x71\x65\ +\x6d\x74\x73\x80\x8c\x74\x80\x88\x68\x6b\x68\x53\x58\x52\x5e\x69\ +\x69\x53\x65\x5d\x5f\x6a\x68\x54\x67\x61\x54\x5d\x55\x50\x55\x4a\ +\x64\x6a\x6f\x7f\x8d\x98\x83\x7a\x77\x67\x5a\x4f\x5d\x52\x44\x5c\ +\x56\x49\x5d\x55\x4d\x55\x4e\x3e\x55\x4a\x3c\x53\x4d\x40\x5f\x64\ +\x63\x66\x68\x67\x71\x73\x72\x6f\x72\x6d\x5f\x5d\x56\x74\x6a\x64\ +\x7c\x71\x6d\x80\x79\x76\x7a\x72\x70\x79\x75\x70\x61\x59\x50\x67\ +\x60\x5b\x5e\x5a\x52\x6d\x67\x63\x71\x6c\x66\x7b\x75\x71\x88\x81\ +\x7c\x76\x6e\x68\x70\x65\x5d\x57\x4f\x44\x5f\x59\x50\x51\x4d\x3e\ +\x67\x5b\x52\x82\x78\x71\x89\x83\x7e\x93\x93\x93\x81\x7f\x7c\x54\ +\x51\x45\x4d\x47\x37\x4f\x46\x37\x57\x49\x3d\x5e\x4f\x43\x7a\x6d\ +\x67\x5c\x4f\x47\x5f\x51\x43\xd4\xd1\xcd\xda\xdb\xdd\xf4\xf3\xf3\ +\xec\xed\xef\xc4\xc4\xc5\xe9\xe8\xe8\xf0\xef\xef\xe6\xe3\xe3\xec\ +\xeb\xe9\xe5\xe3\xe2\xa4\x9a\x96\x82\x6a\x5f\x86\x72\x67\x82\x6b\ +\x5d\x86\x6f\x63\x86\x70\x66\xa5\x99\x8f\xa7\x9a\x95\x89\x78\x71\ +\x77\x59\x48\x72\x52\x3e\x75\x59\x49\x75\x58\x4a\x7f\x65\x52\x87\ +\x72\x67\x86\x6e\x5e\x84\x6d\x63\x82\x69\x5e\x82\x69\x5c\x7f\x67\ +\x57\x89\x72\x66\x84\x69\x5a\x86\x6d\x5c\x84\x6c\x60\x96\x7a\x6a\ +\x9b\x89\x7f\x85\x6f\x64\x82\x67\x5c\x75\x5b\x4e\x8e\x76\x68\x86\ +\x6d\x61\x88\x71\x66\x83\x69\x5d\x82\x6d\x61\x78\x5b\x4e\xa3\x8e\ +\x80\x80\x69\x62\x7c\x61\x54\x83\x6a\x5b\x83\x6a\x5d\x93\x73\x5b\ +\xc4\xb5\xac\x8b\x7c\x78\x8b\x76\x6c\x8b\x75\x6d\x7b\x64\x5c\x89\ +\x72\x64\x7e\x65\x58\x86\x6a\x57\x88\x76\x6f\x56\x4f\x47\x6f\x69\ +\x62\x77\x77\x70\x83\x7a\x67\x94\x94\x94\xa0\x8f\x7b\x57\x63\x69\ +\x43\x50\x4e\x48\x58\x59\x6d\x64\x53\x7f\x84\x85\x2b\x38\x3a\x47\ +\x51\x4d\x32\x42\x42\x3c\x4c\x48\x40\x56\x57\x4c\x58\x54\x95\x8c\ +\x7b\x80\x90\x9e\x31\x47\x48\x65\x62\x53\x8f\x7f\x72\x8c\x7b\x6f\ +\x8c\x83\x7e\x7a\x77\x79\x5a\x6c\x70\x4d\x64\x65\x43\x56\x5a\x50\ +\x5f\x65\x00\x00\x00\x53\x60\x5a\x48\x4a\x40\x46\x45\x3e\x51\x56\ +\x51\x4c\x52\x4c\x49\x4f\x48\x41\x3e\x32\x41\x3e\x39\x58\x64\x66\ +\x59\x67\x6b\x58\x68\x6d\x6f\x83\x90\x6f\x7f\x88\x50\x5c\x58\x51\ +\x5b\x61\x6b\x7c\x8a\x6f\x82\x92\x6b\x6a\x6a\x59\x56\x4f\x58\x5a\ +\x58\x58\x61\x5e\x52\x5f\x58\x56\x62\x5c\x5b\x68\x65\x6f\x7b\x78\ +\x6c\x76\x78\x5a\x5c\x54\x52\x4e\x44\x53\x55\x4c\x51\x58\x4f\x6c\ +\x72\x74\x71\x71\x6c\x59\x58\x4e\x55\x52\x48\x5c\x5f\x54\x5c\x55\ +\x47\x54\x4c\x3f\x53\x4e\x3d\x57\x58\x4d\x75\x7a\x7b\x79\x71\x69\ +\x6e\x67\x62\x71\x6f\x6c\x80\x7b\x78\x84\x7b\x76\x7e\x73\x6d\x77\ +\x6d\x63\x79\x70\x68\x77\x6f\x6b\x6f\x67\x61\x60\x59\x52\x76\x70\ +\x6a\x68\x62\x5f\x76\x71\x6c\x7a\x6d\x65\x84\x7a\x74\x7f\x77\x70\ +\x74\x69\x60\x5c\x50\x43\x6d\x66\x5d\x58\x52\x47\x55\x49\x3d\x85\ +\x7b\x74\x7f\x78\x72\x69\x61\x58\x5c\x55\x48\x4c\x46\x37\x64\x5e\ +\x52\x6b\x61\x54\x52\x41\x30\x66\x55\x47\x7a\x6c\x68\x5e\x51\x49\ +\x8d\x84\x7a\xf6\xf6\xf8\xe3\xe2\xe3\xf4\xf4\xf4\xeb\xeb\xec\xed\ +\xec\xed\xf3\xf1\xf1\xce\xcf\xd0\x94\x88\x83\xc3\xba\xb3\xee\xed\ +\xeb\x94\x8a\x8a\x87\x6f\x65\x8b\x79\x6f\x7a\x64\x57\x7f\x65\x55\ +\x83\x6b\x5f\x7c\x63\x56\x8a\x74\x67\x86\x74\x6a\x73\x55\x45\x70\ +\x4e\x38\x77\x5b\x49\x79\x5c\x4e\x80\x61\x4a\x7c\x62\x56\x7b\x5d\ +\x4b\x9b\x88\x7d\x97\x89\x86\x85\x6d\x63\x85\x6b\x5b\x85\x6e\x63\ +\x85\x6a\x5c\x8c\x75\x68\x7d\x63\x55\x85\x69\x59\x89\x70\x63\x7f\ +\x64\x53\x7a\x5c\x4a\x73\x56\x46\x87\x6e\x5e\x87\x70\x65\x82\x69\ +\x5b\x83\x68\x58\x84\x6c\x60\x7a\x5f\x4f\xad\x94\x84\x80\x6c\x68\ +\x80\x67\x5d\x87\x70\x63\x8a\x76\x69\xae\x8d\x73\xbd\xb2\xad\x85\ +\x72\x6c\x97\x82\x75\x90\x7c\x74\x89\x74\x69\x93\x81\x77\x8d\x7b\ +\x76\x8c\x72\x66\x9d\x88\x7f\x77\x72\x72\x4b\x4e\x45\x50\x62\x65\ +\x4e\x4c\x3c\x8a\x88\x85\x6b\x63\x5a\x4c\x58\x5f\x55\x51\x44\x6f\ +\x7b\x7d\x3c\x4c\x4b\x34\x44\x41\x50\x58\x50\x4c\x58\x53\x62\x68\ +\x62\x99\x91\x81\x70\x82\x8d\x75\x70\x5b\x8d\x87\x86\x9a\x92\x8d\ +\x5d\x5e\x5e\x65\x5c\x51\x69\x62\x5b\x81\x6c\x57\x83\x7d\x77\x6b\ +\x68\x6a\x6b\x6f\x6f\x53\x5d\x5c\x3c\x52\x5e\x51\x5a\x57\x00\x00\ +\x00\x55\x64\x61\x4b\x4e\x45\x45\x47\x3e\x51\x5e\x5a\x4d\x50\x4a\ +\x49\x50\x48\x4f\x54\x4f\x4a\x4d\x4c\x55\x66\x69\x64\x77\x87\x68\ +\x78\x85\x6c\x7b\x85\x68\x73\x7a\x55\x60\x5e\x60\x6d\x77\x70\x80\ +\x8d\x69\x7e\x88\x5e\x68\x69\x54\x5a\x52\x52\x62\x5a\x59\x68\x65\ +\x5c\x6a\x65\x6c\x72\x70\x86\x8a\x8f\x89\x8d\x92\x6e\x6a\x65\x76\ +\x70\x6a\x62\x5f\x53\x50\x55\x48\x69\x7b\x82\x5d\x62\x5c\x55\x5f\ +\x55\x57\x63\x5b\x61\x65\x5d\x5d\x60\x56\x5f\x5c\x51\x5a\x50\x45\ +\x54\x4c\x43\x64\x69\x68\x7c\x7b\x77\x76\x68\x60\x79\x6f\x68\x7e\ +\x7a\x77\x92\x8c\x8a\x83\x7b\x78\x78\x6b\x63\x6b\x5e\x55\x78\x6d\ +\x65\x80\x79\x75\x80\x7a\x75\x76\x71\x6a\x5c\x57\x4d\x75\x70\x6e\ +\x73\x67\x5f\x6c\x5c\x53\x80\x73\x69\x7b\x6d\x64\x6a\x60\x57\x75\ +\x6a\x62\x82\x7b\x74\x5c\x52\x44\x56\x4d\x41\x71\x68\x5d\x64\x59\ +\x4d\x60\x57\x4f\x4c\x43\x33\x79\x75\x67\x97\x8d\x86\x6a\x61\x5a\ +\x54\x44\x34\x68\x57\x47\x7f\x70\x68\x6f\x64\x5e\xc9\xc6\xc1\xf1\ +\xef\xf0\xee\xec\xec\xec\xe9\xe7\xef\xec\xea\xef\xee\xec\xea\xe9\ +\xe7\xb1\xac\xa9\x80\x71\x6a\xb4\xa9\xa0\xcf\xcc\xc9\x95\x85\x82\ +\x8a\x76\x6f\x89\x79\x6f\x81\x6b\x61\x84\x6a\x5c\x88\x76\x6e\x80\ +\x68\x5c\x8f\x80\x76\x93\x84\x7e\x7b\x61\x56\x71\x4f\x3b\x7d\x5f\ +\x4e\x7f\x63\x56\x80\x60\x4a\x80\x65\x59\x80\x62\x52\x8e\x78\x6d\ +\x93\x7a\x71\x91\x7d\x74\x80\x67\x5c\x84\x6d\x60\x8a\x70\x61\x88\ +\x70\x64\x7f\x66\x5b\x82\x67\x56\x83\x68\x59\x7c\x5f\x4e\x77\x5a\ +\x48\x70\x51\x41\x7e\x5d\x4b\x87\x6f\x65\x7e\x64\x54\x81\x68\x58\ +\x7e\x66\x5a\x78\x5d\x4e\xa7\x8b\x73\x8b\x79\x75\x99\x88\x7f\x85\ +\x71\x68\x86\x71\x64\xb0\x97\x82\x89\x76\x70\x74\x58\x4a\x88\x71\ +\x62\x95\x7e\x6d\xd6\xc1\xaf\xce\xc2\xbc\x79\x7e\x86\x66\x61\x58\ +\x5f\x5c\x54\x7a\x6b\x5f\x40\x48\x4a\x43\x50\x4d\x40\x4b\x49\x5b\ +\x5b\x54\x5e\x5c\x54\x35\x42\x46\x48\x45\x3d\x66\x67\x63\x4f\x64\ +\x67\x2a\x46\x44\x6a\x6b\x5a\x5d\x64\x62\x96\x8f\x79\xa2\x92\x86\ +\x7c\x86\x92\x58\x50\x3f\x5b\x5c\x5b\x8a\x76\x69\x57\x58\x5b\x33\ +\x3a\x35\x3a\x3f\x3b\x4c\x4f\x47\x57\x63\x66\x64\x69\x65\x57\x5f\ +\x61\x3a\x4a\x4b\x54\x61\x61\x4d\x56\x57\x00\x00\x00\x52\x68\x62\ +\x4d\x52\x48\x63\x73\x7e\x6b\x6d\x66\x4a\x4d\x4a\x45\x49\x40\x56\ +\x60\x65\x54\x60\x63\x66\x78\x82\x67\x76\x7d\x62\x73\x77\x5f\x73\ +\x7c\x71\x81\x87\x51\x62\x60\x67\x76\x7c\x6d\x7d\x89\x79\x89\x93\ +\x63\x6f\x6f\x53\x62\x5b\x56\x5a\x54\x5c\x69\x6b\x5b\x65\x61\x72\ +\x6c\x65\x84\x84\x86\x84\x8b\x8c\x6d\x6c\x69\x5f\x58\x4f\x56\x52\ +\x4a\x63\x67\x65\x5f\x66\x68\x55\x5a\x4d\x58\x5d\x53\x61\x66\x5b\ +\x5d\x60\x56\x56\x56\x4c\x56\x4c\x3a\x57\x4d\x40\x56\x51\x4a\x66\ +\x67\x65\x7a\x78\x74\x7c\x70\x68\x70\x64\x5d\x74\x69\x64\x95\x90\ +\x90\x8f\x8b\x8a\x79\x72\x6c\x68\x63\x60\x7d\x75\x6d\x80\x75\x6e\ +\x8a\x85\x81\x70\x68\x5d\x69\x5f\x56\x72\x68\x63\x77\x6f\x66\x6c\ +\x62\x59\x80\x76\x6d\x70\x67\x5f\x6b\x62\x5d\x86\x7b\x77\x75\x6e\ +\x62\x52\x4a\x39\x55\x4e\x3f\x54\x4f\x40\x5a\x50\x43\x5b\x51\x44\ +\x66\x5f\x4f\x81\x78\x6b\x76\x6b\x64\x72\x63\x61\x59\x4a\x3d\x77\ +\x62\x58\x79\x64\x58\x8b\x7b\x6c\xe3\xe0\xda\xee\xec\xec\xd2\xcd\ +\xc9\xe1\xdd\xd6\xe7\xe3\xde\xe9\xe5\xdf\xcf\xcf\xcf\x7b\x68\x5e\ +\x85\x73\x6d\xa8\x96\x89\xdc\xd9\xd4\x90\x7f\x7c\xa7\x9d\x98\x89\ +\x72\x69\x84\x6f\x66\x89\x71\x63\x8a\x75\x6a\xa9\x9b\x96\xb5\xac\ +\xa7\x92\x86\x83\x8b\x78\x71\x91\x82\x79\x85\x6d\x62\x87\x70\x64\ +\x81\x65\x53\x84\x69\x5e\x81\x66\x57\x87\x6d\x5f\x91\x75\x64\x8a\ +\x75\x6b\x84\x6d\x63\x80\x67\x5a\x82\x69\x58\x84\x6d\x63\x81\x69\ +\x5c\x79\x5d\x4c\x84\x69\x57\x7f\x67\x5b\x75\x56\x48\x79\x5a\x47\ +\x84\x6a\x5b\x87\x6f\x67\x7e\x66\x58\x7e\x64\x54\x80\x62\x4f\x78\ +\x5e\x51\xaf\x92\x78\x85\x77\x76\x8b\x75\x68\x97\x86\x7d\xb1\xa2\ +\x96\x7e\x6e\x6a\x79\x5f\x50\x6d\x4b\x38\x7a\x5d\x4b\x9a\x79\x61\ +\xe2\xd1\xc3\xb1\xaa\xa9\x8e\x8f\x8c\x82\x80\x79\x5c\x66\x6c\x4f\ +\x4c\x3d\x34\x43\x4b\x27\x34\x30\x5d\x59\x55\x3e\x45\x43\x45\x48\ +\x43\x50\x5a\x57\x51\x53\x47\x58\x66\x61\x4e\x55\x50\x1e\x2d\x31\ +\x65\x56\x3a\x51\x65\x73\x44\x49\x3f\x72\x66\x55\x7a\x7b\x81\x33\ +\x3b\x3a\x3c\x47\x41\x2c\x2b\x2a\x48\x44\x3d\x5f\x57\x4d\x6c\x5f\ +\x53\x75\x77\x72\x73\x72\x71\x99\x80\x6f\x8b\x7f\x78\x6b\x6f\x72\ +\x44\x4e\x55\x56\x55\x4d\x00\x00\x00\x60\x71\x6d\x4b\x50\x4a\x62\ +\x74\x82\x5f\x6d\x67\x4d\x5d\x58\x4e\x5d\x5a\x5f\x70\x7a\x68\x77\ +\x7b\x75\x7e\x87\x79\x84\x8f\x6c\x7a\x84\x7b\x86\x88\x68\x6b\x69\ +\x66\x70\x74\x60\x73\x7a\x7a\x88\x95\x81\x89\x90\x63\x65\x62\x56\ +\x58\x4c\x55\x57\x54\x5c\x65\x64\x5d\x69\x68\x86\x8c\x93\x87\x88\ +\x89\x84\x82\x83\x64\x62\x5c\x56\x59\x50\x59\x5c\x56\x5a\x61\x61\ +\x6c\x78\x7c\x54\x57\x45\x59\x5d\x50\x5c\x5c\x53\x5f\x59\x4f\x56\ +\x51\x47\x54\x50\x43\x57\x57\x4d\x5a\x5b\x57\x61\x62\x5c\x86\x85\ +\x85\x7d\x76\x71\x72\x6b\x64\x70\x62\x5d\x7a\x73\x6f\x7b\x73\x6f\ +\x7c\x74\x6f\x7d\x77\x73\x7a\x6f\x69\x77\x6d\x66\x76\x6b\x62\x6e\ +\x63\x5a\x6c\x62\x5c\x72\x63\x5b\x7e\x6e\x65\x7e\x70\x6a\x77\x6c\ +\x61\x6b\x5f\x54\x74\x6a\x63\x74\x69\x63\x5b\x4f\x43\x5e\x54\x48\ +\x59\x52\x43\x52\x45\x35\x53\x45\x36\x54\x4d\x3c\x69\x5d\x4f\x7c\ +\x6d\x5f\x7a\x6e\x6d\x70\x5d\x59\x6b\x5b\x51\x7c\x6b\x60\x6e\x5e\ +\x54\x95\x87\x7a\xe7\xe2\xdd\xcf\xcf\xce\x83\x72\x6c\x7b\x63\x56\ +\x9d\x88\x79\xd9\xd1\xc9\xdd\xda\xd6\x7e\x6d\x65\x84\x6f\x63\xc2\ +\xb5\xa9\xe5\xdf\xd8\xa7\x9f\x9f\x97\x86\x7c\x93\x83\x7c\x85\x70\ +\x68\x88\x73\x69\x9c\x87\x7d\xc9\xc0\xbb\xae\x9f\x96\xa6\x9c\x9a\ +\xad\xa0\x98\xb7\xac\xa6\xbc\xb2\xaf\x8d\x7b\x75\x96\x80\x75\x8e\ +\x78\x70\x8d\x75\x69\x88\x70\x62\x86\x6c\x60\x82\x67\x58\x88\x72\ +\x67\x87\x72\x6a\x7f\x64\x53\x84\x6b\x61\x7b\x62\x58\x86\x6c\x5c\ +\x7d\x63\x51\x7c\x63\x56\x76\x5a\x49\x7b\x5f\x4f\x80\x68\x5a\x79\ +\x5f\x53\x81\x6b\x61\x80\x6a\x5f\x78\x5e\x51\x76\x5c\x4c\xa0\x80\ +\x67\xa7\x9b\x95\xc6\xb6\xa8\xae\xa4\xa3\x8f\x81\x7a\x7a\x62\x55\ +\x7e\x66\x57\x74\x5a\x4c\x78\x5f\x4f\xb9\x9f\x87\xd2\xc9\xc5\x81\ +\x79\x78\x8e\x88\x80\x85\x7b\x74\x66\x61\x60\x80\x70\x5a\x40\x52\ +\x61\x36\x3f\x3b\x2e\x3a\x38\x44\x4c\x43\x89\x77\x65\x99\x82\x75\ +\x5d\x66\x67\x53\x5c\x4f\x4b\x4f\x48\x2e\x39\x3e\x45\x42\x3d\x48\ +\x4a\x45\x56\x56\x4c\x45\x4b\x48\x2b\x35\x2f\x42\x4f\x48\x3d\x45\ +\x3c\x72\x65\x5a\x92\x7c\x6e\x83\x6e\x63\x86\x71\x62\x7c\x7e\x83\ +\x54\x55\x55\x79\x74\x6d\x7e\x79\x76\x6d\x6f\x6d\x61\x69\x6a\x62\ +\x5e\x57\x00\x00\x00\x67\x7b\x7b\x53\x60\x5f\x83\x9e\xaf\x77\x85\ +\x7e\x50\x68\x62\x52\x63\x5d\x56\x62\x67\x71\x80\x85\x6e\x7b\x84\ +\x70\x7c\x82\x71\x7d\x86\x71\x72\x71\x63\x62\x5e\x74\x76\x77\x79\ +\x84\x8d\x87\x8f\x96\x72\x72\x6a\x52\x4f\x43\x58\x5d\x59\x5f\x69\ +\x6c\x58\x64\x5f\x5e\x68\x66\x6e\x77\x7b\x80\x81\x7f\x72\x6d\x69\ +\x6a\x67\x64\x69\x6a\x67\x62\x69\x6a\x7a\x8f\x99\x62\x6b\x6a\x57\ +\x59\x4c\x60\x64\x5c\x56\x5d\x4e\x53\x54\x46\x62\x5c\x4f\x60\x5d\ +\x57\x77\x82\x8b\x6f\x71\x74\x7d\x7d\x7c\x82\x80\x7e\x76\x73\x6e\ +\x76\x6f\x68\x69\x5e\x57\x77\x6c\x65\x70\x66\x5e\x74\x6c\x65\x7c\ +\x70\x67\x70\x61\x58\x71\x65\x5b\x70\x60\x55\x68\x5c\x51\x65\x59\ +\x4d\x57\x46\x3a\x6d\x61\x55\x6f\x63\x56\x5e\x54\x46\x58\x4d\x3b\ +\x5c\x52\x44\x5c\x50\x3e\x53\x46\x34\x53\x44\x33\x51\x45\x35\x50\ +\x46\x31\x53\x49\x36\x6b\x60\x53\x7f\x6e\x67\x80\x6e\x60\x80\x73\ +\x6d\x83\x71\x67\x7b\x69\x5d\x80\x6e\x62\x7a\x67\x60\x95\x83\x73\ +\xd9\xcf\xc4\xd8\xd3\xcd\x9a\x91\x8f\x7c\x65\x5c\x7b\x63\x57\xb9\ +\xa8\x99\xda\xd3\xcd\x96\x8b\x86\x7e\x67\x5b\x90\x7c\x71\xa7\x97\ +\x8c\x89\x79\x73\x7b\x64\x57\x8f\x78\x6a\x90\x7d\x74\x8e\x7b\x74\ +\x91\x7c\x72\x83\x6e\x64\x90\x79\x6f\xac\x9d\x92\xa4\x98\x91\xbd\ +\xb4\xac\x98\x89\x82\x91\x7e\x74\x8e\x75\x67\x94\x7f\x72\x94\x80\ +\x79\x93\x7a\x71\x8f\x78\x70\x89\x72\x68\x94\x7b\x6f\xb8\xa9\x9e\ +\x90\x81\x7a\x81\x6a\x62\x7c\x65\x57\x6f\x54\x46\x85\x6f\x5f\x8d\ +\x79\x6e\x84\x71\x66\x83\x6e\x62\x8e\x79\x6e\x90\x7e\x74\x98\x8a\ +\x81\x88\x7a\x74\x76\x5e\x53\x75\x5c\x4f\x94\x79\x65\xc4\xae\x9c\ +\xd7\xca\xbd\xa9\xa3\xa4\x7d\x6c\x68\x7d\x65\x58\x7d\x66\x5c\x86\ +\x71\x63\xbe\xa9\x92\xc8\xc2\xbd\x94\x90\x8b\x47\x54\x59\x38\x46\ +\x43\x46\x47\x42\x3f\x44\x3f\x34\x3c\x35\x44\x4c\x4a\x44\x52\x4c\ +\x64\x64\x5d\x42\x49\x43\x67\x5a\x4b\x72\x69\x60\x58\x55\x4f\x2e\ +\x3f\x41\x28\x30\x27\x3c\x3e\x3c\x4a\x49\x40\x72\x6f\x68\x52\x54\ +\x4f\x65\x65\x5f\x79\x6b\x59\xb6\xa8\x98\xa9\x9e\x98\x8a\x7f\x7f\ +\x76\x67\x5e\x66\x5c\x53\x66\x68\x66\x70\x6f\x6e\x64\x6a\x6b\x91\ +\x75\x5e\x8d\x81\x75\x6c\x6e\x66\x40\x4e\x5e\x55\x56\x4f\x00\x00\ +\x00\x85\x9f\xae\x73\x80\x7f\x6a\x79\x81\x85\x93\x96\x5f\x72\x6b\ +\x58\x63\x5a\x5b\x65\x6b\x7a\x86\x8a\x6f\x80\x89\x75\x7e\x7f\x84\ +\x91\x99\x7c\x83\x82\x5a\x55\x51\x75\x78\x7a\x6f\x77\x78\x76\x7c\ +\x80\x5e\x62\x5b\x56\x59\x53\x57\x57\x51\x5a\x62\x60\x57\x6b\x68\ +\x6f\x79\x7e\x65\x6d\x6d\x63\x68\x66\x6a\x69\x64\x62\x5e\x57\x57\ +\x54\x4b\x61\x6b\x6f\x74\x8a\x98\x66\x6f\x6c\x5c\x62\x59\x5c\x64\ +\x5b\x58\x63\x56\x66\x68\x5f\x6b\x61\x57\x75\x79\x7c\x7a\x78\x77\ +\x7b\x75\x72\x6f\x6c\x65\x72\x6e\x6a\x64\x62\x5a\x6d\x62\x59\x77\ +\x6c\x65\x72\x65\x5b\x7f\x77\x72\x7e\x77\x71\x6f\x63\x58\x6d\x60\ +\x58\x76\x6d\x67\x6b\x5c\x52\x67\x5b\x52\x75\x67\x5d\x5d\x4e\x42\ +\x59\x4b\x3d\x57\x4e\x3d\x5f\x53\x46\x58\x4d\x3d\x56\x4c\x3a\x52\ +\x44\x32\x53\x45\x32\x54\x48\x36\x52\x49\x37\x5b\x52\x3e\x5e\x50\ +\x3f\x81\x73\x6a\x78\x69\x62\x80\x6e\x61\x80\x6e\x61\x83\x6d\x5f\ +\x7d\x67\x58\x7d\x69\x5b\x71\x5f\x52\xb2\xa0\x91\xdc\xd3\xca\xdf\ +\xd9\xd2\xcf\xca\xc7\x93\x85\x80\x81\x6e\x64\x91\x78\x68\xd6\xcd\ +\xc3\xcc\xc8\xc4\x89\x78\x72\x80\x68\x5e\x79\x60\x56\x81\x6a\x5b\ +\x85\x6d\x63\x7c\x62\x54\x9a\x87\x7c\x8c\x78\x70\x7c\x64\x5a\x7d\ +\x64\x55\x8a\x71\x63\xaf\x9b\x8a\xc5\xbd\xb7\x9d\x90\x8c\x8d\x78\ +\x6f\x88\x74\x6d\x86\x6b\x60\x83\x69\x5b\x80\x65\x59\x8d\x75\x68\ +\x90\x7c\x74\x86\x71\x68\x83\x6a\x5e\xac\x94\x82\xb9\xae\xa5\x94\ +\x85\x82\xaa\x94\x81\xb2\xa6\x9e\xbb\xad\xa2\xcd\xc4\xbb\xc4\xb7\ +\xaf\xc2\xb8\xad\xd3\xc6\xb9\xe2\xd8\xcc\xdd\xd4\xcb\xbc\xb2\xad\ +\x9b\x89\x81\x89\x77\x70\x80\x6b\x63\x8c\x75\x65\x98\x86\x7c\x7e\ +\x6b\x68\x7f\x69\x5e\x82\x6b\x62\x83\x6b\x61\x9e\x87\x76\xba\xab\ +\xa0\x9e\x93\x8c\x9f\x9e\x9d\x49\x57\x59\x4c\x58\x56\x4b\x4e\x47\ +\x61\x61\x5c\x6a\x64\x5f\x8c\x7c\x72\x41\x4f\x53\x40\x42\x38\x28\ +\x36\x32\x3c\x42\x38\x2f\x3a\x37\x3b\x43\x3b\x40\x48\x46\x39\x40\ +\x3b\x6b\x65\x56\x84\x7a\x72\x9d\x89\x7d\x95\x7f\x74\x90\x77\x6d\ +\x89\x70\x65\x7f\x67\x58\xa2\x92\x85\x74\x72\x74\x56\x54\x49\x41\ +\x46\x49\x44\x4d\x50\x74\x73\x6a\x65\x62\x63\x7c\x68\x52\x68\x6b\ +\x63\x80\x83\x7d\x52\x64\x72\x4f\x57\x58\x00\x00\x00\x76\x81\x88\ +\x69\x73\x6f\x53\x5f\x58\x66\x71\x79\x6e\x78\x7a\x57\x61\x5b\x56\ +\x65\x69\x80\x8d\x94\x59\x6e\x71\x7d\x87\x8e\x75\x7e\x82\x71\x7e\ +\x7f\x5d\x65\x67\x6d\x70\x70\x5c\x68\x66\x5f\x6b\x69\x6e\x6f\x6e\ +\x5d\x5a\x54\x56\x5b\x53\x52\x5a\x51\x5e\x6f\x70\x74\x81\x87\x63\ +\x6a\x66\x57\x56\x52\x6d\x72\x72\x5c\x5c\x54\x57\x5c\x59\x67\x76\ +\x7e\x6e\x81\x8d\x5d\x67\x5f\x5a\x5c\x57\x63\x65\x5e\x73\x75\x6e\ +\x79\x72\x6a\x64\x57\x4b\x6a\x61\x58\x6a\x5d\x54\x75\x6d\x66\x78\ +\x70\x68\x6f\x69\x63\x80\x7d\x77\x66\x60\x59\x7d\x73\x6c\x74\x68\ +\x5e\x7f\x77\x73\x8f\x88\x83\x6c\x60\x56\x6c\x62\x57\x79\x73\x6f\ +\x6a\x61\x5a\x5a\x4f\x46\x5a\x4c\x3d\x5a\x48\x3b\x58\x49\x38\x55\ +\x4c\x39\x55\x4e\x3d\x53\x4b\x3b\x52\x49\x38\x56\x4a\x35\x5d\x52\ +\x42\x55\x47\x36\x6c\x61\x54\x7d\x6d\x61\x70\x61\x55\x85\x74\x69\ +\x7b\x69\x5f\x7b\x67\x58\x7a\x61\x50\x81\x6a\x5b\x7f\x6c\x5f\x79\ +\x66\x59\x7a\x67\x5b\xc8\xb7\xac\xdd\xd3\xc8\xdd\xd5\xcd\xde\xda\ +\xd3\xbc\xb6\xb2\x84\x72\x6a\x83\x6b\x5e\xc8\xbd\xb1\xe0\xdb\xd4\ +\xb3\xa9\xa6\x7f\x66\x5f\x7f\x67\x5f\x81\x65\x55\x91\x80\x79\x82\ +\x6b\x61\x95\x81\x75\x90\x7f\x77\x99\x89\x81\x8b\x7b\x76\x83\x6d\ +\x62\x8b\x72\x64\x9b\x88\x7f\x86\x70\x65\x92\x7b\x70\x89\x72\x68\ +\x87\x6d\x60\x95\x7e\x73\x97\x82\x7a\x94\x7e\x76\x96\x82\x7b\x8f\ +\x7c\x75\x85\x70\x69\x86\x6e\x62\x98\x86\x7d\x8b\x79\x76\xbf\xa6\ +\x8e\xe7\xe1\xd8\xe3\xda\xd0\xe1\xd7\xcc\xe2\xd6\xcc\xe2\xd8\xcc\ +\xde\xd2\xc7\xdf\xd4\xc7\xe0\xd4\xc9\xde\xd3\xca\xcf\xbe\xb1\xce\ +\xc3\xba\xad\xa0\x9a\xcd\xbf\xb0\xbb\xb4\xb1\x7c\x6c\x69\x74\x5c\ +\x51\x7c\x63\x56\x80\x6a\x62\x75\x61\x59\x7f\x6b\x60\xa6\x9e\x97\ +\x91\x92\x93\x2e\x3a\x3b\x74\x6b\x5c\xb6\xa6\x95\xaa\x9d\x95\x97\ +\x84\x7c\x8e\x80\x77\x7a\x7a\x72\x2e\x40\x46\x2d\x3a\x34\x24\x36\ +\x2e\x6a\x62\x4f\xb8\xb1\xa4\x98\x97\x97\x90\x83\x7c\x95\x81\x78\ +\x8b\x6f\x5d\x8a\x71\x62\x8d\x72\x63\x8e\x73\x65\x8a\x6f\x61\x8b\ +\x71\x60\xa8\x8c\x78\x9f\x9d\x9f\x6c\x68\x63\x72\x6c\x69\x53\x5a\ +\x5b\x7f\x78\x6b\x6b\x6a\x6a\x5a\x5d\x52\x69\x6a\x67\x67\x78\x7a\ +\x79\x7e\x74\x5a\x61\x61\x00\x00\x00\x5d\x66\x63\x71\x7b\x7a\x54\ +\x60\x58\x58\x5c\x5c\x5f\x6a\x6a\x52\x5f\x5c\x65\x78\x80\x92\x9e\ +\xa5\x83\x94\x9b\x7c\x8e\x96\x85\x92\x9a\x7e\x81\x83\x5a\x5b\x56\ +\x58\x5c\x55\x55\x5b\x58\x5b\x61\x5d\x64\x63\x5a\x53\x51\x43\x5c\ +\x67\x65\x54\x65\x5c\x61\x68\x69\x8a\x91\x95\x68\x68\x67\x57\x59\ +\x51\x69\x6a\x69\x68\x6f\x6e\x75\x88\x95\x7a\x8f\x9e\x5c\x69\x62\ +\x59\x63\x58\x5a\x61\x59\x60\x62\x59\x64\x64\x5c\x66\x60\x58\x66\ +\x5c\x4f\x74\x6a\x64\x5f\x58\x4d\x81\x7d\x77\x7d\x71\x6a\x78\x6c\ +\x66\x7c\x74\x6e\x7f\x7a\x76\x7f\x78\x73\x82\x79\x72\x80\x7a\x78\ +\x8b\x86\x82\x81\x7b\x75\x7a\x75\x6f\x73\x6b\x66\x62\x56\x4e\x64\ +\x5e\x5b\x58\x52\x49\x53\x47\x37\x55\x49\x38\x54\x4e\x3d\x54\x50\ +\x3e\x57\x51\x40\x58\x4e\x3e\x57\x4a\x3c\x5c\x4c\x41\x7c\x6e\x63\ +\x99\x8e\x8a\x8e\x7d\x71\x88\x75\x6c\x72\x60\x55\x7a\x69\x5f\x77\ +\x60\x53\x7a\x62\x52\x80\x6c\x5f\x7f\x69\x5c\x6d\x5b\x4c\xa6\x95\ +\x87\xd8\xc9\xbf\xdb\xca\xc1\xd8\xcb\xc0\xdb\xd1\xc7\xdb\xd5\xcf\ +\xab\xa2\x9f\x81\x6c\x60\x92\x7b\x6b\xe6\xe1\xd7\xc8\xc1\xbc\x80\ +\x6d\x65\x86\x71\x67\x7f\x64\x53\x97\x88\x7e\x83\x6d\x62\xa1\x8f\ +\x83\x91\x82\x7d\xb5\xa9\xa3\x9e\x91\x8b\x9a\x8e\x8d\x88\x71\x65\ +\x91\x7d\x74\x7f\x67\x5d\x84\x69\x58\x97\x82\x79\x8d\x78\x6d\x8a\ +\x70\x63\x84\x6b\x5f\x7f\x6b\x61\x84\x6a\x5b\x93\x7f\x77\x85\x6f\ +\x67\xa2\x8a\x7b\xc2\xb7\xb1\x95\x81\x7b\xde\xd0\xbc\xe2\xda\xd0\ +\xe2\xd9\xd1\xe0\xd7\xcd\xde\xd6\xcb\xd7\xca\xbf\xde\xd2\xc8\xda\ +\xcf\xc5\xdd\xd0\xc5\xdf\xd4\xca\xde\xd1\xc4\xdd\xd0\xc5\xcd\xbf\ +\xb6\xb5\xa5\x9a\xb0\x9c\x8d\xc3\xb3\xa9\xa0\x94\x8e\x9d\x8d\x81\ +\xce\xbc\xad\xd7\xcd\xc5\xcd\xc3\xbc\x7f\x82\x82\x48\x59\x5a\xaf\ +\x99\x7a\xde\xcb\xbb\xcc\xc0\xb7\xbb\xab\xa2\xc2\xae\x9f\x9d\x97\ +\x9a\x77\x71\x64\x51\x65\x6c\x4e\x53\x42\xae\x9e\x8b\xe1\xbf\xa7\ +\xeb\xc7\xab\xe0\xc1\xac\xae\xa3\x9c\x88\x7a\x77\x80\x64\x55\x88\ +\x6d\x5e\x88\x6e\x61\x88\x6d\x5b\x88\x70\x61\x87\x6e\x61\x7d\x6b\ +\x5d\x99\x8b\x80\xb6\xa4\x97\x92\x87\x89\x89\x87\x87\x58\x59\x54\ +\x60\x61\x52\x55\x67\x73\x5e\x6b\x66\x4b\x64\x72\x35\x46\x46\x36\ +\x46\x3f\x00\x00\x00\x58\x60\x5f\x7f\x85\x87\x5b\x69\x68\x62\x6e\ +\x6c\x6f\x7b\x7f\x7e\x91\x98\x98\xa2\xaa\x9e\xa4\xab\x88\x91\x99\ +\x99\xa0\xa8\x7c\x84\x84\x5d\x64\x5f\x54\x5f\x56\x5e\x6a\x63\x58\ +\x61\x5c\x55\x62\x5a\x52\x5d\x53\x57\x5f\x59\x65\x71\x73\x65\x79\ +\x77\x66\x74\x77\x81\x86\x8c\x80\x7d\x78\x67\x66\x60\x5e\x5e\x5b\ +\x76\x81\x89\x7b\x92\xa4\x72\x82\x8b\x60\x69\x63\x65\x6f\x6b\x58\ +\x58\x4d\x60\x69\x60\x5c\x5c\x50\x69\x5d\x50\x76\x69\x62\x7f\x7a\ +\x75\x6c\x65\x5d\x6e\x64\x5d\x77\x6d\x65\x68\x5a\x53\x60\x57\x4b\ +\x65\x5e\x57\x66\x5d\x53\x66\x60\x58\x78\x74\x72\x7b\x78\x73\x89\ +\x87\x87\x8f\x8e\x8d\x7b\x75\x73\x72\x71\x6f\x70\x6e\x6c\x60\x55\ +\x4d\x53\x4d\x3c\x54\x4c\x3b\x53\x4f\x3e\x54\x4e\x3c\x5d\x52\x44\ +\x85\x78\x70\x73\x61\x59\x7e\x6c\x64\x92\x81\x77\x8f\x7d\x76\x8e\ +\x79\x6e\x7f\x6d\x60\x76\x63\x57\x80\x6d\x61\x78\x5f\x51\x83\x69\ +\x5b\x7f\x6a\x5a\x78\x64\x59\x71\x5d\x50\xc3\xaf\xa2\xdf\xcc\xc2\ +\xd7\xc7\xbe\xd8\xcb\xc1\xdc\xd5\xcb\xdd\xd7\xd0\xdc\xd7\xd2\x8c\ +\x79\x72\x9b\x83\x73\xe4\xdd\xd4\xd9\xd4\xcf\x9f\x93\x8e\x85\x70\ +\x65\x85\x70\x65\x91\x7b\x71\x9e\x8f\x87\xc3\xb6\xae\xb4\xaa\xa7\ +\x8e\x7d\x74\x8c\x78\x6e\x9f\x8d\x85\x8e\x78\x6f\x96\x80\x77\x87\ +\x73\x6b\x75\x58\x4a\x8b\x70\x61\x91\x7d\x74\x82\x69\x5e\x7a\x5d\ +\x4e\x8c\x78\x70\x7e\x68\x5c\x84\x6a\x5a\x95\x81\x79\xa4\x91\x87\ +\xad\xa3\x9a\x8c\x7b\x78\x8f\x78\x6c\xbb\xa8\x99\xb9\xaa\x9d\xd9\ +\xcf\xc2\xdb\xd0\xc4\xde\xd4\xc9\xde\xd2\xc8\xda\xcd\xc3\xdb\xce\ +\xc2\xc5\xb4\xa9\xcb\xb6\xa6\xd3\xc0\xb3\xc2\xb1\xa2\xdb\xcb\xbb\ +\xe1\xd3\xc5\xe0\xd3\xc4\xe1\xd3\xc6\xdf\xd3\xc9\xde\xd1\xc7\xbd\ +\xb2\xaa\x6f\x74\x75\x8a\x85\x7b\xcf\xbb\xa5\xdd\xcd\xc0\xdf\xd0\ +\xc2\xdf\xd0\xc2\xe3\xcd\xbc\xd7\xc7\xbb\x4c\x59\x65\x55\x50\x42\ +\xbb\x99\x77\xec\xc3\xa6\xf4\xb9\x8f\xf7\xb6\x85\xf8\xb5\x84\xf7\ +\xb7\x87\xdd\xa9\x81\xc4\xa6\x89\xb8\xab\xa2\x8b\x79\x74\x85\x6c\ +\x5f\x85\x6a\x57\x89\x71\x65\x88\x6f\x62\x65\x60\x58\x6a\x69\x69\ +\x7e\x71\x5b\x98\x95\x97\x5c\x66\x6e\x44\x55\x57\x4f\x5a\x4c\x93\ +\x93\x93\x47\x54\x59\x3a\x51\x59\x2a\x3a\x3f\x30\x38\x36\x00\x00\ +\x00\x58\x66\x5d\x70\x7b\x82\x85\x89\x8b\x83\x87\x88\x64\x6e\x70\ +\x8a\x95\x9f\x9c\xad\xb8\x97\x9f\xa4\x87\x8c\x8e\x90\x94\x9b\x78\ +\x7d\x7a\x56\x67\x5b\x5c\x66\x60\x69\x6e\x6f\x62\x68\x63\x58\x63\ +\x59\x5d\x6a\x68\x66\x71\x71\x79\x84\x8a\x8d\x97\x9b\x75\x80\x84\ +\x9a\xa7\xad\x7f\x80\x7c\x61\x62\x5c\x64\x6d\x70\x7e\x92\xa1\x7f\ +\x92\xa0\x5c\x5d\x57\x59\x56\x4c\x67\x6d\x6a\x59\x50\x44\x5b\x54\ +\x4a\x54\x44\x33\x57\x47\x37\x67\x5a\x50\x78\x6b\x66\x6d\x64\x5b\ +\x6e\x67\x62\x83\x7a\x72\x72\x67\x5d\x78\x6f\x62\x58\x54\x48\x66\ +\x60\x58\x86\x86\x89\x82\x81\x80\x81\x7d\x79\x75\x6c\x66\x76\x6d\ +\x68\x62\x5d\x58\x6f\x6c\x6a\x77\x74\x75\x62\x57\x4c\x53\x48\x36\ +\x55\x49\x39\x56\x4d\x3d\x58\x4b\x3b\x70\x60\x59\x81\x6f\x65\x8b\ +\x7a\x73\x85\x72\x69\x8e\x7b\x71\x8a\x76\x69\x7a\x69\x5e\x84\x73\ +\x68\x7e\x6b\x60\x79\x60\x52\x75\x5b\x4f\x7a\x62\x55\x7c\x69\x5b\ +\x79\x65\x57\x80\x6c\x60\xb7\xa2\x96\xda\xc8\xbe\xd7\xc8\xbd\xdb\ +\xcd\xc4\xde\xd8\xd1\xdc\xd7\xd0\xe0\xd9\xd2\xc4\xbb\xb8\xd3\xc6\ +\xba\xcc\xc4\xbf\xd1\xca\xc4\xaf\xa5\xa0\x8b\x79\x71\x84\x6e\x64\ +\x8d\x78\x6d\x8f\x7b\x72\x9b\x8c\x86\x96\x85\x7b\x8a\x75\x6c\x87\ +\x73\x6b\x94\x7f\x72\x8f\x79\x70\x8e\x78\x6c\x8f\x7c\x74\x82\x6e\ +\x66\x7e\x67\x5d\x8e\x7a\x71\x84\x6c\x61\x82\x6a\x60\x85\x72\x6a\ +\x7b\x66\x5e\x7e\x64\x55\x8d\x71\x60\xb8\xa5\x96\x9b\x8c\x83\x89\ +\x78\x72\x7e\x67\x5f\x75\x5a\x4f\x8c\x76\x69\x92\x7b\x6b\xcf\xbd\ +\xaa\xdc\xd0\xc3\xd7\xc9\xbc\xd5\xc5\xb8\xc2\xb0\xa5\xd3\xbd\xae\ +\xdc\xcc\xc0\xd7\xc6\xba\xe0\xd2\xc6\xdd\xd0\xc5\xde\xcf\xc6\xe0\ +\xd1\xc8\xde\xd2\xc8\xda\xcc\xc0\xb3\xa7\xa0\xc4\xb3\xa5\x8d\x8b\ +\x86\xce\xb8\x9e\xe0\xd1\xc4\xdf\xce\xbf\xdf\xcb\xbb\xe4\xc6\xb0\ +\xe8\xc5\xab\xe3\xc5\xb0\x76\x72\x6d\xd7\x9c\x6b\xf7\xbe\x94\xf1\ +\xb8\x90\xf5\xb3\x82\xf7\xb3\x7d\xf9\xb4\x7c\xf9\xb6\x84\xff\xbb\ +\x86\xd1\xa3\x84\xa8\x84\x64\xd9\xb0\x8f\xa0\x88\x79\xaf\x86\x67\ +\xb4\x95\x82\xa3\x88\x78\x75\x70\x6f\x68\x66\x62\x27\x3d\x40\x61\ +\x5f\x56\x4e\x59\x5a\x41\x4c\x45\x2f\x49\x4e\x4b\x4e\x46\x66\x66\ +\x5b\x49\x5a\x66\x36\x49\x4b\x4b\x54\x4f\x00\x00\x00\x57\x69\x61\ +\x69\x76\x7b\x81\x80\x7c\x78\x75\x73\x72\x72\x75\x8c\x92\x98\x91\ +\xa0\xab\x89\x86\x86\x83\x88\x8e\x75\x7c\x80\x64\x62\x5c\x58\x5e\ +\x59\x73\x78\x76\x63\x68\x65\x5b\x5a\x52\x61\x68\x67\x80\x8c\x95\ +\x89\x93\x96\x6a\x73\x73\x82\x87\x89\x6b\x70\x6f\x6c\x7b\x7b\x5c\ +\x62\x5a\x59\x57\x4f\x64\x64\x64\x81\x8c\x98\x74\x7d\x7f\x56\x57\ +\x4b\x59\x54\x4a\x69\x6e\x6b\x5b\x56\x4e\x59\x4e\x40\x58\x4f\x40\ +\x5a\x52\x45\x70\x65\x5a\x6d\x63\x5a\x6c\x5e\x56\x70\x63\x5c\x77\ +\x6b\x63\x6d\x65\x5b\x77\x66\x5c\x72\x68\x61\x71\x6e\x68\x85\x8d\ +\x91\x82\x7e\x7d\x8d\x87\x82\x7a\x72\x6c\x6a\x5e\x57\x6b\x65\x62\ +\x6c\x62\x5c\x6e\x61\x5c\x6f\x64\x5d\x5c\x51\x44\x5f\x54\x47\x65\ +\x57\x4d\x6d\x5f\x59\x7a\x6d\x69\x88\x78\x6d\x83\x6f\x62\x85\x71\ +\x66\x86\x75\x6b\x86\x75\x6b\x81\x70\x66\x83\x72\x69\x81\x6c\x61\ +\x80\x6b\x5d\x75\x5d\x4f\x6e\x57\x48\x72\x5d\x4e\x6d\x5b\x4d\x7a\ +\x66\x59\x93\x7b\x6c\xc1\xab\x9f\xca\xb9\xb0\xc3\xb4\xaa\xe4\xdf\ +\xd8\xdd\xd9\xd5\xc1\xb9\xb0\xd8\xd1\xc8\xb0\xa3\x9b\x87\x79\x74\ +\x8d\x7b\x70\xa7\x9a\x93\xa1\x93\x8e\x89\x77\x6e\x8e\x79\x71\x8b\ +\x76\x70\x8c\x7a\x73\x97\x86\x7f\x93\x81\x78\x8d\x79\x71\x93\x80\ +\x77\x96\x7f\x75\xaa\x9c\x93\x95\x84\x7e\x8f\x7d\x77\x88\x78\x72\ +\x8c\x77\x71\x8e\x7a\x70\x87\x73\x6b\x89\x74\x6d\x88\x70\x67\x83\ +\x6a\x5c\x93\x7b\x6b\xd0\xbe\xaf\xc8\xbc\xb2\xc5\xbc\xb5\x9f\x91\ +\x8c\xac\x99\x8b\xc2\xb2\xa4\xbe\xac\x9d\xd9\xc6\xb5\xd8\xc9\xb8\ +\xdb\xca\xbc\xde\xce\xbe\xdf\xd1\xc5\xdc\xcf\xc3\xd0\xc1\xb7\xbd\ +\xad\xa4\xce\xbb\xac\xdf\xd2\xc4\xdf\xd3\xc7\xe1\xd4\xc7\xde\xd2\ +\xc7\xde\xd2\xc7\xe2\xd3\xc6\xd2\xc6\xbf\xc1\xad\x9c\xdd\xcc\xba\ +\xe3\xd5\xc9\xe4\xd7\xcc\xe3\xd3\xc4\xe2\xcc\xb8\xe5\xc7\xb0\xdf\ +\xc4\xb1\xb9\xa2\x92\xf0\xb3\x85\xf5\xb1\x7c\xf4\xb2\x7d\xf5\xb2\ +\x7e\xf8\xb1\x7c\xfc\xb4\x7c\xed\xaa\x78\xf1\xab\x73\xe7\xa8\x7b\ +\x6d\x64\x57\x99\x6c\x45\xd0\x9a\x6d\xe7\xa5\x75\xd3\x9c\x73\xeb\ +\xb7\x89\xad\x9a\x95\x75\x70\x65\x40\x44\x3b\x98\x7d\x66\x61\x60\ +\x5d\x2e\x3d\x3d\x1b\x31\x2d\x1e\x2e\x2a\x43\x4a\x42\x7e\x85\x83\ +\x62\x71\x6b\x57\x6a\x6c\x00\x00\x00\x53\x61\x56\x6a\x7e\x88\x7b\ +\x73\x68\x73\x73\x71\x6a\x66\x66\x81\x87\x8c\x8b\x93\x9a\x7a\x7c\ +\x7c\x6e\x73\x77\x5c\x66\x62\x58\x5d\x57\x6c\x6b\x68\x8b\x8b\x8a\ +\x69\x60\x57\x57\x5b\x4f\x60\x64\x62\x7b\x83\x8a\x8a\x91\x95\x8a\ +\x95\x97\x97\x9c\x9e\x74\x77\x76\x84\x87\x88\x65\x62\x58\x5b\x5c\ +\x56\x70\x6b\x64\x62\x5e\x5d\x74\x76\x76\x59\x59\x4d\x5c\x59\x51\ +\x70\x72\x71\x60\x5b\x54\x62\x59\x52\x60\x59\x4d\x61\x58\x4d\x6e\ +\x61\x55\x62\x52\x48\x63\x59\x4f\x66\x5c\x51\x65\x58\x4c\x66\x5c\ +\x53\x6d\x5b\x4c\x68\x5c\x54\x66\x60\x57\x6e\x69\x64\x7b\x6e\x67\ +\x8d\x86\x82\x62\x59\x4c\x60\x54\x4c\x6a\x5d\x56\x68\x58\x50\x59\ +\x46\x39\x65\x54\x48\x6d\x5e\x55\x74\x6b\x69\x7d\x73\x6f\x7e\x72\ +\x6f\x7f\x75\x73\x7b\x6c\x64\x7e\x6c\x61\x83\x74\x69\x86\x77\x6d\ +\x8c\x7c\x73\x85\x74\x6c\x80\x6d\x63\x86\x72\x65\x94\x84\x7a\x93\ +\x83\x7b\x7d\x6b\x60\x72\x62\x55\x6a\x57\x49\x86\x6f\x63\x8a\x70\ +\x62\xa5\x92\x85\x88\x71\x67\x9f\x8c\x7e\xe3\xdc\xd4\xe5\xe1\xdd\ +\xc5\xbe\xb8\xb2\xa5\x9d\x9e\x90\x88\x82\x6b\x61\x81\x6a\x5c\x8e\ +\x79\x6d\x8e\x79\x70\x8f\x7b\x73\x8b\x7a\x75\x8a\x75\x6e\x88\x78\ +\x73\x92\x7f\x76\x95\x83\x79\x94\x7e\x73\x93\x81\x7d\x90\x7b\x72\ +\x8d\x7a\x70\x7d\x62\x54\x8e\x78\x69\xaa\x9b\x91\x8d\x7b\x79\x85\ +\x6d\x5f\x83\x6c\x60\x8f\x7a\x70\x89\x72\x6b\x90\x76\x65\xca\xb8\ +\xa8\xde\xd5\xca\xdd\xd5\xca\xe3\xd8\xce\xdd\xd3\xca\xe7\xdb\xce\ +\xe0\xd2\xc4\xdc\xcd\xc2\xd7\xc5\xb7\xd9\xc9\xbe\xda\xcc\xbf\xc5\ +\xb9\xad\xbe\xaf\xa4\xbc\xaf\xa6\xbe\xac\x9b\xbc\xab\x9d\xcf\xc0\ +\xaf\xce\xc0\xb4\xd5\xc6\xb9\xd8\xca\xbc\xd6\xc8\xbe\xde\xcf\xc0\ +\xbe\xaf\xa9\x9c\x83\x77\xbe\xa1\x88\xe3\xd6\xc9\xe5\xdc\xd4\xe2\ +\xd8\xd0\xe1\xd1\xc2\xe0\xcb\xb9\xe1\xcb\xb8\xde\xc7\xb7\xe9\xc3\ +\xaa\xef\xb2\x88\xf6\xb0\x7a\xf6\xaf\x7a\xfa\xb3\x7e\xf9\xb3\x7b\ +\xdc\x9c\x6e\xc1\x86\x57\xb9\x89\x64\x91\x69\x4d\x8e\x71\x5a\x57\ +\x52\x42\x74\x5d\x42\x99\x69\x40\xb1\x84\x65\x96\x6c\x49\xaa\x7e\ +\x60\xa5\x86\x6c\x32\x39\x34\x80\x64\x4b\x40\x46\x46\x25\x35\x36\ +\x1f\x30\x2f\x2e\x37\x31\x43\x46\x3e\x66\x74\x76\x60\x64\x64\x43\ +\x4e\x54\x00\x00\x00\x55\x61\x59\x57\x69\x6a\x7d\x82\x81\x73\x7a\ +\x78\x5d\x5d\x58\x76\x7e\x81\x82\x8e\x93\x6f\x6f\x69\x59\x64\x62\ +\x69\x6c\x65\x66\x5d\x53\x6a\x65\x61\x90\x92\x91\x60\x52\x43\x5c\ +\x63\x61\x61\x6b\x68\x63\x6c\x6b\x70\x76\x7a\x8a\x90\x94\x90\x95\ +\x96\x86\x89\x86\x5c\x56\x4c\x60\x5a\x51\x65\x5e\x51\x5f\x5d\x52\ +\x73\x74\x73\x80\x80\x81\x74\x73\x6f\x7a\x77\x72\x79\x76\x74\x61\ +\x5e\x56\x6a\x63\x5d\x64\x5b\x50\x5a\x4d\x42\x5d\x4e\x43\x67\x5a\ +\x51\x75\x6b\x63\x80\x79\x72\x7c\x73\x6d\x69\x5d\x54\x5e\x52\x44\ +\x64\x55\x4b\x63\x5d\x50\x5b\x56\x46\x5b\x53\x47\x5c\x51\x49\x5c\ +\x4b\x40\x5f\x4d\x45\x69\x58\x50\x61\x50\x45\x74\x6a\x61\x95\x89\ +\x82\x77\x6f\x69\x78\x6c\x6a\x7f\x74\x70\x8a\x7f\x79\x76\x69\x62\ +\x76\x65\x5a\x7b\x6c\x61\x70\x5f\x54\x7b\x6c\x61\x84\x70\x66\x87\ +\x72\x65\x83\x73\x69\x87\x6f\x61\x84\x71\x65\x9c\x8d\x83\xc0\xb3\ +\xa9\x92\x87\x81\x74\x5e\x4d\x91\x78\x69\xb7\xa4\x95\xd9\xce\xc5\ +\xd2\xc5\xbd\xdc\xd2\xc7\xe4\xdc\xd5\xe0\xd7\xce\xdb\xd2\xc8\x9c\ +\x8f\x8a\x8c\x78\x6a\x84\x6c\x5f\x88\x70\x64\x86\x6e\x5f\x8b\x72\ +\x65\x8f\x77\x6c\x87\x73\x6a\x87\x73\x6a\x83\x70\x66\x86\x6d\x5f\ +\x94\x80\x76\x90\x78\x6e\x91\x7c\x75\x92\x7d\x75\x8b\x78\x70\x7e\ +\x66\x5c\x7f\x64\x58\x9c\x8b\x83\x88\x74\x6e\x8d\x76\x6b\xa0\x8a\ +\x7a\xa9\xa0\x9c\x89\x70\x61\xd4\xc4\xb2\xe1\xd7\xcd\xde\xd4\xcb\ +\xe0\xd5\xca\xe0\xd5\xcb\xdb\xd1\xc7\xc4\xb1\xa4\xe0\xcf\xc0\xe1\ +\xd2\xc5\xe0\xd2\xc5\xdf\xd1\xc5\xdb\xce\xc3\xd7\xc9\xbf\xd6\xca\ +\xbc\xd7\xca\xbe\xd2\xc7\xbc\xad\x9c\x94\x9c\x8b\x7f\x9a\x80\x6f\ +\xaa\x94\x84\x9d\x88\x7c\xbe\xa1\x8b\xb6\xaa\xa1\x8d\x74\x6b\xa1\ +\x7f\x65\xdd\xc9\xb2\xe4\xda\xd1\xe6\xdd\xd4\xe3\xda\xd1\xe0\xce\ +\xc0\xe3\xbf\xa3\xe4\xbe\x9f\xe7\xbb\x9a\xeb\xb5\x8c\xf3\xae\x79\ +\xf6\xae\x77\xf8\xb1\x78\xd4\x93\x66\xf0\xa7\x6f\xb5\x82\x5d\xab\ +\x77\x4b\xd0\x9b\x72\x82\x6d\x5b\x3c\x4b\x48\x3c\x39\x28\x6b\x5c\ +\x47\x78\x58\x39\x52\x4a\x40\x64\x43\x26\x93\x6d\x50\x7b\x69\x56\ +\x27\x38\x37\x2e\x36\x31\x3b\x4a\x4a\x2d\x41\x3e\x2a\x3b\x37\x71\ +\x69\x55\x6d\x72\x73\x71\x7c\x7c\x5e\x67\x69\x53\x56\x52\x00\x00\ +\x00\x50\x5b\x4f\x55\x67\x60\x5a\x6b\x69\x6a\x77\x74\x56\x5b\x51\ +\x50\x59\x54\x70\x7b\x7d\x5b\x67\x5e\x68\x6c\x6a\x76\x6b\x60\x5f\ +\x4f\x45\x66\x63\x64\x7f\x83\x80\x56\x4d\x3d\x6b\x72\x79\x65\x75\ +\x72\x6d\x7e\x7f\x78\x7f\x80\x6b\x6e\x6f\x84\x86\x84\x72\x6c\x63\ +\x5e\x57\x4b\x76\x6c\x64\x6c\x5e\x52\x61\x5a\x50\x71\x6e\x6c\x78\ +\x76\x74\x7c\x75\x71\x8b\x8b\x8a\x7b\x70\x68\x65\x60\x58\x6c\x5f\ +\x57\x67\x5d\x53\x5c\x4e\x40\x5d\x4d\x43\x6c\x5e\x55\x72\x67\x63\ +\x78\x70\x6a\x76\x6e\x68\x65\x56\x4c\x5f\x57\x49\x59\x4f\x42\x72\ +\x65\x5a\x62\x59\x50\x54\x47\x3a\x55\x44\x36\x61\x4f\x47\x64\x53\ +\x4c\x76\x66\x5d\x7a\x68\x61\x86\x7b\x78\x91\x88\x81\x7e\x71\x6b\ +\x66\x53\x46\x66\x57\x48\x6f\x60\x51\x69\x5c\x4d\x78\x66\x5b\x83\ +\x73\x6a\x7b\x6a\x62\x7c\x6a\x5f\x8a\x72\x67\x7e\x6a\x5b\x86\x77\ +\x6c\x7f\x6a\x5d\x82\x6d\x61\x78\x63\x58\xa2\x92\x8a\x8f\x84\x7e\ +\x7f\x69\x5c\xb6\xa1\x91\xe9\xdf\xd5\xe5\xdd\xd2\xe4\xda\xd2\xe4\ +\xdb\xd2\xe6\xdd\xd3\xe6\xdc\xd4\xe5\xda\xd0\xa7\x9a\x93\x83\x69\ +\x59\x86\x70\x63\x85\x6b\x60\x85\x6c\x5c\x89\x6f\x60\x8f\x78\x6c\ +\x8e\x76\x6c\x8d\x7a\x70\x87\x71\x67\x7f\x62\x52\x8a\x71\x65\x8c\ +\x73\x6b\x92\x7c\x71\x88\x72\x68\x8f\x79\x70\xc7\xb7\xaa\xdd\xd0\ +\xc5\xd0\xcc\xc9\xa2\x8f\x82\xbc\xaf\xa2\xe0\xd6\xc9\x9f\x93\x8b\ +\xd3\xc3\xb1\xc7\xba\xb1\xd3\xc3\xb7\xe0\xd5\xca\xdc\xd0\xc7\xc1\ +\xb1\xa6\xd5\xc1\xb0\xd2\xc0\xb5\xb8\xa5\x9a\xba\xa6\x96\xc9\xb6\ +\xa7\xd4\xc4\xb5\xd8\xc9\xbd\xdc\xce\xc2\xdc\xd0\xc5\xd7\xcd\xc6\ +\x98\x88\x87\x8a\x71\x63\x89\x6e\x5c\x92\x76\x68\x97\x80\x70\x8c\ +\x6e\x5f\x8d\x6e\x5b\x8d\x70\x5d\x96\x73\x5f\xc8\xa7\x89\xe6\xda\ +\xcd\xe3\xd9\xcf\xe5\xdc\xd3\xe1\xd8\xcd\xe0\xcd\xbe\xe8\xb7\x95\ +\xee\xb0\x7f\xf0\xaf\x7d\xf2\xae\x79\xf4\xae\x77\xf6\xaf\x77\xf4\ +\xb1\x7a\x68\x55\x45\x7f\x67\x4c\x71\x59\x40\x93\x66\x43\xbd\x8a\ +\x66\x92\x6f\x51\x8d\x72\x57\x44\x47\x40\x46\x4d\x44\x4c\x44\x33\ +\x32\x37\x30\x71\x50\x36\x48\x44\x3c\x49\x48\x41\x31\x39\x3a\x24\ +\x34\x30\x4f\x55\x46\xb7\x88\x5f\x81\x76\x69\xcd\x9c\x6f\x8d\x8e\ +\x8e\x71\x72\x70\x50\x61\x73\x64\x66\x61\x00\x00\x00\x5d\x65\x58\ +\x51\x5b\x4e\x52\x67\x5d\x57\x67\x60\x51\x5e\x53\x50\x55\x4a\x5a\ +\x68\x6a\x78\x7d\x78\x67\x68\x65\x54\x53\x4a\x54\x50\x41\x62\x5d\ +\x54\x61\x56\x48\x55\x4b\x3c\x60\x5e\x5f\x5c\x60\x59\x57\x5e\x56\ +\x5d\x6e\x69\x61\x6a\x65\x6c\x6e\x69\x5c\x55\x4b\x6a\x62\x59\x62\ +\x55\x49\x63\x59\x53\x74\x69\x63\x74\x6c\x69\x79\x6e\x6a\x82\x7b\ +\x77\x7e\x72\x69\x71\x64\x5d\x5e\x54\x49\x61\x51\x43\x68\x5a\x4f\ +\x5d\x4f\x44\x58\x45\x37\x58\x43\x35\x63\x54\x49\x66\x57\x4e\x64\ +\x55\x49\x69\x5c\x4f\x66\x5c\x50\x59\x50\x43\x61\x55\x48\x55\x40\ +\x30\x55\x46\x36\x52\x42\x32\x68\x5a\x4c\x8c\x7f\x74\x79\x69\x61\ +\x85\x75\x6c\xc0\xb4\xac\xa5\x98\x92\x83\x72\x68\x75\x68\x5a\x60\ +\x57\x47\x60\x52\x43\x61\x55\x44\x76\x67\x5b\x75\x69\x5f\x77\x65\ +\x5e\x87\x77\x6e\x85\x70\x65\x81\x6b\x5e\x86\x6e\x61\x7c\x66\x58\ +\x77\x63\x59\x72\x5d\x53\x74\x60\x56\x8c\x76\x69\xaf\x97\x87\xe5\ +\xd7\xc9\xe5\xda\xcf\xe4\xd8\xcd\xe3\xd7\xcc\xe3\xd8\xd0\xe4\xda\ +\xd1\xe3\xd8\xcc\xe6\xd4\xc4\xce\xbf\xb4\x91\x7b\x6f\x8c\x73\x67\ +\x8f\x76\x6a\x8a\x72\x62\x8b\x72\x64\x92\x7a\x70\x91\x78\x6c\x93\ +\x7f\x75\x89\x72\x68\x81\x65\x54\x8d\x75\x67\x8b\x75\x6b\x94\x7f\ +\x77\x89\x75\x6e\x88\x73\x6c\xab\x93\x83\xe4\xda\xcf\xce\xc6\xbe\ +\xe7\xde\xd2\xe6\xdd\xd3\xd7\xcd\xc4\xcf\xc3\xb8\xb3\xa9\xa4\xb7\ +\xa4\x93\xdf\xd3\xc7\xc2\xb4\xad\x95\x7f\x73\x91\x75\x65\x93\x7a\ +\x6c\xaf\x9a\x8a\x8d\x78\x6f\x98\x7e\x6e\x94\x78\x6b\x91\x75\x67\ +\x92\x74\x60\xca\xaf\x99\xbc\xac\xa4\xbe\xad\xa3\xb4\xa4\x98\xd0\ +\xbe\xad\xc0\xb5\xac\x8f\x7a\x6f\x8b\x70\x61\x87\x68\x5a\x8d\x6c\ +\x59\x8d\x6d\x59\xa1\x7d\x65\xe8\xcb\xae\xe1\xcf\xbf\xe1\xd2\xc4\ +\xe2\xd3\xc5\xe0\xd0\xc3\xdf\xce\xbc\xe5\xbf\xa3\xee\xb1\x83\xf1\ +\xb0\x80\xec\xa9\x76\xf4\xb4\x82\xd6\x9d\x72\xaa\x79\x56\x97\x72\ +\x5a\x56\x4b\x3d\x96\x6c\x44\x53\x53\x4f\x6b\x4e\x37\x99\x70\x52\ +\x8b\x60\x3f\x62\x63\x56\x22\x3c\x3c\x1c\x2b\x2a\x23\x2a\x24\x1b\ +\x23\x1d\x89\x66\x46\x7a\x67\x59\x68\x59\x45\x99\x79\x58\x70\x6a\ +\x59\x6f\x4b\x2e\x94\x70\x53\xad\x79\x53\x80\x74\x60\x69\x6a\x61\ +\x5f\x64\x66\x44\x4f\x54\x00\x00\x00\x9b\x90\x8a\x81\x79\x6f\x67\ +\x6b\x60\x5a\x69\x61\x53\x6b\x65\x53\x63\x5a\x56\x65\x66\x77\x83\ +\x81\x59\x5a\x50\x52\x4d\x3f\x52\x53\x46\x55\x5c\x4c\x52\x48\x39\ +\x56\x4f\x41\x58\x51\x46\x58\x55\x4b\x59\x5c\x52\x5d\x66\x5d\x5b\ +\x68\x60\x60\x64\x5a\x67\x63\x5b\x65\x58\x4b\x57\x48\x3b\x62\x53\ +\x49\x6f\x65\x5e\x76\x69\x62\x74\x65\x5b\x73\x68\x5e\x6b\x58\x50\ +\x60\x51\x41\x5a\x45\x35\x5c\x47\x37\x64\x55\x48\x5c\x50\x44\x58\ +\x47\x39\x58\x47\x39\x54\x45\x35\x55\x4a\x3d\x56\x4a\x38\x57\x4b\ +\x3b\x5a\x51\x43\x6c\x60\x56\x70\x60\x51\x59\x4a\x3a\x5f\x54\x46\ +\x56\x4a\x3c\x6d\x61\x57\x90\x7f\x76\x8c\x7e\x79\x86\x77\x6e\xb6\ +\xa8\xa2\xd1\xc8\xc0\x93\x87\x7e\x78\x65\x5a\x6c\x5c\x4e\x5c\x4e\ +\x3c\x6c\x5a\x4e\x79\x69\x5d\x85\x78\x70\x84\x6f\x64\x8a\x79\x70\ +\x7d\x6e\x68\x7f\x6c\x5f\x86\x6e\x64\x85\x73\x6a\x6f\x5b\x50\x66\ +\x51\x46\x6c\x5a\x4f\x94\x7b\x6a\xeb\xd9\xc5\xe6\xd6\xc6\xe3\xd5\ +\xc6\xe1\xd2\xc0\xe2\xd3\xc3\xe2\xd4\xc4\xe2\xd3\xc4\xe2\xd1\xc0\ +\xe3\xce\xbb\xea\xd4\xbf\xc8\xb5\xa6\x91\x7a\x6d\x8d\x78\x69\x92\ +\x7b\x6d\x8a\x70\x64\x91\x77\x69\x92\x7c\x6f\x93\x7e\x70\x90\x7a\ +\x72\x7f\x61\x54\x87\x6d\x5b\x92\x80\x75\x92\x80\x7a\x8b\x74\x6b\ +\x89\x73\x6a\x8d\x78\x6d\xb7\xa3\x94\xd6\xd0\xc6\xdf\xd2\xc6\xdc\ +\xd2\xc9\xdc\xd1\xc5\xdc\xd0\xc4\xd4\xc5\xba\xd0\xc3\xb9\xb0\xa2\ +\x99\x90\x7c\x73\x8b\x6a\x56\xb4\x9a\x85\xb8\xa5\x96\xbf\xad\xa2\ +\x91\x7a\x70\x8a\x6b\x5a\x91\x72\x62\x8d\x6f\x5c\x91\x70\x5a\xd1\ +\xb5\x9e\xa6\x9a\x95\x8a\x73\x66\xc1\xa6\x8d\xc1\xba\xb8\xa0\x85\ +\x77\x96\x81\x78\x91\x75\x65\x89\x6c\x5d\x8f\x70\x5d\x90\x6f\x5e\ +\xc4\x9c\x7d\xe7\xd0\xba\xe1\xca\xb5\xdf\xc9\xb6\xe1\xc4\xac\xe0\ +\xc9\xb4\xe0\xc7\xb3\xe4\xc1\xa7\xe9\xbc\x98\xee\xbe\x99\xb3\x87\ +\x63\xf4\xc1\x9a\xdb\xaf\x91\x75\x6e\x62\x48\x44\x38\x43\x3f\x34\ +\x9c\x66\x3a\x4f\x52\x4e\x42\x3c\x32\x85\x61\x42\x6d\x5e\x4f\x60\ +\x49\x32\x53\x50\x47\x3d\x41\x3a\x53\x44\x30\x57\x45\x35\x50\x43\ +\x39\xce\x88\x4f\xe4\xa8\x7b\xef\xb6\x8c\x8f\x75\x61\x29\x36\x31\ +\x46\x34\x1b\x69\x5a\x45\x6b\x58\x43\x69\x6b\x63\x30\x44\x46\x37\ +\x40\x41\x00\x00\x00\x98\x93\x93\x92\x85\x7f\x91\x80\x78\x79\x6e\ +\x62\x5f\x64\x5f\x6c\x75\x74\x65\x70\x6e\x50\x63\x5d\x50\x5d\x55\ +\x56\x5e\x54\x5c\x68\x5e\x53\x5c\x4f\x54\x54\x44\x57\x58\x49\x59\ +\x5f\x58\x58\x56\x4b\x55\x4b\x3f\x59\x5c\x55\x5f\x69\x5d\x60\x5c\ +\x52\x64\x54\x49\x5d\x4b\x3b\x52\x41\x2d\x55\x46\x3a\x60\x54\x4a\ +\x62\x54\x47\x6b\x5c\x55\x6d\x60\x56\x64\x51\x45\x5a\x46\x37\x57\ +\x3f\x30\x53\x3d\x2c\x5a\x49\x3c\x5b\x51\x48\x59\x4d\x41\x5f\x54\ +\x4a\x55\x49\x3b\x62\x5a\x50\x67\x5d\x52\x74\x68\x5c\x7c\x6e\x63\ +\x7f\x72\x6c\x7b\x6b\x5e\x69\x5a\x4d\x7a\x6d\x63\x75\x68\x5d\x75\ +\x65\x58\x80\x6b\x5e\x88\x79\x71\x7e\x6b\x63\x93\x86\x81\xc8\xbf\ +\xb9\xde\xd8\xd2\x6f\x61\x59\x74\x63\x59\x66\x55\x44\x76\x67\x5d\ +\x75\x69\x5c\x73\x65\x57\x7d\x69\x5e\x85\x75\x6b\x86\x78\x71\x82\ +\x6e\x61\x82\x71\x68\xbb\xb1\xa9\x91\x85\x7a\x6c\x5a\x50\x84\x72\ +\x64\xd3\xb9\xa5\xe6\xd5\xc1\xe3\xd4\xc2\xe3\xd4\xc4\xe2\xd1\xbf\ +\xdf\xce\xbc\xe1\xcd\xb7\xe0\xcd\xb8\xe2\xca\xb4\xe3\xcc\xb5\xe5\ +\xcf\xbb\xea\xd4\xc0\xb5\xa2\x96\x8c\x75\x68\x92\x7a\x6d\x95\x7e\ +\x73\x97\x7f\x71\x92\x7c\x71\x91\x79\x6c\x91\x7b\x71\x8b\x70\x62\ +\x8e\x76\x69\x96\x89\x86\x90\x85\x84\x8d\x78\x6f\x83\x6b\x62\x87\ +\x70\x65\x89\x70\x63\xdb\xca\xb8\xda\xd0\xc8\xd4\xc5\xb8\xc7\xb9\ +\xb0\xab\x9d\x95\x99\x82\x76\x92\x7b\x70\x93\x78\x68\xb0\x99\x89\ +\xc9\xb1\x9e\xcf\xc0\xb4\x93\x7d\x74\x8c\x71\x63\x8c\x6d\x5a\x8d\ +\x6e\x5d\x8f\x70\x5f\x8c\x6c\x5a\xa2\x7c\x61\xc6\xb2\xa4\xc8\xbb\ +\xb0\xa9\x9b\x93\x9d\x82\x71\xb1\xa4\x9d\x82\x68\x5c\x85\x67\x58\ +\x8d\x6c\x59\x98\x79\x66\xb7\x9b\x86\xc1\xa8\x94\xe4\xce\xb8\xe2\ +\xd3\xc4\xe1\xd0\xc1\xe0\xcd\xbb\xe2\xc9\xb3\xe0\xca\xb5\xe1\xca\ +\xb6\xe2\xca\xb4\xe4\xcb\xb4\xdb\xbe\xa7\xb5\x9f\x8b\xde\xbb\xa4\ +\xda\xb5\x98\x7c\x75\x6d\x38\x41\x3d\x65\x56\x44\x69\x4b\x31\x67\ +\x5d\x4f\x45\x46\x3d\x94\x74\x57\x91\x6d\x53\xa1\x73\x53\x95\x70\ +\x5b\x8d\x6e\x5b\x55\x45\x37\x6b\x54\x3d\x8f\x6d\x4c\xa6\x7a\x55\ +\xa3\x76\x50\xc2\x94\x70\x3d\x41\x3d\x19\x2e\x2a\x2a\x2c\x1f\x41\ +\x49\x3f\x3b\x49\x43\x3d\x4f\x50\x39\x44\x45\x46\x4a\x43\x00\x00\ +\x00\x84\x79\x75\x85\x77\x74\x8d\x7c\x74\x83\x6d\x61\x7f\x77\x78\ +\xbd\xc0\xc4\xd5\xd5\xd2\x8c\x8e\x8b\x7d\x81\x80\x82\x88\x86\x6d\ +\x78\x72\x51\x5d\x52\x4e\x55\x46\x4e\x55\x46\x50\x57\x4e\x58\x54\ +\x49\x53\x46\x37\x50\x4f\x43\x5a\x53\x4a\x57\x47\x39\x52\x40\x31\ +\x53\x42\x32\x52\x42\x31\x51\x43\x36\x55\x46\x38\x53\x44\x38\x58\ +\x48\x3c\x5c\x4a\x3c\x59\x44\x35\x6f\x5e\x52\x66\x55\x45\x5d\x4d\ +\x40\x83\x79\x70\x94\x8b\x83\x7b\x71\x6a\x6d\x63\x60\x6a\x60\x5a\ +\x7a\x71\x6b\x76\x6e\x6d\x8a\x7b\x72\x8a\x79\x6d\x81\x70\x68\x7e\ +\x6f\x65\x75\x68\x5a\x79\x6b\x5d\x82\x70\x64\x7e\x69\x60\x80\x71\ +\x69\x90\x80\x79\x88\x75\x6d\x74\x63\x5b\x93\x86\x7f\xe0\xd7\xd1\ +\xb2\xa9\xa2\x75\x67\x5e\x6f\x5f\x52\x78\x68\x60\x7b\x6f\x64\x80\ +\x70\x63\x6f\x5b\x4f\x84\x72\x67\x89\x77\x6e\x7f\x69\x5e\x8c\x7e\ +\x75\xa2\x94\x8d\x8f\x7d\x73\xa0\x90\x86\xb4\x9f\x90\xe7\xd5\xc2\ +\xe3\xd2\xbf\xe1\xd0\xbe\xe1\xd1\xbf\xe1\xcf\xbd\xe1\xcd\xb8\xe2\ +\xcb\xb6\xe1\xcb\xb4\xe3\xc7\xad\xe4\xc8\xae\xe3\xce\xbc\xe4\xd2\ +\xc0\xdf\xc8\xb4\xb1\x96\x86\x8a\x72\x67\x94\x7c\x70\x98\x82\x7a\ +\x94\x7e\x70\x94\x7e\x71\x91\x79\x6e\x8e\x72\x63\x94\x77\x66\x8b\ +\x7a\x74\x8a\x79\x74\x88\x71\x65\x7f\x66\x58\x84\x6b\x5e\x9e\x85\ +\x72\xdf\xcd\xbc\xde\xd0\xc6\xbe\xae\xa6\x9a\x8c\x8b\x8b\x78\x73\ +\x8f\x73\x64\x95\x76\x63\xd1\xbc\xa6\xc9\xb7\xaa\xcc\xbd\xb4\x96\ +\x81\x78\x8c\x6b\x5a\x88\x69\x59\x89\x68\x56\x98\x7d\x6d\x8e\x76\ +\x69\x88\x69\x57\x9e\x7e\x69\x85\x6b\x60\x92\x72\x5b\xc5\xb1\x9d\ +\xbd\xae\xa4\xc4\xbb\xb4\x81\x66\x59\xa1\x82\x6d\xb3\x99\x87\xcf\ +\xbc\xaa\xe2\xd5\xc8\xe6\xda\xcf\xe3\xd5\xcb\xe2\xd6\xcb\xe2\xd5\ +\xcb\xe2\xd4\xc9\xe0\xd3\xc8\xe1\xd2\xc4\xe2\xd2\xc4\xe3\xd3\xc3\ +\xe7\xd8\xc9\xb4\xa6\x9b\xb2\xa8\xa0\xb6\x9b\x87\xbf\xb2\xaa\x57\ +\x57\x54\x77\x64\x54\x44\x44\x40\x72\x5e\x47\x88\x79\x6c\x72\x65\ +\x57\xb3\x8c\x6a\x62\x57\x4e\x6a\x4d\x35\x87\x6b\x58\x60\x4c\x3e\ +\x6e\x50\x39\xdc\xa2\x70\xaf\x85\x67\x69\x5e\x51\x4f\x47\x31\x62\ +\x52\x3d\x42\x45\x39\x1d\x37\x2f\x2a\x38\x33\x2e\x3d\x36\x2a\x40\ +\x3b\x21\x39\x37\x32\x43\x41\x3c\x45\x46\x00\x00\x00\x87\x7d\x78\ +\x7d\x6b\x63\x80\x6e\x66\x83\x72\x6d\x94\x8a\x88\xd4\xd4\xd6\xe0\ +\xdf\xe0\xeb\xe9\xe7\xa0\x99\x95\x9c\x94\x91\x95\x89\x7f\x88\x7b\ +\x70\x89\x85\x7a\x6e\x6c\x67\xa1\xa4\xa5\x8c\x88\x84\x74\x6b\x64\ +\x87\x82\x80\x73\x65\x59\x58\x4c\x3e\x68\x5e\x53\x6f\x67\x59\x5a\ +\x51\x45\x5d\x54\x4c\x79\x72\x69\x6a\x5c\x4d\x5c\x54\x46\x58\x4b\ +\x3b\x56\x44\x35\x62\x52\x49\x61\x4f\x40\x5f\x4e\x42\x85\x7f\x79\ +\x81\x7d\x79\xc7\xc3\xc0\x7f\x7a\x78\x83\x79\x73\x83\x79\x73\x7a\ +\x72\x71\x7d\x6d\x64\x8f\x7a\x70\x8d\x78\x6c\x88\x77\x6e\x88\x7a\ +\x70\x83\x75\x6e\x82\x70\x65\x76\x63\x59\x71\x64\x5c\x7f\x72\x6b\ +\x81\x70\x67\x7e\x6c\x60\x81\x71\x68\x9e\x92\x8c\xcb\xc0\xb9\x7e\ +\x70\x66\x6d\x5f\x55\x86\x77\x6d\x7b\x69\x60\x76\x63\x57\x85\x74\ +\x6d\x89\x75\x6c\x90\x7d\x74\x88\x73\x67\x8f\x7a\x73\x7c\x60\x52\ +\x9a\x81\x76\x97\x80\x75\xbf\xa8\x96\xe4\xd2\xbc\xe4\xce\xba\xe3\ +\xcb\xb4\xe2\xcb\xb6\xe0\xcc\xba\xe1\xce\xbc\xe1\xcb\xb7\xe2\xc6\ +\xae\xe5\xbf\x9e\xe6\xc3\xa4\xe1\xcc\xb7\xe2\xce\xba\xe7\xcb\xb3\ +\xe5\xbe\xa0\xb8\x99\x85\x90\x76\x6a\x8f\x77\x6a\x94\x7c\x70\x8f\ +\x79\x6f\x95\x7f\x73\x8f\x75\x67\x8c\x6f\x5f\x88\x6f\x63\x95\x7e\ +\x72\x86\x6e\x63\x84\x6a\x5a\x8a\x70\x61\xcf\xb6\xa0\xdf\xce\xc2\ +\xa8\x97\x92\x8e\x79\x72\x93\x82\x7e\x8e\x78\x6c\x8c\x6f\x5e\xc9\ +\xad\x94\xd3\xc1\xb4\xa1\x8c\x80\xb4\xa1\x95\x8f\x76\x66\x89\x70\ +\x65\xb5\x98\x80\xb3\xa2\x97\xca\xb5\xa3\xbe\xb4\xb2\x91\x6d\x5b\ +\xb6\x94\x78\xcb\xb0\x99\xcb\xb4\xa3\xbb\xa8\x99\xc1\xac\x9c\xe0\ +\xd7\xcd\xc8\xb9\xb0\xe1\xd4\xc6\xe2\xd8\xcf\xe3\xda\xd0\xe3\xdb\ +\xd1\xe1\xd8\xcf\xe0\xd6\xcd\xe1\xd5\xcc\xe0\xd6\xcd\xe0\xd6\xcc\ +\xe2\xd5\xcd\xe0\xd5\xcd\xe2\xd6\xcb\xe5\xd8\xcc\xbd\xb7\xb7\x50\ +\x54\x53\xab\x92\x77\x83\x83\x89\x7a\x73\x6b\x4c\x4e\x4c\x69\x5b\ +\x4a\xba\xaa\x92\xd9\xbd\xa6\xe1\xc8\xb7\x8c\x84\x80\x77\x63\x4f\ +\x73\x62\x52\x4b\x46\x3f\x3d\x35\x2b\x60\x50\x39\xd5\xa7\x7c\xd3\ +\xb0\x96\x96\x78\x5f\x67\x60\x55\x30\x3b\x32\x3f\x43\x38\x34\x3c\ +\x32\x32\x4c\x47\x39\x4c\x4b\x58\x55\x43\x62\x65\x59\x52\x4f\x44\ +\x4c\x53\x4a\x67\x5d\x4d\x00\x00\x00\xc6\xc2\xbf\x9c\x94\x8f\x8a\ +\x7a\x72\xc1\xc4\xcb\xb7\xaf\xab\xd4\xc8\xbe\xa6\x9e\x9f\xb5\xb8\ +\xbe\xa4\x9e\x9c\xa4\xa1\xa2\x9e\x90\x89\x96\x86\x80\x9f\x94\x91\ +\x9f\x98\x96\xab\xaa\xad\x9b\x92\x8c\x95\x86\x80\xa1\x8b\x83\x7b\ +\x6b\x60\x5f\x57\x49\x83\x80\x81\xaa\xa1\x9f\xa2\x92\x8d\x99\x8f\ +\x8c\x95\x85\x7c\x8b\x7a\x75\x8a\x7b\x77\x81\x73\x6c\x62\x56\x4b\ +\x61\x52\x45\x61\x54\x4c\x6b\x62\x5c\x77\x6d\x6a\x8b\x83\x7f\x82\ +\x7a\x77\x80\x78\x75\x8b\x81\x7e\x81\x74\x6d\x8d\x7d\x76\x8b\x79\ +\x6b\x8d\x7d\x71\x8a\x76\x6b\x8e\x7b\x6e\x8b\x7b\x70\x85\x78\x70\ +\x86\x76\x6d\x6e\x59\x4d\x82\x75\x71\x7a\x69\x5f\x81\x72\x67\x83\ +\x70\x64\x87\x78\x71\x83\x73\x6b\xb8\xaf\xa7\x98\x8c\x84\x6d\x5f\ +\x52\x77\x65\x5b\x79\x68\x5d\x83\x74\x6c\x87\x75\x6e\x8a\x77\x6c\ +\x8a\x7b\x73\x8c\x7b\x73\x92\x7b\x72\x91\x7c\x6e\x9e\x87\x7c\x8e\ +\x74\x66\xc8\xb1\x9c\xe2\xce\xbc\xe3\xcc\xba\xe4\xcb\xb4\xe2\xcb\ +\xb3\xe0\xca\xb6\xe2\xc4\xab\xe5\xbc\x9a\xe5\xbd\x98\xe7\xbb\x94\ +\xe6\xbf\x9c\xe6\xc2\xa4\xe6\xc0\xa3\xea\xc0\x9f\xed\xbe\x98\xed\ +\xb8\x90\xa5\x83\x6e\x95\x7e\x72\x92\x7b\x6c\x93\x7e\x6e\x91\x7c\ +\x71\x8c\x79\x6f\x91\x7a\x6a\x9d\x87\x7a\x94\x7e\x73\xab\x96\x86\ +\xb5\xa8\x9e\xb9\xa1\x92\xca\xb8\xaf\x90\x7c\x71\x96\x86\x84\x8d\ +\x73\x67\x93\x80\x7a\x8c\x75\x69\xa6\x85\x6d\xa2\x90\x88\xa1\x88\ +\x79\xad\x92\x7f\xb6\xa0\x91\xbb\xad\xa3\xc6\xae\x96\xdc\xce\xc0\ +\xac\x9b\x91\xd2\xc0\xaf\xa6\x96\x90\xd6\xb6\x9a\xe7\xc9\xb1\xe4\ +\xcf\xb7\xe4\xd5\xc5\xe6\xdd\xd2\xe7\xdf\xd7\xe7\xdf\xd8\xe7\xdf\ +\xd8\xe5\xde\xd7\xe5\xdd\xd7\xe5\xdb\xd5\xe4\xdb\xd2\xe2\xd9\xd0\ +\xe1\xd8\xcf\xe2\xd9\xd0\xe2\xd9\xd0\xe1\xd9\xd0\xe3\xd9\xcf\xe1\ +\xd8\xcf\xe3\xd9\xce\xcb\xc8\xc6\x87\x84\x84\x32\x40\x46\x93\x80\ +\x67\xaa\xa5\xa0\x59\x5c\x5d\xbf\xad\x98\xe5\xd8\xca\xe6\xda\xcc\ +\xe6\xd7\xcb\xe8\xd8\xca\xa5\x9d\x99\x6b\x5f\x57\x34\x37\x34\x5d\ +\x4b\x33\xdc\xb7\x96\xd8\xbc\xa0\xf2\xd5\xbe\xcc\xbb\xb3\x3f\x4d\ +\x50\x2e\x3b\x2f\x77\x67\x47\xc2\x9e\x7b\xd6\xae\x88\x87\x83\x81\ +\x77\x68\x52\x7e\x71\x62\x88\x7f\x77\x53\x52\x4f\x47\x4f\x49\x1f\ +\x29\x2d\x00\x00\x00\xf1\xf1\xf1\xf6\xf6\xf5\xc2\xb6\xaa\x97\x8c\ +\x88\xb2\xaa\xa7\xbd\xab\x9f\x9c\x96\x98\x9f\x90\x86\x8f\x89\x8b\ +\x9c\x97\x99\x9e\x91\x8c\x95\x87\x82\x9e\x95\x93\xa5\xa3\xa5\xaa\ +\xa7\xa6\xa9\xa6\xa7\x9f\x93\x8d\x9b\x87\x7a\x86\x67\x54\x86\x73\ +\x66\x96\x8b\x87\xa3\x96\x91\x98\x86\x7f\xbd\xb1\xaa\xa1\x8e\x81\ +\x8f\x7b\x71\x89\x79\x71\x7a\x70\x6b\xb6\xb5\xb1\xbd\xb7\xaf\xbf\ +\xbb\xb5\x9d\x98\x93\xb3\xaf\xad\xa6\x9f\x9a\x99\x92\x8a\x8d\x7d\ +\x73\x8a\x82\x80\x85\x78\x71\x7f\x71\x67\x89\x79\x6d\x82\x75\x6c\ +\x7f\x70\x64\x82\x74\x68\x82\x74\x6b\x92\x88\x7f\xb3\xa5\x9f\x6f\ +\x5e\x51\x74\x63\x58\x83\x6e\x66\x8b\x7c\x75\x8a\x7a\x73\x87\x7c\ +\x77\x84\x75\x6c\xa2\x95\x8c\xb2\xa6\x9e\x87\x77\x6d\x6c\x5c\x54\ +\x63\x55\x49\x8a\x7a\x71\x84\x70\x65\x8b\x75\x68\x8d\x7c\x72\x85\ +\x73\x6c\x91\x78\x68\x9d\x88\x7c\x84\x67\x58\x8e\x72\x60\xc9\xb1\ +\x9b\xe3\xce\xb9\xe3\xcb\xb5\xe2\xc9\xb1\xe2\xc9\xb2\xe3\xc1\xa6\ +\xeb\xb2\x84\xed\xb0\x7c\xe7\xba\x91\xe6\xbc\x9a\xe8\xba\x95\xe9\ +\xba\x92\xe9\xba\x92\xeb\xbb\x93\xec\xba\x93\xf1\xba\x90\xeb\xb8\ +\x92\xb1\x97\x86\x94\x7c\x71\x8e\x77\x6b\x8f\x79\x6b\x8e\x78\x6a\ +\x94\x7c\x71\xa2\x8b\x7c\x9a\x86\x7c\xca\xbc\xb0\xa1\x90\x8a\x8d\ +\x75\x69\x89\x6d\x60\x95\x7e\x72\x96\x89\x88\x90\x77\x6a\x93\x82\ +\x7c\x8f\x76\x6b\xce\xb4\x9b\xc0\xb6\xb2\x8e\x6e\x5d\xc7\xab\x95\ +\xb9\xa7\x9b\xcd\xbe\xb1\xdb\xca\xbc\xca\xbf\xb7\xba\xa8\x9a\xa6\ +\x93\x88\xd0\xbe\xac\xe8\xe0\xd7\xe6\xdc\xd3\xe8\xdf\xd7\xe8\xe0\ +\xd9\xe7\xe1\xdc\xe7\xe1\xdd\xe6\xe0\xdc\xe6\xe1\xdc\xe7\xe0\xdc\ +\xe7\xde\xda\xe6\xde\xda\xe4\xdc\xd6\xe3\xdc\xd4\xe4\xdb\xd2\xe4\ +\xdb\xd2\xe4\xdb\xd2\xe4\xdb\xd2\xe4\xdc\xd3\xe3\xd9\xd3\xe6\xdc\ +\xd4\xb2\xb3\xb5\x52\x59\x5f\x62\x67\x67\x76\x64\x51\xb8\xad\xa1\ +\xe3\xd6\xc6\xeb\xe2\xdb\xe5\xdf\xd7\xc2\xbe\xba\x9c\x99\x9c\xc8\ +\xb8\xa8\x68\x75\x83\x3f\x40\x3d\x91\x68\x43\xf3\xb9\x87\xf3\xc8\ +\xa6\xf0\xcf\xb4\xd3\xc1\xb6\x85\x81\x7f\x77\x72\x67\x89\x66\x49\ +\xff\xd4\xa3\xf8\xce\xaf\xfd\xd6\xb7\xa5\x9a\x9a\x33\x44\x4f\x56\ +\x51\x41\x8d\x8d\x8c\x26\x38\x3d\x26\x32\x2d\x65\x57\x3f\x00\x00\ +\x00\xcf\xc9\xc5\xa7\x9b\x94\xad\x9a\x8c\x93\x81\x78\xa6\x94\x8d\ +\x8e\x76\x6a\x95\x8e\x8e\x94\x82\x76\x89\x79\x72\xa1\x9d\x9e\xa2\ +\x9c\x9c\x9a\x93\x93\x9d\x91\x8a\x90\x86\x84\xb1\xb0\xb1\xa6\x9e\ +\x9e\x9b\x90\x8b\x9f\x90\x85\x8c\x73\x6a\x97\x83\x79\x94\x81\x78\ +\xa8\x98\x90\x94\x7f\x76\xd5\xca\xc4\xc8\xb4\x9f\x89\x73\x68\x81\ +\x70\x69\x7b\x6b\x65\xc8\xc3\xc0\xf2\xee\xe9\xf2\xee\xe9\xf4\xf0\ +\xeb\xee\xea\xe5\xf0\xed\xe6\xe5\xe1\xdc\xd4\xcd\xc7\xa0\x96\x90\ +\x82\x75\x6c\x72\x61\x57\x78\x6a\x61\x81\x75\x6c\x81\x6e\x62\x81\ +\x6f\x65\x77\x68\x5f\xa6\x9a\x96\xad\xa2\x9c\x7f\x70\x67\x7a\x67\ +\x5d\x86\x72\x66\x8d\x7e\x78\x8a\x7a\x74\x85\x76\x70\x7f\x6a\x5e\ +\xa2\x94\x8a\xb1\xa4\x9c\x81\x70\x68\x7d\x6e\x66\x67\x59\x4d\x72\ +\x60\x52\x83\x71\x68\x81\x6e\x62\x7c\x69\x5d\x8a\x73\x6a\x90\x76\ +\x67\x8b\x6e\x5d\x87\x69\x58\x9a\x7d\x6d\xd7\xc3\xaf\xe2\xd1\xbf\ +\xe2\xce\xbb\xe2\xca\xb4\xe3\xc2\xa7\xe8\xb5\x8c\xed\xaf\x7c\xec\ +\xb2\x81\xe8\xbc\x95\xe8\xba\x94\xec\xb3\x83\xea\xb5\x8a\xeb\xb8\ +\x8f\xeb\xb8\x8e\xeb\xb9\x91\xef\xb8\x8c\xf2\xba\x8e\xf1\xc2\xa0\ +\xae\x94\x85\x8f\x7a\x6d\x8f\x78\x6d\x96\x7e\x72\x97\x81\x76\x93\ +\x7b\x6b\x92\x7b\x70\x85\x6e\x62\x90\x79\x6b\x89\x6d\x5f\x8e\x71\ +\x61\x94\x7e\x72\x9b\x8e\x8e\x92\x77\x6a\x91\x7a\x71\x9c\x7f\x6a\ +\xbd\xa4\x95\xc2\xb5\xac\x8e\x6f\x5e\xbf\xa3\x8d\xd2\xc5\xba\xa3\ +\x90\x89\x9c\x83\x77\xa4\x91\x84\xb2\x9c\x8c\xdf\xcf\xc0\xee\xe8\ +\xe6\xea\xe6\xe3\xeb\xe6\xe4\xeb\xe6\xe4\xeb\xe6\xe4\xeb\xe6\xe4\ +\xea\xe6\xe3\xe9\xe3\xe2\xe7\xe2\xe0\xe6\xe0\xdd\xe5\xdf\xdb\xe5\ +\xdf\xdb\xe6\xdf\xdb\xe6\xde\xdb\xe5\xde\xd8\xe5\xdd\xd8\xe5\xdc\ +\xd6\xe5\xdd\xd6\xe5\xdc\xd8\xe5\xdc\xd8\xdb\xd3\xcc\x97\x98\x9d\ +\x77\x74\x71\x7e\x77\x66\xda\xcb\xb6\xec\xe4\xdd\xe9\xe1\xdc\xe8\ +\xdf\xda\xec\xe2\xdb\xa8\xb4\xc5\x5c\x63\x60\x5d\x60\x5f\x4b\x50\ +\x4e\x75\x6e\x5e\xd1\xa9\x88\xce\xae\x97\xe7\xc2\xa4\xe9\xcf\xbb\ +\xc6\xb2\xa7\x78\x79\x7b\x7c\x68\x4f\xc0\xa5\x92\xeb\xb3\x88\xe5\ +\xb5\x94\xe8\xc3\xa6\x5f\x71\x82\x5a\x4e\x38\x78\x77\x77\x71\x6e\ +\x6b\x30\x3b\x3c\x3a\x48\x40\x4d\x50\x43\x00\x00\x00\x97\x89\x83\ +\x95\x8a\x86\xa4\x89\x76\x8c\x78\x71\x89\x73\x6c\x87\x71\x67\x9c\ +\x9a\x9d\x9a\x8c\x82\x8b\x77\x6f\xa0\x9d\x9d\x94\x89\x87\x99\x94\ +\x95\xa2\x98\x92\x91\x87\x85\x9c\x94\x94\x97\x8a\x84\x93\x80\x79\ +\x92\x7b\x6c\x91\x7b\x71\x94\x7c\x71\x97\x83\x7b\x9f\x8e\x83\xa5\ +\x95\x8c\xe0\xd2\xc9\xb7\x9b\x86\x8b\x74\x68\x8b\x78\x6e\xae\xa5\ +\xa1\xe6\xe3\xdf\xf0\xee\xe9\xec\xe8\xe3\xeb\xe6\xe0\xe9\xe4\xdf\ +\xea\xe6\xe0\xed\xe8\xe3\xef\xeb\xe6\xbd\xb2\xab\x80\x72\x6a\x7d\ +\x6d\x62\x81\x72\x68\x7b\x6e\x66\x6b\x5a\x4b\x72\x62\x58\x7b\x6c\ +\x63\x8d\x7f\x79\x89\x7b\x73\x89\x7c\x73\x87\x75\x6a\x82\x6f\x63\ +\x89\x79\x70\x87\x74\x6b\x88\x77\x6e\x79\x63\x54\xad\xa2\x99\xd0\ +\xc4\xbc\x91\x81\x79\x7a\x69\x60\x74\x63\x59\x69\x5a\x4d\x82\x70\ +\x66\x78\x65\x5a\x73\x60\x53\x91\x7a\x6f\x91\x78\x69\x90\x73\x62\ +\x93\x74\x60\xca\xb4\xa0\xe4\xd5\xc4\xe2\xd3\xc2\xe0\xcd\xbb\xe3\ +\xc2\xa4\xe8\xb8\x91\xeb\xb3\x84\xee\xad\x79\xf1\xab\x76\xe8\xbb\ +\x95\xe7\xbd\x99\xeb\xb3\x87\xeb\xb4\x88\xea\xb6\x8e\xec\xb5\x89\ +\xed\xb6\x8a\xed\xb9\x8f\xed\xbb\x93\xf2\xbb\x90\xd9\xa8\x83\x8e\ +\x76\x6b\x90\x78\x6c\x90\x77\x6c\x94\x7c\x71\x8d\x78\x6e\x94\x7d\ +\x71\x90\x7a\x6e\x8c\x70\x60\x8b\x6f\x60\x91\x74\x64\x96\x7f\x73\ +\x96\x88\x89\x95\x7a\x6b\x91\x76\x68\x90\x72\x5f\xb1\x94\x7d\xd1\ +\xc4\xb9\x8c\x71\x64\xa9\x8e\x79\xb0\x9e\x95\xa5\x94\x8a\x81\x65\ +\x58\xa8\x8c\x76\xe1\xd5\xc8\xef\xea\xe8\xec\xe8\xe8\xee\xe8\xe9\ +\xee\xea\xeb\xef\xec\xec\xee\xeb\xec\xee\xeb\xeb\xed\xe9\xe9\xec\ +\xe6\xe8\xea\xe5\xe4\xe8\xe3\xe0\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\ +\xde\xe4\xdf\xdc\xe6\xde\xdb\xe6\xdf\xdb\xe6\xdd\xd9\xe6\xde\xdb\ +\xe5\xde\xda\xe5\xdc\xd8\xbb\xb8\xba\x54\x5a\x5f\x92\x81\x66\xe7\ +\xda\xcb\xe7\xdf\xd6\xe5\xdd\xd7\xe8\xdf\xda\xe9\xe0\xdc\xe9\xe0\ +\xdc\xe5\xe2\xe1\x5a\x68\x76\x56\x5b\x5e\x80\x73\x5c\xdf\xcd\xbc\ +\xe7\xda\xd1\xb1\xb1\xb9\x92\x85\x79\xc6\xae\x9c\xe1\xc3\xab\xb7\ +\xb1\xb7\x92\x7b\x66\x9b\x8f\x81\x9f\x85\x72\xa4\x7f\x5e\xa6\x85\ +\x71\x4d\x5b\x5b\x3c\x39\x2c\x75\x72\x6d\x28\x2f\x30\x40\x42\x36\ +\x5d\x66\x5f\x5b\x5b\x51\x00\x00\x00\x8d\x7a\x71\x98\x8c\x89\xc4\ +\xb1\xa2\x89\x73\x6d\x7f\x68\x5e\x85\x75\x6f\x97\x95\x98\x9f\x9b\ +\x96\x91\x80\x7b\xa8\xa7\xa9\x96\x8d\x8c\x98\x94\x93\x9e\x91\x86\ +\x86\x77\x74\xa8\xa0\x9b\x95\x83\x77\x8f\x78\x6c\x8a\x6f\x60\x8f\ +\x77\x68\x91\x78\x6d\x95\x7f\x71\x98\x84\x7a\xbf\xb1\xa8\xbd\xaf\ +\xa7\xbb\xa4\x94\x8b\x73\x65\x8e\x75\x65\x97\x84\x79\xa0\x91\x8a\ +\xb1\xa5\xa0\xde\xdb\xd7\xf2\xec\xe5\xec\xe8\xe2\xec\xe7\xe1\xea\ +\xe6\xe0\xe9\xe5\xe0\xbd\xb1\xa5\x70\x62\x5a\x80\x70\x66\x7a\x6b\ +\x5e\x74\x65\x5a\x69\x5a\x4d\x6f\x5d\x52\x79\x67\x5b\x84\x71\x67\ +\x85\x75\x6c\x86\x76\x6b\x88\x77\x6e\x80\x6a\x60\x88\x76\x70\x8c\ +\x77\x6c\x8a\x76\x6d\x7d\x66\x58\x98\x88\x81\xda\xcf\xc8\xb4\xa7\ +\x9f\x6e\x5d\x53\x7a\x68\x5e\x7a\x6b\x5f\x63\x53\x48\x62\x52\x44\ +\x8f\x7f\x75\x91\x79\x6c\x92\x76\x68\x91\x77\x68\xb6\x9f\x8c\xe5\ +\xd1\xbd\xe5\xc8\xb3\xe5\xc3\xa8\xe6\xbc\x97\xea\xb6\x8c\xee\xb0\ +\x7f\xee\xaf\x7c\xef\xae\x7a\xee\xad\x7a\xed\xb1\x80\xe8\xb7\x8f\ +\xec\xb2\x82\xed\xb0\x80\xea\xb5\x87\xec\xb2\x83\xed\xb1\x81\xed\ +\xb5\x89\xef\xb5\x88\xf5\xb0\x79\xf5\xb1\x7c\xd2\xa2\x81\x93\x79\ +\x6a\x90\x77\x6a\x8b\x72\x66\x8a\x76\x6b\x88\x70\x67\x89\x6e\x60\ +\x8f\x73\x65\x8d\x70\x61\x93\x77\x68\x95\x7d\x70\x91\x7b\x77\x95\ +\x7a\x6b\x8e\x71\x63\xa8\x89\x75\xce\xbb\xac\xa9\x97\x8c\x91\x78\ +\x6c\x9f\x7b\x63\x95\x76\x67\x89\x68\x57\xb6\x8e\x6d\xe5\xdb\xcd\ +\xe9\xe4\xe1\xe8\xe2\xe0\xe9\xe4\xe2\xeb\xe6\xe4\xee\xec\xec\xef\ +\xee\xee\xf0\xee\xee\xef\xed\xed\xee\xec\xec\xed\xe8\xe8\xec\xe6\ +\xe7\xea\xe4\xe4\xe9\xe3\xe3\xe8\xe3\xe0\xe7\xe2\xdf\xe7\xe2\xdf\ +\xe7\xe2\xe0\xe7\xe2\xdf\xe7\xe0\xdd\xe7\xe1\xdd\xe5\xde\xdb\xdb\ +\xd5\xd3\xb3\xb0\xae\x8a\x80\x75\xd0\xbb\xa3\xe2\xd8\xcf\xe5\xdc\ +\xd3\xe5\xdc\xd7\xe5\xdd\xd7\xe7\xde\xda\xe9\xe0\xdc\xd2\xcf\xcf\ +\x53\x6e\x84\x55\x53\x44\xba\xac\x99\xe4\xd8\xca\xd7\xd1\xd1\xa0\ +\xa6\xb0\xa1\x97\x8e\x8d\x82\x79\x91\x81\x73\x8f\x8b\x8c\x8f\x7a\ +\x67\x64\x67\x69\x75\x69\x5d\x55\x57\x4e\x48\x57\x4e\x39\x4d\x4e\ +\x21\x2f\x2b\x31\x34\x30\x30\x3c\x36\x44\x4a\x42\x52\x5a\x5d\x66\ +\x5c\x52\x00\x00\x00\x90\x80\x79\x8f\x84\x84\x9e\x8a\x7a\x7d\x67\ +\x61\x91\x85\x83\xb4\xb1\xb0\x99\x90\x8f\x9c\x98\x97\x95\x88\x85\ +\x91\x84\x82\xa2\xa0\xa3\xa4\xa1\xa2\x93\x89\x88\x98\x8c\x87\x9b\ +\x90\x8c\x9b\x8e\x86\x93\x81\x78\x89\x6d\x5c\x89\x6f\x61\x8e\x78\ +\x6a\x97\x81\x78\xb0\xa1\x99\xa0\x8b\x7e\x8e\x70\x5f\x8a\x70\x63\ +\x91\x77\x69\x90\x76\x66\x8f\x75\x63\x88\x6c\x5d\x86\x67\x52\x88\ +\x6f\x61\x9e\x92\x8c\xc1\xb7\xb3\xe0\xd6\xcd\xe6\xe4\xe2\xf8\xf8\ +\xf6\xe0\xda\xd2\x7d\x6b\x62\x7f\x6f\x67\x8c\x82\x7b\x78\x6a\x5f\ +\x64\x58\x47\x77\x67\x5a\x88\x75\x6c\x84\x6d\x62\x82\x70\x65\x87\ +\x74\x68\x8d\x7b\x73\x78\x62\x52\x86\x74\x69\x92\x7d\x71\x8b\x75\ +\x6a\x7e\x67\x5c\x82\x71\x68\x85\x79\x74\x8d\x83\x7e\x9c\x8f\x88\ +\x7b\x6a\x60\x74\x63\x59\x65\x54\x45\x62\x50\x41\x89\x78\x6f\x92\ +\x78\x66\x92\x79\x6d\xab\x90\x7f\xe4\xcd\xb9\xe4\xcf\xba\xe6\xc6\ +\xa9\xe8\xbd\x98\xe7\xbc\x99\xe9\xb7\x8d\xef\xad\x76\xed\xb1\x81\ +\xed\xb3\x83\xec\xb2\x84\xef\xae\x7d\xef\xac\x7a\xf1\xab\x73\xf0\ +\xab\x71\xec\xb3\x85\xea\xb8\x8f\xed\xb2\x82\xed\xb1\x82\xf1\xb0\ +\x7e\xf3\xae\x79\xf8\xb0\x75\xf1\xb7\x8a\xc9\xa0\x84\x90\x78\x6b\ +\x8a\x71\x64\x86\x6f\x66\x90\x7a\x70\x8b\x6b\x59\x92\x76\x67\x8e\ +\x71\x62\x90\x79\x6d\x91\x79\x6a\x9a\x7f\x70\x95\x79\x6b\x8d\x6e\ +\x5c\xaf\x8f\x79\xbb\xb0\xaa\xb9\x99\x80\xc1\x9c\x85\xde\x97\x62\ +\xdc\x9b\x6c\xe2\xa3\x73\xec\xb4\x87\xe5\xd3\xc0\xe6\xdf\xda\xe6\ +\xdf\xda\xe6\xdf\xda\xe6\xe1\xdd\xe8\xe4\xe1\xec\xe8\xe7\xee\xec\ +\xec\xee\xec\xec\xed\xec\xec\xef\xea\xeb\xed\xeb\xeb\xed\xe6\xe7\ +\xea\xe4\xe5\xe9\xe4\xe3\xe9\xe4\xe3\xea\xe5\xe4\xeb\xe5\xe4\xea\ +\xe4\xe5\xea\xe5\xe3\xe9\xe5\xe2\xe8\xe3\xe1\xe2\xdb\xd8\xbd\xb7\ +\xb5\xcc\xb9\xa7\xe2\xd2\xc3\xe1\xd8\xd0\xe5\xdc\xd4\xe3\xda\xd7\ +\xe4\xdb\xd7\xe6\xdd\xd9\xe7\xdd\xd9\xe8\xe1\xdd\x8f\x95\xa0\xd1\ +\xc6\xb7\x9b\x9c\x9d\xa4\x96\x84\xdb\xda\xd7\x6d\x77\x80\x46\x53\ +\x57\x35\x46\x49\x41\x46\x3c\x58\x64\x69\x37\x3b\x34\x2f\x41\x43\ +\x40\x42\x38\x47\x50\x4a\x3e\x56\x59\x31\x4c\x54\x30\x4a\x4b\x29\ +\x34\x33\x30\x41\x3b\x36\x45\x40\x47\x51\x54\x93\x75\x56\x00\x00\ +\x00\x85\x70\x65\x94\x8a\x8b\xa8\x9c\x8f\x8c\x74\x66\xa2\x9d\xa2\ +\xe5\xe7\xea\xab\xa3\x9f\x9c\x9d\xa3\xa3\xa0\x9f\x95\x86\x81\xa6\ +\xa7\xae\xb4\xb2\xb2\x91\x7c\x73\x94\x88\x82\x91\x80\x77\x9d\x92\ +\x8d\x96\x84\x7b\x92\x7b\x6d\x93\x7e\x73\x93\x7b\x6f\x92\x7c\x73\ +\x8e\x76\x69\x84\x68\x59\x8f\x73\x65\x83\x67\x58\x97\x84\x7b\x94\ +\x7d\x71\x91\x77\x67\x87\x6b\x5e\x89\x6d\x59\x87\x6b\x59\x8b\x74\ +\x68\xb5\xa7\xa0\xdb\xce\xc4\xd4\xca\xc1\xda\xdb\xdd\xa9\xa6\xa7\ +\xa2\x99\x94\x7e\x6d\x63\x77\x69\x61\x71\x63\x59\x73\x64\x55\x8b\ +\x7b\x71\x86\x75\x6c\x74\x62\x55\x73\x62\x55\x84\x70\x67\x86\x75\ +\x6c\x78\x62\x52\x86\x72\x68\x8f\x7d\x70\x86\x71\x65\x7e\x69\x61\ +\x7d\x69\x5e\x76\x65\x5d\x81\x75\x6c\x84\x75\x6a\x7d\x66\x58\x72\ +\x60\x51\x6b\x59\x4d\x7c\x69\x5f\x90\x7c\x72\x9b\x7f\x6d\xae\x8c\ +\x75\xec\xbc\x95\xec\xbf\x9c\xe7\xc2\xa3\xe5\xc3\xa5\xe6\xc2\xa2\ +\xe6\xbf\x9f\xe7\xb9\x92\xe9\xb8\x8c\xe7\xbc\x96\xe7\xbe\x9c\xe7\ +\xb9\x94\xe9\xb6\x8e\xf0\xab\x73\xf2\xa8\x6b\xf1\xab\x70\xec\xb3\ +\x84\xe7\xba\x99\xe9\xb8\x92\xec\xb3\x87\xee\xb0\x80\xf1\xaf\x7b\ +\xf4\xad\x76\xf5\xb0\x7b\xf5\xb4\x84\xcf\xa6\x88\x93\x7a\x6b\x9e\ +\x86\x7a\x91\x7a\x70\x88\x67\x50\x91\x74\x62\x91\x75\x65\x8e\x75\ +\x68\x9b\x7d\x6a\x9a\x81\x74\x95\x75\x63\x93\x78\x68\xae\x82\x65\ +\xcb\x9f\x83\xf4\xb2\x81\xfc\xac\x6f\xfa\xab\x6f\xf8\xaa\x6e\xf4\ +\xac\x74\xf1\xae\x7c\xec\xb5\x8a\xe2\xce\xbc\xe0\xd3\xc8\xdf\xcf\ +\xc5\xe1\xd3\xc7\xe5\xdc\xd5\xe8\xe3\xde\xe8\xe4\xe1\xea\xe4\xe4\ +\xed\xe9\xe9\xee\xea\xeb\xed\xeb\xeb\xee\xe9\xea\xed\xea\xeb\xed\ +\xe8\xe9\xed\xe7\xe8\xed\xe7\xe8\xec\xe8\xe9\xed\xe7\xe8\xec\xe7\ +\xe8\xeb\xe7\xe7\xe9\xe4\xe3\xe6\xe0\xdf\xe5\xdb\xd5\xe0\xd3\xc7\ +\xe1\xd6\xca\xe2\xd9\xd0\xe4\xdb\xd3\xe4\xdc\xd7\xe4\xdb\xd5\xe6\ +\xdd\xd9\xe8\xde\xda\xd8\xd5\xd6\xe1\xd5\xca\xcf\xcc\xd0\xb1\xab\ +\xa6\xcb\xc4\xba\xcb\xc4\xc0\x81\x8b\x95\x76\x78\x73\x30\x4f\x5c\ +\x2f\x42\x3d\x35\x46\x4c\x2a\x42\x44\x27\x3f\x3b\x31\x40\x38\x48\ +\x53\x50\x25\x38\x3b\x1e\x37\x3e\x25\x3c\x30\x3d\x4d\x48\x35\x45\ +\x48\x47\x4d\x43\x57\x58\x52\x71\x63\x50\x00\x00\x00\x9e\x91\x8e\ +\xaa\xa6\xa6\xe9\xe8\xe7\xf4\xf0\xed\xd9\xd6\xd5\xc2\xc3\xc6\xab\ +\xad\xaf\xa0\xa2\xa6\xa8\xaa\xae\xa3\x9f\xa0\xad\xb1\xb7\x9e\x97\ +\x95\x8e\x79\x6d\x93\x83\x7d\x9c\x97\x96\x98\x8c\x86\x95\x80\x76\ +\x88\x6f\x60\x90\x77\x6a\x8e\x76\x68\x9a\x85\x7c\x98\x7e\x6b\x8a\ +\x74\x6d\x93\x7c\x70\x7e\x5b\x49\x8e\x7b\x73\x97\x81\x77\x8e\x72\ +\x63\x84\x67\x57\x8b\x6f\x62\x88\x6b\x5d\x92\x7b\x6f\xc0\xb2\xac\ +\xdd\xcd\xc4\xa7\x92\x86\x9d\x9d\xa0\xa4\x9e\x9b\xbe\xb9\xb7\x7d\ +\x6d\x66\x81\x71\x69\x7e\x70\x66\x85\x74\x6e\x89\x77\x71\x86\x74\ +\x6b\x78\x63\x55\x74\x61\x55\x77\x64\x5d\x86\x75\x6b\x7e\x6c\x63\ +\x7f\x6e\x65\x80\x6e\x64\x7e\x6a\x5e\x7b\x65\x5b\x76\x61\x58\xa5\ +\x92\x86\xae\x98\x89\xbf\x94\x72\xe5\xaf\x83\xcf\xa2\x7f\x96\x76\ +\x61\xb6\x99\x85\xa3\x86\x75\xea\xb8\x90\xf7\xba\x8a\xef\xb8\x8a\ +\xee\xb6\x88\xea\xba\x91\xe7\xbe\x9b\xe3\xc3\xa7\xe4\xc6\xae\xe4\ +\xc4\xab\xe4\xc3\xa8\xe4\xc2\xa6\xe4\xc6\xac\xe4\xc5\xa9\xe7\xb8\ +\x94\xf0\xab\x72\xf3\xa9\x6b\xf3\xa9\x6a\xf1\xab\x70\xea\xb8\x90\ +\xe6\xbc\x9d\xe9\xb5\x8f\xee\xb0\x81\xf0\xae\x7c\xf3\xad\x78\xf7\ +\xad\x71\xf6\xae\x73\xfb\xb7\x81\xda\xb4\x97\x9c\x83\x73\x8c\x6f\ +\x5d\x88\x65\x51\x92\x73\x61\x95\x76\x64\x95\x76\x64\x93\x76\x65\ +\x92\x6f\x5c\xac\x82\x68\xad\x82\x66\xe9\x9f\x6a\xfd\xab\x6e\xfa\ +\xa9\x6c\xf7\xa9\x6c\xf7\xa8\x6b\xf7\xa7\x6b\xf6\xa7\x69\xf6\xa6\ +\x6a\xf3\xa6\x6c\xee\xab\x78\xe4\xbb\x9a\xe3\xbc\xa0\xe3\xba\x9c\ +\xe2\xc7\xaf\xe8\xe2\xdb\xe9\xe4\xe1\xe7\xe2\xde\xea\xe4\xe2\xea\ +\xe4\xe5\xea\xe5\xe5\xed\xe7\xe8\xec\xe9\xe9\xed\xe9\xe9\xeb\xe8\ +\xe8\xec\xe6\xe7\xec\xe8\xe8\xed\xea\xea\xee\xea\xeb\xec\xe8\xe9\ +\xea\xe4\xe5\xe7\xe1\xe0\xe4\xdc\xd7\xe2\xd8\xcf\xe3\xd9\xce\xe3\ +\xda\xd2\xe3\xda\xd1\xe4\xda\xd3\xe4\xdb\xd4\xe6\xde\xd8\xe7\xde\ +\xda\xe6\xdd\xd9\xdc\xd8\xd5\x7d\x86\x95\x75\x6e\x61\xc3\xbb\xaa\ +\xc6\xc2\xc4\x5c\x76\x8f\x34\x3e\x39\x4e\x5b\x59\x45\x57\x55\x4a\ +\x5e\x5e\x28\x3f\x3c\x36\x45\x44\x3c\x48\x47\x4e\x4d\x46\x1b\x31\ +\x33\x1d\x38\x39\x2c\x47\x45\x30\x40\x3d\x25\x3a\x37\x70\x62\x4d\ +\xb2\x8d\x6e\xbd\xa4\x8a\x00\x00\x00\xdd\xda\xdb\xf8\xf3\xf0\xf0\ +\xec\xe7\xf3\xee\xeb\xf6\xf2\xf0\xf6\xf4\xf3\xda\xd9\xd7\x9f\x9f\ +\x9f\xac\xaf\xb5\xa0\xa3\xaa\xa8\xaa\xaf\x9e\x99\x96\x9d\x90\x89\ +\x8e\x79\x6e\xa0\x9d\x9d\x99\x8c\x84\x94\x81\x76\x88\x6d\x5b\x8c\ +\x6f\x63\x8d\x73\x65\x9d\x8b\x82\xa4\x91\x85\x94\x89\x85\x8a\x6e\ +\x5f\x8c\x72\x64\x86\x6c\x60\x9d\x8a\x80\x9e\x87\x78\x91\x78\x6a\ +\x8e\x73\x67\x89\x6c\x5c\x97\x82\x77\xce\xbe\xb7\xdd\xc9\xc0\xce\ +\xbd\xb4\xd3\xd5\xd6\xbd\xb5\xac\xc7\xc2\xbd\x76\x6a\x61\x75\x66\ +\x5d\x7d\x6d\x64\x7e\x6b\x63\x86\x71\x68\x83\x71\x67\x86\x74\x6a\ +\x7f\x6a\x5e\x70\x5d\x4e\x90\x80\x77\x76\x65\x5a\x7b\x6a\x61\x7e\ +\x6b\x61\x7b\x67\x5b\x7a\x65\x5b\xa6\x8d\x7a\xef\xc4\xa1\xef\xb5\ +\x88\xf8\xb9\x86\xf4\xbb\x8c\xf2\xc2\x9b\xf4\xc8\xa2\xea\xbe\x9c\ +\xd6\xa7\x85\xee\xb7\x88\xf0\xb8\x87\xeb\xbb\x93\xea\xba\x91\xe7\ +\xbd\x97\xe6\xbd\x99\xe4\xc0\x9f\xe2\xc7\xae\xe1\xc9\xb4\xe1\xc8\ +\xb2\xe1\xc7\xb2\xe1\xcc\xb7\xe2\xc6\xaf\xed\xac\x7a\xf2\xa9\x6d\ +\xf3\xa8\x6a\xf5\xa7\x69\xf5\xa7\x6a\xed\xaf\x7f\xe7\xb9\x95\xe9\ +\xb5\x90\xec\xb2\x86\xf0\xae\x7d\xf1\xad\x79\xf6\xa9\x70\xf8\xaa\ +\x70\xf6\xae\x77\xf4\xbd\x94\xce\xa3\x84\xa1\x7d\x67\x87\x69\x58\ +\x91\x73\x61\x94\x76\x63\x94\x75\x65\x9e\x76\x5e\xba\x81\x5d\xf3\ +\xa6\x6f\xfb\xad\x71\xfb\xab\x6e\xf9\xa9\x6c\xf7\xa8\x69\xf8\xa7\ +\x68\xf7\xa6\x68\xf7\xa6\x68\xf7\xa6\x68\xf6\xa5\x68\xf5\xa4\x66\ +\xf4\xa3\x66\xf0\xa8\x71\xee\xa8\x75\xef\xa5\x6d\xea\xb0\x81\xe4\ +\xd6\xc8\xe6\xe0\xdb\xe8\xe2\xdf\xe9\xe2\xe0\xe7\xe2\xe1\xe5\xe0\ +\xdc\xe7\xe1\xdf\xe7\xe1\xdf\xe7\xe1\xdf\xe7\xe1\xe0\xe7\xe1\xe0\ +\xe8\xe3\xe3\xeb\xe6\xe6\xed\xe8\xe9\xec\xe6\xe8\xeb\xe5\xe6\xe9\ +\xe3\xe3\xe7\xe2\xde\xe6\xdf\xda\xe5\xdd\xd7\xe5\xdd\xd6\xe3\xd9\ +\xd2\xe1\xd7\xce\xe4\xd9\xd1\xe5\xdd\xd7\xe7\xdd\xd9\xe3\xda\xd5\ +\xd9\xd1\xcc\xaf\xb3\xb8\x4f\x5f\x66\x51\x5a\x50\x42\x4c\x4f\x43\ +\x57\x5d\x31\x40\x3c\x3f\x4e\x51\x3d\x4d\x4c\x49\x5a\x5f\x20\x34\ +\x35\x3e\x4e\x4c\x24\x37\x40\x2c\x3c\x3b\x2e\x48\x46\x3e\x4f\x4c\ +\x66\x6c\x63\x4b\x56\x56\x34\x40\x3f\x2a\x33\x33\x6a\x57\x41\x7e\ +\x7a\x78\x00\x00\x00\xf1\xed\xeb\xf4\xef\xec\xf2\xed\xea\xf4\xef\ +\xec\xf3\xee\xec\xf5\xf1\xef\xf1\xea\xe6\x9d\x9c\x9a\x97\x91\x91\ +\x97\x96\x9d\x9d\x99\x9b\x92\x8b\x8b\x9d\x91\x88\x87\x72\x69\x99\ +\x92\x8f\x91\x7f\x76\x91\x7b\x71\x95\x80\x73\x8a\x6e\x5e\x92\x7e\ +\x75\xa6\x9c\x98\xac\xa6\xa6\xa1\x9d\x9a\x91\x78\x6b\x8f\x77\x6c\ +\x8d\x7a\x73\xb6\xae\xab\xe0\xdb\xd3\xd4\xca\xbf\x92\x7d\x70\x8b\ +\x6d\x5e\x9a\x88\x7e\xd4\xc4\xbb\xde\xcc\xc1\xdc\xcc\xc2\xe1\xd8\ +\xd3\xdf\xd8\xce\xc8\xbc\xb1\x7c\x6c\x61\x68\x5a\x50\x80\x74\x6c\ +\x7d\x6a\x62\x84\x72\x69\x85\x74\x67\x89\x78\x70\x8d\x7c\x73\x7e\ +\x6a\x5f\x87\x76\x6c\x7c\x6c\x61\x71\x61\x56\x83\x71\x6a\x76\x61\ +\x58\x78\x62\x56\xe5\xd0\xb9\xf0\xc7\xa1\xf5\xb9\x87\xf5\xb5\x81\ +\xf0\xb7\x86\xea\xc3\xa1\xe7\xcb\xaf\xea\xc3\xa2\xf0\xb9\x8b\xf1\ +\xb2\x7f\xec\xb8\x8c\xe7\xc0\x9e\xe5\xc3\xa3\xe5\xc0\x9e\xe6\xbf\ +\x9d\xe4\xc3\xa4\xe2\xca\xb3\xe0\xcb\xb7\xe0\xc7\xb0\xe1\xc8\xb0\ +\xe2\xc3\xac\xe6\xb9\x96\xf2\xa7\x6c\xf4\xa7\x69\xf4\xa7\x69\xf6\ +\xa6\x69\xf6\xa6\x68\xf3\xa8\x6d\xef\xad\x79\xef\xac\x7a\xf1\xaa\ +\x75\xf4\xa7\x6d\xf5\xa7\x6c\xf6\xa8\x6c\xf6\xa8\x6d\xf7\xaa\x6f\ +\xf0\xb5\x8b\xf3\xb7\x8c\xe8\xa5\x72\xb8\x89\x6c\x91\x75\x65\x8a\ +\x6f\x5f\x9a\x72\x58\xe5\x9e\x6a\xf2\xa6\x6f\xfc\xab\x6f\xf9\xa9\ +\x6c\xf8\xa8\x6c\xf6\xa6\x6a\xf7\xa5\x67\xf6\xa5\x66\xf7\xa5\x67\ +\xf5\xa4\x67\xf6\xa4\x67\xf6\xa5\x68\xf5\xa3\x66\xf5\xa4\x68\xf4\ +\xa3\x66\xf4\xa2\x64\xf4\xa1\x64\xf3\xa3\x69\xec\xb0\x7f\xe4\xc2\ +\xa6\xe1\xcb\xb9\xe1\xd2\xc7\xe0\xc7\xb9\xe2\xc6\xb1\xe0\xce\xc1\ +\xe0\xd4\xca\xe1\xd8\xd1\xe1\xd9\xd1\xe3\xda\xd5\xe5\xdc\xd9\xe6\ +\xe0\xdd\xea\xe4\xe2\xeb\xe5\xe5\xea\xe4\xe6\xe9\xe3\xe5\xe8\xe3\ +\xe1\xe8\xe3\xe1\xe7\xe2\xdf\xe5\xdf\xdc\xe2\xd8\xd4\xe2\xd6\xcd\ +\xe4\xda\xd1\xe5\xdb\xd5\xe2\xd8\xd3\xe2\xd6\xce\xdb\xcb\xc3\x95\ +\x94\x9a\x51\x5e\x62\x1a\x30\x2f\x20\x31\x2b\x39\x45\x40\x31\x3c\ +\x36\x43\x55\x53\x44\x56\x58\x2c\x40\x4a\x22\x33\x31\x4e\x56\x4f\ +\x3a\x4f\x57\x2e\x42\x43\x36\x52\x55\x4f\x5e\x60\x59\x60\x5f\x2c\ +\x3f\x48\x3e\x40\x37\x2d\x3b\x40\x4b\x46\x34\x8f\x7d\x6b\x00\x00\ +\x00\xf1\xeb\xe8\xf3\xee\xea\xf3\xed\xed\xf5\xef\xee\xf3\xee\xee\ +\xf4\xef\xee\xf8\xf5\xf2\xaa\x9e\x94\x87\x7b\x7d\x90\x8f\x96\xa1\ +\x9e\x9d\x90\x8a\x8b\xa2\x94\x8b\x86\x70\x6b\x9b\x93\x92\x8d\x77\ +\x6b\x8e\x77\x67\x86\x6a\x5b\x8a\x70\x63\xa2\x9d\xa3\xb1\xb0\xaf\ +\x9f\x9c\x9e\xa9\xa8\xa9\xa6\x97\x8f\x90\x7d\x75\x94\x89\x88\x97\ +\x8a\x88\xdf\xdf\xe3\xfe\xfe\xfc\xc6\xbc\xb4\x8d\x6c\x5d\xa2\x8f\ +\x87\xe1\xd1\xc8\xde\xcd\xc2\xdd\xca\xc1\xdc\xcd\xc4\xdd\xce\xc5\ +\xde\xd3\xc8\xa7\x96\x8c\xa5\x9e\x9c\xed\xec\xea\x98\x8c\x84\x7c\ +\x6b\x64\x85\x72\x68\x84\x74\x6d\x8e\x7e\x78\x86\x71\x6a\x84\x71\ +\x68\x80\x6d\x60\x7a\x69\x5e\x7c\x6a\x63\x70\x5c\x4d\xd9\xca\xbb\ +\xe9\xdd\xcd\xe9\xcc\xb1\xef\xba\x8d\xf0\xb4\x83\xed\xb8\x8b\xe8\ +\xc3\xa1\xe3\xcf\xba\xe5\xcd\xb5\xe8\xc0\x9c\xec\xb6\x88\xe7\xbe\ +\x99\xe4\xc7\xab\xe3\xce\xb8\xe4\xce\xb8\xe4\xd1\xbc\xe4\xd3\xc3\ +\xe2\xd3\xc1\xe1\xd0\xbd\xe2\xc5\xad\xe3\xc1\xa7\xe6\xba\x9b\xec\ +\xaf\x7f\xf0\xa9\x75\xf3\xa6\x6a\xf5\xa7\x69\xf6\xa6\x6b\xf6\xa7\ +\x68\xf5\xa5\x68\xf5\xa6\x69\xf5\xa6\x68\xf5\xa5\x67\xf6\xa5\x68\ +\xf6\xa6\x68\xf6\xa7\x6a\xf6\xa7\x6b\xf7\xa6\x6d\xf5\xab\x74\xf5\ +\xae\x7a\xf8\xab\x72\xf4\xa9\x6f\xd7\x9d\x76\xa9\x84\x6f\xd8\x94\ +\x64\xfa\xab\x6d\xf9\xaa\x6d\xf9\xa8\x6b\xf8\xa6\x69\xf7\xa6\x69\ +\xf7\xa5\x68\xf7\xa5\x67\xf6\xa4\x67\xf7\xa4\x66\xf6\xa4\x65\xf6\ +\xa3\x65\xf6\xa3\x65\xf4\xa3\x66\xf5\xa3\x66\xf5\xa2\x65\xf5\xa2\ +\x65\xf4\xa2\x64\xf4\xa1\x64\xf3\xa0\x63\xf1\xa4\x6b\xec\xa9\x77\ +\xeb\xa9\x7a\xed\xa7\x75\xec\xa8\x77\xe5\xb5\x91\xe2\xbd\xa1\xdf\ +\xc5\xb2\xde\xcd\xbf\xe2\xd5\xce\xe5\xdb\xd4\xe4\xdc\xd8\xe5\xe0\ +\xdb\xe6\xe1\xdf\xe8\xe3\xe0\xe8\xe3\xe0\xe8\xe3\xdf\xe8\xe3\xe1\ +\xe6\xe0\xde\xe7\xde\xdb\xe1\xd9\xd2\xe2\xd5\xcd\xe4\xd8\xd0\xe4\ +\xd9\xd0\xe1\xce\xc7\xe0\xca\xbf\x96\x8d\x90\x74\x74\x77\x50\x54\ +\x4e\x21\x35\x35\x22\x35\x32\x2b\x38\x32\x3f\x55\x52\x39\x55\x54\ +\x4c\x60\x66\x36\x4c\x66\x18\x24\x2e\x2b\x3a\x32\x3d\x52\x52\x29\ +\x43\x40\x43\x52\x48\x8f\x8d\x7f\x5d\x72\x7c\x53\x62\x63\x2e\x3c\ +\x3c\x22\x2d\x2b\x24\x31\x30\x6a\x5b\x40\x00\x00\x00\xed\xe8\xe5\ +\xf1\xec\xeb\xf4\xef\xed\xf3\xef\xee\xf3\xef\xee\xf4\xef\xee\xf3\ +\xf0\xf0\xf5\xf2\xed\xb2\xa7\x9e\xc4\xc6\xc9\xb3\xb5\xba\x94\x85\ +\x7d\x8f\x80\x7a\x9f\x94\x90\xb8\xad\xa5\x9c\x8e\x85\x96\x82\x76\ +\x8c\x70\x61\x87\x6f\x67\x9b\x93\x97\xca\xce\xd4\xbc\xbb\xba\xca\ +\xcc\xd0\xf7\xf6\xf6\xdf\xde\xdc\xcf\xca\xc6\xb4\xad\xa7\xe6\xe8\ +\xe9\xdd\xde\xe0\x9b\x91\x8d\x90\x74\x67\xd0\xc0\xb9\xe0\xcd\xc3\ +\xde\xcc\xc0\xdd\xc9\xc1\xb2\xa0\x97\xd4\xc8\xc1\xe9\xe6\xe3\xfc\ +\xfc\xfc\xfe\xfe\xfe\xf8\xf8\xf8\xe9\xe8\xe3\x81\x74\x6f\x7c\x6b\ +\x5f\x7e\x6a\x60\x84\x71\x69\x82\x6c\x60\x7e\x69\x5f\x81\x6c\x60\ +\x7f\x6b\x5e\x70\x5b\x4e\xd7\xcc\xc1\xea\xe1\xd7\xe6\xdb\xcc\xe7\ +\xcc\xb1\xe8\xc0\x9a\xeb\xb8\x8d\xeb\xb7\x8a\xe4\xc6\xab\xe1\xce\ +\xbb\xe1\xcc\xb7\xe3\xcc\xb5\xe3\xce\xb7\xe3\xcf\xbb\xe4\xd5\xc4\ +\xe5\xd8\xcc\xe6\xd9\xcd\xe5\xdb\xd0\xe7\xdb\xd1\xe4\xd8\xce\xe2\ +\xd3\xc2\xe1\xc9\xb2\xe3\xc2\xa7\xe5\xbd\x9e\xec\xb0\x82\xee\xad\ +\x7c\xf0\xa9\x73\xf4\xa6\x6a\xf6\xa6\x69\xf5\xa6\x68\xf6\xa6\x6b\ +\xf5\xa5\x69\xf5\xa4\x65\xf5\xa4\x65\xf4\xa4\x66\xf6\xa5\x67\xf5\ +\xa6\x69\xf6\xa5\x68\xf5\xa6\x6b\xf5\xa6\x6a\xf7\xa6\x69\xf7\xa8\ +\x6a\xf8\xa8\x6b\xf8\xa8\x6c\xf8\xa8\x6d\xf8\xa8\x6b\xfa\xa7\x6a\ +\xfa\xa7\x69\xf7\xa5\x68\xf8\xa5\x68\xf7\xa4\x66\xf7\xa3\x69\xf6\ +\xa3\x65\xf5\xa3\x63\xf6\xa4\x64\xf6\xa3\x63\xf6\xa3\x64\xf5\xa2\ +\x64\xf5\xa3\x66\xf5\xa3\x65\xf5\xa2\x64\xf4\xa1\x63\xf6\xa2\x63\ +\xf6\xa2\x64\xf5\xa2\x64\xf6\xa1\x63\xf6\xa0\x63\xf4\xa0\x64\xf2\ +\xa1\x64\xf4\xa0\x63\xf1\xa2\x6b\xee\xa5\x70\xe9\xae\x83\xe3\xc5\ +\xaa\xe1\xd6\xcc\xe3\xda\xd1\xe3\xdb\xd4\xe6\xdd\xd8\xe5\xde\xd8\ +\xe5\xde\xdb\xe5\xdf\xdb\xe5\xde\xdb\xe4\xdf\xda\xe6\xde\xd9\xe4\ +\xdb\xd5\xe2\xd8\xd1\xe1\xd2\xcc\xd9\xcb\xc5\xd5\xc6\xba\xe4\xc8\ +\xba\xdd\xbe\xab\x4c\x56\x69\x5b\x63\x64\x32\x41\x40\x23\x39\x32\ +\x38\x44\x39\x35\x40\x3d\x34\x4e\x4e\x33\x50\x52\x3c\x56\x59\x40\ +\x53\x60\x29\x3f\x45\x3c\x4b\x46\x8b\x85\x7d\x60\x6b\x72\x79\x77\ +\x66\x83\x7f\x7a\x6f\x7b\x7e\x40\x54\x5d\x1f\x31\x2f\x2f\x39\x38\ +\x3a\x49\x4d\x3f\x48\x45\x00\x00\x00\xee\xe8\xe6\xf3\xee\xee\xf3\ +\xf0\xf0\xf3\xee\xee\xf3\xef\xee\xf3\xf0\xf0\xf3\xf1\xf1\xf5\xf3\ +\xf3\xfa\xf9\xfa\xf5\xf4\xf2\xc1\xbe\xba\x8d\x77\x66\x82\x69\x5e\ +\x9c\x93\x96\xd7\xd5\xd5\xdf\xda\xd4\xbe\xaf\xa1\x97\x7f\x6f\x91\ +\x78\x6e\x94\x8b\x89\x9b\x9c\xa5\xa1\xa1\xa8\xc0\xc3\xca\xf5\xf6\ +\xf8\xf2\xf2\xf2\xf0\xf0\xf0\xd6\xd5\xd7\xd6\xd6\xda\xdf\xdb\xd8\ +\xa6\x98\x93\x91\x77\x6a\x9e\x88\x7e\xc3\xb1\xa9\xc0\xae\xa7\xaf\ +\x99\x8d\x8a\x69\x59\x8e\x7a\x70\x9d\x8f\x8b\xae\xaa\xac\xd9\xd8\ +\xda\xe2\xe2\xe3\xd9\xdd\xde\x8a\x80\x78\x6b\x5b\x52\x7c\x6a\x61\ +\x80\x6f\x66\x80\x69\x5b\x7e\x69\x5b\x7d\x6b\x63\x7b\x68\x5e\x8a\ +\x77\x6d\xe8\xde\xd4\xeb\xe2\xd9\xe8\xdc\xd1\xe5\xcd\xb5\xe6\xc2\ +\xa2\xe6\xbf\x9a\xe7\xbf\x97\xe4\xc7\xac\xe1\xce\xba\xe1\xd0\xbc\ +\xe2\xd1\xbf\xe4\xd7\xc7\xe6\xda\xd1\xe6\xda\xd1\xe6\xdd\xd4\xe8\ +\xe0\xd8\xe8\xe1\xd8\xe7\xdf\xd6\xe5\xda\xd2\xe3\xd5\xc6\xe1\xce\ +\xb9\xe3\xc6\xad\xe5\xbf\xa1\xe8\xb9\x93\xeb\xb1\x81\xef\xab\x76\ +\xf2\xa8\x6c\xf5\xa6\x69\xf4\xa5\x67\xf5\xa5\x68\xf5\xa4\x65\xf6\ +\xa4\x66\xf5\xa4\x66\xf4\xa4\x66\xf6\xa5\x66\xf5\xa4\x65\xf6\xa4\ +\x66\xf6\xa5\x67\xf7\xa4\x66\xf7\xa4\x66\xf7\xa5\x68\xf7\xa5\x68\ +\xf8\xa6\x69\xf8\xa6\x69\xf8\xa5\x68\xf8\xa5\x67\xf8\xa5\x67\xf9\ +\xa4\x65\xf7\xa4\x65\xf7\xa4\x65\xf7\xa3\x66\xf8\xa3\x65\xf7\xa2\ +\x65\xf8\xa2\x65\xf8\xa2\x65\xf8\xa2\x65\xf8\xa4\x63\xf7\xa1\x65\ +\xf7\xa1\x64\xf7\xa1\x64\xf7\xa2\x63\xf7\xa3\x64\xf6\xa1\x63\xf7\ +\xa1\x63\xf6\xa0\x63\xf6\xa1\x62\xf6\xa0\x62\xf6\x9f\x61\xf7\xa0\ +\x61\xf7\x9f\x60\xf6\x9d\x5e\xed\xae\x79\xe2\xc5\xac\xdf\xcf\xbf\ +\xdf\xd2\xc7\xdf\xd0\xc5\xe0\xd2\xc7\xe1\xd8\xd0\xe4\xda\xd6\xe5\ +\xdb\xd7\xe5\xdc\xd7\xe4\xdb\xd5\xe3\xd8\xd3\xe0\xd2\xcc\xce\xc0\ +\xba\xde\xce\xc5\xb8\xad\xa9\x7d\x76\x71\x80\x6e\x63\xb9\x87\x67\ +\x45\x56\x61\x3c\x4d\x4b\x37\x51\x5c\x2c\x44\x45\x23\x3a\x36\x32\ +\x46\x48\x22\x3d\x3a\x33\x45\x4a\x3a\x50\x55\x39\x4a\x52\x3a\x53\ +\x54\x38\x49\x48\x72\x71\x68\x46\x55\x5b\x66\x65\x5c\x2f\x42\x4f\ +\x1d\x33\x32\x20\x2c\x27\x19\x2a\x26\x1c\x29\x24\x3d\x48\x45\x48\ +\x4e\x47\x00\x00\x00\xed\xe6\xe2\xf2\xef\xef\xf3\xf1\xf0\xf4\xef\ +\xee\xf3\xef\xed\xf2\xef\xef\xf3\xf1\xf1\xf5\xf3\xf3\xf6\xf4\xf4\ +\xf9\xf8\xf8\xf4\xf2\xef\xc0\xae\x9d\x8d\x74\x63\x9b\x85\x79\xa9\ +\x9d\x96\xae\xa4\x9d\xb7\xaa\xa1\xbd\xb0\xa6\xae\xa3\x9e\x90\x83\ +\x82\xa4\xa5\xab\xa1\x9e\xa1\x8e\x86\x88\xb4\xb1\xb7\x9b\x93\x90\ +\x9b\x91\x90\x9a\x90\x8d\x93\x89\x89\xd9\xd6\xd8\xcc\xc5\xc1\x9a\ +\x82\x72\x97\x7b\x69\x9b\x83\x76\xa4\x8d\x83\x93\x78\x69\x8e\x70\ +\x62\x95\x7a\x6c\x98\x85\x7d\x9e\x8b\x83\x98\x89\x86\x93\x87\x86\ +\xa5\xa6\xaa\xa2\x9a\x95\x82\x73\x6b\x84\x75\x6d\x82\x72\x6b\x7e\ +\x68\x5b\x7b\x67\x5c\x7a\x64\x5a\xa6\x95\x8c\xd9\xcd\xc1\xe9\xe0\ +\xd6\xe9\xe0\xd7\xe6\xd6\xc7\xe3\xc7\xae\xe4\xc4\xa5\xe5\xc2\xa3\ +\xe4\xc4\xa8\xe2\xce\xb7\xe2\xd3\xbf\xe3\xd6\xc6\xe5\xd7\xca\xe4\ +\xd9\xcf\xe5\xdb\xd2\xe5\xdc\xd3\xe7\xdf\xd7\xe8\xe0\xda\xe9\xe1\ +\xd9\xe6\xdf\xd8\xe7\xde\xd5\xe4\xd9\xcd\xe1\xd1\xbf\xe1\xc8\xaf\ +\xe3\xc3\xab\xe4\xc3\xa6\xe6\xbc\x9a\xec\xb3\x87\xf1\xaa\x72\xf5\ +\xa5\x69\xf5\xa5\x67\xf5\xa4\x67\xf6\xa3\x66\xf5\xa4\x65\xf7\xa3\ +\x65\xf5\xa3\x67\xf5\xa4\x66\xf5\xa5\x66\xf5\xa3\x66\xf6\xa4\x66\ +\xf7\xa4\x67\xf6\xa3\x65\xf7\xa5\x67\xf7\xa4\x66\xf7\xa4\x67\xf7\ +\xa4\x67\xf6\xa4\x67\xf8\xa4\x67\xf7\xa3\x66\xf9\xa4\x66\xf8\xa3\ +\x65\xf8\xa3\x65\xf7\xa2\x64\xf6\xa1\x63\xf7\xa0\x64\xf7\xa1\x64\ +\xf8\xa2\x63\xf8\xa2\x63\xf7\xa2\x64\xf8\xa1\x64\xf7\xa2\x65\xf7\ +\xa2\x64\xf7\xa2\x64\xf7\xa2\x65\xf7\xa1\x63\xf7\xa0\x64\xf6\xa0\ +\x62\xf6\x9f\x63\xf6\x9e\x62\xf6\x9f\x60\xf7\x9f\x60\xf6\x9d\x5e\ +\xf6\x9d\x5d\xf1\xa8\x70\xe6\xba\x9a\xe0\xc3\xae\xe1\xc2\xae\xe1\ +\xc0\xa9\xe2\xba\x9e\xe1\xc3\xac\xe0\xca\xba\xdf\xcb\xc0\xe1\xc8\ +\xb6\xe1\xce\xbe\xdf\xcc\xc0\xe3\xcd\xbf\xc3\xa8\x9a\xb8\xa5\x98\ +\x93\x82\x77\xc3\x9b\x80\x78\x74\x77\x42\x45\x3b\x55\x54\x47\x5a\ +\x53\x45\x45\x57\x5e\x3d\x52\x54\x26\x45\x45\x25\x3c\x36\x2b\x48\ +\x47\x33\x44\x44\x36\x4d\x51\x3c\x4e\x51\x3a\x4d\x50\x39\x49\x51\ +\x3a\x4a\x46\x3b\x4c\x59\x3d\x48\x48\x29\x3d\x3a\x23\x3a\x37\x28\ +\x32\x2e\x3c\x3e\x37\x5d\x5b\x4d\x71\x76\x6b\x88\x7f\x71\x00\x00\ +\x00\xf2\xef\xee\xf3\xf1\xf0\xf3\xef\xed\xf3\xef\xec\xf2\xed\xeb\ +\xf3\xee\xec\xf3\xef\xee\xf4\xf2\xf2\xf7\xf5\xf5\xf7\xf6\xf6\xf9\ +\xfa\xfb\xf7\xf3\xe9\x93\x7c\x6e\xa9\x9b\x93\xa1\x91\x88\xb1\xa5\ +\x9c\xa2\x8b\x7d\xa2\x99\x96\xb1\xb5\xbd\xad\xaa\xad\xad\xb2\xb8\ +\xa7\xa6\xa8\x91\x7d\x76\x8f\x80\x7f\x9d\x8d\x87\x95\x89\x88\x9b\ +\x8b\x83\x91\x7f\x7a\xa1\x8f\x88\xa0\x8c\x82\x9b\x80\x6f\x99\x7b\ +\x69\x9c\x83\x76\xae\x99\x8d\x92\x74\x62\x94\x78\x69\x9e\x8b\x84\ +\xa6\x9f\x9b\x9f\x8f\x87\xa1\x92\x8e\xa3\x95\x8f\x94\x8a\x89\xa7\ +\xa4\xa4\x9e\x93\x8f\x7d\x6b\x64\x75\x65\x5d\x73\x61\x57\x7a\x67\ +\x5d\x8b\x7a\x71\xc9\xbd\xb4\xee\xe6\xdd\xe7\xde\xd4\xe7\xdc\xd1\ +\xe3\xcf\xbb\xe3\xc2\xa3\xe4\xc1\xa1\xe4\xc1\xa3\xe2\xc6\xac\xe2\ +\xd3\xc1\xe5\xd7\xc9\xe5\xda\xcf\xe6\xdb\xd2\xe6\xdc\xd3\xe5\xdb\ +\xd2\xe6\xdd\xd4\xe7\xdf\xd7\xe7\xe0\xd8\xe6\xdf\xd8\xe6\xdc\xd7\ +\xe6\xdd\xd4\xe4\xd8\xcd\xe1\xd2\xc2\xe0\xca\xb5\xe2\xc6\xb1\xe1\ +\xc5\xad\xe5\xbb\x9c\xe9\xb4\x8c\xf0\xac\x79\xf5\xa5\x6a\xf5\xa4\ +\x67\xf5\xa4\x67\xf6\xa3\x65\xf6\xa4\x65\xf6\xa3\x65\xf5\xa4\x67\ +\xf5\xa4\x68\xf4\xa4\x68\xf5\xa4\x67\xf5\xa4\x66\xf6\xa3\x65\xf6\ +\xa3\x65\xf4\xa4\x67\xf6\xa4\x66\xf6\xa3\x65\xf8\xa4\x66\xf9\xa3\ +\x66\xf8\xa2\x65\xf7\xa3\x66\xf8\xa2\x65\xf7\xa2\x64\xf7\xa2\x64\ +\xf7\xa2\x63\xf7\xa2\x64\xf8\xa2\x64\xf7\xa2\x62\xf7\xa2\x62\xf7\ +\xa1\x63\xf6\xa1\x63\xf7\xa1\x62\xf7\xa1\x65\xf7\xa1\x63\xf7\xa1\ +\x62\xf8\xa1\x64\xf8\xa1\x63\xf7\xa0\x62\xf6\x9f\x61\xf6\xa0\x60\ +\xf6\x9e\x61\xf6\x9e\x60\xf6\x9e\x5e\xf5\x9d\x5e\xf6\x9d\x5e\xf4\ +\x9f\x60\xf1\xa1\x6b\xeb\xad\x82\xe7\xb4\x90\xe7\xb1\x8c\xec\xa7\ +\x78\xed\xa6\x72\xec\xac\x80\xe9\xac\x86\xee\xa8\x78\xec\xaf\x86\ +\xe9\xb7\x95\xea\xb6\x95\xf0\xb0\x88\x81\x70\x62\x4e\x45\x36\x92\ +\x72\x58\x47\x4d\x55\x34\x40\x3a\x56\x56\x4c\x5f\x52\x43\x5f\x65\ +\x62\x54\x5e\x5a\x34\x51\x58\x24\x3e\x3b\x2d\x45\x41\x2f\x43\x43\ +\x42\x50\x55\x45\x51\x55\x2e\x43\x48\x39\x45\x44\x4b\x55\x4f\x55\ +\x5d\x5d\x4b\x56\x50\x46\x59\x58\x3f\x4c\x3b\x81\x7d\x6c\xa9\x9d\ +\x8d\xcf\xc1\xad\xb3\xb4\xb5\x91\x84\x7b\x00\x00\x00\xf4\xf2\xf3\ +\xf4\xf1\xf0\xf2\xee\xeb\xf3\xee\xeb\xf2\xed\xea\xf2\xee\xea\xf3\ +\xee\xeb\xf3\xef\xee\xf5\xf3\xf3\xf6\xf5\xf5\xf7\xf7\xf7\xf9\xf9\ +\xf8\xc8\xb9\xab\x92\x77\x65\x86\x6c\x60\x8a\x71\x66\x89\x6f\x64\ +\xae\xa6\xa3\x90\x87\x86\x95\x95\x9b\xa6\xa5\xaa\xa0\x9b\x9e\x98\ +\x89\x82\x9d\x93\x91\x90\x77\x6c\x94\x89\x8a\xa8\x9b\x96\x97\x85\ +\x81\x95\x7b\x6e\x95\x77\x66\x9a\x7e\x6c\x99\x7a\x68\x95\x79\x6b\ +\x95\x7a\x69\x8f\x6f\x5b\x97\x7c\x6b\x9d\x8c\x84\xb2\xb1\xb3\xae\ +\xa6\xa2\x9b\x88\x80\xae\xaa\xa8\x92\x85\x7f\xa0\x9c\x9b\x9d\x91\ +\x8e\x81\x70\x68\x71\x61\x57\x6f\x5e\x53\x74\x60\x58\x91\x85\x7f\ +\xd5\xcd\xc5\xea\xe2\xd8\xe7\xdc\xd2\xe5\xd9\xcc\xe3\xcf\xb9\xe5\ +\xbf\x9a\xe6\xba\x92\xe4\xc0\x9f\xe1\xc5\xab\xe3\xd4\xc3\xe6\xdb\ +\xd2\xe8\xde\xd5\xe7\xdf\xd6\xe6\xdd\xd4\xe7\xde\xd4\xe5\xdd\xd6\ +\xe6\xde\xd6\xe7\xdf\xd7\xe6\xde\xd5\xe6\xdd\xd3\xe5\xda\xd2\xe2\ +\xd6\xca\xe0\xd1\xbf\xdf\xca\xb6\xe2\xc8\xb2\xe2\xc6\xae\xe9\xb6\ +\x91\xee\xab\x78\xee\xae\x7b\xf2\xa8\x6f\xf4\xa5\x69\xf5\xa4\x67\ +\xf5\xa3\x66\xf6\xa2\x65\xf6\xa3\x65\xf5\xa4\x65\xf5\xa5\x68\xf5\ +\xa5\x68\xf5\xa5\x69\xf5\xa4\x69\xf6\xa3\x67\xf6\xa2\x64\xf5\xa3\ +\x65\xf5\xa3\x65\xf7\xa3\x66\xf8\xa3\x65\xf8\xa3\x65\xf7\xa2\x66\ +\xf7\xa2\x65\xf7\xa2\x63\xf6\xa2\x62\xf7\xa2\x62\xf7\xa3\x64\xf7\ +\xa2\x61\xf7\xa2\x62\xf7\xa1\x62\xf7\xa2\x62\xf7\xa1\x62\xf7\xa1\ +\x62\xf6\xa1\x60\xf7\xa0\x62\xf7\xa1\x61\xf7\xa1\x60\xf8\xa1\x62\ +\xf8\xa1\x63\xf6\x9f\x60\xf7\x9f\x60\xf6\x9f\x60\xf6\x9f\x5f\xf6\ +\x9d\x60\xf6\x9d\x5f\xf5\x9d\x5f\xf5\x9d\x5d\xf5\x9c\x5d\xf5\x9c\ +\x5d\xf4\x9d\x5e\xf1\xa0\x65\xf0\xa2\x6a\xf3\x9e\x61\xf5\x9d\x5c\ +\xf3\xa1\x68\xf2\xa2\x6b\xf4\xa2\x6a\xf5\xa4\x6b\xf4\xa4\x6d\xf7\ +\xa7\x6f\xe2\x95\x64\xaa\x88\x6d\x49\x50\x4a\x59\x51\x44\x37\x45\ +\x4e\x40\x47\x3f\x62\x57\x49\x51\x53\x47\x6a\x6a\x65\x4d\x56\x54\ +\x37\x51\x51\x29\x49\x43\x26\x3f\x3b\x49\x5a\x55\x59\x5c\x5d\x45\ +\x52\x5a\x53\x5a\x56\x52\x5c\x57\x8d\x84\x73\xb1\xa7\x9e\x94\x8b\ +\x88\xa5\xa7\xa8\x6a\x5f\x49\x88\x8f\x94\xc3\xaa\x8d\xd7\xcc\xc2\ +\xd7\xd1\xcf\x59\x5e\x72\x00\x00\x00\xf4\xf2\xf2\xf4\xf2\xf2\xf3\ +\xee\xed\xf2\xed\xea\xf1\xec\xe9\xf1\xec\xe9\xf1\xec\xe9\xf3\xee\ +\xeb\xf2\xef\xf0\xf5\xf4\xf4\xf6\xf5\xf5\xf7\xf7\xf7\xf7\xf6\xf6\ +\xf2\xf0\xed\xb9\xa6\x96\x9b\x87\x7b\xba\xb1\xa9\xb9\xbb\xbe\x9c\ +\x96\x95\xa7\xa3\xa5\xa3\xa0\xa2\xa6\xa0\xa1\xab\xa7\xa6\xaa\xa8\ +\xa9\x8d\x77\x6b\x94\x86\x84\x9c\x94\x94\x95\x84\x81\x98\x80\x73\ +\x97\x7b\x6c\x9a\x7e\x69\x97\x7c\x6a\xa5\x8f\x84\xa0\x89\x7a\xb4\ +\xad\xab\xa3\x92\x88\x9c\x86\x7a\x9b\x8a\x81\xaa\x9e\x9b\xa1\x8f\ +\x82\xa0\x96\x93\x94\x84\x7a\xa1\x9f\xa1\x9d\x90\x8b\x9f\x99\x95\ +\x82\x77\x70\x7d\x6b\x5f\x79\x66\x5a\x91\x84\x7c\xe0\xd8\xcf\xe9\ +\xe0\xd7\xe6\xdc\xd2\xe3\xd7\xcd\xe2\xd3\xc1\xe3\xc6\xaa\xe5\xbc\ +\x96\xe3\xbe\x9c\xe1\xc8\xae\xe3\xd7\xc8\xe7\xde\xd5\xe8\xdf\xda\ +\xe9\xe0\xda\xe9\xe0\xd9\xe7\xdf\xd8\xe7\xdf\xd7\xe7\xdf\xd9\xe6\ +\xdf\xd7\xe6\xde\xd5\xe6\xdb\xd3\xe3\xd7\xcd\xe0\xd4\xc9\xdf\xcf\ +\xbe\xe1\xc8\xb1\xe1\xc8\xb3\xe2\xbf\xa4\xe8\xb6\x91\xef\xab\x74\ +\xee\xac\x78\xee\xb0\x80\xf1\xa9\x72\xf4\xa5\x6a\xf6\xa4\x67\xf6\ +\xa3\x65\xf6\xa2\x65\xf5\xa2\x65\xf6\xa4\x67\xf5\xa4\x67\xf4\xa6\ +\x6a\xf4\xa7\x6c\xf5\xa5\x68\xf5\xa3\x66\xf6\xa5\x67\xf5\xa4\x67\ +\xf6\xa2\x64\xf8\xa2\x65\xf8\xa2\x65\xf8\xa3\x65\xf7\xa2\x64\xf7\ +\xa2\x63\xf7\xa2\x64\xf6\xa2\x61\xf6\xa1\x62\xf8\xa0\x63\xf7\xa1\ +\x61\xf6\xa0\x60\xf6\xa1\x62\xf6\xa0\x62\xf8\xa0\x60\xf6\xa0\x61\ +\xf7\xa0\x61\xf6\x9f\x5f\xf6\x9f\x5e\xf6\x9f\x60\xf7\x9e\x61\xf5\ +\x9d\x5f\xf6\x9c\x60\xf6\x9e\x5f\xf6\x9d\x5f\xf5\x9d\x60\xf5\x9c\ +\x5d\xf5\x9c\x5e\xf5\x9d\x5c\xf5\x9c\x5e\xf4\x9c\x5c\xf4\x9b\x5d\ +\xf3\x9b\x5d\xf3\x9c\x5c\xf3\x9c\x5c\xf4\x9b\x5b\xf4\x9d\x5e\xf4\ +\xa0\x62\xf4\xa3\x6c\xf5\xa3\x6b\xfc\xa5\x68\xcb\x91\x68\x7d\x52\ +\x39\x9c\x72\x52\x86\x6e\x57\x4f\x51\x4b\x45\x48\x3d\x3f\x40\x37\ +\xa7\x76\x50\x45\x50\x58\x4a\x56\x4e\x3a\x4f\x53\x2e\x40\x3f\x3b\ +\x49\x41\x70\x64\x4e\xa1\x80\x63\x5f\x63\x6c\x7f\x6d\x62\x83\x6e\ +\x5d\x6a\x7d\x84\x74\x72\x6c\xa6\x9c\x94\x83\x8c\x98\x90\x8b\x82\ +\x5c\x5b\x58\xb7\xa9\xa1\x83\x78\x6e\x91\x89\x82\x9e\x91\x82\xa2\ +\x9b\x95\x00\x00\x00\xf5\xf3\xf3\xf6\xf4\xf4\xf4\xf0\xed\xf2\xee\ +\xe9\xef\xea\xe7\xee\xe8\xe5\xee\xea\xe7\xf0\xeb\xe8\xf1\xeb\xeb\ +\xf2\xee\xee\xf5\xf3\xf3\xf7\xf5\xf5\xf6\xf6\xf6\xf9\xf9\xf9\xfc\ +\xfc\xfc\xf9\xfa\xf8\xd0\xd0\xd0\xb3\xb4\xb7\x98\x89\x80\xa6\xa4\ +\xa4\xb6\xba\xbf\xa8\xab\xb3\x94\x8d\x8d\x9b\x94\x94\x86\x77\x71\ +\x91\x7f\x7b\x98\x88\x86\x99\x89\x86\x9c\x83\x77\x9b\x7d\x6a\x9b\ +\x81\x70\x9a\x82\x73\xb1\xa3\x9d\x9d\x87\x7a\xab\xab\xb1\xb0\xac\ +\xa9\x9d\x8e\x83\x93\x7d\x71\xab\xa3\x9e\xa6\x98\x8f\x98\x83\x78\ +\x96\x8c\x8b\x9e\x95\x93\x9c\x92\x91\x9f\xa1\xa3\x97\xa0\xaa\x8e\ +\x83\x82\xce\xc2\xba\xdb\xd1\xc7\xed\xe7\xdf\xe8\xe1\xd8\xe6\xdd\ +\xd4\xe4\xd8\xcc\xe1\xd3\xc1\xe1\xc9\xb1\xe4\xc3\xa6\xe3\xc5\xa8\ +\xe3\xd1\xbe\xe7\xdd\xd2\xe8\xe1\xd9\xe9\xe2\xdd\xe7\xe2\xdd\xe5\ +\xe2\xdb\xe7\xe2\xdd\xe7\xe0\xdd\xe8\xe0\xda\xe6\xe0\xd7\xe6\xdd\ +\xd5\xe6\xdc\xd2\xe3\xd7\xcd\xe3\xd6\xca\xe1\xd1\xc0\xe1\xcc\xb6\ +\xe2\xbe\xa2\xea\xb1\x84\xeb\xb3\x87\xeb\xb4\x89\xee\xad\x7b\xec\ +\xb0\x82\xef\xab\x78\xf3\xa7\x70\xf4\xa4\x68\xf5\xa3\x66\xf5\xa4\ +\x69\xf6\xa3\x66\xf4\xa2\x65\xf6\xa3\x65\xf6\xa4\x66\xf5\xa4\x69\ +\xf3\xa7\x6e\xf5\xa5\x6b\xf5\xa4\x6b\xf4\xa4\x69\xf7\xa2\x64\xf7\ +\xa3\x63\xf7\xa1\x64\xf7\xa2\x63\xf7\xa2\x64\xf7\xa1\x63\xf8\xa0\ +\x60\xf8\xa0\x62\xf6\xa1\x61\xf7\xa0\x61\xf8\x9f\x5f\xf8\x9f\x60\ +\xf7\x9e\x5f\xf6\x9e\x5f\xf5\x9d\x5d\xf5\x9d\x5e\xf5\x9e\x5d\xf5\ +\x9d\x5f\xf6\x9d\x5e\xf6\x9e\x5e\xf5\x9d\x5e\xf6\x9e\x5d\xf5\x9d\ +\x5e\xf6\x9d\x5f\xf5\x9d\x5d\xf4\x9c\x5c\xf5\x9d\x5d\xf5\x9d\x5c\ +\xf4\x9c\x5c\xf5\x9d\x5e\xf4\x9c\x5c\xf4\x9b\x5c\xf5\x9b\x5c\xf4\ +\x9b\x5e\xf4\x9a\x5d\xf3\x9b\x5d\xf3\x9c\x5d\xf7\xa1\x63\xf6\xa1\ +\x67\xfc\xa4\x65\xb8\x7d\x5e\xc8\x87\x58\x6f\x56\x40\x51\x46\x37\ +\x82\x64\x4a\x5a\x4f\x47\x52\x4f\x46\x83\x6e\x56\x61\x52\x42\x9d\ +\x7e\x64\x6b\x67\x5d\x41\x56\x64\x33\x46\x4b\x81\x63\x46\xd2\xa1\ +\x7c\x65\x59\x4b\x63\x64\x60\x51\x59\x56\x45\x49\x49\x40\x4b\x4c\ +\x4d\x54\x53\x46\x45\x40\x80\x7f\x80\x46\x47\x43\x33\x3e\x4c\x57\ +\x51\x46\x97\x8b\x7e\xba\xaa\x95\xcf\xba\xac\xb5\xb5\xb7\x00\x00\ +\x00\xf6\xf4\xf4\xf5\xf3\xf3\xf4\xef\xed\xf2\xee\xea\xf0\xeb\xe8\ +\xee\xe8\xe5\xee\xe7\xe4\xed\xe5\xe2\xed\xe8\xe5\xf0\xeb\xe8\xf3\ +\xef\xee\xf4\xf1\xf1\xf6\xf3\xf3\xf7\xf7\xf7\xf8\xf7\xf7\xfb\xf9\ +\xfa\xdd\xdc\xdb\xbd\xc0\xc4\xb9\xb6\xb2\x8e\x7b\x71\xa1\x9f\xa5\ +\xae\xb2\xb8\x9d\x94\x91\x97\x8e\x8e\x8b\x73\x68\x8f\x78\x6f\x99\ +\x88\x81\x9a\x8a\x83\x98\x7c\x6e\x9b\x80\x70\x9c\x7f\x6e\x95\x7f\ +\x73\xc5\xbe\xbb\xb4\xa5\x9c\xa3\x9e\x9f\xba\xb9\xb8\xa7\x9b\x93\ +\x9c\x88\x7c\xa9\xa3\xa1\xa9\x9b\x93\x99\x84\x7a\x98\x85\x7e\x8e\ +\x7d\x77\x85\x72\x6f\x90\x94\x9c\x90\x97\x9e\x8b\x82\x7f\xe6\xe2\ +\xdf\xf0\xeb\xe8\xe9\xe6\xe1\xea\xe3\xde\xe9\xe0\xd8\xe5\xdb\xd0\ +\xe2\xd2\xc0\xe1\xcb\xb5\xe1\xce\xba\xe2\xd3\xc2\xe6\xdc\xd2\xe7\ +\xe1\xd9\xe6\xe2\xdc\xe7\xe3\xde\xe8\xe4\xdf\xe7\xe3\xde\xe8\xe2\ +\xdd\xe8\xe2\xdd\xea\xe1\xdc\xe8\xe0\xd8\xe7\xdf\xd6\xe6\xdd\xd4\ +\xe5\xda\xcf\xe3\xd6\xcb\xe2\xd4\xc4\xe0\xcb\xb8\xe5\xbb\x9a\xe9\ +\xb7\x8e\xe8\xb5\x8b\xe8\xb5\x8a\xeb\xb1\x82\xec\xb0\x82\xed\xaf\ +\x7e\xf1\xaa\x74\xf3\xa4\x6a\xf5\xa3\x67\xf7\xa4\x66\xf5\xa3\x66\ +\xf6\xa2\x65\xf5\xa3\x65\xf6\xa3\x66\xf5\xa2\x65\xf5\xa3\x66\xf5\ +\xa3\x68\xf6\xa3\x66\xf7\xa1\x63\xf9\xa2\x62\xf7\xa1\x64\xf8\xa2\ +\x64\xf8\xa1\x63\xf7\xa0\x62\xf7\x9f\x61\xf6\x9f\x5f\xf7\x9f\x60\ +\xf5\xa0\x61\xf6\x9e\x5e\xf6\x9e\x5e\xf6\x9e\x5e\xf6\x9e\x5d\xf5\ +\x9d\x5d\xf6\x9d\x5d\xf6\x9e\x5e\xf5\x9e\x5c\xf5\x9d\x5e\xf6\x9d\ +\x60\xf6\x9d\x5e\xf5\x9e\x5d\xf5\x9e\x5d\xf5\x9d\x5e\xf5\x9c\x5f\ +\xf5\x9c\x5b\xf3\x9b\x5b\xf5\x9b\x5d\xf5\x9b\x5b\xf5\x9b\x5b\xf6\ +\x9c\x5c\xf4\x9a\x5a\xf3\x9b\x5a\xf4\x9b\x5a\xf4\x9b\x5a\xf5\x9b\ +\x5a\xf5\x9b\x5b\xf5\x9c\x5d\xf4\x9f\x63\xf6\x9f\x61\xfa\xa3\x63\ +\xaa\x7c\x5f\x4f\x4b\x3e\x55\x47\x35\xe0\x94\x5d\x98\x78\x62\x5b\ +\x56\x51\x6d\x59\x46\x90\x76\x5c\x86\x72\x61\x61\x5b\x4c\x3a\x45\ +\x42\x36\x4d\x57\x48\x53\x57\x81\x65\x4c\x96\x72\x5e\x68\x57\x46\ +\x7a\x5f\x46\x49\x5a\x57\x40\x49\x4e\x44\x4a\x46\x38\x44\x48\x2e\ +\x3c\x3f\x35\x3e\x40\x3e\x40\x39\x7d\x72\x60\x7f\x7e\x7f\xb9\xa0\ +\x8b\x75\x76\x78\x71\x6a\x65\x77\x78\x76\x00\x00\x00\xf5\xf3\xf3\ +\xf4\xf2\xf2\xf4\xef\xee\xf3\xee\xed\xf2\xed\xea\xee\xea\xe5\xec\ +\xe6\xdf\xea\xe3\xdd\xeb\xe4\xdf\xed\xe7\xe3\xef\xe9\xe8\xf1\xec\ +\xeb\xf4\xef\xef\xf5\xf2\xf2\xf5\xf3\xf3\xf6\xf3\xf3\xe5\xe3\xe1\ +\xc5\xca\xcf\xbd\xbe\xc0\xa3\x95\x8b\x94\x88\x86\xa8\xa7\xab\x9f\ +\x97\x93\x96\x8d\x8c\x8f\x79\x6e\x90\x74\x66\x9a\x8c\x88\x9a\x8d\ +\x89\x94\x78\x65\x9b\x80\x70\x9a\x81\x74\x95\x81\x78\xd5\xd2\xd3\ +\xd5\xce\xc9\xca\xc6\xc5\xb1\xb0\xb0\xa8\x9c\x97\x97\x84\x7b\xa2\ +\x9b\x99\xa7\x99\x92\x95\x82\x7a\x9a\x89\x85\x8a\x7f\x7d\x7c\x6a\ +\x66\x97\x9a\xa0\xa0\xa6\xac\x87\x7d\x7a\xed\xe9\xe7\xf0\xec\xe8\ +\xed\xe9\xe4\xec\xe5\xe1\xe9\xe3\xdc\xe7\xe0\xd7\xe5\xdb\xce\xe4\ +\xd6\xc8\xe4\xd9\xcd\xe7\xdc\xd3\xe7\xe0\xd8\xe8\xe2\xdc\xe8\xe3\ +\xdf\xe9\xe4\xe0\xea\xe3\xe0\xea\xe4\xe0\xe8\xe3\xdf\xe8\xe3\xde\ +\xe8\xe3\xdd\xe9\xe1\xda\xe7\xe0\xd7\xe7\xde\xd5\xe5\xdb\xd1\xe4\ +\xd7\xcd\xe2\xd4\xc7\xe1\xcc\xb8\xe3\xc1\xa6\xe5\xc0\xa1\xe6\xbd\ +\x9b\xe9\xb4\x8b\xeb\xb1\x84\xed\xad\x7d\xef\xab\x79\xef\xac\x78\ +\xf4\xa5\x6a\xf5\xa5\x68\xf6\xa5\x66\xf5\xa4\x66\xf5\xa3\x64\xf6\ +\xa2\x64\xf7\xa1\x64\xf7\xa2\x65\xf8\xa2\x65\xf7\xa1\x62\xf8\xa1\ +\x62\xf7\xa1\x60\xf8\xa1\x61\xf8\xa1\x63\xf8\xa1\x63\xf7\xa0\x62\ +\xf6\x9f\x60\xf7\x9e\x5f\xf7\x9f\x5f\xf6\x9e\x5d\xf6\x9e\x5e\xf5\ +\x9d\x5d\xf6\x9d\x5d\xf6\x9d\x5d\xf6\x9d\x5e\xf5\x9c\x5d\xf5\x9e\ +\x5e\xf6\x9e\x5e\xf6\x9e\x5e\xf5\x9e\x5d\xf5\x9d\x5f\xf5\x9d\x5d\ +\xf5\x9d\x5f\xf5\x9e\x5d\xf5\x9d\x5e\xf5\x9c\x5c\xf5\x9c\x5c\xf4\ +\x9c\x5c\xf5\x9b\x5a\xf5\x9b\x5a\xf5\x9b\x59\xf5\x9b\x5c\xf5\x9b\ +\x5a\xf6\x9b\x5a\xf4\x9b\x5a\xf5\x9a\x59\xf6\x9a\x5a\xf6\x9b\x5c\ +\xf6\x9c\x5d\xf5\x9d\x5e\xf5\x9e\x60\xc5\x85\x58\x74\x57\x3f\xa7\ +\x72\x4a\x75\x61\x4e\x99\x72\x50\x8b\x6a\x4c\xa9\x79\x51\xc9\x8c\ +\x63\xc1\x89\x66\x89\x77\x6c\x33\x44\x43\x3a\x45\x3c\x35\x41\x3f\ +\x36\x41\x41\x4a\x3d\x31\x6e\x61\x54\x66\x55\x47\x77\x65\x54\x39\ +\x50\x4d\x32\x45\x4c\x44\x42\x40\x3e\x4a\x4b\x3f\x48\x41\x5d\x64\ +\x63\x52\x59\x52\x46\x4e\x4a\x71\x6d\x65\x75\x6b\x65\x40\x48\x4d\ +\x62\x59\x49\x77\x6e\x63\x00\x00\x00\xf3\xf1\xf1\xf3\xf1\xf1\xf3\ +\xf0\xf1\xf3\xf0\xf0\xf4\xf0\xf0\xf0\xec\xe7\xea\xe3\xda\xe9\xe0\ +\xd7\xe8\xe0\xd7\xe9\xe2\xdb\xeb\xe4\xdf\xec\xe6\xe2\xef\xea\xe7\ +\xf2\xee\xec\xf3\xef\xed\xf2\xed\xea\xf0\xea\xe5\xca\xd0\xd5\xc3\ +\xc4\xc7\xb4\xb1\xaf\xa3\x9d\x99\xa1\x98\x97\xa9\xa4\xa2\x97\x8f\ +\x8c\x8b\x70\x64\x99\x85\x7c\x9a\x93\x95\x97\x86\x7f\x93\x76\x68\ +\x9d\x82\x75\x95\x7c\x72\x9b\x90\x8d\xde\xde\xdf\xf9\xf9\xf8\xf4\ +\xf3\xf1\xaf\xac\xad\xa5\x98\x93\x91\x79\x6b\x9c\x90\x8c\xac\xa2\ +\x9d\x95\x7f\x73\x9b\x93\x8f\x9b\x96\x97\x7b\x6f\x6d\x94\x98\x9e\ +\x98\x9a\x9d\xa5\x9b\x97\xf7\xf3\xf2\xf2\xee\xeb\xf1\xec\xea\xee\ +\xe8\xe6\xeb\xe4\xe0\xe9\xe3\xdd\xe6\xdd\xd4\xe4\xd7\xcd\xe5\xdc\ +\xd2\xe7\xe1\xda\xe9\xe3\xde\xe9\xe4\xe0\xea\xe5\xe2\xeb\xe5\xe2\ +\xeb\xe4\xe1\xeb\xe4\xe1\xeb\xe4\xe1\xe9\xe4\xdf\xe8\xe2\xde\xe7\ +\xe1\xdc\xe8\xe1\xda\xe6\xde\xd6\xe6\xdc\xd3\xe5\xd9\xcf\xe2\xd6\ +\xc8\xe1\xce\xb8\xe2\xc7\xad\xe2\xc5\xab\xe3\xc2\xa7\xe8\xb3\x8b\ +\xef\xaa\x77\xf0\xa9\x73\xf2\xa7\x6e\xf2\xa7\x6f\xf2\xa6\x6c\xf5\ +\xa6\x69\xf5\xa5\x68\xf5\xa3\x65\xf4\xa2\x64\xf7\xa2\x63\xf7\xa2\ +\x64\xf7\xa1\x64\xf9\xa1\x64\xf7\xa1\x63\xf7\xa0\x61\xf7\xa0\x5f\ +\xf7\xa0\x60\xf7\x9f\x60\xf7\x9f\x61\xf7\x9f\x5f\xf7\x9e\x60\xf6\ +\x9e\x5f\xf6\x9e\x5e\xf6\x9e\x5e\xf5\x9d\x5d\xf6\x9d\x5e\xf5\x9d\ +\x5d\xf6\x9e\x5d\xf6\x9e\x5d\xf6\x9d\x5d\xf6\x9e\x5c\xf4\x9d\x5c\ +\xf6\x9d\x5e\xf6\x9d\x5d\xf6\x9d\x5d\xf4\x9c\x5b\xf6\x9c\x5d\xf4\ +\x9c\x5c\xf5\x9c\x5c\xf6\x9b\x5b\xf5\x9b\x5b\xf5\x9b\x5b\xf4\x9b\ +\x5a\xf3\x9b\x59\xf5\x9a\x5a\xf4\x9a\x5b\xf4\x9a\x5a\xf7\x9a\x5a\ +\xf5\x9a\x5a\xf6\x9a\x5a\xf5\x9a\x5b\xf5\x9a\x5b\xf6\x9c\x5c\xf5\ +\x9c\x5e\xf6\x9f\x60\xb7\x7d\x54\xa0\x6c\x45\xbb\x80\x55\x66\x5e\ +\x52\x98\x66\x3d\xe0\x98\x66\xd4\x97\x6c\xb5\x80\x5e\x6f\x66\x57\ +\x70\x68\x57\x31\x43\x40\x3d\x43\x39\x47\x46\x3f\x38\x3f\x3d\x39\ +\x3f\x41\x3a\x39\x32\x41\x41\x38\x5d\x54\x50\x40\x53\x51\x21\x3a\ +\x3d\x41\x44\x32\x4a\x58\x63\x40\x47\x44\x4f\x56\x53\x52\x5c\x54\ +\x46\x51\x4f\x43\x4d\x4f\x3d\x44\x45\x2d\x38\x3b\x3e\x42\x3b\x32\ +\x39\x41\x00\x00\x00\xf2\xf0\xf0\xf2\xf0\xf0\xf3\xee\xec\xf2\xed\ +\xee\xf3\xee\xee\xf0\xe9\xe6\xed\xe5\xdf\xe9\xe1\xd6\xe7\xdb\xd1\ +\xe9\xde\xd5\xe9\xe1\xd9\xeb\xe3\xdc\xed\xe6\xe3\xf0\xe9\xe6\xee\ +\xe7\xe4\xef\xe9\xe5\xf1\xea\xe4\xd6\xd5\xd3\xbe\xc3\xc9\xbe\xbb\ +\xba\xba\xba\xbc\xab\xa2\x9f\xb2\xae\xad\xaa\xa3\xa1\x94\x84\x7e\ +\xa4\xa1\xa1\x98\x91\x91\x93\x7d\x74\x97\x7b\x6f\x9b\x83\x72\x8f\ +\x75\x67\x9f\x93\x90\xe9\xeb\xec\xfa\xfa\xfa\xfd\xfd\xfc\xb9\xb7\ +\xb6\xa3\x9a\x97\x94\x80\x75\xa0\x96\x93\xa5\xa1\xa0\x97\x83\x7b\ +\x96\x8a\x8a\xae\xb1\xb5\x80\x74\x72\x8d\x93\x9c\x98\x97\x98\xe4\ +\xe1\xde\xf5\xf3\xf3\xf3\xf0\xf0\xf2\xef\xed\xf1\xee\xea\xed\xe8\ +\xe5\xea\xe5\xe1\xe8\xe2\xda\xe8\xde\xd3\xe8\xe0\xd9\xea\xe3\xdf\ +\xeb\xe6\xe3\xed\xe8\xe5\xee\xe9\xe6\xed\xe9\xe5\xed\xe8\xe5\xec\ +\xe7\xe3\xea\xe5\xe2\xeb\xe5\xe1\xe9\xe5\xe0\xe9\xe4\xdf\xea\xe1\ +\xdd\xe7\xe0\xd8\xe7\xde\xd5\xe6\xdb\xd2\xe3\xd5\xc7\xe1\xce\xb9\ +\xe1\xca\xb4\xe1\xc6\xae\xe5\xbc\x9f\xec\xab\x7a\xed\xad\x7d\xee\ +\xae\x7e\xf2\xa7\x6e\xf2\xa6\x6c\xf3\xa5\x6c\xf5\xa5\x6a\xf5\xa5\ +\x68\xf5\xa3\x66\xf6\xa1\x64\xf7\xa3\x62\xf7\xa2\x63\xf7\xa0\x62\ +\xf8\xa0\x63\xf7\xa0\x62\xf7\xa0\x61\xf6\x9f\x60\xf6\x9e\x5f\xf6\ +\x9e\x5e\xf6\x9e\x5f\xf6\x9f\x5f\xf6\x9d\x5e\xf6\x9d\x5e\xf5\x9d\ +\x5e\xf6\x9e\x5e\xf5\x9e\x5e\xf5\x9e\x5c\xf6\x9e\x5e\xf5\x9d\x5d\ +\xf6\x9e\x5d\xf5\x9d\x5d\xf4\x9c\x5b\xf4\x9c\x5c\xf6\x9c\x5c\xf6\ +\x9d\x5c\xf4\x9d\x5b\xf4\x9c\x5b\xf4\x9b\x5b\xf4\x9b\x5b\xf6\x9b\ +\x5a\xf6\x9b\x5b\xf5\x9c\x5a\xf5\x9a\x5b\xf4\x9a\x5b\xf3\x9a\x5c\ +\xf5\x9b\x5a\xf4\x9a\x5b\xf6\x9b\x59\xf4\x99\x5b\xf5\x99\x5a\xf5\ +\x9a\x5a\xf4\x9a\x5a\xf5\x9b\x5b\xf5\x9c\x5a\xf6\x9d\x5d\xf7\x9f\ +\x61\xf2\x9d\x60\xed\x9c\x63\x90\x6b\x51\x9c\x69\x41\xea\x99\x5c\ +\xb6\x80\x5d\xaf\x81\x63\xae\x79\x52\x46\x5d\x5d\x44\x4f\x41\x5b\ +\x59\x51\x39\x41\x41\x35\x3a\x38\x31\x39\x36\x34\x42\x4f\x48\x49\ +\x3f\x60\x5c\x4c\x53\x54\x51\x4c\x51\x5a\x2d\x40\x44\x5e\x5e\x52\ +\x4c\x5a\x54\x4f\x5f\x62\x45\x4a\x4f\x3d\x46\x43\x22\x2c\x2e\x3c\ +\x41\x3d\x4f\x56\x51\x4a\x53\x50\x42\x3e\x32\x7e\x70\x66\x00\x00\ +\x00\xf2\xed\xef\xf3\xef\xeb\xf0\xec\xe9\xf1\xeb\xec\xf0\xeb\xe9\ +\xee\xe8\xe4\xee\xe8\xe3\xec\xe4\xdb\xe6\xda\xcc\xe8\xdd\xd4\xea\ +\xe1\xd8\xea\xe1\xdc\xec\xe5\xe2\xf0\xe9\xe5\xee\xe7\xe0\xee\xe5\ +\xe1\xf0\xe8\xe5\xe5\xdf\xd9\xb1\xb4\xba\xb4\xb3\xb2\xab\xa7\xa9\ +\xa9\xa1\x9d\xa9\xa3\xa3\xbe\xbf\xbf\xb3\xb1\xb0\x9d\x96\x94\xa2\ +\x9a\x98\x99\x83\x7a\x99\x80\x70\x93\x78\x68\x8e\x76\x69\xa8\x9d\ +\x99\xf7\xf8\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xdb\xda\xd9\xa0\x97\x95\ +\x8e\x78\x6e\x9a\x8f\x8b\x9b\x94\x92\x8c\x76\x6d\x86\x72\x6c\xa0\ +\x9d\xa0\x85\x77\x73\x82\x7d\x7f\xcb\xca\xc9\xf6\xf5\xf5\xf7\xf4\ +\xf4\xf6\xf4\xf4\xf5\xf3\xf3\xf3\xf0\xf0\xf1\xec\xec\xf0\xeb\xe8\ +\xec\xe7\xe3\xea\xe5\xe0\xea\xe5\xe2\xec\xe7\xe4\xee\xe9\xe6\xf0\ +\xec\xe8\xf0\xeb\xe9\xef\xea\xe7\xee\xea\xe7\xef\xea\xe6\xed\xe8\ +\xe5\xeb\xe6\xe3\xeb\xe4\xe1\xea\xe3\xdf\xe9\xe3\xdf\xeb\xe2\xdc\ +\xe7\xe0\xd7\xe6\xdc\xd3\xe4\xd6\xc9\xe1\xce\xbd\xe0\xcd\xb7\xe3\ +\xc4\xac\xe6\xb9\x95\xec\xaf\x7f\xec\xad\x7f\xf1\xa7\x71\xf2\xa8\ +\x72\xed\xae\x7d\xef\xad\x7c\xf2\xa7\x6f\xf4\xa4\x67\xf5\xa3\x65\ +\xf7\xa0\x64\xf7\xa1\x63\xf7\xa1\x63\xf8\xa1\x62\xf8\xa1\x62\xf6\ +\xa0\x60\xf7\x9e\x5f\xf6\x9e\x61\xf5\x9e\x5f\xf6\x9d\x5d\xf6\x9e\ +\x5f\xf5\x9e\x5d\xf5\x9d\x5d\xf5\x9d\x5d\xf6\x9e\x5e\xf6\x9e\x5e\ +\xf6\x9d\x5d\xf6\x9d\x5c\xf6\x9d\x5d\xf5\x9c\x5d\xf5\x9c\x5d\xf4\ +\x9d\x5d\xf4\x9d\x5c\xf5\x9c\x5c\xf6\x9c\x5b\xf4\x9b\x5c\xf4\x9c\ +\x5b\xf4\x9c\x5c\xf5\x9c\x59\xf5\x9c\x5a\xf4\x9b\x5b\xf4\x9a\x5b\ +\xf5\x9a\x5b\xf4\x9c\x5c\xf3\x9a\x5a\xf5\x9b\x5b\xf4\x9a\x5c\xf5\ +\x99\x5a\xf6\x9a\x58\xf3\x99\x5a\xf3\x9a\x5a\xf4\x9a\x59\xf4\x99\ +\x59\xf3\x9a\x5a\xf5\x9b\x5c\xf5\x9c\x5f\xf6\x9e\x5f\xf8\xa1\x63\ +\xf0\x9c\x60\xf8\xa2\x67\xf2\xa0\x68\xd3\x96\x69\x64\x5a\x50\x6d\ +\x52\x3d\x75\x5a\x43\x3c\x42\x3d\x30\x39\x30\x37\x45\x45\x41\x44\ +\x40\x7f\x5a\x41\x96\x73\x52\x4c\x4e\x51\x69\x5f\x53\x70\x5d\x4d\ +\x43\x42\x3b\x53\x4d\x45\x3a\x48\x48\x4a\x3e\x31\x48\x47\x40\x38\ +\x41\x47\x53\x4d\x45\x6a\x63\x51\x8b\x86\x7c\x64\x5b\x4e\x56\x67\ +\x6e\x6c\x66\x5c\x8d\x7a\x6a\x51\x4e\x42\x00\x00\x00\xf0\xea\xe7\ +\xee\xe9\xe5\xec\xe7\xe4\xee\xe9\xe8\xef\xeb\xe8\xef\xea\xe7\xed\ +\xe6\xe4\xeb\xe3\xda\xe8\xde\xd5\xea\xe1\xd8\xeb\xe3\xdb\xeb\xe5\ +\xe0\xee\xe8\xe5\xf0\xe9\xe5\xec\xe8\xe3\xed\xe7\xe2\xee\xe8\xe4\ +\xf3\xed\xe9\xd3\xcc\xc8\xb3\xab\xa5\x9b\x91\x8a\xa0\x95\x90\x85\ +\x73\x6b\xaf\xb1\xb5\xb4\xb5\xb5\xa8\xa4\xa2\x97\x8b\x87\x92\x7c\ +\x6f\xa6\x91\x83\x96\x81\x76\xc4\xbb\xb7\xd7\xd2\xce\xfc\xfc\xfc\ +\xf9\xf9\xf9\xfa\xfa\xfa\xf0\xf0\xf0\xa1\x9b\x99\x94\x82\x77\xa0\ +\x96\x8f\xa8\x9e\x99\xa2\x92\x89\x87\x70\x65\x91\x8d\x8f\x9b\x91\ +\x8d\xca\xc3\xbf\xf5\xf5\xf5\xf8\xf8\xf8\xf7\xf7\xf7\xf7\xf6\xf6\ +\xf7\xf5\xf5\xf5\xf3\xf3\xf2\xf0\xf0\xf1\xec\xeb\xf0\xeb\xea\xf0\ +\xeb\xe8\xf0\xec\xe9\xf0\xed\xea\xf0\xee\xec\xf1\xed\xec\xf1\xed\ +\xeb\xf1\xec\xea\xf0\xeb\xe8\xf0\xeb\xe9\xef\xeb\xe9\xee\xe9\xe6\ +\xec\xe6\xe3\xec\xe5\xe2\xe9\xe5\xe0\xe8\xe4\xdf\xe9\xe2\xdb\xe7\ +\xde\xd5\xe5\xd8\xcd\xe3\xd4\xc4\xe1\xd1\xbf\xe2\xc4\xa9\xe6\xbc\ +\x9c\xe9\xb6\x8f\xed\xac\x7d\xf2\xa4\x6a\xf2\xa6\x6e\xf1\xa8\x71\ +\xf0\xa9\x75\xf1\xa9\x73\xf3\xa5\x6b\xf4\xa2\x64\xf8\xa2\x63\xf8\ +\xa0\x63\xf7\xa0\x62\xf7\xa2\x63\xf6\xa0\x62\xf7\x9e\x5f\xf5\x9e\ +\x5d\xf6\x9e\x5f\xf6\x9d\x5f\xf5\x9e\x5e\xf6\x9e\x5e\xf6\x9e\x5d\ +\xf5\x9e\x5e\xf5\x9e\x5e\xf5\x9d\x5d\xf5\x9d\x5d\xf4\x9c\x5b\xf5\ +\x9c\x5b\xf5\x9c\x5c\xf6\x9c\x5b\xf6\x9c\x5a\xf6\x9c\x5c\xf5\x9b\ +\x5c\xf4\x9b\x5a\xf4\x9c\x5a\xf3\x9b\x5a\xf5\x9b\x5a\xf6\x9a\x59\ +\xf5\x9a\x5b\xf4\x9a\x5b\xf4\x9a\x5a\xf5\x9a\x5a\xf3\x9a\x59\xf4\ +\x99\x5a\xf4\x9a\x5a\xf5\x99\x5a\xf6\x9a\x5b\xf5\x9b\x5b\xf2\x99\ +\x59\xf5\x9a\x5a\xf5\x9a\x5a\xf3\x9a\x5a\xf3\x9a\x59\xf5\x9a\x5b\ +\xf6\x9b\x5b\xf6\x9c\x5f\xf6\x9d\x5d\xf7\x9e\x61\xf8\xa2\x66\xf7\ +\xa3\x66\xd1\x97\x6e\x61\x59\x4c\x55\x55\x4e\x7b\x64\x54\x46\x3d\ +\x36\x51\x48\x3c\x85\x5f\x46\x6f\x61\x59\x9b\x6a\x4e\xec\x9f\x6c\ +\xcd\x95\x6d\x6b\x5f\x59\x69\x59\x46\x69\x5a\x50\x3b\x3e\x40\x3b\ +\x34\x2c\x66\x53\x3b\xaf\x7b\x55\xf6\xae\x7f\x92\x7c\x6a\x4f\x58\ +\x50\x46\x55\x53\x60\x59\x45\x6c\x71\x6b\x53\x67\x72\x3e\x4c\x53\ +\x50\x4e\x46\x71\x64\x58\x00\x00\x00\xec\xe4\xe1\xe9\xe2\xda\xea\ +\xe4\xdf\xec\xe5\xe2\xee\xe9\xe6\xf1\xec\xe9\xef\xe9\xe5\xec\xe5\ +\xdc\xeb\xe4\xdd\xee\xe5\xe0\xed\xe5\xe1\xec\xe7\xe2\xee\xea\xe6\ +\xf1\xea\xe7\xf0\xea\xe6\xef\xe9\xe5\xef\xea\xe6\xee\xe9\xe6\xf4\ +\xee\xec\xed\xe6\xdd\xc3\xb9\xb0\xb0\xa7\xa0\x98\x88\x7d\xc5\xc1\ +\xbf\xb6\xb6\xb8\xb7\xb5\xb4\x9f\x8f\x84\x9c\x85\x7a\xc3\xbb\xb7\ +\xda\xd3\xd0\xfb\xfc\xfd\xfb\xfb\xfb\xf7\xf7\xf7\xf7\xf7\xf7\xf9\ +\xf9\xf9\xfb\xfb\xfb\xb6\xb1\xad\x9b\x8f\x8e\xa0\x9a\x9a\xa5\x9e\ +\x9b\x97\x8a\x85\x7d\x6d\x6c\x8f\x8c\x8d\xce\xcb\xc9\xfc\xfc\xfd\ +\xf9\xf9\xf9\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf7\xf8\xf8\xf6\ +\xf5\xf5\xf4\xf2\xf2\xf2\xee\xee\xf1\xec\xed\xf1\xef\xed\xf2\xef\ +\xef\xf3\xef\xf0\xf1\xef\xef\xf1\xef\xef\xf1\xee\xee\xf0\xee\xed\ +\xf0\xed\xec\xf1\xed\xeb\xf1\xec\xea\xf0\xec\xe8\xee\xea\xe7\xed\ +\xe7\xe4\xec\xe5\xe2\xe9\xe5\xe0\xea\xe4\xdf\xe9\xe0\xda\xe5\xdb\ +\xd3\xe5\xd7\xcb\xe4\xd5\xc5\xe3\xc9\xb2\xe5\xbe\x9f\xe6\xbb\x96\ +\xef\xaa\x76\xf2\xa5\x6c\xf1\xa7\x70\xf2\xa7\x70\xf2\xa6\x6f\xf4\ +\xa5\x6b\xf4\xa4\x6b\xf5\xa4\x67\xf7\xa1\x63\xf6\xa0\x62\xf6\xa0\ +\x61\xf6\x9f\x61\xf7\x9f\x61\xf6\x9f\x5e\xf6\x9e\x5e\xf5\x9d\x5e\ +\xf5\x9d\x5e\xf6\x9c\x5f\xf5\x9d\x5e\xf6\x9d\x5b\xf5\x9d\x5e\xf5\ +\x9c\x5e\xf5\x9c\x5d\xf5\x9c\x5c\xf6\x9c\x5c\xf4\x9b\x5c\xf5\x9c\ +\x5c\xf5\x9b\x5b\xf4\x9b\x5a\xf5\x9c\x5b\xf4\x9b\x5c\xf3\x9a\x5b\ +\xf5\x9b\x5b\xf5\x9b\x5a\xf6\x9b\x5a\xf4\x9b\x59\xf6\x9a\x5b\xf4\ +\x9a\x5a\xf3\x9a\x59\xf4\x9a\x59\xf4\x9a\x5b\xf4\x9b\x5b\xf4\x9b\ +\x5b\xf6\x9b\x59\xf4\x9a\x5b\xf4\x9a\x5b\xf4\x9a\x5a\xf3\x9a\x59\ +\xf4\x9a\x5a\xf4\x9a\x5a\xf4\x9a\x5a\xf4\x9b\x5b\xf4\x9a\x5a\xf1\ +\x99\x5c\xf0\x9a\x5b\xf2\x9a\x5c\xea\x9b\x65\xd9\x8c\x5b\x93\x74\ +\x60\x62\x56\x4b\x62\x4e\x38\x88\x63\x47\x74\x55\x47\xc2\x7e\x4f\ +\x98\x71\x5e\xe1\x94\x63\xbd\x7f\x5c\xb9\x7a\x55\x98\x73\x5a\x5a\ +\x53\x4b\x43\x3f\x33\x60\x47\x3a\xa8\x6d\x45\xd9\x94\x64\xa3\x7d\ +\x61\xa2\x6b\x43\xd5\x98\x70\x60\x5d\x59\x3e\x4d\x4c\x57\x51\x41\ +\x48\x46\x36\x67\x74\x75\x48\x52\x51\x37\x4c\x56\x2c\x39\x34\x50\ +\x45\x37\x00\x00\x00\xe6\xdd\xd6\xe9\xe1\xd8\xeb\xe4\xdf\xec\xe6\ +\xe2\xef\xea\xe8\xf3\xed\xec\xf2\xed\xea\xef\xe9\xe6\xee\xe6\xe2\ +\xee\xe5\xe1\xee\xe5\xe0\xed\xe5\xe2\xf0\xeb\xe9\xf3\xee\xed\xf3\ +\xef\xec\xf1\xec\xe9\xef\xe9\xe7\xee\xe7\xe3\xee\xe6\xe2\xef\xea\ +\xe8\xf2\xed\xea\xe1\xdb\xd6\xcc\xc7\xc5\xf7\xf5\xf5\xbc\xb9\xb8\ +\xb4\xb3\xb3\xad\xa3\x9c\xcc\xc3\xbf\xfa\xfa\xfb\xfb\xfc\xfc\xf7\ +\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf8\xf8\xf8\xf9\xf9\xf9\xfb\xfb\ +\xfb\xf0\xee\xec\xbe\xb6\xb1\x97\x8c\x85\xa1\x9a\x95\x93\x85\x7e\ +\x8b\x7b\x77\xaf\xac\xac\xf7\xf7\xf6\xf8\xf8\xf9\xf8\xf8\xf8\xf9\ +\xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xf8\xf8\xf8\xf6\xf6\xf6\xf5\xf3\ +\xf3\xf3\xf1\xf1\xf2\xef\xf0\xf2\xf1\xf1\xf3\xf1\xf1\xf3\xf1\xf1\ +\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xf0\xf0\xf2\xf0\xf0\xf2\xef\xef\xf1\ +\xed\xee\xf1\xeb\xec\xf0\xec\xe9\xf0\xeb\xe8\xef\xea\xe7\xed\xe9\ +\xe6\xed\xe5\xe3\xeb\xe5\xe2\xe9\xe2\xdd\xe8\xe0\xd7\xe7\xdc\xd3\ +\xe6\xda\xd0\xe3\xd5\xc6\xe3\xc9\xb2\xe4\xc0\xa4\xec\xaf\x81\xee\ +\xae\x7b\xee\xae\x7c\xed\xae\x7e\xee\xae\x7e\xf1\xa7\x73\xf3\xa4\ +\x6a\xf6\xa2\x66\xf8\x9f\x64\xf6\x9f\x62\xf7\xa0\x61\xf7\x9f\x60\ +\xf6\x9f\x5f\xf6\x9d\x5f\xf5\x9d\x5c\xf6\x9d\x5f\xf6\x9e\x5d\xf6\ +\x9d\x5d\xf5\x9d\x5d\xf4\x9e\x5d\xf5\x9c\x5b\xf5\x9c\x5b\xf6\x9c\ +\x5b\xf4\x9b\x5a\xf5\x9d\x5c\xf3\x9b\x5b\xf7\x9b\x5a\xf4\x9b\x5b\ +\xf5\x9b\x5b\xf6\x9b\x5a\xf6\x9b\x5a\xf4\x9b\x5a\xf5\x9a\x59\xf4\ +\x9a\x58\xf3\x9a\x5a\xf5\x9b\x5a\xf6\x9a\x5b\xf5\x9a\x5a\xf4\x9a\ +\x5a\xf4\x9a\x5a\xf6\x9b\x5c\xf5\x9b\x5c\xf3\x9a\x5c\xf4\x9a\x5a\ +\xf4\x9a\x5a\xf3\x9a\x5b\xf3\x99\x5a\xf3\x99\x58\xf4\x99\x59\xf3\ +\x98\x59\xf3\x9a\x59\xf4\x9a\x5a\xf2\x98\x5b\xf1\x97\x5b\xf2\x9b\ +\x5b\xf8\x9e\x5c\xbc\x85\x66\x76\x54\x44\x3e\x43\x40\x9d\x6b\x44\ +\xc6\x84\x53\xfb\xa4\x67\xeb\x9a\x69\xd8\x8f\x5e\xc9\x8a\x67\xd4\ +\x88\x59\xf8\xa4\x69\xb4\x7a\x58\x80\x59\x46\x54\x43\x35\xb8\x79\ +\x4d\xbc\x7c\x54\xee\xa1\x6d\xbc\x8d\x68\x42\x46\x43\x3e\x3b\x2e\ +\x85\x64\x49\x43\x46\x43\x45\x4f\x4d\x47\x49\x45\x29\x39\x36\x40\ +\x4f\x54\x43\x4a\x41\x39\x49\x47\x35\x43\x44\x43\x46\x41\x00\x00\ +\x00\xe3\xd3\xc7\xe9\xde\xd3\xe8\xdd\xd5\xe9\xe2\xda\xed\xe8\xe5\ +\xf0\xeb\xea\xf3\xee\xee\xf2\xee\xeb\xef\xea\xe4\xef\xe7\xe3\xef\ +\xe8\xe3\xef\xe9\xe5\xf2\xee\xec\xf4\xf2\xf2\xf4\xf2\xf1\xf3\xf0\ +\xef\xf1\xec\xe8\xeb\xe5\xdf\xeb\xe3\xdd\xe8\xe0\xd9\xeb\xe3\xde\ +\xf2\xed\xec\xf3\xee\xef\xf5\xf1\xf2\xec\xe8\xe7\xe2\xdf\xde\xe2\ +\xde\xdb\xf2\xf1\xf0\xf7\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\ +\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\ +\xf3\xf2\xf1\xdf\xdc\xda\xe4\xe3\xe1\xd7\xd3\xcd\xe2\xde\xdb\xee\ +\xed\xed\xfa\xfa\xfa\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfa\xfa\ +\xfa\xfa\xfa\xfa\xf9\xf9\xf9\xf6\xf6\xf6\xf6\xf4\xf4\xf3\xf1\xf1\ +\xf3\xf1\xf1\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\xf2\xf3\xf1\xf1\xf4\ +\xf2\xf2\xf3\xf1\xf1\xf3\xf1\xf1\xf3\xf1\xf1\xf1\xee\xee\xf1\xeb\ +\xeb\xf0\xeb\xeb\xef\xea\xe7\xef\xea\xe7\xef\xea\xe7\xee\xe8\xe4\ +\xeb\xe6\xe5\xea\xe3\xdf\xe9\xe3\xdd\xe7\xdf\xd8\xe7\xdd\xd5\xe5\ +\xd9\xcf\xe1\xcb\xb6\xe3\xbe\xa2\xe8\xb5\x8f\xe9\xb5\x8e\xe9\xb5\ +\x8c\xe8\xb6\x90\xed\xad\x80\xef\xab\x78\xf3\xa5\x6c\xf6\xa2\x63\ +\xf8\xa0\x63\xf7\xa0\x62\xf7\x9e\x60\xf6\x9e\x5f\xf6\x9d\x60\xf5\ +\x9d\x5f\xf5\x9d\x5e\xf6\x9e\x5e\xf5\x9e\x5d\xf5\x9c\x5e\xf5\x9c\ +\x5c\xf5\x9c\x5b\xf5\x9d\x5b\xf6\x9c\x5c\xf5\x9c\x5b\xf7\x9c\x5a\ +\xf6\x9b\x5a\xf5\x9b\x5b\xf5\x9a\x5a\xf5\x9b\x5a\xf6\x9a\x59\xf5\ +\x9a\x59\xf6\x9a\x59\xf6\x9a\x5a\xf5\x9a\x59\xf5\x9a\x5a\xf4\x9a\ +\x59\xf5\x9a\x5c\xf5\x9a\x5c\xf5\x9a\x5b\xf4\x9a\x5a\xf5\x99\x59\ +\xf6\x9a\x58\xf5\x99\x5a\xf3\x9a\x5a\xf3\x9a\x59\xf4\x9a\x5a\xf4\ +\x9a\x5a\xf3\x99\x5a\xf2\x9a\x58\xf4\x98\x58\xf4\x98\x58\xf4\x98\ +\x57\xf3\x98\x57\xf4\x98\x58\xf5\x9b\x5c\xf5\xa0\x62\xf2\x9d\x63\ +\x80\x67\x56\x6b\x4f\x39\xab\x74\x4d\xef\x96\x5a\xf2\x9e\x66\xec\ +\x97\x61\xec\x97\x62\xe7\x9d\x6a\xd6\x88\x5a\xdc\x92\x61\xb0\x73\ +\x4d\xc3\x7b\x4b\xb6\x7b\x5b\x7d\x59\x40\xc1\x7c\x4d\xed\x9a\x60\ +\xe6\xa0\x73\x9a\x76\x5d\x66\x5a\x4e\x30\x44\x45\x32\x40\x3e\x2f\ +\x3d\x3e\x2d\x38\x3a\x33\x34\x2e\x39\x4c\x4d\x30\x3e\x40\x3e\x48\ +\x46\x2d\x3d\x3f\x28\x31\x35\x3f\x4f\x4e\x00\x00\x00\xe2\xcd\xbc\ +\xe8\xdf\xd6\xe8\xda\xcf\xe8\xdc\xd4\xea\xe4\xdf\xec\xe6\xe2\xf1\ +\xec\xeb\xf3\xef\xec\xf0\xec\xe8\xf2\xed\xea\xf2\xed\xea\xf3\xee\ +\xed\xf4\xf2\xf2\xf5\xf3\xf3\xf4\xf2\xf2\xf3\xef\xf0\xef\xea\xe7\ +\xe5\xd4\xc2\xe2\xd0\xbe\xe3\xca\xb4\xe6\xd9\xcf\xf1\xeb\xe8\xf3\ +\xee\xec\xf3\xed\xee\xf5\xf1\xf2\xf5\xf3\xf3\xf5\xf3\xf3\xf5\xf4\ +\xf4\xf6\xf4\xf4\xf7\xf6\xf6\xf6\xf6\xf6\xf5\xf3\xf3\xf5\xf3\xf3\ +\xf7\xf5\xf5\xf6\xf6\xf6\xf6\xf5\xf5\xf7\xf5\xf5\xf9\xf9\xf9\xfb\ +\xfb\xfb\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xf8\xf8\ +\xf8\xf7\xf7\xf7\xf7\xf7\xf7\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\ +\xf9\xf9\xf9\xf6\xf6\xf6\xf7\xf5\xf5\xf4\xf2\xf2\xf4\xf2\xf2\xf4\ +\xf2\xf2\xf4\xf2\xf2\xf5\xf3\xf3\xf4\xf2\xf2\xf5\xf3\xf3\xf5\xf3\ +\xf3\xf3\xf1\xf1\xf2\xf0\xf0\xf2\xee\xef\xf1\xeb\xeb\xf0\xea\xe9\ +\xee\xe9\xe5\xed\xe6\xe3\xeb\xe6\xe3\xec\xe7\xe4\xec\xe5\xe3\xe7\ +\xe0\xdd\xe6\xdd\xd8\xe5\xda\xd1\xe4\xd8\xcf\xe3\xd5\xc8\xe1\xc7\ +\xb0\xe5\xb9\x98\xe7\xb6\x92\xe6\xbb\x97\xe6\xbc\x9c\xe9\xb2\x8c\ +\xf1\xa7\x72\xee\xab\x7a\xf4\xa4\x6c\xf6\xa1\x64\xf8\xa1\x63\xf6\ +\x9f\x61\xf6\x9e\x5f\xf6\x9e\x5d\xf6\x9d\x5f\xf4\x9e\x5f\xf6\x9d\ +\x5d\xf6\x9d\x5c\xf4\x9d\x5b\xf4\x9d\x5b\xf5\x9c\x5c\xf5\x9c\x5a\ +\xf5\x9c\x5c\xf5\x9b\x5b\xf5\x9a\x5b\xf5\x9b\x5a\xf5\x9a\x59\xf3\ +\x9c\x5d\xf3\x9a\x5a\xf5\x9a\x5a\xf7\x9a\x5a\xf5\x9a\x59\xf7\x99\ +\x59\xf6\x99\x5b\xf4\x99\x5b\xf5\x9a\x5a\xf6\x9a\x59\xf4\x99\x5a\ +\xf5\x9a\x5a\xf4\x9a\x59\xf4\x9a\x5b\xf3\x9a\x5a\xf5\x9a\x58\xf4\ +\x99\x5a\xf4\x97\x58\xf5\x99\x57\xf3\x98\x58\xf2\x98\x58\xf4\x99\ +\x58\xf2\x99\x59\xf3\x97\x58\xf3\x99\x57\xf3\x97\x57\xf2\x98\x58\ +\xf5\x98\x58\xf4\x99\x58\xf5\x9c\x5f\xe3\x93\x5f\xbc\x77\x45\xea\ +\x95\x57\xeb\x98\x64\xdc\x89\x55\xeb\x94\x5d\xe9\x97\x62\xc8\x82\ +\x57\xc2\x7b\x51\xb1\x74\x52\x75\x48\x32\xb4\x6f\x43\xbf\x78\x4a\ +\x9e\x6e\x51\xba\x6f\x3f\xea\x98\x60\xee\x9a\x62\xb5\x83\x5e\x6e\ +\x5c\x4b\x68\x56\x44\x64\x5b\x4c\x4d\x51\x49\x3c\x3f\x3a\x56\x4e\ +\x3a\x5c\x59\x4f\x4d\x49\x44\x46\x46\x3e\x42\x48\x41\x45\x4c\x43\ +\x82\x73\x61\x61\x56\x47\x00\x00\x00\xe2\xc7\xaf\xe5\xd8\xcd\xe9\ +\xde\xd4\xea\xdd\xd4\xe7\xdd\xd4\xe8\xdf\xd9\xee\xe9\xe6\xef\xeb\ +\xe8\xf0\xec\xe8\xf1\xec\xe9\xf2\xed\xec\xf2\xed\xee\xf4\xf2\xf2\ +\xf3\xf1\xf1\xf3\xed\xee\xed\xe6\xe0\xe3\xcf\xc0\xe3\xc4\xa8\xe6\ +\xbe\x9b\xe5\xbd\x9b\xe6\xd3\xc5\xf0\xec\xea\xf3\xef\xec\xf4\xf0\ +\xef\xf7\xf3\xf4\xf4\xf1\xf2\xf3\xed\xee\xf3\xee\xef\xf3\xf1\xf1\ +\xf3\xf1\xf1\xf3\xf1\xf1\xf3\xef\xf0\xf3\xf0\xf0\xf5\xf3\xf3\xf6\ +\xf4\xf4\xf5\xf3\xf3\xf5\xf4\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf6\xf6\ +\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf6\xf6\xf6\xf7\xf5\xf5\ +\xf6\xf5\xf5\xf7\xf7\xf7\xfa\xfa\xfa\xf9\xf9\xf9\xf7\xf7\xf7\xf6\ +\xf6\xf6\xf5\xf4\xf4\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\ +\xf2\xf4\xf2\xf2\xf5\xf3\xf3\xf4\xf2\xf2\xf4\xf2\xf2\xf3\xf1\xf1\ +\xf2\xf0\xf0\xf2\xee\xee\xf1\xeb\xec\xee\xea\xe7\xec\xe6\xe3\xeb\ +\xe4\xe1\xea\xe3\xe0\xea\xe3\xe0\xe7\xe1\xda\xe6\xde\xd6\xe5\xda\ +\xd2\xe3\xd7\xcd\xe2\xd4\xc7\xe1\xd0\xbe\xe2\xc0\xa6\xe4\xbb\x9d\ +\xe5\xbe\xa0\xe5\xc0\xa5\xe7\xb6\x95\xef\xa7\x76\xf1\xa7\x70\xf2\ +\xa5\x6f\xf6\xa1\x65\xf8\xa1\x64\xf5\x9f\x61\xf6\x9e\x61\xf6\x9e\ +\x5e\xf5\x9d\x5e\xf5\x9e\x5e\xf6\x9c\x5e\xf5\x9d\x5d\xf4\x9c\x5c\ +\xf5\x9c\x5c\xf4\x9b\x5b\xf6\x9c\x5b\xf3\x9a\x5c\xf5\x9a\x59\xf4\ +\x9a\x5a\xf5\x9a\x5b\xf4\x9b\x5b\xf4\x9c\x5b\xf7\x99\x5a\xf6\x9b\ +\x5a\xf6\x9a\x59\xf4\x99\x5c\xf6\x99\x5b\xf4\x9b\x5b\xf4\x9a\x5b\ +\xf4\x9a\x5a\xf4\x99\x59\xf5\x99\x59\xf3\x99\x58\xf6\x98\x58\xf4\ +\x98\x57\xf4\x98\x5a\xf4\x98\x5a\xf3\x98\x59\xf3\x98\x56\xf3\x98\ +\x57\xf4\x99\x59\xf4\x97\x57\xf2\x98\x58\xf3\x97\x58\xf3\x97\x59\ +\xf3\x97\x5a\xf3\x98\x57\xf4\x98\x57\xf3\x98\x57\xf3\x99\x58\xf4\ +\x99\x58\xf4\x9a\x59\xf2\x98\x59\xf6\x9b\x5b\xf5\x9c\x5b\xf6\x9c\ +\x5e\xea\x99\x61\xb8\x79\x55\xb7\x73\x4a\xd7\x84\x51\xbd\x79\x54\ +\xb9\x6f\x3f\xce\x7e\x47\xe7\x91\x56\xe8\x92\x57\xe5\x90\x56\xe4\ +\x91\x5d\xf6\x9f\x62\xe2\x99\x68\x8f\x6c\x55\x4e\x4b\x3a\x60\x5d\ +\x4a\x96\x68\x46\x62\x59\x50\x5e\x4d\x3a\xaa\x79\x57\x5c\x60\x57\ +\x3e\x49\x49\x61\x65\x5d\x7f\x6a\x55\x8b\x69\x46\xdf\x9a\x6a\xed\ +\xa2\x6d\x00\x00\x00\xe5\xbe\x9f\xe3\xc8\xaf\xe3\xc6\xae\xe3\xc4\ +\xac\xe2\xcd\xba\xe4\xd8\xcd\xe9\xe3\xde\xec\xe3\xe1\xea\xe0\xd8\ +\xe6\xd6\xcb\xe6\xd7\xcd\xe8\xdc\xd5\xe8\xdf\xd9\xe9\xdf\xda\xe8\ +\xd9\xce\xe4\xc5\xac\xe5\xb7\x91\xe7\xb8\x92\xea\xb3\x88\xea\xb2\ +\x86\xe6\xce\xbc\xf0\xeb\xea\xf3\xf0\xf0\xf6\xf4\xf4\xf7\xf5\xf5\ +\xf4\xef\xee\xf0\xeb\xe8\xef\xe9\xe8\xf0\xea\xea\xf0\xeb\xe9\xef\ +\xea\xe7\xee\xe8\xe7\xf2\xee\xee\xf4\xf3\xf3\xf6\xf4\xf4\xf4\xf2\ +\xf2\xf1\xef\xef\xf3\xef\xef\xf3\xf0\xf0\xf3\xf0\xf0\xf4\xf3\xf3\ +\xf6\xf6\xf6\xf5\xf4\xf4\xf5\xf3\xf3\xf3\xf1\xf1\xf4\xf2\xf2\xf5\ +\xf5\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf6\xf6\xf6\xf5\xf4\xf4\xf5\xf3\ +\xf3\xf4\xf2\xf2\xf2\xf0\xf0\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xf0\xf0\ +\xf4\xf2\xf2\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xf0\xf0\xf2\xf0\xf0\xf2\ +\xee\xef\xf0\xeb\xeb\xec\xe8\xe4\xe9\xe1\xde\xe7\xdf\xda\xe7\xe0\ +\xdc\xe6\xde\xd9\xe2\xd6\xce\xe2\xd6\xca\xe2\xd5\xcb\xe1\xd3\xc9\ +\xe2\xd3\xca\xe2\xd5\xc9\xe3\xca\xb4\xe3\xc8\xb0\xe3\xc6\xae\xe6\ +\xb9\x99\xee\xa8\x7a\xef\xaa\x77\xee\xac\x7d\xf3\xa3\x6c\xf7\x9f\ +\x63\xf6\x9f\x61\xf6\x9e\x60\xf5\x9d\x5f\xf5\x9d\x5f\xf5\x9d\x5d\ +\xf4\x9d\x5c\xf5\x9c\x5c\xf4\x9c\x5e\xf4\x9c\x5d\xf5\x9c\x5d\xf6\ +\x9b\x5a\xf4\x9b\x5c\xf3\x9a\x59\xf6\x9a\x5a\xf4\x9a\x5a\xf5\x9a\ +\x5a\xf5\x9a\x59\xf5\x9a\x5a\xf6\x99\x5b\xf4\x9a\x5a\xf4\x9b\x59\ +\xf4\x9b\x5a\xf5\x9a\x5a\xf5\x9a\x5a\xf5\x99\x58\xf4\x98\x59\xf5\ +\x98\x58\xf4\x98\x56\xf4\x97\x5a\xf4\x97\x58\xf4\x97\x57\xf3\x97\ +\x57\xf3\x97\x57\xf4\x97\x57\xf4\x97\x56\xf3\x98\x58\xf4\x98\x57\ +\xf4\x98\x56\xf4\x98\x57\xf3\x96\x56\xf4\x98\x58\xf3\x97\x57\xf2\ +\x98\x57\xf2\x98\x57\xf2\x99\x58\xf4\x98\x58\xf4\x99\x58\xf3\x99\ +\x59\xee\x95\x59\xdd\x8a\x54\xd8\x8c\x55\xd4\x83\x4c\xd5\x85\x56\ +\xc3\x7f\x5d\xc6\x7c\x50\x88\x62\x49\xbc\x6c\x37\xd8\x88\x54\xeb\ +\x90\x50\xea\x93\x56\xf2\x99\x5b\xe9\x92\x57\xe8\x94\x5e\xf8\xa1\ +\x62\xc1\x8a\x62\x6c\x4f\x3a\xd1\x8a\x57\xc8\x91\x6a\x53\x48\x40\ +\x4f\x49\x3f\x4d\x4c\x3f\x74\x5c\x46\x57\x5c\x54\x66\x5d\x59\x6f\ +\x65\x55\xc8\x8a\x5e\xab\x7d\x5c\xd5\x94\x64\xba\x8c\x6f\x00\x00\ +\x00\xef\xaa\x76\xec\xad\x7f\xed\xac\x7a\xe9\xb1\x87\xe4\xc1\xa4\ +\xe3\xcf\xbd\xe4\xcf\xbc\xe5\xc1\xa5\xe6\xba\x98\xe9\xac\x7f\xe8\ +\xac\x82\xe5\xb7\x96\xe4\xb8\x96\xe5\xb7\x95\xe8\xb1\x87\xed\xab\ +\x79\xed\xac\x7a\xef\xaa\x75\xef\xab\x76\xec\xb0\x80\xe5\xc8\xb4\ +\xe8\xdf\xda\xea\xe0\xdd\xea\xe4\xe0\xf1\xed\xec\xef\xea\xe8\xea\ +\xe3\xdd\xe6\xdc\xd4\xe7\xde\xd8\xea\xe0\xdb\xea\xe3\xde\xed\xe6\ +\xe4\xf1\xec\xed\xf3\xf1\xf1\xf3\xf1\xf1\xf2\xef\xf0\xec\xe7\xe6\ +\xeb\xe6\xe4\xec\xe5\xe3\xeb\xe4\xe3\xee\xe9\xe9\xf1\xee\xee\xf1\ +\xed\xed\xef\xea\xea\xef\xec\xec\xf2\xef\xf0\xf4\xf2\xf2\xf5\xf3\ +\xf4\xf5\xf4\xf4\xf6\xf4\xf4\xf6\xf3\xf3\xf4\xf2\xf2\xf3\xf1\xf1\ +\xf2\xf0\xf0\xf2\xef\xef\xf2\xf0\xf0\xf2\xf1\xf1\xf2\xf0\xf0\xf2\ +\xef\xef\xf2\xef\xef\xf2\xef\xef\xf2\xf0\xf0\xf0\xee\xee\xef\xea\ +\xe8\xe9\xe3\xde\xe2\xd6\xcd\xe0\xd0\xc3\xe2\xd6\xcc\xe4\xd6\xcf\ +\xe0\xd3\xc7\xdf\xca\xb7\xe0\xc7\xb4\xe0\xc7\xb2\xe0\xcb\xb9\xe2\ +\xd2\xc6\xe2\xd3\xc4\xe0\xcd\xbb\xe3\xc2\xaa\xe6\xbc\x9e\xea\xb2\ +\x89\xed\xaf\x82\xee\xac\x7f\xf3\xa3\x6d\xf5\x9f\x62\xf5\x9e\x5f\ +\xf5\x9e\x5e\xf5\x9d\x5f\xf5\x9d\x5e\xf4\x9c\x5e\xf4\x9d\x5c\xf4\ +\x9b\x5d\xf5\x9d\x5b\xf4\x9c\x5b\xf4\x9b\x5b\xf4\x9b\x5a\xf7\x9a\ +\x5c\xf4\x9b\x5b\xf3\x9a\x5a\xf5\x9a\x5a\xf4\x9a\x5a\xf5\x9a\x59\ +\xf6\x9a\x5b\xf4\x9a\x5c\xf5\x9b\x5c\xf5\x9a\x5b\xf5\x9a\x5a\xf5\ +\x99\x59\xf5\x99\x58\xf4\x98\x56\xf4\x98\x56\xf4\x98\x56\xf4\x97\ +\x57\xf3\x98\x57\xf3\x98\x56\xf3\x97\x57\xf4\x97\x57\xf4\x97\x56\ +\xf3\x98\x56\xf4\x97\x57\xf3\x98\x58\xf3\x98\x57\xf3\x97\x56\xf3\ +\x97\x55\xf3\x95\x57\xf4\x97\x55\xf3\x97\x56\xf2\x96\x56\xf3\x98\ +\x57\xf3\x98\x56\xf3\x98\x58\xee\x95\x58\xeb\x91\x56\xe6\x8f\x56\ +\xca\x7d\x50\xe6\x90\x55\xf4\x9a\x5d\xde\x90\x5f\xb5\x76\x52\x9e\ +\x64\x44\xd2\x82\x4a\xd0\x80\x4e\xe4\x89\x4c\xe9\x91\x55\xf1\x97\ +\x57\xf6\x9d\x5c\xea\x91\x56\xf5\x9d\x61\xf5\x9d\x62\xe7\x9a\x66\ +\xc7\x88\x5e\xa3\x71\x4f\xc0\x7c\x51\x58\x4f\x4a\x41\x39\x2d\x36\ +\x39\x35\x2c\x3a\x38\x5b\x58\x52\xa1\x76\x50\x94\x7b\x67\x63\x4c\ +\x3e\x8e\x6f\x54\x87\x6d\x58\xa2\x78\x5a\x00\x00\x00\xf1\xa7\x6e\ +\xf0\xa7\x71\xf0\xa9\x70\xec\xae\x7f\xe8\xb3\x8c\xe8\xb4\x8b\xeb\ +\xaf\x80\xee\xa8\x72\xee\xa9\x75\xee\xab\x76\xee\xac\x79\xed\xae\ +\x7d\xed\xab\x77\xf0\xa8\x70\xf0\xa8\x6e\xf0\xab\x78\xef\xad\x7a\ +\xf1\xab\x75\xf0\xab\x75\xee\xac\x7a\xea\xb2\x89\xe7\xb9\x96\xe8\ +\xb7\x94\xe2\xc1\xa8\xe4\xcf\xc1\xe6\xc9\xb6\xe2\xca\xb6\xe2\xce\ +\xbd\xe2\xd3\xc6\xe5\xd9\xce\xea\xe2\xdc\xeb\xe4\xe2\xee\xe8\xe7\ +\xf0\xec\xec\xee\xea\xea\xec\xe7\xe6\xe8\xe3\xdc\xe7\xe1\xd9\xe8\ +\xe0\xda\xe8\xe0\xda\xea\xe3\xe1\xeb\xe5\xe3\xea\xe3\xe0\xe8\xe1\ +\xdc\xea\xe4\xe1\xee\xe8\xe9\xf0\xed\xec\xf3\xef\xf0\xf3\xf0\xf1\ +\xf3\xf2\xf2\xf3\xf1\xf1\xf2\xef\xef\xf0\xed\xed\xf1\xed\xed\xf1\ +\xec\xec\xf1\xed\xed\xef\xec\xed\xf0\xec\xec\xef\xea\xeb\xf0\xea\ +\xeb\xf1\xec\xed\xf0\xed\xed\xee\xe9\xea\xea\xe4\xe1\xe5\xda\xd3\ +\xdf\xc8\xb5\xdf\xc7\xb2\xdf\xce\xbb\xe0\xd0\xc3\xe0\xd1\xc3\xe1\ +\xd0\xc0\xe2\xc7\xb2\xe3\xbf\xa4\xe2\xc2\xa8\xe1\xc3\xac\xe2\xc3\ +\xad\xe2\xc2\xab\xe5\xbf\xa5\xe6\xba\x9c\xe8\xb5\x92\xed\xae\x81\ +\xf1\xa6\x72\xf5\x9f\x65\xf5\x9e\x60\xf5\x9d\x5f\xf6\x9d\x5e\xf6\ +\x9e\x60\xf5\x9d\x5f\xf4\x9d\x5e\xf4\x9c\x5c\xf3\x9c\x5b\xf4\x9b\ +\x5b\xf3\x9b\x5b\xf4\x9b\x5b\xf5\x9c\x5a\xf7\x9a\x5b\xf3\x99\x5b\ +\xf4\x9a\x5a\xf5\x9a\x5a\xf5\x9a\x5a\xf3\x9a\x59\xf5\x9a\x5c\xf4\ +\x9b\x5a\xf4\x9a\x5a\xf5\x99\x5a\xf5\x98\x57\xf5\x98\x58\xf4\x98\ +\x57\xf5\x98\x57\xf3\x97\x56\xf3\x97\x56\xf4\x97\x58\xf3\x97\x56\ +\xf1\x97\x57\xf3\x96\x56\xf3\x97\x56\xf3\x97\x55\xf2\x97\x56\xf3\ +\x96\x55\xf4\x96\x55\xf4\x97\x56\xf3\x97\x55\xf3\x96\x54\xf3\x95\ +\x56\xf3\x96\x56\xf2\x96\x57\xf3\x96\x56\xf3\x96\x57\xf4\x99\x57\ +\xea\x90\x52\xec\x91\x52\xef\x94\x57\xf4\x9a\x59\xf7\x9c\x5d\xf9\ +\x9e\x5e\xdc\x93\x63\xb4\x75\x50\xa9\x6d\x46\xad\x68\x43\xd6\x82\ +\x4c\xc3\x7a\x4b\xe8\x8d\x4e\xf1\x96\x56\xf5\x9c\x5b\xf6\x9c\x5b\ +\xdf\x90\x5b\xee\x94\x55\xe8\x95\x5d\xdc\x91\x60\xbe\x81\x5a\x57\ +\x46\x3a\x97\x64\x40\x31\x3b\x3e\x2e\x37\x31\x4f\x43\x34\x44\x4b\ +\x45\x4f\x4c\x44\x5c\x4e\x3c\xa3\x70\x4b\x4d\x47\x3c\x62\x54\x44\ +\x50\x49\x40\x5e\x53\x46\x00\x00\x00\xf3\xa7\x6d\xf4\xa6\x6b\xf3\ +\xa6\x6b\xf2\xa6\x6d\xf1\xa8\x6f\xf1\xa8\x6d\xf1\xa8\x6c\xf1\xa6\ +\x6e\xf1\xa7\x6d\xf0\xa8\x6e\xf0\xa9\x6f\xf0\xa7\x6f\xf2\xa7\x6e\ +\xf0\xa8\x6d\xf1\xa7\x6f\xf1\xa7\x71\xef\xa8\x72\xf1\xa8\x72\xef\ +\xac\x76\xef\xa9\x72\xef\xa9\x73\xef\xa9\x76\xeb\xb1\x84\xe9\xb5\ +\x8a\xed\xad\x7e\xe9\xb1\x87\xe4\xbd\x9f\xe4\xd1\xc1\xe7\xda\xd0\ +\xe9\xde\xd7\xe9\xe1\xdd\xe9\xe1\xde\xea\xe3\xdf\xeb\xe5\xe2\xea\ +\xe4\xe0\xe8\xe1\xde\xe6\xdc\xd4\xe6\xda\xd3\xe6\xdb\xd4\xe5\xdb\ +\xd3\xe7\xde\xda\xe9\xe0\xdd\xe8\xdf\xdb\xe5\xdd\xd5\xe7\xde\xd9\ +\xe8\xe2\xdf\xea\xe4\xe1\xed\xe8\xe8\xf0\xeb\xeb\xf1\xeb\xed\xf0\ +\xeb\xec\xef\xe9\xea\xef\xea\xe9\xed\xe8\xe8\xee\xe8\xe8\xed\xe7\ +\xe7\xeb\xe5\xe4\xec\xe5\xe4\xec\xe5\xe4\xec\xe7\xe6\xec\xe8\xe6\ +\xeb\xe6\xe5\xea\xe4\xe2\xe7\xde\xdb\xe0\xd1\xc4\xe1\xc4\xab\xe1\ +\xc6\xaf\xe0\xcb\xba\xe2\xc3\xac\xe1\xc5\xb1\xe0\xcd\xbb\xe1\xcc\ +\xba\xe1\xc7\xb0\xe3\xc3\xab\xe7\xb3\x92\xea\xaf\x86\xe6\xb6\x95\ +\xe6\xb8\x99\xe7\xb8\x97\xea\xb0\x89\xf2\xa3\x6b\xf4\x9f\x64\xf5\ +\x9e\x60\xf5\x9d\x5f\xf5\x9d\x60\xf5\x9d\x5f\xf6\x9d\x60\xf5\x9d\ +\x5f\xf5\x9c\x5d\xf4\x9c\x5c\xf3\x9c\x5a\xf4\x9a\x5a\xf4\x9b\x5b\ +\xf3\x9b\x5a\xf4\x9a\x5a\xf4\x9a\x5c\xf4\x9a\x5b\xf4\x9a\x5a\xf5\ +\x9a\x5b\xf6\x9a\x5a\xf4\x9a\x5c\xf4\x99\x5a\xf3\x9a\x5b\xf4\x99\ +\x5b\xf5\x98\x58\xf3\x98\x58\xf3\x98\x59\xf3\x97\x58\xf2\x98\x58\ +\xf3\x97\x57\xf3\x97\x56\xf2\x97\x56\xf2\x96\x56\xf2\x97\x56\xf3\ +\x97\x56\xf4\x96\x55\xf4\x96\x56\xf3\x96\x55\xf3\x96\x54\xf4\x95\ +\x55\xf3\x96\x55\xf3\x95\x55\xf4\x95\x55\xf3\x96\x54\xf3\x97\x56\ +\xf2\x96\x57\xf3\x96\x55\xf3\x96\x54\xee\x95\x54\xee\x91\x51\xf3\ +\x96\x57\xf4\x99\x5a\xf2\x99\x5b\xee\x95\x5b\xd4\x88\x5a\xa2\x64\ +\x45\xb4\x70\x41\xc6\x7e\x51\xcf\x7f\x4b\xe9\x91\x52\xd2\x89\x59\ +\xda\x81\x48\xf6\x9c\x5b\xf4\x9a\x5b\xf8\x9c\x5a\xd6\x91\x5f\xde\ +\x89\x4f\xac\x6c\x46\xcb\x87\x5a\x69\x4f\x3e\x65\x4e\x3e\x53\x47\ +\x35\x31\x3c\x3c\x47\x44\x36\x66\x4f\x37\x5a\x50\x43\x2d\x3a\x35\ +\x3f\x38\x28\xae\x75\x4c\x49\x4e\x4a\x71\x52\x39\x6c\x56\x45\x73\ +\x5c\x47\x00\x00\x00\xf3\xa6\x6b\xf5\xa7\x6a\xf5\xa5\x6a\xf5\xa5\ +\x69\xf3\xa6\x6b\xf3\xa6\x6b\xf3\xa6\x6b\xf4\xa5\x6c\xf2\xa6\x6d\ +\xf2\xa6\x6c\xf2\xa7\x6b\xf4\xa7\x6a\xf4\xa6\x6c\xf2\xa8\x6c\xf1\ +\xa7\x6f\xf3\xa8\x6f\xf4\xa7\x6b\xf3\xa6\x6c\xf0\xa8\x72\xf1\xa6\ +\x6e\xf0\xa6\x6d\xef\xa8\x73\xe8\xb5\x90\xe6\xb7\x94\xea\xb4\x88\ +\xe9\xb2\x88\xe6\xba\x96\xe3\xd1\xc1\xe3\xd7\xcd\xe5\xd9\xd0\xe2\ +\xd4\xc9\xe1\xd3\xc9\xe5\xdb\xd6\xe6\xdc\xd5\xe6\xde\xd7\xe8\xde\ +\xd6\xe5\xd8\xce\xe3\xd6\xcd\xe4\xd6\xcb\xe3\xd6\xc9\xe4\xd7\xcf\ +\xe4\xd9\xd0\xe4\xd8\xcf\xe4\xd8\xcf\xe5\xdc\xd4\xe5\xdc\xd5\xe8\ +\xdf\xd9\xe9\xe3\xdf\xea\xe4\xe0\xeb\xe6\xe2\xec\xe6\xe6\xea\xe6\ +\xe3\xea\xe4\xe1\xea\xe2\xe0\xe9\xe2\xe0\xe7\xe0\xdb\xe7\xde\xda\ +\xe7\xe0\xdc\xe8\xe0\xdc\xe7\xdf\xda\xe7\xdf\xdb\xe8\xdf\xdc\xe7\ +\xe0\xdb\xe2\xd4\xca\xe1\xc1\xa8\xe1\xc7\xb1\xe1\xcc\xb8\xdf\xc9\ +\xb5\xe2\xc2\xa9\xe2\xc4\xab\xe1\xc7\xb0\xe1\xc7\xb2\xe3\xc2\xa9\ +\xe4\xbc\xa0\xea\xad\x84\xee\xac\x7c\xec\xaa\x7b\xec\xaa\x7d\xec\ +\xaa\x7e\xf1\xa1\x68\xf5\x9d\x5f\xf5\x9d\x60\xf5\x9c\x5e\xf5\x9d\ +\x5f\xf4\x9f\x5f\xf5\x9c\x5d\xf5\x9d\x5e\xf4\x9c\x5d\xf3\x9c\x5c\ +\xf4\x9b\x5b\xf5\x9b\x5a\xf2\x99\x5c\xf3\x9a\x59\xf5\x9a\x5c\xf4\ +\x9a\x5b\xf2\x99\x5b\xf3\x9a\x5a\xf6\x9a\x5a\xf4\x9a\x5a\xf3\x9a\ +\x5a\xf3\x99\x5c\xf3\x9a\x5a\xf5\x98\x59\xf4\x97\x58\xf3\x98\x57\ +\xf5\x97\x56\xf3\x97\x56\xf5\x98\x54\xf2\x96\x57\xf3\x97\x55\xf3\ +\x97\x56\xf2\x96\x56\xf2\x96\x55\xf2\x95\x55\xf4\x96\x55\xf3\x96\ +\x55\xf2\x95\x53\xf3\x96\x54\xf3\x95\x53\xf3\x96\x55\xf3\x95\x55\ +\xf2\x96\x55\xf2\x95\x54\xf5\x95\x53\xf4\x94\x54\xf2\x96\x54\xf2\ +\x95\x53\xf3\x95\x54\xed\x91\x52\xf2\x96\x55\xf3\x96\x57\xf0\x97\ +\x58\xe9\x94\x5c\xcb\x83\x56\xc1\x75\x43\xba\x78\x4d\xd8\x85\x4b\ +\xe0\x88\x4f\xde\x88\x51\xdf\x8a\x54\xc2\x7c\x4f\xb6\x61\x33\xf8\ +\x9e\x5d\xf4\x99\x5b\xed\x97\x5a\xe1\x98\x63\x98\x5e\x39\xa8\x6c\ +\x47\xc3\x89\x63\x50\x4f\x47\x22\x2e\x28\x24\x2d\x2a\x38\x3c\x32\ +\x45\x4c\x45\x29\x36\x2e\x40\x3b\x31\x38\x3d\x32\x76\x5f\x42\xa2\ +\x73\x4d\x4f\x51\x4c\x51\x41\x2b\x39\x3f\x3a\x57\x50\x44\x00\x00\ +\x00\xf6\xa6\x69\xf6\xa5\x69\xf5\xa5\x68\xf5\xa5\x68\xf6\xa5\x6a\ +\xf6\xa6\x69\xf6\xa5\x68\xf4\xa5\x6a\xf5\xa5\x6a\xf4\xa5\x69\xf4\ +\xa5\x6b\xf5\xa4\x6b\xf4\xa4\x6d\xf5\xa7\x6b\xf3\xa6\x6d\xf3\xa6\ +\x6d\xf5\xa6\x6a\xf6\xa6\x69\xf4\xa5\x6a\xf4\xa4\x6a\xf4\xa4\x69\ +\xf2\xa5\x6e\xed\xad\x7e\xea\xb0\x85\xea\xb0\x87\xec\xad\x7c\xe5\ +\xc1\xa3\xe1\xcb\xb5\xe0\xca\xb6\xe2\xcd\xb8\xe3\xc0\xa7\xe2\xc8\ +\xb3\xe0\xce\xbd\xe1\xd2\xc4\xe5\xd8\xcf\xe4\xd8\xcf\xe3\xd4\xc6\ +\xe2\xd3\xc4\xe1\xd3\xc4\xe4\xd5\xc9\xe1\xd3\xc6\xe0\xd0\xbe\xe0\ +\xcd\xbc\xe0\xcd\xbe\xe2\xd1\xc4\xe1\xd4\xc7\xe4\xd8\xd0\xe6\xd9\ +\xd3\xe6\xdc\xd6\xe8\xe0\xdc\xe6\xdf\xdb\xe7\xde\xd9\xe5\xdc\xd5\ +\xe4\xd9\xd3\xe5\xda\xd5\xe5\xd9\xd1\xe4\xd6\xce\xe0\xd0\xc5\xde\ +\xc9\xba\xdf\xcd\xbe\xe0\xd2\xc6\xe2\xd5\xcd\xe2\xd5\xcd\xe0\xc7\ +\xb6\xe3\xc2\xa8\xe1\xc6\xb2\xdf\xc6\xb2\xe1\xbe\xa7\xe5\xb3\x92\ +\xe5\xb6\x9a\xe6\xb5\x97\xe7\xb5\x94\xe5\xb6\x95\xe9\xaf\x88\xeb\ +\xa8\x7b\xf2\xa0\x67\xf3\x9f\x66\xf2\x9d\x63\xf3\x9c\x61\xf4\x9b\ +\x5d\xf5\x9b\x5e\xf5\x9c\x5f\xf4\x9c\x5e\xf5\x9c\x5f\xf5\x9b\x5e\ +\xf4\x9c\x5d\xf3\x9a\x5d\xf4\x9a\x5b\xf3\x9a\x5a\xf4\x9b\x5a\xf4\ +\x9b\x5b\xf1\x99\x59\xf4\x9a\x5b\xf5\x9b\x5c\xf5\x9a\x5c\xf3\x9a\ +\x5a\xf4\x9a\x58\xf1\x99\x5a\xf3\x99\x58\xf4\x99\x58\xf4\x97\x57\ +\xf4\x97\x58\xf3\x97\x57\xf2\x97\x56\xf4\x97\x55\xf4\x96\x55\xf3\ +\x96\x57\xf3\x96\x56\xf2\x97\x56\xf2\x96\x56\xf3\x96\x55\xf2\x96\ +\x54\xf2\x96\x55\xf3\x95\x55\xf2\x95\x55\xf2\x95\x55\xf2\x95\x54\ +\xf3\x95\x54\xf3\x96\x53\xf4\x94\x54\xf2\x95\x53\xf2\x96\x55\xf4\ +\x94\x54\xf3\x94\x54\xf4\x94\x53\xf2\x96\x53\xf2\x95\x55\xf1\x96\ +\x57\xef\x92\x55\xf1\x96\x56\xf2\x97\x57\xed\x94\x5a\xc7\x80\x54\ +\xcd\x79\x46\xbb\x74\x4b\x97\x64\x4d\xdc\x7f\x43\xe7\x90\x56\xe5\ +\x91\x57\xe4\x8c\x53\xf5\x99\x59\xe1\x8c\x55\xef\x92\x53\xf0\x99\ +\x5a\xca\x81\x52\x72\x55\x3f\x60\x45\x30\x6d\x56\x46\x49\x40\x35\ +\x1c\x2c\x2b\x4f\x3a\x21\x6e\x5b\x43\x93\x61\x37\xb0\x7d\x53\x89\ +\x63\x42\xe5\x95\x58\xc4\x89\x62\xac\x73\x4c\xf2\xab\x76\xab\x80\ +\x65\xa6\x72\x47\x66\x5a\x4b\x5b\x56\x48\x00\x00\x00\xf5\xa5\x68\ +\xf5\xa5\x68\xf4\xa4\x68\xf5\xa5\x69\xf5\xa5\x69\xf5\xa5\x68\xf5\ +\xa4\x69\xf5\xa5\x6a\xf4\xa6\x68\xf5\xa5\x69\xf5\xa6\x6a\xf5\xa6\ +\x6b\xf5\xa6\x6a\xf6\xa6\x69\xf5\xa6\x6b\xf5\xa4\x6c\xf5\xa4\x6a\ +\xf5\xa4\x69\xf5\xa4\x69\xf5\xa4\x68\xf4\xa4\x69\xf3\xa3\x69\xf0\ +\xa9\x76\xef\xaa\x77\xf1\xa8\x73\xed\xab\x7a\xe6\xb7\x97\xe6\xb5\ +\x92\xe5\xbc\x9e\xe6\xb9\x96\xe6\xb5\x92\xe3\xc1\xa8\xe2\xc8\xb2\ +\xe5\xd5\xc5\xe9\xdc\xd4\xe3\xd4\xc3\xe0\xc9\xb6\xe2\xc6\xb0\xe2\ +\xca\xb7\xe2\xc4\xaf\xe3\xbf\xa5\xe1\xc4\xab\xe2\xbf\xa4\xe4\xb8\ +\x97\xe3\xb7\x97\xe0\xc4\xae\xdf\xcd\xbe\xe1\xd2\xc6\xe5\xda\xd3\ +\xe8\xde\xda\xe7\xdc\xd7\xe3\xd6\xce\xe0\xd1\xc5\xdf\xcf\xc3\xe3\ +\xd5\xcc\xe3\xd6\xcc\xe0\xd0\xc2\xe2\xc1\xa8\xe3\xbe\xa2\xe3\xc0\ +\xa6\xe2\xc6\xb1\xe0\xca\xb7\xe1\xc8\xb4\xe2\xbe\xa4\xe3\xbe\xa6\ +\xe4\xbb\x9f\xe6\xb2\x91\xe9\xae\x86\xeb\xab\x80\xee\xa4\x74\xf0\ +\xa2\x6c\xee\xa8\x76\xec\xa8\x7a\xf0\x9f\x69\xf3\x9c\x5f\xf3\x9c\ +\x5b\xf4\x9b\x5c\xf2\x9b\x5c\xf3\x9a\x5b\xf3\x9a\x5d\xf4\x9a\x5c\ +\xf4\x9b\x5c\xf3\x9a\x5b\xf4\x9a\x5c\xf5\x9b\x5b\xf3\x9a\x5e\xf3\ +\x9b\x5b\xf3\x9a\x5a\xf3\x9a\x5a\xf3\x9b\x5a\xf3\x9a\x5d\xf2\x9a\ +\x5a\xf4\x9a\x5a\xf4\x9a\x5a\xf4\x99\x5a\xf3\x9a\x5a\xf5\x9a\x59\ +\xf2\x98\x5b\xf2\x98\x59\xf3\x98\x58\xf4\x97\x57\xf4\x98\x57\xf2\ +\x97\x57\xf3\x97\x55\xf3\x97\x56\xf4\x96\x55\xf3\x96\x55\xf4\x97\ +\x54\xf2\x96\x55\xf3\x96\x55\xf4\x95\x54\xf3\x95\x53\xf2\x95\x54\ +\xf4\x96\x56\xf1\x95\x55\xf3\x95\x54\xf1\x95\x54\xf2\x94\x54\xf2\ +\x95\x52\xf1\x96\x55\xf3\x95\x55\xf2\x95\x56\xf1\x95\x54\xf3\x93\ +\x54\xf2\x95\x52\xf2\x94\x53\xf1\x95\x54\xf2\x95\x55\xf1\x94\x54\ +\xf3\x95\x53\xf1\x96\x57\xde\x8b\x55\xcb\x7e\x4d\xd0\x84\x52\xca\ +\x7c\x4a\xed\x90\x51\xe8\x90\x55\xe6\x8c\x4e\xec\x91\x54\xef\x95\ +\x55\xf4\x97\x57\xe6\x90\x57\xe6\x8c\x50\xf4\x9b\x5c\xd0\x83\x51\ +\xaa\x76\x51\x3f\x46\x3e\x63\x4a\x35\x4f\x47\x39\x6b\x53\x36\xee\ +\x97\x57\xd1\x94\x6c\xc1\x7a\x49\xc1\x83\x58\xbe\x82\x55\xd8\x93\ +\x62\x9c\x6d\x4f\xa3\x6f\x51\xdc\x93\x60\xb4\x81\x60\xb2\x7f\x59\ +\x9f\x6f\x4f\x75\x68\x55\x00\x00\x00\xf5\xa4\x67\xf4\xa4\x67\xf4\ +\xa3\x68\xf5\xa4\x67\xf5\xa4\x68\xf5\xa4\x67\xf5\xa4\x67\xf5\xa4\ +\x68\xf5\xa5\x67\xf6\xa5\x68\xf5\xa5\x6a\xf5\xa5\x6a\xf6\xa5\x6a\ +\xf5\xa5\x69\xf6\xa6\x69\xf6\xa5\x69\xf5\xa4\x68\xf4\xa4\x66\xf4\ +\xa4\x67\xf5\xa3\x66\xf4\xa4\x68\xf4\xa3\x68\xf3\xa4\x69\xf3\xa5\ +\x6b\xf4\xa4\x6b\xf1\xa5\x6e\xef\xa7\x73\xf0\xa6\x71\xed\xa9\x77\ +\xee\xa7\x73\xed\xaa\x7b\xe5\xb9\x98\xe3\xc8\xb2\xe3\xd4\xc7\xe4\ +\xd6\xc9\xe2\xc7\xb1\xe3\xbd\xa0\xe6\xb8\x96\xe8\xb3\x8e\xec\xa8\ +\x79\xeb\xac\x80\xe6\xb7\x95\xe8\xb1\x87\xec\xab\x7c\xeb\xaa\x7e\ +\xe7\xb2\x8f\xe2\xbc\xa1\xe0\xcd\xbd\xe3\xd8\xcf\xe6\xdb\xd4\xe4\ +\xd8\xcf\xe0\xca\xb9\xe0\xc6\xb2\xe0\xc8\xb5\xdf\xca\xbb\xe1\xc7\ +\xb5\xe4\xb9\x9c\xe4\xb7\x98\xe5\xb3\x90\xe7\xb4\x91\xe4\xb9\x9c\ +\xe2\xc0\xa9\xe3\xbb\x9f\xe7\xb2\x8d\xe9\xae\x89\xe8\xb1\x8b\xec\ +\xac\x81\xef\xa8\x77\xf0\xa4\x6f\xf3\x9c\x62\xf4\x9c\x5d\xf2\x9c\ +\x62\xf1\x9b\x5d\xf3\x9a\x5c\xf3\x9a\x5b\xf3\x9b\x5a\xf2\x9b\x5b\ +\xf3\x9a\x5b\xf2\x9a\x5b\xf3\x9a\x5a\xf5\x9a\x5a\xf4\x9a\x5b\xf3\ +\x9b\x5a\xf3\x9a\x5a\xf4\x9a\x5b\xf3\x9a\x5a\xf4\x9a\x5b\xf4\x9a\ +\x5c\xf3\x9a\x5a\xf5\x9a\x5b\xf2\x99\x5c\xf5\x9a\x5a\xf3\x99\x5a\ +\xf3\x99\x5a\xf3\x99\x59\xf4\x99\x59\xf4\x98\x58\xf3\x97\x58\xf2\ +\x98\x58\xf2\x97\x58\xf3\x96\x57\xf2\x97\x56\xf4\x96\x54\xf4\x96\ +\x55\xf3\x96\x56\xf2\x96\x55\xf3\x96\x54\xf2\x96\x55\xf2\x95\x56\ +\xf3\x96\x55\xf2\x95\x54\xf4\x95\x54\xf2\x95\x53\xf2\x95\x54\xf3\ +\x94\x54\xf3\x94\x54\xf2\x95\x53\xf2\x95\x54\xf2\x94\x55\xf2\x95\ +\x53\xf1\x95\x55\xf2\x95\x54\xf2\x94\x53\xf1\x95\x55\xf2\x93\x53\ +\xf2\x94\x53\xf2\x94\x53\xf2\x93\x53\xf3\x95\x54\xf3\x95\x55\xee\ +\x94\x56\xd8\x84\x51\xd6\x85\x51\xb5\x75\x4e\xdd\x85\x46\xf4\x98\ +\x56\xe1\x8b\x53\xf0\x93\x52\xef\x93\x55\xf2\x96\x54\xf2\x96\x57\ +\xeb\x92\x57\xec\x94\x57\xc4\x7f\x52\x93\x67\x4a\x88\x5c\x3c\x82\ +\x56\x37\xbb\x78\x47\xad\x76\x4a\xf1\x9a\x5a\xf5\xa2\x6a\xf0\xa0\ +\x6b\xc6\x85\x5b\x9c\x74\x55\x42\x4c\x48\x87\x66\x49\x4c\x46\x3d\ +\x61\x49\x34\xaa\x73\x48\xa2\x71\x4e\xa4\x7f\x67\x6c\x5a\x4b\x55\ +\x55\x4c\x00\x00\x00\xf5\xa3\x66\xf5\xa4\x65\xf5\xa3\x65\xf5\xa4\ +\x64\xf5\xa3\x65\xf5\xa3\x65\xf5\xa3\x66\xf5\xa4\x67\xf5\xa4\x67\ +\xf6\xa4\x68\xf5\xa5\x69\xf5\xa6\x69\xf6\xa4\x69\xf5\xa3\x69\xf5\ +\xa3\x68\xf5\xa3\x67\xf6\xa3\x68\xf5\xa3\x67\xf5\xa3\x66\xf5\xa2\ +\x64\xf6\xa3\x67\xf5\xa3\x66\xf5\xa2\x65\xf5\xa3\x66\xf5\xa3\x66\ +\xf5\xa3\x68\xf3\xa3\x6a\xf3\xa4\x6a\xf4\xa3\x6a\xf3\xa3\x66\xf4\ +\xa2\x6a\xef\xa5\x72\xe9\xb0\x8a\xe3\xc0\xa7\xe4\xbd\xa1\xeb\xac\ +\x7f\xed\xa7\x75\xee\xa5\x73\xf1\xa4\x6f\xf1\xa4\x6b\xf0\xa5\x71\ +\xed\xa9\x7a\xf0\xa6\x71\xf1\xa3\x6e\xf0\xa2\x6a\xee\xa5\x70\xe8\ +\xb3\x8e\xe2\xc4\xad\xe0\xd0\xc2\xe1\xd1\xc5\xe1\xcb\xb9\xe2\xbe\ +\xa4\xe4\xb2\x91\xe7\xae\x8a\xe7\xaf\x8c\xe8\xaf\x8b\xee\xa3\x6f\ +\xee\xa4\x73\xef\xa5\x72\xf0\xa4\x70\xed\xa9\x7b\xe9\xad\x87\xed\ +\xa9\x79\xed\xab\x7c\xea\xae\x87\xee\xa9\x7c\xf0\xa3\x70\xf2\xa1\ +\x69\xf2\x9e\x63\xf3\x9c\x5c\xf3\x9b\x5c\xf3\x9a\x5c\xf2\x9a\x59\ +\xf3\x9a\x59\xf3\x9a\x5a\xf4\x9a\x59\xf3\x9a\x5b\xf5\x9a\x5a\xf4\ +\x99\x59\xf4\x9a\x5a\xf4\x99\x59\xf5\x99\x5a\xf5\x9a\x59\xf4\x9a\ +\x5b\xf3\x99\x59\xf3\x9a\x59\xf4\x9a\x5c\xf3\x99\x5b\xf3\x99\x5a\ +\xf3\x9a\x5a\xf2\x98\x59\xf4\x9a\x5b\xf4\x99\x5b\xf4\x98\x58\xf3\ +\x99\x58\xf4\x99\x59\xf3\x98\x58\xf4\x97\x57\xf3\x97\x58\xf2\x97\ +\x57\xf3\x97\x55\xf1\x96\x56\xf2\x95\x55\xf3\x96\x55\xf3\x96\x54\ +\xf3\x96\x54\xf4\x95\x54\xf1\x95\x55\xf3\x95\x55\xf1\x95\x55\xf1\ +\x95\x55\xf3\x94\x54\xf2\x96\x54\xf2\x95\x54\xf2\x95\x54\xf2\x94\ +\x53\xf2\x95\x54\xf2\x94\x54\xf2\x94\x56\xf3\x94\x54\xf2\x94\x55\ +\xf1\x95\x55\xf1\x95\x55\xf1\x95\x54\xf4\x93\x54\xf1\x94\x54\xf2\ +\x95\x52\xf2\x94\x53\xf2\x96\x55\xf4\x95\x56\xe8\x92\x58\xd5\x83\ +\x51\xd4\x82\x4c\xc7\x79\x48\xed\x91\x4e\xf2\x96\x57\xe8\x8f\x53\ +\xef\x93\x54\xf3\x95\x54\xf2\x96\x55\xf1\x96\x55\xf1\x97\x58\xee\ +\x94\x59\xb7\x7e\x59\x5d\x56\x4d\x72\x4e\x30\xca\x7a\x3f\xf8\xa3\ +\x65\xf5\x9f\x64\xed\x9a\x65\xdd\x96\x69\xc6\x81\x54\xa7\x76\x56\ +\x7b\x5e\x49\x26\x39\x3b\x39\x36\x2c\x3a\x3c\x36\x3d\x3c\x30\x6a\ +\x5f\x4b\x4d\x4b\x45\x4c\x4d\x4a\x65\x52\x43\x5c\x5b\x4d\x00\x00\ +\x00\xf5\xa3\x66\xf7\xa3\x64\xf7\xa2\x65\xf6\xa1\x65\xf5\xa3\x66\ +\xf6\xa3\x65\xf5\xa3\x67\xf5\xa3\x65\xf4\xa4\x67\xf5\xa4\x67\xf5\ +\xa4\x68\xf4\xa4\x67\xf6\xa5\x6b\xf4\xa2\x66\xf5\xa2\x66\xf6\xa3\ +\x65\xf6\xa2\x66\xf6\xa3\x66\xf5\xa2\x67\xf4\xa2\x64\xf6\xa2\x65\ +\xf6\xa2\x64\xf7\xa2\x65\xf7\xa2\x66\xf6\xa1\x65\xf5\xa3\x67\xf4\ +\xa2\x68\xf5\xa2\x68\xf5\xa2\x67\xf6\xa1\x65\xf4\xa2\x65\xf5\xa0\ +\x64\xf5\xa1\x68\xf1\xa4\x6e\xf1\xa5\x71\xf4\xa1\x66\xf5\x9f\x66\ +\xf3\xa1\x66\xf3\xa2\x6a\xf3\xa3\x6b\xf2\xa2\x68\xf3\xa4\x6a\xf4\ +\xa1\x65\xf3\xa1\x66\xf2\xa1\x68\xef\xa8\x74\xe7\xba\x99\xe4\xc4\ +\xab\xe1\xca\xb7\xe1\xc7\xb4\xe4\xb9\x9d\xea\xaa\x80\xf1\xa1\x68\ +\xf3\x9f\x66\xf2\x9f\x66\xf1\x9f\x66\xf2\x9f\x62\xf4\x9f\x63\xf4\ +\x9f\x63\xf2\x9f\x64\xf1\x9e\x64\xf2\xa0\x64\xf2\xa2\x6a\xf0\xa4\ +\x70\xef\xa1\x6b\xf2\x9e\x62\xf2\x9d\x62\xf2\x9d\x60\xf3\x9b\x5d\ +\xf3\x9b\x5c\xf3\x9a\x5c\xf4\x9b\x5a\xf3\x9b\x5a\xf4\x9a\x5b\xf3\ +\x99\x5a\xf3\x9a\x5a\xf3\x99\x5b\xf3\x9a\x5b\xf4\x99\x5a\xf3\x99\ +\x5b\xf4\x99\x5a\xf4\x9a\x5a\xf6\x9a\x5a\xf5\x9a\x5c\xf3\x99\x59\ +\xf4\x9b\x5a\xf4\x9a\x5b\xf3\x99\x59\xf4\x9a\x5b\xf3\x99\x5c\xf4\ +\x99\x59\xf3\x99\x59\xf4\x98\x58\xf4\x97\x58\xf3\x98\x59\xf2\x98\ +\x59\xf2\x97\x59\xf3\x97\x57\xf3\x97\x55\xf3\x96\x55\xf2\x97\x56\ +\xf2\x95\x55\xf1\x95\x55\xf2\x96\x56\xf2\x96\x55\xf3\x96\x55\xf2\ +\x95\x55\xf4\x95\x53\xf3\x95\x53\xf3\x94\x54\xf2\x95\x54\xf3\x95\ +\x54\xf2\x95\x56\xf1\x94\x54\xf1\x95\x53\xf2\x95\x54\xf1\x94\x54\ +\xf1\x95\x55\xf1\x95\x56\xf1\x95\x54\xf2\x95\x54\xf1\x95\x55\xf3\ +\x95\x55\xf1\x95\x54\xf1\x94\x54\xf1\x93\x54\xf2\x94\x52\xf1\x94\ +\x55\xf1\x95\x55\xf3\x95\x55\xea\x91\x58\xce\x82\x50\xe1\x8c\x55\ +\xc9\x7a\x48\xef\x93\x54\xf2\x95\x58\xf0\x94\x53\xf1\x94\x54\xf1\ +\x93\x54\xf1\x94\x55\xf1\x94\x55\xf2\x98\x58\xed\x96\x5a\xb0\x77\ +\x53\x3b\x3a\x34\xca\x7e\x46\xf5\x9d\x61\xf8\xa3\x67\xd6\x8e\x5f\ +\x91\x6b\x55\xbb\x7b\x4f\x5b\x52\x49\x50\x3d\x32\x3e\x35\x2a\x24\ +\x36\x2e\x29\x36\x2f\x29\x31\x2b\x28\x35\x30\x35\x3f\x3a\x50\x52\ +\x4a\x4d\x4c\x43\x41\x3c\x31\x8c\x69\x46\x00\x00\x00\xf7\xa2\x63\ +\xf7\xa1\x64\xf5\xa2\x64\xf7\xa2\x63\xf6\xa2\x64\xf6\xa1\x65\xf5\ +\xa1\x64\xf7\xa2\x67\xf6\xa2\x67\xf5\xa3\x66\xf5\xa4\x68\xf5\xa3\ +\x66\xf4\xa2\x66\xf6\xa3\x65\xf6\xa2\x65\xf6\xa2\x65\xf5\xa3\x66\ +\xf7\xa2\x66\xf7\xa1\x64\xf7\xa0\x64\xf7\xa1\x64\xf7\xa1\x64\xf6\ +\xa0\x64\xf5\xa0\x63\xf7\xa1\x64\xf7\xa0\x64\xf7\xa0\x64\xf6\xa1\ +\x64\xf6\xa1\x64\xf5\xa1\x65\xf6\xa0\x63\xf6\xa1\x64\xf6\xa0\x62\ +\xf5\x9f\x63\xf6\xa0\x62\xf5\x9e\x63\xf6\xa0\x65\xf6\xa0\x64\xf4\ +\xa1\x66\xf3\xa1\x68\xf4\xa2\x67\xf3\xa1\x68\xf7\xa0\x63\xf4\xa5\ +\x6c\xf0\xa9\x74\xed\xaa\x7b\xe7\xb7\x97\xe7\xb9\x9b\xe6\xb4\x93\ +\xea\xaa\x81\xf1\xa0\x69\xf2\x9f\x64\xf3\x9e\x64\xf4\x9f\x62\xf4\ +\x9e\x60\xf1\x9d\x60\xf2\x9d\x60\xf3\x9d\x61\xf2\x9c\x60\xf3\x9e\ +\x5f\xf4\x9d\x5e\xf3\x9c\x5f\xf3\x9c\x5f\xf1\x9d\x63\xf2\x9c\x5e\ +\xf4\x9b\x5e\xf3\x9c\x5c\xf3\x9b\x5d\xf3\x9b\x5a\xf2\x99\x5a\xf2\ +\x9a\x5b\xf4\x9a\x5a\xf3\x99\x5c\xf3\x9a\x5a\xf6\x99\x59\xf3\x9a\ +\x59\xf2\x99\x5b\xf3\x9a\x59\xf3\x9a\x59\xf3\x9a\x58\xf3\x98\x59\ +\xf4\x98\x5a\xf4\x99\x58\xf2\x99\x58\xf4\x99\x5a\xf3\x99\x59\xf4\ +\x97\x58\xf3\x99\x58\xf2\x99\x59\xf4\x98\x59\xf3\x97\x59\xf3\x98\ +\x59\xf4\x97\x56\xf3\x97\x58\xf1\x97\x59\xf3\x98\x57\xf2\x97\x57\ +\xf4\x96\x57\xf3\x95\x55\xf1\x95\x54\xf2\x95\x54\xf3\x96\x56\xf2\ +\x95\x53\xf1\x96\x54\xf2\x95\x54\xf3\x94\x53\xf3\x95\x54\xf5\x93\ +\x53\xf2\x95\x53\xf2\x94\x53\xf1\x95\x52\xf1\x96\x54\xf1\x95\x55\ +\xf2\x95\x54\xf1\x95\x54\xf2\x94\x53\xf2\x94\x55\xf1\x95\x56\xf2\ +\x94\x54\xf2\x95\x56\xf2\x94\x55\xf2\x94\x54\xf1\x95\x55\xf1\x94\ +\x56\xf2\x95\x53\xf2\x94\x53\xf1\x93\x54\xf1\x94\x53\xf0\x94\x54\ +\xf3\x94\x54\xeb\x92\x56\xd8\x83\x52\xdb\x8b\x54\xcf\x7a\x4b\xeb\ +\x8e\x52\xf2\x95\x55\xf1\x94\x53\xf1\x94\x52\xf2\x94\x53\xf3\x96\ +\x59\xf2\x98\x5b\xf1\x97\x57\xd8\x8c\x5b\x8c\x60\x49\x88\x5d\x3c\ +\xde\x8a\x4b\xf6\xa1\x67\xe7\x9a\x65\x8e\x69\x51\x5e\x51\x41\x4d\ +\x41\x31\x37\x3e\x39\x15\x21\x1f\x1e\x23\x1d\x25\x36\x2c\x2a\x37\ +\x32\x2f\x32\x2f\x33\x3a\x39\x77\x59\x40\x5d\x53\x41\x6c\x60\x4e\ +\x3d\x4b\x45\x7b\x62\x46\x00\x00\x00\xf8\xa1\x65\xf7\xa2\x65\xf7\ +\xa1\x65\xf7\xa2\x65\xf7\xa2\x64\xf7\xa1\x65\xf7\xa2\x65\xf7\xa1\ +\x65\xf5\xa2\x64\xf5\xa2\x66\xf6\xa4\x69\xf7\xa2\x65\xf6\xa1\x66\ +\xf7\xa2\x63\xf7\xa1\x65\xf7\xa2\x65\xf6\xa1\x65\xf6\xa1\x64\xf6\ +\xa1\x65\xf8\xa2\x64\xf7\xa1\x65\xf7\xa1\x63\xf7\xa1\x64\xf7\xa0\ +\x64\xf6\xa0\x63\xf6\xa0\x63\xf6\xa0\x64\xf6\xa0\x64\xf6\x9f\x64\ +\xf6\xa0\x63\xf6\xa0\x62\xf7\x9f\x63\xf5\x9f\x63\xf6\xa0\x62\xf6\ +\x9f\x63\xf6\x9f\x63\xf5\x9e\x62\xf4\x9f\x65\xf4\xa1\x6a\xf3\xa1\ +\x69\xf4\x9f\x63\xf5\x9f\x63\xf5\x9f\x63\xf1\xa2\x68\xf0\xa2\x6b\ +\xf1\x9f\x68\xee\xa8\x78\xec\xa9\x7f\xef\xa6\x72\xf0\xa2\x6b\xf3\ +\x9e\x61\xf3\x9d\x61\xf4\x9d\x5f\xf4\x9d\x5e\xf3\x9d\x5e\xf3\x9d\ +\x5f\xf4\x9c\x5e\xf2\x9c\x5f\xf4\x9b\x5f\xf3\x9c\x5f\xf3\x9b\x5f\ +\xf4\x9b\x5c\xf3\x9b\x5d\xf3\x9b\x5e\xf4\x9b\x5d\xf4\x9b\x5c\xf2\ +\x9a\x5b\xf2\x9a\x5a\xf4\x9a\x5a\xf2\x99\x59\xf1\x99\x59\xf4\x99\ +\x5a\xf4\x99\x5a\xf3\x99\x5c\xf4\x9a\x5b\xf3\x99\x5b\xf3\x99\x59\ +\xf2\x99\x5a\xf3\x99\x59\xf3\x98\x58\xf2\x97\x57\xf3\x98\x58\xf4\ +\x98\x57\xf2\x97\x57\xf4\x97\x58\xf4\x97\x57\xf3\x98\x57\xf2\x98\ +\x58\xf2\x98\x57\xf3\x98\x57\xf1\x98\x57\xf3\x96\x58\xf3\x97\x57\ +\xf1\x97\x58\xf3\x97\x57\xf3\x97\x56\xf3\x96\x56\xf3\x96\x55\xf3\ +\x95\x55\xf3\x96\x54\xf3\x95\x55\xf2\x96\x54\xf1\x96\x53\xf2\x95\ +\x54\xf2\x95\x53\xf3\x94\x53\xf2\x95\x53\xf4\x94\x52\xf2\x94\x52\ +\xf1\x95\x53\xf1\x95\x55\xf1\x94\x54\xf1\x94\x53\xf3\x95\x54\xf0\ +\x94\x56\xf2\x93\x54\xf1\x94\x55\xf1\x95\x56\xf1\x93\x55\xf2\x95\ +\x54\xf0\x95\x55\xf1\x94\x54\xf1\x94\x54\xf1\x95\x55\xf2\x93\x55\ +\xf1\x93\x53\xf0\x94\x53\xf0\x94\x52\xf2\x93\x54\xf0\x94\x55\xe7\ +\x8f\x55\xe4\x90\x5b\xdc\x8a\x56\xe5\x8b\x50\xe7\x8b\x4f\xf2\x93\ +\x53\xf1\x93\x53\xf0\x93\x54\xf1\x95\x56\xf0\x97\x5c\xf2\x9c\x60\ +\xeb\x98\x5f\x7e\x62\x4d\x80\x52\x2e\xc9\x7e\x4f\xd0\x82\x4c\xe4\ +\x96\x62\xc5\x88\x5e\x3f\x43\x40\x22\x2a\x26\x2b\x31\x2a\x32\x2e\ +\x29\x25\x2c\x27\x25\x2d\x26\x32\x36\x2e\x46\x45\x37\x41\x3d\x31\ +\x71\x51\x32\x62\x54\x43\x90\x66\x43\x4c\x53\x4c\x34\x41\x38\x31\ +\x37\x34\x00\x00\x00\xf8\xa1\x64\xf6\xa0\x64\xf7\xa1\x63\xf7\xa1\ +\x63\xf7\xa1\x64\xf7\xa3\x64\xf8\xa1\x65\xf6\xa1\x66\xf7\xa2\x66\ +\xf6\xa2\x65\xf7\xa2\x68\xf8\xa1\x64\xf7\xa1\x64\xf7\xa1\x63\xf6\ +\xa1\x64\xf7\xa2\x63\xf7\xa1\x64\xf7\xa1\x63\xf7\xa0\x63\xf6\xa1\ +\x62\xf6\x9f\x62\xf7\x9f\x61\xf5\x9f\x61\xf6\x9f\x61\xf5\x9f\x61\ +\xf5\x9f\x61\xf5\x9f\x62\xf5\xa0\x61\xf5\x9e\x61\xf6\x9e\x62\xf4\ +\x9f\x61\xf5\x9f\x61\xf4\x9f\x62\xf4\xa0\x63\xf5\xa0\x63\xf6\x9e\ +\x62\xf5\x9e\x61\xf5\x9f\x62\xf3\xa0\x64\xf4\x9e\x64\xf5\x9e\x61\ +\xf4\x9e\x61\xf2\x9d\x61\xf3\x9d\x60\xf3\x9d\x5f\xf3\x9d\x61\xf3\ +\x9e\x62\xf1\x9f\x64\xf1\x9f\x64\xf3\x9d\x60\xf4\x9c\x5f\xf3\x9e\ +\x5f\xf4\x9d\x5f\xf3\x9c\x5e\xf3\x9c\x5e\xf3\x9b\x5e\xf3\x9b\x5c\ +\xf4\x9b\x5f\xf3\x9a\x5c\xf3\x9b\x5c\xf2\x9a\x59\xf3\x9b\x5a\xf3\ +\x9a\x5c\xf3\x9a\x5c\xf2\x9b\x5b\xf3\x99\x5b\xf4\x9a\x5c\xf4\x9a\ +\x5a\xf1\x99\x5b\xf3\x9a\x59\xf3\x99\x5a\xf3\x99\x5a\xf2\x99\x59\ +\xf3\x9a\x59\xf3\x99\x5a\xf3\x98\x5a\xf3\x98\x59\xf2\x98\x59\xf4\ +\x98\x5a\xf4\x98\x56\xf3\x97\x58\xf4\x97\x57\xf3\x97\x56\xf2\x97\ +\x57\xf3\x98\x58\xf4\x97\x57\xf2\x97\x59\xf2\x97\x57\xf4\x97\x57\ +\xf2\x97\x57\xf2\x98\x57\xf2\x97\x58\xf3\x97\x57\xf2\x96\x57\xf3\ +\x96\x56\xf2\x96\x57\xf3\x97\x56\xf2\x97\x55\xf3\x96\x56\xf3\x95\ +\x55\xf2\x96\x55\xf2\x95\x55\xf2\x96\x54\xf2\x95\x54\xf2\x95\x55\ +\xf1\x95\x54\xf2\x94\x54\xf2\x94\x52\xf2\x93\x53\xf2\x94\x54\xf1\ +\x94\x54\xf2\x94\x53\xf0\x94\x53\xf1\x95\x55\xf0\x95\x55\xf1\x94\ +\x55\xf2\x94\x54\xf1\x95\x55\xf0\x94\x55\xf2\x94\x54\xf0\x94\x53\ +\xf1\x94\x55\xf1\x95\x55\xf2\x95\x53\xf1\x93\x54\xf0\x94\x53\xf1\ +\x94\x54\xf1\x94\x52\xf1\x93\x53\xf1\x93\x54\xeb\x91\x55\xe5\x91\ +\x5b\xe0\x8f\x5b\xe8\x8f\x53\xeb\x91\x55\xec\x90\x52\xf0\x93\x51\ +\xf1\x93\x53\xf1\x96\x58\xf0\x98\x5a\xf2\x9c\x60\xe3\x92\x5e\xcf\ +\x81\x4e\xbc\x7c\x53\xb5\x74\x49\x82\x5b\x43\xa1\x69\x47\x7d\x5d\ +\x45\x2e\x34\x33\x31\x34\x2b\x32\x33\x27\x58\x4b\x3a\x67\x47\x2d\ +\x74\x57\x3d\x98\x67\x3f\xcc\x88\x57\xb3\x81\x5c\xc0\x7b\x48\xae\ +\x83\x64\xe0\x98\x64\x8d\x79\x6e\x3f\x43\x3d\x36\x31\x27\x00\x00\ +\x00\xf7\xa1\x63\xf6\xa0\x64\xf8\xa1\x63\xf7\xa1\x63\xf6\xa0\x63\ +\xf6\xa1\x64\xf7\xa0\x65\xf7\xa1\x64\xf7\xa1\x64\xf6\xa1\x64\xf7\ +\xa2\x64\xf7\xa1\x63\xf7\xa1\x63\xf7\xa1\x64\xf7\xa0\x63\xf8\xa1\ +\x62\xf8\xa0\x63\xf6\x9f\x61\xf7\x9f\x61\xf5\x9f\x60\xf7\x9e\x5f\ +\xf5\x9e\x60\xf6\x9e\x60\xf6\x9d\x60\xf6\x9e\x60\xf6\x9d\x60\xf6\ +\x9c\x61\xf4\x9e\x60\xf6\x9e\x61\xf5\x9e\x61\xf5\x9e\x61\xf5\x9e\ +\x5f\xf6\xa0\x61\xf5\x9f\x63\xf4\x9e\x62\xf5\x9e\x61\xf6\x9e\x61\ +\xf4\x9e\x60\xf5\x9e\x61\xf4\x9e\x61\xf5\x9d\x60\xf3\x9c\x61\xf4\ +\x9d\x61\xf5\x9d\x5f\xf4\x9c\x5f\xf4\x9c\x60\xf5\x9c\x60\xf4\x9b\ +\x5f\xf3\x9c\x5d\xf4\x9c\x5c\xf3\x9b\x5e\xf3\x9b\x5c\xf4\x9c\x5d\ +\xf3\x9b\x5c\xf3\x9b\x5b\xf3\x9a\x5c\xf3\x99\x5c\xf4\x9a\x5c\xf2\ +\x9a\x5b\xf2\x9a\x5c\xf3\x99\x59\xf2\x99\x59\xf2\x9a\x5b\xf3\x99\ +\x5a\xf1\x99\x5a\xf2\x9a\x5a\xf4\x9a\x5b\xf2\x9a\x5a\xf2\x99\x5c\ +\xf3\x99\x5a\xf3\x98\x5a\xf4\x98\x58\xf2\x98\x59\xf3\x99\x58\xf2\ +\x99\x58\xf2\x98\x58\xf3\x97\x58\xf1\x97\x58\xf1\x97\x58\xf4\x98\ +\x56\xf3\x97\x57\xf3\x97\x57\xf3\x96\x56\xf1\x97\x58\xf3\x97\x57\ +\xf2\x95\x55\xf4\x96\x58\xf2\x96\x56\xf3\x96\x57\xf2\x96\x56\xf3\ +\x97\x56\xf3\x96\x57\xf3\x96\x57\xf1\x96\x57\xf2\x96\x57\xf1\x96\ +\x57\xf1\x96\x57\xf1\x96\x55\xf2\x96\x56\xf3\x95\x54\xf3\x96\x55\ +\xf0\x95\x55\xf3\x94\x54\xf1\x94\x54\xf1\x94\x54\xf0\x94\x55\xf1\ +\x94\x52\xf2\x93\x53\xf1\x94\x53\xf2\x94\x54\xf1\x94\x54\xf1\x94\ +\x54\xf1\x94\x55\xf2\x94\x56\xf2\x94\x55\xf1\x94\x55\xf1\x95\x52\ +\xf1\x95\x55\xf1\x94\x55\xf0\x93\x52\xf1\x93\x52\xf1\x94\x54\xf0\ +\x95\x54\xf1\x95\x56\xf0\x94\x54\xf1\x95\x54\xf1\x94\x53\xf1\x94\ +\x53\xf0\x94\x54\xf2\x93\x54\xef\x94\x55\xed\x92\x56\xea\x91\x58\ +\xed\x91\x56\xf1\x93\x52\xee\x91\x55\xf1\x93\x53\xf0\x94\x56\xf1\ +\x94\x56\xf2\x96\x57\xf2\x97\x5d\xe6\x92\x59\xc1\x7b\x4e\x92\x65\ +\x4b\xa5\x6c\x42\x52\x4c\x3e\x47\x39\x2b\x46\x44\x36\x7d\x54\x34\ +\x5b\x49\x3a\x3f\x3b\x31\x7b\x5b\x40\xce\x7f\x4a\xf1\x9e\x66\xd5\ +\x95\x66\xb9\x7f\x59\x89\x62\x46\xc1\x81\x54\xa9\x83\x6d\x91\x77\ +\x5b\x73\x6b\x5d\x31\x3f\x47\x25\x2b\x26\x00\x00\x00\xf7\xa0\x63\ +\xf7\xa0\x63\xf7\xa2\x64\xf8\xa1\x63\xf6\xa0\x63\xf7\xa0\x63\xf7\ +\xa1\x64\xf7\xa2\x65\xf7\xa2\x63\xf7\xa0\x63\xf7\xa0\x63\xf6\xa0\ +\x63\xf6\xa0\x63\xf7\xa0\x62\xf7\xa0\x62\xf6\xa0\x61\xf7\xa0\x61\ +\xf6\x9f\x61\xf6\x9e\x5f\xf5\x9e\x60\xf6\x9d\x5f\xf5\x9d\x5f\xf5\ +\x9d\x5e\xf6\x9d\x60\xf6\x9f\x5f\xf6\x9d\x5f\xf5\x9d\x61\xf4\x9e\ +\x60\xf5\x9e\x5f\xf4\x9e\x62\xf4\x9e\x60\xf4\x9e\x5f\xf5\xa0\x60\ +\xf5\x9e\x5f\xf4\x9e\x5f\xf5\x9e\x5f\xf6\x9e\x60\xf4\x9d\x60\xf5\ +\x9d\x5f\xf5\x9d\x5e\xf4\x9d\x5f\xf3\x9c\x5e\xf4\x9d\x5d\xf4\x9c\ +\x5d\xf4\x9c\x5e\xf3\x9c\x5e\xf4\x9d\x5f\xf5\x9b\x5e\xf3\x9b\x5c\ +\xf4\x9b\x5d\xf3\x9b\x5b\xf2\x9b\x5a\xf4\x9a\x5b\xf3\x9a\x5a\xf3\ +\x9a\x5a\xf3\x99\x5b\xf4\x99\x5a\xf3\x99\x59\xf3\x9a\x58\xf3\x99\ +\x5a\xf3\x99\x59\xf2\x99\x5b\xf2\x98\x59\xf1\x99\x59\xf2\x99\x5b\ +\xf2\x99\x58\xf3\x99\x5a\xf3\x99\x59\xf2\x98\x59\xf2\x98\x5b\xf2\ +\x98\x58\xf3\x98\x58\xf3\x98\x59\xf2\x98\x58\xf3\x97\x58\xf2\x97\ +\x58\xf4\x97\x57\xf2\x98\x57\xf3\x97\x57\xf1\x97\x58\xf2\x98\x56\ +\xf3\x96\x57\xf2\x97\x56\xf2\x96\x56\xf3\x96\x55\xf1\x94\x56\xf3\ +\x96\x56\xf3\x96\x55\xf3\x96\x56\xf2\x95\x55\xf2\x97\x56\xf2\x96\ +\x56\xf2\x96\x58\xf1\x97\x58\xf2\x96\x57\xf1\x97\x56\xf0\x95\x56\ +\xf2\x96\x55\xf2\x96\x54\xf1\x97\x56\xf1\x95\x54\xf0\x95\x55\xf1\ +\x93\x56\xf0\x95\x53\xf1\x94\x54\xf2\x94\x55\xf2\x94\x53\xf2\x93\ +\x54\xf1\x93\x53\xf2\x93\x52\xf3\x94\x52\xf2\x94\x52\xf1\x95\x54\ +\xf1\x94\x56\xf0\x94\x56\xf1\x94\x53\xf0\x94\x53\xf1\x94\x53\xf0\ +\x94\x54\xef\x94\x53\xf0\x93\x53\xf1\x93\x54\xf0\x94\x55\xf1\x94\ +\x55\xf0\x94\x54\xf1\x94\x54\xef\x94\x54\xf0\x93\x53\xf0\x94\x53\ +\xf2\x93\x54\xf0\x94\x54\xf0\x93\x52\xee\x92\x53\xee\x91\x52\xf1\ +\x92\x51\xf1\x92\x53\xf1\x93\x53\xf1\x92\x56\xf0\x94\x53\xf1\x95\ +\x57\xf3\x96\x5b\xf3\x9a\x5c\xad\x7c\x59\x3a\x3f\x39\x83\x5d\x3e\ +\x4b\x44\x37\x4a\x3f\x32\x3b\x3b\x2d\x82\x4e\x2f\xbb\x77\x49\xd6\ +\x8e\x5b\xd5\x92\x62\xab\x77\x58\xef\x97\x5a\xed\xa5\x73\xa9\x7c\ +\x60\x6e\x50\x38\x87\x63\x46\x7c\x6c\x60\x5a\x5c\x53\x3e\x46\x3f\ +\x31\x3e\x3b\x2c\x3e\x3f\x00\x00\x00\xf8\xa0\x62\xf9\xa1\x63\xf6\ +\xa0\x62\xf7\x9f\x61\xf7\xa0\x62\xf8\xa1\x62\xf6\xa1\x63\xf7\x9f\ +\x63\xf7\xa0\x62\xf6\x9f\x61\xf7\xa0\x60\xf5\xa0\x64\xf5\x9f\x61\ +\xf7\xa0\x61\xf7\x9e\x5f\xf6\x9f\x62\xf5\x9f\x60\xf6\x9e\x5f\xf5\ +\x9e\x5e\xf6\x9e\x61\xf6\x9d\x60\xf4\x9d\x5f\xf5\x9e\x5e\xf5\x9e\ +\x60\xf5\x9d\x5d\xf4\x9d\x5d\xf5\x9d\x5f\xf4\x9c\x5e\xf5\x9c\x5d\ +\xf4\x9d\x5e\xf4\x9c\x5d\xf5\x9b\x5f\xf5\x9c\x5e\xf4\x9d\x5e\xf4\ +\x9d\x5d\xf5\x9c\x5f\xf3\x9b\x5d\xf4\x9b\x5e\xf3\x9c\x5c\xf3\x9c\ +\x5b\xf4\x9b\x5d\xf2\x9b\x5e\xf3\x9b\x5c\xf3\x9c\x5c\xf3\x9b\x5c\ +\xf4\x9a\x5d\xf3\x9c\x5e\xf3\x9a\x5a\xf4\x9b\x5c\xf3\x9b\x5e\xf2\ +\x9a\x5c\xf4\x9a\x5a\xf1\x99\x5a\xf2\x9a\x5c\xf4\x99\x5b\xf4\x99\ +\x59\xf4\x9a\x59\xf3\x98\x5b\xf4\x9a\x59\xf5\x9a\x59\xf4\x98\x59\ +\xf3\x98\x59\xf3\x99\x59\xf3\x97\x57\xf2\x98\x59\xf3\x98\x58\xf2\ +\x99\x59\xf3\x98\x59\xf1\x98\x58\xf3\x97\x59\xf4\x98\x57\xf2\x98\ +\x57\xf2\x97\x58\xf3\x98\x58\xf2\x97\x59\xf2\x96\x58\xf3\x96\x56\ +\xf2\x97\x55\xf3\x97\x56\xf2\x97\x57\xf2\x96\x56\xf2\x96\x56\xf1\ +\x97\x55\xf4\x96\x56\xf3\x95\x55\xf3\x95\x55\xf2\x95\x56\xf2\x95\ +\x56\xf2\x95\x56\xf1\x96\x57\xf2\x96\x55\xf2\x97\x56\xf3\x96\x56\ +\xf2\x95\x57\xf1\x96\x54\xf1\x96\x54\xf1\x96\x55\xf2\x95\x56\xf1\ +\x95\x55\xf0\x94\x56\xf1\x95\x54\xf1\x95\x53\xf0\x94\x55\xf2\x93\ +\x55\xf1\x94\x54\xf2\x93\x53\xf2\x94\x53\xf1\x93\x54\xf2\x94\x52\ +\xf2\x93\x53\xf2\x93\x53\xf2\x94\x53\xf2\x94\x52\xf0\x95\x54\xf0\ +\x93\x53\xf1\x93\x50\xf1\x94\x53\xf0\x94\x53\xf0\x93\x53\xf2\x93\ +\x53\xf1\x93\x53\xef\x93\x53\xf0\x94\x55\xef\x94\x56\xf0\x93\x52\ +\xee\x92\x52\xf0\x92\x53\xf0\x94\x55\xf0\x95\x55\xef\x95\x55\xef\ +\x92\x52\xf0\x92\x52\xf0\x92\x52\xef\x91\x51\xf0\x91\x52\xf0\x92\ +\x50\xf1\x92\x53\xf0\x93\x52\xf0\x94\x54\xf2\x95\x57\xe3\x8e\x57\ +\xcd\x86\x5b\xa0\x6b\x4b\x54\x4a\x3c\x3e\x3f\x35\x6c\x4c\x39\x4b\ +\x43\x36\x73\x4d\x2c\xe4\x90\x54\xe1\x90\x5d\xf5\xa0\x66\xc8\x8a\ +\x64\x6d\x5d\x4d\x76\x5c\x47\xe8\x9a\x63\x80\x68\x59\x43\x3f\x31\ +\x4d\x4a\x3d\x40\x42\x3c\x50\x55\x50\x3b\x45\x44\x1d\x2b\x26\x2c\ +\x3e\x3e\x00\x00\x00\xf7\xa0\x62\xf5\xa0\x61\xf6\x9f\x61\xf5\x9e\ +\x60\xf6\x9f\x60\xf5\x9f\x61\xf5\x9e\x60\xf5\x9f\x61\xf6\x9f\x61\ +\xf6\xa0\x5f\xf6\x9f\x60\xf6\x9e\x61\xf6\x9e\x61\xf5\x9e\x5e\xf5\ +\x9e\x5e\xf5\x9f\x5f\xf6\x9e\x5e\xf5\x9d\x5d\xf5\x9d\x5e\xf6\x9d\ +\x61\xf4\x9d\x5f\xf5\x9d\x5f\xf5\x9c\x5f\xf4\x9b\x5d\xf3\x9b\x5b\ +\xf3\x9b\x5d\xf4\x9c\x5e\xf5\x9b\x5d\xf4\x9b\x5d\xf3\x9b\x5b\xf3\ +\x9b\x5d\xf4\x9c\x5b\xf3\x9b\x5b\xf4\x9b\x5d\xf4\x9a\x60\xf3\x9a\ +\x5a\xf3\x9a\x5d\xf3\x9a\x5c\xf3\x9a\x5b\xf4\x9a\x5c\xf3\x9b\x5b\ +\xf2\x9a\x59\xf4\x9a\x5c\xf4\x9a\x5d\xf3\x9a\x5b\xf2\x99\x5c\xf3\ +\x99\x59\xf2\x99\x5b\xf3\x99\x5c\xf3\x99\x5a\xf3\x99\x5c\xf1\x99\ +\x5c\xf3\x99\x5b\xf3\x99\x5a\xf4\x99\x5a\xf3\x99\x58\xf3\x98\x59\ +\xf2\x99\x58\xf3\x98\x56\xf3\x97\x59\xf2\x97\x5a\xf3\x98\x56\xf1\ +\x98\x58\xf1\x97\x5a\xf3\x98\x57\xf1\x97\x58\xf2\x97\x58\xf1\x97\ +\x57\xf3\x97\x59\xf3\x96\x57\xf1\x97\x56\xf4\x97\x56\xf3\x97\x56\ +\xf3\x96\x56\xf2\x95\x55\xf2\x95\x55\xf2\x96\x56\xf2\x96\x56\xf1\ +\x95\x56\xf2\x96\x55\xf3\x95\x56\xf3\x96\x56\xf2\x96\x55\xf3\x95\ +\x55\xf2\x95\x56\xf1\x96\x55\xf1\x97\x56\xf2\x97\x57\xf3\x97\x56\ +\xf3\x96\x56\xf1\x96\x57\xf3\x95\x57\xf2\x95\x56\xf1\x96\x55\xf1\ +\x96\x54\xf1\x95\x55\xf1\x94\x56\xf1\x95\x55\xf1\x95\x55\xf2\x95\ +\x54\xf2\x94\x53\xf3\x94\x54\xf1\x94\x54\xf1\x94\x54\xf0\x94\x54\ +\xf0\x93\x54\xf1\x93\x53\xf1\x94\x54\xf0\x94\x55\xf1\x94\x53\xf1\ +\x92\x52\xf0\x92\x52\xf2\x92\x53\xf0\x92\x53\xf1\x94\x55\xf0\x94\ +\x54\xf1\x93\x54\xf2\x93\x53\xf0\x93\x53\xf1\x93\x52\xf0\x94\x53\ +\xf0\x93\x53\xef\x94\x57\xef\x94\x56\xf0\x95\x58\xf1\x94\x54\xf0\ +\x94\x54\xef\x96\x58\xef\x96\x5a\xef\x93\x57\xef\x92\x53\xef\x91\ +\x50\xf0\x91\x51\xf0\x91\x51\xf0\x91\x51\xef\x91\x52\xf0\x92\x52\ +\xf1\x93\x53\xf1\x94\x56\xf4\x97\x59\xc3\x78\x4a\x87\x61\x44\x3f\ +\x39\x2e\x52\x3b\x28\x72\x4c\x2f\xba\x71\x3f\xf4\x9b\x5d\xe3\x98\ +\x64\xb3\x7a\x57\xc4\x7e\x54\xc0\x80\x56\xb2\x7c\x5a\x65\x5d\x55\ +\x3c\x40\x36\x8c\x69\x4f\x6a\x5b\x52\x42\x39\x2f\x59\x49\x32\x4d\ +\x4f\x42\x2f\x40\x40\x29\x3b\x40\x1c\x2c\x2a\x35\x45\x40\x00\x00\ +\x00\xf6\x9e\x60\xf6\x9e\x60\xf6\x9e\x60\xf6\x9f\x60\xf6\x9e\x5f\ +\xf5\x9e\x5f\xf6\x9e\x60\xf5\x9e\x60\xf6\x9f\x61\xf6\x9f\x61\xf6\ +\x9e\x60\xf6\x9e\x60\xf6\x9e\x5f\xf5\x9d\x5e\xf5\x9e\x60\xf5\x9e\ +\x5f\xf5\x9e\x5e\xf5\x9d\x5d\xf5\x9c\x5f\xf4\x9d\x60\xf4\x9c\x5c\ +\xf5\x9c\x5b\xf5\x9c\x5d\xf4\x9c\x5e\xf3\x9c\x5b\xf3\x9b\x5b\xf3\ +\x9b\x5c\xf4\x9c\x5c\xf3\x9b\x5b\xf4\x9b\x5c\xf2\x9b\x5b\xf3\x9a\ +\x5b\xf3\x9a\x5c\xf2\x9a\x5c\xf3\x9a\x5c\xf2\x99\x5d\xf2\x9a\x59\ +\xf3\x9a\x5b\xf3\x9a\x5b\xf3\x9a\x5a\xf3\x9a\x5d\xf1\x99\x59\xf3\ +\x99\x5c\xf2\x99\x5b\xf2\x9a\x5a\xf2\x99\x5a\xf2\x99\x59\xf2\x99\ +\x5a\xf3\x99\x5c\xf2\x99\x5b\xf4\x99\x5a\xf2\x99\x5a\xf2\x98\x5b\ +\xf1\x98\x58\xf2\x98\x58\xf2\x97\x58\xf2\x98\x58\xf2\x98\x58\xf2\ +\x97\x57\xf1\x97\x58\xf2\x97\x58\xf3\x96\x58\xf3\x97\x57\xf2\x97\ +\x5a\xf1\x97\x58\xf2\x97\x57\xf2\x97\x56\xf2\x96\x57\xf2\x97\x55\ +\xf2\x96\x56\xf2\x96\x55\xf2\x95\x55\xf2\x96\x55\xf2\x96\x56\xf2\ +\x95\x56\xf2\x96\x55\xf2\x96\x55\xf2\x96\x56\xf1\x95\x57\xf2\x95\ +\x54\xf3\x94\x54\xf2\x95\x56\xf2\x95\x55\xf2\x95\x55\xf1\x95\x56\ +\xf2\x95\x54\xf3\x95\x57\xf1\x95\x57\xf2\x96\x58\xf3\x96\x57\xf2\ +\x95\x57\xf1\x96\x57\xf1\x96\x55\xf0\x95\x55\xf0\x96\x55\xf0\x95\ +\x55\xf1\x95\x55\xf2\x93\x54\xf1\x95\x54\xf1\x94\x54\xf2\x93\x54\ +\xf1\x94\x58\xf1\x95\x54\xf0\x94\x55\xf0\x94\x54\xf1\x94\x53\xf1\ +\x94\x53\xf1\x93\x54\xf1\x93\x52\xf0\x92\x51\xf0\x93\x52\xf1\x93\ +\x51\xf2\x92\x51\xf0\x92\x53\xf1\x92\x53\xef\x93\x54\xef\x93\x53\ +\xef\x93\x52\xf1\x93\x51\xef\x92\x53\xef\x92\x53\xf0\x92\x53\xf0\ +\x93\x54\xef\x94\x56\xef\x94\x56\xef\x95\x57\xf0\x97\x5a\xee\x98\ +\x5f\xee\x96\x5b\xef\x93\x56\xf0\x92\x53\xee\x91\x50\xf1\x90\x50\ +\xf0\x90\x50\xf0\x90\x51\xf0\x91\x50\xf1\x91\x52\xed\x91\x52\xee\ +\x92\x53\xed\x92\x53\xc7\x80\x56\x92\x66\x49\x49\x3d\x2e\xa8\x65\ +\x34\xfa\x99\x56\xfd\xa2\x63\xec\x9a\x65\x96\x72\x5b\x4c\x41\x34\ +\x86\x53\x33\x7f\x5f\x4c\x7b\x5b\x3e\x58\x52\x4c\x40\x47\x42\x42\ +\x4d\x4f\x4d\x50\x4d\x42\x43\x3a\x55\x41\x2e\x50\x57\x51\x2a\x3f\ +\x3b\x25\x3c\x3b\x2c\x45\x43\x30\x40\x39\x00\x00\x00\xf6\x9e\x5f\ +\xf7\x9e\x61\xf6\x9d\x5e\xf6\x9d\x5f\xf6\x9e\x5f\xf5\x9e\x5e\xf7\ +\x9d\x60\xf5\x9e\x60\xf6\x9e\x60\xf6\x9e\x60\xf6\x9e\x60\xf6\x9d\ +\x5f\xf6\x9d\x61\xf4\x9e\x5f\xf5\x9d\x5f\xf5\x9e\x60\xf4\x9c\x5f\ +\xf4\x9c\x5c\xf4\x9c\x5e\xf4\x9c\x5e\xf4\x9b\x5a\xf4\x9b\x5b\xf4\ +\x9b\x5c\xf3\x9a\x5c\xf4\x9b\x5d\xf3\x9a\x5a\xf4\x9a\x5b\xf4\x9b\ +\x5c\xf3\x9b\x5a\xf3\x9a\x5d\xf2\x99\x5b\xf2\x99\x5a\xf2\x9a\x5b\ +\xf3\x9a\x5c\xf3\x9b\x5c\xf2\x99\x5d\xf4\x99\x5b\xf3\x9a\x5c\xf3\ +\x9a\x5a\xf3\x9a\x5a\xf2\x99\x5b\xf2\x99\x5b\xf3\x99\x5b\xf3\x99\ +\x5a\xf3\x99\x5a\xf4\x99\x5b\xf2\x9a\x5a\xf1\x98\x5b\xf2\x99\x5b\ +\xf3\x99\x5a\xf2\x98\x59\xf2\x99\x59\xf1\x97\x5a\xf2\x98\x57\xf2\ +\x97\x58\xf1\x97\x5a\xf3\x98\x58\xf2\x96\x57\xf3\x97\x56\xf1\x97\ +\x57\xf1\x95\x56\xf2\x95\x57\xf1\x96\x57\xf2\x96\x56\xf2\x96\x57\ +\xf3\x97\x56\xf3\x96\x56\xf2\x95\x56\xf2\x96\x54\xf2\x95\x56\xf2\ +\x96\x55\xf2\x96\x55\xf2\x96\x56\xf2\x94\x56\xf1\x96\x53\xf2\x96\ +\x55\xf2\x96\x55\xf2\x95\x55\xf2\x95\x55\xf1\x95\x53\xf3\x94\x54\ +\xf2\x95\x54\xf2\x95\x54\xf2\x95\x55\xf3\x95\x55\xf1\x96\x56\xf2\ +\x95\x54\xf1\x95\x55\xf2\x96\x56\xf1\x95\x57\xf2\x96\x55\xf0\x95\ +\x57\xef\x95\x56\xf1\x95\x56\xf0\x95\x56\xf0\x95\x54\xf1\x94\x54\ +\xf1\x94\x55\xf1\x94\x54\xf1\x94\x54\xf0\x94\x54\xf0\x95\x55\xf1\ +\x94\x53\xf1\x93\x54\xf1\x94\x53\xf1\x94\x53\xf1\x93\x54\xf0\x92\ +\x51\xf2\x92\x51\xee\x93\x53\xf0\x92\x53\xf1\x93\x52\xf0\x93\x52\ +\xf1\x91\x51\xef\x92\x52\xf0\x92\x52\xf0\x92\x52\xef\x93\x54\xf0\ +\x93\x53\xf0\x93\x54\xef\x96\x59\xef\x98\x5b\xef\x9b\x5f\xef\x99\ +\x60\xee\x96\x5b\xee\x94\x57\xef\x95\x59\xed\x97\x5d\xed\x96\x5b\ +\xee\x94\x58\xef\x92\x52\xf0\x91\x50\xf0\x90\x50\xf0\x91\x50\xf0\ +\x91\x53\xf0\x90\x50\xef\x91\x51\xeb\x91\x54\xcc\x7d\x4b\xab\x6f\ +\x45\x69\x4f\x3e\x68\x41\x21\xcb\x7c\x43\xf6\x98\x54\xf7\x9c\x5f\ +\xe8\x96\x61\xd1\x88\x5b\x81\x69\x55\x29\x35\x2e\x6f\x48\x2b\x94\ +\x67\x4d\x44\x3e\x32\x49\x4c\x46\x3f\x45\x3f\x4f\x56\x51\x4a\x57\ +\x5b\x37\x44\x45\x38\x47\x42\x30\x3f\x3f\x37\x45\x42\x32\x4c\x4f\ +\x30\x46\x48\x34\x3e\x3c\x00\x00\x00\xf4\x9d\x60\xf5\x9c\x60\xf5\ +\x9e\x60\xf5\x9e\x5f\xf5\x9d\x60\xf5\x9e\x5f\xf6\x9c\x60\xf6\x9f\ +\x5e\xf6\x9e\x5f\xf5\x9d\x60\xf5\x9e\x5f\xf4\x9e\x60\xf5\x9d\x60\ +\xf4\x9c\x5e\xf4\x9c\x5d\xf4\x9c\x60\xf4\x9b\x5e\xf3\x9c\x5d\xf4\ +\x9c\x5e\xf4\x9b\x5e\xf4\x9a\x5b\xf3\x9a\x5c\xf4\x9b\x5c\xf2\x9b\ +\x5b\xf3\x9a\x5d\xf4\x9b\x5b\xf3\x9a\x5c\xf3\x99\x5b\xf3\x9a\x5b\ +\xf2\x9a\x5a\xf2\x99\x5b\xf4\x9a\x5a\xf3\x9a\x5a\xf4\x9a\x5c\xf4\ +\x99\x5c\xf3\x9a\x5c\xf4\x9a\x5b\xf3\x9a\x5a\xf3\x9a\x59\xf3\x9a\ +\x59\xf3\x99\x5b\xf2\x98\x5c\xf4\x99\x59\xf3\x99\x59\xf3\x99\x5b\ +\xf3\x9a\x5a\xf4\x98\x59\xf1\x98\x58\xf2\x98\x59\xf3\x99\x58\xf1\ +\x98\x58\xf3\x99\x58\xf2\x98\x58\xf1\x97\x58\xf1\x97\x5a\xf1\x97\ +\x58\xf1\x96\x57\xf2\x96\x56\xf1\x96\x55\xf2\x96\x56\xf2\x95\x56\ +\xf1\x95\x56\xf2\x96\x56\xf1\x96\x55\xf2\x97\x55\xf2\x95\x55\xf2\ +\x96\x55\xf1\x96\x53\xf2\x96\x54\xf3\x95\x56\xf3\x95\x54\xf2\x94\ +\x54\xf1\x95\x54\xf3\x95\x53\xf1\x95\x53\xf1\x96\x56\xf2\x95\x55\ +\xf2\x95\x54\xf2\x95\x53\xf1\x94\x54\xf1\x95\x55\xf2\x95\x53\xf2\ +\x95\x54\xf2\x95\x54\xf2\x95\x55\xf1\x96\x56\xf1\x94\x55\xf1\x95\ +\x55\xf1\x95\x56\xf0\x95\x56\xf1\x95\x55\xf1\x95\x55\xf1\x95\x55\ +\xf1\x94\x55\xf0\x94\x56\xf0\x94\x54\xf2\x93\x52\xf1\x94\x53\xf0\ +\x93\x54\xef\x93\x55\xf0\x94\x55\xf0\x94\x54\xf1\x93\x54\xf2\x93\ +\x55\xf1\x93\x54\xf0\x93\x54\xf0\x93\x54\xf1\x92\x52\xf1\x92\x53\ +\xf0\x93\x51\xef\x92\x52\xef\x93\x52\xf0\x92\x52\xef\x92\x51\xee\ +\x92\x52\xef\x91\x52\xef\x92\x51\xef\x94\x56\xee\x93\x56\xef\x95\ +\x59\xef\xa3\x6f\xed\xac\x80\xed\xa7\x7c\xee\xa1\x71\xef\x9d\x68\ +\xef\x9b\x65\xef\x9c\x64\xef\x9b\x64\xed\x98\x61\xed\x93\x56\xee\ +\x90\x51\xee\x91\x50\xef\x91\x52\xee\x92\x52\xef\x91\x53\xef\x90\ +\x50\xf1\x91\x53\xf4\x95\x57\x98\x65\x4a\x61\x43\x2f\x9c\x5f\x31\ +\xe2\x88\x45\xf7\x9a\x59\xf2\x99\x5a\xf2\x99\x5d\xce\x86\x5a\x92\ +\x65\x45\x6a\x54\x40\x44\x43\x37\x5f\x45\x2b\xb7\x74\x44\xaa\x73\ +\x4d\x82\x69\x53\x9e\x76\x50\x67\x66\x5e\x50\x5c\x5e\x43\x57\x5a\ +\x2d\x42\x46\x2e\x45\x43\x44\x58\x55\x3c\x54\x5c\x32\x47\x50\x30\ +\x3b\x3d\x00\x00\x00\xf4\x9d\x60\xf5\x9d\x5e\xf5\x9e\x5e\xf5\x9e\ +\x5f\xf5\x9d\x60\xf6\x9c\x5f\xf5\x9d\x60\xf5\x9e\x5f\xf6\x9d\x5e\ +\xf5\x9e\x5e\xf5\x9d\x60\xf5\x9d\x60\xf4\x9d\x5f\xf5\x9b\x5f\xf4\ +\x9d\x5e\xf3\x9c\x5e\xf4\x9b\x5a\xf4\x9b\x5d\xf3\x9c\x5c\xf3\x9a\ +\x5d\xf5\x9b\x5b\xf4\x9a\x5c\xf3\x9a\x5b\xf3\x9b\x5b\xf4\x9b\x5b\ +\xf1\x9a\x5a\xf3\x9a\x5b\xf5\x9a\x5c\xf4\x9a\x5d\xf3\x9a\x5a\xf3\ +\x9a\x59\xf3\x99\x5a\xf4\x99\x5b\xf4\x9a\x5a\xf2\x99\x5a\xf4\x9a\ +\x5b\xf3\x99\x5a\xf3\x99\x5b\xf4\x99\x5a\xf4\x99\x5b\xf4\x99\x5b\ +\xf1\x98\x5a\xf2\x99\x5b\xf4\x99\x5a\xf4\x99\x5b\xf3\x99\x58\xf3\ +\x98\x59\xf2\x99\x58\xf2\x98\x58\xf2\x98\x59\xf2\x98\x59\xf2\x97\ +\x59\xf1\x96\x59\xf4\x97\x56\xf2\x97\x56\xf2\x96\x57\xf2\x95\x56\ +\xf2\x95\x57\xf2\x96\x54\xf2\x95\x55\xf3\x96\x56\xf2\x96\x55\xf3\ +\x95\x56\xf2\x95\x52\xf1\x96\x55\xf2\x95\x53\xf2\x95\x53\xf1\x95\ +\x54\xf2\x96\x55\xf2\x95\x53\xf2\x94\x55\xf2\x94\x55\xf1\x95\x55\ +\xf2\x95\x55\xf2\x94\x53\xf0\x95\x55\xf0\x95\x55\xf2\x94\x55\xf2\ +\x94\x54\xf1\x95\x54\xf1\x94\x55\xf1\x95\x56\xf1\x95\x56\xf2\x94\ +\x54\xf1\x95\x55\xf2\x95\x54\xf1\x95\x56\xf1\x95\x54\xf1\x95\x56\ +\xf1\x95\x55\xf1\x95\x56\xf1\x94\x55\xf0\x94\x57\xf2\x93\x53\xf2\ +\x94\x53\xf0\x94\x53\xf1\x93\x53\xf1\x93\x53\xef\x94\x54\xf0\x93\ +\x53\xef\x94\x54\xf1\x93\x55\xf0\x93\x54\xf1\x92\x53\xf1\x94\x54\ +\xf1\x93\x53\xf0\x92\x54\xf0\x91\x51\xef\x93\x51\xef\x93\x54\xee\ +\x92\x52\xf0\x93\x51\xf0\x92\x53\xf1\x91\x50\xef\x92\x52\xef\x91\ +\x51\xf0\x94\x54\xee\x94\x59\xee\x93\x56\xef\x9d\x62\xec\xaf\x86\ +\xe8\xb3\x94\xea\xaa\x83\xeb\xa3\x76\xed\x9c\x6b\xed\xa0\x71\xed\ +\xa0\x6f\xef\xa2\x6f\xed\xa0\x6f\xed\x99\x5f\xed\x94\x59\xec\x91\ +\x54\xed\x90\x51\xee\x90\x4f\xef\x92\x54\xed\x94\x58\xe9\x8f\x52\ +\x9e\x6c\x49\x65\x43\x28\xb3\x65\x29\xee\x90\x52\xf1\x95\x55\xf2\ +\x95\x56\xf3\x97\x5a\xf5\x99\x5e\xa6\x75\x57\x5a\x49\x3a\x55\x40\ +\x2e\xa9\x6a\x3d\xdc\x90\x5c\xf8\xa0\x67\xda\x97\x6a\xca\x93\x6c\ +\x80\x65\x51\x42\x54\x59\x3b\x54\x55\x3a\x51\x50\x38\x49\x4b\x1f\ +\x39\x34\x3c\x52\x4f\x3e\x56\x57\x30\x44\x46\x3a\x4e\x57\x00\x00\ +\x00\xf5\x9e\x61\xf5\x9d\x5f\xf6\x9f\x5f\xf4\x9d\x60\xf6\x9e\x5e\ +\xf6\x9d\x60\xf5\x9d\x60\xf5\x9d\x61\xf3\x9c\x5f\xf4\x9d\x5e\xf4\ +\x9d\x5e\xf3\x9c\x5d\xf3\x9d\x5e\xf4\x9b\x5c\xf3\x9c\x5b\xf4\x9c\ +\x5c\xf3\x9a\x5b\xf3\x9b\x5a\xf6\x99\x5a\xf3\x9a\x5b\xf2\x99\x5c\ +\xf2\x99\x5a\xf2\x9a\x5c\xf5\x9b\x5d\xf2\x99\x59\xf4\x99\x5c\xf4\ +\x99\x5a\xf4\x9a\x5b\xf3\x99\x5b\xf4\x99\x5b\xf3\x98\x59\xf4\x99\ +\x5c\xf4\x99\x5a\xf3\x98\x5a\xf5\x98\x5a\xf2\x98\x57\xf2\x98\x59\ +\xf2\x97\x58\xf2\x97\x59\xf3\x98\x59\xf1\x98\x58\xf2\x99\x58\xf1\ +\x98\x58\xf2\x98\x59\xf1\x99\x59\xf2\x98\x59\xf1\x97\x57\xf3\x98\ +\x5a\xf3\x98\x57\xf2\x97\x59\xf1\x97\x57\xf1\x96\x56\xf2\x97\x58\ +\xf1\x97\x57\xf2\x96\x57\xf3\x95\x55\xf2\x97\x57\xf2\x96\x57\xf1\ +\x95\x55\xf1\x95\x54\xf2\x95\x53\xf2\x96\x55\xf1\x95\x54\xf1\x95\ +\x57\xf2\x94\x54\xf1\x95\x54\xf1\x94\x52\xf1\x94\x53\xf0\x94\x54\ +\xf1\x94\x53\xf1\x94\x54\xf2\x94\x52\xf2\x95\x55\xf1\x95\x54\xf1\ +\x94\x54\xf1\x94\x55\xf2\x94\x55\xf2\x94\x53\xf1\x94\x54\xf1\x94\ +\x53\xf1\x94\x55\xf2\x95\x53\xf2\x94\x52\xf0\x95\x53\xf1\x96\x55\ +\xf0\x94\x57\xf0\x93\x54\xef\x93\x53\xf0\x94\x55\xf1\x93\x55\xf0\ +\x93\x55\xf1\x93\x54\xf1\x94\x54\xf1\x94\x52\xf0\x93\x53\xf0\x92\ +\x52\xf0\x92\x52\xf1\x91\x51\xf0\x92\x52\xef\x93\x52\xf0\x92\x53\ +\xf0\x92\x52\xf0\x92\x52\xf0\x92\x52\xf1\x93\x52\xf0\x93\x54\xf0\ +\x94\x55\xee\x93\x54\xef\x93\x53\xef\x92\x52\xf0\x92\x52\xf0\x91\ +\x51\xf1\x91\x51\xef\x92\x52\xef\x91\x51\xf0\x91\x50\xef\x97\x5b\ +\xed\x96\x5d\xee\x99\x5e\xef\xa8\x76\xea\xac\x87\xe8\xa9\x81\xe9\ +\xa5\x7e\xea\x97\x62\xec\x91\x56\xec\x95\x5e\xec\x99\x63\xec\xa3\ +\x75\xeb\xa6\x7c\xec\xa5\x7a\xed\xa2\x72\xed\x9a\x66\xec\x95\x5a\ +\xed\x92\x55\xed\x92\x53\xec\x93\x57\xcb\x7d\x4d\x9e\x5e\x31\xe2\ +\x85\x42\xf0\x93\x52\xef\x92\x55\xf1\x94\x55\xf3\x95\x56\xee\x94\ +\x5a\xda\x8b\x59\x7d\x66\x4e\x56\x3f\x26\xf6\x94\x4f\xe6\x9a\x67\ +\xbb\x7e\x56\xef\x9b\x64\xdf\x9b\x6e\xa5\x76\x5b\x3c\x47\x43\x38\ +\x4a\x4b\x3c\x53\x56\x34\x4c\x4b\x36\x4d\x4e\x28\x3b\x3c\x2f\x3d\ +\x3a\x33\x46\x46\x28\x37\x39\x23\x34\x39\x00\x00\x00\xf5\x9e\x5e\ +\xf5\x9c\x60\xf5\x9e\x60\xf5\x9c\x5f\xf4\x9c\x5c\xf5\x9c\x5f\xf5\ +\x9c\x5e\xf3\x9c\x5d\xf4\x9c\x5e\xf4\x9d\x60\xf4\x9c\x5f\xf4\x9b\ +\x5d\xf4\x9b\x5c\xf3\x9a\x5c\xf4\x9b\x5b\xf3\x9a\x5b\xf3\x9b\x5b\ +\xf3\x9a\x5c\xf2\x9a\x5a\xf2\x99\x5b\xf2\x9a\x5c\xf3\x9a\x5b\xf3\ +\x9a\x5d\xf3\x99\x5c\xf3\x99\x59\xf2\x99\x5b\xf1\x98\x5b\xf2\x98\ +\x5b\xf4\x99\x5b\xf3\x99\x58\xf1\x98\x5a\xf3\x98\x59\xf2\x97\x5a\ +\xf1\x97\x58\xf2\x97\x58\xf3\x99\x59\xf2\x98\x59\xf1\x97\x58\xf2\ +\x98\x58\xf2\x97\x59\xf1\x98\x5b\xf2\x97\x58\xf3\x98\x58\xf2\x98\ +\x58\xf2\x98\x58\xf2\x98\x59\xf1\x97\x58\xf1\x96\x57\xf3\x96\x56\ +\xf1\x96\x57\xf2\x95\x56\xf3\x95\x56\xf2\x96\x56\xf1\x95\x56\xf1\ +\x95\x56\xf2\x95\x57\xf2\x95\x56\xf2\x94\x55\xf2\x95\x54\xf2\x94\ +\x54\xf1\x94\x54\xf2\x94\x54\xf1\x95\x53\xf2\x94\x54\xf2\x95\x54\ +\xf2\x94\x53\xf2\x94\x52\xf1\x94\x52\xf0\x95\x54\xf2\x93\x54\xf0\ +\x94\x52\xf0\x95\x54\xf1\x94\x55\xf0\x94\x54\xf0\x94\x53\xf0\x94\ +\x54\xf1\x93\x54\xf2\x95\x55\xf2\x95\x54\xf2\x93\x54\xf2\x94\x53\ +\xf2\x94\x55\xf0\x95\x54\xf0\x95\x54\xf0\x94\x55\xf0\x95\x55\xf1\ +\x94\x52\xf3\x92\x53\xf1\x93\x53\xf2\x93\x52\xf1\x92\x52\xef\x93\ +\x52\xf0\x93\x52\xf1\x92\x52\xf0\x93\x52\xf0\x92\x53\xf0\x93\x52\ +\xf0\x92\x52\xf0\x93\x51\xf1\x93\x53\xf0\x93\x53\xf0\x92\x52\xf0\ +\x92\x52\xf1\x93\x52\xf0\x94\x55\xf0\x93\x54\xef\x94\x56\xef\x96\ +\x59\xee\x93\x56\xf0\x92\x53\xef\x93\x51\xef\x92\x53\xef\x92\x50\ +\xf1\x91\x52\xf1\x91\x51\xf0\x91\x50\xef\x98\x5e\xed\x9b\x63\xee\ +\x9c\x66\xed\xab\x80\xe9\xaa\x88\xec\xa0\x70\xec\x9f\x6f\xec\x97\ +\x5e\xed\x91\x53\xed\x92\x54\xee\x99\x5e\xed\xa9\x7b\xe8\xb0\x8b\ +\xe9\xb1\x8f\xe9\xae\x8c\xeb\xa9\x80\xec\xa3\x74\xec\x9c\x66\xed\ +\x98\x5e\xec\x94\x59\xe0\x86\x4a\xf1\x94\x54\xf1\x93\x55\xef\x92\ +\x52\xef\x93\x54\xf1\x93\x53\xf1\x93\x55\xe8\x8f\x52\x95\x65\x45\ +\x58\x4a\x3d\x9c\x60\x3b\xdd\x8f\x5c\xb4\x80\x5f\x73\x59\x44\x7a\ +\x57\x3d\x83\x68\x5b\x54\x4f\x4c\x44\x4a\x42\x47\x56\x53\x3a\x4e\ +\x54\x3c\x59\x5c\x35\x4e\x59\x3a\x48\x4c\x35\x45\x43\x43\x4f\x52\ +\x34\x41\x45\x28\x31\x32\x00\x00\x00\xf5\x9d\x5d\xf4\x9d\x60\xf5\ +\x9c\x5f\xf5\x9c\x5e\xf4\x9c\x5e\xf4\x9d\x5e\xf4\x9c\x5b\xf4\x9b\ +\x5c\xf3\x9b\x5b\xf3\x9b\x5d\xf3\x9b\x5c\xf3\x9b\x5d\xf3\x9b\x5c\ +\xf3\x9a\x5a\xf3\x9a\x5b\xf3\x9a\x5b\xf3\x9a\x5a\xf3\x9a\x5c\xf3\ +\x9a\x5c\xf2\x99\x5b\xf3\x9a\x5c\xf3\x9a\x5b\xf3\x99\x5c\xf3\x99\ +\x5c\xf2\x9a\x5a\xf3\x98\x5b\xf2\x99\x5c\xf2\x99\x59\xf2\x98\x5a\ +\xf3\x98\x59\xf1\x98\x59\xf3\x98\x59\xf2\x97\x59\xf1\x97\x58\xf3\ +\x97\x56\xf2\x98\x59\xf2\x98\x59\xf1\x97\x58\xf1\x98\x58\xf2\x97\ +\x59\xf2\x98\x57\xf3\x97\x58\xf2\x96\x58\xf2\x96\x58\xf1\x97\x59\ +\xf2\x96\x57\xf0\x96\x59\xf2\x96\x57\xf0\x96\x57\xf1\x96\x56\xf2\ +\x95\x54\xf2\x96\x55\xf3\x95\x56\xf2\x95\x56\xf2\x95\x55\xf2\x94\ +\x55\xf1\x94\x55\xf2\x94\x54\xf0\x96\x53\xf0\x94\x54\xf1\x94\x54\ +\xf1\x94\x54\xf0\x94\x55\xf1\x94\x55\xf2\x94\x53\xf1\x94\x54\xf1\ +\x93\x53\xf0\x94\x52\xf1\x94\x54\xf2\x94\x54\xf1\x94\x53\xf1\x94\ +\x54\xf1\x95\x55\xf2\x94\x53\xf1\x95\x54\xf1\x94\x53\xf1\x94\x55\ +\xf0\x95\x56\xf2\x94\x54\xf3\x94\x55\xf0\x94\x55\xf1\x95\x54\xf1\ +\x94\x55\xf1\x95\x54\xf0\x95\x56\xf0\x94\x54\xf1\x92\x53\xf1\x92\ +\x52\xf1\x92\x51\xf1\x92\x52\xf2\x92\x52\xf0\x93\x53\xf0\x93\x52\ +\xef\x93\x54\xf0\x93\x53\xf0\x92\x52\xf0\x92\x53\xf1\x92\x51\xf0\ +\x92\x53\xef\x94\x54\xef\x93\x52\xef\x92\x53\xf0\x92\x53\xf0\x91\ +\x52\xee\x94\x56\xee\x95\x58\xee\x95\x58\xee\x96\x58\xef\x95\x56\ +\xef\x93\x54\xf0\x93\x54\xef\x92\x54\xf0\x93\x51\xf0\x91\x51\xed\ +\x92\x51\xef\x91\x52\xee\x98\x5e\xee\x9d\x68\xed\xa0\x6e\xec\xa6\ +\x78\xe9\xab\x87\xec\xa3\x77\xeb\x9c\x68\xec\x97\x5e\xec\x93\x53\ +\xec\x98\x60\xed\xa4\x75\xe9\xb2\x8e\xe6\xb6\x9d\xe6\xb2\x96\xe8\ +\xae\x8f\xe8\xae\x8d\xe9\xad\x8c\xeb\xa7\x7b\xeb\xa4\x77\xec\x9b\ +\x63\xef\x99\x61\xee\x94\x58\xef\x92\x55\xf0\x92\x54\xee\x93\x56\ +\xf0\x94\x56\xf1\x94\x54\xde\x8b\x53\xab\x6b\x45\x99\x6e\x4a\x5a\ +\x43\x3c\x97\x63\x3f\x54\x4a\x42\x30\x35\x31\x46\x3a\x29\x51\x50\ +\x48\x6c\x64\x5b\x5b\x61\x62\x36\x48\x4d\x3f\x49\x49\x48\x52\x59\ +\x2e\x3a\x41\x4c\x50\x49\x38\x4a\x4c\x3c\x4a\x4e\x32\x44\x46\x40\ +\x40\x3f\x00\x00\x00\xf4\x9d\x5e\xf5\x9c\x5f\xf5\x9c\x5e\xf4\x9b\ +\x5e\xf4\x9b\x5c\xf3\x9b\x5b\xf5\x9a\x5a\xf4\x9a\x5d\xf3\x9b\x5a\ +\xf2\x9b\x5b\xf3\x9b\x5a\xf4\x9b\x5c\xf2\x9b\x5b\xf2\x99\x5a\xf3\ +\x9a\x5c\xf2\x9a\x5b\xf2\x99\x5b\xf2\x9a\x5a\xf3\x9a\x5c\xf2\x99\ +\x5b\xf3\x99\x5b\xf2\x9a\x5c\xf3\x9a\x5a\xf3\x99\x5c\xf1\x99\x58\ +\xf3\x98\x59\xf2\x98\x59\xf2\x99\x59\xf2\x98\x59\xf2\x98\x5b\xf2\ +\x97\x57\xf2\x98\x58\xf2\x97\x58\xf2\x96\x59\xf2\x96\x57\xf2\x96\ +\x57\xf2\x96\x57\xf1\x96\x57\xf2\x97\x57\xf1\x96\x58\xf2\x96\x57\ +\xf2\x95\x56\xf3\x97\x56\xf3\x96\x57\xf2\x96\x57\xf1\x97\x57\xf0\ +\x96\x58\xf1\x96\x56\xf2\x96\x55\xf2\x95\x55\xf1\x95\x54\xf1\x95\ +\x55\xf2\x96\x54\xf1\x94\x54\xf1\x94\x55\xf2\x95\x54\xf1\x94\x55\ +\xf1\x93\x54\xf1\x94\x54\xf1\x94\x54\xf2\x93\x54\xf1\x94\x53\xf1\ +\x93\x54\xf0\x94\x52\xf2\x94\x52\xf1\x95\x55\xef\x95\x53\xf0\x94\ +\x52\xf2\x93\x54\xf1\x94\x52\xf3\x94\x54\xf1\x94\x54\xf0\x94\x53\ +\xf2\x94\x53\xf2\x94\x53\xf0\x94\x54\xf0\x94\x54\xf0\x94\x54\xf0\ +\x94\x52\xf1\x94\x55\xf1\x94\x56\xf1\x95\x56\xf1\x95\x55\xf1\x94\ +\x55\xf0\x93\x54\xf1\x93\x54\xf0\x92\x52\xf0\x92\x52\xf0\x92\x51\ +\xf0\x93\x52\xf0\x93\x51\xf0\x93\x51\xf0\x93\x53\xef\x93\x53\xf0\ +\x93\x50\xf0\x91\x50\xef\x91\x52\xef\x94\x54\xf0\x94\x57\xef\x94\ +\x56\xef\x93\x53\xef\x92\x51\xef\x93\x54\xef\x94\x54\xee\x95\x57\ +\xef\x95\x59\xef\x96\x59\xef\x98\x5d\xee\x96\x59\xee\x94\x57\xf0\ +\x93\x54\xee\x93\x55\xee\x93\x53\xee\x92\x55\xec\x92\x52\xee\x91\ +\x51\xee\x96\x5a\xee\x9f\x6b\xed\xa1\x6f\xed\x9e\x6d\xeb\xa2\x75\ +\xeb\xa0\x74\xeb\x9a\x66\xed\x97\x60\xeb\x94\x59\xec\x97\x5f\xeb\ +\xa4\x77\xe8\xaf\x8c\xe5\xae\x91\xe6\xa7\x84\xe8\xa5\x7e\xe9\xa4\ +\x7e\xe8\xa6\x7f\xea\xa9\x82\xeb\xac\x88\xec\xa8\x7f\xec\xa4\x75\ +\xed\x9a\x64\xee\x98\x61\xee\x96\x5c\xef\x93\x54\xf0\x94\x57\xf0\ +\x94\x57\xdf\x8a\x4e\xe1\x87\x49\xca\x85\x55\xa7\x67\x3e\xb0\x76\ +\x4f\x81\x5c\x48\x4f\x40\x36\xb2\x75\x46\x92\x76\x60\x88\x6b\x52\ +\x59\x5f\x5e\x4f\x59\x54\x4b\x49\x44\x56\x5d\x55\x33\x45\x46\x4b\ +\x4e\x4d\x3a\x48\x50\x3f\x52\x53\x35\x46\x50\x4a\x45\x46\x00\x00\ +\x00\xf4\x9c\x5d\xf5\x9c\x5e\xf4\x9b\x5e\xf4\x9c\x5d\xf4\x9b\x5b\ +\xf3\x9a\x5a\xf3\x9b\x5a\xf3\x9b\x5c\xf2\x9b\x5b\xf2\x9a\x5b\xf3\ +\x9a\x5b\xf3\x9a\x5c\xf4\x9b\x5b\xf3\x99\x5c\xf2\x9a\x5b\xf2\x99\ +\x5c\xf4\x99\x5b\xf2\x99\x5a\xf2\x9a\x5d\xf1\x9a\x5a\xf3\x99\x5b\ +\xf3\x99\x5c\xf2\x99\x5c\xf4\x9a\x5d\xf1\x98\x57\xf2\x98\x59\xf2\ +\x97\x59\xf2\x98\x59\xf2\x97\x58\xf2\x97\x57\xf2\x96\x57\xf0\x96\ +\x58\xf1\x96\x57\xf2\x96\x56\xf2\x96\x57\xf3\x96\x56\xf2\x95\x56\ +\xf1\x94\x56\xf3\x96\x58\xf2\x96\x58\xf2\x96\x57\xf2\x95\x54\xf2\ +\x96\x56\xf2\x96\x56\xf2\x97\x57\xf1\x97\x57\xf1\x95\x56\xf1\x95\ +\x54\xf0\x95\x57\xf1\x96\x57\xf1\x95\x56\xf1\x94\x54\xf1\x95\x55\ +\xf0\x95\x54\xf1\x94\x54\xf1\x94\x56\xf1\x94\x53\xf1\x94\x54\xf0\ +\x94\x52\xf1\x94\x54\xf2\x93\x53\xf2\x93\x53\xf1\x94\x54\xef\x95\ +\x51\xf1\x94\x54\xf0\x94\x53\xf0\x93\x54\xf0\x93\x52\xf1\x93\x52\ +\xf0\x94\x52\xef\x93\x54\xf1\x92\x52\xf2\x93\x53\xf1\x92\x52\xf2\ +\x93\x52\xf0\x93\x53\xf1\x94\x53\xf1\x93\x53\xf0\x94\x53\xf2\x93\ +\x53\xf0\x95\x55\xf1\x94\x54\xf1\x93\x54\xef\x93\x54\xef\x93\x53\ +\xf0\x93\x52\xf1\x92\x53\xf0\x92\x52\xf1\x92\x52\xf1\x92\x52\xf0\ +\x92\x50\xf0\x92\x51\xef\x92\x53\xef\x92\x52\xf0\x92\x53\xef\x93\ +\x52\xef\x92\x52\xee\x94\x55\xed\x94\x57\xee\x93\x54\xef\x92\x52\ +\xf0\x91\x50\xef\x94\x55\xee\x96\x5b\xee\x99\x5e\xef\x99\x5e\xef\ +\x9e\x65\xef\xa2\x6d\xee\x98\x5e\xee\x95\x5a\xee\x94\x56\xee\x94\ +\x57\xed\x94\x57\xed\x92\x54\xed\x92\x54\xed\x91\x52\xed\x92\x54\ +\xed\xa2\x6f\xeb\xa5\x79\xee\xa1\x6f\xec\xa0\x70\xeb\x9f\x6f\xec\ +\x97\x5f\xec\x98\x63\xec\x99\x64\xec\x98\x61\xeb\x9c\x6c\xe8\x9d\ +\x6f\xe7\x98\x6a\xe9\x94\x5e\xea\x96\x5f\xe8\x97\x66\xe9\x94\x5e\ +\xea\x94\x5d\xea\xa5\x7a\xe9\xa8\x84\xea\xa8\x81\xeb\x9e\x6f\xec\ +\x99\x65\xed\x95\x5f\xe9\x8f\x54\xe4\x8d\x57\xee\x90\x54\xf2\x94\ +\x55\xf1\x93\x56\xe4\x8f\x55\xe9\x91\x59\x76\x5a\x47\x65\x50\x3b\ +\x84\x5a\x3e\xcf\x84\x56\xba\x89\x6d\x41\x47\x45\x46\x4b\x47\x63\ +\x5e\x55\x3c\x49\x49\x48\x53\x52\x30\x3f\x47\x2d\x3d\x45\x3c\x45\ +\x45\x3f\x4c\x52\x42\x50\x55\x45\x4a\x4b\x00\x00\x00\xf4\x9b\x5c\ +\xf3\x9b\x5b\xf3\x9b\x5b\xf3\x9b\x5b\xf2\x9b\x5a\xf3\x9a\x5c\xf3\ +\x9a\x5b\xf3\x9a\x5d\xf3\x9a\x5c\xf2\x9a\x5a\xf1\x9a\x5b\xf2\x9a\ +\x5c\xf4\x9a\x5d\xf2\x9a\x5a\xf2\x99\x5a\xf2\x99\x5c\xf3\x9a\x5c\ +\xf2\x99\x5c\xf3\x99\x5c\xf2\x99\x5b\xf1\x99\x5c\xf2\x98\x5c\xf3\ +\x99\x5a\xf3\x98\x58\xf2\x97\x5a\xf2\x98\x5a\xf1\x98\x58\xf1\x97\ +\x58\xf2\x96\x57\xf2\x96\x55\xf3\x97\x57\xf2\x96\x56\xf2\x96\x56\ +\xf1\x96\x57\xf3\x96\x57\xf2\x96\x57\xf0\x96\x57\xf0\x97\x56\xf1\ +\x96\x55\xf3\x96\x55\xf1\x96\x57\xf1\x96\x56\xf1\x96\x55\xf0\x95\ +\x55\xf1\x97\x57\xf0\x96\x57\xf1\x96\x57\xf0\x96\x55\xf1\x96\x55\ +\xf0\x95\x54\xf1\x94\x54\xf1\x94\x53\xf1\x95\x54\xf1\x95\x55\xf1\ +\x95\x53\xf0\x95\x54\xf1\x94\x53\xf2\x93\x54\xf0\x94\x53\xf0\x94\ +\x55\xf1\x93\x53\xef\x94\x52\xf0\x93\x51\xf1\x93\x53\xf0\x94\x54\ +\xef\x92\x54\xf1\x93\x53\xf1\x93\x51\xf1\x93\x53\xf0\x93\x52\xef\ +\x93\x53\xf0\x94\x53\xef\x94\x53\xf1\x92\x51\xf1\x94\x53\xf0\x93\ +\x52\xf0\x94\x51\xf1\x93\x53\xf1\x92\x53\xf1\x93\x53\xf1\x94\x53\ +\xf0\x94\x54\xf0\x94\x54\xef\x93\x55\xef\x94\x54\xf0\x93\x51\xf1\ +\x92\x53\xf1\x92\x52\xf0\x93\x52\xf0\x92\x53\xef\x91\x51\xef\x92\ +\x53\xee\x93\x53\xef\x92\x51\xee\x94\x55\xee\x94\x57\xef\x92\x53\ +\xee\x92\x51\xee\x92\x51\xee\x92\x51\xef\x91\x4f\xef\x92\x54\xef\ +\x97\x5a\xee\x98\x5e\xee\x9d\x66\xee\x9f\x69\xec\xa2\x72\xed\xa0\ +\x70\xee\x9d\x69\xed\x9b\x64\xed\x98\x5e\xec\x95\x5b\xed\x94\x58\ +\xed\x93\x53\xed\x92\x55\xeb\x90\x53\xed\x92\x52\xee\x9e\x68\xe9\ +\xa2\x74\xec\x9c\x6a\xec\x9d\x6a\xeb\xa0\x71\xed\x9a\x66\xee\x9b\ +\x66\xed\x9d\x6b\xec\x9b\x69\xe9\x9c\x69\xea\x97\x61\xeb\x8f\x53\ +\xea\x8f\x52\xec\x90\x53\xeb\x90\x53\xeb\x90\x53\xec\x90\x53\xea\ +\x92\x56\xeb\x9a\x64\xea\xa2\x78\xe9\x9a\x6a\xeb\x91\x57\xed\x90\ +\x53\xea\x8e\x56\xe4\x8a\x52\xd5\x7f\x4a\xd6\x82\x4e\xd7\x82\x4d\ +\xf0\x94\x58\xdf\x8b\x54\xe3\x8d\x52\xcc\x87\x56\xba\x7c\x53\xd1\ +\x8d\x61\xa6\x7d\x6a\x6d\x56\x4b\x55\x54\x4e\x44\x4e\x52\x38\x44\ +\x4a\x3e\x49\x47\x2a\x44\x4b\x27\x40\x3e\x2b\x3e\x3d\x3e\x4c\x4f\ +\x3c\x4e\x4f\x36\x48\x56\x00\x00\x00\xf3\x9b\x5b\xf4\x9a\x5d\xf3\ +\x9a\x5b\xf3\x9a\x5c\xf2\x9a\x5a\xf3\x9a\x5b\xf2\x99\x5b\xf2\x99\ +\x58\xf3\x99\x5b\xf4\x9a\x59\xf3\x99\x5b\xf1\x98\x5b\xf3\x98\x5a\ +\xf2\x98\x59\xf1\x98\x59\xf3\x98\x59\xf3\x98\x59\xf3\x98\x59\xf2\ +\x99\x5b\xf0\x98\x59\xf1\x98\x5a\xf2\x99\x58\xf2\x98\x5a\xf2\x97\ +\x58\xf2\x97\x5a\xf2\x96\x58\xf3\x96\x57\xf2\x97\x56\xf2\x96\x56\ +\xf3\x95\x58\xf1\x96\x56\xf1\x97\x56\xf2\x96\x56\xf2\x96\x57\xf1\ +\x97\x56\xf2\x96\x55\xf2\x95\x56\xf2\x94\x56\xf0\x96\x57\xf0\x97\ +\x56\xf1\x95\x54\xf1\x96\x55\xf1\x95\x55\xf1\x95\x56\xf1\x95\x56\ +\xf0\x95\x54\xf1\x94\x55\xf1\x94\x54\xf2\x95\x56\xf0\x96\x56\xf0\ +\x95\x53\xf1\x95\x55\xf1\x94\x53\xf1\x94\x54\xf0\x93\x53\xf0\x93\ +\x53\xf0\x94\x54\xf0\x93\x55\xf2\x91\x51\xf2\x92\x51\xf1\x92\x52\ +\xef\x93\x53\xf1\x94\x52\xef\x93\x54\xef\x93\x53\xf0\x92\x52\xf0\ +\x92\x52\xf1\x92\x52\xf1\x92\x52\xee\x93\x52\xf0\x93\x52\xef\x93\ +\x52\xee\x94\x53\xef\x93\x54\xf0\x93\x51\xf0\x93\x52\xf0\x93\x53\ +\xef\x93\x53\xf0\x92\x52\xef\x94\x53\xef\x94\x53\xef\x94\x56\xef\ +\x92\x54\xee\x93\x54\xf0\x93\x53\xef\x93\x52\xf0\x92\x52\xef\x92\ +\x52\xef\x92\x54\xef\x91\x53\xef\x92\x51\xef\x91\x51\xef\x91\x50\ +\xee\x92\x50\xed\x92\x52\xef\x91\x51\xef\x90\x50\xef\x92\x51\xf0\ +\x92\x4f\xed\x90\x50\xee\x90\x4f\xed\x91\x52\xeb\x93\x56\xed\x96\ +\x5b\xec\x97\x5f\xec\x97\x61\xec\x9a\x63\xed\x9e\x69\xed\xa1\x6e\ +\xed\x9c\x69\xec\x9b\x67\xeb\x93\x59\xec\x92\x56\xec\x91\x54\xec\ +\x92\x54\xee\x91\x54\xed\x93\x55\xee\x9d\x66\xec\x9e\x6e\xeb\x96\ +\x5f\xec\x97\x5d\xed\x9d\x69\xed\x9e\x6b\xea\xa0\x70\xe9\x98\x63\ +\xeb\x97\x61\xeb\x96\x62\xea\x96\x60\xea\x92\x57\xec\x94\x55\xeb\ +\x96\x5f\xec\x98\x5e\xeb\x94\x59\xeb\x92\x57\xeb\x90\x53\xeb\x91\ +\x54\xea\x95\x61\xec\x8d\x50\xed\x8c\x4b\xee\x8c\x4d\xe9\x8b\x4e\ +\xe5\x89\x4f\xeb\x8d\x4d\xe0\x86\x4c\xd9\x87\x52\xdb\x85\x4e\xe6\ +\x8d\x52\xf2\x99\x5e\xef\x9c\x64\xcf\x87\x5b\x9f\x7b\x63\x5a\x5d\ +\x57\x46\x45\x48\x50\x51\x4f\x33\x43\x42\x40\x50\x53\x3b\x4c\x52\ +\x29\x4b\x48\x29\x38\x39\x3b\x49\x42\x2e\x3c\x39\x36\x48\x53\x3c\ +\x49\x48\x00\x00\x00\xf2\x9a\x5b\xf3\x9a\x5c\xf3\x9b\x5e\xf2\x9a\ +\x5c\xf2\x9a\x5a\xf4\x99\x5a\xf3\x98\x5b\xf3\x9a\x5b\xf2\x99\x5b\ +\xf2\x9a\x59\xf3\x99\x5b\xf3\x98\x5b\xf0\x97\x59\xf1\x98\x5a\xf2\ +\x98\x5b\xf1\x98\x5a\xf2\x98\x59\xf3\x98\x59\xf1\x97\x5a\xf2\x98\ +\x58\xf1\x97\x58\xf1\x97\x5a\xf2\x96\x59\xf3\x96\x56\xf1\x97\x57\ +\xf1\x96\x57\xf2\x97\x57\xf1\x96\x56\xf1\x96\x57\xf2\x96\x56\xf2\ +\x96\x57\xf1\x96\x56\xf2\x95\x55\xf2\x96\x55\xf2\x95\x54\xf0\x96\ +\x56\xf2\x95\x55\xf2\x95\x57\xf0\x96\x56\xf0\x96\x56\xf0\x95\x54\ +\xf1\x95\x55\xf1\x94\x54\xf1\x95\x55\xf1\x94\x54\xf2\x94\x54\xf0\ +\x93\x53\xf1\x94\x54\xf0\x94\x55\xf0\x95\x55\xf0\x94\x55\xf2\x94\ +\x53\xf0\x93\x54\xef\x94\x52\xf0\x94\x52\xf0\x93\x52\xf1\x93\x52\ +\xf0\x92\x54\xf0\x93\x51\xf0\x93\x53\xf2\x92\x54\xf0\x93\x52\xef\ +\x94\x54\xef\x93\x53\xf0\x92\x52\xf0\x92\x52\xef\x92\x51\xf0\x91\ +\x51\xf1\x93\x51\xef\x93\x52\xf0\x92\x52\xef\x93\x53\xef\x93\x52\ +\xef\x93\x51\xf0\x92\x50\xf0\x92\x52\xf0\x93\x52\xf0\x92\x52\xf1\ +\x93\x52\xf0\x93\x53\xee\x94\x53\xee\x92\x53\xef\x92\x53\xee\x93\ +\x52\xf1\x93\x54\xf0\x92\x51\xee\x92\x51\xee\x92\x53\xef\x92\x51\ +\xef\x91\x51\xf0\x91\x50\xf0\x91\x51\xef\x93\x51\xef\x92\x52\xee\ +\x92\x53\xed\x92\x52\xee\x91\x50\xee\x92\x52\xed\x92\x52\xef\x8f\ +\x4e\xf0\x90\x50\xed\x92\x52\xed\x95\x57\xee\x95\x5b\xec\x97\x5e\ +\xed\x9b\x64\xee\xa4\x74\xec\xaa\x7e\xeb\xab\x82\xeb\xa4\x76\xec\ +\x9d\x6a\xed\x92\x57\xeb\x90\x51\xec\x91\x52\xec\x92\x53\xed\x92\ +\x53\xec\x95\x5b\xed\x9c\x67\xea\x9e\x6e\xea\x95\x5d\xeb\x94\x59\ +\xeb\x99\x61\xec\xa1\x70\xea\x9f\x70\xeb\x9a\x62\xea\x94\x5a\xeb\ +\x92\x58\xeb\x95\x5c\xea\x95\x5d\xeb\x99\x64\xed\x9c\x69\xeb\x9b\ +\x6c\xea\x95\x60\xea\x94\x5c\xe9\x92\x58\xeb\x90\x53\xec\x8c\x4d\ +\xed\x8b\x4b\xed\x8c\x4b\xed\x8c\x4d\xe9\x8c\x50\xef\x8e\x4d\xef\ +\x8f\x4f\xcd\x7c\x49\xd7\x83\x4d\xdc\x89\x53\xe6\x8f\x58\xd9\x88\ +\x56\xd9\x8c\x5d\xab\x79\x59\x7f\x67\x55\x75\x64\x58\x5e\x58\x53\ +\x28\x32\x2e\x2e\x3d\x3b\x3a\x50\x54\x2e\x3f\x47\x2a\x42\x3e\x62\ +\x4d\x39\x7e\x65\x4e\x29\x33\x34\x32\x37\x37\x39\x47\x4f\x00\x00\ +\x00\xf2\x99\x5c\xf3\x9a\x5c\xf3\x99\x5c\xf2\x99\x5c\xf2\x99\x5b\ +\xf3\x99\x5a\xf3\x98\x59\xf3\x9a\x5a\xf3\x9a\x5b\xf4\x99\x5a\xf3\ +\x98\x58\xf2\x98\x59\xf1\x98\x5b\xf1\x97\x5a\xf2\x98\x58\xf1\x97\ +\x59\xf1\x96\x58\xf1\x96\x57\xf0\x96\x59\xf1\x97\x58\xf2\x98\x59\ +\xf1\x96\x57\xf2\x96\x56\xf0\x96\x57\xf0\x96\x58\xf2\x96\x57\xf1\ +\x96\x57\xf2\x96\x56\xf2\x95\x56\xf1\x96\x56\xf0\x97\x55\xf1\x96\ +\x56\xf0\x95\x56\xf1\x95\x56\xf1\x95\x56\xf1\x96\x56\xf1\x95\x55\ +\xf1\x95\x56\xf0\x96\x58\xf0\x96\x56\xf1\x95\x56\xf2\x94\x55\xf2\ +\x94\x55\xf1\x95\x54\xf1\x94\x54\xf1\x95\x54\xef\x94\x53\xef\x94\ +\x54\xf0\x93\x53\xf1\x93\x54\xef\x93\x54\xf1\x93\x52\xf0\x94\x54\ +\xf0\x93\x52\xef\x93\x53\xf0\x93\x53\xf0\x93\x53\xf1\x93\x51\xf0\ +\x93\x52\xf0\x92\x54\xf0\x92\x53\xef\x93\x52\xef\x93\x53\xef\x93\ +\x52\xf1\x93\x51\xf0\x93\x52\xf0\x92\x51\xf1\x92\x53\xf1\x92\x52\ +\xf0\x92\x51\xf0\x92\x52\xef\x92\x52\xf0\x92\x53\xef\x93\x53\xef\ +\x92\x51\xef\x92\x52\xef\x93\x52\xef\x92\x51\xef\x92\x52\xef\x94\ +\x52\xed\x94\x54\xf0\x92\x52\xf0\x92\x52\xf0\x93\x51\xee\x93\x52\ +\xef\x93\x52\xf0\x92\x50\xef\x91\x53\xef\x92\x51\xf0\x91\x50\xef\ +\x91\x50\xef\x91\x51\xee\x93\x55\xee\x92\x52\xee\x92\x54\xed\x94\ +\x57\xee\x92\x54\xee\x92\x52\xec\x91\x54\xef\x8f\x4e\xef\x90\x4f\ +\xed\x93\x56\xed\x93\x56\xed\x96\x5d\xed\x98\x5f\xec\x9a\x64\xeb\ +\xa3\x75\xe9\xaf\x8c\xe7\xb0\x91\xe9\xad\x89\xea\xa7\x7c\xeb\x9d\ +\x68\xec\x94\x59\xec\x92\x53\xec\x91\x54\xec\x90\x54\xeb\x92\x57\ +\xeb\x98\x61\xe9\x9c\x6b\xeb\x99\x61\xeb\x95\x5c\xec\x95\x5a\xea\ +\xa0\x6e\xea\xa3\x76\xea\x9c\x69\xea\x94\x5e\xec\x98\x60\xeb\x9c\ +\x69\xea\x98\x62\xea\x9a\x68\xeb\x9a\x67\xea\x99\x67\xeb\x96\x60\ +\xea\x93\x5c\xec\x8f\x52\xeb\x8d\x50\xee\x8c\x4d\xec\x8c\x4b\xee\ +\x8c\x4b\xed\x8c\x4b\xed\x8e\x4c\xee\x8d\x4d\xf0\x90\x4f\xd0\x80\ +\x4b\xd2\x7f\x4a\xd3\x87\x56\xc5\x7e\x57\xc6\x86\x5e\xa7\x71\x58\ +\x92\x72\x59\x81\x69\x55\x67\x5f\x58\x3f\x4c\x52\x21\x33\x32\x32\ +\x43\x44\x37\x4b\x54\x42\x48\x48\x59\x4e\x41\x59\x4c\x41\x3f\x40\ +\x3a\x3a\x34\x2d\x57\x56\x48\x4b\x53\x54\x00\x00\x00\xf3\x99\x5c\ +\xf3\x99\x5c\xf3\x99\x5c\xf3\x98\x5b\xf1\x98\x5a\xf2\x99\x5b\xf2\ +\x99\x59\xf1\x99\x58\xf1\x98\x5b\xf2\x97\x5b\xf3\x97\x59\xf2\x98\ +\x59\xf3\x98\x59\xf2\x98\x5b\xf2\x97\x59\xef\x96\x59\xf1\x95\x56\ +\xf1\x96\x58\xf1\x95\x56\xf1\x96\x58\xf1\x97\x5a\xf1\x96\x57\xf1\ +\x96\x56\xf1\x96\x56\xf1\x96\x55\xf2\x96\x55\xf0\x96\x55\xf1\x96\ +\x57\xf1\x95\x54\xf1\x95\x57\xf0\x96\x56\xf2\x96\x55\xf1\x95\x56\ +\xf0\x95\x58\xef\x95\x56\xf2\x96\x54\xef\x95\x55\xf1\x94\x54\xf0\ +\x95\x55\xf0\x96\x56\xf1\x95\x56\xf1\x94\x54\xf3\x94\x55\xf0\x94\ +\x54\xf0\x94\x54\xf0\x93\x54\xf1\x93\x51\xef\x94\x52\xf0\x92\x53\ +\xf0\x93\x54\xf0\x93\x52\xf1\x94\x52\xf0\x93\x52\xf0\x93\x52\xef\ +\x93\x52\xf0\x93\x54\xef\x93\x53\xf1\x93\x52\xf0\x93\x52\xef\x92\ +\x52\xf0\x92\x52\xf0\x92\x51\xf0\x92\x52\xf0\x93\x51\xf0\x92\x51\ +\xf0\x92\x51\xf0\x92\x52\xef\x91\x53\xee\x93\x52\xf0\x93\x51\xef\ +\x92\x51\xf0\x92\x50\xef\x92\x52\xee\x92\x53\xef\x93\x50\xef\x93\ +\x53\xef\x93\x52\xef\x94\x52\xef\x93\x52\xee\x93\x52\xf0\x92\x53\ +\xf1\x92\x50\xf0\x92\x50\xef\x92\x52\xef\x92\x52\xef\x91\x52\xf1\ +\x92\x4e\xee\x90\x51\xee\x92\x53\xf0\x94\x54\xee\x91\x52\xee\x91\ +\x50\xec\x92\x53\xee\x91\x51\xef\x91\x51\xed\x94\x56\xee\x94\x59\ +\xed\x92\x52\xee\x90\x51\xef\x8e\x4f\xee\x90\x4f\xee\x8f\x52\xed\ +\x90\x51\xed\x92\x54\xeb\x97\x5f\xec\x96\x5e\xeb\x9f\x6d\xe8\xab\ +\x87\xe6\xae\x8c\xe7\xb0\x92\xe8\xaf\x8d\xe9\xaa\x84\xe9\xa3\x75\ +\xed\x9b\x64\xec\x9b\x64\xeb\x9a\x63\xeb\x93\x59\xeb\x92\x57\xeb\ +\x9e\x6b\xea\x9e\x6d\xeb\x9b\x6a\xec\x9d\x69\xe9\x9d\x6c\xe8\xa0\ +\x75\xe9\x97\x61\xeb\x91\x58\xeb\x98\x60\xea\xa4\x78\xea\x9b\x69\ +\xed\xa2\x70\xea\x9f\x6d\xeb\x97\x61\xec\x96\x5f\xe9\x92\x5c\xed\ +\x8d\x4e\xee\x8c\x50\xec\x8b\x4b\xed\x8c\x4b\xed\x8c\x4c\xec\x8d\ +\x4b\xed\x8c\x4c\xee\x8c\x4d\xee\x8e\x4e\xec\x90\x53\xec\x92\x57\ +\xea\x94\x5e\xc3\x86\x5e\x9c\x70\x54\x74\x62\x5c\x5e\x55\x50\x40\ +\x44\x44\x4a\x4f\x49\x37\x49\x54\x40\x49\x4c\x45\x49\x47\x60\x5c\ +\x56\x55\x52\x4d\x55\x49\x4a\x70\x59\x47\x87\x6d\x5a\x83\x5a\x3d\ +\xb9\x8b\x62\x51\x5d\x60\x00\x00\x00\xf2\x9a\x5c\xf2\x9a\x59\xf2\ +\x98\x5b\xf2\x98\x5b\xf1\x99\x5c\xf2\x98\x5b\xf2\x98\x58\xf2\x98\ +\x5a\xf2\x98\x59\xf1\x97\x59\xf2\x98\x5a\xf2\x98\x59\xf2\x98\x58\ +\xf2\x98\x58\xf2\x98\x57\xf1\x97\x56\xf1\x95\x55\xf2\x95\x56\xf1\ +\x95\x58\xf1\x95\x58\xf1\x96\x57\xf0\x96\x57\xf0\x96\x59\xf2\x96\ +\x55\xf1\x95\x58\xf2\x95\x56\xf1\x95\x56\xf1\x95\x57\xf1\x95\x56\ +\xf0\x95\x58\xef\x95\x55\xf1\x95\x54\xf0\x94\x53\xef\x95\x56\xef\ +\x96\x56\xf1\x95\x54\xf1\x95\x56\xf0\x95\x55\xf0\x95\x55\xf1\x95\ +\x54\xf0\x94\x53\xf0\x95\x54\xf0\x94\x55\xf0\x94\x54\xef\x94\x54\ +\xf0\x93\x53\xf1\x92\x51\xf0\x93\x52\xf1\x93\x52\xef\x93\x52\xf1\ +\x93\x51\xf1\x93\x53\xf0\x92\x51\xef\x93\x52\xef\x93\x53\xf0\x93\ +\x51\xf0\x93\x51\xf0\x93\x53\xf1\x92\x52\xf0\x93\x50\xf0\x93\x51\ +\xf0\x92\x51\xf0\x92\x51\xf0\x92\x52\xf0\x92\x50\xef\x93\x51\xef\ +\x92\x51\xf0\x92\x51\xef\x92\x52\xef\x91\x51\xf0\x92\x51\xef\x92\ +\x52\xef\x92\x50\xef\x92\x51\xf1\x93\x51\xf0\x93\x52\xee\x93\x50\ +\xee\x92\x51\xef\x92\x50\xef\x92\x51\xf0\x91\x52\xf0\x92\x50\xf0\ +\x91\x50\xf0\x90\x51\xed\x92\x51\xee\x91\x50\xf0\x91\x4e\xee\x91\ +\x51\xec\x92\x54\xed\x95\x5a\xed\x94\x58\xef\x91\x53\xed\x90\x53\ +\xef\x90\x51\xef\x92\x53\xed\x92\x52\xed\x93\x53\xec\x91\x52\xed\ +\x90\x50\xef\x8e\x4e\xee\x8e\x4d\xee\x8d\x4d\xee\x8e\x4b\xed\x91\ +\x54\xec\x97\x61\xec\x94\x5a\xec\xa2\x71\xe9\xa6\x7e\xe9\xaa\x84\ +\xe6\xb1\x93\xe6\xb4\x95\xe7\xb3\x93\xe7\xab\x8a\xea\xa5\x7c\xea\ +\xaa\x82\xe9\xad\x88\xe8\x9c\x6c\xeb\x98\x5e\xea\xa6\x7b\xe9\xa6\ +\x7e\xe8\xa1\x72\xe9\xa6\x7d\xe8\xa0\x73\xe7\x96\x65\xea\x98\x5f\ +\xeb\x92\x5b\xec\x9a\x63\xeb\xa9\x82\xea\xa7\x7c\xeb\xa9\x80\xe9\ +\xab\x85\xec\xa4\x77\xeb\xa1\x72\xeb\x98\x64\xea\x8f\x52\xed\x8e\ +\x51\xec\x8d\x4e\xed\x8c\x4c\xed\x8c\x4b\xed\x8d\x4b\xec\x8b\x4c\ +\xee\x8d\x4d\xee\x8e\x4e\xef\x90\x50\xee\x92\x55\xea\x95\x5d\xa7\ +\x72\x51\x55\x57\x4d\x2c\x40\x43\x24\x34\x34\x27\x31\x30\x36\x3c\ +\x42\x6b\x57\x46\x8e\x6f\x5d\xa2\x78\x60\xac\x89\x73\x43\x49\x4f\ +\x3f\x40\x39\xc4\x7a\x4b\xa2\x7c\x69\xa3\x6d\x4b\xe5\x9e\x6d\x7e\ +\x74\x6e\x00\x00\x00\xf1\x9a\x59\xf1\x99\x58\xf4\x97\x5a\xf2\x97\ +\x5a\xf2\x98\x5a\xf2\x99\x59\xf3\x98\x5a\xf3\x97\x5a\xf2\x98\x59\ +\xf2\x97\x5a\xf1\x96\x5a\xf2\x97\x58\xf0\x96\x58\xf2\x96\x56\xf0\ +\x97\x58\xf1\x97\x5a\xf2\x95\x57\xf1\x96\x56\xf0\x96\x57\xf1\x96\ +\x56\xf0\x95\x57\xf1\x95\x57\xf0\x95\x56\xf0\x96\x56\xf0\x96\x54\ +\xf1\x95\x56\xf1\x95\x56\xf2\x96\x57\xf2\x95\x56\xf0\x94\x54\xf1\ +\x94\x55\xee\x95\x54\xf1\x95\x56\xf0\x95\x55\xef\x95\x58\xf3\x94\ +\x53\xf0\x94\x55\xf0\x94\x55\xef\x94\x56\xf0\x95\x53\xf0\x94\x53\ +\xf0\x94\x54\xf0\x93\x53\xf2\x93\x53\xf2\x92\x52\xf0\x92\x51\xf0\ +\x93\x52\xef\x93\x51\xef\x92\x51\xef\x93\x52\xef\x92\x53\xef\x92\ +\x52\xf0\x93\x52\xef\x92\x53\xf0\x93\x53\xf0\x94\x51\xf1\x93\x51\ +\xee\x91\x54\xef\x92\x50\xf0\x91\x51\xf0\x91\x51\xef\x92\x50\xef\ +\x91\x52\xf1\x93\x51\xf0\x92\x51\xf1\x91\x52\xf1\x91\x52\xf0\x91\ +\x51\xf0\x91\x50\xed\x93\x53\xef\x92\x52\xef\x91\x53\xf0\x91\x51\ +\xf0\x92\x51\xee\x92\x51\xf0\x92\x51\xf0\x91\x50\xef\x91\x50\xf0\ +\x90\x50\xf1\x90\x4f\xf0\x90\x50\xef\x91\x50\xf0\x91\x4f\xf1\x91\ +\x4d\xef\x92\x50\xf0\x94\x55\xf0\x8f\x4f\xef\x92\x50\xed\x91\x52\ +\xee\x91\x53\xee\x91\x54\xee\x94\x59\xef\x92\x56\xee\x92\x53\xef\ +\x94\x5a\xee\x93\x57\xef\x90\x4e\xef\x90\x51\xee\x92\x52\xee\x90\ +\x4e\xef\x8f\x4e\xee\x8f\x50\xed\x8e\x4e\xee\x96\x5a\xed\x9d\x6c\ +\xec\x9a\x64\xeb\xa6\x78\xe9\xa7\x80\xe8\xae\x88\xe6\xb5\x97\xe4\ +\xb7\x9d\xe4\xb4\x9a\xe5\xb0\x94\xe6\xb0\x92\xe5\xb6\x99\xe4\xb7\ +\x9d\xe7\xad\x87\xea\xa5\x78\xe8\xaf\x8b\xe7\xb1\x94\xe8\xaa\x84\ +\xe8\xaa\x85\xe7\xa5\x7f\xea\x9b\x69\xeb\xa2\x6c\xea\x9e\x6d\xea\ +\x9b\x68\xea\xaa\x83\xe9\xb1\x8e\xea\xb6\x93\xe7\xb8\x9e\xe9\xaf\ +\x91\xe9\xa9\x84\xe9\x9e\x72\xe8\x8c\x53\xec\x8e\x4f\xeb\x8f\x54\ +\xee\x8d\x4c\xed\x8c\x4c\xec\x8b\x4b\xed\x8c\x4c\xee\x8e\x4f\xec\ +\x8f\x50\xea\x90\x54\xe9\x91\x55\xb5\x7b\x5b\xae\x6d\x47\x79\x67\ +\x58\x4c\x52\x51\x3a\x4a\x50\x29\x31\x32\x9f\x6c\x4b\xf6\xa6\x6e\ +\xbd\x8b\x71\x6e\x63\x61\x5e\x5a\x5d\x51\x54\x53\x5e\x57\x53\xa0\ +\x71\x4e\xa3\x77\x62\x78\x68\x5a\xdf\x99\x6b\x8f\x78\x72\x00\x00\ +\x00\xf2\x98\x59\xf1\x98\x5a\xf1\x99\x5a\xf1\x98\x5b\xf1\x98\x5a\ +\xf1\x97\x58\xf1\x97\x57\xf3\x98\x5a\xf1\x96\x59\xf0\x98\x57\xf0\ +\x97\x58\xf0\x96\x59\xf0\x96\x57\xf2\x96\x56\xf1\x96\x55\xf1\x96\ +\x58\xf1\x96\x57\xf0\x96\x57\xf1\x96\x57\xf0\x95\x57\xef\x96\x57\ +\xf0\x94\x55\xf2\x95\x55\xf0\x95\x55\xf0\x95\x56\xf1\x94\x55\xf1\ +\x95\x56\xf0\x95\x56\xf0\x94\x56\xef\x95\x56\xf1\x94\x55\xf1\x94\ +\x54\xf0\x94\x55\xf0\x94\x55\xef\x94\x57\xf0\x94\x56\xf0\x93\x53\ +\xf1\x93\x53\xf0\x94\x54\xef\x95\x53\xf2\x94\x52\xee\x94\x56\xf0\ +\x92\x52\xf1\x92\x54\xf0\x92\x54\xef\x93\x52\xf1\x92\x51\xf0\x92\ +\x53\xef\x93\x53\xf0\x93\x52\xf0\x93\x51\xf0\x92\x52\xf0\x92\x52\ +\xf0\x93\x52\xee\x92\x53\xee\x92\x52\xf0\x92\x51\xef\x92\x52\xee\ +\x92\x51\xef\x92\x51\xf0\x91\x50\xf0\x92\x50\xf0\x91\x54\xf0\x91\ +\x50\xef\x92\x50\xf0\x91\x51\xee\x92\x51\xef\x92\x52\xed\x92\x51\ +\xef\x91\x51\xf0\x92\x50\xf0\x92\x52\xef\x92\x51\xef\x91\x51\xee\ +\x91\x50\xef\x91\x52\xf0\x90\x51\xef\x91\x4f\xf0\x90\x4f\xf0\x90\ +\x4f\xf1\x90\x50\xf1\x90\x50\xf0\x8f\x50\xf1\x90\x4f\xef\x93\x54\ +\xed\x94\x57\xef\x90\x4e\xf0\x91\x50\xed\x91\x52\xee\x8f\x4d\xf0\ +\x8e\x4e\xed\x92\x51\xee\x95\x58\xed\x95\x58\xee\x94\x55\xed\x93\ +\x56\xec\x92\x52\xef\x98\x5b\xee\x9c\x65\xed\x97\x5d\xee\x96\x59\ +\xeb\x93\x54\xec\x8f\x50\xee\x9c\x63\xed\xad\x82\xeb\xb0\x8a\xe8\ +\xaf\x89\xeb\xab\x87\xe7\xb1\x93\xe4\xb7\x9d\xe5\xb2\x97\xe5\xb0\ +\x90\xe6\xa8\x85\xe6\xaa\x8a\xe4\xb0\x95\xe3\xb7\x9f\xe4\xbe\xa7\ +\xe4\xbf\xa4\xe4\xbd\xa1\xe3\xc0\xa7\xe4\xb6\x98\xe6\xb1\x8f\xe6\ +\xac\x8a\xe9\x9f\x71\xe9\xaf\x88\xe7\xad\x8c\xea\xa2\x73\xea\xaa\ +\x81\xe6\xb6\x99\xe4\xb6\x9d\xe2\xae\x94\xe4\xa1\x7f\xe4\x93\x65\ +\xe6\x8b\x54\xeb\x89\x48\xeb\x89\x49\xeb\x89\x4c\xeb\x8b\x49\xec\ +\x8a\x48\xe9\x8b\x4b\xde\x85\x4b\xdb\x82\x4a\xd1\x85\x4f\x93\x65\ +\x4f\xa7\x6a\x46\xd4\x87\x58\xac\x7a\x5e\x7e\x62\x4e\x42\x4d\x49\ +\x47\x46\x42\x47\x46\x41\x75\x56\x4c\xd6\x98\x77\x70\x64\x62\x3f\ +\x48\x4c\x78\x64\x58\x74\x69\x5e\x65\x63\x62\x63\x65\x67\x9a\x70\ +\x55\x7e\x6d\x63\x8f\x6d\x5b\x58\x58\x5c\x00\x00\x00\xf1\x98\x59\ +\xf1\x99\x5a\xf1\x98\x59\xf2\x97\x57\xf1\x97\x59\xf0\x97\x5a\xf1\ +\x97\x58\xf2\x98\x5a\xf1\x97\x59\xf2\x97\x58\xf1\x96\x58\xf1\x96\ +\x58\xf1\x96\x56\xf0\x96\x56\xf2\x95\x55\xf1\x96\x58\xf1\x95\x56\ +\xf0\x95\x56\xf2\x96\x55\xef\x95\x56\xf1\x95\x57\xf0\x95\x56\xf0\ +\x95\x57\xf1\x95\x55\xf0\x95\x55\xef\x95\x58\xf0\x95\x57\xef\x94\ +\x56\xf1\x94\x56\xef\x95\x57\xf1\x94\x54\xf0\x95\x56\xf0\x94\x54\ +\xf0\x94\x54\xef\x94\x54\xef\x95\x54\xf0\x93\x54\xf1\x94\x55\xf0\ +\x94\x54\xf0\x94\x54\xef\x93\x54\xef\x94\x52\xef\x93\x54\xf0\x92\ +\x53\xef\x92\x53\xf0\x93\x52\xf0\x92\x52\xf0\x93\x51\xf0\x92\x52\ +\xef\x92\x52\xf0\x91\x51\xef\x92\x52\xf0\x91\x53\xf0\x93\x51\xee\ +\x92\x52\xef\x92\x54\xef\x92\x51\xf0\x92\x52\xee\x91\x52\xee\x92\ +\x52\xef\x91\x51\xef\x92\x51\xef\x92\x52\xf0\x91\x50\xee\x92\x51\ +\xef\x91\x53\xef\x92\x51\xed\x92\x51\xee\x91\x51\xee\x90\x54\xee\ +\x92\x52\xed\x91\x51\xee\x92\x52\xee\x91\x51\xee\x92\x51\xef\x90\ +\x50\xee\x91\x50\xee\x90\x50\xef\x90\x4d\xef\x90\x4e\xf0\x8f\x4f\ +\xf0\x90\x4f\xef\x8e\x50\xf0\x90\x4e\xee\x91\x54\xed\x92\x56\xee\ +\x90\x50\xef\x8f\x4f\xee\x8f\x50\xee\x8e\x4e\xee\x8d\x4f\xee\x92\ +\x52\xed\x9c\x64\xeb\x9b\x65\xed\x98\x61\xec\x96\x5d\xec\x92\x56\ +\xec\x95\x5c\xec\x9c\x69\xec\x98\x62\xee\x9d\x69\xec\x9b\x66\xec\ +\x94\x59\xeb\x9e\x69\xe8\xac\x86\xe6\xb4\x97\xe6\xb1\x94\xe8\xb1\ +\x90\xe5\xb6\x9a\xe4\xbc\xa3\xe5\xb3\x97\xe6\xac\x8c\xe7\xb0\x90\ +\xe6\xab\x88\xe6\xa8\x83\xe5\xa9\x87\xe3\xbb\xa0\xe0\xc7\xb3\xe0\ +\xcb\xb7\xdf\xc9\xb8\xe0\xc9\xb7\xe2\xc6\xb0\xe3\xbc\xa4\xe7\xa8\ +\x83\xe7\xaa\x85\xe7\xad\x8d\xe8\xaa\x84\xe6\xad\x8c\xe5\xa5\x83\ +\xe4\x9e\x79\xe5\x92\x5f\xe8\x8d\x55\xea\x88\x48\xea\x88\x47\xea\ +\x89\x46\xeb\x8a\x48\xeb\x89\x49\xec\x8a\x49\xec\x8b\x48\xe4\x89\ +\x4e\xe4\x87\x4c\xe4\x87\x48\xd9\x86\x53\xb5\x6f\x4b\xcc\x7a\x49\ +\xc8\x89\x5e\x55\x53\x59\x4c\x4b\x45\x71\x61\x4e\x6c\x5e\x52\x45\ +\x4b\x4c\x50\x4a\x4b\x6b\x5f\x5c\x77\x6e\x65\x35\x3f\x41\x68\x52\ +\x40\x4f\x43\x33\x3a\x4c\x57\x3d\x4b\x54\x7d\x6c\x5e\x72\x66\x65\ +\x33\x39\x3d\x4b\x43\x38\x00\x00\x00\xf2\x97\x58\xf2\x97\x59\xf0\ +\x98\x58\xf2\x96\x59\xf0\x97\x5a\xf1\x97\x59\xf0\x97\x59\xf0\x97\ +\x59\xf1\x96\x59\xf1\x96\x59\xf1\x96\x58\xf1\x96\x58\xf1\x96\x56\ +\xf1\x95\x58\xf1\x96\x55\xf1\x95\x56\xf1\x94\x56\xf0\x95\x55\xf0\ +\x95\x56\xf1\x96\x55\xf0\x95\x55\xf0\x95\x55\xef\x95\x57\xf0\x95\ +\x55\xf1\x94\x55\xef\x95\x57\xef\x95\x56\xef\x95\x56\xef\x95\x56\ +\xf0\x94\x55\xef\x94\x55\xf1\x94\x56\xf0\x94\x53\xee\x93\x55\xef\ +\x94\x53\xf0\x94\x54\xf0\x93\x53\xf0\x94\x54\xf0\x94\x53\xf0\x94\ +\x53\xef\x93\x55\xf0\x93\x53\xef\x92\x55\xef\x93\x53\xef\x92\x52\ +\xf0\x92\x52\xef\x92\x52\xef\x92\x53\xef\x91\x52\xef\x92\x51\xee\ +\x92\x51\xee\x92\x53\xf0\x92\x51\xf1\x92\x52\xf0\x91\x51\xee\x91\ +\x53\xee\x93\x52\xee\x91\x51\xee\x92\x52\xee\x90\x52\xee\x91\x52\ +\xef\x91\x51\xee\x91\x53\xf1\x92\x4f\xf0\x91\x52\xee\x91\x51\xee\ +\x92\x51\xed\x91\x51\xef\x92\x50\xef\x91\x53\xef\x91\x52\xee\x92\ +\x51\xee\x92\x51\xee\x91\x50\xef\x91\x51\xf0\x90\x4f\xef\x91\x51\ +\xee\x90\x50\xef\x90\x4f\xee\x8f\x4e\xf0\x8e\x4f\xf0\x8f\x4e\xf0\ +\x8e\x50\xef\x90\x50\xef\x8f\x51\xee\x90\x4f\xef\x8f\x4f\xef\x8e\ +\x4e\xef\x8e\x4e\xef\x8e\x4d\xef\x8d\x4e\xed\x91\x52\xeb\x96\x5f\ +\xeb\x96\x5c\xec\x94\x59\xeb\x91\x55\xec\x90\x51\xed\x90\x54\xeb\ +\x94\x5b\xec\x95\x5c\xed\xa0\x6e\xec\xa0\x71\xeb\x97\x5f\xea\x98\ +\x63\xe9\x9e\x6d\xe8\xaa\x84\xe7\xac\x8c\xe8\xac\x89\xe6\xb4\x96\ +\xe4\xbf\xa7\xe4\xbb\xa2\xe6\xae\x90\xe6\xb0\x93\xe6\xb0\x92\xe5\ +\xb7\x98\xe6\xb5\x93\xe3\xbe\xa2\xe0\xcd\xb9\xe1\xd1\xc4\xdf\xcd\ +\xbc\xe1\xd1\xc2\xe1\xd2\xc5\xe0\xc9\xb8\xe4\xb5\x99\xe7\xa9\x86\ +\xe6\xa4\x7e\xe6\x9e\x72\xe3\x9b\x71\xe7\x90\x5b\xe7\x90\x59\xea\ +\x8c\x50\xeb\x8d\x4e\xeb\x8b\x4d\xea\x89\x47\xea\x88\x47\xeb\x8a\ +\x47\xeb\x8a\x47\xeb\x8a\x49\xeb\x8b\x49\xea\x8b\x4c\xe3\x84\x45\ +\xec\x8d\x4c\xe8\x8c\x51\xe6\x8d\x52\xc9\x7d\x4f\x6b\x5f\x52\x2b\ +\x36\x33\x96\x6f\x4f\x94\x77\x65\x6b\x5d\x4f\x60\x60\x58\x58\x53\ +\x54\x5e\x5e\x59\x53\x57\x57\x2b\x32\x33\x68\x55\x45\x53\x43\x33\ +\x25\x2e\x30\x36\x41\x46\x48\x4e\x50\x48\x49\x4b\x57\x4c\x44\x39\ +\x3a\x37\x00\x00\x00\xf1\x98\x59\xf1\x97\x59\xef\x97\x59\xef\x97\ +\x57\xf0\x97\x57\xf0\x97\x59\xf0\x97\x59\xf1\x96\x5a\xf2\x97\x59\ +\xf1\x97\x59\xef\x96\x58\xf0\x95\x58\xf0\x96\x57\xf1\x96\x58\xf0\ +\x96\x57\xf0\x96\x57\xf0\x96\x57\xf0\x95\x56\xf0\x95\x55\xf1\x94\ +\x55\xef\x95\x55\xf0\x95\x56\xee\x94\x56\xef\x95\x57\xef\x95\x55\ +\xef\x94\x55\xef\x94\x56\xef\x95\x55\xee\x95\x55\xf1\x94\x55\xef\ +\x93\x55\xf0\x94\x54\xf0\x93\x53\xee\x93\x54\xee\x94\x55\xef\x93\ +\x56\xef\x94\x53\xef\x94\x57\xef\x94\x56\xef\x94\x55\xee\x94\x55\ +\xee\x93\x53\xee\x93\x54\xef\x93\x53\xef\x92\x53\xed\x93\x52\xee\ +\x91\x52\xef\x92\x53\xee\x92\x51\xee\x93\x51\xee\x92\x52\xee\x93\ +\x51\xf1\x93\x50\xef\x91\x51\xf0\x92\x51\xef\x92\x51\xee\x92\x52\ +\xee\x92\x54\xee\x92\x53\xef\x91\x52\xef\x92\x51\xef\x92\x51\xef\ +\x92\x52\xf0\x91\x51\xf0\x91\x51\xee\x90\x52\xef\x91\x51\xee\x91\ +\x51\xf0\x92\x52\xef\x92\x51\xee\x92\x51\xed\x92\x53\xee\x92\x51\ +\xef\x91\x51\xef\x90\x50\xee\x91\x4f\xef\x90\x4f\xee\x90\x4f\xef\ +\x8f\x4f\xef\x8f\x4f\xee\x8f\x50\xee\x8f\x50\xf0\x8e\x4f\xef\x8f\ +\x50\xf0\x8e\x51\xee\x8f\x50\xef\x8e\x4f\xee\x8d\x4e\xee\x8d\x4d\ +\xee\x8d\x4d\xee\x8e\x4d\xed\x8d\x4d\xed\x8e\x4f\xed\x90\x52\xee\ +\x8f\x4f\xee\x8f\x4d\xed\x8d\x4c\xee\x8e\x4e\xed\x90\x52\xed\x95\ +\x5a\xec\x9e\x6f\xe9\x9a\x6c\xea\x8f\x55\xec\x93\x5a\xeb\x9d\x67\ +\xeb\xa6\x7b\xea\xa9\x84\xe6\x9c\x70\xe4\x9d\x72\xe4\xb2\x94\xe4\ +\xba\xa5\xe7\xae\x8c\xe7\xac\x88\xe5\xb1\x94\xe2\xbc\xa4\xe2\xc3\ +\xae\xe2\xce\xb9\xe3\xd5\xc7\xe1\xd6\xca\xe2\xd5\xc9\xe2\xd5\xca\ +\xe1\xd4\xcb\xe0\xd0\xc5\xe0\xc4\xb1\xe5\xb8\x9f\xe6\xa7\x82\xe7\ +\x98\x67\xe7\x8f\x57\xe8\x8c\x50\xe9\x90\x58\xe9\x8f\x56\xea\x8e\ +\x52\xea\x8b\x4f\xec\x8a\x4a\xeb\x89\x4a\xeb\x89\x49\xea\x8a\x47\ +\xeb\x8a\x49\xec\x8a\x49\xe9\x89\x4a\xeb\x8a\x48\xe5\x8b\x51\xe3\ +\x89\x54\xd4\x82\x4e\xb8\x7a\x51\x71\x5b\x4c\x51\x4e\x3f\xb7\x7c\ +\x52\x54\x52\x50\x4f\x55\x51\x49\x50\x51\x45\x43\x3a\x3f\x47\x46\ +\x48\x4b\x4c\x29\x32\x32\x22\x26\x23\x27\x32\x2e\x48\x3c\x2c\x32\ +\x3f\x46\x3e\x47\x49\x41\x4a\x4b\x3f\x3f\x3c\x30\x38\x32\x00\x00\ +\x00\xf1\x97\x56\xf2\x97\x58\xf0\x96\x57\xf0\x97\x57\xf1\x97\x57\ +\xf0\x96\x58\xf0\x96\x58\xf2\x98\x58\xf1\x96\x59\xef\x95\x59\xf0\ +\x96\x59\xf0\x96\x59\xf0\x95\x58\xf0\x95\x57\xf1\x95\x56\xf0\x95\ +\x58\xf1\x94\x55\xf0\x94\x55\xef\x95\x55\xf0\x94\x54\xef\x94\x56\ +\xf0\x93\x54\xf1\x94\x55\xf1\x94\x55\xf0\x95\x54\xf0\x93\x54\xee\ +\x94\x57\xee\x93\x55\xee\x94\x55\xf0\x94\x53\xef\x94\x53\xee\x94\ +\x54\xee\x93\x53\xef\x93\x53\xf0\x94\x54\xf0\x94\x53\xf0\x95\x55\ +\xf0\x96\x56\xf0\x94\x55\xf1\x94\x54\xee\x94\x54\xee\x94\x53\xef\ +\x93\x52\xee\x93\x52\xef\x92\x52\xed\x92\x52\xef\x92\x51\xee\x92\ +\x53\xf0\x92\x51\xef\x92\x51\xef\x92\x51\xee\x91\x51\xee\x92\x52\ +\xef\x91\x52\xee\x92\x51\xee\x91\x52\xee\x91\x50\xef\x91\x52\xef\ +\x90\x53\xed\x91\x52\xf0\x90\x52\xee\x91\x4f\xed\x92\x51\xef\x91\ +\x50\xef\x90\x50\xef\x91\x51\xee\x90\x51\xef\x90\x50\xf0\x91\x51\ +\xee\x92\x50\xed\x92\x52\xed\x92\x50\xef\x90\x51\xed\x90\x53\xef\ +\x91\x4f\xef\x90\x50\xee\x90\x51\xee\x8f\x51\xef\x8f\x50\xee\x8e\ +\x4f\xee\x8e\x4f\xef\x8e\x4f\xef\x8e\x4f\xef\x8d\x4e\xf0\x8e\x50\ +\xee\x8e\x4f\xef\x8f\x4d\xef\x8f\x4e\xee\x8d\x4d\xee\x8e\x4c\xed\ +\x8d\x4c\xef\x8e\x4d\xee\x8d\x4d\xed\x8c\x4d\xee\x8d\x4c\xed\x8d\ +\x4b\xee\x8d\x4d\xef\x8e\x4e\xee\x8f\x4e\xeb\x90\x54\xea\x8f\x54\ +\xeb\x8c\x50\xed\x8c\x4c\xee\x90\x51\xec\x9d\x68\xe9\xa4\x7b\xe5\ +\x9c\x71\xe8\x8e\x58\xeb\x8a\x4d\xe7\x94\x61\xe5\xa2\x7d\xe7\xad\ +\x8b\xe8\xb2\x90\xe6\xb2\x93\xe5\xbd\xa2\xe1\xc7\xb0\xe1\xd2\xc4\ +\xe3\xd6\xce\xe4\xd7\xcf\xe5\xd9\xd0\xe3\xd8\xce\xe0\xd2\xc6\xe0\ +\xd1\xc6\xde\xca\xbb\xe1\xbe\xa9\xe4\xab\x8e\xe6\x9d\x71\xe8\x92\ +\x58\xe9\x93\x59\xe8\x8c\x55\xe9\x8b\x50\xeb\x89\x4b\xeb\x8b\x4e\ +\xea\x8b\x4a\xea\x8a\x4b\xea\x89\x47\xeb\x8a\x48\xec\x8b\x48\xec\ +\x8a\x4a\xeb\x8b\x49\xed\x8d\x4a\xdd\x87\x50\xe8\x8b\x54\xd7\x88\ +\x5a\x7a\x5c\x4b\xa9\x6a\x42\x67\x5f\x57\x77\x5e\x52\x92\x73\x5c\ +\x57\x58\x51\x33\x45\x48\x2f\x3a\x3b\x3f\x4c\x4d\x29\x36\x40\x63\ +\x4c\x39\xb9\x7d\x57\x81\x5c\x3a\xa6\x7f\x6a\x63\x5a\x59\x58\x4b\ +\x41\x70\x6a\x63\x2f\x37\x37\x3e\x3b\x30\x00\x00\x00\xf1\x97\x57\ +\xef\x97\x57\xf2\x96\x59\xf1\x97\x58\xef\x96\x58\xf0\x95\x59\xf1\ +\x95\x59\xf0\x95\x59\xf1\x96\x57\xf1\x96\x58\xf0\x96\x57\xf0\x95\ +\x58\xef\x95\x57\xf0\x96\x55\xf1\x94\x56\xf0\x95\x55\xef\x94\x56\ +\xf0\x94\x54\xee\x93\x55\xf0\x93\x52\xef\x93\x53\xef\x93\x54\xee\ +\x93\x53\xee\x94\x55\xed\x93\x53\xef\x94\x52\xee\x94\x52\xef\x93\ +\x53\xf0\x93\x53\xee\x93\x51\xf0\x94\x54\xf0\x93\x56\xef\x93\x55\ +\xef\x94\x56\xee\x94\x57\xf0\x99\x5d\xf0\x9c\x62\xef\x99\x5c\xef\ +\x95\x55\xee\x94\x57\xee\x94\x52\xee\x92\x54\xed\x92\x53\xee\x92\ +\x52\xf1\x91\x51\xee\x92\x51\xef\x91\x51\xee\x92\x54\xef\x91\x51\ +\xee\x91\x53\xee\x92\x53\xef\x91\x52\xec\x91\x52\xed\x92\x53\xee\ +\x92\x53\xee\x92\x50\xee\x91\x51\xee\x91\x52\xee\x91\x53\xee\x91\ +\x53\xee\x90\x51\xed\x91\x51\xee\x91\x51\xee\x90\x51\xee\x91\x53\ +\xee\x91\x53\xee\x90\x51\xef\x90\x50\xed\x91\x51\xed\x90\x51\xed\ +\x90\x54\xee\x91\x52\xee\x91\x50\xef\x91\x50\xee\x8f\x4f\xef\x8f\ +\x51\xec\x90\x51\xf0\x8e\x51\xee\x8e\x50\xee\x8f\x50\xef\x8e\x4f\ +\xef\x8f\x4f\xee\x8e\x4e\xec\x8f\x4e\xee\x8d\x50\xec\x8e\x4e\xee\ +\x8d\x4e\xef\x8d\x4f\xef\x8d\x50\xef\x8d\x4f\xef\x8e\x4d\xed\x8c\ +\x4d\xee\x8d\x4d\xee\x8d\x4d\xed\x8d\x4d\xee\x8c\x4d\xed\x8d\x4d\ +\xec\x8d\x50\xed\x8b\x50\xed\x8c\x4e\xed\x8c\x4c\xed\x8d\x4c\xec\ +\x8b\x4c\xec\x8d\x4c\xea\x92\x59\xe7\x96\x62\xea\x8c\x51\xec\x89\ +\x49\xec\x8a\x4a\xeb\x8a\x4b\xea\x95\x5f\xe6\x9c\x70\xe5\xa7\x85\ +\xe4\xb4\x96\xe2\xbb\xa3\xe0\xbf\xad\xdf\xc5\xb5\xe0\xd1\xc6\xe3\ +\xd6\xce\xe4\xd7\xd0\xe4\xd7\xd0\xe0\xd1\xc6\xde\xc8\xb8\xdf\xbf\ +\xae\xe3\xba\xa3\xe7\xae\x90\xe9\xa6\x7f\xea\x9c\x6c\xe8\x98\x65\ +\xe8\x8e\x55\xea\x8c\x4e\xea\x89\x4b\xeb\x8a\x48\xea\x8b\x4d\xeb\ +\x8a\x4a\xec\x8b\x49\xeb\x8a\x4a\xea\x8b\x48\xeb\x8a\x4a\xec\x8b\ +\x4b\xeb\x8c\x4c\xe2\x88\x50\xde\x86\x4e\xba\x7c\x58\xba\x71\x45\ +\xdc\x8e\x59\x8b\x68\x57\x75\x60\x4c\x93\x69\x4d\x85\x66\x54\x36\ +\x41\x3d\x43\x36\x21\x70\x5d\x4e\x87\x6c\x51\x77\x5e\x50\xbd\x7b\ +\x57\x99\x7d\x73\x72\x59\x4f\x79\x64\x56\x31\x42\x4a\x47\x4e\x52\ +\x40\x4b\x4c\x39\x45\x43\x00\x00\x00\xf1\x96\x5a\xf1\x97\x58\xf0\ +\x95\x59\xf1\x96\x59\xf1\x96\x58\xf1\x97\x59\xf1\x96\x58\xf1\x95\ +\x58\xf0\x95\x58\xef\x95\x56\xef\x95\x56\xf0\x96\x57\xef\x95\x57\ +\xef\x95\x55\xef\x94\x56\xee\x94\x55\xf0\x92\x55\xef\x93\x56\xee\ +\x94\x54\xef\x92\x55\xee\x93\x54\xef\x92\x54\xee\x93\x55\xef\x94\ +\x54\xee\x92\x55\xee\x93\x53\xef\x93\x53\xed\x93\x55\xee\x92\x54\ +\xee\x93\x54\xed\x93\x55\xed\x93\x55\xef\x94\x56\xef\x96\x59\xf1\ +\xa0\x68\xef\xa0\x6a\xef\x9b\x66\xee\x99\x5f\xee\x94\x54\xec\x93\ +\x55\xed\x94\x54\xee\x94\x53\xee\x92\x53\xee\x92\x52\xee\x92\x53\ +\xee\x92\x52\xef\x91\x52\xee\x91\x51\xef\x91\x51\xee\x92\x51\xee\ +\x92\x51\xed\x91\x51\xee\x91\x52\xec\x92\x52\xed\x91\x53\xef\x91\ +\x51\xee\x91\x53\xef\x92\x51\xed\x91\x52\xef\x90\x51\xef\x91\x50\ +\xed\x92\x51\xef\x91\x51\xee\x91\x52\xed\x90\x52\xed\x90\x53\xee\ +\x91\x53\xef\x90\x52\xee\x91\x50\xef\x90\x52\xee\x90\x53\xee\x90\ +\x52\xee\x91\x51\xef\x8f\x4f\xef\x8e\x50\xef\x8e\x50\xee\x90\x4f\ +\xf0\x8e\x51\xef\x8f\x4f\xee\x8f\x4f\xed\x8f\x50\xed\x8e\x50\xef\ +\x8e\x4e\xef\x8d\x4f\xef\x8e\x4e\xee\x8d\x4d\xee\x8d\x4f\xee\x8e\ +\x4f\xee\x8d\x4e\xee\x8d\x4f\xee\x8d\x4d\xef\x8d\x4f\xef\x8e\x4e\ +\xee\x8d\x4e\xed\x8d\x4d\xee\x8d\x4d\xee\x8d\x4d\xee\x8d\x4d\xed\ +\x8c\x4d\xee\x8d\x4d\xed\x8d\x4b\xec\x8c\x4b\xed\x8c\x4c\xec\x8c\ +\x4c\xec\x8f\x50\xec\x8f\x53\xed\x8d\x4d\xec\x8b\x4c\xeb\x8a\x4a\ +\xea\x8b\x4b\xea\x90\x56\xe9\x95\x60\xea\x94\x5d\xe6\xa1\x77\xe0\ +\x98\x73\xe3\x9b\x71\xe2\xaf\x93\xe0\xbf\xad\xdf\xcb\xbd\xe0\xd2\ +\xc7\xe1\xd3\xca\xde\xce\xc2\xe0\xc5\xb2\xe2\xbf\xaa\xe3\xbd\xa6\ +\xe4\xb6\x9e\xe6\xaf\x8f\xe8\xa6\x7f\xe8\x9e\x74\xea\x99\x67\xe9\ +\x8d\x54\xe9\x89\x4d\xea\x88\x47\xea\x88\x46\xe9\x88\x49\xec\x8c\ +\x4d\xeb\x8c\x4d\xeb\x8a\x4a\xec\x8a\x4a\xe4\x88\x49\xdb\x81\x47\ +\xe4\x87\x49\xeb\x8f\x52\xcf\x83\x53\xcb\x82\x53\xaa\x7a\x5e\xb7\ +\x7c\x59\x9d\x76\x62\x4f\x4c\x4d\x58\x54\x4f\x6d\x50\x34\xdd\x96\ +\x65\xdb\x8d\x60\xd7\x95\x6c\x99\x77\x60\x6d\x65\x62\x71\x59\x4b\ +\x3d\x40\x3d\x31\x3a\x37\x33\x3f\x44\x48\x4f\x50\x54\x59\x5b\x42\ +\x49\x46\x00\x00\x00\xf0\x96\x58\xf0\x96\x58\xf1\x96\x59\xf0\x95\ +\x56\xf1\x96\x55\xf0\x96\x56\xf1\x96\x56\xf0\x95\x57\xf0\x95\x58\ +\xf0\x96\x56\xef\x94\x57\xef\x95\x55\xee\x94\x54\xee\x94\x55\xef\ +\x94\x54\xef\x93\x55\xee\x93\x55\xef\x93\x56\xee\x93\x53\xee\x92\ +\x53\xee\x93\x54\xef\x93\x52\xef\x93\x55\xed\x93\x54\xef\x92\x53\ +\xee\x92\x53\xee\x92\x54\xed\x93\x55\xee\x93\x54\xee\x92\x55\xed\ +\x92\x54\xee\x93\x56\xee\x94\x57\xef\x9b\x63\xee\xa5\x73\xf0\x9d\ +\x66\xee\x95\x5b\xee\x93\x56\xef\x93\x52\xee\x93\x53\xed\x93\x53\ +\xef\x93\x52\xef\x91\x51\xee\x91\x51\xee\x91\x51\xed\x91\x51\xef\ +\x92\x53\xee\x91\x51\xef\x91\x51\xef\x92\x50\xee\x92\x50\xed\x92\ +\x51\xee\x92\x52\xec\x91\x54\xee\x91\x51\xf0\x91\x50\xed\x91\x52\ +\xee\x92\x51\xed\x91\x54\xee\x90\x51\xee\x91\x51\xee\x91\x51\xef\ +\x91\x51\xed\x91\x51\xef\x90\x52\xed\x90\x52\xed\x91\x51\xec\x91\ +\x52\xee\x92\x51\xed\x91\x53\xef\x91\x51\xed\x91\x51\xee\x90\x51\ +\xee\x8f\x4f\xee\x8f\x4f\xef\x90\x50\xef\x90\x50\xf1\x90\x4f\xee\ +\x90\x4f\xee\x8f\x50\xef\x8e\x52\xef\x8f\x50\xed\x8e\x50\xed\x8d\ +\x50\xee\x8d\x4e\xef\x8d\x50\xed\x8e\x50\xee\x8e\x4e\xee\x8d\x4e\ +\xef\x8d\x4e\xef\x8e\x4d\xef\x8e\x4f\xef\x8d\x4f\xee\x8d\x4f\xee\ +\x8c\x4e\xef\x8e\x4e\xed\x8c\x4d\xed\x8c\x4c\xed\x8c\x4d\xed\x8d\ +\x4c\xed\x8c\x4c\xec\x8b\x4c\xed\x8c\x4b\xed\x8b\x4b\xec\x8c\x4d\ +\xec\x8c\x4d\xed\x8c\x4c\xeb\x8b\x4b\xed\x8d\x4c\xeb\x8b\x4c\xeb\ +\x8e\x50\xe9\x91\x57\xe9\x8e\x55\xe8\x8d\x54\xe8\x89\x4e\xe8\x8c\ +\x50\xe5\x97\x65\xe5\xa9\x86\xe1\xb3\x98\xe1\xbd\xa9\xdf\xc9\xba\ +\xdf\xc6\xb6\xe0\xbe\xaa\xe0\xbc\xa9\xe2\xba\xa7\xe2\xaf\x95\xe2\ +\xa5\x84\xe4\xa0\x78\xe7\x9a\x6d\xea\x9b\x6c\xe7\x92\x5e\xea\x89\ +\x4b\xea\x89\x49\xea\x89\x47\xea\x8a\x48\xeb\x8d\x51\xea\x90\x56\ +\xe9\x8a\x4a\xe9\x8a\x4a\xd7\x84\x51\xda\x84\x4e\xdd\x86\x4d\xc1\ +\x7f\x56\xbf\x7f\x57\xab\x75\x56\xbf\x7d\x54\xb8\x80\x5b\x44\x52\ +\x59\x4e\x48\x47\x5f\x57\x4a\x86\x65\x49\x93\x74\x63\x68\x53\x48\ +\x96\x76\x64\x62\x58\x51\x41\x4f\x55\x3b\x49\x49\x31\x3e\x42\x27\ +\x38\x37\x2a\x39\x3d\x4d\x4d\x4d\x5a\x5b\x5a\x35\x3e\x3a\x00\x00\ +\x00\xf0\x95\x58\xef\x95\x58\xf0\x95\x58\xf0\x95\x58\xf0\x95\x57\ +\xf0\x95\x56\xef\x95\x57\xf0\x95\x57\xf0\x94\x57\xf0\x95\x57\xef\ +\x94\x56\xef\x94\x56\xee\x94\x54\xef\x93\x55\xef\x93\x53\xed\x93\ +\x55\xee\x92\x53\xef\x92\x53\xef\x93\x52\xed\x93\x53\xef\x93\x52\ +\xee\x92\x52\xee\x92\x53\xee\x92\x54\xed\x93\x54\xed\x93\x54\xee\ +\x93\x53\xed\x92\x54\xec\x92\x55\xee\x92\x54\xee\x93\x52\xee\x94\ +\x57\xef\x97\x58\xee\x9f\x68\xef\xa6\x75\xef\x9c\x64\xee\x94\x56\ +\xee\x92\x52\xef\x93\x51\xed\x93\x52\xec\x91\x52\xee\x91\x52\xee\ +\x91\x51\xee\x91\x51\xee\x90\x52\xed\x90\x52\xef\x91\x53\xed\x91\ +\x51\xed\x91\x51\xed\x90\x51\xee\x91\x50\xf0\x92\x51\xed\x92\x53\ +\xee\x91\x52\xef\x91\x52\xee\x92\x51\xed\x92\x52\xec\x91\x52\xec\ +\x91\x53\xed\x90\x54\xed\x91\x53\xed\x91\x51\xee\x91\x53\xeb\x92\ +\x53\xee\x91\x53\xee\x91\x51\xee\x91\x52\xec\x92\x53\xec\x92\x53\ +\xed\x90\x53\xee\x90\x51\xee\x90\x51\xed\x90\x51\xed\x8f\x51\xee\ +\x90\x4f\xee\x90\x50\xef\x8f\x50\xee\x8f\x50\xef\x8f\x50\xee\x8e\ +\x52\xed\x8f\x52\xee\x8e\x50\xee\x8e\x51\xee\x8d\x4d\xee\x8d\x4e\ +\xf0\x8e\x52\xee\x8e\x4e\xee\x8d\x50\xed\x8e\x4f\xed\x8d\x4f\xee\ +\x8e\x4e\xee\x8d\x4e\xec\x8d\x4f\xee\x8d\x4e\xee\x8d\x4e\xee\x8c\ +\x4e\xec\x8c\x4c\xed\x8c\x4c\xed\x8d\x4c\xed\x8c\x4e\xed\x8c\x4c\ +\xed\x8c\x4c\xed\x8b\x4c\xec\x8c\x4b\xed\x8c\x4c\xed\x8c\x4c\xec\ +\x8c\x4b\xec\x8b\x4b\xeb\x90\x51\xeb\x8c\x50\xea\x8c\x51\xe9\x8a\ +\x4d\xea\x88\x49\xea\x88\x48\xea\x89\x49\xea\x86\x46\xe9\x8a\x4b\ +\xe6\x99\x6a\xe5\x9f\x76\xe5\xa8\x84\xe3\xbd\xa6\xe1\xc0\xad\xe1\ +\xb2\x99\xe1\xa4\x84\xe3\xa6\x88\xe3\x9f\x78\xe5\x94\x64\xe7\x9a\ +\x6a\xe9\x9a\x6a\xe9\x9a\x6a\xe7\x95\x64\xea\x93\x5b\xe9\x8e\x55\ +\xea\x8b\x4c\xec\x8d\x4e\xea\x8c\x53\xea\x8f\x54\xe9\x8d\x51\xe7\ +\x89\x4d\xe1\x87\x4e\xe2\x88\x4e\xd6\x84\x4d\xbc\x7d\x5b\xbe\x7c\ +\x58\xb5\x72\x4e\xef\x92\x54\x81\x67\x58\x4b\x4d\x4b\x9c\x6a\x45\ +\x87\x71\x5b\x55\x56\x4d\x52\x4f\x4d\x1e\x2a\x2f\x42\x46\x3f\x43\ +\x4e\x51\x3f\x4c\x50\x2e\x45\x48\x2c\x3b\x3c\x33\x45\x48\x2c\x3c\ +\x40\x33\x37\x38\x4c\x52\x50\x46\x52\x56\x00\x00\x00\xf0\x95\x56\ +\xef\x96\x56\xf0\x95\x56\xf0\x94\x55\xef\x94\x56\xf1\x95\x55\xef\ +\x94\x56\xef\x94\x56\xef\x95\x55\xef\x94\x57\xef\x94\x56\xee\x93\ +\x56\xee\x93\x55\xef\x94\x54\xee\x93\x53\xef\x92\x52\xee\x92\x52\ +\xef\x92\x52\xee\x93\x53\xef\x92\x53\xef\x92\x52\xee\x93\x54\xee\ +\x93\x53\xee\x93\x53\xee\x92\x53\xef\x93\x52\xef\x92\x53\xef\x92\ +\x53\xee\x91\x53\xec\x92\x53\xee\x93\x55\xed\x94\x57\xed\x98\x5e\ +\xed\x9e\x6c\xed\xa4\x77\xef\x99\x60\xee\x93\x53\xee\x92\x54\xef\ +\x91\x52\xee\x91\x51\xec\x92\x50\xef\x90\x51\xef\x90\x51\xee\x90\ +\x51\xee\x91\x50\xef\x91\x51\xee\x90\x52\xed\x91\x53\xee\x90\x51\ +\xee\x90\x51\xef\x90\x50\xef\x91\x50\xee\x91\x50\xed\x92\x53\xed\ +\x91\x53\xec\x92\x54\xec\x92\x54\xee\x91\x54\xed\x91\x52\xed\x91\ +\x55\xee\x91\x53\xed\x91\x53\xec\x91\x55\xec\x92\x51\xed\x91\x52\ +\xed\x91\x53\xec\x92\x53\xec\x92\x54\xec\x92\x53\xed\x91\x54\xee\ +\x91\x50\xee\x91\x51\xee\x90\x51\xee\x8f\x51\xef\x90\x50\xee\x91\ +\x52\xed\x90\x54\xed\x90\x53\xee\x8f\x52\xed\x8f\x51\xec\x8f\x51\ +\xec\x8e\x51\xed\x8e\x50\xee\x8e\x4e\xee\x8d\x51\xef\x8e\x50\xec\ +\x8d\x4e\xed\x8d\x51\xec\x8d\x50\xed\x8d\x4f\xee\x8d\x4e\xee\x8e\ +\x4e\xed\x8d\x4d\xee\x8e\x4c\xed\x8e\x4c\xee\x8c\x4e\xed\x8d\x4b\ +\xed\x8d\x4c\xed\x8d\x4c\xed\x8c\x4d\xed\x8d\x4b\xec\x8b\x4b\xec\ +\x8c\x4b\xec\x8c\x4b\xec\x8c\x4b\xec\x8c\x4c\xec\x8c\x4b\xec\x8b\ +\x4b\xeb\x8b\x4c\xec\x8b\x4b\xeb\x8b\x4a\xeb\x8a\x49\xeb\x8a\x48\ +\xeb\x89\x49\xeb\x88\x47\xe9\x87\x47\xea\x87\x48\xe7\x8b\x4f\xe7\ +\x92\x5d\xe8\xa2\x76\xe5\xb2\x96\xe2\xb6\x9f\xe3\xa9\x89\xe8\xa0\ +\x71\xe6\x98\x6b\xe5\x8f\x59\xe9\x9b\x6a\xeb\xa5\x78\xe8\x9f\x72\ +\xe7\x97\x64\xe8\x8c\x53\xe8\x8f\x56\xe8\x8e\x56\xea\x91\x56\xeb\ +\x97\x61\xeb\x95\x5f\xeb\x95\x5d\xeb\x95\x5f\xea\x8d\x50\xeb\x8b\ +\x4a\xe4\x88\x4b\xd1\x82\x55\xca\x7d\x50\xb2\x73\x51\xc7\x81\x55\ +\x80\x60\x50\x78\x56\x3e\xba\x7c\x54\xb5\x84\x63\x6e\x62\x56\x38\ +\x4d\x4c\x36\x44\x49\x3e\x4f\x53\x23\x39\x37\x35\x4a\x47\x37\x48\ +\x4c\x41\x52\x51\x3e\x49\x4a\x69\x5c\x4b\x69\x62\x56\x49\x54\x53\ +\x38\x43\x4a\x2f\x3b\x3d\x00\x00\x00\xef\x95\x57\xef\x96\x58\xf0\ +\x93\x54\xee\x95\x55\xee\x95\x57\xef\x94\x54\xef\x94\x55\xef\x95\ +\x57\xed\x93\x58\xee\x93\x55\xee\x94\x55\xee\x93\x52\xed\x92\x55\ +\xee\x93\x55\xed\x93\x51\xee\x92\x52\xee\x91\x53\xed\x92\x53\xec\ +\x92\x52\xed\x92\x53\xec\x91\x54\xed\x91\x55\xed\x92\x55\xec\x92\ +\x52\xec\x92\x55\xed\x92\x52\xee\x92\x51\xee\x91\x51\xee\x92\x52\ +\xec\x93\x53\xee\x91\x53\xed\x91\x55\xec\x92\x56\xed\x94\x58\xeb\ +\x96\x5f\xec\x94\x56\xec\x91\x53\xed\x91\x51\xed\x90\x52\xee\x91\ +\x52\xec\x91\x52\xef\x91\x50\xee\x91\x50\xef\x90\x51\xef\x91\x51\ +\xef\x90\x52\xee\x91\x51\xef\x90\x51\xef\x91\x51\xef\x91\x50\xee\ +\x90\x53\xed\x91\x53\xee\x91\x54\xed\x91\x54\xec\x92\x53\xee\x91\ +\x53\xef\x91\x54\xeb\x91\x54\xec\x91\x56\xeb\x92\x55\xec\x92\x55\ +\xec\x92\x55\xed\x93\x56\xec\x92\x54\xec\x93\x52\xed\x93\x55\xee\ +\x92\x55\xee\x92\x55\xed\x92\x55\xed\x91\x54\xed\x91\x51\xeb\x90\ +\x51\xeb\x90\x51\xed\x90\x52\xeb\x91\x51\xeb\x90\x52\xec\x90\x54\ +\xec\x91\x53\xea\x91\x54\xed\x90\x51\xec\x8f\x51\xeb\x8f\x53\xed\ +\x8f\x50\xed\x8d\x50\xeb\x8e\x52\xec\x8e\x50\xed\x8d\x50\xec\x8d\ +\x51\xed\x8c\x50\xeb\x8c\x51\xee\x8d\x4f\xed\x8c\x4f\xee\x8c\x4e\ +\xee\x8b\x4e\xee\x8c\x4d\xed\x8c\x4e\xed\x8c\x4d\xed\x8d\x4c\xec\ +\x8d\x4c\xed\x8c\x4d\xed\x8c\x4c\xec\x8b\x4b\xec\x8b\x4c\xeb\x8b\ +\x4b\xeb\x8b\x4a\xec\x8b\x4a\xec\x8b\x49\xec\x8b\x4a\xea\x89\x4a\ +\xeb\x8a\x4a\xeb\x89\x4a\xea\x8a\x49\xeb\x8a\x49\xeb\x89\x49\xeb\ +\x8a\x49\xeb\x8a\x4a\xea\x8c\x4c\xea\x8e\x4f\xec\x97\x60\xe7\xa5\ +\x7b\xe6\xa5\x7c\xe7\xad\x8c\xe9\xac\x88\xe8\xa9\x89\xe6\x9b\x70\ +\xe8\x8e\x53\xeb\x9c\x69\xeb\xad\x88\xea\xab\x86\xe9\x9b\x6b\xe9\ +\x8d\x53\xe8\x8c\x53\xe8\x88\x48\xe9\x8e\x55\xe7\x90\x5c\xe8\x91\ +\x5b\xeb\x9a\x66\xe9\x99\x69\xe9\x8f\x57\xec\x8b\x49\xd3\x84\x51\ +\xdc\x86\x53\xcc\x82\x56\xb9\x77\x53\xbd\x79\x51\xa7\x65\x39\xb7\ +\x76\x47\xd9\x8c\x5f\xb3\x7d\x60\x76\x61\x59\x50\x50\x4e\x30\x40\ +\x45\x38\x4a\x4c\x41\x50\x4e\x4d\x57\x50\x85\x6c\x56\x8e\x78\x64\ +\x88\x6e\x60\xb5\x7c\x5c\x99\x78\x69\x4d\x53\x58\x40\x48\x4f\x34\ +\x3c\x3b\x00\x00\x00\xf0\x96\x57\xee\x95\x55\xf0\x94\x53\xf0\x93\ +\x55\xee\x93\x56\xed\x93\x57\xed\x92\x56\xef\x93\x56\xed\x94\x56\ +\xee\x94\x55\xed\x93\x53\xee\x92\x52\xef\x91\x51\xed\x91\x54\xed\ +\x91\x54\xee\x91\x54\xed\x91\x54\xee\x91\x52\xef\x91\x52\xed\x91\ +\x52\xed\x91\x53\xed\x91\x52\xed\x92\x52\xee\x92\x53\xf0\x91\x50\ +\xed\x91\x54\xed\x91\x52\xed\x91\x53\xed\x91\x51\xee\x91\x50\xeb\ +\x91\x53\xec\x91\x53\xed\x91\x51\xee\x91\x52\xed\x93\x54\xed\x91\ +\x53\xec\x91\x51\xee\x90\x52\xee\x90\x51\xee\x90\x50\xed\x91\x51\ +\xec\x90\x51\xef\x8f\x51\xef\x90\x4f\xed\x90\x50\xee\x90\x51\xec\ +\x90\x52\xef\x90\x50\xee\x90\x50\xed\x90\x51\xef\x8f\x52\xee\x8f\ +\x51\xec\x92\x53\xec\x91\x52\xec\x92\x55\xed\x93\x55\xec\x92\x55\ +\xed\x93\x54\xeb\x93\x56\xec\x93\x55\xec\x92\x55\xec\x91\x55\xeb\ +\x93\x56\xec\x93\x55\xee\x96\x5b\xee\x98\x5e\xeb\x93\x57\xeb\x92\ +\x55\xea\x92\x55\xec\x91\x51\xeb\x90\x51\xec\x91\x53\xec\x90\x51\ +\xec\x90\x52\xec\x90\x50\xeb\x92\x53\xeb\x91\x55\xeb\x92\x56\xec\ +\x91\x53\xed\x90\x53\xec\x90\x4f\xed\x8f\x53\xed\x8f\x50\xed\x8d\ +\x50\xeb\x8e\x50\xed\x8e\x50\xec\x8d\x51\xec\x8e\x51\xec\x8e\x51\ +\xec\x8c\x4f\xee\x8c\x50\xec\x8c\x4c\xeb\x8c\x4c\xed\x8c\x4c\xec\ +\x8b\x4d\xec\x8b\x4c\xec\x8d\x4c\xec\x8b\x4d\xec\x8a\x4d\xec\x8b\ +\x4c\xec\x8c\x4b\xec\x8c\x4c\xeb\x8b\x4a\xec\x8b\x4b\xec\x8b\x4b\ +\xeb\x8a\x4b\xea\x8a\x4b\xeb\x8a\x49\xeb\x8a\x49\xeb\x8a\x49\xeb\ +\x8b\x4a\xec\x8b\x4b\xea\x89\x49\xec\x8b\x4b\xeb\x8a\x4c\xea\x8b\ +\x4d\xea\x90\x54\xeb\x93\x59\xea\x9f\x72\xe7\xa2\x78\xe7\xa6\x7d\ +\xe8\xad\x8d\xe4\xa8\x87\xe1\x9c\x77\xe7\x91\x5d\xea\x98\x62\xeb\ +\xa8\x7e\xe7\xaa\x87\xe7\xa7\x83\xe8\xa2\x7a\xe9\x93\x5c\xe8\x8a\ +\x4e\xe9\x86\x45\xe8\x89\x48\xe8\x87\x45\xe9\x8a\x4c\xeb\x96\x60\ +\xeb\xa0\x74\xeb\x9c\x6c\xec\x92\x59\xd8\x87\x56\xd5\x86\x54\xcf\ +\x82\x57\xc1\x7e\x56\xd9\x88\x54\xc7\x7c\x4c\xeb\x8f\x51\xd4\x8c\ +\x60\x9f\x77\x61\x5a\x5a\x59\x29\x33\x36\x5c\x4d\x3a\x98\x76\x5d\ +\x77\x71\x68\x61\x67\x66\x8b\x76\x6c\xa1\x82\x6f\x59\x5f\x6a\x5d\ +\x54\x4f\x7b\x66\x58\x64\x53\x45\x63\x59\x4c\x3d\x44\x45\x00\x00\ +\x00\xef\x94\x56\xef\x95\x55\xed\x94\x54\xee\x93\x53\xed\x93\x55\ +\xed\x93\x56\xef\x93\x53\xee\x94\x55\xed\x92\x54\xed\x93\x54\xed\ +\x92\x53\xee\x91\x53\xee\x91\x52\xf0\x91\x51\xee\x92\x52\xed\x92\ +\x53\xed\x91\x53\xee\x91\x52\xee\x90\x51\xec\x92\x51\xef\x90\x51\ +\xed\x91\x52\xed\x91\x51\xec\x91\x53\xef\x91\x51\xef\x91\x51\xee\ +\x90\x51\xef\x90\x52\xee\x90\x52\xee\x91\x51\xed\x91\x51\xee\x91\ +\x52\xee\x91\x51\xee\x91\x51\xed\x91\x53\xed\x92\x50\xee\x8f\x52\ +\xee\x90\x50\xed\x90\x51\xed\x90\x51\xee\x90\x50\xec\x90\x50\xef\ +\x8e\x50\xee\x8f\x51\xee\x90\x52\xee\x8f\x50\xef\x91\x51\xee\x90\ +\x50\xed\x90\x50\xec\x91\x51\xee\x90\x52\xee\x90\x51\xea\x92\x53\ +\xed\x90\x54\xec\x91\x53\xed\x91\x52\xec\x92\x56\xeb\x93\x55\xeb\ +\x91\x56\xed\x92\x53\xec\x92\x54\xec\x92\x54\xeb\x93\x57\xec\x96\ +\x5a\xec\x9c\x65\xec\x9e\x6c\xec\x99\x61\xed\x96\x5b\xec\x93\x58\ +\xec\x93\x57\xec\x93\x56\xec\x91\x54\xeb\x91\x52\xeb\x91\x53\xec\ +\x93\x54\xec\x95\x5b\xec\x93\x56\xeb\x91\x54\xeb\x91\x54\xec\x91\ +\x52\xeb\x91\x55\xec\x91\x55\xee\x8e\x52\xed\x8e\x51\xec\x8e\x50\ +\xec\x8f\x51\xec\x8d\x51\xef\x8e\x50\xed\x8d\x50\xed\x8d\x4f\xee\ +\x8c\x50\xec\x8d\x4d\xee\x8c\x4d\xed\x8b\x4e\xed\x8b\x4e\xec\x8c\ +\x4c\xed\x8d\x4b\xed\x8c\x4d\xec\x8b\x4c\xeb\x8b\x4b\xec\x8c\x4b\ +\xeb\x8b\x4c\xeb\x8c\x4b\xec\x8b\x4b\xec\x8b\x4b\xec\x8a\x4a\xeb\ +\x89\x49\xeb\x8b\x48\xec\x8a\x49\xeb\x8b\x49\xea\x8a\x48\xea\x8a\ +\x4a\xea\x8a\x48\xea\x8a\x4a\xea\x8a\x4a\xeb\x8c\x4d\xea\x90\x59\ +\xe7\x90\x59\xe8\x95\x62\xe8\x99\x67\xe7\xa0\x72\xe6\xa3\x7e\xe5\ +\xa1\x77\xe8\x9c\x6d\xe9\x9a\x68\xe9\x9c\x6b\xe8\xa2\x78\xe8\xa4\ +\x7c\xe9\xa8\x80\xe8\xa6\x7f\xe6\x92\x61\xe9\x8a\x4e\xe9\x89\x49\ +\xe9\x8a\x4a\xe9\x89\x4a\xe9\x8b\x4b\xe9\x91\x5b\xe7\x96\x65\xe7\ +\x94\x65\xe8\x8f\x5b\xe6\x8c\x58\xde\x88\x53\xd1\x82\x54\xbe\x7a\ +\x53\xd2\x87\x59\xcc\x7b\x49\xdf\x8b\x53\x9f\x72\x5a\x6e\x62\x5a\ +\x3b\x4d\x56\x52\x4f\x49\xaa\x72\x52\xd1\x8e\x64\x57\x5a\x59\x52\ +\x5b\x60\x56\x5e\x64\x5d\x63\x62\x50\x58\x63\x63\x5c\x56\x6b\x62\ +\x5c\x4f\x4e\x4b\x5a\x55\x51\x63\x5a\x50\x00\x00\x00\xee\x94\x55\ +\xee\x94\x56\xed\x93\x56\xed\x94\x54\xed\x93\x54\xed\x92\x53\xee\ +\x92\x53\xed\x93\x53\xec\x92\x55\xed\x92\x53\xef\x91\x52\xef\x90\ +\x53\xee\x91\x52\xef\x92\x52\xee\x8f\x53\xee\x91\x52\xee\x91\x52\ +\xed\x92\x52\xec\x91\x52\xed\x90\x51\xef\x90\x51\xed\x91\x51\xee\ +\x91\x50\xed\x91\x53\xed\x90\x51\xee\x90\x51\xee\x91\x52\xed\x90\ +\x53\xec\x90\x51\xee\x91\x50\xed\x91\x51\xec\x90\x52\xee\x91\x50\ +\xed\x90\x50\xee\x90\x50\xed\x91\x51\xee\x91\x51\xed\x90\x51\xed\ +\x8f\x51\xee\x90\x51\xef\x8e\x50\xef\x8f\x51\xed\x8f\x52\xee\x8f\ +\x51\xed\x90\x50\xee\x90\x51\xed\x91\x52\xee\x90\x50\xef\x90\x4f\ +\xed\x90\x50\xed\x91\x53\xed\x91\x53\xec\x91\x55\xed\x91\x53\xec\ +\x91\x52\xeb\x92\x54\xec\x92\x54\xeb\x92\x54\xeb\x92\x54\xec\x92\ +\x54\xec\x91\x55\xeb\x91\x55\xed\x93\x57\xec\x96\x5c\xeb\x97\x61\ +\xeb\x99\x64\xec\x9c\x68\xec\x9b\x62\xeb\x96\x5c\xec\x97\x60\xed\ +\x9b\x67\xec\x97\x5d\xec\x94\x59\xec\x96\x5b\xed\x97\x5f\xec\x9a\ +\x65\xec\x98\x5f\xec\x93\x56\xeb\x91\x55\xea\x90\x53\xeb\x91\x55\ +\xec\x91\x55\xec\x8e\x52\xeb\x90\x53\xeb\x8f\x52\xeb\x8f\x50\xec\ +\x8d\x4f\xed\x8d\x50\xed\x8d\x50\xee\x8d\x50\xee\x8b\x4f\xea\x8c\ +\x50\xeb\x8b\x4e\xec\x8b\x4f\xed\x8b\x4d\xed\x8c\x4c\xed\x8b\x4d\ +\xed\x8b\x4d\xeb\x8a\x4d\xeb\x8a\x4d\xec\x8b\x4a\xeb\x8a\x4a\xec\ +\x8a\x4c\xec\x8a\x4b\xec\x8a\x4b\xeb\x8a\x4a\xeb\x8a\x49\xeb\x8a\ +\x48\xec\x8a\x49\xeb\x89\x4a\xea\x89\x48\xeb\x89\x47\xe9\x89\x48\ +\xea\x89\x47\xea\x8a\x49\xea\x8b\x4e\xe9\x89\x4b\xea\x89\x4c\xe9\ +\x8f\x57\xe6\x92\x5e\xe6\x8f\x5a\xe6\x8f\x5c\xe6\x91\x5d\xe6\x95\ +\x65\xe7\x98\x6a\xe8\x98\x67\xe8\x9f\x71\xe7\x9d\x71\xe6\x9d\x71\ +\xe5\x97\x6a\xe7\x8a\x52\xe9\x8b\x51\xe9\x8b\x52\xe9\x8c\x51\xe9\ +\x8b\x4e\xe8\x86\x45\xe8\x87\x48\xe7\x88\x4b\xe8\x8a\x4f\xe8\x8c\ +\x51\xea\x8c\x50\xdc\x88\x54\xde\x89\x57\xc3\x7d\x56\xba\x78\x52\ +\xcd\x7a\x48\xc9\x7d\x51\x7d\x6b\x5e\x41\x4c\x50\x64\x53\x45\x9e\ +\x6c\x4f\x9f\x70\x56\x98\x78\x68\x64\x60\x5d\x8e\x79\x68\x77\x68\ +\x5d\x43\x4b\x4a\x3c\x4a\x4c\x42\x56\x58\x45\x4b\x4c\x6b\x5a\x4e\ +\x7e\x69\x58\x61\x5b\x53\x00\x00\x00\xee\x93\x53\xee\x93\x53\xee\ +\x92\x54\xec\x93\x56\xed\x93\x56\xed\x93\x53\xed\x92\x54\xed\x93\ +\x52\xec\x92\x54\xed\x92\x52\xed\x91\x51\xee\x90\x52\xef\x90\x51\ +\xee\x91\x51\xef\x90\x51\xed\x91\x50\xed\x91\x51\xee\x91\x4f\xed\ +\x92\x52\xef\x90\x52\xee\x90\x52\xed\x90\x50\xee\x90\x50\xee\x90\ +\x50\xed\x90\x52\xed\x90\x50\xed\x91\x51\xef\x91\x52\xed\x91\x51\ +\xed\x91\x50\xed\x91\x51\xee\x90\x51\xee\x90\x50\xee\x90\x50\xed\ +\x90\x50\xef\x8f\x52\xed\x90\x50\xed\x8f\x4f\xed\x8f\x51\xec\x90\ +\x52\xee\x8e\x51\xed\x90\x50\xec\x90\x52\xed\x8f\x52\xee\x90\x50\ +\xee\x91\x51\xec\x8f\x53\xed\x90\x4f\xef\x8f\x50\xef\x90\x4f\xed\ +\x91\x52\xed\x91\x53\xec\x90\x53\xec\x91\x53\xec\x90\x53\xeb\x91\ +\x52\xec\x92\x55\xea\x92\x55\xeb\x92\x55\xec\x91\x55\xec\x91\x55\ +\xeb\x92\x53\xed\x94\x5b\xec\x99\x60\xec\x97\x5f\xef\x9c\x64\xed\ +\xaa\x7a\xeb\xa5\x75\xec\x9b\x64\xed\x9d\x67\xec\x9c\x69\xec\x99\ +\x64\xec\x99\x63\xec\x9c\x67\xec\x9c\x66\xec\x9a\x67\xed\x9f\x6e\ +\xed\x9a\x63\xec\x95\x5b\xeb\x91\x54\xea\x91\x55\xea\x90\x54\xea\ +\x8f\x52\xea\x8f\x53\xeb\x8f\x52\xeb\x8d\x50\xec\x8d\x4f\xec\x8d\ +\x4f\xec\x8c\x50\xed\x8c\x50\xec\x8c\x4f\xed\x8c\x50\xec\x8c\x4f\ +\xeb\x8b\x4e\xec\x8b\x4c\xec\x8b\x4e\xed\x8b\x4d\xeb\x8a\x4b\xea\ +\x8b\x4b\xec\x8b\x4c\xeb\x8b\x4a\xeb\x8a\x4c\xec\x8a\x4b\xeb\x8b\ +\x4b\xea\x8a\x48\xeb\x8a\x48\xeb\x8a\x4a\xea\x89\x48\xeb\x8b\x49\ +\xea\x89\x49\xea\x89\x49\xea\x8a\x48\xea\x89\x48\xe9\x88\x46\xea\ +\x89\x47\xea\x89\x47\xeb\x89\x47\xeb\x89\x48\xe9\x88\x49\xe7\x88\ +\x4a\xe8\x87\x49\xe7\x87\x49\xe9\x87\x47\xe8\x87\x48\xe8\x8e\x54\ +\xe8\x93\x5f\xe8\x9a\x6a\xe6\x92\x60\xe7\x8e\x58\xe8\x89\x4f\xe8\ +\x88\x49\xe9\x88\x4c\xe9\x88\x48\xe8\x87\x45\xe7\x87\x46\xe9\x84\ +\x44\xe8\x85\x43\xe7\x85\x44\xe9\x87\x48\xe9\x8a\x4b\xea\x8a\x4d\ +\xe7\x8a\x4e\xdc\x86\x53\xc8\x7e\x54\xca\x81\x53\xca\x7a\x4c\xba\ +\x7d\x58\x56\x52\x4b\x8d\x67\x4c\xc4\x80\x53\xa6\x72\x54\x98\x77\ +\x5f\x49\x51\x59\x96\x68\x4a\x90\x66\x4d\x79\x62\x4d\x36\x43\x44\ +\x38\x47\x4b\x4c\x52\x50\x3f\x4d\x4e\x48\x4c\x4a\x4b\x50\x4d\x31\ +\x39\x32\x00\x00\x00\xed\x92\x53\xed\x91\x54\xec\x92\x54\xed\x92\ +\x54\xef\x92\x52\xef\x92\x53\xed\x92\x53\xee\x92\x53\xef\x90\x53\ +\xee\x91\x52\xed\x91\x50\xed\x91\x50\xed\x90\x50\xef\x91\x50\xee\ +\x90\x50\xed\x91\x50\xed\x90\x50\xed\x91\x51\xee\x91\x51\xef\x8f\ +\x51\xf0\x90\x4f\xee\x8f\x50\xef\x90\x50\xee\x8f\x51\xed\x90\x52\ +\xee\x90\x52\xed\x90\x51\xed\x90\x51\xed\x8f\x52\xeb\x90\x51\xee\ +\x8f\x4f\xee\x90\x50\xed\x91\x51\xec\x90\x4f\xed\x8f\x50\xee\x90\ +\x50\xf0\x8f\x51\xed\x90\x50\xed\x8f\x4f\xed\x8f\x51\xed\x8f\x50\ +\xec\x90\x52\xed\x90\x51\xee\x8f\x52\xee\x8f\x52\xec\x90\x52\xee\ +\x8f\x51\xef\x8f\x4e\xee\x8e\x50\xf0\x8f\x50\xee\x90\x50\xee\x91\ +\x51\xec\x90\x52\xec\x91\x52\xed\x90\x52\xeb\x91\x53\xea\x92\x54\ +\xed\x92\x54\xeb\x93\x56\xec\x93\x58\xed\x93\x55\xec\x95\x58\xed\ +\x9c\x64\xee\xa9\x7a\xea\xb1\x84\xe7\xbc\x97\xe5\xc2\xa6\xe9\xb6\ +\x92\xeb\xad\x7f\xec\xa3\x75\xeb\xa3\x72\xec\xa0\x6d\xed\xa2\x6e\ +\xeb\xa1\x72\xec\x9e\x6c\xed\x9f\x6b\xed\xa6\x77\xee\xa9\x7d\xed\ +\xa0\x6c\xec\x94\x5c\xea\x91\x53\xea\x8f\x54\xeb\x8f\x52\xea\x90\ +\x50\xe9\x8f\x51\xec\x8c\x51\xeb\x8e\x4f\xec\x8c\x50\xed\x8c\x50\ +\xeb\x8b\x4e\xeb\x8b\x4f\xeb\x8b\x4f\xec\x8c\x4f\xec\x8b\x4c\xeb\ +\x8b\x4c\xeb\x8b\x4d\xec\x8a\x4c\xeb\x8b\x4d\xec\x8a\x4c\xea\x8a\ +\x4a\xea\x8a\x4a\xeb\x8a\x4d\xeb\x8a\x49\xeb\x8a\x4a\xea\x8a\x49\ +\xeb\x8a\x48\xea\x8a\x48\xea\x87\x49\xeb\x8a\x49\xea\x88\x49\xea\ +\x89\x47\xea\x89\x46\xea\x8a\x47\xe9\x88\x46\xe9\x89\x46\xea\x89\ +\x47\xe9\x89\x47\xe9\x88\x47\xe9\x87\x47\xe7\x86\x44\xe8\x86\x45\ +\xe7\x85\x45\xe9\x88\x48\xec\x94\x55\xeb\x99\x5e\xeb\x96\x60\xe8\ +\x98\x65\xe7\x8a\x53\xe8\x86\x47\xe9\x87\x48\xe9\x87\x47\xe9\x88\ +\x46\xe9\x87\x46\xe9\x85\x44\xe9\x86\x42\xe8\x86\x44\xe8\x85\x46\ +\xe9\x86\x44\xea\x88\x46\xea\x89\x4a\xe9\x88\x4a\xe9\x89\x48\xe6\ +\x86\x4b\xe1\x87\x4f\xea\x8c\x4e\xb3\x75\x4d\x7d\x54\x33\xc1\x7e\ +\x4e\xd7\x8f\x61\x87\x67\x5d\x98\x6f\x4e\x91\x70\x64\x59\x4f\x47\ +\x6e\x55\x42\x74\x59\x42\x43\x41\x3a\x37\x4a\x4c\x39\x41\x3b\x48\ +\x50\x4c\x3f\x48\x46\x50\x53\x4d\x4c\x58\x58\x2d\x44\x44\x00\x00\ +\x00\xed\x92\x52\xed\x92\x55\xec\x92\x53\xed\x91\x53\xf0\x92\x51\ +\xef\x91\x50\xed\x91\x52\xec\x92\x51\xec\x91\x51\xec\x91\x51\xed\ +\x90\x52\xed\x8f\x51\xed\x90\x51\xec\x90\x50\xee\x8f\x51\xee\x8f\ +\x51\xee\x91\x51\xee\x91\x50\xed\x8f\x50\xee\x8f\x51\xed\x90\x51\ +\xec\x90\x50\xed\x90\x4f\xee\x8f\x4f\xed\x8f\x53\xed\x90\x51\xec\ +\x90\x52\xeb\x91\x51\xec\x8f\x51\xee\x8f\x50\xec\x8f\x51\xf0\x8e\ +\x50\xed\x90\x4f\xed\x8e\x50\xed\x8f\x50\xeb\x8f\x53\xed\x8e\x50\ +\xed\x8e\x4f\xed\x8e\x4f\xed\x8f\x50\xef\x8f\x4e\xed\x8d\x52\xec\ +\x8f\x51\xed\x90\x50\xec\x90\x50\xec\x8e\x52\xec\x8f\x50\xee\x8f\ +\x51\xed\x90\x51\xee\x90\x50\xec\x8f\x51\xec\x90\x50\xec\x8f\x53\ +\xeb\x8f\x52\xeb\x90\x53\xec\x92\x53\xeb\x91\x54\xeb\x93\x56\xec\ +\x96\x5a\xeb\x98\x61\xec\x9c\x65\xed\xa5\x73\xea\xb6\x8e\xe5\xc1\ +\xa5\xe3\xcb\xb5\xe3\xd1\xbc\xe1\xd0\xbc\xe1\xc9\xb4\xe5\xbb\x9e\ +\xe8\xa9\x7f\xe8\xa3\x76\xea\xa6\x7b\xea\xa7\x7d\xeb\xa5\x79\xea\ +\xa3\x73\xeb\xa8\x7b\xe9\xac\x87\xe9\xa9\x85\xea\xa7\x7e\xec\xa3\ +\x72\xeb\x9a\x63\xeb\x92\x55\xeb\x93\x57\xea\x91\x55\xeb\x91\x54\ +\xeb\x8d\x50\xeb\x8c\x4f\xea\x8d\x50\xed\x8c\x4f\xeb\x8c\x4f\xeb\ +\x8c\x50\xeb\x8c\x4c\xed\x8c\x4c\xec\x8b\x4c\xec\x8b\x4b\xec\x8a\ +\x4d\xec\x8b\x4a\xec\x8a\x4c\xeb\x8b\x4b\xeb\x8a\x4a\xeb\x89\x4b\ +\xeb\x8a\x4b\xea\x89\x47\xeb\x89\x49\xeb\x8a\x49\xea\x8a\x46\xe8\ +\x89\x46\xeb\x8a\x48\xea\x89\x47\xea\x89\x47\xe9\x88\x46\xe9\x88\ +\x46\xe9\x88\x46\xea\x89\x47\xe9\x89\x47\xe8\x88\x45\xe9\x88\x46\ +\xe9\x88\x46\xe8\x87\x43\xe9\x87\x45\xe9\x86\x43\xe8\x86\x44\xe9\ +\x88\x49\xec\x9c\x64\xec\xad\x86\xea\xa7\x7c\xe5\x97\x6a\xe7\x86\ +\x48\xe7\x85\x43\xe7\x86\x44\xe8\x86\x44\xe8\x86\x44\xe7\x85\x43\ +\xe9\x85\x43\xe8\x84\x42\xe7\x85\x45\xe8\x86\x44\xe7\x87\x42\xe8\ +\x86\x45\xe9\x86\x43\xe8\x84\x44\xeb\x86\x44\xeb\x87\x46\xe6\x87\ +\x4b\xe8\x89\x4e\xcf\x85\x55\xdd\x87\x54\xe8\x8e\x51\xb5\x78\x56\ +\x7a\x5f\x52\xab\x74\x54\x60\x50\x46\x6a\x58\x45\x48\x48\x3f\x3c\ +\x45\x45\x31\x43\x40\x89\x62\x40\xe2\x90\x58\x8c\x71\x60\x49\x49\ +\x42\x3c\x45\x49\x47\x56\x5a\x2d\x41\x40\x00\x00\x00\xec\x92\x53\ +\xec\x91\x52\xed\x91\x52\xee\x91\x53\xec\x91\x51\xed\x90\x50\xee\ +\x8f\x52\xec\x90\x51\xef\x90\x50\xee\x8f\x4f\xed\x90\x51\xed\x8f\ +\x4f\xed\x8f\x50\xed\x8e\x50\xef\x8e\x4f\xec\x90\x4f\xec\x90\x51\ +\xee\x90\x51\xed\x8e\x50\xee\x8e\x51\xee\x8f\x50\xee\x8f\x4f\xed\ +\x8f\x50\xef\x8e\x50\xef\x8d\x51\xed\x8f\x4f\xec\x8f\x51\xec\x8f\ +\x52\xed\x8e\x52\xec\x8e\x51\xec\x8e\x52\xef\x8e\x51\xed\x8f\x50\ +\xed\x8e\x50\xec\x8f\x4f\xeb\x90\x50\xec\x8f\x4f\xec\x8f\x50\xed\ +\x8f\x50\xec\x8e\x51\xed\x8d\x50\xef\x8d\x50\xed\x8f\x50\xee\x8e\ +\x4f\xed\x8f\x4f\xec\x8e\x51\xec\x8e\x50\xeb\x8f\x4f\xec\x8f\x50\ +\xee\x8e\x50\xec\x8f\x51\xec\x90\x52\xec\x90\x51\xed\x90\x53\xeb\ +\x90\x53\xeb\x92\x54\xeb\x93\x55\xeb\x94\x5d\xec\x96\x60\xec\x9f\ +\x6a\xeb\xa7\x79\xe8\xac\x86\xe2\xbf\xa8\xe2\xcf\xbc\xe6\xda\xcb\ +\xe8\xde\xd2\xe5\xd9\xcd\xe1\xd0\xbe\xe0\xc3\xad\xe5\xb9\x9b\xe9\ +\xa9\x7f\xe9\xab\x84\xe8\xb0\x8d\xe9\xad\x88\xeb\xac\x82\xe8\xa8\ +\x80\xe8\xa5\x7c\xe9\xa6\x7c\xea\xa3\x7b\xe9\xaa\x83\xeb\xac\x84\ +\xed\xa5\x74\xec\x9f\x6e\xeb\x9a\x64\xea\x93\x58\xea\x8e\x51\xec\ +\x8c\x50\xea\x8c\x4f\xea\x8d\x4e\xec\x8c\x4e\xeb\x8b\x4f\xea\x8b\ +\x4e\xed\x8c\x4d\xeb\x8b\x4e\xe9\x8b\x4e\xea\x8a\x4a\xec\x8b\x4c\ +\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8b\x4b\xeb\x8a\x4b\xea\x8a\x49\xeb\ +\x89\x49\xea\x89\x49\xea\x89\x48\xe9\x89\x47\xe9\x8a\x47\xea\x89\ +\x48\xe9\x88\x47\xe9\x88\x47\xe9\x88\x47\xe9\x88\x46\xe9\x88\x47\ +\xea\x88\x47\xe9\x88\x46\xe8\x88\x46\xe9\x88\x46\xe9\x88\x46\xe7\ +\x86\x43\xe8\x87\x44\xe8\x87\x45\xe9\x87\x46\xe9\x88\x46\xe8\x93\ +\x5c\xe8\xa9\x87\xe6\xa6\x81\xe5\x8c\x58\xe7\x86\x45\xe9\x85\x41\ +\xe9\x84\x44\xe7\x84\x44\xe8\x86\x45\xe9\x85\x44\xe8\x85\x41\xe8\ +\x84\x43\xe7\x85\x43\xe8\x84\x43\xe8\x85\x46\xe9\x85\x43\xe9\x84\ +\x43\xe8\x84\x42\xe9\x85\x45\xe9\x86\x46\xe9\x88\x49\xea\x8b\x4b\ +\xd3\x86\x55\xcc\x80\x55\xb5\x79\x58\x77\x56\x48\x9a\x73\x5b\x7b\ +\x61\x52\x5f\x54\x4e\x8f\x68\x4c\x76\x60\x4e\x61\x5a\x46\x56\x55\ +\x50\x98\x67\x45\xda\x96\x6a\x90\x6d\x5d\x2f\x37\x35\x22\x2f\x2c\ +\x4a\x59\x56\x2f\x43\x4a\x00\x00\x00\xec\x91\x53\xed\x90\x53\xee\ +\x91\x53\xee\x90\x51\xef\x90\x52\xee\x90\x50\xed\x90\x53\xed\x8f\ +\x52\xed\x8f\x50\xee\x8f\x4f\xee\x8e\x4f\xef\x8f\x4e\xee\x8e\x4f\ +\xee\x8f\x4f\xee\x8e\x4f\xed\x8f\x50\xec\x90\x4f\xee\x8f\x50\xec\ +\x8f\x50\xee\x8f\x4f\xef\x8e\x4e\xee\x8f\x4f\xef\x8e\x51\xee\x8f\ +\x4f\xef\x8e\x50\xed\x8f\x50\xed\x8e\x50\xed\x8e\x4f\xed\x8d\x51\ +\xed\x8e\x50\xed\x8e\x50\xee\x8e\x51\xed\x8f\x51\xee\x8f\x50\xed\ +\x8e\x50\xec\x8f\x50\xed\x8e\x51\xed\x8f\x51\xed\x8f\x51\xee\x8e\ +\x51\xee\x8d\x51\xee\x8e\x4f\xee\x8f\x51\xed\x8f\x50\xed\x8f\x4f\ +\xed\x8e\x50\xed\x8e\x50\xec\x8f\x50\xed\x90\x50\xec\x8f\x51\xec\ +\x8f\x52\xed\x8f\x51\xeb\x8f\x51\xeb\x90\x53\xec\x91\x53\xeb\x92\ +\x53\xeb\x94\x5a\xeb\x95\x5c\xed\x9e\x6a\xeb\xa9\x7e\xe7\xb0\x8e\ +\xe6\xb2\x8f\xe2\xc9\xb2\xe6\xd9\xcc\xe9\xe0\xd8\xeb\xe2\xdb\xe8\ +\xe0\xd7\xe6\xda\xcc\xe2\xce\xba\xe2\xc4\xac\xe4\xb7\x98\xe5\xb5\ +\x93\xe4\xbb\x9f\xe5\xb4\x94\xe7\xb0\x8d\xe8\xaa\x85\xe8\xa7\x7e\ +\xe7\xa6\x7e\xe9\xa1\x74\xe7\xa2\x76\xe6\xa1\x79\xe7\xa2\x78\xe8\ +\x99\x69\xea\x9b\x6b\xe9\x93\x5d\xea\x8f\x53\xe9\x8e\x53\xeb\x8c\ +\x4f\xea\x8d\x50\xea\x8d\x51\xeb\x8b\x4f\xea\x8b\x4f\xec\x8c\x4f\ +\xea\x8b\x4f\xe9\x8b\x4e\xeb\x8a\x4a\xec\x8a\x4b\xeb\x8a\x4b\xeb\ +\x8a\x4c\xea\x8a\x4d\xea\x89\x4a\xea\x8a\x47\xea\x88\x48\xea\x88\ +\x49\xe9\x8a\x48\xea\x89\x47\xea\x89\x47\xe9\x8a\x47\xe9\x88\x47\ +\xe9\x89\x46\xe9\x89\x47\xe9\x89\x48\xea\x89\x49\xe9\x88\x47\xe8\ +\x87\x47\xe9\x88\x46\xe8\x87\x45\xe8\x87\x45\xe7\x87\x44\xe9\x87\ +\x44\xe8\x87\x45\xe8\x87\x46\xe9\x88\x46\xe7\x87\x48\xe6\x90\x5c\ +\xe7\x97\x68\xe8\x8c\x54\xe9\x86\x46\xe7\x85\x44\xe8\x84\x41\xe8\ +\x84\x42\xe8\x85\x43\xe8\x85\x44\xe8\x85\x42\xe8\x85\x44\xe8\x84\ +\x44\xe8\x85\x43\xe9\x84\x44\xe9\x83\x44\xe8\x84\x43\xe8\x85\x44\ +\xe9\x85\x44\xe9\x86\x44\xe9\x88\x47\xe9\x8a\x4b\xd6\x87\x58\xd9\ +\x86\x53\x9e\x6e\x58\x84\x5c\x49\x6d\x5b\x52\x64\x4f\x41\x68\x52\ +\x47\xa7\x6f\x48\x83\x6a\x57\x69\x5a\x4a\x9e\x76\x60\x6e\x4d\x38\ +\x9d\x6f\x52\x6b\x55\x42\x4b\x4a\x43\x27\x38\x34\x32\x48\x42\x43\ +\x56\x5f\x00\x00\x00\xee\x90\x53\xec\x90\x54\xed\x91\x53\xef\x90\ +\x50\xef\x90\x51\xed\x90\x50\xed\x8f\x50\xef\x8f\x50\xef\x8e\x51\ +\xef\x8e\x4f\xef\x8e\x50\xf0\x8e\x4f\xef\x8d\x4e\xf0\x8e\x4f\xee\ +\x8e\x4f\xef\x8e\x4f\xef\x8e\x4e\xef\x8e\x51\xec\x8f\x4f\xef\x8e\ +\x51\xef\x8f\x51\xee\x8e\x50\xf0\x8e\x50\xef\x8e\x4e\xef\x8f\x50\ +\xee\x8e\x4f\xee\x8e\x51\xed\x8f\x50\xed\x8e\x51\xed\x8e\x4f\xee\ +\x8e\x4f\xed\x8e\x53\xed\x8e\x51\xed\x8e\x51\xee\x8e\x51\xed\x90\ +\x50\xee\x8d\x52\xed\x8e\x50\xec\x8e\x50\xee\x8e\x4f\xec\x8e\x4f\ +\xeb\x8f\x50\xee\x8e\x4f\xed\x8e\x4f\xec\x8e\x50\xec\x8f\x51\xeb\ +\x8f\x50\xed\x8f\x4f\xec\x8f\x51\xeb\x8f\x51\xed\x8f\x52\xeb\x8f\ +\x52\xeb\x8f\x52\xeb\x90\x53\xec\x91\x54\xea\x91\x55\xeb\x92\x59\ +\xeb\x94\x5c\xea\x9e\x6d\xe8\xac\x88\xe5\xb2\x95\xe4\xb9\x9d\xe1\ +\xcf\xbd\xe7\xdd\xd3\xea\xe3\xdd\xeb\xe5\xdf\xea\xe2\xdd\xe9\xdf\ +\xd6\xe6\xda\xce\xe3\xd3\xc1\xe2\xca\xb4\xe2\xc3\xa8\xe2\xc5\xac\ +\xe3\xbd\xa3\xe3\xb7\x98\xe6\xae\x8d\xe8\xa7\x7e\xe8\xa5\x79\xea\ +\xa5\x79\xe6\x9f\x71\xe9\x9d\x69\xeb\x99\x62\xea\x95\x5e\xe9\x94\ +\x5f\xea\x93\x57\xea\x8f\x56\xea\x8e\x53\xea\x8e\x51\xeb\x8e\x51\ +\xea\x8d\x52\xeb\x8e\x50\xeb\x8c\x4f\xea\x8d\x4f\xea\x8c\x50\xea\ +\x8c\x50\xec\x8b\x4c\xeb\x8a\x4c\xeb\x8b\x4b\xea\x8a\x4d\xea\x89\ +\x4e\xea\x89\x4b\xe9\x8a\x48\xea\x89\x48\xea\x89\x49\xea\x89\x48\ +\xe9\x88\x48\xea\x89\x48\xea\x89\x47\xe8\x88\x47\xe9\x88\x48\xe9\ +\x89\x48\xe9\x88\x47\xea\x89\x49\xe9\x88\x46\xe9\x88\x47\xe9\x88\ +\x46\xea\x88\x47\xe8\x88\x46\xe7\x86\x44\xe8\x87\x45\xe8\x86\x45\ +\xe8\x86\x45\xe7\x86\x44\xe8\x86\x47\xe8\x86\x46\xe7\x87\x49\xe7\ +\x88\x4a\xe8\x85\x45\xe7\x85\x43\xe6\x85\x44\xe7\x85\x42\xe7\x85\ +\x44\xe8\x84\x43\xea\x84\x43\xe9\x84\x44\xe9\x84\x43\xe8\x85\x42\ +\xe8\x84\x43\xe8\x84\x44\xe8\x85\x42\xe7\x84\x43\xe9\x85\x43\xe9\ +\x85\x43\xeb\x87\x47\xde\x85\x4c\xd6\x84\x52\xb0\x75\x56\x90\x67\ +\x50\x9a\x6d\x51\x56\x4e\x47\x3e\x36\x2b\xbd\x7b\x4d\xa1\x6f\x51\ +\xa8\x75\x53\x4a\x4f\x50\x85\x63\x51\x6e\x53\x44\x59\x57\x53\x50\ +\x4d\x49\x63\x5b\x54\x3a\x4d\x56\x39\x4a\x48\x37\x41\x3d\x00\x00\ +\x00\xee\x90\x51\xec\x91\x52\xec\x90\x52\xef\x8f\x50\xed\x8e\x4f\ +\xec\x8f\x50\xee\x8f\x4f\xf0\x8f\x50\xef\x8d\x50\xee\x8f\x50\xef\ +\x8e\x4d\xee\x8e\x51\xef\x8e\x51\xef\x8d\x4f\xee\x8e\x50\xee\x8e\ +\x52\xf0\x8e\x4f\xee\x8e\x4f\xee\x8e\x4f\xee\x8e\x50\xed\x8f\x4f\ +\xed\x8f\x51\xef\x8e\x52\xef\x8d\x50\xed\x8e\x4f\xf0\x8e\x51\xee\ +\x8e\x4f\xed\x8e\x4e\xed\x8e\x51\xea\x8e\x53\xed\x8e\x51\xed\x8d\ +\x50\xeb\x8d\x51\xeb\x8f\x51\xed\x8f\x50\xed\x8f\x50\xee\x8e\x52\ +\xec\x8f\x50\xeb\x8e\x51\xed\x8e\x4f\xee\x8e\x51\xee\x8e\x51\xec\ +\x8e\x4f\xeb\x8f\x4f\xec\x8e\x50\xed\x8e\x50\xed\x8e\x51\xed\x8e\ +\x50\xeb\x90\x53\xeb\x8f\x51\xec\x8e\x51\xeb\x8f\x53\xec\x90\x52\ +\xea\x90\x51\xea\x91\x53\xeb\x91\x53\xeb\x90\x55\xeb\x95\x5b\xe9\ +\x99\x65\xe8\xa5\x7b\xe5\xb1\x94\xe1\xbd\xa6\xe3\xd4\xc7\xe8\xe0\ +\xd8\xeb\xe5\xdf\xeb\xe5\xe0\xeb\xe5\xdf\xeb\xe3\xdd\xe8\xe0\xd7\ +\xe7\xdc\xd1\xe5\xd6\xc7\xe1\xcf\xbb\xe1\xcc\xb9\xe0\xc3\xac\xe4\ +\xb8\x9e\xe6\xab\x8a\xe8\xa5\x7a\xe8\xa7\x7e\xe8\xab\x85\xe9\xa4\ +\x74\xe9\xaa\x7e\xea\xa3\x74\xeb\x9b\x68\xeb\x9e\x6c\xea\x9d\x6a\ +\xe9\x94\x5b\xeb\x90\x52\xea\x91\x55\xe9\x96\x5e\xec\x95\x5e\xea\ +\x92\x55\xea\x8e\x4f\xe9\x8f\x53\xea\x8e\x54\xe9\x8c\x4f\xeb\x8b\ +\x4c\xec\x8b\x4b\xeb\x8b\x4b\xea\x8a\x4b\xeb\x8a\x4c\xea\x8a\x4a\ +\xe9\x89\x47\xe9\x89\x48\xe9\x89\x49\xea\x89\x48\xea\x89\x47\xe9\ +\x88\x48\xe9\x88\x47\xe9\x88\x46\xea\x88\x48\xea\x89\x47\xea\x88\ +\x46\xea\x88\x48\xe9\x88\x46\xe9\x87\x47\xe9\x87\x45\xe9\x87\x46\ +\xe8\x88\x46\xe8\x87\x44\xe8\x86\x45\xe8\x87\x46\xe8\x86\x46\xe8\ +\x86\x45\xe7\x85\x44\xe8\x86\x44\xe8\x85\x43\xe7\x86\x45\xe9\x84\ +\x42\xe8\x86\x44\xe7\x85\x41\xe7\x85\x44\xe9\x84\x41\xe8\x84\x43\ +\xe9\x84\x42\xe9\x84\x44\xe8\x84\x44\xe8\x85\x44\xe7\x85\x42\xe7\ +\x83\x43\xe7\x84\x43\xe8\x83\x42\xe8\x85\x43\xe9\x85\x44\xe6\x86\ +\x46\xda\x85\x51\xd1\x83\x53\xbe\x7a\x51\x52\x47\x45\x76\x51\x38\ +\x99\x68\x45\xb5\x75\x4a\xd8\x88\x52\x79\x5b\x56\x88\x6b\x55\x45\ +\x4a\x4b\x48\x48\x43\x4e\x4b\x48\x47\x44\x3a\x5a\x5d\x57\x4a\x53\ +\x5c\x3d\x52\x60\x41\x4b\x4a\x42\x4a\x4a\x00\x00\x00\xed\x90\x50\ +\xee\x8f\x51\xef\x8f\x50\xec\x8f\x50\xee\x8e\x4d\xed\x8e\x4f\xee\ +\x8d\x51\xef\x8d\x4f\xed\x8e\x4e\xec\x8d\x4e\xed\x8e\x50\xee\x8c\ +\x4f\xee\x8c\x4f\xee\x8e\x4c\xee\x8e\x4e\xec\x8e\x50\xed\x8d\x4e\ +\xed\x8e\x4e\xec\x8d\x51\xee\x8e\x4e\xec\x8e\x4e\xec\x8d\x50\xec\ +\x8d\x4e\xee\x8d\x4e\xeb\x8e\x4e\xee\x8d\x4e\xef\x8c\x4f\xee\x8d\ +\x4f\xee\x8c\x50\xeb\x8f\x50\xef\x8c\x51\xed\x8c\x4f\xef\x8e\x4f\ +\xec\x8e\x50\xec\x8e\x51\xec\x8e\x51\xeb\x8e\x50\xed\x8f\x4f\xee\ +\x8e\x4f\xec\x8e\x50\xea\x8d\x52\xed\x8d\x50\xee\x8e\x4f\xeb\x8e\ +\x51\xeb\x8e\x51\xec\x8d\x4f\xed\x8e\x4e\xec\x8e\x51\xeb\x8f\x52\ +\xec\x91\x53\xeb\x90\x51\xe9\x90\x51\xec\x90\x51\xec\x91\x52\xeb\ +\x91\x55\xea\x8f\x53\xea\x93\x59\xeb\x9b\x67\xeb\x9a\x66\xea\xa7\ +\x7a\xe5\xb3\x92\xe1\xba\xa1\xe1\xd0\xc4\xea\xe3\xdc\xeb\xe4\xe1\ +\xed\xe6\xe3\xea\xe5\xe1\xea\xe5\xe1\xeb\xe5\xde\xea\xe2\xda\xe8\ +\xdf\xd4\xe6\xd9\xcc\xe1\xd3\xc2\xe0\xc9\xb4\xe2\xc2\xa7\xe5\xb7\ +\x96\xe7\xb2\x8a\xe6\xb3\x90\xe4\xb3\x93\xe7\xb2\x8d\xe5\xb4\x96\ +\xe7\xaf\x8e\xe9\xa8\x7c\xe9\xa4\x77\xea\xa5\x79\xea\xa1\x6f\xe8\ +\x94\x5c\xe8\x90\x56\xe9\x94\x5b\xea\x9c\x6a\xeb\xa1\x6f\xea\x96\ +\x5d\xe9\x91\x57\xe8\x8c\x50\xe9\x8a\x4d\xea\x8a\x4d\xea\x8a\x4e\ +\xeb\x8a\x4a\xeb\x89\x49\xea\x8a\x4b\xea\x8a\x4b\xeb\x8a\x4a\xea\ +\x87\x49\xea\x88\x49\xea\x88\x49\xe9\x88\x46\xe8\x88\x45\xe8\x87\ +\x48\xea\x87\x47\xe9\x89\x47\xe8\x88\x48\xe8\x87\x48\xe8\x87\x47\ +\xe9\x8a\x48\xe8\x88\x47\xe9\x88\x47\xe8\x87\x46\xe8\x87\x45\xe9\ +\x88\x46\xe8\x87\x45\xe9\x88\x46\xe8\x87\x45\xe8\x86\x43\xe7\x86\ +\x43\xe7\x84\x45\xe8\x84\x43\xe8\x85\x44\xe7\x84\x43\xe9\x83\x43\ +\xe8\x84\x41\xe8\x85\x45\xe7\x85\x42\xe7\x84\x42\xe8\x85\x43\xe9\ +\x85\x44\xe7\x84\x43\xe8\x83\x43\xe9\x84\x42\xe6\x84\x42\xe7\x83\ +\x3f\xe7\x83\x3f\xe8\x84\x44\xe8\x85\x42\xe2\x85\x4c\xe4\x88\x4f\ +\xcb\x7f\x53\x7e\x63\x58\x6a\x48\x31\xc5\x78\x42\xd8\x85\x4f\xe3\ +\x8b\x53\xee\x93\x5a\xab\x74\x56\x5d\x5d\x53\x2e\x40\x43\x41\x49\ +\x48\x3e\x46\x45\x57\x57\x50\x43\x48\x41\x3c\x4f\x4d\x2a\x45\x4b\ +\x30\x40\x42\x2f\x3a\x3a\x00\x00\x00\xed\x90\x50\xee\x8f\x50\xee\ +\x8e\x51\xf0\x8e\x51\xee\x8e\x51\xef\x8e\x4f\xee\x8e\x4e\xee\x8e\ +\x4e\xee\x8e\x4d\xed\x8e\x4f\xec\x8e\x4e\xee\x8d\x50\xee\x8d\x4e\ +\xee\x8c\x4e\xee\x8c\x4e\xee\x8d\x4d\xee\x8d\x4e\xee\x8d\x4e\xee\ +\x8d\x4e\xec\x8d\x50\xeb\x8d\x4f\xee\x8d\x4f\xee\x8d\x50\xed\x8d\ +\x4e\xee\x8c\x4f\xee\x8c\x4f\xed\x8d\x4d\xed\x8d\x4c\xee\x8c\x4f\ +\xed\x8c\x4d\xed\x8d\x4e\xed\x8d\x4d\xed\x8c\x4f\xec\x8c\x50\xee\ +\x8c\x50\xec\x8d\x51\xef\x8e\x4d\xed\x8d\x4f\xea\x8d\x50\xea\x8f\ +\x52\xea\x8e\x4f\xee\x8d\x4e\xec\x8e\x4d\xee\x8d\x4e\xec\x8d\x4f\ +\xeb\x8d\x50\xea\x8e\x51\xec\x8e\x4f\xec\x8d\x52\xec\x8f\x51\xec\ +\x8f\x53\xec\x8e\x52\xea\x90\x52\xeb\x90\x51\xea\x91\x53\xeb\x90\ +\x53\xeb\x93\x59\xe9\x93\x5e\xe9\x97\x63\xe6\xa8\x81\xe3\xbf\xa3\ +\xe1\xc9\xb2\xe2\xd3\xc2\xea\xe3\xdd\xed\xe6\xe3\xee\xe7\xe4\xee\ +\xe7\xe4\xed\xe6\xe3\xed\xe5\xe2\xeb\xe6\xe0\xeb\xe3\xdc\xe8\xe1\ +\xd7\xe7\xdc\xcf\xe5\xd7\xc6\xe4\xd3\xc1\xe2\xcc\xb5\xe2\xc5\xac\ +\xe2\xc0\xa7\xe2\xbf\xa4\xe1\xc3\xa8\xe4\xbe\xa3\xe4\xb4\x96\xe6\ +\xb2\x91\xe8\xb5\x90\xe9\xb3\x8f\xe7\xb9\x97\xeb\xaa\x7b\xec\x9f\ +\x69\xea\x9a\x66\xe8\x97\x64\xea\x9f\x70\xeb\xa2\x76\xec\x9b\x66\ +\xe8\x8e\x53\xe8\x8a\x4d\xea\x8a\x4b\xeb\x88\x4e\xea\x89\x4b\xeb\ +\x89\x4b\xe9\x8a\x4b\xe9\x8a\x4c\xea\x89\x4b\xea\x8a\x48\xe9\x88\ +\x49\xe8\x88\x47\xe9\x88\x48\xea\x87\x47\xe9\x89\x47\xe9\x88\x47\ +\xe9\x89\x47\xe8\x88\x47\xea\x87\x48\xe9\x88\x48\xe9\x88\x48\xe8\ +\x87\x47\xe9\x87\x47\xe9\x88\x45\xe8\x87\x47\xe8\x87\x46\xe8\x87\ +\x43\xe7\x87\x45\xe8\x86\x44\xe8\x85\x43\xe8\x86\x44\xe8\x84\x41\ +\xea\x84\x42\xe9\x83\x42\xe7\x84\x43\xe8\x84\x43\xe8\x84\x44\xe8\ +\x84\x43\xe7\x84\x43\xe7\x84\x44\xe8\x83\x44\xe7\x83\x43\xe8\x84\ +\x43\xe7\x83\x43\xe7\x83\x41\xe6\x83\x41\xe8\x82\x41\xe7\x83\x42\ +\xe8\x84\x42\xe8\x85\x44\xe6\x86\x48\xea\x87\x48\xbe\x7b\x50\x69\ +\x54\x4a\xc3\x6e\x33\xe5\x8e\x55\xdf\x8a\x54\xe2\x8c\x56\xb6\x7b\ +\x55\x62\x5b\x55\x32\x40\x43\x2d\x3b\x3b\x4a\x49\x41\x5e\x58\x4b\ +\x81\x5e\x42\x66\x60\x5a\x40\x52\x4f\x4b\x55\x4f\x47\x51\x4a\x4a\ +\x55\x5b\x00\x00\x00\xec\x8e\x51\xf0\x8f\x50\xed\x8e\x50\xed\x8d\ +\x4f\xee\x8d\x4f\xee\x8d\x50\xed\x8e\x4f\xef\x8c\x50\xee\x8c\x50\ +\xed\x8d\x4e\xed\x8e\x4d\xee\x8d\x4d\xed\x8c\x4d\xed\x8d\x4e\xed\ +\x8c\x4d\xed\x8c\x4d\xeb\x8c\x4d\xeb\x8d\x4c\xee\x8c\x4d\xee\x8c\ +\x4f\xed\x8c\x4d\xed\x8d\x4d\xed\x8b\x4d\xeb\x8b\x4f\xeb\x8b\x4f\ +\xec\x8c\x4c\xec\x8c\x4d\xec\x8b\x4c\xed\x8c\x4e\xed\x8c\x4e\xed\ +\x8c\x4e\xec\x8c\x4e\xec\x8c\x4f\xeb\x8d\x4f\xec\x8c\x50\xeb\x8d\ +\x4f\xeb\x8d\x50\xed\x8e\x4f\xed\x8d\x4f\xec\x8d\x4e\xeb\x8e\x4e\ +\xed\x8d\x4f\xed\x8c\x4d\xec\x8d\x4e\xeb\x8d\x4e\xee\x8e\x4e\xeb\ +\x8c\x4f\xeb\x8e\x52\xed\x8e\x50\xeb\x8e\x52\xed\x8f\x53\xea\x8e\ +\x53\xeb\x90\x52\xea\x8f\x53\xeb\x90\x52\xea\x91\x54\xeb\x92\x56\ +\xe9\x91\x5a\xe9\x9b\x67\xe9\xad\x86\xe2\xc4\xad\xe4\xd5\xc7\xe6\ +\xde\xd4\xec\xe5\xe0\xef\xe9\xe6\xef\xea\xe7\xef\xeb\xe7\xef\xe8\ +\xe5\xed\xe6\xe2\xea\xe6\xe1\xeb\xe6\xe0\xea\xe3\xdc\xe9\xe1\xd8\ +\xe9\xdf\xd4\xe8\xdd\xd2\xe5\xd8\xcb\xe2\xd1\xbe\xe0\xcb\xb7\xe1\ +\xcc\xb8\xe1\xcb\xb6\xe3\xcb\xb6\xe3\xc5\xac\xe4\xbe\xa2\xe3\xc6\ +\xae\xe1\xc8\xb2\xe2\xc5\xae\xe4\xc2\xa8\xe7\xba\x99\xea\xac\x83\ +\xea\xa1\x6e\xe9\xa2\x75\xeb\xaa\x80\xe9\xa9\x80\xe9\x94\x5c\xe9\ +\x89\x4d\xea\x89\x4c\xe8\x88\x4c\xe9\x89\x4b\xea\x89\x4b\xea\x89\ +\x4b\xeb\x89\x4b\xea\x8a\x49\xea\x89\x4a\xea\x89\x49\xea\x89\x49\ +\xe9\x88\x49\xe9\x87\x47\xe8\x88\x49\xe9\x88\x47\xe9\x88\x46\xe9\ +\x88\x47\xe8\x88\x47\xea\x89\x48\xe8\x87\x47\xe9\x88\x47\xe8\x87\ +\x46\xe8\x87\x48\xe9\x87\x47\xe8\x86\x45\xe7\x86\x44\xe7\x86\x44\ +\xe7\x86\x44\xe7\x85\x43\xe7\x86\x42\xe8\x85\x44\xe8\x84\x42\xe9\ +\x84\x41\xe8\x84\x42\xe7\x84\x44\xe9\x84\x44\xe8\x84\x43\xe7\x84\ +\x42\xe7\x84\x44\xe8\x84\x43\xe6\x83\x43\xe7\x83\x42\xe6\x83\x41\ +\xe6\x83\x41\xe7\x82\x3f\xe6\x81\x40\xe6\x82\x41\xe9\x83\x43\xe8\ +\x84\x43\xe8\x84\x42\xe2\x84\x48\xca\x77\x44\xac\x6e\x4d\xef\x89\ +\x49\xdf\x88\x52\xdd\x88\x56\xef\x90\x54\xcc\x86\x5d\x3f\x46\x45\ +\x30\x35\x30\x5d\x4c\x34\xa4\x73\x51\xd4\x8a\x5c\xe6\x91\x5f\x6f\ +\x67\x63\x45\x4f\x4f\x51\x52\x52\x4d\x54\x59\x32\x41\x47\x00\x00\ +\x00\xed\x8d\x50\xef\x8d\x50\xee\x8e\x4e\xef\x8d\x4f\xee\x8d\x4f\ +\xed\x8d\x4e\xee\x8c\x4e\xee\x8c\x4f\xed\x8d\x4e\xee\x8e\x4d\xec\ +\x8d\x4d\xec\x8d\x4f\xed\x8c\x4d\xec\x8c\x4c\xec\x8c\x4c\xec\x8b\ +\x4d\xed\x8c\x4d\xed\x8b\x4c\xec\x8b\x4b\xed\x8c\x4e\xed\x8b\x4d\ +\xed\x8c\x4c\xed\x8c\x4c\xec\x8b\x4d\xec\x8c\x4d\xec\x8c\x4c\xec\ +\x8b\x4d\xeb\x8c\x4d\xed\x8d\x4c\xed\x8a\x4f\xeb\x8c\x4e\xec\x8c\ +\x4e\xee\x8c\x4d\xec\x8c\x4c\xea\x8d\x4e\xec\x8c\x4d\xed\x8c\x4f\ +\xed\x8d\x4f\xec\x8d\x4f\xea\x8c\x50\xed\x8d\x4e\xec\x8d\x4e\xec\ +\x8c\x4e\xed\x8d\x4f\xe9\x8d\x50\xeb\x8c\x50\xed\x8c\x50\xeb\x8e\ +\x4f\xeb\x8e\x51\xec\x8e\x51\xeb\x90\x53\xeb\x8f\x53\xeb\x90\x52\ +\xea\x90\x53\xea\x90\x53\xea\x91\x54\xea\x90\x55\xea\x90\x56\xe9\ +\x9d\x6b\xe5\xb9\x9c\xe1\xcd\xbb\xe4\xd8\xcf\xe8\xe1\xda\xed\xe6\ +\xe3\xf0\xec\xe8\xf1\xec\xea\xf0\xeb\xe9\xef\xe9\xe6\xee\xe8\xe5\ +\xee\xe7\xe4\xeb\xe6\xe1\xec\xe6\xe1\xeb\xe4\xde\xea\xe3\xdb\xe9\ +\xe1\xd9\xe8\xdf\xd5\xe6\xdb\xcf\xe5\xd7\xc8\xe5\xd8\xc9\xe6\xd9\ +\xcb\xe5\xd8\xca\xe3\xd3\xc3\xe0\xcd\xbb\xe2\xd0\xbe\xe1\xcf\xbf\ +\xe0\xc9\xb6\xe1\xc6\xb2\xe2\xc4\xae\xe4\xbc\xa0\xe7\xb3\x92\xe8\ +\xac\x86\xe8\xb0\x8a\xe7\xb2\x92\xe9\x9c\x6c\xe9\x8d\x51\xe8\x8b\ +\x4c\xe9\x89\x4d\xe9\x89\x4b\xea\x89\x4c\xe9\x89\x4c\xea\x89\x4b\ +\xeb\x8a\x4a\xe9\x88\x4b\xea\x88\x4b\xe9\x88\x4a\xe9\x89\x4b\xea\ +\x88\x4b\xe9\x88\x48\xea\x87\x49\xe9\x88\x47\xe9\x88\x47\xe9\x88\ +\x46\xe9\x88\x48\xe9\x88\x46\xe9\x87\x48\xe9\x87\x47\xe8\x87\x48\ +\xe8\x87\x46\xe8\x87\x46\xe7\x85\x44\xe7\x86\x43\xe7\x86\x43\xe7\ +\x86\x44\xe7\x85\x44\xe8\x86\x46\xe8\x84\x43\xe8\x85\x43\xe8\x84\ +\x43\xe8\x84\x44\xe9\x85\x44\xe7\x84\x42\xe8\x83\x43\xe7\x83\x42\ +\xe7\x83\x43\xe7\x83\x42\xe6\x83\x41\xe7\x83\x40\xe6\x83\x41\xe6\ +\x82\x3f\xe6\x81\x41\xe7\x82\x42\xe6\x82\x42\xe7\x83\x40\xe5\x84\ +\x43\xe4\x83\x45\xeb\x88\x47\xad\x6f\x51\xe4\x85\x4a\xda\x85\x50\ +\xe5\x87\x50\xcb\x82\x55\x76\x5a\x47\x3f\x3f\x35\x9d\x67\x3d\xc0\ +\x7e\x54\xc6\x7f\x55\xca\x87\x5f\xa6\x72\x51\x5e\x61\x61\x3f\x4b\ +\x53\x2f\x44\x4a\x2b\x36\x37\x2c\x3d\x38\x00\x00\x00\xef\x8e\x50\ +\xee\x8e\x4f\xef\x8e\x4e\xee\x8d\x4d\xed\x8e\x4e\xec\x8d\x50\xee\ +\x8c\x4d\xec\x8d\x4c\xeb\x8c\x4e\xed\x8c\x4c\xec\x8c\x4d\xec\x8c\ +\x4c\xee\x8c\x4e\xed\x8c\x4c\xed\x8c\x4b\xec\x8b\x4d\xec\x8c\x4d\ +\xec\x8c\x4d\xed\x8c\x4c\xec\x8c\x4b\xeb\x8c\x4d\xed\x8b\x4d\xec\ +\x8c\x4c\xec\x8c\x4c\xed\x8c\x4c\xec\x8c\x4b\xec\x8b\x4c\xec\x8c\ +\x4b\xeb\x8c\x4c\xec\x8c\x4e\xec\x8d\x4c\xec\x8b\x4f\xeb\x8c\x4e\ +\xec\x8b\x4e\xeb\x8c\x4e\xeb\x8c\x4e\xeb\x8c\x4f\xeb\x8d\x50\xeb\ +\x8c\x50\xea\x8c\x4f\xec\x8c\x4e\xeb\x8d\x4e\xea\x8c\x50\xeb\x8d\ +\x4f\xeb\x8c\x4f\xeb\x8b\x50\xed\x8c\x50\xeb\x8e\x4e\xe9\x8e\x50\ +\xec\x8d\x4f\xeb\x90\x52\xea\x8f\x51\xea\x8f\x52\xea\x90\x52\xe8\ +\x8f\x52\xea\x90\x53\xea\x92\x58\xea\x99\x65\xe7\xa2\x78\xe2\xb8\ +\x9d\xe0\xce\xbe\xe3\xd7\xcd\xe8\xe0\xd8\xec\xe6\xe3\xf2\xed\xea\ +\xf1\xed\xeb\xf1\xed\xea\xf0\xeb\xe8\xf0\xeb\xe8\xf0\xeb\xe6\xed\ +\xe7\xe4\xec\xe8\xe3\xeb\xe7\xe2\xec\xe5\xe0\xea\xe4\xde\xea\xe2\ +\xda\xe8\xe0\xd7\xe9\xdf\xd5\xe9\xdf\xd5\xe8\xdf\xd5\xe7\xdd\xd4\ +\xe4\xd8\xcc\xe2\xd4\xc6\xe3\xd4\xc5\xe5\xd7\xc8\xe1\xd1\xc1\xdf\ +\xc8\xb6\xe0\xc4\xb2\xe0\xb9\xa1\xe2\xa8\x88\xe4\xa6\x81\xe7\xb5\ +\x94\xe5\xbb\x9e\xe8\xa9\x81\xe8\x93\x5b\xe7\x8b\x4f\xe8\x8b\x4e\ +\xe8\x89\x4b\xe9\x89\x4b\xea\x89\x4c\xeb\x89\x4b\xea\x8a\x4a\xea\ +\x89\x4a\xea\x88\x4a\xe9\x88\x4b\xe9\x8a\x4f\xeb\x89\x4a\xe9\x88\ +\x4b\xe9\x89\x49\xe9\x87\x49\xea\x89\x48\xe9\x89\x49\xe9\x88\x49\ +\xe8\x89\x47\xe8\x87\x47\xe9\x87\x48\xe8\x87\x46\xe8\x86\x45\xe7\ +\x87\x46\xe8\x86\x46\xe7\x86\x42\xe7\x86\x43\xe8\x85\x44\xe7\x85\ +\x43\xe7\x84\x43\xe7\x85\x42\xe7\x85\x43\xe8\x84\x44\xe8\x84\x43\ +\xe9\x85\x44\xe6\x84\x44\xe6\x83\x43\xe7\x83\x42\xe6\x83\x42\xe6\ +\x83\x41\xe7\x82\x42\xe6\x82\x42\xe6\x82\x41\xe7\x82\x3e\xe7\x81\ +\x40\xe6\x82\x41\xe5\x82\x40\xe7\x82\x3e\xe7\x83\x42\xe7\x84\x44\ +\xe9\x86\x43\xc9\x7d\x4f\xdc\x84\x4e\xc3\x7e\x57\x82\x5d\x48\x4b\ +\x42\x3c\x4c\x41\x34\x7e\x52\x30\xca\x7f\x55\x99\x6d\x56\x77\x5d\ +\x4c\x5d\x52\x4b\x45\x4b\x4e\x37\x48\x4c\x2e\x3c\x44\x2e\x3a\x36\ +\x30\x3b\x35\x21\x33\x2f\x00\x00\x00\xef\x8d\x4f\xef\x8d\x4f\xee\ +\x8c\x4e\xee\x8d\x4c\xed\x8c\x4f\xed\x8d\x4d\xee\x8d\x4c\xec\x8c\ +\x4c\xed\x8d\x4c\xed\x8c\x4d\xed\x8b\x4c\xec\x8c\x4c\xec\x8c\x4c\ +\xed\x8d\x4d\xed\x8c\x4d\xed\x8b\x4d\xec\x8b\x4c\xec\x8b\x4c\xec\ +\x8b\x4b\xec\x8b\x4c\xeb\x8c\x4c\xec\x8c\x4c\xed\x8b\x4d\xee\x8c\ +\x4c\xec\x8b\x4c\xed\x8c\x4c\xed\x8c\x4c\xed\x8c\x4d\xec\x8c\x4c\ +\xec\x8c\x4d\xeb\x8b\x4e\xeb\x8b\x4d\xeb\x8b\x4d\xeb\x8c\x4d\xea\ +\x8d\x4e\xec\x8c\x4d\xeb\x8c\x4f\xeb\x8c\x4f\xee\x8c\x4e\xec\x8c\ +\x4f\xea\x8c\x4f\xea\x8d\x4f\xeb\x8d\x4d\xeb\x8c\x4d\xeb\x8c\x50\ +\xea\x8c\x4e\xea\x8d\x50\xea\x8d\x4d\xea\x8d\x4e\xec\x8c\x4e\xed\ +\x8d\x4f\xeb\x8f\x4f\xea\x8f\x51\xe9\x90\x52\xe9\x8e\x4f\xe9\x92\ +\x57\xea\x9b\x67\xe9\x9a\x69\xe7\x9e\x70\xe4\xc1\xa7\xe3\xd3\xc7\ +\xe5\xda\xd0\xea\xe1\xdc\xeb\xe5\xe1\xf1\xec\xea\xf3\xed\xed\xf3\ +\xef\xeb\xf1\xec\xe9\xf2\xed\xe9\xee\xe9\xe6\xef\xe8\xe5\xee\xe8\ +\xe4\xee\xe8\xe4\xed\xe6\xe2\xe9\xe5\xe0\xeb\xe4\xdf\xeb\xe3\xdd\ +\xea\xe3\xdb\xea\xe1\xdb\xea\xe2\xdb\xe8\xe1\xd8\xe7\xdb\xd3\xe7\ +\xdb\xd0\xe6\xd9\xcd\xe7\xda\xd1\xe4\xd8\xcd\xe0\xcb\xb9\xdf\xbc\ +\xa7\xe3\xaf\x94\xe7\xa6\x7f\xe7\xa6\x79\xe4\xb6\x9b\xe3\xbd\xa5\ +\xe6\xb6\x97\xe8\x9f\x6b\xe9\x92\x5a\xe8\x8b\x52\xe9\x88\x4d\xea\ +\x89\x4b\xe9\x88\x4d\xe9\x88\x4a\xea\x89\x4b\xe9\x89\x49\xeb\x89\ +\x4c\xea\x8a\x4f\xe8\x8b\x4e\xe8\x8d\x50\xe9\x8b\x4f\xea\x8d\x51\ +\xe9\x89\x49\xe9\x88\x48\xe9\x88\x48\xe9\x88\x48\xe9\x89\x48\xe8\ +\x88\x47\xe7\x87\x46\xe8\x88\x47\xe7\x87\x46\xe7\x86\x45\xe8\x86\ +\x45\xe8\x84\x44\xe8\x85\x45\xe7\x84\x42\xe7\x85\x44\xe7\x85\x43\ +\xe8\x85\x43\xe7\x84\x43\xe7\x83\x45\xe7\x84\x44\xe8\x84\x43\xe7\ +\x84\x43\xe7\x84\x44\xe6\x83\x42\xe6\x82\x40\xe7\x82\x41\xe6\x83\ +\x41\xe7\x82\x42\xe8\x81\x40\xe6\x81\x3f\xe6\x81\x40\xe7\x82\x41\ +\xe6\x81\x3e\xe6\x82\x40\xe7\x83\x3f\xe7\x83\x41\xe8\x85\x41\xe4\ +\x84\x47\xd2\x7f\x4f\x8e\x62\x4a\x44\x3c\x38\x64\x47\x30\xaf\x6c\ +\x42\xb7\x6f\x46\xc6\x7b\x4d\xbe\x83\x5f\x69\x60\x5a\x3e\x44\x41\ +\x58\x4d\x3f\x59\x5c\x5a\x77\x58\x45\xa9\x72\x4d\x55\x50\x41\x2f\ +\x3e\x36\x00\x00\x00\xef\x8d\x4f\xee\x8c\x4d\xec\x8b\x4e\xea\x8c\ +\x4e\xed\x8c\x4d\xed\x8c\x4d\xec\x8c\x4d\xec\x8b\x4e\xeb\x8b\x4e\ +\xed\x8c\x4b\xeb\x8b\x4d\xec\x8c\x4d\xed\x8c\x4c\xec\x8b\x4b\xec\ +\x8b\x4c\xed\x8c\x4d\xeb\x8c\x4c\xeb\x8c\x4a\xed\x8b\x4d\xec\x8c\ +\x4a\xec\x8b\x4b\xeb\x8a\x4a\xec\x8a\x4d\xec\x8b\x4d\xed\x8b\x4c\ +\xec\x8b\x4e\xec\x8c\x4b\xed\x8b\x4b\xec\x8a\x4b\xec\x8a\x4c\xec\ +\x8c\x4b\xec\x8c\x4d\xeb\x8b\x4d\xed\x8c\x4d\xed\x8b\x4c\xe9\x8d\ +\x4e\xeb\x8b\x4c\xed\x8b\x4d\xeb\x8b\x4e\xe9\x8c\x4e\xeb\x8c\x4f\ +\xea\x8c\x4f\xeb\x8c\x4c\xe9\x8d\x4f\xeb\x8c\x4f\xea\x8c\x50\xe9\ +\x8c\x4e\xeb\x8b\x4e\xea\x8b\x4c\xeb\x8c\x4c\xeb\x8c\x4e\xeb\x8e\ +\x51\xe9\x90\x53\xea\x91\x53\xea\x8f\x52\xea\x94\x5a\xe8\x9c\x6b\ +\xe9\x9e\x6d\xe9\xaf\x82\xe2\xcb\xb7\xe4\xd7\xcd\xe6\xdd\xd3\xeb\ +\xe2\xde\xee\xe7\xe4\xf2\xed\xeb\xf5\xef\xef\xf3\xee\xed\xf2\xed\ +\xeb\xf1\xec\xe9\xef\xea\xe7\xed\xe8\xe5\xed\xe7\xe4\xee\xe7\xe4\ +\xef\xe8\xe5\xeb\xe8\xe2\xe9\xe5\xe0\xe9\xe5\xe0\xeb\xe4\xe0\xeb\ +\xe4\xe0\xec\xe4\xe0\xeb\xe2\xde\xe8\xe1\xd8\xe7\xdd\xd6\xe8\xde\ +\xd5\xe7\xdb\xd3\xe4\xd8\xce\xdf\xcb\xbd\xe0\xbc\xa6\xe4\xad\x8c\ +\xe5\xae\x8c\xe6\xaf\x8b\xe3\xb3\x96\xe3\xb8\x9d\xe5\xbc\xa3\xe8\ +\xad\x89\xe7\x94\x62\xe8\x8c\x53\xe9\x89\x4d\xe8\x89\x4b\xe9\x89\ +\x4a\xe9\x89\x4c\xea\x89\x49\xe8\x88\x4c\xea\x89\x49\xe9\x8a\x4d\ +\xe7\x8c\x51\xe6\x8b\x50\xe7\x8b\x53\xe8\x8d\x56\xe8\x8a\x4f\xe9\ +\x87\x49\xe9\x87\x48\xe8\x88\x4a\xe9\x87\x47\xe8\x88\x48\xe9\x87\ +\x48\xe9\x86\x47\xe7\x86\x46\xe7\x87\x45\xe7\x84\x42\xe7\x86\x45\ +\xe7\x86\x45\xe8\x85\x43\xe7\x84\x44\xe8\x85\x43\xe7\x84\x42\xe8\ +\x85\x45\xe8\x84\x45\xe6\x83\x42\xe6\x83\x42\xe6\x82\x41\xe7\x83\ +\x42\xe7\x83\x43\xe6\x82\x40\xe6\x83\x42\xe7\x81\x3f\xe6\x81\x41\ +\xe7\x81\x3f\xe6\x81\x3e\xe7\x82\x40\xe7\x81\x3d\xe6\x81\x40\xe5\ +\x81\x41\xe7\x82\x3e\xe8\x83\x42\xe8\x84\x43\xe4\x82\x44\xbe\x74\ +\x49\xc9\x75\x46\xc9\x79\x47\xde\x7f\x3f\xd9\x82\x51\xe7\x8a\x4c\ +\xd9\x89\x59\x92\x72\x5d\x46\x4a\x4f\x37\x40\x3a\x59\x4b\x3c\x81\ +\x64\x5a\x7b\x5a\x41\x50\x44\x38\x37\x42\x3e\x44\x43\x36\x00\x00\ +\x00\xed\x8c\x4d\xec\x8c\x4c\xec\x8c\x4c\xeb\x8c\x4c\xec\x8c\x4c\ +\xec\x8c\x4c\xec\x8c\x4c\xeb\x8b\x4d\xeb\x8d\x4c\xec\x8c\x4c\xed\ +\x8b\x4c\xec\x8b\x4b\xec\x8c\x4c\xec\x8b\x4a\xed\x8c\x4c\xeb\x8c\ +\x4b\xeb\x8c\x4a\xec\x8b\x4a\xec\x8a\x4c\xec\x8b\x4b\xec\x8b\x4c\ +\xec\x8b\x4c\xeb\x8b\x4c\xec\x8b\x4b\xed\x8c\x4c\xeb\x8c\x4c\xec\ +\x8c\x4c\xec\x8c\x4c\xec\x8c\x4a\xec\x8a\x4d\xeb\x8b\x4c\xec\x8c\ +\x4b\xed\x8b\x4b\xeb\x8b\x4d\xec\x8b\x4c\xeb\x8c\x4d\xeb\x8b\x4d\ +\xed\x8c\x4c\xeb\x8b\x4e\xea\x8b\x4d\xeb\x8c\x4c\xea\x8a\x4f\xea\ +\x8b\x4e\xeb\x8b\x4f\xea\x8b\x4d\xe8\x8c\x4e\xea\x8c\x4d\xea\x8b\ +\x4d\xea\x8c\x4e\xea\x8e\x50\xe9\x8f\x52\xe9\x8e\x51\xe9\x93\x58\ +\xec\x9c\x67\xec\x9f\x6a\xeb\xa0\x6e\xe8\xa7\x79\xe9\xaf\x86\xe2\ +\xc3\xa8\xe1\xd1\xc3\xe6\xdb\xd2\xe7\xde\xd6\xeb\xe4\xdf\xee\xe9\ +\xe6\xf4\xef\xed\xf5\xf0\xef\xf3\xef\xef\xf3\xee\xeb\xf1\xec\xe9\ +\xef\xea\xe7\xee\xe7\xe4\xee\xe8\xe5\xee\xe9\xe6\xee\xe9\xe6\xed\ +\xe8\xe4\xed\xe6\xe3\xeb\xe6\xe1\xeb\xe5\xe1\xea\xe5\xe0\xea\xe5\ +\xdf\xed\xe4\xdf\xe9\xe2\xdb\xe9\xe1\xd8\xe9\xe0\xd7\xe6\xdb\xd3\ +\xe3\xd6\xcd\xdf\xce\xbe\xe0\xbf\xa9\xe4\xb5\x97\xe4\xaf\x8f\xe3\ +\xb4\x96\xe4\xb9\x9c\xe4\xb9\x9d\xe4\xb9\xa0\xe5\xb4\x9b\xe9\x9b\ +\x6a\xe8\x93\x59\xe6\x8b\x4f\xe6\x89\x4d\xe7\x8a\x4d\xe7\x89\x4f\ +\xe9\x89\x4a\xea\x88\x4b\xea\x8a\x4d\xe8\x8d\x51\xe7\x8d\x54\xe8\ +\x8a\x4e\xe7\x89\x4f\xe7\x8b\x53\xe8\x89\x4c\xe9\x88\x49\xe9\x88\ +\x49\xe9\x88\x48\xe9\x87\x48\xe8\x87\x47\xe8\x87\x48\xe8\x86\x4a\ +\xe9\x86\x46\xe8\x87\x45\xe8\x85\x43\xe7\x84\x44\xe8\x85\x44\xe9\ +\x84\x43\xe8\x84\x44\xe8\x85\x45\xe7\x84\x44\xe6\x84\x43\xe7\x83\ +\x42\xe7\x83\x43\xe7\x82\x42\xe6\x83\x40\xe6\x82\x41\xe6\x82\x40\ +\xe7\x82\x41\xe6\x82\x41\xe7\x82\x40\xe5\x82\x40\xe6\x81\x3f\xe7\ +\x80\x3f\xe6\x81\x3e\xe6\x80\x40\xe7\x82\x3e\xe7\x81\x3f\xe7\x82\ +\x40\xe7\x82\x40\xe9\x84\x44\xd3\x78\x41\xd7\x80\x49\xe8\x88\x4b\ +\xde\x87\x4f\xc6\x7f\x52\xc0\x74\x4c\xc4\x78\x50\xae\x73\x50\xa5\ +\x6a\x4b\x63\x56\x4e\x3f\x41\x3e\x3c\x3b\x32\x74\x56\x45\x71\x55\ +\x3c\x78\x5a\x42\x2c\x3b\x38\x2d\x2c\x22\x00\x00\x00\xed\x8c\x4c\ +\xed\x8c\x4c\xec\x8c\x4c\xed\x8c\x4c\xec\x8b\x4c\xec\x8b\x4c\xec\ +\x8b\x4c\xed\x8b\x4c\xeb\x8b\x4d\xea\x8b\x4c\xed\x8c\x4c\xed\x8b\ +\x4c\xeb\x8b\x4b\xed\x8c\x4c\xec\x8b\x4b\xec\x8b\x4c\xec\x8b\x4b\ +\xec\x8c\x49\xeb\x8b\x4d\xec\x8b\x4c\xec\x8b\x4b\xec\x8b\x4c\xec\ +\x8b\x4b\xed\x8c\x4d\xec\x8c\x4c\xea\x8c\x4e\xeb\x8c\x4c\xec\x8c\ +\x4c\xeb\x8b\x4c\xeb\x8a\x4d\xec\x8b\x4d\xeb\x8b\x4a\xec\x8b\x4b\ +\xeb\x8b\x4d\xea\x8c\x4d\xea\x8a\x4e\xec\x8b\x4c\xec\x8b\x4d\xeb\ +\x8a\x4e\xea\x8b\x4d\xec\x8b\x4d\xe9\x8b\x4d\xe9\x8a\x4c\xea\x8b\ +\x4d\xea\x8d\x4f\xe9\x8e\x4f\xea\x8d\x4f\xe8\x8c\x4f\xe9\x90\x52\ +\xe9\x91\x56\xe9\x91\x54\xe8\x8e\x52\xe8\x96\x5f\xe9\xa1\x73\xe9\ +\xa8\x7e\xe7\xa3\x78\xe6\xa8\x81\xe2\xc0\xa5\xe1\xcb\xb8\xe0\xd0\ +\xc1\xe4\xd9\xd0\xe9\xe1\xdb\xec\xe5\xe1\xf0\xeb\xe8\xf4\xef\xef\ +\xf5\xf1\xf1\xf4\xf0\xf0\xf3\xef\xec\xf2\xed\xea\xf1\xec\xe9\xee\ +\xe9\xe6\xed\xe8\xe5\xef\xea\xe7\xf0\xeb\xe8\xee\xe9\xe6\xed\xe7\ +\xe4\xed\xe5\xe2\xeb\xe5\xe1\xea\xe5\xe0\xeb\xe5\xdf\xed\xe5\xe1\ +\xeb\xe3\xde\xe9\xe2\xda\xe8\xe1\xd8\xe6\xdc\xd4\xe3\xd6\xcc\xe0\ +\xce\xbf\xdf\xc6\xb0\xe1\xc6\xae\xe2\xbf\xa5\xe2\xbc\xa1\xe3\xbd\ +\xa5\xe4\xbf\xa6\xe4\xba\xa0\xe5\xb6\x9a\xe8\xa9\x86\xe6\x96\x64\ +\xe6\x8a\x50\xe7\x8a\x4d\xe7\x8a\x4c\xe7\x8b\x52\xe7\x8a\x4d\xe8\ +\x89\x4a\xe8\x8e\x51\xe7\x8d\x53\xe7\x8c\x53\xe8\x8a\x4e\xe7\x89\ +\x4b\xe7\x88\x4c\xe8\x88\x49\xe8\x88\x47\xe8\x88\x48\xe9\x88\x49\ +\xe8\x87\x49\xe8\x87\x47\xe8\x87\x47\xe8\x87\x48\xe8\x87\x46\xe8\ +\x87\x46\xe8\x85\x42\xe7\x85\x42\xe6\x85\x44\xe7\x85\x43\xe8\x84\ +\x44\xe7\x84\x44\xe7\x85\x42\xe6\x84\x43\xe6\x83\x42\xe7\x83\x42\ +\xe6\x83\x41\xe6\x82\x41\xe7\x81\x40\xe6\x81\x40\xe6\x82\x3f\xe7\ +\x82\x40\xe6\x82\x3f\xe6\x81\x3f\xe5\x81\x3e\xe6\x80\x3e\xe6\x80\ +\x3f\xe7\x7f\x3e\xe7\x81\x40\xe7\x80\x3e\xe8\x82\x40\xe9\x81\x40\ +\xe5\x82\x43\xd9\x79\x3f\xd5\x7f\x4b\xca\x7c\x4e\xce\x7f\x4d\x8b\ +\x64\x52\x8c\x5b\x42\x87\x60\x4a\xbc\x76\x4e\x9c\x6a\x4d\x61\x55\ +\x4e\x2b\x38\x3b\x44\x47\x3f\x43\x3e\x2e\x3b\x38\x2d\x3f\x3a\x2e\ +\x4b\x3c\x2b\x4e\x3f\x2e\x00\x00\x00\xed\x8b\x4c\xed\x8c\x4d\xed\ +\x8c\x4c\xec\x8b\x4c\xec\x8b\x4b\xeb\x8b\x4c\xec\x8b\x4b\xed\x8d\ +\x4a\xed\x8b\x4b\xeb\x8b\x4b\xeb\x8b\x4b\xee\x8c\x4d\xec\x8c\x4b\ +\xed\x8c\x4d\xec\x8b\x4b\xec\x8b\x4c\xeb\x8a\x4a\xeb\x8c\x4b\xeb\ +\x8a\x4a\xeb\x8a\x4a\xea\x8a\x4a\xeb\x8b\x4a\xeb\x8b\x4a\xec\x8b\ +\x4c\xeb\x8b\x4b\xec\x8b\x4d\xec\x8b\x4b\xec\x8b\x4c\xeb\x8b\x4e\ +\xec\x8b\x4b\xec\x8a\x4e\xec\x8b\x4c\xeb\x8c\x4b\xea\x8c\x4d\xe9\ +\x8b\x4f\xec\x8b\x4c\xeb\x8b\x4d\xeb\x8b\x4c\xea\x8a\x4e\xeb\x8b\ +\x4c\xeb\x8a\x4c\xea\x8a\x4b\xe9\x8b\x4c\xe9\x8b\x4c\xe9\x91\x56\ +\xea\x94\x59\xec\x95\x57\xed\x9b\x60\xeb\x9a\x60\xea\x94\x5b\xea\ +\x95\x5d\xe9\x94\x58\xe9\x95\x5f\xe7\xa1\x76\xe7\xa7\x7d\xe8\xa1\ +\x73\xe6\xb0\x8a\xe0\xc4\xad\xe1\xd1\xc0\xe4\xd7\xcb\xe3\xd7\xce\ +\xe5\xdd\xd6\xec\xe5\xe2\xf1\xec\xe9\xf4\xf0\xf1\xf5\xf3\xf3\xf4\ +\xf2\xf1\xf5\xf1\xf0\xf3\xee\xec\xf2\xed\xea\xef\xea\xe7\xed\xe9\ +\xe5\xf0\xeb\xe8\xf1\xec\xe9\xf0\xeb\xe8\xee\xe9\xe6\xee\xe7\xe4\ +\xed\xe6\xe2\xeb\xe5\xe2\xec\xe5\xe1\xea\xe6\xe0\xeb\xe5\xdf\xeb\ +\xe3\xdb\xe9\xe2\xd9\xe7\xdd\xd5\xe5\xd9\xcf\xe1\xd2\xc3\xdf\xcf\ +\xbd\xdf\xcb\xb9\xdf\xc6\xb0\xe1\xbf\xaa\xe1\xbd\xa8\xe1\xbf\xaa\ +\xe4\xbd\xa5\xe4\xb9\xa1\xe4\xa9\x89\xe4\x93\x64\xe6\x89\x4e\xe7\ +\x89\x4d\xe8\x8b\x50\xe8\x8c\x53\xe8\x8c\x4f\xe9\x8e\x4f\xea\x9a\ +\x65\xe8\x97\x64\xe8\x8f\x58\xe7\x8f\x54\xe7\x8c\x4f\xe6\x88\x4c\ +\xe8\x88\x4a\xe9\x88\x4a\xe9\x87\x48\xe8\x87\x48\xe9\x88\x48\xe8\ +\x87\x47\xe8\x87\x47\xe8\x87\x48\xe8\x87\x46\xe8\x87\x46\xe7\x86\ +\x44\xe6\x84\x41\xe6\x84\x42\xe7\x85\x42\xe7\x85\x44\xe5\x85\x44\ +\xe7\x84\x42\xe7\x84\x43\xe7\x84\x43\xe5\x83\x43\xe6\x83\x42\xe6\ +\x81\x41\xe7\x81\x3f\xe7\x81\x3e\xe6\x82\x40\xe6\x81\x41\xe7\x81\ +\x3e\xe6\x80\x3e\xe6\x80\x3e\xe5\x80\x3f\xe5\x7f\x3f\xe6\x7f\x3e\ +\xe6\x81\x40\xe6\x81\x3f\xe7\x82\x3e\xe9\x82\x3f\xde\x7f\x41\xdf\ +\x7c\x3f\xbd\x74\x4a\xcc\x78\x46\xd0\x7b\x4a\xa2\x68\x4d\x94\x68\ +\x52\x7c\x57\x45\x74\x55\x41\x5f\x52\x48\x2c\x38\x38\x26\x3a\x3b\ +\x52\x4d\x3e\x64\x4b\x30\x6e\x51\x3b\x7b\x51\x31\xb9\x72\x3e\x77\ +\x5e\x4d\x00\x00\x00\xed\x8c\x4c\xec\x8c\x4a\xec\x8b\x4c\xec\x8b\ +\x4c\xec\x8b\x4b\xeb\x8a\x4b\xec\x8b\x4b\xec\x8b\x4b\xec\x8a\x4c\ +\xec\x8b\x4b\xeb\x8b\x4b\xec\x8c\x4a\xec\x8b\x4b\xeb\x8a\x4b\xec\ +\x8b\x4a\xeb\x8b\x4a\xeb\x8a\x4a\xeb\x8b\x4b\xeb\x8a\x4a\xea\x89\ +\x49\xeb\x8b\x49\xec\x8b\x4b\xec\x8b\x4a\xeb\x8a\x4b\xec\x8b\x4b\ +\xed\x8b\x4e\xec\x8b\x4a\xea\x8b\x4c\xea\x8a\x4b\xeb\x8a\x4a\xec\ +\x8b\x4c\xec\x8b\x4c\xeb\x8b\x4b\xeb\x8a\x4d\xea\x8a\x4f\xeb\x89\ +\x4f\xea\x8a\x4d\xec\x8b\x4c\xea\x8a\x4c\xe9\x89\x4c\xec\x89\x4c\ +\xea\x89\x4d\xea\x8a\x4c\xea\x8c\x4d\xe9\x8f\x53\xe9\x96\x60\xe9\ +\x9f\x70\xe9\xa6\x7d\xeb\xa5\x78\xea\xa3\x74\xeb\xa4\x75\xeb\x9f\ +\x6b\xea\xa0\x6c\xe8\xa3\x76\xe8\xaf\x8a\xe7\xb0\x8b\xe3\xc1\xa5\ +\xe0\xcc\xba\xe4\xd8\xca\xe5\xd9\xd2\xe4\xd8\xcd\xe7\xde\xd4\xed\ +\xe5\xe2\xf3\xee\xec\xf5\xf3\xf3\xf6\xf4\xf4\xf5\xf3\xf3\xf5\xf3\ +\xf3\xf4\xee\xed\xf1\xec\xe9\xf0\xec\xe8\xef\xea\xe7\xf0\xec\xe7\ +\xf1\xec\xe9\xf0\xec\xe8\xf0\xeb\xe7\xee\xe8\xe5\xee\xe6\xe4\xec\ +\xe6\xe3\xeb\xe4\xe2\xea\xe4\xe0\xeb\xe5\xe0\xea\xe3\xde\xea\xe2\ +\xdb\xe9\xe0\xd7\xe6\xdb\xd3\xe3\xd7\xcc\xe1\xd3\xc5\xe1\xd1\xbf\ +\xdf\xcd\xbc\xdf\xc4\xb1\xe1\xbf\xa9\xe1\xc1\xab\xe2\xbd\xa7\xe3\ +\xb1\x97\xe4\xa5\x80\xe4\x90\x5d\xe6\x8a\x50\xe7\x8a\x50\xe9\x8d\ +\x54\xe9\x96\x5d\xeb\x9d\x66\xed\xa8\x76\xeb\xa3\x76\xe8\xa3\x77\ +\xe7\x99\x68\xe6\x91\x5c\xe8\x8f\x54\xe7\x8d\x52\xe6\x89\x4d\xe9\ +\x87\x4a\xe9\x87\x48\xe8\x88\x47\xe9\x87\x48\xe8\x87\x47\xe7\x87\ +\x48\xe8\x87\x48\xe8\x87\x46\xe8\x86\x45\xe7\x86\x44\xe7\x85\x45\ +\xe7\x84\x44\xe6\x84\x44\xe6\x84\x44\xe5\x84\x44\xe6\x84\x43\xe7\ +\x83\x43\xe7\x83\x42\xe5\x82\x42\xe7\x82\x43\xe6\x82\x3d\xe7\x81\ +\x3f\xe6\x81\x40\xe6\x81\x40\xe6\x81\x40\xe6\x80\x3f\xe5\x80\x3d\ +\xe5\x80\x40\xe5\x80\x3d\xe7\x80\x3e\xe5\x80\x3e\xe6\x80\x3f\xe6\ +\x80\x3d\xe7\x82\x3f\xe8\x82\x40\xdd\x7f\x44\xdd\x7e\x44\xcb\x78\ +\x46\xcc\x7a\x4b\xc2\x70\x45\x8d\x62\x4c\x4e\x48\x4c\x58\x42\x36\ +\x7f\x5a\x38\x66\x54\x40\x56\x50\x41\x5d\x4c\x39\xb1\x6a\x3b\x88\ +\x64\x46\x56\x40\x2a\xca\x7a\x43\xfa\xa2\x67\x7c\x69\x59\x00\x00\ +\x00\xed\x8b\x4b\xed\x8c\x4b\xec\x8a\x4b\xec\x8b\x4a\xeb\x8b\x4a\ +\xeb\x8a\x4b\xec\x8b\x4c\xed\x8b\x4c\xeb\x8c\x4b\xec\x8b\x4a\xec\ +\x8b\x4a\xec\x8b\x4b\xeb\x8a\x4a\xec\x8a\x4a\xeb\x8b\x4c\xeb\x8a\ +\x4c\xec\x8b\x4a\xec\x8b\x4a\xec\x8b\x4b\xeb\x8b\x4c\xea\x8a\x48\ +\xea\x8a\x4a\xeb\x8b\x4c\xec\x8b\x4b\xeb\x8a\x4b\xeb\x8a\x4b\xeb\ +\x8b\x48\xea\x8a\x4b\xec\x8b\x4c\xeb\x8a\x4e\xeb\x8a\x49\xeb\x8a\ +\x4c\xea\x8a\x4e\xea\x89\x4b\xea\x8a\x4c\xeb\x8c\x50\xeb\x8b\x4d\ +\xea\x8a\x4b\xe9\x8b\x4d\xea\x8f\x51\xea\x8f\x52\xea\x8c\x4f\xeb\ +\x8b\x4c\xea\x8f\x53\xe9\x91\x55\xeb\x9e\x6a\xeb\xa6\x79\xea\xaf\ +\x89\xe8\xb3\x92\xe8\xb4\x8f\xe7\xa9\x81\xe9\xa7\x7a\xe8\xa9\x81\ +\xe6\xa5\x7b\xe4\xb4\x96\xe3\xc5\xaa\xdf\xca\xb9\xe0\xd0\xc0\xe6\ +\xda\xd0\xe4\xd9\xd1\xe5\xda\xd1\xe7\xdf\xd7\xed\xe8\xe3\xf4\xef\ +\xed\xf5\xf3\xf3\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf5\xf0\xf1\ +\xf3\xef\xec\xf0\xeb\xe8\xef\xea\xe7\xf0\xeb\xe9\xf0\xeb\xe8\xf1\ +\xec\xea\xf0\xec\xe9\xf0\xeb\xe8\xee\xe9\xe5\xee\xe7\xe4\xec\xe6\ +\xe3\xeb\xe4\xe1\xea\xe6\xe0\xec\xe4\xe0\xea\xe2\xdb\xe8\xe1\xd8\ +\xe7\xde\xd5\xe7\xdb\xd1\xe5\xd9\xce\xe3\xd6\xc9\xe1\xd3\xc4\xe0\ +\xcb\xba\xe0\xc9\xb5\xe1\xc6\xb1\xe1\xc0\xaa\xe3\xb1\x95\xe5\xa4\ +\x7c\xe6\x93\x5e\xe8\x8f\x56\xe7\x8e\x57\xe6\x8f\x5a\xe8\xa1\x72\ +\xe8\xaf\x8c\xe7\xb7\x99\xe7\xba\x9d\xe7\xb2\x92\xe6\xa2\x78\xe6\ +\x96\x62\xe8\x98\x65\xe6\x93\x5e\xe8\x8f\x56\xe8\x8c\x4f\xe8\x88\ +\x47\xe9\x86\x48\xe7\x87\x49\xe8\x88\x47\xe7\x87\x47\xe8\x86\x48\ +\xe9\x87\x46\xe8\x87\x45\xe6\x85\x44\xe7\x85\x44\xe6\x84\x43\xe6\ +\x85\x46\xe6\x84\x44\xe7\x84\x44\xe6\x82\x42\xe5\x83\x40\xe6\x83\ +\x3f\xe6\x82\x42\xe6\x81\x40\xe5\x81\x41\xe4\x81\x40\xe6\x81\x3f\ +\xe5\x81\x3e\xe5\x80\x3e\xe5\x80\x3e\xe5\x80\x3e\xe6\x7f\x3f\xe6\ +\x7f\x3f\xe5\x80\x3c\xe6\x81\x3d\xe7\x7f\x3c\xe7\x7f\x3f\xe6\x80\ +\x3e\xe7\x82\x41\xe2\x81\x42\xd7\x7c\x46\xce\x7c\x48\xc2\x71\x43\ +\xc0\x78\x4c\x6e\x55\x4a\x78\x5f\x50\x70\x53\x40\x96\x60\x3b\xce\ +\x7c\x45\xc3\x77\x47\xd2\x7f\x46\xc3\x7e\x56\x55\x48\x3e\x81\x54\ +\x33\x6a\x4e\x39\x9b\x6d\x48\x45\x4a\x47\x00\x00\x00\xec\x8b\x4c\ +\xec\x8a\x4b\xec\x8b\x4c\xec\x8c\x4a\xec\x8c\x4c\xed\x8c\x4b\xec\ +\x8c\x4b\xeb\x8b\x49\xec\x8a\x4b\xeb\x8a\x4a\xeb\x8b\x49\xeb\x8b\ +\x4b\xeb\x8a\x4b\xeb\x8a\x4a\xeb\x8a\x4b\xeb\x8b\x4a\xea\x8a\x4a\ +\xea\x8a\x49\xeb\x89\x4b\xeb\x8a\x4a\xeb\x8b\x4a\xeb\x8a\x4b\xec\ +\x8a\x4b\xeb\x8b\x49\xeb\x8a\x4a\xeb\x8a\x49\xea\x89\x4b\xea\x89\ +\x4a\xeb\x89\x4d\xeb\x89\x4b\xea\x89\x4a\xeb\x8a\x4c\xea\x89\x4c\ +\xea\x89\x4b\xeb\x8a\x4d\xe8\x8e\x52\xea\x8f\x55\xec\x90\x55\xec\ +\x97\x5f\xec\x9e\x69\xea\x97\x5f\xe8\x8d\x50\xea\x8d\x50\xe9\x93\ +\x5b\xe9\x97\x61\xe7\xa0\x74\xe4\xa6\x80\xe4\xac\x8f\xe4\xb4\x9a\ +\xe2\xbe\xa7\xe5\xb9\x9a\xe6\xb5\x93\xe7\xb3\x8e\xe8\xb4\x8e\xe3\ +\xbf\xa4\xe3\xd2\xc2\xe0\xd0\xbe\xe4\xd7\xc8\xe9\xe0\xd6\xe8\xdf\ +\xd7\xe7\xdf\xd6\xeb\xe3\xdb\xef\xeb\xe6\xf4\xef\xef\xf6\xf4\xf4\ +\xf6\xf4\xf4\xf5\xf3\xf3\xf6\xf4\xf4\xf4\xf1\xf1\xf1\xed\xed\xef\ +\xea\xe6\xed\xe8\xe6\xef\xeb\xe7\xf0\xec\xea\xf1\xed\xea\xf2\xed\ +\xea\xf0\xeb\xe8\xef\xea\xe7\xef\xe8\xe5\xee\xe7\xe4\xec\xe7\xe3\ +\xeb\xe5\xe1\xec\xe5\xe1\xec\xe4\xde\xe9\xe3\xd9\xe8\xe1\xd8\xe7\ +\xde\xd5\xe7\xdb\xd3\xe5\xd9\xcf\xe3\xd6\xcb\xe2\xd4\xc6\xe0\xd1\ +\xbe\xe0\xcc\xbb\xe1\xc6\xb3\xe4\xb5\x99\xe6\xa8\x81\xe7\x9a\x6b\ +\xe8\x99\x62\xe6\x91\x5c\xe6\x8d\x55\xe6\x9c\x6c\xe6\xad\x8b\xe5\ +\xbe\xa2\xe2\xc3\xae\xe4\xba\xa4\xe6\xad\x8c\xe9\xa0\x70\xe8\xa1\ +\x75\xe6\x94\x61\xe9\x92\x5c\xe9\x94\x5f\xea\x92\x56\xe9\x95\x58\ +\xe8\x8f\x55\xe7\x89\x4d\xe8\x86\x47\xe8\x86\x46\xe8\x87\x45\xe6\ +\x85\x45\xe7\x85\x46\xe6\x85\x45\xe7\x87\x45\xe8\x88\x49\xe6\x86\ +\x47\xe5\x83\x43\xe6\x83\x42\xe6\x83\x43\xe5\x82\x42\xe4\x82\x41\ +\xe5\x82\x41\xe7\x82\x3f\xe7\x82\x3d\xe6\x81\x3e\xe6\x80\x3f\xe8\ +\x80\x3f\xe6\x80\x3b\xe6\x7f\x3e\xe6\x80\x3c\xe7\x80\x3f\xe7\x7f\ +\x3c\xe7\x80\x3e\xe6\x80\x3d\xe7\x80\x3d\xe6\x81\x3f\xe7\x81\x40\ +\xe8\x83\x42\xd2\x7a\x43\xca\x75\x40\xc4\x73\x44\x91\x62\x4d\x82\ +\x5c\x46\x6a\x51\x3f\xb5\x70\x42\xdd\x7e\x42\xf0\x8d\x4f\xf3\x8e\ +\x4f\xc8\x82\x59\x65\x54\x48\x78\x53\x32\x85\x62\x43\x63\x45\x2f\ +\x91\x69\x46\x3b\x46\x40\x00\x00\x00\xec\x8b\x4c\xea\x8a\x4c\xed\ +\x8b\x4c\xed\x8c\x4c\xec\x8c\x4c\xec\x8c\x4c\xec\x8b\x4b\xec\x8a\ +\x4c\xeb\x8b\x4a\xec\x8a\x4b\xeb\x8b\x4a\xeb\x8a\x4a\xeb\x8a\x4a\ +\xec\x8a\x4b\xea\x89\x4a\xeb\x8a\x4a\xeb\x8a\x4b\xeb\x8a\x4a\xea\ +\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x89\x4a\xeb\x8a\x4b\xeb\x8a\ +\x4b\xeb\x8a\x4b\xeb\x8a\x4a\xea\x8a\x4b\xea\x89\x49\xea\x89\x4b\ +\xeb\x8a\x4a\xea\x89\x4a\xea\x89\x4b\xeb\x89\x4a\xeb\x8a\x4a\xe9\ +\x8b\x4d\xe8\x8b\x4e\xe7\x8c\x52\xe8\x93\x5e\xe8\x9f\x70\xe9\xa4\ +\x76\xe9\x98\x63\xe9\x91\x57\xe9\x94\x59\xe8\x96\x60\xe6\x93\x5d\ +\xe5\x97\x66\xe6\xa1\x77\xe7\xac\x85\xe6\xb4\x94\xe3\xc0\xa8\xe4\ +\xbc\xa2\xe3\xbe\xa4\xe1\xbd\xa8\xe0\xbd\xa6\xe0\xc9\xb8\xe4\xd9\ +\xcd\xe5\xd9\xcd\xe7\xde\xd4\xea\xe3\xdc\xe8\xe1\xdd\xea\xe2\xdb\ +\xec\xe6\xe0\xef\xeb\xe7\xf2\xed\xed\xf5\xf2\xf2\xf6\xf4\xf4\xf5\ +\xf3\xf3\xf4\xf3\xf3\xf4\xf0\xef\xf2\xec\xea\xee\xe8\xe4\xeb\xe4\ +\xe1\xee\xe8\xe5\xef\xea\xe7\xf2\xed\xea\xf2\xed\xea\xf1\xed\xe9\ +\xf0\xeb\xe8\xf0\xe9\xe6\xef\xe8\xe5\xef\xe8\xe5\xed\xe6\xe3\xeb\ +\xe5\xe2\xeb\xe5\xe0\xeb\xe4\xe0\xea\xe2\xdc\xe9\xe1\xd9\xe8\xdf\ +\xd6\xe7\xdc\xd3\xe6\xda\xd1\xe5\xd8\xcf\xe3\xd5\xc8\xe1\xd2\xc2\ +\xe0\xcb\xba\xe3\xc0\xa9\xe4\xb4\x99\xe4\xa3\x7c\xe7\xa1\x72\xe6\ +\x98\x66\xe6\x93\x5b\xe6\xa4\x79\xe5\xae\x8f\xe2\xba\xa3\xe0\xbf\ +\xac\xe2\xb7\xa0\xe5\xb7\x9b\xe8\xb3\x91\xe8\xb4\x94\xe7\xa4\x79\ +\xe7\x9d\x6c\xe7\x99\x69\xe8\xa0\x71\xe9\xa9\x7e\xe9\xa1\x73\xe9\ +\x90\x59\xe7\x8b\x4d\xe7\x87\x48\xe8\x87\x47\xe6\x86\x46\xe7\x86\ +\x45\xe7\x84\x44\xe7\x87\x4a\xe6\x8a\x54\xe5\x85\x47\xe7\x83\x42\ +\xe6\x82\x42\xe5\x82\x41\xe6\x82\x41\xe4\x82\x42\xe4\x82\x41\xe6\ +\x82\x3f\xe6\x81\x3d\xe6\x80\x3f\xe6\x80\x3e\xe5\x80\x3e\xe7\x80\ +\x3d\xe6\x7f\x3f\xe5\x80\x3e\xe7\x80\x3d\xe7\x7f\x3c\xe5\x80\x3c\ +\xe7\x7f\x3e\xe7\x80\x3d\xe7\x81\x40\xe7\x82\x42\xe6\x83\x41\xc3\ +\x71\x44\xd9\x7a\x3e\xb6\x6e\x46\xa3\x64\x43\xa1\x67\x44\xb0\x69\ +\x36\xdd\x85\x4f\xe4\x85\x4a\xec\x89\x4b\xf0\x8c\x4f\xc2\x7e\x55\ +\x93\x67\x45\x6e\x52\x39\x5f\x50\x40\x18\x2b\x29\x38\x3b\x2f\x3e\ +\x4c\x45\x00\x00\x00\xed\x8b\x4d\xec\x8c\x4b\xec\x8b\x4d\xec\x8b\ +\x4c\xec\x8b\x4b\xec\x8b\x4c\xed\x8b\x4b\xec\x8a\x4d\xeb\x8b\x4a\ +\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8b\x4b\xeb\ +\x8a\x4a\xeb\x8a\x4b\xeb\x89\x4b\xea\x89\x4c\xeb\x8a\x4e\xea\x89\ +\x4e\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\x4b\xea\x89\x4b\xea\x89\x4a\ +\xea\x89\x4a\xea\x89\x4a\xea\x89\x4a\xea\x89\x4b\xea\x89\x4b\xea\ +\x89\x49\xea\x89\x4a\xeb\x8a\x4c\xe9\x8b\x4d\xe7\x8d\x52\xe8\x8b\ +\x4e\xe8\x8b\x4c\xea\x91\x59\xe8\x9a\x69\xe9\xa2\x75\xea\xa0\x70\ +\xe9\x97\x63\xe8\x93\x5c\xe7\x91\x58\xe8\x90\x57\xe8\x97\x62\xe8\ +\xaa\x81\xe5\xb9\x9d\xe4\xbf\xa7\xe2\xc4\xaf\xe2\xc3\xae\xe2\xbe\ +\xa5\xe2\xb6\x9c\xe2\xb2\x98\xe1\xc6\xb3\xe2\xd6\xcc\xe5\xda\xd2\ +\xe7\xde\xd9\xea\xe1\xde\xe9\xe0\xdc\xeb\xe4\xe0\xed\xe7\xe3\xef\ +\xe9\xe6\xf0\xeb\xe9\xf3\xef\xef\xf5\xf3\xf3\xf5\xf3\xf3\xf6\xf4\ +\xf4\xf5\xf3\xf1\xf4\xf0\xee\xf1\xec\xe8\xed\xe6\xe2\xed\xe7\xe4\ +\xee\xea\xe7\xef\xeb\xe8\xf1\xec\xe9\xf2\xed\xea\xf1\xec\xe9\xf1\ +\xec\xe9\xef\xeb\xe8\xf0\xe9\xe6\xee\xe8\xe5\xed\xe8\xe4\xec\xe6\ +\xe2\xe9\xe6\xe1\xeb\xe5\xe0\xec\xe3\xde\xe8\xe1\xd8\xe8\xe0\xd7\ +\xe7\xde\xd5\xe7\xdb\xd3\xe4\xd8\xcd\xe2\xd5\xca\xe1\xd1\xc2\xe0\ +\xc4\xb0\xe4\xb5\x9b\xe3\xa5\x81\xe4\x9e\x74\xe5\x9d\x70\xe8\xa6\ +\x76\xe7\xaf\x8b\xe4\xa9\x86\xe3\xb8\x9f\xe1\xba\xa4\xe4\xb6\x9c\ +\xe3\xbf\xa7\xe3\xc0\xaa\xe2\xc0\xab\xe5\xb9\x9d\xe7\xab\x84\xe8\ +\xa4\x77\xe9\xa6\x79\xe8\xae\x89\xe9\xb4\x94\xea\xa9\x7f\xe7\x98\ +\x67\xe6\x8b\x4f\xe7\x87\x4a\xe5\x86\x49\xe7\x85\x44\xe6\x84\x45\ +\xe7\x87\x48\xe4\x87\x4d\xe5\x84\x44\xe6\x82\x43\xe6\x83\x43\xe5\ +\x82\x42\xe5\x81\x40\xe6\x82\x3f\xe4\x81\x3f\xe5\x80\x40\xe6\x80\ +\x3d\xe6\x80\x3f\xe6\x80\x3f\xe6\x80\x3f\xe6\x80\x40\xe7\x80\x3f\ +\xe7\x80\x3e\xe6\x80\x3e\xe6\x80\x3c\xe5\x7f\x3f\xe7\x7f\x3e\xe6\ +\x7f\x3f\xe6\x80\x3e\xe8\x81\x3e\xd8\x7b\x40\xd3\x78\x41\xce\x77\ +\x43\xac\x6a\x46\xa9\x65\x41\xcb\x77\x41\xd5\x7e\x4b\xdb\x82\x4e\ +\xe8\x84\x48\xec\x86\x47\xed\x89\x4d\x79\x5a\x47\x54\x48\x3b\x6c\ +\x4e\x31\x6f\x51\x37\x3e\x42\x33\x31\x46\x3d\x27\x47\x46\x00\x00\ +\x00\xec\x8b\x4b\xed\x8b\x4c\xeb\x8b\x4b\xec\x8a\x4b\xec\x8a\x4b\ +\xec\x8a\x4b\xeb\x8a\x4b\xeb\x89\x4a\xec\x8b\x4b\xeb\x8a\x4c\xeb\ +\x89\x4c\xeb\x89\x4c\xeb\x89\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xeb\x8a\ +\x4a\xec\x8a\x4b\xea\x8a\x4c\xeb\x89\x4b\xea\x8a\x4d\xeb\x8a\x4a\ +\xea\x8a\x4c\xea\x8a\x4b\xeb\x89\x4a\xea\x8a\x49\xe9\x89\x49\xe9\ +\x89\x4c\xeb\x89\x4c\xea\x89\x4d\xea\x8a\x4c\xe9\x89\x4b\xeb\x8a\ +\x49\xea\x8b\x4c\xe9\x8c\x4d\xe8\x8c\x4f\xe9\x8e\x53\xe8\x8b\x4e\ +\xe7\x8f\x59\xe8\x99\x68\xe8\xa0\x75\xe9\xa3\x76\xe7\x98\x65\xe7\ +\x8e\x55\xe8\x90\x57\xe9\x9c\x67\xe9\xa7\x7a\xe7\xb4\x95\xe4\xb8\ +\x9f\xe1\xc4\xb0\xe1\xc6\xb2\xe1\xc7\xb4\xe1\xc6\xb0\xe3\xbb\x9f\ +\xe2\xbe\xa3\xe1\xce\xbd\xe3\xd5\xcb\xe5\xd9\xd1\xe6\xdc\xd6\xe5\ +\xdb\xd8\xe7\xdf\xd9\xeb\xe4\xe0\xed\xe6\xe2\xee\xe7\xe4\xed\xe7\ +\xe4\xf1\xec\xea\xf3\xef\xf0\xf5\xf3\xf3\xf6\xf5\xf4\xf7\xf5\xf5\ +\xf6\xf3\xf4\xf4\xf0\xef\xf3\xed\xe9\xf1\xec\xe9\xef\xea\xe7\xef\ +\xe8\xe5\xf0\xea\xe7\xf1\xed\xea\xf2\xed\xea\xf2\xed\xea\xf2\xed\ +\xea\xf1\xeb\xe8\xf0\xea\xe7\xef\xe8\xe5\xee\xe7\xe4\xec\xe5\xe2\ +\xeb\xe5\xe1\xec\xe5\xe0\xec\xe3\xdd\xe9\xe2\xd9\xe9\xe0\xd7\xe7\ +\xde\xd5\xe7\xda\xd1\xe4\xd7\xce\xe2\xd4\xc7\xe0\xc9\xb7\xdf\xb8\ +\xa2\xe2\xa1\x7b\xe8\xa4\x77\xe7\xb5\x8e\xe4\xc5\xa9\xe5\xc8\xaf\ +\xe6\xbe\xa2\xe2\xbe\xa4\xe0\xc4\xae\xe2\xc5\xad\xe0\xc9\xb5\xdf\ +\xcb\xb9\xe1\xcb\xb7\xe1\xc6\xb2\xe2\xbe\xa6\xe5\xba\x9d\xe6\xb8\ +\x9a\xe5\xb5\x97\xe6\xbd\xa4\xe7\xb6\x9c\xe9\xa8\x7e\xe8\x9a\x68\ +\xe6\x89\x4e\xe6\x84\x46\xe5\x84\x43\xe5\x85\x45\xe6\x87\x49\xe5\ +\x85\x48\xe6\x85\x45\xe4\x83\x44\xe6\x82\x41\xe6\x81\x40\xe5\x81\ +\x3f\xe6\x80\x40\xe5\x80\x3f\xe6\x80\x3e\xe5\x7f\x40\xe6\x7f\x3e\ +\xe5\x7f\x3d\xe6\x81\x3f\xe5\x80\x40\xe7\x80\x3d\xe8\x80\x3c\xe6\ +\x7f\x3b\xe6\x7f\x3d\xe6\x7f\x3e\xe5\x7f\x3d\xe7\x7f\x3d\xe7\x80\ +\x3e\xe8\x80\x3c\xd9\x7b\x40\xd4\x7e\x4a\xd0\x76\x42\xa9\x69\x46\ +\xca\x74\x42\xd5\x7b\x47\xd7\x7e\x49\xe7\x82\x46\xeb\x83\x44\xde\ +\x7f\x46\xad\x69\x3f\x96\x5b\x32\xc1\x73\x3c\xd4\x80\x4a\x93\x63\ +\x46\x67\x51\x40\x27\x37\x33\x27\x42\x40\x00\x00\x00\xec\x8a\x4a\ +\xec\x8a\x4c\xec\x8b\x4b\xeb\x8a\x4a\xeb\x8b\x4a\xeb\x8b\x4a\xea\ +\x8a\x4d\xeb\x89\x4b\xeb\x8a\x4b\xeb\x89\x4a\xec\x89\x4b\xea\x89\ +\x4b\xea\x8a\x49\xea\x8a\x4a\xeb\x89\x4a\xeb\x8a\x48\xeb\x8a\x4a\ +\xea\x8a\x4a\xeb\x8a\x4b\xea\x8a\x4b\xeb\x8a\x4a\xe9\x8a\x4b\xea\ +\x8a\x4a\xeb\x8a\x49\xea\x8a\x4a\xea\x89\x4c\xea\x89\x49\xea\x89\ +\x4a\xea\x89\x4d\xe9\x8b\x4e\xe8\x8a\x4c\xe9\x8c\x4c\xea\x8b\x4e\ +\xe9\x8d\x4f\xe8\x8d\x51\xe7\x8d\x52\xe9\x89\x4d\xe9\x88\x4d\xe6\ +\x90\x5b\xe6\x9a\x6c\xe6\x9c\x70\xe8\x95\x62\xe9\x90\x54\xe8\x92\ +\x5a\xe7\xa3\x7c\xe7\xb1\x91\xe2\xaa\x8c\xe3\xb5\x9b\xe2\xc3\xb0\ +\xdf\xc6\xb4\xdf\xcd\xbc\xe0\xca\xb5\xe1\xc6\xb0\xe1\xcd\xb8\xdf\ +\xd0\xc2\xe2\xd5\xcb\xe3\xd6\xcf\xe2\xd6\xd1\xe0\xd2\xca\xe6\xdb\ +\xd4\xeb\xe3\xe0\xeb\xe4\xe1\xec\xe5\xe2\xec\xe5\xe1\xee\xe9\xe6\ +\xf2\xec\xed\xf4\xef\xf0\xf6\xf3\xf3\xf7\xf5\xf5\xf7\xf5\xf5\xf6\ +\xf4\xf4\xf5\xf2\xf2\xf4\xf1\xf1\xf4\xf0\xec\xf2\xed\xea\xf2\xed\ +\xe9\xf3\xee\xeb\xf4\xef\xec\xf4\xef\xeb\xf3\xee\xec\xf2\xed\xea\ +\xf2\xec\xe9\xef\xea\xe7\xee\xe9\xe6\xef\xe8\xe5\xec\xe5\xe2\xec\ +\xe6\xe1\xeb\xe5\xe1\xeb\xe3\xdf\xe9\xe2\xda\xe9\xe0\xd7\xe6\xdd\ +\xd4\xe6\xd9\xd0\xe3\xd5\xca\xdf\xce\xbe\xdd\xb1\x99\xe5\xa7\x7e\ +\xe3\xc0\xa5\xe0\xc8\xb5\xde\xc9\xbb\xdf\xce\xc2\xe1\xd2\xc6\xe1\ +\xd0\xbf\xe1\xd0\xbf\xe2\xd3\xc3\xe0\xd0\xc0\xe3\xd3\xc5\xe2\xd6\ +\xc9\xe2\xd1\xc3\xe1\xc9\xb4\xe2\xc8\xb2\xe2\xc4\xae\xe4\xc4\xaa\ +\xe3\xc5\xb0\xe1\xb7\xa2\xe1\xa5\x88\xe0\x98\x73\xe4\x8a\x52\xe6\ +\x85\x47\xe7\x89\x48\xe8\x88\x47\xe8\x8f\x51\xe9\x8c\x51\xe6\x88\ +\x4a\xe6\x82\x42\xe5\x82\x3f\xe5\x81\x40\xe5\x81\x3f\xe6\x80\x40\ +\xe6\x7f\x3f\xe6\x80\x3f\xe6\x7f\x3d\xe6\x7f\x3d\xe7\x7f\x3e\xe8\ +\x80\x3c\xe5\x7f\x3c\xe8\x80\x3d\xe7\x7f\x3d\xe7\x7f\x3e\xe6\x7f\ +\x3d\xe5\x81\x3f\xe5\x7f\x3e\xe6\x7f\x3b\xe7\x7f\x3f\xe8\x80\x3e\ +\xe1\x7e\x42\xcf\x78\x47\xcf\x7b\x49\xb8\x6e\x48\xd6\x78\x3e\xd7\ +\x7b\x45\xe3\x80\x40\xe3\x7f\x44\xe7\x80\x42\xd9\x79\x3f\xdd\x7c\ +\x3e\xe7\x84\x43\xec\x89\x4c\xb7\x77\x52\x73\x52\x36\x7b\x4f\x2e\ +\x63\x51\x36\x25\x3e\x40\x00\x00\x00\xeb\x8a\x4a\xec\x8b\x4b\xea\ +\x8a\x49\xeb\x89\x4a\xea\x8a\x49\xea\x8a\x4a\xea\x89\x4b\xeb\x89\ +\x4b\xea\x89\x49\xeb\x89\x4a\xea\x89\x48\xea\x8a\x49\xea\x8a\x49\ +\xe9\x89\x49\xea\x8a\x49\xeb\x89\x4a\xea\x89\x4d\xea\x8a\x4b\xea\ +\x89\x4c\xeb\x8a\x4a\xeb\x8a\x4b\xeb\x8a\x4b\xea\x89\x4b\xea\x89\ +\x4c\xeb\x89\x4c\xea\x89\x4a\xe9\x89\x4a\xe9\x8a\x4a\xe7\x89\x4d\ +\xea\x89\x4b\xe9\x8a\x4b\xe8\x8b\x50\xe7\x8a\x4f\xeb\x89\x4c\xe9\ +\x89\x4c\xe8\x89\x4e\xe8\x89\x4d\xe8\x88\x49\xe6\x8a\x4f\xe5\x91\ +\x5c\xe6\x95\x63\xe8\x9b\x6a\xeb\xa3\x74\xeb\xa1\x71\xe5\xa3\x7a\ +\xe2\xa4\x83\xe6\x99\x6b\xe5\xaa\x8b\xe2\xb8\xa2\xe2\xc0\xae\xe1\ +\xcf\xbe\xe1\xd0\xc0\xdd\xca\xbb\xde\xcc\xbf\xdd\xc7\xb8\xde\xce\ +\xc2\xdd\xcc\xc1\xdc\xc9\xbf\xdf\xd0\xc1\xe4\xd9\xd2\xe9\xe0\xdc\ +\xe9\xe1\xdd\xeb\xe3\xe0\xeb\xe6\xe2\xee\xe7\xe5\xf0\xeb\xe9\xf2\ +\xec\xec\xf3\xf0\xf1\xf5\xf3\xf3\xf7\xf5\xf5\xf8\xf6\xf6\xf8\xf6\ +\xf6\xf6\xf4\xf4\xf5\xf3\xf3\xf5\xf3\xf0\xf6\xf1\xf0\xf5\xf0\xef\ +\xf4\xef\xf0\xf5\xef\xef\xf5\xf0\xee\xf3\xee\xeb\xf3\xee\xeb\xf2\ +\xed\xea\xf0\xec\xe8\xf1\xea\xe7\xee\xe8\xe5\xed\xe6\xe3\xec\xe5\ +\xe2\xeb\xe5\xe0\xec\xe3\xdf\xe9\xe1\xdb\xe7\xdd\xd6\xe6\xd9\xd1\ +\xe2\xd5\xcb\xe0\xd1\xc4\xe2\xb7\x9e\xe3\xa7\x83\xdf\xb7\xa4\xdf\ +\xc4\xb1\xdf\xc7\xb6\xdf\xc9\xb7\xdd\xcc\xbf\xdf\xd1\xc6\xe2\xd7\ +\xcc\xe1\xd3\xc9\xe0\xd0\xc2\xe1\xd3\xc7\xe3\xd7\xcc\xe5\xd9\xce\ +\xe3\xd5\xc8\xe0\xcf\xc2\xdf\xcb\xbc\xdf\xc9\xb9\xe0\xbd\xac\xdd\ +\x9d\x7e\xe1\x8c\x5a\xe5\x88\x4d\xe5\x87\x4c\xe6\x86\x4a\xe5\x8d\ +\x57\xe6\x8d\x56\xe4\x94\x67\xe3\x8f\x5f\xe3\x86\x51\xe3\x83\x44\ +\xe4\x82\x40\xe6\x80\x3e\xe5\x81\x3f\xe4\x80\x3d\xe5\x7f\x3e\xe6\ +\x81\x3f\xe6\x80\x40\xe5\x7f\x3f\xe5\x7f\x3f\xe6\x7f\x3e\xe5\x7f\ +\x3f\xe5\x7e\x3f\xe4\x7f\x3d\xe6\x7e\x3e\xe7\x7e\x3c\xe7\x7d\x3d\ +\xe6\x7f\x3b\xe6\x7f\x3b\xe6\x7f\x3c\xe8\x80\x3d\xe6\x80\x3f\xdd\ +\x7d\x44\xd5\x7a\x42\xc3\x74\x43\xdf\x7c\x40\xdd\x7b\x3f\xe7\x7f\ +\x3c\xe4\x7f\x42\xe8\x7f\x41\xe9\x80\x44\xea\x82\x44\xeb\x85\x47\ +\xea\x87\x4b\xce\x7f\x50\x9c\x5e\x36\xaa\x6c\x43\x83\x65\x53\x2c\ +\x3e\x42\x00\x00\x00\xeb\x8a\x4c\xeb\x8a\x49\xeb\x89\x4b\xeb\x8a\ +\x4b\xea\x89\x49\xeb\x8a\x49\xeb\x89\x4c\xea\x89\x4a\xeb\x89\x4a\ +\xea\x89\x48\xea\x89\x49\xe9\x89\x49\xea\x89\x4a\xe9\x8a\x49\xea\ +\x89\x49\xea\x89\x49\xea\x89\x49\xea\x89\x48\xe9\x8a\x49\xea\x88\ +\x4a\xea\x89\x49\xea\x89\x4a\xea\x8a\x4a\xea\x8a\x49\xea\x89\x48\ +\xe9\x88\x4a\xe8\x88\x4a\xea\x89\x49\xe8\x89\x4c\xe9\x89\x48\xe9\ +\x88\x49\xe8\x87\x4b\xe9\x89\x4a\xe9\x89\x4b\xe7\x89\x4b\xe8\x89\ +\x4b\xe8\x89\x49\xe8\x89\x4d\xe6\x8a\x4e\xe7\x8e\x56\xe6\x91\x59\ +\xe3\x90\x5e\xe4\xa0\x79\xe7\xa8\x7d\xe8\xa2\x79\xe4\x98\x66\xe8\ +\x9f\x72\xe7\xae\x8d\xe3\xb9\xa2\xe0\xc2\xaf\xdf\xca\xbb\xdf\xc9\ +\xb9\xde\xb9\xa6\xdf\xbe\xac\xdf\xc1\xad\xde\xc7\xb7\xde\xc7\xb6\ +\xdf\xbe\xa7\xde\xcc\xbd\xe3\xd6\xcd\xe5\xdb\xd5\xe6\xdd\xd8\xea\ +\xe3\xde\xeb\xe4\xe0\xec\xe6\xe2\xed\xe8\xe6\xf0\xeb\xe9\xf3\xef\ +\xef\xf5\xf3\xf3\xf7\xf5\xf5\xf8\xf7\xf7\xf8\xf6\xf6\xf8\xf6\xf6\ +\xf7\xf5\xf5\xf6\xf4\xf4\xf5\xf2\xf3\xf5\xf2\xf2\xf5\xf2\xf3\xf5\ +\xf2\xf1\xf5\xf0\xf1\xf5\xf0\xee\xf4\xef\xec\xf3\xee\xeb\xf2\xed\ +\xea\xf1\xec\xe8\xef\xea\xe7\xee\xe7\xe4\xed\xe6\xe3\xeb\xe4\xe1\ +\xec\xe4\xe0\xeb\xe2\xde\xe7\xdd\xd6\xe4\xd9\xd0\xdd\xcc\xbf\xdc\ +\xc7\xb9\xdf\xb8\xa4\xe4\xa9\x84\xe2\xb6\x98\xdf\xc2\xaf\xdc\xc5\ +\xb5\xdf\xcd\xbd\xdf\xcf\xc1\xe1\xd0\xc3\xe2\xd6\xcd\xe2\xd5\xcd\ +\xe2\xd4\xc9\xe3\xd5\xc9\xe7\xdb\xd1\xe9\xdd\xd5\xe3\xd6\xcf\xdc\ +\xc1\xb6\xdc\xbb\xab\xde\xbd\xae\xdf\xaf\x9a\xe5\x99\x6d\xe7\x92\ +\x5b\xe6\x8f\x57\xe6\x8a\x4c\xe9\x91\x57\xe8\x96\x64\xe4\x8b\x59\ +\xe6\x8d\x56\xe5\x8c\x58\xe3\x84\x4a\xe4\x81\x40\xe5\x80\x40\xe4\ +\x80\x3f\xe6\x80\x3e\xe6\x7f\x3d\xe5\x80\x3f\xe6\x7f\x3e\xe5\x7f\ +\x3f\xe5\x7f\x3e\xe4\x7f\x3f\xe4\x7e\x3e\xe6\x7e\x3e\xe5\x7f\x3d\ +\xe5\x7f\x3c\xe5\x7f\x3d\xe4\x7e\x3e\xe6\x80\x3c\xe6\x7d\x3d\xe6\ +\x7e\x3d\xe6\x7e\x3d\xe7\x7e\x3c\xe6\x7e\x3d\xe0\x7e\x43\xd8\x7a\ +\x41\xc5\x76\x49\xe2\x7d\x41\xdf\x7c\x40\xe5\x7e\x40\xe8\x7d\x3d\ +\xe7\x7e\x40\xe9\x80\x42\xea\x81\x43\xec\x85\x45\xca\x7b\x4c\x9e\ +\x67\x49\x84\x5c\x43\x75\x57\x3e\x4b\x4e\x44\x24\x34\x32\x00\x00\ +\x00\xea\x8a\x4b\xea\x8a\x4a\xeb\x8a\x4a\xea\x89\x4a\xea\x8a\x49\ +\xea\x8a\x4a\xea\x8a\x4a\xeb\x8a\x49\xea\x8a\x48\xe9\x89\x49\xea\ +\x89\x49\xea\x88\x4a\xe9\x88\x49\xea\x89\x49\xe9\x89\x48\xe9\x89\ +\x48\xe9\x88\x49\xea\x89\x4a\xea\x8a\x48\xea\x88\x4b\xe9\x88\x4b\ +\xe9\x89\x4a\xe8\x8a\x4c\xea\x89\x4a\xe9\x89\x49\xe8\x87\x4b\xe9\ +\x88\x49\xea\x89\x49\xe9\x88\x4a\xe9\x89\x48\xe9\x88\x49\xea\x88\ +\x4b\xe9\x89\x4c\xe9\x89\x4a\xe7\x89\x4b\xea\x89\x4a\xe7\x89\x4b\ +\xe6\x8b\x4f\xe7\x8e\x53\xe6\x8d\x53\xe7\x8d\x52\xe6\x8d\x55\xe7\ +\x9d\x6e\xe7\xaa\x85\xe8\xa6\x80\xe6\x96\x62\xe4\xa3\x7e\xe2\xab\ +\x8f\xe0\xac\x93\xe0\xb6\xa1\xe0\xc3\xb3\xe0\xbf\xad\xe2\xbb\xa2\ +\xe2\xbd\xa5\xe0\xc1\xab\xe0\xc4\xaf\xdf\xc8\xb6\xe0\xbe\xa8\xde\ +\xc7\xb6\xe3\xd6\xcc\xe3\xd6\xce\xe1\xd4\xcc\xe8\xdf\xda\xeb\xe4\ +\xe0\xeb\xe4\xe0\xed\xe5\xe4\xf0\xeb\xe9\xf4\xef\xef\xf5\xf3\xf3\ +\xf7\xf5\xf5\xf8\xf7\xf7\xf8\xf7\xf7\xf8\xf6\xf6\xf8\xf6\xf6\xf8\ +\xf6\xf6\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf5\xf3\xf3\xf4\xf2\ +\xf2\xf4\xf1\xf1\xf5\xf0\xee\xf3\xee\xec\xf3\xee\xeb\xf3\xee\xeb\ +\xf1\xec\xe8\xee\xe9\xe6\xee\xe7\xe4\xec\xe5\xe2\xec\xe6\xe1\xea\ +\xe1\xdd\xe7\xdd\xd5\xe8\xde\xd5\xe4\xd5\xc7\xde\xbf\xac\xe0\xae\ +\x94\xe3\xb1\x93\xe1\xbd\xa5\xe0\xb9\xa4\xdf\xc0\xab\xe0\xce\xbe\ +\xe2\xd2\xc6\xe2\xd4\xca\xe2\xd5\xcd\xe1\xd4\xcd\xe2\xd5\xcd\xe5\ +\xda\xcf\xe7\xdd\xd6\xe8\xdf\xdb\xe2\xd6\xd1\xdf\xbd\xaa\xe2\xa8\ +\x88\xe3\xb2\x9a\xe3\xaa\x8d\xe5\x9c\x6c\xe8\x9e\x6e\xe7\x9e\x6d\ +\xe7\x94\x60\xe7\x95\x60\xe5\x98\x6a\xe5\x8f\x58\xe6\x93\x60\xe2\ +\x8a\x57\xe3\x81\x41\xe6\x80\x3f\xe5\x80\x3f\xe5\x80\x3e\xe5\x7f\ +\x3e\xe5\x7f\x40\xe6\x80\x3f\xe6\x7f\x40\xe5\x7f\x3f\xe6\x7f\x3f\ +\xe6\x7f\x40\xe6\x7f\x3e\xe5\x7e\x3f\xe5\x7e\x3e\xe7\x7f\x3b\xe6\ +\x7f\x3d\xe5\x7f\x3c\xe6\x7f\x3c\xe6\x7d\x3c\xe5\x7e\x3d\xe5\x7e\ +\x3c\xe6\x7e\x3b\xe7\x7e\x3a\xe6\x7e\x3c\xe4\x7b\x3d\xde\x7b\x3f\ +\xe5\x7e\x3f\xe5\x7d\x3b\xe5\x7e\x3c\xe7\x7d\x3d\xe8\x7e\x3d\xe7\ +\x7e\x3e\xdb\x7b\x3f\xaf\x6d\x44\x4c\x40\x3c\x65\x47\x2c\x64\x4c\ +\x34\x64\x4c\x3a\x50\x4d\x45\x30\x3d\x35\x00\x00\x00\xea\x89\x4a\ +\xea\x89\x4a\xeb\x8a\x4a\xeb\x8a\x4a\xea\x89\x4b\xe9\x89\x4a\xe9\ +\x8a\x49\xea\x89\x49\xea\x89\x48\xea\x89\x49\xe9\x89\x49\xea\x89\ +\x48\xe9\x89\x49\xea\x88\x4a\xea\x89\x49\xe9\x88\x4a\xe9\x88\x49\ +\xe9\x88\x48\xea\x89\x4a\xea\x88\x4b\xe9\x8a\x4b\xea\x8d\x51\xea\ +\x8d\x51\xe8\x8b\x4e\xe9\x8f\x54\xea\x90\x57\xea\x8e\x52\xe9\x8b\ +\x4d\xe8\x88\x4b\xea\x88\x4a\xea\x89\x4b\xe9\x89\x49\xe9\x89\x4a\ +\xe9\x89\x4d\xe9\x8a\x4b\xe9\x88\x4b\xe8\x89\x4c\xe7\x8e\x54\xe6\ +\x90\x59\xe8\x91\x58\xe9\x8f\x54\xea\x94\x5c\xea\xad\x86\xe7\xb1\ +\x90\xe5\xa4\x7e\xe6\x92\x5e\xe3\x90\x61\xe1\x90\x65\xdf\x97\x6d\ +\xe0\x99\x74\xde\xa7\x8b\xe0\xaf\x99\xe1\xb7\xa2\xe0\xbf\xab\xdf\ +\xc7\xb3\xe0\xcd\xbb\xe2\xd2\xc3\xe1\xca\xb6\xe1\xcd\xbc\xe3\xd7\ +\xce\xe4\xd8\xcd\xe0\xd2\xc7\xe6\xdd\xd5\xed\xe3\xe0\xea\xe4\xe0\ +\xec\xe6\xe3\xf0\xec\xea\xf4\xef\xef\xf4\xf2\xf2\xf7\xf5\xf5\xf8\ +\xf7\xf7\xf7\xf8\xf8\xf8\xf7\xf7\xf8\xf6\xf6\xf7\xf5\xf5\xf7\xf5\ +\xf5\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf6\xf4\xf4\xf5\xf3\xf3\ +\xf5\xee\xef\xf4\xef\xee\xf4\xef\xed\xf3\xee\xeb\xf0\xeb\xe7\xf1\ +\xea\xe7\xef\xe8\xe5\xee\xe7\xe4\xed\xe7\xe3\xee\xe5\xe1\xe7\xdd\ +\xd8\xe7\xdd\xd6\xe6\xdc\xd4\xe1\xc9\xb7\xe2\xb9\x9c\xe2\xc2\xa8\ +\xe0\xc7\xb1\xe1\xbd\xa3\xe0\xc4\xae\xe1\xd2\xc4\xe3\xd5\xcc\xe4\ +\xd7\xce\xe1\xd3\xcd\xde\xd0\xc8\xe0\xd3\xcb\xe0\xd4\xcf\xdf\xd4\ +\xce\xe3\xd9\xd5\xe0\xd1\xcc\xe0\xbd\xab\xe4\xb0\x92\xe3\xb2\x97\ +\xe3\xb1\x98\xe7\xa5\x7f\xe8\xa9\x82\xe6\xa4\x7c\xe5\x9c\x6f\xe7\ +\x9d\x6d\xe4\x9a\x70\xe4\x94\x63\xe2\x8b\x5a\xe2\x83\x48\xe4\x81\ +\x40\xe6\x7f\x3e\xe4\x80\x3e\xe5\x80\x3e\xe5\x7f\x3f\xe4\x7f\x40\ +\xe5\x7e\x3e\xe5\x7f\x3f\xe5\x7f\x3e\xe7\x7f\x3e\xe5\x7f\x3f\xe7\ +\x7f\x3e\xe5\x7f\x3d\xe6\x7f\x3e\xe6\x7e\x3d\xe5\x7e\x3d\xe6\x7e\ +\x3c\xe5\x7e\x3c\xe5\x7e\x3b\xe5\x7e\x3b\xe6\x7d\x3b\xe6\x7d\x3b\ +\xe8\x7d\x3a\xe7\x7d\x3a\xe7\x7d\x3a\xe7\x7d\x3a\xe6\x7d\x3a\xe7\ +\x7d\x39\xe7\x7c\x3a\xe7\x7d\x3c\xe8\x7e\x3c\xe2\x7c\x3f\x9d\x61\ +\x3e\x79\x49\x2a\xa8\x66\x36\x7d\x53\x36\x90\x54\x2c\xbf\x73\x44\ +\x75\x5f\x4c\x4c\x50\x46\x00\x00\x00\xea\x8a\x48\xe9\x89\x49\xea\ +\x8a\x4a\xea\x8a\x49\xea\x89\x49\xe9\x88\x4b\xe9\x89\x49\xea\x88\ +\x49\xe8\x89\x4a\xe9\x89\x49\xe9\x89\x4a\xe8\x87\x4b\xe8\x89\x47\ +\xe9\x88\x49\xe9\x88\x49\xea\x89\x48\xe9\x88\x48\xe8\x87\x49\xe9\ +\x88\x4a\xe9\x88\x4b\xe8\x8f\x54\xeb\x9a\x62\xec\x9b\x67\xe8\x90\ +\x58\xe9\x97\x63\xe7\x97\x65\xe7\x92\x5d\xe8\x8e\x54\xe8\x8e\x54\ +\xe8\x8a\x4b\xe9\x89\x4b\xea\x88\x4a\xe9\x89\x4b\xe8\x89\x4c\xe9\ +\x88\x4c\xe7\x89\x4c\xe6\x89\x4e\xe6\x8d\x57\xe6\x8e\x57\xe8\x9b\ +\x6d\xeb\xa0\x6b\xeb\xaf\x87\xe6\xbc\xa0\xe5\xb0\x92\xe5\x9e\x72\ +\xe5\x8c\x56\xe5\x89\x50\xe4\x87\x4c\xe4\x89\x4f\xe4\x8a\x52\xe2\ +\x8d\x5b\xe2\x9b\x72\xe0\xa4\x83\xe2\xb6\x9e\xdf\xc4\xb1\xe0\xca\ +\xb9\xe1\xd1\xc7\xe5\xda\xcc\xe8\xdd\xcf\xe6\xdb\xd0\xe6\xdc\xd2\ +\xe3\xd5\xca\xe7\xde\xd4\xed\xe6\xe2\xee\xe7\xe4\xee\xe7\xe6\xf2\ +\xed\xeb\xf4\xef\xee\xf4\xf2\xf2\xf7\xf5\xf5\xf8\xf6\xf6\xf8\xf7\ +\xf7\xf9\xf8\xf8\xf9\xf7\xf7\xf7\xf5\xf5\xf7\xf5\xf5\xf7\xf5\xf5\ +\xf6\xf4\xf4\xf8\xf6\xf6\xf7\xf5\xf5\xf6\xf4\xf4\xf5\xf2\xf2\xf5\ +\xf0\xee\xf4\xef\xec\xf3\xee\xeb\xf1\xec\xe9\xf1\xeb\xea\xf1\xea\ +\xe7\xf0\xe9\xe6\xef\xe8\xe5\xee\xe7\xe2\xeb\xe1\xdd\xe7\xde\xd5\ +\xe7\xde\xd7\xe5\xd9\xcf\xe1\xd0\xbe\xe0\xd1\xc1\xdf\xce\xbe\xdf\ +\xca\xb6\xdf\xcb\xb9\xe1\xd2\xc7\xe2\xd5\xcd\xe1\xd4\xcb\xe0\xd1\ +\xc8\xdd\xcc\xc2\xdb\xc4\xbc\xd9\xb4\xaa\xdd\xb3\xa2\xdc\xc6\xbe\ +\xdc\xbc\xb1\xe1\xb6\xa0\xe2\xb1\x98\xe3\xae\x91\xe4\xb2\x97\xe6\ +\xb3\x93\xe5\xb3\x96\xe4\xac\x8d\xe8\xa4\x7b\xe8\xa4\x7a\xe2\x96\ +\x6b\xe2\x8b\x5b\xe2\x82\x48\xe3\x82\x43\xe3\x82\x43\xe4\x83\x43\ +\xe3\x7f\x3d\xe4\x7e\x3b\xe6\x7f\x3e\xe5\x7e\x3f\xe6\x7f\x3e\xe7\ +\x7f\x3f\xe4\x7f\x3d\xe5\x7f\x3e\xe5\x7e\x3f\xe5\x7e\x3e\xe4\x7f\ +\x3e\xe5\x7e\x3e\xe6\x7e\x3e\xe6\x7f\x3c\xe5\x7f\x3d\xe5\x7e\x3b\ +\xe5\x7e\x3d\xe6\x7d\x3b\xe6\x7d\x3c\xe7\x7d\x3b\xe8\x7d\x3a\xe6\ +\x7c\x3a\xe8\x7c\x3b\xe7\x7d\x39\xe7\x7c\x3a\xe8\x7b\x3b\xe8\x7b\ +\x3a\xe8\x7d\x39\xe2\x7a\x3b\xcf\x6f\x37\xbc\x6a\x39\xd1\x74\x38\ +\xb6\x69\x3c\xa6\x68\x40\xa9\x61\x32\xc1\x77\x4c\x96\x68\x4d\x70\ +\x55\x40\x00\x00\x00\xea\x89\x49\xea\x88\x49\xe9\x89\x47\xea\x88\ +\x49\xe9\x89\x49\xea\x8a\x4a\xe8\x88\x4b\xe9\x89\x4a\xe9\x87\x49\ +\xe9\x89\x49\xe8\x89\x4a\xe8\x89\x48\xe9\x88\x48\xe9\x89\x48\xe9\ +\x87\x48\xe8\x88\x48\xe9\x88\x47\xea\x88\x49\xe9\x88\x47\xe8\x87\ +\x4b\xe5\x8d\x55\xe5\x98\x6b\xea\x9c\x6c\xea\x93\x5d\xe5\x92\x5f\ +\xe6\x93\x5d\xe6\x90\x5a\xe7\x93\x5c\xe7\x92\x5c\xe9\x94\x5b\xe7\ +\x8b\x4f\xe7\x89\x4b\xe7\x89\x4c\xe8\x88\x4d\xe7\x88\x4a\xe9\x88\ +\x4a\xe6\x88\x4a\xe4\x88\x4e\xe5\x8b\x53\xe9\xa2\x76\xe9\xb2\x90\ +\xe5\xbb\xa3\xe5\xba\xa5\xe7\xb1\x91\xe8\xa1\x74\xe6\x8f\x57\xe5\ +\x87\x4c\xe5\x88\x4d\xe6\x8b\x52\xe5\x88\x4f\xe6\x89\x4e\xe4\x93\ +\x5f\xe6\xa3\x77\xe3\xb2\x97\xe0\xbf\xac\xdf\xcc\xbc\xe4\xd7\xcb\ +\xe9\xde\xd4\xed\xe6\xde\xeb\xe1\xd9\xe7\xdc\xd4\xe9\xde\xd4\xeb\ +\xe3\xdb\xee\xe7\xe4\xef\xea\xe7\xf0\xea\xe6\xf3\xee\xec\xf4\xee\ +\xee\xf3\xf1\xf1\xf5\xf3\xf3\xf6\xf4\xf4\xf7\xf6\xf6\xf7\xf7\xf7\ +\xf8\xf7\xf7\xf9\xf7\xf7\xf8\xf6\xf6\xf7\xf5\xf5\xf7\xf5\xf5\xf8\ +\xf6\xf6\xf8\xf7\xf7\xf8\xf6\xf6\xf6\xf4\xf4\xf6\xf3\xf4\xf5\xf0\ +\xf0\xf3\xee\xeb\xf3\xee\xea\xef\xea\xe8\xef\xea\xe7\xf0\xeb\xe8\ +\xf0\xeb\xe8\xf1\xea\xe6\xeb\xe4\xe1\xe8\xdd\xd8\xe6\xdd\xd5\xe4\ +\xd7\xd1\xe0\xd2\xca\xe0\xd3\xc7\xdf\xcf\xbf\xde\xcc\xbb\xe0\xcd\ +\xbd\xe1\xd3\xc5\xe5\xd9\xcf\xe1\xd4\xc9\xe1\xd3\xc9\xda\xb9\xac\ +\xd8\x98\x7c\xdc\x90\x68\xe0\x9e\x79\xde\xb3\x9e\xe1\xb0\x96\xe2\ +\xb3\x98\xe2\xab\x8d\xe4\xb3\x94\xe5\xb8\x9e\xe4\xbb\xa2\xe1\xb2\ +\x98\xdf\xa3\x82\xe2\xa5\x83\xe0\x9e\x79\xe0\x8c\x5c\xe1\x81\x44\ +\xe3\x83\x43\xe7\x8c\x50\xe6\x8e\x54\xe2\x85\x4b\xe4\x81\x41\xe5\ +\x7e\x3d\xe5\x7d\x3e\xe5\x7e\x3d\xe6\x7e\x3d\xe5\x7f\x3c\xe6\x7e\ +\x3e\xe4\x7f\x3d\xe5\x7e\x3d\xe6\x7e\x3e\xe6\x7e\x3e\xe6\x7e\x3d\ +\xe6\x7d\x3c\xe6\x7e\x3b\xe6\x7d\x3d\xe7\x7e\x3a\xe6\x7c\x3c\xe6\ +\x7c\x3b\xe8\x7d\x3c\xe7\x7d\x3b\xe6\x7c\x3b\xe5\x7b\x3c\xe7\x7c\ +\x39\xe6\x7b\x39\xe7\x7b\x39\xe7\x7c\x39\xe6\x7b\x3a\xe6\x7d\x3a\ +\xe7\x7c\x3a\xe5\x7d\x3a\xe2\x7c\x3d\xc7\x6f\x3c\xe4\x7e\x3f\xd1\ +\x7c\x48\x6c\x54\x41\x46\x48\x3b\xa3\x6c\x47\xc7\x7e\x4d\x00\x00\ +\x00\xe9\x89\x48\xea\x89\x49\xe8\x88\x4d\xe8\x88\x4b\xea\x89\x49\ +\xe9\x88\x4b\xe9\x88\x49\xea\x89\x49\xe8\x87\x49\xe9\x89\x47\xe9\ +\x88\x48\xe7\x88\x48\xe8\x89\x49\xe7\x88\x4b\xe7\x89\x47\xe9\x88\ +\x48\xea\x87\x48\xe8\x86\x47\xe8\x88\x49\xe7\x87\x4b\xe6\x88\x4d\ +\xe5\x91\x5e\xe9\xa5\x7c\xe7\x97\x64\xe6\x8b\x50\xe5\x8d\x58\xe7\ +\x96\x63\xe6\x93\x5f\xe7\x93\x5d\xea\x9a\x67\xe8\x8f\x55\xe6\x8a\ +\x4e\xe5\x89\x4c\xe8\x88\x49\xe7\x87\x4b\xe6\x88\x48\xe5\x88\x4c\ +\xe6\x8a\x4d\xe7\x93\x5c\xe6\xa7\x84\xe4\xb5\x9e\xe3\xb0\x96\xe6\ +\xb0\x95\xe6\xad\x8d\xe3\x97\x6b\xe6\x8c\x54\xe6\x8b\x4f\xe6\x89\ +\x4e\xe5\x8a\x51\xe6\x8c\x53\xe6\x8b\x53\xe6\x93\x5f\xe4\xab\x87\ +\xe5\xb1\x91\xe0\xbe\xa6\xde\xc6\xb6\xe2\xd6\xce\xe9\xe3\xde\xee\ +\xea\xe6\xef\xe9\xe4\xee\xe7\xe0\xec\xe6\xe1\xed\xe6\xe3\xf0\xeb\ +\xe8\xf1\xec\xe9\xf0\xeb\xe9\xf2\xed\xec\xf3\xee\xee\xf5\xef\xf0\ +\xf4\xf2\xf2\xf3\xf2\xf1\xf6\xf4\xf4\xf8\xf5\xf5\xf6\xf4\xf4\xf6\ +\xf4\xf4\xf6\xf4\xf4\xf8\xf6\xf6\xf7\xf5\xf5\xf7\xf5\xf5\xf7\xf7\ +\xf7\xf8\xf6\xf6\xf8\xf6\xf6\xf6\xf4\xf4\xf4\xef\xf0\xf1\xec\xec\ +\xef\xea\xe9\xee\xe9\xe5\xef\xe8\xe6\xee\xe9\xe8\xef\xea\xe9\xef\ +\xea\xe9\xeb\xe3\xe2\xe3\xd9\xd1\xe4\xd8\xd1\xe3\xd6\xcf\xe1\xd3\ +\xc7\xde\xcf\xbf\xde\xcd\xbd\xde\xcb\xbc\xe2\xd6\xc9\xe6\xda\xd0\ +\xe6\xdc\xd5\xe3\xd7\xcd\xde\xcd\xc5\xda\xa7\x93\xdf\x8b\x5b\xe4\ +\x8a\x52\xe4\x93\x5f\xe3\xa4\x81\xe3\xb1\x96\xe3\xaf\x95\xe4\xb0\ +\x93\xe3\xb6\x9b\xe2\xbc\xa3\xe3\xc0\xab\xe1\xb3\x99\xe1\x95\x68\ +\xe1\x93\x63\xe3\x98\x6b\xe2\x88\x51\xe2\x81\x46\xe3\x83\x46\xe4\ +\x95\x64\xe2\x92\x67\xe4\x8b\x51\xe2\x85\x49\xe4\x81\x41\xe4\x80\ +\x40\xe6\x7f\x3e\xe6\x7e\x3d\xe6\x7e\x3d\xe5\x7f\x3e\xe5\x7e\x3f\ +\xe4\x7e\x3f\xe6\x7f\x3e\xe5\x7e\x3d\xe6\x7d\x3c\xe6\x7d\x3d\xe5\ +\x7e\x3d\xe7\x7c\x3c\xe6\x7c\x3c\xe6\x7d\x3b\xe6\x7c\x3b\xe5\x7c\ +\x3c\xe5\x7c\x3b\xe7\x7c\x3a\xe8\x7b\x38\xe6\x7b\x39\xe7\x7a\x39\ +\xe7\x7b\x37\xe7\x7a\x37\xe7\x7c\x37\xe5\x7b\x3b\xe7\x7b\x39\xe6\ +\x7c\x3b\xe7\x7d\x3c\xe9\x80\x40\xe8\x81\x44\xe4\x82\x48\xd0\x7c\ +\x49\x9c\x74\x59\x5e\x54\x4b\x92\x65\x4e\x00\x00\x00\xe8\x89\x49\ +\xe8\x89\x4a\xe9\x89\x49\xe9\x89\x47\xe9\x88\x49\xe9\x88\x49\xe8\ +\x87\x49\xe9\x88\x49\xe8\x88\x4b\xe8\x87\x49\xe8\x88\x49\xe9\x88\ +\x48\xe8\x88\x48\xe7\x89\x4a\xe9\x88\x48\xe7\x87\x49\xe8\x88\x48\ +\xe8\x88\x48\xe9\x86\x4a\xe8\x88\x48\xe8\x89\x4a\xe6\x8b\x52\xe3\ +\x93\x68\xe6\x8f\x59\xe7\x8b\x4e\xe6\x8d\x56\xe5\x93\x61\xe7\x94\ +\x5e\xe6\x93\x60\xe4\x9a\x6e\xe8\x9b\x67\xe7\x90\x57\xe7\x8c\x52\ +\xe7\x87\x4d\xe8\x88\x49\xe6\x87\x49\xe6\x88\x4c\xe7\x90\x55\xe7\ +\x97\x63\xe4\x9d\x75\xe2\xa3\x7f\xe4\xa4\x81\xe6\xb0\x92\xe7\xab\ +\x88\xe5\x94\x60\xe5\x89\x4f\xe5\x8c\x54\xe6\x8d\x54\xe6\x8d\x52\ +\xe5\x8b\x54\xe6\x90\x5a\xe8\x9c\x6c\xe5\xab\x87\xe4\xb3\x96\xe1\ +\xbe\xa9\xe0\xc7\xb4\xe1\xd4\xc9\xe6\xdd\xd9\xec\xe6\xe5\xef\xea\ +\xe7\xf0\xea\xe8\xf1\xeb\xe8\xf0\xe9\xe6\xf1\xec\xe9\xf3\xee\xec\ +\xf2\xed\xea\xf3\xed\xed\xf4\xef\xef\xf5\xee\xef\xf4\xf0\xf1\xf3\ +\xf2\xf2\xf3\xf1\xf1\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\xf2\xf4\xf2\ +\xf2\xf5\xf3\xf3\xf5\xf3\xf3\xf6\xf4\xf4\xf8\xf7\xf7\xf7\xf8\xf8\ +\xf8\xf6\xf6\xf6\xf3\xf4\xf3\xee\xef\xf0\xea\xea\xee\xe6\xe3\xeb\ +\xe4\xe1\xeb\xe4\xe2\xea\xe2\xe0\xe8\xe0\xde\xe9\xe3\xe1\xe8\xe1\ +\xdd\xe7\xde\xd5\xe6\xdb\xd3\xe6\xd9\xd2\xe6\xd9\xd0\xe4\xd6\xc6\ +\xe3\xd4\xc4\xe2\xd2\xc2\xe5\xda\xce\xe9\xe1\xd9\xe7\xdd\xd9\xdf\ +\xd2\xcc\xdc\xbd\xb2\xde\x95\x6f\xe1\x87\x51\xe1\x8b\x54\xe3\x92\ +\x60\xe3\xa1\x78\xe1\xa9\x88\xe3\xb3\x96\xe2\xbf\xa4\xe3\xc4\xaa\ +\xe3\xcb\xb6\xe0\xc9\xb7\xe2\xb9\xa2\xe6\xa5\x80\xe6\x9e\x70\xe3\ +\x9f\x76\xe3\x94\x63\xe6\x8e\x57\xe6\x8e\x55\xe5\x97\x67\xe9\x9c\ +\x6b\xe6\x9b\x6c\xe3\x8b\x55\xe3\x86\x4b\xe2\x85\x4a\xe4\x7f\x3f\ +\xe5\x7e\x3d\xe6\x7e\x3d\xe4\x7e\x3e\xe6\x7f\x3e\xe6\x7e\x3f\xe4\ +\x7f\x3d\xe8\x7e\x3d\xe7\x7e\x3e\xe6\x7d\x3d\xe5\x7d\x3e\xe5\x7c\ +\x3c\xe7\x7c\x3c\xe5\x7c\x3b\xe6\x7c\x3b\xe5\x7c\x3b\xe5\x7c\x3b\ +\xe5\x7c\x3c\xe5\x7a\x3b\xe7\x7b\x3a\xe6\x7a\x39\xe6\x7b\x3a\xe6\ +\x7a\x39\xe6\x7b\x39\xe5\x7b\x3a\xe6\x7c\x39\xe7\x7c\x39\xe7\x7d\ +\x3a\xe6\x7e\x3e\xe4\x7e\x42\xd9\x7c\x45\xc8\x7b\x4e\xa6\x6d\x4f\ +\x4f\x47\x3d\x8d\x5d\x3b\x00\x00\x00\xe8\x88\x49\xe9\x88\x4b\xe8\ +\x88\x47\xea\x88\x49\xe9\x88\x48\xe8\x88\x49\xe9\x89\x49\xe9\x87\ +\x49\xe8\x87\x48\xe8\x88\x49\xe8\x88\x49\xe9\x88\x4a\xe7\x88\x48\ +\xe7\x88\x49\xe9\x88\x48\xe9\x87\x4b\xe8\x88\x49\xe8\x87\x47\xe8\ +\x86\x48\xe8\x88\x49\xe6\x8c\x54\xe7\x8f\x57\xe7\x8b\x53\xe6\x8d\ +\x56\xe7\x8e\x55\xe5\x8c\x57\xe5\x8f\x5c\xe5\x95\x62\xe6\x90\x58\ +\xe4\x98\x68\xe8\xa1\x76\xe9\x9b\x6a\xe8\x93\x5d\xe5\x8a\x50\xe6\ +\x87\x4a\xe5\x85\x4a\xe5\x88\x4e\xe5\x8d\x57\xe6\x99\x69\xe8\xa2\ +\x77\xe4\x9d\x6f\xe4\x9f\x76\xe4\xa6\x83\xe5\xab\x8a\xe6\x9b\x6a\ +\xe6\x8e\x58\xe7\x8d\x53\xe5\x8c\x53\xe6\x8f\x59\xe6\x8c\x53\xe4\ +\x8d\x54\xe5\xa7\x81\xe5\xb6\x97\xe3\xbc\xa1\xe1\xc7\xb1\xe3\xd2\ +\xc1\xe3\xd7\xcc\xe1\xd4\xcc\xe7\xdf\xdb\xea\xe4\xe3\xec\xe7\xe7\ +\xef\xe9\xea\xf3\xee\xed\xf4\xef\xed\xf3\xee\xed\xf3\xee\xed\xf4\ +\xee\xee\xf4\xee\xf0\xf5\xee\xef\xf4\xf0\xf1\xf3\xf1\xf1\xf4\xf1\ +\xf2\xf4\xf1\xf1\xf3\xf1\xf1\xf3\xf1\xf1\xf4\xf2\xf2\xf4\xf2\xf2\ +\xf3\xf1\xf1\xf4\xf2\xf2\xf8\xf5\xf5\xf8\xf7\xf7\xf7\xf6\xf6\xf6\ +\xf3\xf3\xf4\xee\xef\xef\xe9\xe7\xeb\xe4\xe1\xe9\xe2\xdf\xe9\xe2\ +\xdf\xe7\xdf\xdc\xe6\xdd\xd7\xe8\xe0\xda\xea\xe1\xdd\xea\xe3\xde\ +\xeb\xe4\xdd\xe9\xe0\xd9\xe8\xdd\xd4\xe9\xdf\xd5\xe9\xdf\xd6\xe8\ +\xdf\xd4\xe8\xe0\xd7\xea\xe2\xdc\xe6\xdd\xd8\xdd\xc8\xbd\xdf\xad\ +\x96\xe1\x96\x6b\xe4\x8f\x59\xe6\x95\x5f\xe7\xa2\x72\xe6\xab\x84\ +\xe5\xb8\x96\xe3\xc5\xab\xe1\xcf\xbd\xe3\xd3\xc3\xe3\xd7\xc9\xe0\ +\xcc\xc0\xe1\xbb\xa6\xe2\xaf\x93\xe4\xad\x8d\xe1\xa3\x82\xde\x93\ +\x66\xe3\x99\x6a\xe6\x9e\x70\xe6\xa3\x79\xe9\xab\x87\xe6\xae\x8e\ +\xe3\x96\x6a\xe2\x84\x4b\xe1\x80\x46\xe3\x7c\x3d\xe6\x7e\x3d\xe4\ +\x7e\x3e\xe4\x7d\x3d\xe5\x7e\x3e\xe6\x7e\x3e\xe5\x7e\x3c\xe6\x7d\ +\x3e\xe5\x7e\x3e\xe5\x7e\x3d\xe6\x7d\x3d\xe6\x7c\x3c\xe5\x7c\x3b\ +\xe5\x7c\x3d\xe6\x7b\x3b\xe4\x7b\x3b\xe5\x7b\x3b\xe6\x7c\x3a\xe6\ +\x7b\x3a\xe6\x7a\x39\xe6\x7a\x39\xe4\x7a\x3a\xe5\x7a\x3a\xe6\x7a\ +\x39\xe6\x7b\x38\xe7\x7b\x39\xe7\x7c\x3a\xe7\x7c\x3b\xe5\x7c\x3e\ +\xe6\x7e\x3f\xea\x81\x42\xda\x7c\x45\x97\x63\x46\x74\x56\x3e\xaa\ +\x71\x4a\x00\x00\x00\xe7\x88\x49\xe8\x88\x4b\xe9\x87\x49\xe7\x88\ +\x4a\xe9\x88\x48\xe8\x88\x49\xe7\x88\x48\xe8\x88\x4a\xe7\x87\x48\ +\xe7\x88\x4a\xe8\x88\x49\xe9\x87\x49\xe6\x88\x4a\xe8\x88\x48\xe6\ +\x87\x49\xe8\x87\x4b\xe8\x88\x48\xe7\x87\x48\xe7\x87\x4a\xe9\x88\ +\x4a\xe6\x8a\x53\xe7\x8c\x53\xe7\x8b\x51\xe6\x8c\x54\xe7\x93\x5e\ +\xe6\x8c\x54\xe6\x8e\x5b\xe5\x99\x6b\xe9\x9c\x67\xe4\x9b\x6c\xe4\ +\x9f\x77\xe7\x9d\x71\xe6\x98\x67\xe6\x89\x51\xe5\x87\x49\xe5\x85\ +\x4a\xe4\x87\x4c\xe5\x8c\x52\xe6\x9c\x6e\xe7\xaa\x87\xe5\x9f\x72\ +\xe7\xa2\x77\xe6\xa7\x80\xe6\xa7\x82\xe5\x9e\x71\xe6\x91\x5c\xe5\ +\x91\x5d\xe8\x94\x5c\xe8\x9a\x66\xeb\x9e\x6a\xeb\xa1\x6e\xe6\xab\ +\x86\xe2\xb9\xa1\xdf\xbc\xab\xde\xc9\xbc\xe4\xda\xd0\xe8\xdd\xd4\ +\xe7\xdc\xd0\xe6\xdc\xd5\xe8\xe0\xdc\xe9\xe1\xde\xeb\xe5\xe4\xf1\ +\xeb\xed\xf3\xee\xee\xf4\xee\xef\xf4\xee\xef\xf4\xee\xef\xf5\xef\ +\xf0\xf5\xef\xf0\xf4\xef\xf0\xf4\xf0\xf1\xf4\xf0\xf1\xf4\xf2\xf2\ +\xf4\xf2\xf2\xf3\xf1\xf1\xf5\xf3\xf3\xf4\xf2\xf2\xf5\xf3\xf3\xf5\ +\xf3\xf3\xf6\xf4\xf4\xf7\xf5\xf5\xf7\xf5\xf5\xf5\xf3\xf3\xf4\xee\ +\xef\xf1\xeb\xe8\xec\xe5\xe2\xe7\xdf\xdb\xe3\xda\xd6\xe5\xda\xd6\ +\xe3\xd8\xd5\xe4\xdb\xd8\xe5\xdc\xda\xe7\xe0\xdc\xea\xe3\xe0\xea\ +\xe4\xe0\xe9\xe2\xda\xeb\xe2\xdc\xeb\xe2\xde\xeb\xe3\xde\xea\xe1\ +\xdc\xe9\xe0\xdc\xe5\xdb\xd6\xde\xc9\xbb\xe1\xab\x8d\xe2\x93\x64\ +\xe4\x96\x67\xe6\xa1\x76\xe5\xb2\x91\xe2\xba\xa3\xe0\xc4\xaf\xe0\ +\xcd\xc0\xe3\xd5\xcb\xe6\xda\xd0\xe3\xd7\xce\xe0\xcf\xc2\xe0\xc5\ +\xb2\xe0\xb3\x99\xe0\xa5\x83\xdd\x9e\x79\xe1\x8b\x55\xe4\x94\x5f\ +\xe7\xab\x85\xe6\xaf\x90\xe5\xaf\x93\xe1\xac\x93\xdf\x99\x74\xdf\ +\x84\x51\xe2\x7e\x3f\xe3\x7d\x3a\xe4\x7d\x3c\xe5\x7e\x3d\xe5\x7d\ +\x3d\xe4\x7d\x3f\xe5\x7e\x3e\xe5\x7e\x3d\xe5\x7e\x3e\xe5\x7d\x3d\ +\xe5\x7c\x3c\xe6\x7c\x3c\xe6\x7c\x3b\xe5\x7d\x3c\xe6\x7c\x3a\xe5\ +\x7b\x3a\xe6\x7b\x3a\xe6\x7b\x39\xe5\x7c\x38\xe5\x7a\x39\xe6\x7b\ +\x39\xe4\x7a\x39\xe5\x7a\x38\xe5\x79\x3a\xe7\x7b\x39\xe6\x7a\x39\ +\xe8\x7a\x38\xe8\x7b\x38\xe8\x7b\x3a\xdb\x79\x41\xda\x7b\x40\xdd\ +\x7d\x43\xe4\x7f\x44\xba\x70\x47\xa6\x67\x40\xbe\x78\x4b\x00\x00\ +\x00\xe7\x88\x49\xe8\x88\x48\xe8\x87\x4b\xe8\x88\x48\xe8\x87\x48\ +\xe8\x87\x48\xe8\x87\x48\xe7\x88\x4a\xe7\x88\x48\xe8\x88\x47\xe8\ +\x87\x49\xe6\x87\x4b\xe8\x87\x48\xe8\x88\x48\xe7\x87\x48\xe7\x88\ +\x48\xe7\x87\x49\xe6\x87\x4a\xe6\x87\x4a\xe7\x88\x4a\xe6\x87\x4c\ +\xe5\x88\x4f\xe6\x8a\x4e\xe5\x8b\x52\xe6\x93\x63\xe4\x8d\x56\xe4\ +\x89\x54\xe2\x8f\x5f\xe2\x95\x6c\xe3\x93\x63\xe6\x9b\x6f\xe6\xa1\ +\x76\xe5\x96\x66\xe4\x8a\x4e\xe5\x88\x4b\xe6\x8c\x52\xe6\x8b\x50\ +\xe8\x96\x61\xe8\xa6\x7d\xe6\xa8\x85\xe5\x9e\x73\xe4\x9f\x74\xe3\ +\xa2\x7a\xe5\xa9\x86\xe5\x9d\x6e\xe5\x97\x67\xe4\x91\x5c\xe7\xa9\ +\x83\xe8\xaf\x8c\xe6\xb6\x96\xe5\xbb\x9d\xe6\xb6\x96\xe4\xb7\x9b\ +\xe3\xb4\x99\xe0\xbd\xa9\xe1\xd5\xcd\xe6\xdd\xd8\xe8\xe2\xdc\xe7\ +\xdf\xd8\xe6\xdb\xd6\xe5\xdc\xd8\xe9\xe2\xdf\xef\xea\xe9\xf3\xed\ +\xee\xf4\xee\xef\xf4\xee\xef\xf4\xee\xef\xf3\xed\xee\xf4\xee\xef\ +\xf5\xf0\xf1\xf5\xef\xf0\xf4\xef\xf0\xf5\xf0\xf1\xf3\xf1\xf1\xf5\ +\xf3\xf3\xf5\xf3\xf3\xf5\xf3\xf3\xf5\xf3\xf3\xf6\xf4\xf4\xf7\xf5\ +\xf5\xf5\xf4\xf4\xf6\xf3\xf3\xf6\xf1\xf2\xf4\xef\xed\xf0\xeb\xeb\ +\xee\xe6\xe3\xe4\xda\xd7\xde\xd1\xcb\xde\xd1\xca\xdd\xce\xc3\xdc\ +\xc5\xbb\xdb\xc4\xbb\xe2\xd8\xd3\xe6\xde\xdb\xe7\xe0\xdd\xe9\xe2\ +\xdf\xea\xe1\xdd\xeb\xe2\xde\xea\xe3\xe0\xe9\xe1\xdd\xe8\xde\xda\ +\xe6\xd9\xd3\xde\xcb\xbe\xe1\xb5\x9a\xe3\x9f\x75\xe3\x98\x68\xe4\ +\xa7\x83\xe2\xbb\xa2\xe0\xbf\xa9\xe1\xc5\xaf\xdf\xcd\xbf\xe1\xd3\ +\xcb\xe2\xd5\xcd\xe2\xd5\xcd\xe2\xd3\xc8\xdf\xce\xbd\xe0\xbc\xa8\ +\xe1\xa4\x80\xe4\xa2\x77\xe5\xa2\x76\xe5\xa5\x7c\xe5\xb1\x97\xe2\ +\xad\x94\xe4\xb3\x97\xe0\xa5\x86\xde\x8b\x5c\xe1\x7f\x3f\xe2\x80\ +\x3f\xe2\x7e\x3f\xe4\x7c\x3b\xe5\x7d\x3c\xe5\x7d\x3c\xe4\x7d\x3e\ +\xe5\x7d\x3e\xe5\x7d\x3e\xe5\x7d\x3d\xe5\x7c\x3c\xe5\x7c\x3b\xe6\ +\x7c\x3b\xe6\x7c\x3b\xe4\x7b\x3b\xe6\x7c\x39\xe6\x7b\x38\xe6\x7c\ +\x3b\xe6\x7b\x39\xe5\x7b\x3a\xe6\x79\x38\xe6\x7b\x38\xe4\x79\x39\ +\xe7\x7a\x36\xe5\x7a\x38\xe6\x7b\x37\xe7\x7a\x38\xe8\x7a\x39\xe6\ +\x7a\x39\xe7\x7c\x39\xe1\x7b\x40\xd2\x75\x40\xba\x6d\x40\xd2\x79\ +\x44\xc7\x74\x47\xa8\x67\x41\xc5\x76\x4d\x00\x00\x00\xe8\x87\x4a\ +\xe7\x85\x4c\xe8\x88\x47\xe7\x88\x47\xe7\x88\x47\xe8\x87\x49\xe7\ +\x87\x4a\xe9\x88\x47\xe6\x87\x4b\xe8\x87\x4a\xe6\x87\x4a\xe8\x88\ +\x48\xe9\x88\x49\xe7\x87\x47\xe8\x87\x48\xe6\x87\x48\xe6\x88\x4a\ +\xe8\x88\x4a\xe7\x87\x49\xe7\x88\x4a\xe7\x87\x4a\xe7\x86\x4b\xe7\ +\x86\x4a\xe6\x86\x4c\xe3\x87\x51\xe5\x88\x4d\xe5\x87\x4a\xe4\x88\ +\x4d\xe5\x8a\x54\xe4\x92\x5e\xe7\xa0\x77\xe7\xa0\x74\xe9\x9c\x6c\ +\xe9\x9b\x64\xe8\x93\x60\xe5\x93\x61\xe6\x98\x65\xe6\xa3\x78\xe6\ +\xaa\x87\xe7\xab\x84\xe5\xa0\x75\xe5\xa1\x75\xe8\xa9\x81\xe3\xa1\ +\x7b\xe3\x9a\x6f\xe2\x8d\x5a\xe1\x91\x5f\xe2\xa5\x85\xe4\xb4\x9b\ +\xe3\xba\xa1\xe2\xc0\xab\xe2\xc5\xaa\xe3\xc9\xb4\xe2\xc1\xa7\xe1\ +\xbf\xa9\xde\xce\xc2\xe0\xd3\xcd\xe2\xd8\xd4\xe7\xde\xd9\xe6\xdc\ +\xd5\xe8\xdf\xd8\xed\xe5\xe1\xee\xe9\xe7\xf2\xec\xed\xf3\xed\xee\ +\xf2\xec\xed\xf4\xee\xef\xf3\xee\xed\xf2\xed\xed\xf3\xed\xee\xf4\ +\xee\xef\xf4\xef\xf0\xf5\xf0\xf1\xf6\xf3\xf3\xf6\xf4\xf4\xf6\xf4\ +\xf4\xf6\xf4\xf4\xf5\xf3\xf3\xf6\xf4\xf4\xf7\xf5\xf5\xf6\xf4\xf4\ +\xf4\xf2\xf2\xf3\xee\xef\xef\xe9\xea\xed\xe7\xe8\xe7\xe0\xdd\xde\ +\xd0\xcb\xd9\xc2\xb7\xda\xc3\xb7\xdb\xc5\xb9\xdd\xc6\xb5\xdf\xc1\ +\xac\xdc\xc9\xbe\xdb\xcc\xc5\xdd\xcf\xca\xe5\xda\xd6\xe7\xde\xda\ +\xe8\xdf\xdc\xe7\xe1\xde\xea\xe2\xde\xe7\xdd\xd9\xe3\xda\xd2\xde\ +\xcd\xc3\xdf\xbf\xab\xe3\xae\x8f\xe5\xa9\x84\xe3\xb4\x97\xdf\xbc\ +\xa7\xdf\xc1\xaf\xdf\xc5\xb2\xdf\xcb\xb9\xe0\xd2\xc7\xdf\xd2\xc9\ +\xe6\xd7\xcd\xe3\xd7\xcc\xe1\xd3\xc7\xe1\xc6\xb7\xe3\xb4\x98\xe5\ +\xad\x8b\xe0\xa8\x8a\xe0\xa3\x81\xe1\xaa\x8e\xe4\xb5\x9b\xe4\xb4\ +\x9f\xe1\xa9\x87\xe1\x97\x6c\xe5\x8a\x52\xe1\x83\x48\xe2\x80\x42\ +\xe2\x7f\x3e\xe3\x7c\x3c\xe4\x7d\x3d\xe5\x7d\x3d\xe4\x7c\x3d\xe5\ +\x7c\x3c\xe5\x7c\x3c\xe6\x7d\x3c\xe5\x7d\x3e\xe6\x7b\x3b\xe5\x7b\ +\x3c\xe6\x7b\x3b\xe4\x7a\x3a\xe5\x7a\x39\xe7\x7a\x3a\xe5\x7a\x3b\ +\xe3\x7b\x3a\xe8\x7a\x3a\xe5\x7b\x3b\xe4\x7b\x3a\xe6\x7a\x38\xe7\ +\x7a\x38\xe6\x7b\x38\xe7\x79\x37\xe6\x7a\x38\xe6\x7b\x3a\xe5\x7c\ +\x38\xe5\x7a\x3b\xe6\x7d\x3c\xdb\x79\x40\xc0\x70\x42\xc8\x76\x47\ +\xa1\x65\x46\xbc\x74\x48\x00\x00\x00\xe7\x87\x49\xe6\x87\x49\xe8\ +\x88\x48\xe9\x88\x48\xe8\x87\x48\xe8\x87\x49\xe8\x87\x46\xe6\x87\ +\x47\xe7\x88\x48\xe8\x87\x48\xe8\x87\x48\xe8\x88\x47\xe8\x87\x48\ +\xe6\x86\x48\xe8\x87\x48\xe7\x87\x4c\xe6\x87\x49\xe6\x87\x4a\xe7\ +\x88\x49\xe7\x86\x4b\xe7\x87\x4a\xe6\x87\x4a\xe7\x87\x4a\xe7\x87\ +\x4b\xe5\x86\x4b\xe5\x87\x4b\xe6\x88\x4b\xe6\x86\x48\xe5\x86\x4a\ +\xe3\x89\x51\xe0\x91\x66\xe1\x94\x6c\xe0\x94\x69\xe1\x91\x65\xe3\ +\x8d\x58\xe3\x8d\x58\xe1\x8e\x5f\xe0\x93\x68\xe1\xa0\x7c\xe2\xa3\ +\x7f\xe7\xa4\x7c\xe7\xab\x88\xe6\xae\x8e\xe5\xa1\x77\xe3\x91\x5f\ +\xe3\x88\x4f\xe2\x8b\x54\xe3\xa1\x7a\xe5\xb6\x9c\xe2\xba\xa3\xe2\ +\xbf\xa9\xe0\xcb\xb9\xe0\xca\xba\xe0\xc3\xb0\xe1\xc4\xae\xe1\xcf\ +\xbe\xe2\xd3\xc7\xdc\xcb\xbd\xdc\xd0\xc9\xe0\xd5\xd0\xe5\xde\xd9\ +\xec\xe5\xe3\xf0\xe9\xe6\xf1\xec\xeb\xf2\xed\xed\xf1\xec\xec\xf2\ +\xec\xed\xf2\xec\xee\xf2\xed\xed\xf3\xed\xee\xf4\xee\xef\xf5\xf0\ +\xf0\xf5\xf2\xf2\xf6\xf4\xf4\xf8\xf6\xf6\xf5\xf3\xf3\xf5\xf3\xf3\ +\xf4\xf2\xf2\xf5\xf3\xf3\xf6\xf4\xf4\xf5\xf2\xf2\xf1\xed\xee\xef\ +\xe8\xe9\xeb\xe4\xe4\xe5\xdd\xdb\xe2\xda\xd5\xe0\xd1\xc7\xde\xc7\ +\xb4\xde\xbc\xa9\xe0\xc0\xa9\xdd\xc8\xb9\xde\xc6\xb6\xde\xbb\xaa\ +\xde\xb4\x9f\xde\xc4\xb3\xdf\xd1\xc8\xe2\xd6\xd1\xe0\xd5\xd0\xe3\ +\xda\xd5\xeb\xe4\xe1\xea\xe2\xde\xe0\xd5\xce\xdc\xc7\xb9\xdd\xc0\ +\xb0\xe0\xb4\x9d\xe1\xb1\x98\xe0\xb5\xa1\xe0\xbd\xa6\xdf\xc6\xb3\ +\xdf\xcd\xbd\xe3\xd6\xc9\xe5\xd9\xcf\xe7\xdc\xd0\xe9\xe0\xd6\xe6\ +\xdc\xd3\xe5\xd8\xce\xe0\xcf\xc2\xdf\xc1\xad\xe2\xb2\x99\xe1\xa9\ +\x8c\xe2\xa3\x7c\xe4\xad\x88\xe3\xbf\xa8\xe2\xbb\xa7\xe4\xb0\x91\ +\xe4\xa5\x80\xe4\x9c\x70\xe2\x91\x5e\xe2\x88\x50\xe2\x83\x45\xe4\ +\x81\x42\xe6\x88\x4c\xe3\x83\x47\xe4\x7c\x3b\xe6\x7c\x3b\xe5\x7d\ +\x3e\xe5\x7c\x3d\xe5\x7c\x3c\xe6\x7b\x3b\xe5\x7b\x3c\xe4\x7c\x3a\ +\xe4\x7a\x39\xe5\x7a\x3a\xe5\x7a\x3a\xe5\x7a\x3a\xe5\x7a\x3a\xe5\ +\x79\x3b\xe6\x7b\x37\xe6\x7b\x37\xe4\x79\x3a\xe7\x79\x38\xe7\x79\ +\x38\xe5\x7a\x36\xe0\x7b\x3c\xd9\x78\x3e\xd7\x74\x39\xda\x74\x38\ +\xdc\x76\x3c\xe3\x7d\x3f\xc1\x6c\x3b\xbc\x68\x37\xb4\x71\x4a\xad\ +\x67\x41\x00\x00\x00\xe7\x88\x48\xe7\x88\x48\xe7\x87\x49\xe9\x88\ +\x49\xe8\x87\x49\xe8\x87\x48\xe8\x87\x46\xe6\x86\x49\xe7\x88\x49\ +\xe8\x87\x49\xe8\x87\x49\xe8\x87\x47\xe8\x87\x47\xe7\x87\x48\xe6\ +\x87\x49\xe7\x86\x4a\xe6\x87\x4a\xe5\x87\x4a\xe7\x88\x4a\xe6\x87\ +\x4a\xe6\x88\x48\xe6\x87\x49\xe7\x87\x48\xe7\x87\x47\xe6\x86\x49\ +\xe7\x89\x4c\xe7\x8a\x4c\xe6\x88\x4b\xe7\x8c\x54\xe5\x8b\x51\xe3\ +\x86\x4c\xe4\x85\x4a\xe4\x86\x48\xe5\x86\x4a\xe4\x8a\x50\xe4\x89\ +\x50\xe5\x89\x51\xe3\x89\x53\xe2\x91\x63\xe1\x93\x64\xe0\x9d\x78\ +\xe3\xa4\x83\xe4\xab\x8b\xe5\xa0\x75\xe6\x92\x5b\xe3\x8a\x51\xe4\ +\x8d\x54\xe6\xa8\x80\xe3\xba\xa4\xe3\xbc\xa5\xe2\xc0\xab\xdf\xca\ +\xb9\xe0\xcd\xbc\xe0\xc8\xb5\xe2\xce\xbd\xe3\xd6\xc9\xe5\xd8\xcd\ +\xe5\xd8\xc9\xdf\xce\xbe\xde\xd0\xc5\xe3\xd9\xd3\xea\xe2\xdf\xee\ +\xe9\xe6\xf3\xed\xec\xf2\xed\xec\xf2\xec\xec\xf3\xed\xed\xf3\xed\ +\xee\xf3\xed\xed\xf2\xec\xed\xf3\xef\xef\xf5\xf1\xf2\xf6\xf3\xf4\ +\xf8\xf6\xf6\xf7\xf5\xf5\xf6\xf4\xf4\xf5\xf3\xf3\xf5\xf3\xf3\xf5\ +\xf2\xf2\xf3\xf0\xf0\xf3\xef\xef\xf0\xea\xeb\xec\xe5\xe5\xe9\xe2\ +\xde\xe4\xda\xd5\xe5\xdb\xd4\xe4\xd8\xd1\xe0\xd0\xc2\xdf\xc6\xb4\ +\xe0\xc7\xb4\xdd\xc1\xb3\xdb\xb6\xa6\xde\xb9\xa5\xe0\xbf\xaa\xdf\ +\xc7\xb7\xdf\xc9\xbf\xdf\xcf\xc4\xde\xcf\xc3\xe7\xdc\xd3\xec\xe5\ +\xe1\xe9\xe3\xdf\xe1\xd6\xcf\xda\xc3\xb8\xd9\xa9\x95\xdf\xb1\x98\ +\xe1\xb7\xa0\xe1\xba\xa2\xdf\xc0\xad\xde\xcb\xbb\xe2\xd5\xca\xe6\ +\xdb\xd3\xe7\xdf\xd6\xe9\xe2\xda\xea\xe2\xde\xe8\xe0\xd9\xe7\xdd\ +\xd6\xe3\xd7\xce\xe0\xcc\xbc\xe1\xc0\xa8\xe2\xb9\x9c\xe3\xba\x9e\ +\xe1\xc0\xa8\xdf\xc6\xb4\xe1\xc5\xb2\xe3\xc0\xab\xe5\xb7\x9d\xe6\ +\xae\x90\xe4\x9f\x74\xe4\x95\x65\xe2\x8c\x57\xe3\x8b\x56\xdf\x86\ +\x54\xe1\x7c\x40\xe4\x7b\x3b\xe5\x7b\x3b\xe4\x7c\x3d\xe4\x7b\x3b\ +\xe5\x7b\x3b\xe5\x7a\x3a\xe4\x7a\x3b\xe4\x7b\x39\xe6\x7a\x3a\xe5\ +\x7a\x38\xe6\x7b\x3a\xe4\x7a\x3b\xe4\x7a\x3b\xe5\x7a\x3a\xe6\x7a\ +\x38\xe6\x7a\x38\xe7\x7a\x37\xe7\x79\x38\xe5\x7a\x38\xe5\x7a\x36\ +\xde\x79\x3e\xda\x78\x3e\xd9\x77\x3d\xda\x76\x3d\xda\x77\x3b\xd7\ +\x77\x3c\xcd\x76\x41\xc2\x73\x43\xb3\x6e\x44\xb9\x6e\x44\x00\x00\ +\x00\xe9\x87\x49\xe6\x88\x48\xe8\x87\x48\xe8\x87\x49\xe7\x87\x47\ +\xe8\x87\x48\xe8\x87\x48\xe7\x86\x4a\xe7\x87\x48\xe8\x87\x48\xe7\ +\x87\x47\xe5\x87\x49\xe5\x86\x4a\xe6\x87\x49\xe7\x88\x48\xe7\x86\ +\x4b\xe6\x87\x49\xe7\x88\x49\xe6\x88\x49\xe7\x86\x49\xe6\x87\x49\ +\xe6\x87\x4b\xe6\x86\x48\xe4\x87\x4a\xe6\x87\x48\xe6\x89\x4f\xe6\ +\x91\x5a\xe6\x91\x5a\xe5\x8c\x57\xe5\x88\x4e\xe6\x86\x49\xe6\x86\ +\x4a\xe6\x87\x48\xe5\x86\x49\xe6\x88\x49\xe5\x87\x4a\xe5\x88\x4d\ +\xe5\x88\x4e\xe3\x88\x50\xe5\x8c\x56\xe2\x94\x65\xe1\x9d\x76\xe1\ +\x9b\x73\xe3\x9e\x73\xe5\x99\x68\xe7\x96\x60\xea\xa5\x73\xe7\xb9\ +\x9a\xe2\xb8\xa2\xe1\xb6\xa1\xe1\xb8\xa4\xe0\xc1\xaf\xde\xc6\xb9\ +\xdd\xc1\xb2\xdf\xca\xbf\xe0\xd3\xcc\xe4\xd7\xcf\xe8\xdd\xd5\xe5\ +\xd8\xcb\xe3\xd5\xca\xe6\xda\xd2\xe9\xe1\xdc\xed\xe8\xe5\xf0\xeb\ +\xeb\xf1\xec\xea\xf1\xeb\xec\xf3\xed\xed\xf2\xec\xed\xf1\xec\xec\ +\xf1\xeb\xeb\xf2\xeb\xec\xf3\xef\xf0\xf6\xf4\xf4\xf7\xf5\xf5\xf6\ +\xf4\xf4\xf6\xf4\xf4\xf4\xf3\xf3\xf5\xf2\xf2\xf3\xef\xf0\xf2\xed\ +\xee\xf2\xec\xed\xee\xe8\xe9\xea\xe3\xe1\xe8\xe1\xde\xe7\xde\xd7\ +\xe7\xdf\xd7\xe4\xd9\xd4\xe0\xd3\xc8\xe2\xd4\xc6\xe1\xd1\xc4\xdc\ +\xba\xac\xdd\x9c\x79\xdc\x9d\x7c\xdc\xa3\x87\xdd\xae\x98\xde\xbb\ +\xa7\xdf\xc8\xb7\xe0\xd0\xc2\xe8\xdf\xd9\xea\xe3\xe0\xe7\xe0\xde\ +\xdc\xca\xc4\xde\xb0\x9c\xe1\xab\x87\xe1\xb8\x9d\xdf\xc2\xaf\xde\ +\xc6\xb4\xdd\xc7\xb5\xe0\xcf\xc0\xe3\xd8\xce\xe6\xdc\xd6\xe7\xde\ +\xd9\xea\xe1\xde\xea\xe2\xde\xea\xe1\xde\xe8\xdf\xdb\xe5\xdb\xd4\ +\xe4\xd6\xca\xe1\xd3\xc3\xe0\xcb\xba\xdf\xc4\xb1\xde\xc4\xb4\xde\ +\xc3\xb4\xdf\xc8\xb6\xdf\xc5\xb4\xe1\xbe\xaa\xe4\xb9\xa3\xe5\xad\ +\x8e\xe5\xa6\x81\xe2\x97\x6c\xe1\x8e\x5d\xe2\x83\x48\xe3\x84\x47\ +\xe4\x7e\x3e\xe3\x7c\x3c\xe5\x7c\x3b\xe4\x7b\x3b\xe5\x7a\x3c\xe5\ +\x7a\x3b\xe5\x7a\x3a\xe5\x7a\x3a\xe5\x79\x39\xe4\x79\x38\xe5\x7a\ +\x39\xe3\x7a\x3a\xe5\x7b\x37\xe5\x7a\x3b\xe6\x7a\x39\xe5\x7a\x39\ +\xe7\x79\x37\xe6\x7a\x37\xe6\x79\x37\xe4\x7a\x38\xe4\x7a\x3a\xe5\ +\x7a\x3b\xe5\x7b\x3b\xe2\x7a\x3b\xd9\x7a\x3d\xcd\x74\x42\xbe\x70\ +\x43\xb7\x6f\x42\xd4\x7c\x44\xc3\x75\x46\x00\x00\x00\xe7\x86\x48\ +\xe6\x87\x4a\xe7\x87\x48\xe7\x87\x49\xe7\x87\x48\xe8\x87\x48\xe7\ +\x87\x48\xe6\x87\x4a\xe7\x87\x47\xe7\x87\x47\xe7\x87\x48\xe5\x86\ +\x48\xe7\x86\x47\xe6\x87\x48\xe5\x88\x48\xe6\x87\x49\xe6\x87\x49\ +\xe6\x87\x4a\xe6\x88\x48\xe6\x86\x4a\xe5\x87\x49\xe5\x87\x49\xe5\ +\x87\x4a\xe4\x86\x4c\xe6\x87\x49\xe5\x88\x4b\xe4\x8a\x53\xe4\x8a\ +\x52\xe6\x87\x4b\xe6\x87\x49\xe6\x85\x4a\xe6\x87\x4a\xe6\x86\x4a\ +\xe5\x87\x4a\xe5\x88\x4d\xe6\x89\x50\xe6\x8d\x55\xe5\x8a\x50\xe4\ +\x87\x4e\xe4\x8f\x5b\xe3\x92\x62\xe4\x8f\x5c\xe5\x96\x65\xe5\x9a\ +\x6c\xe6\x9b\x6b\xe6\xa2\x77\xe5\xb6\x9d\xe3\xc5\xb2\xe5\xbd\xa4\ +\xe3\xa8\x88\xe2\xac\x92\xe1\xb1\x9a\xdd\xae\x99\xe0\xb0\x99\xde\ +\xb6\xa5\xdd\xbd\xae\xe3\xd3\xcb\xe9\xe0\xd8\xe9\xdf\xd5\xe8\xdb\ +\xd1\xe7\xdb\xd5\xe8\xe1\xdd\xec\xe5\xe2\xef\xe7\xe7\xef\xea\xea\ +\xf0\xea\xeb\xf0\xea\xeb\xf0\xea\xeb\xf1\xec\xea\xf0\xeb\xe9\xf1\ +\xec\xea\xf2\xec\xed\xf3\xef\xf0\xf5\xf1\xf2\xf2\xee\xef\xef\xec\ +\xed\xf0\xeb\xec\xf0\xeb\xec\xee\xe9\xea\xec\xe7\xe8\xec\xe6\xe7\ +\xe9\xe4\xe2\xe8\xe1\xde\xe8\xe0\xdc\xe8\xdf\xda\xe9\xe0\xdc\xe6\ +\xdb\xd4\xe3\xd6\xcd\xe0\xd3\xcc\xdc\xc9\xc2\xdf\xb1\x9c\xe5\xa5\ +\x7b\xe3\xa0\x77\xe0\x9b\x72\xe1\xa8\x87\xe1\xb9\xa1\xdf\xc7\xb5\ +\xdc\xcb\xbf\xe2\xd7\xd2\xe5\xdb\xd7\xe1\xd7\xd3\xdd\xc2\xb4\xe0\ +\xbc\xa5\xe0\xc5\xae\xde\xc9\xb5\xdf\xcd\xbd\xe0\xcf\xc2\xdd\xcd\ +\xbc\xe1\xd4\xca\xe4\xd9\xd0\xe5\xdb\xd6\xe7\xde\xda\xe9\xe0\xdc\ +\xeb\xe1\xde\xea\xe1\xdd\xe8\xe0\xdc\xe7\xdd\xd9\xe6\xdc\xd3\xe4\ +\xd7\xcf\xe1\xd3\xc6\xde\xcb\xbd\xde\xc4\xb3\xdf\xbe\xaa\xde\xc2\ +\xb0\xe0\xc4\xb5\xe0\xbe\xab\xe0\xb7\xa5\xe0\xaf\x9a\xe0\xa7\x8c\ +\xe2\x9e\x78\xe0\x94\x69\xe1\x87\x52\xe1\x86\x4f\xe2\x81\x46\xe4\ +\x7b\x3a\xe4\x7b\x3b\xe5\x7a\x3c\xe4\x7b\x3b\xe5\x7a\x39\xe4\x79\ +\x39\xe6\x7a\x3a\xe5\x7a\x38\xe5\x79\x38\xe5\x7a\x38\xe6\x7a\x3a\ +\xe5\x7b\x38\xe4\x7a\x38\xe4\x7a\x37\xe5\x7a\x39\xe4\x79\x39\xe4\ +\x79\x38\xe5\x79\x38\xe6\x7a\x38\xe5\x7a\x37\xe6\x7a\x39\xe7\x7b\ +\x39\xe7\x7c\x39\xd8\x7e\x46\xd3\x79\x44\xc4\x71\x41\xce\x7a\x47\ +\xc0\x71\x42\xd0\x7a\x46\x00\x00\x00\xe7\x87\x4a\xe6\x86\x4a\xe8\ +\x87\x48\xe7\x88\x48\xe7\x87\x49\xe8\x86\x48\xe6\x87\x49\xe7\x86\ +\x47\xe7\x86\x49\xe6\x86\x49\xe6\x87\x4a\xe5\x86\x49\xe6\x87\x48\ +\xe4\x87\x4a\xe6\x87\x4b\xe7\x86\x4a\xe6\x87\x49\xe7\x87\x4a\xe7\ +\x87\x4a\xe6\x86\x4a\xe5\x86\x49\xe6\x87\x48\xe5\x86\x4b\xe6\x87\ +\x49\xe5\x86\x4c\xe6\x87\x48\xe7\x87\x4a\xe6\x86\x49\xe6\x87\x49\ +\xe7\x86\x4b\xe6\x86\x49\xe6\x87\x49\xe4\x86\x4a\xe5\x87\x4c\xe3\ +\x89\x50\xe6\x8e\x57\xe8\x95\x60\xe7\x8e\x53\xe6\x8b\x52\xe3\x8e\ +\x58\xe4\x90\x59\xe8\x99\x66\xe4\x99\x6d\xe4\x9a\x6e\xe7\xa7\x80\ +\xe7\xa6\x7d\xe1\xa1\x80\xe2\xb3\x9f\xe2\xb7\xa4\xe6\xaf\x8b\xe7\ +\xab\x87\xe3\xa6\x82\xe4\xa3\x7c\xe5\xae\x8e\xe3\xb9\x9e\xe1\xc1\ +\xab\xe0\xcf\xc5\xe8\xdf\xd9\xe8\xe0\xdb\xe6\xdd\xd6\xe3\xd6\xd1\ +\xe6\xdc\xd8\xe7\xe0\xdd\xec\xe4\xe3\xeb\xe5\xe6\xec\xe5\xe4\xec\ +\xe6\xe6\xed\xe7\xe8\xec\xe7\xe6\xed\xe7\xe8\xf0\xea\xeb\xf0\xea\ +\xeb\xea\xe4\xe6\xe6\xe1\xe2\xe4\xdd\xde\xe7\xe0\xdf\xea\xe4\xe2\ +\xe9\xe3\xe3\xe8\xe1\xdf\xe7\xde\xdb\xe6\xdf\xdd\xe4\xde\xdc\xe5\ +\xdc\xd9\xe8\xdf\xdb\xe7\xde\xda\xe9\xe0\xdc\xe7\xdf\xd8\xe3\xd8\ +\xd1\xdd\xcb\xc4\xdf\xb6\xa4\xdf\xa9\x8f\xde\xa8\x8c\xdb\x9b\x79\ +\xe1\x9a\x6e\xe0\xa6\x86\xdf\xb3\x9d\xdd\xbe\xae\xdd\xc3\xb3\xdd\ +\xcd\xc2\xe1\xd3\xcc\xe1\xd4\xcc\xdf\xcd\xbc\xe0\xcc\xb9\xe3\xd7\ +\xc8\xe3\xd7\xc8\xe1\xd4\xca\xe0\xd2\xc7\xe0\xd2\xc6\xe1\xd5\xcb\ +\xe1\xd7\xcf\xe4\xdb\xd3\xe7\xde\xd9\xea\xe1\xdd\xea\xe1\xdd\xe8\ +\xdf\xdb\xe9\xe0\xdc\xe8\xdf\xdb\xe8\xde\xd7\xe4\xd7\xd1\xe1\xd4\ +\xca\xdd\xce\xc1\xdd\xc9\xb8\xdf\xc4\xb3\xdf\xc3\xb3\xe0\xc4\xb3\ +\xdf\xc0\xb1\xe1\xb3\x9d\xe1\xa7\x86\xdc\x94\x70\xdc\x90\x68\xdf\ +\x8a\x5f\xe3\x89\x57\xe0\x85\x51\xe2\x82\x4a\xe3\x7d\x3d\xe4\x7b\ +\x39\xe4\x7a\x3b\xe5\x7b\x39\xe6\x7b\x38\xe6\x7a\x39\xe4\x7b\x38\ +\xe5\x7a\x39\xe5\x7b\x38\xe5\x7b\x38\xe4\x7a\x39\xe4\x7a\x38\xe4\ +\x7a\x3a\xe4\x79\x38\xe4\x79\x37\xe4\x79\x39\xe5\x79\x37\xe4\x7a\ +\x38\xe4\x79\x38\xe4\x79\x39\xe6\x79\x3b\xe7\x7c\x3c\xe8\x7c\x3e\ +\xd5\x78\x42\xc0\x72\x47\xbb\x6f\x44\xac\x6a\x45\xa5\x6c\x4c\x94\ +\x62\x4b\x00\x00\x00\xe8\x86\x4b\xe8\x86\x47\xe7\x87\x49\xe7\x86\ +\x49\xe7\x87\x46\xe5\x87\x48\xe5\x86\x48\xe7\x87\x47\xe6\x87\x47\ +\xe7\x87\x48\xe6\x86\x47\xe8\x86\x48\xe7\x86\x4a\xe5\x87\x49\xe6\ +\x88\x48\xe5\x88\x48\xe6\x87\x48\xe5\x87\x4a\xe4\x88\x4b\xe4\x86\ +\x49\xe5\x86\x49\xe6\x86\x48\xe5\x87\x4a\xe3\x87\x4b\xe5\x87\x47\ +\xe5\x87\x49\xe4\x87\x49\xe7\x87\x4a\xe4\x86\x4b\xe5\x87\x49\xe7\ +\x86\x49\xe5\x86\x48\xe7\x88\x4b\xe5\x88\x4d\xe6\x8d\x54\xe4\x90\ +\x5c\xe4\x96\x68\xe8\x9d\x6d\xea\x9d\x6a\xe4\x93\x60\xe5\x9d\x6c\ +\xe4\x9e\x75\xe7\x9e\x6e\xe2\x96\x65\xe0\x97\x70\xe3\x9e\x7d\xe0\ +\x92\x67\xda\x95\x73\xde\x98\x79\xdd\x9c\x7b\xe0\xa3\x82\xde\x99\ +\x73\xe2\xa7\x85\xdf\xa5\x88\xd9\xa0\x87\xdc\xaf\x9b\xe0\xcb\xc1\ +\xe5\xdc\xd5\xe8\xdd\xd9\xe4\xda\xd4\xe2\xd5\xcc\xe2\xd6\xd0\xe7\ +\xde\xda\xe9\xe1\xdc\xe9\xe1\xdc\xe6\xde\xdb\xe5\xde\xdb\xe5\xdf\ +\xdd\xe7\xe0\xdd\xe8\xdf\xe0\xe7\xdf\xe0\xe6\xdf\xe0\xe2\xd8\xd5\ +\xd8\xbc\xb3\xda\xc6\xbe\xdb\xce\xc8\xdd\xd1\xd0\xdf\xd4\xd4\xe3\ +\xd8\xd5\xe4\xda\xd3\xe1\xd5\xd1\xe0\xd5\xd0\xe1\xd7\xd1\xe2\xd7\ +\xd3\xe5\xda\xd6\xe4\xda\xd6\xe1\xd5\xd2\xdc\xcc\xc6\xdd\xc4\xb8\ +\xe1\xb4\x9c\xe2\xa9\x88\xe0\x9c\x75\xe4\x9d\x72\xe4\xa5\x7f\xe2\ +\xa5\x83\xe2\xb4\x99\xdf\xc2\xad\xdf\xcc\xbb\xe0\xd0\xc0\xe1\xd2\ +\xc7\xe2\xd7\xcf\xe4\xda\xd2\xe5\xda\xcf\xe6\xdd\xd7\xe5\xdb\xd4\ +\xe3\xd9\xd1\xe1\xd5\xcb\xe0\xd3\xca\xdf\xd2\xca\xe1\xd5\xcd\xe5\ +\xda\xd2\xe6\xdd\xd8\xe9\xe0\xdc\xea\xe1\xde\xeb\xe2\xde\xea\xe2\ +\xde\xeb\xe2\xde\xe7\xde\xdb\xe4\xdb\xd4\xe2\xd6\xce\xdd\xcf\xc6\ +\xde\xcc\xbe\xdd\xca\xba\xdd\xc7\xb8\xde\xc6\xb5\xdf\xbc\xad\xe2\ +\xb8\xa3\xe0\xb1\x9b\xde\x93\x6b\xdf\x88\x56\xe1\x88\x53\xdf\x85\ +\x52\xe3\x87\x52\xe3\x8c\x58\xe2\x85\x49\xe3\x7f\x40\xe3\x7a\x3b\ +\xe5\x7a\x3b\xe5\x7a\x39\xe6\x7b\x39\xe4\x79\x3a\xe4\x7b\x39\xe4\ +\x7a\x38\xe5\x7a\x38\xe5\x7a\x39\xe7\x79\x39\xe5\x7a\x39\xe3\x79\ +\x3a\xe4\x7a\x36\xe4\x7a\x38\xe5\x79\x37\xe6\x79\x37\xe4\x7a\x39\ +\xe5\x79\x38\xdd\x7a\x3e\xcb\x73\x42\xc3\x71\x42\xbd\x6e\x43\x95\ +\x60\x46\xc7\x72\x42\xcd\x78\x47\xac\x6d\x4a\xa2\x62\x41\x00\x00\ +\x00\xe6\x87\x4b\xe7\x87\x4b\xe8\x86\x49\xe7\x86\x47\xe7\x86\x48\ +\xe7\x87\x49\xe7\x86\x48\xe8\x86\x48\xe4\x87\x47\xe5\x87\x48\xe6\ +\x86\x48\xe5\x87\x4a\xe5\x87\x48\xe6\x87\x48\xe5\x88\x47\xe6\x87\ +\x48\xe6\x86\x49\xe5\x87\x48\xe5\x87\x4b\xe5\x87\x49\xe6\x87\x4a\ +\xe4\x87\x49\xe4\x86\x4a\xe5\x87\x4b\xe5\x87\x4a\xe5\x87\x4a\xe6\ +\x87\x49\xe6\x86\x49\xe7\x87\x48\xe6\x87\x49\xe4\x87\x4b\xe6\x85\ +\x49\xe6\x8b\x53\xe5\x8d\x54\xe6\x93\x60\xe7\x95\x61\xe6\x96\x62\ +\xe5\x9f\x72\xe6\xa2\x7a\xe6\x99\x6a\xe5\x9f\x73\xe3\x98\x6c\xe2\ +\x9b\x70\xe3\x92\x5d\xe4\x8f\x5a\xe2\x8b\x59\xe3\x87\x4f\xe4\x86\ +\x4b\xe3\x87\x51\xe2\x87\x50\xe0\x89\x56\xe1\x8b\x5a\xe2\x9a\x73\ +\xe2\x99\x6f\xe1\x93\x63\xe1\xa6\x84\xde\xc3\xb5\xdd\xcd\xc7\xe3\ +\xd8\xd3\xe1\xd6\xd0\xe0\xd3\xc9\xe0\xd2\xc8\xe5\xdb\xd6\xe9\xe0\ +\xdc\xe7\xdd\xd9\xe4\xd8\xd4\xe4\xd9\xd4\xe3\xd7\xd2\xde\xd1\xcd\ +\xdb\xcd\xc6\xdf\xd1\xcb\xdd\xce\xc8\xde\xd1\xca\xdf\xc2\xae\xdc\ +\xc1\xae\xdc\xba\xaa\xd9\xa9\x99\xda\xb8\xa9\xda\xc6\xbb\xdb\xcc\ +\xc7\xda\xc3\xb9\xdb\xc5\xb8\xdb\xca\xc0\xdb\xcb\xc5\xdc\xc9\xc3\ +\xda\xc4\xba\xdb\xc6\xb9\xde\xc4\xb5\xde\xc3\xb1\xe1\xb7\xa2\xdf\ +\xa8\x8a\xdf\x9a\x6e\xe0\x9f\x78\xdf\xa2\x80\xe1\xaa\x8b\xe1\xb8\ +\xa0\xdd\xc6\xb7\xde\xcd\xc0\xdf\xd1\xc8\xdf\xd2\xc9\xe2\xd7\xce\ +\xe6\xdc\xd7\xe6\xde\xd8\xe5\xdd\xd9\xe5\xdb\xd6\xe4\xda\xd3\xe3\ +\xd7\xcf\xde\xd1\xc8\xdc\xcc\xc4\xde\xd1\xc8\xe0\xd5\xcd\xe3\xda\ +\xd3\xe5\xdc\xd8\xe8\xdf\xdc\xea\xe1\xdf\xe8\xe2\xdf\xe7\xe1\xde\ +\xe8\xe0\xdc\xe7\xdd\xd7\xe3\xd8\xd2\xe0\xd4\xc9\xe1\xd3\xc7\xe0\ +\xd1\xc6\xdf\xca\xbe\xdd\xc5\xb7\xdf\xbc\xae\xe2\xb5\xa2\xdf\xaa\ +\x92\xdf\x93\x6b\xe0\x89\x55\xe0\x8a\x5a\xde\x80\x4a\xe0\x85\x4c\ +\xe0\x8b\x5c\xe3\x90\x5f\xde\x84\x50\xe4\x79\x39\xe3\x7a\x3a\xe3\ +\x7a\x3a\xe5\x79\x3a\xe6\x7a\x39\xe6\x79\x36\xe5\x79\x37\xe6\x7a\ +\x38\xe5\x79\x39\xe5\x79\x3a\xe6\x79\x39\xe4\x79\x38\xe5\x7a\x39\ +\xe5\x79\x38\xe6\x78\x38\xe7\x79\x39\xe4\x7a\x37\xe4\x79\x38\xdb\ +\x77\x3f\xcb\x74\x44\xc9\x71\x3f\xbb\x6b\x3f\xac\x67\x45\xaf\x64\ +\x3c\xb3\x67\x3d\xb0\x6b\x43\xb9\x6f\x46\x00\x00\x00\xe6\x87\x4a\ +\xe7\x87\x47\xe8\x87\x48\xe6\x86\x48\xe6\x86\x49\xe7\x87\x47\xe4\ +\x86\x49\xe6\x86\x49\xe6\x86\x49\xe6\x86\x48\xe5\x87\x48\xe6\x87\ +\x47\xe5\x87\x48\xe5\x87\x4a\xe6\x88\x47\xe5\x87\x47\xe3\x86\x49\ +\xe4\x87\x4a\xe5\x88\x4a\xe5\x88\x4a\xe5\x88\x49\xe3\x87\x4a\xe5\ +\x87\x4a\xe5\x87\x4b\xe4\x86\x4b\xe6\x87\x4a\xe6\x87\x4a\xe4\x86\ +\x48\xe4\x86\x49\xe7\x87\x4a\xe5\x86\x49\xe3\x86\x49\xe4\x8d\x59\ +\xe5\x8f\x5a\xe6\x96\x68\xe9\xa7\x7d\xeb\xaa\x82\xe8\xa8\x80\xe7\ +\xa8\x80\xe9\xa6\x7a\xe6\x9e\x71\xe2\x91\x62\xe1\x8b\x57\xe2\x89\ +\x53\xe2\x89\x53\xe5\x8a\x51\xe5\x8a\x51\xe4\x87\x4d\xe4\x88\x4b\ +\xe5\x88\x4c\xe4\x87\x4b\xe4\x86\x4e\xe1\x89\x56\xe1\x8d\x5a\xe1\ +\x8f\x5e\xe0\xa1\x7c\xde\xb8\xa6\xde\xb8\xa6\xdf\xce\xc5\xe1\xd4\ +\xca\xe1\xd4\xca\xe4\xd6\xcc\xe4\xda\xd2\xe7\xdc\xd7\xe4\xd8\xd3\ +\xe1\xd5\xcd\xe0\xd4\xcc\xdb\xcd\xc7\xdb\xc9\xc0\xdd\xc9\xbc\xdd\ +\xce\xc5\xdf\xd2\xc8\xe1\xd1\xc6\xde\xc5\xb2\xdc\xc0\xae\xdd\xb1\ +\x9b\xdf\xa1\x7f\xde\xb7\x9f\xdc\xc1\xb2\xdc\xc2\xb2\xe0\xc8\xb4\ +\xe0\xce\xbd\xdd\xca\xbc\xdd\xbd\xac\xdd\xba\xa7\xdf\xc0\xac\xdf\ +\xc8\xb7\xde\xc3\xb3\xdd\xb7\xa6\xdb\xa8\x90\xdc\x9d\x7a\xe1\x93\ +\x64\xe1\xa1\x77\xe1\xa0\x76\xe0\xa9\x89\xe0\xbc\xa6\xdd\xc5\xb5\ +\xde\xce\xc1\xde\xcf\xc6\xdd\xcf\xc5\xe0\xd5\xcc\xe2\xd9\xd4\xe5\ +\xdc\xd7\xe6\xdd\xd9\xe6\xdd\xd9\xe5\xdb\xd6\xe3\xd9\xd2\xdf\xd3\ +\xca\xdc\xca\xbf\xda\xc8\xbd\xdb\xcd\xc4\xdf\xd3\xcd\xe2\xd7\xd2\ +\xe4\xdb\xd5\xe6\xde\xdb\xe7\xe0\xdd\xe7\xe0\xdd\xe8\xdf\xdb\xe7\ +\xde\xda\xe6\xdb\xd7\xe4\xd9\xd1\xe2\xd7\xcf\xde\xd2\xcb\xdb\xc6\ +\xbd\xdd\xbe\xb2\xdf\xbe\xae\xe1\xb9\xa4\xe1\xb3\x9b\xe1\xa1\x7b\ +\xe0\x8d\x5e\xdf\x86\x50\xe2\x84\x48\xe1\x83\x48\xdf\x82\x49\xe1\ +\x8b\x5c\xdf\x7e\x47\xe2\x79\x38\xe3\x7a\x39\xe5\x79\x38\xe4\x79\ +\x3a\xe6\x7a\x39\xe5\x79\x39\xe5\x79\x38\xe5\x7a\x38\xe5\x79\x38\ +\xe4\x79\x38\xe6\x78\x37\xe3\x79\x39\xe5\x79\x39\xe5\x79\x38\xe5\ +\x78\x38\xe5\x79\x38\xe5\x7a\x37\xe5\x7a\x39\xe3\x79\x3b\xcb\x73\ +\x42\xc1\x6e\x3e\xb5\x6c\x46\xc0\x6d\x3e\xd5\x79\x40\xd2\x7b\x43\ +\xd1\x7b\x46\xb9\x6f\x49\x00\x00\x00\xe5\x87\x49\xe8\x88\x45\xe6\ +\x86\x48\xe5\x87\x49\xe6\x87\x48\xe5\x86\x49\xe5\x86\x48\xe5\x86\ +\x47\xe6\x85\x47\xe6\x86\x47\xe6\x86\x4a\xe6\x85\x49\xe6\x86\x4a\ +\xe6\x87\x47\xe5\x87\x48\xe5\x87\x49\xe5\x86\x48\xe6\x87\x49\xe4\ +\x87\x4a\xe4\x87\x4a\xe4\x86\x49\xe4\x87\x49\xe4\x87\x4b\xe5\x87\ +\x4c\xe4\x87\x4c\xe7\x88\x4a\xe5\x87\x4b\xe3\x86\x49\xe4\x87\x4a\ +\xe4\x87\x4a\xe4\x86\x4a\xe5\x85\x49\xe4\x88\x4f\xe4\x8d\x58\xe3\ +\x98\x6b\xe3\x9f\x7a\xe4\xab\x8d\xe7\xae\x8d\xe6\xae\x8c\xe9\xb1\ +\x90\xe8\xa2\x76\xe3\x8c\x57\xe4\x87\x4c\xe3\x87\x4d\xe3\x88\x4d\ +\xe2\x89\x51\xe5\x89\x50\xe4\x88\x4d\xe4\x88\x4d\xe4\x89\x4f\xe3\ +\x87\x4e\xe4\x87\x4e\xe3\x89\x54\xe4\x8b\x55\xe1\x8a\x56\xde\x96\ +\x6d\xe3\xaf\x96\xe5\xb9\x9e\xe3\xcf\xbf\xe1\xd2\xc8\xde\xd0\xc6\ +\xe4\xd7\xcf\xe5\xd8\xd0\xe4\xd9\xd5\xdf\xd2\xcd\xde\xcf\xca\xdf\ +\xd0\xca\xdb\xba\xad\xdb\xc5\xb7\xdc\xc3\xb5\xdc\xc8\xba\xe2\xd4\ +\xc7\xe7\xde\xd4\xe7\xd9\xca\xe3\xce\xbb\xe0\xb4\x98\xe1\xa4\x81\ +\xdf\xae\x90\xde\xba\xa6\xe0\xcc\xb9\xe1\xd4\xca\xde\xd0\xc7\xdd\ +\xc4\xb5\xdf\xc2\xac\xde\xc5\xb2\xe0\xc8\xb3\xde\xcc\xbd\xdd\xbf\ +\xb0\xdc\xa8\x8f\xe0\x9c\x74\xe3\xa3\x79\xe2\x9d\x70\xe2\xa1\x7a\ +\xe3\xad\x8d\xe1\xae\x91\xe0\xb6\x9f\xdd\xc5\xb4\xdd\xcc\xc1\xde\ +\xce\xc3\xdb\xca\xc0\xdd\xce\xc7\xdf\xd4\xcc\xe3\xda\xd1\xe4\xdc\ +\xd8\xe5\xdc\xd8\xe3\xd9\xd5\xe1\xd7\xd1\xdf\xd3\xcb\xdc\xcb\xbf\ +\xdb\xc2\xb4\xdb\xc6\xba\xdc\xcd\xc6\xde\xd2\xca\xe0\xd6\xcd\xe5\ +\xdc\xd5\xe7\xde\xdb\xe7\xdf\xdc\xe8\xdf\xdb\xe6\xdd\xd9\xe5\xdb\ +\xd7\xe0\xd5\xd0\xdd\xd0\xcb\xdc\xcc\xc6\xdb\xbf\xb1\xdf\xbf\xad\ +\xdf\xc3\xb4\xdf\xbf\xad\xe0\xb2\x9e\xe0\xa6\x88\xde\x94\x69\xe1\ +\x8a\x55\xe1\x8d\x5b\xe2\x89\x55\xe3\x87\x4f\xe2\x8c\x56\xe2\x83\ +\x4b\xe1\x7a\x3a\xe4\x79\x39\xe4\x78\x36\xe6\x78\x36\xe5\x79\x39\ +\xe4\x79\x39\xe6\x78\x38\xe6\x7a\x39\xe5\x79\x38\xe5\x79\x38\xe4\ +\x79\x38\xe5\x7a\x38\xe4\x78\x39\xe3\x78\x39\xe6\x79\x38\xe5\x7a\ +\x39\xe3\x78\x39\xe5\x79\x38\xe1\x7b\x3e\xc9\x76\x47\xc3\x71\x42\ +\xca\x73\x42\xe2\x7e\x40\xd1\x7c\x49\xcf\x7d\x4c\xc9\x76\x47\xae\ +\x6a\x43\x00\x00\x00\xe7\x87\x47\xe6\x87\x47\xe6\x86\x49\xe6\x86\ +\x49\xe6\x86\x48\xe6\x86\x46\xe5\x87\x46\xe6\x85\x49\xe6\x86\x45\ +\xe5\x86\x48\xe5\x86\x47\xe5\x86\x49\xe5\x86\x49\xe5\x87\x47\xe4\ +\x86\x48\xe5\x87\x4a\xe5\x87\x4a\xe4\x88\x4a\xe3\x87\x49\xe4\x86\ +\x4a\xe3\x86\x4a\xe4\x86\x49\xe3\x87\x49\xe3\x86\x4a\xe4\x87\x4a\ +\xe5\x87\x49\xe5\x87\x49\xe4\x87\x4b\xe4\x87\x4a\xe4\x86\x4c\xe4\ +\x87\x4a\xe4\x86\x48\xe3\x86\x4b\xe3\x88\x51\xe1\x8f\x5d\xe3\x94\ +\x68\xe2\x9f\x78\xe3\xa6\x87\xe5\xac\x8d\xe5\xb2\x98\xe4\xa4\x7f\ +\xe5\x8d\x56\xe5\x88\x4e\xe4\x87\x4c\xe4\x87\x4b\xe4\x87\x4c\xe5\ +\x89\x4f\xe4\x88\x4b\xe5\x89\x4e\xe5\x8a\x51\xe4\x88\x4e\xe4\x86\ +\x4b\xe2\x88\x51\xe4\x8a\x52\xe3\x88\x50\xe1\x8b\x56\xe0\xa8\x8d\ +\xe0\xc0\xae\xe3\xd3\xcb\xe2\xd3\xc8\xde\xc8\xbc\xe2\xd4\xcb\xe2\ +\xd6\xcd\xde\xcf\xca\xdb\xbb\xb1\xdd\xc0\xb4\xdd\xce\xc4\xe0\xb6\ +\x9e\xdf\xc9\xba\xde\xc7\xb5\xdf\xcc\xbe\xe6\xdc\xd3\xea\xe1\xdc\ +\xeb\xe2\xdb\xe7\xde\xd4\xe3\xcd\xb6\xe2\xc1\xa3\xe3\xca\xaf\xe0\ +\xca\xb3\xe0\xd5\xc7\xe0\xd2\xc9\xdd\xcc\xbf\xdf\xca\xb8\xe0\xcf\ +\xbe\xe0\xcf\xbe\xdf\xcd\xc0\xdc\xc5\xba\xdd\xb5\xa3\xe2\xaa\x86\ +\xe3\xad\x89\xe4\xb3\x96\xe3\xb4\x94\xe5\xaf\x8f\xe2\xb8\x9f\xe1\ +\xba\xa2\xe1\xba\xa2\xdd\xc5\xb4\xdd\xcb\xc0\xde\xd0\xc4\xdd\xcd\ +\xc0\xde\xd0\xc1\xe1\xd7\xcd\xe2\xd9\xd1\xe4\xd9\xd5\xe3\xd8\xd4\ +\xe0\xd5\xcf\xdf\xd4\xcc\xde\xd1\xc9\xdb\xc9\xbd\xdc\xbf\xb1\xdc\ +\xbe\xb0\xdb\xc3\xb9\xdc\xcc\xc1\xe0\xd4\xcb\xe4\xdb\xd3\xe6\xdd\ +\xd8\xe7\xde\xda\xe7\xde\xda\xe5\xdb\xd7\xe3\xd8\xd4\xde\xd2\xcb\ +\xdc\xca\xc0\xdc\xc3\xb8\xdf\xbf\xac\xdf\xc4\xb2\xdf\xc5\xb6\xdf\ +\xbc\xaf\xe0\xaf\x9a\xde\xa2\x82\xdf\x97\x70\xe1\x93\x64\xdf\x93\ +\x66\xe1\x8c\x5e\xe3\x90\x5f\xe4\x99\x6a\xe1\x91\x61\xe2\x82\x48\ +\xe2\x7d\x3c\xe3\x7a\x38\xe5\x78\x37\xe5\x78\x38\xe3\x78\x3b\xe4\ +\x79\x38\xe4\x79\x39\xe4\x79\x38\xe3\x79\x38\xe5\x79\x37\xe5\x7a\ +\x38\xe4\x79\x37\xe5\x79\x37\xe5\x79\x39\xe4\x79\x39\xe4\x79\x39\ +\xe5\x7a\x3b\xe3\x7b\x3d\xd8\x79\x43\xbf\x6e\x40\xd6\x7b\x42\xc2\ +\x7a\x50\xbe\x76\x4e\x8b\x5d\x49\x81\x51\x34\x7a\x54\x44\x00\x00\ +\x00\xe4\x86\x4a\xe5\x87\x49\xe5\x86\x48\xe5\x86\x47\xe4\x85\x47\ +\xe5\x86\x49\xe6\x86\x48\xe6\x86\x47\xe6\x86\x4a\xe6\x87\x49\xe5\ +\x87\x49\xe5\x86\x4a\xe5\x86\x4a\xe4\x87\x49\xe4\x86\x4b\xe4\x87\ +\x49\xe4\x87\x48\xe4\x87\x49\xe5\x87\x4a\xe4\x87\x4b\xe4\x87\x4a\ +\xe4\x86\x4a\xe6\x87\x49\xe6\x88\x4a\xe6\x86\x48\xe4\x86\x4a\xe3\ +\x86\x49\xe4\x87\x4a\xe5\x87\x49\xe7\x86\x49\xe3\x85\x4c\xe3\x86\ +\x4a\xe3\x86\x49\xe5\x89\x4d\xe5\x8b\x57\xe3\x91\x61\xe1\x90\x5f\ +\xde\x8f\x62\xdf\x9b\x78\xe3\xa5\x83\xe4\x9b\x6f\xe7\x99\x68\xe3\ +\x87\x4c\xe3\x86\x4b\xe3\x86\x4c\xe5\x88\x4b\xe5\x87\x4b\xe5\x8b\ +\x50\xe6\x8d\x56\xe6\x8e\x56\xe5\x89\x4f\xe5\x89\x4c\xe3\x86\x4e\ +\xe4\x89\x4f\xe3\x88\x4e\xe3\x86\x4d\xdf\x93\x6a\xdf\xa8\x90\xde\ +\xbf\xb4\xe0\xd0\xc5\xdf\xc7\xb6\xdf\xd0\xc5\xe1\xd1\xca\xdf\xca\ +\xbd\xe2\xba\xa1\xe1\xcb\xb7\xdd\xcd\xc2\xe0\xc7\xb2\xde\xcd\xc1\ +\xde\xcf\xc3\xde\xcb\xbf\xe3\xda\xd4\xe8\xe0\xdb\xea\xe1\xdd\xea\ +\xe1\xdd\xe8\xdf\xd6\xe6\xd9\xcd\xe6\xd8\xd0\xe2\xd6\xcb\xe1\xd5\ +\xcb\xe0\xd0\xc4\xdf\xd0\xc0\xe0\xd2\xc3\xe1\xd3\xc6\xe0\xd4\xc8\ +\xdb\xc0\xb5\xdd\xb9\xa7\xe1\xb4\x98\xe1\xbd\xa3\xe1\xc6\xaf\xe0\ +\xc0\xac\xdf\xc0\xa9\xe1\xc1\xab\xdf\xc4\xaf\xde\xc5\xb2\xdf\xbd\ +\xa7\xdd\xc1\xb0\xdd\xca\xbc\xe0\xd0\xc4\xe2\xd4\xc6\xe2\xd7\xcc\ +\xe3\xd9\xd1\xe3\xda\xd2\xe2\xd8\xd1\xdf\xd5\xce\xdc\xd0\xc8\xdc\ +\xce\xc5\xdb\xcc\xc2\xdc\xc6\xb9\xdc\xc0\xb0\xdf\xc0\xad\xde\xc0\ +\xae\xdc\xc6\xb7\xdf\xd1\xc6\xe5\xdb\xd4\xe6\xdc\xd8\xe3\xda\xd6\ +\xe3\xd8\xd4\xe1\xd6\xd1\xdf\xd4\xce\xdd\xd1\xc7\xdc\xca\xbf\xdd\ +\xc6\xb7\xde\xc5\xb4\xdd\xc4\xb4\xde\xc2\xb2\xdf\xb4\xa2\xde\xab\ +\x92\xdc\x9e\x7b\xdd\x98\x6e\xe1\x9c\x70\xdf\x98\x6c\xdf\x92\x64\ +\xe1\x93\x65\xe1\x9b\x71\xe3\x9e\x73\xe2\x95\x67\xe2\x8b\x56\xe2\ +\x7b\x3d\xe3\x78\x38\xe3\x77\x37\xe5\x7a\x38\xe4\x79\x38\xe4\x7a\ +\x39\xe5\x7a\x38\xe5\x7a\x39\xe4\x79\x39\xe2\x78\x39\xe3\x79\x39\ +\xe2\x79\x39\xe4\x79\x38\xe5\x78\x38\xe3\x7a\x3a\xe4\x79\x3b\xe5\ +\x7b\x3b\xd5\x79\x40\xc3\x7a\x4f\xc4\x7a\x4b\xca\x7c\x54\xaf\x6c\ +\x47\xb6\x6f\x45\x9e\x63\x41\x7e\x51\x36\x00\x00\x00\xe4\x87\x4a\ +\xe5\x87\x48\xe5\x87\x4b\xe5\x86\x49\xe4\x86\x4a\xe6\x86\x48\xe5\ +\x86\x49\xe5\x85\x4a\xe3\x86\x48\xe4\x87\x48\xe4\x86\x48\xe4\x86\ +\x48\xe6\x87\x48\xe5\x86\x49\xe5\x87\x49\xe5\x86\x49\xe5\x86\x4a\ +\xe3\x87\x4a\xe4\x86\x4b\xe3\x87\x4a\xe4\x87\x4a\xe4\x86\x4a\xe4\ +\x87\x4b\xe4\x87\x4b\xe4\x87\x4c\xe3\x86\x4a\xe3\x86\x49\xe4\x87\ +\x49\xe5\x88\x48\xe4\x86\x49\xe4\x85\x4b\xe3\x86\x49\xe4\x86\x4c\ +\xe3\x88\x52\xe3\x8a\x52\xe3\x92\x60\xe4\x8d\x57\xe3\x87\x50\xe1\ +\x89\x56\xe0\x97\x70\xe0\x93\x6a\xe1\x8f\x60\xe4\x85\x4c\xe6\x85\ +\x4c\xe4\x85\x4d\xe3\x87\x4e\xe5\x8b\x51\xe7\x92\x5c\xe9\x98\x66\ +\xe6\x93\x5f\xe3\x8a\x50\xe4\x8d\x56\xe5\x8b\x52\xe4\x8b\x55\xe3\ +\x89\x53\xe3\x84\x4c\xe0\x83\x4a\xdf\x8d\x61\xde\xa8\x93\xdb\xc1\ +\xb6\xde\xc4\xb5\xde\xc9\xbe\xdc\xc9\xc0\xdf\xca\xbc\xe1\xd0\xbf\ +\xe2\xd6\xcc\xe1\xd3\xc6\xdf\xd0\xc4\xdd\xc5\xb6\xdb\xc8\xbb\xe0\ +\xce\xc0\xe5\xdc\xd3\xe8\xde\xd9\xe7\xe0\xdc\xe8\xe1\xdd\xe8\xe0\ +\xda\xe8\xde\xd8\xe7\xde\xd7\xe7\xdd\xd4\xe5\xda\xd1\xe3\xd6\xca\ +\xe3\xd6\xca\xe4\xd8\xcf\xe5\xd9\xd0\xdf\xcf\xc6\xdc\xb2\xa0\xdc\ +\xa7\x8e\xdf\xbb\xa6\xdf\xc9\xb7\xdf\xcd\xbf\xdf\xca\xb9\xe0\xce\ +\xbd\xe1\xd1\xc1\xe1\xd2\xc2\xe0\xcf\xbf\xe0\xcb\xb9\xdf\xc7\xb4\ +\xdd\xca\xb9\xe0\xd2\xc5\xe4\xd8\xcf\xe4\xda\xd3\xe5\xdc\xd3\xe3\ +\xd9\xd2\xe2\xd7\xd0\xdf\xd4\xcb\xdd\xd0\xc5\xdc\xcc\xc0\xdc\xc7\ +\xba\xdb\xc3\xb4\xdc\xc0\xb0\xdd\xc4\xb4\xdd\xc3\xb2\xdd\xc3\xb2\ +\xdc\xcb\xc1\xdd\xd1\xca\xdf\xd3\xcf\xdc\xce\xca\xdb\xca\xc1\xdb\ +\xcc\xc4\xdc\xcd\xc5\xdc\xcc\xc3\xde\xca\xbd\xdd\xc6\xb9\xdc\xc2\ +\xb4\xde\xc1\xb2\xde\xbf\xae\xdf\xb2\x9f\xdf\xa8\x8b\xe0\xa2\x7b\ +\xe1\xa1\x78\xdf\x9e\x76\xe1\x9e\x76\xe0\x9c\x71\xdf\x99\x6d\xe1\ +\x9b\x73\xe1\xa1\x7b\xe1\x9a\x71\xe3\x99\x6b\xe3\x87\x50\xe2\x80\ +\x42\xe3\x7b\x3c\xe3\x78\x38\xe5\x7a\x39\xe4\x7a\x38\xe4\x79\x39\ +\xe3\x79\x39\xe3\x79\x3a\xe3\x79\x3a\xe3\x78\x39\xe3\x78\x39\xe2\ +\x78\x39\xe4\x7a\x3a\xe5\x7a\x37\xe6\x7b\x39\xe5\x7b\x3a\xde\x7d\ +\x42\xd6\x7a\x48\xaa\x6e\x4f\xaf\x6c\x47\xc3\x78\x4b\x80\x59\x46\ +\x91\x59\x3b\xbf\x71\x3e\x00\x00\x00\xe4\x87\x49\xe5\x86\x48\xe4\ +\x87\x4b\xe4\x85\x49\xe4\x86\x49\xe4\x85\x48\xe6\x86\x47\xe5\x85\ +\x49\xe4\x86\x49\xe6\x86\x47\xe5\x86\x48\xe5\x86\x48\xe5\x87\x48\ +\xe3\x87\x48\xe3\x87\x4a\xe4\x87\x4a\xe3\x86\x4a\xe4\x87\x4b\xe6\ +\x87\x49\xe4\x86\x4b\xe4\x86\x4b\xe4\x86\x4b\xe4\x87\x4a\xe4\x87\ +\x4b\xe4\x87\x4a\xe3\x86\x4a\xe3\x86\x4a\xe4\x87\x4a\xe5\x86\x49\ +\xe4\x85\x48\xe3\x86\x4a\xe4\x85\x4b\xe4\x85\x4b\xe3\x87\x4c\xe4\ +\x88\x4e\xe3\x8c\x5a\xe4\x8a\x54\xe2\x85\x4b\xe3\x85\x4c\xe0\x86\ +\x4e\xe1\x8a\x56\xe3\x87\x4e\xe2\x85\x4d\xe3\x86\x4b\xe2\x86\x4b\ +\xe2\x88\x4f\xe5\x8f\x5b\xe4\x98\x6a\xe4\x9c\x70\xe4\x91\x60\xe4\ +\x89\x51\xe2\x87\x4e\xe3\x87\x4d\xe3\x88\x4e\xe3\x87\x4d\xe4\x85\ +\x49\xe3\x83\x48\xe1\x81\x47\xdd\x88\x5d\xd7\x91\x72\xdb\xa5\x8f\ +\xde\xb4\xa3\xde\xbb\xaa\xe0\xcc\xbd\xe0\xd1\xc5\xe0\xd3\xcc\xe2\ +\xd6\xcf\xe1\xd5\xcb\xe5\xd6\xc7\xe3\xd6\xc8\xe2\xd5\xcb\xe6\xdd\ +\xd7\xe6\xdc\xd6\xe4\xdb\xd4\xea\xe1\xde\xea\xe1\xdd\xeb\xe3\xdd\ +\xeb\xe4\xde\xea\xe4\xdd\xe9\xe0\xd9\xe7\xdc\xd5\xe5\xdb\xd2\xe6\ +\xdc\xd5\xe5\xdd\xd7\xdd\xc9\xc1\xdb\xa3\x88\xe0\xa6\x82\xdf\xbc\ +\xa6\xdc\xc7\xbb\xdd\xca\xbd\xdf\xd1\xc2\xe2\xd5\xca\xe3\xd7\xce\ +\xe2\xd6\xcd\xe1\xd5\xca\xe0\xd3\xc8\xdf\xd0\xc3\xde\xcd\xbe\xe1\ +\xd4\xc9\xe3\xda\xd2\xe5\xdc\xd4\xe5\xdb\xd3\xe3\xd9\xd2\xe2\xd8\ +\xcf\xe1\xd5\xcc\xdf\xd2\xc7\xdc\xcb\xbe\xdc\xc4\xb5\xdd\xc3\xb3\ +\xde\xc4\xb3\xdd\xc6\xb6\xdd\xc5\xb5\xdc\xc3\xb4\xda\xc1\xb6\xda\ +\xc0\xb7\xd8\xbb\xb2\xd9\xb8\xad\xdc\xbd\xaf\xdb\xc4\xb7\xdb\xc8\ +\xbb\xdb\xc8\xbb\xdb\xc6\xb8\xdb\xc4\xb6\xdd\xc2\xb2\xdf\xbe\xae\ +\xdf\xbb\xaa\xe0\xb3\x9e\xe1\xab\x91\xdf\xa8\x88\xdf\xa7\x86\xdf\ +\xa3\x7d\xe0\xa4\x80\xe0\xa2\x7e\xe1\xa1\x79\xe3\xa3\x7c\xe3\xa4\ +\x7d\xe2\xa2\x7c\xe3\xa2\x7c\xe3\x99\x6d\xe0\x89\x57\xe0\x7f\x44\ +\xe2\x7a\x3b\xe3\x79\x39\xe2\x7a\x3a\xe2\x79\x3a\xe5\x79\x3a\xe2\ +\x78\x38\xe3\x79\x38\xe3\x78\x39\xe3\x78\x38\xe3\x78\x38\xe3\x79\ +\x38\xe3\x7a\x39\xe4\x7b\x39\xe4\x7c\x3b\xd9\x7a\x41\xc2\x6f\x42\ +\xc4\x77\x48\xc7\x76\x4b\xa8\x66\x43\x9f\x65\x43\xa4\x66\x42\xbb\ +\x6d\x40\x00\x00\x00\xe5\x86\x49\xe6\x87\x47\xe5\x85\x4a\xe6\x86\ +\x49\xe5\x86\x48\xe4\x85\x49\xe4\x86\x4a\xe5\x86\x4a\xe4\x85\x49\ +\xe5\x85\x49\xe5\x86\x49\xe4\x86\x48\xe4\x86\x49\xe4\x86\x48\xe4\ +\x86\x49\xe4\x86\x4b\xe4\x86\x4b\xe3\x86\x4d\xe4\x88\x4a\xe4\x85\ +\x4b\xe4\x87\x49\xe4\x86\x49\xe4\x86\x4a\xe4\x87\x4b\xe3\x86\x4a\ +\xe3\x86\x49\xe3\x86\x4a\xe5\x86\x4b\xe4\x86\x4b\xe3\x86\x4a\xe3\ +\x86\x48\xe3\x86\x4a\xe4\x86\x4a\xe4\x87\x4d\xe4\x89\x4f\xe5\x8c\ +\x55\xe6\x91\x5c\xe4\x86\x49\xe3\x85\x49\xe3\x86\x4a\xe1\x86\x4b\ +\xe2\x86\x4a\xe3\x85\x4a\xe4\x86\x4a\xe3\x85\x4b\xe2\x88\x51\xe4\ +\x93\x61\xe4\x96\x66\xe2\x90\x61\xe3\x88\x52\xe4\x87\x4c\xe3\x86\ +\x4c\xe4\x86\x4b\xe3\x86\x4b\xe3\x85\x4a\xe3\x85\x4a\xe2\x86\x4c\ +\xe2\x84\x48\xe3\x81\x44\xe2\x83\x4c\xde\x8f\x62\xdc\x99\x77\xda\ +\xa3\x8b\xdb\xbd\xb2\xde\xc9\xbf\xde\xc6\xba\xdd\xca\xc1\xe3\xd8\ +\xd1\xe8\xdf\xd7\xe7\xde\xd8\xe4\xd8\xd1\xe4\xd9\xd6\xe7\xdf\xd8\ +\xe9\xe1\xdb\xee\xe7\xe2\xee\xe8\xe5\xef\xe8\xe5\xec\xe6\xe2\xea\ +\xe4\xe0\xea\xe1\xdd\xe8\xdd\xd9\xe3\xd9\xd3\xdf\xd1\xcc\xdc\xca\ +\xc6\xda\xb1\xa2\xe0\xa1\x7b\xe0\xaa\x8c\xde\xb1\x9c\xdc\xbc\xac\ +\xdc\xc5\xb4\xdf\xce\xc3\xe0\xd4\xcb\xe2\xd5\xce\xe3\xd6\xce\xe2\ +\xd5\xcd\xe1\xd5\xcb\xdf\xd3\xc9\xe0\xd2\xc7\xe2\xd7\xcd\xe4\xda\ +\xd3\xe5\xdc\xd4\xe4\xdb\xd2\xe2\xd9\xd1\xe2\xd7\xcf\xe0\xd5\xcc\ +\xdf\xd2\xc8\xde\xcd\xc1\xdd\xc7\xb8\xdd\xc4\xb3\xdc\xc5\xb5\xdd\ +\xc6\xb6\xdc\xc4\xb5\xdc\xbf\xb1\xdc\xb6\xa6\xdb\xae\x9a\xdd\xab\ +\x96\xdc\xa8\x90\xdd\xb4\x9f\xdd\xbf\xaf\xdc\xc3\xb3\xdc\xc5\xb5\ +\xdc\xc0\xb2\xdc\xbf\xb0\xdd\xbe\xaf\xdd\xbb\xaa\xdf\xb7\xa4\xdf\ +\xb1\x9a\xdf\xab\x92\xe0\xaa\x90\xde\xa7\x8a\xdf\xa7\x85\xe0\xa9\ +\x89\xe1\xa8\x89\xe1\xaa\x8a\xe1\xab\x8b\xe1\xaa\x8a\xe2\xa7\x83\ +\xe3\xa6\x81\xe1\xa0\x79\xe1\x94\x66\xde\x83\x4d\xdf\x7d\x3f\xe2\ +\x79\x3a\xe3\x79\x3a\xe3\x7a\x3a\xe4\x7a\x39\xe3\x79\x39\xe5\x79\ +\x38\xe4\x78\x38\xe2\x78\x38\xe4\x78\x38\xe4\x79\x39\xe4\x7a\x3b\ +\xe5\x7a\x3c\xdd\x7a\x3f\xcb\x77\x46\xc5\x76\x47\xb3\x71\x4c\x81\ +\x55\x44\x7d\x56\x40\xa0\x68\x49\x91\x63\x4a\x9b\x63\x45\x00\x00\ +\x00\xe4\x86\x49\xe5\x86\x48\xe4\x85\x4a\xe5\x86\x49\xe5\x86\x48\ +\xe5\x85\x47\xe4\x85\x49\xe5\x86\x47\xe4\x84\x49\xe4\x84\x4a\xe4\ +\x86\x4b\xe4\x85\x49\xe5\x87\x49\xe4\x86\x49\xe4\x86\x4b\xe3\x86\ +\x4a\xe4\x86\x4b\xe4\x86\x4c\xe4\x87\x4a\xe4\x87\x4b\xe3\x86\x4a\ +\xe3\x86\x49\xe4\x87\x4b\xe4\x86\x4c\xe3\x85\x4c\xe4\x86\x49\xe4\ +\x86\x49\xe4\x86\x4a\xe4\x86\x4a\xe2\x85\x4a\xe4\x86\x49\xe3\x86\ +\x4b\xe3\x86\x4b\xe2\x85\x4a\xe3\x87\x50\xe3\x8e\x57\xe4\x92\x62\ +\xe4\x87\x4d\xe4\x85\x49\xe4\x85\x4a\xe2\x85\x4a\xe3\x85\x4a\xe4\ +\x85\x4b\xe3\x85\x4a\xe3\x86\x4a\xe4\x89\x53\xe5\x93\x62\xe5\x96\ +\x66\xe5\x8c\x57\xe4\x88\x4d\xe3\x88\x4a\xe3\x86\x4b\xe4\x86\x4b\ +\xe4\x86\x4a\xe3\x87\x4b\xe4\x86\x4b\xe3\x85\x4c\xe2\x84\x48\xe2\ +\x84\x47\xe3\x83\x4b\xe0\x85\x4e\xdf\x83\x4d\xdc\x84\x52\xd9\x8f\ +\x6f\xd9\xa6\x92\xde\xbc\xac\xdf\xc5\xb8\xe1\xd4\xcc\xe7\xdf\xdb\ +\xe9\xe0\xdc\xe5\xda\xd5\xe6\xdc\xd5\xea\xe2\xdd\xec\xe5\xe2\xef\ +\xea\xe7\xf0\xeb\xe8\xf1\xeb\xe8\xed\xe6\xe3\xea\xe3\xe0\xe2\xda\ +\xd6\xde\xd2\xce\xdc\xca\xc5\xdb\xbc\xb1\xdc\xb2\xa1\xdf\xa6\x86\ +\xe3\xac\x8a\xe1\xb4\x9b\xe1\xb3\x9a\xdf\xb9\xa3\xde\xc7\xb4\xdf\ +\xcf\xc1\xe0\xd3\xc8\xdf\xd2\xc9\xe1\xd4\xcd\xe3\xd8\xcd\xe3\xd7\ +\xcd\xe3\xd6\xcd\xe3\xd6\xce\xe3\xd8\xcf\xe5\xda\xd2\xe5\xdc\xd3\ +\xe4\xdb\xd2\xe2\xd9\xd0\xe1\xd8\xcf\xe0\xd5\xcc\xde\xd1\xc9\xdf\ +\xcf\xc4\xdc\xcb\xbd\xdc\xc8\xb8\xdd\xc6\xb5\xdc\xc5\xb5\xdd\xc3\ +\xb3\xde\xbd\xad\xde\xb5\xa3\xdf\xad\x95\xde\xa9\x90\xdf\xa9\x90\ +\xe0\xb3\x9d\xdd\xba\xa7\xdd\xbf\xb0\xdd\xc1\xb0\xdd\xbc\xac\xdd\ +\xb9\xa7\xdd\xb9\xa8\xde\xb8\xa6\xdf\xb4\x9e\xde\xae\x98\xde\xa9\ +\x8f\xdf\xa9\x90\xe0\xaa\x90\xe2\xad\x91\xe2\xae\x94\xe1\xad\x93\ +\xe1\xae\x94\xe1\xad\x92\xe1\xaa\x8d\xe1\xaa\x89\xe3\xa9\x85\xe2\ +\xa4\x7f\xdf\x9a\x72\xe1\x8d\x5b\xe0\x85\x4f\xe2\x7d\x3d\xe3\x7b\ +\x3c\xe2\x7b\x3c\xe3\x7a\x3a\xe3\x78\x3a\xe5\x79\x39\xe3\x78\x3a\ +\xe3\x79\x39\xe4\x79\x39\xe3\x79\x3a\xe4\x79\x3a\xe4\x7a\x3d\xdf\ +\x7c\x43\xcd\x7c\x4c\xbb\x72\x4d\x7a\x58\x49\x8d\x5d\x45\x76\x58\ +\x4b\x8b\x62\x4e\x7c\x5b\x4d\x90\x61\x46\x00\x00\x00\xe3\x87\x48\ +\xe5\x86\x49\xe4\x86\x48\xe5\x85\x49\xe5\x85\x48\xe6\x84\x49\xe6\ +\x85\x49\xe5\x85\x47\xe2\x85\x49\xe3\x85\x49\xe4\x86\x4a\xe3\x85\ +\x4a\xe3\x87\x49\xe3\x87\x49\xe4\x86\x4a\xe5\x86\x4a\xe4\x87\x4b\ +\xe3\x87\x4a\xe3\x86\x49\xe5\x87\x4b\xe4\x86\x4b\xe3\x86\x4a\xe5\ +\x86\x49\xe5\x85\x48\xe3\x86\x4b\xe4\x86\x4a\xe4\x86\x4a\xe3\x87\ +\x49\xe4\x86\x49\xe3\x86\x4a\xe4\x85\x4b\xe4\x86\x4b\xe3\x86\x4a\ +\xe2\x86\x4b\xe2\x86\x4b\xe4\x8a\x58\xe5\x8f\x5e\xe4\x8b\x52\xe2\ +\x84\x4a\xe4\x87\x4b\xe3\x86\x49\xe4\x85\x4a\xe3\x86\x4c\xe2\x86\ +\x4c\xe4\x86\x4a\xe5\x88\x50\xe4\x91\x61\xe3\x94\x65\xe5\x8d\x59\ +\xe4\x87\x4d\xe3\x88\x4e\xe3\x89\x4e\xe3\x86\x49\xe4\x86\x4c\xe3\ +\x85\x4b\xe3\x86\x4b\xe2\x85\x48\xe3\x85\x45\xe3\x82\x47\xe4\x83\ +\x49\xe4\x88\x4c\xe2\x83\x46\xe0\x81\x44\xe1\x83\x49\xdf\x8c\x5c\ +\xda\x9f\x82\xd9\xad\x9e\xda\xbd\xb7\xdc\xcf\xcc\xe3\xd9\xd6\xe4\ +\xd9\xd4\xe8\xdf\xda\xe9\xe2\xdf\xef\xe8\xe5\xee\xeb\xe7\xf2\xec\ +\xec\xf0\xeb\xea\xec\xe6\xe3\xe0\xd7\xd7\xd9\xc1\xbd\xdb\xb7\xaa\ +\xdc\xb2\xa1\xdc\xaa\x94\xdf\xa7\x8b\xe3\xac\x8d\xe2\xb4\x9b\xdf\ +\xba\xa4\xdf\xc1\xaa\xe0\xca\xb6\xe0\xd0\xbf\xe1\xd4\xc7\xe0\xd4\ +\xca\xe2\xd6\xcc\xe4\xd7\xce\xe4\xd9\xd1\xe4\xdb\xd2\xe3\xd9\xd0\ +\xe2\xd9\xd0\xe2\xd9\xd0\xe4\xdb\xd2\xe3\xda\xd1\xe3\xda\xd1\xe1\ +\xd9\xcf\xe0\xd7\xce\xe0\xd4\xcc\xe0\xd3\xcb\xde\xd1\xc6\xde\xce\ +\xc2\xdc\xcc\xbe\xdd\xc8\xb9\xdc\xc6\xb7\xdd\xc2\xb3\xdd\xbc\xab\ +\xdf\xb8\xa6\xdf\xb3\x9f\xde\xac\x92\xdf\xa9\x8b\xe0\xb3\x9b\xdd\ +\xb6\xa2\xdd\xb8\xa3\xdf\xbd\xab\xde\xbb\xab\xdd\xb8\xa6\xde\xb9\ +\xa4\xdf\xba\xa4\xdf\xb6\x9e\xe0\xb2\x9b\xdf\xad\x95\xe0\xac\x95\ +\xe1\xb1\x97\xe1\xb2\x9a\xe1\xb2\x9a\xe2\xb0\x98\xe2\xae\x97\xe1\ +\xad\x94\xe0\xac\x90\xe0\xa9\x8d\xdf\xa7\x88\xdf\xa0\x7b\xde\x97\ +\x6f\xdf\x8f\x65\xe0\x87\x51\xdf\x83\x48\xe0\x7d\x40\xe1\x7b\x3d\ +\xe1\x7b\x3b\xe3\x79\x38\xe3\x79\x3a\xe2\x78\x39\xe4\x78\x39\xe4\ +\x79\x3a\xe4\x79\x38\xe3\x7a\x3a\xe2\x7b\x3d\xd6\x79\x44\xc4\x72\ +\x43\x9e\x66\x4a\xa0\x67\x4c\x70\x57\x4f\x56\x4a\x46\x8c\x61\x4d\ +\x79\x59\x46\x8d\x60\x44\x00\x00\x00\xe4\x86\x49\xe4\x86\x4a\xe4\ +\x85\x4a\xe5\x85\x48\xe5\x86\x49\xe3\x85\x4a\xe7\x86\x48\xe6\x87\ +\x47\xe5\x86\x47\xe5\x86\x47\xe4\x86\x4a\xe6\x87\x49\xe6\x85\x48\ +\xe5\x85\x4b\xe3\x87\x49\xe4\x86\x4a\xe3\x86\x4a\xe5\x86\x49\xe4\ +\x85\x4b\xe4\x87\x4a\xe4\x87\x4b\xe3\x86\x4b\xe4\x86\x4a\xe4\x86\ +\x4a\xe4\x85\x4b\xe5\x87\x49\xe4\x86\x4b\xe3\x85\x4c\xe3\x86\x4b\ +\xe5\x87\x4a\xe2\x85\x4a\xe4\x86\x4a\xe4\x85\x4a\xe3\x86\x48\xe7\ +\x8d\x54\xe9\x95\x5d\xe3\x8c\x5b\xe4\x8b\x55\xe4\x86\x48\xe5\x87\ +\x4c\xe3\x87\x4b\xe4\x86\x4b\xe4\x87\x4d\xe4\x87\x4e\xe3\x86\x4c\ +\xe4\x8a\x52\xe4\x8c\x59\xe2\x90\x5f\xe2\x8a\x54\xe3\x86\x4b\xe4\ +\x87\x4c\xe5\x8c\x57\xe7\x8e\x51\xe5\x8b\x53\xe4\x88\x4d\xe2\x85\ +\x4b\xe2\x84\x48\xe2\x83\x47\xe2\x84\x47\xe3\x84\x49\xe1\x8b\x57\ +\xe4\x8d\x55\xe3\x86\x48\xe4\x8d\x57\xe5\x96\x65\xe4\x9b\x6f\xdd\ +\x95\x6c\xd8\x92\x73\xd7\xab\x9b\xd9\xc2\xbd\xdf\xd1\xcb\xe6\xdc\ +\xd8\xea\xe3\xdf\xee\xe9\xe7\xf0\xea\xec\xef\xe9\xea\xef\xe8\xe6\ +\xeb\xe5\xe3\xdd\xbf\xb4\xda\xa1\x86\xdc\xa3\x86\xda\xa4\x8b\xdc\ +\x9f\x7d\xdf\xa4\x82\xe1\xaf\x96\xdf\xb6\x9f\xde\xbc\xa6\xde\xc7\ +\xb4\xe0\xd3\xc5\xe2\xd6\xcc\xe4\xd7\xce\xe5\xd9\xcf\xe5\xd9\xd1\ +\xe4\xda\xd1\xe6\xdc\xd3\xe5\xdc\xd3\xe5\xdc\xd3\xe5\xdc\xd3\xe4\ +\xdb\xd3\xe4\xda\xd2\xe3\xd9\xd1\xe2\xda\xd1\xe2\xd7\xcf\xe1\xd8\ +\xce\xe2\xd6\xcb\xe0\xd4\xca\xe0\xd1\xc8\xdf\xd0\xc4\xde\xce\xc2\ +\xdc\xcb\xbf\xdc\xc8\xb9\xdc\xc2\xb3\xdd\xbc\xab\xde\xb6\xa3\xde\ +\xaf\x99\xdf\xad\x92\xe1\xb3\x98\xe1\xb6\x9c\xe0\xb7\xa2\xe0\xb7\ +\xa0\xde\xbe\xaa\xde\xbf\xac\xdf\xbc\xa9\xde\xbb\xaa\xde\xbb\xa9\ +\xde\xb9\xa4\xdf\xb6\x9f\xe0\xb3\x9b\xe1\xb2\x9a\xe0\xb2\x9c\xe2\ +\xb3\x9d\xe2\xb4\x9d\xe1\xb2\x9b\xe2\xb1\x99\xe3\xb0\x98\xe0\xac\ +\x96\xe1\xab\x8f\xe1\xa8\x87\xdf\xa2\x7d\xdf\x99\x70\xdf\x90\x62\ +\xe0\x8e\x5d\xdf\x86\x52\xe1\x7f\x43\xe1\x7f\x40\xe2\x7d\x3f\xe0\ +\x7d\x3e\xe4\x79\x38\xe2\x78\x39\xe2\x78\x38\xe2\x78\x3b\xe3\x79\ +\x39\xe4\x7a\x3b\xe0\x7b\x3f\xda\x79\x42\xc8\x77\x48\xae\x69\x43\ +\xa0\x6a\x52\x82\x60\x4d\x9f\x6d\x4e\x96\x65\x4b\x9d\x6a\x52\x8c\ +\x62\x4c\x00\x00\x00\xe3\x86\x4a\xe3\x87\x48\xe5\x87\x47\xe5\x86\ +\x47\xe5\x86\x49\xe4\x86\x49\xe5\x86\x48\xe4\x86\x4a\xe5\x85\x48\ +\xe3\x86\x4a\xe5\x86\x49\xe4\x86\x49\xe4\x86\x48\xe3\x87\x49\xe4\ +\x86\x49\xe5\x86\x4a\xe3\x86\x49\xe4\x87\x4b\xe4\x86\x4b\xe4\x87\ +\x49\xe3\x86\x4b\xe3\x86\x4b\xe4\x86\x4c\xe4\x86\x4c\xe4\x85\x4c\ +\xe4\x87\x4d\xe4\x86\x49\xe5\x86\x4b\xe4\x86\x4a\xe3\x86\x4a\xe4\ +\x86\x4b\xe3\x86\x4a\xe3\x85\x4b\xe4\x85\x49\xe2\x90\x61\xe4\x9f\ +\x78\xe5\x92\x60\xe4\x8d\x58\xe5\x88\x4d\xe4\x86\x4c\xe4\x86\x4c\ +\xe2\x87\x4e\xe4\x8b\x53\xe4\x88\x4e\xe3\x87\x4b\xe3\x88\x4f\xe4\ +\x8a\x53\xe1\x89\x53\xe3\x88\x4f\xe4\x87\x4c\xe6\x8c\x52\xe6\x95\ +\x62\xe3\x95\x66\xe4\x8e\x5b\xe2\x89\x50\xe3\x86\x4a\xe2\x84\x49\ +\xe1\x83\x48\xe3\x83\x46\xe3\x85\x49\xe5\x8f\x5a\xe3\x92\x5f\xe4\ +\x8e\x58\xe4\x9c\x6d\xe0\x9a\x71\xdd\x98\x71\xdf\x8c\x5c\xe1\x85\ +\x4f\xdc\x8e\x63\xdd\xa4\x87\xdf\xc5\xb8\xe4\xdb\xd7\xe9\xe1\xdf\ +\xeb\xe5\xe5\xec\xe6\xe7\xea\xe5\xe5\xe9\xe4\xe4\xe1\xd7\xd8\xd8\ +\xaa\x99\xde\x9e\x7a\xe0\x9f\x76\xdf\xa2\x7b\xe0\xa0\x78\xdf\xa4\ +\x7f\xe1\xad\x92\xe2\xb3\x9a\xdf\xc1\xab\xdf\xcd\xbd\xe2\xd5\xcb\ +\xe4\xd8\xcf\xe5\xda\xd1\xe4\xdb\xd2\xe5\xda\xd3\xe6\xdb\xd3\xe5\ +\xdc\xd4\xe6\xdd\xd4\xe6\xdd\xd4\xe5\xdc\xd4\xe5\xdb\xd3\xe5\xdc\ +\xd3\xe3\xda\xd1\xe2\xd9\xd1\xe2\xd9\xcf\xe1\xd6\xce\xe1\xd6\xcc\ +\xe0\xd4\xcb\xdf\xd3\xcb\xe0\xd2\xc8\xdf\xd1\xc5\xdf\xce\xc2\xdd\ +\xc9\xbb\xdd\xc6\xb5\xde\xc3\xb2\xdf\xbe\xa9\xe0\xbd\xa6\xe0\xbd\ +\xa5\xde\xbd\xa7\xde\xc0\xab\xde\xc0\xa9\xdf\xbe\xa8\xdf\xc0\xae\ +\xdf\xc2\xaf\xdf\xc0\xae\xde\xbc\xaa\xde\xbc\xa9\xde\xbb\xa8\xe0\ +\xb9\xa2\xdf\xb8\xa1\xe0\xb7\xa0\xe0\xb6\x9f\xdf\xb5\x9e\xdf\xb6\ +\x9f\xe0\xb6\x9e\xe0\xb4\x9c\xe2\xb2\x9a\xe1\xaf\x97\xe1\xac\x93\ +\xe0\xab\x8e\xe1\xa6\x83\xe0\xa0\x7a\xde\x9a\x6f\xdf\x91\x65\xe1\ +\x8f\x5d\xe1\x89\x52\xdf\x81\x48\xe1\x7c\x41\xe1\x7d\x3e\xe3\x7b\ +\x3c\xe3\x79\x3a\xe3\x79\x3a\xe3\x79\x39\xe2\x79\x3a\xe4\x7a\x3a\ +\xe0\x7a\x3d\xd6\x78\x42\xcb\x77\x47\x9d\x66\x4b\x8c\x66\x53\x95\ +\x66\x4e\xa4\x6c\x51\xa7\x70\x50\x87\x5e\x46\xa3\x6d\x50\x00\x00\ +\x00\xe4\x86\x49\xe3\x87\x48\xe5\x86\x47\xe4\x86\x49\xe5\x85\x49\ +\xe3\x85\x48\xe5\x86\x48\xe4\x85\x49\xe5\x86\x47\xe3\x86\x48\xe5\ +\x86\x49\xe3\x85\x49\xe3\x85\x4a\xe3\x87\x49\xe2\x86\x48\xe4\x86\ +\x4a\xe3\x86\x49\xe4\x85\x4c\xe4\x86\x4b\xe4\x86\x4a\xe4\x86\x4b\ +\xe3\x86\x4a\xe4\x86\x4c\xe3\x85\x4c\xe3\x86\x4b\xe3\x87\x4a\xe3\ +\x86\x4b\xe4\x86\x4b\xe5\x86\x4a\xe4\x86\x49\xe3\x86\x4a\xe3\x86\ +\x4b\xe4\x85\x4b\xe4\x85\x4b\xe2\x85\x4f\xe1\x89\x5a\xe2\x88\x53\ +\xe3\x89\x54\xe2\x87\x4f\xe3\x86\x4c\xe3\x87\x4a\xe2\x87\x4e\xe5\ +\x8b\x56\xe4\x89\x50\xe2\x87\x4d\xe3\x86\x4c\xe3\x87\x4d\xe2\x88\ +\x4d\xe3\x8a\x51\xe3\x88\x4f\xe2\x8c\x58\xe2\x8f\x60\xdf\x8a\x58\ +\xe3\x8d\x59\xe2\x88\x4e\xe3\x85\x48\xe2\x83\x47\xe2\x84\x48\xe1\ +\x83\x45\xe2\x86\x4c\xe0\x8d\x5f\xe0\x89\x57\xe2\x90\x5e\xdf\x92\ +\x67\xde\x8d\x5f\xde\x8d\x5e\xe0\x86\x52\xe1\x83\x4c\xe0\x90\x60\ +\xe2\xa9\x86\xdf\xc3\xb4\xde\xd0\xcd\xe1\xd7\xd4\xe5\xdd\xdc\xe4\ +\xdc\xde\xdf\xd4\xd4\xdb\xcf\xd1\xd5\xaa\x9e\xda\x90\x67\xde\x9b\ +\x73\xde\x9f\x79\xde\xa0\x7f\xdf\xa1\x7e\xdd\xa0\x7e\xdf\xa9\x8d\ +\xe2\xb6\x9d\xdf\xc6\xb2\xe0\xd3\xc4\xe4\xd8\xce\xe5\xda\xd1\xe5\ +\xdb\xd2\xe6\xdd\xd3\xe4\xdb\xd2\xe5\xda\xd4\xe5\xdc\xd4\xe6\xdc\ +\xd4\xe6\xdd\xd4\xe6\xdc\xd4\xe6\xdc\xd3\xe5\xdc\xd3\xe4\xdb\xd2\ +\xe3\xda\xd1\xe2\xd9\xd0\xe1\xd8\xce\xe1\xd6\xcd\xe0\xd5\xcc\xe0\ +\xd3\xcb\xdf\xd4\xca\xe1\xd3\xc9\xe0\xd1\xc5\xdf\xcf\xc1\xde\xcd\ +\xbd\xdc\xca\xbb\xde\xc8\xb5\xdd\xc8\xb6\xdd\xc6\xb6\xdd\xc4\xb2\ +\xde\xc5\xb2\xdc\xc8\xb6\xde\xc7\xb4\xdd\xc7\xb5\xdd\xc5\xb6\xdd\ +\xc4\xb2\xdf\xc0\xad\xde\xbe\xaa\xdf\xbe\xab\xdf\xbc\xa8\xdf\xbc\ +\xa8\xde\xbb\xa8\xdf\xba\xa5\xdf\xb9\xa3\xdf\xb7\xa2\xe0\xb7\xa1\ +\xe0\xb6\x9f\xe1\xb3\x9c\xe2\xb1\x99\xe1\xaf\x97\xdf\xac\x91\xe0\ +\xa7\x88\xdf\xa1\x7d\xdc\x99\x73\xde\x93\x68\xde\x8c\x5f\xdd\x84\ +\x50\xdf\x80\x48\xe0\x7e\x3f\xe1\x7c\x3c\xe2\x7c\x3e\xe3\x7a\x3b\ +\xe3\x79\x38\xe3\x7a\x38\xe3\x7a\x39\xe3\x7a\x3a\xe0\x7c\x41\xd2\ +\x7b\x48\xb1\x6f\x4b\x9a\x6b\x51\xa0\x69\x4a\xb6\x73\x50\xb2\x72\ +\x4e\xae\x6f\x4b\xa0\x6b\x4c\x94\x62\x48\x00\x00\x00\xe3\x86\x48\ +\xe4\x85\x49\xe5\x86\x47\xe4\x86\x48\xe3\x85\x49\xe4\x85\x49\xe4\ +\x85\x48\xe4\x85\x48\xe4\x85\x48\xe3\x86\x4a\xe3\x87\x4a\xe3\x86\ +\x48\xe3\x86\x48\xe4\x86\x4a\xe5\x86\x49\xe4\x86\x4a\xe3\x87\x49\ +\xe4\x86\x4a\xe3\x87\x48\xe4\x85\x4a\xe4\x85\x4b\xe4\x86\x49\xe3\ +\x86\x4b\xe4\x85\x4b\xe4\x86\x4d\xe3\x86\x49\xe4\x86\x4b\xe4\x86\ +\x4a\xe3\x86\x4b\xe4\x85\x49\xe3\x85\x4a\xe4\x87\x4b\xe4\x86\x4b\ +\xe3\x86\x4c\xe3\x86\x4d\xe2\x85\x4b\xe2\x86\x4f\xe2\x87\x4e\xe2\ +\x85\x4c\xe2\x86\x4e\xe2\x87\x4b\xe3\x88\x4e\xe3\x8a\x55\xe3\x89\ +\x51\xe3\x88\x4d\xe4\x87\x4b\xe2\x86\x4b\xe1\x87\x4d\xe3\x89\x54\ +\xe2\x88\x4d\xe2\x86\x4b\xe2\x86\x4a\xe2\x84\x49\xe3\x85\x4a\xe3\ +\x84\x49\xe1\x84\x47\xe2\x82\x47\xe1\x84\x47\xe3\x83\x46\xe2\x83\ +\x47\xe1\x84\x4c\xe3\x8a\x54\xe3\x8f\x5c\xe3\x8e\x59\xe3\x91\x5c\ +\xe3\x91\x5f\xe2\x8a\x52\xe1\x88\x4f\xe0\x92\x63\xde\xa3\x81\xdb\ +\xaf\x9d\xdb\xb6\xaa\xd8\xbd\xb7\xd8\xc2\xbf\xd9\xb9\xb3\xd5\xa7\ +\x98\xd6\x9d\x85\xdc\x8c\x61\xdf\x8f\x5e\xe2\xa0\x76\xde\x9a\x71\ +\xdd\x96\x6e\xdc\x92\x69\xdc\x91\x66\xdd\x9c\x77\xe1\xba\xa3\xdf\ +\xcc\xbb\xe2\xd6\xca\xe5\xd9\xd1\xe5\xdc\xd3\xe5\xdd\xd4\xe5\xdc\ +\xd5\xe6\xdc\xd4\xe5\xdc\xd5\xe6\xdc\xd6\xe7\xdd\xd6\xe7\xdd\xd6\ +\xe7\xde\xd5\xe6\xdd\xd4\xe6\xdd\xd4\xe5\xdc\xd3\xe4\xda\xd2\xe4\ +\xdb\xd2\xe2\xd9\xcf\xe1\xd8\xce\xe1\xd6\xce\xe2\xd6\xcd\xe0\xd4\ +\xcc\xe0\xd5\xcb\xe0\xd3\xc9\xe0\xd2\xc8\xe0\xd2\xc5\xde\xd0\xc2\ +\xdf\xcf\xc0\xdc\xcc\xbd\xdc\xca\xbc\xdd\xcb\xba\xdd\xcb\xba\xdc\ +\xcb\xbc\xde\xcb\xba\xdd\xca\xbb\xdd\xc9\xb9\xdd\xc7\xb6\xdd\xc4\ +\xb3\xde\xc2\xb1\xde\xc1\xae\xdd\xc0\xad\xdd\xc0\xac\xde\xbd\xad\ +\xdd\xbd\xa9\xde\xbb\xa7\xde\xba\xa7\xe0\xb9\xa4\xe0\xb8\xa4\xe1\ +\xb6\x9f\xe1\xb4\x9c\xe2\xb2\x9a\xe0\xae\x94\xdf\xa9\x8b\xde\xa1\ +\x7e\xdb\x92\x6b\xdf\x8c\x61\xde\x89\x5b\xdd\x80\x48\xde\x7d\x42\ +\xe1\x7b\x3c\xe3\x7a\x3a\xe3\x7a\x3a\xe3\x7a\x3b\xe2\x7a\x38\xe3\ +\x79\x39\xe2\x7b\x3a\xe2\x7a\x3b\xe0\x7d\x42\xcc\x78\x48\xb7\x78\ +\x54\xab\x77\x5b\x89\x60\x4f\x92\x6c\x55\x9d\x6a\x52\x80\x58\x46\ +\x7e\x5e\x4d\xa0\x69\x48\x00\x00\x00\xe2\x85\x47\xe5\x84\x49\xe3\ +\x85\x48\xe3\x84\x48\xe3\x84\x48\xe3\x84\x48\xe4\x84\x48\xe4\x85\ +\x46\xe4\x85\x49\xe4\x86\x48\xe3\x86\x49\xe3\x84\x4a\xe3\x86\x4a\ +\xe4\x86\x49\xe4\x86\x4a\xe3\x86\x4a\xe4\x87\x4a\xe4\x87\x4a\xe3\ +\x87\x49\xe4\x85\x49\xe3\x85\x4a\xe3\x85\x49\xe3\x86\x4b\xe4\x86\ +\x4c\xe4\x86\x4a\xe3\x85\x4a\xe3\x86\x4b\xe3\x87\x49\xe4\x85\x4d\ +\xe4\x86\x49\xe4\x86\x4a\xe4\x86\x4a\xe3\x87\x4d\xe3\x86\x4c\xe2\ +\x85\x4b\xe3\x87\x4d\xe4\x85\x4d\xe3\x86\x4c\xe3\x85\x4e\xe3\x86\ +\x4c\xe3\x86\x4b\xe3\x87\x4e\xe3\x89\x50\xe5\x8a\x51\xe4\x89\x4f\ +\xe4\x88\x4d\xe3\x87\x4e\xe2\x87\x4b\xe1\x87\x4e\xe3\x87\x4d\xe3\ +\x86\x4a\xe2\x86\x4a\xe3\x85\x4a\xe2\x83\x49\xe2\x84\x4a\xe2\x83\ +\x47\xe4\x84\x48\xe1\x84\x4a\xe3\x86\x49\xe3\x86\x49\xe5\x8a\x51\ +\xe6\x9a\x67\xe8\xa2\x71\xe6\xa0\x72\xe3\xa1\x78\xe0\x98\x6c\xe1\ +\x91\x5d\xe1\x92\x5f\xe1\x9b\x6e\xe0\xa0\x78\xdc\x9f\x7f\xdb\xa1\ +\x84\xda\x9f\x7f\xdb\xa3\x86\xde\xa6\x8b\xde\x96\x6b\xdb\x90\x62\ +\xde\x90\x63\xdf\x93\x61\xe3\xa6\x81\xde\x9b\x73\xde\x91\x60\xdf\ +\x91\x5f\xe0\x93\x60\xe4\xa3\x78\xe1\xc2\xaa\xe0\xd2\xc2\xe4\xd7\ +\xcc\xe6\xdc\xd3\xe6\xdd\xd4\xe6\xdd\xd4\xe6\xdc\xd6\xe6\xdd\xd5\ +\xe6\xdd\xd5\xe7\xdc\xd7\xe5\xdd\xd5\xe8\xdc\xd8\xe7\xdf\xd7\xe6\ +\xde\xd7\xe6\xdd\xd5\xe6\xdd\xd4\xe5\xdb\xd4\xe4\xdb\xd2\xe3\xda\ +\xd2\xe2\xd9\xd0\xe2\xd7\xcf\xe2\xd7\xce\xe1\xd6\xcc\xdf\xd4\xcc\ +\xe0\xd5\xcb\xe0\xd3\xcb\xe0\xd2\xc9\xe0\xd1\xc6\xdf\xd1\xc5\xdd\ +\xce\xbf\xdd\xce\xbf\xdf\xcf\xc2\xde\xce\xbf\xde\xce\xc1\xdd\xcc\ +\xbf\xde\xcc\xbd\xdd\xcb\xbb\xde\xc9\xb9\xdd\xc8\xb7\xdc\xc5\xb5\ +\xdc\xc4\xb3\xdd\xc3\xb1\xde\xc2\xb2\xdf\xc1\xae\xde\xbe\xab\xdd\ +\xbd\xaa\xdd\xbc\xa9\xdd\xba\xa8\xe0\xb9\xa5\xe0\xb8\xa2\xe0\xb6\ +\x9f\xe2\xb3\x9d\xe1\xaf\x97\xdf\xab\x8e\xde\xa3\x81\xde\x96\x6e\ +\xe0\x8f\x61\xdf\x8e\x5f\xde\x83\x4b\xdf\x7e\x40\xe1\x7c\x3e\xe2\ +\x7a\x3c\xe3\x7a\x3a\xe3\x7c\x3d\xe2\x7c\x3e\xe3\x7a\x3c\xe3\x7a\ +\x3c\xe3\x7a\x3c\xe2\x7d\x41\xcf\x7a\x48\xba\x7b\x56\x88\x70\x69\ +\x67\x5b\x56\x83\x62\x56\x8a\x5e\x47\x8b\x5f\x46\xa1\x70\x54\xb0\ +\x6b\x42\x00\x00\x00\xe3\x84\x49\xe2\x85\x48\xe3\x85\x46\xe1\x85\ +\x47\xe3\x85\x47\xe4\x83\x48\xe3\x84\x48\xe3\x83\x46\xe4\x86\x48\ +\xe3\x85\x48\xe4\x85\x48\xe3\x86\x49\xe2\x85\x49\xe4\x86\x4a\xe3\ +\x87\x48\xe2\x86\x4a\xe4\x86\x4b\xe3\x86\x49\xe4\x86\x4b\xe2\x86\ +\x4c\xe4\x87\x4a\xe4\x86\x4b\xe4\x85\x4c\xe3\x86\x49\xe4\x86\x4b\ +\xe4\x86\x4a\xe4\x87\x4b\xe3\x85\x4a\xe3\x85\x4a\xe4\x86\x49\xe3\ +\x87\x4b\xe2\x87\x4c\xe3\x86\x4b\xe3\x86\x4b\xe3\x86\x4f\xe1\x87\ +\x4b\xe3\x85\x4b\xe3\x85\x4b\xe3\x85\x4d\xe2\x87\x4b\xe2\x87\x4c\ +\xe4\x87\x4d\xe4\x8c\x53\xe4\x8d\x57\xe3\x88\x4f\xe2\x88\x4d\xe3\ +\x86\x4d\xe2\x85\x4a\xe3\x85\x4b\xe3\x85\x4a\xe2\x85\x4a\xe3\x84\ +\x49\xe1\x86\x4a\xe2\x85\x49\xe1\x84\x46\xe1\x84\x46\xe1\x85\x4a\ +\xe3\x87\x4f\xe4\x8a\x53\xe5\x92\x5a\xe4\x99\x68\xe4\xa9\x85\xe7\ +\xb2\x95\xe0\xa7\x86\xe0\x9d\x73\xe2\x9e\x73\xe4\x9a\x6c\xe3\x9c\ +\x6e\xe3\xa5\x7f\xe3\xab\x8a\xe0\xa5\x7e\xe0\xa3\x7a\xe3\xa6\x7e\ +\xe2\xa4\x7e\xde\xa5\x84\xe0\xa0\x78\xe1\x9a\x6c\xe0\x96\x69\xe1\ +\x9c\x6e\xe2\xa5\x80\xde\x9b\x72\xe2\x96\x66\xe5\xa2\x75\xe5\xaa\ +\x7f\xe2\xb9\x9b\xde\xcb\xb8\xe0\xd4\xc8\xe4\xd9\xd0\xe5\xdc\xd3\ +\xe7\xde\xd5\xe6\xde\xd4\xe8\xdd\xd7\xe7\xdd\xd7\xe7\xdd\xd7\xe6\ +\xde\xd6\xe6\xde\xd8\xe8\xde\xda\xe7\xe0\xd8\xe7\xe0\xd7\xe7\xde\ +\xd7\xe5\xdf\xd5\xe5\xdc\xd7\xe5\xdc\xd3\xe3\xda\xd2\xe3\xda\xd2\ +\xe4\xd9\xd0\xe2\xd9\xcf\xe0\xd7\xcd\xe0\xd6\xcc\xe0\xd6\xcc\xdf\ +\xd4\xcb\xe0\xd4\xca\xdf\xd2\xca\xdf\xd1\xc5\xe0\xd0\xc4\xe1\xd0\ +\xc3\xdf\xd1\xc5\xde\xd0\xc4\xde\xce\xc2\xdd\xcd\xc0\xdd\xcd\xbf\ +\xdd\xcc\xbd\xdd\xcb\xbb\xdc\xca\xba\xdd\xc6\xb7\xdc\xc5\xb5\xdc\ +\xc4\xb5\xdd\xc4\xb4\xdc\xc3\xb0\xdd\xc0\xaf\xde\xbe\xab\xde\xbd\ +\xaa\xdd\xbc\xaa\xde\xba\xa7\xe0\xb9\xa5\xe0\xb7\x9f\xe1\xb4\x9e\ +\xe1\xb0\x9a\xe0\xab\x90\xdd\xa1\x80\xdf\x9b\x74\xdf\x99\x70\xe0\ +\x94\x68\xe0\x8b\x57\xdf\x81\x45\xe0\x7c\x3b\xe2\x7a\x3c\xe1\x7b\ +\x3b\xe0\x7f\x41\xe0\x7d\x42\xe2\x7b\x3d\xe4\x7c\x38\xe4\x7a\x3c\ +\xe0\x7b\x44\xd5\x78\x45\xa6\x70\x54\x75\x61\x59\x90\x68\x55\xa0\ +\x6a\x50\x96\x64\x4a\xa1\x69\x49\xc9\x7c\x4c\xcd\x7c\x4b\x00\x00\ +\x00\xe5\x86\x4a\xe3\x86\x49\xe3\x84\x46\xe4\x83\x47\xe4\x83\x45\ +\xe2\x83\x46\xe3\x83\x47\xe5\x86\x4a\xe3\x85\x4b\xe3\x84\x49\xe3\ +\x84\x49\xe2\x85\x49\xe3\x86\x49\xe3\x86\x49\xe3\x86\x4a\xe3\x85\ +\x4a\xe3\x85\x4a\xe4\x86\x4a\xe3\x85\x4a\xe4\x85\x4b\xe3\x85\x49\ +\xe2\x85\x49\xe4\x85\x4b\xe4\x86\x49\xe3\x85\x49\xe3\x86\x49\xe3\ +\x86\x4a\xe3\x85\x4a\xe3\x86\x4a\xe4\x86\x4a\xe1\x86\x4e\xe3\x85\ +\x4d\xe2\x85\x4d\xe3\x86\x4e\xe2\x87\x4d\xe3\x86\x4d\xe3\x87\x4d\ +\xe2\x87\x4c\xe3\x85\x4b\xe3\x86\x4c\xe2\x87\x4c\xe4\x87\x4f\xe4\ +\x8c\x58\xe3\x8b\x56\xe3\x87\x4e\xe1\x86\x4d\xe0\x87\x4d\xe2\x85\ +\x4d\xe1\x85\x4c\xe3\x87\x4c\xe5\x86\x4d\xe4\x85\x4c\xe2\x85\x4a\ +\xe3\x86\x47\xe3\x84\x46\xe1\x83\x49\xe2\x87\x4c\xe2\x8f\x5c\xe3\ +\x95\x66\xe4\x9c\x70\xe3\x9e\x73\xe3\xa7\x85\xe1\xab\x90\xe0\xa2\ +\x7f\xe4\xa2\x77\xe2\xa4\x7c\xe2\xa1\x78\xe4\xa8\x83\xe2\xaf\x92\ +\xe3\xb1\x99\xe4\xb1\x95\xe4\xae\x92\xe2\xb1\x97\xe2\xb2\x9a\xe3\ +\xae\x91\xe1\xa9\x86\xde\xa4\x7f\xde\x9e\x74\xe2\xa7\x83\xe4\xae\ +\x91\xe5\xa7\x7f\xe6\xae\x83\xe4\xb6\x97\xe2\xbe\xa3\xe0\xc7\xb1\ +\xe0\xce\xbd\xe2\xd6\xcc\xe5\xdb\xd3\xe6\xdd\xd4\xe7\xde\xd6\xe7\ +\xde\xd7\xe6\xe0\xd7\xe6\xdf\xd6\xe6\xdf\xd7\xe8\xe0\xd9\xe9\xe0\ +\xdc\xe8\xe0\xd9\xe9\xe0\xdc\xe9\xe1\xdc\xe8\xe0\xdb\xe7\xdf\xd8\ +\xe6\xde\xd7\xe5\xdc\xd4\xe5\xdb\xd4\xe5\xdb\xd4\xe4\xdb\xd2\xe3\ +\xda\xd1\xe2\xd9\xcf\xe1\xd8\xcd\xe1\xd7\xcd\xdf\xd6\xcd\xe0\xd5\ +\xca\xe1\xd4\xcb\xdf\xd2\xc9\xe0\xd2\xc8\xdf\xd2\xc6\xdf\xd1\xc5\ +\xde\xd1\xc5\xe0\xd1\xc5\xdf\xcf\xc2\xde\xce\xc1\xdd\xcd\xbe\xdb\ +\xcb\xbb\xdb\xca\xba\xde\xc9\xb9\xdd\xc6\xb6\xdd\xc6\xb5\xdd\xc4\ +\xb4\xdc\xc3\xb3\xdd\xc2\xb0\xdd\xbf\xae\xde\xbd\xac\xdd\xbb\xa9\ +\xdd\xbb\xa6\xdf\xb9\xa5\xe0\xb7\xa1\xe0\xb4\x9d\xe0\xb0\x9a\xe0\ +\xac\x93\xdf\xa4\x83\xdf\x9d\x75\xdf\x9d\x76\xdf\x98\x70\xdf\x8d\ +\x62\xdf\x87\x51\xe0\x7e\x42\xe0\x7a\x3c\xe2\x79\x3b\xe0\x7b\x3d\ +\xdf\x7c\x40\xe3\x7b\x3d\xe3\x7a\x3b\xe4\x7b\x3e\xdb\x77\x3f\xd6\ +\x78\x41\xa4\x6f\x54\x91\x69\x58\xa3\x6d\x4d\x9a\x68\x52\x9d\x61\ +\x41\xca\x79\x47\xd7\x7f\x4b\xc0\x75\x4c\x00\x00\x00\xe8\x90\x58\ +\xe8\x8d\x54\xe5\x85\x45\xe5\x86\x4a\xe5\x88\x4c\xe6\x8c\x50\xe7\ +\x8c\x52\xe5\x8b\x4e\xe4\x87\x4b\xe4\x87\x4b\xe2\x85\x49\xe3\x85\ +\x4a\xe2\x85\x4a\xe2\x85\x48\xe2\x85\x48\xe2\x84\x49\xe2\x84\x48\ +\xe2\x85\x49\xe4\x86\x4a\xe3\x86\x4a\xe3\x86\x49\xe2\x85\x4a\xe2\ +\x84\x49\xe3\x85\x48\xe2\x85\x48\xe2\x84\x49\xe2\x85\x4a\xe3\x84\ +\x4c\xe3\x86\x4b\xe3\x85\x4c\xe2\x86\x4a\xe3\x86\x4c\xe2\x86\x4d\ +\xe1\x85\x4c\xe1\x86\x4c\xe4\x86\x4d\xe3\x86\x4b\xe2\x86\x4c\xe2\ +\x86\x4c\xe3\x86\x4e\xe2\x87\x4b\xe4\x8a\x52\xe4\x8a\x56\xe2\x88\ +\x50\xe2\x87\x4d\xe2\x86\x4d\xe2\x87\x4c\xe1\x85\x4c\xe1\x85\x4a\ +\xe3\x89\x50\xe5\x8c\x58\xe5\x8e\x56\xe3\x88\x4f\xe2\x85\x4a\xe3\ +\x84\x47\xe2\x85\x48\xe2\x8b\x53\xe2\x93\x61\xe3\x9a\x6d\xe5\xa5\ +\x7d\xe3\xa4\x7d\xe4\xa7\x85\xe0\xa4\x85\xe4\xa6\x82\xe2\xa7\x84\ +\xdf\x9e\x78\xe1\xa4\x7d\xe3\xaf\x94\xe3\xb4\x9b\xe2\xb4\x9d\xe2\ +\xb6\x9e\xe3\xb8\xa2\xe1\xb8\xa1\xe1\xb5\x9e\xe2\xb2\x9b\xe3\xb2\ +\x97\xe1\xaa\x88\xe1\x9f\x78\xe1\xa5\x82\xe3\xb8\x9e\xe3\xc2\xa7\ +\xe1\xc5\xae\xe0\xc9\xb4\xe1\xd0\xbc\xe3\xd6\xc6\xe5\xd8\xca\xe6\ +\xdb\xd1\xe7\xde\xd5\xe7\xdf\xd8\xe7\xe0\xd7\xe7\xe0\xd8\xe8\xe0\ +\xda\xe8\xe0\xd9\xe9\xe0\xda\xe9\xe0\xdc\xea\xe1\xdd\xea\xe1\xdd\ +\xe9\xe3\xde\xea\xe2\xde\xe8\xe1\xdd\xe9\xe0\xdc\xe7\xde\xda\xe6\ +\xdd\xd8\xe5\xdc\xd6\xe5\xdc\xd6\xe5\xdb\xd4\xe4\xdb\xd2\xe2\xd9\ +\xcf\xe2\xd9\xcf\xe1\xd7\xcf\xe0\xd7\xce\xe1\xd6\xcc\xe2\xd5\xcc\ +\xdf\xd3\xcb\xdf\xd3\xca\xdf\xd2\xc9\xe0\xd2\xc8\xe0\xd2\xc7\xdf\ +\xd2\xc6\xe0\xd0\xc5\xdf\xcf\xc3\xdd\xcd\xc1\xdc\xcc\xbd\xdc\xca\ +\xbc\xdd\xc9\xba\xdc\xc7\xb8\xdc\xc5\xb6\xdd\xc4\xb5\xdc\xc3\xb2\ +\xdd\xc2\xb1\xdd\xbe\xaf\xdd\xbd\xaa\xde\xbc\xa8\xdd\xb9\xa7\xdf\ +\xb9\xa3\xdf\xb4\x9f\xe0\xb3\x9c\xe2\xb1\x9a\xe2\xaf\x97\xe1\xac\ +\x8f\xe2\xa7\x83\xe0\xa2\x7c\xdf\x99\x70\xdf\x8e\x60\xe0\x8a\x59\ +\xe0\x81\x49\xdf\x7a\x3c\xe2\x7a\x3a\xe1\x7a\x3b\xe1\x7a\x3b\xe3\ +\x7a\x3c\xe4\x7a\x3c\xe2\x7b\x3e\xd4\x77\x42\xc3\x75\x49\xb6\x70\ +\x49\x91\x67\x53\xc6\x79\x4d\xa1\x67\x4a\xcd\x78\x3f\xd8\x7f\x4a\ +\xb0\x64\x3c\xbf\x76\x4b\x00\x00\x00\xe7\x9c\x6d\xe9\x9c\x6e\xea\ +\x99\x62\xeb\xa0\x6d\xea\xa5\x77\xea\xa7\x78\xea\x9f\x6d\xeb\xa2\ +\x71\xe6\x8d\x52\xe4\x89\x4e\xe3\x85\x49\xe3\x85\x4a\xe3\x85\x49\ +\xe4\x85\x48\xe3\x85\x48\xe3\x85\x49\xe2\x85\x49\xe2\x85\x49\xe4\ +\x86\x4d\xe3\x86\x4a\xe3\x87\x4b\xe3\x86\x49\xe3\x86\x49\xe3\x85\ +\x47\xe2\x85\x49\xe2\x83\x4a\xe2\x84\x49\xe2\x85\x4a\xe3\x85\x49\ +\xe3\x85\x4b\xe3\x85\x49\xe3\x85\x4a\xe2\x86\x4a\xe2\x86\x4b\xe3\ +\x86\x4b\xe1\x86\x4a\xe3\x85\x4a\xe2\x86\x4d\xe4\x88\x50\xe4\x88\ +\x4e\xe2\x88\x4f\xe4\x8a\x53\xe2\x89\x51\xe2\x88\x4e\xe3\x86\x4e\ +\xe1\x87\x4d\xe3\x85\x4b\xe1\x85\x4b\xe2\x87\x4b\xe4\x91\x5c\xe6\ +\x97\x65\xe5\x99\x6a\xe5\x94\x5f\xe4\x8f\x58\xe5\x8c\x53\xe3\x89\ +\x4f\xe2\x8e\x59\xe3\x96\x67\xe0\x99\x6d\xe3\xa7\x81\xe4\xaa\x87\ +\xe4\xa8\x86\xe3\xa4\x7c\xe3\xad\x90\xe3\xaf\x92\xe2\xa5\x7e\xe2\ +\xaa\x87\xe2\xb2\x9a\xe1\xb4\x9d\xe1\xb4\x9e\xe0\xba\xa4\xdf\xbd\ +\xaa\xde\xbd\xa9\xe0\xbc\xa6\xe1\xb9\xa2\xe1\xb5\x9d\xe2\xb4\x9b\ +\xe2\xb0\x90\xe3\xb2\x92\xe1\xc4\xae\xde\xcd\xbc\xdf\xcf\xbf\xe0\ +\xd1\xc1\xe3\xd7\xca\xe5\xda\xd0\xe7\xdd\xd4\xe8\xe0\xd7\xe9\xe0\ +\xd9\xe9\xe0\xdb\xe8\xe0\xd9\xea\xe1\xda\xeb\xe1\xde\xea\xe2\xdc\ +\xeb\xe2\xde\xeb\xe3\xdf\xeb\xe3\xdf\xec\xe3\xdf\xe9\xe3\xde\xe9\ +\xe4\xdf\xe9\xe4\xdf\xe9\xe2\xde\xe9\xe0\xdc\xe7\xde\xd9\xe6\xdd\ +\xd9\xe5\xdd\xd8\xe4\xdc\xd4\xe5\xdc\xd3\xe4\xdb\xd3\xe3\xda\xd1\ +\xe2\xd9\xcf\xe2\xd9\xd0\xe1\xd7\xce\xe2\xd6\xcc\xde\xd4\xcb\xe0\ +\xd3\xcb\xe0\xd3\xca\xdf\xd2\xc9\xe0\xd2\xc9\xe0\xd1\xc7\xde\xd0\ +\xc4\xdd\xcf\xc3\xde\xce\xc2\xdc\xcb\xbf\xdb\xcb\xbb\xdd\xc9\xbc\ +\xdc\xc8\xba\xdc\xc5\xb6\xdc\xc4\xb4\xdc\xc3\xb3\xde\xc2\xb0\xdc\ +\xbf\xae\xde\xbd\xab\xde\xbc\xa8\xde\xba\xa6\xdf\xb9\xa2\xe0\xb5\ +\x9f\xe2\xb3\x9c\xe2\xb2\x9a\xe1\xb1\x99\xe0\xae\x95\xe0\xaa\x8a\ +\xe0\xa4\x81\xde\x9c\x74\xde\x92\x68\xe2\x92\x65\xdf\x86\x55\xdf\ +\x7a\x3b\xe0\x7a\x39\xe2\x7a\x39\xe1\x79\x38\xe3\x79\x3a\xe3\x7b\ +\x3c\xe2\x7a\x3d\xdf\x7a\x3e\xc9\x76\x45\xbd\x73\x48\xac\x76\x57\ +\xa6\x6b\x51\xb0\x6c\x42\xde\x7e\x43\xd3\x7a\x43\xd5\x79\x41\xbf\ +\x74\x47\x00\x00\x00\xe3\x9c\x70\xe5\x9d\x73\xe8\xa7\x7f\xe9\xb0\ +\x8f\xe8\xb1\x92\xe8\xb5\x98\xe8\xaf\x8c\xe6\xae\x8e\xe8\x9d\x6a\ +\xe3\x8b\x53\xe3\x88\x4e\xe3\x85\x49\xe4\x84\x48\xe4\x86\x49\xe4\ +\x85\x49\xe5\x87\x4b\xe4\x88\x4f\xe3\x87\x4b\xe3\x86\x4f\xe4\x88\ +\x4f\xe5\x88\x4f\xe3\x87\x4c\xe3\x87\x4b\xe4\x89\x4e\xe4\x88\x4d\ +\xe4\x87\x4b\xe3\x87\x4c\xe1\x85\x4a\xe1\x84\x48\xe2\x84\x4b\xe2\ +\x85\x4b\xe2\x85\x4b\xe2\x85\x4a\xe2\x86\x4c\xe2\x85\x4d\xe1\x86\ +\x4c\xe2\x85\x4c\xe2\x88\x4f\xe3\x8e\x59\xe4\x8e\x56\xe4\x89\x53\ +\xe2\x89\x4f\xe1\x88\x4f\xe1\x87\x4f\xe1\x86\x4c\xe2\x86\x4a\xe2\ +\x85\x4b\xe3\x86\x4b\xe4\x8b\x52\xe5\x9c\x6b\xe4\xa0\x75\xe3\x9d\ +\x74\xe3\x99\x6c\xe3\x99\x6c\xe2\x95\x64\xe3\x92\x60\xe1\x8d\x5b\ +\xe1\x98\x6c\xe3\x9a\x6e\xe2\xa9\x86\xe5\xb1\x94\xe4\xb2\x95\xe4\ +\xb3\x94\xe4\xb3\x98\xe2\xb4\x9b\xe2\xad\x8f\xe2\xaf\x92\xe1\xb1\ +\x9b\xe0\xb1\x9b\xe1\xb5\x9e\xdf\xb6\xa1\xdd\xb8\xa6\xdd\xb5\xa1\ +\xde\xb9\xa6\xdf\xbb\xa6\xe1\xba\xa1\xe0\xbc\xa5\xdf\xbf\xaa\xe0\ +\xc0\xa9\xde\xc8\xb6\xe1\xd0\xc1\xe2\xd6\xc8\xe5\xd8\xcb\xe7\xdb\ +\xd2\xe9\xdf\xd6\xe7\xe1\xd7\xe8\xe1\xd9\xea\xe2\xdc\xea\xe2\xde\ +\xea\xe1\xdc\xea\xe3\xde\xeb\xe4\xdf\xec\xe5\xe0\xea\xe5\xe0\xeb\ +\xe5\xe1\xe9\xe4\xdf\xeb\xe3\xe0\xea\xe4\xdf\xea\xe4\xe0\xea\xe5\ +\xe0\xe9\xe4\xdf\xe8\xe2\xdd\xe9\xe0\xdc\xe7\xde\xda\xe5\xdd\xd7\ +\xe5\xde\xd6\xe5\xdc\xd7\xe4\xda\xd3\xe4\xda\xd1\xe2\xd9\xd1\xe3\ +\xda\xd0\xe1\xd8\xcf\xe1\xd6\xcd\xe0\xd6\xcc\xdf\xd3\xcc\xdf\xd3\ +\xca\xdf\xd3\xca\xde\xd2\xc9\xe0\xd0\xc8\xde\xd0\xc4\xdd\xcf\xc3\ +\xdd\xce\xc1\xdd\xcc\xbf\xdd\xca\xbe\xdb\xca\xbc\xdd\xc8\xba\xdc\ +\xc6\xb7\xdd\xc5\xb5\xdc\xc3\xb1\xdd\xc2\xb2\xde\xc0\xb0\xdd\xbd\ +\xab\xdd\xbb\xa7\xdf\xba\xa5\xe0\xb9\xa3\xdf\xb5\xa0\xdf\xb2\x9b\ +\xe1\xb2\x9a\xe1\xb0\x99\xdf\xac\x94\xde\xa8\x8a\xde\x9e\x7a\xdc\ +\x94\x6c\xdd\x8b\x60\xdf\x8c\x5f\xdf\x89\x59\xe0\x7c\x3f\xe2\x79\ +\x39\xe0\x7a\x3b\xe1\x7a\x3a\xe2\x79\x39\xe2\x7a\x3b\xe3\x7b\x3c\ +\xe0\x7a\x3d\xd8\x79\x41\xc9\x78\x4a\xac\x72\x59\xa2\x67\x4a\xc0\ +\x76\x4a\xd7\x78\x43\xc6\x74\x44\xc2\x72\x45\xb8\x70\x47\x00\x00\ +\x00\xe2\x99\x6c\xe5\xa1\x74\xe5\xa7\x84\xe7\xae\x91\xe6\xb3\x99\ +\xe4\xb2\x98\xe3\xaa\x8e\xe5\xa5\x81\xe4\xa1\x77\xe6\x91\x59\xe4\ +\x8c\x53\xe4\x8a\x51\xe5\x8e\x53\xe5\x90\x58\xe4\x88\x4e\xe4\x8b\ +\x55\xe4\x90\x5b\xe5\x8d\x55\xe4\x90\x5a\xe7\x93\x5d\xe6\x8e\x55\ +\xe3\x88\x4f\xe3\x8a\x53\xe3\x90\x5e\xe5\x92\x5d\xe4\x95\x60\xe4\ +\x8e\x56\xe5\x8a\x4e\xe4\x88\x4d\xe3\x88\x4c\xe1\x84\x49\xe1\x84\ +\x49\xe0\x85\x4a\xe1\x85\x4a\xe1\x85\x4b\xe1\x84\x4d\xe2\x85\x4c\ +\xe3\x87\x4f\xe3\x8d\x59\xe5\x95\x63\xe4\x8e\x59\xe2\x89\x54\xe2\ +\x87\x4f\xe1\x87\x4d\xe0\x86\x4e\xe1\x86\x4e\xe2\x85\x4d\xe2\x86\ +\x4c\xe5\x93\x60\xe4\xa5\x7f\xe5\xa4\x7d\xe3\x9b\x72\xe2\x9e\x76\ +\xe0\x98\x6d\xe2\x96\x67\xe2\x95\x65\xe2\x8c\x57\xdf\x8e\x61\xe2\ +\x9c\x72\xe3\xa7\x86\xe3\xb5\x9e\xe2\xbb\xa4\xe1\xbc\xa7\xe2\xbc\ +\xa3\xe1\xb8\xa0\xe1\xb4\x9c\xe1\xb5\x9c\xe1\xb3\x9b\xe0\xae\x95\ +\xe0\xb6\x9e\xe0\xb2\x9b\xdf\xb0\x99\xdf\xad\x95\xdf\xae\x99\xdd\ +\xb9\xa5\xdf\xc0\xad\xdf\xc4\xb2\xde\xc4\xb1\xde\xc7\xb4\xdf\xcf\ +\xbe\xe4\xd6\xc9\xe7\xdb\xd1\xe7\xde\xd5\xe7\xe0\xd7\xe8\xe1\xd8\ +\xea\xe2\xdb\xed\xe3\xdf\xed\xe4\xe0\xea\xe3\xdf\xec\xe3\xdf\xeb\ +\xe4\xdf\xea\xe5\xe0\xeb\xe4\xe1\xec\xe5\xe1\xed\xe6\xe3\xed\xe7\ +\xe2\xeb\xe4\xe1\xe8\xe3\xe0\xe9\xe4\xdf\xeb\xe4\xe1\xeb\xe4\xe1\ +\xe9\xe3\xde\xe8\xe1\xdc\xe8\xdf\xda\xe6\xde\xd7\xe7\xde\xda\xe5\ +\xdd\xd9\xe5\xdc\xd5\xe5\xdb\xd4\xe4\xdb\xd2\xe2\xd9\xd0\xe1\xd8\ +\xce\xe0\xd7\xce\xe0\xd6\xcc\xe0\xd5\xcb\xe1\xd4\xcb\xe1\xd4\xcc\ +\xdf\xd3\xc9\xe0\xd0\xc8\xdd\xd0\xc3\xdd\xcf\xc4\xdc\xcc\xc1\xdc\ +\xcb\xbf\xdb\xcb\xbb\xdb\xca\xba\xdc\xc9\xb9\xdd\xc7\xb8\xdc\xc6\ +\xb7\xdc\xc3\xb2\xdd\xc2\xb2\xdf\xc0\xaf\xde\xbe\xab\xde\xbc\xa7\ +\xdf\xbb\xa5\xdf\xb8\xa2\xe0\xb5\x9f\xe0\xb2\x9c\xe0\xb2\x9b\xe0\ +\xb0\x99\xde\xab\x94\xdd\xa3\x84\xdd\x9d\x77\xde\x94\x68\xde\x89\ +\x5c\xde\x87\x54\xdf\x8a\x56\xdf\x86\x52\xe0\x7a\x3b\xdf\x7a\x3b\ +\xe2\x78\x3a\xe2\x79\x39\xe0\x79\x3a\xe4\x7b\x3c\xe2\x7a\x3d\xdb\ +\x7a\x41\xd1\x78\x44\xb5\x6b\x40\xcc\x79\x45\xc8\x78\x4a\xd9\x78\ +\x40\xce\x79\x46\xb9\x71\x49\xc4\x74\x44\x00\x00\x00\xe4\x9b\x6e\ +\xe4\x9e\x76\xe1\xa0\x77\xe0\xa1\x7e\xe3\xad\x93\xe6\xae\x8d\xe7\ +\xa9\x85\xe5\xa8\x82\xe6\xa6\x7a\xe4\x98\x67\xe4\x94\x5f\xe5\x94\ +\x60\xe5\x9a\x69\xe6\x98\x68\xe4\x8b\x54\xe5\x90\x5c\xe4\x97\x67\ +\xe4\x95\x65\xe2\x97\x65\xe6\x9d\x6e\xe5\x99\x67\xe4\x92\x5c\xe1\ +\x8d\x57\xe1\x8a\x54\xe2\x90\x5f\xe6\x9c\x6e\xe4\x96\x63\xe6\x98\ +\x63\xe6\x96\x60\xe5\x8f\x58\xe1\x85\x48\xe2\x84\x48\xe1\x84\x48\ +\xe0\x84\x4a\xe2\x86\x4d\xe4\x89\x4d\xe2\x88\x4c\xe2\x86\x4c\xe1\ +\x8c\x59\xe2\x93\x66\xe2\x90\x5d\xe6\x8b\x53\xe2\x88\x4f\xe2\x86\ +\x4a\xe1\x87\x4d\xe2\x87\x4c\xe2\x87\x4e\xe2\x89\x4f\xe1\x95\x69\ +\xe1\xa1\x7d\xe4\xa3\x7f\xe1\x99\x70\xdf\x96\x6c\xe0\x96\x69\xe2\ +\x9c\x70\xe4\x9c\x6d\xe4\x96\x63\xe2\x90\x5c\xe4\xa4\x7b\xe3\xab\ +\x89\xe2\xb7\x9e\xe0\xbd\xaa\xdf\xbf\xac\xdf\xc0\xad\xdf\xbe\xa8\ +\xe0\xba\xa3\xe0\xb9\xa3\xe0\xb9\xa2\xe0\xb8\x9e\xe0\xbb\xa3\xe0\ +\xba\xa4\xe0\xb5\x9d\xe1\xb3\x9b\xe1\xb3\x99\xdf\xb7\xa1\xde\xbe\ +\xaa\xde\xc4\xb2\xde\xca\xb8\xdf\xd0\xbe\xe3\xd6\xc9\xe7\xdb\xd2\ +\xe9\xe0\xd7\xea\xe2\xda\xeb\xe3\xdd\xed\xe4\xdd\xec\xe6\xe1\xec\ +\xe6\xe1\xea\xe4\xdf\xeb\xe5\xe0\xec\xe6\xe1\xeb\xe5\xe0\xec\xe5\ +\xe1\xec\xe5\xe2\xee\xe6\xe3\xee\xe8\xe5\xef\xe9\xe6\xee\xe7\xe4\ +\xeb\xe4\xe1\xea\xe4\xdf\xec\xe5\xe2\xeb\xe4\xe1\xe9\xe3\xdf\xe8\ +\xe1\xdd\xe8\xe0\xd9\xe8\xde\xda\xe7\xde\xd9\xe7\xde\xda\xe6\xdd\ +\xd9\xe5\xda\xd6\xe4\xda\xd5\xe4\xdb\xd2\xe3\xd9\xd0\xe2\xd9\xcf\ +\xe1\xd8\xce\xe0\xd6\xcc\xdf\xd5\xcb\xdf\xd5\xca\xdf\xd2\xca\xde\ +\xd2\xc8\xde\xcf\xc5\xdc\xce\xc4\xdd\xce\xc1\xdc\xcc\xbe\xdd\xcc\ +\xbe\xda\xca\xbb\xdb\xca\xb9\xdc\xc7\xb8\xdc\xc5\xb5\xdc\xc4\xb4\ +\xdc\xc2\xb2\xdd\xc0\xae\xde\xbe\xaf\xde\xbc\xab\xde\xba\xa7\xdf\ +\xb7\xa1\xdf\xb3\x9f\xdf\xb3\x9d\xde\xb1\x9a\xdf\xae\x98\xdd\xaa\ +\x90\xde\xa4\x82\xde\x9f\x79\xde\x97\x6f\xdc\x8a\x5a\xde\x86\x52\ +\xdf\x88\x55\xdc\x87\x5b\xdf\x7d\x44\xe0\x7a\x3e\xdf\x7a\x3c\xdf\ +\x79\x3e\xe1\x79\x39\xe1\x7a\x3c\xe4\x7b\x3e\xdf\x7b\x42\xcd\x77\ +\x46\xcb\x77\x45\xcb\x76\x45\xd8\x7d\x46\xd1\x79\x44\xd1\x7a\x45\ +\xda\x7e\x45\xca\x7a\x4c\x00\x00\x00\xe6\x9e\x73\xe4\x9c\x71\xe2\ +\x9f\x73\xe6\xa6\x7e\xe4\xac\x8e\xe5\xb1\x95\xe6\xb2\x94\xe6\xb0\ +\x91\xe5\xac\x88\xe5\xa3\x78\xe4\x9b\x6c\xe4\x9b\x6e\xe3\xa1\x77\ +\xe6\x9e\x6e\xe7\x9d\x6b\xe6\x9f\x72\xe6\xa2\x74\xe6\x9f\x72\xe5\ +\xa0\x73\xe5\xa6\x7e\xe5\xa8\x7f\xe7\xa6\x79\xe6\x9d\x6a\xe6\x9a\ +\x67\xe5\x9d\x6c\xe6\xa6\x7e\xe8\xa7\x7a\xe6\xa8\x7f\xe7\xa9\x82\ +\xe5\x99\x69\xe3\x8a\x53\xe3\x87\x4c\xe3\x89\x4e\xe4\x8b\x53\xe4\ +\x92\x5b\xe6\x97\x63\xe7\x9a\x65\xe6\x8f\x55\xe3\x8d\x58\xe3\x91\ +\x5e\xe2\x91\x5d\xe6\x95\x63\xe4\x91\x5a\xe2\x87\x4c\xe2\x86\x4c\ +\xe3\x86\x4d\xe3\x88\x51\xe1\x89\x53\xe1\x8c\x5b\xe1\x99\x71\xdf\ +\x9a\x71\xe0\x98\x6e\xe0\x95\x69\xdd\x91\x64\xdd\x94\x6b\xdd\x99\ +\x74\xdd\x91\x67\xe3\x9e\x74\xe5\xaf\x92\xe4\xb5\x98\xe1\xb9\xa1\ +\xe0\xbe\xaa\xe0\xc3\xae\xe0\xc3\xb1\xdf\xc1\xae\xdf\xc0\xad\xdf\ +\xbf\xac\xde\xc0\xad\xde\xc2\xac\xdf\xc4\xb0\xe0\xc3\xb0\xdf\xc1\ +\xab\xdf\xbc\xa6\xdf\xb8\xa2\xdf\xbe\xaa\xdf\xc5\xb3\xe0\xca\xb7\ +\xe1\xd1\xc3\xe3\xd5\xcb\xe8\xdb\xd2\xe7\xe0\xd7\xe9\xe2\xda\xed\ +\xe4\xdf\xee\xe6\xe2\xef\xe7\xe1\xed\xe6\xe2\xed\xe7\xe2\xec\xe7\ +\xe2\xeb\xe6\xe1\xeb\xe6\xe0\xec\xe6\xe1\xeb\xe6\xe2\xec\xe5\xe2\ +\xed\xe6\xe3\xef\xe8\xe5\xf0\xeb\xe8\xed\xe7\xe4\xeb\xe4\xe1\xe8\ +\xe4\xdf\xea\xe3\xe0\xeb\xe4\xe1\xe9\xe4\xe0\xe9\xe2\xdd\xe8\xe0\ +\xd9\xe8\xe0\xd9\xe7\xde\xd9\xe7\xdf\xd8\xe6\xdd\xd9\xe4\xdc\xd7\ +\xe5\xdc\xd5\xe5\xdb\xd3\xe4\xdb\xd2\xe2\xd9\xd0\xe2\xd9\xd0\xe0\ +\xd6\xce\xe0\xd5\xcc\xde\xd3\xcb\xde\xd2\xc9\xdf\xd1\xc7\xdd\xcf\ +\xc5\xdc\xce\xc4\xdd\xce\xc3\xdd\xcd\xc2\xdc\xcc\xbe\xdc\xca\xbd\ +\xdc\xc9\xbb\xdb\xc8\xb9\xdc\xc5\xb5\xdd\xc5\xb5\xdc\xc3\xb2\xde\ +\xc0\xaf\xdf\xbf\xac\xde\xbd\xaa\xde\xba\xa8\xde\xb8\xa3\xdf\xb5\ +\x9e\xdf\xb3\x9d\xdf\xb1\x9a\xde\xae\x97\xde\xa9\x8e\xde\xa2\x81\ +\xdc\x9e\x79\xdd\x99\x71\xde\x90\x63\xdf\x8a\x59\xdc\x84\x4f\xdc\ +\x80\x4c\xde\x7f\x45\xde\x7b\x3e\xe0\x7a\x3c\xe1\x7a\x3a\xe2\x78\ +\x3a\xe0\x7a\x3a\xe2\x7a\x3b\xe3\x7a\x3b\xd1\x78\x44\xd0\x77\x45\ +\xcd\x77\x47\xdc\x7d\x43\xcc\x78\x48\xbf\x70\x44\xbe\x70\x42\x9f\ +\x63\x46\x00\x00\x00\xe5\xa1\x78\xe5\xa4\x79\xe5\xac\x88\xe6\xb1\ +\x93\xe4\xb3\x97\xe4\xb7\x9c\xe4\xb8\x9f\xe4\xb3\x95\xe5\xae\x8f\ +\xe6\xac\x89\xe6\xa8\x7f\xe4\xa3\x7a\xe4\xa3\x78\xe5\xa8\x83\xe6\ +\xac\x87\xe5\xab\x87\xe4\xaa\x88\xe3\xa8\x83\xe4\xa9\x86\xe3\xaa\ +\x8c\xe5\xaf\x90\xe5\xb2\x91\xe5\xb0\x8d\xe6\xad\x88\xe7\xae\x89\ +\xe5\xb1\x92\xe4\xae\x8f\xe3\xab\x8b\xe3\xa7\x83\xe1\x9a\x6f\xe2\ +\x8f\x5b\xe4\x93\x5e\xe4\x98\x66\xe4\x99\x68\xe5\xa1\x74\xe6\xa8\ +\x80\xe7\xae\x88\xe9\xaa\x7c\xe7\x9e\x6c\xe4\x98\x66\xe2\x93\x63\ +\xe1\x97\x6e\xe1\x8f\x62\xe2\x89\x51\xe2\x8a\x51\xe2\x87\x4f\xe2\ +\x8b\x56\xe2\x8b\x55\xe0\x89\x54\xe1\x97\x6b\xe0\x98\x6b\xde\x92\ +\x66\xdf\x8d\x5f\xe2\x8a\x55\xdf\x89\x55\xde\x85\x52\xe3\x93\x5e\ +\xe4\xaf\x8e\xe3\xb9\x9f\xe2\xbd\xa5\xe1\xbe\xaa\xdf\xc2\xaf\xdf\ +\xc5\xb4\xde\xc6\xb6\xdf\xc6\xb4\xdf\xc5\xb4\xdf\xc6\xb3\xde\xc6\ +\xb5\xde\xc8\xb7\xde\xca\xba\xdf\xcc\xbc\xdf\xcd\xba\xdf\xc9\xb6\ +\xdf\xc7\xb3\xe0\xc6\xb3\xde\xcc\xbb\xe0\xd3\xc5\xe2\xd5\xcb\xe4\ +\xd8\xcf\xe7\xdc\xd4\xeb\xe2\xda\xec\xe4\xdf\xee\xe6\xe2\xed\xe6\ +\xe2\xef\xe8\xe5\xf0\xe9\xe6\xef\xea\xe6\xee\xea\xe5\xee\xe8\xe4\ +\xed\xe8\xe3\xec\xe9\xe3\xed\xe6\xe2\xee\xe7\xe4\xee\xe7\xe4\xef\ +\xe8\xe5\xee\xe9\xe6\xed\xe7\xe4\xeb\xe4\xe1\xea\xe3\xdf\xe9\xe2\ +\xde\xe8\xe3\xde\xe9\xe2\xde\xe9\xe2\xdd\xe8\xe0\xda\xe8\xe0\xdb\ +\xe8\xe0\xda\xe8\xdf\xdb\xe7\xde\xda\xe5\xde\xd6\xe6\xdd\xd7\xe6\ +\xdb\xd6\xe4\xdb\xd2\xe3\xd9\xd2\xe2\xd9\xd0\xe1\xd8\xce\xdf\xd6\ +\xcc\xde\xd4\xca\xdf\xd3\xc9\xdd\xd1\xc8\xdd\xd0\xc6\xdc\xce\xc5\ +\xdc\xce\xc2\xdc\xce\xc1\xdc\xcc\xbe\xdb\xca\xbe\xdb\xca\xba\xdc\ +\xc8\xba\xdd\xc6\xb7\xdd\xc5\xb5\xdb\xc3\xb0\xdd\xc2\xb1\xdf\xbf\ +\xac\xde\xbc\xaa\xdf\xba\xa8\xdf\xba\xa3\xdf\xb7\xa0\xe0\xb5\xa2\ +\xde\xb1\x9a\xdd\xac\x95\xde\xaa\x90\xdf\xa6\x87\xdc\xa1\x7b\xdf\ +\x9e\x75\xdf\x9a\x70\xde\x93\x68\xdd\x8a\x58\xdc\x82\x4c\xdf\x7c\ +\x43\xdf\x7a\x3d\xe0\x7a\x3c\xe2\x7a\x3b\xe1\x78\x3a\xe0\x7a\x3b\ +\xe1\x7a\x3b\xdf\x7a\x3c\xdc\x7a\x3f\xd4\x79\x44\xd9\x79\x40\xd9\ +\x7c\x46\xd3\x79\x43\xcf\x78\x43\xd0\x7a\x44\xc0\x75\x49\x00\x00\ +\x00\xe2\x9e\x76\xe2\xa4\x7e\xe3\xac\x8d\xe4\xb6\x9b\xe4\xb9\xa0\ +\xe4\xbc\xa4\xe3\xbb\xa1\xe4\xb7\x9c\xe4\xb6\x9a\xe4\xb6\x98\xe4\ +\xb0\x92\xe5\xac\x8a\xe4\xab\x89\xe4\xb1\x94\xe5\xb1\x96\xe5\xaf\ +\x92\xe3\xab\x8d\xe2\xaa\x89\xe3\xaa\x8b\xe2\xaa\x8e\xe4\xb4\x9a\ +\xe2\xba\xa1\xe3\xbc\xa3\xe3\xbc\xa1\xe3\xbb\xa1\xe5\xb7\x9f\xe5\ +\xb2\x95\xe5\xac\x8d\xe6\xaa\x84\xe3\x9e\x70\xe5\x9b\x6b\xe4\xa2\ +\x77\xe3\xa3\x78\xe4\xa5\x7c\xe5\xad\x8c\xe5\xb1\x92\xe5\xb5\x9d\ +\xe6\xb9\x9d\xe7\xaf\x8a\xe5\xa3\x77\xe4\x9b\x6c\xe3\x95\x63\xe2\ +\x89\x55\xe1\x86\x51\xe0\x89\x54\xe4\x8d\x54\xe3\x92\x61\xe4\x94\ +\x60\xe2\x8e\x59\xe2\x9b\x70\xe3\x9f\x74\xe2\x94\x64\xe4\x95\x63\ +\xe5\x9e\x6f\xe6\x9e\x6e\xe8\xa0\x6e\xe7\xb0\x87\xe2\xbc\xa4\xe1\ +\xc0\xaa\xe1\xc3\xaf\xe0\xc4\xb0\xdf\xc5\xb1\xdd\xc7\xb6\xdd\xc8\ +\xb8\xdd\xc8\xb7\xde\xc9\xb9\xdf\xc9\xba\xde\xca\xba\xde\xcc\xba\ +\xdf\xcf\xbe\xe1\xd1\xc4\xe2\xd3\xc6\xe1\xd2\xc4\xe1\xd1\xc3\xe2\ +\xd0\xc3\xe0\xd1\xc3\xe1\xd3\xc9\xe3\xd7\xcf\xe6\xdc\xd4\xe9\xe0\ +\xd6\xeb\xe2\xde\xed\xe4\xe1\xec\xe6\xe2\xee\xe7\xe3\xf0\xe9\xe6\ +\xf2\xec\xe9\xf3\xed\xea\xf2\xed\xea\xef\xea\xe7\xef\xe9\xe6\xee\ +\xe9\xe6\xee\xe7\xe4\xed\xe6\xe3\xed\xe6\xe3\xed\xe6\xe3\xec\xe5\ +\xe2\xeb\xe4\xe1\xea\xe3\xe0\xe9\xe4\xdf\xea\xe4\xde\xe8\xe2\xdd\ +\xe9\xe1\xdc\xe6\xe1\xdc\xe8\xe0\xdb\xe9\xe1\xdc\xea\xe1\xdd\xe8\ +\xdf\xdb\xe8\xdf\xdb\xe6\xdd\xd8\xe5\xdc\xd7\xe5\xdc\xd6\xe4\xdb\ +\xd4\xe3\xda\xd2\xe2\xd9\xd0\xe1\xd8\xcf\xdf\xd6\xcc\xdf\xd5\xcb\ +\xe0\xd4\xca\xdd\xd2\xc7\xde\xd0\xc5\xdd\xcf\xc5\xdc\xce\xc2\xdb\ +\xcd\xc0\xdb\xcd\xbd\xdc\xcb\xbc\xdc\xca\xbc\xdc\xc9\xba\xdd\xc7\ +\xb7\xde\xc5\xb4\xdc\xc3\xb2\xdc\xc2\xb2\xde\xc0\xad\xde\xbd\xaa\ +\xdf\xbb\xa8\xe0\xbb\xa4\xdf\xb8\xa2\xdf\xb7\xa2\xe0\xb1\x9a\xdc\ +\xab\x91\xde\xa9\x8d\xde\xa9\x8d\xde\xa8\x87\xdf\xa5\x82\xdf\xa2\ +\x7d\xde\x9c\x75\xdc\x8c\x5f\xdd\x84\x50\xdd\x7d\x44\xdf\x79\x3a\ +\xe0\x79\x3a\xe2\x79\x3b\xe0\x79\x3c\xe2\x79\x3a\xe2\x79\x3a\xe0\ +\x7a\x3b\xe0\x7a\x3c\xdf\x7b\x3e\xdb\x7a\x41\xd1\x78\x42\xc3\x70\ +\x41\xca\x75\x3f\xc9\x78\x46\xb8\x6f\x45\x00\x00\x00\xe4\x9d\x71\ +\xe2\xa1\x78\xe3\xad\x8e\xe3\xb8\x9e\xe1\xbc\xa4\xe0\xbd\xa9\xe0\ +\xbd\xa6\xe2\xbb\xa3\xe3\xbb\xa3\xe2\xbc\xa1\xe3\xba\x9f\xe3\xb8\ +\x9c\xe4\xb4\x9b\xe3\xb3\x9b\xe3\xb1\x99\xe3\xaf\x92\xe1\xaa\x8c\ +\xe1\xab\x8e\xe1\xad\x91\xe2\xaf\x92\xe3\xb6\x9d\xe1\xbd\xa7\xe0\ +\xc0\xac\xe0\xc0\xad\xe1\xbf\xaa\xe1\xbf\xa9\xe4\xbc\xa2\xe4\xbb\ +\x9e\xe5\xb9\x9c\xe5\xb1\x8e\xe6\xab\x86\xe4\xaa\x89\xe4\xae\x8b\ +\xe5\xb5\x95\xe4\xb8\x9e\xe3\xbc\xa1\xe4\xbc\xa4\xe3\xbf\xaa\xe4\ +\xbe\xa4\xe6\xb6\x96\xe5\xa8\x7e\xe4\xa1\x76\xe2\x94\x61\xe2\x87\ +\x50\xe0\x86\x50\xe2\x94\x61\xe6\xa4\x78\xe9\xa7\x7c\xe7\xa1\x70\ +\xe4\xa4\x7b\xe5\xa8\x82\xe4\xa2\x73\xe5\xa6\x7f\xe5\xad\x8c\xe5\ +\xb3\x93\xe4\xbb\x9d\xe2\xbe\xa7\xe0\xc1\xac\xe0\xc5\xb2\xdf\xc6\ +\xb3\xe0\xc7\xb6\xde\xc8\xb7\xde\xc8\xb9\xdf\xcb\xb9\xdf\xca\xbb\ +\xdf\xca\xbb\xde\xcb\xbd\xde\xcd\xc0\xde\xce\xc0\xe0\xd1\xc4\xe3\ +\xd3\xc6\xe1\xd4\xc9\xe1\xd4\xca\xe1\xd4\xc9\xe0\xd3\xc9\xe2\xd5\ +\xcb\xe4\xd7\xcd\xe5\xda\xd1\xe7\xde\xd5\xe9\xe1\xd9\xec\xe3\xdf\ +\xec\xe6\xe1\xee\xe7\xe4\xef\xe8\xe5\xf0\xeb\xe7\xf3\xef\xeb\xf3\ +\xed\xec\xf1\xed\xeb\xef\xe9\xe7\xee\xe7\xe4\xec\xe5\xe2\xec\xe5\ +\xe2\xeb\xe4\xe1\xeb\xe4\xe1\xec\xe5\xe2\xea\xe3\xdf\xe9\xe2\xdf\ +\xea\xe4\xdf\xe9\xe4\xdf\xe9\xe3\xde\xe8\xe3\xde\xea\xe1\xdd\xe9\ +\xe0\xdc\xe9\xe0\xdc\xea\xe1\xdc\xe9\xe0\xdc\xe8\xdf\xd9\xe8\xdf\ +\xdb\xe5\xdc\xd8\xe3\xdb\xd4\xe4\xda\xd5\xe3\xd9\xd3\xe3\xda\xd2\ +\xe3\xda\xd1\xe1\xd8\xcf\xe0\xd7\xcc\xdf\xd5\xcb\xdf\xd5\xcb\xde\ +\xd2\xc9\xde\xd0\xc7\xde\xcf\xc6\xdd\xce\xc3\xdc\xce\xc1\xdc\xcd\ +\xc0\xdb\xcc\xbd\xdd\xc9\xbb\xdc\xc9\xb9\xdd\xc7\xb8\xdd\xc6\xb7\ +\xdd\xc4\xb3\xdb\xc3\xb0\xdd\xc1\xb0\xde\xbe\xab\xde\xbc\xa9\xe0\ +\xbb\xa7\xe0\xb9\xa3\xe1\xb8\xa2\xe0\xb4\x9d\xdf\xaf\x96\xdf\xac\ +\x92\xe0\xac\x93\xe0\xac\x92\xdf\xab\x8d\xe0\xa8\x87\xde\x9f\x79\ +\xdc\x90\x64\xde\x88\x58\xdc\x82\x4d\xde\x79\x3d\xdf\x79\x3a\xe2\ +\x78\x3a\xdf\x78\x3b\xe0\x7a\x3c\xe0\x7a\x3b\xde\x79\x3d\xde\x79\ +\x3e\xe1\x7a\x3d\xe0\x79\x3e\xd5\x77\x41\xc5\x74\x44\xbb\x71\x46\ +\xc6\x76\x47\xd5\x7b\x44\x00\x00\x00\xe6\xab\x86\xe6\xaf\x8c\xe2\ +\xb8\x9e\xe1\xbe\xa7\xe0\xc1\xab\xdf\xc1\xac\xdf\xbe\xaa\xde\xbc\ +\xa6\xdf\xbe\xa9\xdf\xc0\xab\xe0\xbf\xaa\xe0\xbd\xa5\xe3\xb5\x9d\ +\xe2\xb0\x97\xe4\xb4\x9d\xe3\xb2\x99\xe3\xac\x8d\xe3\xae\x91\xe3\ +\xb0\x94\xe2\xb5\x9c\xe1\xbb\xa4\xe0\xbf\xaa\xe0\xc1\xb0\xe0\xc2\ +\xaf\xe1\xc2\xaf\xe1\xc4\xb0\xe1\xc4\xaf\xe1\xc3\xae\xe2\xc3\xad\ +\xe3\xbe\xa7\xe4\xb7\x9c\xe3\xb4\x99\xe1\xbb\xa1\xdf\xbf\xa8\xe0\ +\xc0\xad\xe2\xc4\xaf\xe1\xc1\xab\xe1\xc2\xae\xe2\xc3\xaf\xe3\xbf\ +\xa7\xe4\xb5\x97\xe3\xa9\x84\xe2\x98\x69\xe2\x8b\x55\xe3\x8c\x54\ +\xe5\xa0\x70\xe7\xb1\x92\xe5\xb6\x9b\xe6\xb1\x93\xe6\xaf\x8e\xe5\ +\xb1\x95\xe4\xb5\x95\xe3\xb4\x98\xe4\xb8\x9c\xe2\xbd\xa4\xe1\xbf\ +\xab\xe0\xc1\xae\xe0\xc3\xb1\xdd\xc5\xb5\xde\xc8\xb7\xde\xca\xb9\ +\xdf\xc8\xb7\xdd\xc7\xb7\xdd\xc8\xb9\xde\xc9\xba\xdd\xca\xbb\xdd\ +\xcd\xbf\xde\xce\xc1\xe0\xd0\xc4\xe0\xd1\xc5\xdf\xd3\xc7\xdf\xd4\ +\xca\xe1\xd5\xca\xe0\xd3\xca\xe1\xd7\xcb\xe4\xd8\xce\xe3\xd9\xd1\ +\xe5\xdc\xd3\xe7\xdd\xd4\xe6\xde\xd8\xec\xe3\xdf\xef\xe6\xe2\xef\ +\xe8\xe5\xf1\xea\xe7\xf1\xec\xe9\xf3\xee\xec\xf2\xed\xea\xef\xea\ +\xe7\xef\xe7\xe4\xec\xe5\xe2\xeb\xe4\xe1\xe9\xe2\xe0\xe9\xe1\xde\ +\xea\xe2\xde\xea\xe3\xdf\xe9\xe3\xde\xe9\xe3\xdf\xe7\xe2\xdd\xe7\ +\xe3\xde\xe9\xe3\xde\xe9\xe3\xde\xe8\xe2\xdd\xe7\xe0\xdc\xea\xe1\ +\xdd\xe9\xe0\xdc\xe9\xe0\xdc\xe8\xdf\xdb\xe7\xde\xda\xe3\xdb\xd5\ +\xe5\xdb\xd3\xe4\xda\xd2\xe3\xda\xd1\xe3\xd9\xd2\xe1\xd9\xcf\xe1\ +\xd8\xcf\xe0\xd7\xcd\xe0\xd6\xcc\xdf\xd4\xca\xdf\xd3\xca\xdf\xd1\ +\xc9\xde\xd0\xc7\xdc\xcf\xc4\xdc\xce\xc2\xda\xce\xc1\xdc\xcc\xbf\ +\xdb\xca\xbc\xdb\xca\xb9\xdd\xc9\xb9\xdc\xc7\xb6\xdc\xc5\xb5\xdc\ +\xc4\xb2\xdc\xc2\xb0\xdf\xbf\xad\xde\xbd\xaa\xdf\xbc\xaa\xdf\xba\ +\xa3\xe0\xb9\xa3\xe0\xb8\xa1\xe1\xb4\x9d\xe0\xb1\x99\xe1\xb0\x98\ +\xe0\xb0\x97\xe1\xaf\x95\xe0\xab\x8f\xde\xa5\x85\xde\x98\x6f\xde\ +\x94\x66\xde\x8b\x5a\xde\x7c\x40\xdf\x78\x3a\xe0\x78\x3a\xe1\x79\ +\x3a\xde\x7a\x3d\xdf\x7b\x3d\xdf\x7a\x3c\xdf\x7d\x40\xdf\x7c\x3e\ +\xe0\x7c\x3e\xcf\x78\x45\xc2\x74\x49\xd6\x7c\x45\xde\x81\x47\xc2\ +\x78\x4e\x00\x00\x00\xe3\xb8\x9c\xe3\xbc\xa2\xe1\xc0\xaa\xdf\xc5\ +\xb0\xdf\xc6\xb2\xdf\xc5\xb1\xe0\xc3\xaf\xe0\xc2\xad\xe0\xc3\xb0\ +\xdf\xc5\xb2\xdf\xc4\xb0\xdf\xc1\xac\xe1\xbe\xa5\xe1\xbb\xa1\xe1\ +\xb9\xa2\xe1\xb7\x9d\xe2\xb0\x96\xe2\xb1\x99\xe2\xb6\x9e\xe1\xb9\ +\xa0\xdf\xbd\xa6\xde\xbe\xac\xdf\xc3\xb2\xdf\xc4\xb2\xdf\xc4\xb3\ +\xde\xc7\xb5\xde\xc7\xb6\xdf\xc6\xb5\xde\xc6\xb4\xdf\xc5\xb0\xe0\ +\xbe\xa8\xe1\xbd\xa6\xdf\xbf\xab\xe0\xc3\xaf\xdf\xc5\xb1\xde\xc6\ +\xb5\xdf\xc7\xb5\xe0\xc7\xb6\xe0\xc6\xb4\xe0\xc2\xac\xe3\xbf\xa7\ +\xe4\xb3\x95\xe3\xa3\x79\xe3\x99\x67\xe3\x9c\x6e\xe5\xad\x8c\xe3\ +\xb3\x9a\xe2\xbd\xa5\xe3\xb7\xa0\xe4\xb6\x9d\xe4\xb3\x9b\xe0\xae\ +\x98\xe0\xb1\x9c\xe0\xb9\xa3\xde\xbe\xad\xe0\xc1\xb0\xdf\xc3\xb0\ +\xdf\xc1\xb0\xdf\xc2\xb0\xdd\xc6\xb6\xdf\xca\xba\xdf\xcb\xba\xdd\ +\xc8\xb9\xdd\xc7\xb6\xdd\xc8\xb9\xdd\xcb\xbc\xdc\xcd\xbe\xe0\xd0\ +\xc4\xe0\xd0\xc4\xde\xd0\xc5\xdf\xd1\xc7\xe1\xd3\xca\xe1\xd5\xcb\ +\xe2\xd6\xcd\xe3\xd6\xcd\xe4\xd8\xd0\xe4\xd8\xd1\xe4\xda\xd3\xe6\ +\xdc\xd5\xe5\xdc\xd5\xea\xe1\xdd\xed\xe5\xe2\xee\xe7\xe4\xf0\xea\ +\xe8\xf2\xed\xea\xf3\xee\xed\xf2\xed\xea\xee\xe8\xe5\xed\xe5\xe2\ +\xea\xe3\xe0\xe9\xe2\xde\xe9\xe0\xdc\xe8\xe1\xdc\xe9\xe1\xdc\xe8\ +\xe1\xdc\xe8\xe1\xdc\xe9\xe0\xdc\xe9\xe1\xdd\xe8\xe2\xdd\xe7\xe2\ +\xdd\xe9\xe2\xdd\xe8\xe2\xde\xe7\xe1\xdc\xe7\xe1\xdc\xe8\xe1\xdc\ +\xe8\xdf\xdb\xe7\xde\xda\xe6\xdd\xd9\xe4\xdc\xd5\xe4\xdb\xd2\xe3\ +\xda\xd1\xe2\xd9\xcf\xe1\xd8\xce\xe2\xd8\xcf\xe1\xd7\xcf\xe1\xd7\ +\xcd\xdf\xd5\xcb\xdf\xd5\xcb\xdd\xd4\xca\xdd\xd1\xc7\xdc\xd0\xc6\ +\xdd\xcf\xc5\xdd\xcf\xc3\xdc\xce\xc2\xdc\xcc\xc1\xdc\xcb\xbf\xdd\ +\xca\xbc\xdd\xc9\xb9\xdd\xc8\xb9\xdc\xc6\xb6\xdd\xc4\xb4\xdd\xc3\ +\xb2\xde\xc2\xb0\xdf\xbf\xad\xde\xbd\xaa\xdd\xbb\xa8\xdf\xba\xa5\ +\xdf\xb9\xa5\xe0\xb6\xa0\xdf\xb4\x9d\xde\xb1\x98\xe1\xb2\x9a\xe1\ +\xb2\x9b\xdf\xad\x95\xdd\xa9\x8b\xe1\xa6\x82\xe0\x9f\x78\xdf\x95\ +\x69\xe0\x8b\x55\xde\x7e\x42\xe0\x7a\x3c\xde\x7b\x3e\xe1\x7c\x3f\ +\xe0\x7b\x3d\xe0\x7a\x3c\xe2\x7e\x3d\xe1\x81\x45\xde\x7f\x44\xd4\ +\x7b\x47\xd8\x7a\x3f\xe1\x81\x44\xcc\x80\x52\xb7\x81\x63\x00\x00\ +\x00\xe2\xc1\xa9\xe0\xc2\xad\xe0\xc6\xb2\xdf\xc8\xb7\xde\xca\xb8\ +\xde\xc9\xb7\xdf\xc9\xb8\xdf\xc8\xb5\xdf\xc8\xb6\xdf\xc8\xb8\xde\ +\xc7\xb7\xde\xc7\xb5\xdf\xc5\xb1\xdf\xc1\xab\xdf\xbd\xa6\xdf\xbc\ +\xa4\xe2\xb5\x9a\xe1\xb4\x9b\xe1\xb8\xa1\xe0\xbb\xa8\xdf\xbe\xab\ +\xdf\xbf\xac\xdf\xc0\xaf\xde\xc2\xb1\xde\xc2\xb1\xdd\xc7\xb6\xde\ +\xcb\xb9\xde\xca\xb8\xde\xc8\xb6\xdf\xc6\xb4\xe0\xc3\xb0\xdf\xc4\ +\xb0\xdf\xc7\xb2\xdf\xc6\xb5\xdf\xc7\xb4\xde\xc8\xb7\xdd\xca\xb9\ +\xde\xca\xb9\xde\xc9\xb7\xdf\xc7\xb4\xe0\xc5\xb1\xe1\xbd\xa4\xe3\ +\xaf\x8e\xe2\xa6\x7c\xe3\xaa\x87\xe4\xaf\x94\xe1\xb1\x97\xe1\xbe\ +\xa9\xe2\xbb\xa5\xe2\xba\xa3\xe2\xb4\x99\xe0\xab\x8d\xdf\xa8\x8d\ +\xe0\xb1\x9b\xde\xb8\xa5\xde\xbb\xa9\xde\xbc\xab\xdf\xbc\xab\xde\ +\xc1\xaf\xdd\xc6\xb4\xdd\xc8\xb9\xdf\xca\xbb\xde\xcb\xbc\xde\xcb\ +\xba\xdd\xcc\xbc\xdc\xcd\xbe\xde\xce\xc1\xdf\xcf\xc3\xdf\xcf\xc3\ +\xdf\xd0\xc7\xe0\xd1\xc7\xe0\xd3\xc9\xe2\xd5\xcb\xe2\xd5\xcc\xe2\ +\xd5\xcd\xe3\xd6\xce\xe4\xd7\xd0\xe4\xd9\xd1\xe5\xdc\xd2\xe5\xdb\ +\xd3\xe6\xde\xd7\xe9\xe1\xdd\xeb\xe4\xe1\xee\xe8\xe6\xef\xea\xe9\ +\xef\xe9\xe8\xef\xe9\xe7\xea\xe3\xe0\xe9\xe2\xdd\xe9\xe0\xdb\xe6\ +\xe0\xda\xe7\xde\xd9\xe8\xdf\xda\xe8\xe0\xd9\xe9\xe0\xdb\xe9\xe0\ +\xdc\xe8\xdf\xdb\xe9\xe0\xdb\xe8\xe0\xdc\xe7\xe2\xdd\xe9\xe1\xdc\ +\xe7\xe1\xdd\xe8\xe1\xdd\xe9\xe0\xdc\xe9\xe0\xdc\xe6\xde\xd8\xe6\ +\xdd\xd9\xe5\xdd\xd6\xe4\xdb\xd3\xe2\xdb\xd3\xe2\xd9\xd1\xe2\xd9\ +\xcf\xe2\xd9\xd0\xe1\xd8\xcf\xe0\xd7\xcd\xdf\xd6\xcd\xdf\xd5\xcb\ +\xde\xd4\xca\xde\xd3\xc9\xde\xd1\xc7\xdd\xd0\xc6\xdc\xcf\xc6\xdc\ +\xce\xc4\xdc\xce\xc2\xdb\xce\xc2\xdd\xcc\xc0\xdc\xcc\xbe\xdb\xcb\ +\xba\xdc\xc9\xb9\xdd\xc6\xb8\xdc\xc5\xb6\xdc\xc3\xb3\xdc\xc2\xb1\ +\xde\xc0\xae\xde\xbd\xac\xdd\xbc\xa9\xde\xbb\xa8\xdd\xba\xa5\xdf\ +\xb7\xa1\xdd\xb2\x9c\xde\xaf\x98\xdf\xb2\x9a\xde\xb2\x9b\xdf\xad\ +\x96\xe0\xab\x8f\xdf\xaa\x8c\xe0\xa5\x84\xdd\x9c\x75\xde\x93\x69\ +\xdd\x84\x4f\xdf\x7b\x3e\xdd\x7c\x40\xdf\x7d\x42\xde\x7e\x41\xdf\ +\x7c\x3e\xe0\x7e\x41\xe0\x86\x4f\xe0\x82\x4b\xde\x7f\x47\xda\x80\ +\x47\xce\x7e\x4e\xbf\x7e\x5a\xb8\x77\x56\x00\x00\x00\xdf\xc8\xb4\ +\xdf\xca\xb7\xde\xcc\xba\xdf\xce\xbe\xdf\xce\xbd\xdf\xce\xbd\xdf\ +\xcf\xbe\xde\xce\xbe\xde\xcd\xbc\xdf\xcd\xbd\xde\xcc\xbc\xde\xca\ +\xba\xde\xca\xb7\xde\xc7\xb5\xdf\xc1\xad\xde\xc0\xab\xe0\xbf\xa7\ +\xe0\xbb\xa3\xe1\xba\xa5\xde\xbb\xa6\xdf\xbd\xaa\xe0\xbf\xac\xdf\ +\xbd\xab\xdf\xc0\xae\xdf\xc2\xb0\xde\xc8\xb7\xdf\xcd\xbc\xdf\xcf\ +\xbe\xde\xcd\xbc\xde\xcc\xb9\xde\xca\xb9\xde\xca\xb8\xde\xcb\xbb\ +\xde\xcb\xbb\xdd\xcb\xb9\xde\xcd\xbb\xdd\xce\xbd\xdf\xce\xbe\xdf\ +\xcd\xbc\xdf\xca\xba\xde\xc7\xb5\xdf\xc4\xb0\xe2\xbd\xa5\xe2\xb5\ +\x98\xe2\xb6\x9b\xe3\xb6\x9c\xe0\xb8\xa1\xe0\xbe\xa9\xe0\xbf\xaa\ +\xe0\xbc\xa6\xe2\xbb\xa1\xe2\xb3\x96\xe1\xae\x8e\xdf\xac\x92\xde\ +\xae\x99\xde\xb6\xa1\xdf\xb9\xa6\xdf\xba\xa7\xde\xc1\xae\xdd\xc0\ +\xb1\xdc\xbe\xb0\xde\xc6\xb8\xde\xca\xbc\xdc\xcc\xbc\xdc\xcd\xbd\ +\xde\xcd\xc1\xde\xcf\xc2\xde\xcf\xc3\xdd\xd0\xc3\xdf\xd1\xc6\xdf\ +\xd1\xc7\xe0\xd3\xc9\xe1\xd5\xcc\xe2\xd5\xcd\xe0\xd5\xcc\xe1\xd5\ +\xcd\xe1\xd6\xcd\xe1\xd7\xce\xe1\xd8\xce\xe1\xd8\xce\xe3\xd9\xd0\ +\xe4\xdb\xd5\xe6\xde\xda\xe8\xe1\xde\xe9\xe4\xe2\xea\xe3\xdf\xe8\ +\xe1\xde\xe8\xdf\xdc\xe6\xdd\xd8\xe6\xdd\xd6\xe5\xdd\xd6\xe6\xde\ +\xd6\xe6\xdd\xd9\xe7\xde\xd8\xe6\xde\xd7\xe7\xde\xd9\xe7\xdf\xd8\ +\xe8\xe0\xd9\xe9\xe1\xdd\xe7\xe1\xdc\xe8\xe1\xdc\xe7\xe1\xdc\xe9\ +\xe0\xdb\xe8\xe0\xdc\xe7\xdf\xdb\xe6\xdd\xd7\xe5\xdd\xd7\xe5\xdd\ +\xd7\xe5\xdc\xd4\xe2\xda\xd3\xe2\xd9\xd1\xe2\xd9\xd0\xe1\xd8\xcf\ +\xe1\xd6\xcd\xe0\xd6\xcc\xdf\xd5\xcc\xde\xd4\xca\xdd\xd4\xca\xdd\ +\xd1\xc7\xdf\xd1\xc7\xde\xd0\xc5\xdc\xcf\xc6\xdd\xcf\xc3\xdc\xce\ +\xc2\xdc\xcd\xc1\xdd\xcd\xc0\xdd\xcc\xbe\xdb\xcb\xbb\xdb\xca\xbb\ +\xdd\xc7\xb8\xdc\xc6\xb7\xdc\xc4\xb4\xdc\xc3\xb3\xdc\xc1\xaf\xdd\ +\xbf\xae\xdd\xbd\xaa\xdd\xbc\xa9\xdd\xba\xa7\xde\xb8\xa3\xdf\xb6\ +\x9f\xe0\xb4\x9c\xdf\xb2\x9b\xdf\xb4\x9e\xe0\xb2\x9b\xe0\xad\x94\ +\xdd\xaa\x8e\xdc\xa2\x81\xdd\x9d\x75\xdd\x97\x6f\xdd\x89\x5b\xdc\ +\x7d\x44\xdd\x7e\x44\xde\x80\x44\xdd\x7f\x46\xde\x7d\x41\xde\x7e\ +\x42\xdb\x7f\x45\xda\x81\x4c\xd7\x81\x4f\xd1\x80\x50\xd0\x83\x54\ +\xc6\x7d\x54\xb5\x77\x57\x00\x00\x00\xdf\xcf\xbe\xdf\xd0\xbf\xe0\ +\xd1\xc1\xe1\xd2\xc3\xe1\xd2\xc4\xe1\xd2\xc3\xe0\xd3\xc4\xe1\xd2\ +\xc4\xe0\xd1\xc2\xe0\xd0\xc2\xe0\xd0\xc2\xde\xcf\xbe\xdf\xce\xbe\ +\xde\xcd\xbb\xde\xc7\xb3\xdf\xc4\xb1\xdf\xc2\xb0\xdf\xc0\xac\xdf\ +\xbf\xac\xdf\xbf\xab\xdf\xbf\xac\xdf\xbe\xab\xdf\xbe\xab\xe0\xc2\ +\xb0\xdd\xc6\xb5\xde\xcb\xb9\xdf\xcf\xbf\xe0\xd0\xc3\xe0\xd1\xc2\ +\xdf\xd0\xc1\xdf\xd0\xc0\xde\xce\xbe\xdf\xcf\xbf\xde\xcf\xbf\xdf\ +\xcf\xc0\xde\xcf\xbf\xe0\xd1\xc4\xdf\xd0\xc3\xde\xcf\xbf\xde\xcd\ +\xbd\xdd\xca\xbb\xdd\xc8\xb7\xde\xc5\xb1\xe0\xc1\xaa\xe0\xc1\xab\ +\xe0\xc1\xab\xe0\xc1\xac\xe0\xc3\xaf\xe0\xc3\xb0\xe0\xc2\xae\xe0\ +\xc4\xb0\xe1\xc3\xac\xe1\xba\xa2\xe2\xb0\x96\xe1\xae\x92\xdf\xb7\ +\xa0\xdf\xba\xa5\xde\xbb\xa8\xdd\xbd\xaa\xdd\xba\xa8\xdd\xb9\xa5\ +\xdd\xc2\xb2\xdd\xc9\xba\xdb\xcc\xbc\xdd\xcd\xbf\xde\xce\xc1\xde\ +\xcf\xc2\xdd\xcf\xc3\xdd\xcf\xc4\xdd\xce\xc5\xde\xcf\xc6\xdf\xd2\ +\xc8\xe0\xd3\xca\xe0\xd3\xcb\xe0\xd3\xcb\xe0\xd4\xca\xdf\xd5\xcb\ +\xdf\xd4\xcb\xe0\xd4\xcb\xdf\xd4\xcb\xdf\xd5\xcb\xe0\xd5\xcd\xe1\ +\xd8\xcf\xe2\xda\xd4\xe3\xdb\xd8\xe4\xdb\xd7\xe4\xda\xd6\xe4\xdb\ +\xd6\xe3\xda\xd6\xe4\xdb\xd4\xe5\xdc\xd5\xe6\xdc\xd7\xe5\xdd\xd8\ +\xe6\xdd\xd8\xe5\xdd\xd6\xe6\xde\xd6\xe6\xdf\xd7\xe6\xde\xd8\xe8\ +\xdf\xdb\xe8\xe2\xdc\xe9\xe1\xdd\xe6\xe0\xdb\xe8\xdf\xd8\xe7\xdf\ +\xd8\xe6\xdd\xd8\xe5\xdc\xd8\xe4\xdc\xd5\xe5\xdc\xd9\xe3\xdb\xd3\ +\xe2\xd8\xd1\xe1\xd8\xcf\xe0\xd7\xcd\xe1\xd7\xcd\xdf\xd5\xcb\xde\ +\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xdd\xd2\xc8\xdd\xd2\xc8\xde\xd2\ +\xc8\xdf\xd0\xc4\xdd\xce\xc5\xdd\xce\xc3\xdd\xce\xc4\xdc\xcd\xc1\ +\xde\xce\xc2\xdd\xcd\xc0\xdb\xcb\xbc\xdc\xcb\xb9\xdd\xc8\xbb\xdc\ +\xc7\xb8\xdd\xc5\xb5\xdd\xc3\xb5\xdc\xc3\xb3\xdd\xc0\xb1\xdc\xbf\ +\xae\xdd\xbe\xab\xdd\xbc\xa9\xdd\xba\xa7\xdd\xba\xa3\xdf\xb7\xa1\ +\xe0\xb6\xa0\xdf\xb7\xa2\xe0\xb4\x9e\xe0\xb2\x9a\xdf\xac\x93\xdc\ +\xa5\x85\xde\xa1\x7c\xdc\x99\x71\xdc\x8e\x64\xdd\x86\x50\xdc\x83\ +\x4b\xdc\x83\x4b\xdd\x7f\x46\xde\x7d\x41\xdd\x7c\x3f\xdc\x79\x3b\ +\xda\x7d\x43\xd4\x81\x54\xda\x86\x55\xb2\x6f\x4c\xa9\x71\x55\xa8\ +\x75\x55\x00\x00\x00\xe0\xd3\xc8\xe0\xd3\xc7\xe0\xd3\xc5\xe0\xd4\ +\xc9\xe1\xd4\xca\xe0\xd4\xc9\xe0\xd4\xca\xe1\xd3\xc8\xe1\xd3\xc7\ +\xe0\xd3\xc8\xe0\xd2\xc7\xe1\xd2\xc6\xe1\xd2\xc4\xe0\xd0\xc1\xde\ +\xcd\xbc\xde\xc9\xb7\xdf\xc4\xb1\xde\xc2\xaf\xde\xc2\xaf\xe0\xc4\ +\xb1\xde\xc6\xb2\xde\xc1\xac\xdf\xc2\xaf\xdf\xc7\xb6\xdd\xc9\xb8\ +\xde\xcf\xbe\xe0\xcf\xc1\xe1\xd1\xc4\xe2\xd2\xc5\xe2\xd2\xc6\xe1\ +\xd2\xc4\xe2\xd2\xc5\xe2\xd2\xc4\xe1\xd1\xc3\xe1\xd2\xc4\xe0\xd1\ +\xc3\xe3\xd2\xc6\xe1\xd1\xc5\xdf\xcf\xc2\xde\xce\xbf\xdd\xce\xbc\ +\xde\xcc\xbb\xdf\xca\xb8\xde\xc8\xb6\xde\xc8\xb5\xdf\xc7\xb5\xde\ +\xc7\xb5\xdf\xc6\xb3\xde\xc6\xb4\xde\xc6\xb5\xdf\xc6\xb6\xdf\xc5\ +\xb3\xe1\xbd\xa7\xe1\xb7\x9e\xe0\xb9\xa0\xdf\xbc\xa6\xdf\xbf\xaa\ +\xde\xbd\xaa\xde\xbc\xa6\xdf\xc0\xad\xdf\xc2\xad\xde\xc5\xb3\xde\ +\xca\xbb\xdc\xcc\xbd\xdc\xcd\xbe\xdd\xce\xc2\xdd\xce\xc1\xde\xcd\ +\xc1\xdd\xce\xc3\xdc\xce\xc4\xdd\xcf\xc3\xde\xd0\xc6\xdf\xd0\xc8\ +\xde\xd1\xc7\xdf\xd2\xca\xdf\xd3\xc9\xde\xd2\xc8\xde\xd1\xc8\xde\ +\xd1\xc8\xde\xd2\xc8\xde\xd3\xc9\xdd\xd2\xca\xde\xd4\xca\xdf\xd6\ +\xcc\xe1\xd6\xce\xe1\xd6\xcf\xe1\xd6\xcf\xe2\xd9\xd0\xe3\xda\xd1\ +\xe3\xda\xd1\xe5\xda\xd5\xe4\xdb\xd7\xe5\xdc\xd5\xe5\xdc\xd6\xe5\ +\xdc\xd7\xe6\xdd\xd9\xe6\xdf\xd7\xe7\xde\xd9\xe7\xde\xd8\xe8\xdf\ +\xdb\xe7\xe0\xdb\xe6\xe0\xd9\xe7\xdf\xd8\xe6\xde\xd7\xe5\xdd\xd6\ +\xe4\xdc\xd6\xe4\xdb\xd7\xe6\xdc\xd5\xe2\xd9\xd1\xe2\xd8\xd0\xe1\ +\xd8\xce\xe0\xd8\xcd\xdf\xd6\xcd\xde\xd5\xcc\xdf\xd5\xcb\xde\xd4\ +\xca\xdf\xd5\xcb\xde\xd3\xc9\xdd\xd2\xc8\xde\xd1\xc8\xde\xd0\xc7\ +\xde\xcf\xc6\xde\xce\xc5\xdd\xce\xc3\xdb\xcd\xc1\xdc\xcd\xc1\xdd\ +\xcd\xc0\xdc\xcc\xbe\xda\xca\xb9\xdc\xc9\xba\xdc\xc9\xbb\xdc\xc6\ +\xb7\xdb\xc4\xb4\xdc\xc3\xb3\xdd\xc3\xb4\xde\xc1\xb0\xdc\xc0\xaf\ +\xdc\xbf\xab\xdd\xbc\xaa\xdd\xbb\xa7\xde\xb9\xa5\xe0\xb8\xa2\xe0\ +\xb7\xa1\xde\xb4\x9e\xe0\xb2\x9b\xdf\xad\x96\xdf\xa8\x8d\xdd\xa5\ +\x82\xdd\x9d\x76\xdc\x97\x6c\xdc\x91\x65\xdd\x8b\x59\xdd\x87\x51\ +\xdd\x86\x50\xdd\x83\x4c\xdc\x7d\x42\xdf\x7d\x3b\xe3\x8d\x54\xde\ +\x8e\x59\xdf\x91\x62\xbb\x7f\x5b\xac\x7d\x5d\xb2\x81\x69\x00\x00\ +\x00\xe1\xd5\xcb\xe1\xd5\xcb\xe2\xd6\xcc\xe3\xd7\xcd\xe3\xd7\xcd\ +\xe3\xd6\xcd\xe3\xd6\xcd\xe3\xd7\xcd\xe2\xd6\xcc\xe1\xd6\xcc\xe2\ +\xd6\xcc\xe1\xd5\xcb\xe0\xd4\xca\xe1\xd4\xc7\xe1\xd1\xc2\xdf\xcf\ +\xbf\xde\xcb\xb8\xdf\xc7\xb3\xe0\xc8\xb6\xdd\xc9\xb8\xde\xc8\xb6\ +\xdd\xc6\xb4\xdd\xc7\xb5\xdf\xca\xbb\xdd\xce\xbc\xdd\xce\xc0\xde\ +\xcf\xc1\xe0\xd1\xc5\xe1\xd1\xc4\xe1\xd3\xc7\xe2\xd3\xc8\xe1\xd3\ +\xc9\xe1\xd4\xc9\xe1\xd3\xc8\xe1\xd3\xc8\xe1\xd3\xc8\xe0\xd1\xc8\ +\xdf\xd1\xc6\xe1\xd1\xc4\xe0\xd0\xc3\xde\xd0\xbf\xdd\xce\xbf\xdd\ +\xcd\xbd\xde\xcb\xbc\xdc\xcb\xbb\xde\xca\xbb\xde\xc9\xba\xdd\xc9\ +\xb8\xdd\xc9\xb8\xde\xca\xb9\xde\xcb\xba\xdd\xc8\xb6\xdf\xc4\xaf\ +\xe0\xc3\xae\xdf\xc3\xae\xde\xc5\xb1\xde\xc5\xb2\xde\xc5\xb2\xde\ +\xc4\xb0\xdd\xc4\xb4\xdc\xc8\xb7\xde\xc9\xba\xdc\xcb\xbb\xdc\xcc\ +\xbd\xdc\xcd\xbe\xdd\xce\xc2\xdb\xcd\xc2\xdc\xce\xc3\xdc\xce\xc2\ +\xdc\xce\xc3\xdc\xce\xc4\xdd\xd0\xc3\xdd\xcf\xc3\xdf\xd0\xc6\xdc\ +\xd0\xc6\xde\xd0\xc7\xdd\xd0\xc8\xdc\xd0\xc7\xde\xd0\xc7\xdf\xcf\ +\xc5\xdd\xd1\xc8\xde\xd1\xc9\xde\xd3\xca\xde\xd4\xc9\xde\xd3\xca\ +\xdf\xd5\xcb\xe0\xd6\xcd\xe2\xd7\xce\xe1\xd8\xce\xe2\xd8\xd0\xe3\ +\xda\xd1\xe3\xd9\xd3\xe4\xd9\xd5\xe4\xda\xd4\xe2\xda\xd3\xe4\xdc\ +\xd5\xe6\xdd\xd9\xe5\xdc\xd8\xe5\xdd\xd8\xe6\xde\xd8\xe6\xde\xd7\ +\xe5\xdc\xd8\xe5\xdd\xd6\xe4\xdc\xd5\xe4\xdd\xd6\xe5\xdc\xd5\xe4\ +\xdb\xd4\xe5\xdc\xd5\xe2\xdb\xd2\xe1\xd9\xcf\xe1\xd8\xce\xe2\xd8\ +\xce\xe1\xd7\xcd\xdf\xd7\xcd\xe0\xd6\xcc\xdf\xd5\xcb\xde\xd4\xca\ +\xdf\xd5\xcb\xde\xd4\xca\xde\xd1\xc6\xdd\xd1\xc7\xdc\xd0\xc6\xdb\ +\xd0\xc5\xdc\xcf\xc3\xdd\xce\xc3\xdc\xcf\xc3\xdb\xce\xc2\xdb\xcc\ +\xbf\xdc\xcc\xbe\xdc\xcb\xbe\xdd\xc9\xbb\xdc\xc7\xb8\xdc\xc6\xb6\ +\xdb\xc4\xb5\xdb\xc3\xb1\xdc\xc2\xb2\xde\xc0\xb0\xde\xc0\xae\xde\ +\xbf\xac\xde\xbd\xaa\xdc\xbc\xa9\xde\xbb\xa6\xe0\xb9\xa6\xdf\xb8\ +\xa0\xe0\xb4\x9d\xdf\xb0\x98\xdd\xab\x90\xdd\xa5\x84\xde\xa1\x7a\ +\xdd\x9d\x75\xdc\x98\x70\xdd\x93\x69\xdd\x8c\x5d\xdc\x87\x57\xdd\ +\x87\x54\xdd\x85\x4f\xe1\x8e\x53\xe7\xa9\x7f\xe3\xa3\x79\xdb\x9a\ +\x6f\xc7\x92\x74\xb7\x87\x6a\x93\x71\x68\x00\x00\x00\xe3\xd8\xce\ +\xe2\xd9\xce\xe4\xd8\xce\xe4\xd8\xce\xe4\xd9\xcf\xe3\xd9\xd0\xe4\ +\xd9\xcf\xe3\xd9\xcf\xe3\xd9\xcf\xe4\xd9\xcf\xe4\xd7\xce\xe4\xd7\ +\xce\xe3\xd7\xcd\xe1\xd5\xcb\xe0\xd4\xc6\xe1\xd3\xc6\xe1\xd1\xc3\ +\xdf\xd0\xbf\xe0\xcf\xbe\xe0\xd0\xbf\xde\xce\xbc\xdd\xc9\xb8\xdd\ +\xc8\xb8\xdd\xcc\xbb\xdd\xce\xbf\xdc\xcd\xbd\xdd\xcd\xc0\xe1\xd1\ +\xc3\xe0\xd1\xc7\xe1\xd3\xca\xdf\xd4\xca\xe1\xd5\xca\xe1\xd5\xcb\ +\xdf\xd4\xca\xe0\xd5\xcb\xe0\xd2\xc9\xe0\xd1\xc6\xe1\xd1\xc5\xe0\ +\xd0\xc3\xe0\xd0\xc4\xdd\xd0\xc3\xdf\xcf\xc1\xde\xce\xc0\xdc\xce\ +\xbe\xdc\xce\xbd\xdc\xcc\xbb\xdd\xcc\xbb\xdd\xcb\xbc\xdd\xcc\xbb\ +\xdf\xcb\xbc\xde\xca\xbb\xde\xcb\xba\xdd\xc9\xb8\xdd\xc8\xb7\xdd\ +\xc9\xb8\xdd\xca\xb9\xdc\xcb\xba\xdc\xca\xbb\xdd\xca\xba\xdd\xca\ +\xb9\xdd\xca\xbb\xdd\xcb\xbb\xdc\xcc\xbc\xdd\xcd\xc0\xdd\xcd\xc0\ +\xdc\xcd\xc2\xdb\xcd\xc1\xdc\xce\xc2\xdb\xcd\xc3\xdc\xce\xc1\xdc\ +\xce\xc2\xdd\xce\xc2\xdc\xce\xc2\xdd\xce\xc4\xdd\xd0\xc6\xdb\xcf\ +\xc5\xdc\xce\xc6\xde\xcf\xc6\xdc\xcf\xc5\xdc\xd0\xc6\xdd\xd1\xc7\ +\xdd\xd1\xc7\xde\xd2\xc8\xde\xd3\xc9\xdd\xd4\xc9\xdd\xd3\xc9\xe0\ +\xd6\xcc\xe0\xd6\xcd\xe0\xd6\xcd\xe0\xd7\xcd\xe1\xd8\xce\xe2\xd9\ +\xd0\xe2\xd9\xd1\xe1\xd9\xd2\xe1\xd9\xd0\xe4\xdb\xd2\xe3\xdb\xd4\ +\xe5\xdc\xd8\xe4\xdb\xd6\xe4\xdc\xd6\xe6\xde\xd7\xe5\xdd\xd6\xe3\ +\xdb\xd4\xe3\xda\xd3\xe2\xdb\xd3\xe2\xdc\xd3\xe3\xdc\xd4\xe4\xdb\ +\xd7\xe4\xdc\xd4\xe2\xda\xd1\xe0\xd8\xce\xe0\xd7\xcd\xe1\xd7\xcd\ +\xe1\xd8\xcf\xe1\xd8\xd0\xe0\xd7\xcd\xdf\xd6\xcc\xde\xd4\xca\xde\ +\xd4\xca\xdf\xd3\xc9\xdd\xd2\xc8\xdc\xd0\xc6\xdd\xd0\xc4\xdd\xce\ +\xc5\xdd\xce\xc4\xdc\xcf\xc4\xdc\xcd\xc2\xdd\xcc\xc0\xdd\xcc\xc1\ +\xdc\xcb\xbe\xdb\xc9\xba\xdc\xc8\xbb\xdd\xc6\xb8\xdc\xc5\xb5\xdb\ +\xc5\xb4\xdc\xc3\xb3\xdd\xc3\xb3\xdc\xc2\xb1\xdd\xc1\xaf\xde\xc0\ +\xad\xdd\xbe\xab\xdf\xbd\xaa\xde\xbb\xa7\xde\xb9\xa4\xe0\xb8\xa2\ +\xdf\xb4\x9c\xe0\xad\x94\xdf\xa9\x8d\xdd\xa6\x85\xdd\xa1\x7d\xdc\ +\x99\x73\xdc\x97\x6d\xdc\x91\x68\xdc\x88\x5a\xdd\x8a\x59\xdf\x94\ +\x65\xe5\xa6\x78\xe5\xb9\xa1\xe3\xb0\x95\xdd\xaa\x8a\xc4\x98\x81\ +\xc7\x98\x79\x8f\x78\x6d\x00\x00\x00\xe5\xdb\xd2\xe5\xdb\xd2\xe4\ +\xdb\xd2\xe4\xdb\xd2\xe4\xdb\xd2\xe5\xdc\xd3\xe5\xdc\xd2\xe6\xdb\ +\xd3\xe5\xdc\xd3\xe4\xdb\xd2\xe5\xdb\xd2\xe5\xda\xd1\xe6\xda\xd1\ +\xe4\xd9\xcf\xe4\xd8\xce\xe3\xd7\xcd\xe3\xd7\xcd\xe2\xd6\xcb\xe2\ +\xd5\xc9\xe3\xd5\xc5\xe0\xd2\xc3\xde\xcd\xbb\xde\xca\xb9\xde\xce\ +\xbe\xdf\xcf\xc2\xdf\xd0\xc0\xe1\xd1\xc3\xe1\xd2\xc4\xe1\xd2\xc5\ +\xdf\xd3\xc9\xe1\xd5\xcb\xe2\xd6\xcc\xe1\xd4\xcb\xe0\xd4\xcb\xdf\ +\xd3\xc9\xdf\xd2\xc9\xe0\xd1\xc6\xdf\xd1\xc5\xde\xd0\xc4\xdd\xcf\ +\xc4\xdd\xcf\xc3\xdf\xd0\xc3\xde\xcf\xc2\xde\xcf\xc1\xdd\xce\xc1\ +\xdc\xcd\xbf\xdb\xcd\xbd\xdd\xce\xbe\xdc\xcc\xbc\xdd\xcc\xbc\xdc\ +\xcd\xbd\xdd\xcc\xbc\xdd\xcc\xbb\xdc\xcb\xbb\xdd\xcc\xbb\xdc\xcd\ +\xbb\xdd\xcc\xbd\xdd\xcc\xbf\xdc\xcc\xbd\xdc\xcc\xbc\xdc\xcc\xbd\ +\xdd\xcc\xbd\xdc\xce\xc0\xdc\xcd\xbf\xdc\xcd\xc0\xda\xcd\xc1\xdb\ +\xcd\xc1\xdb\xcd\xc1\xdb\xcd\xc3\xdc\xce\xc3\xdc\xcd\xc2\xdc\xce\ +\xc3\xdc\xce\xc2\xdc\xcf\xc5\xdc\xce\xc5\xdc\xce\xc4\xdc\xcf\xc4\ +\xdb\xcf\xc5\xdb\xcf\xc6\xdc\xcf\xc5\xdc\xcf\xc4\xdc\xd0\xc6\xdc\ +\xd2\xc8\xdd\xd2\xc8\xdc\xd3\xc8\xdd\xd4\xca\xdf\xd4\xca\xdf\xd5\ +\xca\xdf\xd4\xcc\xdf\xd5\xcb\xdf\xd6\xcd\xe1\xd8\xce\xe2\xd8\xcf\ +\xe1\xd8\xcf\xe1\xd8\xcf\xe2\xd9\xd0\xe2\xd9\xd2\xe2\xdb\xd2\xe3\ +\xda\xd3\xe2\xda\xd3\xe2\xda\xd3\xe2\xda\xd3\xe2\xda\xd3\xe3\xdb\ +\xd2\xe2\xdb\xd2\xe3\xdc\xd3\xe3\xdb\xd2\xe2\xda\xd4\xe3\xdb\xd5\ +\xe2\xd9\xd2\xe1\xd8\xcf\xe1\xd8\xce\xe1\xd8\xce\xe1\xd8\xcf\xe1\ +\xd8\xd0\xe1\xd9\xcf\xe0\xd8\xce\xdf\xd5\xcb\xde\xd5\xca\xe0\xd6\ +\xcc\xdf\xd4\xca\xdf\xd3\xc9\xde\xd1\xc4\xdd\xce\xc5\xdd\xd0\xc4\ +\xdb\xd0\xc5\xdc\xce\xc2\xdc\xcd\xc1\xdb\xcd\xc0\xdd\xcc\xc1\xdb\ +\xcb\xbb\xdc\xc9\xba\xdd\xc9\xba\xdb\xc7\xb9\xdb\xc5\xb7\xdd\xc4\ +\xb4\xdd\xc5\xb5\xdd\xc4\xb5\xdd\xc4\xb3\xdc\xc3\xb1\xdd\xc1\xaf\ +\xdc\xc1\xad\xdd\xbe\xab\xde\xbc\xa8\xdf\xba\xa5\xde\xb6\x9f\xe0\ +\xb0\x9a\xde\xae\x93\xde\xaa\x8e\xdd\xa4\x83\xdd\x9e\x78\xdb\x9b\ +\x75\xd8\x8f\x68\xda\x86\x59\xdc\x8a\x59\xde\x9b\x6f\xe3\xb1\x8f\ +\xe2\xbc\xa8\xe5\xb6\x9d\xdc\xae\x97\xd5\xaa\x91\xd5\xaa\x8d\xa2\ +\x8a\x7b\x00\x00\x00\xe6\xdd\xd4\xe5\xdc\xd3\xe6\xdd\xd4\xe6\xdd\ +\xd4\xe7\xdd\xd4\xe6\xde\xd4\xe6\xdd\xd5\xe7\xdd\xd4\xe7\xde\xd5\ +\xe6\xde\xd5\xe7\xde\xd5\xe6\xdd\xd4\xe6\xdd\xd4\xe7\xdd\xd4\xe6\ +\xdb\xd3\xe6\xda\xd2\xe5\xda\xd1\xe5\xd9\xd0\xe5\xd9\xd0\xe5\xd8\ +\xcc\xe2\xd6\xc9\xe1\xd3\xc5\xe0\xd1\xc1\xe0\xd1\xc2\xe0\xd2\xc4\ +\xdf\xd2\xc7\xe0\xd3\xc8\xe1\xd3\xc7\xe1\xd2\xc7\xdf\xd3\xc9\xe1\ +\xd5\xcb\xe1\xd5\xcb\xe0\xd4\xc9\xdf\xd4\xc9\xe0\xd2\xc9\xe0\xd1\ +\xc7\xdf\xd1\xc5\xde\xd0\xc5\xdd\xd0\xc6\xde\xd0\xc5\xdc\xcf\xc4\ +\xdd\xcf\xc3\xdd\xcf\xc3\xdc\xcf\xc2\xdc\xcf\xc1\xde\xce\xc1\xdc\ +\xcd\xbf\xdc\xcd\xbe\xdc\xcc\xbd\xdd\xcd\xbf\xdd\xcd\xc0\xdd\xce\ +\xbe\xde\xce\xbe\xdc\xcd\xbd\xdc\xcd\xbe\xdc\xcd\xbd\xdc\xcd\xbc\ +\xdc\xcd\xc0\xdb\xce\xc0\xdd\xce\xc0\xdd\xcd\xbf\xdc\xce\xc0\xdb\ +\xcd\xc1\xdb\xce\xc1\xda\xcd\xc0\xdb\xcd\xc0\xda\xcd\xc0\xdb\xcd\ +\xc1\xdb\xce\xc1\xdb\xcd\xc2\xdb\xce\xc1\xdb\xcd\xc3\xdc\xce\xc4\ +\xdc\xcd\xc4\xdc\xce\xc4\xda\xcd\xc3\xdb\xce\xc3\xdb\xcf\xc4\xdb\ +\xce\xc5\xdb\xcf\xc4\xdd\xcf\xc4\xdb\xcf\xc4\xdc\xd1\xc6\xdc\xd2\ +\xc8\xdd\xd2\xc8\xdd\xd3\xc9\xdd\xd4\xca\xde\xd4\xca\xde\xd4\xca\ +\xde\xd4\xcb\xe0\xd5\xcb\xe0\xd6\xcc\xe0\xd6\xcc\xe1\xd8\xce\xe1\ +\xd8\xce\xe1\xd8\xcf\xe2\xd8\xd0\xe1\xd8\xcf\xe2\xd9\xd0\xe2\xd9\ +\xd0\xe1\xd8\xd0\xe1\xd8\xd0\xe3\xda\xd2\xe3\xdb\xd2\xe2\xda\xd2\ +\xe2\xda\xd2\xe2\xda\xd3\xe1\xda\xd3\xe3\xdb\xd4\xe3\xd9\xd1\xe2\ +\xd9\xd0\xe2\xd9\xd0\xe2\xd9\xcf\xe1\xd9\xcf\xe2\xd8\xd0\xe0\xd7\ +\xcf\xe1\xd7\xce\xe0\xd6\xcc\xdf\xd6\xcc\xe0\xd5\xcc\xdf\xd5\xcb\ +\xde\xd4\xca\xde\xd2\xc7\xde\xd0\xc7\xdc\xcf\xc7\xdc\xcf\xc5\xdd\ +\xce\xc3\xdc\xce\xc3\xdb\xcd\xc0\xdb\xcd\xc0\xdb\xcb\xbd\xdc\xca\ +\xbc\xdc\xc9\xbb\xdb\xc9\xbb\xdb\xc7\xba\xdc\xc6\xb7\xdc\xc4\xb7\ +\xdc\xc5\xb6\xdc\xc4\xb5\xdc\xc4\xb4\xdc\xc4\xb4\xdb\xc4\xb0\xdc\ +\xc1\xad\xdd\xbf\xac\xdd\xbb\xa9\xde\xb9\xa2\xe1\xb5\x9e\xdf\xb3\ +\x9b\xe0\xb0\x97\xdd\xa9\x8b\xdd\xa3\x81\xdb\x9b\x75\xd8\x8e\x64\ +\xda\x89\x5d\xda\x8d\x5d\xdf\x9f\x74\xe4\xb1\x93\xe4\xba\xa5\xe4\ +\xb8\xa1\xe4\xb9\xa0\xde\xb7\xa1\xd8\xb3\x9a\xcb\xa9\x91\x00\x00\ +\x00\xe6\xde\xd5\xe7\xde\xd5\xe8\xdf\xd6\xe6\xde\xd7\xe7\xdf\xd6\ +\xe6\xdf\xd5\xe5\xdf\xd6\xe7\xde\xd6\xe7\xdf\xd6\xe6\xde\xd6\xe7\ +\xdf\xd7\xe6\xe0\xd6\xe9\xe0\xd7\xe8\xdf\xd6\xe8\xde\xd6\xe7\xdd\ +\xd6\xe7\xde\xd5\xe6\xdc\xd3\xe6\xdb\xd3\xe5\xda\xd1\xe5\xd8\xcf\ +\xe4\xd7\xcd\xe2\xd5\xca\xe1\xd4\xc9\xe0\xd4\xc9\xe0\xd4\xca\xe1\ +\xd4\xca\xe0\xd4\xca\xe0\xd3\xc9\xdf\xd3\xc9\xe1\xd4\xcb\xe0\xd4\ +\xcb\xdf\xd3\xca\xe0\xd3\xca\xde\xd2\xc8\xe0\xd1\xc6\xdf\xd0\xc7\ +\xdf\xd0\xc4\xde\xd0\xc5\xde\xcf\xc5\xdd\xcf\xc5\xde\xd0\xc3\xdd\ +\xcf\xc4\xdc\xce\xc4\xdc\xce\xc2\xdd\xcf\xc1\xdd\xce\xc1\xdb\xcd\ +\xc0\xdc\xcd\xbf\xdb\xcd\xc1\xdb\xcc\xc1\xdd\xce\xc1\xdb\xce\xbf\ +\xdc\xcc\xbf\xdc\xcd\xbf\xdd\xcd\xc0\xdd\xcd\xc0\xdb\xcd\xc0\xdb\ +\xce\xc1\xdb\xce\xc0\xdb\xcd\xbf\xda\xcd\xbf\xdb\xcd\xc0\xdc\xcd\ +\xc2\xdb\xcd\xbf\xdb\xcd\xc1\xdb\xcc\xc2\xdb\xcd\xc1\xda\xcd\xc2\ +\xdc\xce\xc2\xdc\xce\xc3\xdc\xcd\xc2\xdc\xcd\xc3\xdb\xce\xc4\xdc\ +\xce\xc2\xda\xce\xc3\xdc\xce\xc2\xda\xce\xc3\xda\xce\xc4\xda\xcf\ +\xc5\xde\xcf\xc5\xdb\xcf\xc5\xdc\xcf\xc4\xdc\xd1\xc7\xdd\xd0\xc8\ +\xdc\xd2\xc8\xdc\xd3\xc9\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdf\ +\xd4\xca\xde\xd5\xcb\xdf\xd6\xcc\xe0\xd6\xcc\xe1\xd6\xcd\xe0\xd8\ +\xcf\xe1\xd8\xcf\xe0\xd8\xcf\xe0\xd7\xce\xe1\xd8\xcf\xe1\xd7\xcf\ +\xe1\xd8\xce\xe1\xd9\xcf\xe2\xda\xd0\xe2\xda\xd1\xe2\xd9\xd1\xe2\ +\xda\xd1\xe2\xd9\xd2\xe2\xdc\xd2\xe3\xdb\xd2\xe3\xda\xd2\xe2\xd9\ +\xd0\xe1\xd8\xd0\xe0\xd9\xcf\xe0\xd9\xd0\xe0\xd8\xcf\xe1\xd8\xce\ +\xe1\xd6\xcd\xde\xd6\xcb\xe0\xd5\xcc\xdf\xd4\xcb\xde\xd3\xca\xdf\ +\xd2\xc9\xdc\xd1\xc8\xdc\xd1\xc8\xdd\xd0\xc6\xdd\xce\xc5\xdc\xcd\ +\xc3\xdb\xce\xc1\xda\xcd\xc0\xda\xcc\xbe\xdb\xcc\xc0\xdc\xcb\xbf\ +\xdc\xca\xbc\xdb\xc9\xbb\xdd\xc8\xb9\xdd\xc8\xb9\xdc\xc7\xb8\xdb\ +\xc5\xb6\xdb\xc4\xb5\xdd\xc3\xb4\xdd\xc5\xb4\xdc\xc4\xb1\xdb\xc1\ +\xb0\xdd\xbf\xad\xde\xbc\xa9\xdf\xba\xa4\xdf\xb6\x9f\xe0\xb5\x9c\ +\xe0\xaf\x95\xdf\xab\x8d\xdd\xa7\x84\xdc\x9e\x76\xdd\x9a\x6f\xdd\ +\x99\x6b\xde\xa4\x7d\xe2\xb2\x98\xe2\xbb\xa4\xe1\xbd\xa6\xe1\xbe\ +\xa8\xe0\xbd\xa7\xde\xb9\xa1\xdf\xba\xa0\x00\x00\x00\xe6\xdf\xd7\ +\xe6\xdf\xd6\xe8\xdf\xd7\xe8\xe0\xda\xe8\xe0\xd9\xe8\xe0\xd8\xe8\ +\xe0\xd9\xe8\xe0\xd9\xe8\xe0\xd8\xe9\xe0\xdc\xe8\xe0\xd8\xe8\xe1\ +\xd8\xe9\xe1\xd9\xe8\xe0\xd9\xe8\xe0\xd9\xe7\xe0\xd8\xe8\xdf\xd7\ +\xe8\xde\xd6\xe7\xdd\xd5\xe5\xdc\xd3\xe4\xdb\xd2\xe5\xd9\xd0\xe3\ +\xd8\xcf\xe3\xd8\xce\xe2\xd6\xcc\xe2\xd5\xcd\xe1\xd5\xcc\xe1\xd4\ +\xcb\xe0\xd4\xca\xe0\xd4\xc9\xe0\xd5\xcb\xdf\xd5\xca\xdf\xd4\xc9\ +\xdf\xd3\xc9\xde\xd2\xc8\xde\xd1\xc7\xdd\xd1\xc7\xdd\xd0\xc6\xdf\ +\xcf\xc7\xde\xcf\xc6\xdf\xcf\xc6\xdd\xcf\xc4\xdc\xce\xc2\xdc\xcf\ +\xc2\xdc\xce\xc2\xdd\xcf\xc2\xdc\xce\xc2\xdc\xce\xc2\xdb\xcd\xc1\ +\xdc\xcd\xc0\xdb\xce\xc1\xdc\xcd\xc0\xdb\xcd\xc1\xdc\xce\xc0\xdc\ +\xcd\xbe\xdb\xce\xc0\xdb\xce\xc0\xdb\xcd\xc1\xda\xcc\xc0\xdb\xcd\ +\xc0\xda\xcc\xc2\xda\xcd\xc1\xdb\xce\xc1\xdb\xce\xbf\xdb\xce\xc0\ +\xdb\xcd\xc2\xda\xcd\xc2\xdb\xce\xc1\xdb\xcd\xc1\xdc\xce\xc3\xdb\ +\xcd\xc2\xdb\xce\xc2\xdc\xce\xc2\xda\xcd\xc3\xdd\xce\xc2\xdb\xcd\ +\xc1\xdb\xce\xc2\xda\xce\xc4\xdb\xcd\xc4\xda\xce\xc4\xdb\xcf\xc5\ +\xdc\xcf\xc6\xdc\xd0\xc5\xdc\xcf\xc6\xdc\xd0\xc6\xdd\xd2\xc7\xde\ +\xd2\xca\xdd\xd4\xca\xdd\xd3\xc9\xde\xd4\xca\xdf\xd5\xcb\xdf\xd5\ +\xcb\xe0\xd5\xcc\xdf\xd5\xcd\xdf\xd6\xcd\xde\xd6\xcc\xe1\xd7\xcd\ +\xdf\xd6\xcc\xe1\xd7\xcd\xe0\xd7\xce\xe0\xd7\xce\xe0\xd7\xcd\xe2\ +\xd9\xd0\xe2\xd9\xcf\xe2\xd8\xd0\xe3\xd9\xd1\xe2\xd9\xd0\xe4\xda\ +\xd1\xe2\xdd\xd3\xe2\xdb\xd2\xe1\xda\xd1\xe2\xda\xd1\xe1\xd8\xd0\ +\xe1\xd8\xcf\xde\xd7\xce\xe0\xd7\xcd\xe1\xd6\xce\xe0\xd6\xcc\xde\ +\xd5\xcb\xde\xd4\xca\xde\xd4\xca\xdd\xd3\xc9\xdc\xd3\xc8\xdd\xd1\ +\xc9\xdc\xd1\xc5\xdc\xd0\xc6\xdb\xcf\xc5\xdc\xcf\xc3\xdc\xce\xc2\ +\xdb\xcd\xc1\xda\xcc\xc0\xda\xcc\xc0\xda\xcb\xbf\xdb\xcb\xbd\xdb\ +\xca\xbc\xdc\xc9\xba\xdc\xc9\xb9\xdd\xc8\xb9\xdc\xc7\xb7\xda\xc6\ +\xb6\xdd\xc5\xb5\xdc\xc5\xb5\xde\xc5\xb5\xdc\xc5\xb4\xdc\xc4\xb2\ +\xdb\xc2\xae\xde\xbe\xaa\xde\xbd\xa8\xdf\xb9\xa4\xe0\xb6\x9f\xe0\ +\xb3\x9b\xe1\xb2\x9a\xe2\xb0\x94\xe2\xb0\x90\xe1\xae\x8b\xe2\xb1\ +\x94\xe3\xb7\x9f\xe0\xbc\xa5\xdf\xc0\xab\xe0\xc1\xac\xe0\xc2\xac\ +\xe0\xbf\xa9\xe2\xbd\xa6\x00\x00\x00\xe9\xe1\xd9\xe9\xe1\xdb\xe9\ +\xe2\xdb\xe9\xe2\xdb\xea\xe2\xdc\xea\xe2\xdd\xea\xe2\xdb\xea\xe2\ +\xdb\xea\xe2\xdb\xea\xe2\xdc\xeb\xe2\xdd\xea\xe1\xdd\xea\xe1\xdd\ +\xea\xe2\xdc\xe9\xe1\xda\xe8\xe0\xda\xe7\xe1\xd8\xe9\xe0\xd7\xe7\ +\xde\xd5\xe4\xdb\xd1\xe4\xdb\xd1\xe3\xda\xd2\xe3\xd8\xd0\xe2\xd8\ +\xce\xe1\xd7\xcf\xe3\xd7\xce\xe1\xd7\xcc\xe1\xd5\xcd\xe0\xd4\xcb\ +\xe0\xd5\xcb\xe0\xd4\xca\xde\xd3\xc9\xde\xd3\xc9\xdf\xd3\xc8\xdf\ +\xd2\xca\xde\xd2\xc8\xdd\xd1\xc7\xdd\xd0\xc4\xdf\xd1\xc4\xde\xd1\ +\xc7\xdc\xd1\xc7\xde\xcf\xc3\xdd\xcf\xc4\xdd\xce\xc4\xdd\xcf\xc3\ +\xdd\xcf\xc6\xdb\xcd\xc1\xdc\xce\xc3\xdb\xcd\xc2\xdb\xce\xc2\xdb\ +\xcd\xc0\xdb\xce\xc1\xda\xcd\xc0\xda\xcd\xbf\xdb\xcd\xc0\xdb\xcd\ +\xbf\xda\xcd\xc0\xda\xcc\xc0\xdb\xcd\xc1\xda\xcd\xc0\xdb\xcd\xc0\ +\xdb\xcc\xc1\xda\xcc\xc0\xdb\xcc\xc1\xdb\xcc\xc2\xdb\xcc\xc2\xda\ +\xcc\xc1\xdb\xcc\xc2\xdc\xcc\xc4\xdb\xcd\xc1\xdc\xcd\xc4\xdc\xcd\ +\xc2\xdb\xcd\xc1\xd9\xcd\xc3\xdb\xcd\xc1\xdb\xcd\xc1\xda\xcd\xc2\ +\xda\xce\xc3\xda\xcf\xc3\xdb\xcd\xc2\xda\xcf\xc5\xda\xce\xc4\xda\ +\xcf\xc4\xdb\xd0\xc4\xdb\xce\xc2\xdc\xd1\xc8\xdc\xd2\xc6\xdd\xd2\ +\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xdf\xd5\xcb\xde\xd5\xcb\xde\xd4\xcb\ +\xde\xd4\xca\xde\xd4\xcb\xde\xd5\xcb\xdf\xd5\xcb\xe0\xd6\xcc\xe0\ +\xd6\xcd\xe0\xd7\xce\xe0\xd7\xcd\xe0\xd6\xcd\xe1\xd9\xcf\xe2\xd9\ +\xd0\xe3\xda\xd0\xe3\xda\xd1\xe3\xda\xd1\xe1\xd9\xd1\xe1\xda\xd2\ +\xe0\xda\xd1\xe2\xda\xd1\xe3\xd9\xd1\xe2\xd9\xd0\xe1\xd8\xce\xe0\ +\xd6\xcd\xe0\xd6\xcc\xe0\xd5\xcc\xdf\xd4\xcb\xde\xd4\xca\xdd\xd3\ +\xc9\xdc\xd2\xc8\xdc\xd3\xc9\xdd\xd2\xc8\xdd\xd1\xc7\xde\xd0\xc6\ +\xde\xd0\xc6\xdd\xd0\xc6\xdd\xce\xc4\xdd\xce\xc6\xdc\xce\xc2\xdc\ +\xce\xc1\xdb\xcd\xc0\xda\xcd\xc1\xdb\xcc\xbe\xdb\xcc\xc0\xdc\xcb\ +\xbe\xdc\xcb\xbe\xdc\xca\xbc\xdd\xc9\xba\xdd\xc8\xb9\xdd\xc8\xb9\ +\xdd\xc8\xb9\xdc\xc7\xb7\xdd\xc6\xb6\xdd\xc5\xb5\xdd\xc5\xb2\xdb\ +\xc4\xb0\xdd\xc1\xae\xde\xbf\xab\xdf\xbd\xa7\xe0\xbb\xa4\xe0\xb9\ +\xa3\xe0\xb9\xa2\xe1\xba\xa2\xe0\xbc\xa3\xe0\xbd\xa5\xdf\xbd\xa6\ +\xdf\xbf\xa9\xe1\xc1\xae\xe0\xc1\xae\xe0\xc1\xae\xdf\xc0\xac\xde\ +\xbf\xa9\x00\x00\x00\xeb\xe3\xdc\xea\xe2\xde\xeb\xe2\xde\xe9\xe3\ +\xde\xeb\xe4\xdf\xea\xe4\xdf\xea\xe4\xdf\xe9\xe4\xdf\xec\xe3\xdf\ +\xe9\xe4\xdf\xeb\xe4\xdf\xec\xe3\xdf\xea\xe4\xdf\xeb\xe2\xde\xea\ +\xe2\xdb\xe9\xe1\xda\xe7\xe0\xd8\xe8\xe0\xd7\xe7\xde\xd5\xe6\xdc\ +\xd4\xe4\xdb\xd3\xe4\xdb\xd2\xe2\xd7\xce\xe2\xd7\xcd\xe0\xd7\xcd\ +\xe1\xd7\xcd\xe0\xd6\xcd\xe0\xd6\xcc\xdf\xd4\xca\xde\xd4\xca\xdf\ +\xd4\xca\xdf\xd3\xc9\xde\xd3\xc9\xdf\xd3\xc9\xde\xd2\xc8\xde\xd1\ +\xc8\xde\xd2\xc8\xde\xd1\xc7\xdc\xd1\xc7\xdd\xd0\xc5\xdc\xd1\xc7\ +\xde\xcf\xc5\xdc\xcf\xc3\xdd\xcf\xc4\xdb\xcf\xc4\xdb\xcf\xc5\xdc\ +\xce\xc2\xdb\xce\xc4\xdb\xcd\xc2\xdb\xce\xc3\xdb\xcd\xc1\xda\xcc\ +\xc0\xdb\xcc\xc1\xdb\xcc\xc1\xda\xcc\xc1\xda\xcc\xc1\xdb\xcd\xc1\ +\xda\xcc\xc0\xdb\xcd\xc1\xda\xcc\xc0\xdb\xcd\xc1\xda\xcd\xc0\xdb\ +\xcd\xc0\xdb\xcc\xc1\xdb\xcd\xc3\xdb\xcd\xc2\xda\xcc\xc1\xda\xcc\ +\xc2\xdb\xcd\xc3\xdb\xcc\xc3\xdb\xcd\xc2\xdb\xcc\xc2\xda\xcc\xc3\ +\xd9\xcd\xc0\xda\xcc\xc3\xdb\xcd\xc1\xdb\xcd\xc3\xd9\xcd\xc3\xdb\ +\xcd\xc1\xda\xcd\xc1\xdb\xce\xc4\xda\xce\xc3\xda\xce\xc3\xdb\xcf\ +\xc4\xdb\xcf\xc4\xdc\xd0\xc6\xdc\xd2\xc7\xdc\xd2\xc6\xdc\xd3\xc8\ +\xdd\xd3\xc9\xdf\xd5\xcc\xdf\xd5\xcb\xdf\xd4\xcc\xde\xd4\xca\xde\ +\xd4\xcb\xdf\xd4\xca\xde\xd5\xcb\xde\xd6\xcc\xde\xd5\xcb\xdf\xd6\ +\xcd\xe0\xd7\xce\xe1\xd8\xce\xe0\xd7\xcf\xe2\xd9\xd0\xe2\xda\xd1\ +\xe2\xd9\xd1\xe1\xda\xd2\xe3\xda\xd0\xe2\xd9\xd0\xe0\xd9\xd1\xe2\ +\xd9\xd2\xe2\xd9\xd0\xe0\xd9\xd0\xe1\xd8\xcf\xdf\xd6\xcc\xde\xd4\ +\xca\xde\xd4\xca\xde\xd4\xca\xdf\xd5\xcb\xdd\xd3\xc9\xdc\xd2\xc8\ +\xdc\xd3\xc8\xde\xd3\xc9\xdc\xd2\xc8\xdd\xd1\xc7\xdd\xd1\xc7\xde\ +\xd1\xc7\xde\xd0\xc5\xdc\xd0\xc5\xdd\xce\xc4\xdd\xce\xc3\xdb\xcd\ +\xc2\xdb\xcd\xc2\xdb\xcc\xc1\xda\xcc\xc0\xdb\xcc\xbd\xdb\xcc\xbf\ +\xdb\xcb\xbc\xdb\xca\xbc\xdb\xc9\xbb\xdd\xc9\xba\xdb\xca\xba\xdd\ +\xc9\xba\xdd\xc8\xb9\xdc\xc7\xb9\xdc\xc7\xb7\xdd\xc5\xb5\xdc\xc5\ +\xb3\xdd\xc3\xb0\xde\xc1\xaf\xde\xc1\xae\xde\xc0\xaa\xdf\xbf\xab\ +\xde\xc0\xab\xde\xc1\xab\xde\xc1\xad\xde\xc0\xae\xdf\xc1\xae\xdf\ +\xc2\xaf\xde\xc3\xaf\xdd\xc3\xaf\xde\xc3\xae\xdf\xc1\xad\x00\x00\ +\x00\xeb\xe4\xe0\xea\xe4\xdf\xea\xe5\xe0\xea\xe5\xe0\xea\xe5\xe0\ +\xea\xe5\xe0\xea\xe6\xe1\xe9\xe5\xe0\xea\xe6\xe0\xe9\xe5\xe0\xea\ +\xe5\xe0\xe9\xe5\xe0\xea\xe5\xe0\xec\xe4\xe0\xec\xe2\xdf\xe9\xe1\ +\xda\xe7\xe0\xd7\xe5\xdf\xd6\xe7\xde\xd5\xe6\xdc\xd4\xe5\xdc\xd3\ +\xe4\xdb\xd2\xe2\xd8\xce\xe1\xd7\xcd\xe1\xd7\xcd\xe1\xd6\xcc\xe0\ +\xd6\xcc\xdf\xd5\xcb\xdf\xd4\xca\xde\xd4\xca\xdf\xd4\xca\xdf\xd2\ +\xc8\xdf\xd3\xc9\xdf\xd3\xc8\xdd\xd3\xc8\xdd\xd2\xc8\xde\xd2\xc8\ +\xdd\xd1\xc5\xdc\xd1\xc6\xde\xd0\xc7\xdd\xd1\xc5\xde\xcf\xc5\xdb\ +\xd0\xc5\xdc\xcf\xc5\xdb\xd0\xc5\xdd\xcf\xc4\xdc\xcf\xc3\xdb\xce\ +\xc2\xdb\xce\xc2\xdc\xcd\xc3\xdc\xce\xc3\xdb\xcd\xc1\xda\xcc\xc0\ +\xdb\xcc\xc1\xdb\xcd\xc0\xdb\xcd\xc0\xdb\xcd\xc1\xdb\xcd\xc1\xda\ +\xcc\xc0\xda\xcc\xc0\xda\xcc\xc0\xdb\xcd\xc1\xda\xcb\xc1\xdb\xcd\ +\xc0\xdb\xcc\xc1\xda\xcc\xc1\xdb\xcc\xc1\xdb\xcc\xc1\xd9\xcd\xc4\ +\xd9\xcc\xc2\xda\xcc\xc1\xda\xcc\xc2\xda\xcc\xc1\xdb\xcc\xc1\xd9\ +\xcd\xc3\xdb\xcd\xc3\xda\xcd\xc2\xda\xcc\xc2\xd9\xcc\xc0\xdb\xcc\ +\xc2\xdb\xcc\xc1\xda\xcd\xc2\xda\xce\xc4\xda\xce\xc3\xda\xce\xc4\ +\xdb\xcf\xc4\xdb\xd1\xc6\xdb\xd1\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xde\ +\xd3\xcb\xde\xd4\xca\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\ +\xcb\xdf\xd5\xcb\xdf\xd4\xca\xdf\xd5\xcb\xe0\xd6\xcd\xe0\xd7\xcf\ +\xe1\xd8\xce\xe1\xd8\xcf\xe2\xd9\xd1\xe3\xda\xd2\xe2\xd9\xd0\xe1\ +\xd9\xd1\xe3\xda\xd1\xe1\xd9\xd0\xe1\xd9\xd0\xe0\xd7\xcf\xdf\xd7\ +\xcf\xe0\xd8\xce\xde\xd6\xcd\xdf\xd6\xcc\xde\xd5\xcb\xdf\xd5\xcb\ +\xdf\xd5\xcb\xdf\xd5\xcb\xdd\xd3\xc9\xdc\xd2\xc7\xdc\xd2\xc8\xdd\ +\xd2\xc8\xde\xd2\xc8\xdd\xd3\xc9\xdd\xd2\xc8\xdd\xd1\xc7\xde\xd0\ +\xc7\xdd\xd0\xc5\xdd\xcf\xc3\xdd\xce\xc4\xdc\xcd\xc3\xdb\xcd\xc3\ +\xdb\xcc\xc2\xdb\xcd\xc1\xda\xcc\xbf\xdb\xcc\xbf\xdb\xcc\xbf\xdc\ +\xcb\xbe\xdb\xcb\xbc\xdc\xca\xbb\xda\xca\xba\xdc\xcb\xbb\xdc\xca\ +\xbb\xdd\xca\xb9\xdc\xc9\xb9\xdd\xc8\xb8\xdd\xc7\xb6\xdd\xc6\xb5\ +\xdd\xc5\xb3\xdd\xc5\xb4\xdc\xc5\xb1\xdd\xc5\xb2\xde\xc5\xb1\xdd\ +\xc5\xb1\xdc\xc5\xb1\xde\xc4\xb1\xdd\xc4\xb1\xde\xc5\xb1\xde\xc5\ +\xb1\xdd\xc4\xb1\xdd\xc5\xb0\xde\xc3\xaf\x00\x00\x00\xea\xe6\xe0\ +\xea\xe5\xe0\xe9\xe5\xe0\xea\xe6\xe1\xea\xe6\xe1\xea\xe6\xe1\xe9\ +\xe6\xe0\xeb\xe5\xe1\xeb\xe5\xe2\xeb\xe5\xe1\xea\xe6\xe1\xea\xe5\ +\xe1\xe9\xe5\xe1\xea\xe6\xe1\xec\xe4\xe0\xea\xe1\xdb\xe8\xe0\xd8\ +\xe6\xdf\xd6\xe7\xdf\xd6\xe6\xdd\xd4\xe5\xdc\xd3\xe4\xdb\xd2\xe3\ +\xd9\xcf\xe1\xd7\xcd\xe2\xd8\xce\xe0\xd6\xcc\xe0\xd6\xcc\xdf\xd5\ +\xcb\xdf\xd5\xcb\xdf\xd4\xca\xde\xd3\xc9\xdf\xd3\xc9\xde\xd4\xca\ +\xdf\xd3\xc9\xde\xd3\xc9\xdc\xd3\xc7\xdd\xd2\xc8\xdd\xd2\xc7\xdd\ +\xd2\xc7\xdd\xd1\xc6\xdd\xd1\xc5\xdc\xd0\xc6\xdc\xd0\xc6\xdc\xd0\ +\xc5\xdc\xd0\xc6\xdb\xce\xc3\xdb\xcf\xc5\xda\xce\xc3\xdb\xce\xc4\ +\xdc\xcd\xc3\xdc\xcd\xc2\xdb\xce\xc2\xdb\xcd\xc1\xda\xcd\xc1\xdb\ +\xcd\xc1\xda\xcd\xc0\xdb\xcc\xc0\xdb\xcc\xc0\xda\xcc\xc0\xdb\xcd\ +\xc1\xdb\xcd\xc1\xdb\xcc\xc1\xda\xcc\xc2\xda\xcd\xc0\xd9\xcc\xc0\ +\xda\xcb\xc1\xda\xcc\xc2\xd8\xcc\xc0\xda\xcd\xc1\xdb\xcc\xc2\xda\ +\xcc\xc1\xda\xcc\xc2\xda\xcc\xc1\xd9\xcc\xc1\xda\xcd\xc2\xd9\xcd\ +\xc1\xd9\xcd\xc2\xda\xcc\xc1\xda\xcc\xc2\xdb\xcb\xc3\xd9\xcd\xc2\ +\xd9\xcd\xc1\xd9\xcd\xc3\xda\xce\xc2\xda\xcd\xc2\xda\xce\xc2\xdc\ +\xd0\xc5\xdb\xd1\xc7\xdc\xd2\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xde\xd4\ +\xca\xde\xd4\xca\xde\xd4\xca\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd6\xcc\ +\xde\xd4\xca\xde\xd4\xcb\xdf\xd6\xce\xe0\xd7\xce\xe0\xd7\xcd\xe1\ +\xd8\xcf\xe0\xd9\xd0\xe0\xd7\xd0\xe0\xd7\xcf\xe0\xd7\xcf\xe0\xd8\ +\xce\xe0\xd7\xce\xe1\xd8\xce\xdf\xd6\xcc\xde\xd5\xcc\xde\xd5\xcb\ +\xdf\xd5\xcb\xde\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xde\xd4\xca\xdd\ +\xd3\xc9\xdd\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdd\xd2\xc8\xde\xd2\ +\xc8\xde\xd2\xc9\xdd\xd2\xc9\xde\xd1\xc8\xdd\xd0\xc6\xdc\xd0\xc6\ +\xdc\xcf\xc5\xdd\xce\xc4\xdb\xcf\xc3\xdc\xce\xc3\xdc\xce\xc2\xdc\ +\xce\xc2\xdb\xcd\xc1\xdb\xcd\xc1\xda\xcc\xc0\xdb\xcd\xc1\xdb\xcc\ +\xc0\xdb\xcc\xbe\xda\xcc\xbe\xdb\xcc\xbe\xdc\xcc\xbc\xdb\xcc\xbb\ +\xda\xca\xb9\xdb\xca\xb9\xdc\xca\xba\xdc\xc9\xb8\xdc\xc8\xb7\xdd\ +\xc8\xb7\xdd\xc8\xb6\xdd\xc7\xb7\xdd\xc7\xb5\xdd\xc6\xb5\xdd\xc7\ +\xb6\xdd\xc7\xb5\xdd\xc7\xb5\xdd\xc5\xb4\xdd\xc5\xb4\xdd\xc5\xb4\ +\xdd\xc5\xb2\xde\xc4\xb0\x00\x00\x00\xe9\xe5\xe0\xea\xe6\xe1\xea\ +\xe6\xe2\xeb\xe8\xe2\xec\xe7\xe2\xec\xe7\xe2\xec\xe6\xe2\xeb\xe7\ +\xe2\xec\xe5\xe2\xea\xe6\xe1\xeb\xe7\xe2\xeb\xe5\xe2\xea\xe6\xe1\ +\xe9\xe5\xe0\xeb\xe5\xe0\xeb\xe2\xdb\xe8\xe1\xd9\xe8\xe1\xd8\xe6\ +\xdf\xd6\xe5\xde\xd5\xe5\xdd\xd4\xe5\xdc\xd3\xe4\xdb\xd1\xe1\xd9\ +\xce\xe1\xd7\xcd\xe0\xd7\xcd\xe0\xd6\xcc\xdf\xd6\xcc\xde\xd5\xcb\ +\xdf\xd4\xca\xdd\xd3\xc9\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xde\ +\xd4\xca\xdd\xd4\xc9\xdc\xd2\xc8\xdd\xd2\xc8\xdd\xd2\xc7\xdc\xd1\ +\xc5\xdd\xd0\xc4\xdb\xd1\xc7\xdb\xd1\xc6\xdc\xd0\xc6\xdc\xd0\xc6\ +\xdc\xd0\xc6\xdc\xcf\xc5\xdc\xce\xc3\xdc\xce\xc4\xda\xce\xc2\xda\ +\xcd\xc1\xdb\xce\xc1\xda\xcd\xc3\xdb\xcd\xc2\xd9\xcc\xc0\xdb\xcd\ +\xc1\xda\xce\xc2\xda\xcd\xc1\xda\xcc\xc0\xdb\xcd\xc1\xdb\xcd\xc0\ +\xd9\xcd\xc1\xdb\xcc\xc1\xda\xcd\xc0\xda\xcd\xc1\xda\xcc\xc0\xda\ +\xcc\xc2\xd9\xcb\xc0\xda\xcc\xbf\xda\xca\xc2\xd9\xcb\xc1\xda\xcc\ +\xc2\xd9\xcc\xc1\xd9\xcd\xc3\xda\xcd\xc1\xd9\xcc\xc0\xd9\xcb\xbf\ +\xd8\xcc\xc1\xda\xcc\xc1\xd9\xcc\xc2\xd8\xcc\xc2\xd9\xcc\xc2\xd9\ +\xcc\xc1\xd9\xcc\xc0\xda\xcd\xc3\xda\xce\xc4\xdb\xcf\xc5\xdc\xcf\ +\xc5\xdc\xd0\xc6\xdb\xd0\xc7\xdd\xd3\xc9\xde\xd4\xca\xdd\xd3\xc9\ +\xdd\xd3\xc9\xdd\xd3\xc9\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdf\ +\xd5\xcb\xe0\xd6\xcc\xdf\xd7\xcd\xe0\xd7\xcd\xdf\xd6\xcf\xde\xd6\ +\xcc\xdf\xd6\xcc\xde\xd6\xcb\xde\xd5\xcb\xde\xd5\xcc\xdf\xd5\xcb\ +\xdf\xd5\xcb\xde\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xde\xd5\xcb\xdf\ +\xd5\xcb\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdc\xd2\xc8\xdd\xd3\ +\xc9\xdc\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xde\xd3\xc9\xdd\xd2\xc8\ +\xdd\xd2\xc8\xdd\xd1\xc8\xdc\xd1\xc7\xdc\xd0\xc6\xdd\xd0\xc8\xdc\ +\xd0\xc4\xdc\xcf\xc6\xdc\xce\xc5\xdc\xce\xc4\xdc\xce\xc2\xdb\xcd\ +\xc2\xdb\xcd\xc2\xdb\xcd\xc3\xdb\xce\xc1\xdb\xcc\xc1\xda\xcc\xc0\ +\xdb\xcd\xc1\xdb\xcd\xc1\xdb\xcd\xbf\xdb\xcd\xbf\xdb\xcc\xbd\xdb\ +\xcc\xbd\xdc\xcb\xbb\xdc\xcb\xbb\xda\xca\xb9\xdc\xca\xba\xdb\xca\ +\xb9\xdd\xc9\xba\xdd\xc9\xba\xde\xca\xb9\xdd\xca\xb9\xdd\xc9\xb8\ +\xdd\xc8\xb9\xdd\xc9\xb8\xde\xc8\xb7\xdd\xc7\xb6\xdc\xc7\xb4\xdc\ +\xc5\xb3\x00\x00\x00\xeb\xe8\xe2\xed\xe7\xe3\xee\xe7\xe4\xef\xe8\ +\xe4\xef\xe8\xe4\xee\xe9\xe5\xed\xea\xe5\xee\xea\xe5\xec\xe8\xe3\ +\xed\xe8\xe2\xec\xe6\xe3\xec\xe6\xe3\xed\xe5\xe3\xeb\xe7\xe1\xec\ +\xe6\xe1\xe9\xe4\xdf\xec\xe4\xe0\xe9\xe3\xde\xe9\xe2\xdb\xe5\xde\ +\xd6\xe6\xde\xd5\xe6\xdc\xd5\xe5\xdc\xd3\xe4\xdb\xd2\xe1\xd8\xcd\ +\xe2\xd7\xce\xe1\xd7\xcd\xdf\xd6\xcc\xdf\xd6\xcc\xdf\xd5\xcb\xdf\ +\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xde\xd4\xca\xdc\xd2\ +\xc8\xdd\xd3\xc9\xdc\xd2\xc9\xdd\xd2\xc7\xdc\xd2\xc8\xda\xd2\xc7\ +\xdd\xd0\xc6\xdb\xd0\xc5\xdc\xd1\xc6\xdb\xd0\xc7\xdb\xd1\xc6\xdc\ +\xd1\xc5\xdc\xce\xc7\xdb\xcf\xc5\xda\xcf\xc4\xdb\xcf\xc4\xdb\xcf\ +\xc5\xda\xce\xc3\xdc\xce\xc4\xda\xce\xc2\xd9\xcd\xc1\xda\xcc\xc0\ +\xda\xcc\xc0\xda\xcc\xc2\xdb\xcd\xc1\xdb\xcc\xc1\xda\xcd\xc2\xd8\ +\xcc\xc1\xdb\xcc\xc1\xda\xcb\xc0\xdb\xcb\xc1\xdb\xcd\xc1\xd8\xcc\ +\xc0\xd9\xca\xc1\xdb\xcd\xc1\xda\xcb\xc2\xda\xcc\xc0\xdb\xcc\xc0\ +\xd9\xcd\xc1\xda\xcc\xc1\xd9\xcd\xc2\xda\xcc\xc2\xd9\xcc\xc0\xd7\ +\xcb\xc1\xda\xcb\xc3\xd9\xcb\xc0\xda\xcb\xc2\xdb\xcc\xc2\xdb\xcb\ +\xc3\xdb\xcc\xc1\xd9\xce\xc3\xda\xce\xc3\xdb\xd0\xc5\xdb\xd0\xc4\ +\xdc\xd0\xc6\xdc\xd1\xc7\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc9\xdc\ +\xd2\xc8\xdc\xd2\xc8\xdc\xd3\xc9\xdd\xd3\xc9\xde\xd4\xca\xdf\xd5\ +\xcb\xe0\xd6\xce\xdf\xd7\xcc\xdf\xd4\xcd\xe0\xd5\xcd\xdf\xd4\xcc\ +\xde\xd4\xca\xdf\xd4\xcb\xdf\xd4\xca\xdd\xd3\xc9\xde\xd3\xc9\xdf\ +\xd4\xca\xdf\xd5\xcb\xde\xd4\xca\xdd\xd3\xc9\xdd\xd3\xc9\xde\xd4\ +\xca\xdd\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdd\xd3\xc8\xdc\xd2\xc9\ +\xdd\xd3\xc9\xdd\xd2\xc8\xdc\xd2\xc8\xdd\xd3\xc9\xdd\xd2\xc8\xdd\ +\xd1\xc8\xde\xd1\xc7\xde\xd2\xc7\xdd\xd1\xc8\xdc\xd1\xc6\xdd\xd0\ +\xc6\xdd\xcf\xc3\xdb\xd0\xc4\xdc\xcf\xc4\xdd\xce\xc4\xdd\xce\xc3\ +\xdc\xce\xc2\xdb\xcd\xc1\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\ +\xce\xc2\xdc\xcf\xc1\xdc\xce\xbf\xdc\xcd\xc1\xdb\xcd\xbf\xdc\xcc\ +\xbf\xdb\xcd\xc0\xdb\xcd\xbd\xdc\xcc\xbe\xdc\xcc\xbb\xdb\xcc\xba\ +\xdb\xcc\xba\xdb\xcb\xba\xda\xca\xba\xdd\xcb\xbb\xda\xcb\xba\xda\ +\xc9\xb9\xdc\xc9\xba\xda\xc9\xb8\xdc\xc9\xb7\xdd\xc8\xb7\x00\x00\ +\x00\xed\xe8\xe4\xef\xe8\xe5\xee\xe7\xe4\xef\xe9\xe6\xef\xe9\xe5\ +\xf0\xea\xe6\xf0\xe9\xe6\xf0\xe8\xe6\xef\xe8\xe5\xef\xe8\xe5\xee\ +\xe8\xe4\xed\xe9\xe4\xed\xe9\xe4\xec\xe7\xe2\xec\xe6\xe1\xe9\xe5\ +\xe1\xea\xe5\xe0\xea\xe4\xdf\xe8\xdf\xdb\xe6\xdf\xd6\xe6\xde\xd8\ +\xe5\xdc\xd6\xe6\xdd\xd3\xe5\xdc\xd3\xe2\xd9\xd0\xe1\xd8\xce\xe0\ +\xd8\xce\xe0\xd6\xcc\xdf\xd5\xcc\xe0\xd6\xcc\xde\xd5\xcb\xde\xd5\ +\xcb\xde\xd4\xca\xde\xd4\xca\xde\xd4\xca\xdf\xd5\xcb\xde\xd4\xca\ +\xdd\xd3\xc8\xdd\xd2\xc7\xdd\xd3\xc9\xdd\xd2\xc8\xdc\xd0\xc6\xdc\ +\xd1\xc7\xdc\xd1\xc7\xdc\xd0\xc6\xdb\xd1\xc8\xdc\xd0\xc7\xdb\xd0\ +\xc5\xdc\xcf\xc5\xdc\xce\xc5\xdb\xcf\xc3\xda\xce\xc4\xdb\xcf\xc4\ +\xda\xcf\xc4\xd9\xce\xc3\xda\xce\xc2\xda\xce\xc3\xd8\xcd\xc1\xda\ +\xcc\xc2\xd9\xcc\xc1\xda\xcc\xc3\xda\xcc\xc1\xd9\xcd\xc1\xda\xcc\ +\xc1\xd8\xcc\xc0\xd9\xcc\xc1\xd9\xcc\xc1\xd8\xcc\xc0\xd9\xcc\xc1\ +\xda\xcd\xc1\xdb\xcc\xc1\xda\xcb\xc1\xda\xcc\xc2\xd9\xcd\xc1\xd9\ +\xca\xc1\xd9\xcc\xc0\xd8\xcb\xbf\xd9\xcb\xbf\xd8\xcc\xc0\xdb\xcc\ +\xc2\xd7\xcc\xbf\xd9\xcc\xc0\xd9\xcc\xc0\xda\xcd\xc0\xda\xcd\xc1\ +\xda\xcc\xc0\xda\xce\xc4\xd9\xcd\xc2\xda\xce\xc4\xdb\xcf\xc5\xdb\ +\xd0\xc6\xdc\xd1\xc7\xdb\xd1\xc7\xdb\xd2\xc6\xdb\xd2\xc7\xdb\xd1\ +\xc7\xdb\xd1\xc7\xdc\xd2\xc8\xdc\xd2\xc9\xdd\xd2\xca\xde\xd4\xca\ +\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xde\xd4\xcb\xde\xd4\xca\xde\ +\xd4\xca\xdd\xd3\xc9\xde\xd4\xca\xdd\xd3\xc9\xdd\xd3\xc9\xdc\xd2\ +\xc8\xdd\xd3\xc9\xdb\xd1\xc7\xdc\xd2\xc8\xdd\xd3\xc9\xdd\xd3\xc9\ +\xdc\xd2\xc9\xdc\xd2\xc8\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc9\xdd\ +\xd2\xc6\xdd\xd2\xc7\xdc\xd3\xc9\xdc\xd3\xc9\xdd\xd2\xc9\xdd\xd1\ +\xc8\xdd\xd1\xc8\xdf\xd2\xc8\xdc\xd0\xc6\xde\xd1\xc5\xdc\xd0\xc4\ +\xdd\xcf\xc3\xdc\xce\xc5\xde\xcf\xc4\xdd\xcf\xc4\xdd\xce\xc3\xdd\ +\xce\xc3\xdd\xcf\xc3\xdb\xcf\xc5\xdd\xcf\xc3\xdc\xcf\xc2\xdd\xcf\ +\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc2\xdc\xce\xc1\ +\xdd\xce\xc0\xde\xce\xc1\xdc\xce\xc0\xdc\xcd\xbf\xdb\xcd\xbd\xdc\ +\xcc\xbc\xdc\xcc\xbe\xdc\xcc\xbc\xdd\xcd\xbc\xdd\xcd\xbd\xdc\xcc\ +\xbc\xdb\xcb\xba\xda\xca\xb9\xdc\xca\xb9\x00\x00\x00\xef\xe8\xe5\ +\xef\xe9\xe6\xee\xea\xe6\xef\xea\xe6\xef\xea\xe7\xf0\xeb\xe7\xf0\ +\xea\xe7\xef\xe9\xe6\xf0\xea\xe7\xf0\xe9\xe6\xef\xe8\xe5\xef\xe8\ +\xe5\xed\xe8\xe4\xec\xe6\xe2\xea\xe6\xe1\xe9\xe4\xe0\xe8\xe3\xde\ +\xe8\xe1\xdd\xe8\xe0\xd9\xe6\xde\xd6\xe6\xde\xd8\xe4\xdc\xd5\xe5\ +\xdd\xd4\xe4\xdc\xd2\xe3\xda\xd0\xe1\xd8\xcf\xe1\xd8\xce\xe1\xd7\ +\xcd\xdf\xd6\xcd\xdf\xd5\xcc\xde\xd5\xcb\xde\xd4\xca\xdf\xd5\xcb\ +\xdf\xd5\xcb\xdf\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xdd\xd3\xc9\xdd\ +\xd2\xc9\xdd\xd3\xc9\xdc\xd3\xc9\xdc\xd1\xc6\xdc\xd2\xc8\xdb\xd1\ +\xc7\xdb\xd1\xc7\xdb\xd1\xc7\xdb\xd1\xc7\xdb\xd0\xc5\xdc\xd0\xc5\ +\xdc\xcf\xc4\xdb\xcf\xc6\xdb\xcf\xc3\xda\xcf\xc3\xda\xce\xc3\xda\ +\xce\xc4\xda\xce\xc3\xda\xce\xc3\xda\xce\xc2\xda\xcd\xc3\xd9\xcd\ +\xc1\xd9\xcd\xc2\xd9\xcd\xc2\xd8\xcd\xc2\xd8\xcc\xc0\xd8\xcd\xc1\ +\xd9\xcc\xc0\xda\xcc\xc1\xdb\xcc\xc1\xda\xcd\xc1\xd9\xcd\xc1\xda\ +\xcb\xc3\xda\xcc\xc2\xda\xcc\xc2\xd8\xcc\xc1\xd8\xcc\xc1\xdb\xcc\ +\xc2\xda\xcc\xc1\xda\xcc\xc2\xd8\xcc\xc0\xda\xcb\xc2\xd8\xcb\xc0\ +\xd8\xcb\xc2\xd9\xcc\xc1\xda\xcc\xc1\xd8\xcc\xc2\xd9\xcc\xc0\xd9\ +\xcc\xc3\xda\xcd\xc3\xda\xce\xc3\xda\xce\xc3\xdb\xcf\xc5\xdc\xd0\ +\xc6\xdb\xd0\xc7\xdb\xd0\xc7\xdc\xd1\xc7\xdc\xd1\xc7\xdc\xd1\xc7\ +\xdc\xd1\xc7\xdb\xd1\xc7\xdc\xd2\xc8\xdd\xd3\xc9\xde\xd3\xca\xde\ +\xd4\xcb\xde\xd4\xca\xde\xd3\xc9\xdd\xd3\xc9\xdc\xd2\xc9\xdc\xd2\ +\xc8\xdd\xd3\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdc\xd2\xc8\xdc\xd2\xc8\ +\xdd\xd1\xc7\xdb\xd1\xc7\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc8\xdc\ +\xd2\xc8\xde\xd4\xca\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd3\xc8\xdc\xd3\ +\xc8\xdc\xd2\xc9\xdc\xd2\xc8\xdc\xd2\xc8\xdc\xd2\xc7\xdd\xd2\xc7\ +\xde\xd1\xc8\xdd\xd1\xc7\xdb\xd1\xc7\xdc\xd0\xc5\xdc\xd0\xc6\xdb\ +\xd0\xc6\xdd\xcf\xc4\xdb\xcf\xc5\xdd\xcf\xc4\xdd\xcf\xc4\xde\xd0\ +\xc4\xdd\xd0\xc4\xdd\xd0\xc4\xdb\xcf\xc4\xdd\xcf\xc3\xdd\xcf\xc4\ +\xdd\xcf\xc3\xdd\xcf\xc3\xdd\xcf\xc3\xdd\xcf\xc2\xdd\xcf\xc2\xdd\ +\xcf\xc3\xdc\xce\xc2\xdc\xcf\xc1\xdc\xce\xc2\xdc\xce\xc1\xdc\xce\ +\xbe\xdd\xce\xc0\xdc\xce\xc0\xdd\xce\xc0\xde\xce\xc0\xdb\xcd\xbc\ +\xdb\xcc\xbb\xdd\xcb\xbb\x00\x00\x00\xef\xea\xe7\xef\xeb\xe6\xf0\ +\xeb\xe8\xf1\xea\xe8\xf0\xeb\xe8\xf1\xeb\xe8\xf1\xec\xe8\xf1\xec\ +\xe9\xf0\xeb\xe8\xf0\xea\xe7\xef\xe9\xe6\xee\xe8\xe5\xed\xe8\xe4\ +\xeb\xe6\xe1\xe9\xe4\xdf\xe8\xe3\xde\xe8\xe2\xdd\xe8\xe0\xda\xe7\ +\xe0\xd9\xe6\xde\xd7\xe5\xdc\xd6\xe4\xdc\xd4\xe4\xdc\xd3\xe2\xda\ +\xd1\xe3\xda\xd0\xe1\xd8\xd0\xe0\xd7\xce\xe0\xd6\xcc\xdf\xd7\xcc\ +\xe0\xd6\xcc\xde\xd5\xcc\xdf\xd4\xca\xde\xd5\xcb\xdf\xd5\xcb\xdf\ +\xd5\xcb\xdf\xd5\xcb\xde\xd4\xca\xdf\xd5\xcb\xde\xd4\xca\xdd\xd3\ +\xc9\xdc\xd2\xc9\xdc\xd3\xc9\xdc\xd2\xc8\xdb\xd1\xc7\xdb\xd1\xc7\ +\xdc\xd1\xc8\xdc\xd2\xc8\xdb\xd1\xc5\xdb\xd0\xc7\xdb\xcf\xc4\xdc\ +\xcf\xc6\xdb\xcf\xc4\xda\xce\xc2\xda\xce\xc2\xdb\xcf\xc4\xda\xcf\ +\xc3\xda\xcf\xc3\xda\xce\xc2\xda\xcf\xc5\xda\xce\xc3\xd9\xcd\xc2\ +\xda\xce\xc4\xda\xcd\xc1\xd8\xcc\xc1\xd9\xcc\xc0\xd9\xcc\xc0\xd8\ +\xcc\xc1\xd9\xcc\xc1\xd9\xcd\xc0\xd9\xcc\xc1\xd9\xcc\xc2\xd9\xcc\ +\xc1\xd8\xcc\xc0\xd8\xcc\xc0\xd9\xcd\xc2\xd9\xcc\xc1\xd9\xcc\xc0\ +\xda\xcc\xc0\xd8\xcc\xc0\xd9\xcc\xc1\xd9\xcb\xc0\xd9\xcc\xc1\xd8\ +\xcc\xc1\xda\xcc\xc0\xd8\xcc\xc1\xda\xcd\xc2\xd9\xcc\xc1\xd9\xcd\ +\xc2\xd9\xcd\xc2\xd9\xcd\xc1\xdb\xce\xc4\xda\xce\xc5\xdb\xcf\xc5\ +\xdc\xcf\xc6\xdb\xcf\xc5\xdc\xd0\xc6\xdc\xcf\xc5\xdc\xd0\xc6\xdb\ +\xcf\xc5\xdb\xd0\xc6\xdb\xd2\xc8\xdc\xd3\xc8\xdb\xd1\xc7\xdc\xd2\ +\xc8\xdc\xd2\xc8\xdc\xd1\xc6\xdc\xd2\xc8\xdb\xd1\xc7\xdc\xd1\xc8\ +\xdc\xd2\xc7\xdb\xd2\xc6\xdb\xd1\xc7\xdc\xd1\xc6\xdc\xd2\xc7\xdd\ +\xd3\xc9\xdd\xd3\xc9\xdc\xd3\xc9\xdd\xd2\xc8\xdc\xd2\xc8\xdd\xd3\ +\xc9\xdd\xd3\xc9\xdd\xd3\xc8\xdc\xd2\xc8\xdd\xd2\xc8\xde\xd3\xc7\ +\xdd\xd1\xc7\xdc\xd1\xc7\xdd\xd1\xc7\xdc\xd2\xc7\xdc\xd1\xc6\xdd\ +\xd1\xc7\xdd\xd1\xc6\xdd\xd1\xc6\xdc\xd0\xc5\xdc\xd0\xc5\xdb\xcf\ +\xc4\xdd\xcf\xc4\xdd\xcf\xc5\xdd\xd0\xc7\xdd\xcf\xc4\xdd\xd0\xc5\ +\xde\xd0\xc4\xde\xd1\xc5\xdf\xd1\xc4\xde\xd0\xc6\xe0\xd2\xc5\xdf\ +\xd0\xc6\xde\xd0\xc4\xde\xd0\xc4\xde\xd0\xc4\xdf\xd1\xc4\xde\xd0\ +\xc3\xde\xcf\xc4\xdd\xcf\xc3\xdd\xd0\xc3\xdd\xd0\xc1\xdd\xd0\xc1\ +\xde\xcf\xc3\xde\xd0\xc1\xde\xcf\xc1\xdd\xcf\xc0\xdb\xce\xbe\xdc\ +\xcd\xbd\x00\x00\x00\xf0\xec\xe8\xf1\xed\xe8\xf1\xec\xe9\xf0\xea\ +\xe7\xf0\xec\xe8\xf2\xed\xea\xf2\xee\xea\xf2\xed\xea\xf0\xec\xe8\ +\xf0\xec\xe8\xf0\xeb\xe7\xed\xe8\xe6\xec\xe8\xe3\xe9\xe5\xe0\xe8\ +\xe2\xdc\xe7\xe0\xd9\xe6\xde\xd7\xe7\xdf\xd7\xe5\xde\xd5\xe4\xdd\ +\xd4\xe4\xdc\xd4\xe3\xdc\xd3\xe2\xdb\xd2\xe1\xda\xcf\xe2\xd9\xcf\ +\xe1\xd8\xcf\xdf\xd7\xcd\xdf\xd6\xcc\xde\xd7\xcd\xdf\xd7\xcc\xde\ +\xd7\xcc\xde\xd5\xca\xde\xd4\xca\xde\xd5\xcb\xdf\xd5\xcb\xde\xd5\ +\xcb\xde\xd4\xca\xde\xd3\xc9\xde\xd3\xc9\xde\xd3\xca\xdd\xd3\xc9\ +\xdc\xd2\xc8\xdc\xd2\xc7\xdb\xd2\xc6\xdb\xd2\xc6\xdc\xd2\xc7\xdc\ +\xd0\xc4\xda\xd1\xc5\xdb\xd0\xc6\xdb\xd0\xc4\xdc\xd0\xc5\xda\xce\ +\xc2\xdb\xcf\xc4\xdb\xcf\xc4\xda\xce\xc2\xdb\xcf\xc2\xda\xce\xc2\ +\xd9\xcd\xc1\xda\xce\xc3\xda\xce\xc2\xd9\xce\xc2\xda\xce\xc2\xda\ +\xcd\xc1\xd9\xcd\xc1\xd9\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc0\xd8\xcc\ +\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd9\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\ +\xd7\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc1\xd8\xcc\xc0\xd8\xcc\xc0\xd8\ +\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd7\xcb\ +\xbf\xd7\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd9\xcd\xc1\ +\xd9\xcc\xc1\xd9\xce\xc2\xda\xcf\xc1\xd9\xce\xc2\xda\xcf\xc3\xdb\ +\xcf\xc4\xda\xce\xc3\xda\xce\xc4\xdb\xcf\xc3\xda\xce\xc2\xdb\xcf\ +\xc3\xdb\xcf\xc3\xdc\xd0\xc5\xda\xd1\xc5\xdb\xd2\xc6\xdb\xd1\xc8\ +\xdb\xd1\xc5\xdb\xd2\xc5\xdc\xd2\xc8\xdb\xd1\xc6\xdb\xd0\xc6\xdb\ +\xd1\xc6\xdb\xd0\xc4\xdd\xd0\xc4\xdb\xd2\xc5\xdc\xd2\xc7\xdc\xd2\ +\xc8\xdd\xd3\xc9\xdc\xd2\xc8\xdd\xd2\xc8\xdd\xd2\xc6\xde\xd3\xca\ +\xde\xd3\xc9\xdd\xd2\xc8\xdd\xd3\xc9\xde\xd2\xc5\xdd\xd2\xc6\xdd\ +\xd1\xc5\xdd\xd2\xc6\xdd\xd2\xc6\xdd\xd1\xc6\xdc\xd0\xc4\xdc\xd0\ +\xc4\xdd\xd1\xc5\xdd\xd0\xc4\xdb\xd1\xc5\xdb\xd1\xc7\xdc\xd0\xc3\ +\xdc\xd0\xc4\xdd\xd0\xc5\xdf\xd0\xc4\xde\xd1\xc7\xde\xd1\xc5\xdf\ +\xd0\xc4\xde\xd1\xc5\xdd\xd1\xc5\xde\xd2\xc7\xe0\xd2\xc6\xde\xd2\ +\xc5\xe0\xd2\xc6\xde\xd1\xc6\xdf\xd1\xc5\xdf\xd2\xc5\xdf\xd1\xc5\ +\xdf\xd1\xc6\xdf\xd1\xc6\xdf\xd1\xc4\xdf\xd1\xc3\xe0\xd1\xc5\xde\ +\xd1\xc3\xde\xd2\xc3\xdd\xd0\xc1\xdd\xd0\xc0\xdc\xce\xc1\x00\x00\ +\x00\xf0\xec\xe7\xf0\xec\xe7\xf1\xec\xe9\xf0\xec\xe7\xf0\xec\xe7\ +\xf2\xee\xea\xf3\xee\xeb\xf3\xee\xeb\xf0\xec\xe6\xf0\xec\xe7\xee\ +\xea\xe5\xeb\xe7\xe2\xe9\xe5\xe0\xe8\xe2\xdc\xe7\xe0\xd7\xe5\xde\ +\xd5\xe4\xdd\xd4\xe3\xdc\xd3\xe4\xdd\xd4\xe2\xdb\xd2\xe3\xdc\xd3\ +\xe2\xdb\xd1\xe1\xd9\xcf\xe0\xd8\xce\xe1\xd9\xcf\xe1\xd8\xcf\xde\ +\xd7\xcc\xde\xd6\xcb\xdd\xd7\xcd\xde\xd6\xcc\xde\xd6\xcb\xdd\xd5\ +\xca\xde\xd4\xcb\xde\xd4\xca\xdd\xd4\xca\xdf\xd5\xcb\xde\xd6\xcc\ +\xdf\xd5\xcb\xde\xd4\xca\xdd\xd4\xca\xdc\xd4\xc9\xde\xd1\xc6\xdd\ +\xd2\xc8\xdc\xd2\xc7\xdc\xd2\xc7\xdb\xd2\xc8\xdc\xd1\xc5\xdb\xd2\ +\xc5\xdc\xd1\xc5\xdc\xd0\xc5\xdb\xcf\xc3\xdb\xcf\xc5\xdb\xd0\xc5\ +\xdb\xcf\xc3\xdc\xcf\xc5\xdb\xd0\xc4\xda\xce\xc2\xd9\xcd\xc1\xda\ +\xce\xc2\xd9\xcd\xc1\xd9\xcd\xc1\xd9\xcd\xc1\xd9\xcd\xc1\xd9\xcd\ +\xc1\xd8\xcc\xc0\xd8\xcd\xc1\xd9\xcd\xc1\xd8\xcc\xc0\xd8\xcc\xc0\ +\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcc\xc0\xd8\xcd\xc1\xd8\ +\xcc\xc0\xd8\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc0\xd7\xcb\xbf\xd7\xcb\ +\xbf\xd7\xcb\xbf\xd7\xcb\xbf\xd6\xcb\xbf\xd8\xca\xbe\xd9\xcb\xbf\ +\xd7\xcb\xbf\xd7\xca\xbe\xd8\xcb\xbf\xd8\xcc\xc0\xd8\xcc\xc0\xd8\ +\xcd\xc1\xd8\xcc\xc0\xd9\xcd\xc1\xd8\xcc\xc0\xd9\xcd\xc1\xd9\xcd\ +\xc1\xd9\xcd\xc1\xd9\xce\xc1\xda\xce\xc3\xd9\xcd\xc1\xd9\xcd\xc1\ +\xda\xce\xc2\xdc\xd0\xc6\xdb\xd0\xc5\xdb\xd1\xc5\xdb\xd0\xc5\xdb\ +\xd0\xc3\xdb\xd1\xc6\xdc\xd0\xc4\xdb\xd0\xc4\xdb\xd1\xc4\xdc\xd0\ +\xc4\xdb\xd1\xc7\xda\xd1\xc7\xdb\xd0\xc6\xdd\xd0\xc4\xdc\xd2\xc6\ +\xdd\xd3\xc9\xdd\xd3\xc9\xde\xd3\xc9\xde\xd4\xc9\xde\xd2\xc7\xdd\ +\xd2\xc8\xdd\xd2\xc6\xdc\xd1\xc7\xdd\xd2\xc5\xdc\xd2\xc5\xdd\xd0\ +\xc5\xdd\xd1\xc5\xdd\xd1\xc5\xdc\xd0\xc4\xdc\xd0\xc4\xdc\xd0\xc4\ +\xdc\xd0\xc4\xdb\xd0\xc4\xdc\xd1\xc5\xdb\xd0\xc4\xdc\xd1\xc5\xdd\ +\xd0\xc5\xdc\xd0\xc4\xdc\xd0\xc4\xdd\xd1\xc5\xdd\xd1\xc5\xde\xd2\ +\xc6\xde\xd2\xc5\xdd\xd1\xc6\xdf\xd3\xc6\xdf\xd3\xc6\xe0\xd2\xc7\ +\xde\xd3\xc6\xde\xd2\xc7\xde\xd1\xc6\xde\xd2\xc5\xe0\xd2\xc6\xe0\ +\xd2\xc8\xe0\xd3\xc5\xe1\xd2\xc8\xdf\xd2\xc5\xe0\xd2\xc5\xe0\xd3\ +\xc5\xdf\xd2\xc4\xdd\xd0\xc1\xda\xcd\xbc\x00\x00\x00\ +\x00\x02\xa0\xde\ +\x42\ +\x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ +\x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ +\x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xa1\x9b\x9d\xa1\x9b\x9e\xa3\x9d\xa0\xa6\xa0\ +\xa1\xa4\x9e\xa1\xa6\xa0\xa3\xa6\xa0\xa2\xa8\xa3\xa5\xaa\xa5\xa7\ +\xab\xa6\xa8\xae\xa8\xac\xb0\xaa\xaf\xaf\xa9\xae\xb3\xad\xb2\xb2\ +\xab\xb0\xb3\xae\xb3\xb2\xac\xb1\xb3\xab\xb0\xb5\xae\xb1\xb5\xad\ +\xb0\xb8\xaf\xb1\xba\xb1\xb3\xba\xb2\xb3\xc0\xb8\xb9\xc0\xb8\xb8\ +\xc1\xba\xbc\xc2\xbb\xbc\xc5\xbf\xc0\xc5\xbd\xbe\xc6\xbf\xc0\xc8\ +\xc0\xc1\xc9\xc2\xc3\xc9\xc2\xc2\xc9\xc0\xbf\xcc\xc2\xc3\xcb\xc0\ +\xc2\xcc\xc2\xc3\xcc\xc2\xc3\xca\xbf\xc0\xc7\xbb\xbc\xba\xa9\xab\ +\xa6\x93\x95\xa2\x90\x91\xab\x9c\x9a\xc1\xb5\xb5\xcd\xc5\xc5\xcf\ +\xc9\xca\xd0\xc8\xc9\xd2\xca\xc9\xd2\xcb\xc9\xd4\xcd\xca\xd5\xce\ +\xcb\xd7\xcf\xcc\xd4\xcc\xcb\xcf\xc1\xc0\xc8\xb6\xb5\xba\xa2\xa0\ +\xb3\x97\x94\xb0\x98\x94\xc0\xaf\xab\xcf\xc3\xc1\xd7\xce\xce\xda\ +\xd3\xd4\xda\xd5\xd5\xdb\xd6\xd8\xdd\xd7\xd8\xde\xd6\xd7\xe0\xd8\ +\xd9\xe0\xd9\xda\xe0\xd9\xd9\xe1\xd9\xda\xe1\xd9\xd9\xe2\xdb\xd8\ +\xe0\xd8\xd5\xdf\xd5\xd2\xdc\xce\xcb\xd5\xc2\xbf\xce\xb6\xb1\xc7\ +\xa8\xa4\xc2\xa0\x9f\xc0\xa2\xa1\xc0\xa4\xa2\xc6\xad\xa8\xcb\xb5\ +\xb2\xd4\xc3\xbf\xd7\xc8\xc5\xdd\xd2\xd0\xdf\xd5\xd3\xe0\xd6\xd6\ +\xe0\xda\xd9\xe1\xdb\xda\xe1\xdb\xd9\xe2\xdb\xda\xe1\xdb\xda\xdf\ +\xd8\xd6\xdf\xd9\xd7\xe1\xdc\xda\xe0\xdb\xd9\xdf\xd9\xd6\xdf\xda\ +\xd6\xa7\x8b\x7e\xe0\xd6\xd3\xe0\xda\xd9\xe1\xda\xda\xdf\xd9\xd9\ +\xdd\xd6\xd6\xdc\xd6\xd6\xdb\xd3\xd3\xd6\xcd\xcf\xd2\xca\xcc\xd2\ +\xc9\xcb\xcb\xc4\xc5\xc6\xc0\xc0\xbd\xb8\xb7\xb9\xb4\xb4\xb1\xab\ +\xac\xa8\xa3\xa4\x9e\x99\x9a\x8f\x8e\x8e\x81\x82\x83\x71\x75\x76\ +\x5f\x64\x6a\x45\x4d\x56\x21\x2b\x36\x06\x0a\x10\x00\x00\x00\x07\ +\x06\x07\x36\x35\x35\x5e\x5d\x5d\x70\x70\x71\x79\x78\x7a\x80\x7f\ +\x83\x85\x84\x88\x84\x85\x89\x86\x86\x8b\x86\x87\x8d\x84\x86\x8c\ +\x81\x84\x89\x80\x82\x89\x81\x84\x8a\x80\x82\x87\x71\x73\x77\x69\ +\x6b\x6f\x7a\x7d\x81\x79\x7c\x80\x79\x7c\x80\x76\x7a\x7f\x71\x75\ +\x7b\x71\x75\x7d\x71\x77\x7e\x70\x76\x7f\x6d\x73\x7d\x69\x70\x7b\ +\x65\x6e\x78\x68\x70\x7c\x68\x71\x7e\x59\x63\x70\x20\x25\x31\x0d\ +\x0e\x17\x06\x06\x0b\x1d\x23\x2f\x47\x59\x6a\x1d\x27\x33\x00\x00\ +\x00\xa1\x9c\x9e\xa1\x9d\x9f\xa5\xa0\xa2\xa6\xa1\xa3\xa6\xa1\xa3\ +\xa5\x9f\xa2\xa5\x9f\xa1\xa8\xa3\xa4\xad\xa8\xaa\xac\xa7\xa9\xac\ +\xa7\xa9\xae\xa9\xac\xad\xa7\xab\xb2\xac\xb1\xb2\xad\xb1\xb2\xac\ +\xb1\xb5\xaf\xb4\xb6\xaf\xb3\xb6\xaf\xb2\xb6\xaf\xb2\xb8\xb1\xb4\ +\xbc\xb5\xb7\xbb\xb3\xb5\xbe\xb6\xb7\xc2\xba\xbb\xbf\xb8\xba\xc1\ +\xbb\xbc\xc5\xbf\xbf\xc4\xbc\xbd\xc7\xbf\xbf\xc8\xbf\xbf\xc8\xc0\ +\xc0\xcb\xc2\xc2\xcd\xc3\xc3\xce\xc4\xc4\xcd\xc3\xc4\xcf\xc5\xc5\ +\xcd\xc4\xc4\xcc\xc1\xc2\xce\xc4\xc4\xce\xc5\xc5\xd0\xc6\xc6\xca\ +\xbd\xbd\xb7\xa6\xa4\xa2\x8e\x8b\x9f\x8b\x8a\xb0\x9e\x9d\xbe\xae\ +\xac\xc8\xbd\xb9\xce\xc4\xc0\xd0\xc8\xc5\xd1\xca\xc7\xd5\xce\xcb\ +\xd7\xd0\xcd\xd8\xd1\xcf\xd9\xd1\xcf\xd9\xd1\xce\xda\xcf\xcc\xcf\ +\xbf\xbb\xc3\xb0\xac\xb3\x98\x91\xaf\x92\x8c\xb8\xa2\x9b\xc5\xb4\ +\xaf\xd0\xc3\xc2\xd7\xcf\xce\xdb\xd4\xd2\xde\xd6\xd5\xde\xd9\xd8\ +\xdf\xda\xd9\xe2\xda\xda\xe2\xdc\xdb\xe3\xde\xdd\xe3\xde\xdc\xe3\ +\xdd\xdb\xe3\xdc\xda\xe3\xdd\xda\xe4\xdd\xda\xe4\xdd\xdb\xe3\xdb\ +\xd9\xe1\xd7\xd5\xe0\xd3\xcf\xda\xc6\xc1\xd1\xb9\xb4\xcc\xb1\xab\ +\xc5\xa9\xa2\xc1\xa2\x9e\xbf\xa1\x9c\xbd\x9b\x95\xbc\x9b\x90\xbe\ +\x9e\x93\xbb\x9a\x8e\xbb\x9a\x90\xbe\xa0\x99\xbd\xa2\x9a\xbb\xa2\ +\x99\xbe\xa5\x9b\xba\xa1\x98\xb8\xa1\x98\xa7\x8a\x7e\xa7\x88\x7d\ +\xe4\xdd\xdc\xdf\xd7\xd6\xe0\xd8\xd8\xde\xd6\xd6\xdd\xd4\xd4\xda\ +\xd2\xd2\xd7\xcf\xcf\xd4\xcc\xcc\xd1\xc9\xc9\xcd\xc5\xc6\xca\xc3\ +\xc4\xc3\xbe\xbe\xbc\xb7\xb6\xb5\xb0\xb0\xab\xa6\xa7\xa2\x9e\x9f\ +\x96\x92\x93\x8b\x89\x8b\x7c\x7e\x7e\x6c\x6f\x71\x56\x5c\x61\x34\ +\x3d\x46\x11\x19\x20\x02\x03\x04\x00\x00\x00\x16\x16\x18\x4c\x4b\ +\x4c\x66\x65\x67\x74\x73\x75\x7e\x7d\x80\x7f\x80\x83\x81\x82\x86\ +\x85\x86\x8a\x86\x87\x8c\x84\x86\x8b\x83\x86\x8b\x84\x87\x8c\x80\ +\x83\x88\x81\x84\x89\x7c\x7f\x84\x67\x69\x6f\x74\x77\x7b\x79\x7e\ +\x81\x79\x7d\x81\x77\x7b\x7f\x77\x7b\x80\x70\x75\x7a\x6e\x75\x7b\ +\x6f\x75\x7d\x70\x75\x7f\x6e\x75\x7f\x6b\x72\x7d\x67\x6e\x79\x66\ +\x6f\x7a\x64\x6e\x7a\x44\x4e\x5a\x10\x11\x17\x08\x0a\x0e\x11\x12\ +\x19\x35\x3e\x4a\x4d\x5d\x6d\x1b\x24\x2f\x00\x00\x00\xa1\x9d\x9f\ +\xa1\x9d\x9f\xa7\xa2\xa4\xa7\xa2\xa4\xa7\xa2\xa3\xa6\xa0\xa2\xa9\ +\xa3\xa5\xab\xa6\xa7\xad\xa7\xa9\xac\xa7\xa8\xac\xa7\xa9\xaf\xa9\ +\xab\xac\xa7\xa8\xb0\xaa\xad\xb2\xac\xaf\xb4\xae\xb0\xb7\xb2\xb4\ +\xb8\xb2\xb5\xb9\xb2\xb5\xb8\xb1\xb4\xbc\xb5\xb8\xbc\xb6\xb8\xbe\ +\xb7\xb9\xc0\xb8\xb9\xc4\xbc\xbd\xc0\xb9\xba\xc2\xba\xbb\xc4\xbe\ +\xbe\xc3\xbc\xbc\xc5\xbd\xbd\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc2\xc2\ +\xcd\xc4\xc4\xce\xc5\xc5\xcf\xc6\xc7\xcf\xc7\xc7\xce\xc5\xc6\xd1\ +\xc9\xc9\xd0\xc7\xc7\xd0\xc7\xc5\xd1\xc7\xc7\xd2\xc9\xc7\xd3\xc9\ +\xc8\xd1\xc7\xc5\xc5\xb9\xb8\xaf\x9b\x98\xa0\x89\x83\xa3\x8f\x86\ +\xb5\xa3\x9b\xc2\xb4\xb0\xc8\xbe\xba\xce\xc4\xc1\xd5\xcd\xcc\xda\ +\xd3\xd0\xd8\xd1\xce\xda\xd3\xd0\xdb\xd3\xd3\xdb\xd4\xd2\xdc\xd6\ +\xd4\xde\xd9\xd7\xd8\xcf\xce\xcc\xbe\xbb\xbe\xa8\xa3\xb4\x9a\x92\ +\xb2\x98\x8e\xbc\xa5\x9c\xca\xb7\xb0\xd5\xc7\xc3\xd7\xce\xcb\xdc\ +\xd4\xd1\xdd\xd7\xd5\xe2\xdc\xdb\xe2\xdc\xdb\xe3\xdd\xdc\xe3\xde\ +\xdd\xe3\xde\xdc\xe3\xde\xdb\xe4\xde\xdb\xe3\xdd\xdb\xe3\xde\xdb\ +\xe5\xdf\xdc\xe4\xde\xdc\xe5\xdf\xdc\xe6\xe0\xde\xe7\xe0\xde\xe6\ +\xdf\xdd\xe5\xe0\xde\xe5\xde\xdc\xe4\xdc\xd9\xe5\xdd\xda\xe0\xd5\ +\xd2\xde\xd1\xce\xdd\xcf\xcc\xdd\xd0\xcd\xdc\xcf\xcb\xdc\xd0\xcb\ +\xdc\xd2\xcc\xda\xcf\xca\xb3\x97\x8c\xca\xbb\xb4\xdf\xd8\xd5\xde\ +\xd6\xd3\xde\xd7\xd5\xdc\xd4\xd4\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\ +\xce\xd2\xca\xc9\xd1\xc8\xc8\xcd\xc5\xc5\xc6\xbe\xbe\xbe\xb8\xb9\ +\xb7\xb2\xb1\xae\xa9\xa9\xa7\xa2\xa4\x9c\x99\x9a\x8f\x8d\x8f\x84\ +\x83\x86\x77\x78\x7b\x66\x68\x6c\x4f\x54\x59\x2a\x32\x3b\x09\x0e\ +\x13\x00\x00\x00\x01\x02\x02\x26\x27\x2a\x55\x58\x59\x6a\x6c\x6f\ +\x78\x79\x7b\x7f\x7e\x80\x81\x80\x84\x82\x83\x87\x83\x84\x88\x85\ +\x86\x8c\x84\x86\x8b\x83\x86\x8b\x81\x84\x89\x7f\x82\x87\x80\x83\ +\x88\x76\x7a\x7f\x65\x68\x6d\x7a\x7f\x83\x79\x7d\x81\x77\x7c\x7f\ +\x76\x7a\x7f\x74\x78\x7d\x73\x77\x7c\x73\x77\x7d\x72\x78\x7f\x70\ +\x75\x7e\x6d\x74\x7d\x68\x70\x7a\x65\x6f\x79\x65\x6f\x79\x61\x6b\ +\x75\x2d\x34\x3d\x04\x04\x07\x0d\x0f\x14\x1d\x22\x2b\x45\x4e\x5c\ +\x45\x50\x5e\x23\x27\x31\x00\x00\x00\xa3\x9e\xa0\xa2\x9e\xa0\xa6\ +\xa1\xa3\xa7\xa2\xa4\xa9\xa4\xa5\xa7\xa2\xa3\xa8\xa3\xa5\xab\xa5\ +\xa7\xad\xa7\xaa\xad\xa7\xa9\xab\xa5\xa7\xaf\xaa\xab\xad\xa8\xaa\ +\xb0\xa9\xab\xb0\xa9\xac\xb0\xaa\xad\xb6\xb0\xb4\xb8\xb2\xb5\xb7\ +\xb0\xb3\xb9\xb2\xb5\xba\xb3\xb6\xbb\xb4\xb6\xc0\xba\xbb\xc3\xbd\ +\xbe\xc1\xbb\xbc\xc4\xbc\xbc\xc3\xbb\xbb\xc7\xc1\xc1\xc6\xc0\xc0\ +\xc6\xbd\xbd\xc7\xbe\xbe\xc8\xc0\xc0\xcb\xc2\xc3\xcb\xc1\xc1\xcb\ +\xc2\xc1\xce\xc5\xc5\xcf\xc8\xc8\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\ +\xcb\xd2\xcb\xca\xd2\xc9\xc8\xd3\xca\xc7\xd2\xc9\xc8\xd2\xca\xc8\ +\xd3\xcc\xcb\xd3\xcb\xc8\xd1\xc5\xc2\xc4\xb4\xaf\xb3\x9d\x96\xa7\ +\x8f\x89\xaa\x94\x90\xb8\xa5\xa0\xc6\xb8\xb2\xcd\xc5\xc1\xd3\xcb\ +\xc8\xd9\xd2\xce\xdb\xd4\xd1\xdb\xd4\xd1\xdc\xd6\xd5\xdc\xd6\xd6\ +\xdc\xd7\xd8\xde\xda\xda\xdf\xd9\xd9\xdf\xd7\xd6\xda\xd0\xcd\xd0\ +\xc0\xbb\xc1\xad\xa7\xbd\xa6\xa0\xbd\xa5\x9e\xbe\xa6\x9d\xc7\xb5\ +\xaf\xd0\xc0\xbc\xd6\xc7\xc3\xd8\xcd\xca\xda\xd1\xd0\xdc\xd4\xd3\ +\xdf\xd9\xd8\xe2\xdc\xdc\xe3\xde\xdd\xe2\xde\xdb\xe3\xde\xdb\xe3\ +\xde\xdd\xe2\xdd\xdb\xe3\xde\xdd\xe4\xdf\xde\xe3\xde\xdc\xe3\xde\ +\xdb\xe2\xde\xdb\xe2\xdd\xda\xe3\xdd\xdb\xe2\xdd\xda\xe2\xdc\xd9\ +\xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd9\xd6\xdf\ +\xda\xd6\xa5\x8a\x7d\xe0\xd8\xd4\xdc\xd5\xd2\xdc\xd5\xd2\xda\xd3\ +\xd2\xd8\xd1\xd1\xd7\xd1\xd0\xd6\xce\xce\xd2\xca\xc8\xcd\xc5\xc3\ +\xca\xc2\xc1\xc7\xbf\xbf\xc1\xbb\xba\xb9\xb3\xb4\xb0\xaa\xaa\xaa\ +\xa5\xa4\x9e\x99\x9a\x98\x95\x96\x8b\x8a\x8c\x7c\x7b\x7e\x6d\x6f\ +\x72\x5b\x5e\x63\x41\x46\x4c\x1d\x23\x2b\x04\x07\x0a\x00\x00\x00\ +\x0c\x0c\x0e\x3d\x3e\x41\x5b\x5c\x5d\x6d\x6f\x71\x79\x79\x7d\x7e\ +\x7e\x82\x82\x83\x87\x85\x86\x8a\x84\x85\x89\x85\x86\x8b\x86\x88\ +\x8c\x83\x86\x8b\x80\x84\x89\x7e\x82\x86\x7f\x83\x87\x69\x6d\x72\ +\x6e\x72\x77\x7b\x80\x84\x77\x7b\x7f\x76\x7a\x7e\x76\x79\x7d\x73\ +\x77\x7c\x73\x76\x7c\x73\x77\x7d\x72\x78\x80\x72\x77\x80\x6f\x75\ +\x7f\x6d\x74\x7d\x68\x70\x7a\x65\x6e\x78\x61\x6b\x75\x23\x29\x30\ +\x01\x01\x01\x10\x12\x16\x33\x3b\x46\x3e\x47\x54\x34\x3c\x48\x28\ +\x2d\x37\x00\x00\x00\xa5\xa1\xa2\xa5\xa2\xa4\xa7\xa2\xa4\xa7\xa2\ +\xa4\xa9\xa4\xa6\xaa\xa5\xa6\xaa\xa4\xa5\xaa\xa4\xa5\xab\xa6\xa7\ +\xad\xa7\xa8\xae\xa8\xa9\xb1\xab\xac\xaf\xa9\xaa\xb3\xad\xae\xb2\ +\xac\xad\xb3\xad\xae\xb4\xaf\xb2\xb6\xb0\xb3\xb6\xb0\xb3\xb9\xb3\ +\xb6\xba\xb3\xb6\xbc\xb6\xb8\xc0\xb9\xbb\xc3\xbd\xbe\xc2\xbb\xbb\ +\xc4\xbe\xbe\xc7\xbf\xc0\xc6\xbf\xc0\xca\xc2\xc2\xc7\xc0\xc0\xc8\ +\xc0\xbf\xc8\xc0\xc0\xcb\xc2\xc2\xcb\xc3\xc3\xcd\xc4\xc4\xcf\xc7\ +\xc7\xcf\xc7\xc7\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\xca\xd2\xcb\xca\ +\xd4\xcb\xcb\xd5\xcd\xcc\xd6\xce\xcd\xd5\xcc\xcc\xd4\xcb\xc9\xd4\ +\xca\xc7\xd4\xc9\xc7\xd6\xcc\xc9\xd6\xcc\xc8\xd3\xc8\xc4\xc9\xbb\ +\xb6\xb6\xa4\x9d\xac\x96\x8d\xb0\x9c\x94\xbb\xa8\xa1\xc1\xb2\xaa\ +\xc8\xba\xb4\xcf\xc5\xc0\xd7\xce\xca\xdb\xd5\xd3\xdb\xd6\xd5\xdc\ +\xd7\xd6\xdc\xd7\xd7\xdd\xd7\xd5\xde\xd8\xd7\xe0\xdb\xdb\xe0\xdb\ +\xdb\xe0\xda\xd9\xde\xd5\xd2\xd5\xc8\xc4\xcb\xbb\xb5\xc4\xae\xa7\ +\xc2\xa7\x9f\xc4\xaa\xa5\xc5\xae\xab\xc8\xb5\xb2\xce\xbe\xbd\xd2\ +\xc4\xc2\xd5\xc8\xc5\xd5\xcb\xc6\xd6\xcc\xc8\xd8\xd0\xcd\xdb\xd2\ +\xd1\xdc\xd3\xd2\xdd\xd8\xd6\xe0\xdb\xd9\xe0\xda\xd8\xe0\xda\xd8\ +\xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe0\xdb\xd8\xdf\ +\xda\xd9\xde\xdb\xda\xdb\xd7\xd7\xdb\xd6\xd3\xcc\xc0\xb8\xac\x94\ +\x89\xdb\xd5\xd2\xd7\xd0\xce\xd7\xd0\xce\xd6\xd0\xce\xd3\xcc\xcc\ +\xd3\xcc\xcb\xcf\xc8\xc7\xcc\xc5\xc2\xc8\xc1\xbe\xc4\xbb\xba\xc1\ +\xb9\xb9\xba\xb3\xb4\xb4\xad\xae\xaa\xa4\xa4\xa0\x9b\x9a\x97\x93\ +\x93\x8e\x8c\x8c\x81\x81\x83\x75\x75\x77\x63\x66\x68\x50\x55\x58\ +\x33\x3a\x3e\x10\x17\x1b\x01\x03\x04\x00\x00\x00\x1a\x1b\x1e\x49\ +\x4b\x4e\x61\x60\x62\x71\x6f\x72\x7b\x7a\x7b\x7f\x7e\x80\x82\x83\ +\x86\x83\x84\x88\x85\x86\x8b\x85\x86\x8b\x84\x87\x8b\x82\x85\x89\ +\x7e\x82\x86\x7e\x82\x86\x7c\x7f\x83\x66\x6a\x6f\x73\x77\x7b\x7b\ +\x7e\x82\x77\x7a\x7f\x77\x7b\x7f\x75\x7a\x7e\x72\x77\x7c\x72\x77\ +\x7c\x70\x76\x7c\x6f\x75\x7c\x6f\x74\x7c\x6e\x75\x7d\x6d\x75\x7e\ +\x6a\x72\x7b\x65\x6e\x77\x5a\x64\x6f\x23\x27\x2f\x02\x02\x03\x15\ +\x18\x1c\x54\x5d\x67\x45\x4d\x58\x2b\x33\x3d\x29\x2e\x39\x00\x00\ +\x00\xa4\x9f\xa0\xa5\xa3\xa3\xa7\xa4\xa6\xa8\xa3\xa5\xa7\xa2\xa3\ +\xaa\xa5\xa6\xac\xa6\xa7\xac\xa6\xa7\xad\xa7\xa8\xac\xa7\xa7\xb1\ +\xab\xac\xb3\xad\xae\xae\xa9\xaa\xb2\xad\xae\xb5\xb0\xb1\xb5\xaf\ +\xb1\xb4\xae\xb1\xb3\xad\xb0\xb6\xb1\xb3\xb9\xb4\xb6\xbb\xb4\xb7\ +\xbf\xb8\xba\xc1\xbb\xbc\xc1\xbb\xbc\xc4\xbd\xbe\xc5\xc0\xc0\xc6\ +\xc0\xc1\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc4\xc5\xca\xc3\xc2\xcb\xc3\ +\xc3\xcc\xc4\xc4\xce\xc6\xc6\xce\xc6\xc6\xce\xc6\xc6\xd0\xc7\xc7\ +\xce\xc5\xc5\xd1\xc9\xc9\xd3\xcb\xcb\xd4\xcc\xcb\xd6\xce\xcd\xd8\ +\xd0\xd0\xd5\xce\xcc\xd5\xcd\xcc\xd5\xcc\xcb\xd5\xcb\xc9\xd4\xc8\ +\xc6\xd3\xc9\xc5\xd5\xcb\xc7\xd7\xce\xc9\xda\xd2\xcf\xda\xd1\xce\ +\xd7\xcb\xc7\xd2\xc4\xbf\xbf\xad\xa5\xaf\x99\x8e\xb0\x98\x8e\xb5\ +\x9f\x96\xbd\xa9\xa0\xc4\xb4\xac\xc8\xbd\xb7\xd3\xca\xc7\xda\xd2\ +\xd0\xdc\xd5\xd2\xdd\xd8\xd7\xde\xd9\xd8\xdd\xd9\xd9\xdd\xd8\xd7\ +\xde\xd8\xd7\xdf\xd9\xd7\xe0\xda\xd7\xe1\xda\xd8\xe0\xd9\xd5\xdf\ +\xd6\xd3\xdb\xcc\xc9\xd1\xc0\xbc\xcb\xb8\xb4\xc5\xb0\xad\xc3\xad\ +\xa8\xc4\xad\xa6\xc3\xae\xa6\xc5\xb1\xaa\xc7\xb4\xb0\xc7\xb3\xad\ +\xc6\xb3\xac\xca\xb7\xb2\xc8\xb5\xb0\xca\xb8\xb1\xc9\xb8\xb3\xc9\ +\xb8\xb4\xca\xb9\xb5\xc9\xbb\xb5\xc7\xb9\xb4\xc6\xb9\xb4\xc6\xba\ +\xb5\xc4\xb7\xb1\xc4\xb5\xac\x96\x77\x61\xc7\xb8\xb1\xd5\xcd\xca\ +\xd2\xcb\xc9\xcf\xc9\xc6\xce\xc8\xc5\xcc\xc5\xc3\xca\xc2\xc2\xc6\ +\xbf\xbf\xc4\xbc\xbb\xc1\xb9\xb7\xbb\xb5\xb1\xb6\xb0\xae\xb1\xaa\ +\xa9\xa8\xa3\xa3\xa0\x9c\x9c\x98\x95\x94\x8e\x8b\x8b\x81\x80\x80\ +\x75\x75\x76\x68\x69\x6a\x58\x5c\x5d\x44\x49\x4b\x22\x28\x2b\x07\ +\x0a\x0d\x00\x00\x00\x04\x04\x06\x2d\x2d\x31\x51\x52\x54\x65\x65\ +\x65\x70\x6f\x70\x79\x79\x7a\x7d\x7d\x7f\x81\x83\x84\x84\x86\x89\ +\x84\x85\x8a\x85\x87\x8c\x83\x86\x8a\x80\x83\x87\x7f\x82\x86\x80\ +\x83\x87\x72\x75\x7a\x6b\x6e\x73\x77\x7a\x7e\x79\x7c\x81\x76\x7a\ +\x80\x77\x7b\x80\x76\x7a\x7f\x71\x78\x7d\x71\x77\x7c\x70\x76\x7c\ +\x6e\x74\x7b\x6d\x74\x7b\x6b\x72\x7a\x6b\x72\x7a\x6c\x73\x7b\x68\ +\x71\x79\x4e\x55\x61\x26\x2a\x34\x0a\x09\x0f\x21\x25\x2d\x5c\x65\ +\x6f\x5a\x63\x6f\x3b\x42\x4e\x26\x2b\x36\x00\x00\x00\xa4\x9f\xa0\ +\xa4\xa1\xa1\xa4\xa0\xa1\xa6\xa2\xa3\xa8\xa3\xa5\xaa\xa5\xa6\xab\ +\xa5\xa6\xac\xa7\xa8\xae\xa9\xa9\xad\xa8\xa6\xb0\xaa\xab\xaf\xaa\ +\xab\xae\xaa\xa9\xb3\xad\xae\xb5\xaf\xb1\xb6\xb0\xb1\xb5\xaf\xb0\ +\xb5\xaf\xb2\xb8\xb2\xb4\xb7\xb1\xb3\xb6\xaf\xb2\xbd\xb6\xb8\xc1\ +\xbb\xbc\xc2\xbc\xbc\xc4\xbd\xbd\xc6\xbf\xbf\xc6\xc0\xbf\xc8\xc2\ +\xc1\xca\xc3\xc2\xcb\xc4\xc5\xc9\xc1\xc1\xcb\xc3\xc3\xcc\xc4\xc4\ +\xce\xc7\xc7\xcf\xc8\xc8\xcf\xc8\xc8\xd1\xc9\xc8\xcf\xc7\xc7\xd0\ +\xc8\xc8\xd2\xca\xca\xd4\xcc\xcc\xd6\xce\xce\xd6\xcf\xcd\xd5\xce\ +\xcc\xd6\xce\xcc\xd5\xcc\xca\xd5\xcb\xc9\xd4\xca\xc8\xd4\xcb\xc7\ +\xd6\xcc\xc8\xd5\xcc\xc8\xd7\xce\xcb\xd8\xd0\xcd\xd9\xd0\xcd\xdb\ +\xd2\xcf\xdc\xd3\xd1\xd7\xd0\xcd\xd2\xc7\xc3\xc5\xb4\xaf\xbc\xa7\ +\x9f\xb6\x9e\x95\xb7\xa0\x97\xba\xa6\x9e\xbe\xaa\xa2\xc3\xb1\xac\ +\xc9\xbb\xb8\xcf\xc3\xc1\xd8\xd0\xcf\xdc\xd6\xd6\xdc\xd7\xd5\xdc\ +\xd6\xd4\xdb\xd6\xd2\xdb\xd4\xd1\xdc\xd5\xd1\xdc\xd5\xd2\xdd\xd6\ +\xd3\xdd\xd6\xd3\xde\xd8\xd5\xde\xd8\xd5\xdc\xd7\xd4\xda\xd4\xd3\ +\xd6\xcf\xcc\xd3\xc8\xc5\xcd\xc1\xbd\xcc\xbe\xb9\xc4\xb2\xac\xc1\ +\xac\xa6\xbd\xa9\xa0\xbd\xa8\xa1\xba\xa4\x9d\xba\xa4\x9d\xb9\xa1\ +\x9b\xb8\xa2\x9c\xb7\xa1\x98\xb5\xa0\x99\xb5\xa2\x9a\xb4\xa2\x98\ +\xb2\x9f\x93\x80\x5a\x46\xce\xc6\xc3\xca\xc3\xc0\xc8\xc1\xbf\xc4\ +\xbe\xbc\xc5\xbe\xbc\xc1\xbb\xb9\xbf\xb8\xb8\xbb\xb5\xb4\xb8\xb2\ +\xb0\xb3\xad\xac\xaf\xa8\xa7\xab\xa3\xa3\xa5\x9f\x9f\x9c\x98\x97\ +\x94\x90\x90\x8d\x89\x89\x81\x7f\x7e\x74\x73\x73\x69\x69\x69\x5b\ +\x5d\x5d\x4b\x4f\x50\x33\x3a\x3a\x15\x1b\x1e\x02\x04\x06\x00\x00\ +\x00\x10\x0f\x11\x37\x38\x3b\x55\x57\x58\x65\x65\x65\x70\x6f\x71\ +\x77\x76\x78\x7a\x7c\x7d\x81\x82\x84\x83\x85\x88\x83\x85\x88\x84\ +\x87\x8b\x82\x85\x89\x80\x83\x87\x7f\x82\x86\x7e\x81\x85\x68\x6b\ +\x70\x72\x76\x7b\x7a\x7d\x82\x77\x7b\x80\x77\x7b\x80\x75\x79\x7d\ +\x75\x7a\x7f\x72\x78\x7e\x70\x76\x7b\x70\x78\x7d\x6e\x75\x7c\x6d\ +\x74\x7b\x6b\x73\x7a\x6a\x72\x7a\x6a\x72\x7a\x66\x6f\x77\x4b\x52\ +\x5c\x31\x35\x40\x1e\x21\x2b\x40\x46\x52\x62\x6b\x78\x63\x6c\x77\ +\x51\x5a\x67\x36\x3e\x4b\x00\x00\x00\xa7\xa3\xa3\xa7\xa3\xa3\xa4\ +\x9f\xa1\xa6\xa1\xa2\xa9\xa4\xa5\xac\xa7\xa7\xae\xa9\xaa\xae\xa9\ +\xaa\xae\xa9\xa8\xb1\xac\xab\xb0\xaa\xa9\xae\xaa\xa9\xaf\xaa\xa9\ +\xb3\xad\xac\xb4\xae\xaf\xb4\xae\xb0\xb5\xaf\xb0\xb8\xb2\xb3\xbb\ +\xb5\xb7\xb9\xb3\xb4\xb5\xaf\xb0\xba\xb4\xb4\xbe\xb8\xb9\xbf\xb9\ +\xb9\xc4\xbd\xbb\xc5\xbc\xbc\xc7\xbf\xbf\xca\xc3\xc2\xc9\xc3\xc2\ +\xc8\xc1\xc1\xc9\xc2\xc2\xca\xc4\xc3\xca\xc4\xc3\xcd\xc7\xc6\xcf\ +\xc9\xc9\xcf\xca\xc9\xcf\xc7\xc7\xd0\xc9\xc9\xd1\xca\xca\xd2\xca\ +\xca\xd2\xca\xca\xd4\xcc\xcb\xd3\xcc\xc9\xd4\xcd\xcb\xd6\xcf\xcd\ +\xd5\xce\xcc\xd6\xcd\xca\xd6\xcd\xca\xd6\xcd\xcb\xd6\xce\xcb\xd5\ +\xcd\xca\xd6\xcd\xca\xd7\xcf\xcc\xd7\xce\xcb\xd6\xcd\xca\xd8\xcf\ +\xcc\xd7\xcf\xcc\xd7\xcf\xcc\xd8\xd0\xcd\xd9\xd2\xcf\xd6\xcc\xc9\ +\xcf\xc2\xbd\xc6\xb5\xb0\xbd\xa9\xa1\xbc\xa6\xa0\xbd\xa6\xa1\xb9\ +\xa1\x9d\xb7\x9f\x96\xbc\xa6\x9d\xc0\xae\xa8\xc4\xb5\xaf\xcf\xc4\ +\xbf\xd5\xce\xc9\xd6\xd0\xcd\xd7\xd3\xd0\xd7\xd1\xce\xd6\xd0\xcd\ +\xd5\xd0\xcd\xd4\xcf\xcc\xd3\xce\xcd\xd3\xce\xce\xd2\xce\xcc\xd1\ +\xcd\xcc\xd0\xcd\xcb\xcf\xcc\xc9\xcf\xca\xc7\xcf\xc9\xc7\xcf\xca\ +\xc7\xcd\xc9\xc7\xcb\xc6\xc3\xcc\xc7\xc4\xca\xc5\xc3\xc8\xc2\xc0\ +\xc6\xc0\xbe\xc6\xc0\xbe\xc5\xc0\xbe\xc4\xbf\xbe\xb2\xa6\xa1\x9f\ +\x8a\x85\xbe\xb6\xb4\xbd\xb5\xb3\xb9\xb4\xb2\xb7\xb1\xb0\xb5\xaf\ +\xaf\xb3\xad\xad\xb0\xaa\xaa\xad\xa7\xa6\xa7\xa1\x9f\xa4\x9e\x9d\ +\x9f\x99\x97\x98\x92\x91\x95\x90\x90\x8d\x89\x89\x84\x81\x81\x7b\ +\x78\x79\x71\x6f\x6f\x64\x64\x64\x5b\x5c\x5c\x4f\x51\x52\x3d\x42\ +\x42\x23\x2a\x2b\x0c\x10\x11\x00\x00\x01\x00\x00\x00\x1a\x1a\x1c\ +\x3e\x40\x41\x55\x57\x57\x61\x61\x61\x6c\x6b\x6c\x72\x72\x74\x79\ +\x7b\x7c\x7e\x80\x81\x81\x83\x85\x82\x85\x88\x82\x86\x88\x81\x84\ +\x87\x80\x82\x86\x7f\x81\x85\x77\x7a\x7d\x64\x67\x6a\x76\x7a\x7f\ +\x7b\x7f\x83\x76\x7a\x7f\x78\x7c\x80\x76\x79\x7e\x75\x7a\x7f\x71\ +\x77\x7d\x6f\x76\x7c\x70\x79\x7e\x70\x78\x7e\x6d\x74\x7b\x6a\x73\ +\x7a\x6a\x72\x7a\x69\x71\x7a\x66\x6e\x77\x57\x60\x69\x3b\x40\x4b\ +\x3a\x41\x4b\x5c\x65\x71\x66\x6f\x7a\x64\x6d\x79\x5e\x68\x74\x4d\ +\x58\x65\x00\x00\x00\xa9\xa5\xa5\xa7\xa3\xa2\xa5\xa1\xa1\xa5\xa1\ +\xa1\xab\xa6\xa7\xac\xa8\xa8\xae\xa9\xaa\xb0\xab\xab\xae\xa9\xa9\ +\xb1\xad\xad\xae\xaa\xaa\xad\xa8\xa8\xb4\xaf\xaf\xb4\xaf\xaf\xb4\ +\xaf\xaf\xb2\xad\xac\xb3\xad\xad\xb5\xaf\xb0\xba\xb4\xb5\xba\xb4\ +\xb5\xba\xb4\xb5\xbe\xb8\xb9\xbe\xb9\xb9\xbe\xb8\xb8\xc4\xbd\xbb\ +\xc2\xbb\xb9\xc6\xbe\xbd\xc8\xc1\xc0\xc7\xc0\xc0\xc6\xbe\xbe\xc8\ +\xc1\xc1\xc9\xc4\xc4\xcb\xc5\xc5\xce\xc8\xc7\xce\xc8\xc7\xce\xc8\ +\xc8\xce\xc6\xc6\xcf\xc8\xc8\xd0\xcb\xca\xd1\xca\xc9\xd1\xc9\xc8\ +\xd1\xca\xc8\xd1\xc9\xc7\xd2\xc9\xc6\xd4\xcd\xca\xd4\xcc\xc9\xd3\ +\xcb\xc8\xd3\xca\xc8\xd4\xcb\xc9\xd4\xcb\xc9\xd4\xcd\xca\xd3\xcc\ +\xc9\xd2\xcc\xc9\xd4\xcc\xc9\xd1\xc9\xc6\xd3\xcb\xc8\xd3\xcb\xc8\ +\xd2\xc9\xc6\xd3\xca\xc7\xd2\xca\xc7\xd4\xcc\xc9\xd3\xca\xc8\xd3\ +\xcb\xc8\xd2\xcb\xc7\xcf\xc8\xc4\xcc\xc0\xbe\xc4\xb7\xb3\xbb\xab\ +\xa3\xba\xa5\x9d\xb8\xa3\x9a\xb3\x9b\x90\xb4\x9a\x90\xb3\x9a\x90\ +\xb4\x9d\x94\xb3\x9f\x97\xb9\xa9\xa3\xc0\xb4\xaf\xc6\xbd\xb9\xc8\ +\xc2\xbf\xc9\xc4\xc0\xc7\xc5\xc2\xc7\xc6\xc3\xc6\xc4\xc1\xc4\xc0\ +\xbf\xc2\xbf\xbb\xbe\xba\xb8\xbe\xb9\xb7\xbd\xb9\xb8\xbd\xb9\xb7\ +\xbc\xb9\xb6\xba\xb7\xb4\xba\xb6\xb4\xb8\xb5\xb3\xb6\xb3\xb2\xb4\ +\xb1\xb0\xb3\xb0\xae\xb5\xb3\xb1\x87\x74\x6c\xa7\x9d\x9a\xac\xa5\ +\xa4\xac\xa5\xa3\xa8\xa3\xa1\xa6\xa0\x9f\xa4\x9e\x9e\xa0\x9b\x9b\ +\x9e\x98\x98\x99\x94\x93\x94\x8f\x8d\x91\x8c\x8a\x8c\x86\x85\x87\ +\x82\x81\x82\x7d\x7c\x7b\x77\x76\x73\x71\x6f\x6a\x68\x68\x61\x60\ +\x60\x56\x56\x56\x4d\x4f\x4f\x40\x44\x44\x2f\x33\x34\x17\x1c\x1e\ +\x04\x07\x08\x00\x00\x00\x06\x06\x06\x24\x24\x26\x42\x41\x42\x51\ +\x51\x52\x5b\x5b\x5b\x66\x65\x66\x6f\x70\x72\x76\x78\x7a\x7b\x7e\ +\x7e\x7f\x82\x84\x80\x83\x85\x82\x85\x86\x80\x83\x84\x7f\x82\x86\ +\x80\x82\x85\x6b\x6f\x70\x6b\x6f\x6e\x7a\x7d\x80\x7a\x7f\x83\x76\ +\x7a\x7f\x76\x7a\x7f\x76\x7b\x80\x74\x79\x7e\x72\x78\x7e\x6e\x76\ +\x7c\x70\x78\x7f\x6f\x77\x7d\x6d\x75\x7c\x6c\x74\x7b\x6b\x73\x7b\ +\x69\x70\x79\x67\x6f\x78\x5c\x65\x6e\x46\x4f\x59\x51\x59\x63\x61\ +\x6a\x75\x63\x6c\x76\x63\x6d\x77\x63\x6d\x77\x5b\x66\x73\x00\x00\ +\x00\xa9\xa4\xa5\xa7\xa3\xa3\xa7\xa2\xa2\xaa\xa5\xa6\xaa\xa5\xa5\ +\xaa\xa6\xa5\xae\xaa\xaa\xb0\xab\xac\xaf\xaa\xaa\xb3\xae\xaf\xae\ +\xa9\xa9\xaf\xa9\xaa\xb2\xad\xae\xb3\xad\xad\xb7\xb2\xb1\xb1\xac\ +\xab\xb6\xb0\xaf\xb7\xb1\xb1\xb8\xb1\xb1\xba\xb4\xb5\xbd\xb8\xb8\ +\xbf\xb9\xb9\xc2\xbd\xbc\xc1\xba\xba\xc3\xbc\xb9\xc2\xba\xb8\xc3\ +\xba\xb7\xc5\xbd\xbb\xc6\xbf\xbd\xc4\xbd\xbc\xc7\xc1\xc0\xc7\xc1\ +\xc1\xc9\xc4\xc3\xca\xc4\xc3\xc9\xc2\xc2\xcc\xc6\xc5\xcb\xc5\xc5\ +\xca\xc5\xc4\xcd\xc7\xc6\xcd\xc8\xc8\xce\xc7\xc5\xcf\xc7\xc7\xd0\ +\xc8\xc6\xcd\xc5\xc2\xcf\xc6\xc3\xcf\xc6\xc4\xce\xc6\xc3\xcd\xc5\ +\xc2\xcf\xc6\xc4\xce\xc7\xc5\xce\xc7\xc5\xcc\xc6\xc3\xcc\xc5\xc2\ +\xcd\xc6\xc3\xcb\xc2\xc0\xcb\xc3\xc1\xcb\xc3\xc1\xcb\xc4\xc3\xc9\ +\xc2\xbf\xc9\xc1\xbe\xc8\xc0\xbd\xc7\xbf\xbd\xc8\xbf\xbc\xc7\xc0\ +\xbd\xc7\xbf\xbe\xc7\xc0\xbe\xc6\xc0\xbe\xc6\xc1\xbd\xc5\xbc\xb9\ +\xc2\xb9\xb3\xbd\xb1\xab\xb8\xa9\xa2\xb6\xa5\x9f\xb5\xa4\x9d\xb0\ +\x9d\x98\xac\x99\x94\xa5\x90\x89\xa2\x8c\x84\xa1\x8a\x80\x9e\x86\ +\x7c\x9d\x87\x7f\x9e\x8b\x85\x9f\x90\x8b\x9f\x93\x8c\x9f\x93\x8d\ +\xa2\x97\x93\xa5\x9d\x98\xa7\x9f\x9b\xa8\xa1\x9e\xa7\xa2\x9f\xa6\ +\xa1\x9f\xa6\xa1\x9f\xa5\xa0\x9e\xa3\x9f\x9f\x9f\x9b\x99\x9d\x98\ +\x97\x97\x91\x8e\x74\x61\x5a\x9a\x93\x91\x98\x92\x90\x97\x91\x90\ +\x94\x8f\x8e\x91\x8c\x8b\x8f\x8a\x8a\x8c\x87\x87\x89\x84\x83\x85\ +\x80\x7f\x81\x7d\x7b\x7d\x78\x77\x77\x73\x71\x74\x6f\x6e\x6f\x6a\ +\x69\x68\x64\x63\x60\x5d\x5c\x5c\x5a\x59\x52\x50\x4f\x48\x47\x47\ +\x3e\x40\x40\x31\x35\x36\x23\x26\x27\x1d\x1c\x19\x02\x03\x03\x00\ +\x00\x00\x0e\x0e\x0f\x2b\x2a\x2b\x3d\x3d\x3d\x4b\x4a\x4a\x55\x55\ +\x56\x5e\x5e\x5f\x69\x6b\x6b\x71\x73\x74\x76\x79\x7b\x7b\x7e\x7f\ +\x7f\x82\x82\x81\x84\x85\x80\x83\x85\x7f\x82\x85\x7f\x81\x84\x66\ +\x69\x6a\x72\x76\x78\x79\x7d\x80\x78\x7d\x80\x78\x7c\x81\x76\x7c\ +\x81\x75\x7b\x80\x72\x78\x7d\x72\x78\x7d\x6f\x77\x7d\x70\x77\x7e\ +\x6d\x76\x7d\x6e\x75\x7d\x6b\x73\x7b\x67\x6f\x78\x67\x6f\x78\x68\ +\x71\x7a\x61\x6a\x73\x5a\x63\x6c\x60\x69\x72\x64\x6d\x77\x63\x6c\ +\x76\x63\x6d\x76\x64\x6e\x78\x63\x6d\x79\x00\x00\x00\xa5\xa1\xa1\ +\xa5\xa2\xa1\xa9\xa4\xa4\xac\xa7\xa8\xa9\xa4\xa4\xab\xa7\xa6\xaf\ +\xab\xab\xb1\xac\xad\xb1\xac\xad\xb4\xaf\xb0\xa9\xa4\xa4\xad\xa7\ +\xa8\xb1\xab\xac\xb0\xaa\xaa\xb2\xad\xad\xb0\xab\xaa\xb3\xae\xae\ +\xb6\xb0\xb1\xb6\xb0\xb0\xb7\xb0\xb0\xba\xb4\xb4\xbb\xb6\xb5\xc1\ +\xbb\xb9\xc1\xba\xb7\xbe\xb8\xb3\xc3\xbc\xb9\xc2\xb9\xb6\xc1\xb9\ +\xb6\xc2\xbb\xb8\xc0\xb9\xb7\xc4\xbe\xbc\xc6\xc0\xbf\xc5\xbd\xbd\ +\xc4\xbe\xbe\xc6\xc0\xc0\xc8\xc3\xc2\xc6\xc1\xc1\xc6\xc0\xc0\xc9\ +\xc1\xc2\xc8\xc2\xc2\xc8\xc1\xc1\xc9\xc2\xc1\xc7\xc1\xbe\xc7\xbf\ +\xbc\xc8\xbf\xbd\xc8\xc0\xbf\xc6\xbf\xbe\xc5\xbe\xbc\xc5\xbe\xbc\ +\xc5\xbe\xbc\xc6\xbe\xbd\xc5\xbe\xbc\xc3\xbd\xba\xc2\xbb\xb8\xc1\ +\xb9\xb6\xc0\xb9\xb7\xc0\xb9\xb5\xc0\xb9\xb6\xbf\xb9\xb6\xbf\xb7\ +\xb4\xbd\xb5\xb2\xba\xb2\xaf\xba\xb2\xaf\xba\xb3\xaf\xb8\xb1\xaf\ +\xb8\xb0\xaf\xb8\xb1\xaf\xb6\xae\xab\xb6\xaf\xac\xb5\xae\xaa\xb4\ +\xad\xaa\xb4\xad\xa9\xb4\xad\xa9\xb2\xab\xa8\xb0\xa8\xa6\xac\xa5\ +\xa1\xa7\x9d\x9a\xa4\x99\x94\xa2\x96\x91\x9e\x91\x8b\x9c\x8f\x8a\ +\x99\x8d\x88\x96\x88\x83\x91\x82\x7c\x8d\x7e\x77\x88\x79\x71\x84\ +\x73\x6d\x81\x70\x68\x82\x72\x6b\x80\x6f\x68\x7e\x6d\x68\x7b\x6a\ +\x65\x79\x6a\x65\x77\x68\x63\x73\x64\x5d\x75\x67\x61\x71\x62\x5c\ +\x7b\x70\x6c\x84\x80\x7e\x83\x7e\x7c\x81\x7d\x7c\x7e\x7b\x79\x7c\ +\x78\x77\x7a\x76\x76\x77\x73\x72\x74\x70\x6f\x70\x6c\x6b\x6e\x69\ +\x68\x68\x65\x63\x65\x61\x60\x60\x5d\x5c\x5b\x58\x56\x56\x53\x52\ +\x4f\x4d\x4c\x53\x4e\x48\x4f\x49\x41\x3c\x3b\x39\x32\x33\x33\x29\ +\x2a\x29\x3a\x32\x28\x22\x1d\x16\x06\x05\x03\x0c\x0a\x07\x1f\x1b\ +\x18\x2b\x2a\x2b\x39\x38\x39\x44\x44\x45\x4f\x4e\x50\x59\x5a\x5b\ +\x62\x63\x64\x6c\x6e\x6f\x74\x76\x79\x7a\x7c\x7e\x7e\x7f\x82\x7e\ +\x81\x82\x7e\x82\x83\x7e\x82\x84\x75\x78\x7b\x69\x6d\x6e\x76\x7a\ +\x7e\x79\x7d\x82\x77\x7c\x7f\x79\x7d\x82\x76\x7a\x80\x72\x78\x7d\ +\x71\x77\x7c\x72\x78\x7d\x71\x79\x80\x6f\x76\x7d\x6e\x76\x7d\x6d\ +\x74\x7d\x6b\x73\x7c\x68\x71\x7a\x66\x6f\x78\x66\x6e\x77\x64\x6d\ +\x76\x62\x6b\x74\x64\x6d\x76\x62\x6b\x75\x62\x6c\x76\x62\x6c\x76\ +\x64\x6e\x78\x5e\x6a\x76\x00\x00\x00\xa5\xa0\xa0\xa6\xa2\xa1\xab\ +\xa6\xa5\xad\xa7\xa7\xa9\xa5\xa4\xac\xa8\xa7\xac\xa8\xa7\xab\xa6\ +\xa7\xad\xa8\xa9\xaf\xaa\xab\xaa\xa5\xa6\xad\xa7\xa8\xae\xa8\xa9\ +\xad\xa7\xa8\xad\xa8\xa9\xad\xa9\xa8\xb2\xac\xad\xb6\xb1\xb1\xb6\ +\xb1\xb0\xb4\xae\xad\xb7\xb0\xaf\xb8\xb2\xb0\xb8\xb3\xb1\xbb\xb4\ +\xb1\xb7\xb1\xad\xbd\xb6\xb5\xbe\xb7\xb4\xbd\xb7\xb4\xbb\xb5\xb2\ +\xba\xb2\xaf\xbc\xb5\xb3\xbe\xb7\xb7\xbd\xb6\xb5\xbd\xb7\xb5\xbe\ +\xb8\xb7\xc0\xb9\xb9\xbf\xb9\xb9\xbe\xb9\xb8\xc0\xbb\xba\xbf\xb8\ +\xb7\xbf\xb8\xb8\xbf\xb8\xb7\xbd\xb6\xb5\xbd\xb6\xb4\xbe\xb5\xb5\ +\xbe\xb7\xb7\xbc\xb6\xb6\xbb\xb4\xb4\xba\xb4\xb3\xb9\xb2\xb2\xb9\ +\xb2\xb2\xb8\xb1\xb0\xb6\xb0\xae\xb4\xad\xaa\xb2\xaa\xa7\xb0\xa9\ +\xa6\xb1\xaa\xa6\xb0\xaa\xa7\xb0\xaa\xa8\xaf\xa8\xa6\xae\xa7\xa5\ +\xac\xa7\xa4\xaa\xa4\xa2\xa9\xa3\xa0\xa7\xa2\x9f\xa7\xa1\x9e\xa6\ +\x9f\x9c\xa5\x9e\x9c\xa2\x9c\x9a\xa1\x9b\x98\xa0\x99\x96\xa0\x99\ +\x96\x9f\x9a\x97\x9f\x99\x96\x9d\x97\x94\x9c\x96\x93\x9a\x94\x92\ +\x99\x93\x90\x96\x91\x8e\x93\x8f\x8c\x92\x8d\x8a\x8f\x89\x86\x8c\ +\x86\x84\x88\x83\x80\x87\x81\x7e\x84\x7e\x7b\x82\x7b\x78\x81\x7a\ +\x77\x7f\x78\x75\x7d\x76\x73\x7b\x75\x72\x79\x73\x71\x77\x72\x6f\ +\x76\x6f\x6d\x73\x6c\x6a\x71\x6b\x68\x6f\x69\x67\x72\x6d\x6b\x70\ +\x6c\x6a\x6e\x6a\x69\x6c\x68\x66\x6a\x66\x65\x67\x64\x63\x65\x62\ +\x62\x63\x60\x5e\x5f\x5d\x5b\x5e\x5a\x59\x58\x54\x53\x53\x50\x4e\ +\x50\x4e\x4c\x4e\x49\x46\x4c\x47\x44\x4c\x46\x40\x4f\x47\x3e\x53\ +\x48\x3d\x53\x47\x3a\x47\x3e\x34\x3c\x36\x2f\x30\x2a\x23\x49\x39\ +\x29\x1d\x17\x10\x1a\x13\x0c\x2f\x24\x18\x37\x2d\x23\x2a\x29\x2a\ +\x34\x34\x34\x3f\x3e\x3e\x47\x47\x48\x52\x53\x53\x5d\x5f\x5f\x67\ +\x69\x6b\x72\x74\x76\x79\x7b\x7c\x7c\x7f\x82\x7d\x80\x81\x7e\x82\ +\x83\x7e\x82\x83\x6b\x6f\x71\x6d\x71\x74\x7b\x7f\x83\x79\x7d\x81\ +\x77\x7a\x7f\x77\x7c\x7f\x74\x79\x7d\x72\x78\x7d\x70\x76\x7b\x6f\ +\x75\x7a\x6d\x75\x7c\x6f\x77\x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x73\ +\x7c\x69\x72\x7b\x68\x71\x7a\x65\x6e\x77\x66\x6f\x78\x64\x6d\x76\ +\x64\x6d\x76\x61\x6a\x73\x62\x6c\x75\x62\x6c\x76\x61\x6d\x76\x53\ +\x61\x6c\x00\x00\x00\xa8\xa3\xa3\xa8\xa3\xa3\xa9\xa4\xa4\xac\xa7\ +\xa8\xaa\xa4\xa5\xad\xa8\xa8\xac\xa9\xa9\xaa\xa5\xa4\xac\xa7\xa6\ +\xa7\xa3\xa4\xa7\xa1\xa2\xad\xa7\xa8\xac\xa6\xa7\xab\xa5\xa6\xa9\ +\xa4\xa4\xa9\xa4\xa4\xae\xaa\xaa\xaf\xaa\xa9\xb0\xa9\xa9\xaf\xa9\ +\xaa\xaf\xaa\xaa\xb3\xae\xad\xb2\xae\xad\xb1\xab\xa8\xb2\xaa\xa6\ +\xb3\xac\xa9\xb4\xad\xaa\xb5\xad\xad\xb4\xad\xac\xb2\xac\xa8\xb5\ +\xaf\xac\xb7\xb0\xae\xb4\xae\xac\xb4\xad\xab\xb5\xae\xad\xb4\xae\ +\xad\xb4\xae\xad\xb4\xae\xad\xb3\xad\xac\xb3\xac\xac\xb2\xab\xab\ +\xb3\xac\xab\xb0\xaa\xa9\xb0\xaa\xa8\xaf\xa9\xa9\xae\xa8\xa8\xae\ +\xa9\xa9\xab\xa6\xa6\xaa\xa4\xa4\xaa\xa3\xa4\xa8\xa2\xa2\xa6\xa0\ +\xa0\xa5\xa0\x9e\xa3\x9d\x9c\xa1\x9b\x98\xa0\x99\x97\x9e\x98\x96\ +\x9e\x99\x96\x9c\x97\x95\x9c\x97\x95\x9a\x95\x93\x99\x95\x93\x97\ +\x92\x90\x96\x92\x90\x94\x8f\x8d\x93\x8e\x8c\x90\x8c\x8a\x8f\x8a\ +\x88\x8e\x88\x86\x8c\x86\x84\x8b\x86\x83\x8a\x84\x82\x8a\x85\x82\ +\x89\x84\x81\x89\x83\x81\x86\x81\x7f\x84\x7f\x7d\x82\x7e\x7c\x80\ +\x7c\x79\x7e\x7a\x77\x7c\x78\x76\x79\x75\x72\x77\x73\x70\x75\x71\ +\x6f\x74\x6f\x6d\x71\x6d\x6a\x70\x6c\x6a\x6e\x6b\x69\x6d\x6a\x68\ +\x6c\x68\x67\x6a\x66\x64\x68\x65\x63\x65\x63\x61\x65\x61\x5f\x63\ +\x5f\x5d\x5e\x5a\x58\x59\x55\x54\x59\x56\x52\x5c\x56\x52\x5f\x57\ +\x50\x5b\x54\x4d\x5e\x56\x4f\x5b\x52\x4b\x56\x4d\x45\x54\x4b\x41\ +\x50\x46\x3e\x4d\x42\x39\x48\x3d\x34\x42\x38\x2f\x45\x3a\x2f\x44\ +\x38\x2c\x46\x39\x2c\x4a\x3b\x2c\x54\x42\x2f\x55\x42\x2f\x57\x43\ +\x2f\x4e\x3d\x2a\x4e\x3c\x2a\x33\x29\x1e\x2e\x24\x1a\x34\x27\x1a\ +\x3f\x2f\x1f\x43\x33\x24\x4f\x3e\x2d\x49\x3c\x2e\x3a\x34\x2f\x39\ +\x35\x31\x41\x42\x42\x4c\x4d\x4d\x58\x59\x5a\x63\x65\x66\x6e\x71\ +\x71\x76\x78\x78\x79\x7b\x7c\x7b\x7e\x7f\x7c\x80\x81\x7a\x7e\x7f\ +\x6a\x6d\x70\x74\x79\x7c\x7e\x83\x87\x7c\x80\x85\x79\x7d\x81\x75\ +\x7a\x7e\x75\x7a\x7f\x72\x78\x7d\x72\x77\x7c\x6f\x76\x7b\x70\x77\ +\x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x74\x7d\x6b\x72\x7b\x68\x70\x79\ +\x65\x6e\x77\x65\x6e\x77\x66\x6f\x78\x66\x6f\x78\x65\x6e\x77\x64\ +\x6d\x76\x60\x6b\x73\x62\x6c\x75\x5b\x67\x71\x37\x43\x4d\x00\x00\ +\x00\xa6\xa2\xa2\xa5\xa0\xa1\xa5\xa0\xa1\xa7\xa2\xa3\xa8\xa4\xa5\ +\xa9\xa4\xa4\xa8\xa3\xa2\xa4\xa1\xa0\xa6\xa2\xa2\xa3\x9e\x9e\xa1\ +\x9b\x9b\xa5\xa0\xa1\xa6\xa1\xa2\xa5\x9f\xa0\xa2\x9d\x9d\xa2\x9c\ +\x9b\xa8\xa3\xa3\xa8\xa2\xa2\xa5\xa0\xa0\xa6\xa0\xa0\xa8\xa3\xa2\ +\xaa\xa6\xa6\xa9\xa5\xa5\xa6\xa0\x9d\xa8\xa1\x9e\xaa\xa3\xa3\xa9\ +\xa2\x9f\xa7\xa0\x9f\xa7\xa0\x9f\xa9\xa2\xa0\xa9\xa2\xa0\xa9\xa3\ +\xa2\xa8\xa2\xa1\xa8\xa2\x9f\xa7\xa1\x9e\xa6\x9f\x9e\xa6\xa0\x9f\ +\xa4\xa0\x9f\xa3\x9e\x9d\xa3\x9d\x9b\xa2\x9d\x9d\xa2\x9c\x9c\xa1\ +\x9b\x99\xa0\x9b\x9a\x9e\x98\x98\x9b\x96\x96\x9b\x96\x96\x99\x95\ +\x94\x98\x94\x93\x95\x93\x92\x95\x90\x90\x94\x8e\x8e\x91\x8d\x8b\ +\x8e\x8a\x89\x8e\x88\x86\x8c\x86\x84\x8c\x85\x84\x8a\x86\x84\x87\ +\x83\x81\x86\x82\x80\x84\x80\x7e\x83\x7f\x7d\x81\x7d\x7b\x80\x7c\ +\x7b\x7e\x7b\x79\x7d\x79\x77\x7b\x77\x75\x79\x76\x74\x78\x73\x72\ +\x77\x74\x72\x77\x73\x71\x76\x71\x6f\x75\x70\x6e\x74\x70\x6d\x73\ +\x6f\x6e\x71\x6d\x6b\x70\x6c\x6b\x6d\x69\x67\x6b\x68\x66\x69\x66\ +\x64\x66\x62\x61\x65\x62\x5f\x60\x5d\x5b\x5b\x57\x56\x55\x52\x50\ +\x53\x4f\x4d\x53\x4e\x4b\x52\x4d\x49\x54\x4e\x48\x56\x4f\x48\x59\ +\x50\x48\x58\x4f\x46\x57\x4d\x43\x59\x4d\x41\x5e\x50\x41\x53\x46\ +\x39\x54\x46\x38\x52\x43\x35\x4f\x41\x32\x4f\x40\x2f\x42\x34\x27\ +\x45\x37\x28\x3f\x30\x22\x3b\x2c\x1d\x3c\x2d\x1e\x36\x2a\x1b\x3e\ +\x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3a\x2c\x1d\x31\x24\x18\x35\x28\ +\x1a\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x2d\x22\x15\x29\x1f\x14\ +\x2f\x24\x17\x37\x29\x1b\x44\x33\x22\x3c\x2e\x1e\x4c\x39\x26\x5a\ +\x44\x2d\x5e\x47\x2f\x68\x4e\x33\x52\x41\x2e\x3e\x34\x29\x3d\x3e\ +\x3e\x47\x48\x49\x54\x56\x56\x5f\x60\x62\x69\x6b\x6c\x72\x74\x75\ +\x7a\x7c\x7c\x7a\x7d\x7e\x7b\x80\x80\x71\x74\x77\x6a\x6c\x71\x79\ +\x7d\x80\x7d\x82\x86\x79\x7e\x82\x79\x7e\x81\x78\x7c\x80\x73\x78\ +\x7d\x71\x77\x7c\x71\x77\x7c\x6f\x75\x7b\x71\x77\x7e\x70\x76\x7d\ +\x6d\x74\x7c\x6b\x73\x7c\x68\x70\x79\x66\x6f\x78\x65\x6e\x77\x65\ +\x6d\x76\x63\x6c\x75\x63\x6c\x75\x66\x6f\x78\x64\x6e\x77\x63\x6e\ +\x76\x61\x6b\x74\x58\x62\x6c\x1e\x25\x2d\x00\x00\x00\xa6\xa2\xa2\ +\xa3\x9e\x9e\xa3\x9e\x9f\xa4\x9f\xa0\xa5\xa0\x9f\xa4\x9f\x9f\xa1\ +\x9c\x9c\x9f\x9b\x99\x9f\x9a\x9a\x9b\x96\x96\x9b\x97\x96\x9b\x98\ +\x96\x9a\x95\x96\x9c\x97\x97\x9b\x96\x97\x9a\x93\x93\x9c\x96\x96\ +\x9b\x95\x95\x9b\x94\x94\x9b\x95\x95\x9b\x96\x95\x9b\x95\x95\x9b\ +\x97\x96\x9c\x97\x96\x9d\x98\x97\x9c\x96\x96\x9c\x97\x96\x9a\x94\ +\x91\x97\x91\x8e\x9a\x94\x92\x98\x93\x91\x99\x93\x91\x96\x90\x8e\ +\x96\x90\x8e\x96\x91\x90\x95\x90\x8e\x94\x90\x8f\x93\x8d\x8d\x91\ +\x8c\x8c\x8e\x8a\x88\x8e\x8a\x88\x8d\x88\x89\x8b\x87\x85\x8d\x85\ +\x83\x8b\x84\x80\x87\x83\x81\x87\x82\x83\x85\x81\x81\x83\x7e\x7e\ +\x82\x7d\x7d\x81\x7c\x7c\x7f\x7b\x7a\x7d\x79\x78\x7b\x76\x75\x7a\ +\x75\x74\x77\x73\x71\x76\x72\x70\x76\x72\x71\x73\x6f\x6e\x73\x70\ +\x6e\x70\x6d\x6b\x6f\x6c\x6a\x6e\x6b\x69\x6c\x68\x66\x6a\x66\x65\ +\x69\x64\x63\x67\x63\x62\x65\x62\x61\x65\x61\x5f\x63\x5f\x5e\x60\ +\x5d\x5b\x61\x5d\x59\x62\x5e\x5b\x63\x5d\x57\x5c\x56\x52\x57\x51\ +\x4d\x60\x57\x4e\x5e\x55\x4a\x61\x56\x4b\x6b\x5c\x4d\x68\x57\x48\ +\x5f\x50\x42\x56\x48\x3a\x4d\x40\x34\x4f\x41\x33\x4a\x3c\x2f\x47\ +\x39\x2b\x3c\x31\x24\x37\x2d\x21\x39\x2e\x20\x3a\x2d\x1f\x3b\x2d\ +\x1e\x3c\x2d\x1e\x39\x2b\x1d\x3f\x30\x20\x39\x2c\x1d\x3e\x2f\x20\ +\x39\x2b\x1d\x30\x25\x18\x2b\x21\x16\x23\x1a\x11\x22\x19\x10\x19\ +\x13\x0c\x1b\x15\x0d\x1d\x16\x0e\x1e\x17\x0e\x23\x1a\x11\x31\x24\ +\x17\x36\x28\x1a\x2b\x20\x15\x1e\x17\x0f\x22\x19\x10\x2d\x21\x15\ +\x30\x24\x17\x2a\x20\x14\x2b\x21\x15\x30\x24\x17\x26\x1d\x13\x26\ +\x1d\x12\x24\x1b\x11\x22\x1a\x10\x32\x27\x19\x43\x32\x21\x37\x29\ +\x1a\x4c\x39\x25\x64\x4b\x31\x50\x42\x34\x3a\x3a\x3b\x44\x45\x46\ +\x50\x51\x52\x5d\x5e\x60\x67\x68\x69\x70\x72\x73\x76\x7a\x7c\x7b\ +\x7e\x81\x7d\x80\x84\x6b\x6e\x72\x6d\x71\x74\x80\x84\x86\x7c\x80\ +\x84\x7b\x7f\x83\x79\x7e\x81\x78\x7d\x80\x76\x7b\x7f\x74\x78\x7d\ +\x73\x78\x7d\x71\x77\x7c\x6f\x75\x7d\x6f\x75\x7c\x6d\x74\x7b\x6b\ +\x72\x7b\x69\x70\x79\x65\x6e\x77\x66\x6f\x78\x68\x71\x7a\x68\x71\ +\x7a\x64\x6d\x76\x65\x6d\x76\x62\x6c\x75\x65\x70\x78\x63\x6d\x77\ +\x54\x60\x6b\x1c\x23\x29\x00\x00\x00\xa7\xa2\xa3\xa5\xa1\xa2\xa3\ +\x9e\x9f\x9e\x99\x99\x9e\x9a\x9a\x9d\x99\x98\x99\x96\x94\x97\x94\ +\x92\x94\x90\x8f\x90\x8c\x8c\x92\x8d\x8d\x91\x8c\x8b\x91\x8d\x8d\ +\x8e\x89\x89\x8c\x87\x86\x8e\x89\x89\x90\x8b\x8b\x8e\x88\x88\x8c\ +\x87\x87\x8c\x86\x86\x8d\x87\x88\x8c\x87\x87\x8b\x86\x86\x88\x84\ +\x82\x8c\x88\x86\x8b\x87\x85\x8c\x87\x86\x88\x84\x81\x87\x82\x80\ +\x88\x83\x83\x89\x84\x84\x87\x82\x81\x84\x7e\x7d\x8b\x7f\x76\x81\ +\x7d\x7b\x80\x7b\x79\x80\x7b\x7a\x7e\x79\x79\x7e\x79\x79\x7b\x77\ +\x75\x7a\x76\x74\x79\x75\x73\x77\x73\x71\x79\x73\x6f\x77\x71\x6f\ +\x73\x6f\x6f\x72\x6e\x6e\x70\x6c\x6c\x6f\x6b\x6b\x6d\x69\x68\x6b\ +\x67\x67\x6a\x66\x66\x68\x65\x65\x66\x63\x62\x65\x63\x61\x63\x60\ +\x5f\x63\x60\x5f\x61\x5e\x5d\x5f\x5c\x5b\x5b\x59\x56\x53\x51\x4f\ +\x4e\x4b\x49\x50\x4c\x47\x53\x4d\x47\x54\x4c\x44\x5c\x51\x46\x60\ +\x53\x46\x55\x4b\x40\x56\x4c\x42\x56\x4b\x41\x4f\x45\x3b\x55\x48\ +\x3c\x4e\x43\x38\x4f\x43\x37\x4b\x3e\x32\x46\x39\x2b\x4a\x3a\x2a\ +\x4e\x3c\x29\x48\x38\x26\x53\x3f\x2a\x4e\x3b\x27\x41\x31\x21\x3d\ +\x2f\x1f\x3c\x2e\x1e\x3e\x30\x20\x3d\x2e\x1f\x39\x2b\x1c\x32\x26\ +\x18\x2a\x20\x14\x24\x1b\x10\x2a\x1f\x14\x30\x23\x17\x27\x1d\x12\ +\x21\x18\x0f\x1d\x15\x0d\x1c\x15\x0d\x1f\x17\x0f\x22\x1a\x11\x1e\ +\x17\x0e\x22\x19\x10\x1f\x18\x0f\x2b\x21\x15\x24\x1b\x11\x27\x1e\ +\x13\x28\x1e\x13\x2b\x20\x14\x29\x1f\x14\x35\x27\x19\x35\x28\x1a\ +\x33\x27\x19\x29\x1f\x14\x21\x18\x0f\x28\x1e\x13\x32\x26\x18\x35\ +\x28\x1a\x31\x25\x18\x30\x23\x16\x2e\x22\x16\x2e\x22\x16\x30\x24\ +\x17\x28\x1e\x13\x26\x1d\x12\x37\x29\x1b\x29\x1f\x14\x32\x25\x18\ +\x6f\x54\x38\x63\x51\x3c\x36\x37\x37\x41\x42\x43\x4e\x4f\x50\x5b\ +\x5c\x5d\x67\x68\x69\x70\x71\x72\x74\x77\x79\x79\x7d\x80\x76\x7a\ +\x7d\x66\x6a\x6d\x71\x75\x77\x7f\x82\x84\x7b\x7e\x81\x79\x7e\x80\ +\x78\x7d\x80\x76\x7b\x7e\x73\x77\x7c\x73\x78\x7d\x73\x77\x7e\x6f\ +\x75\x7b\x6d\x73\x7b\x6d\x73\x7b\x6c\x74\x7c\x6d\x74\x7d\x6a\x71\ +\x7a\x69\x72\x7b\x6a\x72\x7b\x69\x71\x7a\x68\x71\x7a\x66\x6f\x78\ +\x66\x6f\x78\x65\x70\x79\x65\x6e\x78\x65\x6f\x79\x51\x5c\x67\x18\ +\x1e\x25\x00\x00\x00\xa4\xa1\xa1\xa2\x9f\x9f\x9d\x9a\x9b\x99\x94\ +\x95\x98\x94\x95\x92\x8e\x8e\x8e\x8a\x8a\x89\x85\x84\x85\x81\x7f\ +\x83\x80\x7f\x83\x7e\x7c\x80\x7d\x7b\x81\x7c\x7c\x7f\x7a\x79\x7e\ +\x79\x78\x7e\x79\x77\x7d\x79\x77\x7c\x77\x77\x7a\x75\x75\x7b\x76\ +\x76\x7c\x77\x76\x7a\x75\x74\x79\x73\x73\x75\x70\x6e\x77\x73\x71\ +\x78\x73\x72\x76\x72\x71\x76\x71\x70\x76\x71\x6f\x77\x73\x72\x75\ +\x71\x71\x74\x70\x6e\x72\x6d\x6c\x78\x6e\x68\x6f\x6b\x6a\x6d\x69\ +\x68\x6b\x67\x66\x6a\x67\x67\x69\x66\x65\x68\x64\x63\x66\x63\x61\ +\x64\x61\x60\x64\x60\x5f\x62\x5f\x5e\x61\x5e\x5e\x60\x5d\x5b\x5e\ +\x5c\x5a\x5d\x5a\x59\x59\x56\x55\x53\x50\x4f\x4d\x4a\x48\x49\x46\ +\x42\x4a\x45\x40\x55\x4b\x43\x59\x4d\x43\x55\x4a\x3e\x50\x44\x39\ +\x4f\x43\x36\x60\x4f\x3e\x54\x45\x36\x48\x3b\x2d\x4f\x3f\x2f\x4b\ +\x3b\x2c\x43\x35\x27\x3f\x32\x24\x3f\x31\x22\x3b\x2d\x1f\x36\x29\ +\x1c\x38\x2c\x1f\x40\x32\x22\x41\x32\x22\x45\x35\x24\x36\x29\x1c\ +\x37\x2a\x1c\x37\x2a\x1b\x36\x28\x1b\x2a\x20\x14\x2d\x22\x16\x2b\ +\x20\x14\x2a\x1f\x14\x2c\x21\x15\x2f\x23\x16\x29\x1f\x14\x23\x1a\ +\x11\x25\x1c\x12\x22\x19\x10\x27\x1e\x13\x2f\x24\x17\x35\x28\x19\ +\x2e\x23\x16\x2d\x21\x15\x2c\x21\x15\x29\x1f\x13\x2a\x20\x14\x24\ +\x1b\x11\x2b\x20\x15\x35\x28\x1a\x35\x28\x1a\x2c\x22\x15\x2d\x21\ +\x15\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x37\x29\x1a\x2b\x20\x14\ +\x2b\x21\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x34\ +\x27\x19\x2d\x22\x15\x29\x1f\x13\x2a\x20\x14\x38\x2a\x1b\x37\x29\ +\x1a\x31\x25\x17\x2f\x23\x16\x31\x25\x18\x3c\x2e\x1d\x2b\x20\x14\ +\x21\x19\x10\x2f\x24\x17\x28\x1e\x13\x2a\x1f\x14\x52\x3f\x2a\x6e\ +\x56\x3e\x33\x34\x34\x3e\x3f\x3f\x4c\x4d\x4e\x59\x5b\x5b\x66\x67\ +\x68\x6d\x71\x71\x73\x77\x79\x77\x7a\x7e\x6c\x6e\x71\x68\x6b\x6e\ +\x7c\x81\x83\x7c\x80\x81\x7a\x80\x81\x7a\x7f\x82\x75\x7a\x7d\x75\ +\x79\x7e\x73\x78\x7d\x72\x78\x7e\x73\x78\x80\x6f\x75\x7d\x6f\x74\ +\x7d\x6c\x73\x7c\x6c\x73\x7c\x6d\x74\x7d\x6b\x74\x7d\x68\x71\x7a\ +\x66\x6f\x78\x66\x6f\x78\x66\x6f\x78\x67\x70\x7a\x65\x6f\x79\x63\ +\x6d\x77\x63\x6d\x78\x5e\x69\x74\x45\x51\x5a\x20\x24\x2c\x00\x00\ +\x00\xa1\x9d\x9d\x9d\x98\x99\x96\x92\x92\x90\x8c\x8d\x8b\x87\x88\ +\x85\x82\x82\x80\x7e\x7e\x7b\x77\x77\x77\x73\x73\x75\x72\x71\x73\ +\x6f\x6e\x6f\x6b\x6a\x70\x6c\x69\x6e\x6a\x68\x6f\x6a\x67\x6e\x6a\ +\x68\x6b\x67\x66\x69\x66\x64\x6a\x65\x65\x68\x64\x64\x68\x64\x64\ +\x66\x62\x61\x65\x60\x5f\x62\x5e\x5c\x66\x62\x60\x65\x61\x60\x64\ +\x60\x5e\x63\x5f\x5d\x62\x5e\x5d\x63\x5f\x5d\x62\x5e\x5d\x61\x5d\ +\x5c\x5f\x5b\x5a\x5d\x5a\x59\x5c\x59\x57\x5b\x58\x56\x59\x56\x56\ +\x53\x50\x4f\x4e\x4b\x49\x48\x46\x43\x4b\x46\x42\x50\x49\x42\x5a\ +\x4f\x44\x63\x54\x46\x64\x54\x43\x58\x49\x3b\x4e\x41\x33\x54\x44\ +\x35\x4d\x3e\x30\x49\x3b\x2d\x40\x34\x27\x40\x32\x25\x3c\x2f\x22\ +\x38\x2c\x1e\x37\x2a\x1c\x2c\x22\x16\x2b\x20\x15\x2a\x20\x15\x37\ +\x2a\x1b\x37\x29\x1b\x3b\x2c\x1d\x3c\x2d\x1e\x37\x29\x1b\x2e\x22\ +\x16\x26\x1d\x12\x23\x1a\x11\x1d\x16\x0e\x1f\x17\x0e\x1f\x17\x0f\ +\x25\x1c\x12\x31\x25\x18\x37\x29\x1a\x2b\x1f\x14\x2f\x24\x17\x31\ +\x24\x17\x39\x2b\x1c\x2a\x20\x14\x22\x1a\x11\x25\x1c\x12\x2a\x20\ +\x14\x2f\x23\x17\x36\x29\x1a\x31\x25\x18\x28\x1e\x14\x2d\x22\x15\ +\x2f\x23\x17\x36\x29\x1a\x3a\x2b\x1c\x38\x2a\x1b\x31\x25\x17\x32\ +\x25\x18\x2f\x23\x17\x2b\x21\x15\x2c\x22\x15\x2c\x21\x14\x2f\x23\ +\x16\x34\x27\x19\x35\x28\x19\x33\x27\x18\x2e\x22\x16\x31\x25\x17\ +\x32\x25\x18\x2b\x21\x14\x35\x28\x19\x22\x1a\x10\x22\x1a\x11\x27\ +\x1d\x13\x27\x1d\x13\x26\x1d\x13\x29\x1f\x14\x31\x24\x17\x33\x26\ +\x18\x34\x27\x19\x2e\x22\x16\x34\x26\x19\x33\x26\x18\x33\x27\x19\ +\x34\x27\x19\x3a\x2b\x1b\x3c\x2d\x1d\x2a\x20\x14\x22\x1a\x10\x28\ +\x1f\x13\x27\x1d\x12\x29\x1f\x14\x31\x25\x18\x66\x4f\x37\x33\x34\ +\x34\x3d\x3e\x3e\x4a\x4b\x4c\x57\x58\x58\x63\x64\x65\x6c\x6f\x70\ +\x72\x76\x76\x76\x79\x7c\x6a\x6c\x70\x6d\x70\x72\x7e\x82\x85\x7d\ +\x80\x82\x7b\x80\x82\x7a\x7f\x83\x74\x79\x7d\x74\x79\x7e\x74\x7a\ +\x7f\x72\x78\x7d\x73\x79\x7f\x70\x76\x7d\x6f\x74\x7d\x6f\x75\x7e\ +\x6d\x73\x7c\x6b\x72\x7b\x6b\x73\x7c\x69\x72\x7b\x67\x70\x7a\x65\ +\x6e\x78\x6a\x73\x7c\x66\x6f\x79\x64\x6e\x78\x63\x6d\x77\x64\x6d\ +\x79\x5c\x67\x71\x40\x49\x53\x26\x2c\x36\x00\x00\x00\x9f\x9a\x9b\ +\x98\x94\x95\x8f\x8c\x8c\x85\x82\x82\x7f\x7c\x7c\x79\x77\x77\x71\ +\x6e\x6e\x6b\x68\x67\x67\x65\x64\x65\x62\x62\x63\x60\x5d\x60\x5d\ +\x5b\x5e\x5a\x59\x5d\x5a\x57\x5c\x57\x55\x5c\x58\x56\x59\x55\x53\ +\x58\x54\x52\x58\x54\x53\x59\x55\x54\x56\x53\x52\x56\x53\x51\x55\ +\x50\x4e\x54\x50\x4d\x55\x51\x4f\x54\x50\x4d\x4e\x49\x46\x4b\x45\ +\x41\x4c\x45\x40\x4a\x43\x3d\x52\x48\x40\x5e\x50\x43\x4c\x41\x37\ +\x55\x46\x39\x52\x44\x35\x55\x45\x35\x53\x43\x32\x4d\x3d\x2e\x49\ +\x3a\x2a\x42\x34\x25\x46\x37\x28\x47\x37\x26\x3e\x30\x22\x3a\x2c\ +\x1e\x34\x28\x1b\x3b\x2d\x1e\x34\x27\x19\x2b\x21\x15\x28\x1f\x14\ +\x2e\x23\x16\x2c\x22\x16\x28\x1d\x14\x27\x1d\x13\x24\x1b\x12\x21\ +\x19\x10\x1b\x15\x0d\x1c\x15\x0d\x25\x1b\x12\x2b\x1f\x14\x32\x25\ +\x18\x34\x27\x19\x32\x26\x18\x2c\x21\x15\x27\x1e\x13\x21\x19\x10\ +\x23\x1a\x10\x22\x19\x10\x21\x1a\x10\x20\x17\x0f\x22\x19\x10\x2e\ +\x22\x16\x38\x2a\x1b\x34\x27\x18\x35\x27\x19\x38\x2a\x1b\x3d\x2d\ +\x1e\x37\x2a\x1b\x28\x1e\x13\x26\x1d\x13\x2e\x23\x16\x33\x26\x18\ +\x2e\x22\x16\x2b\x21\x14\x26\x1d\x13\x26\x1d\x12\x30\x25\x18\x32\ +\x26\x19\x35\x27\x1a\x37\x29\x1a\x30\x24\x17\x33\x26\x18\x30\x24\ +\x17\x33\x25\x18\x29\x1f\x14\x2b\x20\x15\x2a\x20\x14\x2d\x21\x15\ +\x38\x29\x1a\x3a\x2c\x1c\x32\x26\x18\x37\x29\x1a\x2d\x22\x16\x26\ +\x1d\x13\x2b\x20\x15\x29\x1f\x14\x1f\x18\x0f\x33\x26\x18\x31\x25\ +\x17\x27\x1e\x13\x24\x1b\x12\x27\x1e\x13\x30\x23\x16\x3a\x2b\x1c\ +\x36\x28\x1a\x2f\x23\x17\x2f\x23\x17\x34\x27\x19\x40\x2f\x1f\x3c\ +\x2d\x1d\x35\x28\x19\x2a\x20\x14\x26\x1c\x12\x26\x1d\x12\x27\x1d\ +\x12\x23\x1b\x11\x31\x24\x17\x5c\x46\x2f\x35\x35\x33\x3d\x3d\x3e\ +\x47\x48\x49\x55\x56\x57\x60\x61\x62\x6a\x6c\x6d\x71\x74\x76\x6d\ +\x6f\x72\x68\x69\x6e\x7a\x7e\x82\x7f\x84\x87\x7c\x81\x84\x7c\x80\ +\x84\x7c\x80\x86\x77\x7d\x81\x73\x7a\x7e\x75\x7b\x81\x73\x79\x7e\ +\x73\x79\x80\x71\x77\x7e\x6f\x75\x7d\x6c\x74\x7c\x6c\x72\x7c\x6c\ +\x73\x7c\x6a\x72\x7a\x68\x71\x7a\x68\x71\x7b\x66\x70\x7a\x67\x70\ +\x79\x69\x72\x7c\x65\x6f\x79\x64\x6e\x78\x63\x6c\x78\x5f\x68\x71\ +\x4c\x54\x5e\x33\x3a\x46\x00\x00\x00\x9b\x97\x98\x92\x8e\x8f\x8a\ +\x86\x86\x80\x7c\x7d\x74\x71\x71\x6d\x6a\x6a\x64\x62\x61\x5b\x59\ +\x58\x57\x54\x53\x54\x52\x51\x51\x4e\x4c\x51\x4e\x4c\x4e\x4b\x4a\ +\x4f\x4c\x4a\x4d\x4a\x47\x46\x41\x40\x3e\x3a\x38\x40\x3a\x36\x4c\ +\x42\x3a\x50\x45\x3b\x53\x47\x3b\x55\x47\x38\x56\x46\x35\x54\x43\ +\x32\x4e\x41\x33\x47\x3b\x30\x3e\x34\x29\x40\x34\x29\x38\x2e\x25\ +\x3a\x30\x23\x35\x2a\x1f\x2e\x24\x19\x34\x27\x1b\x36\x28\x1a\x28\ +\x1e\x13\x24\x1b\x11\x2f\x23\x18\x34\x27\x1a\x2f\x23\x17\x2f\x24\ +\x17\x35\x27\x1a\x3a\x2b\x1c\x32\x25\x18\x25\x1c\x12\x1b\x14\x0c\ +\x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x23\ +\x1b\x11\x25\x1c\x12\x23\x1a\x11\x23\x1b\x11\x20\x18\x0f\x23\x1b\ +\x11\x23\x1a\x11\x26\x1d\x12\x2f\x23\x17\x2d\x21\x15\x30\x24\x17\ +\x2e\x23\x16\x2c\x20\x15\x30\x24\x17\x2f\x24\x17\x2c\x21\x16\x26\ +\x1c\x12\x2b\x21\x15\x2a\x20\x14\x27\x1e\x12\x30\x24\x17\x30\x24\ +\x17\x2e\x22\x16\x2b\x20\x15\x2d\x21\x16\x34\x27\x18\x34\x27\x19\ +\x35\x28\x1a\x31\x25\x17\x29\x1e\x14\x2c\x21\x15\x23\x1b\x10\x24\ +\x1b\x12\x26\x1d\x13\x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x36\x29\ +\x1a\x35\x28\x1a\x37\x29\x1a\x33\x27\x18\x32\x26\x18\x30\x24\x17\ +\x31\x25\x18\x2c\x21\x16\x25\x1d\x12\x24\x1b\x11\x2e\x22\x16\x2c\ +\x20\x15\x3f\x2f\x1f\x40\x31\x1f\x2f\x24\x17\x1e\x17\x0e\x20\x19\ +\x0f\x21\x1a\x10\x21\x19\x10\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\ +\x24\x1c\x11\x28\x1e\x14\x28\x1e\x13\x2c\x22\x15\x34\x27\x19\x30\ +\x24\x17\x30\x24\x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2d\x1d\x31\x25\ +\x18\x30\x24\x17\x2a\x1f\x14\x2f\x23\x17\x2d\x22\x15\x24\x1b\x11\ +\x2c\x21\x15\x6c\x52\x38\x3c\x38\x33\x3c\x3d\x3d\x47\x48\x48\x54\ +\x56\x56\x5f\x60\x60\x68\x6a\x6b\x70\x73\x76\x68\x69\x6d\x64\x66\ +\x69\x7e\x82\x86\x7e\x82\x86\x7c\x81\x85\x7a\x7e\x82\x78\x7e\x83\ +\x79\x7f\x84\x77\x7d\x82\x74\x7a\x80\x74\x7a\x80\x70\x76\x7d\x70\ +\x76\x7e\x70\x76\x7f\x6f\x76\x7e\x6c\x73\x7c\x6c\x72\x7c\x6b\x73\ +\x7c\x69\x72\x7a\x68\x71\x7b\x65\x6f\x78\x66\x70\x7a\x66\x70\x7a\ +\x66\x6f\x7a\x65\x6f\x79\x65\x6f\x78\x62\x6c\x75\x58\x61\x6a\x43\ +\x4a\x56\x00\x00\x00\x99\x92\x8f\x8e\x88\x88\x84\x7e\x7e\x76\x72\ +\x73\x65\x60\x5e\x60\x5a\x57\x47\x43\x41\x49\x43\x3d\x37\x33\x2f\ +\x48\x3e\x34\x66\x53\x41\x59\x49\x37\x4f\x3f\x2f\x49\x3a\x29\x4f\ +\x3f\x2c\x4f\x3e\x2c\x57\x43\x30\x4f\x3d\x2a\x51\x3f\x2a\x45\x36\ +\x25\x32\x27\x1a\x28\x20\x14\x2b\x20\x15\x29\x1e\x14\x2b\x21\x16\ +\x2c\x21\x16\x2d\x23\x17\x26\x1d\x12\x1e\x16\x0f\x2c\x21\x16\x2e\ +\x22\x16\x29\x1f\x13\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2d\x22\ +\x15\x22\x19\x10\x29\x1f\x14\x26\x1c\x12\x27\x1d\x12\x2a\x1f\x14\ +\x32\x25\x18\x36\x28\x1a\x32\x25\x18\x29\x1f\x14\x26\x1d\x12\x2c\ +\x21\x15\x2e\x22\x17\x2c\x21\x14\x2a\x1f\x14\x29\x1f\x14\x28\x1e\ +\x13\x24\x1b\x11\x28\x1e\x13\x2a\x20\x15\x25\x1c\x12\x25\x1b\x11\ +\x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x29\x1f\x14\x22\x1a\x11\x26\ +\x1d\x13\x32\x26\x18\x33\x26\x19\x2a\x1f\x14\x25\x1c\x12\x2c\x21\ +\x16\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\x2e\x22\x17\x2b\x20\x15\ +\x29\x1f\x13\x2c\x21\x15\x30\x24\x16\x34\x28\x1a\x2b\x21\x14\x34\ +\x27\x19\x1f\x18\x0f\x24\x1b\x11\x21\x18\x0f\x26\x1d\x13\x2f\x24\ +\x16\x2a\x20\x15\x29\x20\x14\x2f\x24\x16\x36\x29\x1a\x30\x24\x17\ +\x29\x1f\x14\x2f\x23\x16\x34\x27\x19\x30\x25\x17\x2b\x20\x15\x22\ +\x1a\x10\x1e\x17\x0f\x22\x1a\x11\x2a\x20\x14\x2e\x22\x16\x3e\x2f\ +\x1d\x36\x28\x1a\x33\x26\x18\x1e\x17\x0e\x22\x19\x10\x22\x1a\x10\ +\x22\x1a\x11\x26\x1c\x12\x23\x1a\x11\x24\x1b\x11\x24\x1b\x11\x28\ +\x1e\x13\x30\x24\x17\x2e\x23\x16\x32\x26\x19\x2d\x22\x16\x2a\x1f\ +\x14\x30\x24\x17\x37\x29\x1b\x40\x30\x1f\x3b\x2c\x1c\x44\x32\x20\ +\x2d\x21\x16\x3d\x2d\x1e\x37\x29\x1a\x31\x25\x17\x22\x19\x10\x3b\ +\x2d\x1e\x32\x2f\x2b\x40\x3f\x3e\x46\x47\x47\x53\x54\x55\x5d\x5e\ +\x5e\x67\x69\x6b\x6b\x6e\x71\x64\x66\x6a\x6b\x6d\x71\x7c\x80\x84\ +\x7d\x80\x85\x7c\x80\x85\x7a\x80\x84\x78\x7e\x85\x79\x7f\x85\x76\ +\x7c\x83\x74\x7a\x7f\x71\x78\x7c\x71\x77\x7d\x6f\x75\x7c\x6d\x75\ +\x7c\x6e\x75\x7d\x6c\x73\x7c\x6b\x72\x7b\x6a\x72\x7b\x69\x70\x79\ +\x66\x6e\x78\x64\x6d\x77\x66\x6f\x79\x67\x71\x7b\x65\x6e\x79\x64\ +\x6e\x79\x65\x6f\x79\x66\x70\x7a\x5e\x68\x70\x53\x5c\x66\x00\x00\ +\x00\x4c\x3d\x2d\x4c\x3d\x2d\x64\x56\x4a\x74\x64\x57\x7a\x61\x48\ +\x6b\x52\x39\x5f\x48\x32\x5b\x47\x30\x4b\x39\x27\x4d\x3a\x27\x4e\ +\x3c\x27\x2d\x22\x16\x1e\x17\x0f\x21\x18\x0f\x28\x1f\x14\x27\x1e\ +\x13\x29\x1f\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x11\x27\x1e\x13\ +\x22\x19\x10\x22\x19\x10\x21\x19\x10\x21\x19\x0f\x27\x1e\x13\x2a\ +\x1f\x14\x31\x25\x18\x28\x1f\x14\x1f\x17\x0f\x25\x1b\x12\x30\x24\ +\x17\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x27\x1d\x12\x23\x1a\x11\ +\x22\x1a\x10\x23\x1a\x10\x25\x1b\x11\x2a\x1f\x14\x30\x24\x17\x33\ +\x26\x19\x39\x2b\x1c\x2d\x22\x16\x28\x1e\x13\x37\x29\x1a\x3a\x2b\ +\x1c\x38\x2a\x1b\x38\x2b\x1b\x38\x2a\x1c\x33\x27\x19\x32\x26\x18\ +\x2b\x20\x15\x28\x1e\x13\x28\x1d\x13\x27\x1d\x13\x27\x1d\x12\x28\ +\x1e\x13\x24\x1b\x11\x24\x1b\x11\x23\x1a\x10\x25\x1b\x11\x24\x1b\ +\x11\x2a\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x2c\x22\x16\x31\x25\x18\ +\x2d\x21\x16\x2d\x22\x16\x29\x1f\x14\x2c\x22\x15\x2b\x20\x14\x25\ +\x1c\x12\x2c\x21\x15\x2e\x22\x16\x32\x26\x18\x30\x24\x17\x25\x1c\ +\x12\x1f\x18\x0f\x2c\x21\x15\x30\x24\x17\x25\x1c\x12\x29\x1f\x13\ +\x26\x1c\x12\x25\x1c\x12\x31\x24\x17\x2f\x23\x17\x2a\x20\x14\x31\ +\x25\x18\x31\x25\x18\x32\x25\x18\x2c\x21\x15\x22\x1a\x11\x20\x19\ +\x10\x25\x1d\x12\x29\x1f\x14\x35\x27\x19\x33\x27\x19\x34\x27\x19\ +\x30\x24\x17\x23\x1b\x11\x22\x1a\x10\x27\x1d\x12\x24\x1b\x11\x24\ +\x1b\x11\x23\x1a\x11\x26\x1c\x12\x23\x1b\x11\x28\x1e\x13\x2a\x20\ +\x14\x2e\x22\x16\x38\x2a\x1b\x35\x28\x1a\x2a\x1f\x14\x2b\x20\x14\ +\x2b\x21\x15\x38\x2a\x1b\x41\x31\x1f\x3b\x2c\x1c\x31\x25\x18\x33\ +\x27\x18\x3c\x2d\x1d\x39\x2a\x1b\x32\x26\x18\x3a\x2e\x1d\x30\x2c\ +\x27\x3a\x3a\x3a\x44\x45\x45\x50\x51\x52\x5b\x5c\x5d\x65\x68\x68\ +\x66\x69\x6c\x5d\x60\x63\x77\x7b\x7f\x7b\x7f\x83\x7a\x7f\x83\x7b\ +\x7e\x84\x7a\x7e\x83\x77\x7d\x84\x78\x7e\x85\x75\x7b\x82\x73\x79\ +\x7f\x6f\x77\x7c\x70\x77\x7e\x71\x78\x7f\x6f\x77\x7e\x6c\x74\x7c\ +\x6c\x74\x7d\x6a\x72\x7b\x69\x71\x7a\x69\x71\x7a\x66\x6e\x77\x64\ +\x6e\x77\x65\x6f\x78\x66\x6f\x79\x64\x6f\x79\x63\x6d\x77\x66\x70\ +\x7a\x66\x70\x7a\x63\x6d\x77\x60\x6a\x74\x00\x00\x00\x53\x3e\x29\ +\x59\x43\x2c\x80\x62\x43\x5c\x45\x30\x38\x2a\x1b\x36\x29\x1a\x33\ +\x26\x19\x34\x27\x19\x37\x28\x1a\x3a\x2c\x1c\x41\x31\x20\x2a\x1f\ +\x14\x21\x19\x0f\x22\x19\x10\x24\x1c\x12\x27\x1d\x13\x33\x26\x18\ +\x26\x1d\x13\x1f\x17\x0f\x24\x1b\x11\x27\x1d\x13\x2c\x20\x15\x28\ +\x1e\x14\x26\x1d\x13\x1f\x18\x0f\x27\x1d\x13\x2b\x20\x15\x38\x2b\ +\x1b\x33\x25\x18\x25\x1c\x12\x1e\x17\x0f\x23\x1b\x11\x23\x1a\x11\ +\x2c\x20\x15\x2d\x21\x15\x2e\x23\x16\x2d\x22\x15\x29\x1f\x13\x22\ +\x1a\x10\x22\x1a\x10\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x37\x28\ +\x1a\x27\x1d\x13\x22\x1a\x11\x2d\x22\x15\x38\x2a\x1a\x49\x37\x24\ +\x43\x32\x20\x3e\x30\x1e\x37\x29\x1b\x30\x24\x17\x2b\x20\x14\x29\ +\x1f\x13\x2c\x21\x15\x3b\x2c\x1c\x34\x27\x19\x37\x2a\x1a\x29\x1f\ +\x13\x28\x1e\x13\x25\x1b\x12\x1c\x14\x0d\x1c\x15\x0e\x24\x1b\x12\ +\x27\x1e\x13\x26\x1c\x12\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x29\ +\x1e\x14\x39\x2b\x1c\x2c\x21\x16\x2a\x1f\x14\x26\x1d\x12\x2e\x22\ +\x16\x27\x1c\x13\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x23\x1a\x10\ +\x29\x1f\x14\x32\x26\x18\x32\x26\x17\x2b\x20\x15\x2d\x22\x15\x35\ +\x28\x1a\x38\x2a\x1b\x34\x26\x18\x2f\x23\x17\x31\x25\x18\x37\x2a\ +\x1b\x36\x28\x1a\x26\x1c\x12\x22\x1a\x10\x20\x18\x0f\x2e\x23\x16\ +\x32\x26\x18\x29\x1f\x14\x30\x24\x17\x37\x29\x1b\x36\x29\x1a\x2c\ +\x22\x15\x26\x1c\x12\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x2b\x20\ +\x15\x2e\x23\x16\x2e\x22\x16\x32\x25\x18\x31\x25\x17\x2f\x23\x17\ +\x36\x28\x1a\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x27\x1d\x13\x36\ +\x29\x1a\x40\x30\x1f\x34\x28\x19\x27\x1e\x13\x2a\x20\x14\x2e\x23\ +\x16\x37\x29\x1b\x36\x28\x1a\x2e\x23\x16\x45\x3a\x2f\x39\x39\x3a\ +\x44\x45\x45\x4f\x50\x51\x59\x5a\x5b\x63\x66\x66\x61\x63\x66\x5d\ +\x60\x64\x7d\x80\x84\x7a\x7e\x82\x7a\x7e\x82\x7b\x7e\x84\x7a\x7d\ +\x82\x78\x7d\x84\x77\x7d\x84\x75\x7b\x81\x72\x78\x7d\x71\x79\x7e\ +\x71\x79\x80\x6f\x77\x7e\x6f\x77\x7e\x6b\x73\x7c\x68\x71\x7a\x6b\ +\x73\x7c\x69\x72\x7b\x65\x6f\x78\x65\x6f\x77\x63\x6e\x76\x64\x6f\ +\x76\x65\x6f\x79\x66\x70\x7a\x64\x6e\x77\x67\x71\x7b\x66\x70\x7a\ +\x64\x6e\x78\x62\x6c\x76\x00\x00\x00\x45\x34\x22\x3d\x2e\x1e\x7b\ +\x5d\x3f\x36\x29\x1b\x27\x1d\x13\x32\x25\x18\x26\x1d\x12\x33\x26\ +\x18\x33\x26\x18\x2b\x20\x14\x33\x26\x19\x30\x25\x17\x2a\x20\x14\ +\x29\x1e\x14\x28\x1e\x13\x32\x25\x18\x2d\x22\x15\x22\x1a\x11\x29\ +\x1f\x14\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x30\x24\x17\x22\x1a\ +\x10\x24\x1b\x11\x25\x1b\x11\x30\x24\x17\x31\x24\x17\x30\x24\x17\ +\x26\x1d\x13\x24\x1b\x11\x1c\x15\x0d\x1f\x17\x0f\x33\x27\x19\x30\ +\x24\x17\x38\x2a\x1c\x29\x1f\x14\x24\x1b\x11\x20\x19\x0f\x23\x1a\ +\x10\x23\x1b\x11\x2a\x20\x15\x2d\x22\x16\x2d\x22\x16\x2e\x23\x16\ +\x2f\x23\x17\x2e\x22\x15\x36\x28\x1a\x46\x35\x22\x4a\x37\x23\x5a\ +\x44\x2c\x43\x32\x20\x3a\x2c\x1c\x39\x2b\x1b\x33\x26\x18\x32\x25\ +\x18\x2c\x21\x15\x33\x26\x19\x36\x29\x1a\x38\x29\x1a\x28\x1e\x13\ +\x25\x1c\x11\x25\x1b\x12\x24\x1b\x11\x29\x1e\x13\x28\x1d\x13\x23\ +\x1a\x11\x21\x19\x10\x20\x18\x10\x26\x1c\x12\x26\x1c\x12\x29\x1f\ +\x13\x2b\x20\x14\x2f\x23\x16\x35\x29\x1a\x33\x26\x18\x33\x27\x19\ +\x2a\x20\x14\x30\x24\x17\x35\x27\x19\x2c\x20\x15\x2a\x20\x14\x2d\ +\x22\x15\x33\x26\x17\x2d\x22\x15\x2e\x22\x16\x38\x2a\x1b\x3c\x2d\ +\x1d\x37\x29\x1b\x2e\x22\x16\x31\x24\x17\x31\x25\x17\x28\x1e\x13\ +\x26\x1d\x12\x26\x1c\x12\x23\x1a\x11\x20\x18\x0f\x21\x19\x0f\x25\ +\x1b\x12\x2e\x22\x16\x3a\x2b\x1c\x39\x2b\x1c\x2d\x22\x15\x29\x1f\ +\x14\x2a\x20\x14\x2a\x20\x14\x27\x1d\x13\x27\x1d\x13\x30\x24\x17\ +\x31\x24\x17\x30\x25\x17\x32\x26\x18\x30\x24\x17\x2d\x21\x16\x29\ +\x1f\x14\x2a\x20\x14\x33\x27\x19\x2f\x24\x16\x31\x25\x17\x40\x30\ +\x1f\x37\x29\x1a\x2c\x22\x16\x2f\x24\x17\x23\x1b\x11\x2d\x22\x16\ +\x32\x25\x18\x38\x2b\x1c\x54\x45\x35\x37\x38\x39\x43\x43\x44\x4c\ +\x4d\x4d\x59\x5b\x5b\x5f\x61\x62\x5a\x5d\x5e\x6d\x6f\x73\x79\x7c\ +\x7f\x7b\x7d\x82\x7c\x7f\x84\x7b\x7f\x84\x79\x7d\x81\x7a\x7e\x84\ +\x77\x7d\x84\x76\x7c\x83\x73\x7a\x81\x73\x7b\x80\x70\x78\x7f\x6f\ +\x77\x7e\x6f\x77\x7e\x6c\x74\x7c\x68\x72\x7a\x6b\x74\x7c\x6a\x72\ +\x7b\x67\x70\x78\x66\x70\x78\x64\x6e\x77\x65\x6f\x78\x65\x70\x7a\ +\x66\x6f\x7a\x64\x6e\x77\x66\x70\x7a\x64\x6e\x78\x62\x6c\x75\x64\ +\x6e\x78\x00\x00\x00\x50\x3b\x27\x46\x35\x22\x53\x3f\x2a\x30\x24\ +\x17\x22\x19\x10\x2d\x22\x16\x32\x25\x18\x34\x27\x19\x3b\x2c\x1c\ +\x3e\x2e\x1d\x3e\x2f\x1e\x32\x25\x17\x32\x25\x18\x2e\x23\x16\x2d\ +\x22\x15\x31\x25\x18\x2e\x22\x16\x2a\x1f\x14\x27\x1d\x12\x2c\x21\ +\x15\x27\x1d\x13\x2a\x1f\x14\x26\x1c\x12\x20\x18\x10\x20\x18\x0f\ +\x24\x1c\x11\x32\x26\x18\x2c\x22\x15\x2b\x20\x15\x2c\x21\x15\x2e\ +\x22\x16\x26\x1d\x12\x23\x1a\x10\x2c\x21\x15\x2c\x20\x15\x36\x29\ +\x1a\x33\x27\x19\x2e\x23\x16\x2c\x21\x15\x20\x18\x0f\x21\x19\x10\ +\x27\x1d\x13\x24\x1b\x11\x25\x1c\x12\x24\x1b\x12\x21\x19\x10\x2b\ +\x20\x15\x35\x28\x1a\x3b\x2c\x1c\x3a\x2c\x1b\x43\x32\x21\x34\x26\ +\x19\x2f\x23\x16\x2e\x22\x16\x3a\x2b\x1c\x37\x29\x1a\x31\x24\x17\ +\x35\x27\x19\x3e\x2e\x1e\x3d\x2e\x1e\x3d\x2d\x1d\x38\x2a\x1b\x2c\ +\x21\x15\x26\x1d\x12\x24\x1a\x11\x21\x19\x10\x23\x1a\x11\x22\x19\ +\x10\x23\x1a\x10\x24\x1b\x11\x27\x1d\x13\x2f\x23\x17\x2c\x21\x16\ +\x36\x28\x1a\x37\x2a\x1b\x38\x2a\x1b\x3d\x2e\x1e\x39\x2b\x1b\x37\ +\x29\x1a\x3e\x2f\x1e\x2c\x21\x15\x2e\x23\x16\x28\x1d\x13\x2b\x20\ +\x14\x2b\x20\x14\x31\x25\x18\x3a\x2c\x1c\x35\x29\x1a\x30\x25\x17\ +\x2e\x23\x16\x2f\x23\x17\x2e\x23\x17\x29\x1e\x14\x28\x1e\x14\x2c\ +\x21\x16\x25\x1c\x12\x27\x1e\x13\x27\x1e\x13\x25\x1c\x11\x2f\x23\ +\x17\x3a\x2b\x1c\x36\x29\x1a\x2f\x23\x16\x36\x29\x1a\x39\x2b\x1c\ +\x3e\x2e\x1e\x3b\x2c\x1c\x40\x30\x1f\x45\x34\x22\x3f\x2e\x1e\x3f\ +\x2f\x1f\x40\x30\x1f\x3c\x2d\x1c\x36\x29\x1a\x2f\x24\x16\x31\x25\ +\x17\x2e\x23\x16\x32\x25\x18\x2f\x23\x17\x3b\x2b\x1c\x42\x31\x20\ +\x2f\x23\x16\x29\x1e\x14\x26\x1c\x12\x2d\x23\x17\x28\x1e\x13\x2d\ +\x23\x16\x43\x37\x2b\x36\x37\x37\x41\x41\x42\x4a\x4c\x4c\x57\x59\ +\x59\x5d\x60\x60\x56\x57\x5a\x74\x76\x7a\x79\x7c\x80\x7c\x7f\x83\ +\x7c\x7e\x83\x79\x7d\x82\x79\x7d\x81\x79\x7d\x82\x77\x7c\x83\x75\ +\x7b\x82\x75\x7c\x83\x73\x7a\x81\x71\x79\x80\x6f\x77\x7e\x6e\x76\ +\x7e\x6a\x73\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7a\x67\x71\x79\ +\x66\x6f\x79\x65\x6f\x78\x67\x71\x7a\x67\x72\x7b\x66\x70\x7a\x64\ +\x6f\x78\x64\x6f\x78\x63\x6e\x77\x63\x6d\x76\x66\x70\x7a\x00\x00\ +\x00\x39\x2b\x1b\x3d\x2e\x1e\x72\x56\x38\x32\x26\x18\x25\x1c\x12\ +\x27\x1d\x12\x2d\x21\x15\x30\x24\x17\x3c\x2d\x1d\x41\x31\x1f\x42\ +\x31\x20\x3d\x2e\x1d\x30\x24\x17\x2a\x1f\x14\x22\x19\x10\x24\x1b\ +\x11\x2b\x20\x14\x2a\x1f\x14\x2f\x23\x16\x2f\x24\x17\x26\x1c\x12\ +\x20\x18\x0f\x23\x1b\x11\x2a\x1f\x14\x25\x1c\x12\x20\x18\x0f\x28\ +\x1e\x14\x2a\x1f\x14\x23\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\x24\ +\x17\x2a\x1f\x14\x26\x1c\x12\x20\x18\x0f\x2d\x22\x16\x2f\x24\x17\ +\x32\x25\x18\x28\x1e\x14\x22\x1a\x10\x27\x1e\x13\x26\x1d\x12\x22\ +\x19\x10\x27\x1d\x13\x2c\x21\x15\x24\x1b\x12\x22\x19\x10\x31\x24\ +\x18\x42\x31\x20\x3a\x2b\x1c\x3c\x2d\x1d\x2b\x21\x15\x31\x24\x17\ +\x34\x28\x19\x30\x24\x16\x36\x28\x1a\x2b\x20\x14\x31\x25\x18\x33\ +\x26\x19\x2a\x1f\x14\x38\x29\x1b\x3f\x2f\x1e\x42\x31\x20\x2a\x20\ +\x14\x26\x1d\x13\x29\x1e\x13\x25\x1c\x11\x29\x1f\x13\x28\x1e\x13\ +\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x31\x25\x18\x33\x26\x18\x34\ +\x27\x19\x35\x28\x19\x36\x28\x19\x35\x27\x19\x37\x29\x1b\x40\x30\ +\x1f\x2c\x21\x14\x2c\x20\x14\x29\x1e\x14\x29\x1e\x13\x28\x1e\x13\ +\x2d\x21\x15\x2e\x23\x16\x32\x25\x18\x2a\x1f\x14\x2d\x22\x16\x31\ +\x25\x18\x2a\x1f\x14\x27\x1d\x13\x2b\x20\x15\x30\x24\x17\x2e\x22\ +\x16\x2a\x1f\x14\x32\x26\x18\x2d\x22\x15\x26\x1d\x12\x31\x24\x17\ +\x34\x27\x18\x35\x28\x19\x35\x27\x19\x3f\x2f\x1f\x3d\x2e\x1d\x47\ +\x36\x23\x48\x36\x23\x49\x37\x23\x3e\x2e\x1e\x47\x34\x22\x47\x35\ +\x22\x44\x33\x21\x3a\x2b\x1c\x32\x25\x18\x35\x28\x19\x37\x29\x1a\ +\x34\x27\x19\x30\x25\x17\x2d\x21\x15\x34\x27\x19\x3d\x2e\x1d\x3f\ +\x2f\x1f\x2b\x21\x15\x2c\x21\x15\x22\x19\x10\x28\x1d\x13\x3e\x32\ +\x25\x35\x36\x37\x3f\x40\x40\x49\x4b\x4c\x54\x56\x57\x53\x56\x59\ +\x59\x5b\x5f\x70\x73\x78\x77\x79\x7e\x7b\x7e\x83\x7b\x7d\x82\x78\ +\x7c\x81\x78\x7c\x80\x79\x7e\x83\x79\x7f\x84\x76\x7c\x82\x75\x7c\ +\x83\x71\x79\x80\x71\x79\x80\x6f\x77\x7e\x6c\x74\x7c\x6b\x73\x7d\ +\x69\x72\x7b\x6a\x73\x7c\x69\x73\x7c\x68\x72\x7b\x66\x71\x7a\x64\ +\x6e\x77\x66\x71\x79\x66\x70\x7a\x66\x70\x79\x66\x70\x79\x64\x6e\ +\x76\x63\x6e\x76\x64\x6f\x77\x66\x70\x7a\x00\x00\x00\x36\x29\x1a\ +\x2e\x22\x16\x49\x37\x24\x36\x29\x1b\x24\x1b\x12\x21\x19\x0f\x28\ +\x1e\x13\x2c\x22\x15\x31\x24\x17\x30\x24\x17\x37\x2a\x1a\x35\x28\ +\x19\x2e\x21\x15\x1b\x14\x0d\x1d\x15\x0e\x2a\x1f\x14\x28\x1e\x13\ +\x2e\x23\x16\x32\x25\x18\x2c\x20\x15\x20\x18\x0f\x18\x12\x0b\x28\ +\x1e\x13\x38\x2a\x1b\x2e\x22\x16\x23\x1a\x11\x1e\x16\x0e\x27\x1d\ +\x13\x27\x1e\x13\x26\x1d\x12\x26\x1c\x12\x2c\x21\x15\x2e\x22\x16\ +\x2d\x22\x16\x25\x1c\x12\x29\x1f\x14\x2f\x22\x16\x2f\x23\x16\x31\ +\x25\x18\x2d\x21\x15\x2b\x20\x14\x24\x1b\x11\x26\x1c\x13\x2b\x1f\ +\x14\x2a\x1f\x14\x29\x1f\x14\x2a\x1f\x14\x31\x25\x18\x3f\x2f\x1e\ +\x3e\x2e\x1e\x3b\x2d\x1d\x32\x26\x18\x33\x27\x19\x38\x2a\x1b\x2f\ +\x24\x17\x2a\x20\x14\x2c\x21\x16\x2c\x21\x15\x30\x24\x17\x35\x27\ +\x1a\x34\x27\x19\x2f\x23\x16\x31\x25\x18\x2f\x23\x17\x2b\x20\x14\ +\x29\x1f\x13\x2f\x23\x16\x30\x24\x17\x2c\x21\x15\x2f\x23\x16\x2f\ +\x23\x17\x2d\x22\x16\x39\x2b\x1b\x3b\x2c\x1d\x36\x29\x1a\x34\x27\ +\x19\x32\x25\x18\x34\x27\x19\x38\x2b\x1a\x3b\x2c\x1c\x34\x27\x19\ +\x34\x27\x19\x33\x27\x19\x27\x1d\x13\x27\x1d\x13\x2d\x22\x15\x2d\ +\x22\x16\x2d\x22\x16\x2d\x22\x16\x29\x1f\x14\x2c\x21\x15\x28\x1e\ +\x13\x22\x1a\x10\x27\x1d\x13\x32\x25\x18\x33\x27\x19\x38\x29\x1a\ +\x38\x2a\x1b\x2a\x20\x14\x28\x1e\x13\x27\x1d\x12\x2b\x20\x14\x29\ +\x1f\x14\x2a\x1f\x14\x31\x25\x18\x39\x2b\x1b\x34\x27\x19\x39\x2c\ +\x1c\x42\x32\x20\x3b\x2c\x1d\x3f\x30\x1f\x42\x31\x20\x41\x30\x1f\ +\x41\x30\x1f\x3f\x2f\x1e\x34\x27\x19\x2d\x22\x16\x2d\x22\x15\x2e\ +\x22\x16\x31\x25\x17\x3a\x2c\x1c\x37\x2a\x1b\x32\x26\x18\x2f\x24\ +\x17\x32\x26\x19\x24\x1b\x11\x1b\x14\x0c\x40\x33\x24\x34\x35\x35\ +\x3e\x40\x40\x48\x4b\x4b\x52\x53\x54\x47\x49\x4c\x6b\x6d\x71\x70\ +\x74\x78\x75\x79\x7d\x79\x7d\x82\x7a\x7d\x82\x77\x7b\x80\x77\x7b\ +\x80\x79\x7e\x83\x75\x7b\x82\x75\x7b\x82\x71\x79\x80\x73\x7a\x81\ +\x71\x79\x80\x71\x79\x80\x6c\x73\x7b\x6c\x74\x7e\x6b\x75\x7e\x6b\ +\x75\x7e\x69\x73\x7c\x68\x73\x7b\x68\x72\x7b\x65\x6f\x78\x64\x6e\ +\x77\x67\x71\x7a\x68\x71\x7b\x68\x72\x7b\x66\x71\x79\x62\x6d\x75\ +\x62\x6d\x75\x64\x6f\x78\x00\x00\x00\x3b\x2c\x1d\x2b\x20\x14\x54\ +\x3f\x2a\x23\x1b\x11\x19\x13\x0c\x1d\x16\x0e\x22\x1a\x11\x23\x1a\ +\x11\x2b\x20\x14\x30\x24\x17\x35\x27\x19\x34\x27\x19\x2f\x23\x16\ +\x15\x10\x0a\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x12\x27\x1d\x12\x2a\ +\x20\x14\x2f\x24\x17\x29\x20\x14\x21\x19\x10\x28\x1e\x12\x27\x1e\ +\x13\x2b\x20\x14\x22\x19\x10\x1e\x17\x0e\x28\x1d\x13\x2b\x1f\x14\ +\x21\x19\x10\x24\x1b\x11\x2c\x21\x15\x2e\x23\x16\x34\x27\x19\x26\ +\x1c\x12\x27\x1d\x12\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x34\x27\ +\x19\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x2b\x20\x14\x29\x1f\x14\ +\x2d\x21\x16\x2e\x23\x16\x32\x25\x18\x43\x32\x20\x3c\x2d\x1d\x3d\ +\x2e\x1d\x3d\x2e\x1e\x46\x33\x22\x40\x30\x1f\x2f\x23\x17\x2d\x22\ +\x16\x2f\x23\x16\x2c\x21\x15\x2f\x24\x16\x3b\x2c\x1c\x3d\x2d\x1d\ +\x38\x2a\x1b\x39\x2b\x1b\x35\x28\x19\x2f\x24\x17\x2c\x22\x16\x32\ +\x25\x18\x33\x26\x18\x33\x26\x18\x36\x29\x1a\x33\x27\x19\x36\x28\ +\x1a\x38\x2a\x1b\x33\x26\x19\x2e\x23\x16\x32\x25\x18\x2c\x21\x15\ +\x31\x25\x17\x35\x28\x19\x34\x27\x19\x3f\x30\x1f\x40\x30\x1e\x37\ +\x29\x1a\x36\x28\x1a\x2e\x23\x15\x31\x24\x17\x33\x27\x19\x2c\x21\ +\x15\x29\x1f\x14\x2c\x21\x15\x29\x1e\x13\x26\x1c\x12\x27\x1d\x12\ +\x2c\x20\x14\x30\x24\x17\x37\x29\x1a\x32\x26\x18\x37\x29\x1b\x32\ +\x26\x18\x2b\x20\x15\x2d\x22\x15\x2e\x23\x16\x2a\x1f\x13\x26\x1d\ +\x13\x32\x26\x17\x30\x25\x17\x2f\x23\x17\x34\x28\x19\x3b\x2c\x1c\ +\x36\x28\x1a\x38\x29\x1b\x36\x29\x1a\x39\x2b\x1c\x3e\x2f\x1e\x40\ +\x30\x1f\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x33\x27\x18\x33\x26\ +\x19\x31\x25\x17\x39\x2a\x1b\x37\x29\x1b\x37\x2a\x1b\x37\x2a\x1a\ +\x31\x25\x18\x25\x1b\x12\x3f\x31\x21\x32\x34\x34\x3d\x3e\x3f\x48\ +\x4a\x4b\x51\x53\x54\x47\x48\x4b\x6c\x70\x73\x72\x76\x7a\x74\x79\ +\x7d\x77\x7b\x80\x7a\x7e\x83\x79\x7d\x83\x77\x7d\x82\x76\x7c\x83\ +\x77\x7d\x84\x73\x7a\x81\x72\x79\x80\x73\x7b\x82\x72\x79\x81\x6f\ +\x76\x7f\x6d\x75\x7d\x6e\x75\x7d\x6c\x75\x7e\x68\x72\x7b\x68\x72\ +\x7a\x69\x74\x7c\x67\x71\x7b\x67\x72\x7b\x66\x71\x79\x66\x71\x7a\ +\x65\x70\x78\x66\x6f\x78\x66\x70\x78\x61\x6b\x73\x62\x6c\x75\x67\ +\x70\x79\x00\x00\x00\x38\x2a\x1b\x33\x26\x19\x45\x35\x22\x26\x1c\ +\x12\x17\x11\x0b\x18\x11\x0b\x1b\x14\x0c\x24\x1a\x10\x2b\x21\x15\ +\x32\x25\x17\x2f\x23\x16\x36\x29\x1b\x2a\x1f\x14\x1a\x13\x0c\x1c\ +\x16\x0e\x1e\x16\x0e\x24\x1b\x11\x2e\x22\x16\x31\x25\x17\x3d\x2e\ +\x1e\x3a\x2c\x1c\x2d\x21\x16\x31\x24\x17\x2a\x20\x15\x2b\x21\x15\ +\x28\x1e\x13\x29\x1f\x14\x2f\x23\x16\x33\x27\x18\x25\x1c\x12\x23\ +\x1b\x11\x26\x1d\x12\x2b\x20\x15\x31\x24\x18\x1a\x14\x0c\x1f\x17\ +\x0f\x28\x1e\x13\x2e\x22\x16\x37\x29\x1b\x30\x24\x17\x2d\x22\x16\ +\x2d\x22\x16\x35\x28\x1a\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x2a\ +\x20\x14\x2e\x22\x16\x3c\x2d\x1d\x3a\x2b\x1c\x3d\x2e\x1d\x44\x33\ +\x21\x41\x2f\x1f\x38\x29\x1a\x31\x25\x18\x31\x26\x18\x27\x1e\x13\ +\x2d\x22\x16\x30\x25\x17\x3f\x2f\x1e\x40\x2f\x1f\x3b\x2c\x1d\x37\ +\x2a\x1b\x36\x28\x19\x3a\x2b\x1c\x39\x2b\x1b\x2f\x23\x16\x2d\x21\ +\x15\x2f\x23\x16\x31\x24\x17\x3b\x2c\x1c\x3e\x2f\x1e\x35\x28\x19\ +\x33\x26\x18\x35\x28\x1a\x2c\x21\x15\x27\x1e\x13\x30\x24\x18\x35\ +\x27\x19\x34\x27\x19\x3a\x2b\x1c\x3c\x2d\x1d\x3b\x2c\x1c\x3b\x2c\ +\x1d\x36\x28\x19\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x37\x29\x1a\ +\x35\x28\x1a\x31\x25\x18\x2d\x22\x16\x2a\x20\x14\x32\x26\x17\x35\ +\x28\x1a\x36\x29\x1a\x31\x25\x18\x36\x29\x1a\x39\x2a\x1b\x32\x26\ +\x19\x3b\x2c\x1d\x2a\x1f\x14\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\ +\x28\x1e\x13\x23\x1a\x11\x3e\x2e\x1e\x3d\x2e\x1d\x3b\x2c\x1d\x2c\ +\x22\x16\x30\x24\x17\x39\x2b\x1b\x40\x2f\x1f\x3b\x2c\x1c\x36\x29\ +\x1a\x37\x2a\x1b\x39\x2b\x1b\x30\x25\x17\x31\x25\x17\x33\x25\x18\ +\x39\x2a\x1b\x3a\x2c\x1c\x38\x2a\x1b\x37\x28\x1b\x30\x24\x17\x21\ +\x18\x10\x54\x40\x2c\x31\x33\x33\x3c\x3e\x3f\x45\x47\x48\x44\x46\ +\x48\x58\x59\x5b\x6b\x6f\x71\x71\x75\x7a\x74\x78\x7d\x77\x7b\x7f\ +\x79\x7e\x83\x79\x7e\x84\x76\x7c\x82\x75\x7b\x81\x77\x7d\x84\x74\ +\x7b\x82\x73\x7b\x82\x71\x78\x80\x6d\x74\x7c\x6f\x76\x7e\x6e\x76\ +\x7e\x6c\x75\x7d\x6a\x72\x7b\x69\x72\x7b\x68\x71\x7a\x6b\x74\x7d\ +\x6a\x73\x7d\x68\x72\x7a\x67\x72\x7a\x67\x70\x7a\x66\x70\x79\x65\ +\x6f\x78\x65\x6e\x77\x62\x6c\x75\x64\x6e\x76\x65\x6f\x78\x00\x00\ +\x00\x38\x29\x1b\x39\x2a\x1c\x42\x32\x21\x32\x25\x18\x1d\x15\x0e\ +\x1e\x17\x0f\x20\x18\x0f\x24\x1b\x12\x29\x1f\x13\x29\x1f\x14\x28\ +\x1f\x13\x23\x1a\x11\x1e\x17\x0f\x1a\x14\x0c\x18\x12\x0b\x1a\x13\ +\x0d\x23\x1a\x10\x26\x1c\x12\x2a\x20\x15\x31\x24\x17\x34\x27\x19\ +\x2f\x24\x16\x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x2a\x1f\x14\x25\ +\x1c\x11\x2d\x22\x16\x34\x27\x19\x30\x23\x16\x2b\x21\x14\x1f\x17\ +\x0f\x2b\x20\x15\x29\x1e\x13\x20\x18\x0f\x23\x1a\x10\x27\x1d\x12\ +\x27\x1d\x12\x2b\x21\x15\x24\x1b\x11\x21\x19\x0f\x26\x1d\x12\x2a\ +\x20\x14\x30\x24\x16\x36\x28\x1a\x34\x26\x19\x2f\x22\x16\x31\x25\ +\x18\x3f\x30\x1e\x41\x31\x1f\x41\x31\x1f\x4e\x3a\x26\x43\x32\x20\ +\x2f\x23\x16\x32\x25\x18\x26\x1d\x12\x2e\x22\x16\x2b\x20\x15\x2f\ +\x22\x16\x3b\x2c\x1c\x36\x28\x1a\x35\x27\x19\x2f\x23\x16\x32\x26\ +\x17\x38\x29\x1b\x37\x29\x1b\x34\x27\x19\x32\x25\x18\x2f\x23\x17\ +\x2e\x23\x16\x3b\x2c\x1c\x41\x31\x1f\x44\x33\x21\x36\x28\x19\x2f\ +\x22\x16\x28\x1e\x13\x2e\x22\x16\x36\x29\x1a\x32\x26\x18\x3a\x2b\ +\x1c\x35\x28\x19\x37\x29\x1a\x3a\x2b\x1c\x3d\x2d\x1d\x3c\x2d\x1d\ +\x35\x28\x1a\x3c\x2d\x1d\x40\x30\x1f\x3a\x2c\x1c\x34\x27\x19\x2e\ +\x22\x16\x2d\x21\x15\x2c\x20\x15\x35\x28\x19\x3b\x2c\x1c\x36\x29\ +\x1a\x31\x25\x17\x33\x26\x19\x31\x25\x17\x32\x25\x18\x34\x26\x19\ +\x35\x28\x1a\x2b\x21\x15\x28\x1e\x14\x2c\x21\x15\x2e\x22\x16\x3b\ +\x2c\x1c\x41\x31\x1f\x42\x32\x20\x42\x31\x20\x3c\x2d\x1d\x35\x28\ +\x1a\x33\x26\x19\x3c\x2d\x1d\x40\x30\x1e\x41\x31\x1f\x3f\x2f\x1e\ +\x3a\x2c\x1c\x30\x23\x16\x32\x25\x18\x27\x1d\x13\x2e\x23\x16\x2c\ +\x21\x15\x32\x26\x18\x48\x36\x23\x32\x26\x18\x2c\x21\x15\x3f\x31\ +\x21\x36\x35\x34\x3b\x3d\x3e\x44\x46\x47\x3d\x3e\x41\x5f\x62\x64\ +\x69\x6d\x6f\x6d\x72\x77\x70\x78\x7c\x74\x7a\x80\x78\x7e\x84\x77\ +\x7d\x83\x76\x7c\x83\x75\x7b\x81\x74\x7b\x82\x72\x7a\x80\x71\x79\ +\x80\x70\x77\x7f\x6e\x76\x7d\x6d\x75\x7d\x6d\x75\x7d\x6b\x74\x7b\ +\x6b\x75\x7c\x69\x72\x7a\x69\x72\x7a\x68\x71\x7a\x69\x73\x7c\x66\ +\x71\x7a\x66\x70\x78\x66\x70\x78\x64\x6e\x76\x65\x6f\x77\x65\x70\ +\x78\x62\x6d\x75\x66\x70\x78\x66\x6f\x78\x00\x00\x00\x3d\x2d\x1d\ +\x41\x30\x20\x41\x31\x20\x3b\x2c\x1c\x25\x1c\x12\x27\x1d\x13\x25\ +\x1c\x12\x27\x1d\x13\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0d\x18\x12\ +\x0c\x16\x11\x0a\x1c\x15\x0e\x19\x13\x0b\x1e\x16\x0e\x23\x1a\x11\ +\x1e\x17\x0e\x23\x1a\x11\x2c\x21\x15\x2e\x23\x16\x2a\x20\x14\x2a\ +\x20\x14\x2c\x21\x15\x34\x27\x18\x2c\x21\x15\x27\x1d\x13\x2f\x23\ +\x17\x2b\x20\x15\x28\x1e\x13\x29\x1f\x14\x23\x1a\x10\x20\x18\x0f\ +\x20\x18\x0f\x20\x18\x0f\x20\x19\x0f\x25\x1b\x11\x27\x1e\x13\x2f\ +\x24\x17\x2a\x20\x14\x25\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x23\ +\x16\x3c\x2d\x1c\x40\x30\x1f\x35\x27\x1a\x2a\x20\x14\x2e\x22\x16\ +\x36\x29\x1a\x47\x34\x22\x38\x2b\x1b\x35\x28\x1a\x31\x25\x18\x35\ +\x27\x19\x2e\x23\x16\x2f\x24\x17\x24\x1a\x11\x2b\x20\x14\x2f\x23\ +\x16\x34\x27\x19\x31\x25\x18\x30\x24\x17\x31\x25\x17\x3a\x2b\x1c\ +\x39\x2b\x1b\x33\x26\x18\x36\x28\x19\x38\x29\x1b\x35\x27\x1a\x36\ +\x28\x1a\x3e\x2e\x1d\x43\x32\x20\x2f\x24\x17\x2a\x20\x14\x26\x1c\ +\x12\x22\x19\x10\x2e\x22\x16\x2d\x21\x15\x36\x28\x1a\x35\x27\x19\ +\x3a\x2c\x1c\x30\x24\x17\x2c\x21\x15\x35\x27\x1a\x31\x25\x17\x37\ +\x29\x1a\x37\x2a\x1a\x38\x2a\x1b\x33\x26\x18\x2d\x21\x15\x29\x1f\ +\x13\x2c\x21\x15\x32\x25\x18\x34\x27\x19\x2d\x21\x16\x26\x1d\x12\ +\x2b\x21\x14\x29\x1f\x14\x2e\x22\x16\x3c\x2d\x1d\x35\x28\x1a\x35\ +\x28\x1a\x2f\x23\x17\x29\x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x31\x25\ +\x18\x3b\x2d\x1d\x44\x33\x21\x3c\x2d\x1c\x31\x24\x17\x31\x24\x17\ +\x34\x27\x18\x35\x28\x19\x3a\x2c\x1c\x3f\x2f\x1f\x39\x2b\x1c\x2e\ +\x23\x16\x27\x1d\x13\x26\x1d\x13\x28\x1e\x13\x28\x1d\x12\x2a\x20\ +\x14\x37\x29\x1a\x41\x31\x20\x3e\x2e\x1e\x3d\x2f\x20\x34\x32\x31\ +\x39\x3b\x3c\x3f\x41\x42\x3f\x41\x42\x5e\x61\x63\x66\x6b\x6d\x6b\ +\x72\x75\x63\x6c\x6f\x64\x6e\x73\x71\x78\x7f\x74\x7a\x80\x76\x7d\ +\x84\x76\x7c\x82\x72\x7b\x81\x70\x78\x7f\x72\x7a\x81\x71\x78\x80\ +\x6f\x77\x7e\x6c\x74\x7b\x6b\x72\x7a\x6a\x72\x79\x6b\x73\x7a\x69\ +\x73\x7a\x68\x72\x79\x67\x70\x78\x67\x71\x79\x68\x72\x7b\x66\x70\ +\x7a\x65\x6f\x78\x64\x6e\x76\x65\x6f\x77\x66\x71\x79\x66\x6f\x78\ +\x65\x70\x77\x65\x70\x77\x00\x00\x00\x45\x34\x22\x45\x33\x21\x32\ +\x25\x18\x28\x1e\x13\x1d\x16\x0e\x1c\x15\x0d\x1d\x15\x0e\x1d\x16\ +\x0e\x21\x19\x10\x21\x18\x10\x1a\x13\x0c\x16\x11\x0b\x18\x12\x0b\ +\x1a\x13\x0d\x1c\x15\x0e\x22\x19\x10\x2c\x21\x15\x22\x19\x10\x22\ +\x19\x10\x2a\x1f\x14\x29\x1f\x14\x28\x1e\x13\x24\x1b\x11\x24\x1b\ +\x11\x29\x1f\x13\x2a\x20\x15\x29\x1f\x14\x32\x26\x18\x2f\x24\x16\ +\x32\x25\x18\x34\x27\x19\x31\x24\x17\x22\x1a\x10\x22\x1a\x11\x26\ +\x1d\x12\x29\x1f\x13\x27\x1e\x13\x25\x1b\x12\x2c\x21\x15\x31\x25\ +\x18\x27\x1d\x13\x22\x19\x11\x23\x1a\x10\x23\x1a\x10\x2c\x21\x15\ +\x3c\x2d\x1d\x37\x29\x1a\x2d\x22\x15\x2c\x22\x16\x35\x27\x19\x3b\ +\x2c\x1c\x3b\x2d\x1c\x41\x31\x20\x3b\x2c\x1d\x3a\x2c\x1c\x3a\x2c\ +\x1c\x33\x27\x19\x2e\x23\x16\x2a\x20\x14\x2e\x22\x16\x33\x27\x18\ +\x2d\x22\x15\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x2d\x21\x15\x2e\ +\x22\x16\x37\x29\x1a\x37\x2a\x1b\x35\x27\x1a\x2f\x24\x17\x2f\x23\ +\x16\x2b\x21\x15\x2d\x22\x16\x25\x1b\x11\x27\x1d\x13\x25\x1b\x11\ +\x30\x24\x17\x2d\x22\x16\x36\x29\x1a\x32\x25\x18\x34\x26\x18\x32\ +\x25\x18\x39\x2a\x1b\x36\x28\x1a\x34\x26\x18\x35\x27\x19\x34\x27\ +\x19\x3d\x2d\x1e\x3b\x2b\x1c\x35\x28\x19\x2f\x23\x16\x24\x1b\x12\ +\x25\x1b\x11\x21\x19\x10\x26\x1c\x12\x23\x1a\x10\x2a\x1f\x14\x24\ +\x1b\x12\x24\x1b\x11\x34\x28\x1a\x42\x32\x20\x35\x28\x19\x3e\x2e\ +\x1d\x45\x34\x22\x2a\x1f\x14\x2b\x20\x15\x2f\x23\x17\x37\x29\x1b\ +\x3d\x2e\x1d\x3d\x2f\x1e\x35\x27\x19\x30\x24\x17\x30\x24\x17\x34\ +\x27\x19\x3a\x2b\x1c\x3f\x2f\x1e\x4c\x39\x24\x3d\x2e\x1d\x2a\x1f\ +\x14\x34\x28\x1a\x2e\x23\x16\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\ +\x5a\x44\x2c\x41\x31\x1f\x3f\x2f\x20\x36\x34\x2f\x38\x3a\x3b\x2e\ +\x2f\x31\x50\x53\x53\x5b\x5f\x60\x64\x69\x6b\x58\x5e\x61\x19\x1d\ +\x20\x1f\x24\x28\x66\x6d\x74\x78\x7e\x85\x74\x7b\x82\x76\x7e\x84\ +\x75\x7d\x84\x72\x7a\x81\x70\x78\x7f\x6e\x76\x7d\x6d\x75\x7c\x6e\ +\x75\x7d\x6d\x75\x7d\x6d\x75\x7c\x6b\x73\x7a\x68\x71\x7a\x6a\x73\ +\x7b\x68\x72\x7a\x68\x72\x7b\x67\x71\x7a\x68\x72\x7b\x66\x70\x79\ +\x67\x72\x7b\x64\x6f\x78\x64\x6f\x77\x66\x6f\x78\x69\x72\x7b\x69\ +\x74\x7b\x00\x00\x00\x48\x36\x23\x45\x34\x21\x2c\x20\x15\x22\x19\ +\x10\x1c\x14\x0d\x1d\x15\x0d\x1c\x16\x0d\x1f\x18\x0f\x23\x1a\x11\ +\x22\x19\x10\x1c\x15\x0d\x17\x11\x0b\x1e\x16\x0f\x24\x1b\x11\x2c\ +\x21\x15\x2a\x20\x14\x2f\x24\x17\x2b\x20\x15\x25\x1c\x12\x22\x1a\ +\x10\x23\x1a\x11\x20\x18\x0f\x21\x19\x10\x1d\x16\x0e\x1e\x16\x0e\ +\x20\x19\x10\x26\x1d\x12\x27\x1e\x14\x2c\x21\x15\x33\x26\x19\x38\ +\x2a\x1b\x3b\x2c\x1d\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\x25\x1b\ +\x11\x28\x1e\x13\x29\x1e\x13\x27\x1d\x12\x31\x25\x18\x3d\x2e\x1e\ +\x33\x26\x19\x2e\x23\x16\x2e\x22\x16\x2e\x23\x16\x3a\x2c\x1d\x3a\ +\x2c\x1c\x35\x28\x1a\x2f\x23\x16\x34\x26\x19\x33\x26\x19\x2f\x23\ +\x16\x39\x2a\x1c\x36\x28\x1a\x38\x2b\x1b\x3b\x2c\x1c\x40\x30\x1f\ +\x31\x25\x18\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x29\x1f\x14\x2e\ +\x23\x16\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2d\x22\x16\x2e\x22\ +\x16\x31\x25\x18\x3b\x2d\x1d\x39\x2b\x1c\x37\x2a\x1b\x2e\x23\x16\ +\x2c\x21\x15\x2a\x20\x14\x26\x1c\x12\x2c\x22\x15\x32\x26\x18\x35\ +\x28\x1a\x38\x2a\x1a\x37\x29\x1b\x2e\x22\x16\x32\x26\x18\x39\x2a\ +\x1b\x37\x29\x1a\x31\x24\x18\x33\x26\x18\x34\x27\x19\x35\x27\x1a\ +\x34\x27\x19\x35\x28\x19\x32\x26\x18\x28\x1e\x13\x23\x1a\x11\x23\ +\x1a\x11\x2a\x1f\x14\x25\x1c\x12\x2b\x1f\x14\x23\x1a\x11\x1f\x17\ +\x0f\x35\x28\x1a\x3c\x2d\x1d\x34\x26\x19\x2d\x22\x16\x31\x25\x18\ +\x29\x1f\x14\x2f\x23\x16\x37\x29\x1a\x37\x29\x1a\x3d\x2e\x1d\x3d\ +\x2e\x1d\x39\x2b\x1c\x3e\x2e\x1e\x39\x2b\x1c\x32\x25\x18\x2f\x24\ +\x17\x2c\x21\x15\x38\x29\x1b\x40\x30\x1f\x38\x2a\x1b\x36\x29\x1a\ +\x28\x1e\x13\x2e\x23\x16\x34\x27\x19\x35\x27\x19\x42\x32\x20\x41\ +\x31\x1f\x34\x28\x1a\x3b\x36\x31\x37\x38\x3a\x1e\x1e\x1f\x47\x4a\ +\x4c\x5a\x5e\x60\x63\x66\x69\x43\x46\x48\x00\x00\x00\x1b\x1e\x20\ +\x5c\x62\x68\x77\x7e\x85\x73\x7b\x82\x76\x7e\x84\x73\x7b\x82\x73\ +\x7b\x82\x71\x79\x80\x6d\x76\x7d\x6f\x77\x7e\x6e\x77\x7e\x6c\x74\ +\x7d\x6c\x73\x7c\x6b\x74\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7c\ +\x68\x72\x7b\x66\x70\x79\x68\x73\x7b\x67\x72\x7a\x6a\x74\x7d\x65\ +\x70\x78\x63\x6e\x76\x66\x71\x78\x6b\x74\x7b\x6b\x75\x7c\x00\x00\ +\x00\x56\x41\x2b\x4b\x38\x24\x2a\x20\x14\x28\x1e\x14\x1c\x15\x0d\ +\x21\x19\x10\x20\x18\x0f\x23\x1b\x10\x22\x19\x10\x1e\x16\x0e\x1e\ +\x17\x0e\x1f\x18\x0f\x25\x1c\x12\x26\x1d\x12\x2b\x20\x14\x31\x25\ +\x17\x34\x27\x19\x2c\x21\x15\x22\x19\x11\x1d\x16\x0e\x20\x18\x10\ +\x1f\x17\x0f\x24\x1b\x11\x23\x1a\x10\x23\x1a\x11\x1d\x16\x0e\x23\ +\x1a\x10\x21\x18\x10\x24\x1b\x11\x2c\x21\x15\x3c\x2d\x1d\x35\x27\ +\x19\x30\x24\x17\x31\x24\x18\x2c\x21\x15\x2d\x21\x15\x32\x26\x18\ +\x34\x27\x19\x2d\x22\x15\x34\x27\x19\x3f\x30\x1f\x3d\x2e\x1d\x39\ +\x2b\x1c\x39\x2b\x1c\x2f\x24\x17\x34\x27\x19\x3c\x2c\x1c\x34\x27\ +\x19\x2a\x1f\x14\x2e\x22\x16\x2f\x23\x17\x2b\x21\x15\x2e\x22\x16\ +\x2d\x22\x16\x31\x26\x17\x3b\x2d\x1d\x3e\x2e\x1d\x34\x27\x19\x32\ +\x26\x18\x2d\x22\x16\x24\x1b\x11\x27\x1e\x13\x29\x1f\x14\x2a\x20\ +\x14\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2a\x1f\x14\x33\x26\x19\ +\x39\x2b\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x2f\x23\x16\x36\ +\x29\x1a\x2d\x22\x15\x29\x20\x14\x34\x27\x19\x2f\x24\x17\x29\x1e\ +\x13\x35\x27\x19\x31\x25\x18\x34\x27\x19\x34\x27\x19\x30\x24\x16\ +\x2f\x23\x17\x37\x29\x1a\x31\x25\x18\x2d\x21\x15\x2e\x22\x16\x30\ +\x24\x17\x34\x26\x19\x32\x25\x18\x27\x1d\x12\x23\x1b\x11\x27\x1d\ +\x13\x22\x1a\x10\x24\x1b\x11\x21\x18\x10\x1f\x17\x0e\x34\x27\x19\ +\x31\x25\x18\x37\x29\x1a\x35\x29\x1a\x3f\x30\x1e\x29\x20\x14\x2e\ +\x22\x16\x30\x23\x17\x38\x2a\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x3b\x2c\ +\x1c\x40\x30\x1f\x3e\x2f\x1e\x36\x29\x1a\x34\x27\x19\x2a\x20\x14\ +\x2d\x21\x16\x3a\x2b\x1c\x3d\x2f\x1e\x37\x29\x1a\x2d\x21\x15\x2d\ +\x21\x16\x2a\x1f\x14\x2a\x20\x14\x30\x23\x17\x2f\x24\x17\x23\x1b\ +\x12\x3b\x34\x2f\x2f\x30\x31\x36\x37\x38\x30\x32\x34\x59\x5c\x5e\ +\x5d\x62\x64\x36\x39\x3c\x00\x00\x00\x2b\x2e\x31\x64\x6a\x70\x73\ +\x7a\x80\x73\x7b\x82\x74\x7c\x82\x72\x7a\x81\x71\x79\x80\x70\x78\ +\x7f\x6d\x77\x7e\x6f\x77\x7f\x6d\x76\x7d\x6b\x74\x7d\x6b\x74\x7d\ +\x6b\x74\x7d\x6b\x75\x7e\x6a\x74\x7d\x6a\x74\x7d\x67\x71\x7a\x65\ +\x70\x78\x66\x71\x79\x67\x72\x7a\x68\x74\x7c\x67\x72\x7a\x66\x71\ +\x79\x68\x72\x7a\x69\x72\x79\x6a\x74\x7b\x00\x00\x00\x5f\x48\x2f\ +\x54\x40\x29\x2f\x24\x17\x1e\x17\x0f\x1f\x17\x0f\x21\x18\x0f\x23\ +\x1a\x10\x26\x1c\x12\x2c\x21\x15\x23\x1a\x11\x26\x1c\x12\x28\x1e\ +\x13\x2d\x22\x16\x2c\x20\x15\x2d\x21\x16\x28\x1e\x14\x30\x24\x17\ +\x2f\x23\x17\x28\x1e\x13\x25\x1c\x12\x23\x1a\x11\x1e\x17\x0f\x23\ +\x1a\x11\x24\x1b\x11\x27\x1d\x12\x26\x1c\x12\x2a\x20\x14\x20\x17\ +\x0f\x23\x1a\x11\x2b\x20\x14\x33\x26\x18\x32\x25\x18\x35\x28\x19\ +\x37\x29\x1b\x31\x25\x18\x34\x28\x19\x3b\x2d\x1d\x2e\x23\x16\x27\ +\x1e\x12\x2f\x23\x16\x37\x29\x1a\x38\x2a\x1b\x37\x29\x1a\x33\x26\ +\x19\x31\x25\x18\x37\x2a\x1a\x3e\x2e\x1e\x33\x25\x18\x2a\x1f\x14\ +\x30\x24\x17\x33\x26\x19\x32\x26\x18\x30\x24\x17\x35\x28\x1a\x33\ +\x27\x18\x33\x26\x18\x3d\x2d\x1d\x3a\x2c\x1c\x3c\x2d\x1d\x35\x27\ +\x1a\x2b\x20\x15\x2a\x20\x14\x29\x1f\x14\x25\x1c\x12\x28\x1e\x13\ +\x2c\x21\x15\x31\x24\x17\x2d\x21\x15\x34\x27\x19\x39\x2b\x1b\x36\ +\x28\x1a\x38\x2a\x1b\x38\x2a\x1b\x34\x26\x19\x33\x26\x18\x31\x24\ +\x18\x29\x1f\x13\x2d\x22\x15\x2b\x21\x14\x2d\x22\x15\x2e\x22\x16\ +\x2e\x22\x16\x34\x27\x19\x37\x29\x1a\x31\x24\x17\x33\x26\x18\x34\ +\x27\x19\x30\x24\x17\x2d\x22\x15\x2a\x1f\x14\x2b\x20\x14\x2f\x23\ +\x17\x2c\x20\x15\x26\x1d\x12\x31\x25\x17\x2b\x20\x15\x2b\x21\x15\ +\x2b\x20\x14\x28\x1d\x13\x32\x25\x18\x2e\x23\x16\x30\x24\x17\x36\ +\x28\x1a\x34\x27\x19\x40\x2f\x1e\x3a\x2c\x1d\x2c\x21\x15\x2d\x21\ +\x15\x2f\x24\x17\x34\x27\x19\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1c\ +\x39\x2b\x1c\x35\x28\x1a\x33\x26\x18\x2b\x20\x14\x2d\x21\x15\x31\ +\x25\x18\x3c\x2e\x1d\x2f\x24\x17\x36\x29\x1a\x33\x26\x19\x31\x25\ +\x18\x2a\x1f\x14\x2e\x22\x16\x24\x1b\x11\x29\x1f\x15\x38\x31\x2a\ +\x23\x25\x26\x40\x42\x44\x36\x38\x3a\x4c\x4e\x51\x5c\x61\x63\x34\ +\x36\x38\x00\x00\x00\x36\x39\x3b\x66\x6c\x70\x6f\x75\x7c\x76\x7c\ +\x83\x75\x7b\x81\x74\x7c\x83\x71\x79\x80\x6d\x76\x7d\x6a\x74\x7c\ +\x6c\x74\x7d\x6b\x74\x7d\x6c\x75\x7e\x6e\x77\x80\x6b\x75\x7d\x6b\ +\x75\x7e\x6c\x76\x7f\x6a\x75\x7d\x68\x72\x7b\x67\x72\x7b\x67\x72\ +\x7a\x66\x70\x78\x65\x70\x78\x67\x72\x7a\x66\x71\x79\x67\x70\x78\ +\x69\x73\x7a\x6b\x74\x7b\x00\x00\x00\x58\x42\x2a\x4d\x3a\x25\x36\ +\x28\x1a\x23\x1a\x11\x1f\x17\x0f\x22\x1a\x10\x2a\x1f\x14\x2b\x20\ +\x15\x2e\x23\x17\x27\x1d\x13\x28\x1e\x13\x28\x1d\x13\x30\x24\x17\ +\x30\x25\x18\x31\x25\x18\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x32\ +\x26\x18\x2c\x21\x15\x27\x1d\x13\x24\x1b\x11\x27\x1d\x13\x24\x1b\ +\x11\x24\x1b\x11\x2d\x22\x16\x2e\x23\x16\x28\x1e\x14\x22\x1a\x11\ +\x2d\x22\x16\x2f\x23\x16\x31\x25\x18\x35\x27\x19\x38\x2a\x1b\x32\ +\x25\x17\x2c\x21\x15\x2f\x24\x17\x2b\x21\x15\x24\x1c\x11\x26\x1d\ +\x12\x32\x25\x18\x3b\x2b\x1c\x38\x2a\x1b\x36\x29\x1a\x35\x28\x1a\ +\x32\x26\x18\x38\x2a\x1b\x36\x28\x1a\x35\x28\x19\x32\x26\x18\x2e\ +\x22\x16\x2d\x22\x16\x32\x26\x19\x30\x24\x16\x2e\x22\x16\x34\x27\ +\x19\x3d\x2e\x1e\x3e\x2e\x1d\x42\x31\x20\x41\x30\x1f\x32\x26\x18\ +\x2f\x23\x16\x29\x1f\x14\x25\x1c\x12\x2a\x20\x14\x2d\x21\x15\x2b\ +\x20\x15\x2d\x22\x16\x31\x24\x17\x33\x26\x19\x35\x27\x19\x33\x26\ +\x18\x3a\x2c\x1c\x34\x27\x19\x33\x26\x18\x35\x28\x1a\x32\x26\x18\ +\x39\x2b\x1b\x39\x2b\x1b\x36\x29\x1a\x28\x1e\x14\x2b\x20\x15\x32\ +\x26\x18\x37\x2a\x1a\x37\x29\x1a\x38\x2a\x1b\x36\x29\x1a\x38\x2a\ +\x1b\x38\x2a\x1b\x36\x28\x1a\x33\x26\x19\x30\x24\x17\x29\x1f\x14\ +\x25\x1c\x12\x2d\x22\x16\x2e\x22\x16\x32\x26\x18\x2c\x22\x15\x29\ +\x1e\x14\x31\x25\x18\x2b\x21\x15\x2f\x23\x16\x31\x24\x17\x2e\x22\ +\x17\x33\x26\x18\x3d\x2e\x1e\x2b\x1f\x14\x33\x26\x18\x2c\x21\x15\ +\x2e\x22\x16\x2e\x22\x16\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x3a\ +\x2b\x1c\x33\x26\x19\x33\x26\x18\x32\x25\x18\x2e\x23\x17\x34\x27\ +\x18\x2f\x23\x17\x2f\x23\x17\x37\x2a\x1b\x34\x26\x19\x35\x28\x1a\ +\x30\x23\x16\x25\x1d\x12\x28\x1f\x14\x3e\x34\x2a\x27\x29\x2a\x40\ +\x42\x44\x46\x47\x49\x39\x3a\x3b\x5e\x63\x64\x42\x46\x46\x16\x16\ +\x17\x4a\x4d\x51\x65\x6a\x6e\x6f\x75\x7c\x75\x7c\x83\x74\x7c\x82\ +\x74\x7c\x83\x70\x78\x7f\x6e\x77\x7e\x68\x71\x7a\x6b\x73\x7c\x6a\ +\x73\x7d\x6b\x74\x7e\x6b\x75\x7f\x6c\x76\x7e\x6b\x75\x7e\x6a\x74\ +\x7d\x68\x73\x7b\x68\x72\x7b\x67\x72\x7b\x67\x71\x7a\x66\x70\x79\ +\x65\x6f\x78\x66\x70\x78\x67\x70\x79\x67\x71\x78\x6a\x74\x7b\x6c\ +\x75\x7c\x00\x00\x00\x56\x40\x29\x50\x3c\x26\x33\x27\x18\x2c\x21\ +\x15\x22\x19\x10\x22\x1b\x11\x29\x1f\x13\x2c\x20\x15\x21\x19\x10\ +\x23\x1a\x10\x27\x1e\x13\x29\x1f\x14\x33\x27\x19\x2f\x24\x16\x25\ +\x1c\x11\x20\x18\x0f\x22\x1a\x10\x25\x1c\x12\x2d\x22\x16\x2d\x22\ +\x16\x2c\x21\x15\x26\x1d\x12\x25\x1b\x12\x24\x1b\x11\x2b\x20\x14\ +\x30\x24\x17\x2e\x22\x16\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x2e\ +\x23\x16\x2f\x23\x17\x31\x25\x18\x35\x28\x19\x35\x28\x19\x2d\x21\ +\x15\x2b\x20\x15\x29\x1f\x14\x22\x1a\x10\x26\x1c\x12\x2c\x21\x15\ +\x31\x25\x18\x33\x26\x18\x35\x28\x19\x37\x2a\x1b\x31\x25\x18\x2f\ +\x23\x17\x35\x28\x1a\x34\x28\x19\x33\x26\x19\x34\x27\x19\x2d\x21\ +\x15\x33\x26\x18\x2b\x21\x15\x31\x25\x18\x35\x27\x19\x3e\x2e\x1d\ +\x3e\x2f\x1e\x40\x30\x1f\x43\x32\x20\x37\x29\x1b\x2d\x22\x15\x28\ +\x1f\x14\x22\x1a\x11\x28\x1e\x13\x2f\x23\x16\x30\x24\x17\x31\x24\ +\x17\x2b\x20\x15\x2b\x20\x14\x35\x27\x19\x38\x2a\x1a\x3c\x2d\x1d\ +\x34\x27\x19\x35\x28\x19\x34\x28\x1a\x39\x2b\x1c\x3c\x2c\x1d\x3e\ +\x2e\x1d\x33\x26\x18\x28\x1f\x13\x2d\x22\x16\x34\x27\x19\x2e\x22\ +\x16\x30\x24\x17\x35\x27\x19\x38\x2a\x1b\x42\x31\x1f\x41\x30\x1f\ +\x42\x31\x20\x3f\x2f\x1f\x3d\x2e\x1d\x31\x25\x18\x2b\x21\x15\x2d\ +\x22\x15\x2f\x24\x17\x33\x26\x19\x31\x25\x18\x2c\x21\x15\x2e\x23\ +\x16\x32\x25\x18\x2c\x21\x15\x30\x24\x16\x2a\x1f\x14\x2b\x20\x15\ +\x2d\x21\x15\x2a\x1f\x14\x2b\x21\x14\x29\x1f\x14\x27\x1c\x12\x25\ +\x1c\x12\x25\x1c\x12\x29\x1e\x14\x2f\x23\x16\x37\x29\x1a\x36\x29\ +\x1a\x37\x29\x1b\x3b\x2c\x1c\x36\x28\x1a\x32\x26\x18\x33\x26\x19\ +\x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x3b\x2b\x1c\x39\x2a\x1b\x21\ +\x19\x10\x21\x19\x10\x3c\x30\x24\x24\x26\x27\x3e\x41\x43\x47\x4b\ +\x4c\x3f\x43\x45\x4f\x54\x56\x5c\x61\x65\x54\x58\x5c\x5b\x5f\x65\ +\x60\x62\x69\x72\x77\x7d\x72\x7a\x81\x73\x7c\x82\x73\x7b\x82\x71\ +\x79\x7f\x71\x79\x80\x6c\x75\x7e\x6d\x76\x7f\x6c\x75\x7f\x6d\x76\ +\x81\x6b\x74\x7e\x6b\x75\x7f\x6a\x75\x7d\x69\x73\x7c\x68\x72\x7c\ +\x69\x73\x7c\x66\x71\x7a\x66\x70\x79\x67\x71\x7a\x68\x72\x7b\x67\ +\x70\x78\x68\x72\x7a\x69\x73\x7b\x6c\x75\x7d\x6e\x77\x7e\x00\x00\ +\x00\x55\x40\x29\x52\x3e\x28\x3e\x2f\x1d\x2b\x20\x14\x21\x18\x0f\ +\x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x21\x18\x10\x24\x1b\x10\x2a\ +\x1f\x14\x2c\x21\x15\x2e\x23\x16\x2b\x20\x14\x1d\x16\x0e\x1c\x15\ +\x0e\x21\x19\x0f\x20\x19\x10\x24\x1b\x11\x2e\x23\x16\x31\x25\x17\ +\x2e\x23\x16\x27\x1d\x12\x25\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2e\ +\x23\x16\x32\x25\x18\x39\x2b\x1c\x34\x27\x1a\x31\x24\x17\x28\x1e\ +\x13\x2e\x22\x16\x2c\x21\x16\x2d\x22\x16\x30\x24\x17\x30\x24\x17\ +\x27\x1d\x12\x22\x1a\x11\x25\x1b\x12\x27\x1e\x13\x2a\x20\x15\x2a\ +\x1f\x14\x34\x27\x19\x37\x29\x1b\x2f\x23\x17\x2b\x20\x15\x2f\x23\ +\x16\x30\x24\x17\x37\x29\x1a\x3a\x2b\x1c\x34\x26\x19\x34\x26\x19\ +\x30\x24\x17\x38\x2a\x1b\x2e\x22\x16\x37\x29\x1a\x37\x29\x1a\x35\ +\x28\x1a\x35\x28\x1a\x32\x25\x18\x32\x26\x18\x2f\x24\x17\x25\x1c\ +\x12\x27\x1d\x13\x26\x1c\x12\x29\x1e\x13\x2b\x20\x14\x28\x1e\x13\ +\x2c\x20\x15\x34\x27\x19\x39\x2c\x1b\x36\x29\x1a\x39\x2b\x1b\x3a\ +\x2b\x1c\x38\x29\x1b\x33\x26\x19\x36\x29\x1a\x37\x28\x1a\x35\x27\ +\x19\x30\x24\x17\x31\x24\x18\x37\x2a\x1b\x36\x28\x1a\x37\x2a\x1b\ +\x36\x29\x1a\x37\x29\x1a\x3c\x2d\x1d\x3a\x2b\x1c\x3f\x2f\x1e\x43\ +\x32\x20\x43\x32\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3c\x2c\x1c\x3a\x2c\ +\x1c\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x31\x25\x18\x35\x28\x1a\ +\x2c\x21\x15\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x27\x1d\x13\x2d\ +\x22\x15\x2b\x20\x15\x28\x1e\x13\x26\x1c\x13\x29\x1e\x14\x2e\x23\ +\x16\x2b\x21\x15\x28\x1e\x14\x30\x24\x17\x37\x2a\x1b\x34\x27\x19\ +\x38\x2a\x1b\x34\x27\x19\x3c\x2d\x1d\x38\x29\x1b\x34\x27\x19\x35\ +\x28\x19\x2e\x23\x16\x37\x29\x19\x3d\x2e\x1d\x24\x1b\x11\x22\x1a\ +\x10\x3a\x2e\x21\x1e\x1f\x21\x3e\x41\x42\x36\x3b\x3c\x1f\x22\x24\ +\x29\x2c\x2e\x6a\x70\x74\x6d\x73\x78\x55\x5b\x60\x5b\x60\x67\x75\ +\x7b\x81\x73\x7b\x82\x74\x7c\x82\x71\x79\x80\x70\x77\x7f\x71\x78\ +\x81\x6c\x76\x7f\x6e\x78\x81\x6e\x77\x80\x6d\x77\x80\x6b\x75\x7f\ +\x6b\x75\x7f\x69\x73\x7d\x68\x73\x7c\x69\x73\x7d\x6a\x74\x7f\x67\ +\x71\x7b\x67\x71\x7a\x68\x73\x7c\x69\x74\x7c\x68\x72\x7b\x67\x72\ +\x7a\x6b\x74\x7d\x6d\x76\x7f\x6d\x75\x7d\x00\x00\x00\x52\x3e\x28\ +\x4f\x3b\x26\x40\x30\x1f\x26\x1d\x12\x23\x19\x10\x20\x18\x0f\x1f\ +\x17\x0f\x26\x1c\x12\x2b\x20\x14\x27\x1d\x13\x20\x18\x0f\x20\x18\ +\x10\x21\x19\x10\x23\x1a\x11\x19\x13\x0c\x1a\x14\x0d\x1c\x15\x0d\ +\x1c\x15\x0e\x1f\x18\x0f\x2e\x23\x16\x37\x29\x1a\x34\x27\x19\x26\ +\x1d\x12\x24\x1b\x11\x21\x19\x10\x27\x1d\x13\x2b\x20\x14\x2e\x22\ +\x16\x36\x28\x19\x33\x26\x18\x2d\x22\x16\x28\x1e\x13\x27\x1d\x12\ +\x29\x1f\x14\x25\x1c\x11\x2e\x22\x16\x2f\x23\x16\x2c\x21\x15\x25\ +\x1c\x12\x23\x1b\x11\x26\x1d\x12\x28\x1e\x14\x27\x1d\x13\x2c\x21\ +\x15\x31\x25\x17\x2d\x22\x15\x29\x1f\x14\x2c\x21\x15\x32\x25\x18\ +\x3a\x2b\x1c\x40\x30\x1f\x3d\x2d\x1d\x37\x29\x1a\x31\x24\x17\x2e\ +\x23\x16\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\x38\x2a\x1b\x32\x25\ +\x18\x2a\x1f\x14\x2c\x21\x15\x2f\x24\x17\x2c\x21\x15\x34\x27\x19\ +\x2d\x22\x15\x2c\x21\x15\x29\x1f\x14\x25\x1c\x12\x2d\x22\x16\x36\ +\x28\x19\x3c\x2d\x1d\x34\x27\x19\x38\x2a\x1b\x35\x28\x19\x3b\x2b\ +\x1c\x31\x25\x18\x34\x28\x19\x2f\x23\x17\x33\x26\x19\x31\x25\x18\ +\x35\x27\x19\x36\x29\x1a\x39\x2b\x1b\x37\x29\x1a\x33\x26\x18\x38\ +\x2a\x1b\x35\x28\x1a\x35\x28\x1a\x3c\x2c\x1d\x42\x32\x20\x3e\x2f\ +\x1e\x39\x2b\x1c\x3b\x2c\x1c\x3c\x2c\x1c\x39\x2b\x1b\x37\x2a\x1b\ +\x33\x26\x18\x31\x24\x18\x34\x27\x19\x3f\x2f\x1f\x37\x2a\x1b\x34\ +\x27\x19\x31\x24\x18\x2f\x23\x16\x29\x1f\x13\x30\x24\x17\x30\x24\ +\x17\x2f\x23\x16\x2f\x24\x17\x36\x28\x1a\x3c\x2d\x1d\x34\x27\x19\ +\x2d\x22\x16\x2a\x1f\x14\x31\x24\x18\x34\x27\x19\x37\x29\x1b\x37\ +\x29\x1a\x40\x30\x1f\x3f\x2e\x1f\x37\x29\x1a\x30\x24\x17\x2b\x20\ +\x15\x35\x28\x19\x33\x26\x18\x33\x26\x19\x24\x1c\x11\x3d\x31\x23\ +\x28\x2a\x2b\x2c\x2a\x28\x0d\x0e\x0f\x1a\x1a\x1c\x1f\x1f\x22\x4d\ +\x52\x56\x5f\x65\x69\x4d\x53\x58\x6a\x70\x76\x74\x7b\x81\x71\x79\ +\x80\x73\x7b\x81\x70\x78\x7f\x6f\x76\x7d\x6f\x78\x80\x6d\x76\x7f\ +\x6d\x76\x7f\x6b\x74\x7d\x6b\x75\x7e\x6c\x76\x7f\x6a\x74\x7d\x69\ +\x73\x7c\x6a\x74\x7d\x69\x73\x7d\x69\x73\x7d\x69\x73\x7e\x68\x72\ +\x7c\x68\x72\x7c\x66\x70\x7a\x68\x71\x7a\x68\x71\x7a\x6a\x73\x7c\ +\x6d\x76\x7f\x6f\x77\x80\x00\x00\x00\x57\x41\x2a\x4c\x38\x24\x44\ +\x33\x21\x22\x1a\x11\x26\x1d\x12\x23\x1a\x10\x1d\x15\x0e\x27\x1e\ +\x13\x23\x1b\x10\x20\x19\x10\x1f\x17\x0e\x21\x18\x0f\x1c\x15\x0e\ +\x1a\x14\x0c\x16\x11\x0b\x16\x11\x0b\x14\x0f\x0a\x16\x10\x0a\x1b\ +\x15\x0d\x22\x1a\x10\x26\x1d\x12\x2b\x20\x15\x2a\x1f\x14\x1f\x18\ +\x0f\x20\x18\x0f\x27\x1d\x12\x25\x1c\x12\x30\x24\x17\x30\x25\x18\ +\x36\x28\x1a\x33\x26\x19\x2b\x20\x15\x27\x1e\x13\x2b\x20\x15\x23\ +\x1a\x11\x27\x1d\x13\x2c\x21\x16\x36\x28\x1a\x35\x27\x19\x28\x1e\ +\x14\x25\x1b\x12\x27\x1d\x12\x29\x1f\x14\x2b\x20\x15\x2b\x20\x14\ +\x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x34\x27\x19\x38\x2a\x1a\x3e\ +\x2e\x1e\x37\x2a\x1b\x3a\x2c\x1c\x32\x25\x18\x31\x24\x17\x35\x28\ +\x1a\x31\x25\x17\x29\x1f\x14\x34\x27\x19\x2c\x21\x15\x26\x1c\x13\ +\x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x34\ +\x27\x19\x32\x25\x18\x27\x1d\x13\x2e\x22\x16\x39\x2a\x1b\x3e\x2f\ +\x1e\x3f\x2f\x1f\x31\x25\x18\x33\x26\x18\x38\x2a\x1b\x35\x27\x1a\ +\x36\x28\x1a\x2c\x21\x15\x30\x23\x17\x2d\x22\x16\x38\x2a\x1b\x3b\ +\x2c\x1c\x3a\x2b\x1b\x30\x24\x18\x30\x23\x17\x38\x2a\x1b\x3c\x2d\ +\x1d\x3a\x2b\x1c\x3e\x2f\x1e\x42\x32\x20\x44\x33\x21\x44\x33\x20\ +\x44\x33\x21\x35\x27\x19\x37\x29\x1a\x3a\x2b\x1b\x37\x29\x1a\x34\ +\x27\x19\x35\x28\x19\x3b\x2c\x1d\x42\x31\x20\x38\x2a\x1b\x39\x2b\ +\x1c\x35\x28\x19\x35\x28\x19\x2a\x20\x14\x23\x1a\x11\x2a\x20\x14\ +\x32\x25\x18\x35\x28\x19\x41\x30\x1f\x3d\x2e\x1d\x32\x26\x18\x28\ +\x1e\x13\x29\x1e\x13\x2d\x22\x15\x36\x28\x1a\x36\x28\x19\x3a\x2b\ +\x1c\x3c\x2d\x1d\x36\x29\x1a\x33\x27\x19\x2e\x23\x16\x2e\x23\x16\ +\x26\x1d\x13\x2a\x20\x14\x23\x1a\x11\x34\x2a\x1e\x32\x34\x35\x0d\ +\x0d\x0b\x25\x26\x26\x48\x4b\x4c\x44\x47\x4a\x34\x37\x3d\x49\x4f\ +\x54\x54\x5b\x60\x72\x7a\x80\x73\x7b\x81\x71\x79\x80\x73\x7b\x81\ +\x72\x7b\x82\x70\x79\x80\x6d\x76\x7f\x71\x7a\x83\x6f\x78\x81\x6b\ +\x74\x7d\x6b\x74\x7d\x6a\x74\x7d\x6b\x74\x7d\x68\x72\x7b\x69\x73\ +\x7d\x6a\x74\x7e\x69\x73\x7d\x6a\x74\x7e\x6a\x73\x7f\x69\x73\x7d\ +\x65\x6f\x78\x67\x71\x7a\x69\x73\x7b\x6b\x74\x7d\x6e\x77\x80\x6f\ +\x78\x81\x00\x00\x00\x52\x3e\x27\x51\x3c\x27\x44\x32\x20\x26\x1d\ +\x13\x29\x1f\x14\x20\x18\x10\x23\x1a\x11\x26\x1d\x13\x21\x19\x0f\ +\x1d\x15\x0d\x1c\x15\x0d\x1f\x18\x0f\x18\x13\x0c\x17\x12\x0b\x17\ +\x11\x0b\x1d\x16\x0e\x1d\x15\x0e\x1b\x14\x0d\x1d\x16\x0e\x21\x19\ +\x10\x29\x1e\x14\x31\x24\x18\x31\x24\x18\x23\x1b\x11\x1d\x15\x0e\ +\x21\x19\x0f\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x38\x29\x1a\x2f\ +\x24\x17\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x29\x1f\x13\x29\x1f\ +\x14\x32\x26\x18\x30\x24\x17\x36\x28\x1a\x2d\x21\x16\x24\x1a\x11\ +\x25\x1c\x11\x27\x1e\x13\x26\x1c\x12\x26\x1c\x12\x2a\x20\x14\x2c\ +\x20\x15\x2b\x20\x15\x2b\x20\x15\x30\x23\x17\x3a\x2b\x1c\x39\x2a\ +\x1b\x3f\x2f\x1e\x31\x25\x17\x38\x29\x1a\x39\x2b\x1c\x37\x2a\x1a\ +\x29\x1f\x14\x32\x26\x18\x37\x2a\x1b\x2b\x20\x15\x2b\x20\x14\x31\ +\x25\x18\x2e\x23\x17\x2e\x23\x16\x33\x26\x19\x38\x2a\x1c\x33\x27\ +\x19\x2c\x21\x15\x31\x25\x18\x3b\x2c\x1c\x3f\x2f\x1e\x40\x30\x1f\ +\x3e\x2e\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x42\x32\x20\x3a\x2b\x1c\x3e\ +\x2e\x1d\x3c\x2d\x1d\x3a\x2c\x1c\x46\x34\x21\x49\x37\x23\x47\x35\ +\x22\x36\x29\x1a\x3b\x2c\x1d\x38\x2a\x1b\x35\x28\x19\x3a\x2c\x1c\ +\x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x41\ +\x30\x1f\x3f\x2f\x1f\x45\x33\x22\x36\x29\x1a\x2e\x23\x16\x2c\x21\ +\x15\x2b\x20\x15\x3a\x2c\x1c\x3b\x2c\x1d\x34\x27\x19\x3e\x2f\x1e\ +\x3b\x2c\x1c\x2a\x20\x14\x28\x1e\x13\x23\x1a\x11\x2e\x22\x16\x31\ +\x25\x17\x38\x2a\x1b\x39\x2b\x1c\x38\x2a\x1b\x30\x24\x17\x2c\x21\ +\x15\x2a\x1f\x14\x2f\x23\x17\x2b\x21\x15\x32\x25\x18\x37\x29\x1a\ +\x33\x26\x18\x34\x28\x19\x32\x26\x18\x34\x27\x18\x35\x28\x1a\x29\ +\x1f\x14\x1e\x17\x0f\x45\x36\x26\x27\x29\x2a\x02\x01\x02\x2c\x2e\ +\x2f\x24\x28\x2a\x35\x39\x3b\x31\x33\x37\x2f\x33\x37\x6e\x77\x7b\ +\x72\x7b\x81\x72\x7b\x81\x75\x7d\x84\x74\x7c\x82\x72\x7a\x81\x6e\ +\x78\x7f\x6d\x76\x7f\x6e\x77\x80\x6b\x75\x7e\x6b\x74\x7d\x6b\x74\ +\x7d\x6a\x73\x7d\x6b\x74\x7e\x69\x74\x7d\x6a\x74\x7e\x69\x72\x7d\ +\x67\x71\x7c\x69\x73\x7e\x6b\x75\x7f\x6b\x75\x7f\x68\x72\x7b\x69\ +\x73\x7c\x6c\x75\x7f\x6b\x74\x7c\x6d\x76\x7e\x72\x7a\x82\x00\x00\ +\x00\x4f\x3b\x26\x57\x41\x2a\x48\x35\x22\x23\x1b\x11\x26\x1d\x12\ +\x2e\x22\x16\x26\x1c\x12\x24\x1c\x12\x2c\x21\x15\x21\x1a\x10\x22\ +\x19\x11\x20\x18\x0f\x1a\x14\x0c\x1d\x15\x0e\x1d\x15\x0e\x23\x1b\ +\x11\x1f\x17\x0f\x1d\x16\x0d\x20\x17\x0f\x20\x18\x0f\x29\x1e\x13\ +\x34\x27\x19\x32\x26\x18\x2e\x23\x16\x24\x1b\x11\x26\x1d\x12\x26\ +\x1d\x12\x25\x1c\x12\x28\x1e\x13\x30\x24\x17\x27\x1d\x13\x2b\x20\ +\x15\x2b\x21\x15\x38\x29\x1b\x2f\x23\x16\x29\x1f\x13\x24\x1b\x11\ +\x31\x25\x18\x34\x27\x1a\x2d\x22\x16\x2c\x21\x15\x31\x24\x17\x2f\ +\x23\x16\x30\x24\x17\x31\x25\x18\x2d\x21\x16\x29\x1e\x13\x28\x1d\ +\x13\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x35\x28\x19\x30\x24\x17\ +\x2a\x1f\x14\x37\x2a\x1b\x37\x2a\x1b\x30\x24\x16\x31\x25\x18\x2b\ +\x20\x14\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x39\x2b\x1c\x38\x2a\ +\x1b\x37\x29\x1a\x39\x2b\x1b\x33\x26\x18\x32\x26\x18\x2f\x24\x17\ +\x30\x23\x17\x3c\x2c\x1c\x3b\x2c\x1c\x37\x29\x1b\x36\x29\x1a\x33\ +\x26\x18\x42\x32\x1f\x4b\x38\x24\x47\x35\x22\x4a\x37\x24\x3d\x2e\ +\x1d\x33\x27\x19\x3c\x2c\x1d\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ +\x37\x2a\x1b\x41\x31\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3b\x2c\x1c\x40\ +\x30\x1e\x48\x36\x23\x49\x37\x24\x40\x2f\x1e\x40\x30\x1f\x35\x28\ +\x1a\x3a\x2b\x1c\x34\x27\x19\x33\x27\x19\x2c\x21\x15\x2d\x23\x16\ +\x32\x26\x19\x32\x26\x18\x32\x26\x18\x34\x27\x19\x35\x28\x1a\x38\ +\x2a\x1b\x36\x29\x1a\x27\x1e\x13\x27\x1c\x12\x2b\x21\x15\x30\x25\ +\x17\x37\x29\x1a\x3b\x2c\x1c\x35\x28\x19\x32\x25\x18\x2d\x22\x16\ +\x2b\x21\x15\x2a\x20\x14\x30\x24\x16\x32\x26\x18\x3a\x2b\x1c\x3a\ +\x2c\x1c\x33\x26\x18\x39\x2a\x1b\x33\x26\x18\x2d\x21\x15\x27\x1d\ +\x12\x40\x31\x22\x17\x19\x19\x14\x15\x15\x1f\x1f\x21\x3e\x41\x42\ +\x53\x56\x58\x32\x34\x35\x1f\x21\x23\x6a\x74\x78\x70\x7a\x7e\x73\ +\x7b\x81\x71\x79\x80\x73\x7b\x81\x71\x79\x80\x71\x7a\x81\x6f\x78\ +\x81\x6d\x75\x7f\x6c\x75\x7e\x6c\x75\x7e\x6c\x75\x7e\x6b\x74\x7e\ +\x6b\x75\x7e\x6b\x75\x7f\x69\x73\x7d\x68\x72\x7c\x68\x72\x7c\x69\ +\x73\x7e\x6b\x74\x81\x68\x71\x7c\x67\x71\x7b\x69\x72\x7c\x6f\x78\ +\x81\x6d\x76\x7e\x6d\x77\x7e\x6f\x79\x80\x00\x00\x00\x60\x49\x30\ +\x56\x40\x2a\x4e\x3a\x26\x25\x1b\x12\x26\x1c\x12\x2b\x21\x15\x30\ +\x24\x17\x32\x25\x18\x38\x2a\x1b\x2e\x22\x16\x21\x18\x10\x1b\x14\ +\x0d\x1b\x15\x0d\x20\x18\x0f\x24\x1b\x11\x1c\x15\x0d\x19\x13\x0c\ +\x1a\x14\x0d\x1e\x17\x0e\x24\x1b\x11\x27\x1d\x12\x30\x24\x17\x2f\ +\x23\x17\x26\x1c\x12\x1f\x17\x0f\x26\x1c\x12\x27\x1e\x13\x26\x1d\ +\x12\x2d\x22\x16\x2e\x23\x17\x2a\x20\x15\x2b\x20\x14\x2e\x22\x16\ +\x35\x28\x1a\x39\x2b\x1c\x35\x28\x19\x29\x1f\x14\x31\x25\x17\x39\ +\x2b\x1c\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x33\x26\x19\x32\x26\ +\x18\x28\x1f\x13\x24\x1c\x11\x25\x1c\x12\x26\x1d\x12\x26\x1d\x12\ +\x27\x1d\x12\x2c\x21\x15\x2b\x21\x14\x33\x26\x18\x34\x27\x19\x33\ +\x27\x19\x33\x26\x18\x29\x1f\x14\x34\x27\x19\x2b\x20\x15\x2d\x21\ +\x15\x31\x25\x18\x34\x28\x19\x39\x2b\x1b\x38\x2a\x1b\x3b\x2c\x1c\ +\x3e\x2e\x1e\x3d\x2d\x1e\x3e\x2e\x1e\x39\x2b\x1c\x33\x26\x18\x35\ +\x28\x19\x35\x27\x19\x2f\x23\x17\x33\x27\x19\x34\x28\x19\x43\x32\ +\x21\x43\x32\x21\x46\x33\x21\x39\x2b\x1c\x39\x2b\x1c\x37\x29\x1a\ +\x2e\x23\x16\x32\x26\x18\x34\x26\x19\x31\x24\x18\x2d\x22\x16\x33\ +\x26\x19\x3e\x2e\x1d\x42\x31\x20\x3f\x2f\x1e\x39\x2b\x1c\x44\x33\ +\x21\x48\x36\x22\x3f\x2f\x1e\x43\x32\x21\x3b\x2c\x1d\x38\x2a\x1b\ +\x3d\x2d\x1e\x35\x28\x19\x2e\x23\x16\x2b\x20\x15\x31\x24\x17\x34\ +\x27\x19\x27\x1e\x13\x22\x19\x10\x2d\x22\x15\x33\x26\x18\x3d\x2e\ +\x1d\x3e\x2f\x1e\x31\x25\x18\x32\x24\x17\x35\x28\x19\x3d\x2d\x1d\ +\x41\x31\x20\x37\x29\x1a\x30\x24\x17\x2c\x21\x15\x2a\x1f\x14\x2c\ +\x21\x15\x2e\x23\x15\x31\x25\x18\x40\x30\x1f\x3f\x30\x1f\x38\x29\ +\x1a\x3a\x2b\x1c\x34\x27\x19\x2b\x20\x15\x2f\x23\x16\x29\x1f\x16\ +\x0f\x0f\x10\x24\x25\x27\x0f\x0f\x11\x3c\x3f\x41\x4f\x54\x55\x27\ +\x29\x2b\x22\x22\x25\x4b\x4f\x56\x73\x7b\x81\x72\x7a\x81\x72\x7a\ +\x80\x6f\x78\x7f\x6f\x78\x80\x6f\x79\x80\x6e\x78\x7f\x6d\x76\x7f\ +\x6d\x77\x7f\x6b\x76\x7e\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\x7d\x69\ +\x73\x7d\x6a\x75\x7f\x69\x74\x7d\x6c\x76\x81\x6b\x75\x81\x69\x73\ +\x7d\x67\x70\x7a\x69\x73\x7c\x6a\x74\x7d\x6c\x75\x7e\x6d\x77\x7f\ +\x6e\x78\x7f\x6e\x77\x7e\x00\x00\x00\x5d\x46\x2e\x48\x36\x23\x43\ +\x32\x20\x22\x19\x10\x2a\x20\x14\x29\x1f\x14\x2c\x22\x16\x34\x27\ +\x19\x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x21\x18\x10\x22\x19\x10\ +\x26\x1c\x12\x24\x1a\x11\x21\x18\x0f\x24\x1b\x12\x22\x19\x11\x26\ +\x1c\x12\x23\x1b\x11\x23\x1a\x10\x2a\x1f\x14\x28\x1e\x13\x1c\x15\ +\x0e\x21\x18\x10\x27\x1d\x12\x29\x20\x14\x30\x24\x17\x2e\x21\x16\ +\x26\x1c\x12\x1f\x18\x0f\x1f\x18\x0f\x20\x18\x0f\x2b\x20\x15\x28\ +\x1e\x13\x2a\x20\x14\x2f\x23\x16\x37\x2a\x1b\x34\x27\x19\x27\x1d\ +\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\ +\x29\x1e\x13\x28\x1e\x13\x21\x19\x10\x26\x1d\x12\x25\x1c\x12\x22\ +\x19\x10\x21\x19\x10\x28\x1e\x14\x29\x1f\x14\x2b\x20\x14\x31\x25\ +\x18\x24\x1b\x11\x2c\x21\x15\x27\x1d\x12\x26\x1d\x12\x2b\x21\x15\ +\x31\x25\x17\x35\x28\x1a\x35\x27\x1a\x3c\x2c\x1d\x44\x33\x21\x41\ +\x30\x1f\x3a\x2b\x1c\x34\x27\x19\x35\x28\x19\x35\x27\x19\x31\x25\ +\x17\x35\x28\x19\x2b\x1f\x15\x30\x24\x16\x32\x24\x18\x38\x2a\x1b\ +\x40\x30\x1f\x39\x2a\x1b\x38\x2a\x1c\x42\x32\x20\x32\x26\x18\x28\ +\x1e\x14\x31\x25\x18\x2e\x22\x16\x2c\x21\x15\x2e\x22\x15\x31\x24\ +\x17\x39\x2a\x1b\x37\x29\x1a\x31\x25\x17\x38\x2a\x1b\x3c\x2d\x1d\ +\x38\x2a\x1b\x3e\x2f\x1e\x43\x32\x20\x41\x30\x1f\x41\x31\x20\x42\ +\x31\x20\x3f\x2f\x1f\x40\x30\x1f\x3b\x2b\x1d\x2c\x22\x16\x27\x1e\ +\x13\x28\x1e\x13\x2c\x21\x15\x2f\x23\x17\x36\x29\x1a\x38\x2a\x1a\ +\x38\x2a\x1b\x33\x26\x18\x2f\x24\x17\x3d\x2e\x1e\x49\x36\x23\x41\ +\x31\x1f\x38\x2a\x1b\x30\x24\x17\x32\x26\x18\x2e\x23\x15\x29\x1f\ +\x14\x2b\x20\x15\x32\x26\x18\x39\x2a\x1b\x41\x30\x1f\x3e\x2e\x1e\ +\x3e\x2f\x1e\x3a\x2b\x1c\x2d\x22\x16\x28\x1f\x14\x0d\x0a\x07\x29\ +\x2a\x2c\x13\x14\x15\x31\x36\x39\x39\x3e\x3f\x3e\x41\x44\x37\x39\ +\x3e\x3c\x3f\x45\x60\x67\x6e\x72\x7a\x81\x71\x79\x7f\x70\x79\x80\ +\x6f\x79\x80\x6f\x78\x80\x6f\x79\x80\x6b\x75\x7d\x6b\x75\x7d\x6e\ +\x78\x80\x6d\x77\x81\x6c\x76\x80\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\ +\x7d\x68\x73\x7d\x6a\x74\x7f\x69\x73\x7d\x6a\x74\x7e\x68\x72\x7c\ +\x6a\x73\x7c\x6b\x76\x7e\x70\x7a\x82\x6f\x79\x80\x6f\x78\x7f\x6e\ +\x78\x7f\x00\x00\x00\x46\x35\x22\x47\x35\x22\x3b\x2c\x1c\x1c\x15\ +\x0d\x2a\x21\x15\x1e\x17\x0e\x26\x1c\x12\x2b\x20\x15\x27\x1d\x12\ +\x31\x25\x17\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\x27\x1d\x13\x25\ +\x1c\x12\x1e\x16\x0e\x20\x18\x10\x24\x1c\x12\x27\x1e\x13\x26\x1d\ +\x12\x23\x1b\x11\x24\x1b\x11\x25\x1b\x12\x25\x1c\x12\x28\x1e\x13\ +\x30\x24\x17\x2d\x21\x15\x29\x1f\x14\x28\x1e\x14\x2a\x20\x14\x2d\ +\x23\x16\x2c\x22\x15\x22\x19\x10\x2f\x24\x17\x36\x28\x1a\x2f\x23\ +\x17\x38\x2a\x1c\x3f\x2f\x1f\x31\x26\x18\x2d\x22\x15\x2b\x20\x15\ +\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x25\x18\x28\x1e\x13\x24\ +\x1b\x12\x22\x1a\x11\x23\x1a\x11\x23\x1a\x11\x23\x1b\x11\x22\x1a\ +\x10\x26\x1d\x13\x33\x26\x18\x2f\x23\x16\x2c\x21\x16\x2d\x22\x15\ +\x2f\x23\x17\x32\x25\x18\x2e\x23\x16\x30\x24\x18\x35\x27\x19\x3a\ +\x2b\x1c\x3d\x2d\x1d\x36\x28\x1a\x34\x27\x19\x36\x29\x1a\x36\x28\ +\x1a\x38\x2a\x1b\x36\x28\x1a\x34\x27\x19\x36\x28\x19\x38\x2a\x1b\ +\x2a\x1f\x13\x2c\x22\x15\x31\x25\x17\x34\x27\x19\x41\x30\x1f\x3d\ +\x2e\x1d\x40\x2f\x1e\x41\x30\x1f\x3d\x2d\x1d\x3c\x2d\x1d\x3a\x2a\ +\x1c\x41\x31\x20\x2f\x23\x16\x2c\x21\x15\x30\x24\x18\x33\x27\x19\ +\x33\x27\x19\x3e\x2e\x1e\x40\x30\x1f\x38\x2b\x1b\x34\x28\x19\x3c\ +\x2c\x1d\x3a\x2b\x1c\x3d\x2e\x1e\x35\x28\x1a\x3d\x2d\x1e\x41\x31\ +\x1f\x43\x32\x20\x44\x33\x20\x32\x25\x18\x2e\x23\x16\x23\x1a\x10\ +\x25\x1c\x12\x26\x1d\x12\x31\x25\x17\x35\x27\x19\x37\x2a\x1b\x35\ +\x28\x1a\x28\x1e\x13\x34\x27\x19\x3e\x2e\x1e\x3d\x2d\x1d\x3d\x2e\ +\x1e\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x25\x1c\x12\x24\x1b\x11\ +\x32\x26\x19\x30\x25\x17\x2e\x23\x16\x35\x28\x1a\x45\x33\x21\x33\ +\x27\x18\x35\x28\x1a\x3a\x2c\x1e\x09\x07\x04\x23\x23\x25\x19\x1b\ +\x1c\x3d\x44\x45\x1a\x1e\x1e\x58\x5f\x62\x42\x45\x48\x45\x47\x4c\ +\x51\x55\x5c\x6d\x75\x7d\x72\x7a\x80\x6f\x78\x7f\x6c\x76\x7d\x6d\ +\x79\x7f\x6f\x79\x80\x6b\x76\x7d\x6a\x75\x7d\x6d\x76\x7f\x6c\x76\ +\x80\x6b\x75\x7f\x6a\x74\x7e\x69\x74\x7e\x68\x72\x7c\x67\x71\x7b\ +\x69\x73\x7d\x68\x73\x7d\x68\x72\x7c\x6c\x75\x7f\x6a\x75\x7e\x6e\ +\x79\x81\x6e\x77\x7f\x6f\x79\x80\x71\x79\x80\x70\x78\x7f\x00\x00\ +\x00\x41\x30\x1f\x4c\x39\x25\x3d\x2d\x1d\x1e\x17\x0f\x1f\x17\x0e\ +\x1d\x16\x0e\x29\x1e\x14\x24\x1b\x11\x2c\x21\x15\x34\x27\x19\x2b\ +\x20\x15\x23\x1a\x11\x1c\x15\x0d\x1f\x17\x0e\x27\x1e\x13\x26\x1d\ +\x13\x20\x18\x0f\x2e\x23\x16\x35\x28\x19\x31\x24\x17\x2f\x22\x16\ +\x34\x27\x19\x37\x29\x1a\x34\x27\x19\x3d\x2d\x1d\x3c\x2d\x1d\x2f\ +\x23\x16\x2e\x22\x16\x2d\x21\x15\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\ +\x1c\x24\x1c\x11\x28\x1e\x14\x2c\x21\x15\x25\x1c\x12\x30\x24\x17\ +\x39\x2a\x1b\x3a\x2c\x1c\x2e\x23\x16\x28\x1d\x13\x29\x1f\x14\x25\ +\x1c\x12\x33\x26\x18\x36\x28\x1a\x2d\x21\x15\x26\x1d\x12\x25\x1c\ +\x11\x22\x1a\x10\x2a\x21\x15\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\ +\x31\x25\x18\x33\x27\x19\x30\x24\x17\x23\x1a\x11\x25\x1c\x12\x2f\ +\x24\x17\x39\x2b\x1b\x32\x25\x18\x34\x28\x19\x3b\x2b\x1c\x37\x29\ +\x1a\x31\x25\x17\x34\x27\x19\x33\x26\x18\x37\x29\x1a\x36\x28\x1a\ +\x33\x26\x19\x2d\x23\x16\x2d\x22\x16\x33\x25\x19\x39\x2a\x1b\x34\ +\x27\x19\x31\x24\x17\x3a\x2b\x1b\x3e\x2f\x1e\x40\x2f\x1e\x42\x32\ +\x20\x43\x32\x20\x3a\x2b\x1b\x3a\x2b\x1c\x33\x27\x19\x40\x31\x1f\ +\x3d\x2e\x1e\x37\x29\x1b\x3b\x2c\x1c\x3a\x2b\x1c\x34\x27\x19\x2f\ +\x23\x17\x35\x28\x1a\x34\x27\x19\x37\x28\x1a\x36\x29\x1a\x39\x2b\ +\x1c\x34\x28\x1a\x2c\x21\x15\x2f\x23\x16\x2d\x22\x15\x41\x31\x1f\ +\x42\x31\x1f\x36\x29\x1a\x30\x24\x17\x26\x1c\x12\x28\x1e\x12\x28\ +\x1e\x13\x2b\x21\x15\x32\x26\x19\x3b\x2c\x1d\x3b\x2c\x1d\x2e\x23\ +\x16\x2d\x21\x15\x34\x27\x19\x32\x25\x18\x30\x24\x17\x36\x29\x1a\ +\x35\x28\x1a\x32\x26\x18\x2c\x21\x15\x2b\x20\x14\x2e\x22\x15\x2f\ +\x23\x17\x2a\x1f\x14\x39\x2a\x1b\x3f\x2f\x1f\x3b\x2c\x1c\x38\x2a\ +\x1b\x48\x36\x24\x16\x10\x0a\x24\x24\x27\x11\x12\x13\x2e\x35\x36\ +\x2a\x31\x33\x44\x4b\x4e\x38\x3c\x3f\x5b\x60\x63\x4a\x4e\x53\x59\ +\x5f\x67\x72\x79\x81\x6f\x79\x80\x6f\x79\x80\x6f\x78\x80\x6d\x78\ +\x7f\x6c\x76\x7d\x6d\x77\x7f\x6a\x74\x7e\x6b\x75\x7f\x6c\x76\x80\ +\x6b\x75\x7f\x6a\x75\x7e\x67\x71\x7b\x68\x72\x7c\x6a\x74\x7e\x6b\ +\x75\x7f\x68\x73\x7c\x6a\x74\x7e\x6d\x76\x80\x70\x79\x81\x6f\x79\ +\x81\x6f\x79\x81\x70\x7a\x80\x70\x7a\x80\x00\x00\x00\x45\x34\x21\ +\x55\x40\x29\x4a\x38\x24\x27\x1e\x13\x2c\x21\x15\x1a\x13\x0c\x23\ +\x1a\x10\x26\x1d\x12\x2f\x23\x17\x34\x27\x19\x39\x2b\x1b\x33\x27\ +\x19\x35\x28\x19\x2c\x21\x15\x21\x19\x10\x24\x1b\x11\x20\x18\x0f\ +\x23\x1a\x11\x2e\x23\x16\x31\x24\x18\x2f\x23\x16\x2e\x23\x16\x35\ +\x28\x19\x35\x29\x1a\x2b\x21\x15\x25\x1c\x12\x2a\x20\x14\x2a\x20\ +\x14\x2b\x21\x14\x34\x27\x19\x34\x27\x19\x38\x2a\x1b\x2e\x22\x16\ +\x24\x1b\x11\x1f\x17\x0f\x22\x1a\x11\x29\x1f\x14\x30\x24\x17\x2b\ +\x20\x15\x33\x27\x19\x36\x29\x1a\x2f\x23\x16\x2f\x23\x16\x31\x24\ +\x17\x2b\x20\x15\x23\x1a\x11\x26\x1d\x12\x28\x1e\x13\x27\x1d\x12\ +\x2d\x21\x15\x26\x1c\x12\x25\x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\ +\x22\x16\x30\x24\x17\x2d\x22\x16\x31\x25\x18\x31\x25\x18\x32\x25\ +\x18\x30\x24\x17\x2f\x22\x16\x39\x2b\x1c\x42\x32\x20\x3c\x2d\x1d\ +\x37\x29\x1a\x2e\x23\x16\x2c\x22\x15\x2d\x22\x16\x2e\x22\x16\x37\ +\x29\x1a\x3a\x2c\x1c\x37\x29\x1a\x3a\x2b\x1b\x32\x25\x18\x31\x25\ +\x18\x31\x24\x17\x3e\x2e\x1d\x45\x34\x21\x44\x33\x21\x43\x32\x20\ +\x3f\x30\x1f\x43\x32\x20\x3c\x2d\x1d\x44\x32\x21\x41\x30\x1f\x46\ +\x35\x22\x4d\x39\x25\x48\x36\x23\x40\x30\x1f\x32\x25\x18\x2e\x23\ +\x17\x29\x1f\x14\x27\x1d\x13\x2d\x22\x16\x2d\x23\x16\x32\x25\x18\ +\x2e\x23\x17\x37\x29\x1a\x31\x25\x17\x3f\x2f\x1e\x43\x33\x21\x3d\ +\x2e\x1d\x34\x27\x19\x28\x1e\x13\x23\x1b\x11\x26\x1c\x12\x2e\x23\ +\x17\x39\x2b\x1c\x3b\x2d\x1d\x35\x27\x19\x30\x24\x17\x2c\x21\x15\ +\x2b\x21\x14\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x2e\x22\x16\x35\ +\x28\x1a\x3c\x2e\x1d\x34\x26\x19\x36\x29\x1a\x31\x25\x18\x30\x24\ +\x16\x37\x29\x1a\x3f\x2f\x1e\x3a\x2b\x1b\x35\x27\x19\x35\x28\x1a\ +\x1f\x17\x0f\x0f\x0f\x11\x04\x04\x04\x27\x2c\x2d\x4c\x54\x56\x1e\ +\x24\x28\x2d\x2f\x33\x69\x6f\x74\x5d\x61\x67\x4d\x54\x5b\x67\x6f\ +\x76\x6f\x79\x80\x6e\x78\x7f\x6e\x78\x7f\x6c\x77\x7e\x6f\x7a\x81\ +\x6e\x79\x81\x6b\x76\x7e\x6a\x75\x7d\x69\x74\x7c\x69\x75\x7d\x69\ +\x74\x7c\x68\x73\x7d\x69\x74\x7d\x69\x74\x7c\x68\x73\x7b\x6a\x75\ +\x7d\x6c\x77\x7f\x6d\x78\x80\x6e\x77\x80\x6e\x78\x80\x6d\x76\x7f\ +\x71\x7b\x82\x70\x79\x80\x00\x00\x00\x3c\x2d\x1d\x4f\x3a\x26\x4b\ +\x38\x24\x24\x1b\x11\x22\x1a\x10\x19\x13\x0c\x20\x17\x0e\x2a\x1f\ +\x13\x37\x29\x1a\x30\x24\x17\x39\x2b\x1c\x32\x26\x18\x2d\x22\x16\ +\x2f\x23\x17\x25\x1c\x12\x28\x1f\x13\x23\x1b\x11\x21\x19\x10\x24\ +\x1c\x11\x2d\x21\x15\x33\x26\x18\x33\x26\x18\x35\x28\x19\x31\x25\ +\x18\x3a\x2b\x1c\x33\x26\x19\x24\x1b\x11\x20\x18\x0f\x21\x19\x10\ +\x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x34\x27\x19\x2d\x22\x16\x29\ +\x1f\x14\x2b\x20\x14\x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x34\x27\ +\x19\x33\x26\x18\x34\x28\x1a\x33\x26\x19\x2d\x22\x16\x2d\x22\x16\ +\x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x2d\x22\x16\x2c\x22\x15\x36\ +\x29\x1a\x35\x28\x19\x3b\x2c\x1c\x43\x32\x20\x3d\x2e\x1e\x36\x29\ +\x1a\x3c\x2d\x1e\x36\x29\x1a\x2c\x21\x15\x36\x28\x1a\x3b\x2c\x1c\ +\x3a\x2c\x1d\x2f\x24\x16\x36\x28\x1a\x2d\x22\x15\x2b\x20\x14\x2b\ +\x20\x14\x2c\x21\x15\x37\x29\x1b\x39\x2a\x1c\x32\x25\x18\x35\x28\ +\x19\x3a\x2c\x1c\x40\x30\x1f\x3e\x2e\x1e\x3b\x2c\x1d\x38\x29\x1b\ +\x3a\x2b\x1c\x3d\x2e\x1d\x4b\x38\x24\x43\x32\x20\x3a\x2c\x1c\x35\ +\x28\x1a\x31\x25\x17\x36\x29\x1a\x3d\x2e\x1d\x3e\x2e\x1e\x42\x31\ +\x20\x42\x31\x20\x43\x32\x20\x35\x29\x1a\x2e\x23\x16\x2c\x21\x15\ +\x2a\x20\x15\x2a\x1f\x14\x2e\x22\x16\x2d\x22\x15\x2e\x22\x16\x2e\ +\x23\x16\x35\x28\x1a\x43\x32\x20\x46\x34\x21\x3e\x2e\x1d\x32\x26\ +\x18\x2f\x23\x17\x2c\x20\x15\x33\x26\x18\x35\x28\x19\x35\x28\x19\ +\x3d\x2e\x1e\x37\x29\x1a\x34\x27\x19\x32\x26\x18\x2a\x1f\x14\x29\ +\x1f\x14\x2f\x23\x17\x2d\x22\x16\x31\x25\x18\x3b\x2c\x1c\x39\x2b\ +\x1c\x35\x28\x1a\x39\x2c\x1c\x31\x25\x18\x31\x25\x17\x34\x26\x19\ +\x37\x29\x1b\x31\x24\x17\x31\x25\x18\x28\x1f\x14\x25\x1b\x12\x1e\ +\x1f\x21\x00\x00\x00\x23\x26\x26\x40\x48\x49\x16\x19\x1b\x2a\x2c\ +\x2f\x73\x79\x7f\x6e\x74\x7b\x4d\x52\x5b\x55\x5a\x63\x6c\x73\x7c\ +\x6d\x76\x7f\x6c\x76\x7e\x6b\x76\x7d\x6d\x78\x7f\x6d\x77\x80\x69\ +\x74\x7c\x6b\x75\x7d\x69\x73\x7b\x69\x74\x7c\x6a\x75\x7d\x69\x75\ +\x7e\x69\x75\x7e\x68\x74\x7d\x69\x74\x7d\x6a\x75\x7e\x6c\x77\x7f\ +\x6c\x78\x80\x6c\x76\x7f\x6f\x78\x81\x72\x7c\x84\x71\x7b\x82\x74\ +\x7d\x83\x00\x00\x00\x3f\x2f\x1f\x47\x35\x22\x55\x3f\x29\x35\x28\ +\x1a\x21\x19\x10\x1d\x16\x0e\x22\x1a\x11\x2c\x21\x16\x28\x1e\x14\ +\x32\x26\x18\x38\x2a\x1b\x38\x2a\x1b\x2c\x21\x15\x31\x25\x18\x27\ +\x1d\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x28\x1d\x13\x28\x1e\ +\x13\x25\x1b\x12\x21\x19\x10\x25\x1b\x11\x29\x1f\x14\x31\x25\x17\ +\x35\x28\x19\x2a\x1f\x14\x24\x1b\x11\x1f\x17\x0f\x23\x1b\x11\x26\ +\x1d\x12\x2d\x22\x16\x39\x2b\x1c\x3f\x2f\x1f\x30\x24\x17\x29\x1f\ +\x14\x23\x1a\x11\x24\x1b\x11\x23\x1a\x10\x2e\x23\x16\x33\x26\x19\ +\x31\x25\x17\x33\x26\x18\x2e\x22\x16\x2b\x20\x14\x2b\x20\x14\x23\ +\x1b\x11\x23\x1b\x11\x2b\x20\x14\x30\x24\x17\x32\x25\x18\x43\x32\ +\x21\x3b\x2c\x1c\x3d\x2d\x1d\x41\x31\x1f\x31\x25\x17\x30\x24\x18\ +\x33\x26\x18\x31\x25\x18\x34\x27\x19\x3e\x2e\x1e\x34\x27\x19\x2f\ +\x23\x16\x2c\x21\x15\x2b\x20\x14\x2b\x20\x14\x2c\x21\x15\x2c\x21\ +\x15\x2c\x21\x15\x2f\x23\x17\x29\x1f\x14\x2b\x20\x15\x30\x24\x17\ +\x3c\x2c\x1d\x3c\x2c\x1d\x34\x26\x19\x2f\x23\x17\x2f\x23\x16\x33\ +\x26\x18\x40\x30\x1f\x48\x36\x23\x3a\x2b\x1c\x36\x28\x1a\x2f\x23\ +\x16\x32\x25\x18\x35\x28\x19\x38\x2a\x1b\x39\x2b\x1b\x41\x30\x1f\ +\x4b\x38\x24\x3e\x2d\x1d\x3e\x2e\x1e\x35\x28\x1a\x32\x26\x18\x37\ +\x29\x1b\x30\x24\x17\x31\x25\x17\x32\x25\x18\x31\x24\x17\x35\x27\ +\x1a\x3b\x2d\x1c\x3c\x2e\x1d\x46\x34\x22\x4b\x38\x25\x38\x2b\x1b\ +\x38\x2b\x1b\x34\x28\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x39\ +\x2a\x1b\x2d\x22\x15\x2d\x22\x15\x2a\x20\x15\x2d\x22\x16\x33\x27\ +\x19\x2b\x21\x15\x2a\x1f\x15\x2f\x23\x17\x35\x27\x19\x32\x26\x18\ +\x3e\x2f\x1e\x33\x26\x18\x2c\x21\x16\x2d\x22\x16\x32\x25\x18\x32\ +\x26\x18\x2e\x23\x16\x20\x18\x10\x10\x0d\x08\x29\x2a\x2b\x03\x03\ +\x03\x01\x01\x01\x0c\x0e\x0e\x05\x06\x07\x33\x37\x3b\x65\x6d\x72\ +\x6c\x75\x7a\x6a\x70\x77\x45\x4b\x55\x5b\x63\x6d\x6f\x77\x80\x6d\ +\x76\x7e\x6a\x74\x7c\x6a\x75\x7c\x6d\x77\x7f\x6b\x76\x7e\x6b\x76\ +\x7e\x69\x74\x7c\x68\x73\x7b\x69\x74\x7c\x6c\x77\x7f\x6b\x76\x7f\ +\x6a\x75\x7e\x6a\x75\x7f\x6a\x76\x7e\x6b\x76\x7e\x6c\x77\x7f\x6f\ +\x79\x80\x71\x7b\x82\x72\x7c\x83\x71\x7b\x82\x73\x7c\x82\x00\x00\ +\x00\x45\x34\x22\x4c\x39\x24\x4b\x38\x24\x39\x2b\x1c\x30\x23\x17\ +\x1d\x16\x0e\x2a\x20\x14\x33\x26\x19\x33\x27\x18\x2d\x22\x15\x2d\ +\x22\x16\x2e\x22\x16\x2d\x22\x15\x29\x1f\x13\x2a\x1f\x14\x22\x1a\ +\x10\x20\x18\x0f\x24\x1b\x11\x29\x1f\x14\x26\x1d\x12\x26\x1c\x12\ +\x27\x1d\x13\x27\x1e\x13\x2d\x22\x15\x32\x26\x18\x39\x2a\x1b\x38\ +\x2a\x1b\x29\x1e\x13\x28\x1e\x13\x20\x18\x0f\x2b\x21\x15\x39\x2a\ +\x1b\x38\x2a\x1b\x3e\x2e\x1e\x33\x26\x18\x2d\x22\x16\x24\x1b\x11\ +\x24\x1a\x11\x25\x1c\x12\x2b\x21\x15\x31\x24\x17\x32\x25\x18\x42\ +\x31\x1f\x40\x30\x1f\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x25\x1c\ +\x12\x24\x1b\x11\x2d\x22\x15\x2b\x20\x15\x2f\x24\x17\x30\x24\x17\ +\x2e\x23\x16\x2e\x22\x16\x33\x26\x18\x37\x29\x1a\x2f\x23\x17\x3b\ +\x2c\x1c\x45\x34\x22\x3e\x2f\x1e\x36\x29\x1a\x37\x29\x1b\x37\x29\ +\x1b\x2e\x22\x16\x27\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x21\x15\ +\x2a\x20\x14\x2d\x22\x15\x34\x28\x19\x33\x26\x19\x3b\x2c\x1d\x3e\ +\x2e\x1d\x3b\x2c\x1d\x2e\x22\x16\x28\x1e\x13\x33\x26\x18\x45\x34\ +\x21\x4d\x3a\x26\x3b\x2c\x1d\x39\x2b\x1c\x32\x26\x18\x38\x29\x1b\ +\x33\x25\x19\x2f\x24\x17\x35\x28\x19\x3e\x2e\x1d\x3c\x2c\x1d\x31\ +\x25\x18\x35\x28\x19\x36\x29\x1a\x31\x25\x17\x32\x25\x17\x2f\x24\ +\x17\x38\x2a\x1b\x3a\x2b\x1c\x34\x27\x19\x37\x29\x19\x34\x27\x19\ +\x32\x25\x18\x47\x35\x24\x2c\x21\x16\x2b\x21\x14\x30\x23\x17\x42\ +\x32\x21\x34\x28\x1a\x39\x2b\x1b\x36\x28\x19\x3d\x2d\x1d\x3a\x2c\ +\x1c\x2c\x22\x16\x2b\x20\x15\x2d\x21\x16\x2d\x21\x15\x2e\x23\x16\ +\x2b\x20\x15\x33\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x40\x30\x1f\x3a\ +\x2c\x1c\x30\x23\x17\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x34\x27\ +\x19\x29\x1f\x14\x18\x11\x0c\x18\x18\x19\x24\x24\x26\x00\x00\x00\ +\x01\x01\x01\x28\x2a\x2c\x49\x4e\x54\x4a\x51\x59\x6a\x72\x78\x71\ +\x78\x7f\x5a\x5f\x69\x42\x48\x53\x68\x6f\x78\x6d\x75\x7e\x6b\x76\ +\x7e\x6a\x74\x7c\x6d\x78\x80\x6b\x76\x7e\x6b\x76\x7e\x6b\x76\x7e\ +\x6a\x75\x7c\x6a\x75\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\x69\ +\x74\x7d\x6a\x75\x7d\x6b\x76\x7e\x6c\x77\x7e\x71\x7b\x82\x71\x7b\ +\x83\x70\x7a\x81\x71\x7b\x82\x72\x7c\x83\x00\x00\x00\x3c\x2d\x1d\ +\x4a\x37\x24\x43\x32\x20\x2f\x24\x17\x2b\x20\x15\x1b\x14\x0d\x23\ +\x1a\x11\x2b\x21\x15\x28\x1e\x13\x25\x1b\x11\x27\x1e\x13\x28\x1e\ +\x13\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\x26\x1c\x11\x2a\x20\x14\ +\x32\x26\x18\x38\x2a\x1b\x39\x2b\x1c\x31\x25\x18\x2c\x21\x15\x28\ +\x1e\x13\x26\x1c\x12\x30\x23\x17\x34\x27\x19\x37\x29\x1a\x30\x24\ +\x17\x33\x27\x19\x25\x1d\x12\x25\x1c\x12\x2e\x23\x16\x31\x25\x18\ +\x3e\x2f\x1e\x2f\x23\x16\x30\x24\x17\x28\x1e\x13\x1f\x17\x0e\x1e\ +\x17\x0f\x22\x1a\x11\x29\x1f\x13\x2c\x21\x15\x35\x27\x19\x34\x27\ +\x19\x2c\x21\x15\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x25\x1c\x12\ +\x29\x1f\x14\x27\x1d\x13\x2c\x20\x15\x2e\x22\x16\x2b\x20\x14\x2e\ +\x22\x16\x30\x25\x17\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x3d\x2e\ +\x1d\x43\x32\x20\x41\x30\x1f\x36\x29\x1a\x33\x27\x19\x35\x28\x19\ +\x27\x1d\x12\x23\x1a\x10\x29\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x28\ +\x1e\x13\x2e\x23\x16\x35\x28\x1a\x39\x2a\x1c\x3a\x2b\x1c\x34\x27\ +\x19\x2b\x20\x14\x28\x1e\x14\x2f\x24\x17\x2c\x22\x15\x34\x28\x19\ +\x33\x26\x18\x31\x25\x17\x33\x26\x19\x39\x2a\x1b\x32\x26\x18\x2c\ +\x21\x15\x37\x2a\x1b\x39\x2b\x1c\x3a\x2b\x1c\x3c\x2d\x1d\x3c\x2d\ +\x1d\x38\x2a\x1c\x3a\x2b\x1b\x36\x28\x1a\x35\x28\x19\x3d\x2e\x1e\ +\x44\x33\x21\x3c\x2d\x1d\x35\x27\x19\x35\x27\x19\x32\x25\x18\x37\ +\x29\x1b\x2d\x22\x16\x25\x1b\x12\x28\x1e\x13\x2c\x22\x15\x32\x25\ +\x18\x2d\x22\x15\x2b\x20\x15\x3b\x2c\x1c\x3d\x2e\x1e\x3a\x2b\x1c\ +\x34\x27\x19\x37\x29\x1a\x31\x24\x17\x2b\x20\x15\x2b\x20\x14\x32\ +\x26\x18\x30\x25\x17\x3c\x2d\x1d\x40\x2f\x1f\x3b\x2c\x1c\x37\x29\ +\x1b\x35\x28\x19\x3e\x2e\x1e\x42\x31\x20\x34\x27\x19\x35\x28\x1a\ +\x24\x1b\x11\x22\x23\x23\x3b\x3d\x3e\x17\x18\x19\x25\x26\x28\x54\ +\x57\x5a\x5a\x5f\x64\x44\x49\x51\x5b\x61\x69\x6e\x75\x7d\x70\x76\ +\x7f\x4a\x50\x5b\x4b\x52\x5c\x6c\x74\x7d\x6d\x78\x80\x6a\x75\x7d\ +\x6b\x76\x7e\x6a\x75\x7d\x69\x75\x7d\x6a\x75\x7d\x69\x75\x7d\x68\ +\x75\x7d\x67\x73\x7d\x68\x73\x7d\x69\x74\x7d\x6a\x75\x7d\x6b\x75\ +\x7d\x6c\x76\x7e\x70\x7a\x82\x71\x7b\x83\x73\x7c\x85\x71\x7b\x82\ +\x71\x7b\x82\x71\x7b\x81\x00\x00\x00\x3f\x2f\x1e\x53\x3e\x29\x4d\ +\x39\x25\x41\x31\x1f\x27\x1e\x13\x18\x12\x0b\x15\x0f\x09\x1f\x17\ +\x0f\x1e\x16\x0e\x1f\x18\x0e\x26\x1c\x12\x28\x1e\x13\x28\x1f\x13\ +\x30\x25\x18\x28\x1f\x13\x1f\x17\x0e\x27\x1d\x13\x34\x27\x19\x40\ +\x30\x1e\x3e\x2f\x1d\x38\x2a\x1b\x31\x24\x18\x29\x1f\x14\x27\x1e\ +\x13\x27\x1d\x12\x26\x1c\x12\x28\x1e\x13\x2a\x20\x14\x30\x23\x17\ +\x34\x27\x18\x27\x1d\x12\x29\x1f\x13\x29\x1f\x14\x31\x25\x18\x2f\ +\x23\x17\x2a\x1f\x14\x1f\x17\x0f\x27\x1d\x13\x1e\x17\x0e\x1f\x17\ +\x0f\x23\x19\x11\x29\x1f\x14\x2e\x22\x16\x31\x24\x17\x33\x26\x19\ +\x33\x26\x18\x2e\x22\x16\x28\x1e\x14\x2a\x20\x14\x25\x1c\x12\x25\ +\x1c\x12\x2a\x1f\x14\x27\x1d\x13\x28\x1f\x13\x2f\x23\x16\x31\x24\ +\x18\x27\x1d\x13\x27\x1e\x13\x35\x28\x1a\x38\x2a\x1b\x44\x32\x20\ +\x41\x31\x1f\x3d\x2e\x1d\x33\x26\x18\x2c\x21\x15\x2a\x1f\x14\x27\ +\x1d\x13\x24\x1b\x12\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2d\x21\ +\x15\x2e\x23\x16\x33\x26\x18\x3a\x2b\x1c\x38\x29\x1b\x36\x29\x1a\ +\x37\x29\x1a\x36\x2a\x1b\x41\x32\x1f\x3a\x2b\x1c\x38\x2a\x1b\x46\ +\x34\x21\x33\x26\x18\x3a\x2b\x1c\x3c\x2e\x1d\x30\x24\x17\x37\x29\ +\x1b\x36\x28\x19\x38\x2a\x1b\x34\x27\x19\x31\x25\x18\x35\x28\x1a\ +\x33\x26\x19\x30\x24\x17\x32\x26\x18\x42\x32\x20\x3a\x2b\x1c\x37\ +\x2a\x1b\x2f\x23\x16\x38\x29\x1a\x31\x25\x17\x38\x29\x1b\x3e\x2e\ +\x1e\x3a\x2b\x1c\x3e\x2e\x1d\x42\x31\x20\x3e\x2e\x1e\x35\x28\x1a\ +\x33\x26\x18\x39\x2a\x1b\x41\x30\x20\x38\x2a\x1b\x32\x25\x18\x39\ +\x2b\x1c\x33\x26\x18\x2f\x24\x16\x2b\x20\x15\x37\x29\x1a\x37\x2a\ +\x1b\x3a\x2b\x1c\x39\x2b\x1b\x35\x28\x1a\x38\x2a\x1a\x34\x27\x19\ +\x38\x2a\x1b\x41\x30\x1f\x36\x29\x1a\x36\x29\x1b\x1e\x16\x0f\x2d\ +\x2e\x2f\x39\x3d\x3e\x38\x3a\x3d\x35\x38\x3c\x5c\x60\x64\x62\x67\ +\x6d\x4f\x55\x5d\x48\x4d\x56\x68\x6e\x77\x6f\x77\x7f\x6a\x71\x7b\ +\x42\x49\x55\x59\x61\x6b\x6c\x77\x7f\x6c\x77\x7f\x6c\x77\x7f\x67\ +\x73\x7b\x6a\x75\x7d\x6a\x75\x7d\x68\x75\x7d\x67\x74\x7c\x68\x73\ +\x7d\x69\x73\x7e\x6b\x74\x7e\x6a\x74\x7d\x6c\x75\x7e\x6b\x75\x7e\ +\x71\x7a\x82\x73\x7d\x85\x73\x7d\x84\x71\x7b\x82\x72\x7c\x83\x72\ +\x7c\x81\x00\x00\x00\x47\x35\x22\x60\x48\x2f\x51\x3d\x28\x43\x32\ +\x21\x20\x18\x0f\x21\x18\x0f\x1f\x17\x0f\x22\x19\x10\x22\x1a\x11\ +\x25\x1c\x12\x2c\x21\x15\x23\x1a\x11\x24\x1b\x11\x2d\x22\x15\x2c\ +\x21\x15\x23\x1a\x11\x27\x1d\x12\x2c\x21\x15\x32\x26\x18\x39\x2b\ +\x1b\x35\x28\x1a\x2c\x21\x15\x22\x1a\x10\x22\x1a\x10\x24\x1c\x11\ +\x24\x1b\x11\x29\x1f\x14\x2d\x21\x16\x37\x29\x1a\x37\x2a\x1b\x26\ +\x1c\x12\x30\x24\x18\x2f\x23\x16\x34\x27\x19\x27\x1d\x13\x26\x1c\ +\x12\x26\x1d\x12\x30\x24\x17\x23\x1b\x11\x24\x1a\x11\x2a\x20\x14\ +\x27\x1d\x12\x2b\x20\x14\x36\x28\x1a\x3c\x2d\x1d\x36\x28\x19\x2f\ +\x24\x17\x28\x1e\x13\x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x2c\x21\ +\x15\x2a\x1f\x14\x28\x1e\x13\x25\x1c\x12\x25\x1b\x12\x26\x1c\x12\ +\x2f\x23\x17\x2e\x22\x17\x2e\x22\x16\x39\x2b\x1b\x31\x25\x17\x33\ +\x26\x18\x31\x25\x17\x2c\x21\x15\x2c\x21\x15\x2a\x20\x14\x2e\x23\ +\x16\x28\x1e\x13\x2a\x20\x14\x2b\x20\x14\x2b\x20\x15\x2d\x22\x16\ +\x35\x28\x1a\x2f\x23\x17\x34\x26\x19\x34\x27\x19\x33\x26\x19\x37\ +\x29\x1b\x3c\x2d\x1d\x3e\x2e\x1e\x36\x29\x1b\x39\x2b\x1b\x26\x1d\ +\x12\x28\x1e\x13\x32\x26\x18\x31\x25\x17\x30\x24\x17\x31\x24\x17\ +\x34\x27\x19\x35\x28\x1a\x32\x25\x18\x2d\x21\x15\x2c\x21\x15\x2c\ +\x21\x15\x2e\x23\x16\x2e\x22\x16\x38\x2a\x1b\x37\x29\x1b\x42\x31\ +\x20\x40\x30\x1f\x38\x2a\x1c\x3b\x2c\x1c\x40\x30\x20\x3a\x2b\x1c\ +\x38\x2a\x1c\x43\x32\x21\x3f\x2f\x1d\x34\x27\x19\x2c\x21\x15\x2e\ +\x23\x16\x30\x24\x17\x30\x24\x17\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\ +\x1b\x2a\x1f\x14\x27\x1e\x13\x2d\x22\x16\x2b\x20\x15\x39\x2b\x1b\ +\x41\x31\x1f\x3b\x2d\x1d\x38\x2a\x1b\x3d\x2e\x1e\x3a\x2b\x1c\x3c\ +\x2c\x1c\x38\x2a\x1b\x2e\x23\x16\x27\x1d\x13\x2a\x2c\x2d\x38\x3d\ +\x3e\x3f\x42\x45\x32\x36\x3a\x48\x4c\x52\x62\x6a\x6f\x61\x69\x6f\ +\x48\x4d\x56\x55\x5c\x65\x6b\x74\x7e\x6e\x77\x80\x61\x69\x73\x3e\ +\x44\x4f\x5b\x65\x6e\x6d\x77\x80\x6a\x75\x7d\x69\x75\x7c\x6a\x76\ +\x7d\x6a\x76\x7e\x69\x75\x7d\x69\x75\x7d\x6a\x74\x7e\x69\x73\x7e\ +\x6b\x74\x7e\x6c\x76\x80\x6b\x75\x7e\x6d\x76\x7f\x6f\x79\x81\x72\ +\x7c\x84\x71\x7b\x82\x70\x7a\x81\x72\x7d\x82\x73\x7d\x81\x00\x00\ +\x00\x50\x3c\x26\x67\x4d\x32\x55\x40\x2a\x4f\x3b\x26\x24\x1b\x11\ +\x2a\x1f\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x26\x1c\x12\x28\ +\x1e\x13\x25\x1b\x11\x24\x1c\x11\x27\x1d\x12\x27\x1d\x12\x28\x1e\ +\x13\x28\x1e\x13\x25\x1c\x12\x2e\x23\x16\x36\x28\x1a\x37\x2a\x1b\ +\x33\x26\x18\x29\x1f\x14\x28\x1f\x13\x2a\x20\x14\x28\x1e\x13\x27\ +\x1e\x13\x2a\x1f\x14\x35\x28\x19\x2f\x24\x17\x2a\x1f\x14\x28\x1e\ +\x13\x26\x1c\x12\x2c\x21\x15\x27\x1e\x13\x2b\x20\x15\x2a\x20\x15\ +\x2c\x21\x15\x29\x1f\x14\x27\x1d\x13\x2b\x20\x15\x24\x1c\x11\x28\ +\x1e\x13\x31\x25\x17\x39\x2a\x1b\x3a\x2c\x1c\x34\x26\x18\x29\x1e\ +\x13\x28\x1e\x13\x2b\x21\x15\x29\x1f\x14\x2b\x20\x14\x21\x19\x10\ +\x24\x1b\x11\x23\x1a\x11\x1d\x16\x0e\x29\x1f\x14\x2e\x22\x16\x36\ +\x28\x1a\x38\x2a\x1b\x3d\x2e\x1e\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\ +\x1f\x38\x2a\x1b\x34\x27\x19\x31\x26\x18\x2f\x23\x17\x26\x1d\x12\ +\x24\x1b\x11\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x34\x27\x19\x31\ +\x24\x18\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x2f\x22\x16\x32\x26\ +\x18\x3b\x2c\x1c\x36\x29\x1a\x3a\x2b\x1c\x31\x24\x18\x2b\x20\x14\ +\x35\x28\x19\x30\x24\x17\x30\x24\x16\x39\x2b\x1b\x39\x2b\x1c\x39\ +\x2a\x1b\x37\x29\x1a\x30\x24\x17\x2d\x22\x16\x2a\x1f\x14\x2a\x20\ +\x14\x2e\x22\x16\x37\x29\x1a\x3b\x2b\x1c\x43\x32\x21\x3f\x2f\x1f\ +\x38\x2a\x1b\x38\x29\x1b\x32\x25\x18\x34\x28\x19\x38\x2a\x1b\x3d\ +\x2e\x1e\x42\x31\x20\x3a\x2b\x1b\x30\x24\x17\x2d\x22\x16\x2b\x21\ +\x15\x32\x25\x18\x34\x26\x19\x38\x2a\x1b\x37\x2a\x1a\x34\x27\x19\ +\x2c\x21\x15\x2c\x21\x15\x33\x26\x18\x38\x2a\x1c\x3b\x2c\x1c\x3c\ +\x2d\x1d\x2e\x22\x16\x34\x27\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ +\x1b\x37\x29\x1a\x2b\x21\x14\x18\x1a\x1a\x3a\x3d\x3f\x41\x44\x47\ +\x3f\x43\x46\x35\x39\x3e\x5b\x63\x66\x64\x6c\x70\x5d\x64\x6a\x3f\ +\x46\x4e\x5d\x65\x6e\x6c\x76\x7f\x6e\x77\x80\x57\x5f\x69\x3c\x45\ +\x51\x68\x72\x7b\x6b\x76\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\ +\x68\x75\x7c\x69\x75\x7e\x69\x74\x7e\x69\x73\x7d\x6d\x76\x80\x6c\ +\x75\x7f\x6c\x75\x7e\x6f\x78\x81\x71\x7b\x83\x72\x7b\x83\x73\x7d\ +\x84\x72\x7c\x83\x75\x7f\x84\x74\x7c\x82\x00\x00\x00\x4f\x3b\x26\ +\x57\x41\x2a\x50\x3c\x27\x52\x3e\x28\x26\x1c\x12\x2d\x22\x16\x29\ +\x1f\x14\x2b\x21\x15\x3a\x2b\x1c\x34\x27\x19\x31\x24\x17\x35\x28\ +\x19\x29\x1f\x14\x28\x1e\x13\x29\x1f\x13\x29\x1e\x13\x24\x1b\x11\ +\x23\x1a\x10\x27\x1d\x12\x2b\x20\x15\x31\x25\x18\x36\x28\x1a\x32\ +\x25\x18\x2c\x21\x15\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x2b\x20\ +\x14\x33\x26\x19\x30\x24\x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x15\ +\x29\x1f\x13\x2b\x20\x15\x2e\x22\x17\x30\x24\x17\x31\x25\x18\x27\ +\x1e\x13\x34\x27\x19\x33\x26\x19\x28\x1e\x13\x28\x1e\x13\x2a\x20\ +\x14\x2b\x1f\x14\x2a\x20\x14\x26\x1c\x12\x28\x1e\x13\x35\x28\x1a\ +\x30\x24\x17\x2e\x22\x16\x35\x28\x1a\x2a\x20\x14\x27\x1d\x12\x21\ +\x19\x10\x23\x1a\x11\x28\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x3a\x2b\ +\x1c\x40\x30\x1e\x3b\x2d\x1c\x39\x2b\x1c\x43\x32\x21\x3e\x2e\x1e\ +\x3a\x2c\x1c\x34\x27\x19\x34\x27\x19\x2b\x20\x14\x1e\x16\x0e\x2a\ +\x1f\x14\x29\x1f\x14\x29\x1f\x14\x26\x1d\x13\x26\x1c\x12\x27\x1d\ +\x12\x2a\x1f\x14\x2f\x23\x16\x32\x25\x18\x3b\x2c\x1c\x3e\x2e\x1d\ +\x36\x28\x1a\x33\x26\x18\x29\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x36\ +\x29\x1a\x3b\x2c\x1c\x42\x32\x20\x3c\x2d\x1d\x38\x2a\x1b\x37\x2a\ +\x1a\x33\x26\x18\x30\x24\x17\x2b\x20\x14\x2a\x20\x14\x38\x2a\x1b\ +\x36\x28\x1a\x3b\x2c\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x3f\x30\x1e\x3b\ +\x2c\x1c\x34\x27\x19\x30\x24\x17\x32\x25\x18\x38\x29\x1b\x43\x32\ +\x21\x37\x29\x1a\x30\x24\x17\x2d\x22\x15\x2a\x20\x14\x2d\x22\x15\ +\x32\x25\x18\x35\x27\x1a\x36\x28\x1a\x32\x26\x18\x31\x24\x17\x2d\ +\x22\x16\x32\x26\x18\x37\x2a\x1b\x3c\x2d\x1d\x40\x31\x1f\x33\x27\ +\x19\x2f\x23\x17\x32\x25\x18\x36\x29\x1b\x37\x29\x1a\x37\x29\x1a\ +\x34\x27\x19\x21\x20\x20\x2e\x31\x33\x41\x44\x46\x48\x4b\x4e\x3a\ +\x3d\x41\x41\x45\x49\x64\x6c\x70\x67\x70\x76\x52\x5a\x61\x46\x4e\ +\x57\x66\x6f\x78\x6b\x74\x7e\x6e\x76\x80\x49\x52\x5f\x45\x51\x5c\ +\x6a\x76\x7f\x66\x73\x7b\x69\x75\x7d\x68\x75\x7d\x69\x75\x7d\x6a\ +\x76\x7e\x6a\x75\x7e\x6b\x75\x7f\x6d\x77\x81\x6e\x77\x81\x70\x79\ +\x82\x71\x7a\x83\x72\x7b\x84\x73\x7c\x82\x71\x7b\x82\x73\x7d\x84\ +\x73\x7d\x83\x76\x7e\x85\x00\x00\x00\x3f\x2f\x1f\x45\x34\x21\x55\ +\x3f\x29\x53\x3e\x28\x2e\x22\x16\x31\x25\x18\x26\x1d\x13\x2b\x21\ +\x14\x38\x2a\x1b\x3a\x2b\x1c\x38\x2b\x1b\x36\x29\x1a\x31\x25\x18\ +\x26\x1c\x12\x28\x1f\x14\x21\x18\x0f\x20\x18\x0f\x23\x1a\x11\x26\ +\x1d\x13\x26\x1d\x13\x2a\x20\x14\x33\x26\x18\x2e\x22\x16\x2a\x20\ +\x15\x28\x1e\x13\x28\x1f\x13\x28\x1f\x13\x2f\x24\x16\x32\x26\x18\ +\x2c\x21\x15\x2c\x21\x15\x2e\x23\x17\x2a\x20\x14\x28\x1e\x13\x26\ +\x1d\x13\x2b\x20\x15\x2f\x24\x17\x38\x2a\x1b\x30\x24\x17\x3b\x2c\ +\x1d\x40\x2f\x1f\x33\x25\x18\x29\x1e\x14\x28\x1e\x14\x28\x1e\x13\ +\x25\x1c\x11\x22\x19\x10\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\x30\ +\x24\x17\x32\x26\x18\x2d\x22\x15\x26\x1c\x12\x24\x1b\x10\x2a\x1f\ +\x14\x28\x1e\x14\x2e\x23\x16\x2b\x20\x15\x32\x25\x18\x34\x27\x19\ +\x2f\x24\x16\x2d\x21\x16\x37\x29\x1a\x36\x28\x1a\x35\x28\x19\x35\ +\x28\x1a\x36\x29\x1a\x2a\x1f\x14\x21\x19\x10\x28\x1e\x14\x26\x1c\ +\x12\x22\x19\x11\x1e\x17\x0f\x25\x1b\x11\x23\x1a\x10\x27\x1d\x13\ +\x2c\x21\x15\x30\x24\x17\x3e\x2e\x1d\x42\x32\x20\x3b\x2c\x1c\x3b\ +\x2c\x1c\x2f\x23\x17\x33\x27\x19\x35\x28\x1a\x32\x25\x18\x3c\x2d\ +\x1d\x3d\x2e\x1e\x3d\x2d\x1e\x3d\x2e\x1d\x3c\x2d\x1c\x39\x2b\x1b\ +\x33\x26\x19\x31\x25\x17\x29\x1e\x13\x30\x24\x17\x34\x27\x19\x33\ +\x27\x18\x38\x2a\x1c\x37\x2a\x1a\x42\x32\x20\x3d\x2d\x1e\x33\x26\ +\x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x30\x24\x17\ +\x30\x24\x16\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\x2a\x20\x14\x2c\ +\x21\x15\x2e\x23\x16\x30\x24\x16\x2d\x21\x15\x2f\x24\x17\x35\x28\ +\x1a\x35\x28\x19\x37\x29\x1b\x3c\x2d\x1d\x34\x27\x19\x30\x24\x17\ +\x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x2e\x22\x16\x29\x20\x14\x30\ +\x30\x2e\x1c\x1e\x21\x42\x45\x47\x48\x4d\x50\x4a\x4f\x52\x40\x44\ +\x48\x55\x5c\x62\x67\x70\x77\x67\x6f\x77\x3e\x45\x4f\x51\x59\x62\ +\x68\x72\x7a\x6b\x76\x7f\x66\x70\x7a\x38\x43\x4f\x4e\x5a\x64\x6a\ +\x76\x7f\x69\x75\x7d\x6b\x77\x7f\x69\x74\x7c\x68\x74\x7c\x69\x75\ +\x7c\x6a\x75\x7d\x6e\x78\x80\x6f\x79\x81\x70\x79\x83\x71\x7a\x83\ +\x74\x7d\x86\x72\x7a\x83\x71\x7b\x82\x72\x7c\x83\x74\x7c\x84\x77\ +\x7f\x85\x00\x00\x00\x3e\x2e\x1e\x53\x3e\x29\x65\x4c\x32\x55\x40\ +\x29\x2c\x21\x15\x24\x1b\x12\x1e\x17\x0f\x38\x2a\x1b\x33\x26\x18\ +\x37\x29\x1b\x39\x2b\x1c\x2f\x23\x17\x32\x26\x18\x2c\x21\x15\x2c\ +\x21\x16\x27\x1e\x13\x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x27\x1d\ +\x12\x2a\x20\x14\x2d\x22\x16\x27\x1d\x13\x20\x18\x0f\x22\x19\x10\ +\x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x32\ +\x25\x18\x2e\x23\x16\x29\x1f\x14\x28\x1e\x13\x24\x1b\x12\x2e\x23\ +\x16\x31\x25\x17\x30\x24\x17\x3a\x2b\x1c\x42\x31\x20\x3a\x2b\x1c\ +\x36\x28\x19\x2e\x22\x16\x2d\x22\x16\x2f\x23\x17\x2e\x22\x16\x2c\ +\x21\x15\x32\x25\x18\x2f\x23\x17\x2c\x21\x15\x2c\x21\x15\x34\x27\ +\x19\x32\x25\x18\x2b\x20\x15\x27\x1d\x12\x27\x1e\x13\x22\x19\x10\ +\x2c\x20\x15\x2b\x21\x15\x33\x26\x19\x34\x27\x19\x2c\x22\x15\x2e\ +\x23\x16\x33\x26\x18\x31\x25\x18\x2e\x22\x16\x30\x24\x17\x32\x26\ +\x18\x2d\x22\x16\x2b\x20\x14\x2f\x23\x16\x25\x1c\x12\x24\x1b\x12\ +\x23\x1b\x11\x2b\x20\x14\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2f\ +\x24\x17\x3a\x2b\x1c\x47\x35\x22\x36\x28\x19\x42\x31\x20\x3a\x2b\ +\x1c\x43\x32\x20\x3d\x2d\x1d\x33\x26\x18\x31\x25\x18\x34\x26\x19\ +\x3c\x2d\x1d\x3f\x2f\x1f\x40\x30\x1f\x41\x31\x1f\x3b\x2c\x1c\x3b\ +\x2c\x1c\x2f\x23\x16\x2c\x21\x15\x32\x25\x18\x35\x28\x19\x35\x28\ +\x1a\x39\x2a\x1b\x42\x32\x20\x47\x34\x22\x3a\x2c\x1d\x31\x25\x17\ +\x30\x23\x17\x31\x25\x17\x2c\x21\x15\x2a\x20\x14\x33\x26\x18\x37\ +\x29\x1b\x2f\x23\x17\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x29\x1f\ +\x14\x2d\x22\x15\x2a\x20\x14\x32\x26\x18\x2f\x24\x17\x31\x25\x18\ +\x2a\x20\x14\x36\x28\x1a\x2f\x23\x17\x27\x1d\x13\x2b\x21\x15\x28\ +\x1e\x14\x30\x25\x18\x39\x2b\x1b\x32\x26\x19\x33\x30\x2e\x26\x28\ +\x2a\x2d\x31\x35\x49\x4e\x52\x50\x56\x5a\x41\x48\x4c\x3b\x42\x49\ +\x62\x6b\x71\x69\x73\x7a\x63\x6b\x74\x3b\x43\x4d\x60\x69\x71\x6c\ +\x76\x7e\x6c\x77\x80\x61\x6c\x75\x34\x3f\x4c\x5b\x64\x71\x68\x74\ +\x7d\x6a\x75\x7d\x68\x74\x7b\x69\x76\x7d\x69\x75\x7d\x68\x73\x7b\ +\x6c\x76\x7e\x6e\x77\x80\x6f\x78\x81\x70\x79\x82\x72\x7b\x84\x73\ +\x7d\x85\x71\x7a\x82\x74\x7e\x85\x76\x7f\x86\x77\x7e\x85\x00\x00\ +\x00\x3b\x2c\x1d\x52\x3e\x28\x65\x4c\x31\x59\x42\x2b\x2e\x23\x16\ +\x2a\x20\x14\x23\x1a\x10\x36\x29\x1b\x31\x25\x18\x34\x27\x19\x3d\ +\x2e\x1e\x38\x2a\x1b\x30\x24\x17\x32\x26\x19\x2d\x22\x15\x2b\x20\ +\x14\x2e\x23\x16\x28\x1e\x13\x24\x1b\x12\x21\x18\x10\x22\x1a\x10\ +\x26\x1d\x12\x23\x1a\x11\x21\x19\x10\x25\x1c\x11\x2c\x21\x14\x2a\ +\x20\x14\x25\x1c\x12\x2d\x22\x15\x31\x25\x18\x32\x25\x18\x36\x28\ +\x1a\x39\x2b\x1b\x33\x27\x19\x2f\x23\x17\x32\x25\x18\x31\x24\x17\ +\x33\x26\x19\x3b\x2c\x1c\x46\x34\x21\x39\x2b\x1c\x31\x25\x17\x2d\ +\x22\x16\x2d\x22\x16\x34\x27\x19\x33\x27\x18\x30\x24\x17\x31\x25\ +\x18\x32\x26\x18\x28\x1e\x13\x26\x1c\x12\x2a\x20\x14\x2f\x23\x17\ +\x33\x26\x18\x2e\x22\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x12\x29\ +\x1f\x14\x29\x1f\x14\x2e\x23\x16\x2d\x22\x16\x36\x28\x1a\x31\x25\ +\x17\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\ +\x32\x25\x18\x34\x27\x18\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2f\ +\x24\x16\x30\x24\x17\x31\x25\x18\x2f\x23\x16\x30\x25\x17\x3b\x2c\ +\x1c\x3d\x2e\x1d\x2a\x20\x14\x36\x28\x1a\x33\x26\x18\x3d\x2d\x1d\ +\x3c\x2d\x1d\x37\x29\x1a\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1b\x3e\ +\x2f\x1e\x40\x30\x1f\x47\x34\x22\x42\x32\x20\x3e\x2e\x1e\x33\x26\ +\x19\x33\x26\x19\x3c\x2c\x1d\x37\x29\x1a\x2f\x23\x16\x34\x26\x19\ +\x39\x2a\x1c\x41\x31\x1f\x3d\x2e\x1e\x30\x24\x17\x38\x2a\x1b\x3d\ +\x2d\x1c\x34\x27\x19\x2f\x23\x17\x2c\x21\x15\x30\x25\x18\x36\x28\ +\x1a\x38\x2a\x1b\x30\x24\x17\x2b\x20\x15\x2b\x21\x15\x2d\x22\x16\ +\x30\x24\x17\x32\x25\x18\x30\x25\x17\x37\x29\x1a\x2d\x21\x16\x35\ +\x28\x19\x2f\x23\x16\x30\x24\x17\x35\x28\x1a\x32\x25\x18\x3d\x2e\ +\x1d\x3e\x2f\x1e\x40\x31\x20\x3a\x35\x2f\x2f\x32\x33\x20\x24\x27\ +\x44\x4a\x4d\x50\x57\x5b\x54\x5a\x60\x3f\x46\x4c\x4c\x53\x59\x69\ +\x72\x79\x6e\x78\x7e\x3f\x47\x4e\x2e\x33\x3b\x66\x70\x78\x6a\x76\ +\x7e\x67\x73\x7b\x55\x61\x6c\x36\x3f\x4b\x64\x6f\x79\x68\x75\x7d\ +\x69\x75\x7d\x6a\x76\x7e\x6a\x75\x7d\x6b\x76\x7d\x6e\x78\x80\x6f\ +\x78\x82\x70\x79\x81\x70\x79\x82\x71\x7a\x83\x74\x7e\x85\x74\x7e\ +\x85\x72\x7c\x83\x76\x7f\x87\x76\x7f\x86\x00\x00\x00\x3e\x2f\x1e\ +\x4b\x38\x24\x5f\x47\x2d\x5b\x44\x2c\x31\x25\x18\x2a\x1f\x15\x1d\ +\x15\x0d\x21\x19\x10\x2d\x22\x16\x31\x25\x17\x3e\x2e\x1e\x37\x29\ +\x1a\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x30\x24\x17\ +\x2b\x20\x15\x31\x25\x18\x31\x25\x18\x2a\x1f\x14\x26\x1d\x12\x28\ +\x1e\x14\x2a\x20\x14\x31\x24\x17\x36\x28\x1a\x29\x1f\x14\x23\x1b\ +\x11\x2b\x21\x15\x31\x24\x17\x33\x26\x18\x42\x31\x20\x40\x31\x1f\ +\x36\x29\x1a\x31\x25\x17\x2e\x22\x16\x2f\x23\x17\x37\x29\x1b\x35\ +\x28\x1a\x39\x2b\x1b\x3a\x2c\x1c\x30\x24\x17\x28\x1e\x13\x2a\x20\ +\x14\x35\x28\x19\x35\x27\x19\x2f\x23\x17\x2b\x20\x15\x29\x1f\x14\ +\x26\x1d\x13\x22\x19\x10\x20\x18\x0f\x29\x1f\x13\x33\x27\x19\x2d\ +\x22\x16\x30\x24\x18\x27\x1d\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ +\x14\x34\x27\x18\x34\x27\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\x17\ +\x39\x2b\x1c\x30\x24\x17\x2b\x1f\x14\x2f\x23\x16\x37\x29\x1a\x3d\ +\x2e\x1d\x3b\x2d\x1c\x39\x2b\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x36\x28\ +\x1a\x31\x25\x18\x33\x26\x19\x3b\x2c\x1c\x3a\x2b\x1c\x31\x25\x18\ +\x2b\x21\x15\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x34\x28\x19\x35\ +\x28\x1a\x30\x24\x17\x2f\x24\x17\x32\x26\x18\x37\x29\x1a\x3b\x2b\ +\x1c\x42\x31\x20\x40\x30\x1f\x34\x27\x19\x30\x24\x17\x36\x29\x1a\ +\x3c\x2c\x1c\x35\x27\x19\x33\x26\x19\x34\x27\x1a\x34\x27\x19\x40\ +\x30\x1e\x3d\x2e\x1d\x31\x25\x17\x39\x2b\x1b\x41\x30\x1f\x33\x26\ +\x19\x2f\x23\x17\x2a\x20\x14\x2d\x22\x16\x39\x2a\x1b\x3d\x2d\x1d\ +\x35\x28\x19\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x31\x24\x18\x35\ +\x28\x19\x35\x28\x19\x33\x26\x19\x3c\x2c\x1d\x3e\x2e\x1e\x34\x27\ +\x19\x34\x27\x19\x33\x27\x18\x33\x26\x18\x36\x28\x1a\x37\x29\x1a\ +\x3f\x30\x20\x35\x30\x2a\x31\x33\x35\x31\x36\x39\x27\x2c\x30\x50\ +\x58\x5c\x54\x5b\x60\x50\x56\x5b\x41\x47\x4c\x5b\x64\x6b\x6b\x76\ +\x7c\x28\x30\x35\x32\x38\x3d\x44\x4d\x55\x68\x75\x7d\x6a\x76\x7e\ +\x69\x74\x7d\x4d\x57\x63\x3c\x47\x52\x64\x72\x7a\x69\x76\x7e\x6c\ +\x78\x80\x6c\x77\x7f\x6b\x77\x7e\x6b\x77\x7e\x6e\x79\x81\x70\x7a\ +\x82\x6f\x78\x82\x71\x7a\x81\x70\x7a\x81\x72\x7d\x83\x76\x80\x88\ +\x75\x7f\x86\x77\x80\x87\x00\x00\x00\x3b\x2d\x1d\x4c\x39\x25\x60\ +\x48\x2e\x51\x3c\x27\x2d\x21\x15\x2e\x23\x17\x17\x11\x0a\x1f\x17\ +\x0f\x28\x1e\x14\x29\x1f\x13\x2f\x23\x16\x2c\x21\x15\x23\x1b\x11\ +\x26\x1d\x12\x2a\x20\x14\x29\x1f\x13\x2d\x23\x16\x31\x25\x18\x3a\ +\x2c\x1c\x3e\x2e\x1d\x36\x29\x1a\x2b\x20\x15\x29\x1f\x14\x25\x1c\ +\x12\x2f\x23\x17\x32\x26\x18\x2a\x1f\x14\x29\x1f\x14\x2b\x20\x15\ +\x36\x29\x1a\x37\x29\x1a\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x36\ +\x28\x1a\x2f\x24\x17\x31\x25\x17\x2e\x22\x16\x32\x25\x18\x36\x29\ +\x1a\x3d\x2e\x1d\x32\x25\x18\x2b\x20\x15\x2d\x21\x15\x32\x25\x18\ +\x33\x26\x19\x2d\x21\x15\x2f\x24\x17\x2c\x21\x15\x25\x1c\x12\x21\ +\x19\x10\x28\x1e\x13\x32\x25\x18\x2a\x20\x14\x31\x25\x18\x29\x1f\ +\x14\x27\x1e\x12\x2d\x22\x16\x30\x24\x17\x2c\x21\x15\x32\x25\x17\ +\x31\x25\x18\x2f\x23\x17\x31\x25\x17\x3e\x2f\x1d\x3a\x2b\x1c\x28\ +\x1e\x13\x29\x1f\x13\x2e\x23\x16\x34\x27\x19\x3b\x2c\x1c\x38\x29\ +\x1b\x3a\x2c\x1c\x36\x28\x1a\x36\x28\x1a\x28\x1e\x13\x2e\x23\x16\ +\x32\x26\x18\x38\x29\x1b\x32\x26\x18\x2f\x24\x17\x34\x28\x19\x2e\ +\x22\x16\x28\x1e\x13\x36\x29\x1a\x37\x2a\x1a\x33\x26\x19\x2d\x22\ +\x16\x35\x28\x19\x35\x28\x1a\x30\x24\x17\x3a\x2b\x1b\x3a\x2b\x1c\ +\x38\x2a\x1b\x38\x29\x1a\x36\x29\x1a\x3b\x2c\x1c\x39\x2a\x1a\x2f\ +\x23\x16\x2d\x21\x16\x2b\x20\x15\x2e\x23\x16\x3c\x2d\x1c\x31\x25\ +\x18\x2f\x23\x16\x37\x29\x1a\x3d\x2d\x1d\x37\x29\x1b\x31\x25\x17\ +\x2f\x23\x17\x35\x27\x1a\x38\x2a\x1b\x38\x2b\x1b\x2e\x23\x16\x2d\ +\x22\x16\x2b\x20\x15\x30\x24\x17\x2d\x21\x15\x35\x28\x1a\x35\x27\ +\x19\x32\x25\x18\x39\x2b\x1b\x3e\x2e\x1e\x38\x2a\x1b\x32\x25\x18\ +\x2d\x22\x16\x2a\x20\x15\x2d\x21\x16\x31\x25\x17\x33\x27\x1a\x35\ +\x2f\x28\x39\x3a\x38\x37\x3c\x3e\x2d\x33\x37\x35\x3b\x3f\x3d\x42\ +\x47\x54\x5a\x5e\x49\x4f\x55\x4e\x57\x5e\x2f\x37\x3a\x27\x2e\x31\ +\x36\x3e\x42\x2f\x36\x3d\x54\x5e\x67\x69\x76\x7e\x66\x73\x7b\x62\ +\x6e\x76\x3e\x47\x51\x48\x53\x5c\x6a\x77\x7f\x6a\x77\x7f\x6c\x77\ +\x7f\x6c\x77\x7f\x6b\x76\x7e\x6e\x78\x80\x6e\x78\x7f\x68\x72\x7a\ +\x68\x73\x7b\x6c\x78\x7f\x70\x7d\x83\x75\x7f\x86\x76\x80\x87\x77\ +\x81\x88\x00\x00\x00\x3c\x2d\x1d\x47\x36\x22\x5b\x44\x2c\x4c\x38\ +\x24\x2c\x20\x15\x1e\x17\x0e\x1b\x15\x0d\x23\x1b\x11\x2a\x1f\x15\ +\x2e\x23\x16\x2d\x22\x16\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\ +\x1c\x12\x26\x1c\x12\x2a\x20\x14\x32\x26\x18\x37\x29\x1a\x3b\x2c\ +\x1d\x32\x26\x18\x29\x1f\x14\x24\x1c\x11\x25\x1b\x12\x2e\x22\x15\ +\x2a\x20\x15\x2b\x20\x15\x2c\x21\x15\x2b\x20\x14\x33\x26\x19\x32\ +\x26\x18\x2a\x1f\x14\x2b\x21\x15\x32\x25\x18\x3d\x2d\x1d\x35\x28\ +\x19\x36\x28\x1a\x31\x24\x17\x39\x2a\x1b\x40\x30\x1f\x3e\x2f\x1e\ +\x38\x2a\x1b\x30\x24\x17\x2b\x21\x15\x2a\x20\x14\x2d\x22\x16\x29\ +\x1e\x13\x2c\x20\x15\x31\x24\x18\x30\x24\x17\x2e\x23\x16\x29\x1f\ +\x14\x2e\x23\x16\x33\x27\x19\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\ +\x30\x24\x17\x2b\x21\x15\x25\x1c\x12\x2d\x22\x15\x36\x28\x1a\x31\ +\x25\x18\x37\x29\x1a\x3d\x2e\x1d\x34\x27\x19\x2c\x21\x15\x2b\x20\ +\x14\x29\x20\x14\x2f\x23\x17\x30\x23\x17\x2c\x21\x15\x2f\x24\x17\ +\x36\x28\x1a\x3a\x2c\x1b\x25\x1c\x12\x29\x1e\x14\x32\x25\x17\x2a\ +\x20\x15\x2e\x23\x16\x29\x1f\x14\x32\x26\x18\x2e\x23\x16\x2e\x22\ +\x16\x34\x27\x19\x2f\x24\x17\x2d\x22\x15\x31\x25\x17\x3a\x2b\x1b\ +\x39\x2b\x1b\x36\x28\x1a\x39\x2a\x1b\x30\x23\x17\x33\x26\x18\x35\ +\x28\x19\x3a\x2c\x1c\x35\x28\x19\x30\x24\x17\x2e\x22\x16\x2e\x22\ +\x16\x2e\x23\x16\x27\x1d\x13\x36\x28\x1a\x29\x1e\x13\x27\x1d\x13\ +\x2b\x20\x14\x2f\x24\x17\x2f\x23\x16\x2a\x20\x15\x2e\x22\x16\x31\ +\x25\x18\x2c\x21\x15\x2b\x21\x15\x2a\x20\x14\x27\x1d\x13\x27\x1d\ +\x13\x2a\x1f\x14\x27\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\ +\x30\x25\x17\x3b\x2d\x1d\x3a\x2c\x1c\x39\x2a\x1c\x33\x26\x19\x36\ +\x29\x1a\x2e\x23\x17\x2c\x21\x15\x2b\x21\x16\x31\x29\x20\x34\x38\ +\x39\x3a\x3f\x43\x39\x3f\x42\x17\x1d\x20\x2c\x2f\x33\x5a\x61\x66\ +\x64\x6c\x71\x39\x40\x47\x02\x02\x03\x35\x3a\x3e\x21\x27\x2c\x61\ +\x69\x6d\x32\x3a\x42\x5f\x69\x71\x68\x76\x7e\x68\x75\x7d\x5c\x67\ +\x70\x3b\x44\x4e\x52\x5e\x67\x6b\x77\x81\x6e\x7a\x83\x6e\x7a\x82\ +\x6e\x79\x81\x72\x7c\x85\x61\x6b\x73\x3b\x42\x4b\x33\x3c\x43\x45\ +\x52\x59\x64\x71\x77\x71\x7c\x83\x75\x7f\x86\x77\x81\x88\x00\x00\ +\x00\x2d\x22\x16\x3f\x2e\x1e\x51\x3c\x27\x41\x31\x1f\x2d\x22\x16\ +\x17\x12\x0b\x1b\x15\x0d\x25\x1d\x12\x2d\x22\x15\x2e\x23\x17\x30\ +\x23\x17\x2b\x20\x14\x29\x1f\x14\x27\x1d\x13\x24\x1b\x11\x24\x1b\ +\x11\x29\x1f\x13\x27\x1d\x12\x32\x25\x18\x38\x2a\x1b\x30\x24\x17\ +\x25\x1c\x12\x23\x1a\x10\x22\x19\x10\x23\x1a\x11\x23\x1a\x11\x2b\ +\x20\x15\x2e\x23\x16\x28\x1e\x13\x29\x1e\x13\x28\x1e\x13\x24\x1b\ +\x11\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x31\x25\x17\x2d\x22\x15\ +\x27\x1d\x13\x32\x25\x18\x39\x2a\x1b\x37\x29\x1b\x33\x26\x19\x30\ +\x24\x17\x2c\x21\x15\x27\x1d\x13\x2b\x20\x14\x23\x19\x10\x23\x1a\ +\x11\x27\x1e\x13\x32\x25\x18\x29\x1e\x13\x27\x1d\x13\x27\x1d\x12\ +\x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x35\x27\x19\x33\ +\x27\x19\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x37\x29\x1a\x3c\x2d\ +\x1d\x33\x26\x18\x26\x1d\x13\x27\x1d\x13\x28\x1e\x13\x23\x1a\x11\ +\x23\x1a\x11\x2a\x1f\x14\x2d\x21\x16\x36\x29\x1a\x34\x28\x19\x37\ +\x2a\x1b\x32\x25\x18\x2d\x22\x16\x36\x29\x1b\x3a\x2b\x1c\x3c\x2d\ +\x1d\x34\x27\x19\x32\x26\x18\x39\x2b\x1b\x32\x25\x18\x34\x27\x19\ +\x2d\x22\x16\x2b\x21\x15\x2c\x20\x15\x31\x24\x17\x35\x28\x19\x35\ +\x27\x19\x31\x24\x17\x31\x24\x17\x36\x29\x1a\x30\x25\x17\x3a\x2c\ +\x1c\x3a\x2c\x1c\x3c\x2d\x1c\x39\x2b\x1b\x38\x2a\x1b\x38\x2a\x1b\ +\x28\x1e\x13\x2d\x22\x16\x22\x1a\x11\x20\x18\x0f\x21\x19\x10\x27\ +\x1d\x12\x26\x1c\x12\x23\x1a\x11\x29\x1f\x14\x28\x1e\x13\x28\x1e\ +\x13\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x1e\x17\x0e\x26\x1c\x12\ +\x28\x1e\x13\x26\x1c\x12\x2e\x23\x16\x2e\x22\x16\x34\x27\x18\x3e\ +\x2f\x1e\x39\x2a\x1b\x35\x28\x1a\x31\x25\x17\x2c\x21\x15\x2e\x22\ +\x17\x31\x25\x18\x30\x24\x17\x36\x2c\x22\x2a\x2c\x30\x39\x3d\x42\ +\x38\x3d\x41\x11\x13\x15\x1a\x1e\x21\x4a\x50\x56\x65\x6e\x74\x5c\ +\x64\x6c\x13\x15\x17\x02\x03\x04\x3d\x43\x46\x66\x71\x75\x58\x62\ +\x67\x35\x3f\x47\x62\x6e\x77\x67\x75\x7d\x68\x75\x7d\x55\x61\x6a\ +\x3d\x47\x51\x5c\x68\x73\x6c\x78\x82\x6c\x77\x80\x6c\x77\x80\x6f\ +\x79\x82\x67\x71\x78\x50\x59\x62\x30\x36\x3d\x16\x18\x1f\x29\x2d\ +\x36\x5f\x68\x70\x74\x80\x86\x77\x83\x8a\x00\x00\x00\x2f\x24\x17\ +\x3e\x2f\x1e\x59\x42\x2c\x4e\x3a\x25\x2a\x20\x14\x16\x11\x0b\x1a\ +\x14\x0c\x2f\x22\x16\x35\x28\x1a\x37\x29\x1b\x35\x27\x1a\x36\x28\ +\x1a\x33\x26\x19\x2f\x23\x17\x22\x19\x10\x1e\x17\x0e\x23\x1a\x10\ +\x21\x19\x10\x29\x1f\x14\x2f\x23\x17\x2d\x21\x15\x2b\x20\x14\x24\ +\x1b\x11\x20\x18\x0f\x23\x1a\x11\x25\x1b\x12\x2a\x1f\x14\x25\x1c\ +\x12\x2b\x20\x14\x28\x1e\x14\x28\x1e\x13\x2b\x20\x15\x28\x1d\x13\ +\x27\x1d\x13\x2d\x21\x16\x31\x25\x17\x3a\x2c\x1c\x33\x26\x18\x35\ +\x27\x19\x31\x25\x17\x34\x27\x19\x33\x26\x19\x2f\x24\x17\x23\x1b\ +\x11\x24\x1b\x11\x25\x1b\x11\x22\x19\x10\x25\x1b\x11\x20\x17\x0e\ +\x1e\x16\x0e\x1e\x17\x0f\x25\x1c\x11\x2b\x20\x15\x2f\x23\x16\x2f\ +\x23\x17\x30\x24\x17\x2d\x22\x16\x2d\x22\x16\x34\x26\x19\x34\x27\ +\x19\x32\x25\x18\x28\x1e\x13\x2f\x23\x17\x32\x25\x18\x36\x28\x1a\ +\x27\x1e\x13\x25\x1c\x12\x28\x1f\x13\x1f\x18\x0e\x20\x18\x0f\x24\ +\x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\x22\x16\x3a\x2c\x1c\x38\x2a\ +\x1b\x31\x25\x17\x37\x29\x1b\x36\x29\x1a\x3c\x2d\x1d\x40\x30\x1f\ +\x40\x31\x1f\x3d\x2e\x1e\x38\x2b\x1b\x39\x2a\x1b\x30\x23\x17\x2f\ +\x24\x17\x33\x27\x18\x3b\x2c\x1c\x3d\x2e\x1d\x36\x28\x1a\x33\x25\ +\x18\x34\x27\x18\x2d\x22\x16\x2b\x21\x15\x29\x1f\x14\x2a\x20\x14\ +\x2f\x23\x16\x2e\x22\x16\x2f\x23\x16\x2b\x20\x14\x1e\x17\x0e\x2a\ +\x1f\x14\x25\x1c\x12\x26\x1c\x12\x22\x19\x10\x2a\x1f\x14\x24\x1a\ +\x11\x25\x1c\x11\x28\x1f\x14\x2a\x1f\x14\x28\x1e\x13\x27\x1d\x13\ +\x28\x1e\x13\x29\x1f\x14\x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x2c\ +\x21\x15\x2e\x23\x16\x2f\x23\x16\x33\x27\x18\x43\x32\x20\x35\x28\ +\x1a\x2f\x23\x16\x2a\x1f\x14\x21\x19\x10\x24\x1b\x11\x29\x1f\x13\ +\x27\x1d\x13\x3d\x31\x25\x19\x1b\x1e\x37\x3a\x3e\x30\x34\x38\x01\ +\x03\x03\x0d\x0f\x11\x32\x39\x3c\x68\x74\x7b\x4d\x58\x60\x15\x18\ +\x1b\x00\x00\x00\x58\x60\x65\x69\x76\x7a\x6a\x75\x7b\x46\x51\x58\ +\x3b\x45\x4e\x66\x73\x7a\x68\x76\x7d\x68\x75\x7d\x4f\x5a\x62\x40\ +\x4a\x55\x60\x6b\x74\x6d\x78\x81\x6f\x7a\x82\x70\x7c\x84\x72\x7c\ +\x84\x73\x7d\x84\x72\x7e\x83\x56\x5f\x66\x25\x26\x2f\x26\x2a\x34\ +\x60\x6b\x73\x75\x81\x87\x00\x00\x00\x2f\x24\x17\x32\x26\x17\x5b\ +\x44\x2c\x48\x35\x22\x36\x28\x1a\x20\x17\x0f\x13\x0f\x09\x2d\x22\ +\x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ +\x2b\x21\x15\x27\x1c\x12\x22\x1a\x10\x27\x1e\x13\x21\x1a\x0f\x2a\ +\x20\x14\x2c\x22\x15\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x2b\x20\ +\x14\x2e\x22\x16\x2a\x1f\x14\x24\x1b\x11\x19\x13\x0c\x22\x1a\x10\ +\x22\x1a\x10\x26\x1c\x13\x29\x1f\x14\x2c\x21\x15\x2c\x21\x15\x26\ +\x1c\x12\x2b\x20\x15\x2d\x22\x15\x2a\x20\x14\x2e\x22\x16\x2d\x21\ +\x15\x24\x1b\x11\x27\x1d\x13\x25\x1d\x12\x26\x1d\x12\x24\x1c\x11\ +\x23\x1a\x11\x2d\x22\x16\x2c\x21\x15\x29\x1e\x14\x21\x18\x10\x2a\ +\x20\x14\x2a\x20\x14\x2c\x22\x15\x30\x23\x17\x2b\x21\x15\x29\x1f\ +\x14\x28\x1e\x14\x27\x1e\x13\x2c\x21\x15\x30\x24\x17\x38\x2a\x1b\ +\x33\x27\x19\x2f\x23\x16\x2e\x23\x16\x3a\x2b\x1c\x3c\x2c\x1d\x2c\ +\x21\x15\x29\x1f\x14\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ +\x11\x2e\x22\x16\x29\x1f\x13\x3b\x2c\x1d\x3f\x2f\x1f\x30\x24\x17\ +\x36\x28\x1a\x3a\x2c\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x42\x31\x1f\x44\ +\x33\x21\x3e\x2e\x1d\x3b\x2d\x1c\x36\x28\x19\x36\x28\x1a\x36\x28\ +\x1a\x42\x32\x20\x43\x32\x20\x3b\x2d\x1d\x35\x29\x1a\x31\x24\x18\ +\x32\x25\x18\x27\x1d\x13\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x21\ +\x19\x10\x1c\x16\x0d\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x24\x1b\ +\x11\x20\x19\x10\x24\x1b\x11\x24\x1b\x12\x26\x1c\x12\x2a\x20\x14\ +\x2c\x21\x15\x2a\x20\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x12\x28\ +\x1e\x13\x2b\x21\x15\x2c\x21\x15\x30\x24\x17\x2d\x21\x15\x31\x25\ +\x18\x2e\x23\x16\x29\x1f\x14\x3a\x2c\x1c\x2d\x23\x15\x29\x1f\x14\ +\x2a\x1f\x14\x26\x1c\x12\x29\x1e\x14\x24\x1b\x12\x2b\x20\x15\x31\ +\x28\x1d\x23\x25\x28\x24\x27\x2a\x30\x34\x36\x00\x00\x00\x13\x15\ +\x17\x35\x3b\x41\x4f\x5c\x62\x2b\x34\x3a\x27\x2d\x31\x01\x02\x02\ +\x42\x4b\x50\x68\x75\x7c\x69\x77\x7d\x66\x73\x7a\x3a\x44\x4d\x46\ +\x51\x5a\x68\x76\x7d\x6a\x78\x7f\x66\x71\x7a\x49\x52\x5c\x45\x4d\ +\x58\x65\x6f\x78\x72\x7d\x86\x71\x7b\x83\x71\x7b\x83\x72\x7d\x83\ +\x73\x7e\x83\x75\x80\x84\x66\x6e\x75\x38\x3b\x45\x31\x35\x3f\x69\ +\x71\x7a\x00\x00\x00\x28\x1d\x12\x2d\x22\x15\x53\x3d\x28\x49\x37\ +\x23\x3a\x2c\x1c\x1c\x15\x0e\x19\x13\x0c\x22\x19\x10\x3b\x2c\x1d\ +\x42\x32\x21\x50\x3c\x28\x36\x29\x1a\x30\x23\x17\x2a\x1f\x15\x26\ +\x1d\x12\x27\x1d\x13\x21\x19\x0f\x1f\x17\x0e\x29\x1f\x14\x2c\x22\ +\x15\x2b\x21\x15\x2d\x22\x16\x28\x1f\x13\x27\x1e\x13\x2c\x21\x15\ +\x28\x1d\x13\x28\x1e\x13\x17\x12\x0c\x1c\x16\x0e\x29\x1e\x13\x25\ +\x1b\x12\x2a\x1f\x14\x29\x1f\x14\x21\x19\x10\x20\x18\x10\x21\x19\ +\x10\x30\x24\x18\x30\x24\x17\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ +\x2d\x22\x15\x22\x1a\x10\x28\x1f\x13\x2d\x22\x16\x2e\x22\x16\x2f\ +\x23\x17\x2e\x22\x16\x36\x28\x1a\x2d\x21\x15\x2e\x23\x16\x35\x27\ +\x1a\x39\x2a\x1b\x35\x28\x19\x28\x1f\x14\x21\x1a\x10\x26\x1c\x12\ +\x29\x1f\x14\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x35\x27\x19\x2f\ +\x23\x17\x2d\x21\x15\x30\x23\x17\x2b\x20\x14\x22\x1a\x10\x2a\x20\ +\x14\x23\x1b\x11\x1c\x16\x0e\x21\x19\x10\x25\x1c\x12\x29\x1f\x14\ +\x33\x26\x19\x34\x27\x19\x2f\x23\x16\x2d\x21\x15\x2d\x22\x15\x35\ +\x28\x1a\x36\x28\x1a\x37\x29\x1b\x38\x2b\x1b\x3c\x2d\x1d\x37\x2a\ +\x1a\x39\x2a\x1c\x39\x2b\x1c\x3b\x2d\x1c\x32\x26\x19\x3a\x2b\x1c\ +\x3c\x2d\x1d\x3a\x2b\x1c\x36\x28\x1a\x2e\x23\x17\x2b\x20\x15\x26\ +\x1d\x12\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0e\x1d\x16\x0e\x20\x18\ +\x0f\x24\x1a\x11\x23\x1a\x10\x26\x1c\x12\x2a\x1f\x14\x28\x1e\x13\ +\x30\x23\x17\x2c\x21\x15\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x28\ +\x1e\x13\x26\x1d\x12\x22\x1a\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ +\x11\x25\x1c\x11\x30\x24\x17\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\ +\x29\x1e\x13\x2d\x22\x16\x29\x1f\x14\x2a\x1f\x14\x2d\x22\x16\x22\ +\x1a\x10\x29\x1f\x14\x24\x1b\x11\x2f\x23\x16\x41\x34\x24\x2d\x30\ +\x31\x20\x23\x26\x1d\x20\x21\x03\x03\x03\x20\x21\x24\x48\x50\x55\ +\x1a\x1f\x24\x24\x28\x2c\x2c\x33\x36\x20\x23\x24\x33\x38\x3c\x51\ +\x5b\x62\x69\x76\x7d\x66\x74\x7c\x5f\x6c\x74\x3b\x44\x4e\x50\x5b\ +\x65\x6a\x77\x7f\x6b\x77\x7f\x65\x6f\x77\x47\x4f\x58\x4b\x55\x5f\ +\x6b\x77\x7f\x72\x7c\x83\x71\x7b\x82\x73\x7d\x84\x73\x7e\x84\x75\ +\x80\x84\x76\x80\x84\x6a\x73\x79\x36\x39\x42\x47\x4c\x55\x00\x00\ +\x00\x35\x29\x1b\x2e\x23\x17\x5a\x43\x2c\x53\x3e\x28\x3d\x2e\x1d\ +\x1d\x16\x0d\x1e\x16\x0e\x17\x11\x0b\x24\x1a\x11\x3c\x2c\x1d\x3d\ +\x2e\x1e\x31\x25\x18\x35\x28\x1a\x2b\x20\x15\x2a\x1f\x14\x29\x1f\ +\x14\x20\x18\x10\x1f\x17\x0f\x26\x1c\x13\x25\x1c\x12\x28\x1f\x14\ +\x30\x24\x17\x30\x24\x17\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2b\ +\x20\x15\x2e\x22\x16\x22\x19\x10\x22\x1a\x10\x27\x1d\x12\x31\x25\ +\x18\x21\x19\x0f\x21\x19\x10\x1d\x16\x0e\x26\x1c\x12\x2d\x21\x15\ +\x2d\x22\x16\x31\x26\x18\x33\x26\x18\x30\x23\x17\x2e\x23\x16\x31\ +\x24\x17\x2f\x23\x17\x28\x1e\x13\x29\x1f\x13\x28\x1e\x13\x2d\x22\ +\x16\x32\x25\x18\x30\x24\x17\x2c\x22\x15\x38\x2a\x1b\x30\x25\x17\ +\x2e\x23\x16\x2b\x21\x15\x1c\x15\x0d\x24\x1b\x11\x29\x1e\x14\x2d\ +\x21\x15\x26\x1b\x12\x26\x1c\x12\x2f\x24\x16\x37\x29\x1b\x2e\x22\ +\x16\x24\x1b\x11\x25\x1c\x12\x26\x1c\x12\x2c\x21\x15\x2d\x22\x16\ +\x25\x1c\x12\x21\x19\x10\x23\x1b\x11\x27\x1e\x13\x2b\x21\x15\x30\ +\x23\x16\x3a\x2b\x1c\x33\x27\x19\x2c\x21\x14\x32\x26\x18\x33\x26\ +\x19\x33\x26\x19\x30\x23\x17\x2d\x23\x17\x2d\x22\x16\x35\x28\x19\ +\x3a\x2c\x1c\x3c\x2e\x1d\x35\x28\x1a\x2e\x22\x16\x34\x27\x19\x38\ +\x2a\x1b\x3b\x2c\x1c\x3c\x2d\x1c\x3b\x2c\x1c\x29\x1e\x13\x2a\x1f\ +\x14\x2b\x21\x15\x29\x1f\x14\x1f\x17\x0f\x21\x18\x0f\x28\x1e\x13\ +\x20\x18\x0f\x29\x1e\x14\x2b\x20\x14\x23\x1a\x10\x24\x1a\x11\x2a\ +\x20\x14\x2d\x22\x16\x2c\x21\x15\x30\x23\x16\x34\x27\x18\x2e\x22\ +\x16\x2d\x22\x16\x2a\x1f\x14\x27\x1d\x13\x2a\x1f\x13\x2f\x23\x16\ +\x38\x2a\x1b\x31\x24\x17\x2a\x20\x15\x2a\x20\x15\x2c\x21\x14\x2d\ +\x22\x15\x2a\x1f\x14\x3a\x2b\x1c\x21\x1a\x10\x29\x1f\x14\x2b\x20\ +\x14\x28\x1e\x13\x2c\x21\x15\x43\x34\x25\x2b\x2f\x30\x22\x25\x27\ +\x05\x06\x07\x15\x16\x17\x1f\x22\x23\x58\x61\x65\x19\x1c\x1e\x17\ +\x1a\x1c\x22\x26\x29\x55\x5d\x5f\x5e\x66\x69\x34\x3c\x42\x5a\x66\ +\x6d\x69\x77\x7f\x67\x74\x7c\x59\x64\x6d\x3b\x44\x4f\x57\x62\x6c\ +\x6a\x77\x80\x6c\x78\x7f\x61\x6b\x73\x48\x51\x5b\x54\x5d\x66\x6d\ +\x77\x7e\x72\x7c\x83\x73\x7d\x84\x75\x7e\x86\x76\x80\x86\x77\x81\ +\x85\x75\x7f\x82\x60\x66\x6b\x46\x49\x50\x00\x00\x00\x46\x35\x23\ +\x26\x1d\x13\x4c\x39\x25\x57\x41\x2a\x3e\x2f\x1e\x22\x19\x10\x1b\ +\x15\x0d\x18\x12\x0b\x27\x1d\x13\x3b\x2d\x1d\x43\x32\x20\x38\x2a\ +\x1b\x32\x26\x18\x35\x27\x1a\x30\x24\x17\x24\x1b\x11\x2a\x1f\x14\ +\x24\x1b\x12\x1e\x17\x0f\x1c\x16\x0e\x22\x1a\x10\x2a\x20\x14\x24\ +\x1c\x11\x24\x1b\x11\x29\x1f\x13\x2a\x1f\x14\x26\x1d\x13\x26\x1c\ +\x12\x2b\x20\x15\x1c\x15\x0e\x1f\x17\x0e\x31\x25\x18\x28\x1e\x13\ +\x1d\x16\x0e\x1e\x17\x0e\x21\x19\x10\x25\x1c\x12\x2e\x23\x16\x30\ +\x24\x16\x2d\x22\x15\x2e\x23\x16\x38\x29\x1a\x35\x27\x19\x2e\x23\ +\x16\x22\x1a\x10\x1c\x15\x0d\x20\x18\x10\x2d\x22\x16\x32\x26\x18\ +\x3b\x2d\x1c\x46\x34\x21\x34\x27\x19\x2d\x21\x15\x2c\x21\x15\x2f\ +\x24\x17\x23\x1a\x10\x22\x1a\x11\x28\x1e\x13\x28\x1e\x13\x22\x1a\ +\x10\x20\x19\x0f\x28\x1f\x14\x28\x1e\x13\x35\x28\x1a\x38\x2a\x1c\ +\x26\x1d\x12\x2c\x22\x16\x32\x26\x18\x37\x29\x1a\x2b\x20\x14\x23\ +\x1b\x11\x2c\x21\x15\x2e\x23\x16\x25\x1c\x12\x2a\x1f\x14\x2a\x1f\ +\x14\x2f\x23\x16\x2d\x22\x16\x30\x24\x17\x33\x27\x19\x39\x2b\x1b\ +\x33\x26\x18\x30\x24\x17\x2d\x22\x16\x35\x28\x19\x3d\x2e\x1d\x39\ +\x2a\x1b\x3a\x2b\x1c\x36\x29\x1a\x36\x28\x1a\x39\x2b\x1c\x3a\x2c\ +\x1c\x37\x29\x1a\x37\x29\x1a\x3f\x2f\x1e\x35\x28\x1a\x30\x24\x17\ +\x2b\x20\x15\x22\x1a\x11\x24\x1b\x11\x28\x1e\x13\x23\x1a\x10\x25\ +\x1c\x11\x28\x1e\x13\x2a\x1f\x14\x2c\x22\x15\x36\x29\x1a\x2e\x23\ +\x16\x30\x25\x17\x2c\x21\x15\x31\x24\x17\x35\x27\x19\x31\x24\x18\ +\x2d\x22\x16\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\x22\x16\x26\ +\x1d\x12\x27\x1d\x12\x24\x1c\x11\x2c\x20\x15\x2a\x20\x15\x27\x1e\ +\x13\x24\x1b\x11\x2b\x20\x14\x2d\x21\x16\x2a\x1f\x14\x27\x1e\x13\ +\x2f\x23\x16\x59\x44\x30\x2d\x2e\x2e\x10\x11\x12\x13\x14\x15\x12\ +\x13\x14\x36\x3b\x3d\x59\x63\x66\x1f\x23\x24\x00\x00\x00\x3a\x40\ +\x40\x68\x71\x73\x6b\x76\x7a\x4f\x59\x5e\x36\x41\x48\x66\x74\x7b\ +\x67\x75\x7d\x67\x73\x7b\x55\x5f\x68\x3d\x45\x4f\x5b\x66\x6e\x6c\ +\x78\x7f\x6e\x77\x7f\x62\x6a\x73\x4a\x52\x5b\x59\x61\x69\x70\x7a\ +\x81\x73\x7d\x84\x74\x7e\x85\x75\x7f\x87\x79\x82\x89\x78\x81\x86\ +\x74\x7b\x7e\x5f\x64\x69\x00\x00\x00\x4e\x3b\x28\x39\x2c\x1c\x58\ +\x42\x2a\x5b\x44\x2c\x4e\x3a\x26\x24\x1b\x11\x1f\x18\x0f\x21\x19\ +\x10\x31\x25\x18\x46\x35\x22\x3c\x2c\x1d\x2c\x20\x15\x24\x1b\x11\ +\x28\x1e\x13\x29\x1e\x14\x2a\x20\x14\x22\x1a\x10\x22\x19\x10\x23\ +\x1a\x11\x1d\x16\x0e\x1c\x15\x0d\x1d\x16\x0e\x1a\x14\x0d\x1f\x18\ +\x0f\x24\x1b\x11\x25\x1c\x12\x25\x1b\x12\x27\x1e\x12\x29\x1f\x14\ +\x1e\x17\x0f\x27\x1d\x12\x2a\x20\x14\x2c\x21\x15\x3b\x2c\x1c\x26\ +\x1d\x12\x19\x13\x0c\x1f\x18\x0f\x23\x1b\x11\x2d\x22\x16\x33\x27\ +\x18\x34\x27\x19\x32\x26\x19\x37\x29\x1b\x35\x28\x19\x26\x1d\x12\ +\x1e\x16\x0e\x20\x17\x0f\x2b\x21\x15\x34\x27\x19\x38\x29\x1b\x44\ +\x33\x21\x32\x26\x18\x25\x1c\x12\x30\x24\x17\x2e\x22\x17\x25\x1c\ +\x11\x25\x1c\x11\x23\x1a\x11\x24\x1b\x11\x20\x18\x10\x24\x1b\x11\ +\x26\x1d\x12\x25\x1c\x12\x2c\x22\x16\x28\x1e\x13\x23\x1b\x10\x24\ +\x1b\x11\x2d\x22\x16\x33\x26\x18\x32\x26\x18\x2b\x21\x14\x2f\x23\ +\x16\x3a\x2b\x1c\x3e\x2e\x1e\x30\x23\x16\x34\x27\x18\x32\x25\x18\ +\x29\x1f\x13\x37\x29\x1a\x3b\x2c\x1c\x41\x31\x1f\x3a\x2c\x1c\x33\ +\x26\x19\x37\x29\x1b\x37\x29\x1b\x38\x29\x1b\x2f\x23\x16\x2c\x20\ +\x15\x2d\x22\x15\x30\x24\x17\x35\x28\x1a\x38\x2a\x1b\x3a\x2b\x1c\ +\x37\x29\x1a\x41\x31\x1f\x3d\x2e\x1d\x2a\x1f\x14\x2f\x24\x16\x29\ +\x1f\x14\x2c\x21\x15\x2c\x21\x15\x33\x27\x19\x34\x27\x19\x33\x26\ +\x18\x2d\x22\x16\x27\x1d\x13\x2e\x23\x16\x2f\x23\x17\x33\x26\x19\ +\x3e\x2f\x1e\x37\x2a\x1b\x35\x28\x1a\x38\x29\x1b\x39\x2a\x1b\x35\ +\x28\x19\x2c\x21\x15\x25\x1d\x12\x28\x1e\x13\x23\x1a\x11\x25\x1d\ +\x12\x29\x1f\x13\x29\x1f\x13\x2c\x21\x15\x24\x1b\x12\x24\x1b\x12\ +\x2b\x20\x14\x26\x1d\x12\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x4c\ +\x3c\x2a\x2e\x2f\x2d\x06\x06\x07\x10\x11\x12\x14\x15\x17\x41\x47\ +\x4b\x48\x50\x53\x22\x25\x27\x03\x03\x02\x30\x34\x35\x65\x6f\x73\ +\x6a\x77\x7c\x69\x75\x79\x47\x51\x58\x3b\x46\x4e\x69\x76\x7d\x6a\ +\x76\x7e\x65\x6f\x78\x4d\x55\x5e\x3d\x45\x4e\x62\x6b\x75\x70\x79\ +\x81\x6e\x78\x7f\x63\x6b\x72\x4c\x52\x5a\x5f\x67\x6e\x71\x7b\x81\ +\x72\x7d\x83\x74\x7e\x86\x78\x81\x8a\x78\x81\x89\x78\x80\x86\x72\ +\x79\x7f\x00\x00\x00\x41\x31\x21\x37\x29\x1b\x5c\x45\x2d\x61\x48\ +\x2f\x4d\x3a\x25\x2d\x22\x15\x13\x0e\x09\x20\x18\x0f\x31\x25\x18\ +\x39\x2a\x1c\x31\x25\x18\x28\x1f\x13\x1f\x17\x0f\x22\x1a\x10\x29\ +\x20\x14\x25\x1c\x12\x23\x1a\x10\x23\x1a\x11\x27\x1e\x12\x27\x1e\ +\x13\x24\x1b\x11\x21\x19\x0f\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ +\x1f\x17\x0f\x1f\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x19\x13\x0c\x1c\ +\x15\x0d\x1e\x16\x0e\x26\x1c\x12\x24\x1b\x11\x26\x1d\x12\x1f\x17\ +\x0f\x1d\x16\x0e\x28\x1e\x13\x30\x24\x17\x2d\x23\x16\x33\x27\x18\ +\x32\x26\x18\x35\x28\x1a\x2b\x21\x15\x1f\x18\x0f\x21\x19\x0f\x27\ +\x1d\x13\x27\x1d\x13\x2a\x1f\x14\x33\x25\x18\x34\x26\x19\x31\x25\ +\x18\x2a\x1f\x14\x2a\x20\x14\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\ +\x23\x1a\x11\x25\x1c\x12\x29\x1f\x14\x26\x1d\x12\x26\x1d\x12\x2a\ +\x1f\x14\x36\x28\x19\x33\x26\x19\x27\x1e\x13\x24\x1c\x11\x2d\x22\ +\x15\x3f\x2e\x1e\x38\x2a\x1b\x2e\x23\x16\x2f\x23\x17\x3b\x2c\x1d\ +\x3b\x2c\x1c\x36\x28\x1a\x2c\x21\x15\x20\x18\x0f\x27\x1d\x13\x2f\ +\x23\x16\x2f\x23\x17\x38\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x30\x24\ +\x17\x32\x25\x18\x30\x25\x17\x29\x1f\x14\x26\x1d\x12\x29\x1e\x13\ +\x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x28\x19\x3c\x2d\x1d\x3b\ +\x2b\x1c\x3c\x2d\x1d\x3a\x2c\x1c\x31\x25\x18\x3a\x2b\x1c\x43\x32\ +\x20\x4a\x37\x23\x4b\x38\x24\x48\x36\x22\x40\x30\x1f\x36\x28\x1a\ +\x34\x27\x19\x34\x27\x19\x37\x29\x1b\x39\x2a\x1b\x3b\x2d\x1c\x3a\ +\x2c\x1c\x33\x26\x18\x3b\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1c\x36\x29\ +\x19\x2e\x23\x17\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x2b\x20\x15\ +\x26\x1c\x12\x2e\x22\x16\x27\x1d\x13\x2a\x1f\x14\x2b\x20\x15\x28\ +\x1e\x13\x32\x25\x18\x33\x26\x19\x38\x2a\x1b\x3a\x2d\x1f\x2e\x2d\ +\x2a\x00\x00\x00\x0b\x0c\x0c\x31\x34\x35\x32\x39\x3d\x2f\x36\x39\ +\x2f\x33\x35\x13\x15\x16\x1a\x1e\x22\x4b\x54\x5c\x69\x74\x7b\x6a\ +\x76\x7c\x67\x72\x79\x40\x4a\x53\x45\x4f\x58\x5e\x69\x72\x39\x42\ +\x49\x68\x71\x7a\x48\x4e\x58\x49\x51\x5b\x6c\x75\x7f\x72\x7c\x83\ +\x72\x7c\x82\x62\x69\x70\x49\x4e\x55\x5e\x66\x6c\x71\x7b\x82\x77\ +\x81\x89\x78\x81\x8a\x77\x81\x88\x76\x80\x87\x79\x82\x89\x00\x00\ +\x00\x30\x24\x17\x30\x24\x17\x54\x3f\x28\x6f\x53\x36\x59\x42\x2b\ +\x2d\x22\x15\x20\x18\x0f\x29\x1f\x14\x33\x27\x18\x33\x26\x19\x2b\ +\x21\x15\x31\x25\x17\x25\x1c\x11\x22\x1a\x10\x24\x1b\x12\x20\x17\ +\x0f\x1d\x16\x0e\x1e\x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x1d\x16\x0e\ +\x19\x14\x0c\x1d\x17\x0e\x1c\x15\x0e\x22\x19\x10\x26\x1d\x12\x23\ +\x1a\x11\x22\x19\x10\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\x1d\x15\ +\x0e\x23\x1a\x11\x26\x1d\x13\x26\x1c\x12\x22\x1a\x10\x1f\x17\x0f\ +\x23\x1a\x11\x2c\x21\x15\x2a\x1f\x14\x33\x26\x18\x31\x25\x17\x30\ +\x24\x17\x2b\x20\x15\x26\x1d\x12\x22\x1a\x11\x1f\x18\x0f\x2a\x20\ +\x15\x2d\x22\x16\x2e\x23\x16\x34\x27\x19\x30\x24\x17\x2d\x22\x16\ +\x28\x1d\x12\x2a\x20\x14\x2b\x22\x16\x20\x18\x0f\x27\x1e\x13\x2c\ +\x22\x15\x2c\x21\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x36\x28\ +\x1a\x32\x26\x18\x24\x1b\x11\x25\x1c\x11\x2d\x22\x16\x39\x2b\x1b\ +\x39\x2a\x1b\x31\x25\x18\x2f\x24\x17\x38\x2b\x1b\x39\x2b\x1c\x30\ +\x24\x17\x3b\x2c\x1c\x39\x2b\x1c\x2f\x23\x17\x26\x1d\x12\x2b\x20\ +\x14\x34\x27\x19\x33\x26\x19\x37\x29\x1b\x36\x28\x19\x34\x27\x19\ +\x30\x25\x17\x26\x1d\x12\x21\x1a\x10\x24\x1b\x12\x2a\x1f\x14\x34\ +\x27\x19\x3b\x2d\x1d\x3d\x2d\x1d\x3c\x2d\x1c\x3b\x2c\x1d\x38\x2b\ +\x1b\x3a\x2c\x1c\x31\x25\x17\x30\x24\x17\x35\x27\x19\x2d\x23\x16\ +\x34\x27\x19\x3b\x2d\x1d\x3c\x2d\x1c\x3b\x2b\x1c\x38\x2a\x1b\x36\ +\x28\x1a\x31\x25\x17\x2f\x23\x17\x2d\x21\x16\x30\x24\x17\x37\x29\ +\x1b\x3c\x2d\x1d\x3e\x2f\x1f\x3f\x30\x1e\x40\x30\x1f\x33\x26\x19\ +\x32\x26\x18\x30\x25\x17\x36\x29\x1a\x2d\x21\x15\x29\x1e\x14\x2b\ +\x20\x14\x2c\x20\x15\x26\x1c\x12\x2f\x23\x17\x2f\x23\x16\x3d\x2d\ +\x1d\x30\x24\x17\x2b\x21\x15\x27\x20\x15\x28\x25\x21\x0f\x0f\x10\ +\x09\x0a\x0a\x3f\x44\x47\x35\x3b\x3f\x2d\x33\x3a\x2e\x34\x3a\x29\ +\x2f\x33\x54\x5b\x63\x37\x3f\x49\x5b\x66\x6f\x6a\x76\x7d\x68\x73\ +\x7b\x63\x6e\x76\x30\x3a\x44\x24\x2c\x31\x3b\x43\x4a\x72\x7c\x84\ +\x65\x6e\x75\x46\x4d\x57\x4d\x56\x60\x6e\x78\x81\x72\x7d\x84\x70\ +\x79\x80\x5f\x65\x6b\x4d\x52\x5a\x64\x6d\x74\x74\x80\x86\x7a\x84\ +\x8b\x79\x82\x89\x78\x82\x8a\x74\x7e\x85\x00\x00\x00\x37\x29\x1b\ +\x35\x28\x1a\x44\x33\x21\x72\x56\x39\x57\x41\x2a\x26\x1c\x12\x20\ +\x18\x0f\x34\x27\x1a\x48\x36\x22\x4a\x37\x24\x38\x2a\x1b\x33\x26\ +\x18\x26\x1c\x12\x22\x19\x10\x1c\x15\x0d\x1b\x14\x0d\x1d\x15\x0e\ +\x1b\x14\x0d\x1d\x17\x0e\x20\x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x1f\ +\x17\x0f\x1d\x15\x0e\x20\x18\x10\x23\x1a\x11\x23\x1a\x11\x1f\x17\ +\x0e\x1d\x16\x0e\x20\x18\x0f\x1c\x16\x0e\x1d\x16\x0e\x1e\x17\x0f\ +\x2b\x20\x14\x23\x1b\x11\x25\x1c\x12\x24\x1c\x11\x2b\x20\x15\x2a\ +\x20\x14\x2e\x22\x16\x33\x26\x19\x32\x26\x18\x2b\x20\x14\x31\x24\ +\x17\x34\x27\x19\x2b\x20\x15\x29\x1f\x14\x2a\x1f\x14\x29\x1f\x14\ +\x2a\x1f\x14\x36\x28\x1a\x33\x26\x19\x36\x29\x1a\x39\x2a\x1b\x34\ +\x27\x19\x27\x1e\x13\x21\x19\x10\x27\x1d\x13\x2c\x20\x15\x2f\x24\ +\x16\x30\x24\x17\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2e\x22\x16\ +\x2a\x1f\x14\x21\x19\x0f\x1f\x18\x0f\x2a\x20\x14\x2f\x23\x16\x27\ +\x1d\x13\x26\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x2d\x21\x15\x2a\x1f\ +\x14\x2a\x1f\x14\x2a\x20\x14\x29\x1f\x13\x27\x1e\x12\x31\x25\x17\ +\x36\x28\x1a\x35\x28\x1a\x3b\x2c\x1c\x42\x32\x1f\x37\x29\x1a\x36\ +\x28\x1b\x31\x25\x18\x35\x27\x19\x33\x26\x19\x30\x24\x17\x31\x25\ +\x18\x2d\x22\x15\x32\x26\x18\x37\x29\x1a\x3f\x2f\x1e\x46\x34\x21\ +\x39\x2b\x1c\x3b\x2c\x1c\x33\x26\x19\x2e\x22\x16\x28\x1f\x14\x32\ +\x25\x18\x36\x28\x1a\x2c\x21\x15\x26\x1d\x12\x2a\x1f\x14\x2d\x22\ +\x15\x2b\x21\x15\x2a\x1f\x14\x2a\x1f\x14\x33\x27\x19\x34\x27\x19\ +\x33\x26\x18\x3a\x2b\x1c\x3d\x2e\x1d\x39\x2b\x1b\x39\x2b\x1c\x3a\ +\x2b\x1c\x39\x2b\x1c\x33\x26\x19\x26\x1d\x13\x2c\x21\x15\x37\x29\ +\x1a\x3a\x2b\x1b\x30\x24\x17\x31\x25\x17\x33\x26\x19\x32\x26\x18\ +\x2b\x20\x14\x2c\x22\x18\x2b\x24\x1c\x22\x24\x25\x08\x09\x09\x46\ +\x4a\x4d\x4a\x50\x53\x31\x35\x3b\x1f\x23\x29\x4e\x56\x5c\x69\x74\ +\x7b\x44\x4b\x53\x21\x28\x2d\x62\x6e\x76\x68\x74\x7b\x69\x74\x7c\ +\x29\x33\x39\x06\x07\x08\x39\x43\x49\x45\x50\x57\x71\x7b\x81\x64\ +\x6d\x74\x44\x4d\x57\x58\x62\x6b\x71\x7c\x84\x71\x7c\x83\x73\x7c\ +\x83\x62\x69\x70\x4d\x51\x59\x67\x71\x78\x76\x81\x88\x7a\x84\x8b\ +\x79\x83\x8a\x6c\x76\x7d\x00\x00\x00\x20\x19\x10\x30\x24\x17\x43\ +\x32\x20\x70\x54\x37\x58\x41\x2b\x2b\x21\x14\x1e\x16\x0e\x34\x27\ +\x19\x47\x35\x22\x5b\x44\x2c\x47\x35\x22\x3d\x2d\x1d\x25\x1c\x12\ +\x22\x1a\x10\x20\x18\x10\x1d\x16\x0e\x1a\x13\x0c\x19\x12\x0c\x1e\ +\x16\x0e\x23\x1a\x10\x23\x1a\x11\x24\x1b\x12\x27\x1e\x13\x23\x1b\ +\x11\x22\x1a\x10\x25\x1c\x12\x2f\x24\x17\x2e\x22\x16\x24\x1c\x11\ +\x20\x18\x0f\x1c\x16\x0e\x1f\x17\x0f\x22\x19\x11\x24\x1b\x12\x1b\ +\x14\x0d\x1e\x17\x0f\x25\x1b\x12\x22\x19\x10\x22\x1a\x11\x26\x1d\ +\x12\x2f\x22\x16\x30\x24\x17\x2a\x1f\x14\x29\x1f\x14\x29\x1f\x14\ +\x27\x1d\x12\x27\x1e\x13\x29\x1e\x13\x27\x1d\x13\x26\x1d\x12\x28\ +\x1e\x12\x31\x25\x17\x3f\x2f\x1e\x33\x26\x19\x30\x23\x16\x25\x1c\ +\x12\x28\x1f\x13\x2e\x22\x16\x36\x28\x1a\x38\x2a\x1b\x33\x26\x18\ +\x33\x26\x18\x32\x26\x18\x2c\x21\x14\x27\x1d\x13\x25\x1c\x11\x23\ +\x1a\x10\x21\x19\x10\x28\x1e\x13\x2f\x23\x17\x33\x26\x18\x2b\x20\ +\x15\x2b\x20\x14\x26\x1d\x13\x26\x1d\x12\x2b\x20\x14\x34\x27\x19\ +\x3a\x2b\x1b\x34\x28\x1a\x35\x28\x19\x36\x29\x1a\x36\x29\x1a\x39\ +\x2b\x1b\x36\x29\x1a\x37\x2a\x1a\x3a\x2c\x1c\x3b\x2c\x1d\x35\x28\ +\x1a\x2b\x21\x15\x2e\x23\x16\x2d\x23\x15\x31\x24\x17\x2d\x22\x16\ +\x2c\x21\x15\x31\x24\x17\x34\x27\x19\x33\x27\x18\x2f\x24\x17\x2b\ +\x21\x15\x31\x25\x18\x39\x2a\x1b\x37\x29\x1b\x30\x24\x17\x38\x2b\ +\x1b\x29\x20\x14\x26\x1d\x12\x24\x1a\x11\x24\x1b\x12\x29\x1f\x14\ +\x2d\x22\x16\x2e\x22\x16\x30\x25\x18\x34\x27\x19\x33\x26\x18\x37\ +\x29\x1a\x3c\x2d\x1d\x38\x2a\x1b\x32\x26\x18\x2f\x23\x16\x31\x24\ +\x18\x36\x29\x1a\x29\x1e\x13\x29\x1f\x14\x2e\x22\x16\x24\x1b\x12\ +\x2c\x21\x15\x29\x1f\x13\x26\x1c\x12\x23\x1a\x10\x24\x1b\x11\x27\ +\x1e\x14\x3c\x33\x29\x16\x17\x19\x2b\x2e\x30\x44\x49\x4d\x4b\x52\ +\x57\x44\x49\x4f\x35\x39\x3e\x52\x5c\x63\x69\x77\x7e\x27\x2f\x34\ +\x38\x40\x47\x32\x3d\x44\x65\x74\x7e\x66\x75\x7d\x0b\x10\x14\x05\ +\x07\x07\x15\x1a\x1d\x41\x46\x4b\x72\x7b\x81\x70\x79\x80\x64\x6d\ +\x75\x45\x4d\x58\x5d\x66\x70\x73\x7d\x85\x75\x7f\x86\x75\x7d\x83\ +\x61\x66\x6d\x4d\x51\x59\x6c\x76\x7c\x78\x83\x88\x78\x83\x87\x75\ +\x80\x86\x00\x00\x00\x32\x26\x19\x43\x32\x21\x4b\x38\x24\x74\x56\ +\x39\x58\x42\x2b\x3a\x2b\x1c\x21\x18\x0f\x2f\x23\x17\x3e\x2f\x1e\ +\x4c\x38\x24\x40\x30\x1f\x45\x33\x21\x38\x29\x1b\x25\x1c\x12\x25\ +\x1b\x11\x22\x19\x10\x1b\x14\x0d\x1b\x15\x0d\x22\x1a\x10\x2b\x20\ +\x14\x29\x1e\x14\x2b\x21\x15\x30\x24\x17\x2a\x1f\x14\x28\x1e\x13\ +\x29\x1e\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1c\x11\x1e\x17\x0e\x20\ +\x19\x0f\x20\x17\x0f\x1f\x18\x0f\x1e\x17\x0f\x1f\x17\x0e\x1c\x15\ +\x0e\x1e\x16\x0f\x1e\x17\x0e\x1f\x17\x0f\x24\x1b\x11\x28\x1e\x13\ +\x29\x1e\x14\x25\x1c\x12\x22\x19\x10\x20\x18\x10\x24\x1c\x12\x25\ +\x1c\x12\x25\x1c\x12\x22\x19\x10\x21\x18\x10\x2b\x20\x15\x22\x1a\ +\x10\x24\x1b\x11\x27\x1e\x13\x23\x1a\x10\x29\x1e\x14\x2b\x20\x15\ +\x26\x1d\x12\x25\x1c\x11\x2f\x23\x17\x38\x2a\x1b\x3e\x2f\x1e\x2b\ +\x21\x15\x28\x1e\x13\x25\x1b\x11\x21\x18\x0f\x23\x1b\x11\x26\x1c\ +\x12\x29\x1e\x13\x29\x1f\x13\x32\x25\x17\x35\x27\x1a\x2d\x21\x16\ +\x23\x1a\x10\x25\x1c\x12\x2a\x1f\x14\x35\x28\x19\x2f\x23\x16\x2d\ +\x22\x16\x29\x20\x14\x2b\x20\x14\x29\x1f\x14\x28\x1f\x13\x2a\x1f\ +\x14\x2a\x20\x14\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x2d\x22\x15\ +\x28\x1e\x13\x2b\x20\x15\x2f\x23\x17\x2e\x23\x16\x27\x1d\x13\x29\ +\x1f\x14\x30\x23\x17\x2a\x1f\x14\x2e\x23\x16\x2b\x20\x14\x2d\x21\ +\x16\x3b\x2d\x1d\x3a\x2c\x1d\x33\x26\x19\x2a\x20\x14\x29\x1e\x14\ +\x28\x1e\x14\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x2b\x20\x14\x2a\ +\x1f\x14\x2d\x22\x16\x31\x25\x18\x2f\x24\x17\x35\x28\x1a\x39\x2b\ +\x1b\x32\x26\x18\x30\x24\x17\x2b\x21\x15\x2e\x23\x16\x31\x25\x17\ +\x31\x25\x17\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x27\x1d\x13\x2a\ +\x20\x14\x26\x1c\x12\x26\x1d\x12\x29\x1e\x14\x28\x1e\x14\x30\x2a\ +\x23\x17\x18\x1a\x3a\x3f\x42\x42\x48\x4d\x4d\x53\x58\x55\x5d\x62\ +\x3c\x43\x48\x4a\x53\x57\x26\x2c\x30\x23\x28\x2b\x37\x3e\x42\x24\ +\x2c\x32\x3f\x4c\x55\x69\x78\x7f\x0c\x11\x14\x02\x01\x02\x0a\x0c\ +\x0e\x3a\x3e\x45\x6b\x73\x7a\x6e\x79\x7f\x72\x7b\x81\x5d\x63\x6b\ +\x46\x4d\x58\x64\x6c\x76\x72\x7d\x86\x75\x7f\x88\x74\x7d\x83\x60\ +\x66\x6d\x52\x56\x5d\x6e\x77\x7b\x77\x83\x86\x79\x84\x88\x00\x00\ +\x00\x2d\x22\x16\x3d\x2d\x1d\x49\x37\x23\x74\x57\x39\x63\x4a\x30\ +\x3d\x2d\x1d\x25\x1c\x11\x2b\x20\x14\x2f\x24\x17\x41\x30\x1f\x38\ +\x2b\x1b\x3e\x2e\x1e\x35\x27\x1a\x29\x1f\x14\x29\x1f\x13\x27\x1e\ +\x13\x2a\x1f\x14\x23\x1a\x11\x27\x1e\x13\x29\x1f\x14\x29\x1f\x13\ +\x29\x1f\x13\x28\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ +\x1f\x14\x2b\x20\x15\x25\x1c\x12\x22\x1a\x10\x28\x1d\x13\x2a\x1f\ +\x14\x25\x1c\x11\x25\x1c\x12\x24\x1b\x11\x22\x1a\x10\x27\x1d\x13\ +\x27\x1d\x13\x23\x1a\x11\x26\x1d\x12\x25\x1c\x12\x26\x1c\x12\x22\ +\x1a\x10\x20\x18\x0f\x24\x1b\x11\x26\x1d\x12\x2c\x20\x15\x29\x1e\ +\x14\x29\x1f\x14\x21\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x21\x18\x0f\ +\x24\x1b\x11\x21\x19\x10\x1f\x17\x0f\x23\x1b\x11\x1d\x16\x0e\x24\ +\x1b\x11\x24\x1b\x12\x32\x25\x18\x37\x29\x1b\x2d\x22\x15\x27\x1e\ +\x13\x25\x1c\x12\x1c\x15\x0d\x21\x19\x10\x27\x1e\x13\x26\x1c\x12\ +\x24\x1b\x11\x2f\x24\x17\x35\x28\x19\x38\x2a\x1b\x33\x27\x19\x2f\ +\x23\x16\x28\x1e\x13\x2b\x20\x15\x2f\x24\x17\x2c\x21\x15\x24\x1b\ +\x11\x28\x1f\x13\x24\x1b\x11\x29\x1f\x14\x2c\x21\x15\x2a\x20\x14\ +\x35\x28\x19\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\x18\x2f\x24\x17\x2f\ +\x23\x16\x2b\x21\x15\x2f\x24\x17\x2a\x1f\x14\x2b\x20\x15\x2b\x20\ +\x15\x2d\x22\x15\x29\x1f\x14\x29\x1f\x14\x2c\x21\x15\x2c\x21\x14\ +\x35\x28\x19\x3c\x2d\x1e\x33\x25\x18\x1f\x18\x0f\x21\x18\x10\x25\ +\x1c\x12\x23\x1a\x11\x23\x1a\x11\x27\x1e\x12\x26\x1d\x12\x2d\x22\ +\x16\x2c\x21\x15\x27\x1e\x12\x2c\x21\x15\x34\x27\x19\x36\x28\x1a\ +\x35\x27\x1a\x31\x25\x18\x2d\x22\x16\x2b\x20\x14\x28\x1e\x13\x2f\ +\x23\x16\x2e\x22\x16\x31\x25\x17\x26\x1c\x12\x28\x1e\x13\x27\x1e\ +\x12\x25\x1c\x12\x2a\x20\x14\x26\x1d\x13\x28\x23\x1e\x27\x2a\x2d\ +\x36\x3a\x3e\x41\x47\x4b\x4c\x52\x57\x53\x5b\x61\x5d\x66\x6b\x32\ +\x39\x40\x00\x01\x02\x35\x38\x3c\x17\x1c\x1f\x67\x6f\x76\x34\x3f\ +\x47\x4b\x55\x5b\x06\x0a\x0b\x01\x01\x01\x26\x2a\x2c\x50\x59\x5e\ +\x41\x49\x51\x6d\x78\x7f\x73\x7e\x84\x73\x7c\x83\x5a\x62\x6a\x43\ +\x49\x53\x63\x6c\x76\x74\x7d\x87\x78\x81\x8b\x76\x7e\x84\x61\x65\ +\x6c\x4f\x56\x5b\x6b\x75\x79\x79\x84\x87\x00\x00\x00\x22\x1a\x11\ +\x3d\x2e\x1d\x45\x34\x21\x73\x57\x39\x62\x49\x30\x2f\x23\x17\x23\ +\x1a\x11\x20\x18\x0f\x20\x18\x0f\x3a\x2b\x1c\x32\x26\x18\x33\x26\ +\x19\x2f\x23\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\ +\x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x27\ +\x1e\x13\x23\x1b\x11\x23\x1b\x11\x22\x1a\x10\x25\x1c\x12\x23\x1b\ +\x11\x22\x19\x10\x29\x1e\x14\x27\x1e\x13\x30\x24\x18\x2f\x23\x16\ +\x2a\x20\x14\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x23\x1b\x11\x1e\ +\x16\x0e\x20\x18\x0f\x20\x18\x0f\x21\x19\x0f\x22\x19\x10\x1e\x17\ +\x0f\x28\x1e\x13\x2c\x21\x15\x2e\x23\x16\x2e\x22\x15\x30\x24\x17\ +\x25\x1c\x12\x1c\x15\x0d\x1a\x13\x0c\x22\x1a\x10\x1f\x18\x0e\x22\ +\x19\x10\x21\x18\x10\x2b\x21\x15\x27\x1e\x13\x24\x1b\x11\x22\x19\ +\x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x15\x2a\x20\x14\x2a\x1f\x14\ +\x1f\x17\x0f\x26\x1d\x12\x30\x24\x17\x2d\x22\x15\x24\x1b\x11\x29\ +\x1f\x14\x32\x26\x18\x3e\x2f\x1e\x3a\x2c\x1c\x30\x24\x17\x26\x1c\ +\x13\x23\x1a\x11\x30\x24\x17\x30\x25\x17\x23\x1b\x11\x29\x1f\x13\ +\x2e\x22\x16\x28\x1e\x13\x29\x1e\x14\x29\x1f\x14\x33\x26\x18\x38\ +\x2a\x1b\x3b\x2d\x1d\x37\x2a\x1b\x30\x24\x17\x2e\x22\x16\x2f\x23\ +\x17\x30\x24\x17\x24\x1c\x11\x21\x19\x10\x28\x1e\x13\x27\x1e\x13\ +\x2b\x21\x14\x29\x1e\x14\x2d\x21\x15\x31\x25\x18\x37\x2a\x1b\x3a\ +\x2b\x1c\x2c\x20\x15\x24\x1b\x11\x1f\x17\x0f\x24\x1b\x11\x24\x1b\ +\x11\x20\x18\x10\x24\x1b\x11\x27\x1c\x12\x2a\x1f\x14\x26\x1d\x12\ +\x26\x1c\x12\x28\x1e\x13\x2b\x20\x15\x2a\x1f\x14\x2b\x21\x15\x2b\ +\x21\x15\x32\x26\x18\x34\x27\x19\x2a\x20\x14\x27\x1d\x12\x28\x1d\ +\x13\x22\x1a\x10\x1c\x16\x0e\x1c\x16\x0e\x21\x1a\x10\x28\x1e\x13\ +\x31\x26\x18\x2c\x21\x15\x39\x30\x26\x2d\x30\x33\x36\x3a\x3e\x40\ +\x45\x49\x4a\x51\x56\x53\x5c\x60\x5a\x64\x6a\x58\x61\x68\x14\x16\ +\x17\x02\x03\x04\x2a\x2f\x33\x66\x72\x78\x62\x6d\x74\x0f\x13\x17\ +\x22\x23\x26\x07\x07\x08\x25\x28\x2a\x70\x78\x7e\x45\x4d\x54\x4b\ +\x53\x5b\x6f\x79\x80\x72\x7d\x83\x73\x7d\x83\x57\x5f\x68\x48\x4e\ +\x57\x6a\x71\x7b\x76\x7f\x87\x7a\x82\x89\x76\x7c\x81\x5d\x62\x67\ +\x52\x57\x5d\x6e\x76\x7a\x00\x00\x00\x19\x13\x0c\x34\x27\x19\x3d\ +\x2e\x1d\x74\x57\x39\x5b\x44\x2d\x39\x2a\x1c\x22\x19\x10\x18\x12\ +\x0c\x23\x1a\x11\x34\x27\x19\x37\x29\x1a\x37\x28\x1a\x2f\x23\x17\ +\x29\x1f\x14\x2c\x21\x15\x29\x1e\x14\x29\x1f\x13\x2b\x20\x14\x2b\ +\x20\x15\x33\x26\x19\x35\x28\x1a\x30\x24\x17\x2d\x22\x15\x28\x1e\ +\x13\x23\x1b\x11\x23\x1b\x11\x25\x1c\x12\x1e\x16\x0d\x1e\x17\x0e\ +\x1f\x17\x0f\x23\x1a\x11\x25\x1d\x12\x2d\x21\x16\x2c\x22\x15\x28\ +\x1e\x13\x24\x1b\x11\x29\x1f\x13\x27\x1d\x12\x23\x1a\x11\x25\x1c\ +\x12\x2b\x20\x15\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2f\x23\x16\ +\x34\x27\x19\x31\x25\x18\x31\x25\x18\x36\x28\x1a\x2d\x21\x15\x26\ +\x1d\x12\x23\x19\x10\x23\x1a\x11\x26\x1d\x12\x24\x1b\x11\x26\x1c\ +\x12\x30\x23\x17\x2e\x23\x17\x30\x24\x17\x26\x1c\x12\x29\x1f\x14\ +\x2b\x20\x15\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x24\x1b\x11\x22\ +\x1a\x10\x2a\x1f\x14\x21\x19\x10\x1d\x16\x0e\x22\x1a\x10\x2c\x21\ +\x15\x31\x25\x17\x35\x28\x1a\x32\x25\x18\x29\x1e\x14\x2a\x1f\x14\ +\x33\x26\x19\x2a\x20\x14\x2a\x20\x14\x33\x27\x18\x2e\x22\x16\x2c\ +\x21\x15\x2f\x23\x16\x2d\x22\x15\x32\x26\x18\x32\x26\x18\x36\x29\ +\x1a\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1b\x3c\x2c\x1c\x33\x26\x19\ +\x2a\x20\x14\x24\x1c\x11\x2a\x20\x14\x2b\x20\x15\x25\x1b\x12\x27\ +\x1d\x13\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x36\x28\x1a\x34\x27\ +\x19\x2f\x23\x17\x25\x1c\x12\x2c\x21\x15\x30\x24\x17\x28\x1e\x13\ +\x26\x1c\x12\x21\x18\x0f\x20\x18\x0f\x22\x1a\x11\x24\x1b\x11\x27\ +\x1d\x12\x2f\x23\x16\x31\x24\x17\x33\x26\x18\x33\x26\x19\x3f\x2f\ +\x1e\x41\x31\x1f\x35\x28\x1a\x2a\x20\x14\x28\x1e\x13\x23\x1b\x11\ +\x1c\x15\x0d\x1e\x16\x0e\x23\x1b\x12\x1c\x16\x0d\x1d\x16\x0e\x23\ +\x1b\x11\x48\x3a\x2b\x2c\x2f\x32\x35\x3a\x3d\x40\x45\x4a\x4a\x52\ +\x56\x53\x5c\x61\x5b\x65\x6c\x4e\x57\x5d\x16\x18\x1a\x00\x00\x00\ +\x47\x4d\x4f\x6b\x78\x7d\x34\x3d\x43\x04\x05\x07\x1e\x21\x26\x07\ +\x07\x08\x3c\x40\x45\x78\x82\x89\x67\x6f\x77\x44\x4a\x54\x57\x5e\ +\x67\x70\x7b\x80\x72\x7c\x83\x76\x80\x86\x59\x60\x68\x4b\x52\x5b\ +\x6f\x77\x7f\x78\x81\x88\x77\x7f\x86\x76\x7d\x82\x5f\x64\x68\x51\ +\x57\x5b\x00\x00\x00\x10\x0b\x07\x35\x27\x19\x3d\x2e\x1d\x76\x59\ +\x3a\x58\x42\x2b\x3f\x2f\x1e\x21\x19\x0f\x1b\x15\x0d\x24\x1c\x12\ +\x38\x2a\x1b\x48\x36\x23\x42\x31\x1f\x32\x26\x18\x2f\x23\x16\x32\ +\x24\x18\x2c\x21\x15\x24\x1b\x11\x26\x1c\x12\x28\x1e\x13\x26\x1c\ +\x12\x2c\x21\x15\x31\x25\x18\x2d\x22\x16\x24\x1c\x11\x1f\x18\x0f\ +\x22\x1a\x10\x25\x1c\x12\x1e\x16\x0e\x1f\x17\x0e\x1c\x15\x0e\x21\ +\x19\x10\x25\x1c\x12\x27\x1d\x12\x2f\x23\x17\x32\x26\x18\x28\x1e\ +\x13\x28\x1e\x13\x2a\x1f\x14\x29\x1f\x14\x22\x1a\x10\x29\x1e\x13\ +\x2a\x1f\x14\x2b\x20\x15\x2f\x23\x16\x31\x25\x17\x2e\x22\x16\x27\ +\x1d\x13\x2b\x21\x15\x2b\x21\x14\x30\x23\x16\x2f\x23\x16\x32\x25\ +\x18\x28\x1e\x13\x24\x1b\x11\x27\x1d\x12\x27\x1d\x12\x32\x25\x18\ +\x34\x26\x19\x36\x28\x1a\x32\x25\x18\x2b\x20\x14\x2d\x22\x15\x2c\ +\x21\x15\x2e\x23\x15\x33\x26\x18\x2e\x23\x16\x2b\x21\x14\x2c\x21\ +\x15\x21\x19\x10\x1f\x18\x0f\x1e\x17\x0e\x26\x1c\x12\x2e\x23\x16\ +\x30\x24\x17\x31\x24\x17\x2b\x20\x15\x33\x26\x18\x2c\x21\x15\x2c\ +\x21\x16\x3a\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x2f\x23\x17\x30\x24\ +\x17\x31\x24\x17\x3a\x2c\x1c\x34\x27\x19\x38\x2a\x1b\x36\x28\x1a\ +\x34\x27\x19\x38\x2a\x1b\x39\x2a\x1c\x2e\x22\x16\x25\x1c\x11\x28\ +\x1e\x13\x2d\x22\x16\x29\x1e\x14\x20\x18\x10\x24\x1c\x11\x2a\x1f\ +\x14\x24\x1b\x11\x2b\x21\x14\x30\x24\x18\x35\x28\x1a\x2f\x23\x16\ +\x27\x1e\x12\x26\x1c\x12\x2f\x23\x17\x31\x25\x17\x2d\x21\x15\x2a\ +\x20\x14\x23\x1b\x11\x24\x1b\x11\x2a\x1f\x14\x29\x1f\x14\x2e\x23\ +\x16\x34\x27\x19\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1c\x44\x33\x21\ +\x38\x2a\x1b\x34\x27\x19\x2d\x21\x15\x20\x18\x0f\x1e\x16\x0e\x1f\ +\x17\x0f\x1b\x15\x0d\x1a\x14\x0c\x17\x12\x0b\x29\x1f\x14\x4c\x3c\ +\x2b\x2b\x2f\x32\x34\x38\x3c\x3e\x43\x47\x48\x4f\x53\x52\x5a\x5f\ +\x54\x5e\x63\x29\x30\x34\x32\x3a\x3e\x08\x08\x09\x27\x2d\x2f\x69\ +\x76\x7a\x17\x1e\x20\x09\x0a\x0b\x2e\x32\x37\x19\x1b\x20\x61\x6b\ +\x74\x73\x7d\x84\x71\x7b\x82\x64\x6c\x75\x48\x4e\x5a\x5c\x64\x6d\ +\x73\x7c\x83\x74\x7e\x85\x73\x7c\x83\x54\x5b\x63\x51\x56\x5e\x6d\ +\x75\x7c\x79\x81\x86\x79\x81\x86\x76\x7e\x81\x61\x66\x6a\x00\x00\ +\x00\x0b\x08\x05\x36\x28\x1a\x3b\x2c\x1c\x69\x4f\x33\x64\x4a\x30\ +\x46\x34\x22\x1a\x14\x0c\x22\x19\x10\x29\x1f\x13\x3f\x2f\x1f\x54\ +\x3f\x29\x36\x29\x1b\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ +\x14\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\ +\x2c\x21\x15\x2a\x1f\x14\x20\x18\x0f\x1d\x16\x0e\x20\x19\x10\x21\ +\x19\x10\x1f\x17\x0f\x1c\x15\x0d\x1f\x17\x0f\x1f\x18\x0f\x28\x1e\ +\x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\x2c\x21\x15\x23\x1b\x11\ +\x25\x1c\x12\x2b\x20\x14\x20\x18\x0f\x22\x19\x10\x29\x1e\x14\x2a\ +\x1f\x14\x29\x1f\x13\x29\x1f\x14\x26\x1c\x12\x20\x18\x0f\x25\x1c\ +\x12\x29\x1f\x14\x2c\x21\x15\x2b\x21\x15\x34\x27\x19\x2c\x21\x15\ +\x23\x19\x10\x1f\x17\x0f\x1f\x17\x0f\x25\x1c\x11\x2e\x22\x15\x2a\ +\x1f\x14\x2e\x22\x16\x2c\x20\x14\x2a\x20\x14\x29\x1f\x13\x2b\x20\ +\x14\x2d\x22\x16\x2f\x23\x17\x38\x29\x1a\x38\x2a\x1b\x2d\x21\x16\ +\x27\x1e\x13\x23\x1a\x10\x26\x1d\x12\x2c\x20\x15\x26\x1c\x12\x2a\ +\x1f\x14\x2f\x23\x17\x36\x29\x1a\x28\x1e\x13\x2c\x21\x15\x38\x2a\ +\x1a\x41\x30\x1f\x38\x2a\x1b\x30\x24\x17\x2f\x23\x17\x2c\x21\x15\ +\x35\x28\x1a\x2d\x22\x16\x31\x24\x18\x35\x27\x1a\x31\x25\x18\x31\ +\x24\x18\x2d\x22\x16\x2d\x22\x16\x2a\x20\x14\x24\x1b\x12\x1e\x17\ +\x0f\x1d\x16\x0e\x1e\x16\x0e\x1c\x15\x0e\x1e\x16\x0e\x26\x1d\x12\ +\x27\x1d\x12\x31\x25\x18\x37\x2a\x1a\x30\x24\x17\x29\x1f\x14\x23\ +\x1a\x10\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2f\x24\x17\x29\x1f\ +\x13\x24\x1b\x11\x28\x1e\x13\x27\x1e\x13\x2c\x21\x15\x31\x25\x18\ +\x2f\x24\x17\x2f\x23\x16\x34\x27\x19\x3a\x2b\x1c\x35\x27\x19\x35\ +\x28\x1a\x36\x28\x1a\x25\x1c\x12\x28\x1e\x13\x24\x1b\x12\x22\x1a\ +\x10\x22\x19\x10\x1e\x17\x0e\x29\x1f\x14\x42\x34\x26\x2b\x2e\x32\ +\x34\x38\x3c\x3d\x43\x47\x47\x4e\x52\x55\x5e\x62\x2b\x31\x34\x19\ +\x1b\x1d\x34\x3b\x3c\x1b\x1d\x20\x27\x2c\x2f\x4d\x58\x5b\x16\x1b\ +\x1c\x00\x00\x00\x0f\x11\x14\x4a\x52\x5b\x43\x4d\x57\x6b\x76\x7d\ +\x72\x7d\x84\x72\x7c\x84\x63\x6a\x73\x49\x4e\x58\x5f\x65\x6e\x75\ +\x7e\x84\x74\x7e\x85\x78\x7f\x86\x5b\x62\x68\x52\x58\x60\x71\x79\ +\x7e\x7b\x84\x89\x79\x83\x87\x76\x7e\x82\x00\x00\x00\x0c\x09\x06\ +\x41\x31\x21\x38\x2a\x1b\x62\x4a\x30\x64\x4b\x30\x4c\x39\x25\x1d\ +\x16\x0e\x1f\x17\x0f\x27\x1d\x12\x30\x25\x17\x3e\x2f\x1e\x26\x1c\ +\x12\x1d\x15\x0d\x20\x17\x0e\x1f\x17\x0f\x21\x19\x10\x23\x1a\x11\ +\x2b\x21\x15\x31\x25\x18\x2e\x23\x16\x2b\x20\x15\x2b\x20\x14\x29\ +\x1f\x14\x24\x1b\x11\x1f\x18\x0f\x22\x19\x11\x1f\x17\x0f\x1f\x17\ +\x0f\x22\x19\x10\x21\x19\x0f\x21\x19\x10\x29\x1e\x13\x2a\x20\x14\ +\x2c\x21\x15\x30\x24\x17\x28\x1e\x13\x26\x1d\x12\x21\x19\x10\x28\ +\x1e\x14\x26\x1d\x12\x25\x1c\x11\x24\x1b\x11\x25\x1c\x12\x22\x19\ +\x10\x1d\x16\x0e\x21\x19\x10\x24\x1b\x11\x23\x1a\x11\x28\x1e\x13\ +\x2b\x21\x15\x2d\x22\x16\x31\x25\x18\x2f\x22\x16\x2c\x21\x15\x22\ +\x1a\x10\x1b\x15\x0d\x25\x1b\x11\x2e\x22\x15\x2a\x20\x14\x2c\x21\ +\x16\x2c\x21\x15\x2a\x20\x14\x24\x1b\x11\x22\x1a\x10\x24\x1c\x11\ +\x26\x1d\x12\x2a\x1f\x14\x31\x25\x18\x2d\x21\x15\x25\x1c\x12\x24\ +\x1b\x11\x26\x1d\x12\x24\x1a\x11\x25\x1b\x11\x27\x1d\x13\x32\x25\ +\x18\x2c\x21\x15\x20\x18\x0f\x29\x1f\x13\x34\x28\x19\x3a\x2c\x1b\ +\x39\x2b\x1b\x33\x27\x19\x32\x26\x18\x24\x1b\x12\x23\x1a\x11\x28\ +\x1e\x13\x28\x1e\x13\x2d\x22\x15\x2c\x21\x15\x2b\x20\x15\x27\x1e\ +\x12\x2c\x21\x15\x29\x1f\x14\x23\x1b\x11\x25\x1c\x12\x2d\x21\x16\ +\x22\x19\x10\x24\x1b\x11\x20\x18\x10\x27\x1d\x12\x27\x1e\x13\x37\ +\x29\x1a\x3c\x2e\x1d\x2d\x22\x16\x2d\x22\x16\x2c\x21\x15\x2b\x20\ +\x15\x2b\x20\x14\x2d\x22\x16\x29\x1f\x14\x27\x1e\x13\x25\x1c\x12\ +\x28\x1e\x13\x2c\x21\x15\x2d\x22\x16\x2e\x22\x16\x2e\x22\x16\x2b\ +\x21\x15\x2d\x22\x15\x34\x27\x19\x37\x29\x1a\x36\x28\x1a\x35\x28\ +\x19\x2a\x1f\x14\x2b\x20\x15\x2e\x22\x16\x27\x1d\x13\x24\x1b\x11\ +\x23\x1a\x11\x2c\x21\x15\x48\x38\x28\x2e\x30\x31\x33\x37\x3b\x3c\ +\x42\x45\x47\x4e\x51\x53\x5b\x5f\x21\x24\x26\x16\x17\x18\x1d\x1f\ +\x21\x4e\x57\x5d\x69\x74\x79\x32\x3a\x3e\x0b\x0c\x0e\x06\x05\x06\ +\x17\x1a\x1d\x72\x7c\x84\x4a\x54\x5c\x4b\x56\x5e\x6e\x79\x80\x73\ +\x7d\x84\x75\x7e\x85\x5e\x65\x6d\x46\x4b\x54\x67\x6f\x77\x76\x80\ +\x87\x7a\x82\x88\x77\x7f\x83\x5d\x63\x6a\x57\x5e\x65\x71\x78\x7e\ +\x7a\x83\x88\x7c\x86\x89\x00\x00\x00\x05\x03\x02\x40\x30\x20\x39\ +\x2b\x1c\x5f\x48\x2f\x5e\x46\x2e\x4e\x3b\x26\x1a\x14\x0c\x1e\x17\ +\x0f\x24\x1a\x11\x2c\x21\x15\x33\x27\x18\x24\x1b\x11\x1e\x16\x0e\ +\x1e\x16\x0f\x1d\x16\x0e\x1d\x16\x0e\x1f\x18\x0f\x27\x1d\x13\x2d\ +\x22\x16\x34\x27\x1a\x3b\x2c\x1c\x38\x2a\x1b\x32\x26\x19\x2b\x20\ +\x15\x28\x1e\x13\x2a\x1f\x15\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\ +\x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x28\x1e\x13\x32\x26\x18\x38\ +\x2a\x1b\x2c\x21\x15\x2e\x22\x16\x23\x1b\x11\x24\x1b\x11\x2b\x21\ +\x15\x2f\x24\x17\x2a\x20\x15\x27\x1d\x13\x28\x1d\x13\x26\x1c\x12\ +\x28\x1e\x14\x2b\x20\x15\x27\x1d\x13\x2c\x21\x15\x30\x24\x17\x30\ +\x24\x17\x32\x26\x18\x31\x24\x17\x2d\x22\x16\x28\x1e\x13\x1f\x18\ +\x0f\x24\x1b\x11\x27\x1e\x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\ +\x2c\x21\x14\x24\x1b\x11\x1b\x15\x0d\x22\x1a\x10\x20\x18\x0f\x1d\ +\x16\x0e\x25\x1c\x12\x2b\x20\x15\x29\x1f\x14\x27\x1e\x13\x26\x1d\ +\x12\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\ +\x24\x1b\x11\x23\x1b\x11\x2e\x23\x16\x34\x27\x19\x39\x2b\x1b\x39\ +\x2b\x1c\x37\x29\x1a\x36\x29\x1a\x33\x27\x19\x30\x24\x17\x32\x26\ +\x18\x29\x1f\x13\x2e\x23\x16\x33\x27\x19\x2c\x21\x15\x26\x1c\x12\ +\x21\x19\x0f\x25\x1b\x11\x28\x1e\x13\x2c\x21\x15\x28\x1e\x13\x2e\ +\x23\x16\x22\x1a\x11\x1d\x16\x0d\x22\x19\x10\x38\x2a\x1a\x38\x2a\ +\x1b\x34\x27\x19\x2e\x22\x15\x32\x25\x17\x2e\x22\x16\x30\x24\x17\ +\x2c\x21\x15\x24\x1b\x11\x22\x1a\x11\x21\x19\x10\x25\x1c\x12\x2b\ +\x20\x15\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x26\x1d\x12\x2b\x20\ +\x14\x34\x27\x18\x33\x27\x18\x32\x25\x18\x33\x26\x18\x28\x1e\x13\ +\x25\x1b\x12\x25\x1b\x12\x1f\x17\x0f\x1c\x15\x0d\x1e\x16\x0e\x26\ +\x1d\x12\x47\x38\x27\x2b\x2c\x2d\x32\x36\x39\x3b\x41\x45\x46\x4d\ +\x51\x50\x58\x5c\x21\x24\x26\x00\x00\x00\x26\x29\x2b\x62\x6b\x71\ +\x6c\x77\x7e\x38\x3e\x43\x1e\x1f\x24\x09\x09\x0a\x1a\x1c\x20\x72\ +\x7d\x83\x68\x73\x79\x47\x51\x59\x50\x5a\x62\x6f\x79\x80\x75\x7f\ +\x86\x78\x81\x87\x5a\x60\x67\x4c\x51\x5a\x69\x70\x79\x78\x81\x85\ +\x7a\x83\x87\x78\x80\x85\x5f\x66\x6c\x55\x5c\x62\x71\x79\x7e\x80\ +\x8a\x8e\x00\x00\x00\x09\x07\x05\x48\x36\x24\x46\x35\x22\x5d\x45\ +\x2d\x73\x55\x38\x5c\x45\x2d\x23\x1a\x11\x20\x18\x10\x23\x1a\x11\ +\x2a\x20\x14\x27\x1d\x12\x25\x1c\x11\x1f\x17\x0f\x1f\x17\x0f\x1c\ +\x15\x0d\x1d\x15\x0d\x20\x18\x10\x25\x1c\x12\x26\x1d\x12\x2e\x22\ +\x16\x34\x27\x19\x39\x2b\x1b\x37\x29\x1b\x2e\x22\x16\x2c\x21\x15\ +\x2a\x1f\x15\x27\x1e\x13\x24\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x23\ +\x1a\x10\x1f\x17\x0f\x24\x1b\x12\x2f\x23\x17\x35\x27\x19\x36\x29\ +\x1a\x35\x28\x1a\x30\x24\x17\x32\x26\x18\x31\x25\x17\x32\x26\x18\ +\x3a\x2c\x1d\x31\x24\x18\x27\x1d\x13\x25\x1c\x12\x28\x1e\x13\x2c\ +\x22\x15\x24\x1c\x12\x21\x19\x10\x24\x1b\x11\x26\x1c\x12\x2e\x23\ +\x16\x2f\x23\x16\x2e\x22\x16\x28\x1e\x13\x1c\x15\x0d\x1f\x17\x0f\ +\x1b\x15\x0d\x23\x1b\x11\x2b\x21\x15\x2d\x22\x15\x2f\x23\x16\x2e\ +\x21\x16\x26\x1c\x12\x27\x1d\x13\x24\x1b\x12\x1f\x18\x0f\x24\x1a\ +\x11\x2b\x20\x14\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\x1f\x18\x0f\ +\x20\x18\x0f\x1f\x18\x0f\x21\x18\x0f\x23\x1b\x11\x23\x1a\x11\x25\ +\x1b\x11\x29\x1f\x13\x30\x24\x17\x38\x29\x1a\x3e\x2f\x1e\x3e\x2f\ +\x1e\x44\x33\x21\x47\x35\x22\x46\x34\x21\x3a\x2b\x1b\x28\x1e\x13\ +\x27\x1d\x13\x2e\x22\x16\x2d\x22\x16\x27\x1d\x13\x27\x1d\x12\x2a\ +\x20\x14\x29\x1f\x14\x2f\x24\x16\x30\x24\x17\x34\x27\x19\x2d\x23\ +\x16\x24\x1c\x12\x30\x24\x17\x39\x2b\x1b\x39\x2a\x1b\x35\x28\x1a\ +\x2c\x21\x15\x2f\x24\x17\x31\x25\x17\x31\x25\x18\x28\x1d\x13\x27\ +\x1d\x13\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x2d\x22\x16\x2e\x22\ +\x16\x29\x1f\x14\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\ +\x2a\x20\x14\x2c\x21\x15\x34\x27\x19\x2a\x1f\x14\x2f\x23\x16\x1c\ +\x15\x0d\x22\x19\x10\x20\x18\x10\x21\x18\x0f\x1f\x16\x0e\x39\x2d\ +\x1f\x30\x30\x2f\x31\x36\x39\x3a\x3f\x43\x47\x4d\x51\x3f\x46\x49\ +\x28\x2c\x2f\x06\x07\x07\x2b\x2f\x30\x63\x6d\x72\x6e\x77\x7f\x47\ +\x4e\x56\x44\x48\x51\x00\x00\x00\x36\x3a\x3f\x75\x80\x86\x6f\x79\ +\x7f\x69\x73\x79\x4a\x54\x5c\x57\x60\x68\x74\x7e\x85\x77\x80\x87\ +\x75\x7e\x83\x5a\x60\x67\x4f\x53\x5c\x6c\x74\x7a\x7b\x84\x89\x79\ +\x82\x86\x77\x7f\x83\x5f\x67\x6c\x5a\x60\x64\x73\x7a\x7f\x00\x00\ +\x00\x09\x07\x05\x48\x36\x24\x45\x34\x22\x57\x41\x2a\x6f\x53\x36\ +\x5d\x45\x2d\x28\x1e\x13\x30\x24\x17\x2d\x22\x15\x35\x28\x1a\x2c\ +\x20\x14\x27\x1d\x12\x23\x1b\x10\x1a\x13\x0c\x1e\x16\x0e\x20\x18\ +\x0f\x21\x19\x0f\x1d\x17\x0e\x21\x19\x10\x28\x1e\x13\x2a\x20\x15\ +\x31\x25\x18\x2f\x23\x17\x26\x1d\x12\x27\x1d\x12\x28\x1d\x13\x29\ +\x1f\x14\x28\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x1f\x18\ +\x0f\x25\x1c\x12\x2d\x22\x15\x35\x27\x19\x33\x27\x19\x36\x28\x1a\ +\x38\x29\x1b\x3d\x2e\x1d\x39\x2b\x1c\x2d\x22\x15\x2a\x1f\x14\x25\ +\x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x0f\x27\x1e\x13\x22\x1a\ +\x10\x1a\x14\x0c\x1e\x16\x0e\x1e\x17\x0f\x2b\x20\x15\x33\x27\x19\ +\x2f\x24\x17\x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x22\x1a\x10\x21\ +\x19\x10\x24\x1b\x11\x25\x1b\x11\x28\x1e\x13\x2e\x22\x16\x2d\x21\ +\x16\x27\x1d\x12\x23\x1b\x11\x1e\x16\x0f\x1d\x15\x0e\x29\x1f\x13\ +\x30\x24\x17\x27\x1d\x12\x2b\x20\x14\x27\x1d\x13\x24\x1b\x11\x20\ +\x18\x0f\x21\x18\x0f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x11\x27\x1e\ +\x13\x2f\x23\x17\x33\x26\x19\x36\x29\x1a\x3a\x2b\x1c\x35\x27\x1a\ +\x3c\x2d\x1d\x40\x30\x1f\x33\x27\x19\x2c\x21\x15\x28\x1e\x14\x2a\ +\x1f\x14\x32\x25\x18\x33\x26\x19\x36\x29\x1a\x32\x25\x18\x36\x29\ +\x1a\x3a\x2b\x1b\x3b\x2c\x1c\x2d\x22\x16\x33\x26\x18\x24\x1b\x12\ +\x26\x1d\x12\x35\x28\x19\x26\x1d\x12\x28\x1e\x13\x27\x1d\x13\x2c\ +\x21\x15\x35\x28\x1a\x2d\x22\x16\x1f\x18\x0f\x28\x1e\x13\x25\x1c\ +\x12\x1a\x14\x0d\x1e\x16\x0f\x26\x1c\x12\x2a\x1f\x14\x22\x1a\x10\ +\x20\x18\x0f\x21\x18\x10\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x32\ +\x26\x18\x2f\x23\x16\x28\x1f\x13\x30\x23\x17\x22\x1a\x10\x1e\x16\ +\x0e\x21\x19\x10\x1f\x18\x0f\x22\x19\x0f\x3b\x2d\x1f\x35\x32\x2f\ +\x2f\x34\x37\x39\x3f\x42\x47\x4d\x51\x32\x36\x3a\x32\x36\x3a\x13\ +\x15\x15\x32\x37\x3a\x65\x6e\x75\x6d\x77\x80\x69\x73\x7c\x36\x3b\ +\x40\x39\x3d\x40\x37\x3d\x43\x6d\x76\x7d\x73\x7d\x83\x72\x7c\x83\ +\x67\x70\x78\x49\x51\x5b\x5b\x64\x6c\x75\x7f\x86\x75\x7f\x83\x76\ +\x7e\x83\x5c\x61\x68\x50\x55\x5c\x6d\x76\x7c\x7a\x85\x89\x7b\x88\ +\x8c\x76\x83\x87\x65\x6d\x71\x58\x5d\x61\x00\x00\x00\x00\x00\x00\ +\x38\x2a\x1b\x3d\x2e\x1e\x59\x43\x2b\x62\x4a\x2f\x61\x48\x2f\x2b\ +\x20\x15\x33\x26\x19\x3b\x2c\x1c\x33\x26\x19\x31\x24\x17\x2a\x20\ +\x14\x1e\x17\x0e\x1c\x14\x0d\x1e\x17\x0e\x1e\x17\x0f\x1d\x16\x0e\ +\x1d\x15\x0e\x20\x18\x0f\x25\x1c\x12\x28\x1e\x14\x2e\x23\x16\x2f\ +\x23\x17\x28\x1d\x13\x28\x1e\x12\x2e\x22\x16\x27\x1e\x13\x2b\x20\ +\x15\x2a\x20\x14\x24\x1b\x11\x1e\x16\x0e\x1c\x15\x0d\x22\x1a\x10\ +\x23\x1b\x11\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x3a\x2b\x1c\x39\ +\x2b\x1b\x32\x26\x18\x28\x1e\x13\x20\x18\x0f\x21\x19\x0f\x20\x18\ +\x0f\x1f\x17\x0e\x1f\x17\x0f\x25\x1c\x12\x23\x1a\x10\x1b\x15\x0d\ +\x21\x19\x10\x26\x1d\x13\x2f\x23\x16\x30\x23\x17\x2e\x23\x16\x2a\ +\x1f\x14\x23\x1a\x11\x1f\x17\x0f\x26\x1c\x12\x23\x1b\x11\x2a\x20\ +\x14\x27\x1d\x13\x26\x1d\x12\x26\x1c\x12\x2b\x20\x14\x33\x26\x18\ +\x34\x27\x18\x33\x26\x18\x29\x1f\x14\x30\x24\x17\x39\x2b\x1c\x32\ +\x26\x18\x2f\x24\x16\x35\x27\x1a\x30\x25\x17\x2a\x20\x14\x25\x1c\ +\x12\x1e\x17\x0e\x1d\x16\x0e\x23\x1b\x11\x23\x1a\x11\x22\x1a\x10\ +\x2c\x21\x15\x26\x1d\x12\x2b\x20\x14\x25\x1c\x12\x2e\x23\x16\x30\ +\x24\x17\x26\x1d\x12\x28\x1e\x13\x28\x1f\x14\x25\x1c\x12\x2a\x1f\ +\x14\x2a\x20\x14\x30\x24\x18\x2f\x23\x17\x30\x24\x17\x36\x29\x1a\ +\x2d\x22\x16\x32\x26\x18\x30\x24\x17\x2d\x22\x15\x28\x1f\x14\x33\ +\x26\x19\x23\x1a\x11\x20\x18\x0f\x26\x1d\x12\x2f\x23\x17\x31\x25\ +\x17\x2f\x23\x17\x2e\x22\x16\x2c\x21\x15\x27\x1e\x12\x23\x1b\x11\ +\x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x20\x18\x0f\x2c\ +\x22\x15\x36\x29\x1a\x2e\x23\x16\x2c\x21\x15\x33\x26\x19\x2f\x24\ +\x17\x2b\x21\x15\x2a\x1f\x14\x25\x1d\x12\x1b\x14\x0d\x20\x19\x0f\ +\x1c\x16\x0e\x21\x19\x10\x34\x28\x1b\x39\x34\x2d\x2f\x34\x37\x39\ +\x3e\x41\x45\x4b\x4f\x47\x4d\x52\x2f\x33\x36\x2c\x31\x34\x56\x5f\ +\x64\x69\x71\x79\x6b\x76\x7d\x6f\x79\x80\x3f\x47\x4e\x69\x72\x78\ +\x51\x59\x60\x3c\x43\x4a\x6e\x78\x80\x75\x7f\x86\x73\x7d\x84\x64\ +\x6c\x74\x49\x50\x59\x60\x69\x70\x77\x81\x86\x78\x81\x86\x74\x7c\ +\x82\x63\x69\x70\x4c\x53\x5a\x66\x6e\x74\x38\x42\x46\x41\x4d\x52\ +\x73\x80\x86\x65\x6d\x70\x00\x00\x00\x01\x01\x01\x3d\x2d\x1e\x45\ +\x34\x22\x56\x40\x29\x5b\x44\x2c\x66\x4c\x31\x31\x26\x18\x36\x29\ +\x1b\x2f\x24\x17\x31\x25\x17\x34\x27\x19\x2c\x22\x15\x1f\x17\x0f\ +\x19\x13\x0c\x1c\x15\x0d\x21\x18\x0f\x1f\x17\x0f\x20\x18\x0f\x20\ +\x18\x0f\x23\x1a\x11\x26\x1c\x12\x30\x24\x17\x33\x26\x18\x2d\x22\ +\x15\x2a\x20\x14\x26\x1c\x12\x29\x1e\x14\x2c\x21\x15\x31\x25\x17\ +\x30\x24\x17\x1f\x17\x0f\x24\x1a\x11\x21\x18\x0f\x29\x20\x14\x2f\ +\x23\x16\x33\x26\x19\x36\x28\x1a\x32\x25\x18\x33\x26\x19\x34\x27\ +\x19\x31\x25\x18\x2d\x21\x15\x26\x1c\x12\x27\x1d\x13\x23\x1a\x11\ +\x20\x18\x10\x27\x1e\x13\x27\x1d\x13\x23\x1a\x11\x25\x1c\x12\x29\ +\x1f\x14\x29\x1f\x13\x27\x1e\x12\x24\x1b\x11\x1d\x16\x0e\x21\x18\ +\x0f\x22\x19\x10\x1e\x16\x0e\x21\x18\x10\x2b\x1f\x14\x24\x1b\x12\ +\x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x3a\x2b\x1c\x3a\x2b\x1c\x34\ +\x26\x19\x2f\x23\x17\x34\x27\x19\x2d\x21\x16\x22\x19\x10\x23\x1a\ +\x11\x24\x1c\x12\x2e\x23\x16\x2e\x23\x16\x2a\x1f\x14\x24\x1b\x11\ +\x1f\x18\x0f\x1f\x16\x0e\x20\x18\x10\x1e\x16\x0e\x20\x19\x0f\x1e\ +\x17\x0e\x1d\x16\x0e\x1d\x16\x0e\x2b\x20\x14\x2b\x21\x15\x23\x1a\ +\x10\x24\x1b\x11\x27\x1e\x13\x28\x1e\x14\x2a\x1f\x14\x2b\x21\x15\ +\x2f\x24\x17\x36\x29\x1a\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2c\ +\x21\x15\x30\x24\x17\x26\x1d\x12\x2c\x22\x16\x2b\x21\x15\x2e\x23\ +\x16\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\x29\x1f\x14\x30\x25\x17\ +\x35\x27\x19\x30\x23\x17\x2b\x21\x15\x27\x1d\x12\x24\x1b\x11\x1d\ +\x16\x0d\x1e\x16\x0d\x21\x19\x10\x22\x19\x10\x2b\x20\x14\x2f\x24\ +\x17\x30\x24\x17\x2a\x1f\x14\x34\x26\x19\x33\x27\x19\x2d\x22\x16\ +\x2b\x20\x15\x2b\x20\x14\x27\x1d\x12\x29\x1e\x13\x31\x24\x17\x2c\ +\x21\x16\x38\x2b\x1d\x3d\x36\x2e\x2f\x33\x36\x38\x3d\x41\x43\x4a\ +\x4d\x4e\x55\x5a\x2b\x2f\x33\x43\x49\x4f\x66\x70\x77\x66\x70\x78\ +\x6b\x76\x7d\x6e\x79\x81\x69\x73\x7c\x6e\x78\x7f\x6d\x76\x7d\x4e\ +\x56\x5d\x3e\x48\x4d\x74\x7e\x85\x74\x7e\x85\x73\x7c\x83\x63\x6a\ +\x72\x4d\x54\x5d\x67\x70\x76\x75\x7f\x84\x79\x83\x88\x79\x83\x87\ +\x62\x68\x6e\x2d\x31\x36\x04\x05\x05\x08\x0b\x0c\x3a\x46\x4b\x79\ +\x87\x8a\x00\x00\x00\x01\x01\x00\x27\x1e\x13\x38\x2a\x1b\x4a\x37\ +\x23\x65\x4b\x31\x69\x4f\x33\x2f\x23\x16\x3a\x2c\x1c\x2e\x22\x16\ +\x33\x27\x18\x25\x1b\x12\x27\x1d\x12\x25\x1c\x12\x22\x19\x10\x1b\ +\x14\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x0f\x1b\x14\x0d\x1b\x14\ +\x0d\x1e\x16\x0e\x2b\x20\x14\x30\x24\x17\x2f\x24\x16\x26\x1c\x12\ +\x26\x1d\x13\x2b\x20\x14\x2a\x20\x14\x2d\x22\x16\x2f\x24\x17\x22\ +\x1a\x10\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x2b\x20\x15\x2f\x24\ +\x17\x34\x26\x19\x30\x25\x17\x2f\x24\x16\x35\x28\x19\x31\x25\x18\ +\x30\x24\x18\x2b\x21\x15\x30\x24\x17\x32\x26\x18\x2c\x21\x15\x2a\ +\x1f\x15\x2c\x21\x15\x25\x1c\x12\x27\x1e\x13\x24\x1b\x12\x23\x1a\ +\x11\x25\x1b\x12\x24\x1b\x11\x23\x1a\x11\x1f\x18\x0f\x21\x19\x10\ +\x22\x19\x10\x20\x18\x0f\x25\x1b\x12\x20\x18\x0f\x1f\x17\x0f\x20\ +\x18\x0f\x1e\x17\x0e\x21\x19\x10\x2d\x22\x16\x29\x1f\x14\x2e\x23\ +\x16\x2f\x23\x16\x24\x1b\x11\x27\x1e\x14\x2a\x20\x14\x25\x1c\x12\ +\x29\x1f\x14\x2c\x21\x15\x33\x26\x18\x20\x18\x0f\x20\x17\x0f\x1e\ +\x16\x0e\x22\x19\x10\x22\x19\x10\x24\x1b\x12\x23\x1b\x11\x23\x1b\ +\x11\x27\x1e\x13\x1f\x18\x0f\x25\x1c\x12\x2a\x1f\x13\x23\x1b\x11\ +\x22\x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x14\x30\x24\x17\x32\ +\x25\x18\x28\x1e\x13\x29\x1e\x14\x2c\x20\x15\x2c\x21\x15\x2d\x22\ +\x15\x2d\x23\x16\x2e\x22\x16\x2c\x21\x15\x30\x24\x17\x2d\x22\x16\ +\x21\x19\x10\x25\x1c\x12\x26\x1d\x12\x30\x24\x16\x3a\x2b\x1b\x3e\ +\x2e\x1e\x39\x2a\x1b\x2a\x20\x14\x29\x1e\x13\x26\x1c\x12\x25\x1b\ +\x11\x24\x1b\x11\x24\x1b\x11\x29\x1f\x14\x2b\x21\x15\x28\x1d\x13\ +\x29\x1e\x13\x29\x1e\x14\x2b\x20\x15\x23\x1a\x11\x1e\x16\x0e\x29\ +\x1f\x13\x27\x1d\x12\x2b\x20\x15\x2f\x23\x16\x2e\x22\x16\x35\x29\ +\x1b\x2c\x28\x23\x2e\x32\x35\x37\x3c\x3f\x42\x48\x4c\x4a\x52\x57\ +\x46\x4d\x54\x56\x5e\x66\x63\x6d\x74\x67\x71\x79\x6b\x75\x7d\x6e\ +\x77\x80\x6d\x77\x7f\x6f\x79\x80\x73\x7b\x82\x6d\x75\x7c\x4e\x57\ +\x5b\x46\x4f\x54\x77\x81\x88\x75\x7e\x85\x75\x7d\x84\x67\x6e\x76\ +\x4b\x52\x5b\x67\x70\x76\x78\x82\x86\x7a\x84\x88\x7b\x84\x89\x3a\ +\x3e\x42\x00\x00\x00\x00\x00\x00\x0f\x12\x14\x60\x6d\x72\x00\x00\ +\x00\x0f\x0b\x06\x49\x37\x24\x3f\x30\x1f\x3e\x2f\x1e\x51\x3c\x27\ +\x57\x41\x2a\x2a\x20\x14\x29\x1e\x14\x24\x1b\x11\x2b\x20\x15\x2a\ +\x20\x14\x25\x1b\x11\x1f\x17\x0f\x20\x19\x0f\x24\x1b\x10\x23\x1a\ +\x10\x20\x17\x0f\x1a\x13\x0c\x18\x12\x0c\x16\x10\x0b\x1c\x15\x0d\ +\x2d\x22\x16\x30\x23\x17\x2c\x21\x15\x23\x1b\x11\x21\x19\x10\x2d\ +\x22\x15\x2e\x22\x16\x2b\x20\x15\x22\x1a\x10\x1b\x14\x0d\x1b\x15\ +\x0d\x23\x1a\x11\x2a\x1f\x14\x2a\x1f\x13\x26\x1d\x12\x2b\x20\x14\ +\x32\x26\x17\x34\x27\x19\x36\x29\x1b\x37\x29\x1a\x31\x24\x18\x2c\ +\x22\x16\x31\x25\x18\x30\x24\x17\x2e\x22\x16\x29\x1f\x14\x27\x1d\ +\x13\x2b\x21\x15\x37\x29\x1b\x30\x24\x17\x2f\x23\x17\x30\x24\x18\ +\x28\x1e\x14\x28\x1e\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\x1d\ +\x16\x0e\x1d\x16\x0e\x1d\x15\x0e\x23\x1a\x10\x1e\x16\x0e\x17\x11\ +\x0b\x19\x13\x0c\x20\x18\x10\x28\x1e\x13\x29\x1f\x13\x28\x1e\x14\ +\x2d\x22\x16\x2b\x20\x14\x25\x1c\x11\x1d\x16\x0d\x20\x18\x0f\x29\ +\x1f\x13\x31\x25\x18\x28\x1e\x13\x28\x1e\x13\x1d\x16\x0e\x2a\x1f\ +\x14\x27\x1d\x12\x2b\x21\x14\x23\x1a\x11\x2c\x20\x15\x39\x2a\x1b\ +\x2d\x22\x15\x27\x1e\x13\x24\x1b\x12\x23\x1a\x11\x22\x1a\x10\x23\ +\x1a\x10\x27\x1d\x13\x22\x1a\x11\x2b\x20\x14\x30\x24\x17\x2b\x20\ +\x15\x2b\x20\x15\x29\x1f\x14\x2e\x22\x16\x33\x27\x19\x29\x1f\x14\ +\x2c\x21\x15\x24\x1b\x11\x29\x1f\x14\x32\x25\x17\x29\x1f\x14\x23\ +\x1b\x11\x21\x19\x10\x2a\x20\x14\x33\x26\x19\x33\x26\x19\x34\x27\ +\x19\x2e\x23\x17\x2a\x20\x14\x2c\x20\x14\x34\x27\x19\x2e\x22\x16\ +\x2a\x1f\x14\x2c\x21\x15\x25\x1d\x12\x1e\x17\x0f\x27\x1d\x12\x23\ +\x1a\x11\x20\x18\x10\x28\x1e\x13\x1c\x14\x0d\x1e\x16\x0e\x22\x19\ +\x11\x2f\x23\x17\x30\x23\x16\x32\x26\x17\x32\x26\x18\x30\x2a\x23\ +\x2d\x31\x35\x35\x3a\x3e\x40\x46\x4a\x4a\x51\x56\x54\x5c\x62\x5c\ +\x65\x6c\x63\x6d\x75\x68\x72\x79\x6c\x76\x7e\x6c\x77\x7f\x71\x7a\ +\x81\x72\x7b\x81\x72\x79\x80\x73\x7b\x82\x6d\x76\x7a\x48\x50\x55\ +\x50\x59\x5e\x77\x81\x87\x76\x7f\x86\x78\x7f\x86\x63\x68\x70\x48\ +\x4c\x55\x6f\x76\x7b\x7b\x86\x8b\x7f\x8a\x91\x51\x59\x5e\x00\x00\ +\x00\x00\x00\x00\x05\x05\x05\x3c\x44\x47\x00\x00\x00\x02\x02\x01\ +\x36\x2a\x1b\x40\x30\x1f\x4c\x39\x25\x59\x43\x2c\x60\x48\x2f\x38\ +\x2a\x1b\x1d\x16\x0e\x20\x18\x10\x2e\x22\x16\x24\x1b\x11\x21\x19\ +\x0f\x17\x12\x0c\x1c\x16\x0e\x1e\x17\x0f\x21\x19\x10\x25\x1c\x12\ +\x1f\x17\x0f\x16\x11\x0a\x18\x12\x0b\x23\x1a\x11\x2a\x20\x14\x29\ +\x20\x13\x29\x1f\x14\x1e\x16\x0f\x23\x1b\x11\x2b\x21\x14\x32\x26\ +\x18\x24\x1b\x11\x21\x18\x10\x1c\x15\x0d\x20\x18\x0f\x26\x1d\x12\ +\x27\x1d\x13\x29\x1e\x14\x24\x1c\x12\x2b\x21\x15\x27\x1d\x13\x2e\ +\x21\x15\x37\x29\x1b\x38\x29\x1b\x38\x2a\x1a\x38\x2a\x1b\x39\x2b\ +\x1c\x2a\x20\x14\x1f\x17\x0f\x24\x1b\x11\x24\x1a\x11\x22\x1a\x10\ +\x2e\x22\x16\x26\x1c\x12\x23\x1b\x11\x23\x1a\x11\x23\x1a\x11\x2b\ +\x20\x15\x24\x1b\x11\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x20\x18\ +\x0f\x26\x1c\x11\x2a\x1f\x14\x26\x1c\x12\x25\x1c\x11\x1e\x17\x0e\ +\x1d\x16\x0e\x20\x19\x10\x22\x1a\x11\x27\x1e\x12\x2b\x20\x15\x2c\ +\x21\x15\x26\x1d\x12\x25\x1c\x12\x22\x1a\x10\x25\x1c\x12\x29\x1e\ +\x13\x20\x18\x0f\x21\x19\x10\x29\x1e\x13\x22\x19\x10\x2a\x20\x14\ +\x26\x1d\x12\x24\x1c\x11\x21\x19\x10\x26\x1c\x13\x2a\x20\x14\x2a\ +\x1f\x14\x27\x1d\x13\x20\x18\x0f\x23\x1a\x10\x28\x1e\x13\x24\x1b\ +\x11\x1e\x17\x0f\x27\x1d\x12\x31\x24\x18\x28\x1e\x13\x24\x1b\x11\ +\x28\x1e\x13\x27\x1d\x12\x30\x25\x18\x2f\x23\x16\x36\x29\x1a\x33\ +\x26\x18\x36\x28\x1a\x34\x27\x19\x2e\x22\x16\x25\x1c\x11\x2a\x20\ +\x14\x30\x25\x17\x3c\x2d\x1d\x3b\x2c\x1d\x36\x28\x1a\x38\x2a\x1b\ +\x32\x26\x18\x34\x27\x19\x35\x28\x1a\x34\x27\x19\x34\x27\x19\x3d\ +\x2d\x1d\x39\x2b\x1c\x24\x1b\x11\x22\x19\x10\x1f\x17\x0f\x23\x1a\ +\x10\x21\x19\x10\x20\x18\x0f\x19\x13\x0b\x18\x13\x0c\x1e\x17\x0e\ +\x21\x19\x10\x23\x1b\x11\x3b\x2c\x1e\x47\x3b\x2f\x2d\x31\x33\x35\ +\x39\x3e\x40\x45\x4a\x4b\x51\x57\x53\x5a\x61\x5b\x63\x6a\x62\x6b\ +\x72\x66\x71\x78\x6a\x76\x7c\x6d\x76\x7e\x70\x7a\x81\x72\x7b\x81\ +\x73\x7b\x82\x73\x7b\x82\x75\x7e\x83\x6c\x74\x78\x4b\x52\x57\x58\ +\x61\x68\x79\x82\x89\x77\x80\x86\x7a\x83\x88\x5f\x65\x6c\x48\x4d\ +\x54\x6e\x77\x7e\x7e\x8a\x90\x6d\x77\x7b\x08\x08\x08\x00\x00\x00\ +\x01\x01\x01\x27\x2d\x2f\x00\x00\x00\x00\x00\x00\x26\x1d\x13\x3a\ +\x2d\x1d\x41\x30\x1f\x54\x3f\x28\x62\x49\x2f\x4f\x3b\x26\x1e\x16\ +\x0f\x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x1c\x15\x0d\x1f\x18\x0f\ +\x29\x20\x14\x22\x1a\x10\x2b\x20\x15\x2a\x1f\x14\x2b\x20\x15\x26\ +\x1d\x12\x1c\x15\x0d\x27\x1d\x13\x2f\x24\x17\x2e\x22\x16\x22\x1a\ +\x10\x24\x1c\x11\x28\x1f\x13\x29\x20\x14\x2a\x20\x15\x27\x1d\x13\ +\x27\x1d\x13\x20\x18\x0f\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x1e\ +\x17\x0e\x1f\x17\x0f\x23\x1a\x11\x22\x1a\x11\x24\x1b\x11\x24\x1b\ +\x11\x28\x1e\x13\x2d\x22\x16\x34\x27\x19\x36\x29\x1a\x2a\x20\x14\ +\x1f\x17\x0f\x1e\x16\x0f\x1d\x16\x0e\x21\x19\x0f\x1f\x17\x0f\x20\ +\x18\x0f\x25\x1c\x12\x26\x1c\x12\x26\x1c\x11\x28\x1e\x14\x21\x19\ +\x0f\x22\x19\x10\x1e\x16\x0e\x19\x13\x0c\x1c\x15\x0e\x1d\x16\x0e\ +\x20\x18\x10\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x1a\x13\x0c\x20\ +\x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x26\x1c\x12\x2d\x21\x16\x29\x1f\ +\x14\x2d\x22\x16\x2b\x20\x14\x21\x19\x10\x21\x19\x0f\x19\x13\x0b\ +\x1e\x16\x0d\x2a\x1f\x13\x2b\x20\x14\x20\x18\x0f\x26\x1d\x12\x2d\ +\x22\x16\x32\x25\x18\x36\x28\x1a\x3b\x2d\x1c\x33\x27\x18\x33\x26\ +\x18\x2d\x21\x15\x28\x1e\x13\x22\x1a\x10\x26\x1d\x12\x28\x1e\x13\ +\x25\x1c\x12\x24\x1c\x12\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\ +\x23\x16\x2b\x20\x15\x2b\x21\x15\x30\x24\x17\x2f\x23\x17\x3a\x2c\ +\x1d\x39\x2b\x1c\x29\x1f\x14\x23\x1b\x11\x22\x19\x10\x2a\x1f\x13\ +\x31\x25\x18\x36\x29\x1a\x30\x24\x17\x2a\x20\x14\x2c\x21\x15\x2c\ +\x21\x15\x2d\x21\x16\x32\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x39\x2a\ +\x1b\x2d\x22\x16\x2a\x1f\x14\x23\x1a\x11\x25\x1c\x12\x1e\x16\x0e\ +\x1d\x16\x0d\x19\x13\x0c\x1b\x14\x0d\x22\x1a\x11\x22\x1a\x11\x25\ +\x1c\x11\x32\x25\x19\x46\x39\x2b\x2b\x2f\x32\x34\x39\x3d\x3f\x44\ +\x49\x4a\x50\x56\x54\x5b\x62\x5e\x65\x6c\x63\x6d\x74\x67\x71\x78\ +\x6b\x75\x7e\x6d\x79\x80\x6f\x7a\x81\x70\x7a\x81\x71\x7b\x82\x75\ +\x7e\x81\x74\x7d\x82\x77\x7f\x86\x66\x6f\x73\x43\x4a\x4f\x60\x69\ +\x6e\x79\x82\x86\x7b\x84\x88\x7b\x84\x88\x5c\x61\x68\x43\x48\x50\ +\x74\x7d\x82\x7c\x87\x8a\x35\x3b\x3c\x00\x00\x00\x00\x00\x00\x16\ +\x1a\x1b\x00\x00\x00\x00\x00\x00\x29\x1f\x15\x49\x38\x24\x40\x30\ +\x1f\x50\x3c\x27\x6a\x4f\x34\x50\x3d\x27\x23\x1a\x11\x10\x0c\x07\ +\x1c\x15\x0e\x26\x1c\x12\x28\x1e\x13\x2c\x21\x14\x27\x1d\x13\x28\ +\x1f\x14\x28\x1e\x13\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x20\x18\ +\x0f\x24\x1b\x11\x29\x1f\x14\x21\x19\x10\x1a\x14\x0c\x1d\x15\x0e\ +\x20\x18\x0f\x25\x1b\x12\x19\x13\x0b\x18\x13\x0c\x2c\x21\x15\x26\ +\x1d\x12\x20\x18\x10\x21\x19\x0f\x1f\x18\x0f\x27\x1d\x12\x20\x18\ +\x10\x24\x1b\x12\x26\x1c\x12\x27\x1e\x13\x23\x1b\x11\x2e\x23\x16\ +\x36\x28\x1a\x36\x28\x19\x2e\x22\x16\x2d\x22\x15\x25\x1c\x12\x23\ +\x1b\x11\x28\x1e\x13\x23\x19\x10\x1b\x15\x0d\x1b\x15\x0d\x1f\x17\ +\x0f\x25\x1c\x11\x21\x19\x10\x20\x18\x0f\x25\x1c\x12\x24\x1c\x12\ +\x24\x1b\x11\x19\x13\x0c\x16\x11\x0b\x1b\x14\x0d\x22\x19\x11\x21\ +\x19\x0f\x20\x18\x10\x23\x1a\x11\x21\x19\x10\x20\x18\x0f\x1d\x16\ +\x0e\x1f\x17\x0f\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x14\ +\x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x28\x1e\x13\x30\x24\x17\x32\ +\x25\x18\x2d\x22\x15\x2e\x23\x16\x2e\x22\x16\x32\x26\x19\x34\x26\ +\x19\x30\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x38\x29\x1b\x35\x28\x19\ +\x36\x28\x1a\x33\x26\x18\x34\x26\x19\x28\x1e\x13\x23\x1b\x10\x1c\ +\x15\x0d\x1f\x17\x0e\x2e\x22\x16\x28\x1e\x13\x1e\x16\x0e\x27\x1d\ +\x13\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2e\x23\x16\x2b\x20\x14\ +\x25\x1c\x11\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x2f\x23\x16\x39\ +\x2b\x1b\x3e\x2f\x1e\x3c\x2d\x1d\x2c\x21\x15\x21\x19\x10\x25\x1c\ +\x12\x2f\x23\x17\x32\x26\x18\x3a\x2c\x1c\x3f\x2f\x1f\x3c\x2d\x1d\ +\x3f\x2f\x1e\x2c\x21\x14\x24\x1b\x12\x26\x1d\x12\x21\x19\x10\x1c\ +\x15\x0d\x1c\x15\x0d\x1d\x16\x0e\x23\x1a\x11\x23\x1b\x11\x32\x26\ +\x19\x4d\x3e\x2f\x2b\x2f\x32\x34\x38\x3c\x3e\x44\x48\x48\x4f\x53\ +\x51\x57\x5e\x5a\x62\x69\x61\x6a\x71\x67\x71\x79\x6c\x76\x7e\x6c\ +\x76\x7e\x6e\x79\x80\x72\x7c\x82\x73\x7c\x83\x72\x7b\x82\x77\x7f\ +\x86\x76\x7e\x85\x79\x81\x86\x66\x6e\x73\x49\x51\x56\x64\x6d\x71\ +\x7b\x84\x88\x79\x83\x87\x7a\x82\x87\x60\x65\x6d\x51\x57\x5f\x74\ +\x7d\x82\x71\x79\x7e\x19\x1b\x1d\x00\x00\x00\x14\x15\x18\x00\x00\ +\x00\x03\x02\x01\x22\x1a\x10\x3e\x2f\x1f\x35\x28\x19\x57\x41\x2a\ +\x65\x4b\x31\x4d\x39\x26\x1c\x15\x0d\x11\x0d\x09\x18\x12\x0b\x22\ +\x1a\x10\x2b\x20\x15\x2f\x24\x17\x26\x1c\x12\x29\x1f\x13\x2c\x21\ +\x15\x30\x24\x17\x2d\x22\x16\x29\x1f\x14\x1e\x16\x0e\x1d\x16\x0e\ +\x1f\x17\x0f\x1b\x15\x0d\x17\x12\x0c\x19\x12\x0c\x23\x1a\x10\x2b\ +\x21\x14\x21\x18\x10\x2c\x21\x15\x2a\x1f\x14\x22\x1a\x11\x28\x1f\ +\x14\x31\x25\x18\x26\x1c\x12\x29\x1e\x13\x25\x1c\x12\x27\x1d\x13\ +\x2c\x21\x15\x2f\x23\x17\x26\x1c\x12\x27\x1c\x12\x2e\x22\x16\x35\ +\x28\x1a\x2d\x21\x15\x28\x1e\x13\x27\x1d\x13\x22\x1a\x11\x21\x19\ +\x10\x1e\x17\x0e\x20\x18\x0f\x1c\x16\x0e\x1b\x14\x0d\x1c\x15\x0d\ +\x23\x1b\x11\x1b\x14\x0d\x1f\x17\x0f\x26\x1d\x13\x24\x1b\x12\x2c\ +\x22\x16\x1b\x14\x0d\x1a\x13\x0d\x21\x19\x10\x29\x1f\x13\x32\x26\ +\x18\x2d\x22\x16\x25\x1b\x12\x23\x1b\x11\x1b\x15\x0d\x1a\x13\x0c\ +\x1d\x15\x0e\x2b\x20\x15\x28\x1e\x13\x2f\x23\x17\x2e\x23\x17\x2e\ +\x23\x16\x24\x1b\x12\x24\x1b\x11\x28\x1e\x13\x2a\x1f\x14\x28\x1e\ +\x13\x19\x13\x0c\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2d\x22\x16\ +\x30\x24\x17\x31\x25\x18\x35\x27\x19\x36\x28\x19\x31\x25\x18\x37\ +\x29\x1a\x3a\x2b\x1b\x34\x27\x19\x22\x1a\x11\x1e\x17\x0e\x1e\x16\ +\x0e\x21\x1a\x10\x25\x1c\x12\x1d\x16\x0e\x28\x1e\x13\x21\x19\x10\ +\x26\x1c\x12\x27\x1d\x12\x23\x1a\x10\x26\x1c\x12\x24\x1b\x11\x24\ +\x1b\x11\x33\x26\x18\x37\x29\x1a\x3a\x2b\x1c\x3c\x2d\x1d\x3a\x2b\ +\x1c\x38\x2a\x1b\x2e\x22\x16\x2f\x23\x17\x34\x26\x18\x2c\x21\x15\ +\x2a\x21\x15\x29\x1f\x14\x28\x1e\x13\x30\x24\x18\x35\x28\x1a\x29\ +\x1f\x14\x28\x1e\x14\x21\x19\x10\x1b\x14\x0d\x20\x18\x0f\x1e\x17\ +\x0f\x1d\x16\x0e\x19\x13\x0c\x1f\x17\x0f\x23\x1a\x11\x37\x2d\x22\ +\x2a\x2e\x31\x34\x38\x3c\x3f\x44\x48\x47\x4d\x52\x51\x57\x5e\x5a\ +\x61\x68\x61\x69\x71\x67\x70\x78\x6d\x75\x7e\x6f\x79\x81\x72\x7c\ +\x85\x71\x7a\x82\x73\x7e\x85\x76\x80\x87\x78\x81\x88\x78\x80\x87\ +\x76\x7f\x86\x77\x7f\x85\x5e\x64\x69\x46\x4d\x52\x69\x71\x75\x7b\ +\x84\x88\x78\x82\x85\x7d\x85\x8a\x5f\x65\x6c\x4d\x53\x5b\x75\x7e\ +\x83\x6d\x75\x78\x2e\x31\x33\x50\x54\x58\x00\x00\x00\x09\x07\x05\ +\x13\x0e\x09\x4c\x39\x27\x35\x27\x1a\x55\x40\x2a\x4d\x3a\x25\x4a\ +\x36\x24\x1a\x13\x0c\x10\x0c\x08\x13\x0f\x09\x1f\x17\x0f\x26\x1c\ +\x12\x28\x1e\x13\x29\x1e\x13\x27\x1e\x12\x2d\x22\x15\x25\x1b\x11\ +\x24\x1b\x11\x27\x1e\x12\x24\x1b\x11\x22\x19\x10\x1d\x16\x0e\x17\ +\x11\x0c\x14\x0f\x0a\x1a\x13\x0d\x1a\x14\x0c\x24\x1b\x11\x28\x1e\ +\x13\x2d\x21\x15\x2d\x22\x16\x29\x1f\x14\x2b\x20\x14\x29\x1f\x13\ +\x23\x1a\x11\x22\x1a\x10\x25\x1c\x11\x26\x1d\x12\x2a\x1f\x14\x30\ +\x24\x17\x2d\x21\x15\x29\x1f\x13\x30\x24\x17\x35\x28\x1a\x31\x26\ +\x18\x2d\x23\x16\x29\x1f\x14\x21\x18\x10\x28\x1e\x13\x2a\x1f\x14\ +\x2a\x20\x14\x27\x1d\x13\x20\x18\x10\x25\x1c\x13\x1c\x15\x0d\x1b\ +\x15\x0d\x1f\x17\x0e\x20\x18\x0f\x26\x1c\x12\x24\x1b\x11\x1f\x17\ +\x0f\x1f\x17\x0f\x1e\x17\x0e\x23\x1a\x11\x2e\x23\x16\x2d\x22\x16\ +\x26\x1d\x12\x33\x26\x19\x2a\x21\x15\x1d\x16\x0e\x1f\x17\x0f\x28\ +\x1e\x13\x26\x1c\x12\x2d\x22\x16\x32\x25\x18\x2f\x24\x17\x29\x1f\ +\x14\x27\x1e\x13\x20\x18\x0f\x2a\x20\x14\x23\x1b\x11\x27\x1d\x13\ +\x26\x1c\x12\x25\x1c\x11\x27\x1d\x13\x2a\x20\x14\x2e\x24\x17\x31\ +\x25\x17\x34\x27\x19\x2b\x20\x15\x2f\x22\x17\x39\x2a\x1c\x39\x2a\ +\x1b\x37\x29\x1a\x2c\x21\x16\x26\x1d\x12\x27\x1e\x13\x29\x1e\x14\ +\x20\x19\x10\x25\x1c\x12\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x28\ +\x1e\x13\x21\x19\x10\x2a\x1f\x14\x22\x1a\x10\x27\x1d\x12\x28\x1e\ +\x13\x24\x1b\x12\x2f\x23\x16\x36\x28\x1a\x2b\x20\x15\x29\x1e\x13\ +\x26\x1d\x13\x24\x1b\x12\x32\x26\x18\x29\x20\x14\x1e\x17\x0e\x22\ +\x19\x10\x26\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x25\x1c\x12\x29\x1f\ +\x14\x23\x1a\x11\x21\x19\x10\x21\x19\x10\x1f\x17\x0f\x1e\x18\x0e\ +\x20\x19\x0f\x26\x1c\x12\x29\x1f\x14\x34\x2a\x20\x2d\x2f\x30\x32\ +\x37\x3a\x3d\x42\x46\x46\x4c\x51\x4f\x56\x5c\x5a\x61\x68\x62\x6a\ +\x72\x65\x6f\x76\x6c\x75\x7d\x70\x7b\x82\x72\x7d\x85\x6f\x7a\x81\ +\x78\x82\x89\x74\x7e\x85\x76\x80\x87\x77\x80\x87\x76\x7f\x86\x76\ +\x7e\x84\x7b\x84\x88\x60\x68\x6d\x48\x4e\x54\x6b\x73\x78\x7e\x87\ +\x8b\x7e\x87\x8b\x80\x87\x8c\x66\x6c\x72\x4e\x54\x5c\x6e\x74\x79\ +\x47\x4d\x52\x72\x78\x7c\x00\x00\x00\x1e\x17\x0f\x39\x2b\x1d\x50\ +\x3d\x2a\x36\x28\x1a\x4b\x38\x23\x51\x3d\x27\x59\x42\x2b\x24\x1b\ +\x11\x12\x0e\x09\x11\x0d\x08\x1c\x16\x0e\x24\x1c\x11\x31\x24\x17\ +\x2a\x20\x15\x29\x1f\x14\x2c\x21\x15\x30\x24\x17\x2a\x1f\x14\x29\ +\x1e\x13\x28\x1e\x14\x29\x1e\x13\x23\x1b\x11\x1f\x17\x0f\x20\x18\ +\x0f\x1f\x18\x0f\x1a\x14\x0c\x1f\x17\x0f\x25\x1b\x12\x26\x1c\x12\ +\x2d\x22\x15\x31\x25\x17\x27\x1d\x12\x24\x1b\x12\x28\x1e\x13\x2a\ +\x1f\x15\x26\x1d\x12\x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x1e\x16\ +\x0e\x1d\x16\x0e\x1d\x16\x0e\x1e\x16\x0e\x24\x1b\x12\x21\x18\x10\ +\x22\x19\x10\x22\x1a\x10\x24\x1c\x12\x29\x1f\x14\x31\x25\x17\x36\ +\x29\x1a\x27\x1d\x13\x1f\x17\x0f\x1b\x15\x0d\x20\x18\x0f\x1a\x14\ +\x0d\x1c\x15\x0d\x24\x1b\x11\x24\x1b\x11\x22\x1a\x11\x21\x18\x10\ +\x17\x12\x0b\x1f\x18\x0f\x2c\x22\x15\x31\x25\x17\x30\x25\x17\x28\ +\x1e\x13\x25\x1b\x11\x24\x1b\x11\x22\x1a\x11\x1f\x17\x0f\x24\x1c\ +\x11\x22\x1a\x10\x23\x1a\x11\x2a\x20\x14\x29\x1f\x14\x2f\x23\x17\ +\x25\x1b\x11\x23\x1a\x10\x23\x1b\x11\x23\x1a\x11\x1b\x14\x0d\x22\ +\x1a\x11\x23\x1b\x11\x25\x1b\x11\x25\x1b\x11\x2a\x20\x15\x31\x25\ +\x18\x30\x24\x17\x31\x25\x17\x2f\x23\x16\x39\x2a\x1b\x3b\x2d\x1d\ +\x2c\x21\x15\x21\x18\x0f\x27\x1e\x13\x21\x19\x10\x20\x18\x0f\x1d\ +\x15\x0e\x22\x1a\x11\x20\x18\x0f\x23\x1a\x10\x23\x1a\x10\x20\x18\ +\x0f\x23\x1a\x11\x21\x19\x10\x27\x1d\x13\x26\x1d\x13\x2b\x21\x14\ +\x2d\x22\x16\x2f\x23\x16\x32\x25\x18\x2c\x21\x16\x21\x19\x10\x22\ +\x1a\x10\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x1e\x17\x0e\x21\x1a\ +\x10\x24\x1c\x12\x26\x1d\x12\x2a\x20\x14\x2b\x20\x14\x2c\x21\x15\ +\x29\x1f\x14\x29\x1f\x14\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x26\ +\x1c\x12\x2f\x23\x17\x2c\x23\x19\x31\x30\x2f\x32\x36\x39\x3c\x42\ +\x46\x45\x4c\x51\x4f\x56\x5d\x5a\x62\x69\x60\x6a\x71\x65\x6f\x76\ +\x6d\x77\x7f\x6f\x7a\x81\x6e\x79\x7f\x72\x7d\x84\x75\x80\x87\x77\ +\x82\x89\x77\x81\x88\x78\x80\x87\x77\x80\x87\x78\x7f\x86\x77\x7f\ +\x84\x7c\x85\x89\x5b\x61\x67\x4b\x50\x57\x6d\x75\x7a\x7e\x87\x8b\ +\x7e\x88\x8c\x7f\x87\x8b\x68\x6d\x73\x36\x3a\x40\x3b\x40\x46\x7f\ +\x8a\x8d\x00\x00\x00\x08\x07\x04\x0d\x0a\x06\x3f\x30\x20\x24\x1b\ +\x12\x4f\x3b\x26\x61\x48\x2f\x5f\x46\x2e\x35\x28\x1a\x17\x12\x0b\ +\x10\x0d\x08\x1a\x13\x0c\x24\x1b\x12\x28\x1e\x13\x2f\x24\x17\x31\ +\x25\x18\x2b\x21\x15\x26\x1d\x12\x29\x1f\x13\x2c\x21\x15\x31\x25\ +\x18\x2c\x21\x15\x24\x1b\x11\x24\x1b\x11\x22\x1a\x10\x1a\x13\x0d\ +\x17\x12\x0b\x18\x12\x0b\x1b\x15\x0d\x2a\x20\x14\x2f\x23\x16\x2b\ +\x21\x15\x36\x28\x1a\x2c\x21\x15\x31\x24\x17\x3d\x2e\x1d\x3b\x2c\ +\x1c\x2f\x24\x17\x2d\x22\x15\x2a\x20\x15\x23\x1b\x11\x20\x18\x0f\ +\x20\x18\x0f\x22\x19\x10\x25\x1b\x12\x2a\x1f\x14\x26\x1c\x12\x20\ +\x18\x10\x2a\x1f\x14\x24\x1b\x11\x30\x24\x17\x2b\x1f\x14\x26\x1c\ +\x12\x1f\x17\x0f\x21\x19\x10\x1d\x16\x0e\x20\x17\x10\x20\x18\x10\ +\x21\x19\x0f\x25\x1c\x12\x24\x1c\x12\x21\x19\x10\x1e\x17\x0e\x1e\ +\x17\x0f\x23\x1b\x11\x27\x1e\x13\x2c\x21\x15\x2e\x22\x16\x30\x24\ +\x17\x33\x26\x18\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ +\x1a\x14\x0d\x26\x1d\x12\x29\x1f\x14\x30\x24\x17\x2d\x22\x15\x24\ +\x1b\x11\x1b\x15\x0d\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x10\x26\x1d\ +\x13\x20\x18\x0f\x21\x19\x10\x26\x1d\x12\x29\x1f\x13\x2b\x20\x14\ +\x2d\x21\x16\x31\x24\x18\x37\x2a\x1b\x31\x24\x18\x2c\x21\x15\x2c\ +\x20\x15\x22\x1a\x10\x1f\x17\x0f\x20\x18\x10\x1d\x15\x0d\x22\x19\ +\x10\x1c\x15\x0e\x1e\x16\x0e\x1f\x18\x0f\x24\x1b\x11\x26\x1c\x12\ +\x27\x1d\x13\x2d\x22\x15\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x2b\ +\x21\x15\x2d\x22\x16\x2d\x22\x16\x2b\x20\x14\x23\x1a\x11\x1b\x14\ +\x0d\x22\x1a\x10\x20\x19\x10\x1c\x15\x0d\x1f\x17\x0e\x21\x19\x0f\ +\x23\x1a\x11\x2b\x21\x15\x28\x1e\x13\x27\x1d\x12\x26\x1c\x12\x1e\ +\x17\x0f\x27\x1e\x13\x2b\x20\x15\x2d\x22\x15\x2a\x1f\x14\x25\x1c\ +\x12\x2a\x22\x18\x31\x2f\x2c\x31\x35\x38\x3a\x40\x44\x46\x4c\x51\ +\x50\x57\x5d\x58\x60\x67\x60\x69\x71\x66\x70\x78\x6c\x75\x7e\x6c\ +\x77\x7f\x6e\x79\x80\x70\x7b\x83\x75\x80\x87\x76\x81\x88\x77\x81\ +\x89\x78\x82\x89\x78\x81\x88\x78\x80\x87\x78\x81\x87\x77\x82\x86\ +\x79\x82\x86\x56\x5d\x62\x4d\x53\x58\x70\x78\x7d\x7e\x87\x8b\x7e\ +\x86\x8a\x7c\x82\x87\x33\x37\x3c\x3f\x41\x46\x70\x78\x7c\x00\x00\ +\x00\x11\x0d\x08\x01\x01\x00\x2d\x22\x16\x24\x1b\x11\x54\x3e\x28\ +\x64\x4b\x31\x56\x40\x2a\x25\x1c\x12\x18\x12\x0c\x1b\x13\x0c\x1b\ +\x15\x0d\x23\x1a\x10\x23\x1a\x11\x28\x1e\x13\x28\x1e\x13\x26\x1d\ +\x13\x1f\x18\x0f\x22\x19\x10\x2c\x21\x15\x2d\x22\x15\x2a\x20\x14\ +\x26\x1c\x12\x25\x1c\x12\x27\x1d\x13\x20\x18\x0f\x1a\x13\x0c\x1c\ +\x15\x0d\x20\x18\x0f\x2e\x23\x16\x37\x29\x1b\x35\x28\x1a\x2d\x22\ +\x16\x28\x1e\x13\x2e\x22\x16\x2b\x20\x15\x2d\x21\x15\x35\x27\x19\ +\x34\x27\x19\x32\x25\x18\x25\x1c\x12\x1e\x16\x0e\x1c\x15\x0d\x1d\ +\x16\x0e\x20\x19\x0f\x26\x1d\x12\x23\x1b\x11\x1c\x15\x0e\x23\x1a\ +\x11\x22\x1a\x10\x22\x1a\x10\x24\x1b\x10\x2a\x20\x15\x2e\x22\x16\ +\x27\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1e\x16\x0e\x1d\x15\x0d\x25\ +\x1c\x12\x28\x1d\x13\x1e\x17\x0e\x20\x18\x0f\x19\x13\x0c\x1f\x17\ +\x0f\x22\x1a\x10\x25\x1c\x11\x29\x1e\x14\x2f\x23\x17\x37\x29\x1a\ +\x32\x26\x18\x28\x1e\x13\x27\x1e\x13\x21\x19\x10\x23\x1b\x11\x22\ +\x19\x10\x2b\x21\x15\x32\x26\x18\x30\x24\x17\x24\x1b\x11\x25\x1c\ +\x12\x21\x19\x10\x26\x1c\x12\x20\x19\x0f\x23\x19\x10\x1e\x16\x0f\ +\x1f\x18\x0f\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x2b\x20\x15\x2b\ +\x20\x15\x2d\x22\x16\x2c\x22\x15\x30\x23\x17\x2a\x1f\x14\x27\x1d\ +\x13\x29\x1e\x14\x26\x1c\x12\x21\x19\x0f\x21\x19\x0f\x1e\x17\x0f\ +\x20\x18\x0f\x22\x19\x10\x22\x1b\x10\x2c\x21\x15\x24\x1b\x11\x27\ +\x1d\x13\x21\x19\x10\x24\x1b\x11\x1c\x16\x0e\x1c\x15\x0e\x24\x1a\ +\x11\x29\x1f\x14\x2e\x23\x17\x27\x1e\x13\x21\x19\x0f\x28\x1e\x13\ +\x2e\x23\x16\x27\x1d\x12\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\x22\ +\x1a\x10\x22\x1a\x10\x23\x1b\x11\x1d\x15\x0d\x1c\x16\x0e\x1e\x17\ +\x0e\x29\x1e\x14\x33\x27\x19\x31\x24\x17\x31\x24\x18\x2e\x23\x19\ +\x39\x35\x2f\x2f\x34\x37\x39\x3f\x43\x45\x4b\x50\x4f\x57\x5c\x58\ +\x61\x67\x5e\x67\x6f\x66\x70\x78\x6b\x75\x7d\x6d\x78\x7f\x72\x7c\ +\x84\x72\x7d\x85\x74\x7f\x86\x76\x7f\x88\x77\x81\x89\x75\x7f\x86\ +\x78\x82\x89\x77\x81\x89\x7a\x84\x8b\x7b\x85\x8a\x7a\x84\x88\x7c\ +\x84\x88\x61\x66\x6b\x4c\x52\x58\x6e\x76\x7b\x83\x8d\x91\x73\x79\ +\x7e\x41\x47\x4c\x6b\x71\x75\x59\x5d\x60\x00\x00\x00\x1c\x15\x0d\ +\x0b\x08\x05\x33\x27\x19\x2b\x20\x15\x55\x40\x2a\x6e\x51\x35\x54\ +\x3e\x28\x2e\x22\x16\x1b\x14\x0c\x12\x0d\x09\x1d\x15\x0e\x22\x1a\ +\x10\x24\x1c\x12\x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x22\x1a\x10\ +\x21\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\x25\ +\x1b\x12\x30\x24\x17\x25\x1c\x11\x1b\x15\x0d\x15\x10\x0a\x1a\x14\ +\x0d\x2d\x21\x15\x2b\x1f\x15\x2f\x23\x17\x2a\x1f\x14\x26\x1d\x12\ +\x25\x1d\x12\x25\x1c\x12\x27\x1d\x13\x2c\x21\x15\x2c\x21\x15\x2a\ +\x1f\x14\x27\x1d\x12\x26\x1d\x12\x23\x1a\x11\x26\x1c\x12\x25\x1c\ +\x12\x1f\x18\x0f\x23\x1a\x11\x22\x1a\x10\x26\x1d\x12\x23\x1b\x11\ +\x27\x1d\x12\x2b\x20\x14\x2f\x23\x16\x32\x25\x18\x33\x26\x18\x26\ +\x1c\x12\x24\x1b\x11\x22\x19\x10\x28\x1e\x13\x25\x1c\x12\x25\x1c\ +\x11\x2b\x20\x14\x26\x1d\x12\x20\x19\x0f\x1f\x17\x0f\x22\x1a\x11\ +\x24\x1c\x12\x26\x1d\x12\x2b\x20\x15\x30\x24\x17\x2e\x23\x16\x32\ +\x26\x18\x2a\x1f\x14\x24\x1b\x11\x23\x1b\x11\x20\x18\x0f\x24\x1b\ +\x11\x28\x1e\x14\x28\x1e\x14\x27\x1d\x13\x24\x1c\x11\x26\x1d\x13\ +\x24\x1b\x11\x24\x1c\x11\x2c\x20\x15\x29\x1f\x13\x26\x1c\x12\x27\ +\x1d\x13\x27\x1d\x13\x27\x1d\x13\x2e\x23\x16\x30\x24\x17\x30\x23\ +\x17\x38\x29\x1b\x33\x26\x18\x32\x25\x18\x2a\x20\x15\x2f\x23\x16\ +\x2e\x23\x16\x2f\x23\x16\x2b\x21\x15\x20\x18\x0f\x27\x1d\x13\x24\ +\x1b\x11\x27\x1e\x13\x2b\x20\x15\x27\x1d\x13\x27\x1e\x13\x27\x1e\ +\x13\x30\x24\x17\x30\x24\x17\x2e\x23\x16\x25\x1c\x12\x21\x19\x10\ +\x2c\x21\x15\x2b\x20\x15\x25\x1b\x11\x2a\x20\x14\x28\x1e\x14\x28\ +\x1e\x13\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x1f\x17\x0f\x1d\x16\ +\x0e\x24\x1b\x11\x21\x19\x10\x1f\x18\x0f\x21\x19\x10\x29\x1f\x14\ +\x2d\x22\x16\x35\x28\x1a\x3a\x2b\x1c\x30\x25\x1a\x2b\x29\x26\x2f\ +\x34\x37\x39\x3e\x42\x43\x49\x4e\x4d\x55\x5a\x58\x60\x67\x5f\x68\ +\x6f\x69\x72\x79\x6a\x73\x7c\x6e\x78\x80\x74\x7d\x85\x74\x7e\x87\ +\x75\x7f\x86\x74\x7e\x86\x78\x83\x8a\x78\x82\x89\x79\x83\x8a\x77\ +\x82\x89\x78\x83\x89\x7c\x86\x8c\x7b\x85\x8b\x7b\x84\x88\x7d\x85\ +\x8a\x5f\x65\x6a\x4e\x53\x5a\x73\x7a\x7f\x59\x5f\x65\x63\x6a\x6f\ +\x83\x8d\x91\x6e\x75\x78\x00\x00\x00\x0f\x0b\x07\x00\x00\x00\x21\ +\x19\x10\x25\x1b\x11\x53\x3f\x29\x6a\x4f\x34\x5c\x44\x2c\x32\x26\ +\x18\x23\x1a\x11\x20\x18\x0f\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\ +\x24\x1b\x12\x26\x1c\x11\x23\x1a\x11\x1e\x17\x0e\x1b\x14\x0d\x21\ +\x19\x10\x23\x1b\x11\x24\x1b\x12\x27\x1d\x13\x26\x1c\x12\x2a\x20\ +\x14\x25\x1c\x11\x26\x1c\x12\x1d\x16\x0e\x20\x19\x10\x28\x1e\x13\ +\x33\x26\x19\x2d\x22\x16\x2d\x22\x16\x26\x1d\x13\x1c\x16\x0e\x1d\ +\x15\x0e\x26\x1d\x12\x2a\x1f\x14\x2f\x23\x16\x23\x1a\x11\x29\x1f\ +\x13\x2a\x20\x14\x28\x1e\x13\x26\x1d\x12\x22\x1a\x10\x24\x1b\x11\ +\x22\x19\x10\x24\x1b\x11\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x28\ +\x1d\x13\x28\x1e\x13\x2e\x22\x16\x31\x24\x17\x25\x1c\x12\x2b\x20\ +\x15\x25\x1c\x12\x2f\x23\x16\x2b\x20\x14\x26\x1d\x12\x2e\x23\x16\ +\x25\x1c\x12\x28\x1e\x13\x24\x1b\x11\x23\x1a\x11\x25\x1c\x12\x27\ +\x1d\x13\x2a\x1f\x14\x31\x25\x17\x35\x28\x19\x37\x2a\x1a\x34\x27\ +\x19\x30\x24\x17\x28\x1e\x14\x21\x19\x10\x25\x1b\x12\x2c\x21\x15\ +\x23\x1b\x11\x1e\x17\x0e\x28\x1e\x13\x2a\x1f\x14\x2a\x1f\x14\x2f\ +\x23\x16\x30\x24\x17\x28\x1f\x13\x26\x1c\x12\x29\x1f\x14\x2c\x22\ +\x16\x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x2f\x23\x16\x37\x29\x1a\ +\x30\x24\x17\x39\x2b\x1c\x33\x27\x18\x2f\x23\x17\x33\x26\x18\x2b\ +\x21\x15\x2d\x22\x16\x22\x19\x10\x27\x1d\x13\x1e\x16\x0e\x24\x1b\ +\x11\x27\x1d\x13\x21\x19\x10\x21\x19\x10\x22\x1a\x10\x23\x1a\x11\ +\x21\x19\x10\x26\x1c\x12\x2b\x20\x15\x2a\x20\x14\x2c\x22\x15\x29\ +\x1f\x14\x22\x1a\x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x28\x1f\ +\x14\x29\x1e\x13\x33\x26\x19\x2e\x22\x16\x2b\x20\x15\x28\x1f\x13\ +\x28\x1e\x13\x24\x1b\x11\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x38\ +\x2a\x1b\x47\x35\x22\x4a\x38\x26\x28\x26\x23\x2f\x34\x36\x38\x3e\ +\x41\x43\x49\x4e\x4d\x55\x5a\x56\x5e\x64\x5e\x68\x6f\x67\x70\x78\ +\x6a\x73\x7d\x6e\x78\x81\x72\x7b\x84\x74\x7d\x86\x75\x7f\x86\x41\ +\x48\x4d\x52\x59\x60\x7f\x89\x90\x7a\x84\x8b\x79\x83\x8a\x7a\x84\ +\x8a\x7b\x85\x8b\x7b\x86\x8c\x7c\x87\x8b\x7f\x88\x8c\x7e\x86\x8a\ +\x68\x6e\x74\x4b\x50\x55\x35\x38\x3d\x80\x88\x8d\x7f\x88\x8c\x81\ +\x8a\x8d\x00\x00\x00\x15\x10\x09\x01\x00\x00\x26\x1d\x14\x29\x1f\ +\x14\x44\x33\x21\x61\x49\x30\x64\x4b\x31\x2b\x21\x16\x2a\x1f\x14\ +\x30\x25\x18\x33\x27\x19\x2c\x21\x15\x29\x1f\x14\x20\x18\x0f\x22\ +\x1a\x10\x24\x1b\x11\x24\x1b\x11\x20\x18\x0f\x1e\x16\x0e\x20\x18\ +\x0f\x26\x1d\x12\x27\x1d\x12\x29\x1e\x14\x29\x1e\x14\x27\x1d\x12\ +\x27\x1d\x13\x20\x18\x0f\x20\x18\x0f\x27\x1d\x12\x2d\x22\x16\x2f\ +\x23\x17\x29\x1f\x14\x23\x1a\x11\x23\x1a\x11\x23\x1a\x11\x1e\x16\ +\x0e\x1e\x16\x0e\x25\x1c\x11\x28\x1e\x13\x2b\x20\x14\x2c\x21\x15\ +\x2f\x24\x17\x31\x24\x17\x25\x1c\x11\x24\x1b\x11\x20\x18\x0f\x23\ +\x1a\x10\x22\x19\x10\x23\x1a\x10\x22\x19\x10\x1e\x16\x0e\x22\x1a\ +\x10\x25\x1b\x11\x23\x1b\x11\x1e\x16\x0e\x21\x19\x10\x1e\x16\x0e\ +\x20\x19\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x2c\x21\x15\x28\ +\x1e\x14\x24\x1c\x11\x20\x18\x0f\x20\x18\x0f\x1f\x17\x0f\x24\x1b\ +\x11\x28\x1e\x13\x32\x26\x18\x34\x27\x19\x38\x2b\x1b\x31\x25\x18\ +\x2d\x21\x16\x1b\x14\x0d\x27\x1e\x13\x29\x1e\x13\x24\x1b\x11\x1e\ +\x16\x0e\x26\x1c\x12\x2c\x21\x15\x2a\x1f\x13\x2f\x23\x16\x2e\x23\ +\x16\x2d\x21\x16\x28\x1e\x13\x28\x1e\x13\x2d\x22\x16\x2d\x21\x16\ +\x34\x27\x19\x34\x27\x1a\x35\x28\x1a\x39\x2a\x1b\x31\x24\x17\x2a\ +\x1f\x14\x26\x1c\x12\x29\x1f\x14\x2c\x21\x15\x2d\x22\x16\x27\x1d\ +\x13\x2d\x22\x16\x24\x1a\x10\x1d\x16\x0e\x1f\x17\x0f\x21\x19\x10\ +\x1b\x14\x0d\x1b\x14\x0c\x16\x11\x0b\x1d\x15\x0d\x1a\x14\x0d\x22\ +\x19\x11\x2d\x22\x16\x26\x1d\x12\x26\x1d\x13\x2b\x20\x15\x27\x1e\ +\x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x28\x1e\x13\x31\x25\x17\ +\x38\x29\x1b\x2e\x22\x16\x2e\x23\x17\x2d\x22\x15\x29\x1e\x13\x26\ +\x1c\x12\x22\x1a\x11\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x3b\x2c\ +\x1c\x3a\x2c\x1d\x2f\x2a\x25\x2f\x33\x36\x3a\x3f\x41\x41\x48\x4c\ +\x4c\x53\x59\x57\x5f\x65\x5e\x67\x6e\x65\x6f\x75\x6b\x73\x7c\x6f\ +\x78\x81\x72\x7b\x84\x72\x7c\x85\x6c\x75\x7c\x29\x2c\x2f\x42\x47\ +\x49\x5a\x61\x67\x7f\x8a\x91\x7a\x85\x8b\x7b\x85\x8c\x7b\x85\x8b\ +\x7c\x85\x8c\x7e\x89\x8f\x80\x89\x8e\x7e\x87\x8b\x84\x8d\x93\x47\ +\x4c\x50\x28\x2a\x2e\x6c\x73\x78\x81\x89\x8c\x81\x8b\x8e\x00\x00\ +\x00\x1a\x14\x0c\x00\x00\x00\x2a\x20\x16\x28\x1e\x14\x3a\x2c\x1c\ +\x5f\x47\x2e\x5b\x44\x2b\x29\x1f\x14\x1a\x13\x0d\x1f\x17\x0f\x2c\ +\x21\x15\x2c\x21\x15\x2c\x22\x16\x25\x1b\x12\x27\x1d\x12\x21\x19\ +\x10\x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x1e\x16\x0e\x1f\x17\x0f\ +\x1d\x16\x0e\x20\x18\x0f\x26\x1c\x13\x23\x1a\x11\x26\x1d\x13\x22\ +\x1a\x10\x1b\x15\x0d\x21\x19\x10\x32\x26\x18\x2e\x23\x16\x2a\x1f\ +\x14\x1f\x17\x0f\x1d\x16\x0e\x28\x1e\x14\x1d\x16\x0e\x1b\x14\x0c\ +\x20\x18\x0f\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\x2b\x20\x14\x2c\ +\x21\x15\x27\x1d\x12\x22\x1a\x10\x23\x1b\x11\x27\x1e\x13\x27\x1d\ +\x13\x2d\x22\x16\x2b\x20\x15\x26\x1d\x12\x25\x1c\x12\x24\x1c\x11\ +\x20\x18\x0f\x18\x12\x0b\x1e\x16\x0f\x21\x19\x10\x23\x19\x10\x25\ +\x1c\x12\x25\x1c\x11\x2a\x20\x14\x33\x26\x18\x31\x24\x17\x28\x1d\ +\x13\x28\x1e\x13\x25\x1c\x12\x24\x1b\x12\x27\x1e\x13\x2b\x21\x15\ +\x31\x25\x18\x35\x27\x19\x3a\x2c\x1c\x34\x28\x19\x28\x1e\x13\x1f\ +\x18\x0f\x33\x26\x18\x2b\x20\x15\x2a\x1f\x14\x23\x1b\x11\x27\x1c\ +\x12\x22\x19\x10\x28\x1e\x13\x2a\x20\x14\x26\x1d\x12\x27\x1d\x13\ +\x2c\x22\x15\x2a\x20\x14\x22\x19\x11\x20\x18\x10\x27\x1e\x13\x27\ +\x1d\x13\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x20\x18\x0f\x21\x18\ +\x10\x25\x1c\x11\x29\x1f\x13\x2f\x23\x17\x2a\x1f\x14\x34\x27\x19\ +\x30\x24\x16\x30\x24\x17\x26\x1c\x12\x26\x1d\x12\x20\x18\x0f\x1b\ +\x15\x0d\x1c\x15\x0e\x1c\x15\x0e\x1a\x13\x0d\x21\x18\x10\x28\x1e\ +\x13\x24\x1b\x11\x22\x1a\x11\x25\x1c\x11\x27\x1d\x12\x26\x1c\x11\ +\x1f\x17\x0e\x1a\x14\x0d\x24\x1b\x11\x26\x1c\x12\x31\x24\x18\x2a\ +\x20\x14\x25\x1c\x12\x24\x1c\x12\x24\x1b\x11\x22\x1a\x11\x1e\x16\ +\x0e\x20\x18\x10\x22\x1a\x10\x25\x1b\x12\x2e\x22\x16\x39\x2b\x1c\ +\x3f\x36\x2b\x2e\x32\x35\x3a\x3e\x41\x41\x47\x4c\x4a\x52\x57\x56\ +\x5d\x64\x5f\x67\x6f\x65\x6e\x75\x6a\x74\x7b\x70\x79\x82\x73\x7c\ +\x85\x74\x7e\x85\x49\x4f\x55\x5b\x61\x65\x66\x6d\x6f\x3c\x42\x46\ +\x61\x69\x70\x7f\x89\x90\x7b\x85\x8c\x7c\x86\x8d\x7c\x85\x8c\x7e\ +\x86\x8d\x7f\x88\x8e\x7f\x88\x8c\x81\x8a\x8e\x43\x48\x4d\x66\x6a\ +\x6e\x58\x5c\x61\x68\x6c\x72\x84\x8c\x8f\x00\x00\x00\x1a\x14\x0d\ +\x00\x00\x00\x1c\x16\x0e\x28\x1e\x14\x2d\x22\x16\x59\x43\x2c\x44\ +\x33\x21\x27\x1d\x13\x19\x13\x0c\x1b\x15\x0d\x29\x1f\x14\x2a\x20\ +\x14\x31\x25\x18\x2a\x20\x14\x22\x19\x10\x21\x19\x10\x23\x1b\x11\ +\x1c\x15\x0e\x19\x13\x0c\x23\x1b\x10\x21\x19\x10\x1b\x15\x0d\x20\ +\x18\x0f\x22\x19\x11\x27\x1e\x13\x2b\x20\x14\x29\x1f\x14\x24\x1c\ +\x11\x21\x1a\x10\x32\x26\x18\x30\x24\x17\x27\x1d\x12\x1e\x17\x0e\ +\x15\x10\x0a\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0d\x1e\x17\x0e\x20\ +\x18\x0f\x22\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x28\x1f\ +\x13\x25\x1c\x12\x25\x1c\x12\x2d\x22\x16\x2d\x21\x16\x2e\x23\x16\ +\x32\x25\x18\x31\x25\x18\x27\x1e\x13\x22\x1a\x10\x26\x1c\x12\x26\ +\x1d\x12\x26\x1d\x12\x29\x1f\x14\x26\x1d\x12\x20\x19\x10\x23\x1b\ +\x11\x29\x1f\x14\x2f\x23\x16\x30\x23\x17\x2c\x21\x16\x2f\x23\x17\ +\x28\x1e\x14\x24\x1b\x12\x26\x1c\x12\x2d\x22\x16\x30\x24\x17\x35\ +\x27\x19\x36\x29\x1a\x33\x26\x18\x28\x1f\x13\x21\x18\x0f\x2c\x21\ +\x15\x32\x25\x18\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x1e\x16\x0f\ +\x27\x1d\x13\x29\x1f\x14\x25\x1c\x12\x2c\x21\x15\x2f\x23\x16\x30\ +\x24\x17\x26\x1c\x12\x20\x18\x0f\x22\x1a\x11\x25\x1c\x12\x2b\x21\ +\x14\x29\x1f\x13\x22\x1a\x10\x23\x1a\x11\x24\x1a\x11\x28\x1e\x13\ +\x28\x1e\x13\x24\x1b\x11\x2a\x1f\x14\x32\x25\x18\x31\x25\x17\x36\ +\x28\x1a\x31\x25\x17\x2e\x23\x16\x27\x1e\x13\x1f\x17\x0f\x1f\x17\ +\x0f\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x1f\x17\x0e\x18\x12\x0b\ +\x1b\x15\x0d\x1a\x13\x0c\x1d\x15\x0e\x21\x18\x0f\x20\x18\x0f\x19\ +\x13\x0c\x1e\x16\x0e\x23\x1a\x11\x30\x24\x17\x2d\x22\x16\x27\x1d\ +\x12\x24\x1b\x11\x24\x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1b\x11\ +\x22\x1a\x10\x22\x19\x10\x26\x1c\x12\x36\x29\x1b\x42\x37\x2b\x2d\ +\x31\x33\x36\x3b\x3f\x40\x45\x4b\x4b\x51\x57\x56\x5e\x64\x5f\x67\ +\x6d\x63\x6b\x72\x6c\x74\x7d\x70\x79\x81\x72\x7c\x82\x7b\x84\x8b\ +\x13\x16\x19\x5f\x67\x6c\x80\x8c\x90\x57\x5d\x61\x1c\x1f\x23\x67\ +\x6f\x75\x80\x8a\x90\x7e\x88\x8f\x7d\x87\x8e\x7e\x86\x8d\x80\x88\ +\x8e\x82\x8a\x8f\x6a\x71\x74\x47\x4b\x50\x82\x88\x8c\x75\x79\x7e\ +\x50\x53\x5a\x69\x6d\x72\x00\x00\x00\x1d\x16\x0e\x00\x00\x00\x19\ +\x13\x0c\x2c\x21\x16\x25\x1c\x12\x4a\x37\x24\x3b\x2c\x1c\x2e\x23\ +\x16\x11\x0d\x08\x18\x12\x0c\x28\x1d\x13\x28\x1e\x13\x31\x25\x17\ +\x2b\x20\x15\x27\x1e\x13\x26\x1d\x12\x24\x1b\x11\x21\x1a\x10\x1b\ +\x15\x0d\x1f\x18\x0f\x23\x1b\x11\x24\x1b\x11\x20\x18\x0f\x22\x19\ +\x10\x27\x1d\x12\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x20\x18\x10\ +\x2b\x21\x16\x32\x26\x18\x2e\x22\x16\x25\x1b\x11\x16\x11\x0a\x16\ +\x11\x0b\x1b\x14\x0d\x1d\x16\x0e\x19\x13\x0c\x1a\x13\x0d\x1c\x15\ +\x0d\x1b\x15\x0d\x1c\x16\x0e\x20\x18\x0f\x1f\x18\x0f\x1f\x18\x0f\ +\x22\x1a\x11\x2a\x1f\x14\x2d\x22\x15\x2d\x21\x16\x30\x24\x17\x32\ +\x25\x18\x2f\x24\x17\x28\x1f\x13\x26\x1c\x12\x2e\x22\x16\x2d\x21\ +\x15\x2d\x21\x15\x2d\x22\x16\x1e\x17\x0f\x20\x19\x0f\x23\x1a\x11\ +\x28\x1e\x14\x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x22\ +\x19\x10\x21\x19\x10\x2c\x20\x15\x30\x24\x17\x30\x24\x17\x33\x26\ +\x19\x30\x24\x17\x2a\x20\x14\x21\x19\x0f\x25\x1c\x12\x31\x24\x17\ +\x2f\x23\x16\x2d\x21\x15\x27\x1d\x13\x1d\x16\x0e\x21\x19\x10\x23\ +\x1a\x11\x25\x1c\x12\x29\x1e\x13\x29\x1f\x14\x28\x1e\x13\x23\x1b\ +\x11\x25\x1c\x12\x20\x18\x0f\x1d\x16\x0e\x23\x1b\x11\x22\x1a\x10\ +\x1e\x16\x0e\x1e\x16\x0e\x29\x1f\x14\x2b\x20\x15\x24\x1b\x11\x22\ +\x1a\x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x16\x30\x24\x17\x32\x26\ +\x18\x39\x2b\x1c\x2f\x23\x17\x29\x1e\x13\x23\x1a\x11\x23\x1a\x11\ +\x20\x18\x10\x1e\x16\x0e\x16\x10\x0a\x15\x10\x0a\x1d\x16\x0e\x18\ +\x12\x0c\x18\x12\x0c\x22\x1a\x11\x1e\x17\x0e\x17\x12\x0b\x19\x12\ +\x0b\x23\x1a\x11\x2c\x21\x15\x30\x23\x17\x2c\x21\x15\x26\x1d\x12\ +\x29\x1f\x13\x2a\x1f\x14\x2a\x1f\x14\x27\x1e\x13\x28\x1e\x13\x2a\ +\x1f\x14\x23\x1b\x11\x43\x32\x21\x4a\x3c\x2d\x2d\x30\x33\x36\x39\ +\x3e\x40\x45\x4a\x4b\x51\x57\x54\x5b\x61\x5e\x66\x6d\x65\x6e\x76\ +\x69\x72\x7a\x6e\x78\x80\x75\x7e\x85\x59\x62\x68\x38\x3d\x40\x31\ +\x38\x3c\x69\x73\x79\x5e\x64\x6a\x34\x35\x39\x48\x4b\x52\x68\x70\ +\x77\x80\x8b\x92\x7d\x87\x8e\x7e\x86\x8d\x83\x8a\x91\x86\x8f\x93\ +\x49\x50\x56\x6c\x70\x76\x81\x87\x8b\x82\x89\x8c\x76\x79\x7f\x57\ +\x59\x60\x00\x00\x00\x29\x1f\x14\x00\x00\x00\x13\x0e\x0a\x2e\x23\ +\x16\x21\x18\x10\x3c\x2c\x1d\x37\x29\x1a\x37\x29\x1a\x0f\x0c\x07\ +\x18\x12\x0b\x26\x1d\x12\x2c\x21\x15\x37\x29\x1a\x34\x27\x19\x35\ +\x28\x19\x30\x24\x17\x2b\x20\x15\x2b\x20\x15\x20\x19\x0f\x1d\x16\ +\x0e\x20\x18\x0f\x22\x1a\x10\x1b\x14\x0d\x1e\x16\x0e\x1e\x17\x0f\ +\x1a\x14\x0c\x1f\x18\x0f\x20\x19\x0f\x1c\x15\x0d\x22\x19\x10\x24\ +\x1b\x11\x2a\x1f\x14\x28\x1d\x13\x20\x18\x0f\x16\x11\x0a\x20\x18\ +\x0f\x1e\x16\x0e\x21\x18\x0f\x24\x1b\x11\x24\x1b\x11\x1f\x18\x0f\ +\x1b\x14\x0d\x1b\x14\x0c\x16\x10\x0a\x12\x0e\x09\x13\x0e\x09\x1b\ +\x15\x0c\x27\x1d\x13\x31\x25\x18\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\ +\x18\x2e\x22\x16\x25\x1c\x12\x27\x1d\x13\x2c\x20\x15\x31\x25\x17\ +\x2e\x22\x16\x27\x1e\x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x26\ +\x1d\x12\x29\x1f\x14\x26\x1c\x12\x2b\x20\x14\x29\x1f\x14\x27\x1d\ +\x13\x28\x1e\x13\x2e\x22\x16\x2e\x23\x17\x35\x28\x19\x32\x25\x18\ +\x28\x1e\x13\x1f\x18\x0f\x20\x18\x10\x24\x1b\x11\x26\x1d\x12\x2b\ +\x20\x15\x2d\x21\x16\x20\x18\x0f\x1b\x14\x0d\x20\x18\x10\x27\x1e\ +\x13\x29\x1f\x13\x27\x1e\x12\x20\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ +\x27\x1d\x13\x1e\x17\x0f\x1d\x17\x0e\x21\x19\x10\x22\x19\x10\x21\ +\x19\x10\x2d\x22\x16\x2c\x21\x15\x29\x1f\x14\x23\x1a\x11\x28\x1e\ +\x13\x2e\x23\x17\x2e\x22\x16\x2f\x23\x16\x3b\x2c\x1c\x3d\x2e\x1d\ +\x32\x26\x18\x29\x1f\x14\x1c\x15\x0e\x20\x18\x0f\x1f\x17\x0f\x1b\ +\x14\x0d\x17\x11\x0b\x19\x13\x0c\x1f\x17\x0f\x1c\x15\x0d\x17\x12\ +\x0b\x27\x1d\x13\x24\x1b\x11\x1d\x17\x0e\x1d\x16\x0e\x1f\x17\x0f\ +\x25\x1b\x11\x33\x26\x19\x24\x1b\x11\x24\x1b\x12\x2a\x1f\x14\x25\ +\x1c\x11\x2b\x20\x14\x36\x29\x1a\x27\x1d\x12\x41\x31\x20\x44\x34\ +\x22\x3f\x30\x20\x4e\x3e\x2e\x2b\x2e\x31\x33\x38\x3b\x3e\x43\x47\ +\x48\x4f\x54\x54\x5a\x60\x5d\x65\x6b\x65\x6d\x74\x6b\x73\x7c\x6f\ +\x79\x82\x77\x81\x88\x2f\x35\x39\x76\x7f\x83\x67\x6f\x75\x24\x28\ +\x2f\x37\x3a\x3f\x76\x7d\x81\x5c\x62\x66\x3c\x40\x46\x6b\x74\x7a\ +\x80\x8a\x91\x7f\x88\x8f\x81\x8a\x92\x79\x82\x88\x40\x46\x4d\x7e\ +\x85\x8c\x82\x89\x8d\x85\x8c\x90\x82\x88\x8b\x7a\x7d\x81\x00\x00\ +\x00\x30\x23\x16\x00\x00\x00\x1c\x15\x0e\x3e\x2f\x1f\x26\x1d\x12\ +\x3d\x2e\x1e\x36\x28\x19\x33\x27\x19\x11\x0d\x08\x16\x10\x0b\x21\ +\x18\x10\x2f\x23\x16\x33\x26\x19\x35\x28\x19\x36\x28\x1a\x30\x24\ +\x17\x32\x25\x18\x2c\x21\x15\x25\x1b\x11\x1b\x14\x0d\x1e\x17\x0e\ +\x19\x13\x0c\x1d\x16\x0e\x1c\x15\x0d\x17\x11\x0b\x16\x11\x0a\x1a\ +\x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x25\x1c\x12\x1d\x15\x0d\x25\x1c\ +\x12\x23\x1a\x11\x15\x10\x0a\x0f\x0b\x07\x15\x10\x0a\x1a\x13\x0c\ +\x1e\x17\x0e\x2a\x1f\x14\x30\x24\x18\x3b\x2d\x1e\x41\x32\x22\x44\ +\x34\x23\x46\x36\x24\x45\x35\x24\x48\x37\x25\x3a\x2c\x1d\x29\x1f\ +\x14\x2f\x23\x16\x3b\x2c\x1c\x3a\x2b\x1c\x33\x26\x19\x2e\x22\x16\ +\x28\x1e\x14\x27\x1d\x13\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x37\ +\x29\x1a\x29\x1f\x15\x21\x19\x10\x1e\x16\x0e\x23\x1b\x11\x26\x1d\ +\x12\x25\x1c\x11\x29\x1f\x14\x32\x26\x18\x2f\x24\x17\x26\x1d\x13\ +\x2d\x22\x16\x35\x27\x19\x39\x2a\x1b\x35\x28\x1a\x26\x1d\x12\x1e\ +\x17\x0e\x1e\x16\x0e\x21\x18\x10\x21\x18\x0f\x25\x1c\x12\x2b\x21\ +\x15\x28\x1e\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x26\x1c\x12\ +\x24\x1b\x12\x21\x19\x10\x21\x19\x10\x24\x1c\x12\x2a\x20\x14\x23\ +\x1b\x11\x19\x14\x0c\x19\x13\x0c\x26\x1d\x12\x2a\x20\x14\x29\x1f\ +\x14\x23\x1a\x11\x28\x1d\x13\x24\x1b\x11\x1d\x16\x0e\x23\x19\x11\ +\x30\x24\x17\x27\x1e\x13\x2f\x23\x17\x34\x28\x19\x38\x2a\x1b\x2e\ +\x23\x16\x26\x1d\x12\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x23\x1a\ +\x11\x1e\x17\x0f\x1e\x16\x0e\x1f\x18\x0f\x20\x19\x0f\x22\x1a\x10\ +\x27\x1e\x13\x23\x1b\x11\x20\x18\x0f\x1f\x17\x0f\x20\x17\x0f\x29\ +\x1f\x14\x23\x1a\x11\x1f\x17\x0f\x20\x17\x0f\x20\x18\x0f\x28\x1e\ +\x13\x33\x27\x19\x30\x24\x17\x4a\x38\x25\x43\x32\x21\x2b\x21\x15\ +\x3d\x32\x25\x2e\x30\x31\x33\x38\x3c\x40\x45\x48\x4a\x50\x55\x54\ +\x5b\x62\x5e\x66\x6c\x63\x6c\x73\x6d\x75\x7d\x71\x7b\x84\x6d\x78\ +\x80\x0b\x0d\x10\x78\x81\x87\x7b\x85\x8c\x55\x5b\x5f\x14\x15\x17\ +\x76\x7e\x81\x84\x8d\x91\x43\x47\x4b\x2a\x2f\x34\x72\x7c\x82\x82\ +\x8c\x93\x85\x8d\x95\x54\x58\x61\x65\x6a\x70\x80\x89\x8e\x84\x8d\ +\x91\x88\x90\x94\x81\x88\x8c\x83\x89\x8d\x00\x00\x00\x36\x2a\x1d\ +\x00\x00\x00\x10\x0d\x08\x45\x35\x23\x24\x1b\x11\x38\x2a\x1b\x3d\ +\x2d\x1d\x35\x28\x19\x10\x0c\x08\x10\x0c\x08\x1b\x15\x0d\x2a\x20\ +\x14\x23\x1a\x11\x28\x1e\x13\x2d\x22\x16\x29\x20\x14\x2f\x23\x16\ +\x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\x1b\x15\x0d\x19\x13\x0c\x18\ +\x12\x0b\x14\x0e\x0a\x13\x0e\x09\x13\x0f\x09\x14\x10\x0a\x26\x1c\ +\x13\x41\x32\x22\x3a\x2c\x1d\x3c\x2e\x1e\x48\x36\x24\x4d\x3b\x27\ +\x41\x31\x21\x3a\x2c\x1d\x33\x26\x19\x3e\x2f\x1e\x3a\x2c\x1d\x37\ +\x2a\x1b\x3a\x2c\x1d\x3c\x2d\x1e\x3f\x2f\x1f\x3a\x2c\x1c\x37\x29\ +\x1b\x36\x28\x1b\x34\x27\x1a\x38\x2b\x1c\x29\x1e\x14\x27\x1d\x13\ +\x2f\x23\x17\x35\x27\x19\x35\x28\x19\x32\x26\x18\x34\x27\x18\x27\ +\x1d\x13\x26\x1c\x12\x25\x1c\x12\x28\x1f\x14\x2f\x23\x17\x2b\x20\ +\x14\x26\x1c\x12\x20\x18\x0f\x1c\x15\x0d\x20\x18\x10\x25\x1c\x12\ +\x27\x1d\x13\x29\x1f\x13\x28\x1e\x13\x29\x1f\x13\x2b\x21\x15\x34\ +\x27\x19\x35\x28\x19\x35\x28\x19\x29\x1f\x14\x22\x19\x10\x27\x1d\ +\x12\x23\x1a\x11\x22\x1a\x10\x24\x1b\x12\x2a\x20\x14\x1e\x17\x0e\ +\x1e\x16\x0e\x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x1f\ +\x17\x0f\x21\x19\x10\x29\x1f\x14\x2c\x22\x15\x2f\x23\x17\x2c\x21\ +\x15\x22\x1a\x10\x23\x1a\x11\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\ +\x21\x19\x10\x20\x17\x0f\x19\x13\x0b\x24\x1a\x11\x26\x1c\x12\x20\ +\x19\x0f\x26\x1c\x12\x27\x1d\x13\x31\x25\x17\x2b\x20\x15\x27\x1d\ +\x12\x29\x1f\x13\x2d\x22\x16\x2c\x21\x15\x29\x1f\x13\x28\x1e\x13\ +\x28\x1e\x13\x27\x1e\x12\x2a\x20\x14\x29\x1f\x14\x26\x1c\x12\x25\ +\x1c\x12\x1e\x16\x0e\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\x1b\x14\ +\x0d\x1c\x15\x0d\x1a\x14\x0d\x19\x13\x0c\x24\x1b\x11\x29\x1f\x14\ +\x2e\x22\x16\x45\x34\x22\x2f\x23\x17\x22\x19\x10\x29\x22\x1a\x30\ +\x32\x31\x33\x38\x3b\x3c\x42\x45\x48\x4e\x53\x53\x59\x5e\x5b\x63\ +\x69\x65\x6e\x74\x6c\x75\x7c\x74\x7d\x85\x3e\x44\x4b\x47\x4b\x51\ +\x24\x28\x2e\x76\x80\x85\x4b\x52\x56\x3a\x3f\x42\x3b\x43\x46\x6f\ +\x78\x7d\x44\x49\x4e\x33\x36\x3a\x42\x48\x4d\x70\x79\x80\x83\x8d\ +\x94\x66\x6c\x74\x7e\x85\x89\x83\x8b\x90\x89\x91\x96\x86\x8e\x92\ +\x85\x8b\x90\x86\x8c\x91\x00\x00\x00\x3d\x2f\x1f\x00\x00\x00\x03\ +\x02\x01\x4c\x3a\x27\x25\x1b\x11\x3d\x2e\x1d\x3d\x2e\x1d\x35\x28\ +\x1a\x12\x0e\x09\x15\x10\x0b\x23\x1a\x10\x2b\x21\x14\x22\x1a\x10\ +\x2a\x20\x14\x26\x1c\x12\x31\x25\x18\x35\x28\x1a\x29\x1f\x13\x2a\ +\x20\x14\x25\x1c\x12\x1e\x16\x0e\x1a\x14\x0d\x19\x13\x0c\x17\x11\ +\x0b\x18\x12\x0b\x0f\x0b\x07\x19\x13\x0c\x4e\x3c\x28\x37\x2a\x1c\ +\x25\x1c\x12\x25\x1c\x12\x29\x1f\x14\x27\x1e\x13\x29\x1f\x13\x24\ +\x1c\x12\x1a\x14\x0d\x1c\x15\x0d\x24\x1b\x12\x33\x27\x19\x3c\x2e\ +\x1e\x44\x34\x23\x55\x41\x2c\x5a\x45\x2f\x57\x42\x2d\x49\x37\x25\ +\x2c\x21\x16\x2c\x21\x16\x26\x1c\x13\x27\x1d\x12\x2d\x21\x15\x37\ +\x29\x1a\x35\x28\x19\x33\x26\x19\x31\x25\x18\x2f\x23\x17\x27\x1e\ +\x13\x2d\x21\x15\x28\x1e\x14\x24\x1b\x11\x24\x1b\x11\x28\x1e\x13\ +\x28\x1e\x13\x29\x1f\x14\x24\x1b\x11\x21\x18\x0f\x1b\x15\x0c\x1e\ +\x17\x0e\x23\x1a\x11\x25\x1c\x11\x2c\x21\x15\x2f\x23\x16\x31\x25\ +\x18\x32\x26\x18\x2d\x22\x16\x26\x1c\x12\x28\x1e\x13\x21\x19\x10\ +\x2a\x20\x14\x33\x27\x19\x30\x24\x18\x1f\x17\x0e\x22\x19\x10\x25\ +\x1c\x12\x2c\x22\x15\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\x16\ +\x0e\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x2e\x22\x16\x28\x1e\x13\ +\x22\x1a\x10\x20\x19\x0f\x24\x1c\x12\x29\x20\x14\x2e\x23\x16\x1f\ +\x16\x0e\x20\x18\x0f\x1c\x15\x0e\x1e\x16\x0e\x20\x18\x0f\x22\x1a\ +\x11\x22\x1a\x10\x28\x1e\x14\x22\x1a\x10\x28\x1e\x13\x23\x1a\x10\ +\x27\x1d\x13\x2c\x21\x15\x29\x1e\x14\x27\x1e\x13\x24\x1c\x11\x26\ +\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x28\x1e\x14\x2b\x20\x15\x2c\x21\ +\x15\x27\x1d\x12\x20\x18\x10\x1c\x16\x0e\x18\x12\x0c\x19\x13\x0c\ +\x19\x13\x0c\x1c\x16\x0e\x1e\x16\x0e\x24\x1b\x11\x29\x1f\x13\x38\ +\x2a\x1a\x25\x1c\x12\x26\x1d\x13\x35\x2a\x1f\x34\x32\x31\x32\x36\ +\x39\x3b\x40\x44\x47\x4d\x52\x52\x58\x5e\x5c\x64\x6a\x65\x6d\x73\ +\x6b\x75\x7c\x79\x83\x8c\x23\x28\x2d\x7f\x88\x90\x52\x58\x5d\x1f\ +\x21\x26\x30\x35\x37\x84\x8d\x91\x56\x5d\x61\x1e\x21\x25\x42\x44\ +\x47\x7d\x84\x88\x55\x5b\x5f\x3a\x40\x45\x72\x7a\x81\x84\x8c\x92\ +\x84\x8d\x93\x85\x8d\x94\x86\x8e\x93\x86\x8c\x91\x8b\x92\x96\x87\ +\x8e\x94\x00\x00\x00\x46\x37\x26\x05\x04\x02\x00\x00\x00\x42\x31\ +\x21\x29\x1e\x14\x40\x30\x1f\x3a\x2b\x1c\x39\x2c\x1c\x17\x11\x0b\ +\x1b\x15\x0d\x23\x1a\x11\x2b\x1f\x15\x21\x19\x10\x27\x1d\x13\x26\ +\x1d\x12\x29\x1f\x13\x2b\x20\x15\x21\x19\x10\x2a\x20\x14\x2a\x1f\ +\x14\x25\x1c\x12\x1d\x16\x0e\x1d\x16\x0e\x18\x13\x0c\x15\x10\x0a\ +\x12\x0e\x08\x13\x0f\x09\x28\x1e\x14\x15\x0f\x0a\x32\x27\x19\x48\ +\x37\x25\x46\x36\x24\x3d\x2e\x1e\x4e\x3b\x27\x4d\x3a\x28\x43\x33\ +\x22\x4f\x3c\x28\x62\x4c\x34\x31\x25\x18\x49\x38\x26\x6b\x53\x38\ +\x32\x25\x17\x60\x49\x31\x62\x4b\x33\x50\x3d\x29\x34\x28\x1a\x25\ +\x1d\x12\x25\x1c\x12\x25\x1c\x12\x2b\x20\x14\x2f\x23\x16\x30\x23\ +\x17\x30\x23\x18\x29\x1f\x14\x22\x19\x10\x33\x26\x18\x33\x27\x19\ +\x2d\x21\x15\x28\x1f\x13\x28\x1e\x13\x2c\x20\x15\x2f\x24\x16\x2d\ +\x22\x16\x2d\x22\x15\x27\x1e\x12\x26\x1d\x13\x26\x1c\x13\x26\x1c\ +\x12\x29\x1f\x14\x2f\x23\x16\x2f\x23\x16\x32\x25\x18\x31\x25\x18\ +\x23\x1a\x11\x23\x1a\x10\x29\x1e\x13\x26\x1d\x13\x31\x25\x18\x32\ +\x26\x18\x30\x25\x17\x27\x1d\x13\x29\x1e\x13\x27\x1e\x13\x27\x1d\ +\x13\x2b\x21\x14\x27\x1d\x12\x21\x18\x10\x1f\x17\x0e\x24\x1b\x11\ +\x22\x1a\x11\x1f\x18\x0f\x20\x18\x0f\x27\x1e\x13\x25\x1c\x11\x19\ +\x12\x0b\x1e\x16\x0e\x26\x1d\x12\x2c\x21\x15\x1f\x17\x0f\x1e\x17\ +\x0e\x1b\x14\x0d\x1d\x15\x0d\x20\x18\x0f\x19\x13\x0c\x1a\x14\x0c\ +\x21\x19\x10\x1f\x18\x0f\x22\x1a\x11\x1f\x17\x0f\x24\x1b\x11\x26\ +\x1c\x12\x22\x19\x10\x23\x1b\x11\x23\x1a\x11\x23\x1b\x11\x29\x1f\ +\x14\x2d\x23\x16\x30\x24\x17\x28\x1e\x13\x2c\x21\x15\x2d\x22\x15\ +\x2a\x1f\x14\x26\x1c\x12\x22\x19\x10\x1a\x14\x0d\x1c\x16\x0e\x1e\ +\x17\x0e\x1e\x17\x0e\x22\x1a\x11\x37\x29\x1a\x2d\x22\x16\x28\x1e\ +\x13\x28\x1e\x13\x35\x2a\x1e\x33\x31\x2e\x32\x36\x39\x3a\x40\x43\ +\x45\x4b\x4f\x51\x58\x5c\x59\x61\x67\x62\x6b\x70\x6b\x75\x7a\x56\ +\x5d\x64\x32\x37\x3a\x72\x7c\x82\x7b\x85\x8b\x3c\x40\x44\x2b\x2e\ +\x30\x7c\x86\x8a\x79\x83\x86\x37\x3a\x3d\x31\x33\x37\x81\x8a\x8f\ +\x43\x48\x4b\x00\x00\x00\x2f\x35\x3a\x74\x7e\x82\x83\x8c\x90\x86\ +\x8e\x95\x88\x90\x97\x89\x91\x96\x8a\x90\x95\x88\x8e\x92\x00\x00\ +\x00\x5e\x49\x34\x0a\x07\x05\x00\x00\x00\x41\x31\x21\x37\x29\x1b\ +\x3d\x2e\x1d\x55\x3f\x29\x41\x31\x20\x21\x19\x0f\x15\x0f\x0a\x1a\ +\x13\x0c\x1c\x14\x0d\x19\x12\x0c\x25\x1c\x11\x25\x1c\x12\x23\x1b\ +\x11\x24\x1b\x11\x1d\x16\x0e\x1e\x17\x0f\x23\x1a\x11\x23\x1a\x11\ +\x24\x1a\x11\x1e\x16\x0e\x19\x12\x0b\x1a\x13\x0c\x17\x11\x0b\x15\ +\x0f\x0a\x23\x1a\x11\x15\x0f\x09\x2e\x22\x16\x37\x2a\x1c\x35\x29\ +\x1a\x1f\x17\x0f\x34\x27\x1a\x40\x30\x1f\x19\x13\x0c\x48\x37\x26\ +\x78\x5c\x40\x0d\x0a\x06\x3e\x2f\x20\x6b\x52\x38\x2b\x20\x15\x4e\ +\x3b\x27\x71\x57\x3b\x57\x43\x2d\x2c\x21\x16\x27\x1d\x13\x24\x1a\ +\x11\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2d\x22\x15\x39\x2b\x1b\ +\x2f\x23\x16\x27\x1d\x12\x2d\x22\x16\x36\x29\x1a\x2c\x21\x15\x2e\ +\x23\x16\x22\x19\x10\x2b\x20\x14\x2d\x21\x16\x34\x27\x19\x35\x28\ +\x1a\x26\x1d\x12\x21\x19\x10\x1f\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ +\x2e\x22\x15\x2d\x22\x15\x39\x2b\x1b\x31\x25\x17\x25\x1c\x12\x21\ +\x19\x10\x25\x1c\x12\x23\x1b\x11\x26\x1c\x12\x2c\x22\x15\x28\x1e\ +\x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x13\x21\x19\x10\x20\x17\x0f\ +\x22\x19\x10\x1e\x17\x0e\x14\x0f\x0a\x13\x0e\x09\x16\x10\x0a\x18\ +\x12\x0c\x1b\x14\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x18\x10\x1a\x14\ +\x0c\x18\x12\x0c\x1c\x15\x0d\x27\x1d\x12\x26\x1d\x12\x29\x1f\x13\ +\x25\x1b\x12\x23\x1a\x11\x1d\x16\x0e\x1e\x16\x0e\x25\x1c\x12\x25\ +\x1c\x12\x26\x1d\x13\x21\x19\x10\x25\x1c\x12\x25\x1c\x11\x25\x1b\ +\x11\x2a\x20\x14\x2d\x22\x15\x27\x1e\x12\x30\x25\x17\x38\x2a\x1b\ +\x35\x28\x19\x28\x1e\x13\x2a\x20\x15\x2a\x1f\x14\x27\x1e\x13\x28\ +\x1e\x13\x27\x1d\x12\x24\x1a\x11\x2e\x22\x16\x1e\x17\x0e\x1f\x18\ +\x0f\x27\x1d\x13\x33\x26\x19\x46\x35\x23\x21\x19\x10\x26\x1c\x12\ +\x2c\x23\x19\x34\x30\x2c\x30\x35\x38\x3b\x40\x44\x46\x4c\x51\x51\ +\x58\x5d\x5b\x62\x67\x63\x6a\x70\x72\x7b\x82\x30\x35\x3b\x45\x4b\ +\x4f\x42\x4a\x50\x70\x7b\x7e\x31\x34\x37\x4a\x4f\x53\x40\x44\x49\ +\x63\x6b\x6f\x42\x46\x4a\x36\x3a\x3f\x48\x4e\x53\x1b\x1d\x1e\x00\ +\x00\x00\x07\x08\x0a\x3e\x44\x4a\x74\x7c\x80\x88\x91\x96\x8b\x93\ +\x99\x89\x90\x98\x8c\x92\x98\x8a\x91\x96\x00\x00\x00\x63\x4d\x37\ +\x11\x0d\x08\x07\x06\x03\x34\x27\x1a\x22\x19\x10\x27\x1e\x13\x41\ +\x31\x20\x36\x28\x1a\x18\x12\x0b\x11\x0d\x09\x12\x0d\x08\x1e\x17\ +\x0e\x17\x11\x0b\x1d\x16\x0e\x20\x18\x10\x2c\x21\x15\x1e\x17\x0f\ +\x15\x10\x0a\x18\x12\x0b\x1a\x14\x0d\x1b\x14\x0d\x24\x1b\x11\x30\ +\x24\x17\x24\x1b\x11\x23\x1b\x11\x1d\x16\x0e\x17\x11\x0b\x1a\x13\ +\x0c\x13\x0e\x0a\x38\x2a\x1b\x50\x3d\x29\x4e\x3b\x26\x12\x0d\x09\ +\x48\x36\x24\x4f\x3c\x27\x0d\x0b\x06\x41\x33\x22\x50\x3d\x2a\x25\ +\x1c\x13\x2e\x23\x17\x5e\x48\x30\x49\x37\x25\x3f\x30\x1f\x5f\x48\ +\x31\x45\x34\x23\x27\x1d\x13\x2d\x22\x16\x23\x1b\x10\x1d\x16\x0d\ +\x1f\x17\x0e\x25\x1b\x11\x2a\x20\x14\x31\x25\x17\x2b\x21\x15\x21\ +\x19\x10\x21\x18\x0f\x28\x1f\x13\x26\x1c\x12\x30\x24\x17\x2b\x20\ +\x14\x23\x1b\x12\x27\x1d\x13\x2a\x20\x14\x2e\x23\x15\x26\x1c\x12\ +\x1e\x16\x0e\x20\x18\x0f\x21\x19\x10\x2d\x21\x16\x30\x23\x17\x32\ +\x25\x18\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x1f\x17\ +\x0f\x1a\x14\x0d\x20\x18\x10\x20\x19\x0f\x2c\x21\x15\x2d\x22\x16\ +\x2c\x22\x16\x22\x1a\x10\x17\x11\x0b\x1a\x13\x0c\x19\x13\x0c\x15\ +\x10\x0a\x15\x10\x0a\x12\x0e\x08\x16\x11\x0b\x1c\x15\x0e\x1e\x16\ +\x0f\x21\x18\x10\x25\x1b\x12\x29\x1f\x14\x26\x1c\x12\x25\x1c\x12\ +\x28\x1f\x13\x30\x24\x17\x32\x25\x18\x2c\x21\x15\x2f\x22\x16\x21\ +\x19\x10\x21\x19\x10\x21\x19\x10\x24\x1b\x11\x23\x1a\x10\x27\x1d\ +\x13\x1e\x17\x0f\x21\x19\x0f\x28\x1e\x13\x29\x1f\x14\x30\x25\x17\ +\x2b\x21\x15\x32\x26\x18\x41\x31\x20\x3f\x2f\x1e\x30\x24\x18\x28\ +\x1e\x13\x2f\x23\x16\x31\x24\x18\x2a\x20\x14\x2d\x21\x15\x29\x1f\ +\x14\x29\x1e\x13\x28\x1e\x13\x1e\x16\x0d\x24\x1b\x11\x21\x19\x10\ +\x27\x1c\x13\x30\x24\x17\x2d\x21\x15\x28\x1e\x13\x2f\x24\x19\x38\ +\x33\x2c\x30\x35\x37\x3a\x3f\x43\x45\x4b\x4f\x4f\x56\x5c\x5c\x63\ +\x68\x65\x6c\x72\x66\x6d\x74\x37\x3c\x40\x80\x8b\x8f\x43\x4a\x4f\ +\x40\x44\x48\x35\x3a\x3b\x82\x8c\x8e\x41\x45\x49\x15\x16\x19\x46\ +\x4b\x4e\x89\x92\x96\x52\x58\x5b\x0f\x0f\x10\x00\x00\x00\x3b\x3e\ +\x40\x56\x5c\x60\x3f\x42\x47\x70\x77\x7c\x88\x90\x96\x85\x8c\x93\ +\x8c\x94\x99\x8a\x92\x96\x00\x00\x00\x71\x56\x3b\x1b\x14\x0c\x03\ +\x03\x01\x1b\x14\x0d\x1c\x15\x0d\x20\x19\x0f\x33\x25\x18\x43\x33\ +\x21\x18\x12\x0b\x11\x0d\x08\x19\x13\x0b\x26\x1c\x12\x1d\x16\x0f\ +\x1d\x16\x0e\x2b\x21\x15\x31\x25\x17\x19\x13\x0c\x12\x0e\x09\x12\ +\x0e\x09\x12\x0d\x08\x18\x12\x0b\x21\x19\x0f\x24\x1b\x11\x24\x1b\ +\x11\x26\x1c\x12\x19\x13\x0c\x11\x0d\x08\x11\x0c\x08\x11\x0e\x08\ +\x34\x28\x1a\x33\x28\x19\x3f\x2f\x1f\x14\x10\x0a\x48\x35\x23\x36\ +\x29\x1a\x2d\x22\x16\x52\x3f\x2b\x2c\x22\x16\x56\x42\x2e\x31\x25\ +\x19\x49\x37\x25\x55\x41\x2c\x35\x28\x1a\x40\x30\x20\x4b\x38\x26\ +\x2d\x21\x15\x2a\x1f\x14\x23\x1b\x11\x21\x18\x10\x20\x19\x10\x20\ +\x18\x0f\x25\x1c\x12\x22\x19\x10\x23\x1a\x11\x21\x19\x0f\x1e\x17\ +\x0f\x24\x1b\x12\x27\x1d\x13\x2a\x20\x14\x29\x1f\x14\x2a\x20\x14\ +\x1e\x17\x0f\x27\x1d\x12\x2b\x20\x15\x2d\x22\x16\x28\x1e\x13\x1d\ +\x16\x0e\x1d\x16\x0e\x20\x18\x10\x28\x1e\x13\x2b\x21\x14\x2b\x20\ +\x14\x29\x1f\x14\x2c\x21\x15\x2a\x1f\x14\x20\x19\x0f\x1e\x17\x0e\ +\x1e\x17\x0e\x25\x1c\x11\x31\x25\x18\x2b\x21\x15\x2a\x20\x14\x2b\ +\x21\x15\x24\x1b\x11\x1a\x13\x0c\x20\x18\x0f\x20\x18\x0f\x18\x12\ +\x0b\x11\x0d\x08\x17\x11\x0b\x18\x12\x0c\x17\x11\x0b\x19\x13\x0c\ +\x25\x1c\x11\x31\x25\x18\x2a\x1f\x15\x27\x1d\x13\x29\x1e\x13\x2a\ +\x1f\x14\x32\x26\x18\x33\x26\x18\x2e\x21\x16\x26\x1c\x12\x25\x1c\ +\x11\x23\x1a\x11\x2a\x20\x14\x19\x13\x0d\x1d\x16\x0e\x1e\x17\x0f\ +\x22\x19\x11\x21\x19\x10\x29\x1f\x14\x2c\x21\x15\x2b\x20\x14\x2d\ +\x21\x16\x39\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x27\x1e\x13\x2e\x22\ +\x16\x2d\x22\x15\x28\x1d\x13\x24\x1c\x12\x26\x1c\x12\x27\x1d\x12\ +\x30\x23\x16\x25\x1b\x12\x1d\x16\x0e\x22\x1a\x10\x26\x1d\x13\x2e\ +\x23\x17\x3d\x2d\x1e\x25\x1b\x12\x2a\x20\x16\x36\x2f\x29\x2f\x33\ +\x36\x3a\x3f\x42\x44\x4a\x4e\x4f\x56\x5b\x5c\x62\x68\x5c\x64\x6a\ +\x59\x60\x66\x39\x3e\x42\x74\x7f\x84\x80\x8a\x8e\x1f\x21\x23\x45\ +\x49\x4c\x72\x7c\x7f\x30\x34\x36\x00\x00\x00\x37\x3b\x3e\x80\x89\ +\x8d\x85\x8e\x91\x2d\x2f\x31\x0b\x0c\x0e\x62\x67\x6a\x8b\x93\x97\ +\x34\x37\x3c\x36\x37\x3c\x6c\x73\x77\x89\x91\x97\x89\x91\x97\x8a\ +\x90\x95\x00\x00\x00\x87\x73\x60\x2f\x25\x1a\x10\x0c\x08\x22\x19\ +\x11\x2f\x24\x17\x27\x1d\x12\x46\x34\x22\x44\x33\x21\x26\x1c\x12\ +\x0e\x0b\x06\x10\x0b\x07\x21\x19\x10\x30\x24\x17\x21\x19\x0f\x21\ +\x19\x10\x18\x12\x0c\x15\x10\x0a\x16\x11\x0b\x0f\x0c\x07\x0d\x0a\ +\x06\x11\x0c\x07\x18\x12\x0b\x1d\x16\x0e\x1f\x18\x0f\x1d\x16\x0e\ +\x1c\x15\x0d\x14\x0f\x0a\x1c\x15\x0d\x1d\x16\x0e\x44\x33\x22\x38\ +\x2b\x1c\x32\x26\x18\x31\x24\x18\x49\x37\x24\x1e\x17\x0e\x45\x34\ +\x22\x31\x25\x18\x23\x1a\x11\x54\x41\x2c\x31\x25\x19\x2a\x20\x15\ +\x4a\x39\x26\x37\x2a\x1b\x1b\x14\x0d\x48\x37\x25\x41\x31\x21\x29\ +\x1e\x13\x23\x1b\x11\x23\x1b\x11\x23\x1a\x11\x26\x1d\x12\x1f\x18\ +\x0f\x1a\x14\x0d\x1e\x16\x0e\x22\x1a\x11\x1c\x15\x0e\x1c\x15\x0d\ +\x1b\x14\x0d\x20\x19\x0f\x2d\x22\x16\x28\x1e\x13\x1c\x15\x0e\x1a\ +\x13\x0c\x1b\x14\x0d\x1d\x16\x0e\x21\x19\x10\x1e\x17\x0e\x17\x12\ +\x0b\x19\x14\x0c\x20\x18\x10\x23\x1a\x11\x28\x1e\x13\x27\x1e\x13\ +\x2b\x20\x14\x28\x1e\x13\x1a\x14\x0c\x12\x0d\x09\x16\x10\x0b\x1e\ +\x17\x0f\x1f\x18\x0f\x21\x19\x10\x2a\x21\x15\x33\x26\x19\x20\x18\ +\x10\x1c\x14\x0e\x1a\x13\x0d\x1c\x15\x0d\x17\x11\x0a\x14\x10\x0a\ +\x19\x13\x0d\x1e\x17\x0e\x1b\x14\x0c\x1b\x14\x0c\x21\x19\x10\x29\ +\x20\x14\x2b\x20\x15\x20\x18\x0f\x27\x1d\x13\x2f\x23\x16\x38\x2a\ +\x1b\x37\x29\x1b\x2f\x23\x16\x2a\x1f\x14\x2b\x21\x15\x35\x28\x1a\ +\x35\x28\x1a\x31\x25\x18\x21\x19\x10\x21\x18\x10\x24\x1b\x11\x22\ +\x1a\x10\x2a\x1f\x14\x2d\x22\x16\x2b\x20\x15\x2f\x23\x16\x31\x25\ +\x18\x29\x1f\x14\x27\x1d\x12\x22\x1a\x10\x1f\x17\x0f\x22\x19\x10\ +\x20\x18\x10\x24\x1b\x11\x2a\x1f\x14\x2d\x22\x15\x30\x24\x17\x2f\ +\x23\x16\x28\x1e\x13\x27\x1d\x12\x2a\x1f\x14\x46\x34\x22\x4d\x3a\ +\x25\x30\x24\x17\x39\x2c\x1c\x37\x31\x29\x2f\x33\x36\x38\x3d\x41\ +\x43\x48\x4c\x4e\x54\x58\x5c\x62\x68\x3a\x42\x47\x5c\x64\x6a\x40\ +\x46\x4b\x43\x4a\x4f\x6e\x76\x7a\x2d\x2f\x31\x51\x57\x5b\x3a\x3f\ +\x43\x00\x00\x00\x01\x01\x01\x21\x23\x26\x54\x5a\x5e\x59\x5f\x63\ +\x49\x4c\x50\x49\x4d\x50\x4b\x4f\x53\x72\x7a\x7e\x32\x36\x3a\x63\ +\x68\x6c\x4c\x50\x54\x6f\x76\x7a\x8b\x94\x99\x8a\x90\x95\x00\x00\ +\x00\xa6\x9c\x94\x20\x1e\x1b\x01\x01\x01\x1f\x17\x0f\x3f\x30\x1f\ +\x28\x1e\x14\x40\x30\x1f\x4a\x37\x24\x25\x1c\x12\x0e\x0a\x06\x14\ +\x0f\x0a\x19\x13\x0c\x1c\x14\x0d\x21\x19\x10\x16\x11\x0a\x12\x0e\ +\x08\x16\x11\x0a\x14\x0f\x09\x0c\x08\x05\x0e\x0b\x07\x0f\x0b\x07\ +\x13\x0e\x09\x16\x11\x0b\x19\x12\x0c\x1e\x17\x0f\x20\x18\x0f\x12\ +\x0e\x08\x1a\x13\x0d\x1d\x15\x0e\x37\x2a\x1b\x2a\x1f\x14\x1f\x17\ +\x0f\x4e\x3b\x26\x2a\x20\x14\x1e\x17\x0e\x4a\x39\x24\x36\x28\x1a\ +\x1b\x15\x0d\x49\x38\x26\x5d\x48\x31\x0c\x0a\x05\x46\x36\x24\x54\ +\x40\x2c\x0f\x0b\x06\x3d\x2e\x1f\x33\x27\x1a\x21\x19\x10\x22\x1a\ +\x10\x1d\x15\x0e\x1b\x15\x0d\x29\x1f\x14\x1e\x17\x0e\x1b\x14\x0c\ +\x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x23\x1a\x11\x25\x1c\x12\x26\ +\x1d\x13\x26\x1d\x13\x29\x1e\x14\x1f\x17\x0f\x1f\x17\x0f\x20\x18\ +\x10\x1a\x14\x0d\x1c\x16\x0d\x20\x18\x0f\x1c\x15\x0e\x28\x1d\x13\ +\x28\x1e\x13\x25\x1c\x12\x2a\x1f\x14\x26\x1d\x12\x2c\x21\x15\x23\ +\x1b\x11\x18\x13\x0c\x13\x0f\x0a\x19\x13\x0b\x23\x1a\x11\x1c\x15\ +\x0e\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x29\x1f\x13\x1e\x17\x0e\ +\x24\x1b\x11\x23\x1a\x10\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x18\ +\x12\x0c\x1b\x15\x0d\x1e\x17\x0f\x21\x1a\x11\x2e\x23\x16\x2f\x22\ +\x16\x24\x1c\x11\x1d\x16\x0e\x28\x1f\x13\x2c\x21\x15\x35\x28\x19\ +\x33\x26\x18\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x31\x25\x18\x2b\ +\x21\x15\x2d\x22\x16\x1f\x18\x0f\x21\x19\x10\x28\x1e\x13\x29\x1f\ +\x13\x2b\x20\x15\x32\x26\x18\x2f\x23\x17\x2c\x21\x15\x1f\x17\x0f\ +\x1a\x14\x0d\x1f\x17\x0e\x1b\x15\x0d\x1b\x15\x0d\x19\x13\x0c\x26\ +\x1c\x12\x2b\x20\x14\x29\x1f\x13\x36\x29\x1a\x34\x27\x19\x2e\x22\ +\x15\x2d\x22\x16\x29\x20\x13\x2a\x20\x14\x2a\x1f\x14\x2e\x22\x16\ +\x33\x26\x19\x39\x32\x29\x2e\x32\x35\x37\x3c\x40\x42\x47\x4b\x50\ +\x56\x5a\x59\x60\x65\x2f\x34\x37\x38\x3e\x42\x77\x7f\x85\x45\x4b\ +\x50\x29\x2c\x2e\x61\x65\x68\x7f\x85\x89\x3e\x43\x46\x01\x02\x02\ +\x0c\x0c\x0d\x50\x54\x58\x56\x5c\x60\x1a\x1c\x1f\x60\x65\x69\x87\ +\x90\x92\x59\x5d\x60\x2f\x30\x32\x4b\x50\x54\x8d\x9a\x9f\x5f\x66\ +\x6a\x20\x23\x25\x6e\x74\x79\x8b\x92\x96\x00\x00\x00\x77\x66\x5c\ +\x1f\x1c\x19\x00\x01\x00\x1e\x17\x0f\x36\x28\x1a\x24\x1b\x11\x3c\ +\x2e\x1d\x2c\x21\x15\x22\x1a\x10\x12\x0e\x08\x1a\x14\x0c\x18\x12\ +\x0b\x1d\x16\x0e\x19\x13\x0b\x19\x13\x0c\x1f\x17\x0f\x1b\x14\x0d\ +\x14\x0f\x0a\x14\x0f\x09\x11\x0d\x08\x12\x0d\x08\x16\x11\x0a\x1b\ +\x15\x0d\x19\x13\x0c\x1d\x16\x0e\x20\x18\x0f\x13\x0f\x09\x1f\x18\ +\x0f\x16\x10\x0a\x29\x1f\x15\x25\x1c\x12\x23\x1a\x10\x4e\x3b\x27\ +\x25\x1c\x11\x1f\x17\x0e\x36\x29\x1b\x47\x36\x23\x18\x12\x0b\x2e\ +\x22\x16\x49\x37\x25\x1f\x18\x0e\x3a\x2c\x1e\x3c\x2e\x1f\x12\x0e\ +\x08\x24\x1a\x11\x2f\x23\x17\x27\x1d\x13\x30\x24\x17\x23\x1a\x11\ +\x1e\x17\x0f\x25\x1c\x12\x20\x19\x10\x1a\x14\x0d\x1e\x16\x0e\x27\ +\x1d\x13\x20\x18\x0f\x21\x19\x10\x1e\x16\x0e\x29\x1f\x14\x2b\x20\ +\x15\x2b\x20\x14\x25\x1c\x12\x1f\x17\x0f\x1c\x16\x0e\x23\x1a\x11\ +\x24\x1b\x12\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x20\x19\x10\x25\ +\x1c\x12\x2c\x21\x15\x25\x1c\x12\x23\x1a\x11\x19\x13\x0c\x17\x12\ +\x0b\x1b\x15\x0d\x16\x11\x0a\x1f\x17\x0f\x1c\x16\x0e\x27\x1c\x13\ +\x32\x26\x19\x32\x25\x18\x2a\x20\x14\x21\x19\x10\x27\x1e\x13\x26\ +\x1c\x12\x24\x1c\x11\x29\x1e\x13\x26\x1d\x12\x24\x1b\x11\x20\x18\ +\x0f\x1f\x18\x0f\x20\x18\x0f\x1f\x18\x0f\x13\x0f\x09\x13\x0f\x0a\ +\x15\x10\x0a\x18\x12\x0b\x1e\x17\x0f\x2b\x20\x15\x31\x24\x17\x26\ +\x1c\x12\x30\x24\x17\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x2f\x24\ +\x17\x26\x1d\x13\x22\x1a\x10\x1e\x17\x0e\x22\x19\x10\x27\x1e\x13\ +\x29\x1f\x14\x29\x1f\x14\x27\x1d\x13\x21\x19\x10\x24\x1b\x11\x1f\ +\x18\x0f\x1c\x15\x0e\x1e\x17\x0e\x2b\x21\x15\x2a\x20\x14\x2b\x20\ +\x15\x30\x24\x17\x2e\x22\x16\x30\x24\x17\x2d\x22\x16\x2c\x21\x15\ +\x26\x1d\x12\x29\x1f\x14\x29\x1f\x13\x23\x1b\x10\x29\x1f\x13\x35\ +\x2e\x25\x2e\x32\x35\x37\x3b\x3f\x43\x49\x4d\x3d\x43\x47\x52\x59\ +\x5d\x4f\x55\x5a\x4a\x51\x56\x73\x7e\x81\x52\x5a\x5e\x3a\x3d\x41\ +\x47\x4b\x4f\x83\x8a\x8f\x71\x78\x7d\x0c\x0d\x0f\x25\x26\x28\x7a\ +\x82\x87\x6b\x74\x77\x21\x23\x25\x3a\x3d\x40\x7b\x84\x86\x88\x92\ +\x92\x1e\x21\x22\x3b\x40\x46\x78\x83\x89\x41\x47\x4b\x00\x00\x00\ +\x32\x36\x39\x8d\x96\x9a\x00\x00\x00\x9c\x7f\x66\x23\x1d\x16\x00\ +\x00\x00\x10\x0c\x08\x20\x18\x10\x17\x11\x0b\x2c\x20\x15\x34\x28\ +\x19\x30\x24\x17\x13\x0f\x09\x1b\x15\x0d\x21\x18\x0f\x27\x1d\x13\ +\x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x1b\x15\x0c\x16\ +\x11\x0b\x11\x0d\x08\x17\x11\x0b\x1b\x15\x0d\x1b\x14\x0d\x16\x11\ +\x0b\x17\x12\x0b\x19\x13\x0c\x16\x11\x0a\x27\x1d\x14\x19\x13\x0c\ +\x1b\x14\x0c\x16\x11\x0b\x1b\x15\x0d\x40\x30\x20\x25\x1c\x12\x29\ +\x1f\x14\x2e\x22\x16\x2f\x23\x17\x17\x11\x0b\x1c\x15\x0e\x2a\x20\ +\x14\x22\x1a\x10\x30\x24\x18\x2f\x24\x17\x14\x0f\x09\x1d\x16\x0e\ +\x27\x1d\x12\x1f\x17\x0f\x24\x1c\x11\x22\x19\x10\x1d\x16\x0d\x1f\ +\x17\x0e\x1a\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x11\x29\x1f\ +\x14\x30\x24\x17\x2a\x1f\x13\x2a\x20\x14\x2d\x22\x16\x34\x28\x19\ +\x27\x1d\x13\x22\x19\x10\x1b\x14\x0d\x21\x19\x10\x26\x1d\x12\x2b\ +\x20\x14\x2a\x20\x14\x26\x1d\x12\x21\x18\x10\x1b\x14\x0d\x21\x19\ +\x10\x24\x1b\x11\x23\x1b\x11\x17\x11\x0b\x1a\x13\x0c\x16\x11\x0b\ +\x19\x12\x0b\x19\x12\x0c\x20\x18\x0f\x1b\x14\x0c\x28\x1e\x13\x31\ +\x26\x18\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x22\x19\x11\x20\x18\ +\x10\x24\x1b\x11\x29\x1e\x14\x2a\x1f\x14\x29\x1f\x14\x20\x18\x0f\ +\x25\x1c\x12\x1d\x16\x0e\x13\x0f\x09\x15\x10\x09\x16\x10\x0b\x12\ +\x0d\x09\x1a\x15\x0d\x26\x1c\x12\x24\x1b\x11\x24\x1b\x11\x1e\x17\ +\x0e\x1a\x14\x0c\x28\x1e\x13\x27\x1e\x13\x2b\x21\x15\x29\x1e\x13\ +\x1c\x15\x0e\x22\x19\x11\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2e\ +\x22\x16\x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x25\x1c\x12\x1d\x15\ +\x0e\x1e\x17\x0e\x1d\x16\x0e\x29\x1f\x13\x22\x19\x10\x1f\x17\x0e\ +\x29\x1f\x13\x23\x1a\x10\x2c\x21\x16\x2b\x20\x15\x24\x1a\x11\x2e\ +\x22\x16\x2f\x23\x16\x2f\x23\x17\x30\x24\x17\x33\x2b\x22\x2c\x30\ +\x33\x35\x3a\x3d\x47\x4c\x50\x2a\x2d\x30\x3e\x44\x49\x60\x67\x6e\ +\x65\x6c\x72\x58\x5e\x63\x49\x4f\x53\x44\x4a\x4e\x50\x54\x59\x46\ +\x4a\x4f\x6f\x75\x78\x35\x37\x39\x54\x58\x5c\x5e\x64\x69\x51\x58\ +\x5c\x4f\x53\x56\x4e\x52\x55\x47\x4d\x51\x5e\x67\x68\x44\x4b\x4e\ +\x66\x6d\x74\x42\x48\x4d\x14\x16\x18\x00\x00\x00\x11\x13\x15\x86\ +\x8c\x92\x00\x00\x00\xb7\x97\x75\x29\x1f\x14\x00\x00\x00\x1a\x13\ +\x0c\x24\x1b\x11\x1b\x15\x0d\x34\x27\x1a\x3d\x2e\x1e\x32\x26\x18\ +\x0d\x0a\x06\x13\x0e\x09\x1b\x14\x0d\x28\x1e\x13\x22\x19\x10\x16\ +\x11\x0b\x19\x13\x0c\x19\x13\x0c\x1f\x17\x0e\x20\x18\x0f\x19\x13\ +\x0c\x1a\x13\x0c\x18\x12\x0b\x13\x0e\x09\x12\x0e\x09\x16\x11\x0b\ +\x1d\x16\x0e\x16\x10\x0b\x1e\x17\x0e\x1b\x14\x0d\x1d\x15\x0e\x25\ +\x1c\x12\x25\x1c\x11\x31\x25\x17\x25\x1c\x12\x25\x1b\x11\x30\x24\ +\x17\x3c\x2d\x1d\x14\x10\x0a\x1d\x16\x0e\x2e\x23\x17\x20\x19\x10\ +\x35\x28\x1a\x3c\x2d\x1e\x25\x1b\x12\x1d\x16\x0e\x20\x18\x0f\x1e\ +\x16\x0e\x2e\x22\x17\x23\x1b\x11\x1d\x16\x0e\x23\x1a\x11\x23\x1b\ +\x11\x1a\x13\x0c\x1b\x15\x0d\x22\x1a\x10\x27\x1d\x13\x27\x1d\x13\ +\x26\x1c\x12\x24\x1b\x11\x2b\x20\x15\x26\x1d\x12\x24\x1b\x11\x29\ +\x1f\x13\x24\x1b\x12\x22\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\ +\x12\x25\x1b\x11\x1d\x16\x0e\x1f\x18\x0f\x1c\x16\x0e\x1d\x15\x0e\ +\x1e\x17\x0e\x19\x13\x0c\x1b\x14\x0c\x1a\x13\x0c\x16\x11\x0b\x1b\ +\x14\x0d\x19\x13\x0c\x13\x0e\x09\x1a\x13\x0d\x1e\x17\x0f\x22\x19\ +\x10\x1d\x16\x0e\x1f\x17\x0e\x1d\x16\x0e\x23\x1a\x10\x2a\x20\x14\ +\x2b\x20\x15\x2b\x21\x15\x2e\x22\x16\x2d\x22\x16\x29\x1f\x14\x26\ +\x1d\x12\x19\x13\x0c\x1e\x16\x0e\x1e\x16\x0e\x1b\x14\x0d\x19\x13\ +\x0c\x1d\x16\x0e\x2a\x1f\x14\x31\x25\x18\x23\x1a\x11\x1f\x18\x0f\ +\x23\x1b\x11\x26\x1d\x12\x29\x1f\x14\x2d\x22\x16\x25\x1c\x12\x26\ +\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x27\x1d\x13\x23\x1a\x11\x24\x1c\ +\x11\x22\x1a\x11\x28\x1e\x13\x31\x25\x17\x24\x1b\x12\x1a\x14\x0d\ +\x17\x12\x0b\x22\x1a\x10\x25\x1c\x12\x23\x1a\x11\x27\x1d\x12\x24\ +\x1b\x12\x2b\x21\x15\x2b\x20\x15\x2c\x21\x15\x32\x25\x18\x30\x24\ +\x17\x2f\x23\x16\x2b\x20\x15\x28\x23\x1d\x2e\x30\x32\x36\x3a\x3e\ +\x44\x4b\x4e\x2d\x31\x33\x48\x4e\x52\x63\x69\x6f\x6f\x75\x7c\x52\ +\x57\x5c\x6d\x71\x75\x35\x3a\x3e\x7e\x83\x87\x45\x47\x4c\x24\x25\ +\x27\x6e\x72\x77\x7a\x80\x86\x50\x54\x59\x2f\x31\x35\x6a\x71\x74\ +\x8a\x93\x95\x42\x46\x49\x0e\x11\x12\x6c\x76\x7a\x8a\x94\x99\x70\ +\x75\x7a\x23\x23\x26\x08\x08\x09\x30\x32\x35\x87\x8d\x92\x00\x00\ +\x00\xc1\xaa\x92\x2d\x25\x1c\x00\x00\x00\x1d\x15\x0e\x36\x28\x1a\ +\x1c\x15\x0e\x39\x2b\x1c\x3a\x2c\x1c\x35\x28\x1a\x07\x05\x03\x10\ +\x0c\x08\x10\x0c\x07\x1c\x14\x0e\x29\x1e\x14\x20\x18\x10\x1e\x16\ +\x0e\x1e\x16\x0e\x1f\x17\x0f\x24\x1b\x12\x20\x18\x10\x1c\x15\x0e\ +\x17\x12\x0b\x15\x10\x0a\x16\x11\x0a\x1a\x13\x0c\x17\x11\x0b\x15\ +\x10\x0a\x18\x13\x0c\x1d\x16\x0e\x23\x1a\x11\x2b\x20\x14\x2c\x21\ +\x15\x2c\x20\x15\x32\x27\x18\x23\x1a\x10\x29\x1f\x14\x34\x27\x19\ +\x17\x12\x0b\x27\x1d\x13\x3f\x30\x20\x1c\x14\x0d\x30\x24\x18\x3a\ +\x2b\x1d\x2b\x20\x14\x20\x18\x0f\x20\x18\x0f\x1d\x16\x0e\x24\x1b\ +\x11\x22\x1a\x10\x29\x1e\x13\x1f\x17\x0f\x1f\x18\x0f\x1f\x17\x0f\ +\x20\x19\x10\x2a\x1f\x15\x2b\x1f\x14\x2c\x21\x15\x2d\x22\x16\x29\ +\x1e\x14\x30\x23\x17\x27\x1d\x13\x27\x1d\x12\x2e\x22\x16\x2d\x21\ +\x16\x2d\x22\x16\x24\x1b\x11\x22\x1a\x11\x22\x1a\x10\x20\x18\x0f\ +\x1a\x13\x0c\x1d\x15\x0e\x1c\x15\x0d\x14\x10\x0a\x18\x13\x0c\x17\ +\x11\x0b\x17\x11\x0a\x15\x10\x0a\x1b\x15\x0d\x1e\x16\x0e\x1c\x15\ +\x0d\x17\x12\x0b\x1b\x14\x0d\x22\x19\x10\x1e\x17\x0f\x15\x0f\x0a\ +\x1b\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x27\ +\x1d\x12\x30\x24\x17\x30\x24\x17\x2d\x22\x16\x2b\x21\x15\x1e\x16\ +\x0e\x15\x10\x0a\x15\x10\x0a\x1d\x16\x0d\x1a\x14\x0c\x1b\x14\x0c\ +\x1e\x17\x0e\x24\x1b\x11\x2d\x22\x15\x23\x1a\x11\x22\x1a\x11\x26\ +\x1d\x12\x26\x1d\x13\x2b\x21\x14\x25\x1c\x11\x27\x1d\x12\x27\x1d\ +\x13\x2b\x20\x14\x2a\x1f\x14\x28\x1d\x13\x23\x1b\x11\x26\x1d\x13\ +\x2f\x23\x16\x2a\x20\x14\x2b\x21\x15\x23\x1b\x11\x24\x1b\x11\x23\ +\x1a\x11\x24\x1b\x11\x24\x1b\x11\x24\x1a\x11\x21\x19\x10\x26\x1d\ +\x12\x2c\x21\x16\x2a\x20\x14\x30\x24\x17\x30\x25\x17\x31\x25\x17\ +\x2a\x20\x14\x29\x22\x1b\x2e\x31\x32\x35\x3a\x3d\x44\x4a\x4d\x23\ +\x27\x29\x40\x45\x49\x63\x6a\x6f\x54\x5b\x62\x6f\x77\x7d\x3c\x3f\ +\x44\x2f\x33\x37\x84\x8a\x8f\x78\x7e\x81\x45\x48\x4c\x42\x47\x4b\ +\x8b\x95\x99\x60\x68\x6c\x20\x23\x28\x53\x58\x5d\x7b\x82\x86\x21\ +\x22\x24\x00\x00\x00\x2e\x32\x35\x7e\x88\x8c\x8d\x96\x9a\x31\x34\ +\x38\x67\x6b\x6e\x7d\x83\x88\x8b\x91\x96\x00\x00\x00\x9c\x87\x6f\ +\x33\x28\x1d\x02\x01\x00\x26\x1d\x13\x3a\x2b\x1c\x1e\x16\x0e\x2a\ +\x20\x14\x3d\x2d\x1d\x38\x2a\x1a\x0f\x0b\x07\x0e\x0a\x07\x17\x11\ +\x0b\x1f\x18\x0f\x28\x1e\x13\x27\x1e\x13\x1c\x15\x0d\x19\x13\x0c\ +\x24\x1b\x11\x29\x1e\x13\x25\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x1c\ +\x15\x0d\x18\x12\x0b\x18\x12\x0b\x14\x0f\x0a\x16\x11\x0b\x18\x13\ +\x0c\x1f\x17\x0f\x2b\x1f\x15\x23\x1a\x11\x20\x19\x10\x1a\x14\x0c\ +\x2f\x24\x17\x28\x1e\x14\x33\x26\x18\x3d\x2e\x1e\x13\x0f\x09\x28\ +\x1f\x14\x46\x35\x24\x18\x12\x0b\x31\x25\x18\x3f\x30\x1f\x2b\x20\ +\x15\x24\x1b\x11\x29\x1f\x14\x22\x1a\x10\x28\x1e\x13\x2b\x21\x15\ +\x27\x1d\x13\x29\x1e\x14\x21\x19\x10\x20\x19\x10\x23\x1a\x11\x23\ +\x1b\x11\x2e\x22\x16\x25\x1c\x12\x2f\x23\x16\x2e\x22\x16\x2e\x22\ +\x16\x2e\x23\x16\x2f\x23\x17\x37\x29\x1a\x33\x26\x18\x2c\x21\x15\ +\x24\x1b\x11\x1f\x18\x0f\x21\x19\x10\x1e\x17\x0e\x23\x1b\x11\x27\ +\x1d\x13\x19\x13\x0c\x17\x11\x0a\x18\x12\x0b\x1a\x13\x0c\x17\x12\ +\x0b\x16\x10\x0a\x1d\x17\x0e\x2e\x23\x17\x27\x1e\x13\x1e\x17\x0e\ +\x18\x12\x0c\x21\x19\x10\x1a\x13\x0c\x17\x11\x0b\x16\x10\x0a\x13\ +\x0e\x09\x14\x0f\x09\x18\x12\x0b\x1b\x14\x0d\x1e\x16\x0e\x25\x1c\ +\x12\x2a\x1f\x14\x27\x1d\x13\x27\x1d\x13\x26\x1d\x12\x1a\x14\x0c\ +\x19\x13\x0c\x1f\x17\x0f\x24\x1b\x11\x1f\x18\x0e\x1c\x15\x0e\x27\ +\x1d\x12\x24\x1a\x11\x2e\x22\x16\x30\x25\x17\x35\x28\x19\x29\x1e\ +\x14\x25\x1c\x11\x2a\x20\x14\x2e\x23\x16\x2b\x20\x14\x29\x1f\x14\ +\x2b\x21\x14\x28\x1e\x13\x24\x1a\x11\x2d\x21\x16\x2f\x23\x16\x30\ +\x24\x17\x2e\x22\x16\x28\x1e\x13\x26\x1d\x13\x25\x1c\x12\x21\x19\ +\x10\x22\x19\x10\x2a\x20\x14\x24\x1b\x11\x1f\x17\x0e\x22\x1a\x10\ +\x25\x1c\x12\x2d\x22\x16\x33\x27\x18\x2e\x22\x16\x2a\x1f\x15\x30\ +\x27\x1e\x32\x32\x31\x33\x38\x3b\x44\x4a\x4d\x31\x37\x39\x1e\x24\ +\x26\x43\x48\x4c\x0b\x0c\x0e\x55\x5a\x62\x72\x79\x7f\x70\x75\x79\ +\x7a\x80\x85\x81\x87\x8b\x78\x7e\x81\x4b\x4f\x54\x4f\x55\x5b\x5a\ +\x61\x64\x52\x55\x59\x57\x5c\x61\x39\x3c\x41\x0c\x0d\x0e\x00\x00\ +\x00\x23\x25\x27\x2d\x31\x36\x71\x77\x7d\x29\x2b\x30\x8b\x93\x97\ +\x8e\x96\x9c\x8e\x94\x99\x00\x00\x00\xc4\xb5\xa9\x4c\x41\x34\x07\ +\x05\x03\x00\x00\x00\x2f\x24\x17\x20\x18\x0f\x33\x27\x19\x3c\x2e\ +\x1d\x3a\x2b\x1c\x0f\x0c\x07\x0a\x07\x05\x19\x14\x0c\x25\x1c\x11\ +\x27\x1d\x12\x25\x1c\x12\x1b\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x24\ +\x1b\x11\x27\x1d\x12\x1f\x17\x0f\x18\x12\x0b\x1b\x14\x0d\x1e\x16\ +\x0e\x1f\x18\x0f\x19\x13\x0c\x11\x0d\x08\x11\x0d\x08\x1b\x15\x0d\ +\x1d\x16\x0e\x18\x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x31\x26\x19\x1b\ +\x14\x0d\x21\x18\x10\x2c\x20\x15\x0f\x0b\x07\x23\x1b\x11\x44\x34\ +\x23\x1b\x15\x0d\x2b\x21\x15\x40\x30\x20\x41\x31\x20\x36\x29\x1b\ +\x2d\x22\x16\x27\x1d\x12\x2c\x21\x15\x26\x1d\x13\x2b\x20\x15\x30\ +\x25\x17\x2b\x20\x14\x30\x24\x17\x23\x1a\x10\x1d\x16\x0e\x23\x1a\ +\x10\x26\x1c\x12\x27\x1d\x12\x22\x1a\x10\x23\x1a\x11\x2b\x21\x15\ +\x2f\x24\x17\x2d\x21\x15\x2a\x20\x14\x28\x1e\x13\x28\x1e\x13\x24\ +\x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x3c\x2d\x1d\x30\x24\x18\x20\x18\ +\x0f\x1a\x14\x0c\x14\x0f\x0a\x19\x13\x0c\x18\x12\x0b\x17\x12\x0b\ +\x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x19\x10\x1d\x15\x0e\x1f\ +\x17\x0f\x1a\x13\x0d\x18\x13\x0c\x1d\x16\x0d\x20\x18\x0f\x22\x1a\ +\x11\x25\x1c\x12\x2d\x21\x15\x26\x1d\x12\x23\x1b\x11\x29\x1e\x14\ +\x28\x1e\x13\x2b\x21\x15\x2c\x21\x15\x1f\x17\x0f\x1f\x17\x0f\x22\ +\x1a\x11\x22\x19\x11\x22\x1a\x10\x20\x18\x0f\x20\x18\x0f\x25\x1c\ +\x11\x29\x1f\x14\x28\x1e\x13\x27\x1d\x13\x25\x1c\x11\x24\x1b\x11\ +\x2b\x20\x15\x22\x1a\x10\x24\x1c\x11\x27\x1e\x13\x2a\x20\x14\x28\ +\x1e\x13\x23\x1a\x11\x29\x1e\x14\x31\x25\x18\x30\x25\x17\x32\x26\ +\x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x14\x26\x1d\x12\x22\x19\x10\ +\x23\x1b\x11\x26\x1d\x13\x27\x1d\x13\x27\x1e\x13\x21\x19\x0f\x2e\ +\x23\x16\x2b\x21\x15\x27\x1d\x13\x24\x1b\x12\x33\x29\x1f\x37\x35\ +\x32\x33\x38\x3b\x42\x48\x4b\x34\x3a\x3c\x2e\x33\x36\x08\x08\x09\ +\x2f\x30\x33\x68\x6e\x75\x78\x80\x85\x7c\x83\x88\x7c\x82\x87\x80\ +\x87\x8c\x80\x87\x8a\x7c\x82\x85\x3e\x42\x46\x28\x2b\x2e\x76\x7c\ +\x7f\x88\x90\x93\x4b\x4f\x53\x09\x09\x09\x00\x00\x00\x61\x65\x68\ +\x6a\x6f\x75\x13\x14\x18\x63\x67\x6d\x8e\x96\x9a\x8e\x95\x9a\x8b\ +\x91\x96\x00\x00\x00\xc3\xb2\xa4\x59\x49\x39\x0a\x08\x05\x00\x00\ +\x00\x18\x12\x0c\x1c\x15\x0e\x1d\x16\x0e\x35\x28\x1a\x45\x33\x21\ +\x1b\x15\x0d\x17\x11\x0a\x21\x1a\x10\x26\x1c\x12\x25\x1c\x12\x2a\ +\x20\x14\x25\x1c\x12\x1c\x15\x0d\x1d\x16\x0e\x20\x18\x0f\x26\x1c\ +\x12\x23\x1a\x11\x15\x10\x0a\x14\x0f\x0a\x1d\x15\x0e\x20\x18\x0f\ +\x1f\x18\x0f\x14\x0f\x09\x0b\x08\x05\x17\x12\x0b\x14\x0f\x0a\x1c\ +\x15\x0d\x2d\x21\x16\x2e\x22\x17\x49\x38\x25\x19\x13\x0c\x16\x11\ +\x0b\x32\x25\x18\x14\x0f\x09\x1f\x18\x0f\x37\x2a\x1c\x1e\x17\x0f\ +\x1f\x18\x0f\x3a\x2c\x1d\x58\x43\x2e\x4d\x3b\x28\x32\x26\x18\x28\ +\x1e\x13\x2d\x22\x16\x26\x1c\x12\x24\x1b\x12\x2d\x22\x15\x2a\x20\ +\x14\x33\x26\x18\x28\x1e\x14\x21\x19\x10\x24\x1a\x11\x24\x1b\x11\ +\x27\x1c\x12\x1d\x16\x0e\x20\x17\x0f\x28\x1e\x13\x29\x1f\x13\x27\ +\x1e\x13\x28\x1e\x13\x26\x1c\x12\x25\x1c\x11\x23\x1b\x11\x1f\x17\ +\x0f\x21\x18\x0f\x2c\x20\x15\x23\x1b\x12\x1e\x17\x0f\x1c\x15\x0d\ +\x19\x13\x0c\x1e\x17\x0e\x1a\x14\x0c\x1e\x16\x0e\x22\x1a\x10\x1c\ +\x15\x0d\x21\x19\x10\x25\x1c\x12\x27\x1e\x13\x2a\x1f\x14\x1d\x16\ +\x0e\x1b\x15\x0d\x22\x1a\x10\x25\x1c\x12\x2b\x21\x15\x31\x25\x17\ +\x36\x29\x1a\x2d\x22\x16\x20\x18\x0f\x25\x1b\x12\x2c\x21\x15\x31\ +\x26\x18\x33\x27\x19\x22\x19\x10\x22\x1a\x10\x1e\x16\x0e\x1d\x16\ +\x0e\x1e\x16\x0e\x1b\x15\x0d\x1d\x15\x0d\x27\x1e\x13\x28\x1f\x14\ +\x30\x24\x17\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x29\x1e\x14\x2e\ +\x23\x17\x2c\x22\x16\x29\x1f\x13\x26\x1c\x12\x2a\x1f\x14\x26\x1c\ +\x12\x27\x1e\x14\x31\x25\x18\x28\x1e\x13\x2d\x22\x16\x38\x29\x1b\ +\x38\x29\x1b\x27\x1d\x12\x26\x1c\x12\x23\x1a\x11\x27\x1d\x12\x22\ +\x19\x11\x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x2e\x22\x16\x23\x1b\ +\x11\x24\x1b\x12\x28\x1e\x13\x33\x28\x1c\x34\x32\x2f\x32\x36\x39\ +\x45\x4a\x4d\x21\x25\x27\x00\x00\x00\x3b\x3e\x40\x6e\x73\x78\x73\ +\x7b\x80\x4f\x57\x5b\x6b\x71\x76\x7e\x85\x89\x7e\x86\x8a\x81\x89\ +\x8d\x83\x8a\x8f\x7b\x81\x86\x48\x4b\x4f\x59\x5d\x62\x8d\x95\x99\ +\x67\x6d\x71\x26\x26\x29\x2b\x2a\x2e\x85\x8c\x92\x8c\x95\x9a\x1b\ +\x1b\x21\x8d\x92\x98\x8c\x92\x97\x8d\x93\x98\x8d\x93\x98\x00\x00\ +\x00\xc6\xb9\xb0\x64\x51\x3f\x0e\x0b\x06\x01\x01\x01\x19\x12\x0c\ +\x21\x1a\x10\x17\x11\x0b\x3f\x30\x1e\x46\x34\x22\x29\x1f\x14\x17\ +\x12\x0b\x1f\x17\x0f\x1c\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x16\x10\ +\x0b\x11\x0d\x08\x14\x0f\x0a\x1a\x13\x0c\x24\x1b\x11\x1f\x17\x0f\ +\x13\x0e\x09\x14\x0f\x0a\x19\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1a\ +\x13\x0c\x12\x0d\x08\x17\x11\x0b\x0c\x0a\x07\x2c\x21\x16\x41\x32\ +\x21\x46\x36\x24\x52\x3f\x2a\x15\x10\x0a\x15\x10\x0a\x29\x1f\x14\ +\x12\x0e\x08\x1d\x16\x0e\x32\x26\x19\x1c\x16\x0d\x19\x12\x0b\x38\ +\x2a\x1c\x38\x2a\x1c\x21\x19\x0f\x2b\x20\x14\x2d\x21\x15\x26\x1c\ +\x13\x24\x1b\x11\x26\x1c\x12\x25\x1c\x12\x27\x1e\x14\x30\x24\x17\ +\x2a\x20\x14\x1d\x16\x0f\x1e\x17\x0f\x21\x18\x0f\x20\x18\x0f\x20\ +\x18\x0f\x22\x19\x11\x28\x1e\x13\x28\x1e\x13\x25\x1c\x12\x29\x1f\ +\x14\x2b\x20\x15\x27\x1d\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\ +\x23\x1b\x11\x1e\x17\x0f\x1d\x16\x0d\x1f\x17\x0e\x25\x1b\x11\x1e\ +\x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x1b\x14\x0d\x1d\x15\ +\x0e\x1f\x18\x0f\x2a\x20\x14\x31\x25\x17\x25\x1c\x11\x20\x18\x0f\ +\x1f\x17\x0f\x21\x18\x0f\x28\x1d\x13\x2a\x1f\x14\x2b\x20\x14\x2a\ +\x20\x14\x28\x1e\x13\x24\x1c\x12\x21\x19\x10\x28\x1f\x13\x2d\x22\ +\x15\x2f\x24\x17\x2a\x20\x14\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0e\ +\x1c\x15\x0d\x19\x13\x0c\x24\x1a\x11\x28\x1d\x13\x29\x1f\x14\x2d\ +\x22\x16\x23\x1a\x10\x23\x1a\x10\x28\x1e\x13\x31\x25\x17\x33\x26\ +\x19\x2b\x21\x15\x29\x1e\x13\x27\x1d\x13\x21\x19\x10\x26\x1c\x12\ +\x26\x1d\x13\x27\x1d\x13\x2b\x20\x15\x32\x25\x18\x33\x26\x19\x29\ +\x1f\x13\x29\x1f\x14\x2b\x20\x14\x24\x1b\x11\x25\x1b\x11\x1b\x15\ +\x0d\x1c\x15\x0d\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\x29\x1f\x14\ +\x30\x24\x17\x2b\x21\x18\x2a\x2a\x27\x32\x36\x39\x42\x45\x49\x21\ +\x23\x25\x3d\x40\x44\x64\x69\x6d\x6c\x73\x77\x73\x7b\x7e\x43\x47\ +\x4a\x25\x29\x2c\x7a\x82\x86\x7f\x85\x89\x80\x86\x8b\x80\x89\x8d\ +\x83\x8c\x90\x7d\x83\x87\x43\x44\x49\x63\x65\x6a\x42\x46\x4b\x7a\ +\x7e\x83\x5c\x5d\x63\x5a\x5c\x63\x5b\x5f\x62\x54\x56\x5b\x8e\x94\ +\x99\x8f\x95\x9a\x8f\x95\x9a\x8e\x94\x99\x00\x00\x00\xc6\xb9\xb0\ +\x6f\x5d\x4a\x0f\x0b\x07\x00\x00\x00\x17\x11\x0b\x21\x19\x10\x1b\ +\x14\x0d\x3d\x2d\x1d\x3e\x2e\x1e\x20\x18\x0f\x15\x10\x0a\x1f\x17\ +\x0f\x1d\x16\x0d\x17\x12\x0b\x14\x0f\x09\x12\x0d\x09\x12\x0e\x09\ +\x13\x0f\x09\x16\x10\x0a\x21\x19\x0f\x23\x1a\x11\x18\x12\x0b\x11\ +\x0c\x08\x11\x0d\x09\x15\x10\x0a\x16\x10\x0a\x1b\x15\x0d\x1b\x14\ +\x0d\x15\x10\x0a\x0d\x0a\x06\x1c\x15\x0d\x20\x18\x0f\x21\x19\x10\ +\x43\x33\x22\x16\x11\x0a\x1d\x15\x0e\x2a\x1f\x14\x19\x13\x0c\x18\ +\x12\x0c\x30\x25\x18\x21\x19\x10\x0f\x0b\x06\x3a\x2c\x1d\x40\x31\ +\x20\x20\x18\x0f\x37\x2a\x1b\x2d\x23\x16\x2a\x20\x14\x29\x1f\x14\ +\x2d\x22\x16\x2c\x21\x15\x25\x1c\x12\x26\x1d\x12\x2a\x20\x15\x1d\ +\x16\x0e\x20\x18\x10\x27\x1d\x12\x1f\x17\x0e\x23\x1a\x10\x25\x1c\ +\x12\x29\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\x1d\x12\x2b\x20\x15\ +\x2c\x21\x16\x29\x1e\x14\x25\x1c\x12\x23\x1b\x11\x26\x1d\x12\x26\ +\x1d\x12\x22\x1a\x10\x21\x19\x10\x21\x19\x0f\x1e\x17\x0e\x1b\x15\ +\x0d\x1b\x14\x0c\x21\x19\x11\x20\x18\x10\x20\x18\x10\x24\x1c\x12\ +\x2c\x21\x15\x34\x27\x19\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\ +\x15\x0e\x21\x19\x10\x22\x1a\x11\x29\x1f\x14\x2c\x21\x15\x25\x1b\ +\x11\x26\x1c\x12\x1c\x15\x0e\x1b\x15\x0d\x1d\x17\x0e\x28\x1e\x13\ +\x2e\x23\x17\x2c\x22\x15\x2e\x23\x16\x23\x1a\x11\x1c\x15\x0d\x1e\ +\x17\x0e\x21\x18\x0f\x20\x18\x0f\x22\x1a\x10\x28\x1e\x13\x30\x24\ +\x17\x24\x1b\x11\x23\x1b\x11\x29\x1f\x13\x31\x25\x17\x2b\x20\x14\ +\x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x20\x19\x0f\x25\x1c\x11\x28\ +\x1e\x13\x29\x1f\x13\x32\x25\x18\x2e\x22\x16\x2a\x20\x14\x2a\x1f\ +\x14\x2d\x21\x16\x29\x1f\x13\x2b\x21\x14\x23\x1a\x11\x20\x19\x10\ +\x20\x19\x0f\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x22\x15\x2a\ +\x21\x16\x2a\x28\x25\x31\x36\x39\x3d\x42\x44\x4a\x4e\x51\x57\x5c\ +\x60\x60\x65\x6a\x6d\x72\x78\x74\x7b\x80\x11\x12\x13\x7c\x82\x86\ +\x46\x4d\x50\x68\x6d\x71\x82\x8a\x8f\x81\x8a\x8f\x81\x89\x8e\x87\ +\x8f\x94\x7f\x85\x89\x3f\x41\x45\x34\x35\x38\x7c\x83\x88\x8e\x95\ +\x9c\x5c\x5f\x66\x10\x10\x12\x82\x86\x8a\x8f\x94\x99\x90\x94\x99\ +\x90\x95\x9a\x8f\x93\x98\x00\x00\x00\xca\xc0\xbb\x7a\x68\x57\x12\ +\x0e\x09\x00\x00\x00\x0d\x0a\x06\x1c\x15\x0d\x19\x12\x0c\x33\x26\ +\x18\x34\x27\x19\x1d\x16\x0d\x1b\x14\x0d\x24\x1b\x11\x1d\x16\x0e\ +\x1a\x14\x0d\x14\x10\x0a\x1a\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1d\ +\x15\x0d\x1e\x17\x0f\x28\x1e\x13\x29\x1f\x13\x1e\x17\x0e\x17\x11\ +\x0b\x17\x11\x0b\x19\x13\x0c\x1b\x14\x0c\x27\x1d\x13\x1c\x15\x0d\ +\x0c\x0a\x05\x2b\x20\x14\x1c\x15\x0e\x1c\x16\x0e\x54\x40\x2b\x12\ +\x0e\x07\x16\x10\x0a\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x24\x1b\ +\x12\x34\x27\x1a\x21\x1a\x11\x58\x44\x2e\x52\x3f\x2b\x14\x0e\x08\ +\x5b\x45\x2f\x39\x2c\x1d\x1e\x16\x0e\x26\x1c\x12\x2b\x20\x15\x2a\ +\x20\x14\x27\x1d\x12\x28\x1e\x14\x2b\x20\x14\x22\x1a\x10\x21\x19\ +\x10\x2a\x1f\x14\x21\x18\x10\x24\x1b\x11\x26\x1c\x12\x27\x1d\x12\ +\x1f\x18\x0f\x22\x19\x10\x28\x1e\x13\x2c\x21\x15\x2b\x21\x15\x2e\ +\x22\x16\x2a\x20\x15\x24\x1b\x11\x2b\x20\x15\x2d\x22\x16\x31\x25\ +\x18\x34\x27\x19\x25\x1c\x11\x1b\x15\x0d\x17\x12\x0b\x1b\x14\x0c\ +\x1b\x14\x0d\x1e\x16\x0f\x1b\x14\x0d\x1f\x17\x0f\x21\x19\x0f\x29\ +\x1f\x14\x29\x1f\x14\x28\x1e\x13\x1e\x17\x0e\x1a\x13\x0c\x1d\x16\ +\x0e\x21\x19\x10\x23\x1a\x11\x29\x1e\x14\x2b\x20\x14\x2a\x1f\x14\ +\x23\x1a\x11\x1d\x16\x0e\x17\x12\x0b\x1c\x15\x0e\x28\x1d\x13\x2b\ +\x21\x15\x37\x2a\x1a\x2a\x1f\x14\x21\x19\x10\x18\x12\x0c\x1f\x17\ +\x0f\x22\x1a\x10\x27\x1d\x13\x2b\x20\x15\x2c\x21\x16\x20\x18\x0f\ +\x1e\x17\x0e\x20\x18\x0f\x2a\x20\x14\x2b\x20\x14\x28\x1f\x13\x24\ +\x1b\x11\x22\x1a\x10\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\x27\x1d\ +\x13\x2f\x23\x17\x2b\x20\x14\x2b\x20\x14\x26\x1d\x12\x28\x1e\x13\ +\x29\x1f\x14\x27\x1d\x12\x2c\x21\x15\x28\x1e\x13\x27\x1e\x13\x29\ +\x1f\x13\x28\x1e\x14\x24\x1b\x11\x23\x1b\x11\x29\x1f\x15\x2a\x27\ +\x23\x30\x33\x36\x3b\x3f\x41\x48\x4c\x4f\x55\x5a\x5e\x5e\x64\x69\ +\x6e\x74\x7a\x3e\x43\x48\x26\x26\x28\x87\x91\x94\x24\x27\x28\x46\ +\x4a\x4e\x77\x7f\x82\x81\x8a\x8f\x82\x8a\x91\x84\x8b\x91\x86\x8e\ +\x92\x88\x8e\x90\x4a\x4b\x4d\x5e\x60\x64\x88\x8e\x94\x76\x7b\x82\ +\x40\x42\x45\x90\x95\x99\x8f\x94\x99\x93\x96\x9b\x90\x94\x99\x91\ +\x96\x9b\x00\x00\x00\xc8\xbf\xb8\x83\x6b\x55\x14\x0f\x0a\x00\x00\ +\x00\x0b\x08\x05\x1e\x17\x0e\x18\x12\x0b\x2f\x24\x16\x32\x26\x18\ +\x1e\x16\x0e\x15\x10\x0a\x22\x1a\x11\x1e\x16\x0e\x19\x13\x0c\x18\ +\x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x1d\x16\ +\x0e\x21\x19\x10\x2a\x20\x14\x28\x1f\x13\x20\x18\x10\x1f\x17\x0e\ +\x1c\x15\x0e\x1c\x14\x0d\x27\x1d\x13\x21\x19\x10\x0b\x08\x05\x37\ +\x2a\x1b\x15\x10\x0a\x11\x0d\x08\x5c\x46\x2f\x38\x2c\x1d\x47\x36\ +\x25\x3c\x2e\x1e\x22\x1a\x10\x21\x19\x10\x33\x26\x19\x53\x40\x2b\ +\x3b\x2d\x1e\x58\x43\x2e\x64\x4c\x35\x2f\x24\x18\x5d\x47\x31\x36\ +\x29\x1c\x17\x11\x0a\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2d\x22\ +\x16\x2c\x21\x15\x29\x1f\x13\x20\x19\x0f\x25\x1c\x11\x25\x1c\x12\ +\x29\x1e\x14\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x21\x19\x10\x24\ +\x1b\x11\x26\x1c\x12\x29\x1f\x14\x2a\x20\x14\x31\x24\x17\x2c\x21\ +\x15\x29\x1f\x13\x27\x1d\x13\x27\x1d\x13\x2b\x20\x14\x36\x28\x19\ +\x2a\x20\x15\x1b\x14\x0d\x16\x11\x0a\x13\x0e\x09\x19\x12\x0c\x20\ +\x18\x10\x1b\x15\x0d\x1b\x14\x0d\x20\x19\x0f\x22\x19\x10\x28\x1e\ +\x13\x32\x26\x18\x27\x1e\x12\x1d\x16\x0e\x1b\x14\x0d\x22\x19\x10\ +\x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x1b\ +\x14\x0d\x1a\x13\x0c\x1d\x16\x0d\x21\x19\x10\x29\x1f\x13\x34\x27\ +\x19\x31\x24\x18\x28\x1e\x13\x1a\x14\x0d\x17\x12\x0b\x1e\x17\x0e\ +\x20\x18\x0f\x28\x1e\x13\x23\x1a\x11\x1b\x14\x0d\x1a\x13\x0d\x20\ +\x18\x0f\x24\x1c\x11\x26\x1d\x12\x2e\x23\x16\x2b\x20\x14\x24\x1b\ +\x11\x29\x1e\x14\x2e\x22\x16\x2e\x22\x16\x29\x1f\x14\x2e\x22\x16\ +\x31\x24\x17\x31\x24\x17\x29\x1f\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ +\x20\x14\x30\x24\x17\x2d\x21\x15\x2b\x21\x14\x2e\x22\x16\x2a\x1f\ +\x15\x29\x1e\x14\x2a\x20\x14\x2b\x20\x15\x2a\x26\x21\x2f\x33\x35\ +\x3b\x40\x42\x47\x4c\x4f\x54\x5a\x5d\x5f\x66\x69\x6a\x71\x76\x5f\ +\x63\x69\x40\x42\x47\x5e\x64\x65\x1e\x20\x20\x8e\x94\x99\x2a\x2d\ +\x31\x75\x7d\x83\x88\x91\x98\x80\x88\x8f\x83\x8a\x90\x87\x8d\x90\ +\x83\x88\x88\x41\x44\x45\x60\x63\x66\x3b\x3c\x3f\x78\x7b\x80\x8f\ +\x93\x98\x94\x97\x9c\x91\x95\x9a\x8f\x93\x98\x92\x96\x9b\x00\x00\ +\x00\xc6\xb9\xae\x99\x86\x72\x1a\x15\x12\x00\x00\x00\x15\x10\x0b\ +\x2e\x23\x17\x1e\x16\x0e\x30\x24\x17\x3e\x2e\x1d\x1d\x16\x0e\x13\ +\x0f\x09\x27\x1d\x13\x22\x19\x10\x1e\x16\x0e\x25\x1c\x12\x20\x18\ +\x10\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x1e\x17\x0f\x1e\x17\x0e\ +\x24\x1c\x11\x24\x1b\x12\x23\x1a\x11\x29\x1f\x14\x26\x1c\x12\x1b\ +\x14\x0d\x21\x19\x10\x20\x19\x10\x0e\x0a\x07\x31\x25\x19\x3b\x2c\ +\x1d\x20\x18\x10\x7c\x5f\x42\x2c\x22\x17\x3f\x2f\x20\x3c\x2d\x1e\ +\x26\x1c\x12\x1f\x17\x0f\x33\x26\x19\x43\x33\x22\x1d\x16\x0e\x37\ +\x2a\x1c\x54\x40\x2c\x54\x41\x2c\x49\x39\x26\x1c\x15\x0e\x1c\x15\ +\x0e\x21\x19\x10\x1b\x15\x0d\x27\x1e\x13\x2b\x20\x15\x2e\x23\x16\ +\x2f\x24\x17\x27\x1d\x12\x24\x1b\x11\x25\x1c\x12\x26\x1c\x13\x2c\ +\x21\x15\x31\x25\x18\x2a\x1f\x14\x25\x1c\x12\x21\x19\x10\x26\x1c\ +\x12\x29\x1e\x13\x30\x23\x16\x32\x25\x17\x2c\x21\x15\x2f\x23\x16\ +\x2d\x22\x16\x2e\x23\x16\x22\x1a\x10\x26\x1c\x12\x21\x19\x10\x18\ +\x12\x0c\x13\x0e\x09\x10\x0c\x08\x19\x13\x0c\x21\x18\x10\x1c\x15\ +\x0d\x1b\x15\x0d\x19\x13\x0c\x1f\x18\x0f\x2a\x20\x14\x2d\x22\x15\ +\x29\x1f\x13\x24\x1b\x11\x1b\x15\x0d\x1f\x17\x0f\x25\x1b\x11\x23\ +\x1b\x11\x24\x1b\x11\x25\x1b\x12\x22\x19\x10\x1f\x18\x0f\x1f\x17\ +\x0f\x20\x18\x0f\x20\x18\x10\x1e\x17\x0e\x25\x1c\x12\x2d\x22\x15\ +\x2a\x1f\x14\x27\x1d\x13\x1d\x16\x0e\x1c\x16\x0e\x1e\x17\x0e\x1d\ +\x15\x0e\x1d\x16\x0e\x1b\x14\x0d\x18\x12\x0c\x1f\x17\x0f\x23\x1a\ +\x11\x2c\x21\x15\x37\x29\x1a\x33\x26\x19\x29\x1f\x14\x2b\x20\x15\ +\x35\x28\x19\x33\x26\x19\x32\x26\x18\x2d\x22\x15\x31\x25\x18\x32\ +\x25\x18\x34\x27\x19\x31\x25\x18\x32\x25\x18\x31\x26\x18\x36\x29\ +\x1a\x2e\x22\x16\x29\x1f\x14\x30\x24\x17\x2b\x20\x15\x26\x1c\x12\ +\x29\x1f\x13\x28\x1e\x14\x26\x23\x1e\x2f\x33\x34\x3a\x3f\x41\x45\ +\x4c\x4e\x52\x59\x5c\x5d\x65\x68\x66\x6e\x72\x77\x7e\x83\x64\x68\ +\x6d\x1b\x1d\x1e\x4d\x50\x53\x75\x7a\x7e\x18\x1a\x1b\x63\x68\x6c\ +\x70\x77\x7d\x82\x8b\x92\x79\x81\x87\x7f\x84\x86\x87\x8c\x8e\x89\ +\x8e\x90\x50\x51\x55\x32\x31\x35\x8f\x93\x98\x8e\x92\x97\x90\x95\ +\x99\x8f\x93\x98\x90\x94\x99\x91\x96\x9a\x00\x00\x00\xcb\xc1\xb8\ +\x9e\x84\x6c\x1b\x15\x0f\x00\x00\x00\x18\x13\x0c\x39\x2c\x1d\x1e\ +\x17\x0f\x2d\x22\x16\x41\x31\x1f\x25\x1c\x11\x10\x0c\x07\x1f\x17\ +\x0f\x1e\x16\x0f\x1c\x16\x0e\x28\x1f\x14\x24\x1b\x11\x1e\x16\x0e\ +\x26\x1c\x12\x1f\x17\x0e\x1c\x15\x0d\x1a\x14\x0c\x1e\x16\x0f\x23\ +\x1a\x11\x23\x1a\x11\x26\x1c\x12\x2b\x20\x14\x1e\x17\x0f\x2e\x22\ +\x16\x2d\x22\x15\x13\x0f\x09\x39\x2b\x1d\x3a\x2c\x1d\x5c\x47\x30\ +\x59\x45\x2f\x0e\x0a\x06\x16\x10\x0a\x30\x24\x18\x34\x27\x19\x26\ +\x1c\x11\x37\x29\x1b\x3f\x30\x20\x16\x10\x0a\x3e\x2f\x20\x45\x34\ +\x24\x2c\x21\x16\x39\x2b\x1d\x26\x1d\x13\x26\x1d\x13\x24\x1c\x12\ +\x1b\x14\x0d\x1c\x15\x0d\x26\x1d\x12\x2e\x23\x16\x2e\x22\x15\x2a\ +\x20\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x2d\x21\x15\x34\x27\ +\x19\x2d\x22\x16\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2a\x20\x14\ +\x33\x26\x18\x32\x26\x18\x2e\x23\x16\x31\x24\x17\x38\x2a\x1b\x38\ +\x2a\x1b\x2a\x20\x14\x22\x19\x10\x1d\x15\x0d\x19\x12\x0b\x17\x12\ +\x0b\x17\x12\x0b\x16\x11\x0a\x20\x18\x0f\x21\x19\x0f\x1b\x15\x0d\ +\x1d\x16\x0e\x1e\x17\x0e\x26\x1d\x13\x25\x1c\x12\x21\x19\x10\x21\ +\x19\x0f\x1e\x16\x0e\x22\x19\x10\x23\x1a\x11\x20\x18\x0f\x28\x1f\ +\x13\x26\x1c\x12\x26\x1d\x12\x22\x1a\x10\x23\x1b\x11\x28\x1e\x13\ +\x23\x1a\x10\x25\x1b\x11\x23\x1a\x11\x2d\x22\x15\x2d\x22\x16\x2b\ +\x1f\x14\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\x24\x1b\x12\x23\x1b\ +\x11\x20\x18\x0f\x1d\x16\x0e\x1e\x16\x0e\x23\x1b\x11\x30\x25\x17\ +\x32\x26\x18\x2b\x20\x15\x27\x1d\x13\x31\x25\x17\x32\x26\x18\x2c\ +\x21\x15\x31\x24\x17\x2d\x22\x16\x2d\x22\x15\x2e\x23\x16\x37\x29\ +\x1a\x36\x28\x19\x31\x25\x17\x33\x26\x19\x32\x25\x18\x30\x24\x17\ +\x2c\x20\x15\x2b\x20\x14\x2a\x20\x14\x28\x1e\x13\x24\x1b\x11\x24\ +\x1b\x11\x2d\x26\x1e\x2f\x33\x35\x39\x3d\x40\x44\x49\x4d\x52\x59\ +\x5c\x5c\x63\x65\x65\x6e\x72\x72\x7a\x7f\x7c\x82\x86\x6f\x75\x79\ +\x47\x49\x4c\x3a\x3c\x3d\x4c\x50\x50\x51\x54\x55\x32\x34\x37\x75\ +\x7d\x82\x54\x59\x5e\x5c\x5f\x61\x86\x8a\x8c\x8a\x90\x93\x8f\x93\ +\x98\x81\x83\x89\x8b\x8f\x94\x8f\x94\x98\x90\x95\x99\x91\x95\x9a\ +\x93\x96\x9b\x93\x97\x9b\x00\x00\x00\xc9\xc1\xbd\xb9\xa7\x96\x21\ +\x1c\x17\x00\x00\x00\x08\x07\x04\x2e\x23\x17\x1e\x17\x0e\x26\x1c\ +\x12\x34\x27\x19\x23\x1a\x11\x0e\x0b\x07\x18\x12\x0b\x19\x12\x0b\ +\x1e\x16\x0e\x25\x1c\x12\x22\x1a\x10\x22\x19\x10\x23\x1a\x11\x19\ +\x13\x0c\x1a\x13\x0d\x1c\x15\x0e\x1f\x17\x0f\x27\x1e\x13\x2a\x1f\ +\x14\x28\x1e\x13\x29\x1f\x14\x1b\x14\x0d\x21\x19\x10\x2c\x21\x15\ +\x20\x18\x0f\x4e\x3b\x27\x23\x1b\x12\x34\x28\x1a\x39\x2c\x1d\x29\ +\x1f\x14\x13\x0f\x09\x2e\x23\x17\x38\x2a\x1b\x20\x17\x0f\x39\x2b\ +\x1d\x4d\x3b\x27\x18\x12\x0b\x4f\x3c\x2a\x4c\x3a\x28\x11\x0d\x08\ +\x21\x19\x10\x30\x24\x18\x28\x1e\x13\x2d\x23\x16\x1b\x15\x0d\x19\ +\x13\x0c\x20\x18\x0f\x27\x1e\x12\x27\x1c\x12\x28\x1d\x13\x2a\x20\ +\x14\x31\x25\x17\x34\x27\x19\x39\x2b\x1b\x31\x25\x17\x31\x25\x18\ +\x28\x1e\x13\x27\x1d\x13\x21\x19\x10\x25\x1c\x12\x2e\x22\x16\x35\ +\x27\x19\x33\x27\x19\x32\x26\x18\x3a\x2c\x1c\x3c\x2d\x1d\x36\x29\ +\x1a\x26\x1c\x12\x24\x1b\x11\x17\x11\x0b\x16\x11\x0a\x13\x0f\x09\ +\x13\x0e\x09\x17\x12\x0b\x19\x14\x0d\x1e\x17\x0f\x20\x18\x10\x21\ +\x19\x0f\x23\x1a\x10\x2a\x1f\x13\x25\x1b\x11\x1f\x17\x0f\x19\x12\ +\x0c\x1d\x15\x0e\x1f\x17\x0f\x1d\x16\x0e\x24\x1c\x12\x29\x1f\x14\ +\x25\x1b\x12\x20\x18\x10\x24\x1b\x11\x30\x24\x16\x30\x24\x17\x37\ +\x2a\x1a\x2d\x21\x16\x37\x29\x1b\x30\x24\x17\x27\x1d\x13\x29\x1f\ +\x14\x2d\x22\x15\x2f\x23\x17\x2c\x21\x15\x1a\x14\x0d\x1c\x15\x0d\ +\x1d\x16\x0e\x1c\x16\x0d\x1e\x17\x0e\x20\x18\x0f\x20\x18\x0f\x20\ +\x19\x0f\x29\x1f\x13\x33\x26\x18\x35\x28\x19\x34\x27\x19\x33\x27\ +\x19\x2d\x22\x16\x38\x2a\x1b\x36\x29\x1a\x41\x31\x1f\x3c\x2d\x1c\ +\x37\x29\x1b\x3c\x2d\x1d\x34\x26\x19\x31\x25\x17\x2f\x24\x16\x33\ +\x26\x19\x2d\x22\x16\x2b\x21\x15\x23\x1a\x11\x1b\x15\x0d\x25\x21\ +\x1b\x35\x36\x36\x38\x3d\x3e\x44\x48\x4c\x52\x58\x5b\x5c\x63\x66\ +\x68\x70\x74\x74\x7b\x7f\x77\x7e\x83\x7e\x87\x8a\x64\x69\x6e\x3a\ +\x3d\x3e\x7a\x80\x80\x51\x57\x57\x42\x45\x47\x3d\x40\x43\x50\x53\ +\x56\x4c\x4d\x51\x77\x7c\x7f\x89\x8e\x91\x8f\x93\x98\x8f\x93\x98\ +\x8a\x8e\x93\x8f\x93\x98\x91\x96\x9a\x94\x98\x9c\x91\x95\x99\x94\ +\x99\x9c\x00\x00\x00\x62\x56\x4d\x8b\x7b\x6c\x23\x1f\x1a\x00\x00\ +\x00\x02\x02\x01\x29\x20\x14\x1b\x15\x0d\x2c\x21\x15\x3a\x2c\x1c\ +\x2f\x23\x17\x15\x10\x0a\x1a\x13\x0c\x18\x12\x0b\x1a\x14\x0d\x1e\ +\x17\x0e\x1a\x14\x0c\x26\x1d\x12\x2b\x20\x14\x26\x1d\x12\x1b\x15\ +\x0d\x24\x1c\x11\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x25\x1b\x12\ +\x27\x1c\x12\x1f\x17\x0f\x16\x10\x0b\x30\x24\x17\x1b\x14\x0d\x45\ +\x34\x22\x23\x1a\x11\x1f\x17\x0f\x35\x28\x1b\x6b\x53\x39\x13\x0f\ +\x09\x3b\x2d\x1e\x44\x34\x22\x3e\x2f\x20\x54\x40\x2c\x65\x4d\x35\ +\x24\x1b\x12\x4a\x38\x26\x52\x3f\x2b\x14\x0f\x0a\x1c\x15\x0d\x2e\ +\x22\x17\x1f\x17\x0f\x26\x1d\x13\x15\x10\x0a\x15\x10\x0a\x20\x18\ +\x0f\x24\x1b\x11\x29\x1e\x13\x25\x1c\x12\x29\x1f\x14\x2b\x21\x15\ +\x30\x24\x17\x32\x25\x17\x30\x24\x17\x30\x24\x17\x23\x1a\x11\x1d\ +\x16\x0e\x1b\x15\x0d\x20\x18\x0f\x29\x1f\x14\x34\x27\x19\x37\x29\ +\x1a\x35\x28\x1a\x36\x29\x1a\x3a\x2b\x1b\x38\x2a\x1b\x31\x25\x18\ +\x2a\x1f\x14\x21\x19\x10\x22\x1a\x11\x21\x18\x0f\x1d\x16\x0e\x20\ +\x18\x0f\x1e\x17\x0f\x23\x1b\x12\x23\x1b\x11\x24\x1a\x11\x20\x17\ +\x0e\x21\x19\x0f\x22\x19\x10\x19\x13\x0c\x17\x12\x0b\x1a\x13\x0c\ +\x1d\x15\x0d\x19\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0f\x1c\ +\x15\x0d\x23\x1b\x11\x33\x26\x19\x36\x29\x1a\x35\x27\x19\x34\x27\ +\x19\x2f\x24\x17\x2d\x22\x16\x2a\x20\x14\x27\x1c\x13\x21\x18\x0f\ +\x28\x1e\x13\x2a\x20\x14\x1b\x15\x0d\x1a\x14\x0c\x1d\x16\x0e\x1d\ +\x16\x0e\x1b\x15\x0d\x15\x10\x0a\x16\x11\x0a\x1a\x14\x0d\x22\x1a\ +\x11\x29\x1f\x14\x30\x24\x17\x2f\x23\x16\x29\x1e\x13\x29\x1f\x14\ +\x31\x25\x18\x2e\x23\x16\x37\x28\x1a\x2f\x24\x16\x33\x26\x18\x2e\ +\x23\x16\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\x2b\x21\x15\x2a\x20\ +\x14\x27\x1e\x13\x25\x1c\x12\x1b\x15\x0d\x1f\x1b\x17\x30\x32\x32\ +\x38\x3c\x3e\x43\x48\x4b\x51\x56\x59\x59\x60\x63\x68\x6f\x72\x72\ +\x7a\x7d\x77\x80\x83\x7c\x85\x89\x85\x8e\x91\x84\x8c\x90\x78\x7e\ +\x80\x3f\x44\x43\x39\x3e\x3e\x2f\x31\x32\x5c\x60\x62\x4b\x4d\x50\ +\x77\x7d\x7f\x8c\x91\x94\x8c\x91\x95\x8c\x91\x94\x88\x8d\x90\x91\ +\x95\x99\x90\x94\x98\x93\x98\x9b\x91\x95\x99\x93\x97\x9b\x00\x00\ +\x00\x16\x10\x0b\x41\x30\x1f\x1f\x19\x11\x02\x01\x00\x00\x00\x00\ +\x28\x1e\x13\x1c\x14\x0d\x34\x27\x18\x4b\x38\x24\x39\x2a\x1b\x15\ +\x0f\x09\x14\x10\x0a\x18\x12\x0b\x16\x11\x0a\x1b\x14\x0c\x18\x12\ +\x0b\x1e\x17\x0e\x28\x1e\x13\x25\x1c\x12\x1a\x13\x0c\x1a\x14\x0c\ +\x1f\x18\x0f\x1a\x14\x0d\x18\x12\x0b\x19\x13\x0c\x1f\x18\x0f\x19\ +\x13\x0c\x11\x0c\x08\x35\x28\x1b\x1d\x16\x0e\x35\x28\x1a\x30\x24\ +\x18\x2b\x20\x15\x29\x1f\x13\x67\x4e\x35\x36\x2a\x1c\x4d\x3a\x27\ +\x59\x43\x2c\x48\x37\x26\x54\x40\x2b\x62\x4b\x33\x4c\x3b\x28\x58\ +\x43\x2d\x3f\x2f\x20\x19\x13\x0d\x16\x11\x0a\x25\x1c\x12\x19\x13\ +\x0c\x2d\x22\x16\x18\x13\x0c\x10\x0d\x08\x17\x11\x0b\x23\x1a\x11\ +\x1e\x16\x0f\x1e\x17\x0f\x2b\x20\x15\x2c\x21\x15\x2b\x20\x15\x2c\ +\x21\x15\x32\x25\x17\x2b\x20\x14\x24\x1b\x11\x21\x18\x10\x20\x18\ +\x0f\x22\x1a\x10\x2b\x21\x15\x30\x24\x17\x36\x28\x1a\x34\x26\x19\ +\x33\x26\x19\x3b\x2c\x1c\x2f\x23\x16\x2f\x24\x17\x29\x1f\x13\x24\ +\x1c\x12\x1f\x17\x0f\x26\x1d\x13\x21\x19\x10\x1d\x15\x0e\x1e\x16\ +\x0e\x1b\x15\x0d\x21\x19\x10\x1c\x14\x0d\x1f\x18\x0f\x20\x18\x10\ +\x1b\x15\x0d\x17\x12\x0b\x1d\x16\x0e\x22\x19\x11\x24\x1b\x11\x1e\ +\x17\x0f\x22\x19\x10\x27\x1e\x13\x21\x19\x10\x1a\x14\x0c\x1e\x16\ +\x0e\x2c\x21\x15\x2a\x1f\x14\x2c\x22\x15\x2d\x21\x15\x32\x26\x18\ +\x2e\x22\x16\x23\x1a\x11\x23\x1a\x11\x1d\x16\x0e\x27\x1e\x13\x2f\ +\x23\x16\x28\x1e\x13\x1a\x14\x0d\x16\x11\x0a\x1b\x14\x0c\x18\x12\ +\x0c\x1a\x14\x0c\x1b\x14\x0d\x1c\x14\x0d\x22\x19\x10\x25\x1c\x12\ +\x23\x1b\x11\x24\x1c\x12\x25\x1c\x12\x28\x1f\x13\x30\x24\x17\x2f\ +\x23\x17\x2c\x21\x16\x30\x24\x17\x3b\x2c\x1c\x2f\x24\x16\x2c\x21\ +\x16\x2e\x22\x16\x2c\x21\x15\x32\x26\x18\x2d\x22\x15\x2e\x23\x16\ +\x2a\x1f\x14\x19\x13\x0c\x1f\x1b\x15\x32\x32\x31\x37\x3a\x3d\x42\ +\x47\x49\x50\x56\x58\x5a\x61\x64\x64\x6c\x6f\x6f\x76\x79\x79\x80\ +\x84\x7d\x86\x8a\x82\x8a\x8e\x85\x8d\x91\x77\x7c\x81\x3a\x3d\x40\ +\x28\x2a\x2a\x5f\x62\x63\x4c\x4f\x51\x49\x4c\x4e\x8e\x94\x97\x8e\ +\x94\x97\x8e\x93\x96\x8b\x90\x94\x8c\x91\x94\x8e\x93\x96\x90\x95\ +\x98\x90\x95\x98\x8f\x93\x97\x92\x96\x99\x00\x00\x00\x8e\x8e\x8d\ +\x81\x6d\x59\x2f\x24\x17\x03\x02\x01\x00\x00\x00\x22\x1a\x11\x1b\ +\x14\x0d\x3a\x2b\x1c\x5d\x45\x2d\x3d\x2e\x1d\x11\x0d\x08\x18\x12\ +\x0c\x1d\x16\x0d\x12\x0e\x09\x19\x12\x0c\x17\x11\x0b\x18\x13\x0b\ +\x1c\x16\x0d\x23\x1b\x11\x1c\x15\x0e\x17\x11\x0b\x12\x0e\x09\x11\ +\x0d\x09\x14\x0f\x0a\x14\x0f\x0a\x17\x12\x0b\x11\x0d\x08\x0d\x0a\ +\x06\x2c\x22\x16\x29\x1f\x14\x2f\x23\x18\x39\x2b\x1c\x1d\x16\x0e\ +\x23\x1a\x12\x4d\x3a\x27\x59\x44\x2f\x42\x32\x21\x39\x2b\x1c\x14\ +\x0f\x0a\x30\x24\x18\x46\x35\x24\x21\x19\x10\x2d\x22\x16\x2d\x22\ +\x16\x1e\x16\x0f\x17\x11\x0b\x24\x1b\x12\x1b\x15\x0d\x21\x19\x10\ +\x15\x11\x0b\x11\x0d\x08\x14\x10\x09\x27\x1d\x13\x20\x19\x0f\x24\ +\x1c\x12\x2a\x20\x15\x2a\x20\x14\x32\x25\x18\x2d\x22\x15\x31\x25\ +\x18\x28\x1f\x13\x26\x1c\x12\x26\x1c\x12\x26\x1d\x12\x25\x1c\x12\ +\x28\x1e\x13\x2b\x20\x15\x2a\x20\x15\x28\x1e\x13\x2c\x21\x15\x32\ +\x25\x18\x29\x1e\x14\x30\x23\x17\x2d\x22\x16\x2b\x21\x15\x27\x1e\ +\x13\x23\x1a\x11\x21\x19\x10\x17\x11\x0a\x19\x13\x0c\x20\x18\x0f\ +\x28\x1e\x13\x24\x1b\x11\x28\x1e\x13\x27\x1d\x13\x22\x19\x10\x24\ +\x1b\x11\x25\x1b\x11\x25\x1c\x12\x28\x1e\x13\x27\x1d\x13\x2a\x1f\ +\x14\x33\x25\x18\x30\x23\x17\x20\x18\x0f\x16\x11\x0b\x1f\x18\x0f\ +\x1b\x15\x0c\x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x31\x24\x18\x2c\ +\x22\x15\x22\x19\x10\x1d\x15\x0e\x1a\x13\x0c\x28\x1f\x13\x2d\x21\ +\x15\x29\x1e\x14\x23\x1a\x10\x20\x19\x10\x27\x1e\x13\x29\x1f\x14\ +\x27\x1e\x13\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x2a\x20\x14\x25\ +\x1c\x11\x24\x1c\x12\x2c\x22\x15\x2b\x20\x14\x2c\x21\x15\x29\x1f\ +\x14\x2c\x21\x15\x34\x27\x18\x31\x25\x17\x2e\x23\x17\x2b\x20\x15\ +\x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x30\x24\x17\x25\x1c\x11\x1c\ +\x15\x0e\x1e\x19\x13\x2c\x2c\x2b\x36\x39\x3b\x41\x46\x49\x4f\x55\ +\x57\x59\x60\x63\x64\x6b\x6f\x6e\x75\x78\x78\x80\x84\x7d\x84\x88\ +\x81\x87\x8c\x85\x8b\x90\x81\x87\x8c\x6e\x73\x76\x5f\x62\x63\x6d\ +\x70\x72\x37\x37\x39\x66\x6a\x6d\x92\x98\x9c\x8f\x95\x98\x93\x97\ +\x9b\x8f\x93\x98\x8e\x93\x97\x90\x95\x99\x91\x96\x9a\x8e\x93\x96\ +\x8f\x94\x97\x8f\x94\x97\x00\x00\x00\xd0\xcd\xcc\xbb\xaa\x99\x48\ +\x3c\x2f\x05\x04\x02\x05\x04\x02\x18\x12\x0b\x15\x10\x0a\x2e\x23\ +\x16\x46\x34\x21\x3d\x2e\x1d\x0f\x0c\x08\x14\x0f\x0a\x1f\x17\x0f\ +\x14\x0f\x0a\x15\x10\x0a\x14\x10\x0a\x12\x0e\x09\x1c\x15\x0d\x26\ +\x1d\x12\x22\x19\x11\x1d\x16\x0e\x17\x12\x0b\x17\x11\x0b\x16\x11\ +\x0b\x13\x0f\x09\x16\x10\x0a\x0f\x0b\x07\x10\x0c\x08\x1c\x15\x0e\ +\x2a\x1f\x14\x27\x1c\x13\x3a\x2c\x1d\x1e\x17\x0e\x23\x1a\x11\x4c\ +\x3a\x26\x23\x1a\x11\x2d\x22\x16\x40\x30\x1f\x0e\x0a\x06\x2d\x23\ +\x17\x50\x3d\x2a\x1f\x17\x0f\x21\x19\x0f\x2e\x22\x16\x28\x1d\x13\ +\x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x2a\x20\x15\x1f\x17\x0f\x1a\ +\x13\x0d\x1d\x16\x0e\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x25\x1c\ +\x12\x2c\x21\x15\x2f\x23\x17\x2e\x22\x16\x21\x19\x0f\x24\x1b\x11\ +\x25\x1c\x12\x26\x1d\x11\x24\x1b\x11\x26\x1c\x12\x27\x1e\x13\x24\ +\x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1a\x11\x23\x1a\x11\x23\x1a\ +\x10\x29\x1e\x13\x2a\x1f\x14\x30\x24\x17\x29\x1f\x13\x1d\x16\x0e\ +\x27\x1d\x12\x25\x1c\x12\x22\x1a\x10\x1f\x18\x10\x24\x1a\x11\x27\ +\x1e\x12\x2b\x21\x15\x23\x1b\x11\x2c\x20\x15\x2b\x20\x15\x22\x1a\ +\x10\x1c\x16\x0e\x1f\x17\x0f\x23\x1a\x10\x28\x1e\x13\x2e\x23\x16\ +\x31\x24\x17\x2c\x20\x15\x23\x1a\x10\x19\x13\x0c\x1b\x14\x0d\x22\ +\x19\x10\x1c\x16\x0e\x24\x1b\x11\x2d\x21\x16\x2d\x22\x16\x2f\x23\ +\x17\x28\x1e\x13\x17\x12\x0c\x20\x17\x0f\x1f\x17\x0f\x1e\x17\x0e\ +\x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x25\x1c\x12\x25\x1c\x11\x26\ +\x1c\x12\x2f\x23\x17\x2d\x22\x16\x29\x1e\x13\x30\x23\x17\x2d\x22\ +\x16\x2a\x20\x15\x27\x1d\x13\x23\x1a\x11\x26\x1c\x12\x2d\x22\x16\ +\x2f\x24\x17\x32\x25\x18\x29\x1f\x14\x27\x1d\x12\x23\x1b\x11\x22\ +\x1a\x10\x25\x1c\x12\x2a\x20\x14\x28\x1f\x14\x23\x1b\x11\x2a\x21\ +\x18\x31\x2e\x2b\x35\x38\x3a\x42\x46\x48\x4e\x53\x55\x5a\x5f\x64\ +\x66\x6a\x6e\x70\x75\x7b\x77\x7d\x83\x80\x86\x8c\x82\x88\x8d\x80\ +\x86\x8b\x84\x8a\x8f\x87\x8c\x90\x8c\x90\x95\x4c\x4d\x50\x31\x32\ +\x33\x83\x88\x8b\x68\x6e\x73\x87\x8d\x92\x92\x96\x9b\x90\x94\x99\ +\x8e\x92\x97\x91\x95\x9a\x91\x95\x9a\x8d\x92\x96\x91\x96\x99\x91\ +\x95\x99\x00\x00\x00\xce\xca\xc9\xc1\xaa\x94\x54\x42\x31\x08\x06\ +\x03\x01\x02\x00\x1a\x13\x0c\x20\x18\x0f\x28\x1e\x13\x3d\x2d\x1c\ +\x3b\x2c\x1c\x16\x11\x0a\x13\x0d\x09\x20\x18\x0f\x1a\x13\x0d\x17\ +\x11\x0b\x15\x10\x0a\x17\x11\x0b\x18\x12\x0c\x23\x1b\x11\x2d\x22\ +\x16\x25\x1c\x12\x1d\x15\x0e\x16\x11\x0a\x11\x0d\x08\x10\x0d\x08\ +\x16\x11\x0a\x13\x0e\x09\x13\x0e\x09\x17\x11\x0b\x26\x1d\x12\x1a\ +\x14\x0d\x40\x31\x21\x1c\x15\x0d\x27\x1e\x12\x4a\x38\x26\x1e\x16\ +\x0f\x3a\x2b\x1d\x62\x49\x31\x28\x1e\x13\x31\x25\x19\x51\x3e\x2a\ +\x1d\x16\x0e\x1c\x15\x0e\x22\x1a\x11\x1d\x16\x0f\x1c\x16\x0e\x21\ +\x19\x10\x1e\x17\x0f\x26\x1c\x13\x1f\x18\x0f\x1a\x14\x0d\x17\x12\ +\x0b\x1c\x15\x0d\x1e\x16\x0e\x1e\x17\x0d\x22\x1a\x11\x2a\x1f\x14\ +\x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x24\x1b\x12\x2f\x23\x16\x27\ +\x1d\x13\x21\x19\x10\x1e\x17\x0e\x1b\x14\x0d\x1b\x14\x0c\x22\x19\ +\x10\x21\x18\x0f\x22\x1a\x10\x23\x1b\x11\x25\x1c\x12\x2a\x1f\x14\ +\x32\x25\x18\x2a\x1f\x14\x22\x1a\x11\x27\x1e\x13\x26\x1c\x12\x26\ +\x1d\x13\x20\x18\x10\x23\x1a\x10\x20\x18\x10\x23\x1a\x11\x20\x19\ +\x10\x20\x18\x0f\x27\x1e\x13\x2c\x21\x15\x2e\x23\x16\x29\x1f\x14\ +\x21\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\x13\x2a\x20\x15\x28\ +\x1f\x13\x23\x1a\x11\x20\x18\x10\x17\x12\x0b\x21\x19\x10\x1a\x14\ +\x0d\x1b\x14\x0d\x22\x1a\x11\x24\x1b\x12\x22\x1a\x10\x2a\x20\x14\ +\x26\x1c\x13\x1c\x16\x0e\x23\x1a\x11\x1b\x15\x0d\x1f\x17\x0f\x24\ +\x1b\x10\x27\x1d\x12\x2b\x20\x15\x2c\x21\x15\x2f\x23\x17\x3c\x2e\ +\x1d\x35\x27\x19\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x2f\x23\x17\ +\x2f\x24\x17\x2e\x22\x16\x2b\x20\x14\x27\x1e\x13\x2c\x21\x15\x29\ +\x1f\x14\x29\x1f\x14\x24\x1b\x11\x24\x1c\x12\x28\x1e\x13\x25\x1c\ +\x12\x26\x1d\x13\x24\x1b\x11\x1f\x17\x0e\x29\x1e\x14\x35\x30\x29\ +\x35\x38\x3a\x3f\x43\x45\x4b\x4f\x52\x5a\x5e\x63\x67\x6b\x6f\x6e\ +\x73\x77\x78\x7e\x82\x7f\x84\x89\x83\x89\x8e\x84\x89\x8e\x83\x88\ +\x8c\x89\x8f\x94\x8e\x93\x98\x74\x76\x7a\x79\x7c\x7f\x8d\x92\x96\ +\x63\x69\x6c\x79\x80\x82\x8c\x90\x95\x8e\x93\x97\x8e\x93\x96\x94\ +\x98\x9d\x90\x94\x99\x91\x96\x99\x92\x97\x9a\x91\x95\x97\x00\x00\ +\x00\xce\xcb\xca\xc6\xc2\xc1\x66\x57\x48\x0b\x08\x05\x01\x00\x00\ +\x20\x18\x0f\x22\x19\x11\x26\x1d\x12\x44\x33\x21\x39\x2b\x1b\x15\ +\x0f\x0a\x0f\x0b\x07\x16\x10\x0a\x26\x1d\x12\x23\x1b\x11\x1f\x17\ +\x0f\x1e\x17\x0e\x1f\x18\x0f\x1a\x14\x0c\x22\x19\x10\x1d\x15\x0e\ +\x1a\x14\x0d\x20\x18\x0f\x1e\x17\x0f\x19\x14\x0c\x1d\x16\x0e\x17\ +\x11\x0a\x13\x0e\x09\x15\x10\x0a\x27\x1d\x13\x16\x11\x0b\x38\x2a\ +\x1c\x1a\x14\x0c\x1b\x14\x0c\x33\x27\x19\x21\x19\x10\x37\x2a\x1b\ +\x5c\x45\x2e\x53\x40\x2b\x2c\x21\x16\x47\x37\x25\x28\x1f\x14\x1b\ +\x14\x0d\x2a\x1f\x15\x2f\x23\x17\x27\x1e\x13\x28\x1e\x13\x1f\x17\ +\x0f\x2f\x23\x17\x27\x1d\x13\x1c\x15\x0d\x12\x0e\x09\x1f\x17\x0e\ +\x1b\x14\x0d\x24\x1b\x11\x21\x19\x10\x2e\x23\x16\x2f\x23\x17\x2f\ +\x23\x16\x2e\x23\x16\x34\x27\x19\x2c\x21\x15\x32\x25\x18\x28\x1e\ +\x14\x1f\x16\x0e\x1c\x15\x0d\x1f\x17\x0f\x24\x1b\x11\x25\x1c\x11\ +\x22\x19\x10\x25\x1c\x12\x26\x1c\x12\x32\x26\x18\x2e\x22\x16\x28\ +\x1e\x13\x25\x1c\x11\x29\x1f\x14\x24\x1b\x12\x1d\x16\x0e\x1d\x15\ +\x0d\x23\x1a\x11\x25\x1b\x11\x21\x19\x0f\x1e\x16\x0e\x1e\x16\x0e\ +\x20\x18\x10\x23\x1a\x11\x29\x1e\x14\x2c\x20\x15\x26\x1d\x12\x1a\ +\x14\x0d\x1a\x14\x0d\x1e\x16\x0f\x22\x19\x10\x24\x1b\x11\x25\x1c\ +\x11\x26\x1d\x12\x23\x1a\x11\x1a\x13\x0c\x11\x0d\x08\x1b\x14\x0d\ +\x19\x14\x0d\x29\x1f\x14\x2b\x20\x14\x2f\x23\x17\x2d\x22\x16\x22\ +\x1a\x10\x22\x19\x10\x28\x1e\x13\x1f\x18\x0f\x27\x1d\x13\x29\x1f\ +\x14\x2c\x21\x15\x2c\x21\x15\x28\x1d\x13\x37\x29\x1b\x39\x2b\x1c\ +\x2b\x20\x15\x36\x29\x1a\x37\x29\x1b\x3c\x2d\x1d\x3f\x2f\x1e\x43\ +\x32\x20\x35\x28\x1a\x2c\x21\x15\x2d\x22\x15\x28\x1e\x13\x1e\x16\ +\x0e\x25\x1b\x11\x29\x1f\x14\x1f\x18\x0f\x24\x1b\x11\x25\x1c\x11\ +\x24\x1a\x11\x23\x1a\x10\x20\x1a\x12\x30\x2c\x27\x35\x38\x3a\x3e\ +\x42\x44\x4a\x4d\x50\x5b\x5f\x62\x66\x6b\x70\x6b\x70\x75\x7a\x80\ +\x84\x7d\x82\x87\x80\x86\x8b\x80\x86\x8b\x84\x8a\x8f\x8f\x93\x98\ +\x6f\x73\x77\x54\x57\x5a\x72\x75\x78\x2f\x31\x33\x1c\x1d\x20\x4a\ +\x4d\x50\x86\x8b\x90\x91\x96\x99\x8e\x93\x96\x93\x98\x9b\x92\x96\ +\x99\x93\x98\x9b\x8f\x94\x97\x91\x95\x99\x00\x00\x00\xd1\xcc\xca\ +\xc1\xae\x9a\x69\x52\x3a\x14\x0f\x0a\x04\x04\x02\x0e\x0a\x07\x1d\ +\x16\x0e\x27\x1d\x12\x54\x3f\x28\x34\x27\x19\x1a\x14\x0c\x0a\x07\ +\x04\x11\x0d\x08\x1a\x13\x0c\x1f\x17\x0f\x25\x1c\x12\x20\x19\x0f\ +\x1d\x15\x0d\x1a\x13\x0c\x22\x19\x10\x1b\x14\x0d\x13\x0f\x09\x19\ +\x13\x0c\x20\x18\x0f\x2a\x1f\x14\x1f\x17\x0e\x1c\x15\x0d\x15\x10\ +\x0a\x13\x0e\x09\x33\x26\x19\x0f\x0b\x07\x3e\x2f\x1f\x0f\x0b\x07\ +\x10\x0d\x08\x4b\x39\x26\x24\x1b\x12\x27\x1d\x13\x49\x37\x24\x4a\ +\x38\x26\x5a\x45\x2f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x10\x3b\x2c\ +\x1c\x39\x2a\x1b\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x30\x25\x18\ +\x26\x1d\x12\x1d\x16\x0e\x19\x13\x0c\x16\x11\x0b\x19\x13\x0b\x21\ +\x19\x0f\x21\x19\x10\x27\x1d\x13\x2d\x22\x16\x34\x27\x19\x35\x28\ +\x19\x35\x28\x19\x34\x27\x19\x2d\x22\x16\x22\x1a\x10\x1d\x15\x0d\ +\x1f\x17\x0f\x22\x1a\x11\x22\x1a\x10\x24\x1b\x11\x27\x1e\x13\x28\ +\x1e\x14\x21\x18\x0f\x26\x1c\x12\x2b\x1f\x14\x2e\x23\x16\x24\x1b\ +\x11\x1e\x17\x0f\x1f\x17\x0e\x27\x1d\x13\x29\x1f\x14\x2a\x20\x14\ +\x2b\x20\x14\x1f\x18\x0f\x1f\x18\x0e\x25\x1b\x12\x1e\x17\x0f\x25\ +\x1c\x11\x2a\x20\x14\x32\x26\x18\x34\x27\x19\x2e\x22\x16\x21\x19\ +\x10\x21\x19\x0f\x26\x1c\x12\x2f\x24\x16\x2f\x23\x16\x28\x1e\x14\ +\x29\x1f\x14\x1e\x17\x0f\x1d\x16\x0e\x1b\x14\x0d\x1e\x17\x0e\x27\ +\x1d\x13\x2d\x22\x16\x31\x25\x17\x2a\x1f\x14\x29\x1f\x13\x26\x1c\ +\x12\x25\x1c\x12\x1f\x18\x0e\x25\x1b\x12\x1f\x17\x0f\x20\x18\x0f\ +\x25\x1c\x12\x2c\x21\x15\x38\x2b\x1b\x30\x24\x17\x2b\x20\x15\x38\ +\x2a\x1b\x2e\x23\x16\x35\x27\x1a\x37\x29\x1b\x39\x2b\x1b\x3c\x2d\ +\x1c\x39\x2b\x1c\x30\x24\x17\x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\ +\x24\x1b\x11\x24\x1b\x11\x21\x19\x10\x22\x1a\x11\x21\x19\x10\x1e\ +\x16\x0f\x25\x1c\x12\x34\x2d\x26\x35\x37\x39\x3d\x40\x43\x4a\x4d\ +\x50\x54\x58\x5c\x61\x65\x69\x6e\x74\x78\x78\x7e\x81\x7b\x81\x87\ +\x7d\x83\x88\x83\x89\x8e\x83\x89\x8f\x89\x8d\x92\x86\x8a\x8f\x90\ +\x95\x99\x68\x6b\x6e\x64\x66\x6b\x64\x66\x6a\x3f\x41\x43\x83\x87\ +\x8b\x93\x97\x9b\x95\x99\x9e\x91\x96\x9c\x90\x94\x9a\x92\x97\x9b\ +\x8e\x93\x96\x8e\x93\x96\x00\x00\x00\xd2\xcd\xcc\xc9\xc5\xc4\x7b\ +\x66\x50\x11\x0d\x08\x00\x00\x00\x1d\x16\x0f\x1f\x17\x0f\x24\x1b\ +\x11\x52\x3d\x28\x4d\x39\x25\x2a\x1f\x14\x0f\x0b\x07\x12\x0e\x09\ +\x13\x0f\x09\x17\x11\x0b\x20\x18\x0f\x20\x18\x0f\x26\x1d\x13\x2b\ +\x21\x15\x25\x1c\x12\x1f\x17\x0e\x1b\x14\x0d\x1b\x15\x0e\x1c\x15\ +\x0d\x22\x1a\x10\x30\x24\x17\x21\x19\x0f\x1a\x14\x0d\x1a\x13\x0d\ +\x3e\x2f\x1f\x19\x13\x0c\x40\x31\x21\x0c\x09\x05\x12\x0e\x09\x3f\ +\x31\x20\x19\x12\x0c\x28\x1f\x14\x3d\x2e\x1e\x1c\x15\x0d\x22\x1a\ +\x10\x2a\x20\x15\x33\x26\x19\x1c\x15\x0d\x3a\x2c\x1d\x3b\x2d\x1d\ +\x1d\x15\x0e\x30\x24\x17\x2c\x20\x15\x25\x1b\x11\x1c\x16\x0e\x1e\ +\x16\x0e\x1e\x16\x0e\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x21\x18\ +\x0f\x23\x1b\x12\x24\x1b\x12\x31\x25\x17\x41\x30\x20\x49\x37\x23\ +\x3e\x2e\x1e\x28\x1f\x14\x1d\x16\x0e\x1b\x14\x0d\x1d\x15\x0e\x1f\ +\x18\x0e\x20\x18\x0f\x1e\x17\x0f\x1f\x18\x0f\x21\x19\x10\x26\x1c\ +\x12\x27\x1d\x12\x29\x1f\x14\x21\x1a\x10\x27\x1d\x12\x24\x1c\x12\ +\x23\x1a\x11\x20\x18\x0f\x28\x1e\x13\x29\x1e\x13\x2a\x1f\x14\x2b\ +\x20\x14\x25\x1c\x12\x29\x1f\x13\x22\x19\x10\x25\x1c\x12\x22\x19\ +\x10\x26\x1d\x12\x29\x1f\x14\x29\x1f\x14\x29\x1e\x14\x1f\x17\x0f\ +\x1f\x18\x0f\x28\x1e\x14\x2f\x24\x17\x2d\x22\x16\x1d\x16\x0e\x1f\ +\x18\x0f\x2c\x21\x16\x38\x2a\x1c\x3e\x2f\x20\x1e\x16\x0e\x26\x1c\ +\x12\x25\x1c\x12\x2d\x22\x16\x2c\x22\x15\x38\x2a\x1b\x2c\x21\x15\ +\x25\x1c\x12\x1f\x17\x0f\x22\x19\x10\x28\x1f\x13\x29\x1f\x14\x2c\ +\x21\x15\x30\x24\x17\x29\x1f\x14\x2a\x20\x15\x2d\x22\x15\x2e\x24\ +\x17\x36\x28\x1a\x33\x26\x19\x37\x29\x1b\x36\x28\x1a\x3f\x30\x1e\ +\x3a\x2b\x1b\x2b\x20\x14\x28\x1e\x13\x20\x19\x0f\x1a\x14\x0c\x1a\ +\x13\x0d\x1c\x15\x0e\x1f\x17\x0e\x24\x1b\x11\x1e\x17\x0f\x1f\x18\ +\x0f\x29\x26\x21\x32\x34\x36\x3e\x41\x43\x4b\x4e\x51\x58\x5c\x5f\ +\x61\x65\x69\x6f\x74\x78\x78\x7f\x84\x7f\x85\x89\x81\x87\x8d\x88\ +\x8e\x94\x82\x88\x8e\x88\x8e\x93\x88\x8e\x93\x8d\x92\x98\x6d\x71\ +\x78\x6e\x71\x79\x47\x48\x4c\x59\x5a\x5e\x8c\x90\x95\x8f\x93\x98\ +\x94\x98\x9d\x90\x94\x99\x99\x9d\xa2\x93\x97\x9c\x94\x99\x9d\x95\ +\x99\x9c\x00\x00\x00\xd3\xcd\xcb\xc2\xb3\xa5\x85\x68\x4b\x12\x0d\ +\x09\x00\x00\x00\x32\x26\x19\x2f\x23\x17\x24\x1b\x11\x4e\x3a\x25\ +\x55\x40\x29\x48\x36\x23\x18\x13\x0b\x1c\x15\x0d\x13\x0e\x09\x1c\ +\x14\x0d\x2b\x20\x14\x29\x1e\x14\x25\x1c\x12\x24\x1b\x11\x24\x1b\ +\x11\x24\x1c\x12\x1e\x17\x0f\x1e\x16\x0e\x19\x12\x0c\x21\x18\x10\ +\x27\x1d\x12\x25\x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x48\x36\x24\x16\ +\x11\x0b\x31\x25\x18\x11\x0d\x08\x19\x13\x0c\x44\x34\x23\x1f\x18\ +\x0f\x30\x23\x17\x40\x30\x20\x26\x1d\x12\x2a\x20\x14\x36\x28\x1a\ +\x3b\x2d\x1e\x1d\x15\x0d\x3e\x2f\x1f\x42\x33\x21\x23\x1b\x11\x2f\ +\x23\x17\x24\x1b\x11\x1e\x17\x0f\x1f\x17\x0f\x1e\x16\x0e\x1c\x15\ +\x0e\x18\x12\x0b\x1f\x17\x0e\x2d\x22\x16\x22\x19\x10\x22\x1a\x10\ +\x22\x19\x10\x24\x1c\x11\x27\x1e\x13\x2f\x23\x17\x2f\x23\x16\x2a\ +\x20\x15\x1f\x18\x0f\x1c\x15\x0e\x20\x18\x10\x21\x19\x10\x1c\x15\ +\x0d\x1f\x17\x0e\x1d\x16\x0e\x19\x13\x0c\x25\x1b\x11\x27\x1d\x12\ +\x2a\x1f\x14\x24\x1b\x12\x25\x1c\x11\x23\x1a\x10\x20\x17\x0f\x1f\ +\x18\x0f\x27\x1e\x13\x25\x1c\x12\x2e\x22\x16\x2e\x23\x16\x1e\x17\ +\x0e\x20\x18\x10\x21\x19\x10\x29\x1f\x15\x2b\x20\x16\x20\x18\x0f\ +\x2a\x1f\x15\x30\x24\x17\x32\x26\x18\x5b\x46\x30\x7f\x62\x44\x88\ +\x6a\x49\x90\x70\x4e\x51\x3d\x29\x31\x25\x17\x88\x67\x47\xaa\x84\ +\x5c\xb2\x8a\x60\x71\x57\x3c\x21\x19\x10\x25\x1c\x12\x29\x1f\x13\ +\x2c\x21\x15\x3b\x2c\x1d\x40\x30\x1f\x33\x26\x18\x24\x1b\x11\x1f\ +\x17\x0f\x1f\x18\x0f\x21\x19\x0f\x22\x19\x0f\x24\x1b\x11\x27\x1e\ +\x13\x2a\x20\x15\x26\x1d\x13\x26\x1c\x12\x27\x1d\x12\x35\x27\x1a\ +\x2f\x23\x16\x3c\x2d\x1d\x3b\x2c\x1d\x37\x28\x1a\x2f\x23\x17\x31\ +\x25\x17\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x1f\x18\x0f\x22\x1a\ +\x10\x28\x1e\x13\x25\x1c\x12\x22\x1a\x10\x30\x25\x18\x36\x2e\x26\ +\x32\x34\x37\x3d\x41\x43\x49\x4e\x51\x57\x5d\x5f\x61\x67\x6b\x72\ +\x77\x7d\x76\x7e\x84\x7e\x85\x8b\x85\x8c\x91\x84\x8b\x8f\x87\x8d\ +\x92\x83\x89\x8e\x89\x8f\x95\x8e\x94\x9a\x8f\x94\x9c\x68\x6c\x73\ +\x48\x4a\x4e\x85\x89\x8d\x8f\x94\x99\x92\x96\x9b\x91\x95\x9a\x91\ +\x95\x9a\x95\x9a\x9c\x97\x9b\x9e\x97\x9b\x9e\x98\x9d\xa0\x00\x00\ +\x00\xd5\xd0\xcd\xca\xc2\xbb\x96\x7d\x66\x15\x11\x0b\x00\x00\x00\ +\x1b\x14\x0d\x2d\x21\x16\x25\x1b\x12\x54\x3f\x29\x4d\x39\x25\x28\ +\x1f\x14\x12\x0e\x08\x1e\x17\x0f\x18\x12\x0b\x15\x10\x0a\x1a\x13\ +\x0d\x1a\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x22\x1a\x10\x25\x1c\x12\ +\x1e\x17\x0f\x18\x13\x0c\x1a\x13\x0c\x1f\x16\x0e\x22\x19\x11\x21\ +\x19\x10\x1e\x16\x0e\x1e\x17\x0f\x3c\x2d\x1e\x18\x12\x0b\x3d\x2e\ +\x1e\x13\x0f\x09\x1b\x15\x0d\x3f\x30\x1f\x1d\x15\x0e\x23\x1a\x10\ +\x30\x24\x17\x2b\x21\x15\x1e\x16\x0e\x30\x24\x17\x3a\x2c\x1d\x18\ +\x12\x0b\x28\x1f\x14\x31\x26\x18\x29\x1f\x13\x2a\x1f\x14\x1f\x18\ +\x10\x1c\x15\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x10\x21\x19\x10\ +\x22\x1a\x10\x27\x1d\x12\x21\x19\x10\x19\x12\x0c\x18\x12\x0b\x1d\ +\x16\x0e\x26\x1d\x12\x28\x1e\x13\x2d\x22\x15\x25\x1c\x11\x28\x1e\ +\x13\x29\x1e\x14\x29\x1f\x14\x29\x1f\x14\x2a\x20\x14\x24\x1b\x11\ +\x24\x1c\x12\x26\x1d\x13\x20\x19\x10\x20\x18\x10\x21\x19\x10\x16\ +\x11\x0b\x29\x1f\x15\x49\x37\x25\x57\x43\x2e\x62\x4c\x34\x2e\x23\ +\x16\x22\x19\x10\x2c\x21\x15\x31\x25\x18\x48\x37\x25\x9d\x7a\x55\ +\xb6\x8d\x64\xa6\x81\x5b\x52\x40\x2b\x1b\x14\x0c\x26\x1c\x12\x2a\ +\x1f\x14\x26\x1d\x12\x41\x32\x21\x97\x75\x52\xba\x91\x66\x62\x4a\ +\x33\x2a\x1f\x14\x23\x1a\x11\x39\x2b\x1c\x9d\x7a\x54\xa1\x7c\x56\ +\x2c\x21\x16\x28\x1e\x13\x1b\x14\x0d\x1f\x17\x0f\x27\x1d\x12\x2e\ +\x22\x16\x37\x29\x1a\x35\x28\x19\x28\x1e\x13\x21\x19\x10\x1f\x17\ +\x0f\x21\x18\x10\x27\x1d\x13\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\ +\x23\x1a\x10\x2c\x21\x15\x33\x26\x18\x33\x26\x18\x37\x2a\x1b\x35\ +\x27\x19\x3e\x2e\x1e\x39\x2a\x1b\x34\x27\x19\x37\x29\x1b\x2f\x23\ +\x17\x2c\x21\x15\x23\x1a\x11\x1a\x13\x0c\x1c\x15\x0d\x1e\x17\x0e\ +\x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x2b\x26\x20\x33\x36\x37\x3e\ +\x41\x42\x4a\x4d\x50\x55\x5a\x5d\x63\x6a\x6d\x6e\x76\x79\x76\x7e\ +\x82\x82\x87\x8d\x85\x8a\x90\x85\x8e\x92\x87\x8d\x92\x86\x8c\x90\ +\x89\x90\x95\x8b\x91\x96\x8f\x95\x9b\x93\x98\x9e\x95\x99\x9e\x91\ +\x95\x9a\x94\x98\x9d\x93\x97\x9c\x93\x97\x9c\x97\x9b\x9f\x95\x9a\ +\x9d\x95\x99\x9c\x99\x9d\xa0\x98\x9c\x9f\x00\x00\x00\xd5\xd0\xcd\ +\xce\xc9\xc6\xa6\x90\x79\x19\x14\x0f\x00\x00\x00\x0b\x09\x05\x2d\ +\x22\x16\x1f\x17\x0f\x45\x34\x21\x3a\x2b\x1c\x26\x1d\x12\x16\x10\ +\x0a\x22\x1a\x11\x23\x1a\x10\x18\x12\x0b\x14\x0f\x0a\x18\x12\x0c\ +\x18\x12\x0c\x1a\x14\x0d\x22\x1a\x10\x23\x1b\x11\x21\x19\x10\x1f\ +\x17\x0f\x1d\x16\x0e\x18\x13\x0b\x1c\x15\x0e\x21\x19\x10\x1e\x17\ +\x0f\x20\x18\x10\x47\x35\x22\x24\x1b\x12\x44\x34\x23\x1b\x15\x0c\ +\x15\x10\x0a\x26\x1c\x13\x1f\x17\x0e\x28\x1d\x13\x3c\x2c\x1d\x34\ +\x26\x19\x25\x1c\x12\x2a\x20\x15\x31\x25\x18\x1f\x17\x0f\x2d\x21\ +\x16\x2a\x1f\x14\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\x22\x1a\x10\ +\x28\x1f\x13\x21\x19\x10\x1f\x17\x0f\x25\x1c\x12\x29\x1f\x14\x26\ +\x1d\x12\x26\x1d\x13\x22\x1a\x11\x1a\x14\x0d\x1f\x18\x10\x2d\x22\ +\x16\x2c\x21\x15\x2d\x22\x15\x25\x1c\x11\x18\x12\x0b\x2b\x21\x16\ +\x50\x3d\x2a\x66\x4e\x36\x66\x4f\x36\x34\x27\x1a\x57\x42\x2d\x8c\ +\x6c\x4b\x9b\x78\x54\x7b\x5f\x41\x30\x24\x18\x1f\x18\x0f\x5a\x45\ +\x2f\xaa\x84\x5d\xb6\x8d\x63\x6d\x54\x3a\x23\x1a\x11\x21\x19\x10\ +\x29\x1f\x14\x2d\x22\x15\x2d\x22\x15\x65\x4e\x35\xbb\x91\x67\x87\ +\x68\x49\x24\x1a\x10\x21\x18\x10\x23\x1a\x11\x2a\x1f\x14\x29\x1f\ +\x14\x25\x1c\x12\x76\x5b\x3e\xae\x86\x5e\x5d\x47\x31\x29\x1f\x14\ +\x27\x1d\x13\x32\x26\x18\x9f\x7c\x57\x89\x69\x48\x40\x31\x20\x20\ +\x19\x10\x23\x1a\x11\x24\x1c\x11\x26\x1c\x12\x24\x1b\x12\x2e\x22\ +\x16\x32\x25\x17\x2e\x22\x16\x23\x1a\x11\x22\x1a\x11\x26\x1d\x12\ +\x27\x1d\x12\x29\x1f\x13\x27\x1d\x12\x2a\x1f\x14\x2b\x20\x15\x2d\ +\x22\x15\x2c\x21\x15\x32\x26\x18\x3b\x2c\x1d\x36\x28\x1a\x35\x28\ +\x1a\x39\x2a\x1b\x38\x29\x1b\x3c\x2d\x1d\x3a\x2c\x1d\x2f\x23\x16\ +\x2e\x23\x16\x25\x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x21\x18\x0f\x22\ +\x19\x11\x1c\x15\x0d\x27\x22\x1c\x33\x35\x36\x3c\x3f\x43\x48\x4c\ +\x4f\x55\x5a\x5d\x63\x6a\x6e\x6e\x74\x78\x75\x7c\x80\x7e\x84\x8a\ +\x84\x89\x8f\x88\x8f\x95\x8b\x91\x96\x85\x8b\x90\x86\x8c\x91\x8a\ +\x90\x94\x8e\x94\x99\x8f\x94\x99\x92\x96\x9b\x90\x94\x99\x94\x98\ +\x9d\x92\x96\x9b\x94\x98\x9d\x95\x99\x9d\x97\x9a\x9e\x94\x97\x9b\ +\x97\x9a\x9d\x95\x98\x9d\x00\x00\x00\xd5\xd0\xce\xce\xc8\xc4\xb3\ +\x97\x7b\x1b\x16\x10\x00\x00\x00\x12\x0f\x09\x39\x2b\x1d\x26\x1d\ +\x12\x3a\x2c\x1c\x3f\x2f\x1e\x32\x25\x18\x10\x0c\x08\x20\x18\x0f\ +\x25\x1b\x12\x24\x1b\x11\x21\x18\x10\x22\x19\x10\x19\x12\x0c\x1c\ +\x15\x0e\x1e\x17\x0e\x24\x1b\x11\x26\x1d\x12\x2b\x20\x14\x2c\x21\ +\x15\x23\x1a\x10\x2c\x21\x15\x28\x1e\x13\x21\x19\x0f\x1a\x14\x0d\ +\x38\x2a\x1b\x23\x1b\x11\x3d\x2e\x1e\x1b\x14\x0d\x20\x18\x10\x43\ +\x33\x21\x3a\x2c\x1d\x28\x1f\x14\x33\x27\x19\x37\x29\x1a\x22\x19\ +\x11\x27\x1e\x13\x31\x25\x18\x1f\x17\x0f\x2b\x20\x15\x29\x1f\x14\ +\x20\x18\x0f\x30\x25\x18\x21\x19\x11\x19\x13\x0c\x2b\x21\x15\x1e\ +\x17\x0e\x1e\x16\x0e\x20\x19\x10\x22\x1a\x11\x22\x19\x10\x45\x35\ +\x24\x62\x4c\x33\x6e\x54\x39\x7d\x5f\x42\x5b\x45\x2f\x24\x1a\x11\ +\x2d\x21\x16\x25\x1b\x12\x18\x12\x0b\x30\x25\x18\x80\x63\x45\xa3\ +\x7e\x57\x51\x3e\x2a\x17\x11\x0a\x24\x1c\x12\x8a\x6b\x4b\xa1\x7c\ +\x57\x33\x27\x1a\x1c\x15\x0d\x1d\x16\x0e\x13\x0f\x08\x9e\x7a\x56\ +\xaf\x89\x60\x4c\x3b\x29\x17\x11\x0b\x1f\x17\x0f\x23\x1a\x11\x22\ +\x1a\x10\x2c\x21\x16\x5e\x48\x32\xbe\x93\x69\x90\x70\x4f\x35\x28\ +\x1b\x21\x19\x0f\x26\x1c\x12\x29\x1f\x14\x46\x36\x25\x41\x32\x22\ +\x75\x5a\x3e\x97\x74\x50\x5b\x46\x2f\x52\x3f\x2a\x53\x40\x2c\x62\ +\x4b\x34\x86\x67\x46\x84\x65\x46\x4a\x38\x25\x25\x1c\x12\x28\x1e\ +\x13\x17\x13\x0b\x17\x12\x0b\x22\x19\x10\x21\x19\x0f\x27\x1d\x12\ +\x22\x19\x10\x26\x1d\x12\x29\x1e\x14\x27\x1d\x13\x29\x1f\x13\x29\ +\x1e\x13\x2a\x20\x14\x2b\x20\x15\x32\x26\x18\x33\x26\x19\x31\x25\ +\x18\x2d\x23\x16\x2f\x23\x16\x2c\x21\x15\x3a\x2c\x1c\x31\x24\x17\ +\x2e\x22\x16\x39\x2b\x1c\x33\x27\x19\x2e\x22\x16\x2c\x21\x15\x29\ +\x1f\x13\x25\x1c\x12\x1b\x14\x0d\x1c\x15\x0d\x1c\x16\x0e\x18\x13\ +\x0c\x33\x29\x1e\x3f\x3c\x37\x3c\x3f\x41\x46\x4a\x4d\x57\x5d\x60\ +\x5f\x64\x68\x6c\x71\x75\x77\x7c\x81\x7f\x86\x8a\x85\x8a\x8f\x88\ +\x8f\x93\x8c\x92\x97\x89\x8f\x95\x8b\x92\x96\x8a\x90\x94\x8e\x93\ +\x98\x8e\x93\x97\x90\x95\x99\x91\x95\x9a\x91\x95\x9a\x94\x98\x9d\ +\x92\x96\x9b\x93\x96\x9a\x94\x97\x9b\x95\x98\x9b\x93\x97\x99\x98\ +\x9b\x9f\x00\x00\x00\xd8\xd3\xd1\xcf\xcc\xca\xb9\x98\x78\x21\x1a\ +\x11\x00\x00\x00\x10\x0d\x08\x36\x29\x1b\x22\x1a\x10\x3d\x2d\x1d\ +\x40\x30\x1f\x31\x24\x17\x10\x0d\x08\x1f\x17\x0f\x20\x18\x10\x2a\ +\x20\x14\x27\x1d\x13\x24\x1b\x12\x18\x11\x0b\x17\x11\x0a\x1a\x13\ +\x0c\x18\x12\x0c\x1b\x15\x0e\x21\x18\x10\x28\x1e\x13\x27\x1d\x12\ +\x1f\x17\x0f\x26\x1c\x12\x23\x1a\x10\x1a\x14\x0d\x37\x2a\x1c\x23\ +\x1a\x11\x40\x31\x20\x19\x12\x0b\x1e\x16\x0e\x39\x2c\x1d\x3a\x2b\ +\x1d\x1e\x17\x0e\x2d\x22\x15\x3c\x2d\x1d\x22\x1a\x10\x33\x26\x19\ +\x43\x32\x21\x29\x1e\x13\x37\x29\x1b\x32\x25\x18\x1a\x13\x0c\x1d\ +\x17\x0e\x20\x19\x10\x17\x11\x0b\x22\x1a\x10\x1b\x15\x0d\x1d\x16\ +\x0e\x1e\x16\x0e\x1f\x18\x0f\x1e\x16\x0e\x29\x1f\x14\x54\x40\x2b\ +\x97\x74\x4f\x89\x6a\x49\x11\x0d\x08\x26\x1c\x12\x26\x1d\x12\x27\ +\x1d\x13\x2c\x22\x16\x32\x25\x1a\x6e\x54\x3b\x9e\x79\x54\x57\x43\ +\x2d\x30\x25\x19\x3d\x2e\x20\x8f\x6e\x4d\xa6\x81\x5a\x48\x37\x24\ +\x23\x1b\x11\x1d\x16\x0e\x18\x12\x0b\x90\x70\x4e\xb0\x89\x60\x56\ +\x42\x2e\x13\x0e\x09\x18\x13\x0c\x1d\x16\x0e\x1d\x16\x0e\x22\x1a\ +\x11\x4b\x39\x27\xb9\x8f\x65\x8f\x6e\x4d\x3a\x2c\x1e\x21\x18\x10\ +\x2a\x1f\x14\x2c\x20\x15\x7e\x61\x43\xac\x85\x5d\xaa\x84\x5d\x92\ +\x70\x4e\x70\x55\x39\x97\x75\x51\x97\x75\x51\x8b\x6b\x49\x9f\x7b\ +\x55\xa2\x7d\x56\x5e\x48\x31\x34\x27\x19\x30\x25\x17\x21\x19\x10\ +\x21\x19\x10\x27\x1d\x13\x27\x1d\x12\x23\x1a\x10\x22\x1a\x11\x29\ +\x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x33\x26\x18\x33\x26\x19\x2d\x22\ +\x16\x2b\x21\x14\x35\x27\x19\x3d\x2e\x1d\x32\x25\x17\x2b\x21\x15\ +\x33\x25\x19\x35\x28\x19\x35\x28\x1a\x2e\x22\x16\x3a\x2b\x1c\x3c\ +\x2d\x1d\x3c\x2d\x1d\x36\x29\x1a\x31\x25\x18\x30\x24\x17\x2d\x22\ +\x15\x26\x1c\x12\x1d\x16\x0e\x1d\x17\x0e\x21\x19\x10\x24\x1e\x18\ +\x2f\x31\x31\x3b\x3e\x40\x47\x4b\x4d\x54\x59\x5c\x5e\x63\x67\x6f\ +\x74\x78\x78\x7d\x81\x7d\x82\x87\x82\x88\x8d\x89\x90\x92\x87\x8d\ +\x92\x8c\x92\x97\x8e\x95\x99\x8d\x93\x98\x8a\x90\x95\x8c\x91\x95\ +\x90\x94\x98\x93\x97\x9b\x93\x98\x9b\x96\x9a\x9e\x93\x96\x9a\x96\ +\x99\x9d\x93\x96\x9a\x97\x99\x9d\x95\x98\x9a\x95\x98\x9c\x00\x00\ +\x00\xc9\xbd\xb8\xbf\xb8\xb6\xb9\x9a\x7b\x2c\x22\x17\x02\x02\x01\ +\x04\x03\x01\x3e\x2f\x1f\x20\x18\x0f\x37\x29\x1a\x44\x33\x21\x3b\ +\x2c\x1c\x13\x0e\x09\x14\x0f\x09\x1e\x17\x0f\x2b\x21\x15\x23\x1a\ +\x10\x1f\x18\x0f\x17\x11\x0b\x14\x0f\x09\x14\x0f\x09\x13\x0e\x09\ +\x17\x11\x0b\x1b\x14\x0d\x23\x1b\x11\x22\x19\x10\x21\x19\x10\x21\ +\x19\x10\x1b\x14\x0c\x15\x10\x0a\x2a\x20\x15\x1d\x16\x0e\x26\x1c\ +\x12\x20\x17\x0f\x18\x12\x0c\x2a\x1f\x14\x36\x28\x1b\x1b\x14\x0d\ +\x2a\x1f\x14\x3b\x2d\x1d\x27\x1d\x12\x34\x27\x1a\x40\x31\x20\x2e\ +\x22\x16\x39\x2b\x1c\x37\x2a\x1b\x21\x19\x10\x19\x13\x0c\x1f\x18\ +\x0f\x19\x12\x0c\x22\x1a\x11\x18\x12\x0c\x1b\x13\x0d\x1d\x16\x0e\ +\x1d\x16\x0e\x24\x1b\x11\x22\x1a\x10\x3f\x30\x20\x95\x73\x4f\x94\ +\x73\x50\x1a\x13\x0c\x24\x1b\x11\x22\x1a\x10\x24\x1b\x12\x5a\x45\ +\x2f\x87\x69\x48\x75\x5a\x3d\x8c\x6c\x4a\x8d\x6d\x4c\x8c\x6c\x4c\ +\x8f\x6f\x4d\xa3\x7e\x58\xb3\x8a\x61\x58\x43\x2e\x27\x1d\x13\x20\ +\x18\x0f\x1f\x17\x0e\x7e\x61\x43\xad\x87\x5f\x68\x50\x37\x1a\x13\ +\x0c\x1a\x14\x0c\x23\x1b\x10\x26\x1d\x13\x20\x18\x0f\x3f\x30\x20\ +\xac\x85\x5d\x8b\x6b\x4b\x3b\x2d\x1f\x21\x19\x10\x2c\x21\x16\x29\ +\x1f\x14\x4e\x3b\x28\x61\x4a\x32\x89\x69\x49\x9e\x79\x54\x79\x5d\ +\x40\x3e\x2e\x1e\x2e\x22\x15\x23\x1a\x10\x7f\x61\x43\xa7\x82\x5b\ +\x6b\x52\x37\x36\x28\x19\x2f\x24\x17\x2e\x22\x15\x27\x1e\x13\x2c\ +\x21\x15\x33\x26\x18\x2b\x21\x14\x29\x1f\x14\x33\x26\x19\x33\x27\ +\x19\x31\x25\x17\x3b\x2c\x1c\x3e\x2f\x1e\x3a\x2b\x1c\x39\x2b\x1b\ +\x35\x28\x1a\x34\x27\x19\x33\x26\x18\x31\x25\x17\x36\x29\x1a\x3d\ +\x2d\x1d\x3a\x2b\x1c\x38\x29\x1b\x37\x29\x1b\x31\x24\x18\x35\x28\ +\x1a\x31\x25\x18\x2d\x21\x16\x2f\x23\x17\x30\x23\x17\x2f\x23\x16\ +\x22\x19\x11\x1c\x15\x0d\x16\x11\x0b\x1d\x19\x13\x32\x31\x2f\x3a\ +\x3c\x3e\x47\x4b\x4d\x55\x58\x5c\x5f\x64\x67\x6f\x74\x78\x74\x78\ +\x7c\x7d\x82\x87\x87\x8d\x91\x86\x8b\x90\x85\x8b\x90\x8c\x92\x96\ +\x8c\x92\x96\x8d\x93\x98\x8f\x95\x9a\x90\x94\x99\x90\x94\x98\x92\ +\x96\x9a\x94\x99\x9c\x97\x9a\x9e\x94\x97\x9b\x97\x9a\x9e\x92\x95\ +\x99\x9c\x9e\xa2\x99\x9c\x9f\x97\x9a\x9e\x00\x00\x00\xc2\xb4\xae\ +\xb2\xa9\xa4\xb4\x9c\x85\x34\x2a\x1e\x03\x02\x00\x05\x04\x02\x2c\ +\x22\x15\x1f\x17\x0f\x41\x31\x20\x56\x40\x29\x4c\x39\x25\x0d\x0a\ +\x06\x10\x0c\x07\x21\x18\x0f\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\ +\x17\x11\x0b\x16\x11\x0a\x11\x0d\x08\x11\x0c\x08\x17\x11\x0b\x19\ +\x13\x0c\x20\x18\x10\x26\x1c\x12\x25\x1c\x12\x28\x1e\x14\x22\x19\ +\x10\x1c\x15\x0d\x22\x1a\x11\x19\x14\x0c\x26\x1c\x12\x23\x1b\x11\ +\x1e\x17\x0f\x25\x1c\x12\x3a\x2c\x1d\x20\x18\x0f\x27\x1d\x13\x36\ +\x29\x1a\x26\x1d\x12\x33\x26\x19\x44\x34\x23\x2e\x22\x16\x36\x29\ +\x1a\x39\x2b\x1c\x2a\x20\x14\x1c\x15\x0e\x18\x13\x0b\x16\x11\x0b\ +\x27\x1e\x13\x14\x0f\x09\x16\x10\x0a\x18\x13\x0c\x16\x10\x0b\x1e\ +\x17\x0e\x21\x19\x10\x45\x34\x23\xa5\x7f\x59\x99\x76\x52\x27\x1d\ +\x12\x1f\x17\x0f\x1f\x18\x0f\x1b\x15\x0d\x34\x28\x1a\x51\x3e\x2b\ +\x63\x4c\x34\x94\x72\x4f\x69\x50\x38\x39\x2b\x1d\x28\x1f\x13\x84\ +\x66\x47\xb4\x8c\x62\x61\x4b\x34\x29\x1e\x13\x26\x1c\x12\x24\x1b\ +\x11\x75\x5a\x3f\xae\x86\x5e\x82\x65\x46\x22\x1a\x10\x29\x1f\x13\ +\x26\x1c\x12\x25\x1b\x12\x20\x17\x0f\x34\x28\x1b\xad\x86\x5e\x9a\ +\x78\x54\x45\x35\x24\x1a\x14\x0c\x20\x18\x0f\x21\x19\x10\x26\x1d\ +\x12\x29\x1e\x12\x6a\x51\x37\x8c\x6c\x4a\x6d\x54\x39\x34\x26\x19\ +\x28\x1e\x12\x1f\x17\x0f\x66\x4e\x35\xa5\x80\x59\x6f\x55\x39\x3f\ +\x2f\x1e\x36\x29\x1a\x34\x27\x18\x2e\x23\x16\x33\x27\x18\x37\x2a\ +\x1a\x36\x28\x1a\x32\x25\x18\x3f\x2f\x1f\x42\x31\x20\x3a\x2b\x1c\ +\x43\x32\x20\x43\x32\x21\x3a\x2b\x1c\x38\x2a\x1a\x38\x2b\x1b\x32\ +\x25\x18\x2f\x24\x17\x2c\x21\x15\x29\x1f\x14\x31\x25\x17\x36\x29\ +\x1a\x32\x25\x18\x2d\x22\x16\x2e\x22\x16\x35\x27\x1a\x34\x27\x1a\ +\x2b\x1f\x15\x2f\x24\x17\x33\x27\x19\x31\x25\x17\x2c\x21\x15\x22\ +\x1a\x10\x1c\x15\x0d\x26\x1f\x17\x31\x31\x2f\x3a\x3d\x3f\x46\x4b\ +\x4d\x53\x57\x5a\x62\x67\x6a\x6e\x71\x76\x75\x78\x7d\x80\x83\x88\ +\x89\x8d\x92\x85\x8b\x90\x87\x8d\x92\x8d\x93\x98\x8a\x8e\x93\x90\ +\x94\x99\x90\x95\x9a\x90\x94\x99\x90\x95\x99\x90\x94\x98\x95\x99\ +\x9d\x96\x99\x9d\x94\x97\x9b\x93\x96\x9a\x92\x95\x99\x9a\x9d\xa1\ +\x97\x9a\x9e\x9b\x9e\xa3\x00\x00\x00\xd9\xd0\xcd\xcc\xc4\xc0\xc0\ +\xad\x9b\x42\x36\x28\x05\x04\x01\x03\x02\x01\x1c\x15\x0d\x1f\x17\ +\x0f\x3b\x2c\x1d\x5c\x44\x2d\x46\x34\x22\x19\x13\x0b\x11\x0d\x08\ +\x1c\x15\x0d\x25\x1c\x11\x2b\x20\x14\x25\x1c\x12\x1e\x17\x0f\x1e\ +\x16\x0e\x15\x0f\x0a\x0f\x0b\x07\x14\x0f\x0a\x13\x0e\x09\x19\x13\ +\x0c\x1c\x15\x0e\x1e\x16\x0e\x2a\x1f\x14\x24\x1b\x12\x17\x11\x0b\ +\x1a\x14\x0d\x1a\x14\x0c\x26\x1c\x12\x26\x1d\x13\x1f\x17\x0f\x21\ +\x19\x10\x40\x31\x20\x1e\x17\x0e\x28\x1e\x13\x3b\x2d\x1d\x22\x1a\ +\x10\x2b\x21\x16\x3a\x2c\x1d\x31\x24\x17\x33\x26\x19\x3a\x2b\x1d\ +\x26\x1c\x12\x17\x11\x0b\x14\x0f\x0a\x12\x0e\x09\x26\x1c\x12\x15\ +\x10\x0a\x19\x13\x0c\x15\x10\x0a\x17\x11\x0b\x1b\x14\x0d\x21\x18\ +\x0f\x2f\x24\x18\x92\x70\x4e\x8f\x6e\x4c\x2c\x21\x15\x1b\x14\x0d\ +\x26\x1d\x12\x26\x1c\x12\x1b\x14\x0c\x0a\x07\x04\x47\x37\x25\x99\ +\x76\x52\x69\x51\x38\x1f\x18\x10\x09\x07\x03\x6d\x54\x3a\xab\x84\ +\x5c\x6b\x53\x39\x28\x1e\x13\x22\x19\x10\x22\x19\x10\x68\x50\x37\ +\xaa\x84\x5c\x93\x71\x4f\x23\x1a\x10\x2e\x23\x16\x2c\x21\x15\x22\ +\x19\x10\x16\x11\x0a\x2e\x23\x18\xa1\x7c\x57\x9c\x78\x54\x4c\x3b\ +\x28\x17\x11\x0a\x23\x1b\x11\x32\x26\x19\x29\x1f\x14\x26\x1c\x12\ +\x5f\x48\x30\x7d\x5f\x41\x61\x4a\x32\x32\x25\x18\x2a\x1f\x14\x1a\ +\x14\x0c\x66\x4f\x36\xa5\x80\x59\x84\x65\x46\x3c\x2d\x1e\x3a\x2c\ +\x1c\x37\x29\x1a\x2e\x22\x16\x2a\x20\x14\x34\x28\x19\x39\x2b\x1c\ +\x3a\x2b\x1c\x3b\x2c\x1c\x31\x24\x17\x29\x1f\x14\x2c\x21\x15\x2d\ +\x22\x16\x2f\x23\x16\x33\x26\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\ +\x17\x2a\x1f\x14\x29\x1e\x14\x2e\x23\x17\x31\x25\x18\x29\x1f\x14\ +\x2b\x20\x14\x2d\x22\x15\x35\x28\x19\x37\x29\x1b\x2d\x21\x15\x33\ +\x26\x18\x33\x26\x18\x2f\x24\x17\x2a\x1f\x14\x27\x1e\x13\x24\x1b\ +\x11\x24\x1c\x14\x2e\x2d\x2b\x39\x3c\x3e\x46\x4a\x4c\x54\x57\x5b\ +\x63\x66\x69\x6d\x71\x74\x78\x7b\x80\x7f\x83\x87\x85\x89\x8d\x8a\ +\x8e\x92\x88\x8d\x92\x8a\x8f\x94\x89\x8e\x93\x8e\x94\x98\x8f\x94\ +\x99\x90\x95\x99\x93\x98\x9b\x90\x95\x98\x93\x96\x9a\x94\x97\x9b\ +\x96\x99\x9e\x90\x93\x97\x91\x93\x98\x95\x98\x9c\x96\x99\x9d\x9b\ +\x9e\xa3\x00\x00\x00\xdc\xd4\xd2\xd7\xd0\xcd\xc4\xae\x98\x56\x4b\ +\x3e\x06\x06\x04\x01\x01\x01\x19\x12\x0c\x28\x1f\x14\x3b\x2c\x1c\ +\x64\x4b\x31\x4b\x38\x25\x28\x1e\x13\x13\x0e\x09\x1b\x14\x0d\x23\ +\x1b\x11\x2b\x20\x14\x26\x1d\x12\x27\x1d\x13\x29\x1f\x14\x1f\x17\ +\x0f\x16\x10\x0b\x17\x11\x0b\x13\x0e\x09\x18\x12\x0c\x1d\x16\x0e\ +\x1f\x17\x0e\x29\x1e\x13\x26\x1c\x12\x19\x13\x0c\x1d\x16\x0e\x1e\ +\x16\x0e\x24\x1b\x11\x27\x1e\x13\x1e\x16\x0e\x1a\x15\x0d\x2c\x21\ +\x15\x1a\x13\x0c\x20\x18\x10\x39\x2b\x1c\x1d\x16\x0e\x28\x1e\x13\ +\x38\x2a\x1c\x2f\x23\x17\x27\x1d\x12\x35\x27\x1a\x2a\x1f\x14\x1b\ +\x15\x0d\x21\x19\x10\x18\x12\x0b\x38\x2a\x1d\x1c\x15\x0e\x16\x12\ +\x0a\x13\x0e\x09\x18\x12\x0b\x1d\x16\x0e\x21\x19\x10\x2a\x20\x15\ +\x9b\x77\x52\x8d\x6d\x4c\x38\x2b\x1c\x1c\x15\x0d\x26\x1d\x12\x23\ +\x1a\x11\x20\x18\x0f\x19\x12\x0c\x2b\x21\x16\x7b\x5f\x41\x95\x73\ +\x50\x4d\x3b\x29\x11\x0d\x07\x5a\x45\x2f\xa3\x7e\x57\x68\x50\x37\ +\x26\x1c\x13\x22\x19\x10\x21\x19\x10\x4f\x3c\x29\xa5\x80\x59\x93\ +\x72\x4f\x25\x1c\x11\x31\x24\x17\x40\x30\x20\x43\x34\x23\x35\x29\ +\x1b\x49\x39\x27\xa0\x7b\x57\xa3\x7e\x58\x76\x5b\x3f\x5c\x48\x31\ +\x7b\x60\x43\x67\x4f\x37\x30\x24\x17\x32\x25\x18\x69\x50\x36\x84\ +\x65\x45\x7e\x60\x42\x4f\x3c\x29\x38\x2a\x1b\x30\x24\x18\x7c\x5f\ +\x41\xa1\x7d\x58\x89\x69\x49\x51\x3e\x29\x38\x2a\x1b\x32\x26\x18\ +\x29\x1f\x14\x2e\x22\x16\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1d\x3a\ +\x2c\x1c\x30\x24\x17\x29\x1e\x14\x31\x24\x17\x32\x26\x18\x2e\x22\ +\x16\x30\x24\x17\x2e\x22\x16\x2b\x20\x15\x30\x24\x17\x2c\x21\x15\ +\x28\x1e\x13\x28\x1e\x13\x35\x28\x1a\x23\x1a\x11\x26\x1d\x13\x2d\ +\x21\x16\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x13\x31\x25\x17\x31\x25\ +\x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x14\x29\x1e\x14\x1f\x17\x10\ +\x20\x1f\x20\x39\x3b\x3d\x46\x48\x4a\x53\x56\x58\x5f\x63\x65\x6c\ +\x70\x72\x77\x7b\x7f\x7e\x83\x86\x82\x87\x8a\x8c\x91\x95\x88\x8c\ +\x91\x87\x8b\x90\x8c\x91\x95\x8d\x92\x97\x8e\x93\x96\x92\x97\x9a\ +\x92\x96\x9a\x92\x97\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\xa0\x8e\ +\x91\x96\x94\x96\x9b\x8f\x92\x96\x94\x97\x9b\x9a\x9d\xa1\x00\x00\ +\x00\xb8\xb0\xab\xbc\xb4\xaf\xbe\xa9\x94\x64\x55\x47\x09\x08\x06\ +\x01\x01\x00\x28\x1e\x14\x2f\x24\x17\x3d\x2e\x1d\x60\x48\x2f\x49\ +\x36\x23\x30\x24\x17\x15\x10\x0a\x18\x12\x0c\x26\x1d\x12\x27\x1e\ +\x13\x23\x1a\x11\x22\x19\x10\x29\x1e\x13\x25\x1b\x12\x22\x19\x10\ +\x21\x19\x10\x18\x12\x0b\x18\x12\x0c\x22\x19\x10\x1f\x17\x0e\x25\ +\x1b\x11\x29\x1e\x13\x1d\x15\x0e\x1e\x17\x0e\x21\x19\x0f\x1a\x13\ +\x0c\x22\x19\x10\x1b\x15\x0d\x18\x12\x0c\x2e\x22\x17\x1b\x15\x0d\ +\x1d\x15\x0e\x2a\x1f\x14\x19\x12\x0b\x22\x1a\x10\x2b\x21\x15\x26\ +\x1c\x13\x22\x1a\x10\x2e\x23\x16\x29\x1f\x14\x25\x1c\x12\x29\x1e\ +\x14\x1c\x15\x0d\x3d\x2e\x20\x1b\x14\x0d\x15\x10\x0a\x14\x0e\x09\ +\x16\x11\x0a\x1e\x16\x0e\x17\x12\x0b\x21\x19\x10\x95\x72\x4e\x99\ +\x76\x52\x43\x34\x22\x20\x17\x0f\x1e\x16\x0e\x20\x18\x0f\x2a\x20\ +\x15\x1e\x16\x0e\x1d\x15\x0e\x4c\x3a\x28\x9d\x79\x54\x9d\x7a\x55\ +\x74\x5a\x3e\x83\x65\x46\xa4\x7f\x58\x71\x57\x3c\x25\x1d\x13\x25\ +\x1c\x12\x1b\x14\x0d\x37\x2a\x1c\x9e\x79\x54\x9b\x77\x53\x37\x29\ +\x1b\x2f\x24\x17\x4f\x3c\x28\x97\x75\x52\x8e\x6e\x4d\x94\x73\x50\ +\xa5\x80\x5a\x9c\x78\x54\x98\x76\x52\x9a\x78\x54\x9d\x7a\x56\x5f\ +\x49\x33\x25\x1b\x11\x37\x29\x1b\x5f\x49\x31\x70\x55\x3a\x68\x4f\ +\x36\x51\x3d\x29\x3a\x2b\x1c\x38\x2a\x1c\x54\x40\x2b\x5a\x44\x2e\ +\x58\x43\x2d\x4e\x3b\x27\x36\x28\x1a\x2f\x23\x17\x20\x18\x0f\x29\ +\x1f\x14\x30\x24\x17\x2d\x21\x15\x2f\x23\x16\x38\x2a\x1b\x37\x2a\ +\x1b\x2e\x23\x17\x34\x27\x19\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x14\ +\x2a\x1f\x14\x2f\x23\x17\x38\x2b\x1b\x34\x27\x19\x30\x24\x17\x27\ +\x1e\x13\x35\x28\x1a\x2c\x21\x15\x2d\x22\x16\x36\x28\x1a\x32\x26\ +\x18\x2b\x20\x15\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2a\x1f\x14\ +\x29\x1f\x14\x2b\x21\x15\x31\x25\x18\x2b\x20\x15\x1d\x1c\x1a\x2d\ +\x2f\x31\x46\x48\x4a\x52\x55\x57\x5f\x63\x65\x6c\x70\x73\x78\x7c\ +\x7f\x7b\x80\x82\x81\x86\x89\x8a\x8e\x93\x89\x8c\x91\x8c\x90\x94\ +\x8f\x93\x99\x8c\x91\x95\x8c\x91\x94\x91\x96\x99\x91\x96\x99\x94\ +\x98\x9b\x8c\x90\x94\x92\x95\x99\x95\x97\x9b\x93\x96\x9a\x94\x97\ +\x9b\x8e\x91\x95\x93\x96\x9a\x96\x99\x9d\x00\x00\x00\xce\xc8\xc4\ +\xc3\xbc\xb7\xb5\xab\xa3\x68\x5a\x4e\x0a\x09\x07\x01\x00\x00\x28\ +\x1e\x13\x2d\x22\x15\x3a\x2b\x1b\x53\x3f\x29\x5d\x45\x2d\x37\x29\ +\x1b\x15\x0f\x0a\x19\x13\x0c\x21\x18\x10\x24\x1b\x12\x26\x1d\x13\ +\x27\x1d\x13\x28\x1e\x13\x27\x1c\x12\x2b\x20\x15\x2e\x22\x16\x24\ +\x1b\x11\x18\x12\x0b\x19\x13\x0c\x17\x11\x0b\x1c\x16\x0d\x20\x18\ +\x0f\x1c\x15\x0e\x1d\x16\x0e\x27\x1d\x13\x19\x13\x0c\x31\x25\x18\ +\x1f\x18\x0f\x1e\x16\x0e\x40\x30\x1f\x1f\x17\x0f\x1f\x17\x0f\x26\ +\x1d\x12\x1d\x16\x0e\x1c\x15\x0e\x1d\x16\x0e\x23\x1a\x10\x1f\x17\ +\x0f\x2f\x24\x17\x2a\x20\x15\x22\x1a\x10\x27\x1d\x12\x1d\x16\x0d\ +\x3b\x2d\x1e\x1b\x15\x0d\x16\x11\x0a\x16\x10\x0a\x1a\x14\x0c\x19\ +\x13\x0c\x37\x2a\x1c\x21\x19\x11\x81\x63\x44\x97\x74\x51\x60\x49\ +\x32\x42\x32\x22\x4e\x3b\x28\x67\x4f\x36\x5a\x45\x2e\x1d\x16\x0d\ +\x1b\x15\x0d\x1f\x18\x0f\x46\x36\x24\x84\x66\x47\xac\x86\x5e\xac\ +\x85\x5d\xaf\x88\x5e\x98\x75\x52\x4a\x38\x26\x2b\x21\x15\x2c\x22\ +\x16\x5b\x45\x2f\x85\x66\x46\x7c\x5f\x41\x51\x3e\x2a\x2f\x23\x17\ +\x3b\x2c\x1d\x6c\x53\x39\x6b\x52\x39\x61\x4b\x34\x51\x3e\x2b\x48\ +\x37\x25\x47\x36\x25\x44\x34\x23\x40\x31\x21\x34\x28\x1a\x29\x1e\ +\x14\x2a\x20\x14\x34\x27\x19\x3a\x2c\x1c\x2e\x22\x16\x2f\x23\x16\ +\x35\x27\x19\x2a\x20\x14\x1e\x17\x0e\x27\x1d\x12\x33\x26\x19\x39\ +\x2a\x1c\x35\x28\x1a\x2e\x23\x17\x23\x1a\x11\x26\x1d\x12\x24\x1b\ +\x11\x28\x1d\x13\x29\x1f\x13\x2e\x23\x16\x2e\x23\x16\x2e\x23\x16\ +\x2a\x1f\x14\x23\x1b\x11\x29\x1e\x14\x28\x1e\x13\x2b\x20\x15\x33\ +\x26\x18\x3f\x30\x1e\x3d\x2e\x1d\x34\x27\x19\x34\x27\x19\x32\x25\ +\x18\x33\x26\x18\x35\x28\x1a\x31\x25\x17\x32\x26\x18\x30\x23\x17\ +\x2f\x23\x16\x34\x27\x19\x30\x24\x17\x2b\x21\x15\x27\x1d\x13\x29\ +\x1e\x13\x2d\x22\x16\x34\x28\x1a\x33\x2e\x29\x21\x23\x24\x38\x3a\ +\x3c\x53\x56\x58\x5f\x61\x65\x6e\x71\x74\x77\x7b\x7d\x79\x7c\x80\ +\x84\x89\x8d\x85\x8a\x8d\x8c\x91\x94\x8b\x8e\x93\x90\x94\x98\x90\ +\x94\x98\x8f\x94\x97\x8f\x94\x97\x90\x96\x99\x93\x98\x9c\x93\x97\ +\x9c\x95\x98\x9d\x98\x9a\x9e\x94\x97\x9b\x94\x97\x9b\x94\x97\x9b\ +\x95\x98\x9b\x95\x98\x9c\x00\x00\x00\xdc\xd7\xd3\xd4\xcf\xcc\xcc\ +\xc5\xbe\x7e\x71\x63\x0d\x0a\x08\x02\x01\x00\x21\x18\x0f\x29\x1f\ +\x13\x37\x29\x1a\x60\x48\x2f\x68\x4d\x33\x39\x2b\x1b\x0f\x0b\x07\ +\x16\x10\x0a\x1b\x14\x0d\x20\x19\x10\x26\x1d\x13\x26\x1d\x12\x26\ +\x1c\x12\x29\x1e\x13\x2d\x22\x16\x2f\x23\x17\x2a\x1f\x14\x1a\x14\ +\x0d\x19\x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x20\x18\x0f\x1b\x15\x0d\ +\x1f\x18\x0f\x26\x1d\x13\x1d\x16\x0e\x32\x26\x18\x23\x1a\x11\x21\ +\x19\x0f\x37\x2a\x1b\x21\x19\x10\x25\x1c\x12\x32\x26\x18\x27\x1d\ +\x13\x26\x1d\x12\x27\x1d\x13\x24\x1b\x12\x1c\x16\x0e\x2f\x23\x17\ +\x2b\x20\x15\x1f\x17\x0f\x2d\x21\x16\x20\x18\x0f\x2f\x23\x17\x24\ +\x1c\x11\x1e\x17\x0e\x1a\x14\x0c\x18\x12\x0b\x16\x11\x0a\x71\x57\ +\x3d\x7f\x62\x43\x8c\x6c\x4b\x95\x73\x4f\x9b\x78\x54\x95\x73\x50\ +\x94\x72\x4f\x9d\x7a\x54\x6f\x55\x3b\x20\x18\x0f\x22\x19\x10\x1c\ +\x15\x0d\x19\x12\x0b\x2c\x22\x17\x47\x36\x25\x55\x41\x2c\x5a\x45\ +\x2f\x59\x44\x2f\x45\x34\x22\x34\x27\x19\x34\x28\x19\x46\x35\x23\ +\x3b\x2d\x1e\x38\x2b\x1c\x3f\x2f\x1f\x2c\x20\x15\x2d\x21\x15\x2c\ +\x21\x15\x27\x1d\x12\x20\x19\x0f\x17\x11\x0a\x16\x11\x0b\x1c\x15\ +\x0d\x1e\x17\x0e\x21\x18\x0f\x27\x1e\x13\x2d\x22\x16\x28\x1e\x13\ +\x26\x1d\x12\x33\x26\x19\x34\x27\x19\x34\x27\x19\x37\x29\x1a\x36\ +\x28\x19\x2c\x21\x15\x2f\x23\x16\x32\x26\x18\x33\x26\x18\x35\x28\ +\x1a\x34\x27\x19\x26\x1c\x12\x2b\x1f\x14\x2d\x22\x16\x32\x25\x18\ +\x31\x25\x17\x34\x27\x19\x2b\x21\x15\x2c\x21\x15\x2c\x21\x15\x2a\ +\x1f\x14\x2b\x20\x15\x2d\x21\x15\x30\x25\x17\x36\x28\x1a\x3a\x2c\ +\x1c\x3d\x2e\x1d\x3c\x2d\x1d\x40\x30\x1f\x38\x2a\x1c\x34\x28\x19\ +\x34\x27\x19\x33\x26\x18\x38\x2a\x1b\x37\x29\x1a\x35\x27\x19\x33\ +\x26\x19\x31\x25\x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x33\x26\ +\x19\x32\x26\x18\x33\x2e\x27\x37\x39\x3a\x26\x28\x2a\x41\x43\x46\ +\x5e\x62\x64\x6c\x70\x73\x73\x77\x7a\x7a\x7f\x82\x88\x8d\x90\x85\ +\x8a\x8c\x8a\x8f\x92\x8b\x90\x93\x8b\x90\x93\x8f\x94\x97\x90\x95\ +\x98\x91\x96\x99\x91\x96\x99\x90\x96\x99\x95\x99\x9e\x90\x93\x98\ +\x99\x9c\xa0\x99\x9c\xa0\x96\x99\x9d\x95\x99\x9b\x95\x98\x9a\x93\ +\x96\x99\x00\x00\x00\xdb\xd6\xd4\xd6\xd2\xd0\xc5\xb1\x9d\x86\x6e\ +\x55\x0f\x0c\x08\x02\x02\x01\x26\x1c\x12\x29\x1f\x14\x33\x26\x19\ +\x56\x3f\x2a\x5b\x44\x2c\x35\x28\x1a\x0d\x0a\x06\x0b\x09\x05\x15\ +\x10\x0a\x1f\x17\x0e\x20\x18\x0f\x1c\x15\x0d\x21\x18\x10\x26\x1c\ +\x12\x2d\x22\x15\x32\x26\x18\x2a\x1f\x14\x24\x1b\x11\x22\x1a\x10\ +\x29\x1f\x14\x25\x1c\x12\x27\x1e\x13\x1d\x16\x0e\x1e\x17\x0e\x1b\ +\x15\x0d\x1c\x15\x0d\x26\x1c\x11\x23\x1a\x11\x26\x1c\x12\x3a\x2c\ +\x1d\x28\x1e\x13\x2a\x1f\x14\x31\x24\x17\x2c\x22\x15\x27\x1e\x13\ +\x30\x24\x17\x2c\x21\x16\x1c\x15\x0d\x2b\x21\x16\x22\x1a\x11\x19\ +\x13\x0c\x24\x1b\x12\x1b\x14\x0d\x2e\x23\x17\x24\x1b\x11\x20\x18\ +\x10\x20\x18\x0f\x1a\x14\x0d\x1d\x16\x0e\x4e\x3b\x28\x6e\x55\x3a\ +\x92\x71\x4d\x90\x6f\x4d\x7f\x62\x44\x47\x37\x25\x50\x3d\x29\x49\ +\x37\x26\x31\x26\x19\x1f\x17\x0f\x28\x1e\x13\x25\x1c\x12\x1d\x16\ +\x0e\x1a\x13\x0c\x1a\x14\x0d\x1d\x15\x0e\x26\x1c\x12\x28\x1d\x13\ +\x2e\x22\x16\x32\x25\x18\x2e\x22\x16\x29\x1f\x14\x22\x1a\x10\x28\ +\x1e\x13\x2d\x22\x16\x2b\x20\x14\x2c\x20\x15\x29\x1e\x13\x29\x1f\ +\x13\x27\x1e\x13\x1c\x15\x0d\x21\x19\x10\x25\x1b\x12\x1e\x17\x0e\ +\x1b\x15\x0d\x25\x1c\x12\x2c\x21\x15\x2e\x23\x16\x33\x26\x18\x38\ +\x2a\x1b\x36\x28\x1a\x36\x28\x19\x33\x26\x18\x32\x25\x17\x2d\x22\ +\x16\x31\x24\x18\x32\x26\x18\x2b\x20\x14\x2e\x22\x16\x2c\x21\x15\ +\x2a\x1f\x14\x2e\x22\x16\x32\x26\x18\x3a\x2c\x1c\x3e\x2e\x1e\x39\ +\x2b\x1b\x2f\x23\x16\x33\x26\x18\x30\x23\x17\x31\x24\x17\x36\x29\ +\x1a\x35\x27\x1a\x33\x26\x19\x34\x27\x18\x35\x28\x1a\x37\x29\x1b\ +\x3a\x2c\x1c\x3e\x2f\x1e\x3c\x2d\x1d\x3a\x2b\x1c\x37\x29\x1a\x33\ +\x27\x18\x3e\x2e\x1e\x3e\x2f\x1e\x37\x2a\x1a\x37\x29\x1a\x30\x24\ +\x17\x2d\x22\x16\x2a\x1f\x14\x2e\x23\x16\x30\x24\x17\x2f\x24\x17\ +\x31\x2d\x25\x36\x38\x39\x45\x47\x49\x2a\x2c\x2e\x4b\x4d\x50\x6b\ +\x6e\x70\x75\x79\x7c\x79\x7e\x80\x82\x86\x8a\x86\x8a\x8e\x87\x8c\ +\x8f\x8e\x93\x96\x8b\x90\x93\x8a\x8f\x92\x93\x98\x9b\x92\x97\x9a\ +\x92\x97\x9b\x90\x94\x98\x91\x95\x9a\x92\x96\x9a\x9a\x9d\xa1\x99\ +\x9c\xa0\x98\x9b\x9f\x95\x98\x99\x92\x96\x97\x97\x99\x9d\x00\x00\ +\x00\xb5\xae\xa8\xb6\xaf\xa9\xbc\xb1\xa5\x96\x85\x74\x11\x0f\x0b\ +\x02\x02\x01\x29\x1f\x14\x32\x26\x19\x2e\x22\x16\x49\x37\x23\x5d\ +\x45\x2d\x3e\x2f\x1e\x0f\x0b\x07\x14\x0f\x09\x26\x1d\x12\x21\x18\ +\x0f\x17\x12\x0b\x1a\x13\x0d\x21\x19\x10\x24\x1a\x11\x29\x1f\x13\ +\x32\x25\x18\x31\x24\x17\x28\x1e\x13\x20\x18\x10\x26\x1c\x12\x26\ +\x1c\x13\x2c\x21\x16\x26\x1d\x13\x26\x1c\x12\x1b\x14\x0d\x17\x10\ +\x0b\x1e\x17\x0e\x1c\x14\x0e\x24\x1b\x11\x3b\x2d\x1c\x2a\x20\x14\ +\x2a\x1f\x14\x2d\x21\x15\x28\x1e\x13\x23\x1a\x11\x31\x25\x17\x31\ +\x25\x18\x1a\x13\x0c\x36\x29\x1b\x2e\x23\x17\x16\x11\x0a\x2a\x20\ +\x15\x21\x19\x10\x34\x28\x1a\x2c\x21\x15\x22\x1a\x10\x2b\x20\x15\ +\x2b\x20\x15\x20\x18\x0f\x2a\x1f\x15\x2a\x20\x15\x88\x69\x48\x89\ +\x6a\x49\x5f\x49\x31\x20\x18\x0e\x24\x1b\x11\x1e\x16\x0e\x19\x13\ +\x0c\x1c\x15\x0d\x20\x18\x0f\x26\x1c\x12\x23\x1a\x11\x1e\x17\x0e\ +\x1e\x17\x0e\x1e\x17\x0f\x28\x1e\x13\x28\x1e\x13\x30\x24\x17\x2f\ +\x23\x17\x2c\x21\x15\x24\x1b\x11\x20\x19\x0f\x26\x1d\x12\x26\x1c\ +\x12\x27\x1d\x13\x22\x1a\x10\x2b\x21\x15\x2a\x1f\x14\x28\x1e\x13\ +\x24\x1b\x11\x21\x19\x10\x27\x1e\x13\x22\x19\x10\x1a\x13\x0c\x1d\ +\x15\x0d\x1f\x17\x0f\x20\x18\x10\x31\x24\x17\x31\x25\x18\x33\x27\ +\x19\x2f\x23\x16\x30\x24\x17\x2a\x20\x14\x2c\x22\x16\x32\x25\x18\ +\x39\x2a\x1b\x35\x28\x1a\x31\x24\x18\x28\x1e\x13\x2b\x20\x15\x30\ +\x24\x17\x2b\x21\x15\x32\x25\x18\x37\x2a\x1b\x38\x2a\x1b\x35\x28\ +\x1a\x35\x28\x1a\x30\x24\x17\x31\x25\x17\x36\x29\x19\x32\x25\x18\ +\x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2e\x22\x16\x31\x25\x18\x3a\ +\x2c\x1c\x34\x27\x19\x37\x29\x1a\x3c\x2c\x1c\x34\x27\x19\x3c\x2d\ +\x1d\x3c\x2d\x1d\x35\x28\x19\x3a\x2b\x1c\x32\x25\x18\x2d\x22\x16\ +\x2a\x1f\x14\x28\x1f\x13\x2a\x20\x14\x30\x24\x18\x31\x2a\x23\x3a\ +\x3b\x3b\x41\x43\x45\x50\x53\x55\x30\x32\x36\x53\x56\x59\x74\x78\ +\x7a\x7e\x82\x85\x84\x88\x8b\x89\x8e\x91\x88\x8c\x8f\x8c\x91\x94\ +\x89\x8e\x91\x8b\x90\x92\x8d\x92\x94\x90\x95\x98\x8f\x94\x98\x91\ +\x96\x9a\x93\x97\x9c\x95\x98\x9c\x97\x9a\x9e\x96\x99\x9d\x98\x9b\ +\x9e\x97\x9a\x9c\x94\x98\x99\x95\x99\x9b\x00\x00\x00\xd7\xd1\xce\ +\xc7\xc1\xbe\xb3\xad\xa9\x96\x86\x77\x10\x0f\x0c\x10\x0c\x08\x3f\ +\x30\x20\x46\x35\x23\x31\x25\x18\x4d\x3a\x25\x5b\x44\x2c\x4e\x3a\ +\x25\x16\x10\x0a\x2b\x20\x14\x2f\x23\x16\x25\x1c\x11\x20\x18\x0f\ +\x14\x0f\x0a\x19\x13\x0c\x22\x19\x11\x25\x1c\x12\x2c\x21\x15\x2e\ +\x22\x16\x2c\x20\x15\x1e\x16\x0e\x23\x1a\x11\x25\x1c\x12\x2b\x21\ +\x15\x2d\x22\x16\x27\x1d\x12\x1e\x17\x0e\x1a\x14\x0d\x24\x1b\x12\ +\x18\x12\x0b\x20\x18\x10\x34\x27\x19\x2a\x20\x14\x2a\x20\x14\x34\ +\x27\x19\x2d\x21\x16\x28\x1e\x13\x37\x2a\x1b\x33\x27\x19\x19\x13\ +\x0c\x3a\x2c\x1d\x30\x24\x18\x1d\x15\x0e\x2d\x22\x16\x21\x19\x10\ +\x2e\x23\x17\x2f\x24\x17\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x29\ +\x1e\x14\x24\x1b\x12\x28\x1f\x13\x6b\x51\x38\x79\x5c\x3f\x64\x4d\ +\x35\x19\x12\x0c\x24\x1a\x11\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\ +\x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x21\x19\x10\x22\x19\x10\x22\ +\x1a\x11\x2b\x20\x15\x2b\x20\x14\x2e\x23\x16\x2c\x20\x15\x25\x1c\ +\x12\x26\x1d\x12\x22\x1a\x10\x24\x1a\x11\x1f\x18\x0f\x24\x1c\x12\ +\x20\x18\x0f\x29\x1f\x13\x29\x1e\x13\x2b\x20\x14\x29\x1f\x14\x1e\ +\x17\x0f\x25\x1c\x12\x25\x1c\x12\x24\x1b\x11\x24\x1b\x12\x1c\x15\ +\x0d\x24\x1b\x11\x2f\x23\x16\x2f\x23\x16\x2a\x1f\x14\x25\x1b\x12\ +\x2c\x21\x15\x26\x1d\x12\x25\x1c\x12\x2e\x22\x16\x30\x24\x17\x36\ +\x29\x1a\x37\x2a\x1a\x33\x27\x19\x31\x24\x17\x2b\x20\x14\x2a\x1f\ +\x14\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x33\x26\x19\x37\x29\x1a\ +\x35\x28\x1a\x34\x28\x19\x2f\x23\x17\x29\x1e\x14\x2c\x21\x15\x2b\ +\x21\x15\x2e\x22\x16\x31\x25\x17\x34\x27\x1a\x3b\x2c\x1d\x35\x28\ +\x19\x39\x2b\x1b\x3e\x2e\x1e\x37\x2a\x1b\x3a\x2b\x1c\x3c\x2d\x1d\ +\x37\x29\x1a\x40\x2f\x1f\x37\x29\x1a\x2e\x22\x16\x2b\x21\x15\x2b\ +\x20\x15\x28\x1e\x13\x30\x24\x18\x2c\x24\x1c\x30\x31\x31\x40\x43\ +\x44\x4b\x4d\x4f\x66\x69\x6b\x33\x36\x3a\x5a\x5d\x60\x81\x86\x88\ +\x81\x86\x89\x86\x8a\x8d\x89\x8e\x91\x8f\x94\x97\x8d\x92\x95\x8e\ +\x93\x96\x89\x8e\x91\x8c\x91\x94\x90\x95\x98\x96\x9b\x9e\x96\x9b\ +\x9f\x94\x97\x9b\x95\x98\x9c\x9a\x9d\xa1\x97\x9a\x9e\x97\x9a\x9f\ +\x97\x9b\x9e\x98\x9c\x9e\x00\x00\x00\xdd\xd8\xd5\xd8\xd3\xd3\xd0\ +\xcc\xca\xb8\xab\xa0\x14\x12\x0f\x11\x0d\x08\x3c\x2d\x1e\x35\x28\ +\x1b\x35\x28\x1a\x57\x41\x2a\x5c\x44\x2d\x4e\x3b\x26\x1b\x15\x0d\ +\x27\x1d\x13\x1f\x18\x0f\x2a\x1f\x14\x26\x1d\x12\x18\x12\x0c\x19\ +\x13\x0c\x1e\x17\x0e\x20\x17\x0f\x28\x1d\x13\x2d\x22\x16\x28\x1e\ +\x14\x1c\x15\x0d\x21\x18\x10\x29\x1f\x14\x33\x26\x18\x28\x1d\x13\ +\x28\x1e\x13\x26\x1c\x12\x1c\x15\x0d\x26\x1c\x12\x1e\x17\x0f\x19\ +\x13\x0d\x39\x2b\x1d\x25\x1b\x12\x26\x1d\x12\x32\x25\x18\x34\x27\ +\x19\x23\x1a\x11\x30\x24\x17\x32\x26\x18\x1d\x16\x0e\x3a\x2d\x1e\ +\x45\x35\x23\x30\x24\x17\x28\x1e\x13\x1e\x17\x0e\x24\x1b\x12\x3a\ +\x2c\x1d\x29\x1e\x14\x24\x1b\x11\x2e\x23\x17\x34\x28\x19\x26\x1c\ +\x13\x27\x1d\x12\x54\x40\x2b\x8f\x6e\x4c\x80\x63\x44\x20\x17\x0f\ +\x28\x1e\x13\x23\x1b\x11\x21\x19\x10\x1d\x16\x0e\x21\x19\x10\x24\ +\x1b\x11\x24\x1b\x11\x21\x19\x10\x1b\x14\x0d\x1f\x17\x0f\x25\x1b\ +\x12\x27\x1d\x13\x2b\x20\x15\x31\x24\x17\x2b\x20\x14\x30\x25\x17\ +\x33\x25\x19\x27\x1d\x13\x24\x1c\x12\x23\x1a\x10\x1c\x15\x0d\x21\ +\x18\x10\x23\x1b\x11\x21\x1a\x10\x24\x1b\x11\x27\x1d\x13\x27\x1d\ +\x13\x2c\x21\x15\x2a\x20\x14\x28\x1e\x13\x27\x1e\x13\x23\x1b\x11\ +\x27\x1d\x13\x29\x1e\x13\x1e\x16\x0e\x2a\x1f\x15\x30\x24\x17\x20\ +\x18\x10\x24\x1b\x11\x34\x27\x19\x2e\x23\x16\x32\x24\x18\x38\x2b\ +\x1b\x30\x24\x17\x32\x26\x18\x25\x1d\x12\x22\x1a\x11\x29\x1f\x14\ +\x27\x1d\x12\x2a\x20\x14\x32\x25\x18\x3b\x2c\x1c\x3a\x2b\x1b\x39\ +\x2b\x1b\x35\x28\x19\x2c\x20\x15\x2c\x21\x15\x29\x1f\x13\x2a\x1f\ +\x14\x2b\x20\x14\x33\x26\x18\x36\x29\x1b\x39\x2c\x1c\x34\x28\x19\ +\x38\x2a\x1b\x3e\x2e\x1d\x3f\x2f\x1e\x43\x32\x20\x3b\x2c\x1c\x39\ +\x2b\x1c\x3c\x2d\x1d\x33\x26\x19\x29\x1e\x14\x2b\x20\x14\x2e\x23\ +\x16\x33\x26\x19\x2d\x26\x1e\x20\x21\x22\x36\x38\x39\x4b\x4d\x50\ +\x58\x5b\x5e\x6d\x70\x74\x3c\x3f\x43\x5d\x5f\x64\x84\x88\x8a\x89\ +\x8d\x8f\x89\x8e\x91\x8c\x91\x94\x8d\x92\x95\x90\x95\x97\x8e\x93\ +\x96\x89\x8e\x91\x8d\x92\x93\x92\x97\x9a\x92\x97\x9a\x98\x9c\x9f\ +\x95\x98\x9c\x98\x9c\x9f\x99\x9c\xa0\x96\x9a\x9e\x96\x99\x9d\x9b\ +\x9e\xa1\x00\x00\x00\xd4\xcf\xcc\xd3\xcf\xcd\xce\xcb\xca\xc8\xbf\ +\xba\x18\x17\x14\x0c\x09\x06\x2c\x22\x16\x47\x36\x24\x30\x24\x17\ +\x53\x3f\x28\x54\x3e\x28\x51\x3d\x27\x19\x12\x0b\x15\x0f\x0a\x19\ +\x13\x0c\x23\x1a\x11\x2e\x22\x16\x2d\x21\x15\x22\x1a\x10\x22\x1a\ +\x10\x23\x1b\x11\x26\x1d\x12\x30\x24\x17\x27\x1d\x12\x1d\x15\x0d\ +\x1f\x18\x0f\x26\x1d\x13\x23\x1a\x11\x23\x1a\x10\x2e\x22\x16\x28\ +\x1e\x14\x2e\x22\x17\x2a\x1f\x14\x20\x19\x0f\x16\x11\x0a\x33\x27\ +\x1a\x2c\x21\x16\x27\x1e\x13\x33\x27\x19\x35\x27\x1a\x25\x1c\x12\ +\x32\x26\x18\x37\x29\x1b\x23\x1b\x11\x2c\x21\x16\x34\x27\x1a\x28\ +\x1e\x13\x26\x1d\x12\x20\x18\x0f\x15\x10\x0a\x36\x29\x1b\x26\x1d\ +\x12\x26\x1d\x12\x2b\x20\x15\x35\x28\x19\x32\x26\x18\x36\x2a\x1b\ +\x5d\x47\x30\x85\x66\x45\x86\x67\x47\x26\x1c\x11\x34\x26\x19\x29\ +\x1e\x13\x1f\x17\x0e\x17\x11\x0b\x1b\x14\x0d\x1f\x17\x0f\x1e\x17\ +\x0f\x1d\x15\x0e\x1b\x15\x0d\x1a\x14\x0c\x1a\x14\x0d\x23\x1b\x11\ +\x20\x18\x0f\x26\x1d\x12\x23\x1a\x11\x2b\x21\x15\x2c\x20\x15\x29\ +\x1e\x13\x23\x1a\x11\x23\x1b\x11\x23\x1a\x11\x19\x13\x0c\x1b\x14\ +\x0d\x24\x1b\x12\x28\x1e\x13\x22\x1a\x10\x1d\x16\x0e\x20\x18\x10\ +\x20\x18\x10\x27\x1d\x13\x21\x19\x10\x18\x13\x0c\x1f\x17\x0f\x1e\ +\x16\x0e\x1f\x17\x0f\x23\x1a\x11\x27\x1d\x13\x2d\x21\x15\x1f\x17\ +\x0f\x2a\x1f\x14\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x37\x29\x1a\ +\x35\x27\x1a\x2b\x20\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x2a\ +\x1f\x14\x32\x25\x18\x3a\x2b\x1b\x39\x2a\x1b\x33\x27\x19\x2e\x23\ +\x16\x2a\x20\x14\x2f\x23\x17\x2b\x20\x15\x2a\x1f\x14\x30\x25\x17\ +\x35\x28\x1a\x33\x26\x19\x32\x25\x18\x30\x24\x17\x39\x2b\x1c\x3a\ +\x2b\x1c\x3d\x2e\x1e\x3c\x2c\x1d\x3a\x2c\x1b\x3e\x2f\x1e\x3f\x2f\ +\x1e\x36\x28\x1a\x2c\x21\x15\x2c\x21\x15\x32\x26\x18\x2e\x22\x16\ +\x2c\x25\x1d\x2e\x2f\x2e\x23\x24\x26\x41\x43\x45\x5c\x5f\x62\x5a\ +\x5d\x60\x7a\x7e\x81\x4c\x50\x53\x5b\x5d\x61\x88\x8d\x8e\x8d\x91\ +\x95\x8e\x93\x96\x8b\x90\x93\x8d\x92\x95\x8e\x93\x96\x8e\x93\x95\ +\x91\x96\x97\x8f\x94\x97\x90\x95\x98\x97\x9b\x9e\x97\x9a\x9e\x98\ +\x9b\x9f\x9a\x9d\xa1\x97\x9a\x9e\x9b\x9f\xa3\x9d\x9f\xa3\x00\x00\ +\x00\xba\xb4\xb2\xbd\xb7\xb8\xbf\xba\xba\xb3\x94\x78\x1e\x18\x10\ +\x06\x05\x02\x3c\x2d\x1e\x3d\x2e\x1f\x3b\x2c\x1c\x54\x3e\x28\x5a\ +\x43\x2b\x4d\x39\x25\x1c\x14\x0d\x1a\x13\x0c\x24\x1b\x11\x28\x1e\ +\x14\x29\x1f\x14\x23\x1a\x11\x20\x18\x10\x18\x12\x0b\x1d\x16\x0e\ +\x21\x19\x10\x26\x1c\x12\x28\x1e\x13\x21\x1a\x10\x1d\x16\x0e\x1c\ +\x15\x0d\x27\x1d\x13\x22\x19\x10\x1e\x17\x0e\x25\x1c\x12\x28\x1e\ +\x13\x2c\x21\x15\x20\x19\x0f\x1d\x15\x0e\x2b\x21\x15\x28\x1e\x14\ +\x26\x1d\x12\x35\x29\x1a\x45\x33\x21\x2f\x24\x17\x31\x25\x18\x33\ +\x26\x19\x26\x1c\x12\x3b\x2d\x1e\x44\x34\x22\x29\x20\x14\x23\x1a\ +\x11\x27\x1d\x12\x1b\x14\x0d\x32\x26\x19\x23\x1b\x11\x2d\x21\x15\ +\x29\x1f\x14\x2f\x23\x17\x34\x27\x19\x33\x26\x18\x55\x40\x2b\x8b\ +\x6a\x49\x80\x63\x44\x29\x1f\x14\x34\x27\x19\x31\x24\x18\x2f\x23\ +\x16\x2e\x23\x16\x26\x1d\x12\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0e\ +\x1d\x15\x0e\x1d\x17\x0e\x1c\x15\x0d\x1f\x18\x0f\x23\x1a\x10\x23\ +\x1b\x11\x2e\x23\x16\x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x21\x19\ +\x10\x29\x1e\x13\x25\x1c\x11\x22\x1a\x10\x1b\x14\x0c\x1e\x16\x0e\ +\x24\x1b\x11\x28\x1d\x13\x23\x1a\x10\x24\x1b\x11\x28\x1d\x13\x26\ +\x1c\x12\x1d\x16\x0e\x1e\x17\x0e\x20\x18\x0f\x23\x1a\x11\x21\x19\ +\x10\x24\x1b\x11\x21\x19\x10\x29\x1f\x14\x21\x19\x10\x28\x1e\x13\ +\x29\x1f\x14\x31\x25\x17\x38\x2a\x1b\x35\x28\x19\x35\x29\x1a\x26\ +\x1c\x12\x24\x1b\x12\x25\x1b\x11\x23\x1b\x11\x2a\x20\x14\x33\x26\ +\x19\x3c\x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x33\x26\x18\x32\x26\x18\ +\x36\x29\x1a\x33\x26\x19\x33\x26\x18\x38\x29\x1a\x3b\x2d\x1c\x3e\ +\x2e\x1e\x34\x28\x19\x33\x26\x18\x35\x28\x1a\x38\x2a\x1b\x37\x29\ +\x1b\x2e\x23\x16\x2b\x20\x15\x35\x28\x19\x35\x27\x1a\x39\x2b\x1b\ +\x33\x26\x19\x2d\x21\x15\x27\x1d\x12\x2a\x1f\x14\x27\x21\x1a\x32\ +\x32\x32\x37\x39\x3a\x29\x2b\x2e\x53\x55\x58\x1e\x1f\x21\x72\x75\ +\x78\x7e\x83\x84\x57\x5b\x5e\x56\x59\x5c\x87\x8d\x90\x8f\x95\x99\ +\x8e\x93\x96\x8d\x92\x96\x8f\x94\x96\x8e\x93\x94\x8d\x92\x93\x8c\ +\x90\x92\x8f\x93\x95\x94\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x98\x9b\ +\xa0\x99\x9c\xa0\x9c\x9f\xa3\x9c\x9f\xa4\x00\x00\x00\xdb\xd6\xd5\ +\xce\xc9\xc8\xc0\xbb\xbb\xb7\xa2\x91\x2a\x22\x1a\x07\x06\x04\x36\ +\x28\x1b\x3f\x2f\x1f\x30\x24\x17\x4b\x38\x24\x4f\x3b\x26\x48\x37\ +\x24\x17\x11\x0b\x2b\x21\x15\x3b\x2c\x1d\x34\x27\x1a\x1f\x17\x0f\ +\x23\x1b\x11\x28\x1e\x13\x2b\x20\x14\x21\x19\x10\x1e\x17\x0e\x27\ +\x1e\x13\x2e\x23\x16\x26\x1c\x12\x27\x1d\x13\x2c\x21\x16\x2d\x21\ +\x15\x35\x28\x1a\x3e\x2f\x1e\x3e\x2f\x1e\x2b\x20\x14\x37\x29\x1b\ +\x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x38\x2a\x1d\x20\x18\x0f\x30\ +\x24\x17\x3f\x30\x1e\x33\x26\x18\x35\x28\x1a\x32\x25\x18\x2d\x22\ +\x15\x34\x27\x1a\x3a\x2b\x1c\x31\x25\x18\x26\x1d\x12\x38\x2a\x1c\ +\x22\x1a\x10\x1e\x16\x0e\x20\x18\x0f\x25\x1c\x12\x2f\x23\x17\x2f\ +\x24\x17\x30\x24\x17\x2c\x21\x15\x53\x40\x2a\xa1\x7c\x56\x8b\x6a\ +\x4a\x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1b\x30\x24\x17\x2a\x1f\x14\ +\x26\x1c\x12\x22\x19\x10\x1e\x16\x0e\x24\x1b\x11\x2c\x21\x15\x2d\ +\x22\x16\x23\x1a\x11\x24\x1b\x12\x23\x1a\x11\x24\x1b\x11\x2a\x20\ +\x14\x22\x19\x10\x29\x1f\x14\x24\x1c\x12\x2c\x21\x15\x2b\x20\x15\ +\x2a\x20\x15\x23\x1a\x11\x1e\x17\x0f\x21\x18\x10\x26\x1c\x12\x26\ +\x1c\x12\x23\x19\x10\x21\x19\x10\x22\x1a\x11\x22\x1a\x10\x20\x18\ +\x0f\x20\x18\x0f\x1c\x15\x0d\x20\x18\x0f\x27\x1d\x13\x28\x1e\x13\ +\x25\x1c\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2d\x21\x15\x36\ +\x28\x1a\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x20\x18\x0f\x20\x18\ +\x10\x22\x19\x10\x21\x19\x10\x24\x1c\x12\x27\x1d\x13\x30\x24\x17\ +\x33\x26\x18\x34\x27\x19\x2c\x22\x15\x26\x1d\x12\x24\x1b\x12\x27\ +\x1d\x13\x2c\x20\x15\x2a\x1f\x15\x2b\x20\x15\x2f\x23\x17\x2d\x22\ +\x15\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x31\x25\x17\x2d\x22\x15\ +\x28\x1e\x13\x2c\x21\x15\x39\x2b\x1b\x3d\x2d\x1e\x32\x25\x18\x2c\ +\x21\x15\x2b\x21\x15\x37\x29\x1b\x3d\x30\x22\x35\x34\x31\x41\x44\ +\x45\x3a\x3c\x3e\x11\x11\x13\x2f\x2f\x31\x5c\x5f\x5f\x7a\x7f\x7f\ +\x8a\x91\x92\x62\x66\x6b\x54\x58\x5b\x86\x8b\x8e\x96\x9c\x9f\x8a\ +\x90\x94\x8d\x92\x94\x8c\x91\x92\x8f\x94\x96\x8d\x91\x93\x92\x96\ +\x98\x96\x99\x9d\x97\x9b\x9e\x97\x9a\x9e\x96\x99\x9e\x99\x9c\xa0\ +\x9a\x9d\xa1\x99\x9c\xa0\x00\x00\x00\xdd\xd8\xd7\xdb\xd6\xd3\xd7\ +\xd1\xd1\xca\xbb\xad\x3c\x34\x2c\x06\x05\x03\x1f\x17\x0f\x56\x41\ +\x2b\x2d\x22\x16\x41\x30\x1f\x55\x40\x2a\x45\x34\x21\x23\x1a\x10\ +\x41\x31\x20\x3a\x2c\x1c\x34\x27\x19\x2f\x23\x16\x3a\x2c\x1d\x32\ +\x26\x18\x2d\x22\x16\x31\x25\x18\x27\x1d\x13\x1f\x17\x0f\x29\x1e\ +\x14\x26\x1d\x12\x26\x1c\x13\x2e\x23\x17\x3a\x2b\x1b\x33\x26\x19\ +\x36\x29\x1a\x34\x28\x1a\x38\x2a\x1b\x3f\x2f\x1f\x34\x28\x1a\x27\ +\x1e\x13\x26\x1c\x13\x35\x28\x1a\x21\x19\x10\x34\x27\x1a\x3b\x2d\ +\x1d\x2f\x24\x16\x35\x28\x1a\x3a\x2c\x1d\x30\x24\x17\x25\x1c\x12\ +\x3a\x2d\x1d\x33\x26\x19\x2e\x22\x16\x40\x30\x20\x22\x19\x11\x26\ +\x1c\x12\x1a\x13\x0c\x1f\x17\x0f\x1f\x17\x0f\x21\x19\x10\x24\x1b\ +\x12\x29\x1f\x14\x48\x36\x25\x9e\x79\x54\x8e\x6d\x4b\x3e\x2f\x1f\ +\x39\x2b\x1c\x48\x36\x24\x51\x3d\x29\x50\x3d\x29\x74\x5a\x3e\x6a\ +\x51\x37\x2f\x23\x16\x25\x1b\x11\x26\x1c\x12\x2f\x23\x17\x2c\x20\ +\x15\x32\x25\x18\x29\x1e\x14\x22\x1a\x10\x29\x1f\x13\x18\x12\x0b\ +\x1f\x17\x0f\x23\x1b\x11\x22\x19\x11\x25\x1c\x12\x3d\x2e\x1e\x3b\ +\x2d\x1e\x21\x19\x10\x19\x13\x0c\x22\x1a\x10\x2d\x21\x16\x2f\x23\ +\x17\x2f\x24\x17\x2c\x22\x16\x27\x1e\x13\x27\x1d\x12\x26\x1c\x12\ +\x2f\x23\x16\x2e\x23\x16\x2b\x20\x15\x26\x1c\x11\x23\x1a\x10\x23\ +\x1a\x11\x25\x1c\x12\x30\x24\x17\x37\x29\x1b\x29\x1f\x14\x2e\x22\ +\x16\x29\x1e\x13\x28\x1e\x13\x1e\x17\x0e\x1a\x14\x0d\x1a\x14\x0d\ +\x18\x12\x0c\x1d\x17\x0e\x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x31\ +\x24\x18\x2e\x23\x16\x31\x25\x18\x2f\x24\x17\x38\x2a\x1b\x32\x26\ +\x18\x31\x25\x17\x34\x27\x19\x35\x28\x19\x35\x28\x19\x32\x26\x18\ +\x35\x28\x19\x2b\x20\x14\x31\x25\x18\x2f\x23\x16\x2c\x21\x15\x2d\ +\x22\x16\x36\x29\x1a\x3f\x2f\x1e\x3a\x2c\x1c\x2c\x21\x15\x27\x1e\ +\x13\x2d\x22\x15\x33\x27\x1b\x34\x31\x2e\x43\x45\x46\x2a\x2c\x2d\ +\x00\x00\x00\x35\x37\x39\x17\x18\x18\x84\x88\x8a\x82\x86\x8a\x87\ +\x8c\x8f\x69\x6d\x70\x5a\x5d\x60\x82\x86\x88\x92\x97\x9a\x90\x96\ +\x97\x8e\x93\x95\x8e\x93\x96\x93\x97\x9a\x93\x96\x9a\x91\x93\x97\ +\x97\x99\x9e\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x9b\x9e\xa3\x9a\ +\x9e\xa1\x00\x00\x00\xc8\xc1\xc0\xcd\xc6\xc4\xcc\xc7\xc5\xcd\xc3\ +\xba\x4d\x43\x39\x07\x06\x03\x15\x0f\x0a\x49\x37\x24\x28\x1e\x14\ +\x40\x30\x1f\x4a\x37\x24\x48\x36\x23\x27\x1d\x13\x39\x2b\x1c\x2c\ +\x21\x15\x28\x1e\x13\x2e\x22\x16\x34\x27\x19\x2e\x23\x16\x32\x26\ +\x18\x32\x25\x18\x34\x27\x19\x31\x24\x18\x31\x25\x18\x29\x1f\x14\ +\x29\x1f\x13\x35\x28\x19\x3c\x2d\x1e\x33\x26\x18\x34\x27\x19\x39\ +\x2a\x1b\x39\x2b\x1c\x3d\x2d\x1d\x34\x27\x19\x27\x1d\x13\x27\x1d\ +\x13\x47\x35\x24\x25\x1c\x12\x32\x25\x19\x3a\x2c\x1c\x25\x1c\x11\ +\x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x2d\x21\x16\x47\x36\x24\x30\ +\x25\x18\x23\x1b\x11\x3f\x2f\x1f\x2c\x20\x15\x32\x26\x19\x1a\x13\ +\x0d\x2b\x20\x14\x1f\x18\x0f\x23\x1a\x11\x26\x1d\x13\x29\x20\x14\ +\x4d\x3b\x27\xa8\x82\x5b\xa9\x83\x5c\xaa\x83\x5c\xb1\x89\x61\xb3\ +\x8b\x62\xb1\x8a\x61\xb2\x8b\x62\xb5\x8d\x64\x78\x5d\x40\x2e\x22\ +\x16\x20\x18\x10\x26\x1e\x13\x2b\x21\x15\x27\x1d\x12\x32\x25\x17\ +\x2b\x20\x15\x2e\x22\x17\x65\x4d\x32\x81\x63\x44\x64\x4d\x36\x26\ +\x1d\x13\x26\x1e\x12\x66\x4f\x35\xa2\x7d\x56\x7d\x61\x43\x29\x1f\ +\x14\x21\x1a\x10\x23\x1a\x10\x2c\x21\x15\x2b\x21\x15\x2e\x23\x16\ +\x32\x25\x18\x2e\x22\x16\x2d\x22\x15\x2a\x20\x14\x2e\x23\x16\x2d\ +\x22\x16\x28\x1e\x13\x26\x1d\x13\x1e\x17\x0f\x2b\x20\x15\x34\x27\ +\x18\x29\x1f\x14\x29\x1f\x13\x2d\x22\x15\x24\x1b\x11\x1f\x17\x0e\ +\x22\x1a\x10\x1a\x14\x0d\x1f\x17\x0f\x20\x18\x0f\x1d\x15\x0e\x21\ +\x19\x10\x2b\x20\x14\x2b\x20\x14\x2e\x22\x16\x2f\x23\x16\x2e\x23\ +\x16\x31\x26\x18\x32\x26\x18\x32\x25\x18\x36\x29\x1a\x3b\x2d\x1c\ +\x44\x33\x21\x39\x2b\x1c\x3c\x2c\x1d\x36\x29\x1a\x34\x27\x1a\x2e\ +\x22\x16\x2c\x21\x14\x2e\x23\x16\x2d\x22\x16\x2e\x23\x16\x2a\x1f\ +\x14\x2d\x22\x16\x2d\x22\x16\x25\x1c\x12\x27\x1e\x13\x33\x26\x19\ +\x47\x36\x23\x31\x2b\x25\x3b\x3d\x3e\x2a\x2b\x2c\x00\x00\x00\x27\ +\x28\x29\x20\x20\x21\x63\x65\x69\x84\x89\x8b\x85\x8b\x8c\x8d\x92\ +\x95\x76\x78\x7a\x59\x5c\x5d\x83\x87\x87\x99\x9e\x9e\x8e\x93\x95\ +\x8e\x92\x94\x94\x98\x9a\x97\x9a\x9e\x90\x93\x97\x95\x98\x9c\x95\ +\x98\x9c\x96\x99\x9d\x9b\x9f\xa1\x9b\x9f\xa2\x9c\x9f\xa2\x00\x00\ +\x00\xc9\xc3\xc1\xc6\xbf\xbb\xbe\xb8\xb4\xba\xad\xa3\x57\x4c\x42\ +\x05\x05\x03\x0d\x0a\x07\x51\x3d\x28\x31\x25\x18\x47\x36\x23\x46\ +\x34\x22\x4c\x38\x24\x34\x27\x19\x3c\x2d\x1e\x34\x27\x1a\x2b\x20\ +\x15\x36\x29\x1a\x30\x24\x17\x2d\x21\x15\x2f\x23\x17\x3b\x2c\x1c\ +\x33\x27\x19\x2c\x21\x15\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x2c\ +\x21\x15\x33\x26\x19\x35\x28\x19\x38\x2a\x1b\x36\x28\x1a\x3b\x2d\ +\x1d\x33\x26\x18\x32\x26\x19\x23\x1a\x11\x25\x1c\x12\x46\x36\x24\ +\x21\x18\x0f\x30\x24\x17\x37\x29\x1b\x22\x19\x10\x29\x1f\x13\x38\ +\x2a\x1b\x37\x29\x1b\x2e\x23\x17\x4a\x38\x25\x33\x27\x19\x24\x1c\ +\x12\x38\x2b\x1c\x30\x25\x17\x32\x25\x18\x27\x1d\x13\x24\x1b\x11\ +\x25\x1c\x12\x25\x1c\x12\x22\x1a\x11\x45\x34\x23\x8e\x6e\x4c\x93\ +\x71\x4e\x87\x68\x48\x75\x59\x3d\x73\x57\x3c\x75\x59\x3d\x69\x50\ +\x37\x5d\x47\x30\x5b\x45\x2e\x43\x32\x21\x33\x26\x18\x28\x1e\x13\ +\x28\x1e\x13\x27\x1d\x12\x26\x1d\x12\x24\x1b\x11\x29\x1e\x14\x8f\ +\x6d\x4c\xad\x86\x5f\x9c\x79\x53\xa5\x7e\x57\x6a\x51\x37\x1d\x16\ +\x0e\x2f\x24\x17\x89\x68\x46\x6d\x54\x3a\x17\x11\x0b\x24\x1a\x10\ +\x2c\x21\x15\x2d\x22\x16\x2d\x22\x16\x33\x27\x19\x38\x2a\x1b\x35\ +\x28\x19\x2b\x21\x14\x29\x1f\x14\x28\x1e\x14\x31\x24\x17\x31\x25\ +\x18\x22\x1a\x11\x1e\x17\x0f\x22\x19\x10\x25\x1c\x11\x2f\x24\x16\ +\x2e\x23\x17\x2c\x21\x15\x28\x1e\x13\x1d\x16\x0d\x22\x18\x10\x26\ +\x1d\x12\x2a\x20\x14\x2b\x20\x15\x24\x1b\x11\x25\x1c\x12\x25\x1d\ +\x12\x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x2a\x1f\x14\x2d\x22\x16\ +\x2d\x22\x16\x2b\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x27\x18\x34\ +\x27\x19\x36\x28\x1a\x38\x2a\x1b\x3b\x2c\x1d\x36\x28\x1a\x33\x26\ +\x18\x32\x25\x18\x2e\x22\x16\x31\x25\x17\x2f\x23\x17\x39\x2b\x1b\ +\x3b\x2c\x1d\x36\x29\x1a\x30\x24\x17\x2b\x20\x14\x22\x1b\x12\x25\ +\x24\x22\x29\x2b\x2c\x1f\x20\x20\x13\x14\x14\x00\x00\x00\x4f\x51\ +\x54\x50\x53\x56\x59\x5c\x5f\x8b\x90\x92\x8e\x93\x96\x96\x9a\x9c\ +\x6e\x70\x70\x35\x36\x36\x7f\x83\x83\x96\x9b\x9c\x8e\x93\x94\x95\ +\x99\x9b\x93\x96\x99\x94\x96\x9a\x95\x98\x9c\x92\x95\x98\x98\x9c\ +\x9f\x98\x9b\x9d\x9a\x9e\xa0\x9c\xa0\xa1\x00\x00\x00\xde\xd9\xd8\ +\xd8\xd2\xcf\xcc\xc6\xc5\xa4\x90\x7e\x63\x50\x3e\x07\x06\x04\x0c\ +\x09\x06\x4e\x3a\x27\x31\x24\x17\x40\x30\x1f\x54\x3f\x29\x4a\x38\ +\x24\x32\x25\x19\x41\x31\x20\x3a\x2b\x1c\x33\x26\x19\x30\x23\x16\ +\x2b\x20\x14\x21\x18\x10\x2b\x20\x15\x2f\x24\x17\x24\x1b\x11\x2e\ +\x22\x16\x35\x28\x1a\x33\x26\x19\x25\x1c\x11\x26\x1d\x13\x2b\x1f\ +\x15\x2b\x20\x14\x2b\x20\x14\x2e\x23\x16\x3a\x2c\x1c\x33\x27\x19\ +\x44\x34\x22\x22\x1a\x10\x23\x1b\x11\x50\x3e\x29\x23\x1a\x10\x31\ +\x25\x17\x42\x32\x20\x2a\x1f\x14\x2b\x20\x14\x3a\x2b\x1c\x3b\x2c\ +\x1d\x33\x27\x19\x4d\x3a\x26\x34\x27\x1a\x25\x1c\x12\x31\x25\x18\ +\x32\x26\x18\x42\x32\x20\x35\x27\x1a\x29\x1f\x14\x26\x1d\x13\x2e\ +\x21\x16\x2c\x22\x15\x24\x1b\x11\x28\x1e\x13\x30\x24\x17\x32\x25\ +\x17\x30\x24\x16\x3a\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x36\x28\x1a\ +\x3c\x2d\x1d\x37\x29\x1a\x33\x26\x18\x2e\x22\x16\x2d\x21\x15\x28\ +\x1e\x13\x25\x1c\x11\x21\x19\x10\x49\x38\x25\x98\x75\x50\x64\x4d\ +\x34\x23\x1a\x11\x8e\x6c\x4a\x9e\x7a\x55\x2b\x20\x15\x34\x27\x19\ +\xa0\x7b\x55\x81\x63\x45\x21\x18\x0f\x2f\x23\x17\x2b\x20\x15\x2b\ +\x1f\x14\x26\x1d\x12\x2f\x24\x17\x34\x28\x19\x30\x24\x17\x32\x25\ +\x18\x2f\x23\x16\x33\x27\x19\x3f\x2f\x1e\x38\x2a\x1b\x27\x1d\x13\ +\x2b\x20\x14\x2e\x22\x16\x30\x23\x17\x2f\x24\x17\x2a\x20\x14\x2e\ +\x22\x16\x26\x1c\x12\x25\x1b\x11\x2b\x20\x14\x29\x1f\x14\x24\x1c\ +\x12\x31\x25\x18\x33\x26\x18\x34\x27\x19\x2f\x23\x16\x28\x1d\x13\ +\x2a\x20\x14\x29\x20\x14\x2d\x21\x16\x31\x25\x17\x2d\x22\x16\x2d\ +\x22\x16\x30\x24\x17\x29\x1f\x14\x30\x24\x17\x35\x28\x1a\x3d\x2e\ +\x1e\x44\x32\x20\x3b\x2c\x1c\x3c\x2d\x1d\x36\x29\x1a\x39\x2b\x1b\ +\x35\x28\x1a\x37\x29\x1a\x37\x2a\x1b\x41\x31\x1f\x42\x31\x20\x38\ +\x2a\x1b\x3a\x2b\x1c\x3f\x2f\x1f\x3f\x2f\x1e\x35\x31\x2c\x1b\x1c\ +\x1d\x06\x06\x06\x30\x32\x32\x00\x00\x00\x4e\x50\x51\x79\x7d\x7e\ +\x5c\x5f\x61\x55\x59\x5a\x93\x96\x99\x93\x96\x9a\x61\x62\x63\x00\ +\x00\x00\x24\x25\x25\x75\x79\x7a\x93\x97\x99\x96\x99\x9b\x92\x94\ +\x96\x93\x96\x98\x97\x9b\x9d\x96\x9a\x9c\x99\x9d\x9f\x9a\x9d\x9f\ +\x9a\x9e\x9f\x9d\xa0\xa1\x00\x00\x00\xde\xd9\xd7\xdd\xd7\xd5\xd6\ +\xd1\xcd\xce\xc9\xc6\x76\x65\x53\x09\x08\x05\x0a\x07\x05\x3e\x2f\ +\x1e\x2e\x23\x17\x38\x2a\x1c\x48\x36\x23\x46\x34\x21\x2f\x23\x17\ +\x3c\x2d\x1e\x42\x32\x20\x37\x2a\x1b\x2c\x21\x15\x23\x1a\x11\x24\ +\x1b\x12\x27\x1d\x13\x23\x1a\x10\x28\x1e\x13\x33\x27\x19\x35\x28\ +\x1a\x35\x28\x19\x2a\x1f\x14\x2b\x20\x15\x22\x19\x10\x2b\x20\x15\ +\x30\x24\x17\x2d\x21\x16\x4e\x3b\x26\x34\x27\x19\x54\x41\x2b\x1f\ +\x17\x0f\x24\x1b\x12\x4f\x3c\x28\x25\x1c\x11\x36\x29\x1b\x46\x34\ +\x23\x29\x1f\x13\x2a\x1f\x14\x46\x34\x23\x4b\x39\x26\x32\x26\x18\ +\x56\x42\x2c\x3a\x2b\x1c\x22\x19\x0f\x2a\x20\x14\x34\x27\x19\x3d\ +\x2e\x1e\x2f\x23\x16\x28\x1e\x13\x2a\x20\x14\x35\x28\x1a\x33\x27\ +\x19\x29\x1f\x14\x2c\x22\x15\x2e\x22\x16\x2f\x24\x17\x32\x26\x18\ +\x39\x2b\x1b\x36\x28\x1a\x31\x25\x17\x37\x29\x1a\x3b\x2c\x1c\x33\ +\x26\x18\x2f\x24\x16\x2e\x23\x16\x31\x24\x17\x2c\x21\x15\x27\x1d\ +\x13\x2b\x20\x15\x4a\x38\x25\x99\x75\x50\x85\x66\x45\x63\x4c\x35\ +\x8e\x6d\x4a\x8e\x6e\x4c\x3a\x2c\x1d\x58\x44\x2e\x9a\x77\x51\x92\ +\x71\x4e\x65\x4d\x35\x7c\x5f\x41\x24\x1b\x11\x28\x1e\x13\x23\x1a\ +\x11\x2c\x21\x15\x34\x27\x19\x35\x27\x19\x3a\x2a\x1b\x39\x2b\x1b\ +\x3b\x2c\x1d\x40\x30\x1e\x35\x27\x19\x2e\x23\x16\x2b\x20\x15\x27\ +\x1d\x13\x2b\x20\x14\x38\x2a\x1b\x2a\x20\x14\x2a\x1f\x14\x23\x1a\ +\x11\x2b\x20\x15\x24\x1c\x11\x2f\x23\x16\x30\x24\x17\x38\x29\x1a\ +\x36\x28\x1a\x34\x28\x19\x35\x28\x1a\x30\x23\x17\x2b\x20\x15\x30\ +\x24\x17\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2b\x20\x15\x32\x25\ +\x18\x2f\x23\x17\x2d\x22\x16\x36\x28\x1a\x41\x30\x1f\x38\x2b\x1b\ +\x3b\x2d\x1d\x43\x32\x20\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x3d\ +\x2e\x1e\x39\x2b\x1c\x31\x25\x18\x31\x25\x17\x33\x26\x18\x3e\x2f\ +\x1e\x36\x29\x1a\x2c\x21\x15\x31\x2b\x24\x08\x08\x08\x29\x2a\x2a\ +\x1e\x20\x1f\x17\x17\x18\x6b\x6e\x6f\x77\x7a\x7d\x82\x87\x88\x63\ +\x66\x68\x56\x58\x5a\x88\x8a\x8d\x34\x35\x36\x00\x00\x00\x22\x23\ +\x24\x4d\x4f\x50\x73\x75\x76\x97\x9a\x9b\x93\x96\x99\x92\x95\x96\ +\x97\x9b\x9c\x9a\x9f\x9f\x98\x9c\x9d\x97\x9b\x9c\x9a\x9e\x9f\x9d\ +\x9f\xa0\x00\x00\x00\xe0\xdb\xda\xdd\xd9\xd7\xd2\xc9\xc2\xcd\xc3\ +\xb9\x8c\x80\x74\x0e\x0c\x09\x00\x00\x00\x4c\x39\x27\x31\x24\x17\ +\x3c\x2c\x1c\x4b\x38\x25\x49\x37\x24\x31\x25\x17\x32\x26\x19\x38\ +\x29\x1b\x45\x34\x22\x37\x29\x1b\x2c\x21\x15\x2c\x22\x16\x29\x1f\ +\x14\x28\x1e\x13\x2d\x22\x16\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\x1b\ +\x2e\x22\x16\x23\x1b\x11\x1e\x17\x0e\x27\x1d\x13\x29\x1e\x14\x2d\ +\x22\x15\x43\x32\x21\x39\x2b\x1c\x4d\x3b\x26\x2e\x22\x16\x2d\x22\ +\x17\x53\x3f\x2a\x2a\x1f\x14\x3b\x2d\x1d\x51\x3c\x28\x2c\x21\x15\ +\x2c\x21\x15\x45\x34\x22\x41\x32\x20\x2a\x20\x14\x37\x29\x1b\x2b\ +\x20\x14\x1c\x15\x0d\x37\x2a\x1c\x2f\x23\x17\x3d\x2e\x1e\x2f\x23\ +\x16\x26\x1d\x12\x21\x1a\x0f\x2b\x20\x15\x35\x28\x19\x35\x27\x19\ +\x2f\x23\x16\x30\x24\x17\x30\x24\x17\x2c\x21\x16\x34\x27\x19\x3a\ +\x2c\x1c\x35\x28\x1a\x3b\x2c\x1c\x40\x2f\x1e\x34\x27\x19\x2e\x23\ +\x16\x2f\x23\x16\x31\x25\x17\x2c\x21\x15\x28\x1e\x14\x2d\x22\x15\ +\x30\x24\x17\x73\x58\x3d\x99\x75\x51\xa7\x82\x5a\x95\x73\x4f\x53\ +\x40\x2a\x47\x36\x24\x9e\x7a\x55\x95\x72\x4e\xa0\x7b\x55\x8a\x6a\ +\x49\x6f\x55\x39\x34\x27\x18\x2b\x20\x15\x2d\x21\x15\x2f\x23\x17\ +\x33\x26\x18\x31\x25\x18\x33\x27\x18\x38\x2b\x1b\x36\x29\x1a\x32\ +\x26\x18\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x3a\x2b\x1c\x33\x26\ +\x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\ +\x24\x1b\x11\x2f\x23\x16\x31\x26\x18\x37\x29\x1b\x33\x26\x18\x36\ +\x29\x1a\x3f\x2f\x1e\x3d\x2e\x1d\x36\x29\x1b\x31\x25\x18\x2b\x21\ +\x15\x32\x26\x18\x34\x27\x19\x32\x26\x18\x3d\x2e\x1d\x40\x30\x1f\ +\x37\x2a\x1a\x36\x27\x1a\x32\x26\x18\x37\x29\x1a\x3b\x2c\x1c\x36\ +\x29\x1a\x39\x2b\x1b\x31\x25\x17\x3a\x2b\x1c\x37\x29\x1a\x2e\x22\ +\x16\x2a\x20\x15\x28\x1e\x13\x31\x24\x17\x3b\x2c\x1c\x2b\x20\x14\ +\x30\x24\x18\x46\x38\x2b\x15\x12\x0e\x18\x19\x18\x15\x16\x16\x28\ +\x2a\x2c\x64\x67\x6a\x7a\x7d\x81\x88\x8a\x8e\x86\x89\x8d\x72\x75\ +\x77\x41\x42\x43\x06\x06\x06\x00\x00\x00\x53\x55\x55\x98\x9c\x9c\ +\x53\x55\x55\x6a\x6c\x6d\x96\x9a\x9b\x96\x9a\x9b\x97\x9b\x9c\x9a\ +\x9e\x9f\x98\x9c\x9d\x98\x9b\x9c\xa1\xa4\xa5\x9a\x9d\x9e\x00\x00\ +\x00\xe1\xdb\xda\xde\xd9\xd8\xd8\xd4\xd3\xcf\xca\xc9\x90\x77\x5e\ +\x0c\x0a\x06\x01\x01\x00\x2c\x21\x16\x31\x25\x18\x35\x27\x19\x3f\ +\x2f\x1e\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x1a\x33\x27\x19\x38\x2a\ +\x1c\x36\x29\x1a\x33\x26\x19\x32\x26\x18\x31\x25\x17\x2c\x21\x15\ +\x31\x24\x17\x3c\x2d\x1d\x40\x2f\x1e\x30\x24\x17\x2e\x22\x16\x24\ +\x1b\x12\x25\x1b\x12\x29\x1e\x13\x24\x1b\x11\x22\x1a\x10\x45\x34\ +\x22\x37\x28\x1a\x4d\x3a\x26\x27\x1d\x13\x30\x24\x18\x52\x3e\x29\ +\x29\x1f\x13\x34\x27\x19\x40\x31\x20\x2d\x22\x16\x25\x1c\x11\x43\ +\x32\x21\x41\x32\x21\x24\x1b\x11\x3e\x2f\x1f\x33\x26\x19\x1f\x17\ +\x0f\x29\x1f\x14\x29\x1f\x14\x43\x32\x22\x37\x28\x1b\x28\x1e\x13\ +\x25\x1c\x12\x2f\x24\x17\x3a\x2b\x1c\x37\x29\x1a\x39\x2b\x1b\x36\ +\x28\x1a\x33\x26\x19\x32\x26\x18\x34\x27\x19\x38\x2a\x1b\x3b\x2b\ +\x1d\x3a\x2c\x1c\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ +\x29\x1f\x13\x24\x1b\x11\x25\x1b\x11\x26\x1d\x12\x2a\x1f\x15\x2b\ +\x21\x14\x4e\x3c\x28\x63\x4c\x33\x44\x34\x22\x32\x26\x18\x37\x28\ +\x1b\x2c\x20\x15\x79\x5c\x3e\x92\x70\x4e\x2e\x22\x15\x2e\x23\x16\ +\x2f\x23\x17\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\ +\x24\x17\x2e\x23\x17\x2b\x20\x14\x26\x1c\x12\x26\x1d\x12\x32\x25\ +\x18\x36\x28\x1a\x34\x27\x19\x34\x27\x19\x32\x26\x18\x30\x25\x18\ +\x30\x23\x17\x2b\x21\x15\x2f\x23\x16\x27\x1d\x13\x2b\x20\x15\x2e\ +\x23\x16\x36\x28\x1a\x3b\x2c\x1d\x32\x26\x18\x38\x2b\x1b\x3c\x2d\ +\x1d\x3e\x2e\x1e\x40\x2f\x1e\x3d\x2d\x1d\x36\x28\x1a\x38\x2a\x1b\ +\x38\x2a\x1b\x37\x2a\x1b\x35\x28\x19\x44\x33\x21\x42\x32\x20\x3b\ +\x2c\x1d\x36\x28\x1a\x35\x28\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ +\x1b\x38\x29\x1a\x3a\x2b\x1c\x30\x23\x17\x2d\x21\x15\x32\x25\x18\ +\x2e\x23\x16\x30\x25\x18\x36\x28\x1a\x2e\x22\x16\x37\x29\x1b\x25\ +\x1f\x19\x0b\x0b\x0c\x00\x00\x01\x2b\x2b\x2c\x5b\x5e\x60\x3a\x3d\ +\x40\x64\x67\x6a\x8b\x8e\x91\x8b\x8e\x92\x8a\x8d\x90\x44\x44\x45\ +\x00\x00\x00\x1a\x1b\x1b\x72\x75\x76\xa9\xad\xad\x5c\x5d\x5d\x53\ +\x56\x57\x5f\x62\x65\x9b\x9e\xa0\x99\x9d\x9e\x9c\xa0\xa1\x98\x9c\ +\x9d\x95\x98\x99\x9e\xa1\xa2\x98\x9a\x9b\x00\x00\x00\xe0\xda\xd9\ +\xde\xd9\xd7\xd8\xd4\xd3\xcf\xcb\xca\xa5\x93\x81\x0f\x0d\x09\x02\ +\x01\x00\x34\x28\x1a\x3e\x2f\x1f\x31\x25\x17\x30\x23\x16\x37\x2a\ +\x1b\x38\x2a\x1b\x1b\x14\x0d\x2b\x21\x15\x2f\x23\x17\x33\x26\x19\ +\x2c\x21\x15\x29\x1f\x14\x2c\x21\x15\x2b\x20\x15\x2a\x1f\x15\x2d\ +\x21\x16\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x25\x1c\x12\x2b\x21\ +\x15\x2b\x20\x14\x26\x1c\x12\x23\x1b\x11\x3f\x2f\x1f\x34\x27\x19\ +\x3b\x2c\x1d\x2e\x22\x16\x2c\x21\x15\x4e\x3b\x28\x26\x1c\x12\x2e\ +\x22\x16\x36\x28\x1a\x31\x25\x18\x28\x1e\x13\x40\x30\x20\x44\x34\ +\x22\x2a\x20\x14\x46\x35\x24\x37\x29\x1b\x26\x1c\x12\x28\x1e\x14\ +\x26\x1c\x12\x33\x27\x19\x35\x27\x19\x2a\x1f\x14\x25\x1c\x12\x2c\ +\x21\x15\x36\x29\x1a\x39\x2b\x1b\x43\x32\x20\x45\x33\x21\x42\x32\ +\x20\x36\x29\x1a\x3a\x2c\x1c\x38\x2b\x1b\x3b\x2c\x1c\x39\x2a\x1c\ +\x38\x2a\x1b\x3c\x2d\x1d\x36\x29\x1a\x2e\x23\x16\x29\x1f\x13\x23\ +\x1b\x11\x26\x1c\x12\x27\x1e\x13\x2e\x23\x16\x2b\x1f\x15\x27\x1e\ +\x13\x2c\x21\x15\x2e\x23\x16\x2c\x22\x15\x29\x20\x13\x30\x24\x17\ +\x71\x55\x3a\x8f\x6e\x4b\x41\x32\x22\x42\x32\x21\x3e\x2f\x1f\x23\ +\x1b\x10\x27\x1d\x13\x27\x1e\x13\x2e\x23\x16\x31\x25\x18\x30\x24\ +\x17\x22\x1a\x10\x1b\x15\x0d\x26\x1d\x12\x31\x24\x17\x34\x27\x19\ +\x39\x2b\x1b\x33\x26\x18\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x31\ +\x24\x17\x2b\x20\x15\x2e\x22\x16\x36\x28\x19\x39\x2b\x1b\x37\x29\ +\x1a\x35\x27\x1a\x2f\x23\x17\x2e\x22\x16\x32\x26\x18\x3e\x2f\x1e\ +\x43\x32\x20\x47\x35\x22\x40\x30\x1f\x31\x25\x18\x2c\x21\x15\x32\ +\x25\x18\x36\x28\x1a\x3f\x2f\x1f\x3c\x2d\x1e\x3b\x2d\x1c\x34\x27\ +\x19\x31\x24\x18\x2d\x22\x15\x2f\x23\x16\x34\x27\x19\x37\x29\x1b\ +\x3b\x2c\x1d\x3b\x2b\x1c\x3a\x2c\x1d\x3b\x2c\x1c\x39\x2b\x1b\x34\ +\x27\x19\x31\x25\x18\x31\x24\x17\x3d\x2e\x1e\x27\x1f\x18\x14\x15\ +\x16\x05\x05\x05\x1b\x1b\x1c\x59\x5d\x5f\x6d\x71\x74\x3e\x41\x45\ +\x67\x6a\x6d\x93\x95\x99\x85\x86\x89\x0b\x0b\x0c\x00\x00\x00\x1d\ +\x1e\x1e\x80\x83\x84\x88\x8b\x8b\x69\x6b\x6d\x92\x95\x97\x75\x78\ +\x7a\x53\x55\x59\x9f\xa3\xa4\x98\x9c\x9d\x99\x9d\x9e\x95\x99\x9a\ +\x9b\x9f\xa0\x9c\x9f\xa0\x00\x00\x00\xe0\xdb\xda\xde\xd9\xd8\xd8\ +\xd4\xd3\xce\xca\xc9\xbb\xad\xa2\x12\x10\x0d\x00\x00\x00\x32\x26\ +\x19\x3f\x30\x1f\x25\x1c\x12\x29\x1e\x14\x37\x29\x1b\x36\x29\x1a\ +\x20\x18\x0f\x29\x1f\x14\x29\x1f\x13\x27\x1e\x13\x26\x1c\x12\x23\ +\x1a\x11\x20\x18\x10\x23\x1a\x11\x24\x1b\x11\x26\x1d\x12\x26\x1c\ +\x12\x28\x1e\x13\x26\x1d\x13\x2a\x20\x14\x26\x1c\x12\x2a\x1f\x14\ +\x2b\x21\x15\x27\x1d\x13\x3a\x2b\x1d\x2c\x20\x15\x40\x30\x1f\x2d\ +\x22\x16\x2f\x23\x17\x44\x34\x23\x27\x1d\x13\x32\x26\x18\x44\x33\ +\x21\x43\x32\x21\x34\x27\x19\x46\x35\x23\x47\x36\x23\x2c\x21\x15\ +\x3f\x30\x1f\x2f\x23\x17\x28\x1e\x13\x2b\x20\x14\x24\x1b\x10\x2c\ +\x21\x15\x38\x29\x1b\x2b\x20\x14\x28\x1f\x13\x2d\x22\x16\x3a\x2b\ +\x1c\x42\x32\x20\x3f\x2e\x1e\x4a\x36\x24\x4d\x3a\x25\x3d\x2e\x1e\ +\x3d\x2d\x1d\x39\x2b\x1c\x37\x29\x1a\x3d\x2d\x1d\x3d\x2d\x1d\x39\ +\x2a\x1b\x38\x2a\x1b\x3c\x2d\x1d\x31\x25\x18\x27\x1d\x13\x26\x1c\ +\x12\x2c\x22\x15\x31\x25\x18\x2a\x1f\x15\x2a\x20\x14\x28\x1e\x13\ +\x29\x1f\x14\x29\x1f\x13\x2c\x21\x15\x33\x26\x19\x62\x4a\x32\x98\ +\x74\x50\x8d\x6c\x4b\x8a\x6a\x49\x5c\x46\x30\x26\x1d\x12\x2b\x20\ +\x15\x2a\x20\x15\x2c\x21\x15\x2d\x22\x15\x2c\x21\x15\x21\x19\x10\ +\x1e\x17\x0e\x28\x1e\x13\x30\x25\x17\x37\x29\x1b\x38\x2a\x1b\x33\ +\x26\x18\x29\x1f\x13\x26\x1c\x12\x33\x25\x18\x30\x24\x17\x30\x24\ +\x17\x32\x25\x18\x32\x26\x17\x2c\x21\x15\x28\x1e\x13\x2f\x23\x16\ +\x2e\x23\x16\x2b\x20\x14\x30\x24\x17\x40\x2f\x1f\x47\x35\x23\x4a\ +\x38\x24\x46\x35\x22\x32\x25\x18\x28\x1e\x13\x2e\x23\x16\x38\x2a\ +\x1b\x31\x24\x17\x3d\x2e\x1e\x48\x36\x22\x46\x34\x22\x3e\x2e\x1e\ +\x36\x28\x1a\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x37\x2a\x1b\x33\ +\x27\x19\x40\x30\x1f\x3d\x2e\x1e\x37\x29\x1b\x39\x2a\x1b\x3e\x2e\ +\x1e\x33\x26\x19\x30\x24\x18\x2c\x25\x1e\x24\x24\x23\x02\x02\x02\ +\x32\x33\x35\x5d\x60\x60\x6d\x71\x73\x7a\x7e\x81\x49\x4b\x4f\x62\ +\x62\x64\x62\x61\x63\x00\x00\x00\x0e\x0e\x0e\x50\x52\x53\x6d\x6e\ +\x70\x43\x43\x44\x7c\x7f\x80\x9b\xa0\xa1\x9a\x9e\x9f\x84\x87\x89\ +\x47\x47\x4d\x94\x97\x98\x9b\x9f\xa0\x9a\x9e\x9f\x9b\x9e\xa2\xa0\ +\xa3\xa6\x00\x00\x00\xdf\xdb\xda\xde\xd9\xd8\xd9\xd4\xd3\xd1\xcd\ +\xcb\xcb\xc2\xbb\x16\x14\x11\x01\x01\x00\x1b\x15\x0e\x2e\x23\x16\ +\x1d\x16\x0e\x25\x1c\x12\x37\x29\x1a\x33\x26\x18\x1e\x17\x0e\x24\ +\x1b\x11\x24\x1c\x12\x2b\x20\x14\x25\x1c\x12\x23\x1b\x11\x23\x1a\ +\x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x24\x1b\x11\x28\x1f\x14\ +\x2a\x20\x15\x2a\x20\x14\x27\x1e\x13\x29\x1e\x13\x27\x1e\x13\x1f\ +\x18\x0f\x31\x25\x18\x2c\x21\x15\x55\x40\x2b\x26\x1c\x12\x24\x1b\ +\x12\x37\x2a\x1c\x29\x1f\x14\x2d\x21\x16\x37\x29\x1b\x3e\x2e\x1e\ +\x35\x28\x19\x40\x30\x20\x43\x32\x21\x2b\x21\x15\x40\x30\x20\x2c\ +\x21\x16\x26\x1d\x13\x24\x1b\x12\x2f\x24\x17\x27\x1e\x13\x49\x37\ +\x24\x33\x26\x19\x2f\x24\x17\x30\x24\x17\x39\x2b\x1b\x3c\x2d\x1d\ +\x39\x2b\x1b\x45\x34\x22\x51\x3c\x27\x47\x35\x23\x3a\x2c\x1c\x33\ +\x26\x19\x38\x2a\x1b\x3f\x2f\x1e\x3c\x2d\x1c\x34\x27\x19\x38\x2a\ +\x1b\x40\x2f\x1f\x3d\x2e\x1d\x30\x24\x17\x22\x1a\x11\x24\x1c\x11\ +\x24\x1b\x11\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x27\x1d\x13\x25\ +\x1b\x11\x25\x1c\x12\x30\x24\x17\x39\x2b\x1b\x6c\x53\x38\x90\x6f\ +\x4c\x80\x62\x43\x46\x35\x23\x28\x1e\x13\x26\x1d\x12\x25\x1b\x11\ +\x28\x1e\x13\x2d\x22\x15\x2f\x24\x16\x28\x1e\x13\x25\x1c\x12\x2a\ +\x1f\x14\x32\x26\x18\x3a\x2b\x1c\x38\x2a\x1b\x31\x24\x18\x2b\x20\ +\x14\x2a\x20\x15\x2e\x22\x16\x2b\x21\x15\x2f\x23\x17\x2f\x23\x16\ +\x30\x24\x17\x2c\x22\x15\x29\x1f\x14\x2f\x24\x17\x33\x27\x19\x32\ +\x26\x18\x2d\x22\x15\x37\x29\x1a\x41\x31\x1f\x40\x30\x1f\x3b\x2c\ +\x1c\x2f\x23\x17\x25\x1c\x11\x2c\x22\x16\x35\x28\x1a\x32\x26\x18\ +\x41\x31\x20\x4f\x3b\x27\x45\x33\x21\x43\x32\x21\x3b\x2b\x1c\x31\ +\x25\x18\x31\x25\x18\x37\x29\x1b\x39\x2b\x1b\x37\x29\x1b\x3f\x2f\ +\x1f\x3f\x30\x1f\x37\x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x2e\x22\x16\ +\x27\x1e\x13\x2e\x27\x20\x1d\x1c\x1a\x2d\x2d\x2e\x29\x2b\x2d\x5c\ +\x5f\x60\x6d\x6f\x70\x7a\x7e\x81\x7f\x84\x86\x5b\x5d\x5e\x01\x01\ +\x02\x00\x00\x00\x29\x2b\x2b\x93\x98\x98\x85\x89\x89\x38\x38\x38\ +\x75\x76\x76\x99\x9c\x9d\x96\x99\x9a\x9e\xa1\xa3\x8e\x92\x94\x45\ +\x46\x48\x8b\x8c\x8e\xa2\xa5\xa6\x99\x9b\x9f\xa0\xa1\xa5\x00\x00\ +\x00\xe0\xda\xda\xde\xd9\xd8\xda\xd6\xd4\xd3\xce\xcc\xcd\xc2\xb9\ +\x1f\x1b\x15\x01\x01\x00\x18\x12\x0c\x33\x27\x19\x28\x1e\x13\x2a\ +\x20\x14\x32\x25\x18\x33\x26\x18\x15\x10\x0a\x1f\x17\x0f\x25\x1c\ +\x12\x26\x1d\x12\x27\x1e\x13\x28\x1e\x13\x26\x1c\x12\x26\x1c\x12\ +\x23\x1a\x10\x24\x1b\x11\x26\x1d\x12\x2a\x20\x15\x32\x26\x18\x2f\ +\x23\x16\x2d\x22\x15\x33\x26\x19\x2e\x22\x16\x29\x1f\x14\x2b\x21\ +\x14\x3d\x2e\x1d\x3c\x2c\x1d\x29\x1e\x14\x2b\x20\x15\x32\x25\x18\ +\x35\x29\x1a\x31\x25\x18\x37\x29\x1b\x3f\x30\x1e\x31\x25\x17\x42\ +\x31\x20\x46\x35\x23\x2e\x23\x16\x40\x30\x20\x38\x2b\x1c\x27\x1d\ +\x13\x25\x1c\x12\x31\x25\x18\x21\x19\x10\x3d\x2f\x1e\x32\x26\x18\ +\x32\x26\x18\x37\x29\x1b\x3a\x2c\x1c\x33\x26\x19\x34\x27\x18\x3f\ +\x2f\x1e\x49\x36\x23\x46\x34\x22\x33\x26\x18\x2f\x23\x17\x32\x25\ +\x17\x37\x2a\x1b\x33\x27\x18\x2d\x22\x16\x32\x25\x18\x35\x28\x19\ +\x3b\x2c\x1c\x34\x28\x19\x25\x1c\x12\x21\x18\x10\x1f\x17\x0f\x23\ +\x1b\x11\x24\x1b\x11\x28\x1e\x13\x1f\x18\x0f\x23\x1a\x10\x25\x1c\ +\x12\x27\x1e\x13\x2c\x21\x15\x33\x26\x18\x3e\x2e\x1e\x3e\x2f\x1d\ +\x37\x29\x1a\x2c\x21\x15\x26\x1d\x12\x28\x1e\x13\x2c\x21\x15\x2c\ +\x21\x15\x2a\x20\x14\x29\x1f\x14\x28\x1e\x14\x2e\x22\x16\x32\x25\ +\x18\x38\x2a\x1b\x36\x28\x1a\x33\x26\x18\x33\x26\x19\x30\x24\x17\ +\x31\x25\x17\x31\x24\x17\x2f\x23\x16\x2e\x23\x17\x2f\x23\x16\x2a\ +\x20\x14\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x28\x1e\x13\x26\x1d\ +\x12\x2a\x20\x14\x32\x25\x18\x3a\x2b\x1c\x39\x2b\x1b\x2e\x22\x16\ +\x29\x1f\x14\x2a\x20\x15\x33\x27\x19\x40\x30\x1f\x43\x32\x21\x42\ +\x31\x20\x3c\x2d\x1d\x3b\x2c\x1d\x35\x28\x19\x2f\x23\x17\x2e\x23\ +\x17\x36\x29\x1a\x3d\x2e\x1e\x3f\x30\x1f\x47\x35\x22\x40\x30\x1f\ +\x3a\x2b\x1c\x34\x26\x19\x29\x1f\x14\x2b\x21\x15\x25\x1c\x12\x28\ +\x22\x1a\x25\x24\x23\x3c\x3e\x3f\x45\x47\x49\x2c\x2d\x30\x65\x67\ +\x69\x7a\x7c\x80\x81\x83\x86\x71\x73\x74\x00\x00\x00\x04\x05\x05\ +\x4e\x52\x52\xa8\xaf\xae\x68\x6c\x6b\x75\x77\x78\x56\x58\x58\x75\ +\x75\x75\x97\x9b\x9b\x97\x9a\x9d\x96\x9a\x9d\x9c\x9f\xa2\x4f\x4f\ +\x51\x7d\x7e\x80\x9b\x9e\xa2\xa0\xa2\xa5\x00\x00\x00\xe0\xdb\xda\ +\xdf\xda\xd9\xdb\xd5\xd3\xd5\xd0\xcd\xc5\xb2\x9e\x2b\x23\x18\x00\ +\x01\x00\x1a\x14\x0d\x48\x36\x24\x28\x1e\x13\x2c\x22\x15\x31\x25\ +\x18\x36\x29\x1a\x18\x12\x0c\x1f\x17\x0f\x28\x1e\x13\x23\x1a\x11\ +\x2a\x20\x14\x2a\x1f\x14\x2d\x21\x15\x29\x1f\x13\x29\x1f\x14\x27\ +\x1d\x12\x26\x1c\x12\x2d\x22\x16\x38\x2a\x1b\x34\x27\x19\x2e\x23\ +\x16\x35\x28\x1a\x32\x25\x18\x30\x24\x17\x2e\x23\x16\x34\x27\x19\ +\x36\x29\x1a\x2d\x21\x16\x2d\x21\x16\x38\x2a\x1b\x39\x2b\x1c\x32\ +\x26\x18\x3d\x2e\x1e\x41\x31\x20\x25\x1c\x11\x41\x31\x21\x45\x34\ +\x23\x2a\x1f\x14\x43\x32\x21\x43\x32\x22\x33\x26\x19\x2c\x22\x15\ +\x2d\x22\x16\x1e\x17\x0e\x2f\x24\x17\x27\x1e\x13\x2f\x23\x16\x34\ +\x27\x19\x37\x29\x1a\x33\x26\x18\x36\x28\x1a\x3b\x2d\x1d\x43\x32\ +\x20\x44\x33\x21\x39\x2b\x1b\x35\x27\x19\x33\x26\x18\x33\x26\x18\ +\x2f\x24\x17\x2e\x23\x16\x30\x24\x17\x30\x24\x17\x38\x2a\x1c\x33\ +\x27\x19\x2c\x21\x15\x27\x1d\x12\x27\x1d\x12\x26\x1d\x12\x1f\x18\ +\x0f\x22\x1a\x10\x1f\x18\x0f\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\ +\x27\x1d\x13\x2d\x22\x16\x2f\x23\x16\x34\x27\x19\x34\x27\x19\x2c\ +\x20\x14\x2a\x1f\x14\x30\x24\x17\x35\x27\x19\x33\x26\x18\x2e\x23\ +\x16\x2b\x21\x15\x28\x1e\x13\x2c\x21\x16\x31\x25\x18\x2f\x24\x17\ +\x38\x29\x1b\x38\x2a\x1b\x37\x29\x1a\x34\x26\x19\x3d\x2d\x1d\x3b\ +\x2c\x1c\x30\x24\x17\x2c\x21\x15\x2b\x21\x15\x28\x1e\x13\x2a\x1e\ +\x14\x25\x1c\x12\x27\x1d\x13\x21\x19\x10\x23\x1b\x11\x2c\x21\x15\ +\x2e\x22\x16\x38\x2a\x1a\x3d\x2e\x1d\x32\x26\x18\x33\x27\x19\x2b\ +\x21\x15\x34\x27\x19\x3f\x2f\x1e\x3e\x2f\x1e\x3a\x2b\x1b\x37\x2a\ +\x1b\x35\x29\x1a\x3b\x2d\x1c\x38\x2a\x1b\x33\x27\x19\x34\x28\x1a\ +\x3b\x2c\x1c\x3d\x2e\x1e\x44\x33\x21\x42\x31\x20\x3b\x2d\x1c\x36\ +\x28\x19\x29\x1f\x14\x25\x1c\x11\x22\x19\x10\x25\x1d\x16\x31\x30\ +\x30\x40\x42\x43\x4d\x4f\x51\x58\x5a\x5d\x30\x32\x36\x72\x75\x79\ +\x7e\x81\x83\x2a\x2c\x2b\x00\x00\x00\x0c\x0c\x0d\x57\x59\x5b\x96\ +\x9a\x9c\x6b\x6c\x6d\x80\x83\x83\xa8\xac\xac\x54\x55\x55\x72\x73\ +\x74\x94\x98\x99\x97\x9b\x9c\x9d\xa1\xa2\xa1\xa5\xa6\x61\x62\x64\ +\x6c\x6c\x6e\x9f\xa1\xa2\x00\x00\x00\xe1\xdb\xda\xdf\xdb\xd9\xdb\ +\xd6\xd2\xd6\xd2\xce\xbe\xa2\x85\x3c\x30\x24\x07\x05\x03\x10\x0c\ +\x08\x36\x2a\x1c\x1f\x17\x0f\x29\x1f\x14\x34\x27\x19\x44\x33\x21\ +\x1d\x15\x0e\x1c\x14\x0d\x20\x18\x10\x24\x1b\x11\x2d\x23\x16\x2e\ +\x23\x16\x36\x28\x1a\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x2a\x1f\ +\x14\x34\x27\x19\x36\x28\x19\x2b\x20\x14\x2a\x21\x14\x2c\x21\x15\ +\x2f\x23\x16\x31\x24\x17\x35\x28\x19\x31\x25\x17\x39\x2b\x1b\x31\ +\x25\x17\x2f\x23\x16\x36\x29\x1a\x49\x37\x24\x37\x29\x1a\x47\x35\ +\x22\x4a\x38\x24\x2d\x22\x16\x3b\x2c\x1d\x39\x2b\x1c\x28\x1e\x13\ +\x31\x25\x18\x33\x26\x19\x2b\x21\x15\x25\x1c\x12\x29\x1f\x14\x1b\ +\x14\x0d\x34\x28\x1b\x20\x17\x0f\x2a\x20\x14\x2c\x21\x15\x32\x26\ +\x18\x33\x27\x19\x33\x27\x19\x34\x27\x19\x3e\x2e\x1e\x41\x31\x20\ +\x46\x34\x21\x3a\x2b\x1c\x32\x25\x18\x39\x2a\x1b\x34\x27\x19\x2f\ +\x22\x16\x31\x25\x18\x2f\x23\x17\x33\x26\x18\x36\x29\x1a\x32\x25\ +\x18\x31\x25\x17\x31\x24\x17\x2b\x20\x14\x1e\x17\x0e\x1f\x18\x0f\ +\x23\x1b\x11\x27\x1d\x12\x26\x1c\x13\x23\x1a\x11\x24\x1b\x11\x28\ +\x1e\x13\x2d\x22\x15\x32\x25\x18\x2b\x21\x15\x26\x1c\x12\x27\x1d\ +\x13\x2e\x23\x17\x33\x27\x19\x2f\x23\x17\x30\x24\x17\x2b\x20\x14\ +\x21\x19\x0f\x2b\x20\x14\x33\x26\x19\x32\x26\x18\x38\x2a\x1b\x33\ +\x26\x19\x33\x26\x18\x31\x24\x17\x3c\x2d\x1d\x3c\x2c\x1c\x34\x27\ +\x19\x2b\x20\x14\x28\x1f\x13\x2b\x20\x14\x2f\x23\x16\x2d\x22\x16\ +\x2b\x20\x15\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x2e\x23\x16\x36\ +\x29\x1a\x3a\x2c\x1c\x37\x2a\x1b\x3a\x2b\x1b\x38\x2a\x1b\x39\x2b\ +\x1c\x37\x2a\x1b\x34\x26\x19\x35\x27\x19\x3a\x2c\x1c\x37\x2a\x1b\ +\x3c\x2d\x1d\x3a\x2b\x1c\x35\x28\x19\x3a\x2c\x1c\x41\x30\x1f\x3c\ +\x2d\x1d\x3f\x2f\x1e\x43\x32\x20\x36\x29\x1a\x30\x25\x17\x2c\x21\ +\x15\x2a\x1f\x14\x2b\x20\x15\x30\x25\x19\x28\x25\x22\x3b\x3d\x3f\ +\x4c\x4e\x4f\x5b\x5c\x5f\x69\x6b\x6f\x35\x36\x3a\x6c\x6e\x6f\x00\ +\x00\x00\x02\x02\x02\x3f\x41\x42\x86\x8a\x8d\x39\x39\x3c\x68\x68\ +\x6a\x9a\x9c\x9d\x79\x7b\x7c\x98\x9c\x9c\x60\x61\x61\x64\x66\x67\ +\x91\x95\x96\x9d\xa0\xa3\x9b\x9e\xa2\xa2\xa6\xa8\x79\x7b\x7c\x63\ +\x63\x65\x00\x00\x00\xdf\xda\xd8\xdd\xd9\xd7\xdb\xd5\xd2\xd7\xd2\ +\xcf\xc6\xb1\x9d\x4c\x43\x38\x05\x04\x03\x05\x04\x03\x27\x1d\x13\ +\x1c\x15\x0d\x2a\x1f\x14\x35\x28\x19\x4f\x3b\x26\x25\x1b\x12\x17\ +\x12\x0b\x24\x1b\x11\x2a\x20\x14\x28\x1e\x13\x30\x24\x17\x3f\x2f\ +\x1e\x35\x27\x19\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x3a\x2c\x1c\ +\x36\x28\x1a\x2b\x20\x14\x2a\x1f\x14\x28\x1e\x13\x2c\x21\x16\x2c\ +\x21\x15\x37\x2a\x1b\x3a\x2c\x1c\x3d\x2e\x1d\x34\x27\x19\x27\x1d\ +\x12\x2f\x24\x17\x43\x33\x21\x3d\x2e\x1e\x4a\x38\x24\x4b\x38\x24\ +\x33\x26\x18\x3c\x2d\x1d\x32\x25\x18\x26\x1c\x12\x29\x1e\x14\x36\ +\x29\x1a\x2c\x21\x15\x20\x18\x10\x2c\x21\x16\x1c\x16\x0d\x32\x26\ +\x18\x22\x1a\x10\x30\x24\x17\x2e\x22\x16\x34\x26\x18\x39\x2b\x1b\ +\x40\x30\x1f\x37\x28\x1a\x40\x30\x1f\x44\x33\x21\x4d\x3a\x25\x46\ +\x35\x22\x3c\x2d\x1c\x3c\x2d\x1c\x37\x29\x1b\x2e\x23\x17\x39\x2b\ +\x1b\x3a\x2c\x1c\x33\x26\x18\x31\x25\x17\x35\x28\x19\x30\x24\x17\ +\x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x24\x1b\x11\x24\x1b\x11\x26\ +\x1c\x13\x30\x24\x17\x21\x18\x0f\x1c\x16\x0e\x23\x1a\x10\x33\x26\ +\x19\x2f\x23\x16\x2c\x21\x15\x27\x1e\x12\x25\x1c\x12\x2b\x20\x15\ +\x32\x26\x18\x33\x27\x19\x34\x27\x19\x26\x1d\x12\x21\x18\x10\x29\ +\x1f\x14\x2d\x22\x16\x2d\x22\x16\x40\x30\x20\x37\x29\x1b\x2d\x21\ +\x15\x24\x1b\x11\x33\x26\x19\x39\x2b\x1b\x38\x2a\x1b\x32\x26\x18\ +\x30\x23\x16\x2d\x22\x15\x2d\x22\x16\x2c\x21\x15\x27\x1d\x13\x27\ +\x1e\x13\x2c\x22\x15\x2f\x24\x16\x2e\x22\x16\x2e\x22\x16\x2d\x22\ +\x15\x32\x25\x18\x34\x27\x19\x35\x27\x19\x33\x26\x18\x32\x26\x18\ +\x2e\x23\x17\x34\x27\x19\x34\x27\x19\x36\x28\x1a\x32\x26\x18\x32\ +\x25\x18\x36\x28\x19\x39\x2a\x1b\x46\x34\x21\x49\x37\x23\x3d\x2e\ +\x1d\x3f\x30\x1e\x37\x2a\x1a\x33\x26\x18\x2e\x23\x17\x2f\x23\x16\ +\x28\x1e\x13\x34\x29\x1b\x2b\x28\x24\x2a\x2c\x2d\x48\x4c\x4d\x5b\ +\x5d\x5f\x6c\x70\x72\x75\x78\x7c\x0a\x0b\x0c\x00\x00\x00\x11\x11\ +\x12\x78\x7c\x7e\x9f\xa3\xa6\x5e\x5f\x61\x44\x44\x47\x7d\x7e\x81\ +\x28\x29\x2a\x7b\x7e\x7e\xaa\xae\xaf\x6f\x72\x75\x67\x69\x6c\x89\ +\x8d\x90\x9d\xa1\xa4\xa2\xa5\xa9\xa7\xaa\xad\x87\x89\x8b\x00\x00\ +\x00\xdf\xd9\xd6\xde\xda\xd7\xdc\xd7\xd3\xd7\xd2\xcf\xcd\xc0\xb4\ +\x5d\x55\x4e\x05\x05\x04\x03\x02\x02\x21\x18\x10\x1d\x17\x0e\x2c\ +\x21\x15\x3c\x2d\x1d\x53\x3e\x28\x36\x29\x1a\x1d\x16\x0e\x2a\x1f\ +\x14\x2e\x23\x16\x29\x1f\x14\x2a\x20\x15\x36\x29\x1a\x35\x28\x19\ +\x2b\x21\x14\x2d\x22\x16\x33\x27\x19\x3b\x2c\x1c\x33\x26\x19\x2c\ +\x21\x16\x29\x1e\x13\x2b\x20\x15\x2e\x23\x17\x27\x1d\x13\x32\x25\ +\x18\x3a\x2b\x1c\x34\x27\x19\x36\x29\x1a\x23\x1a\x10\x30\x24\x17\ +\x53\x3f\x2a\x3d\x2e\x1d\x4d\x39\x25\x55\x3f\x29\x3a\x2b\x1c\x3e\ +\x2f\x1e\x3a\x2c\x1d\x29\x1e\x14\x26\x1c\x12\x40\x30\x20\x2c\x21\ +\x16\x23\x1b\x11\x35\x28\x1a\x2c\x21\x15\x2c\x21\x15\x22\x1a\x10\ +\x29\x1e\x14\x2c\x21\x15\x2f\x23\x17\x39\x2a\x1b\x41\x31\x20\x3a\ +\x2c\x1c\x37\x29\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x43\x33\ +\x20\x41\x31\x1f\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\x31\x25\x17\ +\x31\x25\x17\x33\x26\x18\x33\x26\x18\x2e\x22\x16\x2d\x22\x16\x2b\ +\x21\x15\x23\x1a\x11\x1f\x18\x0f\x1f\x16\x0e\x20\x18\x0f\x2c\x21\ +\x15\x1e\x17\x0e\x1e\x17\x0f\x21\x1a\x10\x29\x1e\x13\x26\x1d\x11\ +\x28\x1e\x13\x23\x1b\x10\x25\x1c\x11\x2c\x21\x15\x2c\x21\x15\x2c\ +\x21\x15\x42\x32\x21\x49\x37\x25\x3c\x2d\x1e\x2f\x23\x17\x26\x1d\ +\x12\x23\x1a\x10\x5b\x45\x2e\x7b\x5e\x40\x7d\x60\x41\x63\x4a\x32\ +\x42\x31\x20\x31\x25\x17\x35\x27\x19\x34\x27\x19\x33\x26\x19\x31\ +\x26\x18\x33\x27\x19\x30\x24\x17\x2a\x20\x15\x28\x1e\x13\x28\x1e\ +\x14\x2e\x23\x16\x2c\x21\x15\x2b\x21\x15\x2d\x22\x16\x2f\x23\x16\ +\x31\x25\x17\x38\x2a\x1b\x33\x26\x19\x35\x28\x1a\x30\x24\x18\x31\ +\x25\x17\x30\x24\x17\x35\x28\x19\x31\x25\x18\x32\x25\x18\x39\x2b\ +\x1c\x3a\x2b\x1b\x4a\x37\x23\x50\x3c\x27\x48\x36\x23\x43\x32\x20\ +\x3c\x2d\x1d\x36\x29\x1a\x30\x24\x17\x2e\x23\x16\x29\x1f\x13\x2d\ +\x22\x16\x35\x34\x31\x2f\x32\x33\x32\x34\x36\x50\x52\x55\x69\x6c\ +\x6e\x74\x77\x7a\x07\x07\x07\x00\x00\x00\x1a\x1a\x1b\x9b\x9e\xa1\ +\x85\x87\x8a\x6d\x6e\x72\x7b\x7c\x80\x67\x69\x6d\x5e\x60\x63\x90\ +\x93\x95\x9c\xa0\xa0\xa6\xab\xad\x85\x8a\x8c\x54\x58\x5b\x82\x86\ +\x88\xa4\xa8\xaa\xa0\xa3\xa7\xa1\xa5\xa6\x00\x00\x00\xe0\xdb\xd8\ +\xe0\xdb\xd8\xdc\xd7\xd4\xd6\xd0\xcc\xd0\xca\xc5\x6d\x67\x60\x06\ +\x05\x04\x0b\x08\x05\x49\x37\x24\x25\x1c\x12\x2e\x22\x16\x36\x29\ +\x1a\x55\x3f\x29\x39\x2b\x1c\x28\x1e\x13\x2a\x20\x14\x2f\x23\x16\ +\x34\x27\x19\x30\x24\x17\x34\x27\x19\x39\x2b\x1b\x32\x25\x18\x2b\ +\x20\x15\x23\x1a\x11\x23\x1a\x10\x24\x1b\x11\x1f\x17\x0f\x20\x19\ +\x10\x26\x1d\x13\x28\x1e\x13\x24\x1b\x11\x27\x1d\x13\x39\x2b\x1c\ +\x37\x28\x1a\x3e\x2e\x1e\x29\x1f\x14\x34\x26\x19\x4e\x3b\x27\x2c\ +\x21\x15\x3c\x2d\x1d\x52\x3d\x28\x37\x29\x1a\x3a\x2c\x1d\x40\x31\ +\x21\x29\x1f\x14\x1e\x17\x0e\x30\x25\x18\x24\x1c\x11\x21\x1a\x10\ +\x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x1b\x15\x0c\x23\x1b\x11\x25\ +\x1c\x12\x28\x1e\x13\x2f\x23\x17\x3a\x2b\x1b\x37\x29\x1a\x38\x2a\ +\x1b\x40\x2f\x1e\x41\x31\x1f\x3f\x2f\x1e\x43\x33\x20\x3d\x2e\x1e\ +\x31\x25\x18\x36\x29\x1a\x3e\x2e\x1d\x37\x29\x1a\x35\x28\x19\x31\ +\x24\x17\x2f\x23\x16\x29\x1e\x14\x29\x1f\x14\x2c\x21\x15\x27\x1e\ +\x13\x2e\x23\x16\x35\x28\x1b\x39\x2c\x1d\x47\x36\x25\x3b\x2d\x1e\ +\x19\x13\x0c\x21\x1a\x11\x65\x4e\x35\x77\x5c\x3f\x74\x58\x3c\x45\ +\x35\x23\x2a\x1f\x14\x2e\x22\x16\x47\x35\x23\x70\x55\x39\x85\x66\ +\x45\x94\x71\x4e\x87\x67\x46\x69\x4f\x34\x45\x34\x22\x29\x1e\x13\ +\x57\x42\x2b\xa4\x7e\x58\x9f\x7a\x55\xa1\x7c\x55\x72\x57\x3a\x3d\ +\x2e\x1e\x3a\x2b\x1c\x39\x2a\x1b\x30\x25\x17\x30\x25\x17\x2e\x22\ +\x16\x2f\x24\x17\x2f\x23\x17\x2c\x21\x16\x32\x25\x18\x3a\x2c\x1c\ +\x36\x29\x1a\x2e\x23\x16\x32\x26\x18\x33\x26\x19\x34\x27\x18\x3a\ +\x2c\x1c\x3a\x2b\x1c\x3d\x2e\x1e\x3d\x2e\x1e\x40\x30\x1f\x3d\x2e\ +\x1d\x3e\x2e\x1e\x37\x2a\x1b\x32\x26\x18\x3b\x2c\x1c\x3e\x2f\x1e\ +\x5e\x46\x2e\x47\x35\x23\x43\x32\x20\x43\x32\x21\x42\x32\x20\x3d\ +\x2e\x1d\x38\x2a\x1a\x31\x25\x17\x40\x30\x20\x51\x3d\x29\x3d\x37\ +\x32\x42\x44\x46\x38\x3a\x3b\x38\x3a\x3c\x5a\x5d\x60\x49\x4a\x4c\ +\x00\x00\x00\x05\x05\x05\x43\x45\x46\x70\x72\x76\x70\x72\x74\x6d\ +\x6f\x73\xa5\xaa\xaf\x87\x8a\x8f\x6a\x6c\x72\x73\x76\x7a\x9b\x9e\ +\xa0\x9e\xa3\xa4\xa0\xa5\xa6\x93\x98\x9b\x5c\x5e\x61\x78\x7a\x7c\ +\x9d\xa0\xa1\x9f\xa3\xa4\x00\x00\x00\xe0\xdb\xd9\xdf\xda\xd8\xdd\ +\xd8\xd5\xd7\xd3\xd0\xcf\xcb\xc8\x76\x67\x58\x07\x06\x04\x07\x05\ +\x03\x49\x37\x24\x22\x1a\x10\x2c\x20\x15\x3b\x2c\x1c\x4d\x3a\x25\ +\x3a\x2b\x1c\x17\x11\x0b\x21\x19\x10\x2e\x22\x16\x40\x30\x1f\x39\ +\x2b\x1b\x2f\x23\x16\x2c\x21\x15\x2b\x20\x15\x2a\x20\x14\x26\x1d\ +\x12\x23\x1a\x10\x21\x19\x10\x1e\x17\x0e\x23\x1a\x11\x27\x1e\x13\ +\x20\x18\x0f\x20\x19\x10\x20\x18\x0f\x38\x2a\x1c\x31\x25\x18\x43\ +\x32\x21\x2c\x21\x15\x2d\x22\x16\x3e\x2f\x1e\x25\x1b\x11\x34\x27\ +\x19\x44\x32\x20\x36\x28\x1a\x46\x34\x23\x58\x42\x2d\x39\x2c\x1d\ +\x18\x12\x0b\x3b\x2d\x1e\x27\x1e\x13\x1b\x14\x0d\x2c\x21\x15\x27\ +\x1d\x13\x41\x31\x21\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x24\x1b\ +\x12\x2c\x22\x15\x35\x28\x19\x2e\x22\x16\x30\x23\x17\x33\x26\x18\ +\x37\x2a\x1a\x3e\x2e\x1d\x4a\x37\x24\x46\x34\x22\x42\x31\x1f\x3e\ +\x2e\x1e\x3c\x2d\x1d\x3b\x2c\x1c\x47\x36\x23\x5d\x47\x30\x53\x3e\ +\x29\x4b\x38\x26\x39\x2b\x1c\x23\x1a\x10\x20\x18\x0f\x32\x25\x18\ +\x74\x59\x3e\x91\x70\x4d\x81\x62\x43\x3a\x2d\x1d\x1a\x14\x0c\x1f\ +\x18\x10\x4f\x3c\x29\xa3\x7e\x58\x84\x66\x45\x30\x24\x17\x23\x1a\ +\x11\x43\x32\x21\x83\x64\x43\xa0\x7b\x56\x9c\x78\x53\x97\x74\x50\ +\xa3\x7e\x57\x94\x72\x4e\x7a\x5d\x3e\x31\x24\x18\x51\x3e\x2a\x58\ +\x44\x2d\x48\x36\x24\x92\x70\x4e\x90\x6f\x4c\x63\x4b\x32\x31\x24\ +\x17\x3b\x2c\x1d\x37\x29\x1b\x34\x27\x19\x2d\x21\x15\x2f\x23\x16\ +\x2d\x22\x15\x2a\x1f\x14\x2d\x21\x15\x38\x29\x1b\x3a\x2b\x1c\x38\ +\x2a\x1b\x35\x27\x19\x38\x2a\x1b\x3e\x2e\x1e\x38\x2a\x1b\x33\x26\ +\x18\x37\x2a\x1a\x3d\x2e\x1e\x3b\x2d\x1d\x42\x31\x20\x42\x31\x1f\ +\x3c\x2d\x1d\x3a\x2c\x1c\x39\x2b\x1c\x3c\x2d\x1d\x4c\x39\x25\x4d\ +\x3a\x25\x4c\x39\x25\x48\x36\x23\x4d\x3a\x26\x4c\x39\x25\x46\x34\ +\x22\x39\x2a\x1b\x34\x28\x1a\x3d\x2e\x1e\x3b\x35\x2f\x3c\x3e\x40\ +\x4b\x4e\x4f\x4a\x4c\x4d\x42\x45\x47\x0e\x0f\x0f\x00\x00\x00\x16\ +\x16\x16\x94\x98\x99\x63\x66\x69\x47\x48\x4a\x84\x87\x8b\x6a\x6c\ +\x6f\x66\x67\x6a\x95\x97\x9c\x68\x6b\x6f\x6a\x6c\x70\x9d\xa1\xa3\ +\x9d\xa2\xa4\xa0\xa5\xa8\x99\x9d\xa0\x6a\x6d\x70\x6d\x6f\x72\x96\ +\x98\x9b\x00\x00\x00\xe1\xdd\xdb\xe0\xdb\xd9\xdf\xd9\xd6\xd6\xd0\ +\xcb\xd0\xcc\xc9\x88\x7c\x71\x08\x07\x05\x0b\x08\x04\x59\x44\x2d\ +\x29\x1f\x14\x2f\x23\x16\x44\x33\x21\x4c\x38\x25\x4d\x3a\x25\x2a\ +\x1f\x14\x37\x29\x1b\x35\x28\x19\x3e\x2e\x1e\x3d\x2e\x1d\x3c\x2d\ +\x1d\x38\x2a\x1b\x2e\x22\x16\x2f\x24\x16\x2f\x24\x16\x27\x1d\x12\ +\x24\x1b\x12\x2a\x1f\x14\x33\x26\x19\x30\x24\x17\x26\x1c\x12\x21\ +\x18\x0f\x1c\x15\x0d\x38\x2a\x1c\x35\x28\x1a\x47\x35\x23\x31\x25\ +\x17\x2d\x22\x16\x3e\x2f\x1f\x24\x1b\x11\x34\x27\x19\x47\x35\x22\ +\x38\x2a\x1b\x40\x30\x1f\x49\x37\x25\x36\x29\x1b\x1a\x14\x0d\x45\ +\x34\x24\x32\x26\x19\x20\x18\x0f\x25\x1c\x12\x32\x26\x18\x4b\x39\ +\x26\x2c\x21\x15\x22\x19\x10\x24\x1a\x11\x21\x19\x10\x23\x1b\x11\ +\x51\x3d\x29\x4e\x3a\x26\x57\x42\x2b\x5c\x45\x2d\x49\x38\x25\x3a\ +\x2c\x1c\x44\x33\x21\x45\x33\x21\x42\x31\x1f\x39\x2b\x1b\x3a\x2b\ +\x1c\x6a\x50\x36\x7c\x5e\x40\x80\x61\x42\x63\x4b\x32\x77\x5b\x3e\ +\x93\x71\x4f\x55\x41\x2b\x2b\x20\x14\x2d\x22\x16\x5e\x48\x32\x72\ +\x57\x3b\x7e\x60\x41\x2d\x21\x15\x15\x10\x0a\x19\x12\x0c\x3d\x2e\ +\x1e\xa4\x7e\x58\x75\x59\x3d\x26\x1d\x13\x2e\x23\x17\x71\x56\x3a\ +\xaa\x83\x5b\x8a\x6b\x4a\x43\x34\x22\x2c\x21\x15\x37\x29\x1c\x84\ +\x65\x45\x8e\x6c\x49\x3c\x2c\x1d\x4b\x3a\x27\x37\x29\x1a\x28\x1e\ +\x13\x3f\x30\x20\x8c\x6b\x49\x6d\x53\x38\x2e\x22\x16\x38\x2a\x1b\ +\x37\x29\x1b\x3b\x2d\x1d\x38\x2a\x1b\x2d\x21\x15\x2c\x21\x15\x23\ +\x1a\x11\x29\x1f\x14\x2e\x23\x16\x2f\x23\x17\x35\x27\x19\x33\x26\ +\x18\x3b\x2c\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3f\x2f\x1e\x2b\x21\x15\ +\x34\x26\x19\x33\x26\x19\x3a\x2c\x1c\x4a\x37\x23\x44\x33\x20\x3e\ +\x2e\x1d\x3b\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1f\x46\x34\x22\x48\x36\ +\x23\x4e\x3b\x26\x4f\x3b\x26\x49\x36\x23\x44\x33\x21\x3f\x2e\x1e\ +\x2e\x23\x16\x2c\x22\x16\x32\x2d\x28\x3b\x3c\x3e\x49\x4c\x4d\x59\ +\x5d\x5e\x40\x42\x44\x00\x00\x00\x03\x03\x03\x4a\x4b\x4d\x9d\xa0\ +\xa4\x83\x84\x87\x44\x44\x45\x73\x75\x79\x58\x59\x5c\x67\x68\x6a\ +\x98\x9b\x9f\x97\x9a\x9e\x77\x79\x7d\x5f\x61\x65\x98\x9b\x9d\xa0\ +\xa4\xa8\x9f\xa2\xa7\x9e\xa1\xa5\x75\x77\x7b\x68\x68\x6c\x00\x00\ +\x00\xe4\xe0\xdf\xe2\xde\xdd\xe0\xdc\xda\xda\xd4\xd1\xd2\xce\xcc\ +\x9b\x93\x8c\x0a\x09\x07\x05\x04\x02\x4a\x37\x24\x2d\x22\x16\x2a\ +\x20\x14\x36\x28\x1a\x48\x37\x23\x44\x33\x21\x25\x1c\x12\x2c\x21\ +\x16\x2c\x21\x15\x30\x23\x17\x2f\x23\x16\x38\x2a\x1b\x3b\x2c\x1d\ +\x2d\x22\x16\x24\x1b\x11\x28\x1e\x13\x27\x1e\x12\x29\x1f\x14\x36\ +\x29\x1a\x37\x29\x1a\x4d\x39\x26\x35\x28\x19\x27\x1e\x13\x26\x1d\ +\x13\x3b\x2d\x1d\x32\x25\x18\x43\x32\x21\x28\x1f\x13\x38\x2b\x1b\ +\x48\x36\x24\x2c\x20\x15\x41\x30\x1f\x43\x32\x21\x2a\x1f\x14\x29\ +\x1f\x14\x33\x26\x19\x32\x25\x18\x24\x1b\x11\x39\x2c\x1c\x2e\x23\ +\x17\x20\x18\x0f\x2b\x21\x15\x2f\x23\x16\x50\x3c\x28\x28\x1e\x13\ +\x2e\x23\x16\x27\x1e\x13\x2c\x20\x15\x2e\x23\x16\x5b\x44\x2d\x6b\ +\x51\x35\x74\x57\x3a\x61\x48\x2f\x69\x4f\x34\x63\x4a\x31\x3b\x2c\ +\x1c\x34\x28\x19\x31\x24\x17\x35\x28\x19\x5f\x48\x31\x83\x64\x44\ +\x8d\x6c\x4a\x82\x63\x44\x75\x5a\x3d\x7d\x5f\x40\x8c\x6b\x49\x97\ +\x74\x50\x48\x36\x25\x2d\x22\x16\x49\x37\x25\x6f\x55\x38\x8b\x6b\ +\x49\x26\x1c\x12\x1f\x17\x0f\x19\x13\x0c\x3d\x2e\x1e\xa3\x7d\x57\ +\x83\x64\x44\x31\x25\x18\x3e\x2f\x1f\x8a\x69\x48\x9a\x77\x53\x50\ +\x3e\x2a\x22\x1a\x10\x21\x19\x10\x30\x23\x18\x83\x64\x44\x96\x72\ +\x4e\x76\x5a\x3d\x5a\x44\x2c\x3d\x2e\x1e\x30\x24\x17\x2e\x22\x16\ +\x6f\x54\x37\x88\x69\x48\x4e\x3b\x28\x2d\x22\x15\x35\x28\x19\x33\ +\x26\x18\x39\x2b\x1c\x32\x26\x18\x30\x24\x17\x2a\x1f\x14\x2a\x20\ +\x14\x2a\x1f\x14\x2d\x21\x16\x30\x24\x17\x31\x25\x18\x33\x26\x19\ +\x38\x2a\x1b\x3f\x2f\x1e\x41\x30\x1f\x39\x2b\x1c\x35\x27\x19\x2f\ +\x23\x16\x36\x29\x1a\x3f\x30\x1e\x42\x31\x20\x45\x34\x21\x3f\x2f\ +\x1e\x3c\x2d\x1c\x3c\x2d\x1c\x40\x30\x1e\x3b\x2b\x1c\x41\x30\x1f\ +\x41\x31\x1f\x3f\x2f\x1e\x42\x31\x20\x3d\x2e\x1e\x2a\x20\x15\x2d\ +\x22\x16\x32\x2c\x26\x3a\x3b\x3c\x49\x4b\x4c\x5d\x60\x61\x1e\x20\ +\x20\x00\x00\x00\x02\x02\x02\x52\x55\x58\x93\x96\x99\x6d\x6f\x71\ +\x80\x81\x84\x84\x86\x88\x5b\x5b\x60\x81\x82\x85\xa0\xa2\xa3\x9e\ +\xa1\xa3\xa3\xa6\xaa\x7d\x80\x84\x59\x5a\x5e\x8a\x8c\x90\xa8\xac\ +\xaf\x9c\xa0\xa4\xa1\xa4\xa7\x86\x87\x8a\x00\x00\x00\xe4\xe0\xdf\ +\xe2\xde\xdc\xdf\xdb\xda\xdc\xd7\xd5\xd3\xce\xcc\xab\xa2\x9a\x0c\ +\x0b\x08\x03\x02\x01\x3b\x2c\x1d\x2e\x22\x16\x33\x26\x19\x3b\x2c\ +\x1c\x52\x3d\x28\x50\x3c\x27\x10\x0c\x08\x1f\x17\x0e\x2c\x21\x15\ +\x36\x29\x1b\x3e\x2f\x1e\x41\x31\x1f\x3f\x30\x1f\x3b\x2c\x1d\x2f\ +\x23\x17\x2e\x22\x16\x2d\x21\x15\x31\x24\x17\x2f\x24\x17\x2c\x20\ +\x15\x2d\x22\x16\x27\x1d\x12\x32\x25\x17\x27\x1e\x13\x39\x2b\x1b\ +\x28\x1e\x13\x37\x2a\x1b\x30\x23\x17\x2e\x23\x17\x46\x35\x23\x23\ +\x1b\x11\x32\x26\x18\x3b\x2d\x1d\x29\x1f\x14\x1c\x15\x0d\x33\x27\ +\x19\x32\x26\x19\x26\x1c\x12\x31\x25\x17\x27\x1e\x13\x29\x1f\x14\ +\x2d\x22\x16\x25\x1c\x12\x43\x33\x21\x31\x24\x18\x27\x1d\x13\x28\ +\x1f\x14\x39\x2b\x1b\x30\x24\x17\x57\x42\x2b\x83\x64\x43\x99\x74\ +\x50\x89\x68\x46\x70\x55\x38\x5e\x46\x2e\x43\x33\x20\x2c\x22\x15\ +\x2e\x23\x16\x46\x35\x23\x73\x58\x3b\x8b\x6a\x49\x56\x41\x2c\x2c\ +\x21\x15\x28\x1e\x13\x37\x29\x1b\x70\x55\x39\x8c\x6b\x49\x6b\x52\ +\x38\x2c\x22\x15\x41\x31\x20\x9c\x79\x53\x93\x70\x4c\x30\x24\x17\ +\x23\x1b\x11\x19\x12\x0c\x3f\x2f\x20\xa4\x7f\x59\x83\x64\x45\x33\ +\x28\x1a\x45\x35\x23\x9e\x79\x54\x8c\x6b\x4b\x44\x34\x23\x25\x1c\ +\x11\x27\x1d\x12\x54\x41\x2c\x6b\x52\x38\x69\x50\x37\x57\x43\x2d\ +\x33\x27\x19\x2d\x21\x15\x2e\x22\x16\x34\x28\x19\x60\x48\x2f\x8c\ +\x6b\x49\x5f\x48\x31\x34\x28\x19\x3d\x2d\x1e\x36\x29\x1a\x31\x25\ +\x17\x2f\x24\x17\x30\x24\x17\x30\x23\x17\x30\x24\x17\x2d\x22\x16\ +\x2e\x23\x16\x2e\x23\x16\x31\x25\x17\x33\x26\x18\x3d\x2d\x1e\x3f\ +\x2f\x1f\x49\x37\x23\x45\x34\x21\x42\x32\x20\x3a\x2b\x1b\x34\x27\ +\x19\x35\x28\x1a\x39\x2b\x1c\x3d\x2d\x1d\x31\x25\x18\x3a\x2b\x1c\ +\x3a\x2b\x1c\x3b\x2c\x1c\x3f\x2f\x1e\x3b\x2c\x1d\x3b\x2c\x1c\x3c\ +\x2d\x1d\x3d\x2e\x1e\x40\x30\x1f\x30\x24\x17\x33\x26\x18\x38\x30\ +\x27\x42\x3f\x3c\x48\x49\x4b\x4d\x4f\x50\x03\x03\x03\x00\x00\x00\ +\x30\x30\x31\x68\x6b\x6e\x4c\x50\x52\x5a\x5b\x5d\xa0\xa3\xa7\x9c\ +\x9f\xa2\x8b\x8d\x91\x5b\x5c\x60\x7d\x7e\x81\x9e\xa0\xa2\x9f\xa2\ +\xa5\xa2\xa5\xaa\x8c\x8e\x92\x5c\x5d\x61\x7b\x7e\x80\xa9\xac\xb0\ +\xa3\xa6\xaa\xa8\xaa\xad\x00\x00\x00\xe3\xdf\xdc\xe0\xdc\xd9\xde\ +\xd9\xd7\xdd\xd8\xd5\xd5\xd0\xcd\xb9\xb2\xab\x0e\x0d\x0a\x00\x00\ +\x00\x44\x33\x21\x2e\x22\x16\x27\x1d\x12\x3a\x2c\x1c\x58\x42\x2b\ +\x52\x3d\x27\x18\x12\x0b\x1d\x16\x0e\x22\x1a\x11\x2d\x22\x16\x33\ +\x26\x18\x39\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x3d\x2e\x1e\x36\x28\ +\x1a\x30\x24\x17\x34\x27\x19\x31\x25\x18\x2a\x20\x14\x28\x1e\x13\ +\x25\x1c\x11\x2a\x20\x13\x26\x1d\x12\x39\x2b\x1c\x23\x1a\x11\x25\ +\x1c\x11\x1e\x17\x0e\x29\x1f\x14\x4c\x3a\x27\x24\x1b\x11\x32\x25\ +\x18\x42\x32\x21\x37\x2a\x1b\x2a\x20\x14\x32\x27\x19\x2b\x20\x15\ +\x1d\x15\x0e\x40\x30\x20\x33\x26\x18\x25\x1b\x11\x2f\x24\x17\x35\ +\x28\x19\x38\x2b\x1c\x2f\x23\x17\x25\x1b\x12\x25\x1c\x11\x35\x28\ +\x1a\x3e\x2e\x1e\x59\x44\x2c\x6c\x52\x35\x42\x31\x1f\x4a\x37\x24\ +\x73\x57\x3a\x76\x59\x3b\x4d\x3a\x25\x33\x26\x19\x2b\x20\x14\x4b\ +\x39\x25\x86\x66\x46\x73\x57\x3b\x3e\x2e\x1e\x2a\x1f\x14\x2b\x21\ +\x14\x32\x25\x18\x5a\x43\x2c\x8b\x6a\x48\x86\x66\x45\x31\x24\x17\ +\x3d\x2e\x1f\x9b\x78\x53\x94\x72\x4e\x34\x27\x1a\x26\x1c\x12\x1f\ +\x18\x0f\x34\x27\x1b\xa1\x7c\x56\x88\x68\x46\x39\x2c\x1c\x3d\x2f\ +\x1f\x84\x64\x44\x87\x68\x47\x4d\x3b\x29\x2d\x22\x16\x34\x27\x19\ +\x33\x25\x18\x27\x1d\x13\x31\x25\x18\x44\x33\x22\x34\x28\x19\x2e\ +\x22\x16\x32\x25\x17\x32\x26\x17\x4b\x38\x25\x8b\x6a\x48\x78\x5c\ +\x3f\x2f\x22\x16\x59\x43\x2d\x6d\x53\x39\x24\x1b\x11\x31\x26\x18\ +\x38\x2a\x1b\x35\x27\x19\x3a\x2b\x1c\x3e\x2e\x1e\x36\x28\x1a\x30\ +\x24\x17\x39\x2a\x1b\x37\x29\x1a\x37\x29\x1a\x3d\x2d\x1d\x45\x34\ +\x22\x49\x37\x23\x45\x34\x21\x3f\x2f\x1e\x36\x28\x19\x39\x2a\x1b\ +\x40\x30\x1f\x3f\x2f\x1e\x3b\x2d\x1c\x34\x27\x19\x37\x29\x1a\x36\ +\x29\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x36\x28\x1a\x37\x29\x1a\x38\x2a\ +\x1a\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x19\x30\x29\x21\x37\x37\x38\ +\x4a\x4c\x4e\x23\x24\x25\x00\x00\x00\x00\x00\x00\x71\x74\x74\x81\ +\x84\x86\x54\x56\x56\x3e\x3f\x42\x9d\xa0\xa2\x9f\xa2\xa4\x9e\xa2\ +\xa4\x92\x95\x97\x5d\x5e\x63\x7e\x7f\x83\xa1\xa5\xa6\x9f\xa2\xa5\ +\xa1\xa4\xa8\x94\x97\x9b\x6b\x6d\x6e\x66\x68\x69\xb1\xb2\xb5\xa7\ +\xa8\xac\x00\x00\x00\xe2\xdd\xda\xe1\xdc\xda\xdf\xda\xd7\xdb\xd7\ +\xd4\xd6\xd2\xcf\xc4\xba\xb1\x11\x0f\x0b\x00\x00\x00\x4d\x3b\x28\ +\x31\x25\x18\x22\x1a\x10\x3a\x2b\x1c\x55\x3f\x29\x51\x3e\x28\x16\ +\x10\x0b\x19\x13\x0d\x20\x18\x0f\x2a\x1f\x14\x30\x24\x17\x31\x24\ +\x17\x33\x26\x18\x34\x27\x19\x42\x31\x20\x37\x29\x1b\x33\x26\x19\ +\x33\x26\x18\x39\x2b\x1b\x37\x29\x1b\x33\x27\x19\x30\x24\x17\x33\ +\x26\x19\x27\x1d\x12\x3e\x2f\x1e\x2b\x21\x15\x3a\x2b\x1c\x28\x1d\ +\x13\x2c\x21\x15\x3d\x2e\x1f\x34\x27\x19\x35\x28\x1a\x3d\x2f\x1e\ +\x3b\x2d\x1d\x28\x1e\x13\x39\x2c\x1d\x2c\x22\x16\x13\x0e\x08\x44\ +\x34\x23\x6d\x54\x3a\x7e\x61\x43\x90\x6f\x4d\x3d\x2e\x1e\x39\x2b\ +\x1c\x34\x27\x19\x32\x26\x19\x29\x1f\x14\x2b\x20\x15\x40\x30\x1f\ +\x69\x4f\x35\x62\x4a\x30\x40\x30\x1f\x3b\x2c\x1c\x46\x35\x22\x65\ +\x4c\x32\x62\x49\x31\x46\x34\x22\x2a\x1f\x13\x4e\x3a\x26\x87\x67\ +\x45\x63\x4c\x33\x31\x24\x18\x25\x1c\x12\x27\x1d\x12\x24\x1c\x11\ +\x44\x33\x21\x84\x65\x46\x98\x75\x51\x2c\x22\x16\x39\x2a\x1c\x9b\ +\x77\x53\x94\x72\x4e\x3c\x2d\x1d\x33\x27\x19\x2a\x20\x14\x35\x28\ +\x1a\xa5\x7f\x59\x88\x68\x47\x3d\x2f\x1f\x2f\x24\x17\x7c\x5f\x42\ +\xa0\x7b\x55\x75\x5a\x3d\x3e\x2f\x1f\x35\x28\x19\x2e\x23\x17\x3c\ +\x2e\x1e\x91\x70\x4f\x73\x59\x3d\x2c\x21\x15\x23\x1a\x10\x28\x1e\ +\x13\x25\x1b\x12\x2e\x23\x16\x81\x63\x43\x97\x74\x50\x78\x5d\x40\ +\x85\x65\x44\x65\x4d\x33\x2c\x20\x15\x36\x28\x1a\x32\x26\x18\x36\ +\x28\x1a\x3b\x2d\x1d\x41\x31\x20\x39\x2b\x1b\x31\x25\x17\x33\x27\ +\x19\x34\x27\x1a\x38\x2a\x1a\x35\x28\x19\x3c\x2d\x1d\x42\x31\x20\ +\x45\x34\x22\x43\x32\x20\x40\x30\x1f\x3a\x2b\x1c\x3f\x2f\x1f\x45\ +\x33\x21\x40\x30\x1f\x44\x33\x21\x3f\x2f\x1e\x33\x26\x18\x3e\x2f\ +\x1e\x49\x37\x24\x35\x27\x19\x3b\x2c\x1d\x37\x29\x1b\x33\x26\x18\ +\x3e\x2e\x1d\x41\x31\x1f\x2f\x27\x1f\x34\x35\x35\x45\x46\x48\x07\ +\x07\x07\x00\x00\x00\x1a\x1b\x1b\x87\x8b\x8c\x80\x84\x84\x46\x48\ +\x48\x80\x84\x86\x58\x5a\x5e\x94\x97\x99\xa3\xa6\xa7\x9b\x9e\xa1\ +\x9c\x9e\xa2\x6a\x6b\x6f\x68\x68\x6c\x9c\x9e\xa1\xa3\xa6\xaa\xa1\ +\xa4\xa8\x9b\x9e\xa1\x79\x7c\x7d\x5a\x5b\x5d\xac\xad\xb0\x00\x00\ +\x00\xe2\xdf\xdd\xe2\xdf\xdc\xe0\xdc\xda\xdb\xd7\xd4\xd5\xd0\xce\ +\xc4\xb2\xa2\x15\x11\x0d\x00\x00\x00\x3e\x30\x1f\x2f\x23\x16\x25\ +\x1c\x12\x30\x24\x17\x3e\x2e\x1e\x3f\x2f\x1f\x1d\x15\x0d\x1a\x14\ +\x0d\x20\x18\x10\x27\x1e\x13\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\ +\x3c\x2d\x1d\x38\x2a\x1b\x2f\x23\x16\x2f\x22\x16\x2a\x20\x15\x31\ +\x26\x18\x2c\x22\x15\x27\x1d\x13\x27\x1e\x13\x2f\x23\x16\x29\x1f\ +\x14\x4d\x3b\x27\x31\x25\x18\x47\x36\x24\x62\x4c\x33\x59\x45\x2e\ +\x59\x44\x2e\x31\x25\x18\x2f\x23\x16\x3b\x2c\x1c\x3f\x2f\x1f\x37\ +\x29\x1a\x3d\x2e\x1e\x2a\x20\x15\x17\x11\x0b\x43\x34\x23\x9d\x7a\ +\x56\xa9\x82\x5b\xae\x87\x5e\x49\x38\x26\x32\x26\x18\x41\x32\x21\ +\x25\x1c\x12\x25\x1c\x12\x22\x1a\x10\x31\x25\x18\x41\x31\x1f\x3c\ +\x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x3b\x2d\x1c\x64\x4b\x31\x6c\x52\ +\x36\x54\x3f\x2a\x2f\x23\x16\x5a\x44\x2c\x81\x62\x42\x6e\x53\x38\ +\x3a\x2c\x1d\x2b\x20\x14\x29\x1f\x13\x27\x1d\x12\x4a\x38\x25\x6b\ +\x51\x37\x76\x5b\x3e\x33\x27\x19\x2e\x23\x16\x82\x64\x45\x7b\x5e\ +\x3f\x3d\x2d\x1e\x2f\x23\x16\x3e\x2f\x1f\x6f\x55\x3b\x9c\x77\x53\ +\x88\x68\x48\x38\x2a\x1c\x1d\x15\x0d\x57\x42\x2e\xa1\x7d\x57\xa2\ +\x7e\x57\xa5\x80\x5a\x99\x77\x54\x9f\x7b\x57\xad\x86\x5d\xac\x84\ +\x5c\x71\x56\x3b\x36\x29\x1b\x27\x1d\x13\x28\x1e\x13\x27\x1e\x13\ +\x24\x1b\x12\x46\x35\x22\xa4\x7f\x58\x9f\x7a\x54\x97\x73\x4f\x6a\ +\x51\x36\x28\x1e\x12\x2e\x23\x17\x30\x25\x17\x37\x2a\x1b\x3b\x2d\ +\x1d\x3b\x2c\x1c\x3e\x2e\x1e\x3f\x2f\x1e\x36\x29\x1a\x2d\x22\x16\ +\x30\x24\x17\x37\x2a\x1b\x38\x2a\x1a\x41\x31\x1f\x4a\x37\x24\x40\ +\x30\x1f\x4a\x37\x24\x39\x2b\x1c\x37\x29\x1a\x3a\x2b\x1c\x3d\x2e\ +\x1e\x39\x2b\x1c\x36\x29\x1a\x42\x31\x20\x42\x32\x20\x4a\x37\x23\ +\x43\x32\x20\x3f\x2f\x1e\x49\x36\x24\x4b\x38\x25\x42\x31\x20\x3b\ +\x2b\x1c\x31\x28\x1f\x38\x37\x37\x27\x28\x29\x02\x02\x02\x00\x00\ +\x00\x52\x54\x54\x78\x7d\x7c\x6f\x73\x72\x58\x5b\x5b\x99\x9d\x9f\ +\x7d\x80\x83\x5d\x5f\x63\x8e\x90\x92\xa4\xa7\xa7\xa1\xa4\xa5\xa4\ +\xa7\xaa\x75\x77\x7b\x56\x56\x5c\xa8\xab\xaf\xa1\xa4\xa8\xa4\xa7\ +\xab\xa4\xa7\xaa\x8c\x8f\x92\x58\x57\x5c\x00\x00\x00\xe5\xe0\xdf\ +\xe3\xdf\xdd\xe1\xde\xdc\xdc\xd8\xd5\xd5\xd0\xcd\xc9\xb9\xaa\x1f\ +\x19\x11\x01\x01\x00\x4c\x3a\x27\x31\x24\x18\x2d\x21\x15\x2e\x22\ +\x16\x42\x31\x20\x46\x35\x22\x1b\x14\x0d\x17\x11\x0b\x1f\x17\x0e\ +\x2b\x20\x15\x2a\x1f\x14\x27\x1d\x12\x2e\x23\x16\x30\x24\x17\x39\ +\x2b\x1b\x3e\x2e\x1e\x41\x30\x1f\x33\x27\x19\x2d\x22\x15\x37\x29\ +\x1a\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x40\x30\x20\ +\x3a\x2c\x1d\x48\x37\x24\x78\x5b\x3e\x7f\x60\x42\x7c\x5f\x40\x37\ +\x2a\x1b\x2b\x20\x15\x35\x28\x1a\x37\x29\x1b\x2e\x22\x16\x42\x32\ +\x21\x3d\x2e\x1e\x1f\x17\x0f\x31\x25\x19\x85\x66\x47\x8c\x6c\x4a\ +\x9e\x7a\x55\x47\x36\x24\x2d\x22\x15\x3f\x30\x1f\x35\x28\x19\x2b\ +\x21\x15\x24\x1c\x12\x2a\x20\x14\x3b\x2c\x1d\x32\x25\x18\x37\x29\ +\x1b\x3d\x2e\x1e\x51\x3d\x27\x5f\x47\x2f\x5e\x47\x2f\x63\x4a\x31\ +\x36\x29\x1a\x4b\x38\x25\x67\x4d\x33\x6e\x53\x37\x66\x4d\x33\x46\ +\x35\x23\x38\x2b\x1c\x4e\x3b\x28\x6f\x55\x39\x8d\x6b\x49\x65\x4d\ +\x34\x3c\x2d\x1d\x33\x27\x18\x98\x75\x51\x81\x63\x44\x81\x63\x43\ +\xa9\x82\x5a\xa8\x81\x5a\xa2\x7d\x56\x9f\x79\x53\x75\x5a\x3e\x24\ +\x1b\x10\x25\x1c\x12\x22\x19\x0f\x4f\x3c\x29\x8f\x6e\x4d\xa3\x7e\ +\x57\xa5\x7f\x58\xa5\x7f\x59\xac\x86\x5e\xa7\x82\x5b\x76\x5b\x3e\ +\x2d\x22\x16\x30\x24\x17\x32\x26\x18\x2e\x23\x17\x32\x24\x18\x2b\ +\x21\x15\x43\x32\x21\x65\x4d\x33\x6e\x53\x38\x54\x41\x2b\x32\x25\ +\x18\x30\x24\x18\x36\x29\x1a\x36\x29\x1a\x36\x28\x19\x3e\x2e\x1e\ +\x49\x36\x23\x4a\x38\x24\x43\x32\x21\x3b\x2c\x1d\x37\x29\x1a\x38\ +\x29\x1a\x34\x27\x19\x39\x2b\x1c\x49\x37\x23\x45\x34\x22\x46\x35\ +\x22\x3c\x2d\x1d\x3a\x2c\x1c\x38\x2a\x1b\x3e\x2e\x1e\x31\x25\x18\ +\x3a\x2c\x1b\x42\x32\x20\x4b\x38\x25\x54\x3f\x29\x3e\x2e\x1e\x3f\ +\x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3e\x2f\x1f\x34\x27\x19\x35\x2a\ +\x1d\x3d\x3b\x39\x0b\x0b\x0c\x00\x00\x00\x0a\x0b\x0b\x74\x77\x78\ +\x74\x77\x78\x44\x46\x47\x91\x95\x96\x95\x98\x9a\x98\x9b\x9d\x83\ +\x86\x88\x5d\x5f\x62\x89\x8b\x8c\xa1\xa4\xa4\xa2\xa5\xa7\xa3\xa6\ +\xaa\x89\x8a\x90\x4c\x4b\x51\x9a\x9b\x9e\xa4\xa7\xaa\xa5\xa8\xac\ +\xa9\xab\xae\x96\x97\x9b\x00\x00\x00\xe5\xe0\xdf\xe4\xdf\xde\xe1\ +\xdc\xda\xdd\xd8\xd6\xd6\xd1\xce\xc9\xb9\xa9\x2d\x24\x1b\x00\x00\ +\x00\x33\x26\x1a\x24\x1b\x12\x27\x1d\x13\x3b\x2c\x1c\x44\x33\x22\ +\x4a\x38\x23\x19\x13\x0c\x17\x12\x0b\x16\x11\x0b\x1c\x15\x0d\x1e\ +\x17\x0e\x26\x1d\x12\x30\x23\x17\x2f\x23\x17\x38\x2a\x1b\x3e\x2e\ +\x1e\x3d\x2e\x1d\x3e\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2f\x23\x16\ +\x2c\x21\x15\x2d\x22\x16\x27\x1d\x13\x43\x32\x21\x37\x2a\x1b\x3b\ +\x2d\x1d\x85\x66\x46\x8e\x6d\x4b\x89\x69\x48\x44\x34\x22\x28\x1d\ +\x13\x3b\x2b\x1c\x43\x32\x20\x31\x25\x17\x44\x34\x22\x48\x36\x23\ +\x36\x28\x19\x39\x2b\x1c\x82\x65\x45\x9f\x7b\x55\x99\x76\x51\x48\ +\x37\x25\x29\x1f\x14\x5c\x47\x2f\x39\x2a\x1b\x34\x26\x19\x25\x1c\ +\x12\x2d\x21\x15\x41\x31\x20\x3d\x2e\x1d\x3a\x2c\x1c\x3f\x2f\x1f\ +\x4b\x38\x25\x68\x4e\x34\x69\x4f\x35\x5e\x47\x2f\x3d\x2d\x1d\x43\ +\x32\x20\x5d\x46\x2e\x7c\x5e\x3f\x89\x68\x46\x91\x6f\x4b\x8d\x6b\ +\x49\x8d\x6c\x49\x8d\x6b\x48\x81\x62\x43\x3d\x2e\x1e\x37\x29\x1b\ +\x35\x28\x1b\x95\x73\x51\x89\x69\x48\x9d\x79\x54\x9d\x79\x54\x9b\ +\x78\x53\x91\x6f\x4d\x65\x4c\x35\x30\x24\x17\x29\x1f\x14\x27\x1c\ +\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x46\x36\x24\x5f\x48\x30\ +\x64\x4c\x33\x4e\x3b\x27\x34\x27\x18\x26\x1c\x12\x27\x1d\x13\x2d\ +\x22\x15\x31\x25\x17\x36\x29\x1a\x3e\x2e\x1e\x3c\x2d\x1d\x2e\x23\ +\x16\x29\x1e\x14\x2b\x20\x14\x27\x1e\x13\x2a\x1f\x14\x2b\x20\x14\ +\x34\x27\x19\x33\x26\x18\x35\x28\x1a\x3d\x2d\x1d\x40\x30\x1e\x48\ +\x36\x22\x47\x36\x22\x46\x34\x22\x46\x35\x22\x3e\x2e\x1d\x48\x37\ +\x23\x47\x34\x22\x49\x37\x23\x48\x36\x23\x4a\x37\x24\x41\x31\x1f\ +\x39\x2b\x1b\x33\x26\x19\x3e\x2f\x1e\x32\x26\x19\x34\x27\x19\x40\ +\x30\x1e\x4e\x3a\x25\x5a\x44\x2c\x4a\x37\x24\x43\x32\x21\x3f\x2f\ +\x1f\x34\x26\x19\x35\x27\x19\x2e\x22\x16\x32\x26\x1a\x2b\x28\x25\ +\x04\x04\x04\x00\x00\x00\x39\x3a\x3a\x6d\x71\x72\x75\x78\x7a\x45\ +\x46\x49\x95\x98\x9b\x94\x97\x9a\x95\x99\x9a\x9e\xa2\xa3\x91\x94\ +\x96\x5b\x5c\x60\x88\x89\x8b\xa2\xa4\xa6\x9e\xa1\xa5\xa3\xa6\xab\ +\x99\x9a\x9f\x48\x47\x4b\x93\x93\x97\xa4\xa6\xaa\xa7\xa8\xab\xac\ +\xad\xaf\x00\x00\x00\xe5\xe0\xe0\xe3\xde\xdd\xe2\xdd\xdc\xde\xda\ +\xd9\xd7\xd1\xd0\xd1\xca\xc4\x3d\x34\x2b\x03\x02\x01\x28\x1f\x14\ +\x30\x25\x18\x24\x1b\x11\x40\x30\x1f\x49\x36\x24\x54\x3f\x29\x22\ +\x1a\x10\x16\x11\x0a\x1a\x13\x0c\x1f\x18\x0f\x24\x1b\x11\x2c\x21\ +\x15\x2e\x22\x16\x27\x1d\x12\x34\x27\x19\x3b\x2b\x1c\x32\x26\x18\ +\x33\x26\x18\x37\x29\x1a\x35\x28\x19\x30\x23\x17\x27\x1d\x12\x2a\ +\x20\x14\x28\x1e\x13\x37\x29\x1a\x37\x2a\x1b\x2f\x23\x17\x5e\x47\ +\x30\x86\x67\x46\x7d\x60\x43\x45\x34\x22\x37\x29\x1b\x3f\x2f\x1e\ +\x3d\x2e\x1e\x24\x1b\x11\x44\x33\x22\x4f\x3b\x28\x39\x2b\x1c\x33\ +\x27\x19\x75\x5b\x3e\x89\x69\x48\x98\x75\x51\x50\x3d\x29\x2a\x20\ +\x14\x47\x36\x23\x31\x25\x18\x39\x2b\x1c\x2f\x24\x17\x2d\x22\x16\ +\x36\x28\x1a\x42\x32\x20\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\x1f\x6a\ +\x4f\x34\x73\x56\x3a\x55\x40\x2a\x3f\x2f\x1e\x45\x34\x21\x41\x31\ +\x1f\x61\x4a\x31\x87\x67\x46\x94\x71\x4e\x87\x67\x46\x8d\x6c\x4a\ +\x64\x4d\x34\x2c\x21\x15\x20\x18\x0f\x24\x1a\x11\x4e\x3c\x28\x58\ +\x43\x2e\x50\x3d\x2a\x44\x34\x23\x3e\x2e\x1e\x2d\x22\x15\x22\x19\ +\x0f\x23\x1a\x11\x2b\x20\x15\x2a\x20\x14\x2d\x22\x16\x31\x25\x18\ +\x2d\x21\x15\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x32\x25\x18\x2e\ +\x22\x16\x28\x1e\x13\x26\x1d\x13\x29\x1e\x13\x2d\x22\x16\x30\x24\ +\x17\x33\x26\x18\x3f\x30\x1e\x45\x34\x21\x3b\x2c\x1c\x39\x2b\x1b\ +\x2c\x21\x16\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x2f\x23\x16\x2b\ +\x1f\x14\x31\x24\x18\x3a\x2b\x1c\x37\x29\x1a\x37\x29\x1a\x42\x32\ +\x20\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x3d\x2e\x1e\x41\x31\x1f\ +\x3f\x2f\x1e\x42\x32\x20\x3f\x2f\x1f\x3c\x2d\x1d\x34\x26\x19\x35\ +\x28\x1a\x3d\x2e\x1d\x3e\x2f\x1e\x3a\x2c\x1d\x4e\x3a\x26\x4d\x3a\ +\x26\x46\x35\x22\x41\x30\x20\x46\x34\x21\x38\x2a\x1b\x3c\x2d\x1d\ +\x3b\x2c\x1d\x2d\x21\x16\x3a\x2c\x1c\x1e\x1b\x16\x00\x00\x00\x00\ +\x01\x01\x5e\x61\x62\x69\x6c\x6e\x49\x4a\x4c\x7f\x80\x83\x8e\x91\ +\x95\x96\x99\x9d\x97\x99\x9e\x9c\x9f\xa2\xa0\xa2\xa3\x9a\x9b\x9e\ +\x5c\x5e\x63\x7e\x81\x83\xa0\xa3\xa6\xa3\xa5\xa9\xa3\xa5\xaa\xa5\ +\xa7\xa9\x53\x54\x57\x84\x83\x87\xa6\xa8\xa9\xaa\xac\xad\x00\x00\ +\x00\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\xde\xda\xd9\xd8\xd4\xd3\ +\xcf\xca\xca\x47\x3e\x35\x03\x03\x02\x18\x13\x0c\x2f\x23\x17\x18\ +\x12\x0b\x2b\x20\x14\x36\x28\x19\x44\x33\x20\x1c\x15\x0d\x11\x0d\ +\x08\x15\x10\x0a\x1d\x16\x0e\x24\x1b\x11\x2f\x23\x17\x32\x25\x18\ +\x29\x1f\x14\x33\x27\x19\x39\x2b\x1c\x37\x2a\x1b\x2f\x23\x16\x36\ +\x28\x1a\x2f\x24\x17\x2d\x22\x16\x31\x25\x17\x26\x1c\x12\x24\x1c\ +\x11\x35\x28\x1a\x40\x31\x21\x31\x25\x18\x82\x63\x44\x69\x50\x37\ +\x70\x55\x3a\x40\x30\x1f\x36\x28\x19\x38\x2a\x1b\x39\x2a\x1b\x20\ +\x18\x0f\x43\x33\x22\x4e\x3c\x27\x34\x27\x19\x2b\x20\x14\x73\x58\ +\x3c\x87\x67\x48\x83\x64\x46\x44\x34\x23\x26\x1c\x12\x44\x34\x23\ +\x33\x26\x18\x37\x29\x1a\x36\x28\x1a\x30\x24\x17\x2d\x21\x15\x36\ +\x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x3d\x2d\x1d\x6e\x52\x37\x79\x5c\ +\x3d\x52\x3e\x29\x32\x26\x18\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\x1c\ +\x34\x27\x19\x38\x2a\x1a\x42\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x36\ +\x28\x1a\x2b\x21\x15\x26\x1d\x12\x1d\x15\x0d\x1b\x14\x0d\x23\x1a\ +\x10\x1b\x14\x0d\x21\x19\x10\x21\x19\x10\x23\x1b\x11\x28\x1e\x14\ +\x29\x1f\x14\x31\x24\x18\x2e\x23\x17\x31\x25\x18\x29\x1e\x13\x2b\ +\x20\x14\x31\x24\x18\x3b\x2c\x1c\x39\x2a\x1b\x31\x24\x18\x2e\x23\ +\x16\x37\x2a\x1b\x29\x20\x14\x27\x1e\x13\x26\x1c\x12\x32\x25\x18\ +\x3d\x2d\x1d\x3c\x2d\x1d\x39\x2b\x1b\x37\x29\x1a\x31\x25\x18\x2d\ +\x22\x16\x2f\x23\x16\x30\x24\x17\x34\x27\x19\x36\x28\x1a\x33\x26\ +\x18\x33\x26\x18\x35\x28\x1a\x39\x2b\x1b\x42\x31\x1f\x3e\x2e\x1e\ +\x36\x28\x19\x35\x28\x1a\x3d\x2d\x1d\x39\x2a\x1c\x3b\x2c\x1d\x41\ +\x31\x1f\x4b\x38\x24\x4d\x3a\x26\x43\x32\x21\x36\x29\x1a\x3b\x2c\ +\x1c\x3c\x2d\x1d\x36\x28\x1a\x3c\x2d\x1e\x36\x29\x1b\x41\x31\x1f\ +\x3d\x2e\x1e\x45\x34\x22\x45\x34\x22\x48\x36\x23\x46\x35\x21\x33\ +\x27\x18\x30\x24\x17\x13\x0f\x0c\x00\x00\x00\x22\x23\x23\x5b\x5e\ +\x5e\x6c\x6f\x6f\x37\x38\x39\x94\x97\x99\x8d\x8f\x93\x97\x99\x9d\ +\x9b\x9e\xa1\x9c\x9e\xa2\x9d\x9f\xa1\x9e\x9f\xa2\xa8\xa9\xae\x5c\ +\x5f\x63\x79\x7b\x7f\x99\x9b\x9f\xa5\xa7\xaa\xa3\xa5\xa6\xa9\xaa\ +\xab\x6c\x6b\x6e\x6e\x6d\x6f\xa6\xa6\xa8\x00\x00\x00\xe5\xe1\xe0\ +\xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\xdb\xd8\xd6\xd5\xce\xc4\xbb\x4d\ +\x3e\x2d\x05\x04\x02\x18\x12\x0b\x39\x2c\x1c\x24\x1b\x11\x35\x28\ +\x1a\x48\x36\x23\x52\x3e\x28\x29\x1e\x13\x1b\x14\x0d\x19\x13\x0c\ +\x1e\x17\x0f\x26\x1d\x12\x2e\x22\x16\x2c\x21\x15\x29\x1f\x14\x2e\ +\x23\x16\x32\x25\x18\x31\x24\x18\x37\x29\x1a\x35\x28\x19\x2a\x20\ +\x14\x2a\x20\x14\x32\x25\x17\x33\x26\x18\x31\x24\x17\x35\x27\x19\ +\x3c\x2e\x1e\x2d\x22\x16\x90\x6f\x4c\x7c\x5e\x40\x7a\x5c\x3f\x49\ +\x37\x25\x3a\x2b\x1d\x40\x30\x1f\x3b\x2c\x1c\x21\x19\x10\x36\x29\ +\x1b\x4e\x3b\x27\x4a\x38\x25\x3e\x30\x1f\x7a\x5e\x41\x93\x71\x4f\ +\xa8\x82\x5c\x67\x4f\x36\x23\x1a\x11\x3f\x30\x20\x29\x20\x13\x34\ +\x27\x19\x33\x26\x18\x32\x25\x18\x3a\x2b\x1c\x37\x29\x1b\x3d\x2e\ +\x1d\x37\x29\x1a\x45\x33\x21\x5d\x46\x2d\x68\x4e\x33\x4d\x3a\x26\ +\x35\x27\x19\x37\x29\x1a\x3c\x2d\x1d\x3c\x2c\x1d\x35\x28\x1a\x34\ +\x27\x19\x36\x28\x19\x38\x29\x1b\x37\x2a\x1b\x2f\x23\x16\x2d\x22\ +\x15\x29\x1f\x14\x30\x24\x17\x20\x18\x10\x29\x1f\x14\x24\x1b\x12\ +\x20\x18\x10\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x2e\x23\x17\x2b\ +\x20\x15\x2f\x23\x17\x2c\x21\x15\x28\x1f\x13\x25\x1d\x12\x2f\x23\ +\x16\x37\x29\x1a\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x30\x24\x17\ +\x2f\x23\x17\x26\x1d\x12\x29\x1f\x13\x34\x27\x19\x40\x2f\x1e\x3e\ +\x2f\x1f\x3c\x2d\x1d\x3e\x2e\x1e\x47\x36\x23\x3c\x2d\x1d\x34\x26\ +\x19\x36\x28\x19\x36\x28\x1a\x36\x28\x1a\x2f\x23\x16\x2d\x21\x16\ +\x31\x24\x17\x36\x29\x1a\x35\x28\x1a\x2f\x23\x16\x31\x25\x17\x37\ +\x29\x1b\x40\x30\x1f\x43\x32\x21\x46\x35\x23\x49\x37\x23\x4b\x38\ +\x24\x51\x3d\x28\x4f\x3b\x26\x3a\x2c\x1c\x38\x2a\x1b\x3f\x2f\x1f\ +\x34\x27\x19\x3b\x2b\x1c\x44\x33\x21\x4a\x37\x24\x41\x31\x20\x45\ +\x34\x22\x38\x2b\x1b\x30\x24\x17\x35\x27\x1a\x32\x25\x18\x33\x26\ +\x18\x14\x0f\x0a\x00\x00\x00\x45\x48\x47\x5c\x60\x5f\x42\x45\x44\ +\x62\x65\x65\x88\x8b\x8d\x8f\x92\x96\x96\x99\x9d\x97\x99\x9d\x9d\ +\x9d\xa2\x9d\x9f\xa3\x9c\x9e\xa1\xa2\xa4\xa8\xaa\xad\xb1\x6d\x6e\ +\x73\x6d\x6e\x73\x95\x97\x9b\xa8\xab\xac\xa6\xa5\xa7\xac\xab\xac\ +\x82\x82\x83\x60\x5f\x62\x00\x00\x00\xe5\xe0\xdf\xe5\xe0\xdf\xe2\ +\xde\xdd\xdf\xdc\xdb\xda\xd7\xd6\xd2\xcd\xc9\x67\x5b\x51\x05\x04\ +\x03\x12\x0e\x08\x48\x36\x24\x25\x1c\x12\x30\x24\x17\x40\x30\x1f\ +\x54\x3f\x29\x30\x24\x17\x19\x13\x0c\x23\x1a\x11\x23\x1b\x11\x22\ +\x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2a\x20\ +\x14\x2f\x24\x17\x35\x28\x1a\x2e\x22\x16\x25\x1c\x11\x2f\x24\x16\ +\x30\x24\x17\x2f\x23\x16\x30\x23\x17\x3f\x30\x1e\x46\x36\x22\x3c\ +\x2d\x1d\x90\x6f\x4c\x78\x5b\x3e\x8e\x6c\x4a\x7e\x60\x43\x7a\x5d\ +\x40\x75\x59\x3c\x45\x33\x22\x20\x18\x0f\x27\x1e\x13\x71\x58\x3c\ +\xa1\x7d\x57\xa2\x7d\x57\x96\x74\x50\x96\x73\x50\xaa\x84\x5d\x74\ +\x59\x3e\x26\x1d\x13\x49\x37\x25\x2a\x20\x14\x2d\x22\x15\x36\x28\ +\x1a\x33\x26\x19\x46\x34\x22\x42\x32\x20\x44\x33\x21\x37\x29\x1a\ +\x42\x31\x20\x52\x3e\x28\x5a\x44\x2c\x51\x3d\x27\x3c\x2d\x1d\x3d\ +\x2e\x1e\x3a\x2c\x1c\x35\x27\x19\x32\x25\x17\x2a\x20\x14\x2d\x22\ +\x15\x2d\x22\x16\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2a\x20\x14\ +\x25\x1c\x12\x20\x17\x0f\x20\x18\x0f\x1f\x18\x0f\x24\x1b\x12\x27\ +\x1d\x13\x28\x1d\x13\x2a\x1f\x14\x2e\x22\x16\x28\x1e\x14\x2d\x22\ +\x16\x32\x25\x18\x32\x25\x18\x2d\x22\x16\x31\x25\x17\x3a\x2c\x1c\ +\x34\x27\x19\x31\x24\x17\x2e\x22\x16\x30\x23\x17\x31\x24\x17\x2a\ +\x20\x14\x29\x1f\x14\x30\x24\x17\x31\x25\x18\x33\x26\x19\x3a\x2b\ +\x1c\x39\x2b\x1b\x3a\x2b\x1c\x48\x36\x23\x3e\x2f\x1e\x3e\x2e\x1e\ +\x43\x32\x20\x3e\x2f\x1e\x37\x29\x1a\x34\x26\x19\x34\x27\x19\x34\ +\x27\x19\x36\x28\x1a\x35\x27\x1a\x35\x28\x1a\x43\x32\x20\x42\x31\ +\x20\x3c\x2c\x1c\x37\x29\x1a\x3b\x2c\x1c\x48\x36\x23\x4e\x3a\x26\ +\x4d\x39\x25\x41\x30\x1f\x3e\x2f\x1e\x38\x2a\x1b\x36\x28\x1a\x3a\ +\x2c\x1c\x3d\x2e\x1d\x3e\x2f\x1e\x48\x36\x23\x41\x31\x20\x3c\x2d\ +\x1d\x39\x2b\x1c\x33\x26\x18\x2e\x22\x16\x41\x30\x20\x1d\x16\x0e\ +\x12\x13\x14\x4b\x4d\x4d\x5c\x60\x5f\x2a\x2c\x2c\x7e\x82\x83\x81\ +\x84\x86\x91\x91\x96\x95\x97\x9a\x98\x9b\x9f\x9a\x9d\xa0\x9e\xa0\ +\xa4\x9f\xa1\xa5\xa1\xa4\xa8\xa1\xa4\xa8\xb0\xb4\xb8\x80\x80\x85\ +\x65\x64\x6a\x8e\x8f\x92\xaa\xa9\xaa\xab\xab\xab\xae\xae\xae\x97\ +\x97\x98\x00\x00\x00\xe4\xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\ +\xdb\xdb\xd7\xd6\xd2\xcf\xcc\x6d\x5d\x4c\x06\x05\x03\x0a\x08\x05\ +\x51\x3d\x29\x32\x25\x18\x2f\x23\x16\x37\x29\x1a\x41\x31\x1f\x2d\ +\x22\x16\x15\x10\x0a\x2b\x21\x14\x2c\x21\x15\x30\x24\x17\x2b\x20\ +\x14\x27\x1e\x12\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x2b\x21\x14\ +\x2c\x21\x15\x2a\x1f\x14\x29\x1f\x14\x2d\x22\x15\x2b\x20\x14\x24\ +\x1b\x11\x2c\x21\x16\x3f\x2f\x1e\x56\x41\x2b\x3b\x2c\x1c\x84\x66\ +\x45\x81\x61\x42\x8d\x6c\x4b\x9d\x78\x54\x96\x73\x4f\x88\x68\x47\ +\x58\x43\x2c\x28\x1e\x13\x2d\x22\x15\x7c\x5f\x42\xa8\x82\x5b\x92\ +\x71\x4e\x94\x72\x4f\x90\x6f\x4d\xa2\x7d\x57\x7c\x5f\x41\x2f\x24\ +\x17\x3a\x2c\x1d\x23\x1a\x11\x24\x1c\x12\x28\x1e\x14\x34\x27\x19\ +\x3e\x2e\x1e\x45\x34\x22\x3d\x2e\x1e\x37\x2a\x1a\x42\x31\x20\x5f\ +\x47\x2e\x51\x3c\x27\x44\x33\x21\x3a\x2c\x1c\x39\x2b\x1b\x36\x29\ +\x1a\x34\x26\x19\x35\x27\x19\x29\x1f\x13\x25\x1c\x12\x2e\x23\x16\ +\x33\x26\x18\x33\x26\x18\x2d\x22\x16\x32\x26\x18\x2c\x21\x16\x26\ +\x1c\x12\x2c\x21\x15\x28\x1e\x13\x1e\x17\x0e\x20\x18\x0f\x26\x1c\ +\x12\x24\x1b\x11\x2a\x20\x14\x2c\x21\x15\x33\x26\x19\x31\x25\x18\ +\x30\x24\x17\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x38\x2a\x1b\x3e\ +\x2f\x1e\x35\x28\x19\x2b\x21\x15\x2b\x21\x15\x2d\x22\x16\x38\x29\ +\x1b\x2f\x23\x17\x33\x26\x18\x31\x25\x17\x32\x26\x18\x37\x2a\x1b\ +\x32\x25\x18\x30\x24\x17\x34\x27\x19\x34\x27\x19\x3b\x2c\x1d\x42\ +\x31\x20\x3a\x2c\x1c\x3f\x2f\x1e\x46\x35\x22\x45\x33\x21\x3c\x2d\ +\x1d\x38\x2a\x1b\x3c\x2d\x1d\x47\x35\x23\x43\x32\x20\x3e\x2e\x1e\ +\x38\x2a\x1a\x36\x29\x1a\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x3f\ +\x2f\x1e\x3d\x2e\x1d\x34\x28\x19\x37\x29\x1a\x35\x28\x19\x33\x27\ +\x19\x38\x2b\x1b\x40\x30\x1e\x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\ +\x34\x27\x19\x2a\x1f\x14\x3f\x30\x1f\x22\x1a\x11\x2c\x2d\x2c\x4d\ +\x4f\x4f\x45\x47\x47\x4d\x4e\x50\x77\x7a\x7c\x7e\x81\x84\x90\x91\ +\x94\x96\x98\x9c\x94\x96\x9a\x9c\x9e\xa2\xa1\xa2\xa6\x9f\xa1\xa5\ +\x9e\xa1\xa5\xa5\xa7\xac\xa3\xa5\xaa\xaa\xac\xaf\x95\x96\x9a\x5f\ +\x5f\x63\x80\x80\x81\xa6\xa6\xa7\xb1\xb1\xb1\xad\xad\xae\x00\x00\ +\x00\xe4\xdf\xde\xe4\xdf\xdd\xe4\xdf\xde\xe1\xdc\xdb\xda\xd7\xd6\ +\xd3\xce\xca\x73\x5e\x49\x07\x06\x04\x09\x06\x04\x40\x31\x20\x31\ +\x25\x18\x24\x1b\x11\x2e\x23\x16\x42\x32\x20\x34\x27\x19\x16\x11\ +\x0b\x2b\x20\x15\x2e\x23\x16\x37\x29\x1a\x30\x24\x17\x2f\x24\x17\ +\x31\x25\x17\x2f\x24\x16\x33\x26\x18\x2d\x22\x15\x33\x26\x19\x2f\ +\x23\x16\x25\x1c\x12\x26\x1d\x12\x23\x1a\x10\x24\x1b\x11\x2c\x21\ +\x15\x39\x2b\x1c\x52\x3d\x28\x3f\x30\x1f\x89\x69\x49\x8c\x6b\x48\ +\x88\x69\x47\x98\x75\x51\x8b\x6b\x4a\x8e\x6d\x4b\x5d\x47\x30\x25\ +\x1b\x11\x27\x1d\x12\x78\x5c\x40\xad\x86\x5e\x8a\x6a\x49\x91\x70\ +\x4d\x7c\x60\x42\x8e\x6d\x4c\x87\x68\x48\x3a\x2c\x1c\x3c\x2d\x1d\ +\x1e\x16\x0e\x1f\x18\x0f\x25\x1c\x12\x31\x25\x18\x33\x26\x18\x3c\ +\x2d\x1d\x38\x2b\x1b\x37\x29\x1a\x4a\x37\x24\x70\x55\x37\x56\x40\ +\x2a\x3e\x2e\x1e\x31\x25\x17\x30\x24\x17\x2e\x23\x16\x2e\x23\x17\ +\x2f\x23\x16\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x32\x26\x18\x33\ +\x26\x18\x2e\x22\x15\x33\x27\x19\x3e\x2e\x1e\x34\x27\x19\x35\x27\ +\x19\x2f\x23\x16\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x26\x1c\x12\ +\x28\x1e\x13\x2a\x1f\x14\x29\x1f\x13\x2c\x22\x15\x2a\x20\x14\x2f\ +\x23\x17\x31\x25\x18\x2d\x22\x16\x34\x27\x19\x39\x2b\x1b\x34\x27\ +\x19\x2f\x24\x17\x2c\x21\x15\x2f\x23\x16\x48\x36\x23\x37\x2a\x1b\ +\x38\x2a\x1b\x3b\x2c\x1c\x38\x2a\x1b\x39\x2b\x1b\x33\x26\x19\x2d\ +\x22\x16\x2d\x21\x15\x31\x24\x17\x35\x28\x1a\x3a\x2b\x1c\x3d\x2e\ +\x1e\x42\x31\x20\x4b\x38\x24\x47\x35\x23\x3e\x2e\x1e\x39\x2b\x1b\ +\x38\x2a\x1b\x41\x31\x20\x43\x33\x20\x44\x33\x21\x37\x29\x1a\x32\ +\x26\x18\x32\x26\x19\x3b\x2c\x1c\x3b\x2c\x1c\x41\x31\x1f\x41\x31\ +\x20\x3d\x2e\x1d\x3c\x2d\x1d\x36\x28\x1a\x31\x24\x17\x30\x24\x17\ +\x39\x2b\x1c\x39\x2b\x1b\x35\x28\x19\x31\x25\x17\x2e\x22\x16\x26\ +\x1d\x12\x32\x26\x19\x1f\x19\x12\x37\x39\x39\x4f\x52\x52\x2a\x2c\ +\x2c\x6b\x6e\x6f\x74\x76\x79\x84\x86\x89\x8e\x90\x94\x99\x9a\x9d\ +\x96\x99\x9d\x9f\xa2\xa6\x9f\xa2\xa6\x9d\xa0\xa4\x9d\xa1\xa5\xa4\ +\xa6\xaa\xa3\xa5\xa9\xa8\xa9\xad\xae\xaf\xb3\xa3\xa6\xa7\x70\x71\ +\x72\x7a\x7a\x7a\x9d\x9d\x9d\xb1\xb1\xb2\x00\x00\x00\xe6\xe1\xe0\ +\xe5\xe0\xde\xe4\xdf\xde\xe2\xde\xdd\xda\xd6\xd6\xd4\xce\xcb\x84\ +\x73\x61\x08\x06\x04\x04\x03\x02\x34\x27\x19\x2e\x22\x16\x29\x1f\ +\x14\x34\x27\x19\x43\x32\x20\x33\x26\x18\x11\x0d\x08\x29\x1f\x14\ +\x2a\x20\x14\x2d\x22\x15\x2f\x23\x17\x34\x27\x19\x37\x29\x1a\x35\ +\x28\x19\x35\x28\x19\x34\x27\x19\x36\x29\x1a\x2d\x22\x16\x29\x1f\ +\x14\x26\x1d\x12\x22\x1a\x10\x28\x1d\x13\x2e\x23\x16\x3b\x2c\x1d\ +\x52\x3e\x29\x3e\x2e\x1e\x81\x63\x44\x8c\x6b\x49\x92\x70\x4c\x99\ +\x76\x51\x89\x69\x48\x8a\x69\x48\x65\x4c\x34\x2a\x1f\x14\x23\x1a\ +\x10\x6d\x54\x3a\xa8\x82\x5b\x96\x73\x50\x8c\x6c\x4b\x98\x75\x52\ +\xa0\x7c\x56\x95\x73\x50\x36\x29\x1a\x42\x32\x21\x2a\x20\x14\x1e\ +\x17\x0e\x23\x1b\x11\x2d\x21\x15\x30\x24\x17\x38\x2a\x1b\x3a\x2c\ +\x1c\x38\x2a\x1b\x50\x3c\x27\x71\x55\x39\x54\x3f\x29\x44\x33\x21\ +\x35\x28\x19\x33\x26\x19\x3a\x2c\x1c\x34\x27\x19\x2d\x21\x15\x2a\ +\x20\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x2f\x23\x16\x2c\x21\ +\x15\x2f\x24\x17\x34\x27\x19\x30\x24\x17\x2b\x21\x14\x2a\x20\x14\ +\x25\x1d\x12\x20\x18\x0f\x22\x19\x10\x25\x1c\x12\x23\x1a\x11\x24\ +\x1b\x11\x22\x19\x10\x27\x1e\x13\x27\x1d\x13\x2c\x21\x15\x32\x26\ +\x18\x34\x27\x19\x35\x27\x19\x35\x28\x19\x32\x25\x19\x31\x25\x18\ +\x2d\x21\x15\x35\x28\x19\x3f\x2f\x1e\x3a\x2c\x1c\x3d\x2e\x1d\x40\ +\x30\x1f\x43\x32\x20\x3c\x2d\x1c\x3a\x2c\x1c\x34\x26\x19\x30\x23\ +\x17\x2e\x23\x16\x35\x28\x1a\x38\x2a\x1b\x3a\x2c\x1c\x42\x31\x20\ +\x44\x32\x20\x3f\x30\x1e\x3b\x2c\x1c\x33\x26\x19\x35\x28\x1a\x38\ +\x2a\x1b\x38\x2a\x1b\x3d\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2b\x21\ +\x15\x29\x1f\x14\x2e\x23\x16\x38\x2a\x1b\x37\x29\x1a\x46\x34\x21\ +\x3f\x30\x1f\x36\x29\x1a\x33\x26\x19\x31\x24\x18\x3c\x2d\x1d\x3b\ +\x2c\x1c\x38\x2a\x1b\x33\x27\x18\x33\x26\x18\x27\x1d\x12\x27\x1e\ +\x13\x29\x22\x1a\x3a\x3b\x3c\x3e\x40\x41\x3d\x3f\x3f\x69\x6c\x6d\ +\x75\x77\x7b\x83\x86\x88\x8f\x91\x93\x96\x97\x9b\x99\x9a\x9e\x9f\ +\xa1\xa5\x9e\xa0\xa3\xa0\xa3\xa6\xa4\xa7\xa9\xa3\xa6\xa8\xa5\xa7\ +\xaa\xa7\xa8\xab\xab\xac\xb0\xa8\xaa\xab\xb0\xb2\xb3\x80\x80\x81\ +\x76\x74\x75\x8f\x8d\x8f\x00\x00\x00\xe6\xe1\xe0\xe5\xe0\xdf\xe4\ +\xe0\xdf\xe2\xde\xdd\xdb\xd7\xd6\xd3\xcf\xcf\x94\x84\x72\x09\x07\ +\x05\x04\x03\x02\x2d\x22\x16\x30\x23\x17\x32\x26\x18\x35\x28\x1a\ +\x3a\x2b\x1c\x2f\x23\x16\x16\x11\x0a\x20\x18\x0f\x24\x1c\x12\x27\ +\x1e\x13\x2b\x20\x15\x33\x26\x18\x3c\x2d\x1d\x3b\x2c\x1c\x35\x28\ +\x1a\x36\x28\x1a\x2c\x21\x16\x28\x1e\x13\x26\x1c\x12\x2d\x21\x15\ +\x2a\x1f\x13\x22\x19\x10\x26\x1c\x12\x2c\x21\x15\x50\x3c\x28\x31\ +\x25\x18\x6b\x52\x38\x7f\x61\x41\x83\x64\x44\x94\x72\x4f\x85\x66\ +\x46\x87\x67\x46\x68\x4f\x35\x31\x24\x17\x28\x1e\x13\x55\x41\x2c\ +\x8e\x6e\x4c\xa1\x7d\x57\xa1\x7c\x57\x9a\x76\x53\x9f\x7b\x56\x96\ +\x73\x50\x35\x29\x1a\x44\x33\x22\x3f\x30\x1f\x2f\x24\x17\x2a\x20\ +\x14\x2d\x21\x15\x32\x26\x18\x2f\x23\x17\x38\x2b\x1b\x40\x30\x1f\ +\x59\x43\x2d\x7d\x5f\x40\x64\x4b\x32\x56\x40\x2a\x48\x36\x22\x4e\ +\x3b\x26\x52\x3d\x29\x3a\x2b\x1c\x30\x24\x17\x2c\x21\x15\x2c\x22\ +\x16\x29\x1f\x13\x2d\x22\x16\x27\x1e\x13\x2a\x1f\x14\x2e\x23\x17\ +\x2e\x23\x16\x30\x24\x17\x2f\x23\x16\x26\x1d\x13\x29\x1f\x14\x23\ +\x1a\x11\x23\x1a\x11\x1f\x17\x0f\x24\x1a\x11\x20\x18\x0f\x1e\x17\ +\x0f\x23\x1a\x11\x24\x1b\x11\x25\x1c\x12\x28\x1e\x14\x2f\x23\x16\ +\x38\x29\x1b\x39\x2b\x1c\x2f\x23\x16\x2f\x23\x16\x29\x1f\x14\x29\ +\x1f\x14\x2b\x20\x14\x37\x29\x1b\x3d\x2e\x1d\x37\x2a\x1b\x3a\x2c\ +\x1c\x3c\x2c\x1c\x41\x30\x1f\x36\x28\x1a\x36\x28\x1a\x2d\x22\x15\ +\x32\x25\x18\x37\x29\x1a\x32\x26\x18\x35\x28\x1a\x3a\x2b\x1c\x3e\ +\x2e\x1e\x35\x27\x19\x2c\x21\x15\x2c\x21\x15\x2c\x22\x15\x35\x28\ +\x19\x35\x28\x1a\x3b\x2c\x1d\x40\x30\x1f\x33\x27\x19\x2d\x21\x15\ +\x33\x26\x19\x30\x24\x17\x32\x26\x18\x3d\x2d\x1d\x3e\x2f\x1e\x3a\ +\x2b\x1b\x34\x27\x19\x33\x26\x19\x3c\x2d\x1d\x3f\x2f\x1e\x3b\x2c\ +\x1c\x37\x29\x1a\x3a\x2b\x1c\x3a\x2c\x1c\x36\x28\x1a\x3b\x30\x25\ +\x42\x42\x41\x21\x22\x23\x56\x58\x5a\x67\x69\x6b\x76\x79\x7c\x85\ +\x88\x8b\x8d\x8f\x91\x95\x96\x9b\x9b\x9c\x9f\x9f\xa1\xa3\x9e\xa1\ +\xa2\xa2\xa3\xa5\xaa\xab\xad\xa5\xa7\xa9\xa7\xa9\xaa\x9f\xa1\xa2\ +\xa6\xa7\xa9\xaa\xab\xad\xa7\xa9\xaa\xad\xaf\xb0\x92\x93\x95\x7a\ +\x7a\x7d\x00\x00\x00\xe6\xe0\xdd\xe7\xe2\xdf\xe6\xe1\xdf\xe3\xde\ +\xdd\xde\xda\xd9\xd5\xd1\xd1\xa6\x9b\x91\x0a\x09\x06\x02\x01\x00\ +\x25\x1c\x12\x2c\x21\x15\x3a\x2c\x1c\x3c\x2d\x1d\x30\x24\x17\x2e\ +\x22\x16\x19\x12\x0c\x24\x1a\x11\x23\x1a\x11\x29\x1f\x14\x2c\x21\ +\x15\x37\x29\x1a\x3f\x2f\x1e\x3d\x2e\x1e\x39\x2b\x1c\x33\x26\x19\ +\x2c\x22\x15\x29\x1f\x14\x24\x1b\x11\x32\x26\x18\x30\x23\x16\x1f\ +\x17\x0f\x27\x1e\x12\x22\x1a\x10\x49\x38\x25\x2f\x23\x16\x6b\x51\ +\x37\x8d\x6b\x49\x90\x6e\x4c\x93\x72\x4f\x82\x64\x45\x82\x64\x44\ +\x6f\x55\x39\x30\x24\x17\x2c\x21\x15\x5b\x45\x2f\x8b\x6b\x4b\x99\ +\x76\x52\xa7\x81\x5a\x89\x69\x49\xa2\x7d\x57\xa6\x81\x5b\x3b\x2c\ +\x1d\x3d\x2e\x1d\x41\x30\x20\x30\x24\x17\x28\x1e\x14\x2b\x20\x15\ +\x30\x25\x17\x2d\x22\x16\x3e\x2f\x1e\x41\x31\x1f\x49\x37\x23\x70\ +\x55\x39\x8a\x69\x47\x6a\x50\x35\x66\x4c\x32\x6d\x52\x36\x59\x43\ +\x2c\x36\x29\x1a\x2e\x22\x16\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\ +\x2c\x21\x15\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2c\x21\x15\x29\ +\x1f\x13\x2c\x21\x15\x2c\x21\x14\x31\x24\x17\x2c\x21\x15\x25\x1c\ +\x12\x22\x1a\x10\x26\x1c\x11\x25\x1b\x12\x28\x1e\x14\x26\x1c\x12\ +\x24\x1b\x11\x21\x19\x10\x25\x1b\x12\x2e\x22\x16\x32\x25\x18\x2e\ +\x22\x16\x2b\x20\x14\x31\x25\x17\x2d\x21\x16\x28\x1e\x13\x23\x1a\ +\x11\x2e\x21\x16\x33\x26\x19\x31\x25\x18\x39\x2a\x1b\x3a\x2b\x1c\ +\x39\x2a\x1c\x32\x25\x18\x33\x26\x18\x29\x1e\x14\x27\x1e\x13\x2d\ +\x22\x15\x28\x1e\x13\x2d\x22\x16\x37\x29\x1b\x3d\x2e\x1d\x35\x28\ +\x19\x33\x26\x18\x32\x26\x18\x34\x27\x19\x37\x29\x1a\x35\x27\x19\ +\x37\x29\x1a\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x42\x31\x20\x3b\ +\x2d\x1d\x35\x28\x1a\x3c\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1e\x3b\x2c\ +\x1c\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1c\x38\x2a\x1b\x38\x2a\x1b\ +\x3f\x2f\x1f\x3d\x2e\x1e\x35\x28\x19\x42\x36\x29\x3d\x3b\x39\x2a\ +\x2b\x2c\x5c\x5d\x61\x67\x69\x6c\x78\x7a\x7d\x81\x84\x87\x8b\x8e\ +\x91\x9b\x9c\xa0\x9f\x9f\xa2\xa0\xa3\xa4\xa0\xa3\xa4\xa4\xa6\xa7\ +\xa8\xa9\xaa\xa4\xa6\xa7\xa7\xa9\xaa\x9f\xa1\xa2\xa8\xaa\xab\xa8\ +\xaa\xab\xa7\xa7\xa8\xad\xae\xaf\xad\xaf\xb0\xa2\xa4\xa6\x00\x00\ +\x00\xbb\xb5\xb1\xc5\xbb\xb7\xcd\xc2\xbe\xd0\xc8\xc3\xd2\xca\xc8\ +\xcf\xca\xc8\xb0\xa0\x92\x0b\x09\x06\x01\x01\x00\x2b\x20\x15\x32\ +\x25\x18\x42\x31\x20\x43\x32\x20\x43\x32\x20\x3b\x2c\x1d\x21\x19\ +\x0f\x26\x1c\x12\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\x36\x29\x1a\ +\x3c\x2c\x1d\x3d\x2e\x1e\x40\x30\x1f\x41\x30\x1f\x3d\x2d\x1d\x37\ +\x29\x1b\x30\x24\x17\x3e\x2e\x1e\x30\x24\x17\x2d\x21\x15\x2c\x21\ +\x15\x28\x1f\x13\x48\x36\x24\x34\x27\x19\x67\x4f\x36\xaf\x88\x60\ +\xb0\x88\x60\xad\x86\x5e\xa3\x7f\x59\x9f\x7b\x56\x8a\x6a\x49\x51\ +\x3d\x29\x48\x36\x24\x71\x57\x3b\x96\x73\x50\x92\x70\x4e\x91\x6f\ +\x4d\x7d\x5f\x41\x83\x65\x44\x7f\x62\x43\x47\x35\x23\x31\x25\x17\ +\x31\x25\x17\x2b\x21\x15\x23\x1a\x11\x2c\x21\x15\x35\x27\x19\x34\ +\x26\x19\x40\x2f\x1e\x4a\x37\x24\x45\x34\x21\x4f\x3b\x26\x80\x62\ +\x42\x94\x71\x4d\x98\x74\x50\x98\x74\x4f\x7a\x5d\x3e\x45\x33\x21\ +\x2e\x22\x16\x2e\x23\x16\x2a\x20\x14\x30\x24\x17\x2e\x23\x16\x2a\ +\x1f\x14\x1e\x16\x0e\x24\x1b\x11\x24\x1b\x11\x30\x24\x17\x29\x1f\ +\x14\x2a\x20\x14\x2d\x22\x15\x28\x1f\x13\x2b\x20\x15\x31\x25\x18\ +\x2a\x1f\x14\x26\x1c\x12\x24\x1b\x11\x22\x1a\x11\x26\x1d\x12\x20\ +\x18\x0f\x24\x1b\x11\x30\x24\x17\x2f\x23\x17\x23\x1b\x11\x29\x20\ +\x14\x28\x1e\x13\x28\x1e\x14\x29\x1f\x13\x25\x1b\x12\x29\x1f\x13\ +\x2d\x21\x15\x32\x25\x18\x30\x25\x17\x3a\x2b\x1c\x3d\x2e\x1e\x35\ +\x28\x1a\x32\x25\x18\x2a\x1f\x15\x28\x1f\x13\x2a\x1f\x14\x24\x1b\ +\x12\x27\x1d\x12\x32\x26\x18\x3a\x2b\x1c\x39\x2a\x1b\x35\x28\x19\ +\x33\x26\x18\x3a\x2c\x1c\x3b\x2c\x1d\x39\x2b\x1b\x32\x25\x18\x35\ +\x27\x19\x40\x2f\x1f\x46\x35\x22\x43\x33\x21\x3a\x2c\x1c\x39\x2a\ +\x1b\x4d\x3b\x26\x4b\x38\x25\x3f\x2f\x1e\x36\x28\x1a\x3a\x2c\x1c\ +\x3c\x2d\x1d\x38\x2a\x1b\x3f\x30\x1f\x41\x31\x1f\x41\x31\x1f\x32\ +\x25\x17\x29\x1f\x13\x4d\x3d\x2d\x2c\x29\x25\x44\x45\x47\x58\x5a\ +\x5c\x67\x69\x6c\x78\x7a\x7d\x7e\x80\x84\x8f\x91\x95\x98\x9a\x9e\ +\x9c\x9e\x9f\x9e\xa0\xa2\xa4\xa5\xa7\xa7\xa9\xaa\xa3\xa5\xa6\xa5\ +\xa7\xa8\xa7\xa9\xaa\xa6\xa8\xa9\xad\xad\xaf\xa6\xa7\xa8\xa9\xaa\ +\xab\xa9\xab\xac\xaf\xb0\xb0\xab\xab\xad\x00\x00\x00\xc7\xc4\xbf\ +\xc2\xbd\xb8\xbe\xb8\xb3\xbb\xb5\xb1\xb5\xad\xa9\xb1\xa8\xa5\xa1\ +\x88\x71\x0c\x0a\x06\x03\x03\x02\x33\x27\x19\x41\x31\x20\x40\x30\ +\x1f\x3f\x2f\x1e\x46\x34\x22\x41\x30\x1f\x25\x1b\x12\x1e\x16\x0e\ +\x23\x1b\x11\x25\x1c\x11\x28\x1e\x14\x2c\x20\x15\x32\x25\x18\x3a\ +\x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x33\x26\x19\x30\x23\x17\x29\x1f\ +\x14\x3b\x2c\x1d\x30\x24\x18\x2d\x21\x15\x2c\x21\x15\x2c\x21\x15\ +\x39\x2b\x1c\x2e\x23\x16\x50\x3d\x29\x91\x70\x4e\x7d\x60\x42\x78\ +\x5d\x40\x70\x56\x3b\x66\x4e\x35\x58\x43\x2d\x49\x37\x24\x3f\x2f\ +\x1f\x42\x32\x21\x4f\x3c\x28\x4b\x39\x26\x3f\x2f\x20\x37\x29\x1b\ +\x37\x2a\x1b\x32\x26\x19\x2e\x23\x16\x2d\x21\x16\x3c\x2d\x1d\x32\ +\x25\x17\x30\x24\x17\x32\x25\x18\x3e\x2e\x1d\x3c\x2d\x1d\x40\x30\ +\x1f\x4d\x39\x25\x43\x32\x20\x38\x29\x1b\x4a\x37\x24\x66\x4d\x33\ +\x72\x57\x3a\x79\x5c\x3e\x6b\x51\x36\x43\x32\x20\x2c\x21\x15\x29\ +\x1e\x13\x27\x1e\x13\x26\x1d\x12\x2b\x20\x15\x2b\x20\x15\x1f\x16\ +\x0e\x1d\x16\x0e\x29\x1f\x14\x37\x29\x1a\x2b\x20\x15\x2b\x1f\x14\ +\x2f\x23\x16\x2e\x23\x16\x2c\x22\x15\x36\x28\x1a\x2a\x1f\x14\x24\ +\x1c\x11\x21\x19\x10\x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x26\x1c\ +\x12\x28\x1e\x13\x2b\x21\x15\x23\x1b\x11\x23\x1a\x11\x22\x19\x10\ +\x21\x19\x10\x28\x1e\x13\x22\x19\x10\x23\x1a\x11\x25\x1b\x11\x2a\ +\x1f\x14\x2b\x20\x14\x30\x24\x17\x38\x2a\x1b\x2c\x22\x15\x2b\x20\ +\x15\x2b\x20\x15\x2b\x20\x14\x28\x1e\x13\x25\x1c\x12\x26\x1c\x12\ +\x2c\x21\x15\x2f\x23\x16\x36\x28\x1a\x37\x29\x1a\x34\x27\x19\x37\ +\x29\x1a\x3a\x2c\x1c\x3c\x2e\x1d\x36\x28\x1a\x32\x25\x18\x37\x2a\ +\x1b\x44\x33\x21\x3c\x2e\x1e\x34\x26\x18\x34\x27\x19\x3a\x2c\x1c\ +\x44\x33\x21\x44\x33\x21\x3e\x2e\x1e\x3c\x2d\x1d\x40\x30\x1f\x40\ +\x30\x1f\x47\x35\x22\x46\x34\x21\x42\x31\x20\x36\x28\x1a\x32\x25\ +\x17\x57\x44\x30\x31\x2d\x28\x49\x4b\x4c\x58\x59\x5b\x67\x69\x6c\ +\x79\x7b\x7e\x83\x85\x89\x8b\x8e\x91\x94\x97\x9b\x9e\x9f\xa2\xa0\ +\xa2\xa5\xa3\xa4\xa7\xa6\xa7\xa9\x9d\x9f\xa0\xa1\xa3\xa4\xa7\xa9\ +\xaa\xaa\xac\xad\xab\xac\xad\xa4\xa5\xa6\xac\xab\xad\xae\xaf\xb0\ +\xad\xae\xaf\xac\xab\xae\x00\x00\x00\xe2\xde\xda\xe0\xdc\xd8\xdd\ +\xd8\xd5\xd8\xd4\xd0\xd0\xcc\xc8\xc8\xc2\xbf\xae\x98\x84\x13\x0f\ +\x0a\x02\x02\x01\x23\x1b\x11\x3a\x2c\x1d\x32\x26\x18\x3a\x2b\x1b\ +\x32\x25\x18\x3e\x2e\x1e\x27\x1d\x12\x16\x11\x0b\x1c\x15\x0e\x22\ +\x1a\x10\x25\x1c\x12\x26\x1d\x12\x33\x26\x19\x38\x2a\x1b\x2f\x23\ +\x17\x30\x24\x18\x2c\x20\x15\x2d\x22\x15\x2b\x20\x14\x36\x28\x1a\ +\x2e\x23\x16\x31\x25\x18\x34\x27\x19\x32\x26\x18\x40\x30\x1f\x2f\ +\x23\x16\x2b\x20\x15\x3d\x2d\x1e\x38\x2a\x1b\x35\x28\x1a\x2e\x23\ +\x16\x2f\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x3f\x30\x1f\x3f\x30\x1f\ +\x3e\x2f\x1f\x45\x34\x23\x3a\x2c\x1c\x2b\x21\x15\x32\x26\x18\x37\ +\x29\x1a\x39\x2a\x1b\x3a\x2c\x1c\x3c\x2e\x1e\x32\x26\x18\x35\x28\ +\x1a\x2f\x23\x16\x3b\x2c\x1d\x46\x34\x22\x40\x2f\x1f\x47\x34\x22\ +\x47\x35\x22\x35\x27\x19\x36\x28\x1a\x3d\x2d\x1d\x43\x32\x20\x48\ +\x37\x23\x49\x36\x23\x36\x29\x1a\x2a\x20\x15\x28\x1e\x14\x23\x1a\ +\x11\x1f\x17\x0f\x2b\x20\x15\x22\x1a\x10\x23\x1b\x11\x27\x1d\x13\ +\x32\x25\x18\x30\x24\x17\x24\x1b\x12\x28\x1e\x13\x27\x1d\x13\x2b\ +\x21\x14\x2f\x24\x17\x2c\x21\x15\x24\x1b\x11\x24\x1c\x11\x27\x1d\ +\x13\x1e\x16\x0e\x1b\x14\x0d\x22\x1a\x10\x23\x1a\x11\x20\x19\x10\ +\x21\x19\x10\x1f\x18\x0f\x1c\x15\x0e\x1b\x14\x0d\x20\x18\x10\x25\ +\x1c\x12\x27\x1e\x13\x24\x1b\x11\x27\x1d\x13\x2a\x1f\x14\x2d\x21\ +\x15\x35\x28\x1a\x36\x28\x1a\x2b\x20\x14\x2e\x23\x16\x30\x24\x17\ +\x32\x25\x18\x30\x24\x18\x2d\x22\x16\x2c\x21\x15\x2a\x20\x14\x2a\ +\x20\x14\x36\x29\x19\x36\x28\x19\x30\x24\x17\x35\x28\x19\x39\x2b\ +\x1c\x3d\x2e\x1d\x3b\x2c\x1c\x3f\x2f\x1e\x3c\x2d\x1d\x41\x30\x1f\ +\x3d\x2d\x1d\x35\x28\x1a\x37\x29\x1b\x31\x25\x18\x37\x2a\x1b\x4e\ +\x3b\x27\x3a\x2b\x1c\x3d\x2d\x1d\x3e\x2e\x1e\x41\x31\x20\x3b\x2c\ +\x1d\x34\x27\x19\x32\x25\x18\x31\x25\x18\x30\x24\x17\x4d\x3a\x27\ +\x3e\x3b\x36\x4b\x4c\x4d\x59\x5b\x5d\x6a\x6c\x6f\x78\x7a\x7d\x87\ +\x8a\x8d\x8e\x91\x94\x98\x9a\x9d\x9d\x9e\xa2\xa2\xa3\xa7\xa7\xa7\ +\xab\xa5\xa7\xab\xa8\xa9\xac\xa7\xa9\xaa\xa2\xa4\xa5\xa8\xa7\xa9\ +\xac\xad\xae\xac\xad\xae\xab\xaa\xac\xb1\xb0\xb2\xae\xae\xaf\xad\ +\xae\xb0\x00\x00\x00\xe7\xe2\xde\xe5\xe0\xdd\xe3\xde\xdb\xe1\xdd\ +\xda\xdd\xd8\xd5\xd6\xd1\xce\xca\xc1\xba\x1e\x18\x10\x02\x02\x00\ +\x19\x13\x0c\x37\x29\x1b\x2e\x23\x16\x39\x2b\x1b\x38\x2a\x1b\x43\ +\x32\x20\x24\x1b\x11\x12\x0e\x08\x1f\x17\x0f\x25\x1c\x11\x2a\x1f\ +\x14\x2d\x22\x15\x3f\x30\x1f\x3e\x2e\x1e\x30\x24\x18\x31\x25\x18\ +\x2f\x23\x17\x2b\x21\x15\x2c\x21\x15\x36\x29\x1a\x33\x27\x19\x35\ +\x27\x19\x3e\x2f\x1e\x4b\x38\x25\x59\x43\x2d\x72\x58\x3c\x63\x4c\ +\x33\x68\x50\x35\x54\x40\x2a\x68\x50\x36\x5e\x49\x31\x56\x42\x2c\ +\x48\x36\x23\x43\x32\x21\x34\x27\x1a\x2d\x22\x16\x2d\x22\x16\x31\ +\x25\x18\x30\x25\x17\x31\x25\x17\x30\x24\x17\x28\x1e\x13\x27\x1e\ +\x13\x32\x26\x18\x3a\x2b\x1c\x3b\x2d\x1d\x2c\x21\x15\x2c\x21\x15\ +\x33\x26\x19\x37\x29\x1a\x38\x2a\x1b\x44\x33\x20\x4c\x39\x25\x37\ +\x29\x1b\x3f\x2f\x1e\x3a\x2c\x1c\x36\x29\x1a\x39\x2b\x1c\x37\x28\ +\x1a\x2b\x21\x15\x2e\x23\x16\x2a\x20\x14\x22\x1a\x10\x22\x1a\x10\ +\x2a\x1f\x14\x28\x1f\x13\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x2b\ +\x20\x15\x30\x25\x18\x1f\x18\x0f\x29\x1e\x13\x28\x1e\x13\x2d\x21\ +\x15\x26\x1d\x12\x2a\x20\x14\x29\x1f\x14\x27\x1d\x13\x1b\x14\x0d\ +\x1a\x13\x0c\x23\x1b\x11\x25\x1c\x12\x23\x1a\x11\x21\x18\x10\x22\ +\x1a\x10\x20\x18\x0f\x26\x1d\x12\x24\x1b\x11\x24\x1c\x11\x26\x1c\ +\x12\x27\x1d\x12\x25\x1b\x11\x24\x1b\x11\x27\x1e\x12\x2e\x22\x16\ +\x26\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x22\x17\x30\x24\x17\x2f\ +\x24\x16\x34\x27\x19\x35\x28\x19\x2a\x20\x14\x27\x1d\x12\x28\x1e\ +\x13\x28\x1e\x14\x2a\x1f\x14\x2e\x22\x15\x30\x24\x17\x33\x27\x19\ +\x32\x25\x18\x3a\x2b\x1c\x34\x27\x19\x33\x26\x18\x32\x25\x18\x2b\ +\x21\x15\x31\x25\x18\x32\x25\x18\x37\x29\x1b\x3b\x2c\x1d\x31\x25\ +\x17\x3b\x2d\x1c\x3e\x2e\x1e\x42\x32\x20\x37\x29\x1b\x2b\x20\x14\ +\x32\x25\x18\x35\x28\x1a\x32\x25\x18\x48\x37\x27\x47\x44\x40\x4f\ +\x50\x51\x5c\x5e\x60\x6e\x70\x73\x79\x7c\x7e\x89\x8b\x8e\x91\x93\ +\x96\x9c\x9d\x9f\x9f\xa0\xa4\xa0\xa1\xa4\xa1\xa1\xa3\xa3\xa4\xa5\ +\xaa\xab\xad\xad\xac\xae\xa4\xa5\xa7\xab\xac\xae\xa7\xa6\xa8\xae\ +\xb0\xb1\xac\xaa\xac\xb0\xae\xb1\xae\xad\xaf\xae\xb0\xb1\x00\x00\ +\x00\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe1\xdd\xda\xdd\xd8\xd6\ +\xd8\xd3\xd0\xce\xc9\xc7\x2f\x28\x22\x01\x01\x00\x0e\x0a\x06\x25\ +\x1b\x12\x32\x25\x18\x41\x30\x20\x39\x2b\x1c\x3c\x2e\x1d\x27\x1e\ +\x13\x0e\x0b\x06\x1e\x17\x0f\x2c\x20\x15\x2d\x22\x15\x2e\x23\x16\ +\x30\x24\x17\x35\x28\x1a\x37\x29\x1b\x39\x2b\x1b\x32\x26\x18\x28\ +\x1e\x13\x20\x18\x0f\x2f\x23\x17\x33\x26\x19\x36\x28\x1a\x38\x2a\ +\x1b\x41\x31\x1f\x40\x30\x20\x42\x32\x20\x34\x27\x1a\x2d\x23\x16\ +\x2f\x24\x17\x39\x2c\x1d\x40\x30\x20\x3d\x2e\x1e\x2c\x21\x15\x1f\ +\x18\x0f\x1c\x15\x0e\x1f\x17\x0f\x1e\x17\x0e\x22\x19\x10\x2a\x1f\ +\x13\x2b\x20\x14\x1e\x17\x0e\x1e\x17\x0e\x2c\x21\x15\x31\x24\x17\ +\x37\x29\x1b\x34\x28\x19\x31\x25\x18\x27\x1d\x13\x2d\x22\x16\x2b\ +\x20\x14\x31\x25\x18\x3c\x2d\x1d\x3d\x2e\x1d\x3f\x30\x1e\x3e\x2f\ +\x1e\x39\x2b\x1c\x39\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x31\x25\x17\ +\x3b\x2c\x1c\x37\x2a\x1b\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x22\ +\x1a\x10\x25\x1c\x11\x2a\x20\x14\x2e\x22\x16\x26\x1c\x12\x2e\x23\ +\x17\x25\x1c\x12\x23\x1b\x10\x26\x1d\x12\x27\x1d\x13\x1f\x18\x10\ +\x22\x19\x10\x25\x1c\x12\x24\x1b\x11\x20\x18\x10\x1f\x18\x0f\x27\ +\x1e\x13\x30\x23\x16\x30\x24\x17\x31\x24\x17\x32\x25\x18\x31\x25\ +\x18\x2e\x23\x17\x2d\x22\x16\x2b\x21\x15\x28\x1f\x13\x25\x1b\x11\ +\x22\x1a\x10\x22\x1a\x11\x24\x1b\x11\x2b\x20\x15\x20\x18\x0f\x20\ +\x18\x0f\x23\x1b\x11\x2d\x22\x16\x36\x28\x1a\x38\x29\x1b\x3f\x2f\ +\x1e\x3d\x2d\x1d\x35\x28\x19\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\ +\x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x24\x17\x37\ +\x2a\x1b\x2f\x23\x16\x2e\x23\x16\x2d\x21\x15\x2d\x22\x16\x2d\x22\ +\x15\x2d\x22\x16\x2f\x23\x16\x2e\x23\x16\x30\x24\x17\x31\x25\x17\ +\x2c\x21\x15\x2f\x24\x17\x31\x25\x18\x30\x24\x17\x36\x29\x1a\x35\ +\x28\x19\x2c\x21\x15\x5d\x48\x31\x51\x4c\x46\x55\x56\x56\x61\x63\ +\x64\x70\x73\x74\x7c\x7e\x82\x88\x8a\x8c\x93\x94\x98\x9c\x9d\xa1\ +\x9e\x9f\xa3\xa1\xa2\xa6\x9d\x9e\xa2\xa3\xa4\xa8\xa9\xab\xad\xa9\ +\xab\xac\xa5\xa7\xa8\xa3\xa5\xa6\xa9\xa8\xaa\xa6\xa5\xa7\xad\xac\ +\xae\xb0\xb0\xb1\xac\xab\xad\xad\xad\xaf\x00\x00\x00\xe6\xe1\xde\ +\xe5\xe0\xdd\xe4\xdf\xdd\xe2\xde\xdb\xe0\xdb\xd8\xd9\xd4\xd1\xcf\ +\xca\xc7\x3c\x37\x31\x01\x01\x00\x0d\x0a\x06\x1e\x17\x0e\x32\x25\ +\x18\x46\x34\x22\x36\x29\x1a\x3f\x30\x1e\x2e\x23\x16\x0b\x09\x05\ +\x1e\x16\x0e\x28\x1e\x14\x32\x26\x18\x30\x24\x17\x33\x27\x19\x3f\ +\x2f\x1f\x41\x31\x1f\x39\x2a\x1b\x3a\x2c\x1c\x29\x1e\x13\x21\x18\ +\x10\x28\x1e\x13\x2c\x21\x15\x3c\x2d\x1d\x3e\x2f\x1e\x3e\x2f\x1e\ +\x3f\x2f\x1e\x41\x31\x1f\x2a\x1f\x14\x1f\x17\x0e\x20\x18\x10\x26\ +\x1d\x13\x2e\x22\x16\x34\x27\x19\x32\x25\x18\x27\x1d\x13\x27\x1e\ +\x13\x24\x1b\x11\x1e\x17\x0e\x1d\x16\x0e\x25\x1c\x11\x2a\x1f\x14\ +\x2c\x21\x15\x32\x26\x18\x2d\x21\x15\x31\x25\x17\x35\x28\x1a\x35\ +\x28\x19\x2f\x23\x17\x2b\x21\x15\x2f\x23\x16\x34\x27\x19\x37\x2a\ +\x1b\x3e\x2e\x1d\x42\x31\x1f\x42\x31\x20\x37\x2a\x1b\x3d\x2d\x1d\ +\x44\x32\x20\x42\x31\x20\x39\x2a\x1b\x2c\x22\x15\x2c\x21\x15\x2e\ +\x22\x16\x2a\x1f\x14\x27\x1d\x13\x26\x1c\x12\x20\x18\x0f\x21\x19\ +\x10\x23\x1b\x11\x29\x1e\x14\x23\x1b\x11\x26\x1c\x12\x1f\x17\x0f\ +\x1c\x15\x0d\x1b\x14\x0d\x21\x19\x10\x1b\x14\x0c\x1b\x14\x0d\x1e\ +\x17\x0f\x1f\x17\x0f\x1d\x16\x0e\x21\x19\x10\x2a\x20\x14\x31\x24\ +\x17\x35\x27\x19\x31\x25\x18\x2c\x21\x16\x34\x27\x19\x30\x24\x17\ +\x2e\x23\x16\x34\x27\x19\x2b\x20\x14\x35\x28\x19\x2e\x23\x16\x2e\ +\x22\x17\x26\x1c\x12\x24\x1c\x12\x21\x19\x0f\x19\x13\x0c\x23\x1b\ +\x11\x2a\x1f\x15\x2e\x23\x16\x32\x25\x18\x38\x29\x1b\x34\x27\x19\ +\x30\x24\x16\x27\x1d\x13\x23\x1b\x11\x29\x1e\x14\x2a\x20\x14\x29\ +\x1e\x14\x25\x1c\x11\x2b\x20\x14\x2f\x23\x16\x31\x25\x17\x34\x27\ +\x19\x31\x24\x17\x35\x27\x19\x36\x29\x1a\x3b\x2c\x1d\x37\x29\x1b\ +\x32\x26\x18\x2f\x23\x17\x32\x25\x17\x35\x27\x19\x32\x26\x18\x2e\ +\x23\x16\x37\x29\x1b\x35\x28\x1a\x37\x29\x1b\x35\x27\x19\x43\x34\ +\x22\x58\x47\x35\x54\x51\x4e\x58\x59\x5a\x66\x68\x68\x72\x75\x76\ +\x81\x84\x85\x8e\x91\x94\x99\x9b\x9d\x9f\xa1\xa3\x9f\xa0\xa4\xa2\ +\xa3\xa6\xa2\xa3\xa6\xa4\xa6\xa8\xa9\xab\xad\xac\xad\xae\xaa\xab\ +\xac\xab\xab\xad\xad\xad\xaf\xac\xab\xad\xaa\xa9\xab\xad\xad\xae\ +\xad\xad\xae\xb2\xb1\xb3\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\ +\xe0\xdd\xe3\xde\xdc\xe0\xdb\xd8\xd9\xd5\xd2\xd0\xcc\xc9\x3c\x34\ +\x2a\x01\x01\x00\x11\x0d\x08\x21\x18\x10\x41\x30\x1f\x46\x34\x22\ +\x31\x24\x17\x37\x29\x1b\x2d\x21\x15\x10\x0c\x07\x20\x18\x0f\x28\ +\x1e\x13\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x3a\x2b\x1c\x36\x28\ +\x1a\x33\x26\x19\x33\x26\x18\x2d\x21\x15\x29\x1f\x13\x25\x1c\x11\ +\x2f\x23\x16\x36\x28\x1a\x36\x29\x1a\x33\x26\x18\x3f\x2f\x1f\x46\ +\x34\x21\x39\x2a\x1b\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x26\x1c\ +\x12\x26\x1c\x12\x2e\x23\x16\x2f\x23\x16\x29\x1e\x13\x28\x1d\x13\ +\x1f\x17\x0f\x1f\x18\x0f\x24\x1c\x11\x2c\x20\x15\x30\x23\x17\x2d\ +\x23\x16\x32\x25\x18\x2b\x20\x14\x2b\x20\x14\x35\x28\x19\x3a\x2b\ +\x1c\x34\x27\x19\x3a\x2c\x1c\x38\x2b\x1b\x4a\x37\x24\x44\x33\x21\ +\x3b\x2c\x1c\x42\x32\x20\x4b\x37\x24\x43\x32\x20\x47\x35\x22\x43\ +\x32\x20\x34\x27\x19\x2b\x21\x14\x27\x1d\x12\x26\x1d\x12\x25\x1c\ +\x12\x29\x1f\x14\x24\x1b\x11\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\ +\x26\x1d\x13\x25\x1c\x12\x26\x1d\x13\x2a\x20\x15\x24\x1b\x11\x1c\ +\x15\x0e\x1a\x13\x0c\x16\x10\x0b\x13\x0e\x09\x17\x11\x0b\x1c\x15\ +\x0d\x20\x19\x10\x24\x1b\x11\x25\x1c\x11\x28\x1d\x13\x2a\x1f\x14\ +\x29\x1f\x13\x30\x23\x17\x34\x27\x19\x34\x27\x1a\x2e\x22\x16\x36\ +\x28\x19\x2e\x23\x17\x2a\x1e\x14\x2c\x21\x15\x2f\x23\x17\x32\x26\ +\x18\x2a\x20\x14\x28\x1f\x13\x1f\x18\x0f\x24\x1b\x12\x25\x1c\x12\ +\x2a\x20\x15\x2b\x21\x15\x28\x1e\x14\x24\x1c\x12\x22\x1b\x11\x27\ +\x1e\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x3b\x2c\x1d\x34\x27\ +\x19\x35\x27\x1a\x38\x2b\x1b\x40\x30\x1f\x35\x28\x1a\x32\x26\x18\ +\x2c\x21\x16\x30\x23\x17\x39\x2b\x1c\x38\x2a\x1b\x3f\x2f\x1e\x41\ +\x31\x20\x3f\x2f\x1e\x48\x35\x22\x34\x27\x19\x33\x27\x19\x44\x33\ +\x21\x36\x28\x1a\x2d\x21\x16\x33\x26\x19\x3f\x2f\x1f\x4e\x41\x34\ +\x58\x56\x56\x5e\x60\x61\x6c\x6e\x6f\x7a\x7d\x7e\x85\x88\x8a\x8f\ +\x92\x95\x99\x9b\x9c\x9e\x9f\xa4\xa5\xa7\xab\xa2\xa4\xa7\xa2\xa4\ +\xa6\xa8\xaa\xab\xaa\xac\xad\xad\xaf\xb0\xab\xac\xad\xa7\xa9\xaa\ +\xaa\xab\xac\xb1\xb0\xb2\xaa\xa9\xab\xae\xad\xaf\xa9\xa8\xaa\xb4\ +\xb3\xb5\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xdf\xe4\xe0\ +\xdd\xe1\xdc\xdc\xda\xd6\xd5\xd0\xc9\xc2\x40\x31\x21\x02\x01\x00\ +\x14\x0f\x0a\x24\x1b\x11\x3b\x2c\x1d\x50\x3c\x27\x30\x24\x17\x3d\ +\x2d\x1d\x30\x24\x17\x17\x11\x0b\x26\x1d\x12\x24\x1b\x11\x26\x1c\ +\x12\x2a\x20\x14\x2a\x20\x14\x32\x25\x18\x35\x27\x19\x35\x28\x19\ +\x34\x28\x19\x28\x1f\x13\x2e\x22\x16\x27\x1e\x13\x26\x1d\x12\x27\ +\x1e\x13\x24\x1b\x11\x30\x24\x17\x40\x31\x1f\x3b\x2c\x1c\x31\x24\ +\x18\x29\x1f\x14\x33\x26\x19\x35\x27\x1a\x28\x1e\x13\x23\x1b\x11\ +\x24\x1c\x11\x27\x1d\x12\x36\x28\x1a\x36\x29\x1a\x25\x1c\x12\x22\ +\x19\x10\x24\x1b\x11\x26\x1d\x12\x32\x25\x18\x2f\x23\x16\x3a\x2b\ +\x1c\x43\x32\x20\x37\x29\x1a\x41\x30\x1f\x38\x2a\x1b\x37\x29\x1a\ +\x3e\x2f\x1e\x3a\x2c\x1c\x42\x31\x20\x3f\x30\x1e\x49\x36\x23\x4a\ +\x37\x24\x41\x31\x20\x40\x30\x1f\x3c\x2d\x1d\x3e\x2f\x1e\x37\x29\ +\x1a\x33\x26\x18\x28\x1d\x12\x1d\x15\x0e\x1e\x16\x0f\x2a\x1f\x14\ +\x23\x1a\x11\x20\x18\x0f\x23\x1a\x11\x1c\x15\x0e\x1a\x14\x0d\x20\ +\x18\x0f\x25\x1c\x12\x30\x24\x17\x29\x20\x14\x29\x1e\x13\x27\x1e\ +\x13\x21\x19\x10\x17\x12\x0b\x19\x13\x0c\x1e\x16\x0e\x2c\x20\x15\ +\x2a\x20\x15\x28\x1f\x13\x2f\x23\x16\x2f\x23\x17\x2a\x1f\x14\x2f\ +\x23\x16\x33\x26\x19\x2b\x20\x14\x2f\x23\x17\x38\x2a\x1b\x2f\x23\ +\x17\x2a\x1f\x14\x29\x1f\x13\x35\x28\x1a\x37\x29\x1b\x35\x28\x1a\ +\x2d\x21\x16\x24\x1a\x12\x23\x1b\x11\x2c\x21\x15\x35\x28\x1a\x2f\ +\x23\x17\x28\x1e\x13\x25\x1c\x11\x22\x1a\x10\x24\x1b\x11\x25\x1c\ +\x12\x27\x1d\x13\x2b\x21\x14\x31\x25\x17\x31\x25\x18\x31\x25\x18\ +\x32\x25\x18\x30\x25\x18\x30\x24\x17\x2d\x22\x16\x2f\x23\x16\x2f\ +\x23\x17\x37\x29\x1b\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x45\x34\ +\x21\x39\x2a\x1b\x27\x1d\x12\x22\x1a\x10\x2a\x20\x15\x2a\x1f\x14\ +\x37\x29\x1b\x58\x43\x2d\x4d\x3b\x27\x62\x4b\x33\x64\x60\x5c\x6a\ +\x6c\x6f\x77\x7a\x7b\x7c\x7e\x7f\x8a\x8c\x90\x93\x95\x98\x99\x9b\ +\x9d\x9e\x9f\xa3\xa4\xa6\xaa\xa2\xa4\xa8\xa3\xa4\xa8\xa4\xa5\xa8\ +\xa8\xaa\xac\xaa\xac\xad\xac\xae\xaf\xa8\xaa\xab\xab\xad\xae\xa7\ +\xa8\xa9\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\xaf\xae\xb0\x00\x00\ +\x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\xe0\xde\xe4\xe0\xdd\xe0\xdc\xd9\ +\xda\xd7\xd3\xcc\xbf\xb3\x4e\x3b\x28\x02\x01\x00\x18\x12\x0b\x35\ +\x28\x1a\x38\x2a\x1b\x42\x32\x20\x39\x2a\x1c\x3d\x2e\x1e\x27\x1d\ +\x12\x18\x12\x0b\x18\x13\x0b\x1e\x17\x0e\x25\x1c\x11\x2b\x21\x14\ +\x2a\x1f\x14\x27\x1d\x12\x2f\x24\x17\x33\x26\x18\x2b\x20\x15\x23\ +\x1b\x11\x25\x1c\x11\x2a\x20\x14\x20\x18\x0f\x25\x1b\x11\x22\x19\ +\x10\x2b\x21\x15\x38\x2a\x1b\x3d\x2e\x1e\x33\x26\x18\x2a\x1f\x14\ +\x37\x2a\x1a\x30\x24\x17\x2b\x20\x15\x23\x1a\x11\x1e\x17\x0e\x24\ +\x1a\x11\x35\x28\x1a\x31\x25\x18\x1f\x17\x0f\x1a\x14\x0d\x1d\x15\ +\x0e\x21\x19\x10\x25\x1d\x12\x2d\x22\x16\x32\x26\x18\x41\x30\x1f\ +\x3b\x2c\x1c\x48\x35\x22\x41\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x32\ +\x25\x18\x33\x27\x19\x3e\x2f\x1e\x40\x30\x1e\x44\x34\x21\x40\x31\ +\x1f\x36\x28\x19\x34\x27\x19\x34\x26\x19\x2e\x22\x16\x2a\x1f\x14\ +\x1e\x16\x0e\x19\x13\x0c\x14\x0f\x09\x16\x11\x0a\x10\x0c\x08\x19\ +\x12\x0c\x23\x1a\x11\x18\x12\x0c\x16\x11\x0a\x1d\x16\x0e\x23\x1b\ +\x11\x35\x27\x19\x3d\x2d\x1d\x33\x27\x18\x27\x1d\x13\x24\x1b\x11\ +\x20\x18\x10\x18\x12\x0c\x1d\x16\x0e\x24\x1b\x11\x21\x19\x10\x1c\ +\x15\x0d\x28\x1e\x13\x2d\x22\x15\x2d\x22\x15\x3a\x2c\x1b\x35\x27\ +\x19\x37\x29\x1a\x35\x28\x19\x39\x2b\x1b\x34\x27\x19\x31\x25\x18\ +\x2d\x22\x15\x34\x27\x19\x33\x26\x19\x36\x28\x1a\x31\x25\x17\x36\ +\x29\x19\x33\x26\x18\x2d\x22\x16\x2b\x21\x15\x2d\x22\x15\x29\x1e\ +\x13\x24\x1a\x11\x26\x1d\x13\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\ +\x30\x25\x17\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x36\ +\x28\x1a\x3b\x2c\x1c\x34\x27\x19\x3c\x2d\x1d\x33\x26\x19\x36\x29\ +\x1a\x3a\x2b\x1c\x3b\x2c\x1d\x44\x33\x21\x4e\x3b\x26\x33\x26\x19\ +\x29\x1f\x14\x2c\x21\x15\x23\x1a\x10\x25\x1c\x12\x3e\x2f\x1f\x6a\ +\x51\x36\x4d\x3b\x27\x3e\x31\x24\x65\x64\x63\x74\x76\x79\x7f\x81\ +\x84\x86\x8a\x8c\x8d\x90\x93\x94\x97\x9a\x99\x9c\x9e\xa3\xa4\xa7\ +\xa2\xa3\xa7\xa4\xa5\xa9\xa6\xa7\xab\xa5\xa7\xaa\xa4\xa7\xa9\xae\ +\xb1\xb1\xac\xae\xaf\xa7\xa9\xaa\xa7\xa9\xaa\xaa\xab\xad\xab\xaa\ +\xac\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\x00\x00\x00\xe7\xe2\xe0\ +\xe6\xe1\xe0\xe5\xe1\xdf\xe4\xe0\xde\xe2\xdd\xda\xdb\xd7\xd4\xd3\ +\xcc\xc7\x63\x53\x42\x03\x02\x00\x0c\x08\x05\x2b\x21\x14\x38\x2a\ +\x1b\x48\x36\x23\x3d\x2e\x1d\x37\x2a\x1b\x32\x25\x18\x18\x12\x0b\ +\x1c\x15\x0d\x1c\x15\x0d\x23\x1a\x11\x28\x1e\x13\x29\x1e\x13\x2a\ +\x20\x14\x3a\x2c\x1b\x2d\x23\x16\x2b\x20\x15\x34\x27\x19\x36\x29\ +\x1a\x31\x25\x18\x30\x24\x17\x2a\x20\x14\x28\x1f\x14\x22\x1a\x10\ +\x2a\x1f\x14\x36\x28\x1a\x28\x1e\x13\x2a\x1f\x14\x32\x26\x18\x36\ +\x29\x19\x32\x26\x18\x2c\x22\x15\x29\x1f\x14\x26\x1d\x12\x2f\x24\ +\x17\x2b\x20\x15\x20\x18\x0f\x20\x18\x10\x1b\x14\x0d\x1f\x17\x0f\ +\x24\x1c\x12\x2a\x1f\x14\x31\x25\x17\x36\x28\x1a\x2e\x22\x16\x47\ +\x35\x22\x4c\x38\x26\x3e\x2f\x1e\x28\x1e\x14\x23\x1b\x11\x33\x26\ +\x19\x3d\x2e\x1d\x3a\x2c\x1c\x3d\x2e\x1e\x3b\x2c\x1d\x34\x27\x18\ +\x2b\x20\x14\x2f\x23\x16\x33\x26\x18\x2d\x22\x15\x29\x1e\x13\x22\ +\x1a\x10\x22\x1a\x11\x1b\x15\x0d\x1a\x13\x0c\x1e\x17\x0f\x2a\x20\ +\x14\x26\x1d\x13\x1f\x17\x0f\x23\x1b\x11\x32\x25\x18\x3e\x2e\x1e\ +\x3d\x2d\x1d\x37\x29\x1b\x2d\x22\x15\x2d\x21\x15\x27\x1d\x12\x1c\ +\x15\x0e\x1b\x14\x0d\x23\x1a\x11\x22\x19\x10\x23\x1a\x11\x2c\x21\ +\x15\x33\x26\x19\x35\x27\x1a\x34\x27\x19\x30\x24\x17\x34\x28\x1a\ +\x37\x29\x1b\x35\x28\x1a\x2f\x23\x17\x2c\x21\x15\x2c\x21\x16\x2e\ +\x22\x16\x32\x25\x18\x36\x29\x1a\x48\x36\x23\x3c\x2d\x1c\x35\x28\ +\x1a\x34\x27\x19\x28\x1e\x13\x2a\x20\x13\x2a\x20\x14\x2c\x22\x16\ +\x2d\x21\x15\x2e\x23\x16\x2d\x22\x16\x30\x24\x17\x39\x2b\x1c\x34\ +\x27\x19\x35\x28\x1a\x3b\x2d\x1c\x43\x32\x1f\x36\x28\x1a\x35\x28\ +\x1a\x37\x29\x1a\x3b\x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x31\x24\x17\ +\x2e\x22\x16\x2e\x22\x16\x27\x1d\x13\x1e\x17\x0e\x26\x1d\x12\x34\ +\x27\x19\x3e\x2e\x1f\x45\x34\x23\x53\x40\x2a\x54\x40\x2b\x32\x26\ +\x18\x4c\x44\x3d\x74\x75\x76\x82\x84\x87\x88\x8a\x8c\x8a\x8d\x90\ +\x95\x98\x9b\x93\x96\x9a\x9f\x9f\xa3\x9f\xa0\xa4\xa2\xa4\xa8\xa5\ +\xa7\xab\xa7\xa8\xac\xa8\xa9\xad\xa0\xa3\xa5\xad\xaf\xb0\xa8\xab\ +\xac\xa9\xab\xac\xa7\xa9\xaa\xaa\xac\xad\xac\xad\xae\xb0\xb0\xb2\ +\xb2\xb1\xb3\xb2\xb1\xb3\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xdf\xe5\ +\xe1\xdf\xe4\xdf\xde\xe3\xde\xdc\xdc\xd7\xd7\xd4\xd0\xcf\x74\x66\ +\x57\x08\x06\x03\x17\x12\x0b\x2f\x24\x16\x2b\x21\x15\x46\x35\x22\ +\x38\x2b\x1b\x2f\x23\x17\x32\x25\x18\x17\x11\x0b\x1a\x14\x0c\x22\ +\x19\x10\x21\x18\x10\x28\x1e\x13\x25\x1c\x12\x26\x1e\x13\x2a\x20\ +\x14\x25\x1b\x11\x28\x1d\x13\x29\x1e\x13\x2b\x21\x15\x30\x24\x17\ +\x2f\x24\x17\x33\x27\x19\x36\x29\x1a\x2c\x21\x15\x32\x26\x18\x33\ +\x26\x18\x2d\x22\x16\x26\x1d\x12\x2e\x22\x16\x2a\x1f\x14\x2d\x21\ +\x16\x36\x29\x1a\x2d\x22\x15\x23\x1a\x11\x27\x1d\x13\x22\x1a\x10\ +\x1f\x17\x0f\x1c\x15\x0d\x19\x13\x0b\x1f\x17\x0f\x1e\x16\x0e\x23\ +\x1b\x11\x26\x1c\x12\x2e\x22\x16\x2e\x22\x15\x40\x2f\x1e\x4a\x37\ +\x24\x3d\x2d\x1e\x2c\x21\x15\x24\x1b\x11\x2e\x22\x16\x36\x28\x1a\ +\x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1a\x31\x25\x18\x2b\x20\x15\x2a\ +\x1f\x14\x2b\x20\x14\x26\x1c\x13\x28\x1d\x13\x27\x1c\x12\x27\x1d\ +\x12\x21\x19\x10\x14\x10\x0a\x1c\x16\x0e\x21\x19\x10\x2c\x21\x15\ +\x31\x25\x18\x2a\x1f\x14\x30\x24\x17\x3c\x2d\x1d\x38\x2a\x1b\x3f\ +\x2e\x1e\x33\x26\x18\x2a\x1f\x14\x2e\x23\x16\x27\x1d\x12\x1d\x16\ +\x0e\x1b\x14\x0d\x1a\x14\x0d\x21\x19\x10\x28\x1d\x13\x2b\x20\x14\ +\x2f\x23\x16\x38\x2a\x1b\x3a\x2c\x1c\x37\x29\x1a\x30\x24\x17\x30\ +\x24\x17\x2f\x23\x17\x2d\x21\x15\x30\x23\x16\x2d\x22\x16\x3b\x2c\ +\x1d\x36\x29\x1a\x4a\x37\x24\x3b\x2d\x1d\x31\x25\x18\x2f\x23\x17\ +\x2b\x20\x15\x35\x28\x1a\x35\x27\x19\x2d\x21\x15\x30\x24\x17\x2e\ +\x22\x15\x30\x24\x17\x37\x29\x1a\x37\x2a\x1a\x30\x24\x17\x37\x29\ +\x1a\x3a\x2b\x1c\x33\x27\x19\x37\x29\x1a\x3e\x2e\x1e\x37\x29\x1a\ +\x38\x2a\x1b\x38\x29\x1a\x41\x30\x1f\x35\x28\x19\x26\x1d\x13\x26\ +\x1c\x12\x22\x1a\x11\x1e\x16\x0f\x37\x2a\x1c\x6f\x55\x39\x78\x5c\ +\x3e\x4d\x3a\x26\x5f\x48\x30\x71\x57\x3a\x6a\x5a\x4a\x7a\x77\x74\ +\x84\x87\x8a\x8f\x91\x95\x8c\x8f\x92\x93\x96\x99\x96\x9a\x9d\x9c\ +\x9f\xa2\x9f\xa1\xa4\x9d\x9f\xa3\xa3\xa4\xa8\xa4\xa6\xaa\xa8\xa9\ +\xac\xa7\xa9\xab\xa6\xa8\xaa\xaa\xac\xad\xa4\xa7\xa8\xaf\xb1\xb2\ +\xaa\xab\xac\xaa\xac\xad\xab\xab\xad\xaf\xb0\xb2\xae\xad\xaf\xb1\ +\xb0\xb2\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xde\xe5\xe1\xe0\xe4\xe0\ +\xde\xe3\xde\xdd\xdd\xd8\xd8\xd4\xd0\xcf\x84\x7e\x78\x03\x02\x01\ +\x21\x18\x10\x4c\x3a\x27\x3d\x2d\x1d\x41\x30\x1f\x39\x2b\x1c\x32\ +\x25\x18\x29\x1f\x14\x1f\x18\x0f\x23\x1b\x11\x27\x1e\x13\x22\x1a\ +\x10\x26\x1c\x12\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\ +\x27\x1e\x13\x27\x1e\x13\x28\x1e\x13\x32\x26\x18\x39\x2c\x1c\x3c\ +\x2d\x1d\x37\x2a\x1b\x37\x2a\x1a\x2b\x20\x15\x2e\x22\x15\x29\x1f\ +\x14\x20\x19\x0f\x1f\x18\x0f\x25\x1c\x11\x22\x1a\x10\x2a\x1f\x14\ +\x29\x1f\x14\x25\x1c\x12\x29\x1e\x13\x23\x1a\x11\x24\x1b\x11\x23\ +\x1a\x11\x1b\x15\x0d\x19\x13\x0c\x1e\x16\x0e\x22\x1a\x10\x27\x1d\ +\x12\x28\x1d\x13\x32\x25\x18\x34\x27\x18\x41\x31\x1f\x32\x26\x18\ +\x28\x1e\x13\x28\x1e\x13\x2c\x21\x15\x31\x25\x17\x35\x27\x19\x3a\ +\x2c\x1d\x38\x29\x1b\x30\x24\x17\x28\x1d\x13\x2c\x21\x15\x2d\x22\ +\x15\x2a\x1f\x13\x25\x1b\x11\x20\x17\x0f\x23\x1b\x11\x23\x1b\x11\ +\x18\x13\x0b\x21\x19\x0f\x20\x18\x0f\x27\x1d\x12\x29\x1f\x13\x22\ +\x19\x10\x29\x1f\x14\x2e\x23\x16\x32\x25\x18\x37\x29\x1a\x38\x2a\ +\x1c\x2a\x20\x14\x28\x1e\x13\x32\x25\x18\x30\x24\x17\x27\x1d\x13\ +\x24\x1b\x11\x28\x1e\x13\x2c\x21\x15\x32\x26\x17\x38\x2a\x1b\x3d\ +\x2d\x1d\x42\x31\x1f\x3c\x2e\x1d\x2f\x24\x17\x30\x24\x17\x2f\x23\ +\x16\x3f\x2f\x1f\x29\x1f\x14\x3a\x2b\x1b\x3f\x2f\x1e\x3a\x2b\x1c\ +\x58\x43\x2b\x51\x3d\x28\x47\x35\x23\x3b\x2d\x1d\x33\x27\x19\x32\ +\x26\x18\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x3b\x2b\x1c\x3e\x2e\ +\x1e\x40\x30\x1f\x45\x34\x21\x46\x35\x22\x40\x30\x20\x39\x2c\x1c\ +\x44\x33\x21\x3c\x2d\x1d\x30\x24\x17\x34\x27\x19\x2b\x20\x14\x2f\ +\x24\x17\x28\x1e\x13\x2e\x23\x18\x27\x1f\x15\x29\x21\x16\x33\x28\ +\x1b\x35\x29\x1b\x22\x19\x10\x24\x1c\x13\x32\x29\x1d\x4f\x3f\x2d\ +\x60\x4d\x38\x5e\x4e\x3e\x76\x6f\x68\x8c\x8d\x8f\x91\x93\x97\x91\ +\x94\x98\x91\x94\x98\xa1\xa4\xa5\x98\x9c\x9e\xa0\xa4\xa6\xa4\xa6\ +\xa7\xa2\xa4\xa7\xa2\xa3\xa7\xa2\xa3\xa7\xaa\xab\xae\xa8\xaa\xab\ +\xab\xad\xae\xa8\xaa\xab\xa5\xa6\xa7\xa9\xab\xac\xad\xae\xaf\xa9\ +\xab\xac\xac\xaa\xac\xb4\xb4\xb6\xac\xab\xad\xaf\xae\xb0\x00\x00\ +\x00\xe6\xe2\xe0\xe6\xe1\xe0\xe6\xe2\xe0\xe4\xe0\xdf\xe3\xde\xdd\ +\xdd\xd8\xd7\xd4\xd0\xcf\x8b\x80\x76\x05\x04\x02\x1e\x17\x0f\x74\ +\x58\x3c\x32\x26\x18\x40\x30\x1e\x36\x29\x1a\x38\x2a\x1b\x32\x25\ +\x18\x1b\x14\x0d\x1e\x17\x0f\x26\x1d\x12\x2e\x23\x16\x2c\x21\x15\ +\x2d\x22\x16\x2b\x21\x15\x26\x1d\x13\x24\x1a\x11\x23\x1a\x10\x20\ +\x18\x0f\x22\x19\x11\x27\x1e\x12\x2a\x20\x14\x25\x1b\x12\x25\x1c\ +\x11\x26\x1c\x13\x29\x20\x14\x33\x25\x18\x2d\x22\x16\x26\x1d\x12\ +\x2b\x20\x14\x2a\x20\x14\x30\x24\x17\x2e\x22\x16\x2d\x22\x15\x2c\ +\x21\x15\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\x22\x1a\ +\x11\x1d\x16\x0e\x19\x13\x0b\x1f\x17\x0f\x28\x1e\x13\x1f\x18\x0f\ +\x2c\x21\x15\x33\x26\x18\x34\x26\x19\x24\x1b\x11\x1d\x16\x0e\x24\ +\x1b\x11\x2a\x20\x14\x2c\x21\x15\x35\x28\x1a\x37\x2a\x1b\x31\x24\ +\x17\x35\x28\x1a\x27\x1d\x12\x28\x1e\x13\x2d\x22\x15\x27\x1e\x12\ +\x26\x1c\x12\x25\x1b\x11\x27\x1d\x13\x27\x1d\x13\x23\x1a\x11\x24\ +\x1b\x11\x21\x19\x10\x29\x1f\x14\x20\x19\x10\x22\x19\x10\x2b\x20\ +\x15\x31\x24\x17\x38\x2a\x1b\x3c\x2d\x1d\x35\x27\x19\x2f\x23\x16\ +\x2e\x23\x16\x33\x26\x18\x34\x26\x19\x31\x25\x18\x2d\x22\x16\x28\ +\x1e\x14\x2c\x20\x15\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x37\x29\ +\x1a\x36\x27\x1a\x2a\x20\x14\x24\x1b\x11\x30\x23\x17\x37\x2a\x1a\ +\x36\x28\x1a\x3f\x30\x1f\x48\x35\x23\x42\x32\x20\x5c\x45\x2d\x53\ +\x3f\x29\x40\x30\x1f\x34\x28\x19\x35\x28\x19\x2d\x22\x15\x28\x1e\ +\x13\x27\x1d\x13\x22\x1a\x11\x2f\x23\x17\x35\x28\x1a\x2e\x22\x16\ +\x2e\x23\x17\x2a\x20\x14\x2a\x1f\x14\x31\x27\x1b\x2e\x25\x19\x29\ +\x1f\x14\x2d\x22\x19\x31\x26\x1b\x2a\x22\x19\x3a\x33\x2b\x43\x3e\ +\x36\x39\x36\x31\x37\x35\x33\x52\x52\x50\x3a\x39\x37\x05\x04\x02\ +\x0c\x0b\x09\x40\x43\x44\x79\x7c\x7d\x5e\x61\x62\x6c\x6f\x72\x7e\ +\x81\x85\x5d\x60\x63\x7b\x7c\x80\x97\x99\x9c\x97\x98\x9c\x98\x9b\ +\x9f\xa2\xa5\xa8\x9d\x9f\xa1\xa4\xa6\xa9\xa5\xa6\xa8\xa3\xa4\xa8\ +\xa5\xa6\xaa\xa7\xa8\xab\xaa\xab\xaf\xa9\xab\xad\xaa\xac\xad\xab\ +\xac\xad\xa6\xa6\xa7\xa5\xa7\xa8\xad\xae\xaf\xad\xae\xaf\xae\xad\ +\xaf\xb3\xb2\xb4\xaf\xae\xaf\xad\xac\xae\x00\x00\x00\xe7\xe2\xe1\ +\xe6\xe2\xe1\xe7\xe2\xe1\xe5\xe1\xe0\xe3\xde\xdd\xde\xda\xd9\xd7\ +\xd3\xd2\x9c\x94\x8e\x05\x05\x03\x1a\x13\x0c\x5f\x49\x31\x33\x26\ +\x19\x34\x27\x19\x41\x32\x20\x46\x35\x22\x3a\x2c\x1d\x1d\x17\x0e\ +\x1c\x15\x0d\x24\x1b\x11\x24\x1b\x12\x30\x24\x17\x37\x29\x1a\x34\ +\x27\x19\x2c\x21\x15\x2e\x22\x16\x2f\x23\x17\x27\x1e\x12\x29\x1e\ +\x14\x2b\x20\x15\x2a\x1f\x14\x23\x1a\x11\x1e\x17\x0f\x21\x19\x10\ +\x2f\x23\x16\x2e\x22\x16\x2a\x20\x14\x27\x1e\x13\x2d\x21\x16\x2c\ +\x21\x15\x2f\x23\x16\x30\x25\x17\x2e\x23\x16\x28\x1e\x13\x22\x1a\ +\x11\x21\x19\x10\x1f\x18\x0f\x20\x18\x0f\x1f\x17\x10\x20\x18\x0f\ +\x1d\x16\x0e\x21\x18\x10\x21\x19\x10\x22\x1a\x10\x2b\x21\x15\x21\ +\x1a\x10\x1a\x14\x0d\x16\x11\x0b\x21\x19\x10\x22\x1a\x11\x29\x1f\ +\x14\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x33\x26\x18\x2e\x22\x16\ +\x2d\x21\x15\x32\x25\x18\x33\x26\x18\x32\x25\x17\x30\x25\x17\x31\ +\x25\x18\x36\x28\x1a\x34\x27\x19\x30\x24\x17\x2f\x23\x17\x24\x1a\ +\x12\x2c\x22\x15\x33\x26\x18\x33\x26\x18\x2c\x21\x15\x38\x2b\x1b\ +\x39\x2a\x1b\x3f\x2f\x1e\x36\x28\x1a\x2c\x21\x15\x33\x27\x18\x32\ +\x26\x18\x2f\x23\x17\x2d\x22\x15\x30\x23\x17\x2e\x22\x16\x2f\x24\ +\x17\x2d\x22\x15\x2e\x23\x16\x35\x27\x19\x35\x27\x19\x33\x27\x19\ +\x2f\x24\x16\x2f\x23\x16\x3a\x2b\x1c\x42\x31\x20\x3e\x2f\x1d\x39\ +\x2b\x1c\x32\x26\x18\x34\x27\x18\x3a\x2b\x1d\x2e\x24\x18\x2e\x25\ +\x1a\x2e\x25\x1b\x30\x27\x1d\x33\x2a\x1f\x33\x2b\x21\x34\x2b\x22\ +\x35\x2d\x23\x34\x2e\x26\x31\x2b\x24\x1d\x15\x0d\x36\x31\x2b\x28\ +\x25\x20\x3c\x3a\x37\x46\x48\x46\x37\x3a\x38\x0d\x0d\x0d\x10\x10\ +\x11\x35\x38\x3b\x4c\x4f\x53\x7b\x7e\x80\x83\x87\x88\x83\x87\x88\ +\x66\x6c\x6e\x55\x5a\x5a\x14\x14\x15\x00\x00\x00\x26\x28\x28\x7e\ +\x83\x85\x4c\x4f\x52\x56\x58\x5b\x91\x93\x95\x99\x9a\x9d\x88\x8a\ +\x8e\x67\x69\x6d\x7a\x7c\x80\x9e\xa0\xa4\xa0\xa2\xa6\x9f\xa3\xa6\ +\xa0\xa2\xa4\xa7\xa8\xaa\xa2\xa4\xa5\xa3\xa5\xa7\xa6\xa8\xaa\xa5\ +\xa6\xaa\xa5\xa7\xaa\xa7\xa9\xab\xad\xad\xaf\xac\xab\xad\xaf\xae\ +\xaf\xac\xab\xac\xab\xab\xad\xae\xae\xaf\xaf\xae\xaf\xac\xac\xad\ +\xb1\xb0\xb2\xaf\xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\ +\xe1\xe0\xe6\xe1\xe0\xe3\xde\xdd\xdf\xdb\xda\xd9\xd5\xd4\xaa\xa3\ +\x9e\x06\x05\x02\x13\x0e\x09\x51\x3e\x29\x34\x27\x19\x37\x2a\x1b\ +\x49\x37\x24\x37\x29\x1b\x3c\x2d\x1d\x2c\x21\x15\x2f\x23\x17\x3c\ +\x2c\x1d\x2e\x22\x16\x36\x28\x1a\x35\x27\x19\x41\x31\x1f\x3d\x2e\ +\x1e\x33\x26\x19\x40\x30\x1f\x2f\x24\x16\x23\x1a\x11\x2b\x20\x14\ +\x2a\x1f\x14\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x25\x1c\x12\x2f\ +\x23\x17\x2b\x20\x14\x2a\x1f\x14\x2e\x23\x17\x34\x27\x19\x35\x28\ +\x1a\x33\x26\x18\x2a\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\ +\x25\x1c\x12\x24\x1c\x11\x27\x1e\x13\x21\x18\x0f\x1f\x17\x0f\x22\ +\x1a\x10\x22\x1a\x10\x19\x12\x0c\x1f\x17\x0f\x21\x19\x10\x20\x18\ +\x0f\x1d\x16\x0e\x1f\x18\x0f\x2b\x21\x14\x34\x27\x19\x30\x24\x17\ +\x31\x25\x17\x37\x29\x1b\x38\x2a\x1b\x34\x27\x19\x39\x2b\x1b\x3a\ +\x2b\x1c\x36\x28\x1a\x38\x2a\x1b\x37\x29\x1b\x36\x29\x1a\x41\x31\ +\x1f\x3e\x2e\x1e\x38\x2a\x1b\x32\x26\x18\x33\x26\x18\x2e\x22\x16\ +\x4c\x3a\x25\x4f\x3b\x26\x32\x26\x18\x2e\x23\x17\x2f\x23\x17\x36\ +\x29\x1a\x37\x28\x1b\x2f\x24\x17\x38\x2a\x1b\x2f\x23\x16\x2b\x21\ +\x15\x2b\x20\x15\x28\x1f\x13\x28\x1e\x13\x25\x1c\x12\x26\x1d\x12\ +\x29\x1f\x14\x2c\x21\x17\x2b\x22\x17\x28\x20\x17\x30\x26\x1d\x38\ +\x2d\x21\x30\x28\x1f\x30\x29\x21\x35\x2e\x24\x33\x2d\x25\x35\x2e\ +\x29\x3d\x38\x32\x3f\x3d\x39\x42\x40\x3f\x48\x48\x48\x4d\x4e\x4f\ +\x53\x57\x59\x5b\x5e\x60\x63\x68\x6a\x6a\x71\x75\x6f\x75\x79\x72\ +\x78\x7a\x4e\x56\x59\x00\x00\x00\x16\x17\x19\x52\x55\x58\x7f\x83\ +\x85\x71\x76\x78\x33\x38\x3a\x0e\x10\x11\x01\x02\x02\x5a\x5c\x60\ +\x72\x76\x7b\x5a\x5e\x62\x87\x8a\x8d\x8a\x8e\x8f\x89\x8e\x8f\x51\ +\x55\x55\x00\x00\x00\x0a\x0b\x0b\x64\x66\x67\x9c\xa0\xa1\x5b\x5f\ +\x61\x3d\x3f\x43\x87\x88\x8b\x9c\x9d\x9e\x9f\xa0\xa2\x91\x93\x96\ +\x6d\x6f\x74\x6b\x6d\x70\xa6\xa8\xaa\xa3\xa5\xa7\xa4\xa4\xa6\xa7\ +\xa9\xab\xa3\xa5\xa6\x9e\x9f\xa2\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb2\ +\xb3\xa9\xab\xac\xad\xad\xaf\xab\xaa\xac\xb3\xb2\xb3\xab\xab\xac\ +\xad\xad\xb0\xb0\xaf\xb1\xaf\xae\xb0\xad\xac\xae\xb2\xb1\xb3\xaf\ +\xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\ +\xe0\xe4\xe0\xdf\xe0\xdb\xda\xd9\xd6\xd4\xb5\xad\xa6\x07\x05\x03\ +\x0a\x07\x04\x4e\x3c\x27\x3c\x2d\x1d\x35\x28\x19\x36\x29\x1a\x38\ +\x2a\x1b\x41\x30\x1f\x34\x28\x19\x37\x29\x1b\x3d\x2d\x1d\x28\x1e\ +\x13\x2e\x22\x16\x35\x28\x19\x38\x2a\x1a\x43\x32\x20\x3e\x2e\x1e\ +\x4c\x3a\x26\x38\x2a\x1b\x30\x25\x17\x2e\x22\x16\x2c\x22\x16\x2a\ +\x1e\x14\x29\x1f\x13\x31\x25\x17\x2b\x20\x15\x30\x24\x17\x33\x26\ +\x19\x32\x26\x18\x2d\x21\x16\x31\x24\x17\x38\x2a\x1b\x35\x28\x19\ +\x2a\x1f\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1d\x12\x27\x1e\x13\x26\ +\x1d\x12\x22\x1a\x10\x21\x18\x0f\x26\x1c\x12\x25\x1b\x12\x29\x1e\ +\x14\x24\x1b\x11\x23\x1b\x11\x24\x1b\x11\x1f\x18\x0f\x25\x1c\x12\ +\x2d\x22\x16\x2b\x21\x15\x31\x25\x17\x32\x26\x18\x36\x29\x1a\x38\ +\x29\x1b\x36\x28\x1a\x3c\x2d\x1d\x3e\x2f\x1e\x3b\x2d\x1c\x37\x29\ +\x1a\x36\x29\x1a\x34\x26\x19\x34\x27\x19\x32\x26\x18\x3c\x2d\x1d\ +\x3a\x2c\x1c\x40\x31\x1f\x3a\x2c\x1c\x3a\x2b\x1c\x39\x2b\x1c\x4b\ +\x39\x25\x36\x28\x1a\x23\x1b\x11\x21\x19\x0f\x1e\x17\x0f\x29\x1f\ +\x14\x2d\x24\x19\x2e\x26\x1b\x27\x21\x19\x2c\x25\x1d\x2d\x27\x1e\ +\x2c\x26\x20\x35\x2e\x26\x2a\x24\x1d\x1c\x14\x0d\x21\x1a\x14\x33\ +\x2f\x2b\x48\x44\x41\x4a\x4a\x49\x4d\x4f\x50\x50\x54\x56\x58\x5d\ +\x5f\x5f\x65\x67\x67\x6e\x6f\x6c\x73\x77\x6c\x73\x79\x70\x77\x7d\ +\x70\x77\x7c\x72\x79\x7f\x72\x79\x80\x71\x78\x7f\x75\x7b\x81\x73\ +\x79\x7d\x75\x7a\x7f\x77\x7e\x82\x77\x7d\x81\x7d\x83\x87\x23\x2c\ +\x2f\x35\x3c\x3f\x07\x06\x06\x64\x67\x69\x8a\x8e\x92\x76\x7a\x7e\ +\x48\x4e\x50\x28\x2d\x2e\x00\x01\x01\x60\x61\x65\x8e\x91\x96\x7a\ +\x7f\x82\x56\x59\x5f\x8a\x8d\x8f\x98\x9a\x9b\x22\x23\x24\x00\x00\ +\x00\x0f\x0f\x0f\x80\x82\x84\x8c\x8e\x8f\x64\x67\x68\x84\x87\x8a\ +\x67\x69\x6e\x7d\x7d\x80\xa0\x9f\xa2\x9d\x9e\x9f\x9e\x9f\xa1\x78\ +\x7a\x7c\x64\x65\x66\xac\xad\xad\xa8\xa7\xa8\xab\xaa\xac\xa3\xa3\ +\xa5\x80\x80\x83\x46\x45\x47\x33\x32\x32\x63\x63\x63\xa5\xa5\xa5\ +\xb2\xb2\xb2\xae\xae\xaf\xb2\xb1\xb2\xac\xac\xac\xae\xae\xaf\xb1\ +\xb0\xb1\xaf\xaf\xaf\xb1\xb1\xb1\xb1\xb0\xb1\xae\xae\xae\x00\x00\ +\x00\xdf\xd8\xd5\xdf\xd9\xd6\xdf\xd9\xd6\xe1\xdb\xd9\xdf\xdb\xda\ +\xdc\xd7\xd6\xd6\xcf\xcc\xbf\xb4\xac\x08\x06\x03\x0c\x0a\x06\x58\ +\x44\x2e\x5d\x47\x30\x3f\x2f\x1f\x33\x26\x18\x32\x25\x18\x43\x32\ +\x20\x39\x2b\x1c\x3a\x2c\x1d\x3d\x2e\x1e\x22\x1a\x10\x28\x1e\x13\ +\x2a\x20\x14\x2b\x20\x15\x48\x36\x23\x3e\x2f\x1e\x3d\x2e\x1d\x3a\ +\x2c\x1c\x39\x2b\x1c\x34\x27\x19\x2f\x24\x17\x2e\x22\x16\x32\x25\ +\x18\x35\x28\x19\x36\x28\x1a\x30\x24\x17\x30\x24\x17\x34\x27\x19\ +\x2f\x24\x17\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x2e\x22\x16\x33\ +\x26\x18\x38\x29\x1a\x34\x27\x19\x36\x28\x1a\x34\x27\x18\x2d\x22\ +\x15\x2f\x23\x17\x33\x26\x19\x34\x27\x1a\x36\x29\x1a\x2d\x22\x16\ +\x2c\x21\x15\x2f\x24\x16\x29\x1f\x13\x36\x29\x1a\x37\x29\x1a\x36\ +\x28\x1a\x3a\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1d\x33\x26\x19\x30\x24\ +\x17\x34\x27\x19\x2e\x23\x16\x2c\x22\x15\x2a\x20\x14\x2e\x22\x16\ +\x36\x28\x1a\x33\x26\x19\x2d\x21\x16\x36\x29\x1d\x37\x2c\x1f\x3a\ +\x2f\x22\x39\x2f\x23\x35\x2d\x24\x40\x36\x2c\x42\x39\x2e\x3c\x34\ +\x2d\x3c\x36\x2f\x3e\x39\x33\x3f\x3c\x38\x42\x41\x3f\x41\x41\x41\ +\x37\x3a\x3c\x3e\x41\x43\x53\x54\x56\x53\x57\x5a\x4e\x53\x56\x5e\ +\x64\x67\x41\x48\x4c\x01\x03\x04\x0f\x11\x14\x41\x48\x4f\x64\x6a\ +\x6e\x6f\x74\x78\x6f\x77\x7a\x71\x79\x7c\x6f\x78\x7b\x6d\x75\x79\ +\x70\x78\x7b\x73\x7b\x7f\x72\x7a\x7e\x71\x79\x7e\x74\x7c\x81\x76\ +\x7d\x84\x76\x7e\x84\x75\x7d\x82\x79\x7f\x84\x7c\x82\x87\x7e\x84\ +\x89\x7c\x84\x88\x7b\x82\x86\x79\x80\x84\x3f\x49\x50\x57\x5f\x61\ +\x05\x07\x08\x6b\x6f\x73\x8e\x92\x96\x86\x8a\x8e\x85\x8a\x8d\x42\ +\x47\x49\x0e\x11\x14\x72\x75\x77\x8f\x93\x95\x8f\x93\x95\x8b\x90\ +\x93\x56\x5a\x5d\x72\x73\x75\x00\x00\x00\x04\x04\x05\x40\x42\x44\ +\x6a\x6e\x71\x5d\x5f\x61\x64\x67\x69\xa5\xa8\xaa\xa1\xa2\xa5\x6c\ +\x6d\x72\x77\x78\x7c\x9f\x9f\xa0\xa0\xa2\xa3\x9e\xa0\xa1\x8b\x8d\ +\x8e\x58\x58\x59\xa8\xa7\xa8\xab\xaa\xac\xa5\xa4\xa7\x94\x94\x96\ +\x32\x32\x33\x00\x00\x00\x15\x15\x16\x3a\x3b\x3c\x8e\x8c\x8c\xb3\ +\xb1\xb2\xac\xab\xad\xaf\xae\xb0\xae\xaf\xaf\xb0\xb0\xb0\xad\xad\ +\xad\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb1\x00\x00\x00\xdd\xd7\xd2\ +\xdd\xd4\xd0\xdd\xd5\xd1\xdc\xd5\xd2\xda\xd3\xd1\xd7\xd1\xcf\xd1\ +\xcb\xc8\xc8\xbf\xbe\x0a\x08\x04\x07\x06\x04\x78\x5c\x3f\x94\x72\ +\x4f\x50\x3c\x28\x38\x29\x1a\x37\x2a\x1b\x40\x30\x1f\x36\x29\x1a\ +\x2a\x20\x15\x30\x24\x17\x25\x1c\x12\x24\x1b\x11\x27\x1d\x13\x29\ +\x1e\x14\x2c\x21\x15\x34\x26\x19\x3e\x2f\x1e\x46\x35\x22\x37\x29\ +\x1a\x38\x2a\x1b\x40\x30\x1f\x34\x27\x19\x41\x30\x20\x40\x30\x1f\ +\x3d\x2e\x1d\x34\x27\x19\x32\x25\x18\x35\x28\x19\x2f\x24\x17\x37\ +\x29\x1b\x37\x2a\x1a\x37\x29\x1b\x46\x34\x22\x4d\x39\x25\x52\x3d\ +\x27\x4d\x3a\x26\x45\x33\x21\x47\x35\x22\x43\x32\x21\x42\x32\x20\ +\x41\x31\x20\x3d\x2e\x1e\x3d\x2e\x1d\x38\x2a\x1b\x2f\x23\x16\x2c\ +\x22\x16\x29\x1f\x14\x2d\x22\x16\x26\x1d\x12\x29\x1f\x14\x2d\x21\ +\x16\x2d\x22\x15\x2c\x22\x18\x25\x1f\x16\x2a\x24\x1c\x31\x29\x22\ +\x33\x2d\x25\x35\x2f\x28\x3a\x35\x2f\x43\x3c\x35\x49\x43\x3a\x4c\ +\x45\x3f\x4d\x48\x44\x4c\x49\x47\x4e\x4d\x4c\x51\x53\x53\x56\x58\ +\x59\x5c\x5d\x5f\x62\x64\x67\x67\x6b\x6f\x6d\x72\x77\x70\x75\x7a\ +\x70\x74\x79\x72\x76\x7a\x6f\x76\x79\x5f\x66\x6c\x5b\x64\x6a\x59\ +\x61\x67\x60\x66\x6c\x6e\x72\x76\x56\x5b\x61\x58\x5d\x62\x5f\x65\ +\x6a\x2a\x32\x36\x28\x30\x35\x4c\x55\x5c\x61\x69\x6e\x71\x78\x7b\ +\x72\x79\x7d\x74\x7c\x80\x77\x80\x84\x73\x7c\x80\x77\x7f\x83\x76\ +\x7e\x83\x76\x7e\x82\x76\x7e\x83\x7a\x81\x88\x7b\x84\x8a\x79\x82\ +\x89\x7a\x81\x87\x7b\x80\x85\x80\x85\x8b\x80\x87\x8b\x7f\x85\x8a\ +\x7e\x84\x89\x80\x86\x8b\x7b\x80\x85\x30\x3b\x3f\x69\x71\x76\x85\ +\x89\x8d\x8c\x90\x94\x90\x94\x98\x83\x88\x8b\x58\x5e\x61\x65\x6a\ +\x6e\x5d\x63\x67\x84\x87\x8a\x94\x97\x9b\x96\x9a\x9d\x89\x8f\x93\ +\x1a\x1c\x1e\x00\x00\x00\x0d\x0f\x0f\x8f\x94\x97\x83\x87\x88\x40\ +\x43\x45\x70\x72\x74\x5d\x5d\x5f\x55\x55\x58\x9a\x9a\x9e\x71\x72\ +\x76\x75\x76\x79\xa2\xa2\xa3\xa4\xa5\xa6\x9d\x9f\xa0\x97\x99\x9b\ +\x61\x61\x63\x90\x8f\x90\xae\xb0\xb0\xa2\xa3\xa5\x4d\x4d\x4e\x00\ +\x00\x00\x42\x45\x46\x9c\xa0\xa1\x72\x72\x73\x8f\x8d\x8e\xab\xa9\ +\xab\xb2\xb1\xb2\xae\xae\xae\xb1\xb1\xb1\xae\xae\xae\xb0\xaf\xb0\ +\xb1\xb1\xb1\xb3\xb3\xb3\x00\x00\x00\xe4\xde\xdb\xe4\xdd\xd9\xe2\ +\xdb\xd8\xe2\xda\xd8\xdf\xd9\xd5\xdd\xd6\xd2\xd8\xd2\xce\xcd\xc0\ +\xb4\x10\x0d\x08\x07\x05\x03\x62\x4b\x33\x8c\x6c\x4a\x5a\x44\x2e\ +\x32\x26\x17\x34\x27\x19\x40\x30\x1f\x34\x27\x19\x2c\x21\x16\x3c\ +\x2e\x1e\x29\x1f\x13\x23\x1a\x10\x1f\x17\x0f\x24\x1b\x11\x2a\x1f\ +\x14\x32\x25\x18\x38\x2a\x1b\x3b\x2d\x1c\x40\x30\x1e\x3d\x2e\x1e\ +\x45\x34\x21\x40\x30\x1f\x45\x34\x21\x43\x32\x21\x44\x33\x21\x44\ +\x33\x21\x45\x34\x22\x42\x32\x20\x3e\x2e\x1e\x38\x2a\x1b\x3e\x2e\ +\x1e\x49\x38\x24\x4f\x3c\x27\x47\x35\x22\x45\x34\x22\x41\x32\x20\ +\x37\x29\x1a\x3a\x2b\x1c\x37\x2a\x1b\x3c\x2e\x1e\x33\x27\x19\x2c\ +\x22\x16\x2a\x21\x16\x34\x2a\x1e\x35\x2c\x22\x32\x2c\x25\x3a\x34\ +\x2d\x42\x3c\x35\x46\x41\x3b\x4c\x46\x41\x54\x4e\x49\x56\x52\x4e\ +\x58\x56\x53\x5f\x5c\x5b\x64\x62\x61\x69\x68\x67\x6e\x6e\x6d\x72\ +\x72\x72\x77\x78\x7a\x7c\x7f\x81\x7f\x81\x85\x7e\x81\x85\x7c\x7f\ +\x82\x7b\x7e\x81\x79\x7d\x81\x7b\x7e\x83\x7a\x7e\x83\x78\x7b\x81\ +\x78\x7c\x81\x78\x7c\x81\x76\x7c\x81\x76\x7c\x80\x74\x79\x7d\x74\ +\x7a\x7d\x6e\x73\x78\x58\x61\x68\x66\x6c\x70\x6c\x71\x76\x47\x4f\ +\x57\x1c\x24\x2a\x09\x12\x17\x19\x21\x27\x56\x5c\x61\x6d\x71\x75\ +\x67\x6e\x72\x56\x60\x64\x60\x69\x6d\x73\x7b\x7f\x78\x80\x84\x78\ +\x80\x84\x77\x80\x84\x75\x7e\x82\x79\x82\x86\x77\x80\x84\x78\x80\ +\x84\x79\x81\x86\x7c\x83\x89\x7c\x85\x8b\x7d\x85\x8d\x7f\x87\x8e\ +\x7e\x85\x8c\x7f\x85\x8b\x7e\x85\x8a\x80\x88\x8d\x80\x87\x8c\x82\ +\x88\x8d\x83\x89\x8d\x4c\x55\x5a\x8a\x8e\x93\x8b\x8f\x93\x8b\x8f\ +\x94\x8f\x93\x98\x8d\x91\x96\x8b\x8f\x93\x8c\x90\x94\x86\x8b\x8e\ +\x57\x5e\x62\x7e\x81\x86\x95\x9a\x9d\x89\x8d\x90\x03\x03\x03\x01\ +\x01\x01\x34\x36\x37\xa7\xac\xae\x84\x88\x89\x4b\x4f\x52\x6f\x73\ +\x76\x54\x57\x5a\x76\x79\x7e\x9c\x9f\xa3\xac\xad\xb1\x80\x81\x86\ +\x6a\x6b\x70\x9d\x9f\xa0\x9f\xa1\xa2\xa4\xa8\xab\xa3\xa6\xa7\x6b\ +\x6d\x6f\x7b\x7b\x7c\x92\x91\x93\x61\x61\x62\x45\x47\x47\x84\x89\ +\x88\x6a\x6f\x6f\x7e\x80\x80\x36\x36\x36\x99\x98\x98\xaf\xaf\xb0\ +\xb4\xb3\xb5\xb1\xb0\xb2\xac\xab\xac\xb3\xb2\xb3\xb0\xb0\xb1\xb3\ +\xb2\xb3\x00\x00\x00\xe1\xd7\xd2\xe1\xd8\xd3\xe0\xd8\xd4\xe1\xd9\ +\xd6\xe1\xd9\xd5\xe0\xd8\xd4\xdd\xd5\xd1\xd2\xc5\xb9\x1f\x19\x12\ +\x1c\x14\x0d\x72\x57\x3c\x72\x57\x3b\x67\x4f\x35\x40\x31\x20\x27\ +\x1d\x13\x3e\x2e\x1e\x2d\x21\x16\x28\x1e\x14\x4b\x39\x26\x37\x29\ +\x1a\x33\x26\x19\x2d\x22\x16\x2c\x21\x15\x36\x28\x1a\x3b\x2d\x1d\ +\x3a\x2c\x1c\x46\x35\x23\x46\x35\x22\x40\x30\x1f\x40\x30\x1f\x3f\ +\x2f\x1f\x36\x29\x1a\x34\x28\x19\x37\x29\x1a\x38\x2a\x1b\x3a\x2c\ +\x1c\x33\x26\x18\x2f\x23\x17\x27\x1d\x12\x31\x25\x1b\x44\x37\x29\ +\x45\x3a\x2d\x40\x38\x2f\x45\x3d\x35\x4a\x41\x3a\x4b\x44\x3d\x48\ +\x42\x3c\x3d\x3a\x36\x30\x2f\x2b\x18\x1a\x1b\x15\x16\x19\x2d\x2c\ +\x2d\x4c\x48\x47\x61\x5d\x5c\x6f\x6b\x6b\x7b\x79\x79\x84\x83\x83\ +\x8e\x8d\x8e\x92\x91\x93\x94\x93\x94\x93\x92\x94\x91\x90\x92\x92\ +\x91\x93\x90\x91\x92\x8e\x8f\x91\x8b\x8d\x8e\x87\x88\x89\x87\x8a\ +\x8c\x87\x8a\x8d\x83\x87\x8a\x81\x84\x87\x81\x84\x88\x7f\x85\x87\ +\x81\x85\x88\x7f\x82\x87\x7e\x82\x87\x7d\x81\x85\x7a\x7f\x84\x7a\ +\x7f\x84\x79\x7f\x85\x79\x7f\x85\x76\x7d\x81\x77\x7d\x80\x69\x70\ +\x74\x4f\x59\x60\x63\x69\x6e\x71\x75\x7a\x27\x2f\x36\x06\x09\x0d\ +\x37\x40\x47\x39\x42\x49\x3a\x41\x4a\x67\x6c\x72\x6e\x73\x76\x4b\ +\x56\x5c\x61\x6a\x71\x76\x7f\x83\x7c\x84\x88\x7b\x83\x87\x78\x80\ +\x85\x7b\x83\x87\x7d\x86\x8a\x7b\x84\x88\x78\x81\x85\x7d\x86\x8a\ +\x7f\x88\x8d\x7c\x85\x8b\x7d\x85\x8c\x7f\x87\x8d\x7e\x85\x8c\x7f\ +\x85\x8b\x7f\x84\x89\x82\x88\x8d\x84\x8a\x8f\x82\x88\x8d\x85\x8b\ +\x90\x87\x8d\x91\x8c\x91\x94\x8d\x91\x94\x8b\x8e\x92\x8a\x8f\x93\ +\x8e\x92\x96\x90\x95\x98\x91\x96\x99\x8e\x93\x96\x87\x8e\x91\x5b\ +\x62\x65\x89\x8f\x91\x4a\x4c\x4f\x00\x00\x00\x02\x03\x03\x43\x49\ +\x4a\x81\x85\x87\x74\x78\x7a\x78\x7c\x7e\x9c\xa0\xa1\x69\x6e\x71\ +\x78\x7c\x80\xa7\xa9\xad\xa2\xa3\xa6\xa7\xa9\xab\x90\x92\x96\x58\ +\x5a\x5f\x9d\x9e\xa0\xa9\xab\xad\xa0\xa4\xa5\xa5\xa8\xa9\x65\x66\ +\x67\x00\x00\x00\x00\x00\x00\x0c\x0c\x0c\x6b\x6d\x6c\xb7\xb9\xb7\ +\x49\x49\x4a\x00\x00\x00\x59\x59\x59\xa8\xa7\xa9\xb3\xb3\xb4\xab\ +\xaa\xab\xb3\xb2\xb3\xb0\xaf\xb0\xad\xac\xae\xb2\xb2\xb2\x00\x00\ +\x00\xd9\xcf\xca\xd8\xcf\xc7\xd9\xce\xc7\xd9\xcd\xc9\xd9\xce\xc9\ +\xda\xce\xcb\xda\xd0\xcd\xd7\xce\xca\x42\x34\x27\x30\x25\x18\x7d\ +\x5e\x40\x65\x4d\x34\x51\x3d\x29\x5d\x46\x2f\x3d\x2e\x1f\x38\x2a\ +\x1b\x2d\x23\x16\x33\x27\x19\x50\x3d\x28\x5d\x47\x2f\x5f\x48\x30\ +\x48\x36\x23\x41\x31\x20\x47\x36\x24\x41\x31\x1f\x3a\x2c\x1c\x3d\ +\x2e\x1e\x36\x29\x1a\x34\x29\x1d\x3a\x30\x25\x41\x37\x2c\x48\x3f\ +\x36\x51\x48\x40\x58\x50\x49\x62\x5a\x52\x6b\x63\x5d\x72\x6c\x65\ +\x79\x73\x6e\x7f\x7a\x75\x85\x80\x7c\x8a\x85\x81\x90\x8a\x87\x94\ +\x8f\x8d\x95\x8f\x8d\x94\x8f\x8d\x8b\x88\x86\x7b\x7b\x7a\x5e\x63\ +\x65\x30\x39\x41\x13\x1c\x25\x20\x26\x2d\x4d\x4c\x4f\x72\x6f\x71\ +\x82\x7f\x81\x8d\x8b\x8d\x92\x91\x93\x97\x97\x98\x98\x97\x9a\x9c\ +\x9b\x9e\x9b\x9a\x9d\x99\x98\x9b\x98\x97\x9c\x96\x97\x9b\x94\x96\ +\x98\x91\x93\x94\x8c\x8e\x8f\x8c\x8e\x8f\x8c\x8e\x8f\x8b\x8d\x8f\ +\x88\x8a\x8e\x85\x88\x8c\x83\x86\x8a\x83\x86\x8a\x81\x86\x89\x82\ +\x86\x89\x81\x86\x8a\x80\x85\x8a\x7c\x82\x87\x7d\x82\x87\x7b\x80\ +\x85\x7a\x7f\x84\x7d\x82\x87\x77\x7e\x82\x64\x6d\x71\x5e\x68\x6c\ +\x61\x6a\x6e\x5a\x62\x66\x11\x18\x1e\x16\x1a\x1d\x4c\x50\x54\x54\ +\x5a\x5f\x46\x4f\x58\x4b\x54\x5d\x4f\x58\x5f\x56\x5f\x65\x73\x79\ +\x80\x78\x81\x87\x7a\x82\x88\x7a\x82\x88\x7a\x82\x89\x7a\x83\x88\ +\x7a\x82\x87\x7d\x85\x8c\x7b\x82\x89\x7e\x85\x8c\x80\x87\x8e\x80\ +\x87\x8e\x7d\x84\x89\x7d\x84\x88\x80\x88\x8c\x80\x87\x8b\x81\x87\ +\x8c\x83\x89\x8e\x81\x87\x8c\x86\x8c\x90\x85\x8b\x8f\x8a\x8f\x93\ +\x8e\x91\x96\x8e\x92\x96\x90\x95\x99\x8f\x94\x97\x8f\x94\x97\x91\ +\x96\x99\x91\x96\x99\x8f\x94\x97\x8d\x92\x95\x8a\x8e\x92\x55\x59\ +\x5f\x0d\x0f\x0f\x00\x00\x00\x1f\x20\x21\xa2\xa7\xa8\x56\x5a\x5d\ +\x3b\x3e\x40\x99\x9d\x9f\x75\x78\x7b\x8f\x92\x96\x6f\x73\x79\x73\ +\x76\x7a\x9b\x9c\x9e\xa3\xa4\xa5\xaa\xac\xae\x9a\x9c\x9f\x58\x5b\ +\x5e\x98\x9a\x9b\xa9\xab\xac\xab\xaf\xae\x8a\x8c\x8d\x00\x00\x00\ +\x12\x13\x13\x5c\x5f\x5f\x57\x5b\x5a\x21\x22\x21\x0a\x0a\x0a\x00\ +\x00\x00\x26\x26\x28\xa6\xa7\xa7\xb1\xb2\xb3\xad\xad\xaf\xab\xaa\ +\xad\xad\xac\xae\xaa\xa9\xaa\xb0\xb0\xb0\x00\x00\x00\xb4\x9f\x93\ +\xba\xa5\x97\xc1\xa9\x9f\xc6\xae\xa6\xc8\xb1\xa7\xcc\xb7\xae\xce\ +\xbb\xb5\xcc\xbd\xb6\x7d\x67\x51\x35\x28\x1a\x3f\x2f\x1f\x4b\x38\ +\x25\x45\x33\x22\x58\x43\x2c\x5c\x45\x2e\x4d\x3b\x26\x3c\x2d\x1d\ +\x4f\x3d\x29\x57\x44\x30\x54\x42\x30\x61\x4f\x3f\x63\x57\x4a\x6b\ +\x60\x55\x75\x6a\x60\x78\x6f\x67\x7f\x77\x70\x88\x81\x7a\x8c\x86\ +\x81\x91\x8b\x86\x93\x8d\x87\x9b\x95\x90\xa7\xa0\x9b\xb2\xac\xa8\ +\xbb\xb5\xb2\xc2\xbb\xb7\xca\xc2\xc0\xce\xc7\xc5\xcd\xc7\xc3\xcc\ +\xc6\xc2\xc9\xc4\xc0\xc6\xc2\xc0\xc3\xbe\xbd\xbc\xb8\xb7\xb3\xae\ +\xad\xa8\xa4\xa3\x97\x95\x94\x7b\x7c\x7b\x52\x59\x5d\x25\x30\x39\ +\x16\x1f\x28\x33\x36\x3c\x61\x5e\x5f\x7e\x7b\x7d\x8d\x8a\x8c\x93\ +\x90\x92\x99\x97\x99\x9e\x9d\x9f\xa0\x9f\xa1\x9f\x9f\xa1\x9e\x9d\ +\x9f\x9c\x9b\x9d\x9d\x9c\xa0\x9d\x9c\xa0\x99\x99\x9b\x93\x95\x96\ +\x91\x92\x93\x8e\x8f\x91\x8e\x8f\x91\x8e\x90\x93\x8c\x8e\x92\x8a\ +\x8d\x91\x86\x89\x8d\x83\x88\x8b\x85\x89\x8e\x84\x88\x8c\x82\x87\ +\x8a\x82\x87\x8c\x80\x85\x8a\x7d\x82\x87\x7c\x81\x86\x7b\x81\x86\ +\x7b\x81\x86\x70\x78\x7c\x5e\x69\x6d\x6c\x75\x78\x6b\x75\x78\x40\ +\x48\x4f\x07\x0b\x0f\x21\x29\x2f\x28\x2f\x35\x4a\x51\x58\x63\x6a\ +\x72\x32\x3b\x47\x2c\x37\x41\x66\x6c\x72\x79\x80\x84\x7a\x81\x88\ +\x7a\x82\x87\x7a\x81\x87\x7c\x83\x8a\x7d\x87\x8b\x7c\x85\x89\x7c\ +\x85\x8b\x7c\x84\x8b\x7e\x86\x8b\x7e\x87\x8b\x7f\x87\x8d\x7f\x87\ +\x8d\x82\x89\x8e\x84\x8a\x8f\x84\x8a\x8f\x85\x8b\x90\x83\x89\x8e\ +\x84\x8a\x8f\x87\x8c\x91\x85\x8b\x90\x8c\x90\x95\x8a\x8e\x93\x8c\ +\x90\x95\x8f\x93\x97\x8f\x94\x97\x8d\x92\x95\x8f\x94\x97\x91\x96\ +\x99\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x95\x9a\x9e\x40\x46\x48\ +\x06\x07\x07\x63\x68\x6b\x9f\xa3\xa4\x7b\x7f\x82\x3d\x42\x45\x6c\ +\x70\x73\x4b\x4d\x51\x67\x69\x6e\xaa\xae\xb2\x74\x77\x7b\x79\x7c\ +\x80\x98\x9a\x9c\xa6\xa7\xaa\xa4\xa6\xa9\xa9\xac\xac\x61\x63\x66\ +\x8e\x8f\x91\x9e\xa0\xa0\x90\x93\x93\x2b\x2c\x2c\x33\x36\x36\x78\ +\x7e\x7d\xa3\xa7\xa5\x47\x49\x48\x34\x35\x37\x49\x4c\x4e\x68\x6c\ +\x6f\x72\x75\x79\xad\xae\xb0\xac\xab\xad\xb0\xaf\xb1\xb2\xb1\xb3\ +\xaf\xae\xaf\xb1\xb0\xb1\x00\x00\x00\x54\x56\x58\x5b\x59\x58\x62\ +\x5a\x59\x69\x5e\x5b\x73\x66\x5f\x7c\x71\x69\x81\x79\x73\x83\x79\ +\x72\x86\x75\x66\x5d\x4e\x40\x50\x44\x39\x58\x4b\x40\x5d\x50\x46\ +\x66\x58\x4d\x6b\x5e\x51\x6a\x5f\x55\x5f\x59\x51\x54\x50\x46\x58\ +\x4f\x45\x74\x64\x5a\x9f\x8f\x87\xb2\xab\xa6\xba\xb5\xb0\xc0\xba\ +\xb5\xc8\xc2\xbf\xcc\xc7\xc5\xcd\xc8\xc6\xcf\xc9\xc6\xcf\xc7\xc5\ +\xca\xc4\xc0\xcc\xc4\xc1\xd3\xcd\xc9\xd7\xd1\xce\xd7\xd1\xce\xd8\ +\xd1\xce\xd7\xd2\xcf\xd5\xd1\xce\xd5\xcf\xcc\xd3\xcd\xca\xd1\xc9\ +\xc7\xcc\xc6\xc4\xc7\xc2\xbf\xc0\xbc\xbb\xb6\xb1\xb0\xa6\xa3\xa0\ +\x93\x92\x8e\x72\x75\x74\x42\x49\x4f\x19\x24\x2c\x1b\x25\x2e\x48\ +\x47\x4d\x72\x6e\x70\x88\x85\x87\x93\x91\x93\x9b\x99\x9b\x9d\x9c\ +\x9e\xa1\xa0\xa2\xa1\xa0\xa2\xa2\xa1\xa3\xa1\xa0\xa4\xa0\x9f\xa3\ +\x9e\x9e\xa2\x9d\x9d\xa0\x99\x99\x9b\x95\x96\x98\x91\x93\x94\x91\ +\x93\x95\x91\x92\x96\x90\x92\x96\x8b\x8e\x92\x8a\x8d\x91\x87\x8a\ +\x8f\x86\x8a\x8f\x85\x89\x8e\x83\x88\x8c\x83\x89\x8d\x81\x87\x8c\ +\x80\x84\x89\x7d\x81\x85\x7c\x80\x83\x7b\x7f\x83\x7c\x81\x84\x68\ +\x70\x73\x55\x60\x64\x6b\x73\x76\x75\x7c\x7f\x45\x4f\x53\x03\x06\ +\x09\x23\x2b\x32\x22\x2a\x30\x52\x59\x61\x6c\x73\x7a\x35\x3f\x48\ +\x1e\x28\x31\x60\x66\x6c\x7b\x81\x85\x79\x81\x87\x7c\x85\x8c\x7b\ +\x84\x8a\x7c\x84\x8b\x7e\x86\x8d\x7d\x85\x8b\x7e\x87\x8e\x7e\x87\ +\x8d\x7e\x86\x8c\x7d\x86\x8c\x7f\x87\x8d\x82\x8b\x8f\x82\x8b\x8f\ +\x82\x8a\x8e\x83\x89\x8d\x83\x8a\x8e\x82\x88\x8d\x87\x8c\x91\x86\ +\x8a\x8f\x89\x8d\x92\x8e\x92\x97\x8a\x8e\x92\x8c\x90\x94\x8e\x92\ +\x96\x8f\x92\x97\x90\x95\x99\x93\x97\x9b\x92\x96\x99\x91\x96\x99\ +\x91\x96\x99\x94\x99\x9b\x93\x97\x9b\x97\x9d\xa1\x4e\x55\x58\x70\ +\x76\x7a\x8d\x90\x90\x4f\x53\x55\x97\x9a\x9d\x70\x75\x79\x76\x7c\ +\x80\x9b\x9e\xa2\x9e\xa0\xa4\xab\xad\xb1\x7e\x83\x86\x6d\x70\x72\ +\x91\x93\x94\xa7\xa9\xa9\xaa\xac\xad\xa7\xaa\xab\x6f\x71\x72\x3e\ +\x3d\x3d\x28\x27\x27\x31\x31\x31\x47\x49\x49\x9d\xa0\xa0\x74\x76\ +\x73\x29\x29\x26\x30\x31\x32\xa3\xa7\xaa\xb5\xba\xbb\xae\xb1\xb3\ +\xb0\xb0\xb2\xb4\xb3\xb5\xaf\xae\xb0\xb5\xb4\xb6\xb5\xb5\xb7\xb3\ +\xb1\xb4\x00\x00\x00\x83\x8b\x8b\x78\x80\x7f\x69\x75\x75\x64\x6f\ +\x70\x65\x6e\x6e\x67\x70\x6f\x66\x6f\x6e\x62\x6b\x6a\x63\x69\x68\ +\x63\x69\x65\x63\x67\x65\x65\x69\x68\x69\x6c\x6c\x69\x6e\x6e\x6c\ +\x71\x6f\x71\x78\x75\x75\x7d\x7a\x7d\x82\x7f\x8e\x8b\x88\xae\xa0\ +\x96\xca\xbc\xb4\xd2\xcb\xc8\xd4\xcd\xcb\xd4\xce\xca\xd5\xd0\xcd\ +\xd7\xd2\xcf\xd7\xd3\xd0\xd7\xd2\xce\xd5\xcc\xc8\xd3\xcc\xc7\xd7\ +\xd0\xcb\xde\xd7\xd3\xdf\xd8\xd5\xdd\xd8\xd5\xdd\xd8\xd5\xdc\xd7\ +\xd5\xdc\xd7\xd4\xdb\xd5\xd2\xd8\xd1\xce\xd6\xce\xce\xd0\xca\xc7\ +\xcb\xc4\xc3\xc3\xbe\xbd\xb6\xb1\xb0\xa5\xa2\xa0\x8a\x89\x88\x67\ +\x6a\x6b\x33\x3a\x40\x13\x1c\x24\x28\x2e\x36\x5c\x5a\x5e\x7e\x7a\ +\x7c\x8f\x8d\x8f\x9a\x97\x99\xa1\x9d\x9f\xa0\x9f\xa1\xa4\xa3\xa5\ +\xa4\xa3\xa5\xa3\xa2\xa5\xa3\xa2\xa6\xa0\xa0\xa4\x9e\x9f\xa2\x9b\ +\x9b\x9f\x98\x99\x9c\x94\x97\x97\x93\x95\x96\x91\x93\x95\x90\x92\ +\x96\x8f\x92\x96\x8c\x8f\x93\x88\x8c\x90\x87\x8a\x8f\x85\x89\x8e\ +\x84\x88\x8d\x83\x87\x8c\x82\x87\x8c\x81\x87\x8c\x80\x85\x8a\x7c\ +\x81\x85\x7c\x81\x85\x7d\x82\x86\x77\x7e\x81\x66\x6f\x72\x5d\x68\ +\x6c\x62\x6c\x70\x73\x79\x7d\x5c\x63\x68\x07\x0c\x11\x1a\x20\x25\ +\x28\x2f\x35\x4d\x55\x5c\x46\x50\x5a\x47\x53\x5c\x2b\x39\x41\x3e\ +\x49\x52\x71\x77\x7e\x7d\x84\x8a\x7b\x83\x89\x7e\x86\x8d\x7d\x85\ +\x8c\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\ +\x7d\x85\x8b\x7d\x86\x8c\x81\x89\x8e\x81\x88\x8d\x82\x89\x8e\x82\ +\x88\x8d\x84\x89\x8e\x88\x8e\x93\x89\x8d\x92\x86\x8b\x90\x89\x8d\ +\x92\x89\x8d\x92\x8d\x91\x96\x8c\x91\x95\x8c\x91\x95\x8f\x93\x97\ +\x95\x99\x9d\x94\x99\x9c\x8e\x93\x96\x90\x94\x98\x94\x99\x9c\x96\ +\x9a\x9d\x94\x97\x9b\x91\x94\x98\x9b\x9f\xa3\x69\x6d\x70\x66\x69\ +\x6b\x57\x5b\x5d\xa6\xaa\xab\x9d\xa0\xa4\x7a\x7f\x82\x6f\x73\x76\ +\x94\x95\x99\xa3\xa5\xa8\xab\xaf\xb0\x8f\x93\x95\x63\x66\x68\x8f\ +\x91\x92\xa8\xa9\xa9\xa9\xaa\xa9\xab\xad\xad\x24\x24\x25\x00\x00\ +\x00\x09\x0a\x0a\x38\x3a\x3b\x57\x58\x59\x48\x48\x46\x08\x08\x07\ +\x00\x00\x00\x7f\x80\x81\xb1\xb3\xb4\xad\xad\xae\xb4\xb3\xb5\xae\ +\xad\xaf\xb2\xb1\xb3\xb3\xb3\xb4\xb6\xb6\xb7\xb2\xb0\xb3\x00\x00\ +\x00\xdf\xd6\xd0\xdc\xd3\xcc\xd5\xcf\xc8\xd1\xcd\xc7\xd0\xcb\xc6\ +\xce\xc9\xc2\xca\xc7\xc2\xc6\xc3\xbf\xc4\xc1\xbc\xc3\xc0\xba\xc3\ +\xbf\xbb\xc3\xc0\xba\xc3\xbe\xb9\xc2\xbd\xb8\xc5\xc0\xbc\xc8\xc3\ +\xbd\xca\xc5\xc0\xcd\xc7\xc3\xd3\xca\xc4\xd7\xce\xc8\xdb\xd3\xcf\ +\xdc\xd6\xd2\xdc\xd5\xd3\xdc\xd6\xd1\xdc\xd6\xd2\xdb\xd4\xd1\xdc\ +\xd6\xd2\xdd\xd7\xd3\xd8\xd1\xcc\xd9\xd1\xcd\xde\xd7\xd2\xe3\xdd\ +\xd9\xe3\xdd\xda\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdd\xda\xde\xda\xd8\ +\xdc\xd8\xd6\xdb\xd6\xd3\xd7\xd2\xd1\xd2\xcc\xc9\xca\xc5\xc4\xc1\ +\xbc\xbc\xb5\xb0\xb0\x9f\x9c\x9d\x81\x82\x82\x53\x59\x5c\x22\x2b\ +\x32\x18\x1f\x28\x3c\x3f\x45\x6b\x68\x6b\x86\x82\x83\x95\x92\x93\ +\x9e\x9b\x9d\xa1\x9e\xa0\xa5\xa3\xa5\xa4\xa3\xa5\xa4\xa3\xa5\xa4\ +\xa3\xa6\xa3\xa3\xa7\xa1\xa2\xa5\x9b\x9c\x9f\x99\x9a\x9d\x97\x98\ +\x9b\x94\x95\x97\x92\x94\x95\x90\x92\x96\x92\x95\x99\x8f\x93\x97\ +\x8c\x8f\x94\x89\x8e\x93\x88\x8c\x90\x86\x8a\x8e\x87\x8b\x90\x84\ +\x88\x8d\x82\x87\x8c\x7f\x85\x8a\x7e\x84\x88\x7b\x81\x85\x7a\x80\ +\x83\x7c\x83\x86\x73\x79\x7d\x65\x6d\x72\x70\x77\x7b\x66\x6f\x74\ +\x67\x6e\x75\x61\x69\x6e\x0b\x12\x17\x0b\x0e\x13\x18\x1d\x20\x3b\ +\x42\x48\x36\x40\x4a\x59\x61\x68\x4b\x57\x5e\x3a\x48\x50\x5e\x66\ +\x6e\x78\x7d\x83\x7d\x83\x89\x7d\x84\x8b\x7e\x85\x8c\x7f\x87\x8e\ +\x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x87\x8f\x80\x87\x8e\x81\ +\x89\x91\x7f\x87\x8c\x81\x88\x8c\x85\x8b\x90\x80\x86\x8b\x82\x87\ +\x8c\x8b\x8f\x94\x89\x8d\x92\x88\x8c\x91\x8a\x8e\x94\x8c\x90\x95\ +\x8f\x93\x98\x90\x93\x99\x8d\x91\x96\x8d\x91\x96\x92\x96\x9b\x91\ +\x95\x99\x95\x99\x9c\x92\x97\x9a\x93\x97\x9a\x96\x99\x9d\x94\x96\ +\x9a\x96\x9a\x9d\x97\x9a\x9e\x96\x9a\x9d\x6f\x75\x76\x68\x6c\x6f\ +\x94\x97\x99\xa0\xa3\xa7\xa0\xa4\xa7\x80\x84\x88\x6d\x70\x75\x93\ +\x95\x98\xa6\xa9\xab\xa7\xaa\xac\x97\x99\x9c\x6c\x70\x73\x83\x86\ +\x85\xa7\xa8\xa7\x91\x92\x92\x40\x41\x41\x06\x06\x06\x5f\x62\x62\ +\xa1\xa3\xa3\x65\x65\x64\x1b\x1b\x1b\x24\x27\x27\x2d\x2f\x31\x6b\ +\x6d\x70\x95\x98\x99\xb0\xb1\xb1\xb3\xb2\xb4\xab\xac\xae\xb4\xb3\ +\xb5\xb3\xb2\xb4\xb1\xb0\xb2\xb2\xb1\xb3\x00\x00\x00\xe1\xd9\xd5\ +\xe2\xd9\xd5\xe2\xda\xd6\xe3\xdb\xd8\xe4\xdd\xd9\xe6\xdd\xd8\xe4\ +\xdb\xd7\xe5\xdd\xd9\xe4\xdc\xd8\xe4\xdd\xd8\xe3\xdc\xd8\xe3\xdc\ +\xd9\xe2\xdc\xd8\xe1\xd9\xd5\xe1\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd5\ +\xde\xd7\xd3\xde\xd5\xd2\xde\xd7\xd3\xdf\xd8\xd4\xde\xd8\xd4\xdf\ +\xd9\xd5\xdf\xd9\xd5\xe0\xda\xd5\xe0\xdb\xd7\xe0\xdb\xd6\xde\xd8\ +\xd3\xda\xd3\xcf\xdc\xd4\xd1\xe2\xdb\xd8\xe6\xe0\xdd\xe5\xe0\xdd\ +\xe4\xdf\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe0\xdb\xd9\xde\xd9\xd8\xdb\ +\xd5\xd3\xd6\xcf\xcd\xcf\xca\xc7\xc8\xc3\xc2\xbb\xb6\xb7\xae\xa9\ +\xaa\x95\x93\x94\x72\x75\x76\x42\x4a\x4f\x1b\x26\x2e\x23\x29\x32\ +\x4e\x4f\x55\x79\x75\x76\x8c\x86\x87\x98\x95\x95\x9f\x9d\x9e\xa2\ +\xa1\xa3\xa5\xa3\xa5\xa3\xa2\xa4\xa4\xa3\xa6\xa4\xa3\xa6\xa2\xa1\ +\xa3\xa1\xa0\xa4\x9d\x9f\xa2\x9b\x9c\xa0\x97\x98\x9c\x94\x95\x98\ +\x91\x93\x96\x8f\x92\x96\x90\x93\x97\x8f\x93\x97\x8a\x8e\x93\x8b\ +\x90\x93\x89\x8d\x92\x87\x8b\x90\x85\x8a\x8f\x83\x88\x8d\x82\x87\ +\x8c\x80\x86\x8b\x7d\x84\x88\x7b\x82\x86\x7b\x81\x85\x7b\x82\x85\ +\x74\x7b\x7f\x65\x6e\x73\x74\x7a\x7f\x73\x79\x7f\x61\x6a\x70\x59\ +\x61\x67\x0d\x15\x19\x05\x08\x0d\x09\x0c\x10\x1b\x1f\x23\x4d\x53\ +\x59\x62\x68\x6e\x44\x4d\x54\x44\x50\x57\x5e\x66\x6e\x69\x6f\x77\ +\x7d\x82\x88\x7c\x82\x89\x7d\x84\x8b\x80\x87\x8e\x80\x88\x8f\x7f\ +\x87\x8e\x7f\x87\x8f\x81\x88\x8f\x82\x89\x90\x82\x8b\x91\x81\x89\ +\x8f\x82\x88\x8d\x85\x8b\x90\x84\x8a\x8f\x85\x89\x8e\x8c\x90\x95\ +\x87\x8b\x90\x87\x8b\x90\x8a\x8e\x93\x8f\x93\x98\x8f\x93\x98\x90\ +\x94\x99\x8d\x91\x96\x8d\x91\x96\x8f\x93\x98\x91\x95\x99\x99\x9d\ +\xa1\x95\x99\x9d\x93\x97\x9b\x92\x96\x9a\x95\x98\x9c\x97\x99\x9e\ +\x9b\x9e\xa2\x98\x9c\x9f\xa4\xa7\xaa\x82\x86\x8a\x6e\x71\x76\x8e\ +\x90\x94\xa0\xa4\xa6\xa2\xa6\xa8\x88\x8c\x90\x70\x73\x79\x8b\x8e\ +\x91\xa5\xa7\xa8\xa6\xa8\xa9\xa7\xaa\xab\x73\x77\x78\x73\x76\x77\ +\x33\x33\x33\x21\x21\x21\x17\x18\x18\x91\x93\x92\x8c\x8d\x89\x75\ +\x75\x70\x3a\x3b\x3a\x72\x76\x77\xaf\xb5\xb7\x91\x97\x9b\x78\x7c\ +\x7f\x8c\x8d\x8e\xac\xad\xac\xb1\xb2\xb4\xb3\xb3\xb4\xb3\xb2\xb4\ +\xb4\xb4\xb6\xb6\xb5\xb6\x00\x00\x00\xdb\xd3\xd0\xda\xd3\xcf\xdb\ +\xd3\xd0\xdd\xd5\xd3\xde\xd7\xd4\xdf\xd7\xd3\xde\xd6\xd2\xdd\xd5\ +\xd2\xde\xd7\xd4\xdf\xd8\xd5\xdf\xd9\xd5\xdf\xd9\xd6\xdf\xd9\xd6\ +\xde\xd8\xd5\xdd\xd8\xd4\xde\xd7\xd3\xdd\xd6\xd3\xdd\xd6\xd3\xde\ +\xd7\xd4\xe0\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe0\xda\xd6\xe1\xdb\ +\xd7\xe2\xdc\xd7\xe3\xdd\xd8\xe2\xdc\xd7\xdd\xd6\xd1\xdb\xd4\xd0\ +\xe0\xd9\xd6\xe4\xdf\xdc\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xe0\xdd\xe4\ +\xdf\xdc\xe2\xdd\xdb\xe1\xdc\xda\xdf\xda\xd9\xdb\xd5\xd3\xd6\xce\ +\xcc\xd0\xc8\xc7\xc6\xc1\xc0\xb9\xb4\xb5\xa7\xa3\xa4\x8d\x8d\x8d\ +\x62\x67\x6b\x2f\x3a\x41\x17\x23\x2b\x2e\x34\x3c\x60\x5f\x62\x83\ +\x7f\x7f\x92\x8d\x8d\x9d\x9a\x9a\xa3\xa2\xa3\xa4\xa3\xa5\xa5\xa3\ +\xa5\xa5\xa4\xa5\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9f\x9f\xa1\ +\x9b\x9d\x9f\x98\x9a\x9d\x96\x97\x9b\x94\x96\x99\x90\x93\x97\x8f\ +\x92\x96\x8e\x91\x95\x8c\x90\x94\x89\x8c\x91\x8a\x8f\x93\x87\x8b\ +\x90\x88\x8c\x91\x84\x89\x8e\x83\x89\x8e\x83\x89\x8e\x80\x86\x8b\ +\x7d\x84\x88\x7c\x82\x87\x7c\x82\x87\x7b\x81\x85\x78\x7e\x83\x6c\ +\x74\x79\x69\x71\x77\x78\x7e\x83\x6a\x71\x76\x50\x59\x5f\x0d\x15\ +\x1b\x0e\x0f\x17\x14\x16\x1d\x08\x09\x0b\x45\x49\x4d\x57\x5e\x64\ +\x1d\x25\x2b\x42\x49\x4e\x73\x79\x7e\x67\x6d\x75\x6e\x74\x7b\x7c\ +\x82\x89\x80\x86\x8d\x7f\x86\x8e\x7f\x87\x8e\x80\x88\x8f\x7e\x86\ +\x8d\x80\x87\x8e\x81\x89\x8e\x80\x89\x8d\x82\x8b\x8f\x83\x8a\x8f\ +\x85\x8b\x90\x88\x8e\x93\x87\x8d\x92\x8c\x91\x96\x86\x8b\x90\x88\ +\x8d\x91\x8a\x8e\x93\x8e\x92\x97\x8f\x93\x97\x92\x96\x9b\x8c\x90\ +\x95\x8c\x90\x95\x8f\x94\x98\x92\x97\x9a\x94\x99\x9d\x95\x99\x9d\ +\x97\x9b\x9f\x96\x9a\x9e\x96\x99\x9d\x97\x9a\x9e\x9e\xa1\xa5\x9a\ +\x9d\xa1\xa0\xa3\xa6\xa2\xa6\xa8\x87\x8a\x8f\x74\x78\x7c\x8b\x8e\ +\x91\xa1\xa5\xa6\xa6\xa9\xac\x90\x93\x98\x78\x7b\x80\x82\x83\x87\ +\xa5\xa8\xa8\xa7\xaa\xa9\xa4\xa8\xa8\x7e\x82\x84\x00\x00\x00\x00\ +\x00\x00\x08\x07\x07\x4b\x4b\x4a\x7a\x7a\x75\x33\x32\x2f\x00\x00\ +\x00\x4f\x4f\x4f\xa9\xaa\xac\xaf\xb2\xb4\xa5\xa9\xab\x85\x87\x89\ +\x7f\x7f\x7f\xa7\xa7\xa7\xb6\xb6\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb3\ +\xb3\xb4\x00\x00\x00\xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe1\xdb\ +\xd8\xe1\xdb\xd9\xe0\xda\xd7\xe0\xda\xd7\xdf\xd9\xd7\xe1\xdb\xd8\ +\xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdc\xda\xe1\xdc\xda\xe1\ +\xdc\xd9\xe1\xda\xd7\xe0\xd9\xd5\xe2\xda\xd7\xe3\xdc\xd8\xe3\xdd\ +\xd9\xe3\xdd\xd9\xe3\xdc\xd9\xe3\xdc\xd8\xe2\xdc\xd7\xe1\xdb\xd6\ +\xe2\xdb\xd7\xe2\xdd\xd8\xdc\xd6\xd1\xdc\xd5\xd1\xe1\xdb\xd6\xe7\ +\xe1\xde\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe3\xde\ +\xdc\xe0\xdb\xd9\xde\xd9\xd7\xda\xd5\xd2\xd5\xce\xcb\xce\xc6\xc4\ +\xc1\xbc\xbb\xb5\xb1\xb1\x9d\x9b\x9c\x80\x81\x83\x50\x58\x5e\x1f\ +\x2b\x34\x19\x24\x2c\x42\x45\x4b\x6f\x6c\x6b\x88\x84\x82\x95\x91\ +\x90\x9f\x9d\x9d\xa2\xa1\xa3\xa5\xa3\xa5\xa6\xa4\xa6\xa4\xa3\xa5\ +\xa3\xa2\xa4\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9d\x9e\x98\x9a\x9c\x96\ +\x98\x9a\x95\x97\x9a\x91\x94\x98\x8f\x92\x96\x8d\x91\x95\x8c\x91\ +\x94\x8a\x8e\x93\x87\x8c\x91\x87\x8c\x91\x85\x8a\x8f\x87\x8c\x91\ +\x81\x87\x8c\x83\x89\x8e\x81\x88\x8d\x7f\x86\x8b\x7e\x85\x8a\x7d\ +\x85\x8a\x7d\x84\x89\x7b\x83\x86\x7b\x82\x86\x74\x7c\x80\x64\x6d\ +\x71\x6d\x74\x79\x75\x7a\x7f\x5d\x64\x6a\x0f\x16\x1b\x09\x0a\x0d\ +\x28\x2e\x36\x10\x16\x1a\x0c\x0d\x0f\x18\x1b\x1e\x01\x04\x07\x3e\ +\x42\x47\x7c\x7f\x84\x78\x7d\x84\x61\x68\x70\x6f\x74\x7c\x82\x88\ +\x8f\x7e\x84\x8c\x7e\x86\x8d\x81\x89\x90\x7f\x87\x8e\x80\x88\x8f\ +\x7f\x87\x8e\x82\x8a\x90\x86\x8e\x93\x85\x8c\x93\x85\x8b\x91\x88\ +\x8e\x93\x86\x8c\x91\x89\x8f\x94\x88\x8d\x92\x8a\x8f\x93\x8f\x93\ +\x98\x8f\x93\x98\x8e\x93\x98\x90\x95\x9a\x8b\x8f\x94\x8a\x8f\x93\ +\x91\x95\x9a\x92\x97\x9b\x93\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x97\ +\x9b\x9f\x99\x9c\xa0\x9c\x9f\xa3\x99\x9c\xa0\x9c\x9f\xa3\xa2\xa5\ +\xa9\xa0\xa3\xa7\x9f\xa3\xa6\x95\x99\x9c\x73\x76\x7b\x83\x86\x89\ +\xa0\xa3\xa5\xa4\xa8\xaa\x98\x9c\xa0\x7b\x7d\x83\x73\x74\x77\xa2\ +\xa5\xa5\xa4\xa6\xa6\xb1\xb4\xb5\x19\x1a\x1a\x00\x00\x00\x00\x00\ +\x00\x1d\x1e\x1d\x6a\x6b\x6a\x27\x29\x28\x00\x01\x01\x30\x31\x33\ +\x8a\x8a\x8c\xad\xae\xb0\xb1\xb3\xb4\xae\xb1\xb2\x91\x91\x92\x76\ +\x76\x76\x8c\x8a\x8d\xbd\xbc\xbe\xb0\xaf\xb0\xb4\xb3\xb5\x00\x00\ +\x00\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdc\xd8\xe2\xdc\xd8\ +\xe1\xdb\xd7\xe1\xdb\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdc\xd9\xe3\ +\xde\xdb\xe3\xde\xdb\xe1\xdc\xda\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\ +\xd8\xe0\xda\xd5\xe1\xda\xd6\xe2\xdb\xd7\xe2\xdc\xd7\xe3\xdc\xd9\ +\xe3\xdd\xda\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xdf\xdc\xe3\ +\xdd\xd8\xde\xd8\xd3\xde\xd7\xd4\xe3\xdd\xd8\xe7\xe1\xde\xe7\xe2\ +\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe2\xdd\xda\xde\xd9\xd7\ +\xdc\xd6\xd5\xd8\xd2\xcf\xd1\xca\xc7\xc9\xc2\xbe\xbf\xba\xb7\xaf\ +\xac\xac\x95\x94\x94\x70\x73\x76\x3d\x46\x4d\x19\x26\x2e\x22\x2c\ +\x34\x53\x54\x58\x7d\x78\x77\x8d\x89\x88\x9a\x96\x95\xa2\x9f\xa0\ +\xa5\xa3\xa5\xa5\xa4\xa6\xa4\xa3\xa5\xa4\xa3\xa5\xa2\xa1\xa3\xa1\ +\xa0\xa2\xa0\xa0\xa2\x9b\x9c\x9d\x99\x99\x9b\x94\x96\x97\x92\x94\ +\x96\x91\x93\x97\x90\x94\x98\x8d\x91\x95\x8c\x91\x95\x8a\x8f\x93\ +\x87\x8c\x91\x85\x8b\x90\x86\x8b\x90\x82\x88\x8d\x82\x88\x8d\x82\ +\x89\x8e\x80\x88\x8e\x7e\x85\x8b\x7c\x84\x89\x7c\x85\x8a\x7c\x83\ +\x88\x7b\x82\x86\x7a\x83\x87\x78\x81\x85\x6b\x74\x78\x63\x6b\x70\ +\x72\x77\x7c\x73\x77\x7d\x28\x31\x36\x06\x06\x07\x49\x4e\x54\x4f\ +\x57\x5d\x0c\x13\x18\x00\x00\x03\x1d\x22\x27\x4e\x54\x5b\x71\x76\ +\x7b\x82\x86\x8c\x72\x78\x80\x60\x67\x6f\x76\x7d\x84\x7f\x85\x8b\ +\x7f\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x8e\x80\x88\x8e\x84\ +\x8b\x91\x86\x8d\x93\x86\x8d\x94\x85\x8c\x92\x86\x8c\x93\x87\x8d\ +\x92\x87\x8d\x93\x8b\x8f\x95\x8c\x91\x96\x90\x94\x99\x90\x94\x99\ +\x8f\x94\x99\x8f\x94\x99\x8e\x92\x97\x8e\x92\x97\x92\x96\x9b\x94\ +\x98\x9d\x93\x97\x9c\x93\x97\x9b\x92\x96\x9a\x96\x99\x9d\x97\x9a\ +\x9e\x9b\x9e\xa2\x98\x9b\x9f\x9c\x9f\xa3\xa1\xa4\xa8\xa1\xa4\xa8\ +\xa0\xa3\xa6\xa2\xa6\xa9\x95\x98\x9c\x77\x7b\x7f\x7e\x80\x84\x9e\ +\xa0\xa3\xa4\xa7\xaa\xa0\xa3\xa6\x82\x84\x88\x6e\x70\x74\x99\x9c\ +\x9c\xae\xb0\xb0\x72\x75\x75\x00\x00\x00\x00\x00\x00\x19\x1a\x1a\ +\x83\x87\x86\x92\x98\x95\x7c\x81\x81\x88\x8c\x8d\x7d\x7d\x81\x81\ +\x82\x86\xb1\xb2\xb3\xac\xac\xad\xb0\xb1\xb1\x9e\x9e\x9e\x80\x81\ +\x81\x78\x78\x7a\xb1\xb0\xb2\xb8\xb7\xb9\x00\x00\x00\xde\xd7\xd5\ +\xdd\xd7\xd4\xde\xd8\xd6\xde\xd8\xd5\xdd\xd8\xd4\xdd\xd7\xd4\xde\ +\xd7\xd3\xde\xd7\xd3\xdf\xd8\xd5\xe0\xd9\xd6\xe1\xdc\xda\xe1\xdc\ +\xda\xe0\xdb\xd9\xe0\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd7\ +\xe1\xdb\xd8\xe3\xdc\xd9\xe4\xde\xdb\xe4\xdf\xdc\xe5\xdf\xdc\xe5\ +\xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe8\xe3\xe0\xe5\xdf\xdc\xe1\xdb\ +\xd7\xe2\xdb\xd8\xe6\xe0\xdc\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ +\xe5\xe0\xdd\xe3\xde\xdb\xe0\xdb\xd8\xdd\xd8\xd7\xda\xd5\xd4\xd5\ +\xce\xcc\xd0\xc9\xc6\xc7\xbf\xbc\xb9\xb4\xb1\xa5\xa3\xa3\x89\x8a\ +\x8a\x5e\x64\x68\x2c\x37\x3e\x19\x25\x2c\x32\x39\x3f\x65\x63\x66\ +\x85\x82\x83\x94\x91\x92\x9d\x9b\x9c\xa2\x9f\xa2\xa6\xa5\xa6\xa6\ +\xa5\xa7\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\xa4\xa3\xa2\xa4\x9f\xa0\ +\xa1\x9b\x9d\x9e\x98\x99\x9a\x93\x95\x96\x91\x93\x94\x91\x94\x95\ +\x8f\x93\x96\x8c\x91\x94\x8c\x90\x95\x89\x8d\x92\x88\x8c\x91\x85\ +\x89\x8e\x84\x89\x8f\x82\x88\x8e\x82\x89\x8e\x80\x87\x8e\x7d\x86\ +\x8c\x7e\x86\x8b\x7e\x85\x8a\x7c\x85\x8a\x7a\x81\x85\x79\x81\x85\ +\x79\x82\x87\x79\x82\x86\x74\x7d\x81\x67\x71\x75\x62\x6b\x6f\x70\ +\x76\x7a\x2c\x36\x3a\x05\x06\x07\x4e\x53\x57\x79\x7e\x82\x4c\x56\ +\x5c\x38\x42\x49\x61\x65\x6b\x6c\x73\x78\x60\x68\x6d\x75\x7b\x81\ +\x7f\x85\x8c\x70\x78\x7f\x60\x6b\x72\x79\x80\x87\x81\x87\x8e\x7e\ +\x86\x8d\x81\x88\x8e\x83\x8b\x91\x83\x8b\x91\x85\x8b\x91\x87\x8d\ +\x92\x89\x90\x95\x87\x8d\x92\x89\x8f\x95\x84\x8a\x90\x87\x8d\x93\ +\x8a\x90\x95\x8c\x91\x96\x8e\x91\x96\x8c\x90\x95\x8f\x93\x98\x90\ +\x95\x9a\x93\x97\x9c\x91\x95\x9a\x92\x96\x9a\x96\x99\x9e\x97\x9c\ +\x9f\x94\x99\x9d\x93\x97\x9a\x98\x9b\x9f\x99\x9c\xa0\x98\x9b\x9f\ +\x9c\x9f\xa3\x9b\x9e\xa2\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa1\ +\xa4\xa7\xa0\xa4\xa5\x9c\x9f\xa1\x7d\x80\x84\x72\x75\x7a\x9a\x9d\ +\xa0\xa6\xa9\xaa\xa7\xa9\xac\x92\x95\x98\x69\x6d\x70\x8f\x91\x92\ +\xaf\xb3\xb2\x56\x5a\x5c\x00\x00\x00\x02\x02\x02\x4a\x4c\x4b\xa4\ +\xa7\xa5\xb8\xba\xb9\xb1\xb2\xb2\xa7\xa7\xa9\x89\x8b\x8e\x73\x74\ +\x78\xab\xaa\xac\xb3\xb3\xb3\xb4\xb4\xb4\xaa\xab\xab\x91\x92\x94\ +\x6f\x70\x72\xa3\xa1\xa4\x00\x00\x00\xe2\xde\xdd\xe2\xde\xdc\xe3\ +\xdd\xdb\xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd8\xe0\xdb\ +\xd8\xe2\xdd\xda\xe3\xdd\xda\xe4\xde\xdc\xe5\xe0\xde\xe3\xde\xdb\ +\xe3\xde\xdb\xe4\xdf\xdd\xe5\xdf\xdd\xe5\xdf\xdd\xe5\xe0\xde\xe7\ +\xe2\xe1\xe8\xe3\xe2\xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe5\xe1\xe9\xe4\ +\xe2\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xde\xdb\xe1\xda\xd7\xe4\xdd\xda\ +\xe7\xe1\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xdf\xdc\xe3\ +\xde\xda\xe0\xdb\xd8\xdc\xd7\xd5\xd9\xd3\xd1\xd5\xce\xcc\xcc\xc5\ +\xc4\xc2\xbc\xbb\xb1\xac\xab\x9e\x9a\x9a\x7c\x7d\x7f\x49\x53\x56\ +\x20\x2b\x32\x1d\x26\x2e\x47\x48\x4e\x75\x72\x74\x8b\x87\x88\x99\ +\x96\x97\xa2\xa0\xa1\xa3\xa0\xa2\xa5\xa3\xa4\xa5\xa4\xa6\xa6\xa5\ +\xa7\xa4\xa3\xa5\xa2\xa1\xa3\x9f\x9e\xa0\x9d\x9f\xa0\x9b\x9d\x9e\ +\x95\x97\x98\x91\x94\x95\x90\x93\x94\x90\x93\x94\x8d\x92\x94\x8d\ +\x91\x94\x8a\x8e\x92\x88\x8c\x90\x86\x8a\x90\x84\x89\x8e\x85\x8b\ +\x91\x81\x88\x8e\x81\x87\x8d\x80\x87\x8d\x7e\x86\x8c\x7d\x84\x88\ +\x7c\x82\x88\x7c\x83\x88\x7b\x83\x87\x7a\x83\x86\x7a\x83\x89\x7b\ +\x84\x89\x76\x7f\x83\x6f\x79\x7d\x5e\x69\x6d\x4a\x54\x5b\x28\x33\ +\x3a\x02\x04\x05\x32\x34\x37\x78\x7c\x80\x70\x78\x7d\x5d\x64\x6b\ +\x6c\x71\x76\x7b\x81\x85\x6c\x74\x79\x61\x69\x70\x78\x7f\x85\x7f\ +\x85\x8c\x69\x73\x7a\x62\x6c\x74\x7b\x82\x89\x80\x89\x8e\x80\x89\ +\x8e\x81\x8a\x8f\x83\x8b\x8f\x85\x8c\x91\x88\x8e\x93\x88\x8d\x92\ +\x87\x8c\x91\x87\x8d\x92\x88\x8e\x93\x86\x8d\x92\x8d\x92\x97\x8d\ +\x92\x97\x8e\x93\x98\x90\x94\x99\x8d\x91\x96\x92\x96\x9b\x93\x97\ +\x9c\x94\x97\x9c\x92\x95\x9a\x91\x95\x99\x97\x9a\x9f\x98\x9c\xa1\ +\x95\x99\x9d\x96\x99\x9d\x97\x9a\x9d\x9a\x9d\xa0\x9c\x9f\xa3\x9c\ +\x9f\xa2\x9f\xa1\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x9f\xa2\xa5\xa0\xa2\ +\xa5\xa2\xa5\xa9\xa0\xa3\xa7\x85\x89\x8d\x6b\x6f\x72\x98\x9a\x9c\ +\xa1\xa2\xa5\xa4\xa6\xaa\x99\x9c\xa0\x6d\x71\x74\x7f\x81\x82\xa8\ +\xab\xac\x75\x79\x7a\x44\x48\x4a\x76\x78\x7b\x78\x79\x7a\x8d\x8c\ +\x8b\xaf\xae\xae\xb1\xb1\xb2\xae\xb0\xb1\x9e\x9f\xa2\x6d\x6d\x6f\ +\x97\x97\x98\xba\xb9\xba\xb0\xaf\xb0\xb2\xb4\xb5\x9b\x9e\x9f\x74\ +\x74\x75\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe1\xe6\xe1\ +\xde\xe5\xe1\xde\xe5\xe2\xde\xe6\xe3\xdf\xe7\xe2\xdf\xe8\xe3\xe0\ +\xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe3\xe0\xe9\ +\xe4\xe1\xe9\xe4\xe2\xe9\xe5\xe4\xe9\xe5\xe4\xea\xe6\xe5\xea\xe5\ +\xe4\xe9\xe5\xe3\xea\xe5\xe3\xeb\xe6\xe4\xea\xe5\xe3\xea\xe6\xe3\ +\xe8\xe2\xdf\xe2\xdd\xda\xe0\xda\xd7\xe5\xde\xda\xe7\xe2\xdd\xe7\ +\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdb\xdf\xda\ +\xd7\xdb\xd6\xd3\xd8\xd2\xd0\xd2\xcc\xc9\xca\xc2\xc1\xbd\xb7\xb6\ +\xad\xa8\xa7\x95\x92\x92\x6d\x6f\x71\x3b\x45\x49\x1c\x26\x2d\x28\ +\x2e\x35\x59\x58\x5d\x7f\x7b\x7c\x90\x8d\x8d\x9a\x98\x98\xa2\xa0\ +\xa0\xa5\xa3\xa3\xa5\xa1\xa3\xa5\xa4\xa5\xa5\xa4\xa6\xa4\xa3\xa5\ +\xa3\xa2\xa4\xa1\xa0\xa1\x9c\x9c\x9d\x98\x99\x9a\x94\x96\x97\x91\ +\x94\x94\x91\x95\x97\x8f\x92\x95\x8c\x91\x94\x8a\x8f\x92\x86\x8b\ +\x8f\x87\x8d\x93\x88\x8e\x95\x85\x8b\x92\x83\x89\x90\x82\x8a\x91\ +\x82\x89\x8f\x83\x8a\x91\x81\x87\x8e\x80\x86\x8c\x7e\x84\x89\x7c\ +\x82\x87\x7b\x81\x86\x78\x81\x85\x79\x82\x87\x78\x81\x85\x76\x7f\ +\x83\x73\x7d\x81\x62\x6e\x74\x2a\x36\x41\x32\x3c\x46\x10\x15\x1a\ +\x1b\x1d\x20\x63\x68\x6d\x77\x7e\x83\x6f\x75\x7b\x62\x69\x70\x73\ +\x79\x7e\x7c\x82\x87\x65\x6f\x75\x61\x6a\x71\x7d\x84\x89\x7c\x84\ +\x8b\x68\x73\x7a\x61\x6b\x73\x7d\x85\x89\x7d\x87\x8b\x80\x89\x8d\ +\x81\x89\x8d\x87\x8c\x92\x89\x8f\x94\x87\x8d\x92\x86\x8c\x91\x89\ +\x8f\x94\x8e\x93\x98\x88\x8d\x92\x8d\x91\x96\x8d\x91\x96\x8f\x95\ +\x9a\x91\x96\x9b\x91\x95\x9a\x93\x98\x9c\x94\x97\x9c\x95\x99\x9d\ +\x94\x99\x9d\x94\x98\x9c\x94\x98\x9c\x97\x9b\x9e\x98\x9c\x9f\x9a\ +\x9d\xa1\x94\x97\x9a\x9e\xa1\xa5\x9e\xa1\xa5\x9e\xa1\xa4\x9f\xa3\ +\xa6\x9c\xa0\xa2\x9f\xa2\xa3\x9e\xa0\xa1\xa2\xa4\xa7\xa3\xa5\xa9\ +\xa1\xa4\xa8\xa2\xa4\xa8\x93\x96\x9b\x5f\x62\x67\x9a\x9a\x9e\xa6\ +\xa7\xab\xa5\xa8\xac\xa1\xa4\xa9\x82\x84\x88\x6a\x6b\x6c\x9b\x9d\ +\x9e\x59\x5c\x5e\xb7\xb8\xbb\xaa\xaa\xac\x7c\x7b\x7d\x7b\x7a\x7d\ +\xab\xab\xac\xaf\xaf\xb0\xb2\xb2\xb3\xab\xab\xac\x76\x77\x7b\x7f\ +\x7f\x82\xb8\xb8\xb8\xb2\xb3\xb4\xb5\xb7\xb7\xab\xad\xae\x00\x00\ +\x00\xe8\xe3\xe2\xe8\xe4\xe3\xe7\xe3\xe2\xe6\xe2\xe1\xe7\xe3\xe2\ +\xe7\xe4\xe2\xe7\xe4\xe2\xe7\xe3\xe0\xe8\xe4\xe3\xe8\xe4\xe3\xe9\ +\xe5\xe3\xe8\xe4\xe3\xe9\xe5\xe3\xe9\xe5\xe4\xe9\xe5\xe3\xe9\xe5\ +\xe4\xea\xe6\xe5\xeb\xe6\xe5\xea\xe5\xe4\xea\xe5\xe5\xea\xe6\xe4\ +\xea\xe6\xe4\xeb\xe6\xe5\xeb\xe7\xe4\xea\xe5\xe3\xe5\xe0\xdd\xe1\ +\xdb\xd8\xe2\xdc\xd9\xe6\xe0\xdd\xe7\xe3\xdf\xe6\xe1\xde\xe6\xe1\ +\xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xdb\xde\xd8\xd6\xda\xd3\xd0\ +\xd6\xcf\xcc\xce\xc7\xc4\xc4\xbd\xba\xb9\xb4\xb2\xa3\x9f\x9e\x87\ +\x86\x86\x5e\x61\x64\x30\x37\x3f\x1e\x27\x2f\x39\x3d\x42\x6b\x68\ +\x6a\x88\x83\x83\x94\x90\x8f\x9c\x98\x99\xa1\x9e\x9e\xa4\xa2\xa2\ +\xa6\xa4\xa4\xa3\xa2\xa3\xa2\xa1\xa3\xa2\xa1\xa3\xa1\xa0\xa1\xa0\ +\xa0\xa2\x9b\x9c\x9d\x95\x97\x98\x92\x94\x95\x90\x94\x94\x8f\x93\ +\x95\x8e\x92\x96\x8e\x93\x96\x8b\x90\x93\x88\x8c\x90\x88\x8d\x93\ +\x87\x8d\x93\x86\x8c\x93\x85\x8b\x92\x81\x89\x90\x7f\x87\x8e\x7f\ +\x86\x8d\x7e\x84\x8b\x7e\x84\x89\x7c\x82\x87\x7b\x81\x86\x79\x7f\ +\x84\x78\x7e\x83\x79\x81\x85\x78\x80\x85\x77\x80\x84\x79\x82\x86\ +\x64\x6e\x75\x1d\x2a\x36\x32\x3d\x47\x1b\x25\x2b\x23\x2a\x30\x5c\ +\x63\x69\x6b\x73\x78\x79\x7e\x81\x69\x70\x76\x62\x6a\x71\x75\x7c\ +\x81\x79\x80\x85\x63\x6e\x73\x64\x6d\x74\x81\x88\x8e\x7a\x83\x89\ +\x62\x6c\x74\x5f\x67\x6f\x81\x89\x8d\x81\x89\x8f\x82\x89\x8d\x85\ +\x8b\x8f\x86\x8c\x91\x87\x8c\x91\x88\x8c\x91\x88\x8d\x92\x8c\x90\ +\x95\x8d\x91\x96\x8e\x92\x97\x8c\x91\x95\x91\x95\x9a\x90\x94\x99\ +\x92\x97\x9a\x95\x9a\x9d\x96\x9a\x9d\x97\x9a\x9f\x98\x9b\xa0\x99\ +\x9c\xa0\x95\x98\x9d\x94\x97\x9a\x93\x96\x9a\x97\x9a\x9e\x97\x9a\ +\x9e\x9a\x9d\xa2\xa1\xa3\xa7\x9e\xa0\xa3\xa1\xa2\xa6\x9f\xa0\xa2\ +\xa0\xa4\xa5\x9c\x9e\xa1\x9f\xa2\xa6\xa5\xa8\xac\xa3\xa5\xa9\xa8\ +\xa9\xad\xa5\xa8\xac\x9a\x9e\xa2\x64\x65\x6b\x8a\x8b\x8f\xa3\xa3\ +\xa6\xaa\xad\xaf\xa7\xa9\xac\x92\x94\x96\x51\x54\x56\x6c\x6c\x6e\ +\xba\xba\xbb\xa4\xa3\xa5\xa3\xa2\xa3\x81\x80\x83\x6f\x6f\x73\xa7\ +\xa6\xa8\xb3\xb3\xb4\xb2\xb1\xb3\xac\xac\xae\x8e\x90\x92\x6b\x69\ +\x6c\xb3\xb2\xb3\xb4\xb6\xb6\xb5\xb6\xb6\x00\x00\x00\xe8\xe4\xe3\ +\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe7\xe3\xe2\xe8\ +\xe4\xe3\xe9\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\xe4\ +\xe3\xea\xe6\xe5\xea\xe6\xe5\xeb\xe7\xe6\xea\xe6\xe5\xea\xe7\xe6\ +\xeb\xe6\xe5\xea\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe3\xeb\xe6\xe4\xeb\ +\xe6\xe5\xea\xe5\xe3\xe8\xe3\xe0\xe3\xde\xdb\xe2\xdb\xd7\xe4\xdd\ +\xda\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\ +\xe4\xdf\xdc\xe0\xdc\xd9\xdd\xd7\xd4\xd8\xd1\xce\xd3\xca\xc9\xcd\ +\xc5\xc1\xc1\xba\xb8\xb3\xae\xac\x9d\x9b\x9a\x79\x7a\x7b\x4c\x51\ +\x56\x20\x29\x30\x20\x28\x2f\x49\x4c\x50\x77\x74\x74\x8d\x88\x89\ +\x9a\x96\x97\xa0\x9f\x9f\xa3\xa1\xa1\xa5\xa4\xa4\xa6\xa5\xa5\xa6\ +\xa5\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9e\xa0\xa0\x9f\xa1\x9b\x9d\ +\x9e\x96\x98\x99\x91\x94\x95\x8e\x91\x93\x8e\x91\x94\x8f\x92\x96\ +\x8c\x91\x94\x89\x8e\x92\x86\x8c\x91\x86\x8c\x91\x88\x8e\x93\x86\ +\x8c\x92\x84\x8a\x91\x83\x89\x8f\x82\x88\x8f\x81\x87\x8e\x80\x86\ +\x8c\x7e\x84\x89\x7c\x82\x87\x7a\x80\x85\x7a\x80\x86\x79\x81\x86\ +\x78\x81\x85\x78\x81\x85\x78\x81\x85\x79\x82\x86\x56\x63\x69\x1c\ +\x29\x34\x47\x50\x59\x12\x1d\x25\x35\x3f\x47\x6a\x72\x79\x5c\x66\ +\x6e\x70\x76\x7c\x77\x7e\x82\x65\x6e\x74\x66\x6e\x75\x7a\x81\x85\ +\x79\x81\x85\x61\x6b\x73\x6a\x73\x79\x80\x86\x8b\x7a\x84\x88\x61\ +\x6b\x72\x68\x72\x77\x83\x8a\x8f\x85\x8b\x90\x87\x8d\x92\x88\x8e\ +\x93\x88\x8d\x92\x87\x8c\x91\x88\x8e\x93\x8d\x91\x96\x90\x94\x99\ +\x8c\x90\x95\x8d\x92\x96\x8f\x93\x97\x8e\x93\x96\x92\x97\x99\x94\ +\x99\x9c\x91\x95\x98\x96\x98\x9c\x97\x9a\x9d\x94\x97\x9b\x95\x98\ +\x9c\x90\x94\x96\x93\x98\x99\x99\x9b\x9d\x9a\x9b\x9e\x9b\x9e\x9f\ +\x9d\x9f\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa5\xa6\xa0\xa5\xa6\x9f\ +\xa2\xa6\x9d\xa0\xa4\xa0\xa3\xa7\xa5\xa6\xaa\xa9\xaa\xae\xa1\xa3\ +\xa7\xa2\xa5\xa9\xa5\xa8\xac\x6f\x72\x77\x7c\x7e\x80\xa7\xa9\xaa\ +\xa6\xa9\xac\xa1\xa3\xa4\x4a\x4d\x4f\x6f\x73\x75\x9a\x9a\x9c\x8b\ +\x8a\x8c\x35\x36\x39\x88\x89\x8b\x94\x97\x9b\x66\x68\x6c\xa4\xa6\ +\xa6\xb2\xb2\xb3\xb1\xb0\xb2\xb5\xb7\xb7\xa8\xa9\xaa\x70\x70\x73\ +\x99\x9a\x9b\xbd\xbd\xbd\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\ +\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe8\xe4\ +\xe3\xe9\xe5\xe4\xea\xe6\xe5\xe9\xe6\xe4\xe9\xe4\xe3\xe9\xe5\xe4\ +\xe9\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe4\xea\xe6\xe4\xea\xe5\xe3\xeb\ +\xe5\xe3\xea\xe5\xe2\xe9\xe5\xe2\xea\xe6\xe4\xea\xe5\xe4\xea\xe5\ +\xe4\xe6\xe1\xde\xe4\xdd\xda\xe2\xdb\xd9\xe6\xdf\xdc\xe6\xe2\xdf\ +\xe6\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xda\xdf\ +\xda\xd8\xdc\xd6\xd4\xd8\xd0\xce\xd2\xc9\xc5\xca\xc3\xbf\xbc\xb6\ +\xb2\xaa\xa7\xa5\x90\x91\x8f\x69\x6d\x6f\x39\x40\x47\x1c\x25\x2d\ +\x2c\x33\x3a\x5d\x5d\x5f\x81\x7c\x7d\x90\x8c\x8d\x9b\x98\x98\xa1\ +\x9f\x9f\xa4\xa3\xa3\xa7\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa4\xa4\xa3\ +\xa4\xa0\x9f\xa2\xa0\x9f\xa1\x9d\x9c\x9e\x99\x9b\x9c\x96\x97\x9a\ +\x8e\x92\x93\x8d\x91\x93\x8f\x92\x95\x8d\x90\x94\x89\x8e\x91\x88\ +\x8c\x90\x85\x8a\x90\x87\x8d\x92\x83\x8a\x8e\x83\x89\x8f\x83\x89\ +\x90\x82\x8a\x90\x84\x8a\x91\x83\x89\x8f\x7f\x85\x8a\x7e\x84\x89\ +\x7d\x83\x88\x7b\x81\x86\x7a\x80\x85\x7c\x81\x87\x7b\x83\x88\x7b\ +\x85\x89\x7a\x83\x87\x78\x81\x84\x4d\x5a\x60\x21\x2e\x36\x5c\x63\ +\x6b\x23\x31\x3b\x3f\x49\x50\x75\x7a\x80\x63\x6c\x74\x65\x6b\x73\ +\x79\x7f\x84\x77\x7f\x83\x61\x6b\x71\x6d\x74\x7a\x7e\x84\x88\x7a\ +\x81\x85\x5f\x69\x70\x70\x77\x7c\x86\x8c\x90\x78\x80\x84\x5d\x67\ +\x6d\x71\x78\x7d\x87\x8c\x91\x88\x8e\x93\x88\x8e\x93\x86\x8c\x91\ +\x88\x8e\x93\x89\x8d\x93\x8d\x92\x96\x8b\x90\x94\x8e\x92\x97\x8f\ +\x94\x98\x93\x97\x9b\x8a\x90\x92\x90\x95\x98\x94\x99\x9b\x97\x9b\ +\x9e\x93\x97\x99\x90\x94\x96\x91\x95\x97\x99\x9c\x9f\x98\x9b\x9d\ +\x96\x9a\x9b\x99\x9c\x9d\x9b\x9d\x9f\x9e\x9f\xa3\xa0\xa2\xa3\x9f\ +\xa0\xa2\x9c\x9e\x9f\x9d\x9f\xa0\xa4\xa6\xa8\xa6\xaa\xac\xa1\xa3\ +\xa7\xa0\xa2\xa6\xa8\xa9\xad\xa5\xa7\xab\xa8\xa9\xad\xa6\xa7\xab\ +\xa6\xa7\xab\xa5\xa7\xab\x87\x89\x8c\x62\x63\x65\xa4\xa5\xa6\x94\ +\x94\x96\x65\x69\x6a\xb1\xb3\xb3\x79\x78\x7a\x87\x87\x8a\x9d\x9f\ +\xa4\xa3\xa5\xa9\xb0\xb1\xb3\xaa\xac\xad\x6a\x6c\x6f\x93\x93\x95\ +\xb1\xb0\xb1\xaf\xaf\xaf\xb3\xb4\xb4\xaf\xb0\xb1\x7e\x7e\x80\x86\ +\x84\x84\x00\x00\x00\xe7\xe3\xe1\xe8\xe3\xe1\xe7\xe3\xe2\xe8\xe4\ +\xe3\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\ +\xe9\xe5\xe4\xea\xe6\xe5\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe6\xe5\xea\ +\xe6\xe4\xe9\xe5\xe3\xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe0\xe8\xe3\ +\xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xea\xe5\xe3\xe4\xde\xdb\ +\xe1\xda\xd7\xe2\xdb\xd8\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe5\ +\xe0\xdd\xe5\xdf\xdc\xe4\xde\xdb\xe1\xdb\xd9\xdd\xd8\xd5\xda\xd4\ +\xd1\xd6\xce\xca\xcd\xc5\xbf\xc3\xbc\xb7\xb6\xb0\xac\xa2\x9f\x9d\ +\x82\x84\x84\x58\x5e\x62\x26\x31\x38\x1d\x25\x2e\x3e\x43\x4a\x70\ +\x6d\x6f\x89\x85\x85\x97\x94\x94\x9e\x9d\x9b\xa1\x9f\x9f\xa6\xa4\ +\xa4\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa3\xa3\xa4\xa4\xa5\xa2\xa1\xa3\ +\x9c\x9d\x9e\x9a\x99\x9b\x96\x99\x9a\x92\x94\x95\x8f\x93\x94\x90\ +\x94\x95\x8d\x8f\x93\x8b\x8f\x92\x8a\x8f\x92\x88\x8c\x91\x87\x8c\ +\x91\x86\x8d\x92\x83\x89\x8e\x83\x89\x8e\x80\x89\x8d\x81\x8a\x8e\ +\x81\x87\x8c\x80\x86\x8d\x80\x86\x8b\x7e\x85\x8b\x7d\x85\x8b\x7c\ +\x83\x88\x7d\x83\x88\x7a\x80\x85\x79\x82\x86\x7b\x84\x88\x79\x80\ +\x85\x78\x81\x85\x4f\x5c\x61\x10\x1e\x21\x47\x50\x58\x31\x3e\x49\ +\x48\x51\x5a\x71\x77\x7b\x75\x7c\x81\x66\x6f\x74\x67\x6f\x74\x7b\ +\x82\x85\x76\x7e\x80\x61\x6b\x6e\x70\x78\x7c\x81\x88\x8b\x75\x7e\ +\x82\x5f\x69\x6f\x75\x7c\x81\x83\x8a\x8d\x75\x7d\x82\x60\x6a\x71\ +\x74\x7c\x81\x86\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8b\ +\x8f\x94\x8b\x8f\x94\x8a\x8e\x93\x8d\x91\x96\x8e\x92\x97\x8f\x93\ +\x97\x8d\x92\x96\x92\x97\x9b\x92\x96\x9a\x95\x99\x9c\x95\x98\x9b\ +\x94\x96\x99\x94\x97\x9b\x99\x9c\xa0\x9d\xa0\xa4\x99\x9c\xa0\x94\ +\x97\x9b\x99\x9b\x9c\x9e\xa0\xa2\x9c\x9d\xa0\xa4\xa5\xa8\xa0\xa2\ +\xa3\x9d\x9f\xa0\xa1\xa3\xa4\xa3\xa7\xa9\xa6\xa8\xaa\xa3\xa5\xa6\ +\xa6\xa7\xa9\xa8\xa9\xac\xa6\xa7\xaa\xa8\xaa\xad\xa4\xa4\xa8\xaa\ +\xab\xad\xac\xad\xb0\x95\x98\x9c\x5d\x5f\x62\x4a\x4a\x4b\xa9\xaa\ +\xaa\xaf\xaf\xae\xb0\xaf\xb0\x87\x88\x89\x77\x79\x7b\xa7\xa7\xa9\ +\xb2\xb3\xb4\xb0\xb1\xb2\xb3\xb5\xb6\x7c\x7d\x7e\x73\x73\x75\xaf\ +\xaf\xaf\xad\xad\xad\xb4\xb4\xb4\xbd\xbd\xbe\x95\x95\x97\x00\x00\ +\x00\xe7\xe3\xe2\xe7\xe2\xe1\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ +\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe8\ +\xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe4\xea\xe6\xe2\xe9\xe6\ +\xe2\xe9\xe4\xe1\xe8\xe3\xe0\xe7\xe3\xdf\xe8\xe3\xe0\xe9\xe3\xe0\ +\xe8\xe3\xe1\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xdf\xdb\xe1\xdb\xd7\xe3\ +\xdc\xd9\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xde\ +\xdb\xe3\xdc\xd9\xe0\xd9\xd7\xdc\xd7\xd5\xd9\xd3\xd0\xd3\xcc\xc7\ +\xcb\xc3\xbc\xc1\xbc\xb5\xb0\xab\xa9\x9a\x97\x97\x76\x79\x7b\x45\ +\x4e\x54\x1f\x2a\x32\x28\x30\x37\x52\x53\x57\x7c\x77\x78\x8e\x8a\ +\x8a\x9a\x97\x97\x9f\x9e\x9d\xa3\xa2\xa2\xa4\xa4\xa4\xa4\xa4\xa4\ +\xa5\xa5\xa5\xa4\xa4\xa4\xa3\xa2\xa4\x9b\x9b\x9d\x93\x94\x95\x96\ +\x97\x98\x95\x97\x98\x93\x94\x97\x90\x93\x96\x8e\x92\x95\x8b\x8e\ +\x92\x8a\x8e\x91\x89\x8e\x92\x86\x8b\x8f\x85\x89\x8e\x84\x8a\x8f\ +\x85\x8b\x90\x83\x8b\x90\x81\x89\x8e\x80\x87\x8c\x7f\x86\x8b\x7e\ +\x87\x8b\x7e\x85\x8b\x7c\x84\x8a\x7c\x84\x89\x7c\x84\x89\x7c\x85\ +\x8a\x7a\x83\x87\x79\x82\x86\x7c\x85\x89\x7a\x83\x87\x77\x7f\x83\ +\x57\x63\x68\x08\x0f\x13\x10\x19\x1f\x4a\x57\x60\x60\x6a\x6f\x61\ +\x6a\x71\x74\x7c\x81\x74\x7b\x7f\x62\x6b\x6f\x6b\x72\x75\x74\x78\ +\x7b\x6d\x74\x76\x5b\x64\x69\x73\x7b\x7e\x7f\x87\x8a\x71\x79\x7c\ +\x4c\x56\x5b\x7a\x80\x84\x84\x8a\x8f\x76\x7e\x83\x64\x6b\x71\x79\ +\x7e\x84\x88\x8c\x91\x8b\x8f\x94\x8c\x8f\x95\x8a\x8e\x93\x89\x8e\ +\x92\x8b\x90\x94\x8a\x8e\x91\x8c\x90\x95\x8f\x93\x98\x92\x97\x99\ +\x95\x9a\x9d\x94\x99\x9c\x92\x97\x9a\x94\x98\x9b\x95\x98\x9c\x94\ +\x98\x9b\x96\x99\x9d\x9b\x9e\xa2\x99\x9c\xa0\x97\x9b\x9c\x9c\xa0\ +\xa1\x98\x9a\x9c\x9e\x9f\xa1\xa5\xa7\xa8\xa2\xa4\xa5\xa1\xa3\xa4\ +\x9e\xa1\xa2\xa2\xa6\xa7\xa4\xa6\xa8\xa6\xa8\xab\xa3\xa4\xa8\xa3\ +\xa5\xa8\xa5\xa7\xa8\xa6\xa8\xaa\xaa\xab\xad\xab\xab\xae\xaa\xab\ +\xad\xab\xad\xb0\x97\x99\x9b\x31\x33\x35\x95\x97\x97\xb1\xb2\xb2\ +\xaf\xb0\xb1\xae\xb0\xb1\x97\x99\x9b\x79\x79\x7c\x96\x95\x98\xb0\ +\xb0\xb2\xb3\xb2\xb4\xb3\xb4\xb5\x9c\x9e\x9f\x6e\x6f\x71\x9d\x9f\ +\x9f\xb3\xb3\xb3\xb8\xb9\xb9\xb8\xb9\xb8\x00\x00\x00\xe8\xe3\xe2\ +\xe7\xe2\xe1\xe8\xe3\xe2\xe7\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\ +\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\ +\xe4\xe8\xe3\xe2\xe9\xe4\xe1\xe9\xe5\xe2\xe9\xe4\xe1\xe8\xe3\xe0\ +\xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe3\xe0\xe8\xe3\xe0\xe8\xe3\xe0\xe9\ +\xe4\xe1\xe6\xe1\xde\xe3\xdd\xd8\xe1\xdb\xd6\xe5\xde\xdb\xe7\xe1\ +\xde\xe7\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xde\xdb\xe2\xdc\xd9\ +\xe0\xd9\xd6\xdc\xd5\xd1\xd7\xd1\xce\xd0\xc9\xc5\xc7\xc0\xbb\xbc\ +\xb8\xb3\xab\xa8\xa4\x8d\x8e\x8d\x65\x6a\x6e\x33\x3f\x47\x1d\x29\ +\x31\x31\x38\x40\x62\x62\x64\x83\x81\x7f\x94\x90\x8f\x9c\x9a\x99\ +\xa2\xa2\xa1\xa3\xa4\xa3\xa5\xa5\xa4\xa5\xa5\xa5\xa6\xa6\xa6\xa3\ +\xa3\xa3\x9c\x9c\x9d\x87\x89\x8a\x84\x87\x87\x8a\x8c\x8d\x91\x93\ +\x95\x93\x95\x99\x8d\x8f\x93\x8c\x8f\x92\x8b\x8e\x92\x89\x8d\x91\ +\x89\x8d\x92\x88\x8c\x91\x87\x8b\x90\x84\x89\x8e\x81\x87\x8c\x82\ +\x88\x8d\x81\x87\x8c\x7f\x86\x8a\x7f\x87\x8b\x7f\x88\x8c\x7f\x88\ +\x8b\x7d\x86\x8a\x7c\x84\x89\x7b\x83\x87\x7b\x84\x88\x7b\x84\x88\ +\x7b\x84\x88\x7b\x84\x88\x7b\x84\x88\x78\x7e\x85\x6a\x73\x7a\x36\ +\x44\x4c\x34\x3f\x47\x67\x71\x78\x73\x7c\x80\x65\x6e\x73\x63\x6c\ +\x71\x77\x7e\x81\x71\x79\x7c\x52\x5b\x5f\x48\x4e\x52\x6b\x6e\x71\ +\x6c\x72\x76\x64\x6b\x70\x71\x76\x7a\x56\x5a\x60\x37\x3f\x43\x59\ +\x60\x63\x7a\x7f\x82\x87\x8c\x91\x77\x7e\x83\x66\x6d\x73\x7b\x80\ +\x85\x8a\x8f\x93\x8a\x8e\x93\x86\x8c\x90\x89\x8f\x92\x8a\x8f\x93\ +\x8b\x91\x93\x8c\x90\x95\x8f\x93\x98\x94\x99\x9c\x94\x99\x9c\x94\ +\x99\x9c\x95\x99\x9c\x96\x99\x9d\x96\x9a\x9d\x99\x9d\xa0\x97\x9a\ +\x9e\x9a\x9d\xa1\x96\x9a\x9b\x98\x9d\x9d\x9a\x9e\x9f\x9c\x9f\xa2\ +\x9c\x9f\xa0\xa2\xa5\xa6\x9d\x9f\xa0\xa1\xa3\xa4\xa2\xa4\xa5\xa0\ +\xa3\xa4\xa2\xa4\xa5\xa6\xa8\xa8\xa7\xa8\xa9\xa7\xa8\xa9\xa6\xa7\ +\xa8\xa5\xa7\xa8\xab\xac\xad\xa7\xa8\xaa\xaa\xab\xac\xa7\xa8\xa9\ +\x5c\x5f\x61\xa0\xa5\xa7\x7a\x7d\x7f\x80\x81\x82\xa5\xa5\xa6\xb0\ +\xaf\xb1\xb5\xb4\xb6\xa5\xa5\xa7\x76\x75\x78\x91\x91\x92\xae\xae\ +\xae\xb1\xb2\xb2\xb6\xb6\xb7\xb0\xb2\xb3\x6e\x71\x72\x8a\x8b\x8a\ +\xae\xaf\xad\xb9\xba\xb8\x00\x00\x00\xe7\xe2\xdf\xe7\xe2\xdf\xe7\ +\xe3\xe1\xe7\xe4\xe2\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\ +\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe4\xe3\xe8\xe4\xe3\ +\xe9\xe4\xe1\xe9\xe5\xe2\xe8\xe3\xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\ +\xe4\xe1\xe9\xe4\xe1\xe8\xe4\xe0\xe9\xe4\xe1\xe9\xe3\xe0\xe5\xe0\ +\xdb\xe2\xdc\xd7\xe2\xdc\xd7\xe6\xe0\xdc\xe7\xe0\xdd\xe7\xe0\xdd\ +\xe5\xe0\xdd\xe4\xdf\xdc\xe4\xde\xdb\xe0\xdb\xd8\xde\xd8\xd5\xda\ +\xd4\xd0\xd5\xcf\xcc\xce\xc7\xc3\xc5\xbf\xbb\xb5\xb1\xac\xa1\xa1\ +\x9c\x80\x82\x82\x53\x5b\x5f\x27\x33\x3d\x1e\x2b\x32\x40\x45\x4b\ +\x71\x70\x71\x8b\x89\x89\x96\x94\x94\x9f\x9d\x9d\xa3\xa2\xa2\xa4\ +\xa4\xa3\xa4\xa4\xa4\xa6\xa6\xa6\xa3\xa3\xa3\xa0\xa0\xa0\x8a\x8c\ +\x8d\x7b\x7f\x80\x7b\x7e\x7f\x89\x8b\x8c\x90\x92\x93\x8f\x91\x93\ +\x8d\x90\x93\x8c\x8f\x93\x89\x8c\x90\x87\x8b\x90\x87\x8b\x90\x88\ +\x8c\x91\x87\x8b\x92\x83\x88\x8e\x83\x88\x8d\x83\x89\x8f\x81\x89\ +\x8e\x7f\x87\x8b\x80\x86\x8c\x7e\x87\x8b\x7d\x85\x8a\x7c\x84\x89\ +\x7c\x85\x8a\x7c\x85\x8a\x7a\x83\x87\x7b\x83\x88\x7a\x83\x87\x79\ +\x82\x86\x79\x82\x86\x79\x81\x87\x75\x7d\x84\x72\x7a\x81\x71\x79\ +\x80\x78\x7f\x85\x78\x80\x84\x71\x78\x7e\x61\x6a\x70\x6b\x72\x78\ +\x74\x7a\x7e\x2e\x35\x39\x14\x1a\x1e\x53\x55\x59\x79\x7c\x7f\x6e\ +\x73\x77\x45\x4c\x51\x0d\x0f\x13\x4a\x4e\x52\x48\x4f\x52\x63\x69\ +\x6d\x80\x84\x88\x87\x8c\x91\x72\x78\x7d\x67\x6d\x72\x7d\x81\x85\ +\x8a\x8d\x92\x8b\x8f\x93\x8d\x92\x95\x8d\x92\x96\x8c\x91\x95\x8c\ +\x91\x94\x90\x95\x98\x94\x97\x9c\x93\x98\x9b\x97\x9b\x9f\x98\x9c\ +\xa0\x95\x98\x9c\x96\x99\x9d\x99\x9c\xa0\x9a\x9c\xa0\x9d\xa0\xa2\ +\x9a\x9e\x9f\x9b\x9f\xa0\x9f\xa2\xa3\x9e\xa2\xa3\x9d\xa0\xa2\xa0\ +\xa4\xa5\x9e\x9f\xa0\xa0\xa2\xa3\xa6\xa8\xa9\xa3\xa5\xa6\xa4\xa7\ +\xa8\xa4\xa6\xa7\xa8\xa9\xaa\xaa\xaa\xac\xa9\xa8\xaa\xa6\xa5\xa6\ +\xaa\xaa\xac\xa7\xa6\xa8\xa8\xa9\xaa\x9b\x9d\x9e\x51\x56\x57\xb3\ +\xb8\xb8\xad\xaf\xb0\x8b\x8b\x8d\x75\x75\x76\x9d\x9d\x9e\xb1\xb1\ +\xb2\xb5\xb4\xb5\xb1\xb1\xb1\x7f\x7f\x80\x83\x83\x85\xa1\xa1\xa2\ +\xb5\xb6\xb7\xb2\xb4\xb5\xb7\xba\xba\x88\x89\x89\x7c\x7d\x7d\xa2\ +\xa3\xa1\x00\x00\x00\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xde\xe8\xe3\ +\xe1\xe8\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ +\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xe9\ +\xe4\xe2\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xe9\xe4\ +\xe1\xe9\xe4\xe0\xe8\xe3\xe0\xe7\xe1\xdc\xe2\xdc\xd7\xe1\xdb\xd6\ +\xe3\xdd\xd8\xe7\xe1\xdd\xe7\xe1\xde\xe7\xe1\xde\xe5\xe0\xdd\xe4\ +\xde\xdb\xe3\xdd\xda\xe0\xdb\xd9\xdd\xd6\xd4\xda\xd3\xcf\xd4\xcd\ +\xca\xca\xc4\xbf\xbf\xba\xb6\xaf\xad\xa8\x95\x95\x93\x72\x74\x76\ +\x43\x4b\x52\x20\x2a\x34\x2a\x33\x3b\x55\x57\x5b\x7d\x7b\x7b\x8f\ +\x8d\x8c\x99\x96\x95\xa2\xa0\x9f\xa5\xa3\xa3\xa3\xa3\xa3\xa5\xa5\ +\xa5\xa5\xa4\xa5\xa3\xa3\xa3\x95\x96\x97\x7e\x81\x83\x75\x79\x7b\ +\x7c\x7f\x80\x87\x89\x8a\x8b\x8d\x8e\x8c\x8e\x90\x8e\x91\x95\x8d\ +\x8f\x93\x89\x8d\x91\x87\x8b\x90\x87\x8b\x90\x86\x8a\x90\x87\x8c\ +\x93\x83\x89\x8f\x83\x89\x8e\x82\x89\x8e\x81\x88\x8d\x7f\x86\x8b\ +\x7e\x86\x8c\x7c\x85\x89\x7d\x86\x8b\x7d\x85\x8a\x7c\x84\x8a\x7c\ +\x84\x8b\x7b\x83\x88\x79\x82\x86\x79\x81\x85\x7a\x82\x86\x7a\x82\ +\x87\x7a\x82\x88\x77\x7f\x85\x77\x7f\x85\x78\x80\x86\x78\x7f\x86\ +\x79\x80\x85\x79\x7f\x84\x6f\x76\x7c\x64\x6c\x71\x66\x6d\x71\x21\ +\x26\x29\x00\x03\x05\x26\x2a\x2e\x6a\x6d\x71\x7f\x83\x85\x45\x4c\ +\x51\x00\x00\x00\x24\x26\x29\x4e\x52\x56\x6d\x74\x77\x67\x6d\x71\ +\x83\x87\x8b\x88\x8d\x91\x75\x7b\x80\x6b\x70\x76\x7f\x82\x86\x8c\ +\x90\x94\x90\x94\x98\x93\x98\x9b\x8e\x93\x96\x8d\x92\x95\x92\x97\ +\x9a\x94\x98\x9c\x95\x99\x9d\x96\x9a\x9e\x96\x9b\x9f\x98\x9b\x9f\ +\x96\x99\x9d\x97\x9a\x9e\x9b\x9e\xa2\x9b\x9f\xa1\x9c\xa0\xa1\x9b\ +\x9f\xa0\x9e\xa2\xa3\x9e\xa1\xa3\xa0\xa3\xa5\xa1\xa3\xa4\x9d\x9f\ +\xa0\x9e\xa0\xa2\xa5\xa7\xa8\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa8\ +\xa6\xa8\xa9\xa6\xa9\xaa\xa9\xaa\xab\xa4\xa4\xa5\xa7\xa8\xa9\xa9\ +\xa8\xaa\xa7\xa8\xa9\x5d\x60\x63\x94\x98\x99\xac\xaf\xaf\xb1\xb1\ +\xb1\xb3\xb4\xb4\x9b\x9c\x9d\x7d\x7e\x7f\x8f\x90\x90\xa6\xa7\xa7\ +\xb2\xb3\xb2\xb4\xb5\xb5\x90\x91\x93\x82\x81\x83\x96\x95\x96\xac\ +\xae\xae\xb5\xb6\xb6\xba\xbb\xbb\xa0\xa1\xa1\x7b\x7c\x7c\x00\x00\ +\x00\xe7\xe1\xde\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe7\xe2\xe0\ +\xe7\xe3\xe1\xe8\xe4\xe3\xe9\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\ +\xe4\xe3\xea\xe5\xe5\xe9\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe3\xe9\xe4\ +\xe1\xe8\xe3\xe0\xe8\xe3\xe0\xe8\xe2\xdf\xe8\xe2\xde\xe7\xe1\xdd\ +\xe5\xe0\xdb\xe2\xdb\xd6\xdf\xd7\xd2\xdf\xd8\xd3\xe4\xde\xd8\xe8\ +\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\xe5\xe0\xdd\xe4\xde\xdb\xe1\xdc\ +\xdb\xdf\xda\xd8\xdc\xd6\xd5\xd8\xd1\xce\xd1\xcb\xc8\xc7\xc1\xbe\ +\xb9\xb4\xb1\xa7\xa4\xa2\x8b\x8b\x8b\x62\x66\x69\x33\x3c\x44\x21\ +\x2a\x33\x3a\x40\x47\x67\x66\x67\x85\x81\x81\x94\x90\x90\x9d\x9a\ +\x99\xa2\xa0\x9f\xa4\xa3\xa3\xa5\xa5\xa5\xa4\xa5\xa5\xa5\xa5\xa5\ +\xa2\xa2\xa2\x8b\x8c\x8d\x77\x7a\x7c\x74\x78\x7a\x80\x83\x84\x86\ +\x88\x89\x81\x83\x84\x87\x8a\x8c\x8d\x90\x93\x8b\x8d\x92\x88\x8c\ +\x90\x88\x8c\x90\x89\x8d\x91\x85\x8a\x8f\x85\x8a\x90\x83\x88\x8d\ +\x82\x88\x8d\x81\x87\x8c\x81\x87\x8c\x81\x87\x8d\x7f\x87\x8c\x7d\ +\x86\x8b\x7d\x86\x8c\x7c\x85\x8a\x7c\x84\x8a\x7c\x84\x8a\x7c\x84\ +\x8a\x7a\x83\x89\x7a\x82\x88\x7a\x83\x87\x79\x81\x87\x78\x80\x87\ +\x77\x7f\x86\x76\x7d\x84\x77\x7f\x86\x79\x80\x87\x7d\x82\x88\x7d\ +\x83\x8a\x7b\x82\x88\x6f\x77\x7c\x52\x5b\x5f\x18\x1d\x1f\x00\x00\ +\x00\x19\x1c\x20\x5a\x5e\x61\x72\x77\x7b\x47\x50\x55\x0b\x0f\x12\ +\x03\x03\x04\x61\x63\x66\x82\x87\x89\x6e\x74\x78\x6b\x6f\x73\x83\ +\x86\x8a\x89\x8e\x91\x73\x79\x7d\x69\x6e\x72\x81\x84\x87\x91\x95\ +\x99\x92\x96\x9a\x8f\x94\x97\x91\x96\x99\x92\x97\x9a\x94\x99\x9c\ +\x96\x99\x9d\x95\x98\x9c\x99\x9d\xa0\x9b\x9d\xa1\x97\x9a\x9e\x98\ +\x9b\x9f\x9a\x9d\xa1\x99\x9c\x9e\x9b\x9f\xa0\x9c\x9f\xa0\x9c\xa0\ +\xa1\x9d\xa1\xa2\x9f\xa2\xa4\x9e\xa0\xa1\xa1\xa3\xa3\xa6\xa8\xa8\ +\xa5\xa7\xa8\xa4\xa6\xa7\xa4\xa6\xa7\xa2\xa4\xa5\xa2\xa4\xa5\xa4\ +\xa6\xa7\xa5\xa7\xa8\xa6\xa6\xa7\xa7\xa8\xa9\xaa\xaa\xab\xa3\xa4\ +\xa5\x5c\x5f\x63\xb0\xb2\xb3\xb0\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\ +\xb4\xb3\xb4\xa7\xa7\xa8\x80\x82\x84\x7e\x80\x82\xa4\xa4\xa5\xb2\ +\xb2\xb3\xb9\xb9\xba\xa9\xa8\xaa\x85\x85\x87\x83\x84\x85\xa6\xa5\ +\xa6\xba\xba\xb8\xba\xba\xb9\xac\xad\xac\x00\x00\x00\xe7\xe1\xde\ +\xe7\xe1\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\xe3\xe0\xe8\ +\xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe2\xe0\xe8\xe2\ +\xe0\xe8\xe2\xe1\xe8\xe2\xe0\xe7\xe1\xdf\xe6\xe0\xdd\xe5\xdf\xdc\ +\xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xda\xe4\xde\xda\xe2\xdc\xd7\xde\ +\xd6\xd2\xdd\xd5\xd1\xe0\xd7\xd3\xe5\xdf\xda\xe8\xe1\xde\xe6\xe0\ +\xdd\xe7\xe0\xdd\xe6\xdf\xdc\xe2\xde\xdb\xe1\xdb\xda\xde\xd8\xd7\ +\xda\xd5\xd4\xd6\xcf\xcd\xce\xc8\xc5\xc3\xbe\xbc\xb3\xad\xac\x9e\ +\x9b\x9c\x7c\x7e\x7e\x4f\x56\x5c\x26\x32\x3b\x25\x30\x38\x47\x4a\ +\x50\x77\x73\x73\x8c\x87\x88\x9a\x96\x96\x9f\x9d\x9c\xa2\xa0\xa0\ +\xa6\xa4\xa5\xa6\xa6\xa7\xa4\xa5\xa5\xa5\xa4\xa4\x9d\x9d\x9d\x81\ +\x83\x84\x71\x75\x76\x77\x7b\x7c\x86\x88\x88\x83\x86\x87\x7c\x80\ +\x81\x81\x85\x86\x89\x8c\x8f\x89\x8c\x90\x87\x8b\x8f\x87\x8c\x90\ +\x88\x8c\x8f\x85\x8b\x8e\x82\x88\x8c\x81\x88\x8c\x81\x88\x8c\x80\ +\x86\x8b\x80\x86\x8a\x80\x86\x8d\x7e\x85\x8c\x7e\x85\x8b\x7d\x85\ +\x8b\x7c\x84\x8b\x7c\x84\x89\x7b\x84\x88\x7c\x85\x8a\x7c\x85\x8c\ +\x7a\x83\x89\x79\x82\x86\x77\x81\x86\x78\x81\x87\x78\x81\x86\x77\ +\x7f\x86\x78\x7e\x85\x7b\x81\x88\x7e\x85\x8a\x7e\x85\x8c\x7b\x84\ +\x8b\x6d\x76\x7c\x34\x3c\x40\x0c\x12\x14\x00\x00\x00\x2c\x30\x34\ +\x5f\x64\x67\x34\x3a\x3e\x26\x2e\x35\x2d\x36\x3d\x01\x04\x07\x4f\ +\x54\x59\x85\x89\x8b\x82\x88\x8c\x6d\x72\x76\x6c\x71\x75\x84\x88\ +\x8b\x87\x8b\x8f\x74\x79\x7c\x6d\x72\x75\x85\x89\x8b\x91\x95\x98\ +\x93\x97\x9b\x95\x9a\x9d\x91\x96\x99\x95\x99\x9c\x97\x9a\x9e\x98\ +\x9b\x9f\x99\x9c\xa0\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x99\x9d\ +\xa0\x98\x9c\x9d\x9b\x9e\x9f\x9f\xa1\xa2\x9c\xa0\xa1\x9d\xa1\xa2\ +\x9d\xa0\xa1\xa0\xa1\xa2\xa0\xa0\xa0\x7a\x7c\x7c\x77\x79\x7a\x96\ +\x98\x99\xa5\xa6\xa7\xa2\xa5\xa5\xa4\xa7\xa7\xa6\xa8\xa9\xa6\xa7\ +\xa8\xa7\xa7\xa8\xa9\xa9\xab\xa8\xa9\xaa\xa6\xa8\xa9\x9b\x9d\x9e\ +\xab\xad\xae\xaf\xaf\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb3\xb2\xb4\xb1\ +\xb1\xb3\xaa\xac\xad\x92\x94\x97\x83\x84\x85\x92\x93\x94\xb6\xb6\ +\xb6\xb8\xb7\xb8\xb4\xb4\xb6\x8f\x90\x91\x88\x88\x89\x94\x94\x94\ +\xbb\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xdd\xda\xe4\xdd\xda\xe5\ +\xdd\xda\xe5\xde\xda\xe5\xde\xdb\xe4\xde\xdc\xe4\xde\xdb\xe5\xde\ +\xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe3\xdd\xda\xe3\xdd\xda\ +\xe3\xdc\xda\xe3\xdc\xda\xe2\xdb\xd8\xe3\xdc\xd9\xe4\xdd\xda\xe4\ +\xde\xda\xe4\xdd\xd9\xe2\xdb\xd7\xde\xd6\xd2\xda\xd0\xcc\xde\xd4\ +\xd0\xe2\xd9\xd5\xe7\xe1\xdc\xe7\xe0\xdd\xe7\xe1\xde\xe8\xe0\xdd\ +\xe5\xdf\xdb\xe2\xdd\xda\xe0\xdb\xd9\xde\xd7\xd6\xd9\xd4\xd3\xd4\ +\xcf\xcd\xcb\xc6\xc3\xbe\xb9\xb7\xaf\xaa\xa8\x94\x93\x92\x6e\x72\ +\x72\x40\x48\x4f\x20\x2b\x33\x2e\x35\x3d\x5c\x5b\x5f\x80\x7d\x7d\ +\x91\x8d\x8d\x9c\x98\x98\xa1\x9f\x9f\xa5\xa3\xa3\xa6\xa5\xa5\xa6\ +\xa6\xa6\xa4\xa4\xa4\xa4\xa3\xa4\x95\x95\x96\x7b\x7e\x7f\x70\x74\ +\x75\x7c\x7f\x80\x86\x88\x89\x82\x84\x85\x7c\x80\x81\x7f\x83\x84\ +\x86\x89\x8c\x8a\x8d\x91\x86\x8a\x8d\x85\x8a\x8d\x85\x8a\x8d\x84\ +\x8a\x8e\x82\x88\x8c\x81\x87\x8c\x81\x87\x8d\x81\x87\x8b\x80\x86\ +\x8b\x81\x88\x8e\x7e\x85\x8b\x80\x88\x8d\x7d\x86\x8b\x7e\x86\x8b\ +\x7d\x86\x8a\x7b\x85\x89\x7c\x85\x8a\x7b\x84\x89\x7b\x83\x88\x79\ +\x81\x87\x78\x80\x87\x78\x80\x87\x78\x80\x87\x77\x7f\x86\x7a\x81\ +\x88\x79\x81\x87\x7b\x83\x88\x7e\x85\x8c\x7c\x84\x8b\x5d\x67\x6d\ +\x1a\x21\x25\x0a\x0f\x12\x06\x0a\x0d\x47\x4a\x4e\x77\x7a\x7c\x1e\ +\x23\x28\x0b\x0e\x10\x32\x3a\x40\x37\x3d\x42\x5a\x60\x65\x6f\x75\ +\x79\x83\x88\x8b\x83\x87\x8b\x6e\x73\x78\x6c\x71\x76\x83\x87\x8b\ +\x8c\x90\x93\x79\x7f\x82\x6b\x71\x74\x87\x8b\x8f\x93\x96\x9b\x96\ +\x99\x9d\x93\x97\x9a\x94\x97\x9b\x97\x9a\x9e\x99\x9c\xa0\x97\x9a\ +\x9e\x96\x99\x9d\x9a\x9d\xa1\x9c\x9e\xa2\x9a\x9d\xa1\x99\x9d\x9f\ +\x9b\xa0\xa0\x9f\xa3\xa3\x9f\xa3\xa4\x9e\xa1\xa2\xa1\xa2\xa3\xa1\ +\xa2\xa3\x66\x67\x68\x3c\x3f\x40\x86\x8a\x8b\xa0\xa1\xa2\xa6\xa7\ +\xa8\xa5\xa6\xa6\xa7\xa8\xa8\xa7\xa8\xa9\xab\xac\xad\xa9\xaa\xab\ +\xa8\xa9\xaa\xaa\xab\xac\xad\xaf\xb0\xac\xad\xaf\xad\xac\xae\xae\ +\xad\xaf\xae\xae\xaf\xaf\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xb0\xae\xaf\ +\xb0\xb6\xb7\xb9\xa1\xa4\xa5\x81\x83\x85\x84\x84\x86\xb2\xb2\xb3\ +\xb5\xb2\xb4\xbb\xba\xba\xa3\xa2\xa4\x84\x85\x86\x86\x85\x85\xb3\ +\xb2\xb2\x00\x00\x00\xd7\xbc\xb1\xe1\xd6\xd1\xe1\xd8\xd5\xe1\xda\ +\xd7\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe2\xdb\xd8\ +\xe2\xdb\xd8\xe2\xdc\xda\xe2\xdc\xda\xe3\xdc\xd9\xe2\xdb\xd8\xe3\ +\xdc\xd9\xe3\xdb\xd8\xe3\xda\xd6\xe0\xd7\xd2\xdf\xd6\xd1\xe0\xd8\ +\xd5\xe0\xd8\xd4\xda\xd1\xcd\xd9\xcf\xcb\xdc\xd3\xd0\xe4\xdc\xd9\ +\xe8\xe1\xdd\xe6\xdf\xdc\xe8\xe1\xde\xe6\xe0\xdd\xe4\xde\xdc\xe1\ +\xdc\xdb\xe0\xd9\xd9\xdb\xd6\xd4\xd6\xd1\xcf\xd1\xcb\xc9\xc7\xc2\ +\xbf\xb8\xb4\xb0\xa6\xa3\x9f\x88\x88\x87\x60\x64\x66\x33\x39\x41\ +\x23\x2a\x33\x3d\x41\x48\x6e\x6d\x6d\x86\x83\x82\x96\x92\x91\x9f\ +\x9c\x9c\xa3\xa1\xa1\xa7\xa5\xa5\xa6\xa6\xa6\xa4\xa4\xa4\xa4\xa3\ +\xa4\xa1\xa1\xa1\x8a\x8c\x8d\x73\x77\x79\x74\x77\x78\x82\x83\x85\ +\x85\x87\x89\x7f\x82\x84\x7c\x80\x81\x80\x84\x85\x82\x85\x88\x87\ +\x8b\x8e\x86\x8b\x8d\x84\x89\x8c\x83\x89\x8c\x82\x88\x8c\x81\x87\ +\x8b\x81\x87\x8c\x80\x86\x8c\x7e\x84\x8a\x7c\x80\x85\x6f\x75\x7c\ +\x6a\x71\x79\x73\x7b\x81\x7b\x84\x89\x7b\x84\x89\x7b\x84\x88\x7c\ +\x85\x89\x7b\x84\x89\x7b\x84\x89\x7c\x85\x8c\x7b\x82\x89\x79\x83\ +\x8b\x79\x80\x89\x7a\x82\x89\x7a\x82\x89\x7b\x82\x89\x79\x80\x86\ +\x79\x7f\x85\x7d\x84\x8a\x80\x88\x8d\x5c\x66\x6c\x13\x18\x1c\x04\ +\x07\x09\x26\x2b\x2f\x5c\x5f\x62\x7a\x7c\x7f\x25\x2e\x34\x00\x01\ +\x01\x24\x26\x2a\x77\x79\x7d\x7c\x81\x86\x6c\x71\x77\x6d\x72\x76\ +\x86\x8a\x8e\x85\x88\x8c\x6d\x72\x76\x6e\x72\x77\x88\x8c\x8f\x90\ +\x94\x99\x7d\x82\x86\x6c\x71\x75\x87\x8a\x8e\x98\x9b\x9e\x96\x99\ +\x9d\x98\x9b\x9f\x98\x9b\x9f\x9a\x9d\xa1\x9b\x9e\xa2\x99\x9c\xa0\ +\x9b\x9e\xa2\x9d\x9f\xa3\x9f\xa2\xa6\x9d\xa0\xa3\x9c\xa0\xa1\x9c\ +\x9f\xa1\xa2\xa6\xa8\x9f\xa2\xa4\xa2\xa3\xa4\x9b\x9e\x9f\x22\x25\ +\x26\x79\x7e\x7f\xa4\xa6\xa6\x8d\x8d\x8f\x97\x97\x9a\xab\xaa\xab\ +\xa4\xa4\xa5\xa6\xa7\xa8\xac\xad\xae\xac\xac\xae\xaa\xac\xad\xac\ +\xae\xaf\xa9\xab\xac\xaa\xac\xac\xac\xad\xaf\xaf\xaf\xb0\xae\xae\ +\xaf\xaf\xb0\xb1\xae\xae\xaf\xae\xaf\xb0\xaf\xae\xb0\xb2\xb2\xb4\ +\xb5\xb6\xb7\xab\xae\xaf\x91\x93\x96\x76\x76\x79\xa4\xa1\xa3\xbc\ +\xb9\xbb\xb7\xb6\xb6\xab\xab\xac\x98\x99\x9a\x82\x80\x82\x00\x00\ +\x00\xa9\x87\x7e\xe0\xcc\xc4\xe3\xdb\xd7\xe1\xda\xd7\xe3\xdc\xd9\ +\xe4\xdd\xda\xe4\xdd\xda\xe3\xdd\xda\xe5\xdd\xda\xe4\xdd\xdb\xe3\ +\xdd\xda\xe5\xdd\xdb\xe2\xda\xd7\xe1\xd7\xd3\xdd\xd2\xcd\xda\xcf\ +\xc9\xd9\xce\xc7\xd7\xcc\xc5\xd8\xcd\xc8\xdc\xd3\xcf\xde\xd6\xd2\ +\xdb\xd2\xce\xd9\xd0\xcc\xdd\xd4\xd0\xe5\xdd\xd9\xe7\xe0\xdd\xe6\ +\xdf\xdc\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xdb\xe0\xda\xda\xdf\xd7\ +\xd7\xda\xd4\xd2\xd4\xce\xca\xcc\xc7\xc2\xc2\xbd\xba\xb3\xaf\xaa\ +\x9c\x9a\x94\x7a\x7b\x7b\x4f\x54\x59\x29\x2f\x37\x29\x2e\x36\x50\ +\x52\x56\x78\x77\x77\x8b\x86\x86\x98\x95\x95\xa1\x9f\x9f\xa5\xa3\ +\xa3\xa7\xa6\xa6\xa6\xa6\xa6\xa3\xa3\xa3\xa3\xa3\xa3\x9d\x9e\x9e\ +\x83\x86\x87\x71\x76\x77\x76\x79\x7a\x84\x85\x87\x83\x86\x87\x80\ +\x83\x84\x7e\x81\x82\x7f\x83\x84\x7f\x82\x86\x85\x89\x8d\x87\x8c\ +\x8f\x83\x88\x8b\x83\x88\x8c\x81\x87\x8c\x82\x88\x8c\x80\x86\x8a\ +\x7e\x86\x8b\x7d\x83\x88\x6e\x74\x79\x44\x4c\x59\x37\x41\x4e\x4f\ +\x56\x60\x70\x77\x7d\x7b\x84\x89\x7b\x84\x88\x7a\x83\x87\x7b\x84\ +\x88\x7b\x85\x8a\x7c\x85\x8c\x79\x82\x89\x79\x82\x89\x7b\x83\x8a\ +\x7a\x82\x89\x7b\x83\x8a\x7b\x82\x89\x7d\x83\x89\x7b\x80\x85\x7b\ +\x82\x87\x7b\x82\x87\x56\x61\x67\x18\x21\x26\x03\x07\x0a\x47\x4b\ +\x4d\x63\x67\x6b\x53\x5a\x61\x36\x43\x4b\x0d\x12\x16\x0a\x0b\x0d\ +\x69\x6c\x72\x86\x8a\x8e\x7c\x81\x85\x67\x6e\x71\x71\x76\x7a\x89\ +\x8c\x91\x86\x8b\x8f\x6d\x73\x77\x6e\x73\x77\x8c\x8f\x93\x8f\x94\ +\x97\x7f\x85\x89\x6e\x73\x78\x89\x8c\x91\x9a\x9d\xa1\x97\x9a\x9e\ +\x96\x99\x9d\x9a\x9d\xa0\x9b\x9e\xa1\x99\x9c\x9f\x9a\x9e\xa0\x9a\ +\x9d\xa0\x9b\x9e\xa2\x9f\xa2\xa5\x98\x9c\x9e\x9d\xa0\xa3\xa0\xa4\ +\xa6\x9e\xa1\xa4\xa2\xa5\xa7\x92\x97\x98\x27\x2d\x30\xa6\xa9\xa9\ +\xa0\xa2\xa2\x6d\x6e\x72\x4a\x4c\x52\xa3\xa3\xa5\xa8\xa8\xa9\xa6\ +\xa6\xa6\xab\xab\xab\xac\xad\xad\xad\xae\xaf\xae\xaf\xaf\xa9\xa8\ +\xa9\xac\xab\xac\xac\xad\xad\xb1\xb1\xb1\xb1\xb1\xb1\xad\xad\xae\ +\xac\xab\xac\xac\xac\xad\xb1\xb1\xb3\xaf\xaf\xb0\xb1\xb1\xb3\xb5\ +\xb5\xb7\xaf\xb0\xb2\x9e\x9e\xa0\x7e\x7d\x7f\x91\x8e\x92\xbd\xbd\ +\xbf\xb9\xb9\xb9\xb1\xb4\xb5\xa3\xa3\xa5\x00\x00\x00\x78\x62\x60\ +\xd4\xb6\xae\xdf\xd6\xd2\xd9\xcf\xcb\xd9\xcf\xcb\xdb\xd2\xcf\xda\ +\xd1\xce\xd8\xcf\xcc\xd9\xd1\xcd\xd9\xd0\xcb\xd8\xcf\xcb\xd6\xca\ +\xc6\xd2\xc5\xbe\xd0\xc1\xba\xcf\xc0\xb7\xcf\xc1\xb9\xd1\xc6\xbe\ +\xd4\xca\xc2\xd8\xce\xc7\xdc\xd3\xcf\xdb\xd2\xce\xdb\xd2\xce\xde\ +\xd5\xd1\xe3\xda\xd6\xe6\xe0\xdc\xe7\xe1\xdd\xe7\xe0\xdd\xe6\xe0\ +\xdd\xe3\xde\xdd\xe2\xdc\xdb\xdf\xda\xd9\xde\xd7\xd6\xd9\xd3\xd2\ +\xd4\xce\xca\xca\xc5\xc0\xbf\xba\xb6\xae\xaa\xa6\x92\x91\x8d\x6b\ +\x6e\x71\x3d\x43\x4a\x24\x2c\x34\x35\x39\x40\x60\x60\x63\x80\x7e\ +\x80\x92\x8f\x8f\x9d\x9a\x9b\xa1\x9f\x9f\xa5\xa4\xa4\xa6\xa6\xa6\ +\xa6\xa5\xa5\xa2\xa3\xa3\xa3\xa3\xa3\x96\x97\x97\x7b\x7e\x80\x6d\ +\x71\x73\x74\x77\x78\x83\x85\x85\x80\x83\x84\x7e\x82\x83\x80\x84\ +\x85\x7a\x7e\x7f\x7f\x82\x85\x82\x86\x8a\x85\x89\x8d\x83\x88\x8b\ +\x82\x88\x8b\x82\x88\x8b\x81\x87\x8c\x80\x87\x8b\x7f\x89\x8c\x7f\ +\x85\x89\x65\x6b\x73\x31\x3c\x48\x2a\x34\x3f\x3d\x45\x4f\x67\x6c\ +\x73\x7d\x83\x89\x7b\x83\x88\x7a\x83\x87\x7b\x84\x88\x7a\x84\x89\ +\x79\x81\x88\x79\x82\x88\x79\x81\x89\x7b\x83\x8a\x7b\x83\x8a\x7b\ +\x82\x89\x7c\x84\x8b\x7e\x85\x8c\x7b\x82\x86\x7c\x82\x87\x77\x7d\ +\x81\x62\x6a\x6e\x2e\x3a\x41\x0a\x16\x1d\x52\x59\x5d\x73\x7a\x7e\ +\x51\x5c\x63\x46\x52\x5b\x26\x33\x3c\x26\x2f\x35\x57\x5e\x65\x75\ +\x7a\x7f\x85\x89\x8d\x7b\x81\x83\x65\x6c\x70\x71\x75\x7a\x8f\x92\ +\x96\x89\x8d\x91\x72\x76\x7b\x72\x76\x7b\x8f\x93\x96\x93\x97\x9a\ +\x83\x88\x8c\x6c\x71\x76\x8b\x8e\x93\x98\x9a\x9e\x98\x9b\x9e\x9b\ +\x9f\xa1\x9c\x9f\xa2\x9a\x9e\xa0\x99\x9d\x9f\x9a\x9e\xa1\x9c\x9f\ +\xa3\x9f\xa2\xa6\x9d\xa0\xa4\x9e\xa1\xa5\xa0\xa3\xa7\x9b\x9e\xa1\ +\xa1\xa5\xa6\x95\x9a\x9c\x4f\x57\x5b\xad\xae\xae\x94\x97\x96\x5e\ +\x63\x66\x81\x84\x87\xa9\xa9\xaa\xa9\xa9\xab\xa6\xa7\xa8\xa9\xa9\ +\xaa\xab\xab\xab\xac\xad\xad\xac\xab\xad\xad\xad\xad\xa5\xa5\xa5\ +\xae\xae\xae\xaf\xaf\xaf\xb1\xb1\xb1\xad\xad\xad\xad\xac\xad\xac\ +\xac\xad\xb0\xaf\xb1\xb0\xb0\xb2\xb2\xb3\xb4\xb2\xb4\xb5\xb2\xb3\ +\xb5\xba\xb9\xbb\xaf\xaf\xb1\x87\x87\x8b\x6f\x70\x74\xb4\xb3\xb3\ +\xb9\xba\xbb\xb4\xb6\xb6\x00\x00\x00\x97\x8a\x86\xd3\xbf\xba\xdd\ +\xd5\xd1\xd3\xc9\xc5\xcc\xc1\xbd\xcf\xc5\xc3\xcb\xc2\xbf\xc5\xbc\ +\xba\xc4\xbb\xb8\xc5\xbd\xb9\xc8\xc0\xbc\xc6\xbd\xb6\xc6\xbc\xb4\ +\xc7\xbd\xb4\xc9\xbf\xb5\xce\xc3\xb9\xd3\xc8\xc0\xd7\xcd\xc5\xda\ +\xd0\xc9\xdf\xd7\xd2\xdf\xd6\xd3\xdd\xd4\xd0\xdf\xd6\xd2\xe4\xdb\ +\xd8\xe7\xe0\xdd\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe3\xdd\xdd\ +\xe0\xdc\xdb\xdf\xdb\xd9\xdc\xd5\xd3\xd6\xd0\xcd\xd0\xc9\xc5\xc5\ +\xc0\xba\xb8\xb4\xaf\xa5\xa1\x9f\x86\x86\x85\x5a\x5f\x62\x30\x39\ +\x40\x25\x2e\x36\x44\x47\x4c\x71\x6e\x70\x89\x86\x88\x98\x94\x96\ +\xa1\x9e\xa0\xa3\xa2\xa3\xa5\xa5\xa5\xa7\xa7\xa7\xa6\xa5\xa5\xa3\ +\xa3\xa3\xa1\xa1\xa1\x8e\x8f\x90\x74\x77\x7a\x6e\x72\x74\x79\x7c\ +\x7d\x83\x85\x85\x7f\x82\x83\x7e\x80\x81\x7f\x84\x85\x79\x7d\x7f\ +\x7c\x80\x83\x7f\x82\x86\x84\x88\x8b\x85\x89\x8d\x83\x88\x8d\x83\ +\x89\x8d\x81\x87\x8d\x7d\x83\x89\x7d\x84\x8a\x7c\x82\x89\x64\x6d\ +\x75\x3c\x48\x52\x37\x3f\x4a\x48\x4f\x59\x60\x64\x6e\x7b\x7f\x85\ +\x7d\x84\x89\x7a\x83\x87\x7a\x83\x88\x7b\x83\x89\x7b\x83\x8a\x79\ +\x82\x89\x7c\x83\x8c\x7c\x85\x8c\x7d\x85\x8c\x7b\x82\x89\x7c\x82\ +\x89\x7a\x81\x87\x79\x80\x85\x7a\x80\x85\x7a\x80\x84\x70\x77\x7b\ +\x49\x55\x5d\x46\x54\x5b\x6c\x75\x7a\x7c\x83\x88\x73\x7a\x7f\x44\ +\x51\x59\x3d\x4a\x54\x71\x77\x7a\x73\x79\x7c\x5b\x62\x66\x77\x7b\ +\x7e\x88\x8c\x8d\x7a\x7f\x83\x69\x70\x73\x70\x74\x77\x72\x74\x77\ +\x7b\x7f\x81\x6d\x73\x77\x72\x78\x7c\x92\x94\x98\x96\x9a\x9d\x85\ +\x8a\x8d\x6a\x6f\x72\x87\x89\x8d\x9b\x9d\x9e\x99\x9c\x9f\x9a\x9d\ +\xa1\x9a\x9d\xa1\x99\x9d\xa0\x9a\x9d\xa1\x9d\xa0\xa4\x9c\x9f\xa3\ +\x9d\xa0\xa4\x9f\xa2\xa6\xa2\xa5\xa9\xa3\xa6\xaa\x9f\xa3\xa4\x9a\ +\x9d\xa0\x74\x7a\x7d\xa4\xa6\xa7\x8a\x8c\x8d\x5c\x61\x63\xae\xad\ +\xad\xae\xac\xad\xb1\xae\xaf\x9f\x9d\x9d\xa5\xa5\xa5\xa9\xa9\xa9\ +\xac\xac\xae\xab\xaa\xad\xac\xac\xad\xac\xab\xac\xb1\xb1\xb1\xad\ +\xad\xad\xb0\xb0\xb0\xb0\xb0\xb0\xb2\xb2\xb2\xb0\xaf\xb0\xae\xae\ +\xaf\xb1\xb0\xb2\xb4\xb4\xb5\xb0\xb0\xb1\xb8\xb7\xba\xb7\xb9\xba\ +\xb3\xb3\xb5\xb1\xb2\xb3\x9e\xa1\xa4\x6c\x6d\x71\xa2\xa2\xa4\xbb\ +\xbb\xba\x00\x00\x00\xc9\xbc\xb8\xdd\xd2\xce\xe1\xda\xd7\xd8\xd0\ +\xcd\xce\xc4\xc0\xd2\xca\xc6\xd4\xcc\xc9\xce\xc6\xc3\xcb\xc4\xc0\ +\xcc\xc3\xbf\xcc\xc3\xbf\xcb\xc1\xbd\xcc\xc3\xbc\xd1\xc7\xbf\xd5\ +\xcb\xc3\xda\xd0\xc9\xdd\xd4\xd0\xdf\xd6\xd3\xe2\xdb\xd7\xe2\xdb\ +\xd7\xde\xd5\xd2\xdd\xd4\xd0\xe0\xd7\xd3\xe6\xe0\xdd\xe6\xe0\xdd\ +\xe6\xdf\xdc\xe6\xe1\xde\xe4\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\ +\xda\xd8\xda\xd4\xd2\xd5\xce\xcb\xcd\xc7\xc2\xc2\xbd\xb9\xb2\xad\ +\xac\x9b\x98\x99\x78\x78\x7b\x47\x50\x55\x27\x32\x39\x2f\x36\x3e\ +\x54\x56\x5a\x7c\x79\x7b\x8f\x8c\x8e\x9c\x99\x9b\xa2\x9f\xa1\xa4\ +\xa3\xa3\xa8\xa8\xa8\xa7\xa7\xa7\xa5\xa5\xa5\xa5\xa4\xa5\xa0\x9f\ +\xa1\x87\x89\x8a\x6f\x72\x74\x70\x74\x75\x7c\x7e\x7f\x83\x85\x87\ +\x7e\x82\x84\x7c\x80\x81\x79\x7d\x7e\x76\x7a\x7c\x77\x7b\x7d\x7a\ +\x7d\x81\x80\x83\x87\x84\x88\x8d\x84\x88\x8d\x81\x87\x8c\x81\x87\ +\x8c\x80\x86\x8b\x7f\x85\x8b\x7c\x84\x8b\x64\x6f\x76\x44\x52\x5b\ +\x3c\x47\x51\x3f\x47\x54\x57\x5c\x67\x75\x79\x80\x7d\x84\x88\x7b\ +\x85\x88\x7c\x85\x8a\x7b\x84\x8a\x7b\x83\x8a\x7a\x82\x89\x79\x81\ +\x88\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x83\x8b\x7c\x84\x8b\ +\x7b\x84\x89\x7c\x84\x89\x7e\x84\x88\x76\x7d\x81\x66\x70\x75\x70\ +\x77\x7d\x7b\x81\x86\x7f\x86\x8b\x7e\x84\x89\x6d\x76\x7c\x57\x61\ +\x68\x79\x7d\x82\x7b\x7f\x82\x4d\x52\x57\x4e\x53\x58\x7e\x81\x84\ +\x89\x8e\x90\x77\x7d\x7f\x33\x39\x3c\x3f\x41\x45\x7e\x81\x84\x8b\ +\x91\x94\x72\x78\x7c\x74\x78\x7c\x94\x96\x99\x95\x99\x9a\x87\x8c\ +\x8e\x65\x67\x69\x89\x88\x8a\x9b\x9e\x9f\x97\x9b\x9e\x99\x9c\xa0\ +\x99\x9c\xa0\x9c\x9f\xa3\x9d\xa0\xa4\x9d\xa0\xa4\x99\x9c\xa0\x9d\ +\xa0\xa4\xa0\xa3\xa7\xa4\xa7\xab\xa0\xa4\xa5\xa1\xa5\xa7\x95\x99\ +\x9a\x84\x87\x89\x53\x54\x56\x4c\x4a\x4b\x5c\x58\x58\x30\x2d\x2e\ +\x10\x0d\x0e\x41\x3f\x41\x9b\x9a\x9b\xae\xae\xaf\xa8\xa9\xa9\xae\ +\xad\xae\xab\xab\xab\xb2\xb2\xb2\xb0\xb0\xb0\xaf\xaf\xaf\xae\xae\ +\xae\xb3\xb3\xb3\xb3\xb3\xb3\xb2\xb2\xb2\xaf\xaf\xaf\xb3\xb3\xb4\ +\xb2\xb1\xb3\xb3\xb2\xb4\xb7\xb7\xb8\xb2\xb1\xb3\xb4\xb3\xb5\xb5\ +\xb6\xb7\xb7\xb7\xb9\xb2\xb4\xb5\x81\x81\x83\x89\x87\x87\x00\x00\ +\x00\xd2\xc5\xc0\xdd\xd0\xcb\xe0\xd5\xd0\xd4\xc9\xc5\xcc\xc1\xbd\ +\xd6\xcb\xc8\xdc\xd4\xd1\xdc\xd5\xd2\xda\xd2\xcf\xda\xd3\xcf\xdb\ +\xd4\xd0\xdc\xd5\xd0\xdd\xd5\xd1\xdf\xd6\xd3\xe1\xd8\xd5\xe2\xda\ +\xd7\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xda\xd6\xdf\xd7\xd3\xdc\xd3\xcf\ +\xde\xd4\xd0\xe3\xdc\xd9\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe5\ +\xe0\xdd\xe4\xde\xdb\xe1\xdc\xda\xe0\xdb\xda\xdd\xd8\xd4\xd9\xd3\ +\xd0\xd3\xcc\xc8\xc9\xc4\xbf\xbd\xb9\xb6\xab\xa9\xa7\x8f\x8f\x8f\ +\x69\x6d\x71\x37\x41\x48\x22\x2d\x35\x3a\x40\x48\x67\x66\x6a\x85\ +\x81\x83\x94\x91\x93\x9d\x9b\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa5\xa5\ +\xa5\xa6\xa6\xa6\xa6\xa6\xa6\xa4\xa3\xa3\x9c\x9c\x9d\x7f\x83\x84\ +\x6c\x71\x72\x6d\x71\x74\x7e\x81\x83\x80\x84\x86\x7e\x83\x83\x7d\ +\x81\x82\x72\x76\x79\x73\x76\x7a\x77\x7a\x7e\x7b\x7e\x82\x7c\x7f\ +\x83\x81\x85\x88\x82\x87\x8a\x7f\x84\x89\x7d\x83\x87\x7d\x83\x8a\ +\x80\x87\x8e\x7c\x84\x8b\x6b\x75\x7c\x4d\x59\x62\x44\x4f\x5a\x39\ +\x44\x50\x47\x4e\x5a\x73\x77\x7f\x7d\x84\x88\x7c\x84\x88\x7a\x83\ +\x87\x79\x82\x87\x7b\x84\x8a\x7b\x83\x8a\x7b\x82\x8a\x7a\x82\x89\ +\x7c\x84\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7d\ +\x85\x8b\x7c\x84\x89\x79\x81\x85\x77\x7f\x83\x7d\x85\x89\x80\x87\ +\x8c\x7f\x87\x8b\x81\x87\x8c\x83\x89\x8e\x74\x7a\x7f\x53\x5b\x60\ +\x31\x36\x3c\x2f\x33\x38\x53\x58\x5b\x57\x5c\x5f\x7d\x82\x83\x62\ +\x67\x66\x12\x14\x15\x1d\x1e\x21\x4a\x4d\x51\x80\x83\x87\x8e\x92\ +\x95\x70\x77\x7a\x72\x76\x79\x93\x97\x98\x96\x99\x9a\x3a\x3b\x3b\ +\x1c\x1b\x1c\x81\x7e\x7f\x97\x9a\x9b\x97\x9b\x9e\x98\x9b\x9f\x9b\ +\x9e\xa2\x9c\x9f\xa3\x9a\x9d\xa1\x9b\x9e\xa2\x9a\x9d\xa1\x9d\xa0\ +\xa4\x9f\xa0\xa4\xa3\xa6\xa8\xa6\xa9\xaa\xa2\xa5\xa6\x8a\x8e\x90\ +\x35\x3b\x3e\x1a\x20\x24\x3f\x47\x4a\x68\x70\x73\x3a\x40\x44\x6c\ +\x70\x74\xa5\xa5\xa7\x99\x97\x9a\xa2\xa2\xa2\xac\xac\xac\xad\xad\ +\xae\xb0\xb0\xb1\xae\xad\xae\xaa\xab\xaa\xad\xad\xad\xaf\xaf\xaf\ +\xb0\xb0\xb0\xb1\xb1\xb1\xb2\xb2\xb2\xb4\xb4\xb5\xb2\xb1\xb3\xb3\ +\xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\xb6\xbb\xba\ +\xbc\xbc\xbb\xbd\xaf\xb2\xb3\x97\x99\x9a\x00\x00\x00\xd4\xc9\xc2\ +\xdd\xd2\xcd\xd4\xc9\xc4\xc2\xb8\xb4\xc6\xbc\xb7\xd7\xcd\xc9\xe0\ +\xd9\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe2\xdb\xd8\xe1\xda\xd7\xe2\xdb\ +\xd8\xe2\xdb\xd8\xe3\xdb\xd8\xe2\xd9\xd6\xe2\xda\xd7\xe2\xda\xd7\ +\xe3\xdc\xd9\xe3\xdc\xd9\xdf\xd7\xd3\xdd\xd4\xd0\xe0\xd7\xd3\xe5\ +\xdd\xda\xe7\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdd\ +\xda\xe1\xdc\xd9\xde\xd9\xd7\xdc\xd7\xd6\xd7\xd1\xd0\xd0\xc9\xc6\ +\xc4\xbf\xbc\xb7\xb3\xb1\xa5\xa2\xa2\x83\x84\x86\x5a\x5f\x67\x2e\ +\x39\x41\x25\x2f\x38\x49\x4d\x55\x74\x72\x74\x8a\x87\x88\x98\x95\ +\x97\xa1\x9e\xa0\xa5\xa4\xa4\xa7\xa6\xa6\xa7\xa7\xa7\xa6\xa6\xa6\ +\xa4\xa3\xa4\xa3\xa3\xa3\x93\x93\x94\x77\x7b\x7d\x6b\x70\x73\x72\ +\x74\x78\x83\x84\x87\x82\x84\x87\x80\x82\x86\x82\x84\x87\x74\x78\ +\x7b\x70\x74\x77\x75\x79\x7a\x7a\x7f\x81\x79\x7e\x82\x7e\x82\x85\ +\x82\x86\x8a\x7f\x85\x89\x7e\x83\x88\x7e\x83\x89\x7c\x83\x8a\x7d\ +\x84\x8b\x71\x7b\x82\x4b\x5b\x62\x2c\x39\x45\x22\x2e\x39\x39\x42\ +\x4e\x6f\x74\x7b\x7e\x84\x89\x7d\x85\x89\x7b\x84\x87\x7a\x83\x88\ +\x7c\x84\x8a\x7a\x82\x89\x7b\x83\x8a\x7b\x83\x8a\x7e\x86\x8d\x80\ +\x87\x8f\x7f\x88\x8e\x7d\x86\x8c\x7c\x83\x8a\x7c\x85\x8b\x7b\x83\ +\x88\x7b\x82\x88\x7b\x82\x88\x7c\x83\x88\x80\x86\x8b\x80\x87\x8c\ +\x84\x8c\x91\x86\x8c\x91\x82\x88\x8d\x6a\x72\x79\x09\x10\x14\x1a\ +\x1b\x1d\x45\x49\x4d\x5e\x61\x66\x6e\x70\x72\x5c\x60\x60\x18\x19\ +\x19\x03\x04\x04\x29\x2b\x2e\x75\x78\x7b\x93\x97\x98\x92\x97\x98\ +\x74\x7a\x7e\x73\x77\x7a\x84\x86\x87\x09\x09\x09\x00\x00\x00\x2b\ +\x2e\x30\x86\x8a\x8c\x9a\x9d\xa0\x96\x99\x9c\x9a\x9c\xa0\x9c\x9f\ +\xa2\x97\x9a\x9e\x98\x9b\x9f\x9a\x9c\x9f\x9c\x9e\xa2\x9d\x9e\xa2\ +\xa2\xa4\xa6\xa9\xab\xac\xa5\xa7\xaa\xa5\xa8\xab\xa6\xab\xae\xa1\ +\xa8\xac\xa5\xac\xb0\x9e\xa4\xa7\x63\x69\x6b\x8d\x90\x92\x3f\x3f\ +\x42\x23\x25\x29\x5a\x5c\x5e\x9e\x9e\x9f\xb2\xb1\xb2\xaf\xaf\xb0\ +\xaf\xae\xb0\xae\xae\xae\xad\xad\xae\xaf\xaf\xaf\xb2\xb2\xb2\xad\ +\xad\xae\xaf\xaf\xaf\xb3\xb3\xb3\xb0\xb0\xb1\xb7\xb6\xb8\xb2\xb1\ +\xb3\xb1\xb0\xb2\xb6\xb5\xb8\xb6\xb4\xb7\xb6\xb6\xb7\xbb\xba\xbb\ +\xb7\xb8\xb9\xba\xbb\xbd\x00\x00\x00\xd4\xc8\xc0\xd4\xca\xc3\xc2\ +\xb7\xb1\xbf\xb6\xb2\xcd\xc2\xbe\xdc\xd1\xce\xe0\xd8\xd5\xe1\xda\ +\xd7\xe1\xda\xd7\xe1\xda\xd7\xe0\xd9\xd6\xe1\xda\xd7\xe2\xdb\xd8\ +\xe3\xdb\xd8\xe3\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe5\xde\xdb\xe3\ +\xdc\xd9\xdf\xd6\xd3\xde\xd6\xd2\xe1\xd9\xd6\xe6\xe0\xdd\xe7\xe1\ +\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe0\xda\xd7\ +\xdd\xd8\xd5\xda\xd5\xd4\xd4\xcf\xcd\xcd\xc8\xc6\xc2\xbd\xbd\xb2\ +\xae\xad\x98\x97\x97\x73\x77\x7a\x47\x50\x58\x27\x32\x39\x2f\x37\ +\x3f\x5b\x5c\x62\x7d\x79\x7b\x91\x8c\x8d\x9b\x97\x98\xa2\xa0\xa0\ +\xa5\xa3\xa3\xa6\xa4\xa5\xa7\xa7\xa7\xa5\xa5\xa5\xa3\xa3\xa3\xa1\ +\xa0\xa1\x8c\x8c\x8d\x70\x74\x77\x6b\x70\x74\x77\x78\x7c\x83\x83\ +\x85\x82\x84\x85\x80\x82\x83\x7e\x81\x82\x73\x77\x78\x6c\x70\x71\ +\x73\x76\x78\x78\x7c\x7f\x77\x7b\x7f\x78\x7c\x80\x81\x85\x88\x82\ +\x88\x8c\x7f\x85\x8a\x7e\x84\x89\x7e\x86\x8c\x7c\x84\x8b\x73\x7d\ +\x84\x51\x61\x68\x21\x33\x3c\x15\x24\x2e\x3e\x4a\x55\x6e\x72\x79\ +\x74\x78\x7d\x72\x78\x7d\x78\x7e\x83\x7a\x81\x86\x78\x80\x86\x78\ +\x80\x87\x7b\x83\x8a\x7b\x83\x8a\x7d\x86\x8d\x7d\x87\x8e\x7c\x86\ +\x8d\x7c\x84\x8b\x7b\x84\x8a\x7d\x86\x8c\x7e\x86\x8d\x7e\x86\x8d\ +\x7c\x84\x8b\x7b\x82\x88\x7d\x83\x88\x81\x89\x8d\x85\x8c\x90\x84\ +\x8c\x90\x81\x87\x8a\x77\x7d\x80\x1c\x25\x29\x01\x01\x02\x32\x35\ +\x37\x85\x88\x89\x73\x77\x77\x3c\x40\x42\x10\x12\x15\x00\x00\x00\ +\x43\x46\x47\x6b\x6f\x73\x85\x87\x88\x93\x96\x97\x92\x96\x99\x77\ +\x7b\x7f\x2e\x31\x35\x00\x00\x00\x0f\x10\x11\x6c\x71\x74\x74\x78\ +\x7a\x79\x7d\x7f\x97\x9b\x9c\x9b\x9e\x9f\x9e\xa0\xa1\x9c\x9e\xa1\ +\x98\x9b\x9f\x9c\x9e\xa0\x9d\xa0\xa1\x9e\xa0\xa1\xa3\xa5\xa6\xa7\ +\xa8\xaa\xa5\xa6\xa9\xa2\xa4\xa7\xa8\xaa\xab\xa3\xa6\xa7\x9b\x9e\ +\x9f\x60\x64\x65\x6a\x6e\x6f\xa1\xa3\xa4\x33\x36\x37\x93\x98\x98\ +\xb4\xb8\xb8\x5d\x5d\x60\xaa\xaa\xab\xa1\xa0\xa1\xa1\xa1\xa1\xac\ +\xac\xae\xb1\xb1\xb3\xb0\xaf\xb0\xaf\xaf\xb0\xaf\xaf\xaf\xb1\xb1\ +\xb1\xb2\xb2\xb2\xb5\xb5\xb5\xb9\xb8\xba\xb5\xb4\xb6\xb1\xb0\xb2\ +\xb4\xb3\xb5\xb6\xb5\xb7\xb9\xb8\xb9\xbc\xbc\xbd\xb7\xb6\xb8\xba\ +\xb8\xba\x00\x00\x00\xc0\xb0\xa9\xc5\xb9\xb2\xbd\xb1\xab\xc6\xb8\ +\xb3\xd6\xc9\xc5\xdf\xd6\xd3\xe1\xd8\xd7\xe0\xd9\xd7\xe2\xdb\xd8\ +\xe2\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdb\xd8\xe3\xdc\xd9\xe3\ +\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdc\xd9\xe1\xda\ +\xd7\xe2\xda\xd6\xe4\xdd\xda\xe6\xe1\xde\xe6\xe1\xde\xe5\xe1\xde\ +\xe5\xe1\xde\xe4\xde\xdb\xe2\xdd\xda\xdf\xda\xd7\xdd\xd8\xd5\xd8\ +\xd3\xd2\xd2\xcd\xcb\xc8\xc3\xc2\xbc\xb6\xb7\xaa\xa5\xa6\x8c\x8c\ +\x8d\x63\x6a\x6f\x37\x43\x4b\x28\x32\x3a\x40\x45\x4c\x6d\x6b\x6e\ +\x85\x82\x83\x95\x90\x92\x9e\x9a\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa7\ +\xa7\xa7\xa6\xa5\xa6\xa5\xa4\xa6\xa4\xa3\xa5\x9c\x9b\x9d\x81\x83\ +\x85\x69\x70\x73\x68\x6d\x70\x7a\x7c\x7e\x83\x84\x85\x7c\x7e\x7f\ +\x75\x78\x79\x72\x74\x75\x71\x74\x75\x68\x6d\x6d\x71\x74\x76\x78\ +\x7c\x7f\x79\x7e\x81\x77\x7c\x7f\x7c\x80\x84\x7f\x85\x89\x80\x86\ +\x8b\x7c\x82\x87\x7e\x84\x8b\x7f\x86\x8c\x78\x80\x86\x6e\x79\x7e\ +\x5b\x6a\x72\x53\x62\x6a\x62\x6d\x72\x6b\x71\x76\x47\x4e\x56\x37\ +\x3f\x49\x60\x64\x6b\x77\x7c\x82\x7b\x81\x88\x79\x81\x87\x7b\x83\ +\x8a\x7e\x86\x8d\x7e\x87\x8e\x7d\x86\x8d\x7d\x85\x8c\x7e\x86\x8d\ +\x80\x88\x8f\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8d\x7d\x86\x8c\x7c\ +\x84\x88\x7e\x86\x8a\x81\x88\x8d\x82\x88\x8d\x84\x8a\x8e\x75\x7b\ +\x7e\x45\x4b\x4e\x3c\x43\x46\x0e\x12\x15\x27\x29\x2c\x82\x84\x85\ +\x5a\x5c\x5d\x16\x19\x1c\x18\x1c\x1f\x09\x0c\x0e\x52\x55\x55\x87\ +\x8a\x8c\x71\x75\x78\x80\x84\x86\x95\x96\x98\x8f\x91\x93\x13\x15\ +\x18\x00\x00\x00\x28\x2b\x2c\x98\x9d\x9e\x7a\x7f\x82\x4d\x54\x58\ +\x7d\x81\x83\x99\x9b\x9d\xa1\xa2\xa3\xa0\xa4\xa4\x9d\xa0\xa2\xa0\ +\xa2\xa3\xa1\xa3\xa4\x9f\xa1\xa2\xa5\xa7\xa8\xa8\xa9\xab\xa3\xa5\ +\xa8\xa7\xa9\xaa\xa9\xab\xae\xa8\xaa\xad\xa3\xa5\xa9\x69\x6d\x6f\ +\x6e\x72\x73\xa8\xaa\xac\x6a\x6f\x70\x8e\x92\x91\xa0\xa2\xa1\x1a\ +\x1a\x1c\xa1\xa1\xa4\x6a\x6a\x6f\x77\x77\x7b\xaf\xb1\xb2\xb2\xb3\ +\xb5\xad\xad\xaf\xb2\xb1\xb2\xb3\xb3\xb3\xb3\xb3\xb3\xb1\xb0\xb0\ +\xb6\xb5\xb6\xb7\xb6\xb8\xb1\xb0\xb2\xb5\xb4\xb6\xb5\xb4\xb6\xb6\ +\xb5\xb7\xb9\xb8\xba\xb9\xb7\xba\xb4\xb4\xb5\xb7\xb7\xb8\x00\x00\ +\x00\xb0\xa7\xa2\xc9\xc0\xbb\xd0\xc7\xc2\xd7\xce\xc9\xdf\xd8\xd4\ +\xe1\xda\xd8\xe0\xd8\xd5\xe1\xd9\xd5\xe2\xdb\xd7\xe3\xdc\xd9\xe3\ +\xdc\xd9\xe3\xdc\xd9\xe2\xda\xd7\xe2\xd9\xd5\xe3\xda\xd7\xe2\xdb\ +\xd8\xe3\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe4\xdd\xda\xe5\xde\xda\ +\xe6\xdf\xdc\xe7\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe2\ +\xdd\xda\xe1\xdc\xd9\xdd\xd8\xd4\xdb\xd6\xd3\xd6\xd1\xcf\xcf\xca\ +\xc8\xc4\xbf\xbf\xb6\xb1\xb2\xa1\x9d\x9d\x80\x7f\x81\x55\x5b\x62\ +\x2e\x3a\x42\x29\x33\x3b\x50\x53\x57\x77\x74\x75\x8c\x87\x88\x99\ +\x94\x95\xa1\x9d\x9e\xa4\xa2\xa2\xa8\xa6\xa7\xa8\xa6\xa8\xa7\xa5\ +\xa7\xa3\xa3\xa4\xa0\x9f\xa1\x90\x90\x92\x74\x79\x7c\x66\x6d\x70\ +\x6b\x70\x72\x7d\x7f\x81\x81\x83\x85\x71\x73\x74\x5d\x61\x64\x5b\ +\x5e\x60\x68\x6a\x6b\x6a\x6d\x6d\x70\x73\x75\x7a\x7d\x81\x79\x7d\ +\x82\x78\x7c\x80\x77\x7c\x7f\x7d\x82\x85\x7d\x82\x87\x7c\x82\x87\ +\x7d\x83\x89\x7d\x83\x89\x7d\x84\x8a\x7b\x83\x88\x79\x82\x87\x74\ +\x7e\x83\x77\x80\x84\x60\x6a\x70\x20\x2d\x38\x0e\x1a\x26\x40\x46\ +\x50\x6c\x70\x76\x79\x80\x84\x79\x82\x85\x7d\x85\x8c\x7f\x87\x8e\ +\x7e\x86\x8c\x7d\x86\x8d\x7d\x85\x8c\x7c\x85\x8c\x7e\x87\x8e\x81\ +\x88\x90\x80\x88\x8f\x7e\x86\x8d\x7d\x86\x8b\x7c\x85\x8a\x7d\x86\ +\x8a\x7f\x88\x8c\x80\x8a\x8e\x84\x8c\x8f\x59\x64\x66\x03\x08\x0b\ +\x3b\x3f\x42\x29\x30\x32\x37\x3b\x3f\x6b\x6e\x70\x44\x47\x48\x06\ +\x08\x0a\x17\x1c\x1e\x24\x2c\x2f\x6a\x6e\x6f\x95\x97\x98\x89\x8e\ +\x8f\x6a\x70\x73\x83\x85\x88\x5e\x60\x62\x00\x00\x00\x04\x05\x05\ +\x48\x4c\x4e\x8b\x8d\x8f\x70\x75\x77\x75\x7c\x7e\x7e\x81\x84\x7b\ +\x7d\x80\x99\x9b\x9c\xa1\xa4\xa5\x9f\xa2\xa3\xa5\xa7\xa8\xa4\xa6\ +\xa7\xa3\xa5\xa6\xa8\xaa\xab\xa7\xa9\xaa\xa2\xa4\xa6\xab\xac\xaf\ +\xaa\xab\xaf\xaa\xab\xaf\xab\xac\xb0\xab\xae\xb1\x9e\xa2\xa3\xa5\ +\xa7\xa9\x9f\xa3\xa3\x82\x87\x86\x4c\x4f\x50\x33\x36\x39\xa5\xa7\ +\xaa\x5a\x5c\x61\x80\x81\x86\xb3\xb4\xb6\xaf\xb1\xb3\xad\xae\xaf\ +\xae\xae\xaf\xb3\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\xb6\xb5\xb7\xb4\ +\xb4\xb5\xb2\xb1\xb3\xb8\xb7\xb8\xb6\xb5\xb7\xb3\xb2\xb4\xba\xb9\ +\xbb\xb3\xb2\xb4\xb6\xb5\xb7\xbc\xbb\xbd\x00\x00\x00\xc2\xb8\xb1\ +\xd9\xcf\xc9\xdf\xd7\xd2\xe2\xdb\xd6\xe3\xdd\xd8\xe2\xdb\xd8\xe0\ +\xd8\xd4\xe0\xd7\xd2\xdf\xd8\xd4\xe0\xd9\xd5\xe0\xd9\xd5\xe2\xdb\ +\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xde\xdb\ +\xe5\xdf\xdc\xe5\xdf\xdc\xe6\xdf\xdc\xe6\xe0\xdc\xe6\xe0\xdd\xe7\ +\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe1\xdc\ +\xd9\xdc\xd7\xd4\xd9\xd4\xd2\xd4\xce\xcc\xcb\xc6\xc5\xc0\xbb\xbb\ +\xb0\xab\xac\x97\x94\x94\x71\x73\x75\x44\x4c\x53\x28\x33\x3c\x30\ +\x39\x3f\x61\x61\x63\x7f\x7b\x79\x91\x8c\x8c\x9d\x99\x9a\xa3\x9f\ +\xa1\xa6\xa2\xa3\xa7\xa5\xa6\xa8\xa6\xa6\xa5\xa4\xa5\xa2\xa2\xa3\ +\x96\x97\x98\x7c\x80\x82\x69\x6f\x73\x66\x6d\x70\x73\x77\x79\x82\ +\x84\x85\x7e\x80\x81\x6a\x6d\x6f\x45\x4e\x52\x3f\x45\x49\x58\x5b\ +\x5d\x66\x6a\x6b\x6f\x72\x75\x7a\x7e\x82\x79\x7d\x82\x78\x7c\x80\ +\x74\x78\x7c\x79\x7d\x82\x7d\x82\x87\x7c\x82\x87\x7c\x82\x87\x7d\ +\x83\x88\x7b\x82\x87\x7d\x85\x8a\x7b\x84\x89\x7b\x83\x89\x78\x81\ +\x87\x58\x65\x6e\x21\x34\x41\x33\x3e\x4a\x57\x5e\x66\x63\x69\x70\ +\x76\x7c\x81\x7a\x82\x86\x7d\x85\x8c\x80\x88\x8e\x7f\x88\x8d\x7e\ +\x86\x8d\x7b\x83\x89\x7d\x85\x8c\x7c\x84\x8b\x7f\x87\x8f\x81\x89\ +\x91\x82\x8a\x91\x7f\x87\x8d\x7e\x86\x8b\x80\x87\x8c\x81\x88\x8c\ +\x82\x8a\x8e\x85\x8d\x91\x5b\x68\x6b\x02\x06\x0a\x0c\x0f\x12\x4d\ +\x54\x57\x7f\x82\x83\x70\x74\x75\x30\x37\x3a\x00\x00\x00\x0e\x12\ +\x14\x50\x56\x59\x72\x76\x79\x86\x88\x89\x97\x99\x9a\x90\x94\x95\ +\x6e\x73\x77\x19\x1b\x1d\x00\x00\x00\x1a\x1c\x1d\x7d\x80\x84\x60\ +\x65\x68\x54\x5b\x5d\x98\x9b\x9c\x9a\x9d\x9e\x7c\x7f\x82\x7a\x7d\ +\x7f\x93\x96\x96\xa0\xa2\xa3\xa3\xa5\xa6\xa5\xa7\xa8\xa8\xaa\xab\ +\xa6\xa8\xa9\xa5\xa7\xa9\xa5\xa7\xa9\xaa\xac\xae\xab\xac\xb0\xad\ +\xae\xb2\xad\xae\xb2\xa9\xab\xad\xa8\xaa\xab\xa8\xa9\xab\xaa\xab\ +\xad\xa7\xa9\xaa\x8f\x94\x98\xa4\xa7\xab\xac\xad\xaf\xb3\xb5\xb7\ +\xab\xad\xb0\xb0\xb0\xb2\xae\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xaf\xb0\ +\xb0\xaf\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb5\xb3\xb2\xb3\xb3\xb2\ +\xb4\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb8\xb7\xb9\xb8\xb7\xb9\ +\xb6\xb5\xb7\xb9\xb8\xba\x00\x00\x00\xd6\xcb\xc5\xdf\xd6\xd2\xe1\ +\xd9\xd6\xe2\xdb\xd7\xe2\xdc\xd8\xe1\xdb\xd8\xe1\xda\xd6\xe1\xda\ +\xd5\xe1\xda\xd7\xe1\xdb\xd7\xe2\xdc\xd8\xe3\xdb\xd8\xe4\xdd\xda\ +\xe5\xde\xdc\xe5\xe0\xdd\xe7\xe0\xde\xe7\xe1\xdf\xe6\xe2\xe0\xe6\ +\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ +\xde\xe6\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xd9\xe0\xdb\xd8\xdc\xd7\xd5\ +\xd8\xd2\xcf\xd2\xcb\xc8\xc8\xc2\xc1\xbb\xb6\xb5\xa8\xa5\xa4\x89\ +\x8a\x89\x5f\x65\x68\x36\x3f\x48\x28\x32\x3b\x40\x47\x4d\x6c\x6b\ +\x6b\x85\x81\x7e\x97\x92\x91\xa0\x9b\x9c\xa4\x9f\xa0\xa8\xa4\xa5\ +\xa7\xa5\xa5\xa8\xa5\xa5\xa5\xa3\xa3\x9e\x9e\x9f\x8f\x91\x92\x77\ +\x7c\x7e\x6a\x70\x73\x6d\x72\x74\x7d\x80\x81\x87\x89\x8a\x82\x84\ +\x85\x6d\x72\x73\x44\x4f\x52\x43\x4b\x4e\x4d\x52\x55\x58\x5c\x5f\ +\x66\x69\x6d\x77\x7b\x80\x78\x7c\x81\x77\x7b\x80\x74\x78\x7d\x74\ +\x79\x7e\x7c\x81\x84\x7d\x83\x88\x7d\x83\x88\x7b\x82\x86\x7a\x80\ +\x85\x7c\x83\x88\x79\x82\x86\x7c\x83\x8a\x78\x80\x87\x59\x66\x6f\ +\x2a\x3d\x4a\x4d\x56\x5f\x6b\x71\x77\x66\x6c\x74\x74\x7a\x7f\x7c\ +\x81\x86\x7e\x85\x8d\x7e\x86\x8d\x7e\x87\x8c\x7e\x86\x8c\x7d\x85\ +\x8c\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8e\x7f\x87\x8e\x82\x89\x91\ +\x7f\x88\x8e\x80\x88\x8d\x82\x89\x8c\x83\x89\x8d\x83\x89\x8e\x82\ +\x87\x8b\x4f\x5c\x61\x1c\x27\x2d\x03\x05\x08\x5c\x62\x66\x8e\x8f\ +\x90\x7a\x7e\x81\x3b\x44\x4a\x0a\x11\x15\x11\x13\x15\x6b\x6d\x70\ +\x81\x84\x88\x71\x73\x77\x86\x87\x89\x99\x9b\x9c\x6c\x70\x74\x00\ +\x00\x01\x01\x01\x01\x4a\x4c\x4f\x9f\xa0\xa2\x62\x68\x6b\x4d\x54\ +\x58\x8b\x8d\x90\x9b\x9d\x9f\x9b\x9e\xa0\x84\x88\x8b\x7a\x7d\x7e\ +\x91\x94\x95\xa3\xa5\xa6\xa9\xaa\xab\xaa\xab\xac\xa5\xa7\xa8\xa8\ +\xaa\xab\xa8\xaa\xab\xab\xac\xaf\xab\xac\xaf\xad\xaf\xb2\xac\xae\ +\xb0\xaa\xab\xac\xaa\xac\xad\xa9\xaa\xac\xa8\xa7\xa9\xad\xac\xae\ +\xaf\xb0\xb1\xae\xaf\xb0\xb0\xb1\xb2\xac\xad\xaf\xaa\xab\xad\xab\ +\xab\xad\xb1\xb1\xb2\xb0\xaf\xb1\xb1\xb0\xb1\xaf\xaf\xaf\xaf\xae\ +\xaf\xb1\xb1\xb1\xb4\xb4\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb4\xb5\ +\xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xba\xb9\xba\xb6\ +\xb5\xb7\x00\x00\x00\xe1\xdb\xd7\xe2\xdc\xd8\xe2\xdc\xd8\xe4\xdd\ +\xda\xe3\xdd\xda\xe3\xdd\xd9\xe4\xdd\xd9\xe4\xde\xd9\xe4\xdd\xda\ +\xe5\xde\xdb\xe5\xdf\xdc\xe5\xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe7\ +\xe2\xdf\xe8\xe3\xe2\xe8\xe3\xe2\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\ +\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xdf\xdc\ +\xe3\xde\xdb\xe0\xdb\xd8\xde\xd9\xd6\xdb\xd6\xd3\xd6\xd0\xce\xcf\ +\xc9\xc6\xc5\xbf\xbf\xb4\xb0\xb1\x9d\x9d\x9c\x7a\x7f\x7e\x4e\x57\ +\x5a\x2d\x37\x3e\x2a\x33\x3c\x50\x55\x5a\x77\x76\x77\x8d\x89\x88\ +\x9c\x97\x98\xa5\xa0\xa1\xa6\xa2\xa2\xa5\xa3\xa3\xa8\xa6\xa6\xa8\ +\xa6\xa6\xa5\xa4\xa4\x9e\x9e\x9e\x8e\x91\x91\x80\x84\x85\x79\x7e\ +\x7f\x7b\x7e\x7f\x87\x89\x89\x89\x8c\x8d\x86\x88\x8a\x76\x7b\x7c\ +\x5c\x64\x68\x5b\x62\x66\x4b\x50\x56\x41\x48\x4e\x5e\x61\x66\x77\ +\x7b\x7f\x77\x7b\x81\x75\x79\x7e\x75\x79\x7e\x71\x77\x7c\x77\x7d\ +\x81\x7e\x84\x89\x7c\x82\x87\x7c\x83\x87\x7a\x80\x85\x7a\x81\x86\ +\x79\x82\x86\x7a\x82\x89\x7a\x81\x88\x63\x70\x78\x3b\x4d\x58\x56\ +\x5f\x67\x73\x78\x7e\x65\x6c\x72\x59\x5f\x66\x6b\x70\x76\x7b\x82\ +\x89\x7f\x86\x8e\x7c\x85\x8a\x7e\x86\x8d\x7c\x84\x8b\x80\x88\x8f\ +\x80\x88\x8f\x7f\x87\x8e\x7f\x87\x8e\x81\x89\x90\x7e\x87\x8d\x80\ +\x88\x8d\x82\x89\x8d\x85\x8a\x8f\x83\x89\x8e\x7e\x84\x88\x60\x6b\ +\x6f\x3e\x4c\x52\x18\x23\x27\x62\x67\x6c\x8d\x8f\x90\x85\x88\x8c\ +\x6a\x72\x77\x2f\x3a\x41\x21\x29\x2f\x71\x74\x77\x93\x95\x97\x80\ +\x82\x85\x73\x75\x79\x83\x84\x87\x38\x39\x3d\x00\x00\x00\x07\x08\ +\x09\x64\x66\x6c\x87\x88\x8b\x6b\x6f\x71\x87\x8a\x8c\x7d\x80\x83\ +\x85\x87\x8a\x9e\xa0\xa1\xa2\xa6\xa7\x8d\x91\x92\x7a\x7e\x80\x89\ +\x8c\x8e\xa4\xa5\xa7\xa7\xa7\xa9\xa6\xa8\xa9\xa8\xaa\xab\xaa\xac\ +\xae\xab\xad\xb0\xac\xae\xb0\xab\xac\xaf\xaa\xab\xad\xa9\xaa\xab\ +\xa8\xa9\xaa\xac\xad\xae\xab\xab\xad\xac\xac\xad\xaa\xab\xac\xad\ +\xaf\xb0\xb0\xb2\xb3\xae\xb0\xb1\xaf\xb0\xb1\xaa\xa9\xab\xaf\xae\ +\xb0\xaf\xaf\xb0\xb4\xb4\xb4\xb1\xb1\xb1\xb0\xb0\xb0\xb1\xb1\xb1\ +\xb4\xb4\xb4\xb7\xb6\xb8\xb7\xb7\xb8\xb6\xb6\xb6\xb9\xb8\xba\xba\ +\xb9\xbb\xb6\xb5\xb7\xb8\xb7\xb9\xbd\xbc\xbd\xb7\xb6\xb7\x00\x00\ +\x00\xe4\xdf\xdc\xe5\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\ +\xe6\xe0\xdd\xe6\xe1\xdd\xe7\xe1\xdd\xe7\xe0\xdd\xe7\xe0\xdd\xe7\ +\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\ +\xe2\xe8\xe3\xe1\xe7\xe2\xe0\xe8\xe3\xe0\xe7\xe2\xdf\xe7\xe1\xde\ +\xe6\xe1\xde\xe6\xe1\xde\xe4\xdf\xdc\xe3\xde\xda\xe2\xdd\xda\xe0\ +\xdb\xd9\xdd\xd8\xd5\xd8\xd3\xd1\xd3\xce\xcc\xcc\xc7\xc5\xc1\xbc\ +\xbc\xb0\xac\xad\x92\x93\x93\x6b\x71\x72\x3f\x4a\x4e\x28\x32\x38\ +\x38\x3f\x46\x63\x63\x67\x83\x7f\x82\x93\x8e\x8f\x9d\x98\x99\xa5\ +\xa0\xa1\xa7\xa3\xa3\xa7\xa4\xa5\xa8\xa5\xa6\xa4\xa3\xa4\xa3\xa4\ +\xa3\x9c\x9c\x9d\x8e\x90\x90\x88\x8c\x8c\x86\x89\x8a\x89\x8c\x8d\ +\x8a\x8d\x8f\x8a\x8c\x8e\x8d\x8f\x92\x7d\x81\x83\x6c\x73\x76\x5d\ +\x62\x68\x45\x4d\x54\x30\x38\x40\x54\x58\x5e\x76\x7a\x7e\x77\x7c\ +\x80\x74\x78\x7e\x75\x79\x7e\x73\x78\x7d\x71\x77\x7d\x7c\x80\x86\ +\x7a\x80\x85\x7b\x82\x86\x7b\x81\x86\x79\x81\x87\x79\x81\x88\x79\ +\x81\x88\x7b\x83\x8a\x6e\x78\x80\x51\x5e\x68\x5c\x65\x6e\x75\x7a\ +\x80\x5f\x65\x6d\x2e\x38\x41\x45\x4d\x54\x72\x77\x7d\x80\x87\x8e\ +\x7d\x85\x8a\x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x88\x8f\x7f\ +\x87\x8e\x80\x88\x8e\x81\x88\x8f\x81\x89\x8f\x81\x88\x8e\x83\x89\ +\x8e\x86\x8c\x91\x86\x8c\x91\x82\x89\x8d\x76\x7f\x82\x4b\x58\x5c\ +\x54\x60\x65\x82\x86\x89\x8c\x90\x92\x8c\x90\x93\x7f\x85\x8a\x59\ +\x66\x6d\x5a\x64\x6b\x73\x77\x7c\x8c\x8e\x90\x94\x97\x98\x86\x8a\ +\x8d\x5a\x5d\x61\x0b\x0b\x0c\x00\x00\x00\x33\x39\x3a\x7e\x82\x84\ +\x5c\x60\x63\x6a\x6d\x6f\x93\x93\x95\x77\x7a\x7c\x7b\x7e\x7f\x81\ +\x83\x86\x9b\x9d\x9f\xa1\xa5\xa6\x94\x98\x9a\x7d\x80\x84\x86\x88\ +\x8b\xa7\xa7\xa8\xa6\xa8\xa9\xa8\xaa\xac\xab\xac\xae\xac\xae\xb1\ +\xae\xaf\xb2\xac\xae\xb0\xaa\xac\xad\xaa\xac\xad\xaa\xab\xac\xae\ +\xaf\xb0\xb0\xb0\xb2\xae\xb0\xb1\xad\xae\xaf\xac\xab\xad\xae\xae\ +\xb0\xb0\xb2\xb3\xb3\xb4\xb5\xb0\xaf\xb1\xaf\xae\xb0\xb1\xb0\xb1\ +\xb2\xb2\xb2\xb1\xb0\xb1\xb3\xb3\xb4\xb4\xb4\xb5\xaf\xaf\xaf\xb3\ +\xb2\xb3\xb5\xb5\xb5\xb5\xb5\xb5\xba\xba\xbb\xba\xba\xbb\xb5\xb4\ +\xb5\xb9\xb8\xba\xbb\xba\xbc\xb9\xb8\xb9\x00\x00\x00\xe6\xe1\xde\ +\xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\ +\xe2\xdf\xe7\xe1\xde\xe8\xe1\xde\xe8\xe1\xde\xe7\xe2\xdf\xe7\xe1\ +\xde\xe8\xe2\xdf\xe7\xe1\xde\xe6\xe0\xdd\xe6\xdf\xdd\xe6\xe0\xde\ +\xe6\xe1\xde\xe7\xe1\xde\xe8\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe5\ +\xe0\xdd\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\xda\xd9\xdc\xd7\ +\xd5\xd8\xd3\xd2\xd2\xcd\xca\xc8\xc3\xc2\xbb\xb5\xb5\xa6\xa2\xa3\ +\x86\x86\x87\x5c\x62\x65\x34\x3f\x44\x29\x33\x3a\x47\x4b\x51\x70\ +\x6e\x70\x8a\x86\x88\x97\x92\x94\xa2\x9d\x9e\xa5\xa2\xa2\xa6\xa3\ +\xa4\xaa\xa7\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa3\x99\x99\x9a\ +\x8a\x8d\x8f\x87\x8a\x8c\x8a\x8c\x8e\x8b\x8d\x91\x8b\x8e\x91\x8a\ +\x8d\x91\x8e\x92\x95\x80\x85\x88\x6c\x74\x78\x41\x49\x51\x20\x29\ +\x32\x1e\x27\x30\x40\x44\x4b\x6f\x72\x77\x77\x7b\x80\x76\x7a\x7f\ +\x73\x77\x7c\x74\x78\x7d\x70\x75\x7a\x76\x7b\x80\x7c\x81\x86\x7b\ +\x81\x86\x7a\x82\x87\x79\x81\x86\x79\x81\x88\x79\x81\x88\x7a\x81\ +\x88\x73\x7c\x83\x62\x6c\x76\x5d\x67\x71\x6b\x72\x79\x55\x5e\x65\ +\x25\x31\x3a\x37\x42\x4a\x62\x67\x6d\x7e\x82\x89\x80\x86\x8c\x7f\ +\x87\x8e\x7f\x87\x8e\x82\x8a\x91\x80\x88\x8f\x80\x88\x8f\x81\x89\ +\x90\x84\x8c\x92\x83\x8b\x91\x84\x8a\x91\x84\x8a\x8f\x87\x8d\x92\ +\x86\x8d\x92\x84\x8b\x8f\x81\x8a\x8d\x6c\x77\x7a\x7b\x81\x86\x8a\ +\x8d\x91\x8c\x92\x95\x8e\x93\x97\x8a\x8f\x93\x83\x89\x8e\x86\x8c\ +\x91\x7c\x81\x87\x76\x79\x7e\x8b\x8f\x90\x97\x9a\x9b\x41\x44\x45\ +\x01\x01\x01\x04\x05\x05\x76\x7b\x7c\x92\x96\x95\x53\x59\x5a\x66\ +\x6b\x6c\x68\x6c\x6e\x58\x5c\x5f\x92\x94\x96\x80\x82\x86\x7b\x7e\ +\x81\x98\x9a\x9c\xa4\xa6\xa8\x9d\x9f\xa1\x84\x88\x8a\x7e\x82\x83\ +\xa3\xa4\xa5\xa9\xaa\xac\xa9\xab\xac\xab\xae\xaf\xad\xaf\xb0\xad\ +\xae\xaf\xab\xac\xad\xac\xad\xae\xad\xad\xae\xad\xad\xae\xaf\xaf\ +\xb1\xaf\xaf\xb1\xb2\xb1\xb3\xae\xad\xaf\xab\xaa\xac\xac\xae\xaf\ +\xb5\xb5\xb7\xb1\xb0\xb2\xaf\xae\xb1\xb2\xb1\xb3\xb2\xb2\xb2\xb0\ +\xb0\xb0\xb3\xb3\xb4\xb3\xb3\xb3\xb0\xb0\xb0\xb3\xb3\xb3\xb4\xb4\ +\xb4\xb3\xb3\xb3\xbb\xbc\xbb\xbb\xbb\xbb\xba\xba\xbb\xba\xb9\xba\ +\xb8\xb7\xb9\xb7\xb6\xb7\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe6\ +\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe7\xe2\xde\xe6\xe0\xde\xe7\xe1\ +\xde\xe7\xe1\xde\xe6\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xdc\xe6\xdf\xdc\ +\xe5\xde\xdb\xe4\xdd\xda\xe4\xdd\xda\xe4\xde\xda\xe5\xe0\xdd\xe5\ +\xe0\xdd\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\ +\xdd\xe4\xdf\xdd\xe0\xdb\xda\xdf\xda\xd9\xdd\xd8\xd6\xd5\xd0\xce\ +\xce\xc9\xc7\xc4\xbf\xbe\xb2\xad\xab\x9b\x97\x96\x78\x79\x79\x4b\ +\x52\x55\x2b\x37\x3d\x2f\x38\x3e\x55\x56\x5a\x7a\x76\x77\x8e\x89\ +\x8b\x9b\x96\x97\xa0\x9d\x9e\xa5\xa3\xa3\xaa\xa7\xa8\xa7\xa5\xa6\ +\xa6\xa5\xa7\xa5\xa4\xa5\xa0\x9f\xa1\x90\x91\x93\x83\x84\x87\x83\ +\x83\x87\x88\x8a\x8c\x88\x89\x8d\x8b\x8d\x91\x8d\x8f\x94\x8e\x93\ +\x96\x87\x8c\x8f\x6c\x75\x78\x38\x48\x51\x0a\x17\x22\x12\x1a\x23\ +\x34\x37\x3f\x5e\x60\x65\x73\x75\x79\x78\x7b\x80\x73\x76\x7b\x72\ +\x76\x7b\x72\x76\x7b\x71\x77\x7c\x7a\x80\x85\x7b\x82\x87\x7a\x81\ +\x87\x79\x7f\x86\x79\x81\x88\x7b\x81\x88\x7b\x82\x8a\x7a\x81\x89\ +\x72\x7a\x82\x56\x63\x6d\x47\x56\x5f\x46\x53\x5c\x36\x44\x4d\x34\ +\x42\x4a\x47\x50\x59\x75\x78\x7f\x83\x87\x8d\x80\x87\x8d\x7f\x88\ +\x8f\x81\x89\x90\x81\x89\x90\x81\x89\x90\x81\x8a\x91\x82\x8b\x92\ +\x84\x8c\x93\x85\x8d\x94\x86\x8d\x94\x89\x8f\x96\x88\x8d\x92\x87\ +\x8e\x93\x85\x8c\x90\x84\x8b\x8f\x87\x8c\x91\x87\x8c\x8f\x8b\x90\ +\x94\x8d\x92\x95\x8e\x93\x96\x90\x95\x99\x91\x95\x9a\x8e\x92\x97\ +\x7e\x83\x88\x77\x7c\x7f\x85\x88\x89\x1d\x20\x20\x00\x00\x00\x13\ +\x17\x18\x77\x7b\x7c\x83\x87\x89\x5e\x66\x67\x86\x8b\x8b\x6c\x73\ +\x74\x72\x77\x7b\x9f\xa2\xa4\x9d\x9f\xa3\x82\x84\x89\x7a\x7d\x80\ +\x95\x97\x9a\xa7\xa9\xaa\xa2\xa3\xa6\x88\x8b\x8f\x7a\x7d\x81\x9a\ +\x9c\x9d\xad\xae\xaf\xac\xae\xaf\xaa\xab\xad\xad\xad\xaf\xb0\xaf\ +\xb1\xae\xae\xaf\xac\xab\xad\xab\xab\xad\xad\xad\xaf\xaf\xae\xb0\ +\xb2\xb1\xb3\xae\xaf\xb0\xb1\xb1\xb2\xae\xaf\xb1\xb1\xb0\xb1\xab\ +\xab\xac\xaf\xae\xb0\xb2\xb1\xb3\xb4\xb4\xb5\xb3\xb3\xb4\xaf\xaf\ +\xb0\xb3\xb3\xb4\xb6\xb6\xb6\xb6\xb6\xb6\xb8\xb8\xb8\xb6\xb6\xb6\ +\xb8\xb8\xb8\xb8\xb8\xb8\xbc\xbc\xbc\xb9\xb8\xb9\xb9\xb9\xba\xb8\ +\xb7\xb9\x00\x00\x00\xe6\xe1\xde\xe5\xe1\xde\xe5\xe0\xdd\xe5\xde\ +\xdc\xe4\xdd\xda\xe4\xdd\xd9\xe4\xdb\xd8\xe3\xdd\xd9\xe3\xdd\xd9\ +\xe3\xdc\xd8\xe3\xdd\xda\xe3\xdd\xda\xe4\xde\xdb\xe4\xdd\xda\xe3\ +\xdd\xdb\xe4\xde\xdc\xe5\xde\xdc\xe6\xdf\xdc\xe6\xe0\xdd\xe6\xe2\ +\xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdd\xe3\xde\xdd\ +\xe1\xdc\xdb\xdc\xd7\xd6\xd9\xd4\xd3\xd4\xcf\xce\xcc\xc6\xc6\xbf\ +\xb9\xb9\xae\xa9\xa6\x91\x8e\x8c\x69\x6c\x6c\x3d\x46\x4a\x2a\x36\ +\x3c\x3d\x44\x4a\x65\x64\x67\x84\x7f\x81\x95\x90\x92\x9e\x9a\x9c\ +\xa4\xa1\xa2\xa6\xa5\xa7\xaa\xa8\xa9\xa7\xa6\xa7\xa5\xa4\xa6\xa2\ +\xa1\xa3\x9c\x9b\x9d\x89\x8a\x8b\x7b\x7e\x7f\x7c\x7e\x81\x86\x87\ +\x8a\x8a\x8c\x8e\x8d\x8f\x93\x8e\x91\x95\x8d\x92\x95\x8b\x8f\x92\ +\x78\x7f\x83\x51\x60\x67\x2c\x3c\x48\x29\x32\x3b\x43\x46\x4f\x5e\ +\x61\x67\x70\x72\x76\x76\x79\x7d\x74\x77\x7c\x70\x74\x79\x74\x78\ +\x7d\x72\x77\x7d\x71\x77\x7c\x79\x7f\x84\x7a\x80\x86\x77\x7e\x85\ +\x78\x80\x86\x79\x80\x87\x79\x81\x88\x7a\x82\x89\x7a\x81\x88\x68\ +\x71\x7a\x51\x5f\x69\x51\x5f\x68\x4a\x58\x60\x27\x34\x3c\x19\x24\ +\x2a\x37\x3d\x44\x63\x67\x6c\x80\x86\x8b\x7f\x87\x8e\x80\x88\x8f\ +\x81\x8a\x91\x83\x8b\x92\x82\x89\x90\x81\x89\x90\x84\x8c\x93\x86\ +\x8e\x95\x85\x8d\x94\x86\x8e\x95\x87\x8e\x95\x85\x8b\x91\x87\x8d\ +\x92\x8a\x90\x95\x8b\x8f\x94\x8b\x90\x94\x8b\x90\x93\x89\x8e\x91\ +\x8b\x90\x94\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x90\x95\x99\x80\ +\x86\x89\x4b\x51\x55\x04\x04\x04\x00\x00\x00\x5c\x61\x62\x72\x77\ +\x77\x44\x4d\x51\x7c\x80\x81\x88\x8a\x89\x82\x85\x85\x7d\x80\x83\ +\x8a\x8c\x8f\xa5\xa6\xa8\xa2\xa3\xa6\x8a\x8d\x90\x75\x79\x7c\x96\ +\x97\x99\xa7\xa7\xa8\xa6\xa6\xa8\x94\x97\x99\x77\x7b\x7c\x93\x94\ +\x96\xae\xae\xb0\xaa\xa9\xac\xad\xac\xae\xad\xac\xae\xad\xac\xae\ +\xac\xab\xad\xad\xac\xae\xae\xae\xb0\xad\xad\xaf\xb4\xb2\xb5\xb3\ +\xb2\xb3\xb3\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xae\xad\xaf\xad\xac\ +\xae\xb2\xb1\xb3\xb3\xb2\xb4\xb6\xb5\xb7\xb2\xb1\xb3\xb3\xb3\xb4\ +\xb6\xb6\xb6\xb3\xb4\xb3\xb9\xb8\xb9\xba\xba\xbb\xb4\xb4\xb4\xbb\ +\xbb\xbb\xb9\xb9\xb9\xb9\xb9\xb9\xb8\xb8\xba\xb8\xb8\xb9\x00\x00\ +\x00\xe5\xdf\xdc\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\xd9\xe1\xda\xd7\ +\xe1\xd8\xd4\xe1\xd9\xd5\xe1\xda\xd7\xe2\xdc\xd8\xe3\xdc\xd9\xe2\ +\xdd\xda\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\ +\xdd\xe6\xe0\xdd\xe7\xe0\xdd\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\ +\xe6\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdc\xe3\xde\xdd\xdf\xda\xd9\xdc\ +\xd7\xd6\xd7\xd2\xd0\xd0\xcb\xcb\xc9\xc4\xc4\xb9\xb4\xb3\xa5\xa1\ +\xa0\x83\x82\x82\x59\x5e\x60\x33\x3d\x43\x2a\x33\x39\x4a\x4f\x53\ +\x73\x71\x74\x8b\x87\x8a\x9a\x97\x9a\xa2\x9e\xa0\xa5\xa1\xa3\xa6\ +\xa5\xa6\xa8\xa7\xa9\xa6\xa5\xa6\xa5\xa4\xa6\xa3\xa2\xa4\x95\x96\ +\x96\x7e\x80\x80\x74\x78\x79\x79\x7b\x7d\x86\x87\x89\x89\x8b\x8e\ +\x8d\x8f\x93\x8e\x91\x95\x8d\x91\x94\x8a\x8f\x92\x83\x89\x8e\x6f\ +\x79\x7f\x50\x5e\x66\x3f\x4b\x54\x4e\x55\x5d\x69\x6d\x72\x72\x75\ +\x79\x6f\x71\x76\x70\x73\x78\x6f\x73\x78\x73\x77\x7b\x6c\x71\x76\ +\x66\x6c\x73\x76\x7b\x80\x7b\x81\x88\x78\x7f\x86\x79\x81\x87\x79\ +\x81\x89\x7a\x82\x89\x7a\x82\x89\x7a\x82\x89\x75\x7d\x86\x6f\x78\ +\x80\x6e\x78\x7f\x5e\x69\x71\x21\x2f\x38\x06\x0e\x13\x0a\x12\x17\ +\x38\x3f\x46\x75\x79\x7f\x85\x8c\x93\x82\x89\x90\x80\x88\x8f\x83\ +\x8b\x91\x80\x88\x8d\x81\x89\x8f\x85\x8b\x92\x88\x8f\x96\x87\x8f\ +\x96\x89\x8f\x96\x8a\x90\x97\x89\x8f\x96\x89\x8f\x94\x8c\x92\x97\ +\x8a\x8e\x93\x8a\x8f\x92\x88\x8d\x90\x88\x8d\x90\x8c\x91\x94\x8f\ +\x94\x97\x90\x94\x99\x94\x98\x9c\x93\x98\x9c\x91\x96\x99\x7c\x84\ +\x88\x1e\x25\x28\x18\x1f\x21\x8b\x8f\x8f\x83\x87\x87\x3f\x4a\x4e\ +\x68\x6d\x6f\x51\x56\x58\x61\x64\x67\x95\x97\x99\x7b\x7e\x82\x8a\ +\x8b\x8e\xa1\xa1\xa4\xa4\xa6\xaa\x91\x94\x98\x74\x76\x7a\x8f\x8e\ +\x91\xab\xaa\xac\xa8\xa9\xaa\x9b\x9d\x9e\x7f\x81\x82\x8a\x8b\x8d\ +\xad\xac\xae\xaf\xae\xb0\xae\xad\xaf\xae\xad\xaf\xaf\xae\xb1\xb1\ +\xb0\xb3\xae\xae\xb0\xae\xaf\xb0\xb3\xb2\xb4\xb0\xaf\xb1\xb4\xb3\ +\xb5\xb4\xb5\xb6\xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ +\xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb6\xb3\ +\xb2\xb3\xb7\xb6\xb8\xb6\xb6\xb6\xba\xb9\xb9\xb9\xb9\xb9\xbb\xbb\ +\xbb\xb8\xb8\xb8\xba\xba\xba\xbb\xbc\xbb\x00\x00\x00\xe3\xdc\xd9\ +\xe2\xdd\xda\xe0\xda\xd7\xdf\xda\xd7\xe0\xdb\xd7\xe0\xdb\xd6\xe2\ +\xdb\xd7\xe3\xdc\xd8\xe4\xde\xdb\xe4\xde\xdb\xe5\xe0\xdd\xe6\xe1\ +\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xdf\xe7\xe2\xdf\ +\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe5\ +\xe0\xdd\xe3\xde\xdc\xe2\xdd\xdc\xde\xd9\xd8\xdb\xd5\xd4\xd4\xcf\ +\xce\xcf\xca\xc8\xc3\xbf\xbe\xb2\xaf\xae\x9b\x98\x98\x75\x78\x79\ +\x46\x4f\x52\x2a\x35\x39\x34\x3c\x41\x5c\x5e\x62\x7d\x7c\x7f\x8f\ +\x8c\x8f\x9b\x98\x9a\xa1\x9e\xa0\xa5\xa3\xa5\xa7\xa6\xa7\xa8\xa7\ +\xa9\xa5\xa4\xa6\xa5\xa4\xa6\xa1\xa0\xa1\x8d\x8d\x8d\x74\x77\x77\ +\x6e\x73\x73\x77\x7a\x7b\x86\x87\x8b\x89\x8c\x90\x8e\x91\x95\x8e\ +\x91\x95\x8c\x90\x92\x8a\x8f\x92\x87\x8c\x91\x7c\x84\x8a\x66\x72\ +\x7a\x4f\x5b\x63\x55\x5d\x65\x66\x6b\x70\x6a\x6e\x73\x58\x5b\x63\ +\x5f\x62\x6a\x6c\x70\x76\x66\x6a\x70\x58\x5d\x65\x57\x5c\x65\x63\ +\x68\x6f\x77\x7d\x82\x7a\x81\x88\x78\x81\x87\x77\x80\x85\x77\x7f\ +\x86\x79\x80\x87\x7a\x81\x88\x79\x81\x88\x79\x81\x88\x7a\x82\x89\ +\x72\x7b\x83\x59\x67\x70\x37\x43\x4c\x19\x24\x2b\x22\x29\x2f\x3b\ +\x40\x46\x75\x79\x80\x84\x8a\x90\x84\x8b\x91\x84\x8b\x92\x83\x8a\ +\x91\x85\x8b\x92\x85\x8c\x92\x88\x90\x96\x88\x8f\x96\x88\x8e\x95\ +\x8c\x92\x99\x8a\x90\x97\x88\x8e\x93\x8b\x8f\x94\x8d\x91\x96\x8c\ +\x90\x95\x8b\x8f\x92\x88\x8d\x90\x8a\x8f\x92\x8d\x92\x95\x91\x95\ +\x99\x92\x96\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\x9f\x7d\x85\x88\ +\x57\x62\x66\x87\x8a\x8b\x6f\x74\x76\x71\x77\x7a\x7b\x7f\x81\x6a\ +\x6f\x73\x8a\x8c\x90\xa1\xa1\xa4\x96\x99\x9c\x7b\x7e\x82\x85\x86\ +\x8a\xa2\xa2\xa5\xa7\xa9\xaa\x9c\x9f\xa0\x76\x79\x7c\x84\x86\x87\ +\xab\xab\xab\xa7\xaa\xaa\xa2\xa4\xa6\x82\x86\x89\x80\x82\x85\xaa\ +\xa9\xab\xb1\xb0\xb2\xac\xad\xae\xaf\xb0\xb2\xb1\xb0\xb4\xb1\xb0\ +\xb4\xb2\xb2\xb4\xb0\xaf\xb1\xaf\xae\xb0\xaf\xae\xb1\xb1\xb0\xb2\ +\xb1\xb0\xb2\xb5\xb4\xb6\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\xb3\ +\xb2\xb4\xb3\xb2\xb3\xb6\xb5\xb6\xb5\xb5\xb5\xb3\xb3\xb4\xb2\xb2\ +\xb2\xb8\xb7\xb9\xbc\xba\xbd\xb9\xb9\xb9\xb9\xb8\xb8\xb6\xb6\xb6\ +\xb9\xb9\xb9\xbc\xbc\xbc\x00\x00\x00\xe3\xdb\xd8\xe4\xe0\xdd\xe3\ +\xde\xdb\xe2\xdc\xd9\xe2\xdd\xd9\xe4\xde\xdb\xe3\xde\xdb\xe5\xdf\ +\xdc\xe6\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\xe2\xe8\xe3\xe2\ +\xe8\xe3\xe2\xe7\xe2\xe1\xe8\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xdf\xe7\ +\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xdd\xe4\xdf\xde\xe3\xde\ +\xdd\xe0\xdb\xda\xdd\xd7\xd7\xd9\xd4\xd3\xd5\xcf\xce\xcb\xc6\xc3\ +\xbe\xba\xba\xad\xaa\xaa\x8c\x8c\x8c\x64\x6b\x6b\x3b\x46\x49\x2b\ +\x36\x3a\x45\x49\x4e\x6b\x6a\x6f\x83\x82\x85\x96\x92\x97\x9f\x9c\ +\x9e\xa4\xa2\xa4\xa9\xa6\xa7\xa8\xa7\xaa\xa7\xa6\xa8\xa6\xa5\xa7\ +\xa5\xa4\xa6\x98\x97\x99\x7e\x7f\x81\x6a\x6f\x6f\x6a\x6f\x6e\x7b\ +\x7e\x7f\x87\x8a\x8e\x8b\x8e\x93\x8c\x8f\x94\x8b\x8e\x92\x8e\x91\ +\x96\x87\x8b\x90\x87\x8b\x90\x81\x87\x8d\x73\x7b\x81\x64\x6c\x73\ +\x66\x6a\x71\x6f\x72\x77\x5f\x64\x6a\x3a\x42\x4b\x45\x4a\x55\x68\ +\x6b\x72\x5e\x62\x69\x37\x3e\x48\x39\x40\x4a\x57\x5b\x61\x70\x74\ +\x79\x78\x7e\x84\x7c\x82\x87\x7a\x82\x87\x78\x80\x87\x7a\x80\x87\ +\x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\x83\x8b\x7a\x81\x89\x76\ +\x7e\x85\x65\x6f\x77\x41\x4b\x54\x23\x29\x31\x13\x1a\x23\x5b\x61\ +\x69\x82\x86\x8d\x82\x88\x8c\x84\x8a\x90\x85\x8c\x92\x86\x8c\x92\ +\x88\x8e\x94\x89\x8f\x94\x87\x8d\x94\x86\x8c\x93\x87\x8d\x94\x87\ +\x8d\x95\x8a\x8f\x95\x8c\x91\x97\x8a\x8e\x92\x8d\x91\x96\x8c\x92\ +\x95\x8c\x91\x94\x8b\x8f\x93\x8c\x8f\x93\x8e\x91\x95\x92\x95\x98\ +\x94\x97\x9b\x94\x97\x9a\x97\x9b\x9e\x98\x9d\xa0\x87\x8d\x90\x6a\ +\x70\x74\x53\x5d\x61\x8c\x91\x92\x96\x99\x9a\x81\x85\x88\x77\x7a\ +\x7f\x96\x98\x9c\xa2\xa3\xa5\x9e\xa1\xa3\x7f\x82\x85\x83\x85\x89\ +\x9e\xa0\xa1\xa6\xa8\xa9\xa4\xa7\xa7\x85\x87\x88\x7f\x7f\x7f\xa6\ +\xa6\xa7\xa8\xa9\xa9\xa7\xaa\xab\x8e\x91\x92\x80\x81\x82\xa0\xa2\ +\xa3\xb0\xb0\xb2\xae\xae\xb1\xaf\xaf\xb3\xaf\xae\xb1\xb1\xb0\xb3\ +\xb1\xb0\xb2\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xaf\xae\xb0\xb3\ +\xb2\xb5\xb1\xb0\xb3\xb3\xb2\xb5\xb5\xb4\xb6\xb3\xb2\xb4\xb4\xb3\ +\xb5\xb7\xb7\xb8\xb6\xb5\xb7\xb7\xb6\xb8\xb3\xb3\xb3\xb6\xb5\xb6\ +\xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xb7\xb7\xb7\xbb\xbb\xbb\xbc\ +\xbb\xbc\x00\x00\x00\xe4\xde\xdb\xe6\xe1\xde\xe6\xdf\xdc\xe6\xe0\ +\xdd\xe6\xe0\xdd\xe5\xdf\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\ +\xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe2\xe9\xe4\xe2\xe8\xe3\xe2\xe7\ +\xe2\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\ +\xdf\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdc\xe0\xdb\xda\ +\xdc\xd7\xd6\xd7\xcf\xcf\xd2\xca\xca\xc8\xc2\xc0\xb9\xb5\xb4\xa2\ +\x9f\x9f\x80\x82\x82\x55\x5c\x5e\x30\x3c\x40\x31\x3a\x41\x53\x55\ +\x5b\x75\x74\x77\x8d\x8a\x8c\x99\x96\x98\xa1\x9e\xa0\xa7\xa4\xa6\ +\xa9\xa7\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa6\xa5\xa7\xa1\xa0\xa1\x8c\ +\x8d\x8e\x70\x74\x75\x65\x6b\x6c\x6e\x72\x73\x81\x84\x88\x8c\x8f\ +\x94\x8d\x90\x94\x8e\x90\x94\x8c\x90\x94\x89\x8d\x92\x88\x8c\x91\ +\x86\x8a\x8f\x85\x89\x8e\x7c\x80\x85\x74\x79\x7c\x72\x76\x7a\x71\ +\x75\x7a\x4b\x51\x59\x1d\x26\x30\x2c\x33\x3d\x63\x65\x6b\x5d\x60\ +\x67\x1f\x28\x31\x21\x28\x30\x58\x5c\x61\x66\x6a\x6f\x71\x77\x7c\ +\x7a\x80\x85\x7a\x82\x86\x7a\x81\x88\x7b\x81\x88\x7b\x82\x89\x7d\ +\x84\x8b\x7e\x86\x8d\x7e\x86\x8d\x7d\x85\x8c\x7d\x85\x8c\x76\x7e\ +\x85\x56\x61\x69\x1d\x27\x32\x1b\x25\x2f\x4d\x50\x5a\x65\x68\x6f\ +\x7c\x7f\x85\x85\x89\x8e\x86\x8a\x8f\x88\x8c\x91\x88\x8e\x93\x88\ +\x8d\x92\x89\x8e\x93\x88\x8e\x94\x87\x8d\x93\x89\x8f\x94\x89\x8f\ +\x95\x8a\x8e\x94\x8d\x91\x96\x8f\x93\x98\x8e\x92\x97\x8c\x90\x96\ +\x8c\x90\x95\x8d\x90\x94\x90\x93\x97\x92\x96\x99\x95\x99\x9b\x96\ +\x9a\x9c\x97\x9a\x9d\x98\x9c\x9e\x99\x9e\xa1\x8c\x93\x94\x6a\x72\ +\x74\x86\x8a\x8b\x9b\x9d\x9d\x9c\x9e\x9f\x89\x8d\x90\x79\x7c\x81\ +\x93\x94\x97\xa4\xa3\xa4\xa1\xa2\xa3\x86\x88\x8b\x7e\x7f\x82\xa0\ +\xa2\xa3\xaa\xab\xab\xa9\xa8\xa8\x8e\x8d\x8d\x79\x7a\x79\xa1\xa0\ +\xa0\xab\xab\xab\xad\xae\xaf\x94\x96\x98\x7b\x7f\x80\x99\x9b\x9c\ +\xad\xae\xaf\xaf\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb2\xad\xac\xae\xad\ +\xac\xae\xad\xac\xae\xab\xaa\xac\xb2\xb1\xb3\xae\xad\xaf\xb1\xb0\ +\xb3\xb5\xb4\xb7\xb6\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb2\xb1\xb3\ +\xb4\xb3\xb5\xb9\xb8\xba\xb9\xb8\xba\xb8\xb7\xb9\xbb\xb9\xbc\xb6\ +\xb5\xb7\xb5\xb4\xb5\xbc\xbc\xbc\xbc\xbb\xbc\xb9\xb9\xb9\x00\x00\ +\x00\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe1\xde\ +\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\ +\xe3\xe0\xe9\xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\ +\xe1\xe7\xe2\xe1\xe8\xe3\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ +\xe4\xdf\xde\xe4\xdd\xdd\xe1\xdc\xdb\xde\xd9\xd8\xda\xd4\xd2\xd7\ +\xcf\xcf\xcf\xc7\xc7\xc3\xbd\xbc\xb3\xaf\xae\x99\x97\x98\x73\x75\ +\x77\x48\x4f\x53\x2b\x36\x3b\x37\x3e\x44\x61\x60\x66\x80\x7d\x81\ +\x93\x90\x92\x9e\x9b\x9e\xa3\xa0\xa1\xa7\xa4\xa6\xaa\xa7\xa8\xa9\ +\xa7\xa9\xa5\xa5\xa6\xa3\xa2\xa4\x99\x99\x99\x7b\x7e\x7e\x64\x6a\ +\x6a\x64\x69\x6a\x72\x76\x79\x85\x88\x8c\x8b\x8e\x92\x8e\x91\x96\ +\x8d\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8c\x91\x86\x8c\x91\x83\ +\x89\x8e\x81\x86\x8a\x78\x7d\x81\x71\x76\x79\x67\x6d\x72\x3d\x46\ +\x4e\x16\x1f\x2a\x2a\x31\x3b\x52\x55\x5b\x4f\x53\x5a\x1a\x24\x2c\ +\x21\x29\x32\x5d\x61\x66\x6b\x6f\x74\x70\x74\x79\x77\x7c\x81\x78\ +\x7f\x84\x7c\x82\x88\x7b\x81\x88\x7b\x81\x89\x7d\x84\x8b\x7c\x84\ +\x8c\x7b\x83\x8b\x7a\x82\x89\x7d\x85\x8c\x7c\x85\x8c\x69\x73\x7c\ +\x1d\x2c\x39\x1d\x28\x33\x31\x37\x3f\x21\x27\x31\x5f\x61\x68\x81\ +\x85\x8a\x86\x8b\x90\x89\x8d\x92\x8a\x8e\x93\x89\x8f\x94\x88\x8e\ +\x93\x89\x8e\x93\x8a\x8e\x95\x8b\x91\x97\x8e\x94\x9b\x8f\x92\x99\ +\x8f\x92\x9a\x90\x94\x99\x93\x96\x9b\x91\x94\x99\x8f\x92\x97\x91\ +\x94\x98\x93\x96\x9a\x90\x93\x96\x91\x94\x97\x96\x9a\x9b\x96\x99\ +\x9c\x9a\x9e\xa1\x9d\xa0\xa3\x99\x9d\x9e\x91\x95\x96\x77\x7c\x7d\ +\x82\x85\x86\x9b\x9e\x9f\xa1\xa4\xa5\x90\x92\x96\x7a\x7c\x80\x8d\ +\x8e\x8f\x9f\xa1\xa1\xa5\xa7\xa8\x8a\x8d\x90\x7d\x80\x83\x85\x83\ +\x85\x64\x5c\x5a\x96\x8b\x89\x9a\x96\x96\x74\x74\x75\x97\x96\x97\ +\xb0\xb0\xb0\xac\xaf\xaf\x9b\x9e\xa0\x7c\x7f\x81\x92\x93\x95\xad\ +\xad\xaf\xb0\xb0\xb3\xb0\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xb0\xaf\ +\xb0\xb1\xb0\xb1\xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb5\xb3\xb6\ +\xb4\xb3\xb5\xb6\xb5\xb6\xb6\xb6\xb6\xb4\xb4\xb4\xb5\xb5\xb5\xb6\ +\xb6\xb6\xb7\xb7\xb8\xb6\xb5\xb6\xb6\xb6\xb7\xb7\xb6\xb7\xb6\xb5\ +\xb6\xbd\xbd\xbd\xbc\xbb\xbc\xba\xb9\xba\x00\x00\x00\xe5\xe0\xdd\ +\xe5\xdf\xdc\xe6\xe0\xdd\xe5\xe0\xdc\xe5\xe1\xdd\xe7\xe2\xdf\xe8\ +\xe3\xe0\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\ +\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe7\xe2\xe0\ +\xe7\xe2\xe0\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe4\xde\xdb\xe2\ +\xdd\xd9\xe1\xdc\xda\xde\xd9\xd8\xd9\xd3\xd0\xd4\xcd\xcd\xc9\xc1\ +\xc1\xbd\xb6\xb6\xaa\xa5\xa6\x8a\x89\x89\x63\x67\x6a\x3d\x43\x4a\ +\x2d\x33\x3c\x47\x4a\x50\x70\x6d\x73\x89\x85\x88\x96\x93\x95\xa0\ +\x9d\x9f\xa6\xa3\xa4\xa8\xa5\xa6\xaa\xa7\xa8\xa8\xa7\xa9\xa6\xa5\ +\xa7\xa1\xa0\xa2\x8a\x8b\x8c\x6e\x74\x73\x64\x6a\x6a\x6b\x70\x71\ +\x7d\x80\x81\x89\x8c\x8f\x8d\x90\x94\x8f\x92\x96\x8d\x90\x95\x8e\ +\x91\x96\x8b\x8f\x94\x89\x8d\x92\x86\x8c\x92\x86\x8c\x90\x83\x89\ +\x8d\x7b\x80\x83\x6f\x75\x79\x55\x5d\x64\x28\x31\x3b\x14\x1d\x27\ +\x35\x3a\x44\x47\x4b\x53\x2d\x34\x3d\x1a\x23\x2c\x2c\x34\x3c\x5d\ +\x60\x66\x72\x76\x7b\x6a\x70\x75\x70\x74\x79\x7b\x80\x85\x7a\x80\ +\x85\x7a\x81\x88\x7a\x83\x8a\x7b\x84\x8b\x7c\x84\x8b\x7c\x83\x8b\ +\x7b\x83\x8a\x7a\x82\x89\x80\x88\x8f\x71\x7b\x82\x26\x39\x46\x22\ +\x30\x3e\x34\x3e\x47\x1a\x23\x2d\x3f\x46\x4f\x5f\x64\x6a\x84\x88\ +\x8c\x8a\x8e\x93\x88\x8d\x92\x88\x8d\x92\x88\x8e\x93\x8a\x90\x96\ +\x8c\x91\x98\x89\x8f\x96\x8d\x93\x98\x8d\x91\x97\x8f\x94\x99\x8f\ +\x93\x98\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x8f\x92\x96\x90\x93\ +\x97\x91\x94\x97\x93\x95\x99\x92\x95\x98\x96\x99\x9d\x97\x9a\x9e\ +\x99\x9c\xa0\x98\x9b\x9d\x9b\x9e\x9f\x92\x96\x97\x79\x7e\x80\x81\ +\x84\x86\x9c\x9d\x9e\xa8\xaa\xab\x97\x9a\x9c\x79\x7c\x7f\x89\x8a\ +\x8c\xa0\xa0\xa0\xa6\xa6\xa6\x99\x9b\x9e\x3b\x3e\x40\x00\x00\x00\ +\x0c\x07\x07\x79\x6d\x6c\xa4\xa2\xa1\x7e\x7f\x80\x90\x91\x91\xa9\ +\xa9\xaa\xaf\xb2\xb3\xa6\xa9\xad\x83\x86\x8a\x89\x8a\x8c\xa4\xa4\ +\xa7\xaf\xae\xb1\xb0\xaf\xb1\xb1\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\ +\xae\xad\xaf\xac\xab\xad\xb2\xb1\xb3\xb3\xb2\xb5\xb6\xb5\xb7\xb6\ +\xb5\xb7\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb7\xb7\xb5\xb5\xb5\xb4\xb4\ +\xb4\xbb\xbb\xbb\xb9\xb8\xb8\xb8\xb8\xb8\xbb\xba\xbb\xb5\xb5\xb6\ +\xb7\xb7\xb7\xb9\xb8\xb9\x00\x00\x00\xe5\xe0\xdd\xe5\xe0\xdd\xe6\ +\xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\ +\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xdf\xe7\xe2\xe0\xe7\xe2\xdf\ +\xe6\xe1\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xdf\xe6\ +\xe1\xde\xe6\xe0\xde\xe6\xe0\xde\xe3\xdf\xdc\xe2\xdd\xda\xdf\xda\ +\xd9\xdb\xd6\xd5\xd9\xd3\xd2\xd1\xcb\xca\xc7\xbf\xbf\xb8\xb3\xb3\ +\xa1\x9d\x9e\x7c\x7c\x7e\x51\x58\x5c\x31\x39\x42\x32\x37\x40\x56\ +\x55\x5b\x79\x75\x7a\x8f\x8a\x8d\x9c\x97\x99\xa3\x9f\xa1\xa8\xa4\ +\xa5\xa9\xa5\xa7\xa9\xa6\xa7\xa9\xa7\xa9\xa5\xa4\xa4\x99\x98\x9a\ +\x7e\x81\x82\x69\x6f\x70\x66\x6b\x6c\x74\x78\x79\x84\x87\x89\x89\ +\x8d\x90\x8e\x91\x95\x8f\x92\x97\x8c\x8f\x94\x8b\x8f\x94\x88\x8c\ +\x91\x86\x8b\x8f\x87\x8c\x92\x85\x8b\x90\x85\x8a\x8f\x80\x86\x8b\ +\x70\x76\x7a\x43\x4d\x55\x15\x20\x2b\x20\x28\x32\x49\x4c\x56\x49\ +\x4e\x59\x1b\x25\x30\x1f\x27\x32\x4c\x51\x59\x5f\x65\x6c\x71\x75\ +\x7b\x70\x75\x7a\x6a\x70\x75\x74\x79\x7e\x7a\x80\x85\x7a\x80\x87\ +\x7b\x82\x89\x7c\x83\x8b\x7d\x85\x8c\x7c\x83\x8b\x7c\x84\x8b\x7e\ +\x86\x8d\x7d\x85\x8c\x71\x7a\x82\x20\x34\x41\x2e\x40\x4d\x44\x51\ +\x5b\x30\x3a\x44\x22\x2b\x35\x2d\x34\x3c\x79\x7c\x82\x8a\x8e\x93\ +\x8a\x8e\x93\x89\x8f\x94\x8a\x90\x95\x8b\x91\x96\x8b\x90\x96\x89\ +\x8f\x94\x8d\x93\x99\x92\x95\x9c\x8f\x93\x99\x90\x94\x99\x91\x95\ +\x9a\x92\x96\x9b\x92\x97\x9a\x92\x96\x9a\x93\x96\x9a\x92\x95\x97\ +\x91\x94\x97\x93\x96\x98\x97\x9a\x9e\x9a\x9d\xa1\x97\x9a\x9e\x9a\ +\x9c\x9f\x9d\x9f\xa1\x9e\xa0\xa1\x97\x9b\x9c\x7e\x83\x85\x7e\x81\ +\x83\x9b\x9c\x9d\xa6\xa6\xa8\x9a\x9b\x9d\x80\x82\x84\x89\x89\x8b\ +\xa1\x9f\x9f\xae\xac\xab\x71\x74\x75\x05\x05\x06\x00\x00\x00\x11\ +\x0e\x0d\x9a\x93\x91\xaa\xaa\xac\x89\x8b\x8c\x86\x87\x89\xa5\xa7\ +\xa9\xae\xb0\xb3\xae\xaf\xb2\x8c\x8d\x8f\x7e\x7f\x83\x9f\x9d\xa1\ +\xae\xad\xb0\xb6\xb5\xb7\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xb1\ +\xb1\xb2\xb2\xb1\xb4\xb5\xb4\xb5\xb9\xb8\xbb\xb8\xb7\xb9\xb9\xb8\ +\xb9\xb9\xb9\xb9\xb8\xb8\xb8\xb6\xb5\xb6\xb6\xb6\xb6\xb6\xb6\xb6\ +\xb6\xb5\xb5\xb5\xb5\xb5\xbb\xbb\xbb\xba\xb9\xba\xb6\xb5\xb7\xb8\ +\xb7\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ +\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ +\xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xdf\xe7\ +\xe2\xe0\xe7\xe2\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe5\xe0\xde\xe5\xe0\ +\xde\xe5\xe0\xde\xe3\xde\xdb\xe1\xdc\xda\xde\xd9\xd8\xda\xd5\xd4\ +\xd5\xd1\xcf\xce\xc9\xc9\xc1\xbc\xbb\xb1\xac\xab\x96\x92\x93\x6d\ +\x71\x73\x44\x4e\x54\x2e\x39\x41\x40\x45\x4e\x67\x65\x6b\x84\x7f\ +\x83\x93\x8e\x90\x9d\x98\x9a\xa4\xa0\xa2\xa8\xa4\xa6\xa7\xa4\xa6\ +\xa8\xa5\xa7\xa7\xa5\xa7\xa1\xa1\xa2\x90\x92\x93\x76\x7a\x7b\x6b\ +\x71\x72\x70\x74\x75\x80\x82\x84\x89\x8c\x8d\x8b\x8e\x91\x8d\x90\ +\x95\x8e\x92\x97\x8b\x90\x94\x89\x8d\x92\x87\x8c\x90\x87\x8b\x8f\ +\x87\x8b\x90\x84\x8a\x8f\x85\x8b\x8f\x7f\x85\x8a\x73\x7b\x7f\x45\ +\x51\x5a\x15\x22\x2e\x2a\x34\x3e\x53\x59\x61\x48\x4f\x59\x17\x24\ +\x31\x27\x2f\x3d\x60\x63\x6c\x6c\x72\x79\x6b\x70\x77\x74\x79\x7e\ +\x6e\x74\x79\x6d\x72\x78\x76\x7c\x82\x7b\x81\x88\x7c\x82\x89\x7c\ +\x83\x8a\x7c\x84\x8b\x7d\x84\x8d\x7e\x85\x8e\x7d\x84\x8c\x7e\x86\ +\x8e\x78\x80\x87\x52\x63\x6e\x53\x62\x6d\x61\x6c\x74\x3d\x49\x52\ +\x17\x22\x2c\x30\x39\x41\x79\x7c\x83\x89\x8e\x92\x89\x8f\x94\x8b\ +\x91\x97\x8a\x90\x96\x8a\x90\x95\x8a\x8f\x94\x8a\x8f\x95\x8b\x91\ +\x97\x8e\x93\x98\x92\x96\x9c\x90\x94\x9a\x92\x96\x9b\x92\x97\x9b\ +\x95\x98\x9d\x96\x98\x9d\x94\x97\x9b\x92\x96\x9a\x93\x96\x9a\x94\ +\x97\x9b\x99\x9c\xa0\x98\x9b\x9f\x9b\x9d\xa1\x9b\x9f\xa1\x9c\x9e\ +\x9f\x9d\x9f\xa0\x9d\xa0\xa1\x9a\x9e\x9f\x88\x8d\x8f\x81\x84\x85\ +\x94\x95\x96\xa5\xa6\xa7\xa2\xa4\xa5\x86\x88\x8a\x89\x89\x8a\x9e\ +\x9b\x9a\x9f\xa0\xa1\x27\x2e\x31\x00\x00\x00\x01\x01\x01\x50\x4c\ +\x4d\xb4\xb2\xb3\xb0\xaf\xb0\x92\x94\x96\x81\x83\x87\x9d\x9e\xa0\ +\xb2\xb1\xb4\xb3\xb3\xb5\x96\x97\x9a\x7f\x80\x83\x95\x95\x97\xab\ +\xaa\xac\xb8\xb7\xb9\xb4\xb3\xb5\xaf\xae\xb0\xb4\xb3\xb6\xb3\xb2\ +\xb4\xb3\xb2\xb4\xb9\xb8\xba\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\xb9\ +\xb7\xb7\xb8\xb9\xb9\xba\xb8\xb8\xb8\xb9\xb9\xb9\xb6\xb6\xb6\xb7\ +\xb7\xb7\xba\xba\xba\xbb\xbb\xbb\xba\xb9\xba\xba\xba\xba\x00\x00\ +\x00\xe7\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\xdf\ +\xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe6\ +\xe1\xde\xe8\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\ +\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\ +\xe2\xdc\xd9\xe0\xdb\xd9\xdd\xd8\xd7\xd7\xd2\xd1\xd1\xcc\xcb\xca\ +\xc5\xc4\xbb\xb6\xb5\xa7\xa4\xa1\x85\x85\x86\x5e\x64\x67\x36\x40\ +\x48\x30\x3a\x43\x4b\x4f\x57\x72\x6f\x74\x8c\x87\x89\x99\x94\x96\ +\xa2\x9d\x9f\xa7\xa3\xa5\xa9\xa6\xa8\xa9\xa6\xa8\xa8\xa6\xa8\xa7\ +\xa6\xa8\x9f\x9e\x9f\x87\x89\x8a\x74\x78\x79\x70\x74\x75\x79\x7c\ +\x7d\x86\x88\x89\x89\x8b\x8c\x8c\x8e\x90\x8e\x90\x95\x8e\x91\x96\ +\x8c\x90\x95\x8a\x8d\x92\x86\x8a\x8f\x87\x8b\x90\x84\x89\x8e\x82\ +\x88\x8d\x83\x88\x8c\x7f\x85\x8a\x77\x7e\x83\x50\x5c\x64\x25\x35\ +\x41\x39\x44\x4f\x5d\x64\x6c\x49\x51\x5c\x22\x30\x3e\x2b\x36\x45\ +\x61\x66\x6f\x75\x7a\x80\x6c\x72\x77\x70\x75\x7a\x73\x79\x7e\x6d\ +\x73\x78\x6f\x75\x7a\x78\x7e\x84\x7b\x81\x87\x7c\x83\x89\x7d\x84\ +\x8c\x7b\x83\x8b\x7d\x84\x8c\x7d\x84\x8b\x80\x87\x8f\x81\x87\x8e\ +\x79\x82\x88\x77\x81\x85\x76\x7f\x85\x51\x5d\x65\x16\x24\x2d\x45\ +\x4f\x59\x82\x85\x8c\x88\x8d\x92\x8a\x90\x95\x8b\x91\x96\x8b\x91\ +\x97\x89\x8e\x94\x86\x8c\x91\x87\x8c\x91\x87\x8b\x90\x8b\x90\x94\ +\x8e\x93\x99\x91\x96\x9b\x92\x96\x9b\x91\x96\x9a\x95\x99\x9e\x97\ +\x9b\x9f\x97\x9a\x9e\x96\x9a\x9d\x95\x98\x9c\x95\x98\x9c\x98\x9b\ +\x9e\x95\x98\x9c\x9a\x9c\xa0\x99\x9c\x9d\x9a\x9c\x9d\x9e\x9e\xa1\ +\x9e\xa1\xa2\xa1\xa4\xa5\xa1\xa5\xa7\x8c\x90\x91\x7b\x7f\x80\x90\ +\x92\x93\xa6\xa8\xaa\xa6\xa8\xaa\x8a\x8c\x8e\x81\x81\x83\x98\x99\ +\x99\x7b\x84\x87\x1e\x23\x26\x01\x01\x01\x1b\x1b\x1c\x9e\x9b\x9e\ +\xb1\xae\xaf\xb3\xb1\xb2\x98\x99\x9a\x86\x86\x8a\x97\x97\x9a\xac\ +\xac\xae\xb1\xb1\xb3\xa2\xa3\xa5\x85\x86\x89\x8a\x8b\x8c\xac\xab\ +\xad\xb4\xb2\xb4\xaf\xaf\xb1\xb4\xb4\xb7\xb5\xb4\xb6\xb9\xb8\xba\ +\xb9\xb8\xba\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb8\xb8\xb7\xb9\xb8\ +\xb8\xb9\xbb\xbb\xbd\xbb\xbb\xbb\xbb\xbb\xbb\xba\xba\xba\xb7\xb7\ +\xb7\xbb\xba\xba\xbb\xbb\xbb\xbb\xbb\xbb\x00\x00\x00\xe7\xe2\xdf\ +\xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\ +\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xe0\xe6\xe1\xde\xe7\xe3\ +\xe0\xe8\xe3\xe2\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ +\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\ +\xda\xd9\xdc\xd7\xd6\xd6\xd2\xd0\xd0\xcb\xca\xc5\xc0\xc0\xb4\xb0\ +\xaf\x9e\x9d\x9a\x77\x7a\x79\x4e\x56\x5a\x30\x3a\x44\x36\x3e\x48\ +\x59\x5a\x61\x7d\x79\x7b\x90\x8b\x8d\x9c\x97\x9a\xa4\xa0\xa3\xa8\ +\xa5\xa7\xaa\xa7\xa9\xa9\xa7\xa9\xa9\xa7\xa9\xa6\xa5\xa7\x9a\x9a\ +\x9c\x81\x83\x85\x76\x79\x7c\x79\x7c\x7d\x81\x83\x84\x86\x88\x89\ +\x86\x88\x89\x8a\x8c\x8e\x89\x8b\x8f\x85\x88\x8c\x88\x8c\x90\x89\ +\x8d\x92\x87\x8b\x90\x86\x8b\x8f\x83\x87\x8c\x82\x88\x8c\x83\x89\ +\x8e\x82\x88\x8c\x7a\x81\x86\x60\x6b\x73\x46\x53\x5d\x4e\x58\x62\ +\x67\x6d\x76\x57\x60\x6b\x3d\x4a\x57\x4a\x54\x60\x60\x67\x6f\x6f\ +\x75\x7b\x71\x76\x7b\x6d\x72\x77\x72\x77\x7c\x6f\x75\x7a\x6c\x71\ +\x76\x71\x77\x7c\x7a\x80\x85\x7d\x83\x88\x7c\x83\x89\x7b\x83\x8a\ +\x7d\x84\x8b\x7e\x85\x8c\x81\x87\x8e\x80\x86\x8d\x80\x88\x8e\x80\ +\x89\x8d\x82\x8b\x8f\x70\x7a\x80\x47\x57\x5e\x5b\x66\x6e\x84\x89\ +\x8e\x87\x8d\x92\x89\x8f\x94\x8a\x90\x95\x8a\x90\x95\x8a\x90\x96\ +\x89\x8f\x94\x86\x8b\x90\x86\x8a\x8f\x8a\x8e\x92\x8b\x8f\x94\x91\ +\x95\x9a\x92\x96\x9b\x94\x98\x9b\x99\x9e\xa1\x97\x9c\x9f\x96\x9a\ +\x9d\x98\x9c\xa0\x98\x9b\x9f\x96\x99\x9d\x97\x9a\x9e\x97\x9b\x9f\ +\x9b\x9d\xa0\x99\x9b\x9c\x9a\x9b\x9c\x9c\x9d\x9f\x9d\x9f\xa0\xa0\ +\xa2\xa3\xa3\xa6\xa7\xa0\xa4\xa5\x8e\x93\x94\x80\x85\x85\x8e\x91\ +\x92\xa4\xa6\xa7\xa9\xab\xac\x90\x93\x94\x7f\x80\x81\x93\x95\x97\ +\x80\x87\x8a\x40\x45\x45\x31\x36\x38\x86\x87\x89\x92\x91\x93\xac\ +\xaa\xaa\xb5\xb3\xb4\xa6\xa5\xa8\x88\x89\x8e\x8c\x8d\x90\xa4\xa3\ +\xa5\xb3\xb2\xb3\xae\xaf\xb1\x8e\x90\x90\x8b\x8a\x8c\x99\x97\x99\ +\xb3\xb1\xb3\xb7\xb7\xb9\xb4\xb3\xb6\xb7\xb6\xb8\xb9\xb8\xba\xb8\ +\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xb8\xb8\xb9\xbb\xba\ +\xbc\xbc\xbb\xbc\xbd\xbd\xbe\xbc\xbc\xbe\xb6\xb6\xb6\xb9\xb8\xb8\ +\xb9\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe7\ +\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ +\xdf\xe7\xe2\xde\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\xe0\xe8\xe3\xe0\ +\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe5\xe0\xde\xe4\ +\xdf\xdd\xe4\xdf\xdc\xe2\xdd\xda\xe0\xdc\xda\xde\xda\xd9\xda\xd7\ +\xd6\xd5\xd0\xcf\xcc\xc7\xc6\xc1\xbc\xbd\xaf\xac\xac\x90\x90\x90\ +\x69\x6d\x6e\x40\x49\x4f\x2e\x38\x41\x3f\x44\x4c\x67\x65\x69\x86\ +\x81\x82\x95\x8f\x91\x9e\x99\x9d\xa4\xa1\xa3\xa8\xa6\xa8\xaa\xa6\ +\xa8\xa8\xa7\xaa\xa7\xa5\xa7\xa4\xa3\xa5\x92\x93\x95\x80\x82\x85\ +\x7a\x7d\x81\x80\x82\x85\x85\x87\x88\x83\x87\x88\x84\x86\x88\x83\ +\x84\x87\x77\x7a\x7e\x6d\x70\x75\x79\x7b\x80\x86\x8a\x8f\x87\x8c\ +\x91\x85\x8b\x8f\x83\x87\x8c\x83\x88\x8d\x83\x89\x8d\x81\x87\x8c\ +\x7c\x83\x88\x71\x7b\x81\x63\x6e\x76\x63\x6c\x75\x6d\x73\x7c\x68\ +\x70\x79\x5c\x66\x70\x5f\x67\x6f\x60\x67\x6e\x64\x6a\x70\x72\x77\ +\x7c\x71\x75\x7a\x64\x6a\x6f\x66\x6b\x6f\x6a\x70\x75\x6c\x72\x77\ +\x75\x7b\x80\x7c\x82\x86\x7c\x83\x89\x7c\x83\x8a\x7c\x84\x8b\x7e\ +\x86\x8d\x80\x88\x8f\x7f\x86\x8e\x81\x8a\x8f\x81\x8a\x8e\x84\x8b\ +\x90\x82\x88\x8e\x79\x81\x87\x7c\x83\x88\x86\x8c\x92\x88\x8e\x93\ +\x87\x8d\x92\x89\x8f\x94\x87\x8d\x92\x8a\x91\x96\x8b\x92\x97\x89\ +\x8e\x93\x88\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x91\x95\x99\x94\x98\ +\x9d\x95\x9a\x9e\x99\x9d\xa1\x97\x9b\x9f\x96\x9a\x9e\x99\x9d\xa2\ +\x9a\x9d\xa2\x99\x9c\xa1\x97\x9b\x9f\x98\x9b\x9f\x9a\x9c\x9f\x9a\ +\x9d\x9f\x9b\x9c\x9d\x9c\x9e\x9f\xa0\xa1\xa2\xa1\xa2\xa4\xa3\xa3\ +\xa5\xa3\xa5\xa6\xa4\xa7\xa8\x99\x9c\x9d\x85\x88\x89\x88\x8a\x8c\ +\x9f\xa1\xa2\xab\xad\xad\x98\x9a\x9b\x82\x85\x85\x8c\x8e\x8e\x74\ +\x7a\x7c\x78\x7f\x82\xa2\xa4\xa4\x8a\x8b\x8d\x8c\x8b\x8d\xa3\xa2\ +\xa3\xb5\xb4\xb6\xa9\xaa\xad\x8d\x8f\x93\x85\x87\x8a\x9c\x9d\x9d\ +\xb1\xb0\xb2\xb4\xb6\xb7\x9e\x9d\xa1\x8a\x89\x8d\x91\x91\x94\xb0\ +\xaf\xb2\xb9\xb8\xba\xb6\xb5\xb8\xb7\xb6\xb9\xb7\xb6\xb8\xb9\xb7\ +\xb9\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xbc\xbc\xbc\ +\xba\xba\xbb\xbb\xba\xbb\xb8\xb8\xb7\xbc\xbc\xbc\xbd\xbc\xbc\xb8\ +\xb8\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe3\ +\xe0\xe7\xe3\xe0\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xe0\ +\xe8\xe3\xe2\xe8\xe3\xe0\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe6\ +\xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\xdf\ +\xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd8\xd7\xd8\xd4\xd3\xd1\xcd\xcc\ +\xc7\xc2\xc1\xbb\xb6\xb7\xa4\xa2\xa2\x81\x81\x82\x5a\x60\x61\x36\ +\x42\x46\x32\x3a\x41\x50\x52\x58\x75\x72\x75\x8d\x88\x89\x99\x95\ +\x96\xa2\x9f\xa1\xa6\xa4\xa6\xa8\xa6\xa8\xa9\xa7\xa9\xa7\xa6\xa9\ +\xa5\xa4\xa6\xa0\x9f\xa1\x8e\x8e\x90\x84\x86\x8a\x82\x84\x87\x85\ +\x86\x88\x87\x89\x8b\x81\x84\x86\x83\x86\x89\x7c\x7d\x81\x65\x6a\ +\x70\x4d\x55\x5e\x5f\x64\x6b\x7e\x81\x86\x85\x8a\x90\x86\x8c\x91\ +\x85\x89\x8f\x82\x88\x8c\x81\x87\x8c\x7f\x85\x8a\x7e\x86\x8a\x7c\ +\x84\x89\x74\x7d\x84\x6e\x77\x7f\x6d\x75\x7e\x6f\x76\x7f\x69\x71\ +\x7a\x54\x5c\x65\x4a\x50\x57\x54\x5a\x61\x69\x6e\x73\x6c\x70\x75\ +\x49\x50\x53\x47\x4d\x51\x64\x6b\x6e\x6c\x72\x77\x6d\x73\x78\x78\ +\x7d\x82\x7e\x85\x8b\x7d\x84\x8b\x7d\x85\x8c\x7f\x87\x8f\x80\x88\ +\x8f\x80\x89\x8e\x82\x8b\x8f\x82\x8a\x8f\x84\x8d\x91\x83\x8b\x90\ +\x84\x8a\x8f\x84\x8a\x90\x87\x8d\x93\x86\x8c\x92\x86\x8c\x91\x89\ +\x8f\x94\x88\x8e\x93\x8a\x90\x96\x8a\x90\x95\x8b\x91\x96\x8d\x91\ +\x97\x8b\x8f\x94\x8d\x91\x96\x92\x97\x9a\x95\x9a\x9d\x95\x9a\x9e\ +\x97\x9b\x9f\x98\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9d\xa0\xa5\x9c\ +\x9f\xa4\x9a\x9d\xa2\x99\x9c\xa0\x98\x9b\x9e\x9c\x9e\xa1\x9d\x9f\ +\xa0\x9c\x9d\x9e\xa0\xa0\xa2\xa1\xa0\xa2\xa2\xa2\xa4\xa3\xa4\xa6\ +\xa4\xa6\xa7\xa7\xaa\xab\x9e\xa1\xa2\x89\x8b\x8e\x83\x85\x86\x9f\ +\x9f\xa0\xa7\xa9\xa9\x9c\x9e\x9e\x80\x82\x84\x3e\x44\x47\x88\x8c\ +\x8e\xa5\xa6\xa6\x88\x89\x89\x7b\x7c\x7e\x88\x89\x8a\x9d\x9c\x9e\ +\xb0\xaf\xb1\xab\xac\xae\x98\x9b\x9c\x83\x85\x86\x91\x91\x93\xb2\ +\xb3\xb4\xb5\xb6\xb7\xaa\xaa\xad\x91\x91\x95\x89\x88\x8c\xa4\xa2\ +\xa4\xbc\xb9\xbc\xb8\xb7\xb9\xba\xb7\xb9\xb9\xb6\xb8\xb8\xb6\xb8\ +\xbb\xba\xbc\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xb9\xb9\xb8\xb9\xbc\ +\xbb\xbd\xb9\xb8\xba\xc0\xc0\xc0\xbd\xbc\xbd\xbb\xbb\xbb\x00\x00\ +\x00\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe0\ +\xe7\xe2\xe0\xe7\xe2\xde\xe7\xe2\xdf\xe8\xe3\xe2\xe7\xe2\xe1\xe7\ +\xe2\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\ +\xe1\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\ +\xdf\xda\xda\xdb\xd5\xd6\xd7\xd2\xd1\xcf\xc9\xc8\xc5\xc0\xbf\xb3\ +\xaf\xaf\x98\x97\x97\x71\x74\x74\x4a\x52\x53\x31\x3c\x40\x3a\x42\ +\x46\x62\x61\x65\x80\x7b\x7d\x90\x8b\x8c\x9c\x98\x99\xa4\xa1\xa2\ +\xa6\xa4\xa6\xa8\xa7\xa8\xa7\xa6\xa8\xa8\xa7\xa9\xa7\xa6\xa8\x9f\ +\x9e\xa0\x8f\x8f\x91\x87\x8a\x8d\x85\x88\x89\x85\x87\x88\x87\x8b\ +\x8c\x7f\x83\x86\x7f\x81\x84\x78\x7a\x7d\x5a\x61\x68\x39\x47\x52\ +\x4e\x56\x60\x77\x7a\x7f\x82\x88\x8d\x86\x8c\x91\x83\x89\x8f\x80\ +\x87\x8c\x80\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8a\x7b\x83\ +\x89\x74\x7c\x83\x6d\x75\x7d\x6e\x75\x7d\x6c\x73\x79\x46\x4f\x58\ +\x22\x2b\x33\x3d\x44\x4b\x60\x63\x68\x5f\x63\x67\x34\x3b\x40\x1f\ +\x25\x2a\x51\x57\x5c\x70\x75\x7a\x6d\x72\x77\x6f\x75\x79\x7a\x80\ +\x86\x7d\x83\x89\x7d\x85\x8c\x80\x88\x8e\x7f\x87\x8d\x80\x89\x8c\ +\x81\x89\x8e\x84\x8a\x8f\x83\x8a\x8f\x84\x8b\x90\x85\x8b\x91\x85\ +\x8b\x92\x89\x8f\x94\x88\x8e\x93\x87\x8d\x92\x87\x8d\x92\x89\x8f\ +\x94\x8a\x90\x96\x8b\x91\x98\x8d\x93\x99\x90\x95\x9a\x8f\x93\x98\ +\x90\x93\x98\x92\x96\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9b\x9e\x97\ +\x9c\x9f\x98\x9c\xa0\x9b\x9e\xa3\x9e\xa1\xa6\x9d\xa0\xa5\x9a\x9d\ +\xa2\x98\x9b\xa0\x98\x9b\x9f\x9e\xa1\xa3\xa0\xa2\xa3\x9f\x9f\xa0\ +\x9f\x9e\xa1\xa1\xa0\xa2\xa2\xa4\xa5\xa5\xa7\xa8\xa4\xa6\xa7\xa5\ +\xa6\xa9\xa7\xa9\xad\xa4\xa6\xaa\x91\x93\x96\x85\x88\x89\x95\x97\ +\x98\xab\xab\xac\x82\x83\x85\x5f\x64\x66\x7a\x80\x82\x8c\x8f\x90\ +\x6d\x70\x72\x66\x69\x6c\x9d\x9f\xa0\x86\x88\x8a\x90\x91\x93\xab\ +\xab\xac\xb2\xb3\xb3\xa4\xa6\xa7\x8d\x8e\x91\x85\x87\x8a\xaa\xaa\ +\xab\xb6\xb6\xb7\xaf\xaf\xb1\x9e\x9e\xa1\x89\x89\x8b\x93\x91\x95\ +\xba\xb8\xb9\xbf\xbc\xbe\xb9\xb6\xb8\xb8\xb6\xb8\xba\xb9\xbb\xba\ +\xb9\xbb\xbc\xbb\xbd\xba\xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ +\xbe\xc2\xc2\xc3\xbd\xbd\xbd\xbc\xbb\xbd\x00\x00\x00\xe6\xe1\xe0\ +\xe6\xe1\xde\xe7\xe2\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe8\ +\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ +\xe0\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe5\xdf\xdf\ +\xe5\xe0\xdf\xe5\xe0\xde\xe2\xdd\xdc\xe0\xdb\xda\xde\xd8\xd8\xdb\ +\xd5\xd5\xd3\xcc\xcc\xcc\xc4\xc5\xbf\xb9\xb8\xac\xa9\xa9\x8e\x8d\ +\x8d\x64\x68\x68\x3c\x46\x48\x2f\x39\x3d\x45\x4b\x4e\x6c\x6c\x6d\ +\x88\x84\x84\x97\x92\x92\xa0\x9c\x9c\xa5\xa3\xa3\xa7\xa6\xa6\xa8\ +\xa6\xa7\xa7\xa6\xa8\xa6\xa5\xa7\xa5\xa5\xa6\x9e\x9d\x9f\x92\x94\ +\x96\x89\x8b\x8f\x87\x89\x8b\x85\x88\x89\x83\x86\x88\x77\x7b\x7e\ +\x6c\x70\x73\x68\x6b\x6f\x60\x66\x6b\x53\x5d\x66\x56\x5d\x65\x77\ +\x7a\x80\x81\x86\x8b\x84\x89\x8e\x81\x88\x8d\x81\x87\x8e\x7f\x85\ +\x8c\x7d\x84\x8b\x7b\x83\x88\x7c\x85\x89\x7c\x84\x8a\x79\x81\x88\ +\x73\x7b\x82\x6e\x75\x7c\x69\x6f\x75\x42\x4c\x53\x0e\x1a\x20\x2f\ +\x37\x3e\x63\x66\x6a\x53\x57\x5b\x1c\x24\x2b\x08\x0d\x13\x3c\x41\ +\x47\x6f\x72\x77\x73\x77\x7d\x6a\x70\x76\x73\x78\x7e\x7e\x84\x88\ +\x7c\x85\x8a\x7d\x86\x8b\x7e\x87\x8c\x80\x87\x8c\x82\x89\x8e\x84\ +\x8a\x90\x83\x89\x8e\x86\x8c\x92\x87\x8d\x94\x87\x8d\x94\x87\x8d\ +\x93\x88\x8e\x93\x88\x8e\x94\x87\x8c\x92\x89\x8e\x93\x8a\x90\x95\ +\x8f\x95\x9c\x8e\x94\x99\x8e\x93\x98\x93\x97\x9c\x94\x98\x9d\x91\ +\x93\x98\x94\x97\x9c\x98\x9b\x9f\x97\x9a\x9e\x97\x9b\x9f\x99\x9c\ +\xa0\x9b\x9e\xa3\x9c\x9f\xa4\x9d\xa0\xa5\x9c\x9f\xa4\x9e\xa1\xa5\ +\x9c\x9f\xa3\x9f\xa2\xa3\x94\x95\x96\x8f\x8f\x90\xa3\xa2\xa5\xa0\ +\xa1\xa3\xa1\xa2\xa4\xa4\xa5\xa7\xa4\xa6\xa7\xa6\xa7\xaa\xa9\xaa\ +\xae\xa9\xab\xaf\xa5\xa7\xa9\x98\x9b\x9e\x7f\x82\x86\x86\x87\x8a\ +\x6a\x6b\x6e\x96\x98\x9a\x98\x9d\x9d\x84\x88\x8a\x79\x7c\x80\x97\ +\x99\x9c\xad\xad\xaf\xa3\xa4\xa6\x88\x89\x8c\x87\x87\x8a\xaa\xaa\ +\xaa\xb3\xb4\xb4\xad\xae\xaf\x96\x97\x99\x81\x80\x82\xa0\x9f\xa1\ +\xb6\xb5\xb6\xb7\xb6\xb7\xa9\xa9\xaa\x91\x91\x95\x8c\x8b\x8f\xaf\ +\xac\xaf\xbb\xb8\xba\xb9\xb8\xba\xbb\xb9\xbb\xbb\xb9\xbb\xbc\xbb\ +\xbd\xbd\xbb\xbd\xb9\xb8\xba\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbf\xbf\ +\xbd\xbd\xbe\xbd\xbd\xbd\x00\x00\x00\xe7\xe2\xe0\xe6\xe1\xdf\xe5\ +\xe0\xdf\xe4\xdf\xdc\xe5\xe0\xde\xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\ +\xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe1\ +\xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe1\xe5\xe0\xde\xe5\xe0\xde\xe4\ +\xdf\xde\xe2\xdd\xdc\xe0\xdb\xda\xdd\xd8\xd7\xd9\xd3\xd3\xd2\xca\ +\xcb\xc9\xc2\xc1\xb9\xb5\xb4\xa2\xa0\xa0\x7e\x7f\x7f\x59\x5e\x5f\ +\x35\x3e\x42\x33\x3e\x42\x55\x59\x5a\x7a\x78\x78\x8f\x8a\x8b\x9b\ +\x97\x98\xa2\xa0\xa0\xa5\xa3\xa4\xaa\xa8\xa9\xab\xa8\xa9\xa8\xa7\ +\xa8\xa6\xa6\xa7\xa3\xa3\xa4\x9b\x9b\x9c\x92\x93\x95\x8d\x90\x94\ +\x87\x8a\x8e\x84\x88\x8a\x77\x7a\x7c\x67\x6c\x6e\x5b\x60\x65\x5d\ +\x61\x66\x62\x66\x6b\x6a\x6f\x73\x6c\x71\x75\x7a\x7e\x82\x7e\x83\ +\x88\x82\x88\x8d\x82\x88\x8f\x80\x86\x8d\x7f\x85\x8c\x7b\x83\x8b\ +\x7b\x83\x8a\x7d\x85\x8b\x7c\x84\x8a\x7c\x84\x8a\x77\x7f\x86\x6b\ +\x74\x7a\x54\x5d\x65\x34\x40\x48\x0e\x1b\x22\x29\x32\x3a\x5e\x62\ +\x66\x40\x48\x4d\x10\x18\x1e\x07\x0e\x13\x36\x3d\x44\x6a\x6e\x75\ +\x75\x7a\x7f\x70\x76\x7b\x6d\x73\x79\x78\x7e\x83\x7d\x84\x8a\x7f\ +\x86\x8c\x7f\x87\x8d\x80\x89\x8d\x84\x8c\x92\x85\x8b\x91\x84\x8a\ +\x8f\x86\x8c\x91\x87\x8d\x94\x87\x8d\x93\x85\x8b\x91\x86\x8c\x91\ +\x86\x8c\x91\x88\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8d\x93\x99\x8e\ +\x94\x9a\x8c\x91\x98\x8f\x93\x98\x93\x97\x9c\x94\x98\x9c\x93\x98\ +\x9b\x98\x9c\xa0\x99\x9c\xa0\x97\x9b\x9f\x9a\x9e\xa2\x9a\x9e\xa3\ +\x99\x9e\xa2\x9c\x9f\xa3\x9c\x9f\xa3\x9d\xa0\xa5\xa2\xa5\xa9\x9f\ +\xa0\xa3\x6f\x73\x75\x64\x65\x68\x84\x83\x86\xa2\xa1\xa4\xa4\xa3\ +\xa5\xa4\xa3\xa5\xa4\xa6\xa7\xa9\xab\xad\xaa\xab\xb0\xa6\xa8\xaa\ +\xa6\xa8\xa9\xa5\xa7\xa9\xa0\xa2\xa6\x68\x6b\x70\x59\x5d\x62\xa5\ +\xa7\xa7\xab\xae\xad\xa4\xa6\xa8\x89\x8b\x8f\x84\x85\x88\xa3\xa2\ +\xa3\xae\xad\xae\xa7\xa8\xaa\x93\x96\x99\x80\x82\x86\xa4\xa4\xa4\ +\xb5\xb6\xb4\xb4\xb4\xb4\xa4\xa5\xa6\x88\x89\x8b\x90\x8f\x91\xb6\ +\xb5\xb5\xb7\xb6\xb7\xb3\xb5\xb6\x9e\xa0\xa2\x86\x88\x8b\x9e\x9d\ +\xa0\xbd\xbb\xbd\xbc\xba\xbc\xba\xb8\xbb\xbb\xba\xbc\xbc\xbb\xbd\ +\xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\xbd\xbd\xbe\xb9\xb8\xba\xba\ +\xb9\xbb\x00\x00\x00\xe6\xe1\xdf\xe6\xe1\xde\xe6\xe1\xdf\xe5\xe0\ +\xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe6\xe1\xde\xe6\xe0\xdf\xe6\xe1\xe0\ +\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe6\ +\xe1\xdf\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdd\ +\xdb\xdf\xda\xda\xdc\xd6\xd6\xd8\xd0\xcf\xcf\xc8\xc7\xc3\xbe\xbd\ +\xb3\xae\xae\x97\x96\x97\x6f\x72\x74\x48\x50\x54\x30\x3a\x3f\x3b\ +\x44\x46\x62\x64\x64\x84\x80\x81\x94\x8f\x90\x9d\x9a\x9a\xa4\xa1\ +\xa2\xa8\xa5\xa6\xa8\xa6\xa8\xa9\xa7\xa7\xa6\xa6\xa7\xa6\xa6\xa6\ +\xa4\xa4\xa4\x9d\x9d\x9d\x99\x99\x9a\x8d\x90\x93\x87\x8a\x8e\x82\ +\x86\x88\x72\x77\x78\x5c\x61\x63\x4a\x50\x54\x52\x56\x5c\x64\x68\ +\x6d\x6c\x70\x74\x76\x79\x7d\x7a\x7f\x83\x82\x87\x8c\x83\x89\x8e\ +\x82\x89\x8f\x7d\x86\x8b\x7d\x84\x8b\x7c\x84\x8b\x7c\x84\x8b\x7c\ +\x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x84\x8b\x70\x78\x80\x43\x51\ +\x5a\x1c\x28\x30\x1b\x28\x2f\x36\x40\x48\x46\x4f\x56\x28\x32\x3a\ +\x07\x10\x15\x19\x22\x29\x4d\x54\x5d\x6a\x71\x78\x71\x77\x7c\x74\ +\x7a\x7f\x70\x77\x7c\x6e\x74\x7a\x7a\x7f\x84\x81\x87\x8c\x7e\x87\ +\x8b\x80\x88\x8d\x86\x8c\x93\x83\x89\x8e\x85\x8b\x90\x87\x8d\x92\ +\x87\x8d\x92\x88\x8e\x95\x88\x8d\x93\x87\x8c\x91\x87\x8d\x91\x8a\ +\x8f\x93\x8c\x91\x96\x8c\x91\x96\x89\x8d\x92\x88\x8d\x92\x88\x8d\ +\x92\x8e\x92\x97\x90\x94\x99\x94\x99\x9d\x95\x98\x9b\x96\x99\x9d\ +\x97\x9b\xa0\x9a\x9d\xa2\x9c\xa0\xa4\x9a\x9e\xa3\x98\x9c\xa0\x9a\ +\x9e\xa1\x9d\xa0\xa4\xa0\xa3\xa8\xa5\xa8\xac\x91\x94\x98\x64\x69\ +\x6d\x89\x8c\x8d\x78\x7a\x7b\x7d\x7d\x7f\xa0\x9f\xa1\xa2\xa3\xa5\ +\xa1\xa2\xa5\xa3\xa5\xa6\xa7\xa7\xaa\xa4\xa6\xa8\xa4\xa6\xa8\xa5\ +\xa6\xa9\xa0\xa2\xa6\x6d\x71\x74\x7c\x7f\x82\x80\x83\x84\xa1\xa3\ +\xa2\xb0\xb0\xb1\xab\xab\xad\x94\x95\x97\x87\x88\x89\x9c\x9c\x9d\ +\xaf\xaf\xaf\xae\xb0\xb1\x9f\xa2\xa5\x7f\x82\x85\x94\x95\x95\xb5\ +\xb6\xb4\xb5\xb5\xb5\xae\xaf\xb0\x93\x94\x95\x80\x80\x82\xab\xaa\ +\xaa\xbc\xbc\xbd\xb6\xb7\xb8\xab\xac\xae\x8c\x8d\x8e\x96\x95\x96\ +\xb5\xb2\xb2\xbb\xba\xbc\xbe\xbb\xbd\xbf\xbc\xbe\xbe\xbd\xbf\xbb\ +\xba\xbc\xba\xb9\xbb\xb9\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xb9\x00\x00\ +\x00\xe6\xe1\xdf\xe6\xe1\xdf\xe6\xe1\xdd\xe5\xe0\xdd\xe5\xe0\xdd\ +\xe5\xe0\xde\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\xe0\xe7\ +\xe2\xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe6\xe1\xe1\xe6\xe1\xe0\xe5\xe0\ +\xde\xe4\xdf\xde\xe4\xde\xde\xe3\xdd\xdb\xe1\xdb\xd9\xde\xd9\xd8\ +\xd9\xd3\xd2\xd5\xcd\xcb\xcb\xc5\xc3\xbc\xb7\xb7\xa9\xa6\xa6\x88\ +\x89\x8a\x62\x66\x6a\x3c\x46\x4d\x36\x3f\x45\x49\x4e\x52\x6e\x6e\ +\x6e\x8a\x85\x86\x98\x92\x93\xa1\x9c\x9d\xa7\xa3\xa4\xaa\xa7\xa9\ +\xa8\xa6\xa8\xa7\xa4\xa6\xa5\xa4\xa5\xa5\xa5\xa5\xa4\xa3\xa5\x9f\ +\x9e\xa0\x98\x99\x9a\x8f\x92\x93\x85\x88\x8b\x7d\x80\x82\x6e\x73\ +\x74\x55\x5c\x5d\x4a\x50\x53\x55\x59\x5d\x65\x68\x6c\x6a\x6d\x71\ +\x75\x78\x7c\x7c\x81\x84\x82\x87\x8c\x82\x89\x8e\x80\x88\x8d\x7f\ +\x87\x8e\x7f\x87\x8e\x7e\x86\x8c\x7c\x84\x8a\x7d\x85\x8c\x7c\x84\ +\x8b\x7b\x83\x8a\x7e\x84\x8b\x72\x79\x81\x3a\x48\x53\x0e\x1c\x24\ +\x2c\x38\x40\x54\x5d\x61\x40\x4b\x51\x0e\x1a\x20\x06\x0c\x11\x2e\ +\x36\x3e\x60\x68\x70\x75\x7b\x82\x6e\x76\x7c\x71\x78\x7d\x77\x7d\ +\x82\x6e\x75\x7a\x71\x77\x7c\x7c\x81\x87\x7e\x85\x8a\x82\x88\x8d\ +\x82\x88\x8d\x81\x87\x8b\x83\x89\x8e\x86\x8c\x91\x89\x8e\x93\x89\ +\x8e\x93\x8b\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8d\x92\x8a\x8f\ +\x94\x8b\x91\x95\x8a\x8f\x94\x85\x8a\x8f\x84\x89\x8d\x89\x8e\x91\ +\x8f\x94\x98\x92\x97\x9a\x95\x98\x9d\x97\x9b\xa0\x97\x9b\xa0\x9a\ +\x9d\xa2\x9d\xa0\xa5\x9d\xa1\xa5\x9b\x9f\xa2\x9e\xa1\xa5\x9f\xa2\ +\xa6\xa0\xa3\xa7\xa5\xa6\xaa\x78\x7d\x82\x4f\x55\x5c\x89\x8a\x8d\ +\x99\x99\x9b\x68\x69\x6b\x65\x64\x67\x9b\x9b\x9d\xa3\xa4\xa6\xa5\ +\xa4\xa6\xa7\xa7\xa9\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa9\x8d\x8e\ +\x92\x76\x7a\x7c\xa5\xa6\xa7\x97\x99\x9a\x7f\x82\x83\x99\x9a\x9b\ +\xaf\xae\xaf\xad\xae\xaf\x9d\x9f\xa0\x84\x86\x87\x92\x92\x93\xac\ +\xab\xad\xb5\xb6\xb7\xa8\xab\xac\x8a\x8c\x8d\x89\x8a\x8a\xaf\xaf\ +\xb0\xb4\xb4\xb4\xb3\xb3\xb4\xa2\xa4\xa5\x86\x87\x88\x9a\x99\x9b\ +\xba\xba\xbb\xbb\xba\xbb\xba\xb8\xba\x9a\x99\x9b\x86\x84\x84\xaf\ +\xad\xae\xbe\xbb\xbd\xbf\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\ +\xbc\xb7\xb6\xb7\xb8\xb7\xb8\xb9\xb7\xb8\x00\x00\x00\xe5\xdf\xdd\ +\xe5\xdf\xdc\xe7\xe0\xe0\xe6\xdf\xdf\xe5\xe0\xde\xe5\xe0\xdf\xe6\ +\xe1\xe0\xe6\xe1\xe0\xe7\xe1\xdf\xe6\xe0\xdf\xe5\xdf\xde\xe6\xe1\ +\xe0\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\ +\xe3\xde\xdb\xe2\xdc\xda\xdf\xda\xd8\xdb\xd6\xd5\xd7\xd2\xd1\xd0\ +\xc9\xc7\xc6\xc1\xbe\xb8\xb4\xb5\xa1\xa0\xa0\x7a\x7c\x7c\x52\x58\ +\x5b\x37\x40\x47\x3d\x44\x4b\x5b\x5c\x61\x7b\x79\x7a\x8f\x8b\x8b\ +\x9c\x98\x99\xa2\x9f\xa0\xa6\xa3\xa5\xa8\xa6\xa8\xa9\xa6\xa8\xa9\ +\xa6\xa8\xa5\xa4\xa5\xa3\xa3\xa4\xa1\xa0\xa1\x9e\x9d\x9f\x97\x99\ +\x9a\x8c\x8f\x91\x85\x89\x8c\x7c\x80\x81\x6c\x70\x71\x55\x5c\x5e\ +\x48\x4f\x53\x5c\x5f\x63\x62\x65\x69\x64\x67\x6b\x71\x74\x78\x7d\ +\x81\x85\x81\x86\x8b\x84\x8a\x8f\x82\x88\x8d\x7f\x87\x8c\x7d\x85\ +\x8c\x7d\x85\x8c\x7e\x86\x8d\x7c\x84\x8b\x7c\x83\x8a\x7b\x82\x89\ +\x7c\x82\x89\x72\x7a\x81\x3a\x49\x54\x0e\x1e\x26\x2d\x3b\x44\x61\ +\x68\x6c\x4d\x57\x5d\x09\x17\x1d\x0b\x14\x1c\x41\x4a\x53\x6c\x72\ +\x79\x76\x7c\x83\x75\x7c\x82\x6e\x74\x7b\x75\x7b\x81\x77\x7d\x82\ +\x6b\x72\x78\x70\x76\x7c\x7e\x85\x89\x83\x8a\x8e\x81\x86\x8c\x84\ +\x8a\x90\x87\x8d\x93\x87\x8c\x93\x89\x8d\x92\x89\x8e\x93\x8b\x90\ +\x94\x8c\x91\x95\x8b\x90\x94\x8c\x91\x96\x8a\x90\x95\x8c\x91\x94\ +\x8c\x91\x95\x8a\x8e\x92\x8b\x90\x94\x8f\x94\x98\x91\x96\x99\x96\ +\x9a\x9e\x96\x99\x9e\x97\x9a\x9f\x99\x9c\xa1\x99\x9c\xa1\x9c\x9f\ +\xa3\x9b\x9e\xa3\x9b\x9f\xa4\x9d\xa0\xa5\x9d\xa0\xa4\x9f\xa2\xa6\ +\x96\x98\x9c\x67\x6d\x72\x82\x86\x89\x78\x7b\x7e\x73\x75\x78\x6b\ +\x6d\x70\x6b\x6e\x70\x7a\x7c\x7d\x99\x99\x9b\xa7\xa7\xa8\xa5\xa5\ +\xa6\xa7\xa7\xa9\xa8\xa8\xaa\xa7\xa7\xa9\x70\x74\x77\x8c\x8f\x91\ +\xaa\xaa\xab\xaa\xad\xae\xa4\xa8\xa9\x89\x8b\x8c\x8d\x8e\x8d\xa5\ +\xa5\xa5\xb0\xb0\xb1\xaa\xab\xac\x87\x88\x89\x8b\x8b\x8c\xa8\xa9\ +\xab\xaf\xb0\xb0\xb1\xb3\xb3\x9a\x9b\x9b\x7d\x7d\x7d\xa4\xa2\xa2\ +\xb3\xb2\xb3\xb7\xb6\xb8\xae\xaf\xb1\x8b\x8c\x8e\x8c\x8d\x8e\xb3\ +\xb1\xb2\xbd\xb9\xbb\xbd\xbb\xbd\xae\xac\xac\x80\x7f\x80\x9c\x9b\ +\x9d\xbb\xba\xbb\xbe\xbc\xbd\xba\xb8\xba\xbc\xba\xbc\xbe\xbc\xbd\ +\xbb\xb8\xba\xb9\xb8\xb8\x00\x00\x00\xe6\xe1\xde\xe6\xe0\xde\xe6\ +\xe0\xe0\xe5\xe0\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xde\xe6\xde\ +\xdd\xe3\xdc\xd9\xe1\xd9\xd6\xe2\xdb\xd8\xe5\xde\xdb\xe6\xe1\xde\ +\xe6\xe0\xde\xe6\xe0\xdd\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xdc\xdc\xe2\ +\xda\xda\xdf\xd8\xd6\xda\xd3\xd0\xd4\xce\xcb\xcb\xc6\xc3\xc2\xbd\ +\xbc\xaf\xac\xad\x91\x91\x91\x6c\x6f\x6f\x46\x4e\x53\x31\x3b\x42\ +\x44\x4b\x52\x69\x68\x6d\x83\x81\x82\x94\x92\x92\xa0\x9e\x9e\xa4\ +\xa1\xa2\xa6\xa4\xa6\xaa\xa8\xaa\xaa\xa8\xaa\xa8\xa7\xa9\xa6\xa5\ +\xa7\xa2\xa1\xa3\xa0\x9f\xa1\x9d\x9e\x9f\x93\x95\x96\x89\x8c\x8f\ +\x82\x85\x87\x7c\x80\x81\x6b\x70\x71\x52\x59\x5d\x45\x4b\x51\x55\ +\x58\x5c\x59\x5d\x61\x61\x64\x68\x6c\x6f\x73\x80\x84\x88\x82\x88\ +\x8d\x81\x87\x8c\x80\x86\x8b\x7d\x83\x88\x7c\x85\x8a\x7b\x84\x89\ +\x7c\x84\x8a\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x84\x8a\x72\ +\x7a\x81\x51\x5d\x68\x24\x37\x41\x39\x47\x52\x5f\x67\x6d\x63\x6b\ +\x70\x28\x37\x41\x15\x22\x2d\x52\x5c\x64\x6f\x76\x7b\x70\x77\x7d\ +\x76\x7c\x82\x71\x79\x7e\x6c\x75\x7a\x77\x7d\x82\x74\x7a\x80\x6d\ +\x74\x7a\x78\x7c\x81\x7f\x84\x89\x83\x88\x8d\x82\x88\x8d\x86\x8c\ +\x92\x88\x8c\x92\x88\x8c\x91\x88\x8c\x91\x8b\x8f\x94\x8a\x8f\x93\ +\x8c\x91\x96\x8c\x92\x96\x8d\x92\x96\x8d\x92\x96\x8e\x92\x96\x89\ +\x8d\x91\x8f\x94\x97\x93\x97\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\ +\xa0\x9b\x9f\xa4\x99\x9d\xa2\x9b\x9f\xa4\x9c\x9f\xa4\x9b\x9e\xa3\ +\x9d\x9f\xa5\x9d\xa0\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x81\x85\x88\x4b\ +\x53\x5a\x8a\x8b\x8f\x94\x97\x99\x64\x67\x6c\x49\x4c\x51\x9a\x9b\ +\x99\x8b\x8e\x8d\x74\x76\x77\x8e\x8d\x8f\xa3\xa2\xa4\xa8\xa6\xa8\ +\xa7\xa6\xa8\x93\x94\x97\x76\x7a\x7d\xa1\xa3\xa5\xab\xac\xae\xac\ +\xac\xad\xaf\xaf\xb0\xa9\xaa\xac\x89\x8c\x8d\x81\x83\x84\xa5\xa6\ +\xa6\xb4\xb3\xb3\xb2\xb2\xb3\x91\x93\x94\x7f\x81\x83\x9e\x9e\xa0\ +\xb3\xb3\xb3\xb3\xb4\xb4\xa8\xa8\xa8\x81\x7f\x7f\x92\x8e\x8f\xaf\ +\xae\xae\xb7\xb6\xb8\xb7\xb8\xb9\x99\x9a\x9b\x83\x83\x84\xa2\xa1\ +\xa1\xba\xb8\xb8\xbf\xbd\xbd\xb8\xb7\xb8\x8e\x8f\x92\x85\x85\x88\ +\xb4\xb2\xb4\xba\xb7\xb8\xbd\xba\xbc\xbe\xbb\xbd\xbc\xbb\xbc\xbd\ +\xbc\xbc\x00\x00\x00\xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xdb\xe3\xdd\ +\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xda\xe2\xdc\xdb\xe0\xd9\xd7\ +\xde\xd6\xd3\xdf\xd7\xd4\xe2\xdb\xd8\xe5\xdf\xdd\xe6\xe0\xdf\xe5\ +\xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe2\xdc\xd9\xe0\xda\xd7\xdd\xd7\ +\xd5\xd9\xd3\xd1\xd2\xcd\xcb\xca\xc5\xc4\xbd\xb8\xb7\xa9\xa5\xa5\ +\x83\x85\x84\x5c\x62\x62\x3b\x44\x4b\x2f\x3a\x41\x4c\x51\x58\x76\ +\x74\x77\x8c\x8a\x89\x97\x94\x94\xa2\xa0\xa0\xa5\xa3\xa4\xa8\xa5\ +\xa7\xab\xa8\xaa\xa8\xa7\xa9\xa6\xa6\xa8\xa4\xa3\xa5\xa2\xa1\xa3\ +\xa0\x9f\xa2\x9b\x9c\x9d\x8f\x92\x93\x84\x88\x8a\x7f\x83\x85\x7c\ +\x80\x80\x6c\x71\x72\x4c\x54\x59\x31\x36\x3d\x47\x49\x4f\x5b\x5e\ +\x62\x60\x63\x67\x67\x6a\x6e\x7a\x7e\x81\x81\x86\x8b\x81\x87\x8c\ +\x80\x86\x8a\x7d\x84\x89\x7c\x85\x89\x7d\x85\x8a\x7c\x84\x8a\x7d\ +\x85\x8b\x7d\x85\x8b\x7b\x83\x8a\x7b\x84\x8a\x77\x7f\x86\x67\x71\ +\x78\x54\x5f\x68\x57\x63\x6a\x63\x6b\x72\x65\x6d\x71\x4d\x5a\x64\ +\x3c\x4b\x56\x5e\x67\x6e\x75\x7b\x80\x6e\x76\x7d\x71\x78\x7f\x77\ +\x7e\x85\x6f\x77\x7e\x70\x76\x7c\x7a\x80\x85\x75\x7b\x80\x6e\x73\ +\x78\x79\x7e\x82\x84\x88\x8c\x86\x8a\x8f\x88\x8c\x91\x87\x8b\x90\ +\x89\x8d\x92\x89\x8d\x92\x8b\x8f\x94\x8f\x93\x98\x8d\x91\x96\x8e\ +\x92\x96\x8e\x93\x96\x8f\x94\x98\x8e\x92\x96\x8f\x93\x97\x90\x95\ +\x99\x90\x95\x99\x93\x96\x9a\x94\x97\x9c\x99\x9c\xa0\x9a\x9d\xa2\ +\x9b\x9e\xa3\x9d\xa0\xa5\x9c\x9f\xa4\x9b\x9e\xa2\x9c\x9f\xa3\x9b\ +\x9e\xa2\xa0\xa3\xa7\x9c\x9f\xa3\x6e\x73\x77\x77\x7a\x7e\x6e\x71\ +\x76\x7a\x7d\x7f\x68\x6c\x6f\x66\x69\x6c\x7f\x80\x81\x93\x94\x93\ +\x62\x67\x69\x57\x59\x5d\x8f\x8c\x8d\xa5\xa3\xa3\xa8\xa7\xa8\xa2\ +\xa3\xa4\x9e\xa1\xa3\xab\xab\xac\xb0\xb0\xb2\xae\xad\xaf\xab\xaa\ +\xac\xb1\xb0\xb2\xad\xac\xae\x93\x94\x96\x83\x85\x86\x9f\x9f\x9f\ +\xb2\xb1\xb2\xb1\xb1\xb3\x9d\x9f\xa0\x85\x88\x88\x9c\x9c\x9c\xa9\ +\xaa\xaa\xb3\xb2\xb2\xb3\xb2\xb2\x90\x8e\x8e\x81\x7f\x7f\xaa\xab\ +\xab\xb5\xb5\xb6\xbb\xbb\xbd\xa7\xa7\xa9\x82\x82\x82\x9a\x97\x97\ +\xb7\xb4\xb4\xbb\xb9\xb9\xbf\xbe\xbf\xab\xac\xac\x81\x81\x82\x9b\ +\x99\x98\xbc\xb9\xba\xbd\xba\xbc\xc1\xbf\xc1\xc1\xbf\xc2\x00\x00\ +\x00\xe2\xdb\xd7\xe0\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\ +\xe1\xda\xd6\xe1\xd9\xd6\xdf\xd8\xd4\xd9\xd0\xcd\xd9\xd0\xcd\xde\ +\xd6\xd3\xe2\xdb\xda\xe5\xe0\xde\xe5\xe1\xde\xe5\xe0\xde\xe3\xde\ +\xdd\xe2\xdd\xdb\xe2\xdb\xd8\xe0\xd9\xd6\xdb\xd5\xd2\xd7\xd2\xd0\ +\xcf\xca\xc9\xc6\xc0\xc0\xb8\xb4\xb3\x9d\x99\x98\x77\x7a\x78\x51\ +\x58\x5b\x35\x3f\x46\x37\x41\x46\x5f\x60\x64\x7d\x7b\x7c\x90\x8e\ +\x8e\x9c\x99\x9a\xa2\xa0\xa1\xa5\xa4\xa4\xa7\xa5\xa7\xa8\xa5\xa7\ +\xa7\xa5\xa7\xa5\xa4\xa6\xa2\xa1\xa3\xa2\xa2\xa3\x9f\x9f\xa2\x98\ +\x9a\x9c\x8d\x91\x92\x86\x89\x8d\x7f\x82\x86\x7a\x7e\x7f\x69\x6e\ +\x6f\x42\x4a\x51\x29\x2f\x38\x3e\x41\x48\x58\x5c\x60\x5a\x5e\x62\ +\x66\x69\x6d\x76\x79\x7d\x81\x84\x89\x81\x87\x8c\x7f\x85\x8a\x80\ +\x87\x8c\x7f\x86\x8d\x7e\x86\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ +\x8b\x7a\x82\x89\x7b\x82\x89\x79\x81\x88\x77\x7e\x85\x72\x79\x7f\ +\x71\x79\x80\x6e\x76\x7b\x65\x6d\x71\x67\x6f\x76\x64\x6e\x75\x68\ +\x6e\x75\x74\x7a\x7f\x74\x7b\x81\x6e\x75\x7c\x74\x7b\x81\x77\x7e\ +\x83\x6f\x77\x7c\x70\x78\x7d\x7b\x80\x85\x75\x7b\x7e\x70\x74\x79\ +\x7b\x80\x84\x86\x8a\x8f\x88\x8d\x91\x87\x8b\x90\x88\x8c\x91\x88\ +\x8d\x92\x8a\x90\x96\x8d\x92\x97\x8d\x93\x97\x8b\x92\x97\x8e\x94\ +\x97\x8e\x93\x96\x90\x94\x99\x90\x95\x99\x8f\x93\x97\x90\x94\x97\ +\x92\x95\x99\x93\x96\x9a\x97\x9a\x9e\x99\x9c\xa0\x9c\x9f\xa3\x9b\ +\x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa3\x9e\xa1\xa5\x9e\xa1\xa5\xa3\xa5\ +\xa9\x89\x8c\x90\x5a\x61\x65\x86\x88\x8c\x92\x94\x98\x64\x68\x6c\ +\x45\x4b\x4f\x93\x94\x95\x89\x8a\x8b\x5d\x60\x62\x55\x5c\x60\x83\ +\x87\x89\x7b\x79\x78\x80\x7b\x7b\xa0\x9e\x9f\xab\xa9\xac\xac\xaa\ +\xac\xac\xab\xad\xad\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xae\xad\xaf\ +\xae\xae\xaf\xae\xae\xaf\x99\x9c\x9d\x85\x87\x88\x94\x94\x95\xaa\ +\xa9\xab\xb0\xb2\xb3\xac\xad\xae\x84\x83\x85\x8e\x8d\x8d\xaa\xa8\ +\xa8\xb1\xaf\xaf\xb2\xb0\xb0\x9b\x9b\x9b\x81\x82\x82\x99\x99\x9a\ +\xb6\xb5\xb5\xba\xba\xba\xb7\xb6\xb7\x94\x94\x94\x8f\x8c\x8c\xa9\ +\xa5\xa6\xb9\xb6\xb6\xc1\xbe\xbe\xb8\xb7\xb7\x8f\x8f\x8f\x90\x90\ +\x92\xb1\xaf\xaf\xbe\xbc\xbe\xc4\xc3\xc5\x00\x00\x00\xe0\xd8\xd5\ +\xe0\xd9\xd6\xe0\xd8\xd4\xde\xd5\xd0\xdc\xd3\xce\xdb\xd1\xcc\xdb\ +\xd1\xcc\xdb\xd1\xcd\xd7\xce\xc9\xd7\xce\xcb\xdc\xd4\xd1\xe2\xdc\ +\xda\xe6\xe2\xdf\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdc\xd9\ +\xe0\xdb\xd8\xde\xd8\xd6\xda\xd5\xd3\xd5\xd0\xcf\xcd\xc8\xc7\xc1\ +\xbb\xbc\xae\xa9\xa9\x8f\x8e\x8d\x67\x6d\x6c\x46\x4f\x53\x36\x40\ +\x46\x4a\x4e\x55\x6d\x6b\x6e\x87\x83\x84\x95\x91\x92\x9e\x9b\x9c\ +\xa4\xa1\xa3\xa6\xa5\xa6\xa6\xa6\xa7\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ +\xa3\xa5\xa2\xa2\xa4\x9e\xa0\xa2\x9c\x9d\xa1\x95\x96\x99\x8b\x8e\ +\x91\x84\x87\x8b\x80\x83\x87\x7b\x7e\x80\x6a\x6f\x71\x3f\x47\x4d\ +\x22\x2a\x32\x2f\x34\x3c\x3e\x41\x4a\x55\x59\x5e\x66\x69\x6e\x73\ +\x76\x7b\x7b\x7e\x82\x83\x87\x8c\x80\x87\x8c\x7f\x85\x8c\x7e\x85\ +\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x83\x8a\x7a\x82\x89\ +\x7b\x83\x8a\x7b\x84\x8b\x7b\x82\x89\x7a\x82\x89\x7c\x84\x8b\x76\ +\x7e\x84\x6e\x76\x7c\x6e\x76\x7b\x73\x7b\x82\x6f\x77\x7d\x6e\x75\ +\x7c\x76\x7d\x83\x71\x7a\x7f\x6d\x75\x7b\x75\x7c\x81\x77\x80\x84\ +\x6c\x74\x79\x76\x7a\x7e\x7c\x80\x83\x77\x7b\x7e\x70\x73\x78\x7d\ +\x81\x86\x88\x8d\x91\x8b\x8f\x93\x8a\x8f\x93\x87\x8d\x91\x89\x8d\ +\x92\x8b\x8f\x94\x8c\x91\x94\x8c\x92\x95\x8c\x91\x94\x8f\x93\x97\ +\x92\x97\x9b\x93\x98\x9b\x8e\x93\x96\x91\x95\x98\x93\x97\x9a\x91\ +\x95\x98\x96\x99\x9d\x9a\x9d\xa1\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\ +\xa2\x9d\xa0\xa4\x9f\xa2\xa6\xa0\xa3\xa7\x9e\xa0\xa4\x74\x79\x7d\ +\x71\x78\x7b\x77\x7b\x7f\x8e\x8f\x93\x6e\x72\x76\x58\x5c\x60\x80\ +\x80\x82\x9a\x99\x9b\x68\x6b\x6e\x4b\x51\x54\x8d\x8f\x8e\x65\x63\ +\x62\x25\x20\x1f\x65\x5d\x5d\x9e\x9a\x9c\xa9\xa8\xaa\xa8\xa7\xa9\ +\xab\xaa\xac\xaf\xae\xb0\xb0\xaf\xb0\xae\xae\xaf\xae\xae\xae\xad\ +\xac\xae\xb1\xb0\xb2\xa7\xa7\xa9\x8a\x8a\x8c\x8f\x8e\x90\xa7\xa5\ +\xa7\xb5\xb4\xb5\xb3\xb3\xb3\x93\x93\x94\x84\x84\x85\xa0\x9f\x9f\ +\xb1\xaf\xaf\xb5\xb4\xb4\xac\xad\xac\x91\x91\x91\x90\x90\x91\xa8\ +\xa9\xa9\xb8\xb6\xb7\xba\xb8\xb8\xa1\x9e\x9d\x89\x87\x87\x9f\x9c\ +\x9f\xb2\xaf\xb0\xb9\xb7\xb7\xc2\xc1\xc1\xa9\xa9\xab\x8a\x8a\x8c\ +\x9f\x9d\x9f\xb8\xb6\xb8\x00\x00\x00\xdd\xd4\xd0\xdc\xd2\xce\xd8\ +\xce\xc9\xd5\xca\xc3\xd3\xc7\xc0\xd3\xc8\xc1\xd8\xcd\xc8\xd9\xcf\ +\xcb\xd9\xcf\xcb\xd9\xd1\xce\xdf\xd6\xd1\xe3\xdc\xd9\xe5\xe0\xdd\ +\xe5\xe0\xdf\xe4\xdf\xde\xe4\xdf\xde\xe2\xdd\xdc\xdf\xda\xd9\xdc\ +\xd7\xd5\xd7\xd2\xd0\xd1\xcc\xcb\xc9\xc4\xc3\xbb\xb5\xb6\xa5\xa2\ +\xa2\x82\x83\x84\x59\x61\x63\x37\x42\x47\x39\x42\x48\x57\x59\x5d\ +\x78\x75\x77\x8d\x89\x8a\x9a\x95\x96\xa1\x9d\x9d\xa7\xa3\xa5\xa6\ +\xa5\xa6\xa6\xa5\xa6\xa7\xa6\xa8\xa6\xa5\xa6\xa4\xa3\xa5\xa1\xa0\ +\xa2\x9d\x9e\xa1\x9c\x9d\xa1\x92\x94\x98\x89\x8c\x90\x86\x89\x8d\ +\x83\x86\x8a\x7e\x82\x84\x6a\x6f\x72\x48\x51\x55\x2c\x33\x3c\x27\ +\x2c\x36\x1c\x20\x2a\x3e\x43\x4b\x5e\x61\x65\x70\x74\x78\x77\x7a\ +\x7e\x7e\x83\x87\x81\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8c\ +\x7c\x84\x8c\x7d\x85\x8d\x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\ +\x84\x8b\x7e\x87\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x85\x8c\x73\x7b\ +\x82\x71\x79\x80\x71\x78\x7e\x74\x7b\x81\x6e\x76\x7d\x6f\x76\x7d\ +\x77\x7e\x85\x72\x7b\x82\x6f\x78\x7e\x76\x7f\x84\x67\x6f\x73\x53\ +\x56\x5a\x70\x6f\x73\x7e\x81\x85\x72\x76\x7b\x71\x76\x79\x83\x87\ +\x8b\x8c\x92\x94\x8b\x91\x94\x8a\x8f\x92\x89\x8e\x91\x88\x8d\x90\ +\x89\x8e\x91\x8d\x92\x95\x8c\x92\x95\x8f\x94\x97\x92\x97\x9a\x94\ +\x99\x9c\x92\x97\x9a\x90\x94\x98\x90\x94\x97\x95\x98\x9b\x97\x9a\ +\x9e\x9c\x9f\xa3\x9b\x9f\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\xa5\ +\xa0\xa2\xa6\x9f\xa1\xa3\x8f\x92\x94\x70\x75\x78\x86\x88\x8b\x93\ +\x95\x98\x6f\x72\x75\x4f\x54\x58\x8d\x8f\x90\x84\x84\x84\x59\x58\ +\x5b\x5b\x5c\x5f\x7f\x80\x81\x82\x83\x81\x33\x36\x36\x00\x00\x00\ +\x19\x17\x19\x71\x6d\x70\x94\x92\x94\xa8\xa7\xa7\xac\xac\xad\xab\ +\xab\xac\xae\xad\xaf\xaf\xae\xb0\xb2\xb2\xb2\xaf\xae\xb0\xaf\xae\ +\xb0\xb5\xb4\xb6\xb2\xb1\xb3\x98\x97\x99\x90\x8f\x91\x9f\x9d\x9e\ +\xb4\xb1\xb1\xb6\xb6\xb7\x9f\xa0\xa1\x8c\x8d\x8d\x9c\x9b\x9b\xaa\ +\xa9\xa9\xba\xb9\xb9\xba\xba\xba\x9d\x9e\x9e\x8c\x8d\x8e\xa2\xa1\ +\xa1\xb6\xb3\xb2\xbc\xb9\xb7\xae\xae\xad\x90\x90\x92\x8e\x8b\x8e\ +\xa5\xa2\xa3\xba\xb8\xb8\xbf\xbe\xbf\xb6\xb6\xb7\x96\x97\x98\x8b\ +\x8b\x8d\x00\x00\x00\xd4\xc9\xc2\xd1\xc5\xbf\xd0\xc4\xbd\xcf\xc5\ +\xbe\xd0\xc5\xbf\xd1\xc7\xc1\xd5\xcb\xc7\xd7\xcd\xc9\xd8\xce\xca\ +\xdb\xd3\xcf\xe1\xd8\xd5\xe5\xde\xdb\xe5\xe0\xdd\xe4\xdf\xdd\xe4\ +\xdf\xde\xe4\xdf\xde\xe1\xdc\xdb\xdf\xda\xd8\xdb\xd6\xd4\xd6\xd0\ +\xcd\xcf\xca\xc7\xc5\xc0\xbf\xb5\xb0\xb0\x99\x98\x98\x74\x77\x7a\ +\x4e\x57\x5b\x31\x3d\x42\x41\x49\x50\x63\x62\x66\x82\x7d\x7f\x92\ +\x8e\x8f\x9d\x9a\x9b\xa3\xa1\xa2\xa8\xa6\xa8\xa7\xa5\xa7\xa6\xa5\ +\xa7\xa7\xa6\xa8\xa5\xa4\xa6\xa3\xa3\xa4\x9f\x9f\xa1\x9a\x9b\x9e\ +\x97\x98\x9c\x90\x93\x97\x88\x8b\x8f\x88\x8b\x8f\x85\x88\x8c\x7f\ +\x82\x86\x66\x6c\x6f\x50\x57\x5c\x41\x46\x4e\x40\x45\x4d\x34\x3a\ +\x43\x3e\x45\x4f\x5e\x62\x68\x71\x75\x79\x76\x7a\x7e\x79\x7d\x82\ +\x7f\x83\x88\x7e\x84\x89\x7e\x84\x8b\x7d\x85\x8d\x7b\x83\x8c\x7c\ +\x84\x8c\x7d\x84\x8d\x7c\x84\x8d\x7c\x85\x8c\x7c\x84\x8b\x7e\x86\ +\x8e\x7e\x86\x8d\x7d\x85\x8b\x7e\x86\x8d\x7b\x83\x8a\x74\x7c\x83\ +\x6e\x76\x7d\x73\x7a\x81\x73\x7a\x81\x6c\x74\x7a\x73\x7a\x80\x79\ +\x80\x86\x72\x7a\x7f\x6c\x75\x79\x4d\x57\x5d\x18\x1b\x20\x30\x2e\ +\x31\x72\x70\x74\x7e\x82\x86\x76\x7b\x7e\x76\x7b\x7e\x85\x8a\x8d\ +\x8c\x91\x94\x8b\x90\x93\x8a\x8f\x92\x88\x8e\x91\x8b\x90\x93\x8e\ +\x93\x96\x8d\x92\x95\x8c\x91\x94\x90\x95\x98\x93\x98\x9b\x94\x99\ +\x9c\x91\x95\x99\x91\x95\x97\x94\x98\x9a\x97\x9b\x9f\x9b\xa0\xa3\ +\x9c\x9e\xa3\x9c\x9f\xa4\x9c\x9f\xa4\x9c\xa0\xa3\x9f\xa1\xa4\x95\ +\x97\x99\x72\x77\x7a\x78\x7c\x7e\x79\x7d\x7e\x87\x89\x8a\x6e\x73\ +\x75\x54\x59\x5c\x80\x83\x84\x62\x62\x64\x0f\x0e\x10\x27\x26\x27\ +\x84\x83\x83\x9d\x9e\x9d\x50\x57\x58\x0f\x16\x17\x45\x49\x4d\x8d\ +\x89\x8b\x7a\x77\x78\x86\x85\x86\xa6\xa4\xa5\xae\xad\xad\xad\xac\ +\xad\xab\xaa\xac\xb0\xaf\xb0\xaf\xaf\xaf\xb0\xaf\xb1\xb1\xb0\xb2\ +\xb1\xb0\xb2\xb3\xb3\xb5\xa4\xa4\xa6\x8b\x8a\x8d\x99\x98\x9a\xa9\ +\xa9\xaa\xb3\xb2\xb4\xaf\xad\xb0\x98\x96\x98\x90\x90\x90\xa1\xa1\ +\xa1\xb8\xb6\xb6\xb9\xb7\xb7\xaa\xa9\xaa\x95\x95\x96\x94\x94\x94\ +\xaa\xa8\xa7\xbc\xbb\xba\xba\xb9\xb9\xa1\x9e\x9f\x91\x8f\x91\x98\ +\x97\x98\xb3\xb2\xb3\xc1\xc1\xc1\xc0\xc0\xc1\xa8\xa9\xaa\x00\x00\ +\x00\xcb\xbf\xb7\xcb\xc1\xba\xcc\xc2\xbb\xd0\xc6\xc0\xd2\xc8\xc3\ +\xd5\xcc\xc7\xd9\xd0\xcc\xd9\xd0\xcc\xdb\xd2\xce\xdf\xd8\xd4\xe2\ +\xdb\xd8\xe6\xe0\xdd\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\xdc\xe3\xde\ +\xdd\xe0\xda\xd9\xde\xd8\xd7\xd9\xd4\xd2\xd4\xce\xcb\xcc\xc6\xc4\ +\xbf\xba\xb8\xab\xa7\xa6\x8b\x8c\x8d\x67\x6b\x6f\x41\x4b\x50\x34\ +\x3f\x46\x4a\x51\x58\x6e\x6b\x6e\x89\x84\x85\x97\x94\x95\xa0\x9e\ +\x9f\xa5\xa3\xa4\xa7\xa5\xa8\xa7\xa5\xa8\xa7\xa6\xa8\xa6\xa5\xa7\ +\xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9a\x9e\x91\x92\x96\x8b\ +\x8e\x92\x86\x89\x8d\x89\x8c\x90\x88\x8b\x8f\x7c\x7f\x83\x63\x67\ +\x6c\x4f\x55\x5b\x50\x55\x5c\x5f\x63\x68\x5e\x65\x6a\x5a\x62\x69\ +\x6a\x6f\x75\x72\x76\x7b\x77\x7c\x7f\x73\x78\x7b\x79\x7d\x81\x7d\ +\x81\x88\x7d\x83\x8a\x7e\x85\x8c\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ +\x8c\x7c\x84\x8c\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8c\x7d\x85\x8b\ +\x7b\x83\x8a\x7e\x86\x8d\x7e\x86\x8d\x79\x81\x88\x73\x7b\x82\x6f\ +\x77\x7e\x75\x7c\x83\x75\x7d\x83\x6f\x78\x7d\x76\x7d\x82\x7a\x81\ +\x85\x6f\x77\x7b\x3c\x49\x51\x04\x07\x0a\x01\x00\x01\x3d\x3b\x3f\ +\x7b\x7c\x80\x82\x85\x89\x77\x7c\x7f\x76\x7b\x7f\x84\x89\x8c\x8a\ +\x8f\x92\x8c\x91\x94\x8b\x91\x94\x8c\x91\x94\x8d\x91\x95\x8c\x91\ +\x94\x8d\x91\x95\x8f\x94\x97\x90\x95\x98\x94\x99\x9c\x93\x96\x99\ +\x92\x97\x99\x93\x97\x9a\x95\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\x99\ +\x9c\xa1\x99\x9c\xa0\x95\x98\x9c\x87\x89\x8c\x89\x8b\x8c\x70\x76\ +\x79\x7f\x83\x86\x89\x8d\x8e\x71\x75\x76\x5d\x64\x68\x81\x84\x86\ +\x89\x8c\x8d\x43\x4a\x4d\x00\x00\x00\x1f\x20\x21\x6d\x6f\x70\x7b\ +\x7e\x7e\x63\x6d\x6e\x5e\x68\x6c\x77\x7b\x7f\x98\x95\x95\x75\x72\ +\x73\x6b\x6b\x6d\x86\x84\x85\xa5\xa2\xa2\xad\xab\xab\xa9\xa8\xaa\ +\xab\xaa\xab\xad\xac\xad\xb1\xb0\xb2\xb0\xaf\xb1\xb0\xaf\xb1\xb2\ +\xb1\xb3\xb5\xb5\xb6\xab\xac\xae\x97\x97\x9b\x8c\x8d\x8e\xa1\xa0\ +\xa1\xb5\xb2\xb4\xb8\xb5\xb7\xa2\xa0\xa1\x8f\x8e\x8f\x9a\x97\x98\ +\xae\xaa\xaa\xbe\xbc\xbd\xb5\xb5\xb6\x97\x98\x98\x8f\x8f\x8f\x9f\ +\x9e\x9e\xb6\xb4\xb4\xc0\xbd\xbe\xb6\xb5\xb7\x99\x98\x9b\x92\x91\ +\x93\xa5\xa3\xa4\xbc\xbb\xbb\xc3\xc2\xc4\x00\x00\x00\xcc\xc2\xbb\ +\xd0\xc6\xc0\xd4\xca\xc4\xd8\xce\xca\xdb\xd2\xcf\xdd\xd5\xd1\xdd\ +\xd4\xd1\xdc\xd4\xd0\xdd\xd5\xd1\xdf\xd8\xd5\xe4\xdd\xda\xe6\xe0\ +\xdc\xe4\xdf\xdd\xe4\xde\xdb\xe3\xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\ +\xdc\xd6\xd5\xd8\xd2\xd1\xd2\xcc\xca\xc7\xc1\xbe\xba\xb4\xb0\xa1\ +\x9f\x9c\x7e\x80\x80\x5a\x60\x64\x38\x42\x49\x38\x41\x48\x58\x5b\ +\x60\x7a\x76\x78\x90\x8b\x8c\x9b\x99\x99\xa2\xa0\xa0\xa6\xa4\xa5\ +\xa8\xa6\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa4\xa2\ +\xa1\xa4\x9e\x9d\xa1\x98\x99\x9d\x91\x92\x96\x89\x8b\x8f\x89\x8b\ +\x8f\x8c\x8e\x92\x89\x8c\x90\x79\x7c\x80\x5e\x63\x69\x48\x4f\x57\ +\x51\x57\x5e\x67\x6c\x70\x73\x79\x7c\x70\x76\x7a\x76\x7a\x7f\x76\ +\x7a\x7f\x75\x79\x7d\x72\x77\x7a\x73\x77\x7c\x7c\x80\x85\x7c\x81\ +\x86\x7d\x83\x89\x7c\x83\x8a\x7b\x83\x8a\x7c\x84\x8c\x7a\x83\x8a\ +\x7c\x83\x8a\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\ +\x85\x8c\x7c\x85\x8d\x7f\x87\x90\x78\x81\x88\x70\x78\x80\x70\x78\ +\x7f\x77\x7e\x84\x74\x7b\x80\x6f\x76\x7a\x77\x7d\x81\x79\x80\x83\ +\x4d\x5e\x66\x08\x10\x15\x00\x00\x00\x14\x15\x17\x62\x62\x66\x7d\ +\x80\x84\x83\x87\x8b\x76\x7c\x7f\x76\x7b\x7e\x84\x8a\x8d\x8c\x91\ +\x94\x8d\x92\x95\x8c\x91\x94\x8a\x8f\x92\x8a\x8f\x92\x8e\x93\x96\ +\x92\x97\x9b\x92\x97\x9a\x95\x98\x9c\x95\x98\x9c\x96\x99\x9d\x98\ +\x9c\x9f\x98\x9c\xa0\x99\x9c\xa1\x99\x9c\xa0\x98\x9b\x9f\x98\x9b\ +\x9f\x92\x95\x99\x72\x75\x79\x7e\x82\x84\x92\x96\x97\x93\x96\x97\ +\x86\x89\x8b\x71\x77\x7a\x69\x6f\x73\x7c\x80\x83\x94\x98\x99\x6c\ +\x75\x76\x1d\x29\x2c\x4b\x52\x55\x91\x94\x95\x63\x68\x6a\x4c\x53\ +\x56\x8e\x91\x92\x99\x9b\x9d\x75\x75\x79\x50\x4f\x53\x94\x95\x95\ +\x86\x85\x85\x64\x5f\x62\x98\x93\x94\xb1\xb0\xb0\xab\xab\xac\xad\ +\xac\xae\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb1\xb0\ +\xb2\xb3\xb3\xb5\xb4\xb4\xb6\x9d\x9f\xa0\x8b\x8c\x8c\x95\x93\x95\ +\xb5\xb1\xb3\xb8\xb6\xb7\xaf\xaf\xaf\x96\x94\x96\x8e\x8b\x8e\xa6\ +\xa2\xa4\xbb\xb8\xb9\xba\xb9\xb9\xa9\xa9\xa9\x93\x94\x94\x8d\x8e\ +\x8e\xae\xac\xae\xc0\xbe\xbf\xbf\xbe\xbf\xa6\xa5\xa7\x96\x95\x95\ +\x97\x95\x95\xb3\xb0\xb1\x00\x00\x00\xd8\xd1\xcd\xdb\xd2\xce\xdc\ +\xd3\xcf\xdd\xd5\xd2\xde\xd7\xd4\xde\xd7\xd4\xdc\xd5\xd2\xdc\xd5\ +\xd2\xdd\xd6\xd3\xe1\xda\xd7\xe5\xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\ +\xe4\xde\xdb\xe2\xdd\xdc\xe0\xdb\xda\xde\xd9\xd8\xda\xd4\xd4\xd7\ +\xd0\xd0\xcf\xc8\xc7\xc2\xbc\xba\xb3\xae\xaa\x95\x94\x91\x6e\x71\ +\x71\x4b\x53\x58\x37\x40\x46\x43\x48\x4e\x68\x66\x69\x83\x7e\x7f\ +\x95\x90\x91\x9f\x9d\x9d\xa3\xa0\xa1\xa7\xa5\xa7\xa8\xa6\xa8\xa7\ +\xa6\xa9\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa5\xa2\xa1\xa5\x9d\x9d\ +\xa1\x95\x95\x99\x8e\x8f\x93\x8b\x8c\x90\x8a\x8b\x8f\x8c\x8e\x92\ +\x88\x8a\x8e\x76\x79\x7d\x5e\x63\x69\x47\x4e\x56\x52\x57\x5e\x69\ +\x6d\x72\x77\x7c\x7f\x78\x7e\x81\x75\x7a\x7d\x77\x7b\x80\x72\x76\ +\x7b\x72\x76\x7b\x72\x76\x7b\x76\x7a\x7f\x7c\x80\x85\x7c\x82\x87\ +\x7b\x81\x88\x7c\x83\x8b\x7d\x84\x8b\x7b\x83\x8a\x7b\x83\x8a\x7b\ +\x82\x8a\x7c\x85\x8b\x7c\x85\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x85\ +\x8c\x7e\x87\x90\x7e\x87\x90\x78\x81\x88\x70\x78\x7e\x71\x79\x7e\ +\x77\x7e\x82\x73\x79\x7e\x70\x77\x7b\x79\x80\x84\x6e\x7b\x81\x2b\ +\x44\x4e\x00\x04\x06\x09\x0d\x10\x59\x5c\x61\x75\x78\x7c\x7f\x83\ +\x87\x84\x89\x8c\x77\x7d\x81\x76\x7c\x80\x85\x8a\x8d\x8f\x93\x97\ +\x8f\x94\x98\x8c\x91\x94\x8c\x91\x95\x8e\x93\x96\x93\x97\x9b\x93\ +\x98\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\x9e\x9b\x9e\xa3\x9e\xa1\ +\xa5\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\xa2\x9b\x9d\xa1\x95\x97\x9b\ +\x71\x77\x7a\x73\x77\x7a\x96\x99\x9a\x9a\x9c\x9c\x89\x8b\x8c\x73\ +\x77\x7a\x71\x76\x78\x7e\x83\x87\x76\x7b\x7f\x5d\x65\x68\x6a\x73\ +\x78\x7e\x84\x87\x82\x86\x87\x69\x6f\x70\x64\x6a\x6b\x7d\x7e\x7e\ +\x9c\x9d\x9e\x77\x7a\x7d\x56\x59\x5c\x84\x83\x84\x75\x74\x73\x11\ +\x0f\x11\x47\x44\x46\xa9\xa8\xaa\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\ +\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\ +\xb1\xb1\xb2\xb3\xb5\xb6\xa7\xa9\xaa\x98\x98\x99\x8d\x8b\x8d\xa7\ +\xa6\xa6\xba\xba\xb9\xb3\xb2\xb5\xa1\xa0\xa3\x8f\x8c\x90\x9b\x97\ +\x99\xb8\xb5\xb6\xbf\xbd\xbd\xb3\xb2\xb2\x99\x9a\x9a\x8a\x89\x8b\ +\x9a\x99\x9a\xbb\xb9\xba\xc1\xbf\xc1\xb5\xb5\xb5\xa2\xa0\xa0\x95\ +\x92\x93\x00\x00\x00\xdd\xd6\xd3\xdd\xd5\xd2\xde\xd6\xd3\xdf\xd8\ +\xd5\xdf\xd8\xd5\xde\xd7\xd4\xdc\xd6\xd3\xdd\xd5\xd2\xdf\xd8\xd5\ +\xe2\xdb\xd8\xe5\xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe3\xdd\xda\xe2\ +\xdc\xda\xe0\xd9\xd9\xdd\xd6\xd6\xd9\xd2\xd1\xd4\xcd\xcc\xcc\xc4\ +\xc4\xbf\xb8\xb8\xaa\xa5\xa3\x8a\x8a\x87\x63\x67\x6a\x3f\x47\x4f\ +\x37\x40\x48\x51\x53\x58\x72\x6e\x70\x8a\x85\x84\x98\x95\x95\xa1\ +\x9f\x9f\xa6\xa3\xa4\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa5\xa7\xa5\xa4\ +\xa6\xa3\xa2\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9e\x9d\x9f\x93\x93\x96\ +\x8c\x8d\x91\x8b\x8c\x90\x8b\x8c\x90\x8c\x8d\x91\x85\x88\x8c\x73\ +\x77\x7a\x5f\x64\x6a\x51\x57\x5e\x5a\x5f\x64\x6c\x70\x74\x74\x79\ +\x7c\x78\x7d\x80\x74\x79\x7b\x75\x79\x7d\x74\x78\x7d\x70\x74\x79\ +\x71\x75\x7a\x71\x74\x79\x79\x7d\x83\x7b\x81\x86\x7c\x82\x88\x7e\ +\x84\x8a\x7c\x84\x89\x7a\x83\x87\x7b\x83\x89\x7b\x82\x88\x7d\x84\ +\x8a\x7d\x85\x8c\x7c\x85\x8c\x7e\x85\x8d\x7c\x83\x8b\x7f\x87\x90\ +\x7f\x88\x91\x7c\x85\x8b\x75\x7e\x84\x6f\x78\x7e\x73\x7a\x7f\x79\ +\x7f\x84\x74\x7a\x80\x71\x79\x7f\x7c\x83\x88\x67\x79\x81\x25\x3c\ +\x44\x16\x27\x2f\x65\x6b\x6f\x7a\x7e\x81\x77\x7d\x7f\x80\x86\x89\ +\x82\x88\x8d\x76\x7c\x81\x75\x7a\x7d\x87\x8b\x8e\x8e\x93\x96\x8f\ +\x93\x96\x90\x95\x98\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x93\x98\ +\x9b\x98\x9c\xa0\x98\x9b\x9e\x99\x9c\xa0\x9b\x9f\xa1\x99\x9d\x9f\ +\x9a\x9d\xa0\x9b\x9e\xa2\x9a\x9d\xa0\x97\x99\x9b\x79\x7e\x7f\x6b\ +\x6f\x71\x6b\x6e\x70\x56\x59\x5c\x7c\x7e\x80\x86\x88\x89\x7e\x82\ +\x85\x97\x9a\x9f\x8a\x8f\x93\x68\x70\x73\x81\x84\x85\xa0\xa0\xa2\ +\x6f\x73\x75\x51\x56\x58\x8b\x8e\x8e\x8b\x8d\x8c\x58\x57\x55\x56\ +\x54\x54\x95\x96\x96\x8e\x8e\x8f\x5b\x60\x63\x00\x00\x00\x0d\x0e\ +\x13\x8b\x8d\x93\xb1\xb0\xb2\xaf\xaf\xb0\xae\xae\xaf\xae\xae\xaf\ +\xad\xac\xae\xaf\xae\xb0\xb4\xb3\xb4\xb5\xb4\xb5\xb2\xb1\xb2\xb3\ +\xb4\xb5\xb4\xb6\xb7\xb4\xb6\xb6\x9b\x9d\x9e\x8e\x8f\x90\x99\x99\ +\x99\xb5\xb3\xb4\xbb\xb8\xba\xae\xab\xae\x9a\x97\x99\x90\x8e\x90\ +\xaa\xa7\xa6\xbc\xb9\xb8\xb8\xb6\xb6\xa7\xa5\xa6\x93\x92\x94\x8d\ +\x8b\x8b\xb0\xad\xaf\xc1\xbe\xbf\xbf\xbc\xbe\xb1\xad\xae\x00\x00\ +\x00\xdf\xd7\xd5\xdf\xd7\xd5\xdf\xd8\xd5\xde\xd7\xd5\xde\xd7\xd4\ +\xdf\xd7\xd4\xde\xd7\xd4\xdd\xd5\xd2\xe0\xd8\xd5\xe4\xdc\xd9\xe5\ +\xdf\xdc\xe5\xdf\xdc\xe3\xde\xdb\xe2\xdd\xda\xe1\xdb\xd9\xdf\xd8\ +\xd7\xdc\xd5\xd5\xd8\xd1\xd1\xd2\xca\xca\xc7\xc0\xc0\xb8\xb2\xb0\ +\xa0\x9c\x99\x7d\x7d\x7d\x57\x5b\x61\x3b\x42\x4b\x40\x47\x4f\x5c\ +\x5d\x63\x7d\x78\x7a\x90\x8b\x8b\x9c\x99\x99\xa3\xa0\xa2\xa7\xa4\ +\xa6\xa7\xa5\xa7\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa4\xa5\xa3\xa2\xa4\ +\xa0\x9f\xa2\x9f\x9e\xa0\x99\x98\x9b\x90\x91\x95\x8d\x8e\x92\x8c\ +\x8d\x91\x8c\x8d\x91\x8c\x8d\x91\x83\x86\x89\x6b\x71\x74\x51\x59\ +\x5f\x52\x59\x60\x60\x66\x6b\x70\x75\x78\x75\x7a\x7d\x77\x7c\x7f\ +\x75\x7a\x7d\x73\x77\x7b\x77\x7b\x80\x71\x75\x79\x70\x74\x79\x6f\ +\x73\x78\x71\x76\x79\x79\x7f\x83\x7d\x83\x88\x7c\x82\x88\x7c\x83\ +\x89\x7b\x82\x87\x7b\x81\x87\x7c\x84\x89\x7d\x85\x8b\x7c\x83\x8a\ +\x7c\x84\x8b\x7f\x87\x8f\x7d\x84\x8d\x7e\x85\x8e\x7f\x86\x8f\x80\ +\x87\x8e\x7c\x84\x8b\x74\x7d\x84\x6e\x76\x7c\x76\x7c\x82\x7a\x81\ +\x87\x72\x7a\x80\x74\x7b\x7f\x7f\x86\x8b\x5d\x6c\x74\x3e\x50\x59\ +\x6a\x70\x74\x78\x7e\x81\x6a\x71\x76\x74\x79\x7e\x80\x86\x8b\x84\ +\x89\x8e\x76\x7c\x81\x77\x7c\x80\x85\x8a\x8d\x8e\x93\x96\x8f\x94\ +\x97\x91\x95\x98\x90\x95\x99\x93\x97\x9a\x92\x96\x99\x97\x9b\x9e\ +\x98\x9c\x9f\x99\x9c\x9f\x99\x9d\x9e\x99\x9d\x9e\x9a\x9e\xa1\x9b\ +\x9e\xa2\x9b\x9e\xa1\x9c\x9f\xa0\x7b\x7e\x80\x42\x44\x48\x1f\x24\ +\x29\x37\x3f\x44\x7e\x80\x82\x9c\x9d\x9e\x9f\xa0\xa4\xa9\xaa\xae\ +\xa4\xa6\xaa\x96\x99\x9b\x84\x87\x88\x83\x85\x86\x6f\x73\x75\x67\ +\x6c\x6e\x80\x85\x86\x62\x67\x68\x15\x16\x15\x10\x0f\x0f\x76\x74\ +\x74\xa6\xa7\xa7\x80\x86\x88\x38\x47\x4d\x6d\x74\x7b\xa3\xa4\xa6\ +\xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb0\xb1\xb1\xaf\xaf\xb0\xb2\ +\xb2\xb2\xb3\xb3\xb3\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb4\xb5\xb5\xb6\ +\xb5\xb3\xb3\xb3\xb3\xb4\xb4\xab\xac\xad\x91\x91\x93\x92\x8f\x91\ +\xb1\xae\xaf\xbb\xba\xbb\xb6\xb5\xb7\xa5\xa4\xa5\x8c\x8a\x8b\x9c\ +\x98\x99\xb5\xb0\xb1\xb9\xb5\xb6\xb5\xb1\xb2\xa5\xa3\xa4\x8a\x87\ +\x88\x99\x94\x96\xc0\xbe\xbe\xc4\xc2\xc2\x00\x00\x00\xdd\xd6\xd3\ +\xdc\xd5\xd2\xdd\xd6\xd3\xde\xd7\xd4\xdf\xd9\xd6\xe0\xd9\xd6\xe1\ +\xda\xd7\xe2\xdb\xd8\xe2\xdc\xd9\xe4\xde\xdb\xe5\xe0\xdd\xe5\xdf\ +\xdc\xe3\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xda\xd5\xd4\ +\xd5\xcf\xce\xce\xc7\xc6\xc3\xbd\xbe\xb1\xac\xaa\x93\x90\x8c\x6e\ +\x71\x72\x4b\x51\x58\x39\x41\x4b\x4b\x4f\x58\x6d\x6c\x70\x85\x83\ +\x83\x95\x93\x93\x9f\x9a\x9c\xa4\xa1\xa3\xa6\xa3\xa5\xa6\xa4\xa6\ +\xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9d\ +\x9c\x9e\x95\x96\x98\x8d\x8e\x92\x8e\x8f\x93\x8b\x8c\x90\x8e\x8f\ +\x93\x8c\x8f\x93\x82\x87\x8a\x68\x70\x74\x4e\x59\x60\x4f\x58\x5f\ +\x66\x6d\x71\x71\x76\x79\x77\x7c\x7f\x73\x77\x7c\x76\x7a\x7f\x74\ +\x78\x7c\x72\x76\x7b\x71\x75\x7a\x70\x74\x79\x71\x75\x7a\x71\x75\ +\x7a\x76\x7b\x80\x7c\x81\x85\x7c\x82\x88\x7c\x82\x88\x7b\x81\x87\ +\x7e\x84\x8b\x7b\x83\x88\x7c\x84\x8b\x7b\x82\x89\x7e\x85\x8d\x7e\ +\x85\x8d\x7e\x85\x8e\x7f\x87\x8f\x7f\x86\x8f\x7e\x86\x8e\x7e\x86\ +\x8d\x7d\x86\x8d\x74\x7c\x82\x6f\x78\x7d\x7c\x83\x8a\x7b\x83\x8a\ +\x74\x7c\x81\x70\x75\x7a\x6c\x73\x79\x62\x6a\x72\x6d\x73\x79\x64\ +\x6c\x73\x62\x6c\x73\x6e\x75\x7b\x77\x7c\x81\x82\x87\x8a\x83\x89\ +\x8d\x75\x7b\x7e\x77\x7c\x7f\x86\x8b\x8e\x8e\x92\x95\x92\x96\x99\ +\x92\x95\x99\x95\x98\x9c\x95\x99\x9c\x99\x9d\x9e\x9a\x9e\x9f\x98\ +\x9b\x9d\x99\x9d\x9e\x99\x9d\x9e\x9c\x9f\xa2\x9e\xa1\xa5\x9c\x9f\ +\xa3\x9c\x9f\xa2\x78\x7f\x81\x40\x4d\x52\x57\x62\x67\x82\x88\x8a\ +\x9d\x9f\xa0\x97\x96\x97\x82\x80\x81\xa2\xa2\xa4\xac\xad\xb0\xa8\ +\xa9\xac\x9e\xa1\xa4\x7c\x81\x85\x62\x67\x6b\x87\x8a\x8c\x9a\x9d\ +\x9e\x53\x5b\x5e\x07\x07\x07\x00\x00\x01\x61\x63\x64\x78\x7b\x7b\ +\x5b\x61\x64\x7a\x82\x87\xac\xad\xb2\xb4\xb3\xb5\xb1\xb0\xb2\xb0\ +\xb0\xb1\xb1\xb1\xb2\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb4\xb1\xb1\ +\xb1\xaf\xaf\xaf\xb6\xb6\xb6\xb6\xb5\xb6\xb6\xb6\xb7\xb4\xb3\xb5\ +\xb3\xb2\xb4\xb3\xb4\xb5\xb1\xb2\xb2\x9e\x9d\x9e\x8a\x86\x88\xa2\ +\x9f\xa0\xb9\xb7\xb8\xbc\xba\xba\xb2\xb2\xb2\x93\x91\x93\x87\x82\ +\x84\xb0\xab\xac\xbd\xb8\xb9\xb9\xb6\xb7\xb1\xaf\xaf\x9a\x98\x99\ +\x91\x8f\x90\xb4\xb2\xb2\x00\x00\x00\xdd\xd6\xd3\xdf\xd7\xd4\xdf\ +\xd8\xd5\xe0\xda\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdd\xda\xe2\xdd\ +\xda\xe5\xdf\xdc\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdb\xe3\xde\xdc\ +\xe1\xdc\xdb\xdf\xda\xd9\xdc\xd6\xd6\xd9\xd1\xd1\xd3\xcd\xcc\xca\ +\xc4\xc4\xbe\xb8\xb8\xa6\xa1\xa0\x84\x83\x81\x60\x63\x66\x42\x48\ +\x51\x3a\x41\x4a\x54\x57\x5e\x76\x74\x76\x8d\x89\x8a\x99\x95\x96\ +\xa1\x9d\x9f\xa4\xa0\xa2\xa7\xa4\xa6\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ +\xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa3\xa0\x9e\xa1\x9a\x9a\x9c\x92\x93\ +\x97\x8f\x90\x94\x8c\x8d\x91\x8a\x8b\x8f\x8d\x8f\x93\x8d\x90\x94\ +\x85\x89\x8d\x70\x78\x7b\x64\x6e\x73\x60\x68\x6e\x6f\x74\x79\x73\ +\x77\x7c\x75\x79\x7d\x70\x75\x79\x70\x75\x78\x74\x78\x7d\x6f\x74\ +\x78\x72\x76\x7b\x6f\x73\x78\x6f\x73\x78\x70\x74\x79\x71\x75\x7a\ +\x78\x7e\x83\x7d\x83\x88\x7c\x83\x89\x7c\x82\x89\x7d\x83\x89\x7d\ +\x84\x8b\x7c\x84\x8b\x7d\x85\x8b\x7e\x85\x8c\x7f\x86\x8e\x7d\x84\ +\x8d\x7f\x87\x8e\x7f\x88\x90\x80\x88\x90\x80\x88\x8f\x81\x89\x90\ +\x7a\x82\x89\x71\x79\x7e\x70\x78\x7c\x7a\x81\x86\x7a\x80\x85\x65\ +\x6d\x72\x5e\x65\x6b\x76\x7b\x80\x79\x7f\x83\x69\x71\x76\x70\x76\ +\x7c\x7d\x84\x87\x75\x7c\x7f\x77\x7c\x81\x85\x8a\x8e\x84\x89\x8c\ +\x76\x7b\x7e\x7a\x7f\x82\x8e\x91\x95\x92\x97\x9a\x95\x98\x9c\x94\ +\x97\x9b\x95\x99\x9c\x9b\x9e\xa1\x99\x9d\x9e\x99\x9b\x9d\x98\x9b\ +\x9d\x99\x9c\xa0\x9d\x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\x9f\xa2\xa6\ +\x96\x9b\x9e\x8a\x92\x95\x92\x97\x9a\x9c\x9e\xa0\xa3\xa5\xa6\x7b\ +\x7d\x7e\x4e\x51\x53\x8e\x8c\x8d\xa3\xa1\xa3\xab\xab\xad\xa7\xa9\ +\xaa\x9c\x9f\xa1\x87\x8b\x8f\x7c\x81\x83\x9b\x9d\x9e\x77\x7e\x81\ +\x2f\x3c\x41\x3d\x48\x4c\x98\x9b\x9b\x87\x8b\x8c\x50\x5a\x5e\x9e\ +\xa2\xa6\xb1\xb1\xb5\xb4\xb2\xb5\xb5\xb4\xb6\xb0\xaf\xb0\xb0\xaf\ +\xb0\xaf\xae\xaf\xb0\xb0\xb0\xb3\xb3\xb3\xb2\xb3\xb2\xb0\xb0\xb1\ +\xb5\xb4\xb6\xb2\xb1\xb3\xb7\xb6\xb8\xb7\xb6\xb8\xb5\xb4\xb6\xb2\ +\xb2\xb3\xb4\xb4\xb5\xb8\xb8\xb9\xad\xab\xad\x93\x92\x94\x92\x91\ +\x93\xb1\xb0\xb0\xb9\xb9\xb9\xbb\xba\xbb\xa5\xa3\xa4\x87\x85\x85\ +\x9e\x9b\x9b\xbb\xb7\xb7\xbb\xba\xba\xb6\xb3\xb3\xa8\xa6\xa6\x8c\ +\x8a\x8b\x00\x00\x00\xe1\xda\xd7\xe2\xdb\xd8\xe1\xdc\xda\xe1\xdc\ +\xda\xe3\xdd\xdb\xe3\xde\xda\xe3\xde\xdb\xe4\xdf\xdc\xe5\xe0\xdd\ +\xe5\xe0\xde\xe5\xe0\xde\xe3\xde\xdc\xe3\xde\xdc\xe0\xda\xd9\xdf\ +\xd8\xd7\xdc\xd4\xd4\xd7\xd2\xd2\xcf\xc9\xc9\xc5\xbe\xbb\xb6\xb0\ +\xac\x9b\x97\x95\x77\x78\x79\x53\x5a\x5f\x3c\x44\x4e\x42\x48\x51\ +\x5e\x5f\x64\x7c\x79\x7a\x92\x8d\x8d\x9a\x97\x99\xa2\xa0\xa2\xa6\ +\xa4\xa6\xa9\xa6\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa0\ +\xa1\x9f\x9f\xa0\x9d\x9d\x9f\x98\x98\x99\x91\x92\x96\x8d\x8e\x92\ +\x8b\x8d\x92\x8d\x8e\x94\x8d\x90\x94\x8c\x8f\x93\x86\x8b\x8e\x7c\ +\x82\x85\x76\x7c\x7f\x72\x77\x7b\x75\x7a\x7e\x75\x7a\x7d\x73\x77\ +\x7a\x6b\x70\x74\x67\x6b\x70\x6c\x71\x75\x72\x76\x7a\x6c\x71\x74\ +\x6b\x6f\x74\x6b\x6f\x74\x6d\x73\x77\x6f\x76\x7a\x74\x79\x7f\x7a\ +\x80\x86\x7a\x81\x87\x7d\x84\x89\x7f\x84\x8a\x7f\x86\x8d\x7d\x85\ +\x8b\x7d\x85\x8c\x7e\x85\x8d\x7f\x87\x8e\x7d\x85\x8d\x7d\x85\x8c\ +\x7e\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x90\x80\x88\x8f\x7b\ +\x83\x89\x72\x7a\x7e\x72\x79\x7e\x7a\x80\x85\x68\x6f\x75\x5c\x64\ +\x6b\x75\x7a\x80\x85\x8a\x8f\x7b\x81\x86\x74\x7a\x7f\x7f\x84\x88\ +\x83\x89\x8c\x7a\x80\x84\x79\x7f\x83\x86\x8b\x8f\x85\x8a\x8d\x7b\ +\x81\x83\x7e\x82\x86\x8d\x91\x94\x94\x97\x9b\x94\x97\x9b\x93\x96\ +\x9a\x98\x9b\x9d\x96\x99\x9c\x96\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\ +\x9b\x9e\xa2\x9b\x9e\xa2\x9e\xa1\xa5\xa2\xa4\xa9\xa0\xa4\xa6\xa1\ +\xa4\xa5\xa0\xa1\xa3\x9f\xa2\xa3\x94\x97\x9a\x4b\x55\x59\x62\x67\ +\x69\x80\x80\x81\x6b\x6d\x6d\xa1\x9f\xa1\xad\xac\xae\xac\xac\xad\ +\xa7\xa9\xaa\x93\x97\x98\x79\x7d\x7f\x60\x67\x6b\x84\x8b\x8c\x87\ +\x8b\x8c\x81\x83\x84\x69\x6f\x72\x75\x7c\x81\xae\xaf\xb2\xb2\xb2\ +\xb5\xb4\xb3\xb5\xb5\xb4\xb6\xaf\xaf\xb0\xb2\xb1\xb2\xb2\xb2\xb2\ +\xb1\xb1\xb1\xb4\xb4\xb4\xb3\xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\ +\xb3\xb5\xb3\xb2\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb5\xb6\xb3\xb3\ +\xb3\xb8\xb8\xb8\xb9\xb9\xba\xb6\xb6\xb7\x9b\x9b\x9e\x8a\x88\x8a\ +\xa5\xa3\xa4\xbc\xbb\xbb\xba\xb8\xb8\xb8\xb7\xb6\x91\x91\x91\x88\ +\x85\x85\xb1\xad\xad\xbc\xb8\xb7\xba\xb8\xb7\xb9\xb7\xb7\x00\x00\ +\x00\xe2\xdc\xd9\xe2\xdc\xd9\xe3\xdd\xdb\xe4\xde\xdc\xe3\xde\xdd\ +\xe5\xe0\xdd\xe6\xe1\xde\xe6\xe1\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\ +\xdf\xdd\xe4\xdf\xdd\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xdc\xd5\ +\xd5\xd6\xcf\xcf\xcd\xc6\xc6\xc1\xbb\xb9\xaf\xaa\xa7\x90\x8f\x8f\ +\x69\x6e\x71\x46\x51\x57\x3a\x43\x4b\x4d\x4f\x58\x6d\x6b\x6e\x86\ +\x81\x84\x99\x95\x97\xa0\x9b\x9d\xa5\xa2\xa4\xa8\xa5\xa7\xa7\xa4\ +\xa6\xa5\xa4\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9f\xa1\x9d\x9d\x9e\ +\x9a\x9b\x9e\x93\x94\x97\x8c\x8e\x91\x89\x8c\x8e\x8a\x8d\x91\x8e\ +\x92\x95\x8d\x90\x94\x8b\x8e\x92\x86\x8a\x8e\x84\x89\x8c\x80\x86\ +\x89\x7f\x85\x88\x7d\x82\x85\x77\x7b\x80\x67\x6c\x71\x5a\x5f\x64\ +\x52\x59\x5f\x61\x64\x69\x6b\x6e\x73\x5c\x5f\x64\x5b\x5e\x63\x61\ +\x65\x6a\x6b\x70\x74\x6c\x72\x78\x6d\x73\x79\x76\x7c\x81\x7b\x81\ +\x88\x7c\x82\x88\x7e\x84\x8a\x7c\x84\x8a\x7d\x86\x8b\x7e\x86\x8c\ +\x7c\x85\x8a\x7c\x84\x8a\x7d\x86\x8b\x81\x89\x90\x81\x89\x90\x7e\ +\x87\x8e\x7f\x87\x8e\x81\x89\x90\x80\x87\x8e\x81\x87\x8d\x7d\x83\ +\x89\x74\x7a\x7f\x6c\x73\x77\x67\x6e\x73\x67\x6f\x73\x6f\x75\x7a\ +\x7d\x82\x86\x86\x8b\x90\x7a\x80\x85\x76\x7b\x80\x83\x87\x8b\x85\ +\x8b\x8e\x78\x7d\x81\x7a\x7e\x83\x86\x8a\x8f\x87\x8c\x8f\x7a\x7f\ +\x81\x7d\x81\x85\x91\x94\x98\x93\x96\x9a\x96\x99\x9c\x98\x99\x9e\ +\x96\x98\x9c\x97\x99\x9d\x97\x99\x9d\x9c\x9f\xa3\x9e\xa1\xa5\x9c\ +\x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\xa0\xa3\xa7\x9e\xa1\xa4\x9f\xa2\ +\xa5\xa0\xa3\xa4\x9c\xa0\xa2\x78\x80\x84\x6f\x74\x76\x57\x5c\x5d\ +\x65\x67\x67\x8e\x89\x89\x93\x90\x91\xaa\xa9\xaa\xad\xae\xaf\xac\ +\xad\xae\x9c\x9e\xa0\x76\x7b\x7f\x88\x8b\x8c\xa5\xa5\xa6\x82\x87\ +\x87\x4e\x55\x5b\x9d\xa1\xa3\xb1\xb0\xb2\xb3\xb2\xb4\xb7\xb6\xb7\ +\xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb2\xb1\xb2\xb1\xb2\xb2\xb2\xb3\ +\xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\xb3\xb5\xb3\xb2\xb4\xb8\xb7\ +\xb8\xb7\xb6\xb8\xb8\xb7\xb9\xb9\xb9\xba\xba\xb9\xbb\xb6\xb6\xb7\ +\xba\xb9\xba\xba\xb9\xbb\xbe\xbd\xbe\xac\xab\xad\x8c\x8b\x8d\x9e\ +\x9c\x9c\xb5\xb4\xb3\xbc\xbb\xba\xbd\xbb\xba\xa8\xa7\xa7\x87\x86\ +\x84\x9b\x98\x94\xba\xb6\xb4\xbf\xbb\xba\x00\x00\x00\xe4\xde\xdb\ +\xe4\xdf\xdc\xe5\xdf\xdc\xe5\xdf\xdb\xe4\xde\xdc\xe4\xdf\xdc\xe5\ +\xe0\xde\xe6\xe1\xdf\xe5\xe0\xde\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\ +\xdd\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd7\xd6\xd9\xd3\xd2\xd3\xcd\xcd\ +\xca\xc5\xc4\xbb\xb7\xb6\xa5\xa2\xa2\x82\x83\x86\x5a\x61\x65\x3b\ +\x47\x4d\x3c\x46\x4d\x59\x5c\x61\x79\x76\x78\x8d\x89\x8b\x9b\x98\ +\x9a\xa1\x9f\xa1\xa6\xa3\xa6\xa8\xa5\xa7\xa8\xa5\xa7\xa7\xa4\xa6\ +\xa6\xa4\xa6\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9b\x9d\x96\x96\x98\x8f\ +\x91\x92\x89\x8d\x8f\x88\x8c\x8d\x8a\x8c\x90\x8d\x90\x95\x8d\x90\ +\x95\x89\x8d\x91\x86\x8b\x8e\x85\x89\x8e\x85\x8a\x8e\x82\x87\x8c\ +\x7f\x84\x89\x7b\x7f\x84\x65\x6a\x70\x41\x49\x51\x38\x40\x48\x50\ +\x55\x5c\x63\x67\x6c\x4f\x54\x5b\x33\x38\x40\x54\x58\x5f\x6a\x6e\ +\x73\x6f\x73\x78\x6b\x71\x77\x6e\x74\x7a\x78\x7e\x84\x7b\x81\x87\ +\x7c\x82\x87\x7d\x84\x89\x7d\x85\x89\x7d\x86\x89\x7d\x86\x89\x7d\ +\x85\x8b\x7d\x85\x8b\x82\x8a\x92\x81\x89\x90\x81\x89\x90\x7d\x85\ +\x8b\x7d\x85\x8c\x7f\x86\x8d\x83\x88\x90\x82\x88\x90\x7c\x82\x88\ +\x64\x6d\x72\x5b\x64\x69\x75\x7a\x7f\x7b\x81\x86\x75\x7b\x80\x7e\ +\x83\x87\x89\x8e\x92\x7d\x83\x88\x77\x7d\x82\x82\x87\x8a\x87\x8c\ +\x8f\x7c\x81\x85\x7c\x80\x84\x8a\x8e\x92\x89\x8d\x90\x7a\x7e\x82\ +\x7d\x80\x84\x91\x94\x96\x96\x98\x9a\x9a\x9c\x9f\x98\x9b\x9d\x96\ +\x99\x9d\x96\x99\x9d\x99\x9c\xa0\x9e\xa1\xa5\x9e\xa1\xa5\x9d\xa0\ +\xa4\x9e\xa1\xa5\x9f\xa1\xa6\x9f\xa2\xa4\xa0\xa3\xa4\xa1\xa3\xa4\ +\xa3\xa6\xa7\xa0\xa2\xa3\x80\x86\x88\x49\x55\x58\x77\x7a\x7b\x6d\ +\x6c\x6f\x67\x66\x6a\x99\x98\x99\xa6\xa6\xa6\xaa\xaa\xab\xaa\xab\ +\xac\xa2\xa3\xa5\x88\x8c\x8e\x82\x84\x87\x6f\x72\x76\x72\x76\x7a\ +\xab\xac\xad\xb0\xb0\xb1\xb3\xb2\xb4\xb3\xb2\xb3\xb3\xb2\xb4\xb4\ +\xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb3\xb2\ +\xb3\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb9\xb8\xba\xb7\xb6\xb8\ +\xb7\xb6\xb8\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xba\xbb\xba\xbc\xb9\ +\xb9\xba\xb7\xb7\xb8\xbb\xba\xba\xbc\xbd\xbd\x9b\x9c\x9d\x8f\x8e\ +\x8e\xac\xaa\xa8\xb9\xb6\xb4\xbd\xba\xba\xba\xb9\xb9\x96\x95\x93\ +\x89\x87\x83\xb0\xac\xab\x00\x00\x00\xe4\xde\xdc\xe4\xde\xdc\xe5\ +\xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xde\xe4\xdf\ +\xde\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdd\xe0\xdb\xda\ +\xde\xd9\xd8\xdc\xd4\xd4\xd7\xd0\xd0\xd1\xcb\xca\xc6\xc0\xc0\xb5\ +\xb0\xb1\x98\x96\x97\x75\x77\x79\x50\x57\x5c\x37\x43\x49\x43\x4c\ +\x52\x62\x63\x67\x83\x7e\x80\x91\x8c\x8e\x9c\x99\x9a\xa5\xa2\xa4\ +\xa7\xa3\xa5\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa3\xa5\xa4\xa3\xa5\xa1\ +\xa0\xa2\x9e\x9d\x9f\x9d\x9d\x9f\x93\x95\x96\x8c\x90\x93\x89\x8c\ +\x90\x89\x8c\x8f\x8a\x8d\x91\x8a\x8e\x92\x8a\x8f\x92\x87\x8c\x8f\ +\x84\x8a\x8e\x82\x88\x8c\x82\x87\x8c\x82\x87\x8b\x7f\x86\x8a\x79\ +\x7e\x83\x63\x69\x70\x33\x3f\x49\x22\x2d\x36\x45\x49\x52\x57\x5a\ +\x61\x3f\x44\x4e\x2a\x32\x3d\x3d\x43\x4b\x69\x6d\x72\x6e\x73\x79\ +\x6d\x73\x79\x6c\x72\x78\x74\x7a\x80\x7a\x80\x86\x7d\x82\x87\x7e\ +\x86\x8a\x7e\x84\x89\x7e\x86\x8a\x7c\x85\x89\x7c\x85\x8a\x7f\x87\ +\x8c\x80\x88\x8f\x80\x88\x8f\x7f\x87\x8e\x7e\x86\x8c\x7e\x84\x8a\ +\x80\x86\x8b\x84\x8a\x90\x86\x8c\x92\x7f\x85\x8a\x67\x70\x74\x60\ +\x69\x70\x75\x7a\x7f\x84\x8a\x8f\x7d\x83\x88\x76\x7b\x80\x80\x85\ +\x89\x89\x8f\x93\x7e\x85\x88\x7a\x80\x83\x84\x89\x8c\x87\x8c\x8f\ +\x7b\x7f\x84\x7b\x7f\x83\x8d\x90\x94\x88\x8c\x8f\x79\x7c\x80\x7d\ +\x81\x83\x92\x95\x96\x9a\x9c\x9d\x97\x99\x9c\x96\x98\x9c\x96\x99\ +\x9c\x98\x9b\x9f\x9a\x9d\xa1\x9d\xa0\xa4\x9f\xa3\xa7\xa0\xa2\xa6\ +\xa1\xa2\xa6\xa2\xa4\xa6\xa5\xa8\xa9\xa4\xa7\xa8\xa3\xa5\xa6\xa6\ +\xa8\xa9\xa0\xa3\xa4\x90\x96\x98\x6d\x73\x74\x54\x57\x5a\x70\x70\ +\x73\x68\x69\x6d\x7f\x7f\x82\x95\x94\x96\x93\x92\x94\xa5\xa6\xa6\ +\xa8\xab\xab\x89\x8d\x8f\x61\x65\x6b\x95\x97\x9a\xac\xac\xae\xae\ +\xae\xb0\xb2\xb2\xb3\xb0\xaf\xb1\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\ +\xb5\xb5\xb5\xb6\xb8\xb7\xb8\xb7\xb6\xb8\xb7\xb5\xb8\xb4\xb4\xb5\ +\xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xba\ +\xb9\xbb\xb7\xb6\xb8\xba\xb9\xbb\xbb\xba\xbc\xb8\xb7\xb9\xb7\xb6\ +\xb7\xb9\xb9\xb9\xbc\xbc\xbc\xc0\xc1\xc0\xae\xad\xae\x8a\x88\x88\ +\xa2\x9e\x9d\xb7\xb4\xb4\xbd\xbb\xbb\xc2\xc0\xbf\xb2\xb1\xb0\x90\ +\x8d\x8d\x00\x00\x00\xe5\xdd\xda\xe4\xde\xdb\xe4\xdf\xdc\xe4\xdf\ +\xdc\xe4\xde\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xde\xe4\xdf\xde\ +\xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd7\xd6\xdc\ +\xd4\xd4\xd7\xcf\xcf\xcd\xc5\xc5\xc0\xb9\xb8\xab\xa7\xa4\x8a\x8a\ +\x88\x68\x6c\x6c\x46\x4e\x52\x3a\x43\x4a\x4b\x52\x57\x6f\x6f\x71\ +\x8b\x85\x87\x97\x92\x93\xa1\x9e\x9e\xa5\xa3\xa3\xa7\xa4\xa6\xa8\ +\xa6\xa7\xa6\xa4\xa6\xa3\xa2\xa4\xa2\xa1\xa3\xa1\xa0\xa2\x9e\x9d\ +\x9f\x98\x99\x9a\x93\x93\x96\x8b\x8e\x91\x8a\x8d\x91\x8a\x8d\x91\ +\x8a\x8d\x91\x8d\x92\x95\x8a\x8e\x92\x87\x8c\x8f\x84\x89\x8c\x84\ +\x8a\x8d\x80\x86\x8a\x81\x86\x89\x81\x86\x8a\x73\x79\x7e\x57\x5f\ +\x67\x28\x36\x41\x20\x2b\x36\x3c\x42\x4e\x4b\x50\x5a\x2d\x36\x43\ +\x2b\x34\x41\x47\x4e\x57\x69\x6d\x72\x6f\x75\x7b\x6d\x73\x7a\x6c\ +\x72\x79\x6c\x72\x79\x74\x7a\x7f\x7b\x7f\x84\x7c\x83\x88\x80\x86\ +\x8b\x7e\x86\x8a\x7c\x84\x89\x7c\x85\x89\x7d\x87\x8a\x7d\x86\x8a\ +\x82\x8a\x90\x80\x88\x8f\x7f\x87\x8e\x80\x87\x8e\x82\x88\x8f\x84\ +\x89\x90\x84\x89\x8e\x7b\x80\x85\x6f\x76\x7b\x6d\x76\x7b\x73\x7a\ +\x7f\x7b\x80\x85\x86\x8a\x91\x7d\x83\x89\x78\x7e\x83\x81\x87\x8b\ +\x89\x8f\x92\x7c\x82\x86\x77\x7d\x81\x86\x8a\x8e\x88\x8c\x8f\x7e\ +\x83\x86\x7c\x7f\x83\x8c\x8f\x93\x8e\x92\x94\x7f\x83\x86\x80\x84\ +\x87\x92\x94\x96\x97\x9a\x9c\x99\x9b\x9f\x97\x9a\x9c\x9b\x9d\xa1\ +\x9b\x9d\xa1\x9c\x9f\xa3\xa0\xa3\xa7\xa2\xa5\xa8\xa1\xa4\xa7\xa3\ +\xa7\xa8\xa6\xa9\xab\xa4\xa7\xa8\xa7\xa9\xaa\xa3\xa5\xa6\xa4\xa6\ +\xa7\xa4\xa8\xa8\x96\x9c\x9c\x8f\x93\x94\x8a\x8c\x8e\x6a\x6e\x72\ +\x5e\x61\x65\x6c\x6c\x6e\x74\x73\x75\x90\x90\x91\xad\xae\xae\xac\ +\xae\xae\xa7\xab\xaa\xaa\xaa\xac\xae\xae\xae\xae\xaf\xaf\xae\xad\ +\xaf\xae\xad\xaf\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ +\xb5\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb9\xb8\xba\xb6\ +\xb5\xb7\xb3\xb2\xb4\xb9\xb8\xba\xba\xb9\xbb\xb8\xb7\xb9\xb9\xb8\ +\xba\xba\xb9\xbb\xbb\xba\xbc\xb9\xb8\xba\xba\xb9\xba\xbb\xb9\xbb\ +\xbd\xbc\xbd\xbd\xbd\xbd\xbf\xbe\xbe\xb9\xb9\xb8\x9d\x9d\x9d\x95\ +\x92\x93\xab\xa9\xa9\xbf\xbc\xbc\xc4\xc2\xc1\xbe\xbc\xbd\x00\x00\ +\x00\xe4\xdd\xdb\xe4\xdd\xdb\xe5\xdf\xdc\xe5\xde\xdb\xe4\xdf\xdc\ +\xe4\xdf\xdd\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdc\xe2\ +\xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd6\xd5\xd9\xd2\xd1\xd3\xcc\ +\xcb\xc9\xc1\xbf\xbb\xb4\xb0\xa2\x9e\x98\x7e\x7f\x7b\x5a\x60\x60\ +\x3d\x46\x4c\x3c\x45\x4c\x59\x5c\x61\x79\x77\x79\x90\x8b\x8c\x9a\ +\x96\x97\xa2\x9f\xa1\xa4\xa1\xa3\xa7\xa4\xa6\xa7\xa5\xa6\xa6\xa4\ +\xa6\xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9d\x9c\x9e\x97\x98\x99\ +\x91\x92\x95\x89\x8c\x90\x86\x8a\x8e\x87\x8a\x8e\x8b\x8e\x92\x8b\ +\x8f\x93\x8a\x8e\x92\x88\x8d\x90\x84\x8a\x8d\x84\x89\x8e\x81\x87\ +\x8b\x81\x86\x89\x81\x87\x8b\x70\x79\x7f\x49\x57\x60\x1f\x2e\x3a\ +\x2d\x38\x44\x3d\x46\x51\x40\x4a\x55\x21\x2c\x38\x2e\x36\x41\x51\ +\x58\x5f\x6a\x6f\x74\x71\x77\x7d\x6c\x73\x79\x6b\x72\x78\x6b\x71\ +\x77\x6f\x74\x7a\x78\x7d\x82\x7c\x82\x87\x7e\x84\x89\x7d\x82\x87\ +\x7e\x85\x8a\x7e\x85\x8b\x7e\x87\x8a\x7d\x86\x8b\x7e\x87\x8d\x7f\ +\x87\x8d\x7d\x84\x89\x7c\x82\x87\x81\x87\x8c\x84\x8a\x90\x84\x89\ +\x8e\x7e\x83\x88\x7b\x81\x85\x7e\x83\x88\x7e\x84\x89\x75\x7b\x81\ +\x7a\x7f\x84\x86\x8b\x90\x7d\x84\x89\x74\x79\x7e\x80\x85\x88\x88\ +\x8e\x91\x7e\x84\x87\x7a\x7f\x82\x87\x8b\x8e\x89\x8d\x90\x7e\x83\ +\x86\x7c\x80\x84\x8e\x90\x93\x8b\x8e\x8f\x81\x86\x86\x7f\x82\x83\ +\x8f\x91\x92\x9a\x9d\x9e\x9c\x9e\xa0\x9b\x9c\x9f\x9d\x9f\xa2\x9e\ +\xa1\xa4\xa1\xa2\xa6\xa1\xa3\xa6\xa2\xa4\xa7\xa5\xa7\xa9\xa4\xa6\ +\xa9\xa4\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa4\xa6\xa6\xa7\xa9\xa9\ +\xa9\xaa\xaa\xa6\xa8\xa9\x8f\x92\x95\x65\x6a\x6f\x44\x4a\x50\x65\ +\x66\x6a\x62\x62\x66\x7e\x7f\x81\xad\xad\xad\xb2\xb1\xb1\xb0\xb1\ +\xb1\xae\xad\xae\xae\xae\xad\xb0\xb0\xb0\xac\xac\xad\xaf\xaf\xb0\ +\xb5\xb4\xb6\xb2\xb1\xb3\xb1\xb0\xb2\xb4\xb3\xb5\xb6\xb6\xb8\xb5\ +\xb4\xb6\xb7\xb6\xb8\xb7\xb7\xb9\xbb\xba\xbc\xb7\xb6\xb8\xb5\xb4\ +\xb6\xba\xb9\xbb\xbd\xbc\xbf\xba\xb9\xbb\xbc\xbb\xbd\xbb\xba\xbc\ +\xb7\xb6\xb8\xba\xb9\xbb\xbd\xbc\xbd\xbc\xbb\xbb\xbd\xbd\xbd\xbd\ +\xbd\xbd\xb9\xb8\xb8\xbb\xba\xba\xc1\xc0\xc1\xae\xad\xae\x90\x8f\ +\x91\x9f\x9c\x9c\xb3\xaf\xae\xc3\xbf\xc0\x00\x00\x00\xe4\xde\xdb\ +\xe4\xde\xdb\xe5\xde\xdb\xe5\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\ +\xdf\xdd\xe4\xdf\xde\xe3\xde\xdb\xe3\xde\xdb\xe2\xdd\xdc\xe1\xda\ +\xda\xde\xd9\xd8\xdb\xd5\xd4\xd6\xcf\xcc\xcf\xc7\xc4\xc5\xbd\xba\ +\xb2\xac\xaa\x95\x92\x8e\x71\x73\x71\x4d\x55\x57\x3a\x42\x49\x45\ +\x4a\x51\x66\x67\x6a\x80\x7d\x7f\x93\x8e\x90\x9e\x9b\x9e\xa3\xa2\ +\xa1\xa4\xa2\xa2\xa7\xa6\xa6\xa7\xa5\xa6\xa4\xa4\xa4\xa3\xa2\xa4\ +\xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9b\x9c\x94\x95\x97\x8f\x90\x94\x8a\ +\x8c\x90\x88\x8b\x8f\x89\x8b\x8f\x89\x8d\x91\x88\x8b\x90\x88\x8b\ +\x90\x86\x8a\x8f\x84\x88\x8c\x82\x87\x8c\x80\x87\x8b\x80\x86\x8a\ +\x7f\x84\x89\x6d\x76\x7c\x44\x55\x5f\x24\x34\x40\x39\x44\x4f\x44\ +\x4c\x56\x32\x3e\x4a\x23\x30\x3d\x38\x41\x4a\x63\x69\x6d\x6b\x70\ +\x76\x70\x75\x7b\x70\x76\x7b\x6e\x74\x7a\x6e\x74\x79\x6c\x72\x77\ +\x73\x79\x7d\x7c\x82\x85\x80\x86\x8b\x7e\x84\x89\x7f\x85\x8a\x7f\ +\x85\x8a\x7f\x87\x8b\x7f\x87\x8e\x7e\x86\x8d\x7d\x85\x8a\x74\x79\ +\x7e\x75\x7a\x7f\x7d\x81\x86\x84\x88\x8d\x85\x8a\x8e\x83\x89\x8e\ +\x82\x88\x8c\x85\x8b\x90\x89\x8f\x95\x81\x89\x8f\x79\x7e\x83\x7e\ +\x83\x88\x88\x8d\x92\x7d\x83\x88\x77\x7d\x80\x84\x89\x8c\x8c\x91\ +\x94\x80\x85\x88\x7c\x81\x84\x88\x8c\x8d\x8b\x8f\x91\x7f\x82\x86\ +\x7a\x7d\x80\x8b\x8d\x8f\x91\x94\x95\x86\x8a\x8b\x81\x85\x86\x8e\ +\x91\x92\x9a\x9c\x9e\x9c\x9e\x9f\x9e\xa0\xa1\xa0\xa2\xa3\xa1\xa3\ +\xa5\xa1\xa3\xa5\xa3\xa4\xa8\xa3\xa6\xa7\xa2\xa6\xa6\xa4\xa6\xa7\ +\xa5\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa8\xaa\xaa\xa5\xa7\xa7\xa7\ +\xa9\xaa\xa0\xa2\xa4\x7d\x84\x87\x6c\x73\x77\x6f\x71\x76\x52\x56\ +\x5c\x86\x88\x8c\xad\xad\xad\xb1\xb1\xb1\xaf\xaf\xaf\xb0\xb0\xb0\ +\xb1\xb1\xb1\xb1\xb1\xb2\xaf\xb0\xb1\xb2\xb1\xb3\xb3\xb3\xb5\xb0\ +\xaf\xb1\xb3\xb2\xb4\xb7\xb6\xb8\xb9\xb9\xba\xb7\xb7\xb9\xb8\xb7\ +\xb9\xba\xba\xbc\xbc\xbb\xbd\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\ +\xb9\xb8\xbb\xb7\xb6\xb8\xba\xb9\xbb\xba\xb8\xba\xba\xba\xbc\xbd\ +\xbc\xbe\xbd\xbc\xbe\xba\xba\xba\xbd\xbc\xbd\xbe\xbd\xbe\xbc\xbb\ +\xbc\xbb\xba\xbc\xbd\xbc\xbe\xc1\xc0\xc1\xbc\xbb\xbc\xa3\xa2\xa4\ +\x96\x95\x96\xa5\xa4\xa5\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe5\ +\xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\ +\xde\xe3\xde\xdc\xe3\xde\xdb\xe1\xdc\xdb\xe0\xda\xd9\xde\xd8\xd8\ +\xda\xd3\xd0\xd5\xce\xcb\xcd\xc6\xc3\xbf\xb8\xb7\xa9\xa5\xa4\x89\ +\x89\x87\x63\x69\x69\x43\x4c\x50\x3d\x44\x4b\x53\x55\x5b\x72\x70\ +\x72\x8a\x85\x87\x99\x94\x96\xa0\x9d\x9f\xa4\xa2\xa2\xa6\xa4\xa4\ +\xa8\xa8\xa8\xa6\xa6\xa6\xa5\xa5\xa6\xa3\xa2\xa4\xa1\xa0\xa2\x9e\ +\x9d\x9f\x98\x98\x9a\x90\x92\x95\x8c\x8d\x91\x8a\x8b\x8f\x8a\x8b\ +\x8f\x8a\x8d\x91\x89\x8b\x8f\x87\x8a\x8e\x87\x8a\x8f\x86\x8a\x8e\ +\x84\x88\x8c\x83\x87\x8c\x82\x87\x8c\x7f\x84\x89\x7e\x83\x88\x71\ +\x79\x7f\x4f\x5e\x67\x3a\x48\x54\x45\x4e\x58\x54\x5b\x65\x2f\x3c\ +\x47\x28\x39\x45\x41\x4c\x55\x67\x6d\x73\x70\x75\x7c\x70\x75\x7a\ +\x74\x79\x7e\x6f\x75\x7a\x6f\x75\x7a\x6e\x73\x78\x6d\x72\x77\x74\ +\x79\x7d\x7d\x83\x87\x7e\x84\x89\x7f\x85\x8a\x80\x86\x8b\x80\x86\ +\x8b\x81\x88\x8f\x80\x88\x8e\x7a\x80\x85\x6e\x74\x79\x70\x76\x7b\ +\x7b\x80\x85\x83\x88\x8d\x86\x8c\x90\x86\x8c\x91\x85\x8b\x8f\x87\ +\x8d\x92\x8a\x91\x96\x88\x90\x95\x80\x88\x8d\x7a\x81\x86\x81\x86\ +\x8b\x87\x8c\x91\x81\x87\x8b\x7c\x82\x85\x85\x89\x8d\x8b\x90\x93\ +\x83\x89\x8b\x7d\x82\x85\x88\x8b\x8e\x8b\x8e\x90\x7f\x83\x85\x7d\ +\x81\x83\x8e\x91\x93\x96\x98\x9a\x89\x8d\x8f\x81\x85\x85\x8f\x92\ +\x93\x9c\x9e\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa3\xa4\xa0\xa2\xa3\ +\xa0\xa2\xa5\xa2\xa5\xa6\xa3\xa6\xa6\xa5\xa7\xa8\xa6\xa8\xa9\xa5\ +\xa7\xa9\xa7\xa9\xaa\xa7\xa9\xaa\xa7\xa9\xaa\xa6\xa8\xa9\xa9\xab\ +\xac\xaa\xac\xad\x9e\xa0\xa1\x69\x6e\x71\x6a\x70\x73\x9d\x9e\x9f\ +\xa2\xa2\xa3\xad\xad\xad\xaf\xaf\xaf\xb1\xb1\xb1\xb4\xb3\xb4\xb1\ +\xb0\xb1\xb3\xb3\xb5\xb7\xb6\xb8\xb2\xb2\xb4\xb2\xb1\xb4\xb6\xb5\ +\xb7\xb8\xb7\xb9\xb9\xb8\xbb\xb8\xb8\xba\xb7\xb7\xb9\xba\xb9\xbb\ +\xba\xb9\xbb\xb8\xb7\xb9\xb8\xb7\xba\xbb\xba\xbc\xb9\xb8\xbb\xb9\ +\xb8\xba\xba\xb9\xbb\xbb\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xba\xba\ +\xba\xbb\xbb\xbb\xbc\xbc\xbc\xbc\xbb\xbc\xc0\xbe\xc0\xbf\xbe\xc0\ +\xbe\xbc\xbe\xc0\xbe\xc0\xc1\xbf\xc1\xc2\xc0\xc2\xb5\xb4\xb6\x9d\ +\x9c\x9e\x00\x00\x00\xe4\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe5\xdf\ +\xdc\xe4\xdf\xdc\xe4\xde\xdb\xe4\xde\xdc\xe3\xde\xdc\xe3\xde\xdb\ +\xe2\xdd\xdb\xe1\xdc\xda\xde\xda\xd8\xdd\xd7\xd6\xd9\xd2\xcf\xd3\ +\xcc\xc8\xc8\xc1\xbf\xb9\xb4\xb4\x9f\x9d\x9c\x7b\x7d\x7d\x59\x5e\ +\x61\x3f\x47\x4e\x41\x48\x50\x5f\x60\x65\x7e\x7c\x7e\x90\x8b\x8d\ +\x9d\x97\x99\xa1\x9e\xa0\xa5\xa3\xa3\xa7\xa5\xa6\xa6\xa6\xa7\xa5\ +\xa5\xa5\xa4\xa4\xa4\xa1\xa1\xa3\x9f\x9e\xa0\x9c\x9b\x9d\x94\x94\ +\x97\x8e\x8f\x93\x87\x89\x8e\x86\x88\x8c\x89\x8b\x8f\x8b\x8d\x91\ +\x88\x89\x8d\x86\x88\x8c\x86\x89\x8e\x86\x8a\x8f\x85\x89\x8d\x84\ +\x87\x8c\x83\x87\x8c\x80\x86\x8a\x7e\x84\x88\x74\x7c\x81\x63\x6e\ +\x75\x5a\x65\x6e\x5a\x63\x6b\x5f\x67\x6e\x43\x4f\x59\x39\x47\x51\ +\x53\x5a\x63\x6b\x6e\x75\x72\x77\x7d\x71\x75\x7b\x73\x77\x7c\x70\ +\x75\x7b\x6d\x73\x78\x6f\x74\x79\x6d\x71\x76\x6d\x71\x76\x79\x7e\ +\x83\x7e\x84\x89\x7f\x85\x8a\x80\x87\x8c\x81\x88\x8c\x81\x86\x8c\ +\x7f\x85\x8b\x75\x7b\x80\x6e\x74\x79\x73\x78\x7d\x7f\x84\x89\x83\ +\x88\x8e\x84\x89\x8e\x85\x8b\x90\x87\x8d\x91\x88\x8e\x93\x87\x8d\ +\x92\x8a\x8f\x95\x89\x90\x95\x81\x88\x8d\x7a\x7f\x84\x81\x85\x89\ +\x8a\x8e\x93\x83\x88\x8c\x7a\x80\x83\x84\x87\x8b\x8e\x92\x94\x84\ +\x89\x8b\x7d\x81\x85\x89\x8c\x8e\x90\x93\x95\x85\x89\x8c\x7c\x7f\ +\x83\x89\x8c\x8d\x95\x97\x9a\x8b\x8f\x91\x82\x86\x88\x8d\x8f\x92\ +\x9a\x9d\x9e\x9f\xa2\xa2\x9e\xa0\xa1\x9f\xa1\xa2\xa2\xa4\xa5\xa2\ +\xa3\xa6\xa1\xa2\xa5\xa3\xa5\xa7\xa6\xa8\xa9\xa6\xa8\xa9\xa9\xab\ +\xac\xa9\xab\xac\xa9\xaa\xab\xa8\xa9\xaa\xab\xac\xad\xb1\xb1\xb2\ +\xa0\xa1\xa2\x84\x87\x89\x87\x8a\x8b\x83\x85\x85\x78\x79\x79\x96\ +\x96\x96\xaf\xaf\xaf\xb0\xb0\xb0\xb1\xb0\xb2\xb0\xaf\xb0\xb4\xb3\ +\xb5\xb6\xb6\xb8\xb1\xb1\xb4\xb3\xb1\xb4\xb5\xb4\xb7\xb2\xb1\xb5\ +\xb6\xb5\xb9\xb9\xb9\xbc\xb9\xb9\xbb\xb9\xb8\xba\xb9\xb8\xba\xba\ +\xb9\xbb\xba\xba\xbb\xbb\xba\xbc\xb9\xb8\xbb\xbb\xba\xbc\xbc\xbb\ +\xbd\xbc\xbb\xbd\xba\xb9\xbb\xb9\xb8\xb9\xb9\xb9\xb9\xbe\xbe\xbe\ +\xbe\xbe\xbe\xbb\xba\xbb\xbe\xbd\xbe\xc0\xbe\xc0\xc0\xbd\xbf\xc0\ +\xbe\xbf\xc1\xbe\xc0\xbf\xbd\xbf\xc1\xbf\xc1\xc1\xc1\xc2\x00\x00\ +\x00\xe4\xdd\xda\xe4\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe2\xde\xdb\ +\xe4\xde\xdb\xe5\xde\xdb\xe3\xdd\xda\xe3\xde\xda\xe2\xdc\xd9\xe1\ +\xdb\xd8\xdf\xd9\xd7\xdb\xd5\xd2\xd6\xcf\xca\xd0\xc9\xc7\xc3\xbc\ +\xbc\xb0\xab\xac\x92\x91\x90\x6f\x72\x73\x50\x56\x5b\x3f\x46\x4e\ +\x4b\x50\x57\x6a\x69\x6d\x85\x82\x84\x95\x91\x93\x9f\x9b\x9d\xa4\ +\xa1\xa2\xa6\xa4\xa5\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa5\xa6\xa5\xa4\ +\xa5\xa0\xa0\xa1\x9d\x9c\x9e\x9b\x9b\x9d\x91\x92\x95\x8a\x8c\x90\ +\x85\x87\x8c\x85\x86\x8a\x82\x83\x87\x7e\x80\x84\x7e\x7f\x83\x82\ +\x84\x88\x86\x89\x8d\x85\x88\x8c\x85\x89\x8e\x84\x88\x8d\x83\x88\ +\x8d\x81\x87\x8c\x80\x85\x8b\x7a\x7f\x85\x71\x79\x7f\x6f\x77\x7d\ +\x6f\x76\x7c\x6c\x74\x78\x5e\x68\x6e\x55\x5e\x65\x5d\x61\x68\x6b\ +\x6e\x73\x6d\x70\x75\x73\x76\x7c\x6f\x72\x77\x6b\x70\x75\x6c\x72\ +\x77\x6f\x73\x78\x71\x75\x7a\x6e\x72\x77\x72\x77\x7c\x7a\x80\x85\ +\x7f\x85\x8a\x7e\x85\x8a\x82\x87\x8c\x80\x86\x8b\x7c\x82\x87\x71\ +\x77\x7c\x6f\x75\x7a\x79\x7e\x82\x83\x88\x8d\x84\x89\x8f\x85\x89\ +\x8e\x86\x8b\x90\x87\x8d\x92\x89\x8e\x93\x88\x8e\x92\x89\x8f\x94\ +\x8b\x91\x96\x8b\x91\x96\x81\x87\x8c\x79\x7f\x84\x81\x86\x8a\x8a\ +\x8f\x93\x83\x89\x8d\x7c\x81\x84\x87\x8b\x8d\x91\x94\x97\x88\x8d\ +\x90\x7d\x81\x84\x85\x89\x8c\x90\x94\x96\x85\x88\x8d\x7d\x80\x83\ +\x89\x8b\x8e\x99\x9c\x9d\x90\x93\x95\x82\x86\x88\x87\x8b\x8c\x98\ +\x9a\x9b\x9f\xa1\xa2\xa2\xa4\xa5\xa5\xa7\xa7\xa2\xa3\xa7\xa0\xa0\ +\xa5\xa3\xa5\xa6\xa5\xa7\xa8\xa4\xa6\xa7\xa8\xaa\xab\xaa\xac\xad\ +\xaa\xab\xac\xa9\xa9\xab\xad\xac\xae\xaf\xaf\xb1\xa4\xa6\xa7\x99\ +\x9c\x9d\x84\x88\x89\x6c\x70\x72\x5f\x63\x66\x75\x77\x78\xab\xac\ +\xab\xb1\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb0\xb1\xb3\xb1\xb3\xb4\ +\xb0\xb1\xb3\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb0\xb3\xb6\xb4\xb7\xb7\ +\xb6\xb8\xba\xb9\xbb\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbc\ +\xbe\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\ +\xbd\xbc\xbe\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbe\xbf\xbe\xc0\xbe\ +\xbd\xbf\xbc\xbc\xbd\xbe\xbd\xbf\xc0\xbe\xc1\xc3\xc2\xc3\xc3\xc0\ +\xc2\xc1\xbf\xc1\xbf\xbd\xbf\xc2\xc2\xc3\x00\x00\x00\xe5\xde\xdb\ +\xe5\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe5\xde\xdb\xe5\ +\xde\xdb\xe4\xde\xda\xe3\xde\xdb\xe2\xdb\xd8\xdf\xd9\xd6\xde\xd6\ +\xd6\xd9\xd2\xce\xd3\xcd\xc8\xcb\xc5\xc3\xbe\xb7\xb7\xa7\xa2\xa3\ +\x86\x85\x86\x62\x67\x6a\x46\x4d\x55\x40\x46\x4f\x57\x59\x5f\x76\ +\x73\x76\x8b\x87\x89\x9a\x95\x97\x9f\x9b\x9d\xa5\xa2\xa4\xa6\xa3\ +\xa6\xa7\xa4\xa6\xa7\xa5\xa7\xa3\xa3\xa4\xa3\xa2\xa4\xa2\xa1\xa3\ +\x9f\x9d\x9f\x99\x9a\x9c\x8f\x91\x94\x88\x89\x8e\x83\x84\x89\x82\ +\x83\x87\x77\x79\x7b\x6b\x6e\x72\x69\x6c\x6f\x76\x76\x7b\x82\x84\ +\x88\x83\x87\x8c\x82\x86\x8b\x81\x85\x8a\x82\x87\x8c\x81\x87\x8c\ +\x80\x86\x8c\x7c\x82\x88\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\x77\ +\x7d\x82\x6d\x74\x79\x62\x68\x6e\x55\x5a\x61\x5e\x62\x68\x66\x69\ +\x6e\x6c\x70\x74\x64\x67\x6c\x61\x64\x69\x68\x6c\x70\x6d\x72\x76\ +\x70\x74\x79\x6f\x75\x7a\x6b\x72\x76\x71\x77\x7c\x7e\x83\x88\x7e\ +\x83\x89\x81\x87\x8c\x7f\x85\x8a\x78\x7d\x82\x6f\x75\x7a\x72\x77\ +\x7b\x7f\x83\x87\x86\x8a\x8f\x87\x8c\x91\x87\x8b\x90\x87\x8b\x90\ +\x86\x8b\x90\x88\x8d\x91\x87\x8d\x90\x89\x8f\x93\x8d\x91\x96\x8f\ +\x94\x99\x8a\x91\x96\x83\x8a\x8f\x7d\x82\x87\x83\x87\x8c\x8a\x90\ +\x94\x84\x8a\x8d\x7e\x82\x85\x89\x8c\x90\x92\x96\x9a\x86\x8a\x8d\ +\x7c\x81\x84\x85\x88\x8b\x91\x94\x96\x8c\x8f\x92\x81\x83\x87\x8a\ +\x8c\x8e\x99\x9c\x9c\x92\x94\x96\x84\x88\x89\x87\x8a\x8b\x97\x9a\ +\x9b\xa3\xa5\xa7\xa5\xa7\xa9\xa4\xa6\xa8\xa4\xa6\xa8\xa4\xa5\xa7\ +\x9f\xa0\xa1\xa2\xa4\xa5\xa5\xa6\xa7\xa9\xaa\xac\xa9\xa9\xaa\xa9\ +\xa9\xab\xad\xab\xad\xaf\xae\xb0\xae\xae\xb0\xaa\xab\xac\x95\x99\ +\x9a\x7e\x83\x86\x5c\x63\x68\x70\x76\x78\xa9\xaa\xab\xaf\xb1\xb2\ +\xb2\xb1\xb3\xb5\xb4\xb6\xb1\xb3\xb4\xb0\xb2\xb3\xb0\xb2\xb3\xb2\ +\xb3\xb5\xb3\xb4\xb5\xb5\xb5\xb6\xb8\xb6\xb8\xb7\xb6\xb8\xba\xb9\ +\xbb\xbb\xba\xbc\xb9\xb8\xba\xb9\xb8\xba\xbd\xbc\xbe\xbc\xbb\xbd\ +\xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbc\ +\xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbf\xbe\xc0\xc1\xc1\xc2\xbf\xbe\ +\xc0\xc1\xc0\xc2\xc0\xbf\xc1\xc4\xc1\xc3\xc3\xc1\xc2\xc2\xc1\xc2\ +\xbf\xbd\xbf\xbe\xbd\xbe\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe4\ +\xde\xdb\xe4\xde\xdb\xe4\xdf\xdc\xe4\xde\xdc\xe3\xdd\xdb\xe3\xdd\ +\xd9\xe3\xdc\xd9\xe1\xda\xd6\xde\xd8\xd5\xdb\xd6\xd3\xd9\xd2\xcf\ +\xd0\xca\xc6\xc7\xc0\xbe\xb8\xb2\xb1\x9c\x98\x98\x78\x79\x7b\x55\ +\x5c\x60\x3d\x44\x4c\x44\x47\x50\x61\x61\x66\x7f\x7a\x7d\x92\x8c\ +\x8e\x9a\x95\x97\xa0\x9b\x9d\xa5\xa2\xa5\xa7\xa3\xa6\xa7\xa4\xa6\ +\xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa1\xa2\xa0\xa0\xa1\x9d\x9c\x9e\x94\ +\x94\x98\x8c\x8d\x91\x86\x87\x8c\x80\x81\x85\x80\x81\x84\x70\x72\ +\x73\x58\x5d\x60\x4f\x55\x59\x5f\x61\x65\x7d\x7f\x83\x84\x87\x8c\ +\x82\x85\x8a\x83\x87\x8c\x80\x85\x8a\x7f\x85\x8a\x7f\x86\x8b\x7d\ +\x83\x89\x7d\x82\x87\x7b\x81\x86\x7b\x81\x86\x7b\x81\x86\x76\x7c\ +\x81\x63\x68\x6d\x47\x4d\x55\x38\x3d\x45\x56\x5a\x61\x63\x65\x6a\ +\x51\x53\x5b\x46\x4a\x52\x57\x5a\x62\x69\x6f\x74\x6d\x73\x79\x72\ +\x78\x7d\x6e\x74\x7a\x6d\x72\x78\x75\x7a\x7f\x7c\x83\x87\x7e\x85\ +\x89\x80\x85\x8a\x74\x78\x7e\x6e\x72\x77\x77\x7c\x80\x82\x87\x8b\ +\x85\x8a\x8e\x86\x8a\x8f\x86\x8b\x90\x88\x8c\x90\x88\x8c\x91\x88\ +\x8c\x91\x8a\x8f\x93\x8c\x90\x95\x8c\x90\x95\x90\x94\x99\x8d\x93\ +\x98\x8d\x92\x96\x85\x89\x8f\x7d\x81\x86\x84\x88\x8c\x8d\x91\x95\ +\x86\x8b\x8f\x7f\x83\x87\x89\x8c\x90\x94\x97\x9b\x88\x8d\x90\x7d\ +\x81\x85\x84\x87\x8a\x93\x96\x99\x8d\x90\x94\x82\x85\x88\x88\x8a\ +\x8b\x99\x9b\x9c\x98\x9b\x9b\x88\x8c\x8d\x87\x8b\x8c\x97\x9a\x9c\ +\xa4\xa6\xa7\xa5\xa6\xa7\xa6\xa8\xa9\xa5\xa6\xa8\xa1\xa1\xa4\xa1\ +\xa3\xa5\xa4\xa5\xa5\xa7\xa7\xaa\xa8\xa9\xaa\xa9\xab\xac\xad\xad\ +\xaf\xaf\xaf\xb1\xb1\xb0\xb2\xad\xad\xaf\xa7\xaa\xaa\x9a\x9e\x9f\ +\x88\x8e\x91\x9a\x9e\xa1\xaf\xaf\xb1\xaf\xb1\xb2\xb2\xb1\xb3\xb5\ +\xb4\xb6\xb4\xb4\xb6\xb2\xb4\xb5\xb1\xb3\xb4\xb2\xb4\xb5\xb2\xb4\ +\xb5\xb8\xb7\xb9\xb8\xb7\xb9\xb7\xb6\xb8\xb9\xb8\xba\xbc\xbb\xbd\ +\xba\xb9\xbb\xb9\xb8\xba\xbb\xba\xbb\xbc\xbb\xbd\xb9\xb9\xba\xbb\ +\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc1\ +\xc2\xbe\xbe\xbf\xbc\xbb\xbd\xc0\xbf\xc1\xc0\xbf\xc1\xc1\xc0\xc2\ +\xbf\xbf\xc0\xc4\xc2\xc3\xbe\xbb\xbc\xbd\xbc\xbd\xbf\xbe\xbf\xbf\ +\xbf\xbf\x00\x00\x00\xe5\xde\xdb\xe3\xde\xdb\xe4\xdf\xdb\xe3\xde\ +\xdb\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe3\xdd\xda\xe1\xdc\xd9\ +\xe0\xda\xd7\xdd\xd8\xd5\xdb\xd5\xd2\xd5\xce\xcb\xcc\xc6\xc1\xc2\ +\xbb\xb8\xaf\xa8\xa6\x8e\x8b\x8a\x6a\x6e\x70\x4a\x53\x59\x3f\x46\ +\x4f\x4f\x51\x59\x6f\x6c\x70\x87\x82\x83\x97\x92\x93\x9e\x99\x9a\ +\xa4\x9f\xa1\xa5\xa2\xa4\xa7\xa4\xa5\xa5\xa3\xa5\xa3\xa3\xa5\xa2\ +\xa1\xa3\xa1\xa0\xa2\x9d\x9d\xa0\x98\x98\x9c\x92\x92\x96\x8a\x8b\ +\x8f\x83\x84\x88\x76\x77\x7a\x6e\x70\x72\x6a\x6b\x6d\x59\x5d\x60\ +\x4e\x55\x58\x56\x5a\x5d\x77\x79\x7d\x81\x84\x89\x80\x84\x89\x81\ +\x85\x8a\x80\x85\x8b\x81\x85\x8b\x7f\x84\x8a\x7e\x84\x89\x7c\x82\ +\x87\x7c\x81\x86\x7b\x80\x85\x7c\x82\x87\x7a\x7f\x84\x5e\x64\x69\ +\x39\x42\x4a\x25\x2e\x36\x46\x4b\x51\x59\x5b\x61\x35\x3c\x43\x1b\ +\x26\x2d\x40\x46\x4e\x69\x6e\x75\x6f\x76\x7c\x70\x75\x7a\x71\x77\ +\x7c\x6e\x74\x79\x6c\x73\x78\x76\x7c\x80\x7c\x81\x84\x75\x7a\x7e\ +\x65\x69\x6d\x68\x6c\x70\x78\x7c\x80\x83\x88\x8b\x84\x89\x8d\x83\ +\x87\x8d\x86\x8a\x8f\x88\x8c\x91\x88\x8c\x91\x86\x8a\x90\x8a\x8e\ +\x93\x8b\x8f\x94\x8f\x93\x97\x8d\x91\x96\x8e\x92\x97\x8f\x93\x98\ +\x8f\x93\x99\x86\x8b\x90\x80\x84\x89\x83\x86\x8b\x8d\x92\x96\x89\ +\x8d\x91\x81\x85\x89\x89\x8c\x90\x94\x98\x9b\x8b\x8f\x92\x81\x84\ +\x88\x84\x87\x89\x97\x99\x9c\x94\x97\x99\x85\x89\x8a\x88\x8a\x8b\ +\x96\x98\x99\x9a\x9c\x9d\x8a\x8e\x8e\x83\x87\x88\x97\x99\x9a\xa6\ +\xa6\xa8\xa5\xa7\xa9\xa4\xa6\xa8\xa2\xa2\xa3\xa0\xa1\xa3\xa5\xa5\ +\xa6\xa7\xa6\xa8\xa8\xa9\xab\xab\xac\xae\xac\xac\xae\xab\xac\xae\ +\xac\xac\xae\xae\xaf\xb0\xae\xb0\xb1\xac\xad\xaf\xac\xae\xaf\xaf\ +\xb0\xb1\xb1\xb2\xb3\xaf\xaf\xb1\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb4\ +\xb5\xb4\xb4\xb6\xb5\xb5\xb7\xb3\xb4\xb5\xb3\xb4\xb6\xb7\xb6\xb8\ +\xb7\xb6\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xba\ +\xba\xbb\xba\xba\xbb\xbb\xbb\xbc\xbb\xbb\xbc\xbc\xbc\xbe\xbd\xbc\ +\xbe\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xbf\xbf\xbe\xbf\xbd\xbd\xbe\ +\xbc\xbb\xbd\xba\xb8\xba\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xc2\xc2\xc3\ +\xc2\xc2\xbd\xbc\xbd\xc0\xbf\xc0\xbe\xbe\xbe\xc1\xc0\xc2\x00\x00\ +\x00\xe5\xdf\xdc\xe3\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xde\xdb\ +\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xda\xe1\xdc\xd9\xdf\xd9\xd6\xdd\ +\xd6\xd3\xd8\xd2\xcf\xd4\xcc\xc9\xc8\xc1\xbe\xba\xb2\xaf\xa4\x9f\ +\x9d\x82\x81\x83\x5d\x62\x69\x42\x4c\x54\x42\x4a\x52\x59\x59\x60\ +\x77\x73\x76\x8e\x88\x89\x9a\x95\x96\xa1\x9c\x9c\xa4\xa0\xa2\xa5\ +\xa2\xa3\xa6\xa5\xa6\xa4\xa3\xa5\xa2\xa1\xa3\xa2\xa1\xa3\x9e\x9e\ +\xa1\x99\x9a\x9e\x94\x95\x99\x8d\x8e\x93\x86\x87\x8a\x76\x78\x7a\ +\x6a\x6d\x6f\x61\x64\x68\x60\x63\x66\x5e\x62\x63\x60\x65\x66\x63\ +\x66\x68\x74\x77\x7c\x7f\x83\x87\x7f\x82\x87\x80\x85\x8a\x7f\x85\ +\x8b\x7e\x84\x8b\x7d\x83\x89\x7d\x83\x89\x7e\x84\x8a\x7b\x81\x86\ +\x7a\x80\x85\x7b\x81\x86\x71\x76\x7b\x5a\x60\x66\x2a\x35\x3d\x23\ +\x2d\x35\x40\x47\x4d\x4d\x51\x58\x27\x30\x37\x09\x17\x1c\x30\x37\ +\x3f\x63\x68\x70\x73\x7a\x7f\x71\x77\x7b\x71\x77\x7c\x6f\x77\x7a\ +\x6d\x75\x7c\x6c\x72\x78\x78\x7c\x7f\x6b\x6f\x73\x4d\x51\x56\x4f\ +\x52\x57\x72\x74\x78\x82\x86\x89\x83\x87\x8b\x83\x88\x8c\x85\x8a\ +\x8e\x88\x8c\x91\x8a\x8f\x93\x8a\x8f\x92\x8b\x8f\x93\x8b\x8f\x94\ +\x8d\x92\x96\x8e\x92\x97\x8e\x92\x97\x8f\x94\x98\x90\x95\x98\x91\ +\x96\x99\x88\x8c\x91\x7d\x82\x86\x82\x87\x8a\x8e\x93\x96\x8b\x8f\ +\x94\x81\x85\x89\x86\x89\x8d\x99\x9c\xa0\x93\x97\x9b\x84\x87\x8b\ +\x85\x88\x89\x94\x96\x98\x96\x9b\x9c\x88\x8c\x8d\x85\x88\x89\x98\ +\x9a\x9a\x9d\xa0\xa0\x8a\x8d\x8f\x85\x88\x8a\x96\x98\x9a\xa7\xa7\ +\xa9\xa8\xa8\xaa\xa5\xa4\xa6\xa3\xa4\xa5\xa6\xa5\xa7\xa5\xa4\xa6\ +\xa7\xa7\xa9\xad\xac\xae\xae\xad\xb0\xac\xab\xae\xac\xab\xad\xaf\ +\xae\xb0\xaf\xae\xb0\xb0\xaf\xb1\xb2\xb1\xb3\xb0\xaf\xb1\xb3\xb2\ +\xb4\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb3\xb4\xaf\xb1\xb2\ +\xb3\xb5\xb6\xb4\xb6\xb7\xb4\xb5\xb6\xb5\xb5\xb7\xb8\xb7\xb9\xb8\ +\xb7\xb9\xba\xb9\xbb\xbc\xbc\xbd\xba\xba\xbb\xbc\xbb\xbd\xba\xba\ +\xbb\xbc\xbc\xbd\xbb\xba\xbc\xbb\xba\xbc\xbe\xbe\xbf\xbe\xbc\xbf\ +\xba\xb9\xbc\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbf\xbe\xbd\xbf\xbd\ +\xbc\xbe\xbe\xbd\xbf\xc0\xbf\xc0\xc1\xc1\xc2\xc2\xc1\xc2\xbe\xbe\ +\xbe\xc2\xc2\xc2\xc0\xbf\xc1\xc0\xc0\xc0\x00\x00\x00\xe3\xdd\xdb\ +\xe4\xde\xdc\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdd\xe3\xde\xdb\xe2\ +\xdd\xda\xe1\xdc\xd9\xe1\xdb\xd8\xde\xd8\xd5\xdb\xd5\xd2\xd7\xd1\ +\xce\xcf\xc9\xc6\xc4\xbd\xba\xb5\xae\xab\x9a\x95\x96\x77\x78\x7b\ +\x55\x5a\x61\x3f\x48\x52\x44\x4c\x55\x62\x63\x68\x81\x7d\x7e\x93\ +\x8d\x8e\x9f\x9a\x9a\xa3\x9e\xa0\xa6\xa3\xa4\xa7\xa5\xa6\xa5\xa3\ +\xa5\xa5\xa4\xa6\xa4\xa3\xa5\x9f\x9f\xa1\x9a\x9b\x9e\x99\x9a\x9e\ +\x95\x96\x9a\x8d\x8e\x91\x81\x85\x86\x6d\x71\x72\x5d\x61\x65\x56\ +\x59\x5d\x59\x5b\x5f\x62\x65\x66\x67\x69\x6c\x70\x73\x76\x78\x7b\ +\x7f\x7e\x82\x87\x80\x85\x8a\x82\x87\x8d\x7f\x85\x8b\x7f\x84\x8a\ +\x7d\x81\x87\x7e\x84\x8a\x7e\x84\x8b\x7d\x81\x86\x7b\x81\x86\x7b\ +\x82\x86\x66\x6f\x75\x47\x52\x59\x1b\x27\x2f\x26\x31\x38\x3b\x41\ +\x49\x38\x3e\x46\x1b\x25\x2c\x0b\x19\x20\x32\x3c\x44\x62\x68\x6f\ +\x71\x76\x7d\x70\x76\x7c\x6e\x74\x79\x6f\x75\x7c\x70\x79\x7f\x6b\ +\x72\x76\x6d\x72\x77\x5e\x64\x68\x36\x3d\x43\x2f\x33\x38\x5f\x5f\ +\x63\x7b\x7c\x7e\x84\x88\x8c\x86\x8b\x8f\x87\x8c\x90\x89\x8d\x92\ +\x89\x8e\x93\x89\x8e\x91\x88\x8d\x92\x8a\x8e\x92\x8d\x92\x96\x8d\ +\x91\x96\x8e\x93\x96\x91\x95\x99\x91\x95\x9a\x95\x99\x9e\x94\x99\ +\x9d\x8a\x8f\x93\x7f\x85\x88\x84\x88\x8c\x94\x98\x9c\x8d\x92\x96\ +\x81\x86\x89\x88\x8b\x8f\x9d\x9f\xa3\x93\x97\x9a\x84\x87\x8a\x83\ +\x86\x88\x96\x98\x99\x98\x9a\x9b\x8b\x8e\x8e\x85\x87\x89\x92\x94\ +\x95\x9c\x9e\x9f\x90\x93\x94\x81\x85\x88\x92\x92\x94\xaa\xa8\xaa\ +\xa8\xa8\xa9\xa4\xa6\xa7\xa6\xa6\xa7\xa6\xa5\xa7\xa9\xa8\xaa\xae\ +\xad\xaf\xaf\xae\xb0\xae\xae\xb0\xb0\xb0\xb2\xaf\xae\xb0\xaf\xae\ +\xb0\xb1\xb0\xb2\xb4\xb3\xb5\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\ +\xb2\xb1\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb0\xaf\xb1\xb5\xb5\xb7\xb6\ +\xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb7\xb7\xb8\xb7\xb6\ +\xb8\xba\xb9\xba\xbc\xbb\xbc\xbd\xbc\xbd\xbb\xba\xbc\xbc\xbb\xbd\ +\xbd\xbc\xbe\xbb\xba\xbc\xbe\xbd\xbf\xbc\xbc\xbd\xba\xb9\xbb\xb9\ +\xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\ +\xc2\xc3\xc2\xc4\xc2\xc2\xc3\xc0\xc0\xc0\xbf\xbf\xc0\xc1\xc0\xc1\ +\xc2\xc2\xc2\xc2\xc2\xc3\x00\x00\x00\xe3\xde\xdb\xe4\xde\xdc\xe4\ +\xdf\xdd\xe4\xdf\xde\xe3\xde\xdc\xe2\xdc\xda\xe2\xdd\xda\xe1\xdc\ +\xd9\xdf\xda\xd9\xdc\xd6\xd5\xd9\xd4\xd2\xd3\xcc\xc9\xcd\xc6\xc3\ +\xbe\xb7\xb4\xac\xa7\xa4\x8b\x89\x8a\x67\x6a\x6e\x48\x4e\x55\x3d\ +\x44\x4e\x4f\x54\x5b\x6d\x6d\x70\x87\x83\x84\x97\x92\x93\x9e\x99\ +\x9a\xa2\x9d\x9e\xa4\xa1\xa3\xa7\xa5\xa5\xa7\xa6\xa8\xa6\xa5\xa7\ +\xa1\xa2\xa4\x9c\x9e\xa1\x9c\x9d\xa1\x96\x98\x9b\x8e\x90\x92\x86\ +\x89\x8a\x7b\x7f\x80\x6c\x70\x72\x56\x5a\x60\x49\x4d\x53\x4c\x4f\ +\x54\x5d\x60\x63\x6b\x6c\x70\x74\x76\x7a\x78\x7b\x7f\x7c\x81\x84\ +\x7f\x84\x88\x7e\x83\x89\x7c\x82\x88\x7d\x83\x8a\x7c\x82\x88\x7d\ +\x82\x88\x7e\x83\x88\x7a\x80\x85\x7c\x82\x87\x77\x80\x84\x5c\x69\ +\x6e\x30\x40\x47\x1d\x2c\x32\x32\x3f\x47\x47\x4e\x57\x27\x31\x39\ +\x0a\x17\x1e\x1b\x26\x2e\x4c\x53\x5e\x69\x6e\x77\x70\x76\x7d\x72\ +\x79\x7e\x6f\x78\x7c\x6b\x74\x7a\x70\x76\x7d\x70\x76\x7b\x65\x6a\ +\x6f\x48\x4f\x55\x27\x30\x37\x22\x27\x2c\x46\x47\x4c\x70\x6f\x73\ +\x83\x86\x8b\x89\x8e\x93\x89\x8d\x92\x88\x8d\x92\x88\x8e\x93\x89\ +\x8e\x91\x8b\x91\x96\x8a\x8e\x93\x8e\x92\x97\x8c\x90\x95\x8f\x93\ +\x98\x91\x95\x9a\x95\x99\x9e\x97\x9b\x9f\x96\x9a\x9e\x94\x97\x9c\ +\x8b\x90\x93\x80\x85\x89\x84\x88\x8c\x90\x95\x98\x8f\x94\x97\x83\ +\x88\x8b\x8a\x8d\x91\x9a\x9d\xa1\x96\x99\x9d\x85\x89\x8b\x80\x84\ +\x85\x92\x94\x95\x9b\x9e\x9e\x8d\x91\x92\x86\x89\x8a\x92\x94\x95\ +\x9e\xa0\xa1\x94\x98\x98\x86\x88\x8a\x8f\x91\x92\xa3\xa2\xa4\xa6\ +\xa5\xa7\xa4\xa3\xa5\xa6\xa7\xa8\xac\xaa\xac\xaa\xa9\xab\xac\xab\ +\xad\xae\xae\xaf\xb1\xb1\xb3\xb2\xb1\xb3\xb1\xb0\xb2\xb1\xb0\xb2\ +\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb0\xaf\xb0\xb2\xb1\xb3\xb2\ +\xb2\xb3\xb2\xb2\xb3\xb3\xb3\xb4\xb2\xb2\xb3\xb3\xb2\xb4\xb6\xb5\ +\xb7\xb9\xb8\xba\xb9\xb8\xba\xb7\xb7\xb8\xb9\xb9\xba\xba\xba\xbc\ +\xb9\xb8\xba\xbd\xbc\xbd\xbc\xbb\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\ +\xbb\xbc\xbe\xbd\xbf\xbd\xbc\xbe\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\ +\xbe\xbf\xbe\xc1\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\xc4\xc2\xc4\ +\xc4\xc1\xc2\xc2\xc1\xc1\xbf\xbd\xbe\xbd\xbc\xbc\xc1\xc1\xc1\xc3\ +\xc3\xc3\x00\x00\x00\xe4\xdf\xdd\xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\ +\xdb\xe3\xdd\xdc\xe2\xdc\xdb\xe2\xdd\xdc\xe0\xdb\xd9\xde\xd9\xd8\ +\xdc\xd7\xd6\xd7\xd2\xd0\xd2\xcb\xc8\xc7\xc1\xbe\xba\xb3\xb0\xa0\ +\x9b\x99\x7d\x7e\x7e\x5b\x60\x65\x41\x49\x50\x43\x49\x51\x5b\x5d\ +\x63\x79\x76\x78\x8e\x89\x89\x99\x94\x95\xa2\x9d\x9e\xa3\x9f\xa1\ +\xa5\xa2\xa2\xa3\xa1\xa3\xa5\xa4\xa6\xa3\xa2\xa4\xa0\xa2\xa2\x9e\ +\xa1\xa1\x99\x9b\x9c\x93\x94\x97\x8b\x8e\x8f\x84\x88\x89\x7a\x7e\ +\x7f\x68\x6d\x6f\x4f\x55\x59\x4a\x4f\x54\x51\x53\x57\x62\x63\x67\ +\x67\x69\x6d\x72\x74\x78\x7b\x7f\x83\x7d\x83\x87\x81\x86\x8b\x7e\ +\x84\x89\x7c\x82\x87\x7b\x80\x85\x7c\x80\x85\x7d\x81\x86\x7d\x81\ +\x86\x7b\x80\x85\x7b\x80\x86\x77\x7e\x82\x60\x6d\x73\x2c\x42\x48\ +\x23\x38\x3f\x40\x4f\x58\x4f\x5b\x63\x2b\x36\x3f\x0a\x17\x20\x2a\ +\x34\x3c\x5d\x62\x6a\x71\x76\x7d\x72\x78\x7f\x70\x76\x7d\x75\x7b\ +\x80\x72\x79\x80\x6d\x74\x7b\x6c\x72\x77\x5c\x63\x68\x33\x3c\x43\ +\x19\x21\x26\x18\x1e\x23\x2b\x30\x35\x5c\x60\x65\x7d\x81\x86\x8a\ +\x8f\x94\x89\x8e\x92\x88\x8e\x93\x8a\x90\x95\x8c\x92\x96\x8a\x8f\ +\x93\x8e\x93\x98\x8c\x91\x96\x8d\x91\x96\x90\x94\x99\x92\x96\x9b\ +\x94\x98\x9d\x95\x99\x9e\x95\x99\x9e\x96\x9a\x9f\x95\x9a\x9e\x8f\ +\x94\x98\x83\x88\x8d\x82\x86\x8b\x93\x97\x9a\x91\x95\x9a\x86\x8a\ +\x8d\x84\x87\x8b\x97\x9a\x9d\x9c\x9f\xa3\x8b\x8e\x91\x81\x84\x85\ +\x91\x93\x94\x9c\x9e\x9f\x91\x95\x96\x89\x8c\x8d\x91\x93\x94\x9e\ +\x9f\xa0\x9a\x9b\x9d\x8d\x8f\x8f\x8a\x8d\x8d\x9b\x9b\x9d\xa6\xa5\ +\xa7\xa7\xa6\xa8\xab\xaa\xac\xa9\xa8\xaa\xab\xaa\xac\xae\xad\xaf\ +\xaf\xae\xaf\xb1\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\xb0\xb1\ +\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb6\xb5\ +\xb7\xb6\xb5\xb7\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ +\xb9\xb8\xba\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xba\ +\xb9\xba\xbd\xbd\xbd\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\ +\xbd\xbd\xbc\xbe\xc0\xbf\xc1\xbe\xbd\xbf\xc0\xbf\xc1\xc0\xbf\xc1\ +\xc0\xbf\xc1\xc3\xc2\xc4\xc4\xc2\xc4\xc1\xbe\xc0\xc1\xbe\xc0\xc3\ +\xc2\xc4\xc2\xc2\xc3\xbc\xbb\xbd\xbf\xbf\xbf\xc2\xc2\xc2\x00\x00\ +\x00\xe4\xdf\xdd\xe3\xde\xdd\xe2\xdd\xdc\xe2\xdd\xdb\xe3\xdc\xdc\ +\xe2\xdd\xdc\xe0\xdb\xda\xdf\xda\xd9\xdd\xd6\xd5\xdb\xd3\xd3\xd6\ +\xce\xcd\xce\xc7\xc5\xc3\xbd\xba\xb0\xa9\xa6\x95\x92\x8e\x72\x73\ +\x74\x53\x58\x5f\x42\x48\x51\x49\x4d\x54\x67\x66\x6b\x82\x7d\x7e\ +\x93\x8e\x8d\x9b\x97\x97\xa3\xa0\xa1\xa5\xa2\xa4\xa7\xa6\xa7\xa4\ +\xa4\xa6\xa3\xa2\xa4\xa1\xa0\xa2\xa1\xa2\xa3\x9b\x9e\x9e\x99\x9b\ +\x9c\x92\x94\x96\x8c\x8f\x90\x86\x8a\x8b\x7b\x7f\x80\x67\x6d\x70\ +\x50\x59\x5d\x43\x48\x4d\x4f\x50\x55\x5b\x5b\x60\x63\x65\x69\x6d\ +\x6f\x73\x7b\x7f\x83\x80\x86\x8a\x7d\x82\x86\x7b\x7f\x84\x7b\x80\ +\x85\x7c\x82\x86\x7e\x82\x87\x7d\x82\x87\x7e\x83\x88\x7c\x81\x86\ +\x7a\x80\x85\x77\x7c\x81\x6a\x73\x79\x48\x5a\x61\x39\x4c\x55\x55\ +\x61\x6b\x63\x6e\x76\x40\x4f\x58\x1a\x2c\x37\x34\x40\x4b\x60\x66\ +\x6f\x6f\x75\x7c\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x74\x7a\x80\ +\x70\x78\x7e\x65\x6c\x73\x51\x59\x5f\x29\x33\x39\x11\x19\x1c\x1c\ +\x23\x28\x2c\x33\x38\x55\x5a\x60\x77\x7c\x80\x88\x8c\x91\x89\x8e\ +\x93\x88\x8d\x91\x8a\x8e\x93\x8b\x8f\x94\x8c\x90\x95\x8c\x90\x95\ +\x8c\x90\x95\x8e\x92\x97\x91\x94\x9a\x90\x94\x99\x90\x94\x99\x94\ +\x98\x9d\x95\x98\x9d\x96\x99\x9e\x96\x9b\x9e\x97\x9b\x9f\x90\x95\ +\x9a\x84\x89\x8c\x87\x8b\x8e\x97\x9b\x9f\x95\x9a\x9d\x88\x8d\x90\ +\x88\x8b\x8f\x96\x98\x9d\x9a\x9d\xa1\x8d\x91\x92\x86\x89\x8a\x90\ +\x92\x93\x9b\x9d\x9e\x94\x97\x97\x85\x88\x89\x8e\x90\x91\xa2\xa2\ +\xa3\xa0\xa2\xa2\x91\x93\x94\x8b\x8d\x8e\x98\x98\x9a\xa9\xa8\xaa\ +\xaa\xa9\xab\xac\xab\xad\xaf\xae\xb0\xad\xad\xae\xac\xac\xad\xad\ +\xad\xae\xb0\xaf\xb1\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xb0\xb2\xb1\xb0\ +\xb2\xb4\xb3\xb5\xb6\xb5\xb7\xb4\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb7\ +\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb8\xb7\xb8\xb8\ +\xb7\xb7\xba\xba\xbb\xb8\xb7\xb8\xb8\xb8\xb8\xba\xb9\xbb\xbc\xbb\ +\xbd\xbd\xbc\xbe\xbb\xba\xbc\xbb\xba\xbc\xbd\xbc\xbe\xbd\xbc\xbe\ +\xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc0\xc2\xbf\xbf\xc1\xc1\xbf\xc1\xc0\ +\xbf\xc1\xc0\xbe\xc0\xbf\xbe\xc0\xc4\xc3\xc5\xc3\xc2\xc2\xc0\xbf\ +\xc1\xc0\xbf\xc1\xc0\xbf\xc1\xbe\xbd\xbf\x00\x00\x00\xe2\xdd\xdb\ +\xe3\xde\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe2\xdd\xdc\xe2\xdd\xdc\xe0\ +\xda\xd9\xdf\xda\xd8\xdc\xd6\xd6\xd8\xd2\xd1\xd2\xcc\xcb\xcc\xc5\ +\xc4\xbe\xb8\xb5\xa7\xa1\x9d\x88\x85\x83\x67\x6a\x6c\x4a\x50\x58\ +\x42\x48\x51\x54\x55\x5c\x72\x6f\x72\x89\x84\x84\x96\x92\x91\xa0\ +\x9b\x9c\xa3\x9f\x9f\xa5\xa3\xa4\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\ +\xa4\xa2\xa2\xa3\x9d\x9f\xa0\x98\x9a\x9b\x96\x98\x99\x91\x93\x95\ +\x8a\x8d\x8f\x84\x88\x89\x7a\x7e\x7f\x64\x6b\x6e\x49\x53\x57\x31\ +\x37\x3c\x4d\x4e\x53\x57\x58\x5d\x62\x63\x68\x6a\x6b\x6f\x79\x7c\ +\x80\x7e\x84\x86\x7e\x83\x86\x7c\x81\x85\x7c\x80\x84\x7b\x80\x84\ +\x7b\x7f\x84\x7c\x80\x85\x7d\x80\x85\x7c\x82\x87\x7a\x80\x85\x7b\ +\x81\x86\x6d\x77\x7b\x62\x6c\x74\x5e\x69\x72\x67\x70\x78\x6e\x76\ +\x7e\x59\x65\x6e\x41\x53\x5f\x4d\x5b\x66\x66\x6e\x76\x71\x77\x7d\ +\x6f\x75\x7c\x71\x77\x7e\x70\x76\x7d\x71\x77\x7e\x73\x7b\x80\x64\ +\x6c\x73\x3b\x45\x4c\x1a\x22\x27\x15\x1d\x21\x23\x2b\x2f\x46\x4d\ +\x53\x6f\x73\x79\x7e\x82\x87\x86\x8a\x8f\x89\x8d\x92\x89\x8d\x92\ +\x8b\x8f\x94\x8b\x8f\x93\x8c\x90\x95\x8c\x90\x95\x8e\x92\x97\x8e\ +\x92\x97\x90\x94\x98\x8f\x93\x98\x91\x95\x9a\x94\x97\x9b\x96\x9a\ +\x9f\x97\x9b\x9f\x99\x9c\xa0\x98\x9c\xa1\x9b\x9e\xa4\x93\x98\x9c\ +\x85\x8a\x8e\x86\x8a\x8e\x96\x99\x9d\x99\x9c\xa0\x8d\x90\x94\x85\ +\x88\x8c\x93\x96\x98\x9d\xa0\xa2\x94\x98\x99\x87\x8b\x8c\x8e\x90\ +\x91\x9c\x9f\x9f\x99\x9c\x9c\x8b\x8d\x8d\x8f\x90\x91\x9e\x9e\x9e\ +\xa5\xa5\xa5\x96\x97\x99\x89\x8c\x8d\x94\x95\x96\xa8\xa8\xa9\xaf\ +\xaf\xaf\xad\xad\xae\xae\xae\xaf\xae\xae\xaf\xad\xad\xad\xaf\xaf\ +\xb0\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb2\xb1\xb3\ +\xb5\xb5\xb6\xb6\xb5\xb7\xb7\xb7\xb8\xb6\xb6\xb7\xb2\xb2\xb3\xb0\ +\xaf\xb2\xb4\xb3\xb5\xb7\xb6\xb7\xb7\xb6\xb8\xb5\xb5\xb7\xb8\xb8\ +\xb8\xb8\xb7\xb9\xbb\xbb\xbb\xbd\xbc\xbe\xbd\xbc\xbe\xbd\xbd\xbd\ +\xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\xbc\xbc\xbb\xbd\xbf\ +\xbe\xc0\xc0\xbf\xc1\xbf\xbe\xc0\xc1\xbf\xc1\xc1\xbf\xc1\xc1\xbe\ +\xc0\xc5\xc2\xc4\xc4\xc2\xc4\xc2\xc1\xc2\xc2\xc1\xc1\xc1\xc0\xc2\ +\xc1\xc0\xc2\xc2\xc1\xc2\x00\x00\x00\xe4\xdf\xdb\xe4\xdf\xdc\xe4\ +\xdf\xdd\xe2\xdd\xdb\xe1\xdc\xda\xe0\xdb\xda\xe0\xda\xda\xde\xd9\ +\xd8\xdb\xd5\xd5\xd7\xcf\xcf\xd1\xca\xca\xc6\xbf\xbe\xb7\xb0\xac\ +\x9e\x98\x95\x7a\x79\x77\x5a\x5d\x61\x45\x4c\x54\x44\x4b\x53\x5e\ +\x5e\x63\x7b\x76\x79\x8e\x89\x88\x9b\x97\x96\xa0\x9d\x9d\xa3\xa1\ +\xa1\xa4\xa2\xa2\xa3\xa2\xa3\xa5\xa4\xa6\xa2\xa1\xa3\x9f\xa0\xa2\ +\x9a\x9c\x9d\x99\x9b\x9c\x97\x99\x9a\x92\x95\x97\x8b\x8f\x91\x86\ +\x8a\x8b\x7a\x7e\x80\x65\x6c\x6f\x43\x4d\x52\x2c\x32\x37\x3b\x3f\ +\x43\x50\x51\x57\x5e\x60\x65\x68\x6a\x6e\x73\x76\x7a\x7c\x81\x84\ +\x7b\x80\x83\x7a\x80\x84\x79\x7e\x83\x7a\x7f\x83\x7b\x7f\x83\x7c\ +\x80\x85\x7c\x80\x85\x7b\x80\x85\x7a\x81\x86\x7c\x82\x87\x78\x7e\ +\x83\x72\x7a\x80\x72\x79\x80\x74\x7b\x82\x78\x80\x87\x70\x77\x7e\ +\x61\x6d\x75\x62\x6d\x74\x6b\x72\x79\x70\x77\x7d\x6f\x76\x7b\x6f\ +\x75\x7a\x73\x79\x7f\x6f\x76\x7d\x73\x79\x80\x6a\x71\x79\x43\x4e\ +\x56\x19\x21\x27\x16\x1f\x24\x22\x29\x2d\x53\x5a\x5e\x76\x7a\x7e\ +\x87\x8b\x8f\x88\x8c\x91\x88\x8c\x91\x8a\x8e\x93\x8c\x90\x95\x8b\ +\x90\x94\x8a\x8e\x93\x8b\x8f\x94\x8f\x93\x98\x92\x96\x9b\x90\x94\ +\x9a\x8f\x92\x97\x92\x96\x99\x92\x96\x9a\x96\x99\x9e\x9a\x9c\xa1\ +\x9b\x9d\xa1\x98\x9b\xa0\x9a\x9d\xa2\x9e\xa1\xa5\x97\x9b\xa0\x89\ +\x8e\x93\x85\x8a\x8f\x92\x95\x9a\x98\x9b\x9f\x8b\x90\x92\x83\x87\ +\x89\x92\x95\x96\xa0\xa3\xa4\x96\x99\x9a\x8b\x8e\x8f\x90\x93\x93\ +\xa0\xa1\xa1\x9e\xa0\xa0\x8e\x90\x91\x8a\x8c\x8d\x9c\x9d\x9d\xa3\ +\xa3\xa3\x9d\x9f\x9f\x8c\x8f\x90\x91\x93\x94\xa6\xa6\xa6\xac\xab\ +\xac\xad\xad\xad\xae\xae\xae\xae\xae\xae\xae\xae\xaf\xb1\xb0\xb2\ +\xb2\xb0\xb2\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xaf\xb0\xb3\xb3\xb3\xb3\ +\xb3\xb3\xb4\xb3\xb5\xb6\xb6\xb8\xb4\xb4\xb6\xb4\xb4\xb6\xb5\xb4\ +\xb6\xb5\xb4\xb6\xb5\xb4\xb6\xb6\xb5\xb7\xba\xb9\xba\xbc\xbb\xbc\ +\xbc\xbc\xbc\xbc\xbc\xbd\xbe\xbd\xbf\xbc\xbc\xbd\xbb\xbb\xbc\xba\ +\xb9\xbb\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xbf\xbe\ +\xc0\xbf\xbe\xc0\xc1\xc1\xc2\xc0\xbe\xc0\xc0\xbd\xbf\xc4\xc1\xc3\ +\xc2\xc0\xc2\xc1\xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xc2\xc1\xc3\xc1\ +\xbf\xc1\x00\x00\x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe2\xdd\ +\xda\xe1\xdc\xda\xe0\xdb\xda\xdf\xda\xd9\xdc\xd7\xd6\xd8\xd2\xd2\ +\xd5\xcd\xcd\xcd\xc5\xc4\xc1\xbb\xb8\xb1\xab\xa6\x91\x8d\x88\x6e\ +\x6e\x6f\x53\x57\x5c\x41\x48\x50\x4f\x53\x5a\x6a\x69\x6c\x82\x7e\ +\x7f\x93\x8f\x8e\x9d\x99\x99\xa2\x9f\x9e\xa2\xa0\xa0\xa4\xa2\xa2\ +\xa4\xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa2\xa0\x9f\xa1\x9c\x9d\x9e\x98\ +\x9a\x9c\x96\x98\x9a\x92\x95\x98\x8c\x90\x93\x88\x8b\x8f\x7b\x7e\ +\x82\x67\x6d\x71\x40\x49\x50\x28\x2f\x33\x28\x2e\x32\x35\x38\x3e\ +\x53\x55\x5a\x64\x66\x6b\x6f\x72\x76\x7a\x7e\x82\x7b\x80\x83\x7a\ +\x80\x84\x79\x7f\x83\x7a\x7f\x83\x7a\x7f\x84\x7a\x7f\x84\x7a\x7f\ +\x84\x7b\x80\x85\x7b\x82\x87\x7d\x83\x89\x7c\x82\x87\x78\x80\x85\ +\x78\x80\x87\x79\x80\x86\x78\x7f\x87\x76\x7d\x84\x74\x7b\x82\x6e\ +\x75\x7c\x6d\x74\x7a\x71\x77\x7d\x71\x77\x7e\x71\x76\x7d\x73\x79\ +\x80\x74\x7a\x80\x6b\x72\x78\x5b\x62\x69\x42\x4c\x55\x1f\x28\x31\ +\x21\x2c\x33\x36\x40\x44\x5b\x62\x64\x74\x78\x7c\x83\x87\x8c\x89\ +\x8d\x92\x89\x8d\x92\x8b\x8f\x93\x8b\x8f\x93\x8a\x8f\x93\x8b\x90\ +\x94\x8a\x8e\x93\x8f\x93\x97\x91\x95\x9a\x92\x95\x9a\x91\x94\x99\ +\x92\x95\x99\x95\x98\x9c\x97\x9a\x9e\x9a\x9d\xa1\x9b\x9e\xa2\x9a\ +\x9d\xa1\x9e\xa1\xa5\x9f\xa2\xa6\x9f\xa3\xa7\x99\x9d\xa1\x8c\x91\ +\x95\x85\x88\x8d\x90\x93\x97\x97\x9b\x9e\x91\x94\x97\x87\x8a\x8e\ +\x90\x92\x94\x9d\x9f\xa0\x9c\x9f\xa0\x8c\x8f\x90\x8d\x8f\x8f\x9e\ +\x9e\x9e\xa1\xa2\xa2\x93\x95\x95\x88\x8a\x8b\x95\x97\x98\xa4\xa5\ +\xa5\xa2\xa3\xa4\x90\x91\x92\x8e\x8e\x90\x9d\x9c\x9d\xab\xab\xab\ +\xb0\xb0\xb0\xaf\xaf\xaf\xad\xad\xad\xae\xae\xae\xb1\xb0\xb1\xb1\ +\xb0\xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xaf\xb0\xb1\xb0\xb2\xb4\xb3\ +\xb5\xb6\xb6\xb7\xb6\xb5\xb7\xb6\xb5\xb8\xb7\xb6\xb8\xb6\xb5\xb7\ +\xb8\xb7\xb9\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbb\xba\xba\xba\xba\ +\xba\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xbe\xbd\ +\xbf\xbc\xbb\xbd\xba\xb9\xba\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\ +\xc3\xc3\xc4\xc2\xc1\xc2\xc1\xbf\xc1\xc2\xc1\xc3\xc2\xc1\xc3\xc0\ +\xbf\xc0\xc2\xc1\xc3\xc3\xc2\xc4\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ +\x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe1\xdc\xdb\xe0\xdc\xda\ +\xe0\xdb\xda\xdd\xd8\xd7\xdb\xd5\xd5\xd7\xcf\xcf\xd2\xcb\xc9\xc8\ +\xc0\xbd\xbb\xb5\xaf\xa6\xa0\x9b\x82\x81\x7e\x64\x69\x6b\x49\x51\ +\x56\x42\x47\x4e\x58\x59\x5e\x75\x73\x74\x8c\x88\x87\x97\x94\x93\ +\x9e\x9a\x9a\xa3\x9f\x9f\xa3\xa0\xa0\xa5\xa3\xa3\xa4\xa3\xa5\xa2\ +\xa1\xa3\x9f\x9e\xa0\x9f\x9f\xa1\x9a\x9b\x9d\x97\x98\x9c\x94\x95\ +\x99\x91\x93\x97\x8b\x8e\x92\x88\x8b\x8f\x7d\x80\x85\x65\x6a\x6f\ +\x4d\x56\x5d\x2d\x37\x3d\x26\x30\x36\x20\x27\x2e\x41\x46\x4c\x5f\ +\x62\x67\x6a\x6d\x72\x76\x7a\x80\x79\x7d\x82\x7c\x80\x85\x7a\x7f\ +\x85\x7a\x7f\x84\x7a\x80\x85\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\ +\x7c\x82\x87\x7c\x83\x88\x7a\x80\x85\x7a\x80\x86\x78\x80\x85\x78\ +\x80\x87\x79\x81\x87\x79\x80\x87\x7a\x80\x87\x76\x7c\x83\x71\x77\ +\x7d\x6f\x75\x7b\x71\x76\x7c\x72\x78\x7e\x6f\x75\x7c\x73\x79\x7e\ +\x66\x6d\x73\x46\x51\x5a\x26\x32\x3c\x1a\x25\x2d\x23\x2d\x35\x4e\ +\x56\x5d\x6f\x75\x77\x76\x7b\x7e\x7b\x7f\x83\x86\x89\x8e\x8b\x8f\ +\x93\x8b\x90\x94\x8b\x90\x94\x8b\x90\x94\x8a\x90\x93\x8c\x90\x93\ +\x8f\x93\x96\x91\x95\x99\x91\x94\x98\x90\x93\x97\x94\x97\x9b\x98\ +\x9b\x9f\x98\x9b\x9f\x99\x9c\xa0\x9a\x9d\xa2\x9c\x9f\xa3\x9d\xa0\ +\xa4\x9d\xa0\xa4\x9f\xa2\xa6\x9f\xa3\xa6\x9a\x9f\xa2\x8b\x90\x93\ +\x86\x8a\x8e\x8f\x91\x95\x9a\x9d\x9e\x93\x95\x9a\x86\x89\x8d\x8d\ +\x8f\x90\x9d\x9f\x9f\x9d\x9f\xa0\x8f\x92\x93\x8d\x8f\x90\x98\x98\ +\x97\xa0\xa0\xa0\x99\x9b\x9c\x8e\x91\x92\x90\x91\x92\xa2\xa2\xa3\ +\xa4\xa5\xa6\x97\x98\x99\x8d\x8e\x8e\x9a\x9b\x9b\xac\xab\xab\xb1\ +\xb0\xb0\xae\xae\xae\xb0\xb0\xb0\xb1\xb1\xb2\xb0\xaf\xb1\xae\xad\ +\xae\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\ +\xb6\xb5\xb8\xb8\xb7\xb9\xb7\xb8\xb9\xb8\xb8\xba\xb8\xb7\xb9\xb8\ +\xb7\xb9\xba\xb9\xba\xb9\xb9\xb9\xb5\xb5\xb5\xb9\xb9\xb9\xbc\xbc\ +\xbc\xbc\xbb\xbd\xbf\xbe\xbe\xbe\xbd\xbe\xba\xb9\xbb\xbc\xbc\xbd\ +\xbd\xbc\xbd\xbc\xbc\xbd\xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc1\xc2\xc0\ +\xbf\xc1\xc1\xc0\xc1\xc3\xc1\xc3\xc2\xbf\xc1\xc1\xbe\xc0\xc3\xc2\ +\xc4\xc2\xc1\xc3\xc1\xc0\xc2\xc1\xbf\xc1\x00\x00\x00\xe3\xdd\xdb\ +\xe3\xdc\xd9\xe2\xdd\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xdf\xda\xd9\xdc\ +\xd7\xd6\xd9\xd4\xd3\xd6\xd0\xcf\xce\xc7\xc4\xc4\xbc\xb6\xb6\xaf\ +\xa9\x9a\x96\x91\x77\x79\x78\x58\x5f\x63\x43\x4b\x51\x48\x4c\x53\ +\x63\x64\x67\x7e\x7b\x7c\x90\x8d\x8c\x9a\x98\x97\x9f\x9d\x9d\xa3\ +\xa0\xa0\xa2\xa0\xa0\xa5\xa3\xa5\xa3\xa1\xa3\xa2\xa1\xa3\xa1\xa0\ +\xa2\x9d\x9c\x9e\x98\x9a\x9c\x94\x96\x9a\x91\x93\x97\x90\x93\x97\ +\x8e\x91\x95\x88\x8b\x90\x7d\x80\x85\x61\x66\x6b\x4f\x58\x5f\x3b\ +\x46\x4d\x37\x43\x4c\x3b\x46\x50\x40\x4a\x52\x5c\x61\x67\x6b\x6e\ +\x73\x74\x78\x7d\x76\x7a\x7f\x7c\x80\x85\x7b\x7f\x84\x7b\x80\x85\ +\x7a\x80\x85\x79\x7f\x84\x79\x7f\x84\x79\x7f\x84\x7b\x81\x86\x7a\ +\x82\x86\x7a\x82\x86\x7b\x82\x88\x78\x80\x85\x79\x81\x87\x79\x81\ +\x86\x79\x81\x87\x7b\x82\x89\x7b\x82\x88\x76\x7e\x83\x71\x78\x7d\ +\x70\x75\x7a\x71\x77\x7c\x6d\x73\x79\x6d\x73\x79\x67\x6d\x73\x4b\ +\x57\x60\x1a\x28\x33\x19\x25\x30\x27\x33\x3e\x56\x5e\x66\x72\x77\ +\x7c\x7d\x81\x84\x79\x7d\x81\x7b\x80\x84\x86\x8a\x8e\x8d\x91\x95\ +\x8b\x90\x93\x8a\x8f\x93\x8b\x8f\x93\x8d\x91\x96\x8e\x92\x96\x8f\ +\x93\x97\x91\x94\x98\x91\x94\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9a\ +\x9f\x97\x9a\x9f\x98\x9b\xa0\x9c\x9f\xa4\x9d\xa0\xa4\x9c\x9f\xa3\ +\x9b\x9e\xa2\x9c\xa0\xa4\x9d\xa0\xa4\x99\x9e\xa1\x91\x95\x99\x87\ +\x8b\x8e\x8c\x8e\x91\x99\x9b\x9d\x96\x99\x9c\x8a\x8d\x8e\x8d\x8f\ +\x90\x9b\x9c\x9d\xa1\xa2\xa2\x94\x96\x96\x8b\x8d\x8e\x95\x96\x96\ +\xa3\xa4\xa5\xa1\xa3\xa4\x91\x94\x95\x8f\x91\x92\x9f\x9f\xa0\xab\ +\xab\xab\x9f\xa0\xa1\x93\x93\x94\x98\x97\x98\xa6\xa5\xa6\xaf\xae\ +\xae\xb0\xb0\xb0\xb0\xb0\xaf\xb0\xb0\xaf\xad\xad\xad\xb0\xb0\xb0\ +\xb2\xb2\xb2\xb0\xaf\xb0\xb1\xb0\xb3\xb2\xb1\xb3\xb4\xb3\xb5\xb7\ +\xb5\xb7\xb8\xb8\xba\xba\xba\xbc\xb8\xb8\xb9\xb8\xb7\xb9\xba\xb9\ +\xba\xb7\xb6\xb7\xb7\xb7\xb7\xba\xba\xba\xba\xba\xba\xba\xba\xbb\ +\xbd\xbd\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbd\ +\xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbd\xbc\xbe\xbe\xbd\xbf\xc2\xc1\ +\xc3\xc1\xc0\xc2\xc0\xbe\xc0\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc2\xc4\ +\xc3\xc1\xc3\xc0\xbe\xc0\x00\x00\x00\xe3\xdb\xdb\xe3\xdd\xda\xe1\ +\xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xde\xd9\xd7\xdb\xd6\xd5\xd8\xd2\ +\xd1\xd3\xcd\xcb\xcb\xc4\xbf\xc0\xb8\xb2\xae\xa8\xa2\x8d\x8a\x88\ +\x6e\x70\x71\x50\x56\x5c\x41\x48\x4f\x50\x54\x59\x6d\x6c\x6f\x86\ +\x81\x82\x94\x91\x91\x9c\x9a\x9a\xa1\x9f\x9f\xa4\xa3\xa2\xa3\xa0\ +\xa1\xa4\xa3\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9f\x9e\xa0\x9b\x9a\x9c\ +\x98\x99\x9b\x94\x96\x99\x92\x94\x98\x8f\x92\x96\x8e\x91\x95\x87\ +\x8b\x8f\x79\x7d\x81\x60\x66\x6b\x4d\x56\x5d\x4b\x53\x5c\x4f\x58\ +\x5f\x5c\x64\x6a\x57\x60\x66\x65\x69\x6e\x6b\x6f\x74\x73\x77\x7c\ +\x75\x79\x7e\x79\x7d\x82\x7c\x80\x85\x7a\x7e\x83\x79\x7e\x83\x78\ +\x7e\x83\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x7a\x7f\x84\x7c\x84\ +\x88\x7a\x83\x89\x79\x82\x86\x78\x80\x86\x78\x7f\x85\x79\x80\x86\ +\x7c\x82\x8a\x7d\x84\x8a\x7a\x82\x88\x75\x7c\x81\x6f\x75\x7a\x6e\ +\x74\x79\x6f\x75\x7a\x6e\x74\x79\x66\x6c\x73\x59\x63\x6c\x30\x3e\ +\x49\x28\x36\x42\x47\x51\x5c\x64\x6b\x71\x73\x77\x7c\x7d\x81\x85\ +\x7d\x82\x85\x79\x7e\x81\x7d\x82\x85\x88\x8c\x8f\x8c\x90\x94\x8c\ +\x90\x94\x8d\x91\x95\x8f\x93\x97\x92\x95\x9a\x8f\x93\x98\x91\x94\ +\x99\x94\x97\x9c\x95\x98\x9d\x96\x9a\x9e\x99\x9c\xa0\x97\x9a\x9f\ +\x98\x9b\xa0\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\x9b\x9e\xa2\x9c\ +\x9f\xa3\x9e\xa1\xa5\xa0\xa4\xa7\x9d\xa2\xa5\x95\x9a\x9d\x89\x8d\ +\x90\x8c\x8e\x92\x98\x9a\x9d\x9a\x9c\x9d\x90\x92\x94\x8c\x8e\x90\ +\x99\x9a\x9a\xa4\xa3\xa5\x9c\x9e\x9f\x8e\x90\x91\x94\x95\x96\xa2\ +\xa4\xa5\xa3\xa6\xa6\x94\x97\x98\x8e\x8f\x90\x9c\x9b\x9c\xa9\xa8\ +\xaa\xa6\xa6\xa8\x98\x98\x9a\x94\x93\x95\xa1\xa0\xa1\xaf\xad\xad\ +\xb1\xb0\xb0\xaf\xaf\xaf\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\ +\xb0\xb0\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb4\xb3\xb5\xb7\xb6\ +\xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xb9\xbc\xb8\xb7\xb9\ +\xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xbc\xbb\xbc\xbd\xbd\xbe\xbd\ +\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbf\ +\xc1\xbf\xbe\xc0\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\ +\xc0\xbf\xc1\xc2\xc1\xc3\xc5\xc4\xc6\xc6\xc4\xc6\xc3\xc1\xc3\xc0\ +\xbe\xc0\x00\x00\x00\xe2\xdb\xda\xe2\xdc\xda\xe1\xdb\xd8\xe0\xdb\ +\xd8\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\xcf\xce\xd0\xc9\xc6\ +\xc6\xbf\xba\xba\xb3\xad\xa2\x9d\x99\x7e\x7e\x7e\x62\x64\x67\x48\ +\x4f\x55\x43\x4a\x50\x57\x5a\x5e\x77\x75\x76\x8a\x86\x85\x96\x92\ +\x91\x9e\x9a\x9a\xa2\x9f\xa0\xa5\xa3\xa4\xa4\xa2\xa3\xa3\xa2\xa4\ +\xa0\xa0\xa1\x9e\x9d\x9f\x9d\x9b\x9d\x99\x99\x9b\x98\x99\x9b\x93\ +\x94\x99\x92\x94\x98\x90\x93\x97\x8e\x91\x96\x86\x89\x8d\x75\x7a\ +\x7e\x5d\x64\x68\x46\x50\x55\x50\x58\x5e\x5e\x64\x68\x6d\x72\x75\ +\x68\x6d\x71\x6f\x71\x76\x70\x74\x78\x6f\x73\x78\x73\x77\x7b\x76\ +\x7a\x7f\x79\x7e\x82\x78\x7c\x81\x78\x7e\x83\x78\x7e\x83\x78\x7e\ +\x83\x79\x7f\x84\x79\x7f\x84\x78\x7e\x83\x7b\x83\x88\x79\x83\x87\ +\x7a\x83\x88\x78\x81\x85\x78\x80\x86\x7a\x81\x87\x7b\x82\x89\x7d\ +\x83\x89\x7c\x83\x89\x79\x80\x86\x71\x77\x7c\x6f\x75\x79\x70\x76\ +\x7b\x73\x77\x7c\x6c\x72\x78\x5d\x66\x6d\x4b\x55\x5f\x32\x3d\x4a\ +\x50\x58\x61\x71\x76\x79\x7a\x7f\x82\x79\x7e\x81\x7e\x82\x85\x7f\ +\x83\x87\x7b\x7f\x83\x7d\x82\x85\x87\x8b\x8f\x8d\x90\x94\x8f\x92\ +\x96\x91\x95\x99\x94\x98\x9d\x93\x96\x9b\x91\x94\x99\x94\x96\x9b\ +\x95\x98\x9d\x97\x9a\x9f\x98\x9b\x9f\x96\x9a\x9e\x99\x9c\xa0\x9e\ +\xa0\xa5\x9d\xa0\xa5\x9d\xa0\xa4\x9e\xa1\xa5\x9b\x9e\xa2\x9d\xa0\ +\xa4\xa0\xa3\xa7\xa0\xa4\xa8\xa0\xa4\xa5\x98\x9c\x9e\x8d\x90\x94\ +\x88\x8b\x8e\x94\x96\x97\x9f\xa1\xa2\x96\x98\x99\x8f\x91\x92\x96\ +\x97\x98\xa5\xa6\xa7\x9f\xa1\xa2\x92\x95\x96\x90\x92\x93\x9a\x9c\ +\x9c\xa2\xa4\xa4\x9c\x9e\x9f\x8f\x90\x91\x94\x93\x94\xa5\xa5\xa7\ +\xaa\xaa\xac\x9c\x9b\x9d\x93\x91\x93\x9b\x99\x9a\xaa\xa9\xa9\xb2\ +\xb0\xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb0\xb0\ +\xb1\xb2\xb1\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb2\xb4\ +\xb4\xb3\xb5\xb9\xb9\xba\xba\xb9\xbb\xb9\xb9\xb9\xb8\xb8\xb8\xb9\ +\xb9\xb9\xb9\xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbf\xbf\xbe\xc0\xbe\xbd\ +\xbf\xbc\xbb\xbd\xbd\xbc\xbd\xbd\xbd\xbd\xbe\xbd\xbf\xc1\xc0\xc2\ +\xc1\xc0\xc1\xbf\xbe\xc0\xc0\xbf\xc1\xc3\xc2\xc4\xc2\xc1\xc3\xc0\ +\xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xbf\xbd\xbf\xbf\xbe\xc0\x00\x00\ +\x00\xe1\xdc\xdb\xe1\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xde\xd9\xd8\ +\xdb\xd6\xd5\xd8\xd2\xd2\xd6\xce\xcd\xcd\xc6\xc3\xc3\xbc\xb9\xb4\ +\xae\xac\x96\x91\x90\x73\x75\x76\x56\x5b\x5f\x42\x49\x4e\x4a\x50\ +\x56\x63\x65\x68\x80\x7d\x7e\x90\x8c\x8d\x9a\x97\x97\x9f\x9c\x9d\ +\xa2\x9f\xa0\xa4\xa1\xa3\xa3\xa2\xa3\xa1\xa0\xa2\x9f\x9e\xa0\x9d\ +\x9d\x9f\x9c\x9c\x9e\x98\x99\x9a\x96\x97\x98\x93\x94\x98\x91\x93\ +\x97\x8d\x90\x94\x8d\x90\x94\x84\x88\x8c\x73\x78\x7c\x5c\x63\x68\ +\x48\x51\x55\x53\x5a\x5f\x63\x68\x6c\x71\x75\x79\x76\x79\x7d\x6f\ +\x73\x78\x72\x76\x7b\x6e\x71\x76\x72\x75\x79\x73\x77\x7c\x74\x78\ +\x7d\x79\x7d\x82\x7a\x7e\x82\x78\x7d\x82\x76\x7c\x81\x77\x7d\x82\ +\x77\x7d\x81\x77\x7d\x82\x7b\x83\x88\x7a\x81\x86\x7b\x82\x88\x79\ +\x80\x86\x7a\x81\x88\x7c\x82\x89\x7b\x82\x88\x7c\x82\x88\x7d\x82\ +\x89\x7b\x81\x87\x79\x7f\x84\x73\x7a\x7e\x70\x76\x7c\x72\x76\x7b\ +\x74\x79\x7e\x68\x6f\x75\x57\x61\x68\x49\x52\x5b\x52\x5a\x62\x70\ +\x74\x78\x7f\x84\x87\x7c\x80\x84\x7a\x7f\x82\x7e\x82\x86\x7f\x83\ +\x87\x7b\x81\x83\x80\x84\x87\x8b\x8e\x92\x90\x93\x98\x91\x94\x99\ +\x93\x96\x9b\x95\x98\x9d\x93\x96\x9b\x91\x94\x99\x95\x99\x9e\x97\ +\x9a\x9f\x97\x9b\xa0\x96\x9b\x9f\x99\x9d\xa1\x9d\xa0\xa5\x9d\xa0\ +\xa5\x9d\xa0\xa4\x9d\xa0\xa4\x9c\x9f\xa3\x9d\xa0\xa4\x9e\xa0\xa4\ +\xa2\xa5\xa9\xa3\xa6\xa9\xa1\xa4\xa7\x98\x9c\xa0\x8c\x90\x93\x88\ +\x8b\x8d\x96\x98\x9a\xa1\xa2\xa4\x99\x9c\x9e\x8c\x8e\x91\x92\x93\ +\x95\xa3\xa3\xa4\xa5\xa7\xa8\x96\x99\x9a\x8b\x8d\x8d\x95\x96\x96\ +\xa5\xa5\xa5\xa1\xa3\xa3\x92\x92\x93\x93\x91\x94\xa1\xa0\xa2\xaa\ +\xa9\xaa\xa2\xa1\xa2\x93\x93\x94\x93\x93\x93\xa5\xa3\xa3\xb2\xb0\ +\xb0\xb2\xb2\xb2\xb1\xb0\xb0\xb3\xb3\xb4\xb3\xb2\xb3\xb3\xb2\xb4\ +\xb3\xb2\xb3\xb4\xb3\xb6\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb6\ +\xb5\xb6\xb8\xb8\xb9\xba\xb9\xba\xbb\xbb\xbc\xbb\xbb\xbb\xba\xba\ +\xba\xba\xba\xba\xbd\xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbe\xbd\xbe\ +\xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbe\xbe\xbf\xc1\xc0\xc2\xc1\ +\xc0\xc2\xc0\xbf\xc1\xc1\xc0\xc1\xc1\xc0\xc2\xbf\xbe\xc0\xc0\xbf\ +\xc1\xbf\xbe\xc0\xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\ +\xe0\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\ +\xd0\xce\xd1\xcb\xc8\xcb\xc5\xc2\xc0\xb9\xb8\xaa\xa4\xa3\x8c\x8a\ +\x8a\x68\x6c\x6e\x4c\x52\x55\x43\x49\x50\x54\x58\x5d\x71\x70\x74\ +\x88\x83\x85\x95\x91\x92\x9d\x9a\x9c\xa2\x9f\xa1\xa3\xa0\xa2\xa4\ +\xa1\xa3\xa3\xa2\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9a\x99\x9b\x9b\x9a\ +\x9c\x97\x98\x99\x94\x96\x97\x93\x94\x97\x8e\x90\x93\x8c\x8f\x93\ +\x8a\x8d\x91\x81\x84\x88\x6e\x73\x78\x57\x5f\x63\x4d\x56\x5a\x58\ +\x60\x65\x66\x6c\x70\x71\x75\x79\x76\x79\x7d\x71\x76\x7a\x71\x75\ +\x79\x73\x76\x7a\x6e\x72\x76\x71\x74\x7a\x72\x76\x7b\x79\x7d\x81\ +\x79\x7e\x82\x77\x7d\x81\x77\x7d\x82\x77\x7e\x82\x75\x7b\x80\x7a\ +\x80\x85\x79\x7f\x84\x7b\x81\x86\x7c\x83\x89\x79\x80\x85\x7b\x81\ +\x86\x7c\x82\x87\x7b\x81\x87\x7d\x83\x89\x7d\x84\x8a\x7d\x84\x8b\ +\x7e\x84\x89\x7a\x81\x86\x74\x7b\x7f\x71\x76\x7b\x75\x79\x7e\x76\ +\x7a\x7f\x65\x6c\x72\x5b\x63\x69\x64\x6b\x70\x72\x77\x7b\x7b\x80\ +\x84\x7e\x83\x87\x7b\x80\x83\x79\x7e\x81\x7f\x82\x86\x80\x85\x88\ +\x7d\x83\x86\x80\x83\x88\x8b\x8e\x93\x92\x95\x99\x91\x94\x99\x94\ +\x97\x9c\x92\x96\x9c\x91\x95\x9b\x94\x98\x9d\x97\x9b\xa0\x98\x9c\ +\xa1\x99\x9d\xa1\x98\x9c\xa0\x9b\x9e\xa3\x9f\xa2\xa6\x9c\x9f\xa4\ +\x9b\x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\xa1\xa4\xa8\xa0\ +\xa3\xa7\xa1\xa5\xa8\x9f\xa3\xa7\x9c\x9f\xa3\x92\x96\x99\x8a\x8d\ +\x90\x94\x94\x97\xa4\xa4\xa6\x9f\xa0\xa2\x90\x92\x94\x91\x91\x93\ +\xa2\xa3\xa4\xa9\xab\xac\x9b\x9d\x9d\x8f\x91\x91\x93\x93\x94\xa6\ +\xa5\xa6\xaa\xaa\xaa\x9c\x9d\x9e\x91\x92\x94\x99\x98\x9a\xac\xa9\ +\xaa\xa9\xa8\xa8\x99\x9a\x9a\x95\x95\x95\xa4\xa3\xa3\xb2\xb2\xb2\ +\xb6\xb5\xb5\xb2\xb2\xb3\xb4\xb3\xb4\xb6\xb5\xb6\xb5\xb5\xb6\xb6\ +\xb5\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb5\xb4\ +\xb6\xbb\xba\xbb\xbc\xbb\xbc\xba\xba\xba\xbb\xbb\xbb\xba\xba\xba\ +\xba\xb9\xbb\xbe\xbd\xbf\xc1\xbf\xc1\xc0\xbf\xc1\xbd\xbc\xbe\xbc\ +\xbb\xbd\xbe\xbc\xbe\xc1\xbf\xc1\xc1\xc0\xc2\xc0\xbf\xc1\xc0\xbf\ +\xc1\xc1\xc0\xc2\xc0\xbf\xc2\xc2\xc0\xc2\xc1\xc0\xc2\xc0\xbf\xc1\ +\xc1\xc0\xc2\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\xe1\xdc\xdb\xe0\ +\xdb\xda\xde\xd9\xd8\xdc\xd6\xd5\xd9\xd3\xd0\xd5\xce\xcb\xce\xc7\ +\xc3\xc6\xbf\xbd\xba\xb4\xb4\xa0\x9a\x9b\x7f\x80\x80\x5d\x63\x63\ +\x48\x4f\x52\x49\x4e\x54\x5d\x5e\x64\x7a\x76\x7a\x8e\x89\x8b\x98\ +\x94\x96\x9d\x9b\x9c\xa1\x9f\xa0\xa5\xa2\xa4\xa3\xa0\xa2\xa4\xa2\ +\xa3\x9f\x9d\x9f\x9d\x9c\x9e\x9b\x9a\x9c\x98\x97\x99\x97\x98\x9a\ +\x91\x93\x97\x90\x93\x96\x8e\x90\x94\x8b\x8e\x92\x88\x8c\x8f\x80\ +\x83\x87\x6c\x71\x75\x55\x5d\x61\x4e\x57\x5c\x5d\x64\x69\x69\x6d\ +\x72\x75\x79\x7d\x70\x73\x78\x75\x78\x7d\x6e\x72\x77\x71\x74\x79\ +\x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x75\x79\x7e\x77\x7c\x81\x78\ +\x7d\x82\x76\x7b\x80\x76\x7c\x81\x78\x7e\x83\x7c\x82\x87\x79\x7f\ +\x84\x7a\x81\x86\x7c\x83\x88\x7a\x82\x87\x7b\x81\x86\x7b\x81\x86\ +\x7c\x82\x88\x7c\x82\x89\x7c\x83\x88\x7e\x85\x8a\x7e\x84\x8a\x7e\ +\x85\x8a\x79\x7f\x84\x71\x77\x7c\x74\x78\x7d\x73\x78\x7d\x69\x6f\ +\x74\x60\x68\x6d\x6e\x74\x79\x7c\x80\x85\x7b\x7f\x83\x7b\x7f\x84\ +\x7f\x84\x87\x7c\x81\x84\x7b\x7f\x83\x81\x86\x89\x83\x88\x8b\x7e\ +\x83\x86\x80\x83\x87\x8c\x8f\x93\x91\x94\x98\x94\x97\x9c\x94\x98\ +\x9d\x95\x99\x9f\x96\x9a\x9f\x96\x9a\x9f\x97\x9b\xa0\x99\x9c\xa1\ +\x9b\x9e\xa3\x9d\xa0\xa5\x9d\xa0\xa5\x9e\xa1\xa6\x9c\x9f\xa4\x9e\ +\xa1\xa5\x9f\xa2\xa6\xa0\xa3\xa7\xa0\xa3\xa7\x9f\xa2\xa6\xa0\xa4\ +\xa7\xa1\xa3\xa7\xa3\xa5\xa9\xa3\xa5\xa8\x9a\x9a\x9f\x8f\x8f\x93\ +\x90\x91\x93\xa4\xa4\xa6\xa5\xa7\xa8\x96\x98\x9a\x90\x93\x94\x9d\ +\x9f\xa0\xa9\xaa\xaa\xa3\xa3\xa4\x8f\x90\x91\x93\x93\x95\xa4\xa4\ +\xa5\xab\xab\xac\x9f\xa0\xa2\x8e\x90\x91\x94\x93\x94\xa6\xa5\xa5\ +\xae\xad\xad\xa5\xa5\xa5\x95\x95\x95\x99\x98\x98\xad\xab\xab\xb7\ +\xb5\xb7\xb5\xb4\xb5\xb4\xb4\xb4\xb7\xb7\xb7\xb5\xb5\xb6\xb4\xb4\ +\xb5\xb4\xb3\xb5\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb8\xba\xbb\xba\xbb\ +\xb8\xb8\xb8\xba\xba\xba\xbd\xbd\xbd\xbc\xbb\xbb\xba\xba\xba\xbd\ +\xbc\xbe\xc0\xbf\xc1\xc1\xc0\xc1\xbd\xbc\xbe\xbc\xbb\xbd\xbe\xbe\ +\xbf\xc1\xc0\xc1\xc1\xbf\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc1\ +\xc1\xc0\xc1\xbf\xbe\xc0\xc2\xbf\xc1\xc3\xc2\xc4\xc4\xc3\xc5\xc0\ +\xc0\xc2\x00\x00\x00\xdf\xdb\xda\xe0\xdb\xda\xdf\xda\xd9\xdd\xd7\ +\xd7\xdb\xd5\xd5\xd8\xd2\xd2\xd5\xce\xcb\xcc\xc5\xc2\xc1\xbb\xb8\ +\xb0\xaa\xa8\x92\x8e\x8e\x70\x72\x71\x53\x5a\x5c\x46\x4d\x50\x4d\ +\x50\x55\x68\x68\x6a\x81\x7d\x7e\x90\x8c\x8d\x9c\x99\x9a\xa1\x9f\ +\xa0\xa1\x9f\xa0\xa3\xa0\xa2\xa4\xa1\xa3\xa0\x9e\xa0\x9e\x9d\x9f\ +\x9c\x9b\x9d\x9d\x9c\x9e\x97\x96\x99\x93\x93\x97\x8f\x91\x93\x8e\ +\x90\x94\x8c\x8f\x93\x89\x8c\x8f\x87\x8b\x8e\x7e\x83\x86\x71\x77\ +\x7c\x64\x6c\x71\x55\x5e\x62\x63\x69\x6d\x6b\x6f\x75\x75\x78\x7c\ +\x6f\x72\x77\x72\x75\x7a\x70\x73\x78\x6e\x71\x76\x70\x73\x78\x6c\ +\x71\x76\x6f\x74\x78\x71\x75\x79\x75\x7b\x7f\x79\x7e\x83\x77\x7d\ +\x82\x77\x7d\x82\x77\x7d\x82\x78\x7d\x82\x78\x7e\x83\x7c\x81\x86\ +\x7b\x80\x85\x7c\x82\x88\x7c\x82\x87\x79\x7f\x84\x7a\x80\x85\x7b\ +\x81\x86\x7b\x81\x86\x7d\x83\x88\x80\x86\x8b\x81\x87\x8c\x80\x86\ +\x8b\x76\x7c\x81\x73\x79\x7e\x6a\x70\x75\x67\x6d\x72\x6a\x71\x76\ +\x6e\x73\x78\x7a\x7e\x81\x7c\x81\x85\x79\x7e\x82\x7b\x80\x83\x82\ +\x87\x8a\x7e\x82\x86\x7b\x7f\x84\x85\x88\x8c\x87\x8b\x8f\x7f\x83\ +\x86\x82\x85\x89\x8f\x92\x97\x93\x96\x9a\x93\x96\x9b\x96\x9a\x9f\ +\x94\x97\x9c\x95\x99\x9e\x97\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9c\ +\x9f\xa4\x9e\xa1\xa5\x9e\xa1\xa5\x9b\x9e\xa3\x9e\xa1\xa5\x9f\xa2\ +\xa6\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa2\xa5\xa9\xa4\xa7\xab\ +\xa7\xa8\xac\xa8\xa9\xad\xa6\xa7\xab\x9e\x9f\xa3\x94\x95\x99\x92\ +\x93\x97\xa2\xa3\xa5\xa8\xaa\xab\x9d\x9f\xa0\x91\x93\x94\x99\x99\ +\x9b\xa8\xa8\xa9\xa7\xa8\xa8\x96\x97\x98\x90\x91\x92\x9b\x9a\x9b\ +\xac\xac\xac\xa8\xa8\xaa\x97\x99\x9a\x93\x93\x95\xa5\xa4\xa4\xb0\ +\xae\xae\xac\xab\xab\x95\x95\x95\x91\x91\x91\xa8\xa6\xa6\xb7\xb7\ +\xb7\xb3\xb3\xb3\xb5\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb6\xb4\xb4\xb5\ +\xb5\xb5\xb6\xb8\xb6\xb7\xb9\xb9\xba\xba\xba\xba\xb9\xb9\xb9\xb9\ +\xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbc\xbd\xbd\xbd\xbd\xbc\xbe\xbe\xbd\ +\xbe\xbf\xbe\xbf\xbb\xb9\xbb\xb9\xb8\xba\xbc\xbb\xbd\xc0\xbf\xc1\ +\xc0\xbf\xc1\xc2\xc0\xc1\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbe\xbd\ +\xbb\xbc\xbe\xbc\xbc\xbe\xbd\xbe\xbe\xbc\xbe\xbf\xbd\xbf\x00\x00\ +\x00\xe0\xd9\xd7\xdf\xd9\xd7\xdf\xda\xd9\xdd\xd7\xd6\xda\xd4\xd4\ +\xd6\xd0\xd0\xd2\xcb\xca\xcb\xc4\xc1\xbf\xb8\xb4\xa7\xa1\x9d\x86\ +\x86\x82\x67\x6b\x6a\x4e\x55\x59\x46\x4e\x52\x56\x5a\x5c\x72\x6f\ +\x70\x89\x84\x85\x95\x90\x91\x9c\x9a\x9a\xa1\x9f\xa0\xa3\xa0\xa1\ +\xa2\x9f\xa1\xa3\xa0\xa2\xa0\x9f\xa1\x9c\x9b\x9d\x9b\x9a\x9c\x99\ +\x98\x9b\x93\x93\x96\x93\x94\x98\x92\x93\x96\x90\x91\x95\x8d\x90\ +\x93\x88\x8c\x8e\x85\x89\x8b\x81\x86\x89\x79\x7f\x82\x70\x77\x7a\ +\x68\x6e\x73\x6b\x6f\x74\x70\x75\x78\x71\x75\x79\x70\x74\x78\x6b\ +\x6f\x73\x6e\x71\x76\x6e\x71\x76\x70\x72\x77\x6d\x71\x76\x6f\x73\ +\x78\x72\x76\x79\x74\x78\x7c\x78\x7c\x81\x77\x7d\x82\x76\x7d\x82\ +\x76\x7b\x80\x78\x7d\x82\x7a\x7f\x84\x7a\x7f\x84\x7b\x81\x86\x7c\ +\x82\x87\x7c\x82\x87\x7b\x81\x86\x7d\x83\x87\x7c\x82\x88\x7c\x82\ +\x87\x7d\x83\x88\x7d\x83\x88\x7d\x83\x87\x7e\x86\x8a\x7e\x87\x8b\ +\x79\x80\x85\x68\x71\x75\x61\x6a\x6e\x6c\x71\x76\x72\x78\x7c\x76\ +\x7c\x7f\x7c\x81\x85\x7d\x81\x86\x79\x7d\x81\x7e\x83\x85\x81\x86\ +\x89\x7e\x83\x86\x7c\x80\x83\x84\x89\x8c\x85\x88\x8c\x7f\x83\x87\ +\x84\x87\x8c\x8f\x92\x96\x93\x96\x9b\x95\x98\x9d\x95\x98\x9d\x93\ +\x97\x9c\x96\x9a\x9e\x99\x9d\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\ +\xa5\xa0\xa3\xa7\x9f\xa2\xa6\x9f\xa2\xa6\x9e\xa1\xa5\x9d\xa0\xa5\ +\x9f\xa2\xa6\xa1\xa4\xa8\xa2\xa5\xaa\xa5\xa8\xac\xa4\xa6\xaa\xa4\ +\xa5\xa8\xa9\xaa\xad\xac\xad\xb0\xa2\xa4\xa7\x96\x97\x9b\x92\x93\ +\x96\x9f\x9f\xa2\xab\xac\xad\xa2\xa4\xa5\x94\x94\x97\x92\x92\x94\ +\xa6\xa7\xa7\xa9\xab\xac\x9d\x9f\xa0\x90\x91\x92\x96\x96\x98\xaa\ +\xa9\xab\xac\xac\xae\x9e\x9f\xa0\x93\x93\x93\x9e\x9d\x9d\xb0\xad\ +\xae\xac\xac\xac\x9e\x9e\x9e\x96\x95\x95\xa1\xa0\xa0\xb1\xb1\xb1\ +\xb4\xb4\xb5\xb5\xb5\xb6\xb6\xb5\xb6\xb5\xb5\xb6\xb6\xb6\xb7\xb7\ +\xb5\xb7\xb6\xb5\xb7\xb7\xb6\xb8\xb9\xb8\xba\xbb\xbb\xbb\xba\xba\ +\xba\xbd\xbd\xbd\xbf\xbf\xbf\xbc\xbc\xbd\xbc\xbb\xbd\xbb\xba\xbc\ +\xb9\xb8\xba\xb9\xb8\xba\xbd\xbb\xbd\xbf\xbd\xbf\xbf\xbd\xbf\xc3\ +\xc1\xc3\xc2\xbf\xc0\xc0\xbd\xbe\xbb\xb7\xb8\xba\xb8\xb8\xbd\xbb\ +\xbb\xbd\xbc\xbc\xbb\xbb\xbb\xbf\xbd\xc0\x00\x00\x00\xe1\xd9\xd9\ +\xdf\xd7\xd7\xdd\xd6\xd6\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\xcc\xce\ +\xc7\xc4\xc5\xbe\xbb\xb7\xb1\xad\x9c\x98\x94\x7b\x7e\x7c\x5b\x61\ +\x61\x45\x4b\x50\x49\x4f\x51\x5f\x61\x63\x7b\x77\x78\x8d\x88\x89\ +\x99\x94\x95\x9f\x9b\x9b\xa2\xa0\xa0\xa4\xa2\xa2\xa2\x9f\xa1\xa2\ +\x9e\xa0\x9f\x9e\xa0\x9c\x9b\x9d\x9c\x9b\x9d\x98\x98\x9c\x92\x92\ +\x96\x91\x92\x96\x90\x91\x95\x90\x92\x96\x8b\x8e\x92\x88\x8b\x8f\ +\x86\x89\x8d\x83\x88\x8b\x7f\x84\x87\x7c\x82\x85\x76\x7c\x7f\x75\ +\x7b\x7e\x75\x79\x7c\x69\x6e\x72\x67\x6b\x70\x63\x66\x6b\x66\x69\ +\x6e\x69\x6d\x71\x61\x65\x6a\x68\x6c\x71\x6a\x6e\x73\x6f\x74\x77\ +\x6f\x73\x78\x73\x77\x7c\x76\x7b\x80\x76\x7c\x80\x78\x7e\x83\x79\ +\x7f\x84\x78\x7e\x83\x7b\x7f\x84\x79\x80\x85\x79\x7f\x84\x79\x7f\ +\x84\x7c\x82\x87\x7d\x83\x88\x7c\x82\x87\x7c\x82\x87\x7e\x84\x89\ +\x7e\x84\x89\x7d\x84\x88\x7f\x85\x8a\x80\x86\x8b\x7c\x82\x87\x69\ +\x71\x76\x64\x6d\x71\x6c\x72\x77\x7b\x80\x84\x78\x7e\x82\x77\x7d\ +\x81\x7d\x81\x85\x7f\x84\x87\x7b\x80\x83\x7f\x84\x86\x84\x89\x8b\ +\x80\x85\x87\x80\x85\x86\x87\x8b\x8c\x87\x8b\x8e\x81\x85\x89\x82\ +\x86\x8a\x8e\x91\x95\x94\x97\x9c\x94\x98\x9d\x92\x96\x9b\x97\x9a\ +\x9e\x99\x9c\xa0\x9c\x9f\xa3\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\ +\x9e\xa1\xa5\x9e\xa1\xa5\xa1\xa4\xa8\xa0\xa3\xa7\xa0\xa3\xa7\xa2\ +\xa4\xa8\xa3\xa5\xa9\xa4\xa5\xa9\xa4\xa6\xa9\xa4\xa5\xa9\xa9\xaa\ +\xad\xaa\xaa\xad\xa8\xa9\xac\xa6\xa8\xac\x99\x9b\xa0\x8f\x92\x95\ +\x9a\x9a\x9c\xa9\xaa\xab\xa9\xa9\xab\x9a\x9c\x9d\x90\x92\x93\xa1\ +\xa2\xa3\xab\xab\xab\xa6\xa7\xa7\x96\x98\x99\x94\x94\x95\xa7\xa6\ +\xa7\xaf\xae\xae\xa5\xa5\xa5\x94\x94\x94\x99\x98\x98\xa9\xa8\xa8\ +\xb3\xb3\xb3\xa7\xa8\xa8\x96\x97\x97\x94\x94\x94\xa9\xa8\xa8\xb4\ +\xb2\xb2\xb6\xb5\xb5\xb5\xb5\xb5\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\ +\xb9\xb7\xb6\xb8\xb4\xb3\xb5\xb7\xb5\xb5\xb8\xb8\xb8\xbc\xbc\xbc\ +\xbb\xbb\xbb\xba\xb9\xb9\xbc\xbb\xbb\xbb\xbb\xbc\xbb\xba\xbc\xbe\ +\xbc\xbe\xbd\xbb\xbd\xbc\xba\xbc\xbe\xbc\xbe\xc2\xc0\xc1\xc3\xc0\ +\xc1\xc0\xbe\xbe\xbd\xbb\xbb\xba\xb8\xb8\xbb\xb9\xb9\xbb\xb9\xb9\ +\xbc\xbc\xbc\xbf\xbe\xc0\x00\x00\x00\xdf\xd7\xd7\xde\xd7\xd5\xdd\ +\xd5\xd5\xda\xd3\xd2\xd7\xcf\xcf\xd3\xcb\xcb\xcb\xc3\xc1\xc1\xb9\ +\xb8\xaf\xa7\xa7\x90\x8c\x8b\x6d\x71\x70\x52\x59\x5b\x44\x4a\x4f\ +\x51\x56\x59\x6a\x6b\x6d\x82\x7e\x7f\x94\x8f\x90\x9b\x97\x98\x9f\ +\x9c\x9d\xa0\x9f\x9e\xa2\xa0\xa1\xa2\xa0\xa2\x9f\x9d\x9f\x9c\x9b\ +\x9d\x9b\x9a\x9c\x99\x98\x9a\x96\x95\x98\x93\x92\x96\x8c\x8e\x91\ +\x8d\x8e\x92\x8c\x8e\x92\x89\x8c\x90\x88\x8c\x8f\x87\x8a\x8d\x83\ +\x88\x8b\x83\x88\x8b\x81\x86\x89\x7d\x83\x86\x77\x7c\x7f\x75\x7a\ +\x7d\x65\x69\x6d\x50\x54\x59\x50\x54\x59\x58\x5b\x5f\x5c\x60\x63\ +\x55\x59\x5d\x53\x58\x5c\x62\x66\x6a\x6b\x70\x73\x6d\x72\x76\x6f\ +\x74\x78\x76\x7a\x7f\x79\x7c\x81\x79\x7d\x82\x79\x7d\x82\x77\x7c\ +\x81\x79\x7e\x83\x7a\x80\x85\x77\x7d\x82\x78\x7e\x83\x7c\x82\x88\ +\x7d\x83\x89\x7b\x81\x86\x7b\x81\x86\x7e\x83\x88\x80\x86\x8a\x7e\ +\x85\x8a\x80\x87\x8c\x81\x87\x8b\x76\x7c\x81\x6e\x77\x7b\x69\x72\ +\x76\x6f\x76\x7a\x7a\x7f\x84\x7c\x81\x85\x77\x7c\x81\x77\x7c\x7f\ +\x80\x84\x88\x80\x85\x88\x7c\x80\x83\x80\x84\x86\x85\x89\x8a\x81\ +\x86\x88\x80\x84\x87\x89\x8c\x90\x89\x8d\x91\x82\x87\x8b\x81\x84\ +\x88\x90\x93\x97\x96\x99\x9d\x96\x9a\x9e\x95\x99\x9d\x97\x9a\x9e\ +\x9b\x9e\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\xa0\ +\xa3\xa7\xa3\xa4\xa8\xa1\xa4\xa8\xa0\xa3\xa7\xa2\xa4\xa8\xa3\xa5\ +\xa9\xa6\xa8\xaa\xa7\xa8\xab\xa8\xaa\xad\xa7\xa8\xac\xa8\xa9\xac\ +\xa8\xa9\xac\xac\xad\xb1\xab\xac\xb0\xa1\xa2\xa7\x92\x93\x97\x94\ +\x95\x99\xa5\xa6\xa8\xa7\xa9\xaa\x9a\x9b\x9c\x92\x93\x94\x9d\x9c\ +\x9c\xac\xad\xac\xac\xad\xad\x9c\x9c\x9d\x94\x92\x94\xa0\x9f\xa0\ +\xb0\xaf\xaf\xad\xae\xae\x9b\x9c\x9c\x93\x92\x92\xa1\xa1\xa1\xae\ +\xae\xae\xab\xab\xab\xa0\xa0\xa0\x95\x94\x94\xa1\x9e\x9e\xb3\xb2\ +\xb1\xb9\xb8\xb8\xb8\xb6\xb8\xb9\xb7\xb9\xba\xb8\xba\xb8\xb6\xb7\ +\xb4\xb2\xb3\xb3\xb0\xb3\xb4\xb4\xb4\xbe\xbd\xbd\xbc\xbc\xbc\xbc\ +\xbc\xbc\xbc\xbc\xbc\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbd\xbf\xbf\xbe\ +\xbf\xbf\xbd\xbf\xc1\xbe\xbf\xc1\xbf\xc0\xc1\xbf\xbf\xbe\xbb\xbd\ +\xbd\xbb\xbc\xbc\xba\xba\xbd\xbb\xbc\xbc\xba\xba\xbf\xbc\xbd\xbf\ +\xbd\xbf\x00\x00\x00\xdf\xd7\xd7\xdf\xd7\xd7\xdc\xd5\xd5\xd9\xd4\ +\xd3\xd7\xcf\xcf\xd2\xca\xca\xc8\xc0\xbe\xba\xb1\xb1\xa6\x9f\x9f\ +\x82\x81\x81\x60\x65\x67\x4b\x53\x58\x46\x4c\x50\x57\x5b\x5d\x73\ +\x74\x75\x88\x85\x86\x96\x92\x94\x9d\x98\x9a\xa0\x9e\x9e\xa1\x9f\ +\x9f\xa0\x9e\x9f\xa1\x9e\xa0\x9e\x9c\x9e\x9c\x9c\x9d\x99\x98\x9a\ +\x98\x97\x99\x92\x93\x96\x8f\x91\x93\x8d\x8d\x90\x8c\x8d\x91\x8a\ +\x8b\x8f\x87\x89\x8c\x85\x87\x8a\x83\x87\x8a\x84\x89\x8c\x82\x87\ +\x8a\x80\x85\x88\x7c\x81\x84\x7b\x81\x84\x76\x7b\x7e\x60\x65\x69\ +\x3d\x44\x4c\x39\x41\x48\x49\x4d\x52\x4f\x52\x55\x45\x4b\x4e\x3c\ +\x42\x48\x55\x59\x5e\x67\x6c\x6f\x6c\x70\x75\x6c\x71\x77\x73\x78\ +\x7c\x78\x7c\x81\x7a\x7e\x83\x7b\x7f\x84\x77\x7c\x80\x79\x7d\x82\ +\x79\x7f\x84\x78\x7e\x83\x7a\x80\x85\x7c\x82\x87\x7d\x83\x89\x7d\ +\x83\x88\x7b\x81\x85\x7b\x7f\x83\x7d\x82\x85\x80\x86\x8b\x82\x88\ +\x8d\x7e\x85\x89\x74\x7b\x80\x6d\x76\x7a\x73\x7c\x7f\x7a\x81\x85\ +\x77\x7e\x82\x79\x7e\x82\x7e\x84\x87\x78\x7e\x83\x7a\x7f\x82\x82\ +\x87\x8a\x81\x86\x89\x7c\x80\x83\x82\x86\x88\x86\x8b\x8d\x82\x87\ +\x8a\x7f\x82\x86\x89\x8c\x90\x89\x8e\x91\x7f\x84\x87\x80\x83\x87\ +\x8f\x92\x96\x96\x99\x9d\x96\x99\x9d\x98\x9b\x9f\x99\x9d\xa0\x9b\ +\x9f\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\xa0\xa3\xa7\xa3\xa3\ +\xa7\xa1\xa3\xa7\xa1\xa4\xa8\xa2\xa4\xa8\xa4\xa6\xaa\xa2\xa3\xa7\ +\xa7\xa8\xab\xa8\xaa\xac\xa6\xa8\xaa\xa7\xa8\xaa\xa9\xa9\xab\xad\ +\xad\xb0\xad\xae\xb1\xad\xae\xb3\xa4\xa4\xa9\x97\x98\x9c\x8f\x90\ +\x93\x9e\x9d\x9e\xab\xab\xab\xa2\xa3\xa4\x93\x95\x96\x9b\x9b\x9b\ +\xac\xac\xac\xb0\xaf\xb1\xa3\xa2\xa4\x95\x94\x96\x9c\x9a\x9c\xab\ +\xab\xab\xb1\xb2\xb2\xa2\xa5\xa4\x95\x95\x97\x98\x97\x97\xad\xac\ +\xac\xb3\xb2\xb1\xa9\xa8\xa9\x98\x97\x98\x9e\x9c\x9d\xae\xac\xad\ +\xb7\xb5\xb6\xb9\xb6\xb8\xb8\xb5\xb8\xba\xb7\xb9\xb7\xb4\xb7\xb7\ +\xb5\xb7\xb5\xb4\xb4\xb9\xb8\xb9\xbd\xbb\xbd\xbd\xbc\xbe\xba\xba\ +\xbb\xb9\xb8\xb9\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbc\xbf\xbe\xbd\xbe\ +\xbf\xbd\xbe\xbc\xba\xbc\xbc\xba\xba\xbb\xb8\xb9\xbc\xba\xba\xbc\ +\xba\xba\xbc\xba\xbb\xbd\xbb\xbc\xbf\xbc\xbe\xc1\xbf\xc1\x00\x00\ +\x00\xde\xd6\xd5\xde\xd6\xd6\xdb\xd4\xd4\xd8\xd2\xd1\xd4\xcd\xcd\ +\xce\xc6\xc6\xc5\xbd\xbc\xb6\xad\xac\x9a\x94\x94\x77\x77\x78\x5a\ +\x5f\x64\x48\x50\x58\x4d\x52\x56\x62\x63\x65\x7b\x7a\x7a\x8d\x8a\ +\x8a\x99\x93\x95\x9e\x99\x9a\xa2\x9d\x9e\xa1\x9f\xa0\xa0\x9e\x9e\ +\xa0\x9e\x9e\x9e\x9d\x9e\x9b\x9a\x9c\x9a\x99\x9b\x96\x95\x97\x93\ +\x93\x95\x8f\x92\x93\x8d\x8f\x91\x8a\x8c\x8f\x87\x89\x8c\x85\x88\ +\x8a\x85\x88\x8c\x84\x87\x8c\x82\x86\x8a\x81\x85\x88\x80\x86\x89\ +\x7d\x83\x86\x7d\x82\x85\x71\x76\x78\x58\x5f\x63\x2f\x39\x41\x2b\ +\x35\x3e\x38\x3e\x45\x3e\x43\x47\x38\x3e\x43\x34\x3c\x44\x47\x4d\ +\x53\x68\x6c\x6f\x6c\x72\x76\x6f\x75\x7a\x71\x75\x7a\x75\x79\x7e\ +\x7a\x7e\x83\x77\x7b\x80\x77\x7d\x81\x79\x7d\x82\x78\x7e\x83\x78\ +\x7e\x83\x7a\x80\x85\x7b\x81\x86\x7d\x83\x88\x7e\x84\x89\x75\x7a\ +\x7e\x6c\x71\x75\x75\x79\x7c\x7f\x84\x89\x83\x88\x8d\x7e\x84\x89\ +\x78\x80\x85\x73\x7c\x80\x7b\x82\x85\x83\x8a\x8d\x7c\x82\x86\x76\ +\x7c\x81\x7a\x7f\x84\x80\x85\x8a\x7c\x81\x84\x7d\x82\x85\x84\x89\ +\x8b\x82\x87\x8a\x7c\x81\x82\x82\x86\x86\x8a\x8e\x8f\x85\x8a\x8d\ +\x81\x85\x89\x8a\x8d\x91\x8b\x8f\x92\x84\x89\x8c\x83\x86\x8a\x8e\ +\x90\x94\x97\x9a\x9e\x98\x9b\x9f\x98\x9b\x9d\x9b\x9e\xa1\x9e\xa0\ +\xa4\xa0\xa2\xa6\x9f\xa1\xa4\xa2\xa3\xa7\xa2\xa3\xa7\xa2\xa5\xa9\ +\xa3\xa4\xa8\xa1\xa3\xa7\xa2\xa3\xa7\xa1\xa2\xa6\xa3\xa5\xa7\xa8\ +\xab\xab\xa8\xa9\xaa\xa9\xa8\xaa\xac\xab\xae\xac\xad\xaf\xac\xad\ +\xae\xac\xad\xb0\xab\xac\xaf\xaa\xab\xad\x9c\x9d\xa1\x92\x92\x94\ +\x9d\x9d\x9d\xad\xad\xad\xa7\xa8\xa8\x9a\x9c\x9c\x96\x97\x98\xa5\ +\xa5\xa6\xb0\xaf\xb1\xab\xaa\xac\x98\x99\x9a\x96\x95\x97\xa6\xa6\ +\xa6\xb4\xb5\xb5\xb0\xb0\xb0\x9b\x9a\x9b\x97\x96\x96\xa8\xa4\xa4\ +\xb3\xb2\xb2\xb1\xb1\xb2\x9d\x9d\x9e\x95\x94\x96\xa2\xa0\xa2\xaf\ +\xad\xae\xb7\xb4\xb6\xba\xb9\xbb\xba\xb9\xbb\xba\xb8\xba\xb7\xb5\ +\xb6\xb9\xb9\xb9\xba\xb9\xbb\xbc\xbc\xbd\xbb\xbb\xbc\xb9\xb8\xba\ +\xbb\xbb\xbc\xbd\xbc\xbd\xbe\xbd\xbf\xbe\xbd\xbf\xbf\xbe\xc0\xc1\ +\xc0\xc2\xbf\xbd\xbe\xbb\xb8\xb9\xbb\xb8\xba\xc0\xbd\xbf\xbd\xba\ +\xbc\xc0\xbe\xc0\xbf\xbd\xbf\xc2\xc0\xc2\x00\x00\x00\xde\xd7\xd5\ +\xde\xd6\xd6\xda\xd2\xd2\xd8\xd0\xd0\xd3\xcb\xcb\xcb\xc3\xc3\xc0\ +\xb8\xb8\xab\xa4\xa4\x8d\x8a\x89\x6d\x6e\x71\x50\x56\x5c\x46\x4e\ +\x55\x54\x58\x5d\x6e\x6d\x6f\x86\x82\x83\x92\x8d\x8e\x9a\x95\x96\ +\x9e\x99\x9a\xa2\x9f\xa0\xa2\x9f\xa0\x9f\x9c\x9e\x9d\x9a\x9c\x9d\ +\x9b\x9d\x9a\x99\x9b\x97\x96\x98\x94\x93\x95\x91\x93\x94\x8c\x8e\ +\x90\x8c\x8d\x91\x89\x8d\x91\x86\x89\x8d\x84\x87\x8a\x83\x86\x8a\ +\x80\x84\x88\x7f\x84\x87\x7f\x84\x87\x7e\x84\x87\x7b\x81\x86\x7a\ +\x7f\x83\x6c\x72\x76\x4e\x57\x5b\x26\x32\x3b\x26\x31\x38\x30\x39\ +\x40\x34\x3a\x40\x29\x30\x37\x31\x3a\x41\x4c\x52\x59\x67\x6b\x70\ +\x6d\x72\x77\x6d\x73\x78\x70\x74\x7a\x71\x76\x7b\x76\x7b\x80\x79\ +\x7d\x82\x7a\x7e\x83\x77\x7c\x80\x78\x7e\x83\x78\x7e\x83\x7a\x80\ +\x85\x7b\x82\x87\x7d\x84\x88\x78\x7e\x83\x66\x6d\x72\x5c\x62\x68\ +\x63\x67\x6c\x76\x79\x7e\x82\x86\x8a\x81\x86\x8b\x7f\x85\x89\x7d\ +\x85\x88\x82\x88\x8c\x86\x8c\x8f\x83\x8a\x8d\x7c\x82\x86\x78\x7e\ +\x82\x7e\x82\x86\x82\x86\x89\x7e\x83\x85\x80\x85\x87\x85\x8a\x8c\ +\x83\x88\x89\x7e\x82\x83\x85\x89\x8a\x8c\x8f\x91\x86\x8b\x8d\x82\ +\x86\x89\x8c\x90\x94\x8e\x91\x95\x86\x8a\x8e\x84\x87\x8b\x8e\x90\ +\x94\x99\x9b\x9e\x9d\xa0\xa2\x9e\xa0\xa4\x9f\xa0\xa4\x9f\xa0\xa2\ +\xa1\xa2\xa5\x9e\x9f\xa3\xa0\xa2\xa6\xa3\xa4\xa8\xa2\xa3\xa7\xa1\ +\xa2\xa5\xa2\xa4\xa8\xa2\xa3\xa6\xa2\xa4\xa5\xa5\xa6\xa7\xab\xab\ +\xac\xae\xac\xae\xac\xab\xac\xab\xab\xad\xac\xac\xae\xac\xac\xb0\ +\xab\xad\xae\xac\xac\xae\xaa\xac\xad\xa2\xa4\xa5\x94\x96\x97\x95\ +\x95\x96\xa6\xa5\xa6\xac\xac\xad\x9f\xa0\xa1\x97\x96\x98\x9e\x9e\ +\x9f\xad\xad\xad\xaf\xaf\xaf\xa1\xa0\xa2\x96\x95\x98\xa3\xa2\xa2\ +\xb0\xb0\xaf\xb3\xb2\xb3\xa5\xa5\xa5\x98\x97\x97\x9e\x9c\x9b\xae\ +\xad\xac\xb0\xb0\xb0\xa3\xa3\xa4\x96\x95\x97\x9d\x9b\x9d\xad\xaa\ +\xac\xb7\xb5\xb7\xb9\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb8\xb7\xb7\ +\xb8\xb7\xb7\xb6\xb6\xb6\xba\xba\xbb\xbb\xbb\xbb\xbc\xbb\xbc\xbd\ +\xbc\xbd\xbc\xbb\xbd\xbd\xbd\xbe\xc0\xbf\xc1\xc2\xc1\xc3\xbf\xbe\ +\xc0\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbc\xbd\xba\xbc\xc1\xbe\xc0\ +\xc3\xc0\xc2\xc1\xc0\xc2\x00\x00\x00\xdd\xd6\xd4\xdd\xd5\xd5\xd9\ +\xd2\xd1\xd5\xcd\xcd\xcf\xc7\xc7\xc7\xbe\xbd\xb9\xb0\xaf\xa0\x99\ +\x98\x81\x7f\x7e\x62\x64\x67\x48\x4e\x55\x46\x4c\x53\x5b\x5e\x62\ +\x76\x73\x74\x8a\x84\x85\x95\x8f\x90\x9b\x97\x98\xa0\x9d\x9f\xa1\ +\x9e\xa0\xa1\x9f\xa1\x9f\x9d\x9f\x9c\x9a\x9c\x9d\x9b\x9d\x98\x97\ +\x99\x95\x94\x96\x95\x95\x98\x8e\x90\x92\x8d\x8f\x92\x8a\x8c\x90\ +\x88\x8b\x8f\x87\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x82\x86\x89\x7f\ +\x84\x87\x7e\x82\x86\x7d\x81\x85\x7c\x81\x85\x79\x7f\x83\x68\x70\ +\x75\x45\x53\x59\x2b\x3a\x42\x2d\x37\x3e\x36\x3e\x45\x2d\x36\x3c\ +\x26\x30\x37\x37\x40\x47\x59\x5e\x66\x67\x6c\x72\x6e\x73\x78\x6b\ +\x71\x76\x6d\x73\x79\x6e\x73\x79\x70\x76\x7a\x7a\x7e\x83\x78\x7d\ +\x82\x78\x7d\x81\x79\x7f\x84\x7a\x80\x85\x79\x7f\x84\x7b\x81\x86\ +\x7b\x81\x86\x75\x7c\x81\x64\x6e\x74\x4d\x57\x5f\x4b\x52\x5b\x63\ +\x66\x6d\x78\x7c\x80\x81\x87\x8b\x85\x8a\x8f\x83\x89\x8d\x85\x8c\ +\x90\x84\x8a\x8e\x85\x8c\x8f\x83\x8a\x8d\x7d\x83\x87\x7c\x81\x85\ +\x7e\x83\x86\x83\x88\x8b\x7f\x84\x88\x80\x84\x86\x87\x8b\x8d\x84\ +\x88\x89\x81\x84\x87\x88\x8c\x8d\x8b\x8e\x90\x89\x8e\x90\x81\x86\ +\x89\x89\x8c\x90\x8f\x92\x97\x88\x8b\x8f\x84\x87\x8b\x91\x93\x96\ +\x9c\x9e\xa0\x9d\xa0\xa3\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa2\xa6\x9e\ +\x9f\xa3\x9f\xa0\xa4\xa1\xa3\xa7\xa1\xa2\xa7\xa2\xa3\xa7\xa4\xa5\ +\xa8\xa3\xa5\xa7\xa1\xa2\xa3\xa5\xa5\xa7\xab\xaa\xab\xab\xaa\xac\ +\xac\xab\xad\xac\xab\xad\xac\xab\xad\xad\xae\xaf\xac\xae\xb0\xab\ +\xac\xae\xad\xae\xb0\xae\xae\xb0\xa5\xa7\xa8\x98\x9a\x9b\x97\x96\ +\x98\xa5\xa4\xa6\xae\xae\xaf\xa8\xa8\xa9\x9a\x99\x9a\x9c\x9b\x9c\ +\xa9\xa7\xa9\xb2\xb1\xb1\xa8\xa7\xa9\x9b\x9a\x9c\x9c\x9c\x9d\xab\ +\xaa\xab\xb2\xb2\xb2\xaa\xaa\xa9\x9b\x9a\x9a\x97\x96\x97\xa4\xa3\ +\xa4\xb0\xb0\xb0\xad\xac\xae\x9d\x9c\x9d\x9b\x99\x9b\xa8\xa6\xa8\ +\xb4\xb1\xb3\xb9\xb7\xb9\xb8\xb7\xb9\xba\xb8\xba\xb8\xb8\xb9\xb7\ +\xb6\xb8\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xbd\xbc\ +\xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xbf\xc1\xbf\xbd\xbf\ +\xc0\xbe\xc1\xbd\xbb\xbe\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xbf\xc1\xbf\ +\xbd\xbf\x00\x00\x00\xdd\xd6\xd3\xdb\xd3\xd4\xd8\xd1\xd1\xd4\xcc\ +\xcc\xcd\xc4\xc3\xc3\xb9\xb6\xb2\xa9\xa6\x94\x90\x8e\x73\x75\x73\ +\x57\x5c\x5e\x48\x4e\x53\x4f\x52\x58\x67\x67\x6a\x7d\x7a\x7a\x8f\ +\x8a\x8a\x98\x93\x94\x9d\x99\x9a\x9f\x9c\x9e\xa1\x9e\x9f\xa1\x9e\ +\xa0\x9e\x9c\x9f\x9b\x9a\x9c\x9b\x9a\x9c\x98\x97\x99\x94\x95\x96\ +\x91\x92\x95\x8d\x8e\x92\x8a\x8d\x92\x87\x8a\x8e\x85\x88\x8c\x86\ +\x89\x8d\x83\x87\x8b\x83\x87\x8a\x82\x86\x89\x7f\x83\x86\x7d\x81\ +\x84\x7c\x80\x85\x7b\x7f\x84\x78\x7e\x82\x6b\x73\x79\x4a\x5b\x62\ +\x3d\x4e\x55\x39\x44\x4c\x3e\x48\x4f\x2c\x38\x3e\x2d\x39\x40\x3c\ +\x45\x4d\x61\x67\x6d\x6b\x70\x75\x6d\x72\x77\x6d\x73\x79\x6a\x70\ +\x75\x6e\x73\x78\x6d\x73\x78\x75\x7a\x7f\x79\x7e\x82\x79\x7e\x83\ +\x79\x7f\x84\x78\x7d\x82\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x79\ +\x81\x87\x6d\x78\x7e\x55\x61\x69\x41\x4a\x54\x49\x4e\x57\x63\x66\ +\x6e\x7b\x7e\x84\x85\x89\x8f\x86\x8c\x90\x85\x8b\x8f\x85\x8b\x90\ +\x89\x8f\x92\x87\x8e\x91\x85\x8b\x8e\x7e\x85\x88\x79\x7f\x82\x7e\ +\x83\x86\x83\x89\x8b\x81\x86\x89\x82\x85\x88\x84\x88\x8a\x87\x8b\ +\x8e\x81\x85\x86\x86\x89\x8c\x8a\x8f\x92\x87\x8b\x8f\x84\x87\x8b\ +\x8b\x8e\x92\x8f\x92\x96\x8b\x8e\x91\x86\x89\x8d\x8f\x91\x93\x9a\ +\x9c\x9e\x9f\xa1\xa4\xa1\xa2\xa6\xa0\xa1\xa5\xa1\xa2\xa5\xa0\xa2\ +\xa6\x9e\xa0\xa4\xa0\xa2\xa6\xa2\xa4\xa8\xa4\xa5\xa9\xa5\xa7\xa9\ +\xa4\xa6\xa7\xa8\xa9\xaa\xac\xab\xae\xab\xaa\xac\xac\xab\xad\xae\ +\xae\xb0\xad\xae\xb0\xb0\xb0\xb2\xae\xae\xb0\xad\xae\xaf\xaf\xb0\ +\xb2\xaf\xaf\xb1\xb0\xb2\xb2\xac\xae\xaf\xa2\xa3\xa4\x98\x98\x9b\ +\x9d\x9d\x9f\xab\xaa\xac\xaa\xa9\xaa\x9f\x9e\xa0\x9a\x99\x9b\xa6\ +\xa4\xa5\xb1\xaf\xaf\xb1\xaf\xb0\xa2\xa1\xa2\x99\x98\x9a\xa1\x9f\ +\x9f\xad\xab\xab\xaf\xae\xae\xa3\xa4\xa4\x98\x98\x99\x9d\x9b\x9d\ +\xaf\xad\xae\xb7\xb4\xb5\xaa\xa8\xaa\x9b\x99\x9b\x9e\x9c\x9e\xab\ +\xa8\xaa\xb7\xb4\xb6\xb9\xb7\xb9\xba\xba\xbb\xbb\xba\xbb\xba\xb9\ +\xbb\xbb\xbb\xbc\xba\xb9\xbb\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbd\xbf\ +\xbe\xbd\xbf\xbe\xbd\xbf\xc0\xbe\xc0\xbe\xbc\xbe\xbf\xbe\xc1\xbe\ +\xbd\xc1\xc0\xbe\xc1\xbe\xbc\xbe\xbc\xb9\xbb\xbe\xbb\xbd\x00\x00\ +\x00\xdb\xd4\xd2\xd9\xd1\xd0\xd6\xce\xcc\xd2\xca\xc8\xca\xc1\xbf\ +\xbf\xb5\xb3\xaa\xa2\xa0\x89\x88\x86\x67\x6b\x6a\x4c\x53\x57\x49\ +\x4e\x53\x55\x57\x5c\x71\x6f\x71\x84\x80\x80\x93\x8e\x8f\x9a\x96\ +\x97\x9d\x9a\x9c\x9f\x9c\x9e\xa1\x9e\x9f\xa0\x9d\x9f\x9d\x9b\x9d\ +\x9b\x9a\x9c\x9a\x99\x9b\x97\x96\x98\x94\x95\x98\x8d\x8f\x93\x8c\ +\x8e\x92\x89\x8c\x91\x86\x89\x8d\x85\x88\x8c\x84\x87\x8b\x83\x86\ +\x8a\x81\x87\x8a\x80\x85\x88\x7e\x82\x86\x7c\x81\x85\x7c\x81\x84\ +\x7a\x7f\x83\x79\x7d\x82\x6f\x76\x7c\x5c\x68\x6e\x55\x63\x6a\x4f\ +\x5a\x62\x4d\x58\x60\x3d\x4a\x52\x39\x46\x4d\x49\x52\x59\x62\x67\ +\x6d\x6f\x74\x78\x6c\x71\x76\x6d\x72\x78\x6d\x72\x77\x6d\x71\x76\ +\x6f\x74\x7a\x6f\x74\x79\x76\x7a\x7e\x7a\x7e\x83\x78\x7e\x83\x77\ +\x7c\x81\x79\x7f\x84\x79\x7f\x84\x7a\x80\x85\x7b\x81\x86\x76\x7f\ +\x85\x6a\x75\x7c\x53\x5e\x66\x3e\x47\x51\x53\x58\x62\x6c\x70\x77\ +\x80\x84\x89\x87\x8c\x90\x86\x8a\x8f\x89\x8e\x92\x8b\x90\x93\x89\ +\x8e\x91\x8a\x8f\x92\x86\x8c\x8f\x7f\x85\x88\x7b\x7f\x82\x80\x84\ +\x88\x85\x89\x8c\x81\x85\x88\x7d\x81\x83\x86\x8a\x8c\x85\x89\x8b\ +\x80\x84\x87\x82\x85\x89\x8b\x8e\x92\x8a\x8e\x91\x86\x89\x8d\x8c\ +\x8e\x92\x92\x94\x97\x8c\x8f\x91\x85\x89\x8b\x8d\x90\x92\x99\x9b\ +\x9d\x9f\xa1\xa4\xa1\xa2\xa6\xa1\xa2\xa6\xa0\xa1\xa7\x9f\xa1\xa5\ +\xa0\xa2\xa6\xa3\xa5\xa9\xa6\xa7\xaa\xa5\xa6\xa8\xa6\xa6\xa8\xa8\ +\xa8\xaa\xab\xaa\xac\xab\xaa\xac\xac\xab\xad\xad\xac\xae\xad\xae\ +\xaf\xaf\xae\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb1\xb0\xb2\xb0\xb0\xb2\ +\xb2\xb2\xb4\xb3\xb3\xb5\xb0\xb0\xb2\xa7\xa7\xa9\x99\x9a\x9c\x97\ +\x97\x99\xa5\xa4\xa5\xae\xac\xad\xa6\xa6\xa7\x9c\x9b\x9d\x9f\x9d\ +\x9d\xad\xab\xab\xb7\xb6\xb6\xac\xac\xac\x9e\x9d\x9c\x9a\x9a\x99\ +\xa7\xa6\xa6\xb0\xb0\xb0\xab\xab\xac\x9c\x9b\x9d\x9b\x9a\x9c\xab\ +\xa9\xaa\xb6\xb4\xb4\xb0\xae\xaf\xa0\x9f\xa0\x9c\x9c\x9d\xa7\xa4\ +\xa6\xb3\xb2\xb3\xbb\xba\xbb\xbc\xbb\xbb\xbc\xbb\xbc\xbd\xbd\xbd\ +\xbb\xba\xbc\xbb\xba\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbc\ +\xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xc0\xbf\xbe\xc0\xc0\xbf\ +\xc2\xbc\xbb\xbd\xb8\xb6\xb8\xc0\xbd\xbf\x00\x00\x00\xdb\xd4\xd2\ +\xd8\xd1\xce\xd5\xcd\xca\xcf\xc6\xc3\xc6\xbd\xba\xb8\xaf\xad\x9d\ +\x97\x95\x7c\x7d\x7c\x5f\x64\x66\x47\x50\x54\x4c\x51\x57\x5d\x5e\ +\x62\x79\x76\x78\x8a\x85\x86\x96\x91\x91\x9a\x97\x97\x9f\x9c\x9e\ +\x9f\x9c\x9e\x9f\x9d\x9f\x9e\x9c\x9e\x9b\x9a\x9c\x9a\x99\x9c\x98\ +\x97\x99\x95\x96\x97\x91\x92\x95\x8e\x8f\x93\x8a\x8d\x91\x88\x8b\ +\x90\x88\x8b\x8f\x85\x89\x8c\x84\x88\x8b\x81\x85\x89\x7f\x84\x88\ +\x7f\x83\x87\x7e\x82\x87\x7e\x82\x87\x7d\x81\x85\x7b\x80\x83\x7a\ +\x7e\x83\x76\x7b\x80\x6d\x74\x79\x68\x71\x78\x66\x6f\x76\x5e\x68\ +\x6e\x58\x62\x6a\x4d\x57\x5f\x56\x5d\x64\x64\x69\x6f\x6e\x72\x77\ +\x6e\x73\x78\x6b\x70\x75\x6e\x72\x77\x6d\x70\x75\x6e\x72\x77\x6f\ +\x74\x79\x70\x74\x79\x78\x7c\x81\x79\x7e\x83\x78\x7c\x81\x79\x7f\ +\x84\x79\x7f\x84\x7c\x81\x86\x7b\x82\x87\x7c\x83\x88\x77\x80\x85\ +\x6b\x76\x7c\x59\x64\x6c\x52\x5b\x65\x66\x6a\x73\x7d\x81\x86\x85\ +\x89\x8d\x86\x8b\x8e\x88\x8c\x91\x8a\x8f\x91\x8a\x8e\x91\x8a\x8f\ +\x92\x8b\x90\x93\x88\x8d\x90\x81\x86\x89\x7d\x82\x85\x82\x85\x89\ +\x86\x8a\x8c\x82\x86\x88\x80\x84\x86\x88\x8c\x8d\x85\x89\x8c\x80\ +\x84\x87\x83\x86\x8a\x8b\x8f\x91\x8c\x90\x94\x86\x89\x8d\x89\x8c\ +\x8f\x90\x93\x95\x8e\x92\x94\x88\x8b\x8e\x8b\x8d\x8e\x98\x99\x9c\ +\x9f\xa0\xa4\xa1\xa2\xa7\xa1\xa2\xa7\xa4\xa5\xa9\xa2\xa4\xa8\xa5\ +\xa7\xab\xa6\xa8\xab\xa5\xa7\xa9\xa7\xa6\xa8\xa8\xa7\xa9\xab\xaa\ +\xac\xab\xaa\xac\xab\xaa\xac\xab\xaa\xac\xad\xae\xaf\xaf\xae\xb0\ +\xaf\xae\xb0\xaf\xae\xb0\xaf\xae\xb0\xb1\xb1\xb3\xb2\xb2\xb4\xb2\ +\xb1\xb3\xb2\xb2\xb4\xb2\xb1\xb3\xab\xac\xae\x9d\x9d\x9e\x96\x95\ +\x96\x9f\x9d\x9d\xad\xab\xac\xae\xad\xad\xa0\x9e\x9e\x9c\x9a\x99\ +\xa6\xa3\xa3\xb4\xb2\xb2\xb2\xb3\xb2\xa4\xa3\xa3\x9b\x9a\x9a\x9e\ +\x9d\x9d\xaf\xae\xaf\xb2\xb2\xb2\xa5\xa5\xa6\x9b\x9a\x9c\xa0\x9e\ +\x9f\xb2\xaf\xb0\xb4\xb3\xb3\xad\xac\xad\xa1\x9f\xa1\x9f\x9c\x9e\ +\xad\xab\xac\xbc\xbb\xba\xbc\xba\xba\xbc\xbb\xbb\xbc\xba\xbb\xbd\ +\xbc\xbd\xbe\xbc\xbe\xbb\xba\xbc\xba\xb9\xbb\xba\xb9\xbb\xbb\xba\ +\xbc\xbf\xbd\xbf\xbc\xba\xbd\xbd\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\ +\xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xda\xd4\xd3\xd8\xd1\xce\xd3\ +\xcb\xc8\xcc\xc3\xbf\xc0\xb7\xb4\xaf\xa6\xa2\x91\x8d\x8a\x6f\x71\ +\x71\x56\x5e\x60\x45\x4e\x52\x4f\x54\x58\x68\x67\x6b\x80\x7e\x7e\ +\x8f\x89\x8a\x98\x94\x94\x9b\x98\x99\x9e\x9c\x9d\x9f\x9d\x9e\x9e\ +\x9d\x9e\x9c\x9b\x9c\x9a\x9a\x9c\x98\x97\x98\x95\x95\x96\x91\x93\ +\x94\x8e\x8f\x93\x8c\x8e\x92\x8a\x8d\x91\x88\x8b\x8f\x87\x8a\x8e\ +\x85\x88\x8c\x84\x88\x8c\x80\x84\x88\x80\x84\x89\x7e\x83\x86\x7c\ +\x81\x84\x7d\x81\x86\x7c\x81\x85\x7b\x7f\x83\x7b\x7f\x84\x79\x7c\ +\x81\x77\x7d\x82\x73\x79\x7e\x72\x78\x7d\x70\x76\x7c\x68\x6f\x76\ +\x59\x61\x69\x53\x59\x61\x61\x65\x6c\x6a\x6d\x72\x6b\x6f\x74\x66\ +\x6b\x6f\x66\x6a\x70\x6a\x6e\x74\x6b\x70\x74\x6f\x74\x77\x6e\x73\ +\x78\x71\x75\x7a\x7a\x7e\x82\x7b\x80\x84\x79\x7f\x84\x7a\x80\x85\ +\x7a\x80\x85\x7b\x81\x86\x7c\x82\x87\x7c\x83\x88\x78\x81\x86\x6d\ +\x77\x7d\x5e\x68\x70\x67\x6c\x75\x7b\x7f\x84\x85\x8a\x8e\x86\x8a\ +\x8f\x87\x8c\x90\x88\x8e\x91\x8a\x8f\x92\x8a\x8f\x92\x8b\x90\x93\ +\x8c\x91\x94\x8b\x90\x93\x84\x89\x8c\x7e\x83\x86\x81\x85\x88\x88\ +\x8c\x8f\x82\x87\x8a\x80\x84\x87\x84\x88\x8b\x88\x8c\x90\x80\x85\ +\x88\x81\x85\x88\x8b\x8d\x91\x8c\x90\x93\x87\x8a\x8d\x8b\x8e\x90\ +\x93\x96\x98\x90\x94\x95\x88\x8b\x8c\x8a\x8c\x8d\x99\x9a\x9d\xa2\ +\xa3\xa8\xa1\xa2\xa6\xa4\xa5\xa9\xa6\xa7\xab\xa6\xa7\xab\xa6\xa7\ +\xab\xa4\xa5\xa6\xa8\xa7\xa9\xaa\xa9\xab\xa9\xa8\xaa\xa9\xa8\xaa\ +\xaa\xa9\xab\xab\xaa\xac\xad\xac\xaf\xb1\xb0\xb2\xae\xad\xaf\xad\ +\xac\xae\xaf\xb0\xb1\xb0\xb1\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb2\xb2\ +\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xae\xad\xaf\xa3\xa3\xa5\x99\x99\x99\ +\x9b\x9a\x9a\xa5\xa3\xa3\xb0\xae\xad\xa7\xa5\xa5\x9c\x99\x9a\x9e\ +\x9d\x9d\xac\xaa\xa9\xb4\xb2\xb1\xab\xab\xab\x9a\x99\x9a\x98\x97\ +\x98\xa9\xa8\xa9\xb6\xb4\xb4\xaf\xad\xae\xa2\xa1\xa2\x9e\x9c\x9d\ +\xa6\xa4\xa5\xb6\xb4\xb4\xb5\xb3\xb6\xa4\xa2\xa4\x9a\x99\x9a\xa3\ +\xa2\xa1\xb3\xb0\xb0\xba\xb8\xb9\xbd\xbb\xbc\xbf\xbd\xbd\xbe\xbd\ +\xbe\xba\xb9\xbb\xb9\xb8\xba\xb8\xb7\xb9\xb7\xb6\xb8\xba\xb8\xba\ +\xbc\xba\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\xc2\xc3\ +\xc2\xc4\x00\x00\x00\xd9\xd4\xd2\xd7\xcf\xcd\xd0\xc8\xc5\xc8\xbf\ +\xbb\xbd\xb3\xb0\xa5\x9e\x9a\x84\x83\x80\x65\x68\x6a\x4d\x54\x59\ +\x46\x50\x54\x56\x5a\x5f\x73\x71\x74\x87\x84\x84\x90\x8b\x8c\x99\ +\x94\x95\x9e\x9a\x9b\x9f\x9d\x9e\x9f\x9d\x9e\x9e\x9c\x9c\x9c\x9a\ +\x9c\x99\x98\x9a\x98\x97\x98\x94\x93\x95\x90\x91\x93\x8d\x8f\x93\ +\x8b\x8d\x91\x88\x8b\x90\x85\x88\x8d\x86\x89\x8d\x82\x86\x8a\x83\ +\x86\x8b\x80\x83\x88\x7f\x83\x87\x7e\x82\x86\x7b\x80\x84\x7a\x7f\ +\x82\x79\x7d\x81\x79\x7d\x81\x78\x7c\x81\x79\x7d\x82\x79\x7f\x84\ +\x76\x7c\x81\x76\x7c\x82\x76\x7c\x81\x6b\x72\x78\x5c\x63\x6c\x4a\ +\x50\x5a\x4c\x50\x59\x60\x62\x6a\x60\x63\x69\x59\x5c\x63\x57\x5a\ +\x61\x63\x66\x6c\x6c\x70\x74\x6c\x71\x74\x6f\x73\x78\x6e\x72\x77\ +\x73\x77\x7b\x7a\x80\x83\x7b\x80\x86\x7b\x81\x86\x7b\x80\x85\x7b\ +\x81\x86\x7d\x82\x87\x7f\x85\x8a\x7d\x84\x89\x77\x7f\x84\x6f\x78\ +\x7d\x74\x7a\x80\x7e\x82\x87\x86\x8a\x8f\x88\x8b\x91\x87\x8b\x8f\ +\x88\x8b\x8f\x88\x8d\x90\x89\x8e\x91\x89\x8e\x91\x8d\x92\x95\x8e\ +\x93\x96\x8c\x91\x94\x84\x8a\x8d\x7e\x83\x86\x81\x85\x89\x8a\x8f\ +\x92\x84\x89\x8c\x7f\x84\x87\x85\x88\x8c\x89\x8d\x90\x85\x88\x8c\ +\x84\x87\x8b\x8c\x8f\x92\x90\x94\x97\x8a\x8d\x91\x88\x8c\x8f\x91\ +\x94\x96\x91\x93\x95\x89\x8d\x8e\x8c\x8e\x8f\x97\x99\x9b\x9f\xa0\ +\xa4\xa3\xa4\xa8\xa2\xa4\xa8\xa5\xa6\xa9\xa8\xa7\xa9\xa5\xa4\xa6\ +\xa5\xa4\xa6\xa8\xa7\xa9\xa9\xa8\xab\xaa\xa9\xab\xab\xaa\xab\xab\ +\xaa\xac\xad\xac\xae\xae\xad\xaf\xac\xad\xae\xad\xac\xae\xae\xad\ +\xaf\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb2\xb4\ +\xb3\xb2\xb3\xb1\xb1\xb3\xb1\xb0\xb2\xab\xab\xac\x9c\x9d\x9d\x93\ +\x92\x92\xa0\x9e\x9d\xaf\xad\xac\xae\xae\xac\xa0\xa0\xa0\x9a\x97\ +\x97\xa1\xa0\x9f\xb1\xaf\xb0\xb1\xaf\xb0\xa5\xa4\xa5\x9b\x9a\x9c\ +\xa2\xa0\xa1\xb4\xb2\xb2\xb8\xb7\xb7\xab\xaa\xab\x9c\x99\x9b\xa0\ +\x9e\x9f\xaf\xad\xad\xb6\xb5\xb6\xae\xae\xae\xa1\xa1\xa0\x98\x96\ +\x96\xa7\xa4\xa4\xbb\xb8\xb8\xbe\xbd\xbd\xbd\xbb\xbc\xbd\xba\xbc\ +\xbc\xba\xbc\xba\xb8\xba\xb7\xb6\xb8\xb7\xb6\xb8\xba\xb9\xbb\xc0\ +\xbf\xc1\xc0\xbe\xc0\xc2\xc1\xc3\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ +\x00\xd7\xd1\xce\xd5\xce\xcb\xce\xc7\xc3\xc5\xbd\xb9\xb6\xaf\xab\ +\x9b\x96\x94\x7a\x7a\x7c\x5d\x60\x64\x49\x4f\x56\x49\x4f\x55\x5f\ +\x61\x65\x79\x76\x77\x8d\x88\x89\x94\x8f\x90\x9c\x97\x98\x9f\x9b\ +\x9d\x9f\x9d\x9e\x9f\x9c\x9e\x9c\x9a\x9c\x99\x98\x9a\x95\x94\x96\ +\x91\x90\x92\x8f\x90\x91\x8e\x90\x92\x8d\x8e\x91\x8a\x8c\x8e\x87\ +\x89\x8b\x84\x86\x8a\x83\x85\x89\x81\x85\x89\x81\x84\x88\x80\x83\ +\x87\x7d\x82\x85\x7c\x81\x85\x7c\x80\x85\x7b\x7f\x84\x79\x7d\x82\ +\x78\x7c\x81\x77\x7b\x80\x7a\x7e\x83\x78\x7c\x81\x77\x7c\x81\x76\ +\x7d\x82\x74\x7a\x7f\x6f\x74\x7a\x55\x5c\x64\x3c\x45\x4f\x32\x3a\ +\x43\x4b\x4e\x57\x52\x54\x5d\x3d\x40\x49\x3c\x3f\x49\x53\x55\x5c\ +\x6a\x6d\x72\x6f\x73\x77\x6d\x71\x76\x70\x74\x79\x6e\x73\x77\x74\ +\x79\x7c\x7b\x80\x83\x7b\x7f\x83\x7c\x81\x85\x7e\x83\x87\x7d\x82\ +\x87\x7e\x83\x88\x80\x85\x8a\x80\x85\x8a\x7e\x85\x89\x82\x87\x8c\ +\x85\x89\x8e\x86\x8a\x8f\x85\x89\x8e\x87\x8b\x8f\x86\x89\x8d\x89\ +\x8c\x90\x8b\x8e\x92\x8d\x91\x95\x8d\x92\x95\x8d\x92\x95\x8f\x94\ +\x97\x8d\x92\x95\x85\x8a\x8d\x80\x85\x88\x84\x89\x8c\x8a\x8f\x92\ +\x84\x89\x8c\x80\x85\x88\x87\x8a\x8e\x8e\x91\x95\x88\x8b\x8f\x85\ +\x88\x8c\x8d\x90\x93\x91\x95\x97\x8a\x8d\x92\x89\x8b\x90\x90\x93\ +\x95\x95\x99\x9a\x8f\x91\x92\x89\x8b\x8c\x92\x94\x95\xa1\xa2\xa4\ +\xa4\xa4\xa7\xa6\xa7\xaa\xa9\xa8\xab\xa9\xa8\xaa\xaa\xa9\xab\xa9\ +\xa8\xaa\xa9\xa8\xaa\xaa\xa9\xac\xab\xaa\xad\xaa\xa9\xab\xac\xad\ +\xae\xac\xab\xad\xac\xab\xad\xab\xaa\xac\xad\xac\xae\xaf\xae\xb0\ +\xaf\xae\xb0\xb1\xb0\xb2\xb1\xb2\xb3\xb3\xb4\xb5\xb3\xb3\xb5\xb2\ +\xb1\xb3\xb2\xb1\xb3\xb3\xb2\xb4\xac\xac\xad\x9f\xa0\xa0\x94\x96\ +\x96\x99\x97\x98\xab\xaa\xaa\xb3\xb1\xb1\xa8\xa8\xa8\x9b\x9a\x9c\ +\x9b\x9a\x9c\xac\xab\xac\xb7\xb6\xb7\xae\xae\xaf\x9f\x9e\x9f\x9c\ +\x9a\x9c\xab\xa8\xa9\xb5\xb3\xb3\xb3\xb0\xb1\xa7\xa5\xa6\x99\x97\ +\x99\xa6\xa3\xa5\xb6\xb4\xb4\xb7\xb6\xb8\xab\xaa\xac\x9e\x9c\x9d\ +\x9f\x9b\x9c\xb1\xad\xae\xbf\xbd\xbe\xbe\xbb\xbd\xbe\xbb\xbd\xbf\ +\xbd\xbf\xbe\xbd\xbf\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbd\xbf\xc0\xbe\ +\xbf\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc0\xc2\x00\x00\x00\xd6\xcf\xcc\ +\xd3\xcb\xc7\xcc\xc3\xbf\xc0\xb8\xb4\xad\xa6\xa5\x8f\x8c\x8d\x6f\ +\x71\x72\x56\x5c\x60\x49\x4e\x54\x50\x54\x5a\x68\x67\x6b\x82\x7e\ +\x7f\x8f\x8a\x8b\x98\x93\x94\x9e\x99\x9b\x9f\x9b\x9d\x9f\x9c\x9e\ +\x9e\x9b\x9d\x9c\x9a\x9c\x98\x97\x99\x8d\x8c\x8e\x88\x88\x89\x84\ +\x86\x86\x89\x8b\x8d\x8b\x8c\x90\x87\x88\x8c\x87\x88\x8a\x82\x84\ +\x88\x81\x83\x87\x80\x83\x87\x80\x83\x87\x7f\x83\x86\x7c\x7f\x83\ +\x7c\x7f\x83\x7b\x7f\x82\x7b\x7f\x83\x7b\x7f\x84\x79\x7d\x82\x77\ +\x7b\x80\x77\x7b\x80\x78\x7d\x82\x77\x7a\x80\x76\x7b\x81\x74\x7a\ +\x7f\x68\x6d\x73\x4f\x56\x5e\x31\x3d\x45\x2a\x36\x3f\x3c\x42\x4b\ +\x42\x46\x4f\x23\x2a\x33\x20\x26\x2f\x49\x4c\x54\x65\x68\x6d\x70\ +\x74\x79\x6f\x72\x77\x6e\x72\x77\x6e\x72\x77\x70\x74\x78\x77\x7a\ +\x7e\x74\x77\x7b\x6b\x6e\x73\x70\x72\x76\x7a\x7e\x82\x7d\x83\x87\ +\x7f\x85\x89\x80\x86\x8b\x81\x87\x8c\x83\x88\x8d\x86\x8a\x8f\x86\ +\x8a\x8e\x84\x89\x8d\x85\x89\x8c\x86\x89\x8d\x8c\x8f\x93\x8c\x8f\ +\x93\x8c\x8f\x93\x8d\x91\x94\x8e\x93\x96\x91\x96\x99\x92\x97\x9a\ +\x8e\x93\x96\x85\x8a\x8d\x81\x86\x89\x81\x86\x89\x8a\x8f\x91\x85\ +\x8a\x8d\x83\x88\x8c\x88\x8b\x8f\x8e\x92\x96\x89\x8c\x90\x87\x89\ +\x8d\x8d\x8f\x93\x92\x96\x99\x8c\x8f\x93\x87\x8a\x8e\x96\x98\x9b\ +\x9a\x9c\x9d\x8f\x91\x92\x8b\x8d\x8e\x92\x92\x95\xa4\xa3\xa5\xa8\ +\xa7\xaa\xa8\xa7\xaa\xa9\xa8\xaa\xa8\xa7\xa9\xa6\xa5\xa7\xa7\xa6\ +\xa8\xaa\xa9\xab\xab\xaa\xac\xac\xab\xad\xad\xad\xae\xad\xac\xae\ +\xab\xaa\xac\xab\xaa\xac\xaf\xb0\xb1\xb1\xb0\xb2\xb0\xaf\xb1\xb0\ +\xb0\xb1\xb1\xb0\xb2\xb1\xb2\xb4\xb1\xb1\xb3\xb0\xaf\xb1\xb0\xaf\ +\xb1\xb4\xb3\xb5\xb6\xb5\xb7\xb0\xb1\xb2\xaa\xac\xad\x9a\x9d\x9e\ +\x97\x96\x96\xa5\xa3\xa4\xb2\xb1\xb1\xae\xae\xaf\x9f\x9e\xa1\x99\ +\x98\x9a\xa5\xa3\xa5\xb5\xb4\xb5\xb4\xb4\xb5\xa7\xa6\xa7\x99\x97\ +\x99\xa1\x9e\x9f\xb1\xaf\xb0\xbb\xb9\xb9\xb0\xb0\xb1\xa0\x9f\xa0\ +\x9e\x9c\x9e\xb0\xaf\xb0\xb9\xb8\xb9\xb6\xb5\xb5\xa6\xa4\xa4\x9c\ +\x99\x99\xab\xa6\xa7\xbb\xb8\xb9\xbf\xbc\xbe\xbf\xbd\xbf\xc0\xbf\ +\xc1\xc1\xbf\xc1\xbf\xbd\xbf\xbe\xbb\xbc\xbf\xbd\xbe\xc1\xbe\xc0\ +\xc0\xbf\xc1\xc1\xc1\xc2\x00\x00\x00\xd6\xcf\xcc\xd1\xc8\xc5\xc8\ +\xc0\xbc\xbb\xb3\xb1\xa2\x9c\x9d\x83\x80\x82\x66\x69\x6c\x51\x56\ +\x5b\x49\x4e\x53\x59\x5a\x5d\x73\x71\x72\x88\x82\x83\x92\x8e\x8f\ +\x9a\x95\x96\x9c\x97\x99\x9e\x9a\x9c\x9e\x9c\x9e\x9c\x9a\x9c\x99\ +\x98\x99\x90\x90\x91\x87\x86\x88\x7f\x80\x82\x81\x83\x84\x85\x86\ +\x89\x87\x87\x8a\x89\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x80\x83\x87\ +\x80\x84\x88\x7d\x81\x85\x7e\x81\x84\x7e\x81\x85\x7c\x7f\x84\x79\ +\x7d\x82\x7a\x7e\x83\x79\x7d\x82\x77\x7b\x80\x77\x7b\x80\x78\x7c\ +\x81\x77\x7c\x80\x79\x7c\x81\x78\x7e\x83\x74\x7a\x7f\x63\x69\x70\ +\x44\x4d\x57\x23\x32\x3c\x2a\x37\x42\x33\x3b\x45\x32\x38\x41\x18\ +\x21\x2a\x19\x22\x2b\x40\x44\x4c\x63\x66\x6b\x6d\x71\x76\x70\x75\ +\x79\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x6f\x73\x78\x6b\x6e\x73\ +\x4e\x51\x59\x43\x43\x4b\x60\x5e\x64\x7c\x7e\x82\x7e\x82\x86\x7f\ +\x84\x88\x83\x89\x8d\x83\x88\x8c\x84\x89\x8d\x85\x89\x8e\x84\x89\ +\x8c\x82\x87\x8a\x85\x87\x8b\x89\x8c\x90\x8d\x90\x94\x8d\x90\x94\ +\x90\x94\x97\x8f\x94\x97\x90\x95\x98\x91\x96\x99\x90\x95\x98\x90\ +\x95\x98\x8a\x8f\x92\x80\x85\x88\x83\x87\x8a\x8d\x90\x94\x8a\x8d\ +\x91\x84\x87\x8b\x87\x89\x8d\x90\x91\x95\x8d\x8f\x93\x87\x8a\x8e\ +\x8c\x8e\x92\x95\x97\x9b\x8f\x90\x94\x8e\x8f\x93\x92\x94\x97\x9b\ +\x9d\x9e\x93\x95\x96\x8a\x8b\x8e\x8e\x90\x91\xa1\xa0\xa2\xa8\xa7\ +\xa9\xa6\xa7\xa7\xa9\xa9\xaa\xa9\xa8\xaa\xaa\xa9\xab\xac\xab\xad\ +\xac\xac\xae\xae\xaf\xb0\xae\xae\xb0\xae\xad\xaf\xab\xaa\xac\xae\ +\xad\xaf\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\ +\xb2\xb2\xb1\xb3\xb1\xb1\xb2\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\ +\xb6\xb5\xb7\xb5\xb4\xb6\xb2\xb3\xb4\xad\xb0\xb1\xa4\xa4\xa6\x97\ +\x95\x97\x96\x95\x97\xa9\xa7\xa8\xb2\xb1\xb2\xa7\xa6\xa8\x9b\x9a\ +\x9c\x9e\x9c\x9e\xae\xad\xac\xb7\xb6\xb8\xae\xae\xb0\x9d\x9c\x9f\ +\x9b\x9a\x9c\xac\xab\xab\xb9\xb8\xb7\xb7\xb7\xb7\xab\xab\xac\x9a\ +\x9a\x9a\xa1\xa0\xa1\xb6\xb2\xb2\xbe\xba\xbb\xb6\xb3\xb4\xa3\xa0\ +\xa1\xa0\x9b\x9d\xb1\xad\xaf\xbe\xba\xbb\xc0\xbd\xbe\xc2\xc0\xc2\ +\xbf\xbc\xbe\xbe\xbb\xbd\xbd\xbc\xbd\xbd\xbb\xbd\xc0\xbd\xbf\xc3\ +\xc1\xc2\x00\x00\x00\xd6\xcd\xca\xce\xc6\xc2\xc4\xbc\xb8\xb3\xac\ +\xa9\x97\x92\x91\x76\x76\x77\x5d\x60\x65\x4b\x51\x58\x4d\x51\x57\ +\x62\x62\x65\x7b\x76\x76\x89\x84\x84\x96\x90\x91\x9c\x96\x98\x9f\ +\x9a\x9c\x9e\x9b\x9d\x9c\x99\x9b\x9d\x9a\x9c\x98\x96\x98\x88\x88\ +\x89\x7e\x7f\x80\x7c\x7d\x7f\x7c\x7d\x7f\x7c\x7e\x7f\x85\x86\x88\ +\x87\x89\x8c\x85\x88\x8c\x82\x85\x89\x80\x83\x87\x7e\x82\x85\x7e\ +\x82\x85\x7d\x80\x84\x7b\x7f\x82\x7b\x7e\x83\x7b\x7f\x83\x79\x7d\ +\x82\x78\x7c\x81\x76\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\x77\x7a\x80\ +\x76\x7b\x7e\x76\x7a\x80\x71\x76\x7b\x59\x61\x69\x39\x45\x50\x26\ +\x35\x42\x2f\x3c\x47\x3b\x44\x4d\x23\x2b\x34\x11\x1b\x25\x22\x2b\ +\x35\x49\x4f\x56\x66\x69\x6e\x6d\x71\x76\x71\x75\x7a\x6f\x73\x78\ +\x6e\x72\x77\x72\x76\x7b\x72\x76\x7b\x68\x6c\x71\x3c\x43\x4b\x0d\ +\x13\x1c\x2f\x2e\x36\x6c\x6a\x6f\x80\x83\x87\x80\x85\x89\x83\x88\ +\x8d\x86\x8b\x8f\x85\x8a\x8d\x84\x89\x8c\x84\x88\x8c\x7e\x82\x86\ +\x79\x7c\x80\x7d\x81\x83\x89\x8c\x90\x8e\x91\x95\x90\x93\x97\x90\ +\x95\x98\x90\x95\x98\x8f\x94\x97\x8f\x94\x97\x90\x94\x98\x92\x97\ +\x9a\x89\x8e\x91\x83\x86\x8a\x82\x86\x8a\x8e\x91\x95\x8c\x8f\x93\ +\x84\x87\x8b\x87\x88\x8d\x90\x93\x97\x8c\x8f\x93\x86\x89\x8d\x8d\ +\x8f\x92\x9b\x9c\x9f\x95\x96\x99\x8c\x8d\x91\x90\x90\x92\x9b\x9a\ +\x9c\x96\x97\x9a\x8b\x8d\x8f\x8e\x8f\x91\x9e\x9e\x9f\xa9\xa9\xaa\ +\xa9\xa9\xaa\xaa\xa9\xab\xa9\xa8\xaa\xab\xaa\xac\xad\xac\xae\xad\ +\xad\xaf\xad\xad\xaf\xad\xab\xad\xae\xad\xaf\xb0\xaf\xb1\xb1\xb0\ +\xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb2\xb0\xb2\xb1\xb1\xb3\xb2\xb2\xb4\ +\xb2\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb5\xb5\xb6\xb6\ +\xb5\xb7\xb3\xb3\xb5\xb6\xb5\xb7\xb4\xb3\xb4\xac\xab\xad\x9d\x9c\ +\x9e\x99\x97\x99\xa3\xa2\xa4\xb5\xb4\xb6\xb5\xb4\xb6\xa3\xa2\xa4\ +\x9a\x99\x9b\xa6\xa5\xa6\xb5\xb4\xb5\xb4\xb4\xb4\xa4\xa4\xa6\x97\ +\x97\x97\xa3\xa1\xa1\xb6\xb4\xb4\xbe\xbc\xbc\xb2\xb0\xb1\xa0\x9e\ +\x9e\x9d\x99\x99\xb2\xad\xae\xbe\xbc\xbb\xbc\xba\xba\xac\xa9\xaa\ +\x9d\x99\x9b\xa7\xa2\xa3\xbb\xb8\xb9\xc0\xbd\xbe\xbd\xba\xbc\xbe\ +\xbb\xbd\xc0\xbe\xbf\xbd\xba\xbd\xc0\xbd\xbf\xc0\xbe\xbf\x00\x00\ +\x00\xd3\xca\xc6\xcb\xc2\xbf\xc0\xb7\xb3\xaa\xa3\xa0\x8a\x88\x86\ +\x6b\x6d\x6e\x56\x59\x60\x49\x4c\x56\x52\x54\x5b\x6b\x68\x6a\x82\ +\x7d\x7b\x8f\x8a\x89\x97\x91\x92\x9d\x98\x9a\x9e\x9b\x9d\x9f\x9c\ +\x9e\x9d\x9a\x9c\x9b\x9a\x9c\x92\x91\x93\x83\x84\x86\x79\x7b\x7c\ +\x76\x78\x79\x73\x75\x76\x7b\x7d\x7d\x82\x83\x87\x83\x85\x89\x80\ +\x83\x87\x82\x83\x87\x7f\x82\x86\x7a\x7d\x81\x7c\x7f\x83\x7d\x81\ +\x85\x7c\x81\x84\x7a\x7f\x82\x78\x7c\x80\x77\x7c\x80\x77\x7c\x80\ +\x77\x7b\x80\x76\x7b\x80\x77\x7b\x7f\x75\x7a\x7d\x76\x79\x7f\x76\ +\x7b\x80\x73\x78\x7e\x5e\x67\x6e\x3b\x4a\x53\x31\x40\x4b\x3b\x48\ +\x50\x40\x4b\x53\x23\x31\x3b\x0f\x1d\x27\x2b\x36\x40\x56\x5b\x63\ +\x6a\x6e\x73\x6f\x73\x78\x6b\x6f\x74\x6f\x73\x78\x71\x75\x7a\x6f\ +\x74\x78\x72\x77\x79\x6a\x6f\x73\x44\x4c\x55\x0f\x18\x21\x0d\x10\ +\x17\x4c\x4c\x52\x7a\x7b\x7f\x80\x84\x88\x83\x88\x8c\x85\x8a\x8e\ +\x85\x89\x8e\x84\x88\x8c\x87\x8c\x90\x85\x8a\x8d\x7b\x80\x83\x7d\ +\x81\x84\x83\x86\x8a\x8c\x90\x93\x8f\x93\x97\x90\x94\x98\x90\x95\ +\x99\x8f\x93\x96\x92\x97\x9a\x92\x95\x99\x93\x97\x9a\x92\x96\x9a\ +\x8c\x91\x94\x84\x88\x8d\x83\x86\x8a\x8b\x8e\x92\x8a\x8d\x91\x84\ +\x87\x8b\x87\x89\x8d\x92\x93\x97\x93\x95\x98\x8a\x8c\x8f\x8c\x8d\ +\x90\x99\x9a\x9d\x97\x98\x9b\x8e\x8f\x90\x8f\x8e\x90\x9a\x99\x9b\ +\x9a\x9c\x9d\x91\x93\x94\x90\x91\x94\x9b\x9b\x9c\xa8\xa8\xa8\xa7\ +\xa7\xa8\xa8\xa7\xa9\xaa\xa9\xab\xab\xaa\xac\xaa\xa9\xab\xae\xad\ +\xaf\xae\xad\xaf\xae\xad\xaf\xac\xab\xad\xb0\xaf\xb1\xb3\xb2\xb4\ +\xb2\xb1\xb3\xaf\xae\xb0\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb2\xb3\ +\xb2\xb3\xb4\xb3\xb4\xb3\xb2\xb3\xb5\xb4\xb6\xb6\xb5\xb7\xb5\xb4\ +\xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb3\xb3\xb3\xa3\xa3\xa4\ +\x97\x96\x98\xa0\x9f\xa1\xb2\xb1\xb3\xb6\xb6\xb7\xaa\xab\xad\x98\ +\x99\x99\x9c\x9a\x9a\xae\xaa\xaa\xb7\xb6\xb7\xb1\xb0\xb1\xa3\xa2\ +\xa2\x9c\x99\x9a\xac\xa9\xa9\xbd\xb9\xba\xbb\xb9\xb9\xae\xac\xac\ +\x9e\x9b\x9c\xa5\xa1\xa3\xb6\xb3\xb4\xbd\xba\xbb\xb7\xb4\xb6\xa7\ +\xa4\xa6\x9e\x9b\x9c\xab\xa7\xa9\xba\xb7\xb9\xc2\xbf\xc1\xbd\xbb\ +\xbc\xc0\xbd\xbf\xbf\xbd\xbf\xc0\xbe\xbf\x00\x00\x00\xcf\xc6\xc2\ +\xc5\xbb\xb9\xb8\xaf\xac\xa1\x9b\x98\x80\x80\x7e\x63\x66\x68\x4f\ +\x53\x5a\x4c\x50\x59\x5a\x5a\x60\x75\x71\x73\x87\x82\x80\x93\x8c\ +\x8e\x9a\x95\x96\x9e\x99\x9b\xa0\x9e\x9f\x9e\x9b\x9d\x9d\x9a\x9c\ +\x98\x97\x99\x8c\x8c\x8e\x7e\x7f\x80\x78\x7a\x7b\x74\x76\x77\x72\ +\x74\x75\x7b\x7d\x7e\x7f\x81\x83\x7e\x80\x84\x81\x84\x88\x80\x83\ +\x87\x7e\x81\x85\x7e\x81\x85\x7d\x81\x84\x7c\x81\x84\x7b\x7f\x83\ +\x7a\x7f\x82\x79\x7e\x81\x77\x7c\x7f\x77\x7c\x80\x77\x7b\x80\x78\ +\x7c\x80\x76\x7b\x7e\x76\x7b\x7e\x76\x7a\x7f\x76\x7a\x7f\x72\x78\ +\x7d\x62\x6b\x71\x4c\x59\x61\x48\x57\x5f\x54\x60\x65\x54\x5e\x64\ +\x3b\x49\x54\x21\x32\x3f\x36\x45\x4f\x5e\x65\x6d\x6a\x6d\x73\x6e\ +\x72\x77\x6e\x72\x77\x6e\x72\x77\x71\x76\x7b\x6e\x73\x77\x6e\x73\ +\x77\x6f\x74\x77\x54\x5e\x63\x23\x31\x39\x05\x13\x19\x31\x3a\x41\ +\x6d\x71\x77\x7f\x84\x89\x80\x85\x89\x84\x89\x8c\x85\x89\x8d\x84\ +\x88\x8c\x86\x8b\x8f\x87\x8b\x8e\x85\x8a\x8d\x84\x89\x8c\x87\x8c\ +\x90\x8e\x91\x95\x8e\x93\x96\x91\x95\x99\x92\x96\x9a\x91\x95\x99\ +\x90\x94\x98\x92\x95\x99\x94\x97\x9b\x94\x99\x9c\x95\x9a\x9e\x8f\ +\x93\x98\x87\x8a\x8e\x85\x88\x8d\x8e\x91\x95\x8d\x90\x94\x87\x8a\ +\x8d\x89\x8b\x8e\x94\x96\x99\x93\x95\x97\x8e\x90\x92\x8f\x8f\x91\ +\x97\x96\x98\x98\x99\x9b\x90\x92\x96\x90\x91\x94\x98\x98\x9a\x9e\ +\x9d\x9f\x93\x94\x95\x8d\x8e\x8f\x98\x97\x99\xa6\xa5\xa7\xac\xab\ +\xad\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xac\xab\xad\xae\xad\xae\ +\xae\xad\xaf\xae\xad\xaf\xae\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\xaf\ +\xb0\xb2\xb0\xaf\xb1\xb3\xb2\xb4\xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\ +\xb4\xb5\xb4\xb5\xb6\xb5\xb6\xb6\xb5\xb6\xb5\xb3\xb5\xb3\xb2\xb4\ +\xb4\xb3\xb4\xb8\xb7\xb9\xb4\xb3\xb5\xb3\xb3\xb3\xab\xab\xac\x9d\ +\x9e\x9f\x9d\x9b\x9d\xae\xac\xae\xb9\xb8\xb9\xb0\xb0\xb0\xa1\x9f\ +\x9f\x9b\x99\x99\xa8\xa5\xa6\xb8\xb5\xb7\xbb\xb9\xb9\xaa\xaa\xaa\ +\x9c\x99\x9b\xa1\x9e\x9e\xb3\xb0\xb0\xbe\xbc\xbc\xb7\xb6\xb6\xa7\ +\xa5\xa5\xa2\x9e\xa0\xaa\xa6\xa8\xbb\xb8\xb9\xbe\xbc\xbc\xb6\xb4\ +\xb5\xa1\x9f\xa1\xa0\x9d\x9f\xb4\xb0\xb2\xbd\xba\xbb\xc0\xbd\xbf\ +\xbd\xbb\xbc\xc1\xbf\xbe\x00\x00\x00\xcd\xc4\xc1\xc2\xb9\xb6\xb1\ +\xa9\xa6\x93\x90\x8e\x72\x76\x75\x58\x5e\x60\x49\x50\x56\x4d\x50\ +\x58\x61\x61\x67\x7e\x79\x7b\x8c\x86\x87\x96\x90\x91\x99\x94\x96\ +\x9b\x97\x99\x9e\x9b\x9c\x9c\x99\x9b\x9c\x9a\x9c\x95\x94\x96\x89\ +\x88\x8a\x7b\x7d\x7e\x75\x78\x79\x73\x76\x77\x73\x76\x77\x77\x79\ +\x7a\x7b\x7d\x7f\x7c\x7e\x82\x7f\x82\x86\x7f\x82\x86\x7e\x82\x86\ +\x7b\x80\x83\x7c\x80\x83\x79\x7d\x81\x7a\x7e\x82\x7a\x7e\x81\x78\ +\x7c\x7f\x77\x7c\x7f\x76\x7b\x7e\x75\x79\x7e\x76\x7a\x7e\x78\x7d\ +\x81\x75\x79\x7f\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x6c\x73\x79\ +\x67\x6f\x76\x60\x6a\x70\x65\x6e\x74\x64\x6e\x71\x55\x63\x69\x44\ +\x55\x60\x49\x56\x60\x63\x69\x71\x69\x70\x77\x69\x6f\x74\x6d\x72\ +\x77\x71\x75\x7a\x6e\x73\x78\x72\x77\x7c\x6e\x73\x77\x6f\x75\x78\ +\x6b\x71\x77\x4a\x57\x60\x2d\x43\x4c\x3e\x4f\x57\x66\x6e\x74\x7d\ +\x83\x87\x82\x87\x8a\x85\x88\x8d\x86\x8a\x8f\x84\x87\x8c\x86\x8b\ +\x8f\x88\x8c\x90\x89\x8d\x92\x8a\x8e\x92\x8d\x91\x95\x91\x94\x98\ +\x8e\x92\x96\x90\x95\x98\x91\x95\x9a\x90\x94\x99\x91\x96\x9b\x91\ +\x94\x98\x93\x96\x9a\x97\x9a\x9d\x95\x98\x9c\x96\x99\x9e\x91\x95\ +\x98\x88\x8c\x8f\x83\x86\x8a\x88\x8b\x8f\x8e\x91\x94\x89\x8c\x8e\ +\x87\x89\x8c\x93\x95\x96\x97\x98\x9a\x92\x93\x96\x8d\x8d\x8f\x96\ +\x96\x98\x9a\x9c\x9e\x95\x96\x9a\x91\x92\x94\x98\x97\x99\x9c\x9b\ +\x9d\x96\x97\x98\x91\x92\x95\x96\x96\x99\xa2\xa1\xa4\xa9\xa9\xaa\ +\xac\xab\xad\xad\xac\xae\xad\xac\xad\xaf\xae\xaf\xaf\xae\xb0\xac\ +\xac\xae\xad\xaf\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb1\xaf\xae\ +\xb0\xb1\xb0\xb2\xb2\xb2\xb3\xb4\xb4\xb4\xb3\xb3\xb3\xb4\xb5\xb4\ +\xb6\xb6\xb7\xb5\xb5\xb5\xb3\xb2\xb3\xb3\xb2\xb4\xb2\xb2\xb3\xb7\ +\xb6\xb7\xb5\xb4\xb6\xb5\xb5\xb5\xb7\xb7\xb7\xb3\xb4\xb5\xa6\xa7\ +\xa8\x9d\x9d\x9e\xa6\xa5\xa7\xb1\xaf\xb0\xb6\xb4\xb4\xab\xaa\xa9\ +\x9c\x9a\x9b\xa2\xa0\xa2\xb4\xb1\xb2\xbb\xba\xba\xb3\xb3\xb3\xa4\ +\xa3\xa4\x9a\x97\x98\xa9\xa5\xa6\xba\xb8\xb8\xbc\xbc\xba\xb1\xb0\ +\xaf\xa2\xa0\xa1\xa5\xa1\xa3\xb3\xb0\xb1\xc0\xbd\xbe\xba\xb9\xbb\ +\xa7\xa6\xa8\x9e\x9b\x9d\xa5\xa2\xa5\xb6\xb3\xb5\xbe\xbb\xbd\xc0\ +\xbc\xbd\x00\x00\x00\xc9\xc0\xbc\xbc\xb4\xb0\xa7\xa1\x9f\x88\x86\ +\x86\x69\x6e\x6f\x4f\x57\x5a\x49\x50\x56\x57\x58\x5f\x6e\x6b\x6f\ +\x83\x7e\x80\x90\x8a\x8c\x99\x94\x96\x9b\x97\x99\x9b\x97\x99\x9e\ +\x9b\x9d\x9b\x98\x9a\x99\x97\x99\x92\x90\x93\x82\x82\x84\x78\x7a\ +\x7b\x73\x75\x76\x6f\x72\x73\x76\x78\x79\x79\x7b\x7c\x77\x79\x7a\ +\x7a\x7d\x80\x7d\x80\x84\x7e\x81\x85\x7d\x80\x84\x7c\x80\x84\x7b\ +\x7f\x83\x7a\x7f\x82\x78\x7d\x80\x77\x7c\x7f\x77\x7c\x7f\x76\x7c\ +\x7e\x76\x7b\x7f\x76\x7a\x7e\x76\x7a\x7f\x76\x7b\x7f\x75\x79\x7d\ +\x75\x7a\x7e\x74\x79\x7e\x75\x7a\x7f\x74\x79\x7e\x71\x77\x7d\x70\ +\x77\x7b\x70\x77\x7b\x71\x79\x7c\x6b\x75\x79\x61\x6c\x72\x5e\x67\ +\x6e\x68\x6e\x74\x70\x76\x7c\x6d\x73\x78\x6d\x73\x78\x70\x75\x7a\ +\x6f\x73\x78\x6e\x73\x78\x6f\x74\x78\x6f\x75\x78\x70\x76\x78\x63\ +\x6b\x70\x54\x60\x66\x5e\x68\x6e\x76\x7c\x80\x7f\x84\x87\x81\x86\ +\x8a\x85\x88\x8d\x84\x89\x8d\x89\x8d\x92\x88\x8c\x90\x87\x8b\x8f\ +\x8a\x8e\x93\x8a\x8f\x93\x8c\x91\x95\x8f\x92\x97\x8e\x92\x96\x8f\ +\x94\x97\x90\x94\x98\x91\x95\x99\x92\x95\x9a\x90\x94\x98\x94\x98\ +\x9b\x95\x98\x9c\x95\x99\x9d\x96\x9a\x9d\x96\x99\x9d\x93\x96\x9b\ +\x88\x8b\x90\x83\x86\x8a\x8a\x8d\x8f\x90\x93\x94\x8d\x8f\x91\x88\ +\x8b\x8c\x91\x91\x93\x98\x98\x9a\x93\x93\x95\x8d\x8f\x90\x97\x97\ +\x98\x9e\x9e\x9f\x97\x99\x9b\x90\x91\x95\x92\x92\x94\x9a\x9c\x9d\ +\x9b\x9c\x9e\x90\x91\x96\x92\x94\x97\xa0\xa0\xa2\xa9\xa8\xaa\xae\ +\xad\xaf\xad\xad\xae\xab\xab\xac\xae\xad\xaf\xaf\xae\xb0\xad\xab\ +\xae\xae\xae\xb0\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\ +\xb2\xb2\xb2\xb3\xb3\xb3\xb2\xb2\xb2\xb3\xb3\xb3\xb5\xb5\xb6\xb4\ +\xb3\xb4\xb2\xb2\xb2\xb4\xb3\xb4\xb4\xb3\xb4\xb5\xb4\xb5\xb5\xb4\ +\xb6\xb8\xb7\xb9\xb6\xb6\xb6\xb7\xb6\xb8\xb6\xb5\xb7\xb1\xb0\xb2\ +\xa5\xa4\xa4\xa3\xa1\xa1\xad\xab\xab\xb8\xb6\xb6\xb3\xb2\xb2\xa6\ +\xa4\xa5\xa1\x9e\xa0\xab\xa8\xa9\xb8\xb7\xb7\xbb\xba\xba\xb2\xb1\ +\xb1\xa0\x9d\x9e\xa0\x9d\x9d\xae\xac\xab\xbb\xb9\xb8\xba\xb8\xb9\ +\xab\xa9\xab\xa1\x9e\xa0\xa9\xa6\xa8\xb6\xb3\xb6\xbf\xbd\xbf\xb6\ +\xb4\xb6\xa5\xa2\xa4\xa1\x9d\x9f\xae\xa9\xab\xb8\xb3\xb5\x00\x00\ +\x00\xc5\xbc\xb8\xb6\xae\xab\x9b\x97\x95\x7c\x7b\x7c\x5e\x64\x65\ +\x49\x51\x54\x4a\x50\x55\x5c\x5d\x61\x76\x73\x75\x89\x84\x86\x93\ +\x8e\x90\x99\x96\x97\x9a\x97\x98\x9c\x99\x9a\x9d\x9a\x9c\x99\x96\ +\x98\x97\x95\x97\x8e\x8d\x8f\x7d\x7e\x7f\x74\x76\x77\x6d\x71\x72\ +\x6c\x6f\x70\x76\x78\x79\x76\x79\x7a\x74\x77\x78\x79\x7a\x7d\x79\ +\x7b\x7f\x7c\x7f\x81\x7c\x7f\x83\x7c\x7f\x83\x7b\x7e\x82\x7a\x7e\ +\x82\x78\x7d\x81\x77\x7c\x7f\x77\x7c\x7f\x75\x7a\x7e\x76\x7b\x7e\ +\x76\x7b\x7f\x76\x7a\x7e\x75\x79\x7d\x74\x78\x7c\x73\x78\x7d\x75\ +\x7a\x7f\x75\x7a\x7f\x73\x79\x7e\x74\x79\x7d\x76\x7b\x7f\x75\x7a\ +\x7f\x76\x7c\x7f\x75\x7c\x80\x6f\x77\x7c\x6c\x73\x79\x6b\x71\x77\ +\x6d\x73\x78\x6f\x75\x7b\x6c\x72\x77\x6e\x73\x78\x70\x76\x7b\x6d\ +\x72\x76\x70\x76\x79\x70\x75\x79\x6e\x73\x76\x66\x6c\x70\x63\x6b\ +\x6f\x6a\x71\x74\x7a\x7e\x82\x83\x86\x8a\x84\x88\x8c\x84\x87\x8c\ +\x86\x89\x8d\x87\x8b\x8f\x89\x8d\x93\x8a\x8e\x93\x89\x8d\x92\x8c\ +\x90\x95\x8e\x91\x95\x8e\x92\x96\x90\x94\x98\x92\x96\x99\x90\x93\ +\x97\x91\x93\x97\x91\x93\x97\x92\x95\x99\x93\x96\x9a\x94\x97\x9a\ +\x94\x98\x9c\x95\x98\x9c\x99\x9c\xa0\x97\x9a\x9f\x93\x96\x9b\x8c\ +\x8f\x93\x86\x89\x8d\x8a\x8c\x8f\x91\x94\x95\x8e\x90\x92\x88\x8a\ +\x8c\x91\x92\x93\x9b\x9c\x9d\x97\x98\x99\x92\x92\x94\x95\x95\x97\ +\xa0\xa1\xa3\x9e\x9f\xa3\x91\x94\x96\x91\x92\x95\x99\x9b\x9d\x9b\ +\x9d\xa0\x93\x95\x98\x92\x93\x95\x9e\x9e\xa0\xaa\xa9\xab\xad\xac\ +\xae\xad\xac\xae\xae\xad\xaf\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\ +\xae\xad\xaf\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\xb1\xb1\xb1\xb0\ +\xb0\xb0\xb2\xb2\xb2\xb2\xb2\xb2\xb1\xb1\xb2\xb2\xb1\xb2\xb1\xb0\ +\xb2\xb3\xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb8\xb7\xb9\ +\xb8\xb7\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb8\xb7\xb8\xb5\xb5\xb5\xaa\ +\xaa\xaa\x9e\x9d\x9e\xa3\xa1\xa3\xb2\xae\xb0\xba\xb7\xb8\xb2\xb1\ +\xb2\xa6\xa4\xa5\xa2\xa0\xa0\xad\xab\xab\xbf\xbc\xbc\xbb\xb9\xba\ +\xa9\xa9\xa9\x9f\x9e\x9f\xa5\xa3\xa5\xb6\xb3\xb4\xbe\xbc\xbe\xb5\ +\xb3\xb5\xa6\xa3\xa5\xa3\xa0\xa2\xb1\xae\xb1\xb9\xb6\xb8\xbe\xbb\ +\xbd\xb4\xb3\xb4\xa3\xa0\xa3\xa5\xa1\xa3\x00\x00\x00\xc0\xb7\xb3\ +\xad\xa6\xa2\x8e\x8c\x8a\x71\x72\x73\x55\x5b\x5c\x46\x4e\x50\x4e\ +\x53\x57\x65\x66\x68\x7d\x79\x7b\x8c\x88\x89\x95\x91\x93\x99\x96\ +\x98\x9b\x98\x99\x9a\x98\x98\x9b\x98\x9a\x99\x98\x9a\x96\x94\x96\ +\x8a\x8a\x8c\x7b\x7c\x7f\x71\x74\x75\x6c\x70\x70\x6e\x71\x72\x76\ +\x78\x79\x74\x77\x78\x72\x75\x76\x74\x76\x78\x77\x79\x7d\x78\x79\ +\x7c\x7b\x7e\x81\x7b\x7e\x82\x7a\x7d\x81\x7a\x7e\x82\x78\x7d\x81\ +\x76\x7b\x7f\x74\x79\x7d\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7e\x75\ +\x7a\x7e\x75\x79\x7e\x74\x78\x7c\x75\x79\x7e\x75\x7a\x7f\x75\x7a\ +\x7f\x75\x7a\x80\x73\x7a\x7f\x74\x7b\x7f\x75\x7b\x7f\x77\x7d\x81\ +\x7a\x80\x85\x78\x7e\x83\x71\x78\x7d\x6d\x75\x7c\x6b\x71\x78\x6d\ +\x73\x79\x6f\x75\x79\x6c\x72\x77\x70\x75\x7a\x73\x78\x7b\x70\x75\ +\x78\x70\x74\x78\x6b\x71\x75\x62\x69\x6e\x64\x6b\x70\x6a\x71\x74\ +\x78\x7c\x80\x84\x87\x8a\x87\x8a\x8e\x88\x8b\x8e\x87\x8a\x8e\x87\ +\x8b\x8f\x89\x8d\x92\x8b\x8f\x94\x8c\x8f\x94\x90\x93\x98\x90\x93\ +\x97\x90\x93\x97\x8e\x92\x95\x8e\x91\x94\x83\x85\x88\x7c\x7e\x80\ +\x82\x83\x86\x8d\x90\x94\x93\x97\x9a\x95\x98\x9d\x94\x97\x9b\x96\ +\x98\x9c\x96\x99\x9d\x97\x9a\x9e\x97\x9a\x9e\x98\x9a\x9e\x8f\x92\ +\x96\x89\x8c\x8f\x8b\x8d\x8f\x92\x94\x95\x92\x94\x95\x8d\x8f\x90\ +\x92\x93\x94\x9b\x9a\x9c\x9a\x9b\x9d\x95\x96\x99\x95\x95\x99\x9e\ +\x9f\xa3\x9d\x9e\xa1\x94\x96\x9a\x8e\x90\x93\x97\x99\x9b\x9c\x9e\ +\x9f\x98\x9a\x9b\x94\x95\x98\x9a\x9a\x9d\xa6\xa5\xa7\xac\xab\xad\ +\xae\xad\xae\xaf\xae\xb0\xad\xac\xae\xae\xad\xaf\xad\xad\xae\xb1\ +\xaf\xb2\xae\xad\xaf\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\ +\xb0\xb3\xb3\xb3\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\ +\xb6\xb4\xb6\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb8\ +\xb7\xb9\xb5\xb4\xb7\xb5\xb4\xb6\xba\xb9\xba\xbb\xbb\xbb\xb1\xb0\ +\xb2\xa2\xa1\xa3\x9f\x9d\x9f\xad\xab\xad\xb8\xb7\xb7\xb9\xb9\xb9\ +\xa8\xa8\xa9\x9f\x9e\x9e\xa7\xa5\xa5\xb5\xb2\xb3\xbb\xba\xba\xb3\ +\xb2\xb3\xa2\xa1\xa3\xa0\x9e\xa0\xac\xa9\xab\xba\xb7\xb9\xbd\xbc\ +\xbe\xb2\xb0\xb2\xa7\xa4\xa8\xa4\xa1\xa2\xb2\xaf\xb1\xbb\xb9\xba\ +\xbd\xba\xbc\xb1\xae\xb0\x00\x00\x00\xba\xb2\xae\xa4\x9d\x9b\x82\ +\x80\x80\x67\x6a\x6b\x4e\x55\x55\x44\x4c\x4d\x54\x5a\x5a\x6e\x6f\ +\x6f\x83\x7f\x80\x8e\x8c\x8c\x98\x95\x97\x9b\x98\x9a\x9a\x98\x99\ +\x9b\x99\x9a\x9a\x98\x9a\x97\x96\x98\x93\x93\x94\x85\x85\x88\x77\ +\x79\x7c\x6e\x71\x73\x69\x6d\x6e\x6e\x71\x72\x77\x79\x7a\x71\x74\ +\x75\x70\x73\x76\x71\x74\x77\x74\x77\x7b\x77\x79\x7d\x7b\x7e\x82\ +\x7b\x7e\x82\x79\x7d\x80\x78\x7c\x80\x79\x7e\x81\x77\x7c\x7f\x75\ +\x7a\x7d\x75\x7a\x7e\x76\x7a\x7f\x75\x78\x7e\x74\x78\x7d\x74\x78\ +\x7d\x75\x79\x7d\x74\x78\x7d\x75\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\ +\x76\x7b\x81\x77\x7c\x81\x76\x7a\x7f\x76\x7b\x80\x77\x7d\x82\x79\ +\x7f\x84\x77\x7d\x82\x71\x78\x7f\x6d\x73\x7a\x6a\x70\x77\x6f\x75\ +\x7a\x6f\x75\x7a\x6e\x74\x78\x6f\x76\x79\x70\x75\x78\x6d\x73\x75\ +\x68\x6f\x72\x64\x6b\x6f\x66\x6e\x71\x70\x76\x78\x76\x7a\x7d\x7c\ +\x7f\x83\x85\x88\x8c\x88\x8b\x8f\x87\x8a\x8e\x89\x8b\x91\x89\x8d\ +\x92\x8b\x8e\x92\x8c\x8f\x95\x8d\x90\x95\x90\x93\x97\x8e\x92\x96\ +\x8d\x91\x94\x85\x89\x8c\x6f\x73\x76\x5c\x62\x65\x6b\x6e\x71\x85\ +\x86\x8a\x93\x96\x99\x96\x98\x9c\x95\x97\x9b\x96\x97\x9b\x95\x97\ +\x9b\x96\x98\x9c\x98\x9b\x9f\x99\x9b\x9f\x98\x9a\x9e\x92\x95\x99\ +\x8b\x8e\x91\x8a\x8d\x8e\x94\x95\x96\x98\x9a\x9b\x93\x95\x96\x92\ +\x92\x94\x9c\x9b\x9d\x9c\x9c\x9f\x95\x96\x9a\x91\x93\x97\x96\x97\ +\x9b\xa0\xa1\xa4\x98\x9b\x9d\x90\x92\x95\x93\x95\x97\x9d\x9e\xa0\ +\x9e\x9e\xa1\x97\x98\x9c\x98\x98\x9a\xa2\xa1\xa3\xa9\xa8\xa8\xb0\ +\xaf\xb0\xae\xaf\xaf\xaf\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xb0\xaf\ +\xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\xb0\xb3\xb3\xb3\ +\xb3\xb3\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb1\xb0\xb2\xb3\xb2\xb4\xb7\ +\xb6\xb8\xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb9\xb8\xba\xb5\xb4\ +\xb6\xb6\xb5\xb7\xbb\xba\xbc\xbc\xbb\xbc\xb9\xb8\xbb\xb4\xb3\xb6\ +\xac\xac\xad\xa3\xa2\xa3\xa3\xa1\xa1\xb1\xb0\xb0\xb7\xb5\xb5\xb1\ +\xb0\xb0\xa4\xa4\xa4\xa1\x9f\x9f\xa8\xa5\xa5\xb4\xb2\xb2\xbb\xba\ +\xba\xae\xae\xaf\xa4\xa2\xa4\xa4\xa1\xa2\xb1\xae\xaf\xbe\xbc\xbd\ +\xbb\xb8\xb9\xad\xac\xab\xa6\xa3\xa4\xa9\xa4\xa6\xb3\xaf\xb0\xbe\ +\xba\xbb\x00\x00\x00\xb5\xad\xab\x99\x94\x93\x79\x79\x79\x5e\x63\ +\x64\x4a\x52\x53\x4a\x50\x51\x5d\x60\x60\x75\x74\x74\x88\x84\x84\ +\x91\x8e\x8e\x97\x95\x95\x9a\x97\x98\x99\x99\x99\x9a\x99\x9a\x97\ +\x96\x98\x96\x95\x96\x8f\x8e\x90\x7f\x7f\x82\x73\x76\x7a\x6d\x70\ +\x73\x68\x6b\x6d\x6f\x71\x72\x75\x77\x78\x70\x73\x75\x6f\x71\x75\ +\x71\x74\x77\x70\x73\x77\x76\x79\x7d\x78\x7b\x7f\x7b\x7e\x82\x79\ +\x7d\x81\x77\x7b\x7f\x79\x7d\x81\x77\x7b\x7f\x76\x7a\x7f\x74\x79\ +\x7c\x76\x7a\x7f\x76\x7a\x7f\x77\x7b\x7f\x74\x79\x7e\x73\x77\x7c\ +\x73\x77\x7c\x75\x79\x7e\x75\x79\x7e\x76\x7a\x7f\x77\x7b\x80\x77\ +\x7b\x80\x76\x7a\x7f\x77\x7b\x80\x77\x7c\x80\x78\x7d\x82\x79\x7d\ +\x83\x77\x7c\x82\x6f\x75\x7b\x6e\x74\x79\x6d\x73\x78\x6f\x75\x7a\ +\x71\x77\x7a\x6f\x74\x77\x70\x75\x78\x6d\x74\x77\x64\x6b\x6e\x65\ +\x6b\x6f\x6b\x70\x73\x73\x77\x7a\x78\x7b\x7f\x78\x7b\x7f\x7d\x80\ +\x84\x87\x8a\x8e\x88\x8b\x8f\x89\x8c\x90\x89\x8c\x90\x8a\x8d\x90\ +\x8b\x8e\x92\x8c\x8f\x94\x8d\x92\x96\x8c\x91\x94\x8c\x91\x95\x88\ +\x8c\x90\x77\x7c\x80\x64\x6a\x6f\x69\x6e\x72\x73\x76\x79\x7d\x80\ +\x83\x85\x87\x8a\x93\x94\x98\x96\x97\x9c\x97\x98\x9c\x98\x99\x9d\ +\x99\x9a\x9e\x99\x9b\x9f\x99\x9c\x9f\x99\x9c\x9e\x95\x99\x9b\x8e\ +\x91\x93\x8c\x8d\x8e\x95\x97\x98\x99\x9b\x9c\x95\x97\x98\x91\x91\ +\x94\x95\x96\x99\x9b\x9c\xa0\x99\x9c\x9e\x90\x91\x93\x98\x9a\x9b\ +\xa0\xa2\xa3\x9a\x9c\x9d\x8f\x91\x93\x93\x94\x95\x9f\x9f\xa0\xa6\ +\xa6\xa8\x9d\x9d\x9f\x96\x97\x98\x9c\x9c\x9d\xaa\xaa\xa9\xb0\xb0\ +\xb0\xaf\xac\xaf\xaf\xae\xb0\xb1\xb0\xb1\xb0\xaf\xb1\xb0\xaf\xb1\ +\xb0\xaf\xb1\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb2\xb3\xb1\xb1\xb1\xb3\ +\xb2\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb5\xb4\xb6\xb6\xb5\ +\xb7\xb6\xb5\xb7\xb8\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb9\xb8\xba\ +\xbb\xba\xbc\xba\xb9\xbb\xb8\xb7\xba\xb8\xb7\xb9\xba\xb9\xbb\xb6\ +\xb6\xb6\xa8\xa8\xa8\xa2\xa1\xa1\xa4\xa2\xa2\xaf\xae\xae\xb9\xb8\ +\xb8\xb1\xb0\xb0\xa2\xa1\xa1\x9f\x9e\x9e\xae\xac\xac\xbd\xbc\xbc\ +\xbb\xb9\xb9\xac\xaa\xaa\xa4\xa2\xa2\xaa\xa6\xa7\xb4\xb1\xb2\xbf\ +\xbb\xbb\xba\xb6\xb7\xb0\xab\xad\xa4\x9f\xa1\xa5\xa1\xa2\x00\x00\ +\x00\xac\xa5\xa2\x8d\x8a\x8a\x6e\x71\x71\x54\x5a\x5c\x48\x4f\x51\ +\x50\x53\x55\x66\x65\x65\x7c\x79\x78\x8c\x88\x88\x93\x91\x91\x98\ +\x96\x96\x99\x97\x98\x99\x99\x9a\x98\x97\x98\x95\x95\x95\x93\x92\ +\x93\x8a\x8a\x8b\x7a\x7b\x7f\x70\x73\x77\x69\x6d\x71\x67\x6a\x6d\ +\x71\x73\x75\x73\x75\x76\x6f\x71\x73\x6f\x71\x75\x6c\x6f\x73\x6d\ +\x70\x74\x73\x76\x7a\x76\x79\x7d\x79\x7c\x80\x78\x7b\x7f\x78\x7c\ +\x80\x77\x7b\x80\x75\x7a\x7e\x74\x78\x7d\x74\x79\x7d\x76\x7a\x7e\ +\x75\x79\x7e\x76\x7a\x7f\x75\x79\x7e\x73\x78\x7d\x76\x7a\x7f\x75\ +\x79\x7e\x72\x76\x7b\x70\x74\x79\x73\x77\x7c\x76\x7a\x7e\x77\x7b\ +\x80\x78\x7c\x81\x77\x7b\x80\x75\x78\x7c\x76\x7a\x7e\x78\x7d\x82\ +\x75\x7a\x7f\x70\x75\x7b\x6e\x74\x79\x6e\x73\x78\x73\x78\x7b\x70\ +\x75\x78\x6f\x74\x78\x69\x70\x73\x63\x6a\x6e\x66\x6b\x6e\x70\x74\ +\x78\x75\x79\x7d\x79\x7c\x80\x7a\x7e\x81\x79\x7c\x80\x7f\x82\x86\ +\x87\x8a\x8e\x8a\x8d\x91\x89\x8c\x90\x88\x8b\x8f\x8a\x8d\x91\x8a\ +\x8d\x90\x8b\x8f\x93\x8c\x91\x94\x8d\x91\x94\x8c\x8f\x94\x87\x8b\ +\x90\x7e\x83\x87\x71\x76\x7a\x61\x66\x6b\x5c\x61\x66\x6f\x70\x74\ +\x88\x88\x8a\x94\x95\x98\x96\x98\x9c\x98\x99\x9e\x99\x9a\x9e\x99\ +\x9b\x9e\x9a\x9c\x9f\x9a\x9d\x9e\x9d\xa1\xa1\x9c\xa0\xa1\x90\x94\ +\x94\x8d\x90\x90\x91\x93\x95\x9b\x9e\x9f\x94\x96\x99\x8e\x8f\x92\ +\x93\x94\x98\x9e\x9f\xa0\x9e\x9f\xa0\x95\x98\x98\x95\x97\x98\x9b\ +\x9d\x9e\x9a\x9c\x9d\x94\x95\x96\x94\x95\x96\x9f\x9f\xa1\xa7\xa6\ +\xa8\xa0\xa1\xa3\x95\x97\x98\x99\x98\x99\xa5\xa4\xa4\xad\xab\xad\ +\xb0\xae\xb0\xaf\xae\xaf\xaf\xaf\xb0\xaf\xaf\xb0\xb1\xb0\xb2\xb3\ +\xb2\xb4\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb2\xb3\xb3\xb4\xb4\xb3\ +\xb5\xb4\xb3\xb5\xb4\xb3\xb5\xb5\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\ +\xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\xb9\xbb\xba\xbc\xbb\xba\xbc\xbd\ +\xbc\xbe\xba\xb9\xbb\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xba\xba\ +\xbb\xb1\xb0\xb2\xa4\xa3\xa4\x9f\x9d\x9d\xaa\xa8\xa8\xb6\xb5\xb5\ +\xb8\xb8\xb8\xac\xad\xad\xa4\xa3\xa3\xa5\xa3\xa3\xb5\xb2\xb2\xc0\ +\xbd\xbe\xba\xb9\xb9\xad\xa9\xab\xa5\xa0\xa1\xab\xa6\xa8\xba\xb4\ +\xb5\xc4\xc1\xc2\xb8\xb4\xb5\xa8\xa5\xa6\x00\x00\x00\xa0\x9a\x96\ +\x80\x80\x7f\x64\x69\x6a\x4e\x55\x58\x48\x4f\x51\x58\x5b\x5b\x71\ +\x6f\x6f\x84\x7f\x7f\x90\x8b\x8c\x95\x90\x91\x97\x95\x96\x9b\x98\ +\x9a\x9a\x99\x9b\x98\x97\x98\x94\x93\x94\x8b\x8b\x8d\x7c\x7e\x81\ +\x6f\x72\x76\x6b\x6e\x72\x67\x6a\x6d\x68\x6b\x6d\x6e\x70\x71\x6d\ +\x6f\x6f\x6a\x6c\x6d\x68\x6c\x6d\x68\x6b\x6f\x6b\x6e\x72\x70\x73\ +\x77\x75\x78\x7c\x75\x78\x7c\x79\x7d\x81\x78\x7c\x81\x75\x79\x7d\ +\x74\x79\x7c\x74\x79\x7d\x74\x79\x7d\x75\x7a\x7e\x74\x78\x7c\x74\ +\x78\x7d\x74\x78\x7d\x73\x78\x7d\x75\x79\x7e\x72\x77\x7c\x6c\x71\ +\x76\x68\x6e\x73\x6c\x70\x75\x72\x76\x7b\x78\x7b\x80\x78\x7c\x81\ +\x74\x77\x7c\x6e\x72\x76\x6c\x71\x76\x70\x74\x79\x79\x7e\x82\x75\ +\x7b\x7e\x70\x76\x7b\x6d\x72\x78\x6e\x74\x78\x71\x77\x7a\x6e\x73\ +\x76\x65\x6a\x6e\x65\x6b\x6e\x69\x6e\x71\x72\x75\x79\x79\x7c\x80\ +\x7a\x7d\x81\x7b\x7e\x81\x7a\x7e\x80\x7b\x7f\x81\x80\x83\x87\x89\ +\x8b\x8f\x8b\x8e\x92\x8a\x8d\x91\x8a\x8d\x90\x8a\x8d\x91\x8a\x8d\ +\x91\x8c\x8f\x93\x8d\x90\x94\x8e\x92\x95\x8e\x92\x96\x8b\x8e\x92\ +\x7f\x84\x87\x68\x6f\x73\x5d\x64\x68\x64\x67\x6a\x7a\x7b\x7b\x86\ +\x85\x88\x90\x91\x94\x9a\x9b\x9f\x99\x9b\x9e\x98\x9a\x9e\x9b\x9d\ +\xa1\x9d\xa0\xa2\x9f\xa2\xa4\xa0\xa4\xa5\x9c\xa1\xa1\x96\x9a\x9a\ +\x8e\x91\x93\x91\x92\x93\x99\x9b\x9c\x99\x9a\x9c\x91\x92\x95\x94\ +\x94\x96\x9c\x9c\x9e\xa0\xa2\xa2\x99\x9b\x9c\x93\x95\x96\x97\x98\ +\x99\x9e\x9d\x9f\x99\x9a\x9b\x93\x95\x97\x9a\x9b\x9e\xa6\xa5\xa8\ +\xa5\xa6\xa8\x9d\x9c\x9f\x97\x96\x98\xa1\xa0\xa1\xad\xab\xac\xaf\ +\xad\xad\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb1\xb0\ +\xb2\xb2\xb1\xb3\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb4\xb5\ +\xb6\xb5\xb7\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb3\xb5\xb5\ +\xb4\xb6\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ +\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\ +\xb8\xb7\xb9\xac\xac\xad\xa0\xa0\xa0\xa4\xa3\xa3\xb2\xaf\xae\xbc\ +\xbb\xbb\xb7\xb7\xb8\xa9\xa7\xa7\xa1\x9d\x9e\xad\xa8\xa9\xbb\xb6\ +\xb7\xc2\xbe\xbf\xb8\xb5\xb5\xa9\xa7\xa8\xa1\x9e\x9e\xac\xa7\xa8\ +\xbc\xb7\xb8\xbe\xba\xbb\x00\x00\x00\x94\x8f\x8b\x76\x77\x77\x5c\ +\x61\x62\x4a\x52\x55\x4a\x51\x54\x5f\x61\x62\x79\x75\x76\x88\x83\ +\x84\x93\x8e\x8f\x98\x93\x94\x98\x96\x97\x9c\x99\x9a\x98\x98\x99\ +\x97\x96\x98\x93\x92\x94\x87\x87\x89\x78\x7a\x7e\x6f\x73\x76\x67\ +\x6c\x6f\x65\x69\x6c\x6a\x6c\x6e\x6a\x6c\x6e\x60\x63\x66\x5e\x60\ +\x64\x5e\x61\x64\x65\x68\x6c\x67\x6a\x6e\x6d\x71\x75\x72\x76\x7a\ +\x74\x78\x7c\x76\x7b\x7e\x76\x7b\x7f\x77\x7c\x80\x75\x7a\x7d\x74\ +\x7a\x7d\x74\x79\x7d\x73\x78\x7b\x72\x77\x7b\x71\x77\x7c\x74\x78\ +\x7d\x74\x79\x7e\x74\x78\x7e\x70\x76\x7a\x66\x6d\x72\x61\x66\x6d\ +\x5d\x63\x69\x67\x6b\x70\x73\x76\x7b\x78\x7b\x80\x71\x75\x7a\x68\ +\x6d\x72\x64\x6a\x6f\x67\x6c\x71\x70\x74\x79\x79\x7e\x82\x75\x7b\ +\x80\x71\x77\x7b\x70\x76\x79\x6f\x75\x79\x6a\x70\x73\x65\x69\x6e\ +\x66\x6b\x6f\x6e\x74\x77\x73\x77\x7b\x79\x7d\x80\x7a\x7d\x81\x79\ +\x7c\x7f\x7b\x7f\x80\x7c\x80\x83\x7a\x7d\x81\x80\x83\x85\x8b\x8f\ +\x91\x8d\x8f\x93\x8b\x8e\x91\x8a\x8e\x90\x89\x8c\x8f\x8c\x90\x92\ +\x8d\x90\x94\x8e\x92\x95\x90\x93\x97\x90\x93\x97\x8f\x93\x97\x80\ +\x85\x8a\x69\x73\x77\x65\x6b\x6f\x5f\x62\x64\x6f\x70\x72\x83\x82\ +\x84\x94\x94\x98\x99\x9b\x9f\x9a\x9b\xa0\x9b\x9d\xa1\x9c\x9f\xa2\ +\x9e\xa1\xa3\xa0\xa4\xa5\xa0\xa3\xa4\x9f\xa2\xa4\x96\x99\x9b\x8e\ +\x91\x92\x8c\x8e\x8f\x97\x98\x9a\x9e\x9e\xa0\x98\x99\x9b\x93\x93\ +\x96\x9a\x9a\x9c\xa3\xa4\xa4\x9b\x9c\x9d\x92\x93\x95\x96\x96\x98\ +\xa1\xa1\xa2\xa1\xa1\xa3\x97\x98\x9a\x96\x96\x98\xa1\xa1\xa3\xab\ +\xaa\xac\xa0\x9f\xa0\x98\x97\x99\x9b\x99\x99\xa9\xa7\xa8\xb2\xb0\ +\xb1\xb0\xae\xb0\xae\xad\xaf\xb1\xb0\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ +\xb2\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb6\xb5\xb7\xb6\xb5\xb7\xb5\ +\xb4\xb6\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\ +\xb9\xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbc\xbb\xbd\ +\xbd\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xc0\xbf\xc1\xb9\ +\xb9\xba\xb6\xb6\xb7\xad\xad\xad\xa2\x9f\x9e\xa4\xa1\xa1\xb5\xb3\ +\xb3\xbc\xbb\xbb\xb6\xb3\xb2\xa9\xa6\xa6\xa3\xa0\xa1\xb2\xae\xaf\ +\xbf\xbb\xbc\xbf\xbd\xbd\xb1\xaf\xb0\xa4\xa0\xa2\xa3\x9e\x9f\xb1\ +\xac\xad\x00\x00\x00\x89\x85\x83\x6c\x6e\x6e\x55\x5b\x5d\x4a\x50\ +\x53\x52\x57\x59\x68\x68\x69\x80\x7c\x7d\x8c\x87\x88\x93\x8f\x90\ +\x99\x95\x95\x99\x97\x97\x99\x96\x97\x98\x97\x98\x96\x95\x97\x91\ +\x91\x93\x84\x87\x88\x7a\x7e\x80\x73\x77\x7a\x6b\x6f\x72\x68\x6c\ +\x70\x6c\x6e\x70\x62\x66\x68\x56\x5b\x5e\x4f\x53\x57\x4e\x51\x55\ +\x5e\x61\x65\x66\x6b\x6e\x69\x6d\x70\x6b\x70\x73\x71\x76\x79\x73\ +\x78\x7b\x77\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x74\x79\x7e\x75\x7a\ +\x7e\x73\x78\x7b\x71\x76\x7a\x70\x75\x7b\x70\x76\x7b\x73\x79\x7e\ +\x73\x78\x7d\x72\x78\x7c\x68\x6f\x74\x5b\x63\x68\x58\x5f\x64\x5f\ +\x64\x69\x70\x74\x79\x75\x79\x7d\x6b\x6f\x74\x62\x68\x6d\x59\x5f\ +\x63\x5c\x60\x65\x69\x6c\x71\x73\x78\x7b\x79\x7e\x82\x76\x7b\x7e\ +\x73\x79\x7c\x6a\x6f\x72\x60\x66\x69\x56\x5c\x60\x5a\x5d\x61\x71\ +\x72\x75\x7b\x7d\x82\x7b\x7e\x81\x7c\x7f\x83\x7a\x7d\x81\x79\x7d\ +\x7e\x7c\x7f\x83\x7b\x7e\x82\x7b\x7e\x80\x7e\x82\x85\x89\x8c\x8e\ +\x8c\x90\x91\x8a\x8e\x8f\x8a\x8e\x90\x8b\x8f\x92\x8f\x92\x96\x90\ +\x93\x97\x90\x93\x97\x90\x93\x98\x92\x95\x9a\x8e\x91\x96\x80\x87\ +\x8c\x6d\x75\x7a\x55\x5f\x63\x5e\x65\x68\x7b\x7e\x80\x94\x95\x99\ +\x98\x99\x9c\x99\x9a\x9d\x9a\x9c\x9f\x9d\x9f\xa2\x9e\xa1\xa3\xa0\ +\xa4\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x9b\x9e\x9f\x97\x9b\x9c\x8f\x92\ +\x93\x8e\x8f\x93\x93\x94\x96\x9e\xa0\xa1\x98\x9a\x9b\x91\x92\x93\ +\x94\x95\x95\xa0\xa0\xa1\x9c\x9d\x9e\x93\x95\x96\x95\x97\x99\xa0\ +\xa0\xa2\xa3\xa5\xa6\x9a\x9c\x9d\x94\x95\x96\x9d\x9d\x9f\xa9\xa8\ +\xa9\xa6\xa6\xa7\x9b\x99\x9b\x9b\x99\x9b\xa5\xa3\xa4\xaf\xae\xaf\ +\xb1\xb1\xb1\xb2\xb1\xb2\xb0\xaf\xb1\xb3\xb1\xb3\xb3\xb2\xb4\xb3\ +\xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb5\xb4\xb6\xb6\xb5\xb7\xb4\xb3\ +\xb5\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb7\xb8\xb7\xb9\ +\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xbe\xbd\xbf\xbb\ +\xba\xbc\xbd\xbc\xbe\xc0\xbf\xc1\xbf\xbe\xc0\xbb\xba\xbc\xbe\xbd\ +\xbf\xbb\xba\xbb\xb1\xb1\xb1\xa3\xa3\xa3\xa1\xa0\xa0\xab\xa9\xa8\ +\xbb\xb8\xb7\xbf\xbc\xbc\xb4\xb3\xb3\xa7\xa5\xa6\xa4\xa1\xa1\xb5\ +\xb3\xb3\xc1\xbf\xbf\xbd\xbb\xbb\xb3\xb1\xb1\xa7\xa4\xa5\x00\x00\ +\x00\x7b\x7a\x77\x61\x64\x65\x4f\x55\x58\x4c\x50\x54\x59\x5b\x5d\ +\x71\x70\x70\x84\x81\x81\x8e\x89\x8a\x96\x92\x92\x98\x94\x94\x99\ +\x96\x97\x99\x96\x98\x96\x96\x97\x95\x94\x96\x8e\x8d\x8f\x83\x85\ +\x86\x7a\x7d\x7e\x74\x77\x79\x6f\x72\x76\x70\x73\x77\x72\x76\x78\ +\x68\x6c\x6e\x5c\x60\x64\x4d\x52\x56\x40\x43\x48\x53\x55\x5a\x61\ +\x65\x68\x67\x6c\x6f\x6b\x70\x73\x6c\x71\x75\x70\x74\x79\x73\x77\ +\x7c\x76\x7b\x7f\x75\x7a\x7f\x73\x77\x7c\x75\x79\x7d\x72\x78\x7d\ +\x71\x76\x7b\x70\x77\x7b\x70\x76\x7a\x73\x79\x7e\x71\x78\x7c\x71\ +\x77\x7b\x6d\x74\x79\x67\x6d\x72\x5c\x63\x68\x5a\x60\x65\x66\x6a\ +\x6f\x6e\x73\x75\x66\x6c\x6f\x5e\x64\x69\x55\x5a\x5e\x55\x59\x5e\ +\x5b\x5f\x65\x68\x6b\x6f\x77\x7a\x7e\x79\x7e\x81\x75\x7b\x7e\x70\ +\x75\x78\x5a\x61\x65\x3d\x46\x4d\x3b\x40\x47\x5b\x58\x5d\x7b\x79\ +\x7d\x7b\x7e\x82\x79\x7c\x81\x7b\x7e\x81\x7c\x7f\x82\x7c\x7f\x82\ +\x7c\x7f\x83\x7d\x80\x82\x7b\x7e\x82\x7f\x83\x84\x89\x8c\x8e\x8a\ +\x8e\x90\x8b\x8e\x91\x8c\x8f\x93\x8e\x91\x95\x90\x93\x97\x91\x94\ +\x98\x92\x95\x99\x93\x96\x9a\x91\x94\x99\x90\x94\x98\x85\x8a\x8f\ +\x6d\x76\x7b\x65\x6e\x71\x7b\x7e\x80\x98\x99\x9d\x97\x98\x9b\x98\ +\x99\x9d\x9b\x9c\x9f\x9c\x9e\xa2\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa3\ +\xa5\x9f\xa1\xa3\x9f\xa0\xa3\x9f\xa1\xa3\x9b\x9e\x9f\x94\x96\x9a\ +\x8c\x8e\x90\x92\x94\x95\x9a\x9c\x9d\x99\x9b\x9c\x93\x94\x95\x94\ +\x93\x95\x9e\x9d\x9f\x9f\x9f\xa2\x97\x98\x9a\x95\x95\x97\x9f\x9f\ +\xa1\xa9\xa8\xaa\xa2\xa3\xa4\x95\x96\x97\x98\x96\x97\xa6\xa5\xa7\ +\xac\xaa\xad\xa2\xa1\xa3\x9b\x9a\x9c\xa1\xa0\xa1\xac\xaa\xab\xb0\ +\xaf\xb1\xaf\xae\xb0\xaf\xad\xaf\xb2\xb1\xb2\xb4\xb2\xb4\xb4\xb2\ +\xb4\xb3\xb2\xb4\xb6\xb5\xb7\xb3\xb2\xb4\xb4\xb3\xb6\xb5\xb4\xb6\ +\xb7\xb5\xb7\xb7\xb5\xb7\xb8\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb8\ +\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\ +\xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbd\xbc\xbe\xbc\xba\xbb\xbb\xbb\xbb\ +\xba\xba\xba\xb9\xb9\xb9\xb2\xb1\xb1\xa3\xa0\xa0\xa3\x9f\x9e\xb3\ +\xb0\xb0\xbd\xbc\xbc\xbc\xba\xba\xb3\xb2\xb2\xa3\xa1\xa1\xa9\xa4\ +\xa5\xb9\xb5\xb6\xc3\xc1\xc1\xbc\xb9\xb8\x00\x00\x00\x73\x73\x72\ +\x57\x5c\x5e\x4b\x51\x53\x4e\x52\x54\x61\x62\x63\x78\x76\x76\x88\ +\x84\x85\x91\x8c\x8d\x97\x93\x93\x97\x95\x95\x9a\x98\x98\x99\x98\ +\x99\x95\x95\x96\x92\x91\x93\x8b\x8a\x8d\x82\x84\x86\x7c\x7e\x80\ +\x76\x79\x7b\x77\x7a\x7f\x7a\x7e\x80\x78\x7c\x7d\x6e\x72\x74\x62\ +\x67\x69\x51\x56\x5a\x3b\x3f\x44\x49\x4c\x51\x59\x5c\x60\x65\x69\ +\x6d\x6e\x72\x76\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x75\x7a\x7e\ +\x75\x79\x7d\x73\x77\x7b\x72\x76\x7b\x73\x79\x7d\x73\x79\x7e\x73\ +\x79\x7e\x71\x77\x7c\x70\x76\x7b\x74\x7a\x7f\x73\x7a\x7e\x72\x77\ +\x7c\x6f\x75\x7a\x64\x6a\x6e\x5a\x61\x65\x5c\x63\x67\x60\x65\x69\ +\x60\x66\x6a\x5a\x60\x65\x4b\x4f\x54\x4f\x53\x58\x55\x59\x5e\x61\ +\x64\x69\x6d\x70\x74\x77\x7b\x7e\x7c\x81\x84\x75\x7b\x7f\x66\x6f\ +\x72\x3c\x49\x50\x1f\x2c\x35\x30\x30\x38\x63\x5c\x60\x7b\x7a\x7d\ +\x7c\x7e\x81\x7c\x7e\x82\x7d\x80\x84\x7e\x81\x85\x7a\x7d\x81\x7e\ +\x81\x85\x80\x83\x87\x7c\x7f\x83\x7f\x83\x85\x88\x8c\x8d\x8c\x90\ +\x92\x8d\x90\x94\x8d\x90\x94\x8f\x92\x96\x91\x95\x98\x92\x95\x99\ +\x91\x94\x99\x93\x97\x99\x92\x96\x97\x92\x96\x99\x86\x8c\x90\x7d\ +\x84\x87\x86\x89\x8c\x94\x95\x99\x9a\x9c\x9e\x9a\x9b\x9f\x9b\x9b\ +\x9f\x9c\x9d\xa1\x9f\xa0\xa3\xa1\xa2\xa6\xa0\xa2\xa3\xa1\xa3\xa6\ +\xa2\xa4\xa8\xa1\xa2\xa6\x9f\xa1\xa2\xa1\xa3\xa5\x98\x9a\x9c\x8c\ +\x8e\x8f\x8d\x8b\x8e\x99\x98\x9a\x9d\x9d\x9e\x95\x96\x98\x90\x90\ +\x93\x9a\x9a\x9b\xa5\xa6\xa7\x9f\xa0\xa1\x98\x97\x99\x9a\x99\x9b\ +\xa9\xa8\xaa\xa3\xa3\xa4\x98\x98\x9a\x98\x99\x9a\xa2\xa0\xa2\xad\ +\xac\xad\xa9\xa8\xaa\x9e\x9e\x9f\x9c\x9a\x9d\xa8\xa6\xa8\xb0\xae\ +\xb0\xb3\xb0\xb2\xb5\xb3\xb5\xb6\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\ +\xb3\xb1\xb3\xb2\xb0\xb2\xb5\xb4\xb5\xb6\xb5\xb7\xb7\xb6\xb7\xb6\ +\xb6\xb7\xb7\xb6\xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xba\xba\ +\xbc\xba\xba\xbb\xbb\xba\xbc\xbd\xbc\xbd\xbc\xba\xbc\xbc\xb9\xbb\ +\xbe\xbd\xbf\xbd\xbb\xbd\xbb\xba\xbc\xb9\xb9\xba\xbe\xbd\xbe\xc0\ +\xbf\xc0\xbf\xbe\xc0\xb9\xb8\xb9\xae\xad\xad\xa0\x9f\x9f\xa4\xa1\ +\xa1\xb5\xb1\xb0\xbe\xbc\xbb\xb9\xb8\xb8\xa9\xa8\xa8\x9f\x9a\x9a\ +\xac\xa7\xa6\xbe\xb9\xb8\x00\x00\x00\x6a\x6b\x6b\x51\x56\x58\x47\ +\x4d\x4f\x52\x55\x57\x6b\x6a\x6a\x80\x7c\x7d\x8e\x89\x8a\x92\x8e\ +\x8e\x97\x93\x94\x97\x94\x95\x97\x96\x97\x96\x95\x97\x93\x91\x93\ +\x92\x91\x93\x88\x87\x89\x7c\x7d\x80\x78\x7a\x7b\x74\x78\x79\x77\ +\x7a\x7b\x7b\x7f\x81\x7a\x7d\x80\x74\x77\x7b\x6a\x6e\x72\x4e\x54\ +\x59\x35\x3b\x41\x40\x45\x4c\x51\x53\x58\x5d\x60\x64\x6b\x6e\x73\ +\x6b\x6f\x74\x6b\x6f\x74\x6f\x73\x78\x73\x77\x7c\x74\x78\x7d\x74\ +\x78\x7d\x73\x78\x7d\x71\x76\x7b\x71\x77\x7c\x72\x78\x7d\x70\x76\ +\x7b\x71\x77\x7c\x74\x7a\x7e\x73\x79\x7c\x71\x78\x7b\x70\x77\x7a\ +\x6c\x71\x74\x61\x68\x6c\x5b\x62\x66\x56\x5c\x60\x57\x5e\x61\x51\ +\x58\x5c\x4d\x52\x57\x4c\x50\x55\x52\x56\x5b\x53\x56\x5a\x63\x65\ +\x69\x6c\x6f\x73\x7a\x7e\x82\x7d\x82\x86\x74\x7b\x7e\x5c\x68\x6d\ +\x36\x45\x4e\x1d\x2a\x35\x37\x36\x3f\x6a\x64\x68\x7e\x7e\x80\x7e\ +\x80\x84\x7c\x7f\x83\x7f\x82\x86\x7f\x82\x86\x7d\x80\x84\x7e\x81\ +\x85\x7f\x82\x86\x7d\x80\x84\x80\x83\x85\x8a\x8c\x8d\x8d\x91\x93\ +\x8f\x93\x97\x90\x94\x98\x90\x93\x97\x92\x95\x99\x92\x95\x98\x91\ +\x95\x97\x92\x96\x96\x93\x95\x96\x93\x96\x97\x90\x92\x96\x92\x94\ +\x97\x94\x95\x99\x98\x9a\x9d\x9c\x9d\xa1\x9e\x9f\xa3\x9d\x9e\xa2\ +\x9e\x9f\xa2\xa0\xa0\xa4\xa1\xa2\xa4\xa0\xa1\xa4\xa1\xa2\xa5\xa0\ +\xa2\xa5\xa2\xa4\xa5\xa3\xa5\xa6\xa1\xa2\xa4\x9a\x9c\x9d\x91\x92\ +\x94\x8f\x8e\x91\x95\x94\x97\x9e\x9e\xa0\x97\x99\x9b\x92\x92\x94\ +\x9a\x99\x9b\xa5\xa5\xa7\xa2\xa3\xa4\x97\x97\x98\x96\x95\x97\xa0\ +\x9e\xa0\xa9\xa9\xab\xa0\xa1\xa2\x99\x98\x9a\x9c\x9b\x9d\xac\xab\ +\xad\xac\xab\xad\x9e\x9e\xa0\x97\x96\x99\xa0\x9f\x9f\xb0\xaf\xaf\ +\xb5\xb4\xb5\xb6\xb4\xb7\xb6\xb3\xb5\xb2\xaf\xb1\xb2\xb1\xb2\xb3\ +\xb1\xb2\xb4\xb3\xb4\xb7\xb6\xb7\xb8\xb7\xb9\xb8\xb7\xb7\xba\xb9\ +\xb9\xb9\xba\xba\xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbc\xbb\xba\ +\xbc\xba\xbc\xbe\xbc\xbd\xbc\xb9\xbb\xbc\xb9\xbb\xbd\xbb\xbc\xbb\ +\xb9\xbb\xba\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xc0\xbf\xc1\xc1\xc0\ +\xc2\xc0\xbf\xc1\xc1\xc1\xc2\xb9\xb9\xba\xa6\xa6\xa7\xa0\x9c\x9b\ +\xae\xaa\xaa\xbd\xbb\xbb\xbd\xbb\xbb\xb5\xb2\xb3\xa8\xa3\xa3\xa1\ +\x9c\x9b\x00\x00\x00\x5e\x60\x62\x4d\x52\x56\x4d\x51\x56\x5b\x5b\ +\x5e\x72\x6e\x6f\x84\x7f\x80\x91\x8c\x8d\x94\x91\x91\x98\x95\x96\ +\x9a\x97\x99\x95\x94\x96\x95\x93\x95\x92\x91\x93\x8d\x8c\x8f\x80\ +\x7f\x82\x76\x78\x7a\x72\x74\x75\x71\x73\x74\x76\x78\x7a\x7a\x7d\ +\x81\x7a\x7d\x81\x77\x7a\x7e\x69\x6e\x72\x49\x52\x57\x2b\x33\x39\ +\x27\x2c\x34\x41\x43\x49\x5a\x5a\x5e\x66\x69\x6d\x68\x6b\x70\x6a\ +\x6e\x73\x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x74\x78\x7d\x73\x77\ +\x7c\x72\x76\x7b\x70\x76\x7b\x70\x76\x7b\x70\x75\x7a\x6f\x75\x7a\ +\x74\x79\x7d\x74\x79\x7c\x71\x76\x79\x74\x79\x7c\x73\x78\x7b\x69\ +\x6f\x73\x61\x67\x6b\x58\x5f\x63\x55\x5d\x60\x48\x4e\x53\x49\x4d\ +\x53\x49\x4d\x52\x3e\x42\x47\x46\x48\x4c\x52\x54\x56\x63\x65\x66\ +\x72\x73\x77\x80\x82\x85\x7c\x81\x84\x73\x7a\x7d\x5a\x66\x6b\x32\ +\x45\x4e\x1e\x2a\x36\x3b\x39\x43\x6e\x68\x6c\x80\x81\x84\x7f\x80\ +\x84\x7e\x80\x84\x7f\x81\x85\x7f\x82\x86\x7b\x7e\x82\x80\x82\x86\ +\x7e\x81\x85\x7d\x80\x83\x82\x83\x87\x89\x8a\x8e\x8e\x90\x94\x8f\ +\x92\x96\x90\x94\x96\x91\x94\x95\x93\x96\x97\x93\x96\x97\x91\x94\ +\x95\x94\x96\x97\x96\x97\x98\x97\x99\x9a\x97\x98\x9b\x98\x99\x9c\ +\x99\x9a\x9d\x9d\x9e\xa2\x9e\x9f\xa3\x9c\x9d\xa1\x9d\x9d\xa1\x9f\ +\xa0\xa3\xa0\xa1\xa5\xa2\xa3\xa5\xa0\xa2\xa3\xa1\xa3\xa5\xa3\xa5\ +\xa6\xa4\xa5\xa7\xa4\xa6\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x96\x97\x9b\ +\x8f\x8f\x93\x96\x94\x97\x9f\x9f\xa1\x9a\x9a\x9b\x93\x92\x94\x97\ +\x96\x98\xa1\xa0\xa2\xa2\xa0\xa2\x98\x97\x99\x95\x94\x96\x9f\x9e\ +\xa0\xa9\xa8\xaa\xa4\xa3\xa5\x9a\x99\x9b\x9b\x9a\x9c\xa9\xa7\xa9\ +\xad\xac\xae\xa3\xa2\xa4\x98\x96\x97\x9c\x99\x98\xa9\xa7\xa8\xb2\ +\xb0\xb1\xb2\xaf\xb1\xb0\xad\xae\xb0\xaf\xb1\xb0\xae\xae\xb2\xb0\ +\xb0\xb6\xb4\xb4\xb8\xb6\xb7\xb7\xb6\xb6\xb7\xb6\xb7\xb8\xb8\xb9\ +\xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbf\xbd\xbd\xbc\xb9\xbb\xbc\ +\xb9\xbb\xbb\xb8\xba\xbb\xb8\xba\xbb\xb9\xb9\xba\xb9\xb9\xbb\xba\ +\xba\xb9\xb8\xba\xbf\xbe\xc0\xbf\xbf\xc0\xbf\xbd\xbf\xbe\xbd\xbf\ +\xbe\xbd\xbf\xbf\xbd\xbf\xbf\xbe\xbf\xb6\xb6\xb7\xa4\xa4\xa4\xa1\ +\x9f\x9f\xb1\xae\xaf\xb9\xb4\xb5\xbd\xb8\xb8\xb0\xad\xad\x00\x00\ +\x00\x58\x5c\x5e\x4c\x52\x55\x51\x55\x59\x64\x65\x67\x7c\x77\x78\ +\x8a\x85\x86\x92\x8f\x8f\x95\x92\x93\x97\x95\x97\x97\x96\x97\x97\ +\x95\x96\x93\x92\x94\x91\x90\x92\x86\x85\x87\x76\x77\x7b\x6e\x6f\ +\x73\x6a\x6b\x6f\x6e\x70\x72\x74\x76\x77\x79\x7c\x7f\x7a\x7d\x81\ +\x7a\x7e\x81\x6a\x71\x75\x56\x61\x67\x38\x45\x4c\x22\x29\x34\x2d\ +\x30\x3a\x4b\x4c\x54\x65\x67\x6b\x68\x6b\x70\x69\x6c\x71\x6a\x6e\ +\x73\x6c\x70\x75\x6f\x74\x78\x72\x77\x7b\x72\x76\x7b\x71\x75\x7a\ +\x71\x75\x7a\x72\x77\x7c\x72\x77\x7c\x72\x77\x7c\x71\x76\x7a\x73\ +\x78\x7b\x76\x7b\x7e\x73\x78\x7b\x73\x78\x7b\x6f\x74\x78\x64\x6b\ +\x6f\x5b\x61\x66\x4b\x51\x57\x3a\x40\x46\x37\x3e\x44\x3c\x43\x48\ +\x29\x2f\x35\x23\x27\x2b\x38\x3a\x3d\x53\x54\x56\x6b\x6c\x6e\x75\ +\x76\x7a\x7e\x81\x85\x7c\x80\x83\x74\x7b\x7f\x5a\x68\x6d\x34\x45\ +\x4f\x1f\x2b\x37\x3f\x3e\x46\x70\x6b\x70\x7f\x7f\x82\x7f\x81\x85\ +\x80\x81\x85\x80\x83\x87\x80\x83\x87\x7e\x81\x85\x81\x84\x88\x7f\ +\x82\x86\x7e\x81\x84\x80\x82\x84\x85\x88\x8b\x8c\x8e\x91\x90\x91\ +\x93\x93\x95\x96\x93\x94\x95\x93\x94\x95\x93\x95\x96\x95\x97\x98\ +\x93\x95\x96\x97\x99\x9a\x97\x99\x9c\x97\x99\x9d\x97\x98\x9c\x9b\ +\x9c\xa0\x9d\x9f\xa2\x9f\xa0\xa3\x9f\x9e\xa2\x9e\x9e\xa1\x9f\xa1\ +\xa3\xa2\xa3\xa5\xa1\xa2\xa3\xa1\xa3\xa4\xa3\xa5\xa6\xa5\xa4\xa6\ +\xa6\xa6\xa8\xa3\xa4\xa5\xa5\xa6\xa7\xa4\xa5\xa6\x9b\x9c\x9e\x90\ +\x91\x92\x93\x93\x94\x9f\x9e\xa0\x9e\x9d\x9f\x97\x96\x98\x94\x93\ +\x95\x9c\x9a\x9c\xa5\xa4\xa6\x9d\x9c\x9e\x96\x95\x97\x99\x99\x9b\ +\xa5\xa4\xa6\xa7\xa6\xa8\x9e\x9d\x9f\x99\x97\x99\xa2\xa0\xa1\xab\ +\xa9\xaa\xa8\xa7\xa6\x9c\x9c\x9b\x9a\x99\x99\xa7\xa4\xa5\xad\xab\ +\xad\xb0\xaf\xaf\xb3\xb2\xb3\xb3\xb1\xb1\xb4\xb2\xb2\xb3\xb1\xb1\ +\xb7\xb4\xb4\xb7\xb6\xb6\xb8\xb8\xb8\xbb\xba\xbb\xbb\xb9\xbb\xba\ +\xb9\xbb\xba\xb8\xb9\xba\xb8\xb8\xbc\xb9\xba\xbd\xba\xbb\xbe\xbc\ +\xbc\xbd\xba\xbb\xbc\xba\xba\xba\xb8\xb8\xbd\xbc\xbc\xbd\xbb\xbb\ +\xbf\xbc\xbd\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ +\xbe\xc0\xc1\xc0\xc2\xc2\xc1\xc3\xbe\xbd\xbf\xac\xaa\xac\x9f\x9b\ +\x9e\xa2\x9e\xa0\xb3\xae\xaf\xbd\xb9\xb8\x00\x00\x00\x52\x55\x5a\ +\x49\x4e\x51\x55\x57\x5a\x6d\x6a\x6b\x80\x7b\x7c\x8d\x88\x89\x94\ +\x92\x93\x98\x96\x97\x97\x95\x97\x97\x95\x96\x95\x94\x96\x95\x94\ +\x96\x90\x8f\x91\x7c\x7d\x80\x6e\x70\x74\x68\x6a\x6e\x66\x67\x6b\ +\x6c\x6d\x70\x76\x78\x78\x7a\x7c\x7f\x7a\x7d\x7f\x7a\x7e\x80\x72\ +\x78\x7b\x62\x6b\x71\x49\x57\x5e\x2f\x3c\x48\x30\x39\x43\x4b\x50\ +\x58\x5d\x61\x65\x63\x66\x6b\x68\x6b\x6f\x69\x6c\x71\x6b\x6f\x74\ +\x6e\x71\x76\x71\x75\x79\x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x72\ +\x77\x7c\x71\x76\x7b\x73\x76\x7c\x71\x76\x7a\x72\x77\x7a\x72\x77\ +\x7a\x74\x79\x7c\x74\x79\x7b\x72\x77\x7b\x6b\x72\x76\x5f\x67\x6b\ +\x45\x4d\x54\x27\x30\x37\x28\x30\x37\x2c\x32\x37\x26\x2c\x32\x20\ +\x28\x2d\x28\x2d\x32\x3f\x41\x46\x5c\x5e\x61\x6b\x6b\x6f\x76\x77\ +\x7b\x81\x83\x87\x7e\x84\x87\x75\x7d\x80\x58\x65\x6b\x2f\x41\x4b\ +\x1c\x27\x31\x40\x3c\x44\x6e\x67\x6a\x80\x7f\x82\x7f\x81\x83\x7d\ +\x7f\x82\x81\x84\x87\x80\x84\x87\x7f\x81\x85\x82\x84\x88\x81\x83\ +\x86\x73\x75\x77\x62\x60\x63\x6a\x63\x66\x82\x7c\x7d\x8f\x8e\x8e\ +\x93\x93\x95\x93\x94\x94\x93\x93\x94\x94\x96\x97\x95\x97\x98\x96\ +\x98\x99\x98\x9b\x9c\x95\x98\x9b\x98\x99\x9d\x9a\x9b\x9f\x9d\x9f\ +\xa2\x9e\x9f\xa1\xa0\xa0\xa2\xa1\xa0\xa2\xa1\xa2\xa3\xa1\xa2\xa3\ +\xa1\xa0\xa2\xa2\xa4\xa5\xa0\xa1\xa2\xa5\xa3\xa6\xa7\xa6\xa8\xa6\ +\xa5\xa7\xa5\xa4\xa6\xa8\xa6\xa9\xa6\xa5\xa7\x9c\x9c\x9e\x92\x93\ +\x94\x92\x92\x93\x9b\x9a\x9b\xa0\x9f\xa0\x9b\x9a\x9c\x93\x92\x94\ +\x98\x97\x99\xa7\xa6\xa8\xa5\xa5\xa6\x9a\x9b\x9c\x97\x96\x98\x9f\ +\x9e\xa0\xaa\xaa\xab\xa3\xa2\xa3\x9b\x9b\x9b\x9b\x9a\x9a\xa7\xa5\ +\xa4\xae\xac\xab\xa4\xa4\xa4\x9a\x99\x9a\x9e\x9c\x9e\xac\xa9\xab\ +\xb2\xaf\xb1\xb5\xb3\xb3\xb3\xb1\xb1\xb6\xb4\xb4\xb4\xb2\xb2\xb5\ +\xb2\xb2\xb6\xb4\xb3\xb8\xb7\xb7\xbc\xba\xbb\xbc\xb9\xbc\xba\xb7\ +\xba\xbb\xb7\xba\xbb\xb9\xba\xbc\xba\xba\xbc\xba\xba\xbe\xbc\xbc\ +\xbc\xb9\xba\xbd\xbc\xbc\xbe\xbc\xbc\xbe\xbc\xbc\xbf\xbc\xbe\xc0\ +\xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc2\xbe\xc0\xc0\xbe\ +\xc0\xc1\xc0\xc2\xc0\xbf\xc1\xbe\xbd\xbf\xb6\xb3\xb5\xa6\xa3\xa6\ +\x9f\x9a\x9b\xa5\xa0\xa1\x00\x00\x00\x4e\x52\x56\x4f\x51\x56\x60\ +\x5f\x61\x76\x71\x72\x87\x81\x81\x90\x8b\x8d\x95\x91\x94\x98\x95\ +\x97\x98\x96\x98\x96\x95\x97\x93\x92\x94\x91\x90\x92\x85\x84\x86\ +\x73\x73\x76\x68\x6b\x6e\x61\x64\x68\x61\x64\x68\x6c\x6d\x70\x77\ +\x79\x7b\x7a\x7d\x80\x7a\x7d\x81\x79\x7c\x80\x77\x7b\x7e\x6d\x74\ +\x77\x54\x5d\x64\x44\x50\x5b\x3f\x49\x53\x50\x56\x5c\x59\x5d\x62\ +\x5d\x60\x65\x64\x68\x6c\x68\x6b\x70\x68\x6b\x70\x6c\x6f\x74\x6e\ +\x72\x77\x72\x76\x7b\x71\x75\x7b\x71\x75\x7b\x73\x76\x7c\x71\x76\ +\x7b\x72\x76\x7b\x72\x77\x7b\x73\x78\x7c\x72\x77\x7a\x74\x79\x7c\ +\x74\x79\x7c\x73\x78\x7b\x6f\x75\x78\x69\x6e\x73\x54\x5c\x63\x38\ +\x43\x49\x2d\x36\x3c\x29\x2f\x34\x32\x39\x3f\x35\x3d\x41\x32\x38\ +\x3e\x3f\x42\x48\x52\x54\x59\x5e\x5f\x64\x6d\x6e\x72\x7a\x7d\x80\ +\x7f\x83\x86\x7d\x82\x85\x72\x7a\x7e\x57\x66\x6c\x2e\x41\x4b\x1c\ +\x26\x32\x3e\x3a\x43\x6f\x68\x6c\x81\x80\x82\x82\x83\x85\x81\x82\ +\x85\x82\x84\x87\x81\x83\x87\x81\x83\x87\x7e\x80\x84\x70\x74\x76\ +\x41\x43\x49\x26\x20\x27\x55\x44\x47\x84\x7b\x7b\x92\x91\x92\x93\ +\x91\x94\x93\x93\x95\x94\x95\x97\x96\x98\x99\x95\x97\x98\x98\x9a\ +\x9c\x99\x9a\x9e\x97\x98\x9c\x9a\x9b\x9f\x9b\x9c\x9e\x9d\x9e\x9f\ +\xa1\xa2\xa3\xa2\xa1\xa3\xa2\xa2\xa3\xa1\xa1\xa3\xa2\xa2\xa4\xa4\ +\xa4\xa6\xa5\xa6\xa6\xa5\xa4\xa6\xa6\xa5\xa6\xa8\xa7\xa9\xa9\xa8\ +\xaa\xaa\xa9\xab\xa9\xa8\xaa\xa4\xa3\xa5\xa2\xa0\xa2\x9a\x99\x9b\ +\x93\x92\x94\x9a\x99\x9a\xa1\xa0\xa1\x9c\x9c\x9d\x97\x96\x98\x96\ +\x95\x97\xa2\xa1\xa3\xa7\xa6\xa8\x9f\x9e\x9f\x9a\x98\x9a\x9f\x9d\ +\x9e\xaa\xa8\xa8\xa9\xa7\xa7\xa0\x9f\x9f\x9b\x9a\x99\xa4\xa2\xa1\ +\xae\xac\xac\xa7\xa6\xa6\x9b\x9a\x9c\x9c\x9a\x9a\xa7\xa3\xa3\xae\ +\xab\xab\xb1\xaf\xaf\xb4\xb2\xb2\xb6\xb4\xb4\xb4\xb1\xb1\xb2\xaf\ +\xaf\xb5\xb4\xb3\xb9\xb7\xb8\xbb\xb8\xba\xbd\xbb\xbc\xbc\xb9\xbb\ +\xbd\xba\xbb\xbb\xb8\xb8\xbc\xba\xba\xbb\xb9\xb9\xbb\xb9\xb9\xbd\ +\xbb\xbc\xbd\xbc\xbc\xc0\xbd\xbf\xc0\xbd\xbf\xbe\xbb\xbd\xbf\xbb\ +\xbd\xc1\xbd\xbf\xc1\xbd\xc0\xc1\xbe\xc0\xc0\xbd\xbf\xc0\xbe\xc0\ +\xbe\xbc\xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbe\xbc\xbd\xb5\xb1\xb3\xa8\ +\xa3\xa4\x00\x00\x00\x4e\x53\x57\x54\x57\x5a\x66\x63\x65\x7d\x77\ +\x78\x8a\x84\x84\x92\x8c\x8e\x95\x92\x94\x97\x94\x96\x97\x94\x96\ +\x95\x94\x96\x93\x92\x94\x8d\x8c\x8e\x7b\x7b\x7d\x6c\x6e\x72\x64\ +\x68\x6c\x5e\x62\x67\x64\x67\x6b\x6e\x70\x73\x79\x7a\x7e\x7a\x7d\ +\x81\x79\x7c\x80\x78\x7b\x80\x77\x7a\x7e\x74\x77\x7b\x66\x6b\x6f\ +\x5c\x64\x6b\x54\x5d\x65\x50\x55\x5b\x4f\x52\x58\x58\x5b\x60\x5c\ +\x5f\x63\x61\x63\x68\x60\x62\x65\x64\x66\x6b\x69\x6c\x71\x6f\x72\ +\x77\x71\x75\x7a\x72\x76\x7c\x73\x77\x7c\x71\x76\x79\x72\x76\x7b\ +\x72\x77\x7b\x72\x77\x7b\x73\x78\x7c\x73\x77\x7b\x73\x78\x7b\x6d\ +\x72\x76\x66\x6b\x6f\x65\x6a\x6e\x63\x69\x6e\x58\x5f\x64\x42\x4a\ +\x51\x34\x3b\x42\x45\x4c\x53\x46\x4e\x54\x44\x4b\x51\x48\x4c\x54\ +\x55\x57\x5e\x59\x5a\x60\x65\x65\x6a\x6e\x6f\x73\x7b\x7d\x81\x81\ +\x85\x89\x7e\x84\x87\x74\x7d\x80\x5a\x69\x70\x31\x44\x4e\x1c\x27\ +\x33\x3f\x3a\x44\x6d\x65\x69\x84\x82\x84\x81\x82\x85\x81\x83\x86\ +\x81\x84\x88\x80\x83\x87\x7d\x80\x84\x73\x77\x7b\x41\x4d\x52\x06\ +\x0f\x14\x19\x11\x16\x61\x56\x58\x8c\x88\x88\x92\x91\x92\x94\x94\ +\x96\x95\x95\x97\x95\x97\x98\x95\x96\x98\x94\x96\x99\x98\x9a\x9b\ +\x9a\x9b\x9d\x9a\x9b\x9d\x9b\x9c\x9e\x9d\x9f\xa0\x9e\xa0\xa1\xa1\ +\xa1\xa3\xa1\xa1\xa3\xa2\xa1\xa3\x9f\x9f\x9f\x99\x98\x98\xa2\xa0\ +\xa0\xa8\xa5\xa5\xa8\xa6\xa6\xa8\xa5\xa7\xaa\xa8\xaa\xaa\xa7\xa9\ +\xa8\xa7\xa9\xa9\xa8\xaa\xa9\xa8\xab\xa8\xa7\xa9\x9f\x9e\xa0\x95\ +\x94\x96\x96\x95\x97\x9e\x9e\x9f\xa1\xa1\xa2\x9c\x9b\x9d\x94\x93\ +\x95\x9b\x99\x9a\xa5\xa3\xa3\xa6\xa4\xa5\x9c\x9a\x9a\x9c\x99\x99\ +\xa7\xa4\xa4\xab\xa9\xa9\xa6\xa5\xa5\x9e\x9c\x9d\x9e\x9b\x9d\xab\ +\xa8\xaa\xab\xa9\xaa\xa8\xa6\xa6\x9f\x9b\x9b\xa1\x9e\x9d\xa9\xa7\ +\xa7\xb0\xae\xaf\xb4\xb2\xb2\xb3\xb1\xb1\xb2\xb0\xb0\xb4\xb2\xb2\ +\xb5\xb3\xb3\xb7\xb6\xb5\xbc\xb9\xba\xbd\xba\xbc\xba\xb8\xb8\xbb\ +\xb8\xb8\xbc\xba\xba\xbb\xb8\xb8\xbb\xb9\xba\xbb\xb8\xba\xbb\xb9\ +\xba\xbf\xbc\xbd\xbf\xbc\xbd\xbe\xba\xbc\xbf\xbb\xbd\xc1\xbe\xc0\ +\xbf\xbc\xbe\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ +\xbe\xc0\xc0\xbe\xc0\xc0\xbf\xbf\xbe\xbc\xbc\xbf\xbd\xbe\x00\x00\ +\x00\x4d\x52\x54\x58\x59\x5b\x6f\x6b\x6c\x81\x7b\x7c\x8b\x86\x87\ +\x93\x8d\x8f\x95\x91\x93\x97\x94\x96\x94\x92\x94\x96\x94\x96\x91\ +\x8f\x91\x84\x83\x85\x73\x75\x77\x69\x6c\x6f\x60\x64\x68\x61\x64\ +\x69\x68\x6a\x6e\x74\x75\x79\x7a\x7c\x80\x79\x7c\x80\x79\x7c\x80\ +\x78\x7c\x80\x76\x7a\x7e\x73\x77\x7a\x6e\x72\x76\x63\x69\x6f\x61\ +\x68\x6d\x53\x56\x5c\x4c\x4f\x55\x49\x4c\x53\x4d\x4f\x54\x52\x53\ +\x58\x54\x54\x5a\x55\x55\x5b\x5f\x60\x65\x6a\x6d\x71\x6e\x72\x77\ +\x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x73\x77\x7c\x74\x78\x7d\x72\ +\x77\x7b\x72\x77\x7b\x72\x76\x7b\x70\x75\x78\x66\x6b\x70\x59\x5f\ +\x64\x56\x5d\x64\x5c\x63\x68\x60\x66\x6b\x56\x5d\x63\x45\x4d\x55\ +\x48\x4f\x57\x49\x4f\x56\x48\x4e\x54\x53\x57\x5d\x56\x58\x5e\x57\ +\x57\x5d\x60\x5f\x65\x65\x65\x6a\x72\x72\x77\x7c\x7f\x83\x82\x86\ +\x89\x81\x86\x89\x77\x7f\x83\x5b\x6a\x71\x33\x45\x4f\x1e\x29\x33\ +\x39\x35\x3d\x6f\x65\x69\x83\x80\x82\x82\x83\x86\x7f\x81\x85\x82\ +\x84\x88\x81\x84\x88\x79\x7d\x81\x5b\x69\x6d\x21\x34\x39\x02\x0d\ +\x12\x34\x38\x3d\x7a\x79\x79\x90\x90\x90\x95\x94\x96\x96\x95\x97\ +\x96\x97\x99\x96\x96\x9b\x96\x96\x9a\x99\x9a\x9c\x9a\x9b\x9d\x9d\ +\x9d\xa0\x9c\x9c\x9f\x9d\x9e\xa0\x9e\x9f\xa0\x9f\xa0\xa1\xa1\xa1\ +\xa3\x9e\x9d\x9f\x8d\x8b\x8b\x7c\x7a\x7a\x8a\x84\x85\x9c\x95\x96\ +\xa7\xa2\xa3\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xaa\ +\xa8\xaa\xaa\xa9\xab\xac\xab\xae\xab\xaa\xac\xa1\xa0\xa3\x98\x97\ +\x99\x95\x96\x98\x9c\x9c\x9e\xa5\xa3\xa5\x9e\x9d\x9f\x96\x95\x97\ +\x97\x96\x96\xa2\xa0\xa1\xa6\xa4\xa4\xa2\xa0\xa0\x9e\x9c\x9c\xa2\ +\x9f\x9f\xaa\xa8\xa8\xaa\xa8\xa9\x9f\x9d\x9e\x9a\x97\x99\xa3\xa0\ +\xa2\xaf\xac\xac\xad\xaa\xaa\xa3\xa3\xa3\x9b\x9a\x9a\xa2\xa0\xa1\ +\xab\xa9\xaa\xb3\xb0\xaf\xb5\xb3\xb3\xb4\xb3\xb3\xb4\xb2\xb2\xb6\ +\xb4\xb4\xb8\xb6\xb7\xba\xb7\xb9\xb9\xb5\xb6\xba\xb7\xb7\xba\xb7\ +\xb7\xbb\xba\xba\xb9\xb6\xb9\xb9\xb6\xb8\xbb\xb8\xba\xbb\xb8\xba\ +\xbe\xbb\xbd\xbe\xbb\xbc\xbf\xbc\xbe\xc0\xbc\xbf\xbe\xbb\xbd\xbf\ +\xbc\xbe\xbf\xbc\xbe\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc1\xbe\ +\xc0\xc2\xbf\xc1\xc2\xbf\xc1\xc2\xbf\xc1\x00\x00\x00\x4e\x53\x56\ +\x5e\x5e\x5f\x77\x72\x73\x87\x81\x83\x8e\x89\x8b\x94\x8f\x91\x96\ +\x92\x94\x96\x93\x95\x94\x91\x93\x94\x93\x95\x8f\x8e\x90\x7d\x7d\ +\x7d\x70\x72\x74\x67\x6a\x6e\x61\x64\x68\x64\x67\x6b\x6e\x70\x74\ +\x79\x7a\x7e\x79\x7b\x7f\x79\x7c\x80\x79\x7c\x81\x79\x7c\x80\x77\ +\x7a\x7e\x74\x78\x7c\x6f\x74\x77\x6a\x6e\x73\x64\x6a\x6f\x54\x59\ +\x5e\x42\x46\x4d\x37\x3b\x45\x3b\x3d\x46\x3b\x3c\x45\x46\x46\x4f\ +\x44\x45\x4f\x50\x50\x58\x61\x63\x68\x6d\x70\x75\x6f\x73\x78\x70\ +\x74\x79\x71\x75\x7a\x73\x77\x7c\x74\x78\x7d\x74\x78\x7c\x72\x76\ +\x7b\x71\x76\x7b\x70\x75\x79\x65\x6a\x6f\x59\x61\x66\x51\x59\x5f\ +\x57\x5f\x64\x61\x67\x6c\x5e\x64\x69\x54\x5c\x64\x42\x48\x51\x39\ +\x3d\x45\x3c\x40\x47\x44\x48\x4e\x4d\x50\x56\x53\x53\x58\x5c\x5d\ +\x61\x60\x61\x66\x66\x67\x6d\x76\x77\x7c\x81\x83\x87\x84\x89\x8b\ +\x7f\x85\x89\x76\x7e\x82\x5d\x6a\x70\x37\x49\x52\x1d\x28\x30\x35\ +\x30\x38\x6b\x62\x65\x85\x82\x83\x82\x82\x86\x80\x82\x85\x82\x85\ +\x89\x82\x85\x89\x75\x7b\x7f\x4e\x5f\x64\x2b\x3e\x45\x38\x46\x4c\ +\x68\x6c\x6e\x88\x89\x8a\x93\x92\x95\x97\x96\x98\x97\x97\x99\x98\ +\x98\x9b\x9a\x99\x9d\x9a\x9b\x9c\x9a\x9a\x9d\x9d\x9d\xa0\x9f\x9e\ +\xa1\x9d\x9c\x9f\x9b\x9b\x9e\x9f\x9f\xa1\xa2\xa1\xa3\x9c\x9b\x9d\ +\x84\x85\x86\x71\x71\x72\x6e\x6b\x6d\x81\x7b\x7c\x95\x8c\x8e\xa6\ +\xa0\xa2\xab\xa7\xa9\xa9\xa6\xa8\xa9\xa6\xa8\xaa\xa8\xaa\xaa\xa9\ +\xab\xac\xaa\xad\xad\xac\xae\xab\xaa\xac\xa6\xa5\xa7\x9f\x9f\xa1\ +\x97\x96\x98\x9b\x99\x9a\xa2\xa0\xa1\xa2\xa1\xa3\x9c\x9b\x9b\x98\ +\x96\x96\xa1\x9e\x9f\xaa\xa7\xa8\xa9\xa6\xa6\xa0\x9d\x9e\x9d\x9b\ +\x9c\xa6\xa3\xa4\xac\xa9\xaa\xa4\xa3\xa4\x9e\x9d\x9e\x9e\x9b\x9b\ +\xa9\xa4\xa6\xb1\xb0\xb0\xa9\xa8\xa8\xa1\x9e\xa0\xa2\x9e\xa0\xaa\ +\xa5\xa5\xb2\xad\xae\xb5\xb1\xb2\xb5\xb2\xb3\xb5\xb2\xb3\xb6\xb2\ +\xb3\xb6\xb2\xb4\xb7\xb2\xb3\xb8\xb4\xb5\xb8\xb4\xb5\xb9\xb7\xb7\ +\xb8\xb5\xb7\xb9\xb6\xb8\xbb\xb8\xba\xba\xb7\xb9\xbe\xbb\xbd\xbf\ +\xbc\xbe\xbf\xbc\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xc1\xbe\xbf\xc0\xbd\ +\xc0\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbf\xc0\xbd\xbf\xc1\xbe\xc0\ +\xc2\xbf\xc1\xc3\xc0\xc2\x00\x00\x00\x52\x56\x5a\x66\x65\x67\x7d\ +\x78\x7a\x8a\x85\x87\x90\x8c\x8e\x94\x90\x92\x95\x92\x94\x96\x94\ +\x96\x94\x92\x94\x91\x90\x93\x8b\x8a\x8c\x7a\x7a\x7d\x71\x73\x76\ +\x6a\x6d\x71\x65\x68\x6c\x66\x69\x6d\x74\x75\x79\x7a\x7b\x7f\x79\ +\x7a\x7e\x79\x7b\x7f\x78\x7c\x80\x77\x7b\x80\x76\x79\x7e\x76\x7a\ +\x7e\x71\x75\x79\x70\x74\x78\x64\x6a\x6f\x4e\x56\x5c\x30\x36\x3d\ +\x2c\x31\x3a\x2b\x2f\x39\x29\x2b\x35\x32\x33\x3e\x37\x39\x45\x43\ +\x45\x50\x5a\x5c\x64\x6a\x6d\x72\x6e\x72\x77\x70\x74\x79\x70\x74\ +\x79\x72\x76\x7b\x72\x76\x7b\x74\x77\x7d\x73\x77\x7c\x73\x77\x7c\ +\x71\x75\x7a\x68\x6e\x73\x61\x67\x6c\x58\x5f\x64\x5e\x64\x68\x6b\ +\x6f\x73\x66\x6b\x6f\x5e\x64\x6a\x41\x49\x51\x25\x2d\x36\x22\x2b\ +\x32\x1e\x25\x2c\x26\x29\x2f\x3c\x3d\x41\x4c\x4c\x52\x5e\x5e\x63\ +\x64\x66\x6a\x72\x74\x79\x7f\x82\x86\x86\x8a\x8e\x85\x89\x8d\x80\ +\x84\x88\x77\x7f\x84\x5f\x6d\x74\x38\x49\x52\x1f\x2a\x33\x35\x32\ +\x3a\x6a\x60\x64\x82\x7f\x80\x82\x84\x87\x81\x82\x86\x84\x86\x8a\ +\x83\x85\x89\x71\x77\x7b\x5d\x68\x6d\x60\x6a\x6d\x72\x77\x79\x81\ +\x83\x86\x8a\x8a\x8e\x94\x93\x96\x96\x97\x98\x9a\x99\x9b\x9b\x9a\ +\x9d\x9a\x99\x9b\x9b\x9a\x9c\x9c\x9c\x9f\x9d\x9d\xa0\x9d\x9d\xa0\ +\x9c\x9c\x9f\x9e\x9f\xa1\xa1\xa0\xa2\x9e\x9e\xa1\x90\x91\x94\x7e\ +\x81\x82\x67\x67\x68\x6a\x67\x69\x76\x6f\x71\x8d\x86\x87\x9f\x9a\ +\x9c\xa9\xa5\xa6\xa8\xa6\xa8\xaa\xa7\xaa\xa9\xa6\xa9\xaa\xa8\xaa\ +\xab\xa9\xab\xac\xaa\xac\xaa\xa9\xac\xa9\xa8\xaa\xa2\xa1\xa2\x9a\ +\x99\x9a\x96\x95\x97\x9c\x9b\x9d\xa4\xa3\xa3\xa3\xa2\xa3\x9d\x9b\ +\x9d\x9e\x9b\x9c\xa8\xa5\xa5\xac\xa9\xaa\xa4\xa2\xa4\x9b\x98\x9a\ +\xa0\x9d\x9e\xaa\xa7\xa8\xac\xab\xab\xa6\xa3\xa3\x9c\x98\x99\xa4\ +\xa1\xa2\xaf\xad\xad\xb1\xb0\xb0\xaa\xa6\xa8\xa1\x9d\x9f\xa5\xa1\ +\xa2\xad\xaa\xab\xb5\xb1\xb3\xb7\xb3\xb4\xb5\xb1\xb3\xb3\xaf\xb1\ +\xb5\xb1\xb3\xb4\xb1\xb2\xb7\xb3\xb5\xb9\xb6\xb7\xb9\xb6\xb8\xbb\ +\xb8\xba\xbc\xb9\xba\xbd\xba\xbc\xbe\xbb\xbd\xbe\xbb\xbd\xbf\xbc\ +\xbe\xbf\xbc\xbe\xbd\xba\xbc\xc0\xbd\xbe\xbf\xbc\xbf\xbf\xbb\xbf\ +\xc2\xbe\xc1\xc1\xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc2\xc1\xbe\xc0\xc1\ +\xbe\xc0\x00\x00\x00\x5a\x5a\x5d\x70\x6d\x6f\x84\x7f\x81\x8d\x88\ +\x8b\x91\x8c\x90\x94\x91\x94\x95\x91\x95\x95\x93\x96\x92\x91\x93\ +\x91\x90\x93\x87\x86\x89\x7d\x7e\x82\x73\x76\x7a\x6c\x6f\x72\x69\ +\x6a\x6e\x6c\x6d\x71\x76\x78\x7a\x76\x77\x7b\x77\x78\x7c\x78\x7a\ +\x7e\x78\x7b\x80\x77\x7b\x80\x76\x7a\x7f\x74\x78\x7c\x74\x77\x7c\ +\x6f\x73\x78\x61\x68\x6d\x49\x52\x59\x2c\x33\x3b\x27\x2c\x35\x21\ +\x26\x30\x26\x29\x33\x26\x28\x33\x31\x34\x40\x40\x44\x4f\x57\x5a\ +\x63\x66\x69\x70\x6a\x6e\x74\x6f\x73\x78\x71\x75\x7a\x71\x75\x7a\ +\x73\x77\x7c\x74\x78\x7c\x74\x78\x7d\x74\x79\x7e\x73\x77\x7c\x6d\ +\x73\x78\x66\x6c\x71\x5f\x65\x6a\x5e\x63\x67\x67\x6b\x6e\x68\x6c\ +\x71\x65\x69\x6e\x54\x5c\x63\x2b\x39\x42\x21\x2f\x39\x1b\x24\x2c\ +\x11\x16\x1a\x1e\x22\x26\x34\x36\x3b\x4f\x4f\x53\x66\x67\x6b\x71\ +\x72\x77\x7e\x81\x86\x88\x8b\x8f\x88\x8b\x8f\x85\x89\x8e\x82\x88\ +\x8d\x7a\x81\x88\x64\x71\x79\x3c\x4d\x56\x20\x2b\x35\x30\x2d\x36\ +\x61\x58\x5c\x82\x7f\x80\x84\x85\x88\x82\x84\x88\x81\x82\x85\x79\ +\x7b\x7d\x6d\x72\x74\x6f\x74\x75\x7e\x80\x82\x83\x85\x88\x83\x84\ +\x88\x8b\x89\x8d\x93\x93\x94\x98\x97\x99\x9a\x99\x9b\x9a\x99\x9b\ +\x9a\x99\x9b\x98\x98\x9b\x9b\x9b\x9f\x9e\x9f\xa3\x9f\x9e\xa2\x9f\ +\x9e\xa2\x9f\x9f\xa2\x9f\xa1\xa4\x9b\x9b\xa0\x80\x82\x86\x65\x67\ +\x69\x5d\x5d\x5e\x5f\x5c\x60\x72\x70\x71\x8d\x8a\x8b\xa4\xa0\xa2\ +\xaa\xa7\xa9\xab\xa8\xaa\xaa\xa7\xaa\xaa\xa8\xaa\xaa\xa7\xa9\xac\ +\xa8\xaa\xab\xa9\xad\xab\xaa\xae\xaa\xa9\xac\xa8\xa7\xaa\x9e\x9d\ +\xa1\x96\x95\x97\x9a\x98\x99\xa3\xa0\xa2\xa5\xa2\xa4\x9d\x9c\x9d\ +\x9b\x98\x9a\xa2\x9f\xa0\xa7\xa4\xa6\xa5\xa3\xa5\x9b\x99\x9b\x9e\ +\x9c\x9d\xa8\xa5\xa6\xb0\xad\xae\xab\xa9\xaa\xa2\x9e\xa0\xa1\x9e\ +\x9f\xaa\xa6\xa7\xb0\xad\xaf\xb0\xad\xaf\xa6\xa3\xa5\xa1\x9e\xa0\ +\xa7\xa3\xa5\xaf\xaa\xac\xb5\xb0\xb2\xb5\xb2\xb4\xb6\xb3\xb5\xb3\ +\xb1\xb2\xb5\xb1\xb4\xb6\xb2\xb4\xb6\xb3\xb6\xb8\xb4\xb8\xbb\xb8\ +\xbc\xbe\xba\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xbf\xbc\xbe\xbf\xbc\xbd\ +\xbe\xb9\xbd\xc0\xbc\xc0\xbe\xbb\xbf\xbe\xba\xbf\xc0\xbc\xc1\xc2\ +\xbe\xc1\xc0\xbc\xc0\xc2\xbe\xc2\xc1\xbd\xc1\xbf\xbc\xc0\x00\x00\ +\x00\x62\x60\x63\x78\x73\x75\x87\x82\x84\x8f\x8a\x8e\x93\x8f\x93\ +\x96\x93\x98\x94\x91\x96\x93\x91\x95\x91\x90\x94\x90\x8f\x93\x83\ +\x82\x87\x7e\x7e\x84\x76\x78\x7c\x6e\x70\x72\x6b\x6c\x70\x71\x72\ +\x75\x74\x75\x77\x6f\x70\x74\x6c\x6d\x72\x70\x71\x76\x74\x76\x7c\ +\x76\x79\x7e\x75\x78\x7d\x72\x77\x7b\x71\x76\x7a\x6f\x73\x79\x63\ +\x6a\x6f\x4a\x53\x5b\x33\x3c\x44\x29\x30\x39\x20\x25\x2f\x27\x2c\ +\x35\x2a\x2d\x38\x2f\x35\x40\x44\x48\x52\x59\x5b\x64\x67\x69\x71\ +\x6a\x6c\x74\x6d\x70\x75\x71\x75\x79\x71\x75\x7a\x73\x76\x7c\x74\ +\x77\x7d\x74\x78\x7e\x74\x77\x7e\x73\x77\x7e\x72\x77\x7c\x6b\x71\ +\x76\x66\x6c\x71\x5d\x63\x67\x54\x5a\x5f\x5c\x60\x66\x64\x67\x6c\ +\x61\x66\x6b\x4c\x57\x5f\x34\x42\x4d\x2f\x39\x42\x2a\x32\x38\x2e\ +\x35\x3c\x34\x39\x3f\x4d\x4e\x54\x66\x67\x6b\x74\x75\x79\x80\x81\ +\x87\x86\x89\x8e\x86\x89\x8e\x87\x8b\x90\x87\x8b\x90\x82\x87\x8d\ +\x7a\x82\x89\x66\x74\x7c\x3f\x50\x59\x20\x2e\x3a\x2b\x2c\x38\x5a\ +\x55\x5b\x81\x7e\x81\x85\x86\x89\x7c\x7d\x7f\x74\x75\x75\x72\x74\ +\x74\x75\x76\x77\x7e\x80\x81\x85\x85\x87\x88\x89\x8d\x85\x85\x89\ +\x87\x88\x8a\x93\x92\x94\x96\x95\x97\x99\x98\x9b\x98\x99\x9c\x98\ +\x98\x9c\x9b\x9b\x9f\x9f\x9f\xa3\xa0\xa0\xa4\xa0\x9f\xa3\x9f\xa0\ +\xa3\x9e\x9f\xa3\x9d\x9d\xa3\x86\x88\x8d\x6d\x71\x76\x5e\x62\x66\ +\x62\x64\x67\x6a\x6b\x6c\x7c\x7b\x7b\x8c\x88\x8a\x96\x92\x94\xa4\ +\xa0\xa2\xad\xaa\xac\xac\xaa\xab\xaa\xa6\xa9\xa9\xa7\xa9\xac\xaa\ +\xac\xad\xac\xb0\xab\xaa\xad\xab\xaa\xad\xab\xaa\xac\xa4\xa3\xa6\ +\x9d\x9c\x9e\x96\x94\x96\x9c\x99\x9b\xa3\xa1\xa3\xa2\x9f\xa1\x9a\ +\x97\x99\x99\x96\x98\xa4\xa1\xa3\xaa\xa7\xa9\xa6\xa4\xa6\x9f\x9c\ +\x9e\xa4\xa1\xa3\xab\xa8\xa9\xb2\xaf\xb1\xa9\xa5\xa7\xa0\x9c\x9f\ +\xa2\x9e\xa2\xad\xa9\xad\xb5\xb1\xb3\xad\xab\xac\xa3\x9f\xa2\xa0\ +\x9c\xa0\xa9\xa4\xa8\xb6\xb1\xb3\xb7\xb3\xb5\xb7\xb4\xb6\xb7\xb3\ +\xb5\xb5\xb2\xb3\xb6\xb3\xb6\xb7\xb3\xb7\xb9\xb5\xba\xbd\xb9\xbd\ +\xbd\xb9\xbd\xbd\xba\xbe\xbf\xbb\xbe\xbf\xbc\xbd\xbe\xba\xbe\xc0\ +\xbc\xc0\xc0\xbc\xc0\xbf\xbc\xc1\xc0\xbc\xc1\xc0\xbc\xc1\xbf\xbb\ +\xc0\xc0\xbb\xc0\xbe\xba\xbf\xbe\xba\xbf\x00\x00\x00\x6a\x67\x6b\ +\x7e\x79\x7c\x8a\x84\x88\x90\x8c\x90\x94\x90\x95\x95\x92\x97\x95\ +\x93\x98\x93\x92\x97\x90\x8f\x93\x8d\x8c\x90\x87\x86\x8b\x7d\x7e\ +\x83\x77\x79\x7d\x70\x71\x74\x6f\x70\x74\x74\x75\x79\x6d\x6f\x73\ +\x64\x66\x6b\x60\x61\x67\x62\x62\x6a\x67\x69\x6f\x72\x74\x79\x75\ +\x79\x7e\x74\x78\x7d\x71\x75\x7a\x72\x76\x7c\x68\x6e\x75\x50\x59\ +\x62\x3f\x4a\x54\x34\x3f\x4a\x2b\x34\x3f\x2a\x32\x3c\x2f\x36\x42\ +\x32\x39\x44\x4a\x4e\x58\x5f\x61\x6a\x65\x68\x70\x69\x6c\x74\x6b\ +\x6e\x75\x70\x74\x79\x70\x75\x7c\x73\x76\x7e\x73\x76\x7e\x76\x79\ +\x80\x74\x78\x80\x74\x78\x7f\x74\x79\x80\x70\x76\x7d\x6c\x72\x78\ +\x60\x66\x6c\x4a\x51\x59\x4a\x4f\x58\x52\x57\x5f\x5d\x62\x67\x5c\ +\x64\x6a\x4d\x56\x5f\x44\x4e\x57\x44\x4e\x56\x44\x4b\x54\x43\x49\ +\x51\x56\x59\x5d\x6b\x6d\x71\x77\x79\x7d\x83\x86\x8b\x88\x8b\x91\ +\x89\x8c\x91\x88\x8b\x91\x87\x8a\x92\x88\x8b\x92\x84\x89\x90\x7c\ +\x85\x8c\x68\x74\x7c\x45\x55\x60\x25\x34\x43\x27\x2e\x3a\x53\x54\ +\x5c\x7c\x7c\x7f\x7a\x7c\x7d\x6b\x6d\x6e\x72\x72\x73\x7f\x7e\x81\ +\x84\x84\x86\x83\x85\x86\x87\x87\x8b\x89\x8a\x8e\x86\x87\x8b\x89\ +\x8a\x8e\x90\x91\x94\x96\x96\x9a\x97\x98\x9c\x99\x9a\x9e\x9c\x9b\ +\x9f\x9e\x9c\xa1\x9e\x9e\xa2\x9e\x9e\xa3\x9f\x9f\xa4\x9f\x9d\xa3\ +\x9d\x9d\xa3\x93\x95\x9b\x87\x8b\x91\x81\x85\x8b\x7c\x7f\x82\x72\ +\x74\x75\x6a\x68\x6a\x69\x67\x6a\x76\x72\x75\x91\x8c\x8e\xa7\xa3\ +\xa4\xae\xac\xad\xab\xa8\xaa\xad\xaa\xac\xb0\xac\xaf\xaf\xad\xb0\ +\xac\xab\xad\xab\xaa\xae\xaa\xa9\xad\xaf\xae\xb2\xac\xab\xae\xa0\ +\x9f\xa1\x96\x94\x96\x99\x95\x97\xa3\xa0\xa2\xa6\xa4\xa6\x9c\x9b\ +\x9d\x9a\x99\x9c\x9f\x9d\xa1\xad\xaa\xac\xac\xa9\xab\xa4\xa2\xa4\ +\xa0\x9d\x9f\xa4\xa1\xa3\xb2\xaf\xb1\xb1\xae\xb1\xa4\xa1\xa5\x9d\ +\x99\x9e\xa7\xa3\xa8\xb3\xb0\xb4\xb1\xaf\xb2\xa6\xa4\xa6\x9d\x99\ +\x9c\xa1\x9d\x9f\xad\xaa\xac\xba\xb7\xb9\xba\xb7\xb9\xb9\xb5\xb9\ +\xb8\xb4\xb8\xb8\xb4\xb9\xb8\xb4\xb9\xba\xb6\xbb\xbb\xb7\xbc\xba\ +\xb6\xbb\xbe\xba\xbe\xc1\xbd\xc1\xc0\xbc\xc1\xc0\xbc\xc0\xc0\xbc\ +\xc1\xc0\xbc\xc1\xbe\xba\xbf\xc0\xbc\xc1\xbf\xbb\xc0\xbe\xba\xbf\ +\xbf\xbb\xc0\xbd\xb9\xbe\x00\x00\x00\x73\x6f\x74\x84\x7f\x82\x8c\ +\x87\x8c\x91\x8d\x93\x94\x90\x95\x94\x92\x97\x92\x91\x95\x91\x90\ +\x94\x8f\x8e\x92\x8b\x8a\x8e\x86\x86\x8b\x80\x81\x87\x79\x7b\x80\ +\x72\x73\x77\x6e\x6f\x73\x6d\x6e\x72\x67\x68\x6d\x5c\x5d\x63\x55\ +\x58\x5f\x56\x59\x61\x5b\x5d\x66\x69\x6c\x73\x72\x75\x7b\x73\x77\ +\x7c\x72\x76\x7b\x70\x73\x7a\x69\x6f\x77\x5f\x68\x71\x51\x5c\x66\ +\x47\x53\x5f\x3f\x4b\x57\x3c\x46\x51\x3f\x49\x55\x42\x49\x56\x52\ +\x57\x61\x60\x63\x6b\x63\x66\x6e\x65\x68\x70\x69\x6c\x74\x6b\x6e\ +\x76\x70\x74\x7b\x73\x76\x7d\x71\x75\x7d\x73\x79\x7f\x73\x79\x80\ +\x73\x79\x80\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x66\x6c\x74\x55\ +\x5d\x67\x43\x4b\x57\x3e\x44\x50\x51\x57\x5f\x59\x5e\x66\x58\x60\ +\x67\x52\x5b\x63\x46\x50\x59\x3b\x44\x50\x38\x3f\x4a\x4e\x52\x59\ +\x6b\x6c\x71\x7d\x7f\x83\x85\x88\x8d\x88\x8b\x90\x88\x8c\x93\x89\ +\x8c\x94\x88\x8b\x93\x8a\x8d\x95\x89\x8c\x94\x88\x8f\x95\x7f\x87\ +\x8e\x6d\x78\x80\x49\x5a\x65\x24\x35\x41\x1f\x27\x32\x41\x3e\x47\ +\x5b\x55\x57\x57\x50\x52\x5f\x57\x5b\x7b\x76\x7a\x88\x86\x8a\x86\ +\x86\x8a\x82\x83\x87\x8b\x8a\x8e\x8c\x8c\x90\x89\x89\x8e\x86\x87\ +\x8a\x8e\x8f\x92\x98\x99\x9d\x9c\x9b\xa0\x9d\x9c\xa2\x9e\x9c\xa2\ +\x9e\x9d\xa3\x9d\x9d\xa2\x9d\x9d\xa3\x9c\x9b\xa1\x9f\x9e\xa4\xa1\ +\xa1\xa7\x9e\x9f\xa5\xa0\x9f\xa5\x9a\x9b\x9f\x8c\x8d\x90\x77\x79\ +\x7d\x68\x6b\x6f\x6d\x6e\x72\x84\x81\x85\x92\x8e\x91\x9f\x9a\x9e\ +\xaa\xa7\xaa\xad\xab\xad\xb0\xac\xb0\xad\xac\xaf\xae\xad\xb0\xad\ +\xac\xb0\xad\xac\xb0\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xaf\xa5\xa4\ +\xa8\x9a\x99\x9c\x97\x94\x97\x9d\x9a\x9d\xa9\xa7\xaa\xa7\xa6\xaa\ +\x9b\x9a\x9e\x9d\x9a\x9f\xa5\xa1\xa4\xae\xab\xae\xab\xa8\xaa\xa0\ +\x9c\xa0\xa2\x9f\xa2\xad\xa9\xad\xb2\xae\xb2\xac\xa8\xab\x9e\x9d\ +\xa0\x9f\x9d\xa0\xa9\xa7\xaa\xb4\xb2\xb4\xac\xaa\xac\x9f\x9c\x9e\ +\x9e\x9c\x9f\xa9\xa6\xa8\xb6\xb2\xb4\xba\xb7\xba\xbc\xb8\xbd\xbb\ +\xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xba\xb7\xbb\xb8\xb4\xb9\xbb\xb7\ +\xbc\xbf\xbc\xc1\xc0\xbc\xc1\xbd\xbb\xbf\xbd\xba\xbf\xbc\xba\xbf\ +\xbd\xb9\xbf\xbe\xbb\xc1\xc0\xbc\xc2\xc2\xbe\xc3\xc0\xbc\xc1\xc1\ +\xbd\xc2\x00\x00\x00\x7b\x77\x7a\x86\x81\x84\x8f\x8b\x8f\x91\x8f\ +\x94\x92\x91\x95\x92\x90\x95\x92\x91\x95\x90\x8f\x93\x90\x8f\x94\ +\x8c\x8b\x90\x84\x84\x8a\x84\x84\x8a\x78\x7b\x80\x74\x75\x78\x6b\ +\x6c\x71\x62\x62\x68\x59\x5b\x60\x53\x55\x5b\x4b\x4e\x57\x51\x54\ +\x5c\x56\x59\x61\x63\x66\x6e\x6f\x71\x78\x71\x75\x7a\x71\x74\x7b\ +\x72\x74\x7c\x6c\x72\x78\x6a\x72\x7a\x60\x69\x72\x58\x62\x6b\x52\ +\x5c\x66\x50\x59\x63\x4e\x55\x60\x4d\x52\x5d\x54\x58\x61\x5f\x62\ +\x6a\x68\x6b\x73\x65\x67\x70\x68\x6b\x73\x6a\x6e\x75\x6d\x72\x79\ +\x72\x78\x7e\x71\x77\x7e\x71\x77\x7e\x75\x7b\x82\x74\x7a\x81\x75\ +\x7b\x82\x74\x79\x80\x72\x78\x7f\x6d\x74\x7c\x62\x6b\x74\x58\x62\ +\x6d\x4f\x59\x62\x47\x4d\x56\x4f\x56\x5f\x5a\x61\x68\x5c\x66\x6d\ +\x57\x62\x6b\x35\x40\x4d\x23\x2b\x37\x3a\x41\x4b\x63\x65\x6d\x7f\ +\x81\x88\x87\x89\x90\x87\x89\x90\x88\x8a\x92\x89\x8b\x94\x89\x8c\ +\x95\x8b\x8e\x97\x8b\x8e\x96\x8b\x8f\x97\x89\x8e\x95\x7f\x85\x8d\ +\x6e\x77\x80\x4d\x5b\x65\x28\x34\x40\x19\x1a\x25\x19\x13\x1b\x1f\ +\x19\x1f\x29\x20\x27\x57\x4c\x52\x81\x7c\x7f\x89\x88\x8b\x89\x89\ +\x8d\x86\x85\x8a\x8b\x8b\x8f\x8d\x8d\x92\x8a\x8b\x8f\x89\x8a\x8e\ +\x8c\x8d\x91\x99\x9a\x9e\x9e\x9e\xa4\xa0\x9e\xa4\xa0\x9f\xa5\xa0\ +\x9f\xa5\x9f\x9e\xa4\xa2\xa2\xa8\xa1\xa1\xa7\xa2\xa2\xa8\xa0\xa0\ +\xa6\xa1\xa2\xa5\xa1\xa2\xa6\x9d\x9e\xa2\x92\x95\x99\x7b\x7f\x83\ +\x72\x76\x7b\x74\x74\x79\x76\x72\x77\x81\x7c\x81\x94\x90\x94\xa6\ +\xa4\xa7\xad\xab\xaf\xad\xab\xb0\xaf\xae\xb2\xaf\xae\xb2\xaf\xae\ +\xb2\xb0\xaf\xb3\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xb0\xad\xac\xaf\ +\xa3\xa2\xa6\x9a\x99\x9d\x9e\x9d\xa0\xa9\xa8\xac\xae\xac\xb0\xa4\ +\xa3\xa7\x9e\x9a\x9e\xa2\x9e\xa3\xad\xaa\xad\xb2\xaf\xb3\xa4\xa2\ +\xa6\x9e\x9d\xa1\xa3\xa1\xa5\xad\xac\xae\xaf\xae\xb0\xa5\xa4\xa7\ +\x9f\x9d\xa1\xa4\xa0\xa5\xae\xaa\xae\xb3\xb0\xb2\xa9\xa8\xaa\xa0\ +\x9f\xa3\xa2\x9f\xa2\xae\xa9\xae\xbc\xb8\xbd\xc0\xbc\xc1\xbd\xb9\ +\xbe\xbb\xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xb9\xb6\xbb\xbc\xb9\xbd\ +\xc0\xbc\xc1\xbf\xbd\xc2\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbd\ +\xbb\xc0\xc2\xbf\xc4\xc1\xbd\xc2\xc0\xbc\xc1\xc2\xbe\xc3\x00\x00\ +\x00\x80\x7b\x7e\x89\x86\x89\x8e\x8b\x90\x92\x90\x95\x93\x92\x96\ +\x94\x93\x97\x93\x93\x96\x90\x8e\x93\x8d\x8c\x92\x8c\x8c\x92\x89\ +\x89\x8f\x81\x84\x89\x77\x7a\x7f\x74\x76\x7b\x66\x67\x6b\x59\x5a\ +\x60\x4e\x51\x58\x4b\x4e\x56\x4b\x4e\x56\x53\x55\x5d\x5b\x5e\x66\ +\x64\x67\x6f\x6e\x71\x79\x72\x74\x7c\x71\x74\x7c\x70\x73\x7b\x6e\ +\x74\x7a\x6d\x74\x7b\x68\x70\x77\x63\x6c\x74\x5e\x68\x71\x59\x62\ +\x6b\x53\x59\x63\x49\x4e\x59\x51\x54\x5e\x5b\x5e\x66\x5e\x61\x69\ +\x5c\x60\x66\x5e\x61\x68\x65\x69\x71\x6a\x70\x77\x70\x76\x7d\x71\ +\x77\x7e\x73\x79\x80\x74\x7a\x81\x76\x7c\x83\x75\x7b\x82\x75\x7b\ +\x81\x74\x7a\x80\x72\x79\x80\x6e\x76\x7e\x69\x73\x7b\x61\x6a\x73\ +\x56\x61\x69\x4a\x55\x5e\x4f\x56\x5e\x5a\x64\x6b\x60\x6b\x72\x58\ +\x65\x6e\x42\x52\x5f\x4b\x59\x65\x68\x6e\x77\x7e\x81\x88\x86\x88\ +\x90\x87\x8a\x92\x89\x8c\x94\x88\x8b\x94\x88\x8d\x96\x8a\x8e\x97\ +\x8b\x8d\x97\x8d\x8f\x98\x8e\x91\x99\x8a\x8f\x95\x80\x88\x8e\x71\ +\x7c\x81\x58\x64\x6b\x2b\x38\x46\x0b\x11\x1b\x01\x01\x04\x06\x04\ +\x08\x19\x13\x18\x50\x45\x4a\x7c\x75\x7a\x89\x88\x8c\x8b\x8c\x90\ +\x89\x89\x8f\x8c\x8c\x91\x8e\x90\x94\x8c\x8e\x93\x88\x89\x8e\x8e\ +\x8e\x94\x9a\x99\x9f\x9f\x9d\xa4\xa1\x9f\xa5\xa1\x9f\xa5\xa0\x9e\ +\xa4\xa0\x9f\xa5\xa0\xa0\xa6\xa2\xa2\xa8\xa3\xa4\xa9\xa4\xa4\xaa\ +\xa2\xa4\xa8\xa4\xa4\xa8\xa2\xa4\xa8\x98\x9c\xa0\x8a\x90\x95\x80\ +\x84\x89\x75\x74\x79\x64\x61\x66\x70\x6b\x6e\x88\x81\x84\xa0\x9a\ +\x9f\xac\xa8\xad\xae\xac\xaf\xaf\xae\xb0\xae\xad\xb1\xb0\xaf\xb3\ +\xb1\xb0\xb4\xb1\xb0\xb4\xb3\xb0\xb7\xb3\xb1\xb7\xb1\xb0\xb6\xa9\ +\xa9\xae\x9f\x9f\xa3\x9b\x9b\x9f\xa6\xa4\xa9\xb0\xad\xb2\xaa\xa8\ +\xad\xa0\x9e\xa2\x9f\x9b\xa0\xa7\xa3\xa7\xb1\xaf\xb1\xaa\xa9\xac\ +\xa0\x9f\xa3\x9b\x9a\x9e\xa5\xa4\xa7\xb0\xaf\xb1\xad\xac\xaf\xa2\ +\x9f\xa4\x9e\x9a\x9f\xa8\xa4\xa9\xb5\xb1\xb6\xb2\xb1\xb5\xab\xaa\ +\xad\xa4\xa2\xa7\xa8\xa4\xa9\xb5\xaf\xb5\xbd\xb9\xbe\xbc\xb8\xbe\ +\xbe\xba\xbf\xbd\xba\xbf\xbb\xba\xbe\xbb\xba\xbe\xbb\xb9\xbd\xbd\ +\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbe\xbd\xc1\xbf\xbb\ +\xc0\xc1\xbd\xc2\xc1\xbe\xc3\xc3\xc0\xc5\x00\x00\x00\ +\x00\x02\xa0\xde\ +\x42\ +\x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ +\x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ +\x00\xa8\xa0\x02\x00\xe9\x24\x00\x00\xe9\x24\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xe6\xd8\xdc\xe7\xd9\xdd\xe9\xdb\xde\xe9\xdc\ +\xde\xea\xdd\xdf\xea\xdd\xdf\xeb\xde\xe0\xec\xdf\xe1\xec\xdf\xe1\ +\xec\xdf\xe1\xed\xe0\xe2\xee\xe0\xe2\xed\xe0\xe2\xee\xe1\xe3\xee\ +\xe2\xe3\xef\xe3\xe4\xef\xe4\xe4\xef\xe4\xe4\xef\xe4\xe5\xef\xe4\ +\xe4\xef\xe3\xe3\xef\xe4\xe4\xef\xe4\xe4\xef\xe4\xe4\xf0\xe4\xe4\ +\xf0\xe4\xe4\xef\xe3\xe3\xf0\xe4\xe2\xef\xe4\xe2\xf0\xe3\xe1\xee\ +\xe1\xdf\xee\xe1\xdf\xee\xe0\xde\xed\xdf\xdd\xee\xdf\xdd\xee\xdf\ +\xdd\xed\xde\xdb\xed\xdd\xda\xee\xdd\xda\xee\xdd\xda\xed\xdc\xd9\ +\xed\xdc\xd9\xed\xdc\xd9\xee\xde\xd8\xee\xde\xd8\xef\xde\xd8\xef\ +\xde\xd8\xee\xde\xd8\xee\xde\xd8\xee\xdd\xd7\xed\xdd\xd7\xee\xde\ +\xd8\xee\xde\xd8\xef\xdf\xd9\xef\xe0\xda\xef\xe0\xda\xef\xdf\xd9\ +\xef\xdf\xd9\xef\xdf\xd9\xee\xde\xd8\xed\xdd\xd7\xed\xdd\xd7\xee\ +\xdc\xd6\xed\xdb\xd6\xed\xda\xd5\xed\xda\xd5\xed\xda\xd5\xed\xda\ +\xd5\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xec\xda\xd4\xeb\xd9\xd6\ +\xeb\xda\xd7\xec\xdb\xd8\xeb\xdb\xd8\xeb\xdc\xd9\xea\xdb\xd9\xea\ +\xdb\xd9\xe8\xda\xd8\xe8\xdb\xd9\xe8\xdb\xd9\xe9\xdb\xd9\xe9\xdc\ +\xda\xe9\xdc\xda\xe9\xdd\xdb\xea\xdd\xdb\xeb\xdd\xdb\xeb\xdd\xdb\ +\xec\xde\xdc\xef\xe0\xdd\xee\xe2\xde\xf0\xe4\xdf\xf2\xe6\xe0\xf2\ +\xe7\xe1\xf3\xe8\xe2\xf4\xea\xe3\xf4\xe9\xe2\xf2\xe7\xe0\xf1\xe3\ +\xdd\xee\xdd\xd8\xeb\xd8\xd5\xe7\xd4\xd1\xe2\xcf\xcd\xdd\xca\xca\ +\xd8\xc5\xc6\xd2\xc1\xc4\xce\xbd\xc0\xca\xbb\xbf\xc8\xba\xbf\xc7\ +\xb9\xbf\xc6\xb9\xbe\xc6\xb8\xbe\xc7\xb9\xbe\xc5\xb8\xbc\xc1\xb5\ +\xbb\xbc\xb0\xb9\xb4\xaa\xb6\xab\xa4\xb2\x9f\x9c\xae\x93\x95\xaa\ +\x86\x8c\xa7\x7c\x87\xa2\x74\x80\x9d\x6f\x7c\x9a\x6d\x7a\x97\x70\ +\x7b\x98\x77\x7f\x9c\x7f\x84\x9f\x88\x89\xa2\x91\x8f\xa6\x98\x95\ +\xaa\x9e\x99\xae\xa2\x9d\xb1\xa5\x9f\xb2\xa7\xa1\xb3\xa9\xa1\xb4\ +\xab\xa3\xb5\xab\xa3\xb4\xac\xa4\xb5\xae\xa5\xb6\xaf\xa5\xb6\xaf\ +\xa5\xb6\xaf\xa6\xb6\xaf\xa7\xb6\xae\xa6\xb6\xad\xa5\xb6\xad\xa5\ +\xb6\xad\xa5\xb6\xad\xa5\xb6\xae\xa6\xb7\xae\xa6\xb7\xae\xa6\xb7\ +\xaf\xa8\xb8\xb0\xa9\xb8\xb1\xaa\xb8\xb0\xa9\xb8\xb1\xaa\xb7\xb2\ +\xaa\xb7\xb6\xae\xb9\xbd\xb2\xbc\xc5\xb8\xbe\xcc\xbe\xc1\x00\x00\ +\x00\xe6\xd8\xdc\xe7\xda\xdc\xe8\xdb\xdd\xe9\xdc\xde\xea\xdd\xdf\ +\xea\xdd\xdf\xeb\xde\xe0\xec\xdf\xe1\xec\xdf\xe1\xec\xdf\xe1\xed\ +\xdf\xe1\xed\xe0\xe2\xee\xe1\xe3\xee\xe1\xe3\xee\xe1\xe3\xef\xe3\ +\xe3\xef\xe2\xe2\xee\xe2\xe2\xee\xe2\xe2\xee\xe2\xe2\xee\xe2\xe2\ +\xee\xe1\xe2\xee\xe1\xe2\xee\xe0\xe2\xef\xe2\xe2\xee\xe2\xe1\xee\ +\xe2\xe0\xf0\xe3\xe1\xf0\xe3\xe1\xef\xe2\xe0\xee\xe1\xdf\xee\xe0\ +\xde\xee\xdf\xdc\xec\xdd\xdb\xed\xdd\xdb\xee\xdd\xdb\xee\xdd\xda\ +\xed\xdd\xda\xed\xdc\xd9\xed\xdc\xd9\xec\xdb\xd8\xec\xdb\xd8\xed\ +\xdc\xd8\xed\xdd\xd8\xee\xdd\xd7\xee\xdc\xd7\xef\xdc\xd7\xee\xdc\ +\xd7\xee\xdc\xd6\xed\xdb\xd6\xed\xdb\xd6\xee\xdb\xd6\xee\xdc\xd7\ +\xed\xdd\xd7\xef\xde\xd8\xef\xdf\xd9\xee\xdf\xd8\xed\xdd\xd8\xee\ +\xde\xd8\xed\xdd\xd7\xee\xdc\xd6\xee\xdb\xd6\xed\xdb\xd6\xee\xda\ +\xd5\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xeb\xd8\xd3\ +\xec\xd9\xd4\xeb\xd9\xd4\xeb\xd9\xd4\xea\xda\xd6\xeb\xda\xd7\xeb\ +\xdb\xd8\xea\xda\xd7\xeb\xdc\xd8\xe9\xda\xd8\xe9\xda\xd8\xea\xda\ +\xd8\xe9\xdc\xda\xe9\xdc\xda\xea\xdc\xda\xea\xdd\xdb\xec\xdd\xdb\ +\xeb\xdd\xdb\xec\xde\xdc\xed\xde\xdc\xed\xde\xdc\xee\xe0\xdd\xef\ +\xe1\xde\xf0\xe4\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe9\xe2\xf4\xea\ +\xe3\xf5\xeb\xe4\xf5\xec\xe4\xf5\xea\xe2\xf3\xe6\xdf\xf1\xe3\xdc\ +\xef\xde\xd9\xec\xda\xd5\xe8\xd5\xd1\xe5\xd2\xce\xe1\xcd\xcb\xdd\ +\xc9\xc8\xd9\xc7\xc6\xd6\xc4\xc4\xd5\xc3\xc3\xd3\xc2\xc3\xd3\xc2\ +\xc3\xd3\xc2\xc3\xd3\xc2\xc3\xcd\xbe\xc0\xc9\xba\xbe\xc3\xb5\xba\ +\xbb\xaf\xb7\xb2\xa8\xb4\xa8\xa1\xb0\x9a\x99\xac\x8d\x90\xa7\x84\ +\x8a\xa4\x7e\x86\xa1\x7a\x82\x9f\x7b\x82\x9f\x7d\x82\x9e\x81\x84\ +\x9f\x86\x87\xa1\x8d\x8c\xa5\x93\x90\xa7\x9a\x95\xab\xa0\x9b\xaf\ +\xa3\x9d\xb0\xa5\x9f\xb1\xa7\x9f\xb3\xa9\xa0\xb4\xaa\xa1\xb5\xaa\ +\xa2\xb4\xaa\xa2\xb3\xac\xa4\xb5\xae\xa4\xb5\xae\xa4\xb6\xae\xa5\ +\xb6\xad\xa5\xb5\xad\xa5\xb6\xac\xa4\xb5\xab\xa3\xb5\xaa\xa3\xb5\ +\xab\xa3\xb5\xab\xa3\xb6\xab\xa4\xb6\xad\xa5\xb6\xae\xa7\xb7\xaf\ +\xa8\xb7\xb0\xa9\xb8\xb1\xaa\xb8\xb1\xaa\xb8\xb1\xaa\xb8\xb4\xac\ +\xb9\xb8\xaf\xba\xbd\xb3\xbc\xc4\xb8\xbd\x00\x00\x00\xe6\xd8\xdc\ +\xe7\xda\xdc\xe8\xdb\xdd\xe9\xdc\xde\xea\xdd\xde\xea\xdd\xde\xeb\ +\xde\xe0\xeb\xde\xe0\xec\xdf\xe1\xec\xdf\xe1\xec\xdf\xe1\xed\xe0\ +\xe2\xed\xe0\xe2\xed\xe0\xe2\xee\xe1\xe3\xee\xe1\xe3\xee\xe1\xe2\ +\xed\xe0\xe1\xed\xe0\xe1\xec\xdf\xe1\xec\xe0\xe0\xec\xde\xdf\xed\ +\xdf\xe0\xed\xdf\xe0\xed\xdf\xe0\xee\xe0\xdf\xee\xe1\xdf\xee\xe1\ +\xdf\xef\xe2\xe0\xef\xe2\xde\xee\xe0\xdd\xee\xde\xdb\xee\xde\xdb\ +\xed\xdd\xda\xee\xdc\xda\xee\xdc\xd9\xee\xdc\xda\xed\xdd\xda\xee\ +\xdd\xda\xec\xdb\xd8\xed\xdc\xd9\xec\xdb\xd8\xed\xdc\xd9\xed\xdc\ +\xd8\xed\xdd\xd7\xee\xdb\xd6\xee\xdb\xd6\xed\xda\xd5\xed\xda\xd5\ +\xed\xda\xd5\xec\xd9\xd4\xec\xd9\xd4\xed\xda\xd5\xee\xdb\xd6\xee\ +\xdc\xd6\xee\xdc\xd7\xef\xdd\xd8\xed\xdc\xd7\xee\xdb\xd6\xee\xdb\ +\xd6\xed\xda\xd5\xed\xda\xd5\xec\xda\xd5\xed\xda\xd5\xec\xd9\xd4\ +\xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd8\xd3\xea\ +\xd8\xd4\xe9\xd8\xd4\xe9\xd9\xd5\xeb\xda\xd7\xeb\xda\xd7\xea\xdb\ +\xd8\xeb\xdb\xd8\xe9\xda\xd8\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\ +\xeb\xdc\xda\xeb\xdd\xdb\xec\xde\xdc\xed\xde\xdc\xee\xdf\xdc\xee\ +\xdf\xdc\xee\xdf\xdc\xee\xe0\xdd\xee\xe2\xde\xef\xe3\xe0\xf1\xe5\ +\xe1\xf2\xe6\xe0\xf3\xe8\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf6\xed\xe4\ +\xf6\xee\xe5\xf6\xee\xe5\xf5\xec\xe3\xf4\xe9\xe0\xf2\xe5\xde\xf1\ +\xe1\xda\xee\xdc\xd7\xeb\xd8\xd3\xe8\xd4\xd0\xe5\xd1\xce\xe2\xce\ +\xcb\xe0\xcd\xca\xdf\xcb\xc9\xdf\xcc\xc8\xde\xcb\xc8\xdd\xcb\xc8\ +\xd9\xc6\xc6\xd4\xc3\xc3\xce\xbe\xc0\xc8\xba\xbd\xc1\xb3\xba\xb8\ +\xac\xb6\xad\xa5\xb2\xa2\x9d\xae\x95\x95\xaa\x8d\x8f\xa7\x88\x8b\ +\xa4\x85\x89\xa3\x87\x89\xa3\x89\x89\xa3\x8b\x8b\xa4\x8e\x8d\xa5\ +\x92\x90\xa7\x97\x93\xa9\x9c\x97\xac\xa2\x9c\xaf\xa4\x9e\xb1\xa5\ +\x9f\xb2\xa7\x9f\xb3\xa8\xa0\xb4\xa8\x9f\xb3\xa9\xa0\xb4\xaa\xa2\ +\xb3\xaa\xa2\xb4\xab\xa3\xb4\xac\xa4\xb5\xac\xa4\xb5\xad\xa4\xb5\ +\xab\xa3\xb4\xab\xa3\xb4\xa8\xa2\xb3\xa8\xa2\xb5\xa8\xa2\xb5\xa8\ +\xa2\xb5\xa9\xa3\xb5\xab\xa5\xb6\xad\xa7\xb7\xaf\xa7\xb7\xaf\xa8\ +\xb8\xb1\xaa\xb9\xb1\xaa\xb9\xb1\xaa\xb9\xb2\xab\xb8\xb4\xac\xb9\ +\xb8\xaf\xba\xbd\xb3\xbb\x00\x00\x00\xe5\xd7\xdb\xe6\xd8\xdb\xe7\ +\xda\xdc\xe8\xdb\xdd\xe9\xdb\xdd\xea\xdc\xde\xe9\xdc\xde\xea\xdd\ +\xdf\xeb\xde\xe0\xea\xdd\xdf\xec\xdf\xe1\xeb\xde\xe0\xec\xdf\xe1\ +\xec\xdf\xe1\xec\xdf\xe1\xec\xdf\xe2\xec\xdf\xe0\xec\xdf\xe0\xeb\ +\xde\xe1\xeb\xde\xe0\xea\xde\xdf\xea\xdd\xde\xea\xdc\xdd\xeb\xdd\ +\xde\xeb\xde\xde\xec\xdf\xde\xed\xdf\xdd\xef\xe0\xde\xee\xe1\xde\ +\xee\xe0\xdd\xed\xde\xdb\xee\xde\xdb\xed\xdd\xdb\xee\xdd\xd9\xee\ +\xdd\xda\xee\xdd\xda\xed\xdc\xd9\xee\xdd\xda\xed\xdc\xd9\xee\xdd\ +\xda\xec\xdb\xd8\xec\xdc\xd9\xee\xdb\xd9\xed\xdc\xd8\xee\xdb\xd6\ +\xee\xdb\xd6\xec\xd9\xd4\xec\xd9\xd4\xeb\xd8\xd3\xea\xd7\xd2\xec\ +\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xed\xda\xd5\xee\xdb\xd6\xee\xdb\ +\xd6\xed\xdb\xd6\xed\xda\xd5\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\ +\xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xeb\ +\xd8\xd3\xe9\xd6\xd2\xe9\xd6\xd3\xe9\xd6\xd3\xe8\xd8\xd5\xe8\xd7\ +\xd4\xe9\xd8\xd5\xeb\xda\xd7\xea\xda\xd7\xeb\xdb\xd8\xea\xda\xd7\ +\xea\xdc\xd9\xeb\xdc\xd9\xea\xdb\xd9\xec\xdd\xdb\xec\xde\xdc\xed\ +\xde\xdc\xee\xdf\xdd\xef\xe0\xdd\xef\xe1\xde\xf0\xe1\xde\xf0\xe2\ +\xdf\xef\xe3\xdf\xf1\xe4\xe0\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe8\xe1\ +\xf4\xea\xe3\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\xf7\xef\xe6\xf7\ +\xef\xe6\xf7\xef\xe6\xf6\xed\xe4\xf5\xeb\xe3\xf4\xe8\xe0\xf2\xe3\ +\xdd\xf0\xe0\xda\xee\xdb\xd6\xec\xd8\xd3\xe9\xd6\xd1\xe8\xd4\xcf\ +\xe8\xd4\xcf\xe7\xd3\xce\xe5\xd2\xcd\xe2\xcf\xcc\xdf\xcc\xc9\xda\ +\xc7\xc5\xd4\xc3\xc3\xce\xbd\xc0\xc6\xb8\xbc\xbe\xb0\xb8\xb3\xa8\ +\xb5\xaa\xa2\xb1\x9e\x9b\xac\x98\x97\xab\x95\x94\xaa\x93\x91\xa8\ +\x91\x90\xa8\x93\x90\xa8\x93\x90\xa8\x95\x92\xa9\x99\x94\xaa\x9b\ +\x95\xab\x9f\x99\xae\xa3\x9d\xb0\xa3\x9e\xb1\xa4\x9e\xb1\xa4\x9e\ +\xb1\xa5\x9f\xb2\xa7\x9e\xb2\xa8\x9f\xb2\xa8\x9f\xb3\xa9\xa1\xb5\ +\xab\xa3\xb5\xab\xa3\xb4\xab\xa3\xb5\xaa\xa2\xb4\xaa\xa2\xb4\xa6\ +\xa0\xb3\xa5\x9f\xb2\xa4\x9f\xb2\xa5\x9f\xb2\xa6\xa0\xb3\xa7\xa1\ +\xb4\xa9\xa3\xb4\xac\xa6\xb7\xad\xa7\xb8\xaf\xa8\xb7\xaf\xa8\xb7\ +\xb0\xaa\xb9\xaf\xa9\xb8\xb0\xa9\xb9\xb1\xaa\xb8\xb4\xac\xb9\xbb\ +\xb1\xbb\x00\x00\x00\xe2\xd7\xda\xe5\xd8\xdb\xe6\xd9\xdc\xe8\xda\ +\xdd\xe8\xdb\xdd\xe8\xdb\xdd\xe9\xdc\xde\xea\xdc\xdf\xea\xdd\xdf\ +\xea\xdd\xdf\xea\xdd\xdf\xea\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xeb\ +\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xea\xdd\xdf\xe9\xdc\ +\xde\xe9\xdc\xde\xe9\xdc\xdd\xe9\xdc\xdd\xea\xdc\xdd\xea\xdc\xdd\ +\xec\xde\xdc\xec\xde\xdc\xed\xde\xdc\xed\xde\xdc\xed\xde\xdb\xed\ +\xdd\xda\xed\xdd\xdb\xed\xdd\xda\xee\xdd\xd9\xed\xdc\xd9\xed\xdc\ +\xd9\xee\xdd\xda\xee\xdd\xda\xee\xdd\xda\xed\xdc\xd9\xec\xdb\xd8\ +\xed\xdc\xd9\xed\xdc\xd9\xee\xdb\xd7\xed\xdb\xd6\xed\xda\xd5\xeb\ +\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\ +\xd2\xeb\xd8\xd3\xeb\xd8\xd3\xec\xda\xd4\xed\xda\xd5\xed\xda\xd5\ +\xec\xd9\xd4\xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd3\xea\ +\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xeb\xd8\xd2\xe9\xd7\ +\xd2\xe8\xd6\xd3\xe7\xd7\xd3\xe7\xd7\xd4\xe8\xd7\xd4\xe9\xd8\xd5\ +\xe9\xd8\xd5\xeb\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xea\xdb\xd8\xeb\ +\xdc\xd9\xeb\xdc\xda\xed\xde\xdb\xed\xde\xdc\xee\xe0\xdd\xee\xe0\ +\xdd\xee\xe3\xdf\xef\xe3\xdf\xf0\xe4\xdf\xf0\xe4\xdf\xf1\xe5\xe0\ +\xf2\xe6\xe1\xf2\xe6\xe0\xf3\xe8\xe1\xf4\xea\xe3\xf5\xeb\xe4\xf6\ +\xec\xe5\xf7\xee\xe5\xf7\xef\xe6\xf7\xef\xe6\xf7\xf0\xe7\xf7\xf1\ +\xe8\xf7\xf0\xe7\xf7\xef\xe6\xf7\xec\xe4\xf5\xeb\xe3\xf4\xe8\xdf\ +\xf3\xe5\xdd\xf1\xe1\xda\xf0\xde\xd7\xee\xdc\xd6\xed\xdb\xd4\xec\ +\xd9\xd3\xea\xd7\xd2\xe7\xd4\xcf\xe3\xd0\xcc\xde\xcb\xc9\xd8\xc5\ +\xc5\xd1\xc1\xc1\xca\xbb\xbd\xc2\xb4\xba\xb9\xad\xb7\xb0\xa6\xb3\ +\xa8\xa0\xb0\xa3\x9d\xae\xa0\x9a\xae\x9c\x97\xac\x9a\x96\xab\x9a\ +\x95\xaa\x9a\x95\xaa\x9c\x95\xab\x9c\x96\xac\x9f\x98\xad\xa1\x9a\ +\xaf\xa3\x9d\xb0\xa4\x9e\xb1\xa3\x9d\xb0\xa4\x9d\xb1\xa5\x9e\xb1\ +\xa6\x9d\xb1\xa6\x9e\xb1\xa7\x9e\xb2\xa8\xa0\xb3\xa9\xa1\xb4\xa9\ +\xa1\xb4\xa8\xa0\xb4\xa8\xa1\xb4\xa7\xa1\xb4\xa5\xa0\xb2\xa2\x9d\ +\xb1\xa0\x9c\xb1\xa1\x9d\xb1\xa2\x9e\xb2\xa4\x9f\xb3\xa6\xa2\xb3\ +\xa9\xa4\xb4\xac\xa6\xb6\xac\xa7\xb6\xaf\xa8\xb7\xae\xa8\xb7\xad\ +\xa8\xb7\xaf\xa9\xb8\xb0\xa9\xb7\xb4\xac\xb8\xc0\xb4\xbb\x00\x00\ +\x00\xe1\xd6\xd9\xe4\xd8\xdb\xe5\xd9\xdc\xe5\xda\xdd\xe6\xdb\xde\ +\xe7\xdb\xde\xe7\xdb\xde\xe7\xdc\xdf\xe7\xdc\xde\xe8\xdc\xde\xe8\ +\xdd\xdf\xe8\xdd\xe0\xe9\xde\xe0\xe9\xde\xe0\xe9\xdd\xdf\xe8\xdd\ +\xe0\xe8\xdc\xde\xe8\xdd\xdf\xe8\xdc\xde\xe8\xdb\xdd\xe8\xdb\xdd\ +\xe8\xdb\xdd\xe8\xdb\xdd\xe9\xdc\xdd\xea\xdc\xdd\xeb\xdd\xdb\xec\ +\xdd\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xec\xdd\xda\xed\xdc\ +\xdb\xed\xdd\xdb\xed\xdc\xda\xed\xdc\xda\xed\xdc\xd9\xee\xdd\xda\ +\xee\xdd\xda\xee\xdd\xda\xed\xdc\xd9\xec\xdc\xd9\xed\xdc\xd9\xee\ +\xdc\xd9\xee\xda\xd6\xed\xda\xd5\xec\xd9\xd4\xec\xd9\xd4\xea\xd7\ +\xd2\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\xeb\xd8\xd3\xeb\xd8\xd3\ +\xeb\xd8\xd3\xeb\xd8\xd3\xec\xd9\xd4\xec\xd9\xd5\xeb\xd8\xd3\xeb\ +\xd8\xd4\xeb\xd8\xd4\xea\xd7\xd3\xe9\xd6\xd2\xe9\xd6\xd1\xe9\xd6\ +\xd3\xea\xd7\xd2\xe9\xd7\xd2\xe9\xd8\xd4\xe8\xd7\xd3\xe7\xd6\xd3\ +\xe7\xd6\xd4\xe6\xd7\xd5\xe7\xd8\xd5\xe9\xd8\xd5\xe9\xd8\xd5\xea\ +\xd9\xd6\xeb\xda\xd7\xec\xda\xd7\xeb\xdc\xd9\xeb\xdc\xd9\xec\xdd\ +\xda\xed\xde\xdb\xee\xe0\xde\xee\xe2\xde\xef\xe3\xdf\xf0\xe5\xe0\ +\xf1\xe5\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe7\xe1\xf2\xe7\xe1\xf3\ +\xe7\xe1\xf4\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf7\xee\xe6\xf6\xef\ +\xe6\xf6\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf6\xf2\xe9\ +\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xef\xe6\xf7\xee\xe4\xf6\xeb\xe3\xf5\ +\xe9\xe1\xf4\xe7\xde\xf3\xe5\xdd\xf2\xe4\xdc\xf0\xe0\xd9\xed\xdb\ +\xd5\xe9\xd6\xd1\xe6\xd3\xcd\xe1\xce\xca\xdb\xc8\xc6\xd5\xc3\xc3\ +\xcd\xbd\xbf\xc4\xb6\xbc\xbc\xaf\xb8\xb3\xa9\xb5\xae\xa6\xb3\xab\ +\xa4\xb2\xa8\xa0\xb1\xa4\x9d\xae\xa2\x9a\xae\xa0\x99\xad\xa0\x98\ +\xad\xa0\x98\xad\x9f\x98\xad\xa0\x99\xae\xa1\x9a\xaf\xa3\x9d\xb0\ +\xa4\x9d\xb0\xa4\x9e\xb1\xa3\x9d\xb0\xa3\x9d\xb0\xa3\x9d\xb0\xa4\ +\x9d\xb0\xa4\x9e\xb1\xa5\x9f\xb2\xa6\x9f\xb3\xa6\xa0\xb3\xa6\xa0\ +\xb3\xa4\x9f\xb3\xa3\x9e\xb2\xa0\x9d\xb1\x9d\x9b\xb0\x9d\x9a\xb0\ +\x9c\x9a\xaf\x9d\x9c\xb0\xa0\x9d\xb1\xa4\xa0\xb3\xa7\xa3\xb4\xaa\ +\xa5\xb5\xab\xa6\xb6\xac\xa7\xb6\xad\xa8\xb7\xad\xa8\xb7\xad\xa8\ +\xb7\xb1\xaa\xb7\xba\xb0\xb9\xc6\xb8\xbc\x00\x00\x00\xe1\xd6\xd9\ +\xe2\xd7\xda\xe4\xd9\xdc\xe5\xd9\xdc\xe5\xda\xdd\xe6\xdb\xde\xe6\ +\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe7\xdd\ +\xe0\xe6\xdc\xdf\xe9\xde\xe1\xe7\xdc\xdf\xe7\xdc\xdf\xe8\xdd\xdf\ +\xe6\xdb\xde\xe5\xda\xdd\xe6\xdb\xdd\xe6\xda\xdc\xe7\xdb\xdd\xe7\ +\xdb\xdc\xe8\xdb\xdc\xe8\xda\xdc\xea\xdb\xdb\xec\xdd\xda\xec\xdd\ +\xda\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xeb\xdc\xda\xea\xdb\xd9\ +\xec\xdb\xda\xed\xdc\xda\xed\xdd\xd9\xed\xdc\xd9\xed\xdc\xd9\xed\ +\xdc\xd9\xed\xdc\xd9\xec\xdb\xd8\xed\xda\xd8\xee\xdb\xd7\xee\xdb\ +\xd5\xed\xda\xd5\xec\xd9\xd4\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd2\ +\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\xd7\xd2\xea\ +\xd7\xd2\xeb\xd8\xd3\xeb\xd8\xd3\xeb\xd8\xd3\xea\xd7\xd4\xe9\xd7\ +\xd4\xe9\xd5\xd2\xe9\xd6\xd3\xe8\xd6\xd2\xe9\xd6\xd3\xe9\xd7\xd4\ +\xea\xd7\xd4\xe8\xd6\xd4\xe9\xd8\xd5\xe9\xd8\xd4\xe6\xd7\xd4\xe7\ +\xd8\xd6\xe7\xd8\xd6\xe8\xd9\xd6\xeb\xda\xd7\xea\xdb\xd8\xeb\xda\ +\xd7\xeb\xda\xd7\xeb\xdc\xd9\xec\xdd\xda\xed\xde\xdb\xef\xe1\xdd\ +\xee\xe2\xde\xef\xe3\xdf\xf1\xe5\xe1\xf1\xe6\xe2\xf2\xe6\xe1\xf3\ +\xe7\xe0\xf4\xe7\xe2\xf3\xe8\xe1\xf3\xe9\xe2\xf3\xe9\xe2\xf4\xea\ +\xe3\xf5\xeb\xe4\xf7\xed\xe6\xf7\xee\xe7\xf6\xef\xe6\xf7\xef\xe6\ +\xf8\xf1\xe8\xf8\xf0\xe7\xf7\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\ +\xf2\xe9\xf6\xf2\xe9\xf6\xf1\xe8\xf7\xf0\xe7\xf6\xee\xe5\xf6\xed\ +\xe5\xf6\xec\xe3\xf5\xe9\xe1\xf2\xe5\xdd\xf0\xdf\xd8\xec\xd9\xd4\ +\xe8\xd5\xd0\xe3\xd0\xcc\xdc\xca\xc8\xd6\xc4\xc4\xcd\xbe\xc0\xc5\ +\xb8\xbc\xbc\xb0\xba\xb4\xab\xb7\xb2\xa9\xb6\xb0\xa7\xb5\xae\xa4\ +\xb3\xa9\xa0\xb1\xa7\x9f\xb0\xa5\x9c\xaf\xa4\x9b\xaf\xa3\x9a\xae\ +\xa2\x99\xaf\xa1\x9a\xae\xa2\x9b\xaf\xa2\x9c\xaf\xa3\x9d\xb0\xa2\ +\x9c\xaf\xa3\x9d\xb0\xa2\x9c\xaf\xa2\x9c\xaf\xa3\x9d\xb0\xa2\x9c\ +\xb0\xa4\x9d\xb2\xa4\x9e\xb1\xa4\x9e\xb2\xa2\x9e\xb1\xa0\x9e\xb2\ +\x9d\x9c\xb0\x9b\x99\xaf\x98\x98\xae\x96\x98\xad\x98\x98\xad\x99\ +\x9a\xaf\x9c\x9c\xb0\xa0\x9e\xb1\xa3\xa1\xb4\xa6\xa2\xb3\xa9\xa4\ +\xb5\xac\xa7\xb6\xad\xa8\xb7\xac\xa7\xb7\xae\xa8\xb6\xb4\xac\xb8\ +\xc2\xb5\xbb\xce\xbd\xc0\x00\x00\x00\xdf\xd5\xda\xe1\xd7\xdb\xe2\ +\xd8\xdc\xe3\xd9\xdc\xe4\xda\xdd\xe4\xda\xdd\xe6\xdb\xde\xe5\xda\ +\xdd\xe4\xda\xdd\xe5\xda\xdd\xe4\xda\xde\xe4\xda\xdf\xe5\xdc\xdf\ +\xe5\xdc\xe0\xe6\xdc\xdf\xe6\xdc\xdf\xe6\xdb\xde\xe5\xda\xdd\xe5\ +\xda\xdd\xe4\xd9\xdc\xe4\xd9\xdc\xe5\xd9\xdb\xe7\xda\xdc\xe7\xdb\ +\xdb\xe8\xda\xdb\xe8\xda\xdb\xe8\xda\xdb\xe9\xda\xdb\xeb\xdc\xda\ +\xeb\xdc\xda\xea\xdb\xd9\xea\xdb\xd9\xea\xdc\xda\xeb\xdb\xd9\xed\ +\xdc\xd9\xed\xdd\xda\xee\xdd\xda\xec\xdb\xd8\xec\xdb\xd8\xeb\xda\ +\xd7\xec\xda\xd7\xec\xda\xd7\xed\xda\xd7\xed\xda\xd5\xec\xd9\xd4\ +\xec\xd9\xd4\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xe9\xd6\xd1\xe9\ +\xd6\xd1\xe9\xd5\xd0\xe8\xd5\xd0\xe8\xd5\xd0\xe8\xd5\xd0\xe8\xd5\ +\xd0\xe9\xd6\xd1\xe9\xd6\xd3\xe8\xd5\xd2\xe7\xd5\xd2\xe6\xd4\xd1\ +\xe7\xd4\xd1\xe6\xd5\xd2\xe6\xd5\xd2\xe8\xd7\xd4\xe8\xd7\xd4\xe8\ +\xd7\xd4\xe8\xd7\xd4\xe8\xd8\xd4\xe7\xd8\xd5\xe7\xd8\xd6\xe8\xd8\ +\xd6\xe9\xd9\xd6\xea\xda\xd7\xeb\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\ +\xec\xdc\xd9\xed\xde\xdb\xef\xe1\xdd\xef\xe3\xdf\xf0\xe4\xe0\xf1\ +\xe5\xe1\xf2\xe6\xe2\xf1\xe6\xe2\xf2\xe8\xe1\xf3\xe9\xe2\xf4\xea\ +\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\ +\xf5\xed\xe6\xf6\xee\xe7\xf7\xef\xe8\xf7\xf1\xe8\xf8\xf0\xe7\xf7\ +\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf2\ +\xea\xf7\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf1\xe8\xf7\xf0\xe7\ +\xf6\xec\xe3\xf3\xe8\xe0\xf1\xe1\xda\xec\xda\xd4\xe8\xd5\xd0\xe3\ +\xd0\xcc\xdc\xca\xc8\xd6\xc4\xc4\xcc\xbd\xc0\xc3\xb5\xbc\xba\xaf\ +\xb9\xb5\xab\xb7\xb4\xaa\xb7\xb2\xa9\xb6\xb0\xa7\xb4\xad\xa3\xb3\ +\xab\xa1\xb2\xaa\xa0\xb1\xa9\x9f\xb0\xa6\x9d\xb0\xa5\x9c\xb0\xa4\ +\x9b\xaf\xa3\x9c\xaf\xa3\x9d\xb0\xa3\x9d\xb0\xa2\x9c\xaf\xa2\x9c\ +\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa1\x9b\xaf\xa1\x9b\xb0\ +\xa1\x9b\xb0\xa1\x9c\xb1\x9f\x9c\xb1\x9c\x9b\xaf\x9a\x99\xaf\x95\ +\x96\xad\x93\x94\xac\x92\x94\xac\x91\x94\xac\x94\x96\xad\x97\x99\ +\xae\x9c\x9b\xaf\x9f\x9e\xb1\xa2\xa0\xb2\xa6\xa4\xb4\xa9\xa4\xb5\ +\xab\xa6\xb5\xad\xa7\xb6\xb1\xaa\xb7\xbe\xb2\xba\xca\xba\xbd\xd5\ +\xc3\xc2\x00\x00\x00\xde\xd5\xdb\xe0\xd6\xdd\xe1\xd7\xdd\xe1\xd7\ +\xdc\xe1\xd8\xdc\xe2\xd9\xdc\xe2\xd8\xdd\xe3\xd9\xde\xe3\xd9\xde\ +\xe2\xd9\xde\xe3\xd9\xdf\xe3\xd9\xdf\xe4\xdb\xe0\xe5\xda\xe1\xe5\ +\xdc\xdf\xe5\xdb\xdf\xe4\xdc\xde\xe4\xda\xdd\xe3\xda\xdd\xe4\xd9\ +\xdc\xe4\xd9\xdc\xe5\xda\xdc\xe6\xd9\xdc\xe6\xda\xdb\xe6\xd9\xda\ +\xe7\xd9\xda\xe7\xd9\xda\xe7\xda\xda\xe8\xda\xdb\xe9\xda\xda\xe9\ +\xda\xda\xea\xdb\xd9\xea\xdb\xd9\xeb\xdc\xd9\xee\xdc\xd9\xed\xdc\ +\xd9\xed\xdc\xd9\xec\xdb\xd8\xeb\xda\xd7\xeb\xd9\xd6\xec\xda\xd7\ +\xed\xda\xd5\xec\xd9\xd4\xed\xda\xd5\xec\xd9\xd4\xeb\xd8\xd3\xeb\ +\xd7\xd2\xea\xd6\xd1\xe9\xd5\xd0\xe8\xd5\xcf\xe8\xd4\xcf\xe7\xd4\ +\xce\xe7\xd3\xce\xe6\xd3\xce\xe6\xd3\xce\xe6\xd3\xcf\xe7\xd4\xd0\ +\xe7\xd4\xd1\xe7\xd4\xd1\xe4\xd3\xd0\xe5\xd2\xcf\xe4\xd3\xd0\xe4\ +\xd3\xd0\xe5\xd4\xd1\xe6\xd5\xd2\xe7\xd6\xd3\xe8\xd7\xd4\xe8\xd7\ +\xd4\xe7\xd7\xd5\xe6\xd8\xd6\xe7\xd8\xd6\xe8\xd8\xd6\xea\xd9\xd6\ +\xeb\xda\xd7\xec\xdb\xd8\xed\xdc\xd9\xec\xdc\xd9\xed\xdd\xda\xee\ +\xdf\xdc\xee\xe2\xde\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf2\xe5\ +\xe1\xf2\xe7\xe3\xf2\xe8\xe3\xf4\xe9\xe2\xf4\xea\xe3\xf4\xea\xe3\ +\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf5\xec\xe5\xf6\xed\xe6\xf6\ +\xee\xe7\xf7\xef\xe8\xf7\xef\xe8\xf8\xf0\xe7\xf7\xf1\xe7\xf6\xf0\ +\xe7\xf7\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\ +\xf7\xf3\xe9\xf7\xf3\xea\xf7\xf2\xe9\xf7\xf0\xe7\xf6\xec\xe3\xf3\ +\xe7\xdf\xf0\xe0\xd9\xeb\xd8\xd3\xe6\xd3\xce\xe0\xcd\xca\xd8\xc7\ +\xc5\xcf\xbf\xc1\xc5\xb7\xbd\xbd\xb2\xba\xb8\xae\xb9\xb6\xac\xb8\ +\xb5\xab\xb7\xb4\xaa\xb6\xb1\xa7\xb4\xb0\xa5\xb3\xad\xa2\xb2\xac\ +\xa1\xb1\xab\xa0\xb2\xa9\x9f\xb0\xa6\x9d\xb1\xa4\x9b\xaf\xa4\x9b\ +\xb0\xa3\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa1\x9b\xae\ +\xa2\x9c\xaf\xa1\x9b\xae\x9f\x9a\xaf\x9f\x9a\xaf\x9e\x9a\xaf\x9d\ +\x99\xaf\x9b\x99\xae\x98\x97\xae\x94\x95\xad\x90\x93\xab\x8d\x92\ +\xab\x8c\x91\xaa\x8c\x91\xaa\x8e\x92\xab\x92\x95\xac\x94\x97\xac\ +\x99\x99\xae\x9f\x9d\xb0\xa4\xa1\xb2\xa6\xa3\xb3\xaa\xa4\xb4\xae\ +\xa7\xb5\xb9\xae\xb8\xc6\xb7\xbc\xd2\xc0\xc0\xdb\xc8\xc5\x00\x00\ +\x00\xdd\xd5\xdb\xdf\xd6\xdc\xe0\xd6\xdc\xe1\xd6\xdd\xe1\xd7\xdc\ +\xe1\xd7\xdd\xe2\xd8\xdd\xe3\xd9\xdf\xe2\xd8\xde\xe2\xd8\xde\xe1\ +\xd9\xdf\xe1\xd9\xde\xe1\xda\xdf\xe3\xda\xe0\xe5\xdb\xe1\xe5\xdb\ +\xe0\xe5\xdb\xe0\xe3\xda\xde\xe2\xd9\xdd\xe3\xda\xdc\xe4\xda\xdd\ +\xe4\xd9\xdc\xe4\xd9\xdb\xe5\xd9\xdb\xe6\xd9\xdb\xe6\xd9\xdb\xe6\ +\xd9\xd9\xe6\xd8\xd9\xe6\xd8\xd9\xe8\xd9\xda\xe9\xda\xda\xea\xda\ +\xd9\xea\xdb\xd9\xeb\xdb\xd9\xec\xdc\xda\xed\xdc\xd9\xec\xdb\xd8\ +\xeb\xda\xd7\xeb\xd9\xd6\xec\xd9\xd6\xeb\xd9\xd5\xeb\xd8\xd3\xeb\ +\xd8\xd3\xec\xd8\xd3\xeb\xd7\xd2\xea\xd7\xd1\xea\xd6\xd0\xe8\xd4\ +\xcf\xe8\xd4\xcf\xe8\xd4\xcf\xe6\xd2\xcd\xe6\xd2\xcc\xe6\xd2\xcd\ +\xe5\xd1\xcc\xe4\xd1\xcc\xe4\xd1\xcd\xe5\xd2\xcf\xe4\xd2\xcf\xe3\ +\xd2\xcf\xe2\xd1\xcf\xe2\xd0\xce\xe3\xd1\xcf\xe3\xd2\xcf\xe3\xd2\ +\xcf\xe4\xd3\xd0\xe5\xd4\xd1\xe7\xd6\xd3\xe7\xd6\xd3\xe6\xd7\xd4\ +\xe6\xd7\xd5\xe7\xd8\xd6\xe9\xd8\xd6\xe9\xd9\xd6\xeb\xda\xd7\xec\ +\xdb\xd8\xec\xdb\xd8\xed\xdd\xda\xed\xde\xdb\xee\xdf\xdc\xee\xe2\ +\xde\xf0\xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf2\xe6\xe2\xf2\xe7\xe3\ +\xf3\xe8\xe4\xf4\xe8\xe4\xf4\xea\xe3\xf5\xeb\xe3\xf4\xea\xe3\xf6\ +\xec\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf5\xed\xe6\xf6\xee\xe7\xf7\xef\ +\xe8\xf6\xef\xe8\xf7\xef\xe8\xf8\xf0\xe9\xf7\xf0\xe9\xf8\xf1\xe7\ +\xf7\xf0\xe8\xf7\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf6\xf2\xe9\xf6\ +\xf2\xe9\xf6\xf1\xe8\xf7\xef\xe6\xf5\xea\xe2\xf2\xe5\xdd\xee\xdc\ +\xd6\xe9\xd6\xd0\xe2\xcf\xcc\xdb\xc9\xc7\xd1\xc1\xc2\xc7\xb9\xbe\ +\xbe\xb3\xba\xbb\xb0\xba\xb8\xae\xb9\xb6\xac\xb7\xb5\xab\xb7\xb3\ +\xaa\xb6\xb3\xa8\xb5\xb1\xa7\xb4\xaf\xa5\xb3\xad\xa2\xb2\xac\xa1\ +\xb2\xaa\x9f\xb0\xa8\x9d\xb0\xa4\x9b\xaf\xa3\x9b\xaf\xa3\x9c\xaf\ +\xa3\x9d\xb0\xa2\x9c\xaf\xa1\x9b\xae\xa0\x9b\xae\xa1\x9b\xad\x9f\ +\x9a\xae\x9e\x99\xae\x9c\x99\xae\x9b\x98\xae\x9a\x97\xad\x98\x96\ +\xad\x93\x94\xab\x8f\x92\xaa\x8b\x90\xa9\x88\x8f\xa8\x87\x8d\xa8\ +\x85\x8d\xa7\x87\x8e\xa7\x8a\x8f\xa8\x8e\x92\xa9\x94\x95\xab\x9b\ +\x9a\xaf\xa1\x9e\xb1\xa6\xa2\xb2\xaa\xa4\xb4\xb6\xab\xb7\xc2\xb4\ +\xba\xcf\xbe\xbe\xd9\xc6\xc3\xe1\xcd\xc8\x00\x00\x00\xdc\xd5\xdb\ +\xdd\xd6\xdb\xde\xd7\xdb\xde\xd6\xdb\xdf\xd6\xdc\xdf\xd8\xdc\xe0\ +\xd8\xdd\xe0\xd9\xde\xe0\xd8\xdd\xe0\xd9\xde\xe0\xd9\xde\xe0\xd9\ +\xde\xe0\xd9\xde\xe2\xdb\xe0\xe2\xdc\xe1\xe2\xdc\xe1\xe3\xdc\xe1\ +\xe2\xda\xe0\xe2\xd9\xdf\xe1\xd8\xdd\xe2\xd9\xdc\xe3\xd8\xdb\xe4\ +\xd9\xdb\xe3\xd8\xda\xe4\xd7\xd9\xe4\xd8\xd9\xe4\xd7\xd9\xe5\xd7\ +\xd8\xe6\xd8\xd9\xe6\xd8\xd9\xe8\xda\xda\xe9\xda\xd9\xe9\xda\xd8\ +\xeb\xdb\xd9\xec\xdb\xd9\xec\xdb\xd8\xed\xdc\xd9\xec\xda\xd7\xec\ +\xd9\xd6\xeb\xd7\xd3\xea\xd7\xd2\xea\xd6\xd1\xe9\xd5\xd1\xe9\xd5\ +\xcf\xe9\xd5\xcf\xe8\xd5\xcf\xe8\xd4\xce\xe7\xd3\xce\xe6\xd2\xcd\ +\xe5\xd1\xcc\xe5\xd1\xcc\xe4\xd0\xcb\xe3\xcf\xca\xe3\xcf\xca\xe2\ +\xcf\xcb\xe1\xce\xcb\xe2\xcf\xcc\xe1\xcf\xcc\xe0\xcf\xcd\xe0\xce\ +\xcd\xe0\xcf\xce\xe0\xcf\xce\xe0\xcf\xce\xe1\xcf\xce\xe3\xd2\xcf\ +\xe5\xd4\xd1\xe5\xd4\xd1\xe5\xd5\xd2\xe5\xd6\xd4\xe6\xd7\xd5\xe8\ +\xd8\xd6\xe8\xd9\xd6\xe9\xda\xd7\xeb\xdb\xd8\xec\xdb\xd8\xed\xdc\ +\xd9\xed\xdd\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe1\xdd\xee\xe2\xdf\ +\xef\xe3\xdf\xf0\xe5\xe1\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\ +\xe9\xe4\xf4\xe9\xe5\xf4\xe9\xe4\xf4\xea\xe5\xf4\xea\xe5\xf5\xeb\ +\xe5\xf6\xec\xe5\xf6\xed\xe6\xf6\xed\xe6\xf6\xed\xe6\xf7\xed\xe6\ +\xf6\xee\xe7\xf6\xee\xe7\xf6\xef\xe7\xf6\xef\xe7\xf7\xf0\xe7\xf8\ +\xf0\xe7\xf7\xf0\xe7\xf7\xf1\xe8\xf6\xf2\xe9\xf6\xf2\xe9\xf7\xf1\ +\xe8\xf6\xed\xe4\xf3\xe8\xe0\xf1\xe1\xda\xec\xd8\xd4\xe5\xd2\xce\ +\xdd\xca\xc8\xd4\xc3\xc3\xca\xbb\xbe\xc1\xb4\xbb\xbb\xb0\xba\xba\ +\xb0\xb9\xb9\xae\xb8\xb6\xac\xb8\xb6\xac\xb7\xb7\xab\xb7\xb6\xaa\ +\xb6\xb3\xa7\xb5\xb1\xa6\xb4\xb0\xa5\xb4\xae\xa3\xb3\xab\xa0\xb1\ +\xaa\x9f\xb0\xa6\x9d\xb1\xa4\x9b\xb0\xa2\x9c\xaf\xa3\x9d\xb0\xa2\ +\x9c\xaf\xa1\x9c\xaf\xa0\x9a\xad\xa0\x9b\xaf\x9e\x99\xae\x9e\x99\ +\xae\x9c\x98\xac\x99\x96\xac\x98\x95\xab\x94\x92\xab\x8e\x90\xa9\ +\x8a\x8e\xa7\x86\x8b\xa6\x80\x89\xa5\x7e\x89\xa5\x7d\x88\xa3\x7f\ +\x89\xa4\x83\x8a\xa5\x8a\x8f\xa8\x92\x95\xaa\x99\x99\xad\xa0\x9e\ +\xb1\xa6\xa1\xb1\xb0\xa7\xb4\xbf\xb1\xb8\xcb\xbb\xbd\xd6\xc3\xc2\ +\xde\xcb\xc7\xe6\xd2\xcc\x00\x00\x00\xdb\xd4\xdb\xdc\xd5\xdc\xdd\ +\xd6\xdc\xdd\xd7\xdb\xde\xd7\xdc\xde\xd7\xdc\xdf\xd9\xdd\xe0\xd9\ +\xde\xdf\xd8\xde\xe0\xd9\xdf\xe0\xd9\xdf\xdf\xd9\xde\xe0\xd9\xdf\ +\xe1\xda\xe0\xe2\xdb\xe1\xe2\xdb\xe1\xe2\xdb\xe1\xe1\xda\xdf\xe1\ +\xd9\xdf\xe1\xd9\xde\xe1\xd8\xdd\xe2\xd8\xdc\xe3\xd8\xdb\xe3\xd8\ +\xda\xe3\xd7\xd9\xe4\xd7\xd9\xe4\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd9\ +\xe6\xd8\xda\xe8\xda\xd9\xe9\xda\xd8\xe9\xdb\xd9\xeb\xdb\xd9\xec\ +\xdb\xd8\xec\xdb\xd8\xec\xdb\xd8\xec\xda\xd6\xeb\xd9\xd4\xea\xd6\ +\xd1\xe9\xd5\xd0\xe9\xd5\xcf\xe9\xd4\xcf\xe8\xd5\xce\xe8\xd5\xce\ +\xe8\xd4\xce\xe7\xd4\xce\xe6\xd2\xcd\xe6\xd2\xcd\xe4\xd0\xcb\xe3\ +\xcf\xca\xe3\xcf\xca\xe2\xce\xc9\xe1\xce\xc9\xe0\xcd\xca\xe0\xcd\ +\xca\xdf\xce\xcb\xdf\xcd\xcc\xdf\xce\xcd\xdf\xcf\xcd\xdd\xce\xcd\ +\xde\xce\xcd\xdf\xcf\xcd\xe0\xd0\xcf\xe2\xd1\xcf\xe3\xd2\xcf\xe4\ +\xd4\xd1\xe5\xd5\xd2\xe5\xd6\xd3\xe6\xd7\xd4\xe7\xd8\xd5\xe9\xd9\ +\xd6\xea\xda\xd7\xec\xdb\xd8\xec\xdc\xd9\xed\xdc\xd9\xee\xde\xdb\ +\xed\xdf\xdc\xee\xdf\xdc\xee\xe1\xde\xef\xe2\xde\xef\xe3\xe0\xf0\ +\xe5\xe1\xf1\xe6\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\xe9\ +\xe5\xf3\xe8\xe5\xf4\xe9\xe5\xf4\xea\xe6\xf5\xea\xe6\xf5\xeb\xe6\ +\xf6\xec\xe6\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\xe6\xf7\xed\xe6\xf6\ +\xee\xe7\xf6\xee\xe7\xf7\xef\xe7\xf6\xef\xe7\xf7\xf0\xe7\xf8\xf1\ +\xe8\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xef\xe6\xf5\xeb\xe2\ +\xf3\xe5\xde\xef\xde\xd8\xe9\xd6\xd1\xe2\xcf\xcb\xd8\xc6\xc5\xcd\ +\xbe\xc1\xc2\xb5\xbc\xbc\xb1\xba\xbb\xb0\xba\xb9\xae\xb8\xb8\xae\ +\xb8\xb7\xad\xb7\xb8\xad\xb7\xb8\xac\xb7\xb6\xaa\xb6\xb5\xa9\xb5\ +\xb4\xa6\xb4\xb0\xa6\xb4\xaf\xa3\xb3\xac\xa1\xb2\xaa\xa0\xb0\xa7\ +\x9d\xb1\xa5\x9c\xb0\xa3\x9c\xaf\xa2\x9c\xaf\xa2\x9c\xaf\xa2\x9c\ +\xaf\x9f\x9b\xae\x9f\x9b\xae\x9e\x9a\xad\x9d\x98\xad\x9b\x97\xac\ +\x98\x96\xab\x96\x93\xac\x93\x91\xaa\x8d\x8e\xa8\x87\x8b\xa5\x80\ +\x88\xa3\x7b\x85\xa1\x79\x85\xa1\x79\x85\xa1\x7c\x87\xa2\x82\x8a\ +\xa4\x8a\x8f\xa7\x92\x94\xaa\x9a\x99\xad\xa2\x9e\xaf\xae\xa5\xb2\ +\xbc\xae\xb5\xc9\xb8\xba\xd3\xc0\xbf\xdc\xc8\xc5\xe3\xcf\xca\xea\ +\xd6\xd0\x00\x00\x00\xdb\xd4\xdb\xdc\xd5\xdc\xdd\xd6\xdd\xdd\xd6\ +\xdc\xdd\xd6\xdc\xde\xd6\xdc\xdf\xd8\xdd\xe0\xd9\xdf\xdf\xd8\xdf\ +\xe0\xd9\xdf\xdf\xd7\xdf\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe0\xe0\ +\xd9\xe0\xe1\xda\xe0\xe0\xd9\xe0\xe0\xd8\xdf\xe0\xd8\xde\xdf\xd8\ +\xdd\xe1\xd9\xde\xe1\xd8\xdc\xe1\xd7\xdb\xe3\xd7\xda\xe3\xd7\xda\ +\xe3\xd7\xd9\xe4\xd7\xd9\xe5\xd8\xd8\xe6\xd7\xd8\xe6\xd8\xd9\xe8\ +\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xeb\xda\xd7\xeb\xda\xd7\xec\xdb\ +\xd8\xed\xdb\xd6\xec\xd9\xd4\xeb\xd8\xd2\xea\xd6\xd0\xe9\xd6\xcf\ +\xe8\xd5\xce\xe8\xd4\xce\xe7\xd5\xcd\xe7\xd4\xcd\xe7\xd3\xce\xe6\ +\xd2\xcd\xe5\xd1\xcc\xe4\xd0\xcb\xe4\xd0\xcb\xe2\xcf\xca\xe2\xce\ +\xc9\xe1\xcd\xc8\xe0\xcc\xc7\xdf\xcc\xc9\xde\xcb\xc9\xde\xcd\xca\ +\xdd\xcc\xcb\xdd\xcd\xcc\xdd\xce\xcc\xdd\xce\xcd\xde\xce\xcd\xdd\ +\xce\xcd\xe0\xd0\xcf\xe1\xd1\xcf\xe4\xd2\xd1\xe5\xd4\xd1\xe6\xd5\ +\xd2\xe6\xd6\xd3\xe6\xd7\xd4\xe8\xd8\xd6\xea\xd9\xd6\xea\xda\xd7\ +\xec\xdb\xd8\xed\xdb\xd8\xed\xdc\xd9\xee\xdd\xda\xed\xde\xdb\xee\ +\xdf\xdc\xef\xe0\xdd\xee\xe2\xde\xef\xe2\xe0\xf0\xe4\xe1\xf1\xe5\ +\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe5\ +\xf3\xe9\xe4\xf4\xe9\xe5\xf5\xea\xe6\xf5\xea\xe6\xf5\xea\xe6\xf5\ +\xea\xe4\xf5\xea\xe5\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\ +\xe7\xf6\xee\xe7\xf7\xef\xe8\xf6\xef\xe7\xf7\xf0\xe7\xf8\xf0\xe8\ +\xf8\xf1\xe7\xf8\xf1\xe8\xf7\xee\xe5\xf4\xe9\xe1\xf2\xe3\xdc\xee\ +\xdc\xd6\xe7\xd4\xcf\xdf\xcc\xc9\xd5\xc3\xc3\xc8\xba\xbe\xbe\xb2\ +\xbb\xbc\xb1\xbb\xba\xaf\xb9\xb9\xae\xb8\xb9\xaf\xb9\xb8\xad\xb7\ +\xb8\xad\xb7\xb7\xac\xb6\xb7\xab\xb7\xb6\xaa\xb6\xb5\xa8\xb6\xb3\ +\xa6\xb4\xb1\xa4\xb3\xae\xa3\xb3\xab\xa1\xb1\xa9\x9f\xb0\xa5\x9c\ +\xb0\xa3\x9b\xaf\xa1\x9b\xae\xa2\x9c\xaf\xa1\x9b\xae\xa0\x9c\xaf\ +\x9f\x9b\xae\x9f\x9a\xae\x9d\x98\xad\x9c\x97\xac\x99\x95\xac\x95\ +\x92\xab\x92\x91\xaa\x8c\x8d\xa7\x87\x8b\xa5\x81\x87\xa3\x7b\x85\ +\xa1\x7a\x85\xa1\x7b\x86\xa1\x7f\x88\xa3\x83\x8b\xa4\x8a\x8e\xa7\ +\x93\x94\xa9\x9f\x9b\xad\xad\xa4\xb0\xbc\xae\xb5\xc8\xb7\xba\xd2\ +\xbf\xbe\xdb\xc6\xc2\xe2\xce\xc9\xe7\xd4\xcd\xec\xd9\xd2\x00\x00\ +\x00\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdd\xd6\xdd\ +\xdd\xd6\xdd\xde\xd7\xdf\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd8\xdf\xe0\ +\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xdf\xd8\xdf\xdf\xd9\xe0\xdf\xd8\ +\xe0\xdf\xd8\xdf\xde\xd7\xde\xde\xd7\xde\xde\xd7\xdd\xe0\xd9\xde\ +\xe1\xd9\xdd\xe1\xd9\xdc\xe2\xd8\xdb\xe3\xd8\xdb\xe4\xd8\xda\xe6\ +\xd9\xda\xe6\xd8\xd8\xe5\xd7\xd9\xe6\xd7\xd8\xe7\xd8\xd6\xe8\xd8\ +\xd6\xe9\xd8\xd6\xea\xd8\xd5\xeb\xd9\xd5\xec\xd9\xd5\xec\xd9\xd4\ +\xec\xd9\xd4\xec\xd8\xd2\xeb\xd8\xd1\xe8\xd5\xce\xe8\xd5\xce\xe8\ +\xd5\xce\xe6\xd3\xcc\xe5\xd2\xcc\xe5\xd1\xcb\xe4\xd0\xcb\xe3\xcf\ +\xca\xe3\xd0\xcb\xe2\xcf\xca\xe2\xce\xc9\xe0\xcd\xc8\xe1\xcc\xc8\ +\xdf\xcd\xc8\xe0\xcd\xc9\xdf\xcd\xca\xdd\xca\xca\xdd\xcc\xcb\xdc\ +\xce\xcc\xdd\xcd\xcd\xdc\xcd\xcd\xdd\xcd\xcd\xde\xcf\xcf\xe0\xd1\ +\xcf\xe2\xd2\xd0\xe5\xd3\xd0\xe5\xd5\xd2\xe6\xd6\xd3\xe7\xd7\xd4\ +\xe7\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xec\ +\xdc\xd9\xee\xdd\xda\xeb\xdc\xd9\xed\xde\xdb\xee\xdf\xdc\xef\xe0\ +\xdd\xee\xe2\xdf\xef\xe1\xe0\xee\xe1\xdf\xf0\xe2\xe1\xf1\xe4\xe2\ +\xf0\xe5\xe2\xf0\xe5\xe3\xf2\xe7\xe3\xf3\xe7\xe3\xf2\xe7\xe4\xf4\ +\xe9\xe4\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\ +\xe5\xf3\xe8\xe4\xf4\xea\xe5\xf5\xeb\xe4\xf5\xec\xe5\xf7\xed\xe6\ +\xf5\xed\xe6\xf6\xee\xe7\xf7\xef\xe8\xf8\xf1\xe7\xf8\xf1\xe8\xf6\ +\xef\xe6\xf7\xed\xe5\xf4\xe9\xe1\xf1\xe2\xdb\xed\xd9\xd4\xe6\xd3\ +\xce\xde\xcb\xc8\xd2\xc2\xc1\xc5\xb7\xbc\xbc\xb1\xba\xbb\xb0\xba\ +\xbb\xb0\xba\xba\xaf\xb9\xba\xaf\xb9\xb8\xad\xb7\xb9\xae\xb8\xb9\ +\xad\xb8\xb8\xad\xb7\xb7\xab\xb7\xb6\xaa\xb6\xb6\xa8\xb6\xb2\xa5\ +\xb3\xaf\xa3\xb3\xad\xa2\xb2\xa9\x9f\xb0\xa7\x9d\xb1\xa4\x9d\xb0\ +\xa2\x9d\xb0\xa2\x9c\xaf\xa0\x9b\xae\xa0\x9c\xaf\xa0\x9c\xb0\x9f\ +\x9a\xaf\x9e\x99\xae\x9d\x97\xad\x9b\x96\xac\x98\x95\xab\x94\x91\ +\xaa\x90\x90\xa8\x8a\x8c\xa6\x86\x8b\xa5\x81\x88\xa3\x7f\x87\xa2\ +\x7e\x86\xa1\x7e\x86\xa1\x82\x88\xa2\x89\x8d\xa4\x97\x95\xa8\xa9\ +\xa0\xad\xba\xac\xb2\xc6\xb5\xb8\xd2\xbe\xbd\xda\xc6\xc2\xe0\xcc\ +\xc7\xe6\xd3\xcc\xeb\xd8\xd1\xf0\xde\xd6\x00\x00\x00\xda\xd4\xdc\ +\xdc\xd5\xdd\xdb\xd5\xdd\xdc\xd4\xdd\xdd\xd5\xdd\xdd\xd6\xde\xdd\ +\xd8\xde\xdf\xd8\xdf\xe0\xd9\xe0\xe0\xd9\xe0\xe0\xdb\xe1\xe0\xda\ +\xe1\xdf\xd9\xe0\xe0\xd8\xe0\xde\xd9\xe0\xdd\xd7\xe0\xde\xd7\xde\ +\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xe0\xd9\xde\xe1\xd9\xdf\xe2\ +\xd9\xdd\xe1\xd8\xdb\xe4\xd9\xdb\xe4\xd9\xdb\xe5\xd9\xdb\xe6\xd8\ +\xda\xe5\xd7\xd8\xe6\xd8\xd7\xe7\xd7\xd5\xe8\xd7\xd5\xe8\xd7\xd4\ +\xe9\xd7\xd4\xeb\xd8\xd4\xeb\xd8\xd3\xec\xd8\xd4\xed\xd9\xd3\xec\ +\xd8\xd1\xeb\xd8\xd1\xe9\xd6\xcf\xe8\xd5\xce\xe7\xd4\xcd\xe6\xd2\ +\xcc\xe5\xd1\xcc\xe4\xd0\xcb\xe3\xcf\xca\xe2\xce\xc9\xe1\xce\xc9\ +\xe1\xcf\xca\xe0\xcd\xc8\xe1\xce\xc9\xe0\xcd\xc8\xe0\xcd\xca\xe0\ +\xcd\xca\xdf\xcd\xc9\xde\xcc\xcb\xde\xcc\xcb\xdd\xcd\xcb\xdc\xcd\ +\xcd\xdd\xce\xcd\xde\xcf\xce\xdf\xd0\xce\xe1\xd2\xd0\xe3\xd3\xd1\ +\xe5\xd4\xd2\xe6\xd6\xd3\xe8\xd7\xd4\xe8\xd7\xd4\xe9\xd8\xd5\xe9\ +\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xeb\xdb\xd8\xec\xdb\xd8\xed\xdc\ +\xd9\xec\xdd\xda\xed\xde\xdb\xef\xe1\xdd\xef\xe2\xde\xee\xe2\xdf\ +\xef\xe1\xe0\xef\xe1\xe0\xee\xe2\xdf\xef\xe2\xe0\xef\xe3\xe1\xf0\ +\xe4\xe2\xf1\xe5\xe3\xf2\xe6\xe4\xf2\xe7\xe3\xf2\xe7\xe4\xf2\xe7\ +\xe4\xf2\xe7\xe3\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe4\ +\xf3\xe8\xe5\xf4\xea\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\xf7\ +\xed\xe6\xf6\xee\xe7\xf7\xf0\xe8\xf7\xf0\xe7\xf7\xef\xe6\xf6\xec\ +\xe4\xf4\xe8\xe0\xf1\xe1\xdb\xed\xd9\xd4\xe6\xd3\xce\xdd\xcb\xc8\ +\xd3\xc1\xc1\xc5\xb7\xbc\xbc\xb1\xbb\xbc\xb1\xbb\xbb\xb0\xba\xba\ +\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xba\xad\ +\xb7\xbb\xae\xb7\xbc\xad\xb7\xba\xac\xb7\xb8\xaa\xb5\xb4\xa7\xb4\ +\xaf\xa3\xb3\xab\xa1\xb2\xa8\x9f\xb2\xa5\x9d\xb1\xa2\x9c\xaf\xa2\ +\x9c\xaf\xa2\x9c\xaf\xa2\x9d\xb0\xa1\x9d\xb0\xa2\x9c\xb0\xa1\x9b\ +\xb0\x9f\x9a\xaf\x9f\x99\xae\x9c\x96\xad\x99\x95\xab\x95\x93\xaa\ +\x91\x91\xa8\x8d\x8e\xa7\x89\x8d\xa4\x87\x8b\xa3\x84\x88\xa0\x81\ +\x86\x9f\x83\x86\x9f\x8e\x8d\xa2\x9f\x98\xa8\xb3\xa4\xad\xc2\xb1\ +\xb4\xce\xbb\xb9\xd7\xc2\xbf\xde\xca\xc5\xe3\xcf\xc9\xe7\xd4\xcd\ +\xec\xd9\xd2\xf1\xe0\xd9\x00\x00\x00\xd8\xd3\xdc\xda\xd5\xde\xdb\ +\xd5\xde\xda\xd4\xde\xdb\xd5\xde\xdb\xd6\xde\xdd\xd7\xe0\xdf\xd8\ +\xe0\xdf\xda\xe0\xe1\xd9\xe0\xdf\xdb\xe2\xe0\xdc\xe1\xde\xda\xe0\ +\xde\xd9\xdf\xdd\xd9\xe0\xdc\xd8\xdf\xdc\xd8\xdf\xde\xd7\xdd\xde\ +\xd7\xde\xde\xd7\xde\xe0\xd9\xdd\xe1\xd9\xde\xe2\xd9\xdd\xe2\xd9\ +\xdc\xe4\xd8\xdb\xe4\xd8\xda\xe6\xd9\xdb\xe5\xd7\xd9\xe5\xd7\xd7\ +\xe6\xd7\xd6\xe6\xd7\xd5\xe7\xd6\xd4\xe7\xd6\xd3\xe9\xd7\xd3\xea\ +\xd7\xd3\xeb\xd8\xd3\xec\xd9\xd2\xec\xd9\xd2\xeb\xd8\xd1\xea\xd7\ +\xd0\xe9\xd6\xcf\xe8\xd5\xce\xe7\xd4\xcd\xe7\xd2\xce\xe5\xd1\xcc\ +\xe4\xd0\xcb\xe3\xd0\xcb\xe2\xce\xc9\xe1\xce\xc9\xe1\xce\xc9\xe1\ +\xce\xca\xe1\xce\xcb\xe0\xcd\xc9\xdf\xcc\xc9\xe0\xcd\xc9\xe0\xcc\ +\xc9\xde\xcc\xca\xdd\xcc\xcb\xdd\xcd\xcc\xdc\xcd\xcb\xde\xce\xcd\ +\xdf\xd0\xce\xe0\xd1\xcf\xe1\xd2\xd0\xe4\xd4\xd1\xe6\xd5\xd2\xe7\ +\xd7\xd4\xe9\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xea\xda\xd7\xeb\xda\ +\xd7\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\xdd\xda\xed\xde\xdb\ +\xee\xe0\xdd\xee\xe2\xde\xef\xe3\xdf\xee\xe2\xde\xef\xe2\xdf\xef\ +\xe2\xe0\xef\xe2\xe0\xef\xe2\xe0\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe4\ +\xe2\xf1\xe5\xe3\xf1\xe6\xe4\xf2\xe6\xe4\xf2\xe6\xe4\xf2\xe7\xe3\ +\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\ +\xe9\xe4\xf4\xe9\xe5\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\ +\xe7\xf6\xef\xe7\xf6\xef\xe7\xf6\xef\xe6\xf6\xed\xe4\xf4\xe8\xe0\ +\xf1\xe2\xdb\xed\xda\xd5\xe7\xd4\xce\xdf\xcc\xc9\xd5\xc3\xc3\xc9\ +\xba\xbe\xbf\xb3\xba\xbb\xb0\xba\xbb\xb0\xba\xba\xaf\xb9\xba\xaf\ +\xb9\xba\xae\xb8\xba\xae\xb9\xbb\xae\xb8\xbe\xb1\xb9\xc1\xb2\xb9\ +\xc1\xb2\xb9\xc1\xb2\xb8\xbf\xaf\xb7\xbc\xac\xb6\xb6\xa8\xb4\xaf\ +\xa3\xb3\xaa\xa0\xb2\xa7\x9e\xb1\xa4\x9e\xb0\xa3\x9d\xb0\xa3\x9d\ +\xb0\xa4\x9e\xb1\xa4\x9e\xb1\xa5\x9e\xb1\xa5\x9f\xb2\xa3\x9e\xb1\ +\xa2\x9c\xb0\x9f\x9a\xae\x9d\x98\xad\x99\x96\xac\x96\x93\xa9\x94\ +\x92\xa8\x96\x93\xa7\x93\x90\xa5\x8f\x8e\xa2\x8c\x8a\xa0\x8e\x8b\ +\x9f\x97\x90\xa1\xa7\x9a\xa6\xb9\xa8\xad\xc7\xb3\xb4\xd0\xbc\xba\ +\xd7\xc3\xc0\xdf\xca\xc5\xe5\xcf\xc9\xe8\xd4\xcd\xec\xd8\xd2\xf0\ +\xe0\xd7\x00\x00\x00\xd8\xd3\xdc\xd9\xd4\xdd\xd9\xd5\xdd\xda\xd3\ +\xdd\xda\xd4\xde\xda\xd5\xde\xdc\xd6\xdf\xdc\xd7\xe0\xdd\xd8\xe1\ +\xde\xd9\xe1\xde\xdb\xe2\xdf\xda\xe2\xde\xd9\xe2\xdd\xd8\xe0\xdc\ +\xd7\xe1\xdd\xd8\xdf\xdd\xd8\xdf\xde\xd7\xde\xde\xd7\xde\xde\xd7\ +\xde\xe0\xd9\xdd\xe0\xd8\xde\xe1\xd9\xdd\xe3\xd9\xdb\xe3\xd9\xdc\ +\xe4\xd9\xdb\xe5\xd8\xda\xe5\xd7\xd8\xe4\xd6\xd7\xe5\xd6\xd6\xe6\ +\xd6\xd4\xe7\xd5\xd3\xe6\xd5\xd2\xe9\xd7\xd3\xea\xd7\xd1\xea\xd6\ +\xd2\xeb\xd7\xd1\xeb\xd8\xd1\xea\xd7\xd1\xea\xd7\xd0\xe8\xd5\xce\ +\xe8\xd5\xce\xe7\xd4\xcd\xe5\xd2\xcd\xe5\xd1\xcc\xe4\xd1\xcc\xe3\ +\xd0\xcb\xe2\xcf\xca\xe1\xce\xcb\xe1\xce\xcc\xe2\xcf\xcc\xe1\xce\ +\xcb\xe0\xcd\xca\xe0\xcd\xca\xdf\xcc\xc9\xe0\xcd\xca\xdf\xcd\xca\ +\xdf\xcd\xcb\xde\xcd\xcc\xdd\xce\xcc\xdf\xd0\xce\xe0\xd1\xcf\xe1\ +\xd2\xd0\xe3\xd4\xd2\xe5\xd4\xd2\xe6\xd6\xd3\xe7\xd6\xd3\xe9\xd8\ +\xd5\xea\xd9\xd6\xeb\xda\xd7\xeb\xda\xd7\xeb\xda\xd7\xeb\xda\xd7\ +\xed\xdc\xd9\xec\xdc\xd9\xec\xdd\xda\xee\xdf\xdc\xef\xe1\xde\xef\ +\xe3\xdf\xef\xe3\xdf\xef\xe3\xdf\xee\xe2\xde\xed\xe1\xde\xed\xe0\ +\xde\xee\xe1\xdf\xef\xe1\xe0\xef\xe3\xe0\xf0\xe3\xe1\xf0\xe3\xe1\ +\xf0\xe4\xe2\xf1\xe5\xe3\xf2\xe6\xe4\xf1\xe5\xe3\xf2\xe6\xe4\xf2\ +\xe5\xe4\xf1\xe6\xe3\xf1\xe6\xe3\xf2\xe7\xe3\xf4\xe9\xe5\xf3\xe8\ +\xe4\xf5\xea\xe5\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\xf6\xef\xe6\ +\xf7\xef\xe6\xf7\xef\xe6\xf7\xee\xe5\xf4\xe9\xe1\xf2\xe3\xdc\xee\ +\xdc\xd7\xe9\xd6\xd1\xe2\xcf\xcb\xdb\xc8\xc6\xd0\xbf\xc0\xc6\xb8\ +\xbc\xbd\xb2\xb9\xbb\xb0\xb9\xbb\xb0\xba\xba\xaf\xba\xba\xaf\xb8\ +\xbb\xaf\xb8\xc0\xb2\xb9\xc5\xb6\xbb\xc8\xb8\xbc\xc9\xb7\xbb\xc8\ +\xb7\xbb\xc7\xb6\xb9\xc3\xb2\xb8\xbf\xaf\xb7\xb6\xa9\xb5\xae\xa3\ +\xb3\xa9\xa1\xb2\xa6\x9e\xb0\xa4\x9e\xb0\xa4\x9e\xb1\xa5\x9f\xb1\ +\xa6\xa0\xb2\xa7\xa1\xb3\xa6\xa0\xb2\xa6\xa0\xb2\xa5\x9f\xb2\xa4\ +\x9e\xb1\xa1\x9b\xae\x9e\x99\xad\x9e\x98\xac\xa3\x9a\xab\xa5\x9b\ +\xaa\xa3\x99\xa8\x9f\x95\xa4\x9a\x90\xa1\x9d\x92\xa1\xa4\x97\xa2\ +\xaf\x9e\xa6\xbd\xa9\xad\xc8\xb3\xb3\xd0\xbb\xb9\xd7\xc1\xbe\xde\ +\xc8\xc3\xe3\xcd\xc7\xe7\xd1\xcb\xeb\xd6\xd0\xee\xdc\xd5\x00\x00\ +\x00\xd6\xd1\xda\xd7\xd2\xdb\xd9\xd3\xdc\xda\xd2\xdc\xda\xd3\xdc\ +\xdb\xd4\xdd\xda\xd5\xde\xdb\xd5\xdf\xdc\xd7\xe0\xdd\xd8\xe1\xde\ +\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe1\xdc\xd8\xe0\xdd\xd7\xe0\xdd\xd7\ +\xdf\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd6\xde\xdf\xd8\xdd\ +\xe0\xd9\xde\xe1\xd7\xdc\xe2\xd9\xdc\xe3\xd8\xdb\xe3\xd7\xda\xe4\ +\xd7\xd9\xe4\xd7\xd8\xe4\xd6\xd7\xe4\xd6\xd6\xe5\xd5\xd4\xe7\xd5\ +\xd4\xe7\xd6\xd3\xe8\xd6\xd3\xe8\xd5\xd2\xe9\xd6\xd1\xe9\xd6\xd1\ +\xea\xd6\xd0\xe9\xd5\xd0\xe9\xd4\xd0\xe8\xd5\xce\xe7\xd4\xce\xe7\ +\xd4\xce\xe7\xd2\xcd\xe5\xd2\xcd\xe5\xd2\xcd\xe4\xd1\xcc\xe3\xd0\ +\xcb\xe3\xd0\xcc\xe3\xd0\xcc\xe2\xcf\xcc\xe2\xcf\xcc\xe1\xcf\xcc\ +\xe1\xce\xcb\xe0\xcd\xca\xdf\xcd\xca\xdf\xce\xcb\xe0\xce\xcc\xe0\ +\xce\xcd\xdf\xce\xcd\xe0\xd0\xce\xe1\xd1\xcf\xe3\xd3\xd1\xe3\xd4\ +\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe7\xd6\xd3\xe9\xd8\xd5\xea\xd9\xd6\ +\xeb\xda\xd7\xeb\xda\xd7\xec\xdb\xd8\xed\xdc\xd9\xed\xdc\xd9\xed\ +\xdd\xda\xee\xdf\xdc\xef\xe0\xdd\xef\xe1\xde\xef\xe3\xdf\xef\xe3\ +\xdf\xef\xe2\xde\xee\xe3\xde\xef\xe1\xde\xee\xe0\xde\xee\xe0\xde\ +\xee\xe1\xdf\xef\xe1\xe0\xef\xe2\xe0\xf0\xe2\xe0\xef\xe3\xe1\xf0\ +\xe4\xe2\xf1\xe5\xe3\xf1\xe5\xe3\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe5\ +\xe3\xf2\xe7\xe2\xf3\xe8\xe4\xf3\xe8\xe4\xf4\xe9\xe4\xf5\xea\xe5\ +\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\xf7\xee\xe6\xf8\xef\xe7\xf6\ +\xee\xe5\xf7\xee\xe5\xf5\xeb\xe3\xf3\xe6\xde\xf0\xdf\xd9\xec\xd8\ +\xd3\xe6\xd3\xce\xdf\xcc\xc8\xd6\xc4\xc3\xcd\xbc\xbf\xc5\xb7\xbc\ +\xbf\xb2\xba\xbc\xb0\xb9\xbc\xb0\xb8\xbc\xaf\xb9\xbf\xb1\xb9\xc6\ +\xb7\xbb\xcc\xbb\xbc\xd0\xbe\xbf\xd1\xbf\xc0\xd0\xbd\xbe\xd0\xbc\ +\xbe\xcc\xb9\xbc\xc8\xb6\xb9\xc0\xb0\xb6\xb5\xa8\xb4\xad\xa3\xb3\ +\xa9\xa1\xb2\xa8\xa0\xb1\xa8\xa1\xb2\xa9\xa1\xb2\xa9\xa2\xb3\xaa\ +\xa3\xb3\xaa\xa3\xb4\xaa\xa2\xb3\xab\xa3\xb4\xa9\xa1\xb1\xa6\x9e\ +\xb1\xa5\x9e\xb0\xaa\xa0\xaf\xae\xa2\xae\xae\xa1\xac\xad\x9f\xaa\ +\xab\x9c\xa7\xa8\x99\xa3\xab\x9b\xa3\xb1\x9f\xa5\xb8\xa3\xa7\xbf\ +\xaa\xac\xc6\xb1\xb1\xce\xb8\xb6\xd5\xbe\xbc\xdb\xc4\xc0\xe0\xca\ +\xc5\xe5\xcf\xc9\xe8\xd2\xcc\xeb\xd4\xce\x00\x00\x00\xd5\xd0\xd9\ +\xd6\xd1\xda\xd7\xd2\xdb\xd8\xd1\xda\xd9\xd1\xdb\xd8\xd2\xdb\xd9\ +\xd4\xdd\xda\xd5\xde\xdb\xd5\xde\xdc\xd7\xe0\xdc\xd7\xe0\xdd\xd8\ +\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd7\xe0\xde\xd7\xde\xdd\xd6\xdd\ +\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xdf\xd8\xdd\xe0\xd8\xdd\xe0\ +\xd7\xdc\xe2\xd8\xdb\xe2\xd7\xda\xe4\xd8\xda\xe4\xd7\xd9\xe4\xd7\ +\xd8\xe4\xd6\xd7\xe3\xd5\xd6\xe5\xd6\xd4\xe5\xd6\xd3\xe6\xd5\xd3\ +\xe7\xd5\xd2\xe8\xd5\xd2\xe8\xd5\xd1\xe8\xd5\xd0\xe9\xd5\xd0\xe8\ +\xd5\xd0\xe8\xd4\xcf\xe8\xd4\xce\xe8\xd4\xce\xe7\xd4\xce\xe6\xd2\ +\xce\xe5\xd3\xce\xe5\xd2\xcd\xe5\xd2\xcd\xe5\xd2\xcd\xe4\xd1\xcc\ +\xe3\xd1\xce\xe3\xd0\xcd\xe3\xd0\xcc\xe2\xcf\xcc\xe1\xcf\xcc\xe0\ +\xce\xcb\xe0\xce\xcb\xe1\xd0\xcd\xe1\xd0\xcd\xe0\xd0\xcd\xe1\xd0\ +\xcd\xe2\xd1\xcf\xe3\xd2\xd0\xe4\xd3\xd1\xe5\xd4\xd2\xe6\xd5\xd2\ +\xe8\xd7\xd4\xe8\xd7\xd4\xe9\xd8\xd5\xea\xd9\xd6\xea\xd9\xd6\xec\ +\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\xed\xdc\xd9\xed\xdd\xda\xed\xde\ +\xdb\xee\xdf\xdc\xef\xe1\xdd\xef\xe3\xde\xef\xe1\xde\xef\xe1\xde\ +\xef\xe1\xde\xef\xe1\xde\xf0\xe1\xde\xee\xe0\xde\xee\xe0\xdf\xef\ +\xe1\xdf\xee\xe1\xdf\xef\xe2\xe0\xef\xe2\xe0\xf0\xe4\xe2\xf0\xe4\ +\xe2\xf1\xe5\xe3\xf0\xe4\xe2\xf1\xe5\xe3\xf0\xe4\xe2\xf2\xe7\xe3\ +\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf5\xea\xe5\xf5\xeb\xe4\xf6\ +\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\xf7\xee\xe6\xf8\xef\xe6\xf7\xee\ +\xe5\xf6\xed\xe4\xf4\xe9\xe1\xf2\xe3\xdc\xee\xdd\xd6\xe9\xd6\xd0\ +\xe3\xcf\xca\xdb\xc8\xc6\xd2\xc1\xc2\xca\xbb\xbe\xc3\xb6\xbb\xbf\ +\xb2\xb9\xbe\xb1\xb9\xbf\xb1\xb9\xc5\xb6\xba\xcd\xbd\xbf\xd5\xc2\ +\xc0\xd8\xc4\xc2\xd8\xc4\xc3\xd8\xc4\xc2\xd7\xc3\xc2\xd5\xc1\xc0\ +\xd1\xbd\xbd\xca\xb8\xba\xbf\xaf\xb7\xb3\xa7\xb4\xad\xa3\xb3\xab\ +\xa2\xb3\xac\xa4\xb4\xab\xa3\xb4\xac\xa4\xb4\xad\xa5\xb5\xad\xa5\ +\xb4\xae\xa5\xb5\xaf\xa5\xb6\xae\xa5\xb5\xac\xa3\xb4\xad\xa2\xb1\ +\xb1\xa4\xb1\xb4\xa5\xb0\xb4\xa4\xae\xb2\xa2\xab\xaf\x9e\xa8\xae\ +\x9d\xa4\xb3\xa0\xa5\xbb\xa6\xa9\xbf\xa9\xaa\xbe\xa8\xaa\xc3\xac\ +\xad\xca\xb2\xb2\xd0\xb9\xb8\xd6\xbf\xbc\xdd\xc5\xc0\xe1\xc9\xc4\ +\xe2\xca\xc5\xe4\xcc\xc7\x00\x00\x00\xd4\xcf\xd8\xd7\xcf\xd9\xd7\ +\xcf\xd9\xd7\xcf\xd9\xd7\xcf\xd9\xd7\xd1\xda\xd8\xd3\xdc\xd9\xd4\ +\xdd\xda\xd5\xde\xdb\xd6\xdf\xdc\xd7\xe0\xdc\xd7\xe0\xdc\xd7\xe0\ +\xdc\xd7\xe0\xdc\xd7\xde\xde\xd7\xdd\xdd\xd6\xdd\xde\xd7\xde\xde\ +\xd7\xde\xdf\xd7\xde\xdf\xd8\xdc\xdf\xd7\xdd\xe1\xd7\xdb\xe1\xd8\ +\xdb\xe3\xd7\xdb\xe3\xd7\xda\xe5\xd8\xda\xe3\xd6\xd8\xe3\xd5\xd7\ +\xe3\xd6\xd7\xe5\xd5\xd5\xe4\xd6\xd3\xe5\xd4\xd3\xe6\xd4\xd2\xe6\ +\xd5\xd1\xe7\xd5\xd1\xe8\xd5\xd0\xe7\xd4\xcf\xe8\xd4\xcf\xe8\xd3\ +\xce\xe8\xd3\xcf\xe7\xd3\xcf\xe7\xd4\xcf\xe6\xd2\xcd\xe6\xd3\xce\ +\xe5\xd2\xcd\xe6\xd3\xce\xe6\xd3\xce\xe5\xd2\xcd\xe5\xd2\xcd\xe4\ +\xd1\xce\xe3\xd0\xcd\xe3\xd0\xcd\xe1\xcf\xcc\xe1\xd0\xcd\xe1\xd0\ +\xcd\xe2\xd1\xce\xe2\xd1\xce\xe3\xd1\xce\xe3\xd2\xcf\xe3\xd2\xcf\ +\xe4\xd3\xd0\xe5\xd4\xd1\xe7\xd5\xd2\xe8\xd7\xd4\xe9\xd8\xd5\xe9\ +\xd8\xd5\xea\xd9\xd6\xea\xd9\xd6\xeb\xda\xd7\xec\xdb\xd8\xed\xdc\ +\xd9\xec\xdb\xd8\xed\xdc\xd9\xed\xdd\xda\xee\xdd\xda\xee\xdf\xdc\ +\xee\xdf\xdc\xef\xe0\xdd\xef\xe1\xde\xef\xe0\xdd\xef\xe0\xdd\xef\ +\xe1\xdd\xef\xe0\xdd\xee\xdf\xde\xef\xe0\xdd\xee\xe0\xdf\xee\xe1\ +\xdf\xee\xe1\xdf\xef\xe2\xe0\xf0\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe2\ +\xef\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe3\xf2\xe6\xe3\xf2\xe7\xe3\xf3\ +\xe8\xe4\xf3\xe8\xe5\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\ +\xe6\xf7\xed\xe6\xf7\xee\xe5\xf9\xf0\xe7\xf7\xef\xe6\xf7\xee\xe5\ +\xf5\xec\xe3\xf4\xe7\xe0\xf1\xe1\xda\xec\xd9\xd4\xe8\xd4\xcf\xe0\ +\xcc\xc8\xd8\xc6\xc4\xd1\xbf\xc0\xc9\xba\xbd\xc2\xb4\xbb\xc1\xb3\ +\xb9\xc5\xb6\xbb\xcd\xbc\xbe\xd6\xc3\xc2\xdb\xc7\xc4\xdf\xca\xc6\ +\xe0\xcc\xc7\xdf\xcb\xc6\xde\xca\xc5\xdc\xc8\xc4\xd9\xc4\xc1\xd3\ +\xbf\xbf\xca\xb8\xbb\xbe\xaf\xb7\xb3\xa8\xb4\xaf\xa6\xb4\xaf\xa6\ +\xb4\xaf\xa5\xb5\xb0\xa6\xb6\xb0\xa6\xb6\xb0\xa6\xb6\xb1\xa7\xb7\ +\xb1\xa7\xb6\xb1\xa7\xb5\xaf\xa3\xb3\xaf\xa2\xb1\xb4\xa5\xb1\xb7\ +\xa6\xb0\xb7\xa5\xad\xb5\xa3\xaa\xb4\xa2\xa8\xb2\x9e\xa3\xb5\xa0\ +\xa3\xbf\xa9\xa9\xc4\xad\xac\xbf\xa7\xa7\xbe\xa7\xa9\xc3\xab\xad\ +\xca\xb2\xb1\xd0\xb7\xb6\xd4\xba\xba\xd7\xbe\xbc\xd8\xbf\xbe\xdb\ +\xc2\xc0\x00\x00\x00\xd6\xcd\xd7\xd5\xcd\xd7\xd6\xce\xd8\xd5\xcf\ +\xd7\xd7\xcf\xd9\xd8\xd0\xda\xd7\xd2\xdb\xd9\xd3\xdc\xdb\xd4\xde\ +\xdb\xd5\xde\xdb\xd6\xdf\xdb\xd6\xdf\xdc\xd6\xdf\xdb\xd5\xde\xdd\ +\xd4\xde\xdd\xd6\xde\xdd\xd6\xdd\xdd\xd6\xdd\xde\xd6\xdd\xdf\xd6\ +\xdd\xde\xd7\xdc\xdf\xd7\xdc\xe1\xd6\xdc\xe0\xd7\xda\xe2\xd7\xda\ +\xe2\xd7\xda\xe4\xd8\xda\xe4\xd6\xd8\xe4\xd6\xd7\xe3\xd5\xd7\xe4\ +\xd6\xd6\xe5\xd5\xd4\xe4\xd6\xd3\xe5\xd3\xd2\xe5\xd3\xd1\xe4\xd3\ +\xd0\xe5\xd3\xd0\xe6\xd3\xd0\xe6\xd4\xcf\xe6\xd3\xce\xe6\xd4\xce\ +\xe6\xd4\xce\xe7\xd3\xce\xe6\xd3\xce\xe5\xd2\xcd\xe6\xd3\xce\xe6\ +\xd3\xce\xe7\xd4\xcf\xe7\xd4\xcf\xe7\xd4\xcf\xe6\xd3\xcf\xe4\xd2\ +\xcf\xe2\xd2\xcf\xe3\xd2\xcf\xe3\xd2\xcf\xe3\xd2\xcf\xe4\xd3\xd0\ +\xe4\xd3\xd0\xe6\xd3\xd0\xe5\xd4\xd0\xe6\xd4\xd1\xe6\xd5\xd2\xe7\ +\xd6\xd3\xe8\xd7\xd4\xe9\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\ +\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\xdc\xd9\xec\xdb\xd8\xec\xdb\xd8\ +\xec\xdb\xd8\xec\xdc\xd9\xed\xdc\xd9\xec\xdd\xda\xed\xde\xdb\xee\ +\xdf\xdc\xee\xe0\xdc\xee\xdf\xdc\xed\xde\xdb\xee\xdf\xdc\xef\xe0\ +\xde\xee\xdf\xdd\xef\xdf\xde\xee\xe1\xde\xee\xe1\xe0\xef\xe2\xe0\ +\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\ +\xe3\xe1\xf0\xe4\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\ +\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\ +\xf7\xee\xe5\xf7\xee\xe5\xf8\xf0\xe7\xf7\xef\xe6\xf7\xee\xe5\xf5\ +\xeb\xe2\xf3\xe6\xde\xf0\xde\xd7\xeb\xd7\xd1\xe5\xd1\xcc\xdf\xcc\ +\xc8\xd8\xc5\xc3\xd1\xc0\xc0\xca\xba\xbd\xc9\xb9\xbc\xcf\xbe\xbf\ +\xd6\xc3\xc2\xdd\xc9\xc6\xe2\xce\xc9\xe4\xd1\xcb\xe5\xd2\xcc\xe6\ +\xd3\xcc\xe5\xd1\xcb\xe4\xce\xc9\xe0\xcc\xc7\xdb\xc6\xc2\xd4\xc0\ +\xbf\xcb\xb9\xbb\xc2\xb2\xb8\xba\xac\xb6\xb5\xaa\xb6\xb2\xa8\xb5\ +\xb1\xa7\xb6\xb2\xa8\xb6\xb3\xa8\xb6\xb4\xaa\xb6\xb5\xa9\xb6\xb5\ +\xa9\xb5\xb3\xa6\xb2\xb4\xa4\xb0\xb7\xa6\xb0\xba\xa7\xad\xb9\xa6\ +\xab\xb7\xa2\xa7\xb5\x9e\xa3\xb3\x9d\xa0\xb3\x9c\x9f\xbc\xa5\xa6\ +\xc4\xad\xab\xc2\xaa\xa9\xbc\xa3\xa5\xbb\xa3\xa6\xbe\xa6\xaa\xc2\ +\xa9\xae\xc3\xaa\xb1\xc8\xad\xb3\xc8\xad\xb4\xcc\xb3\xb6\x00\x00\ +\x00\xd6\xcd\xd8\xd5\xcd\xd7\xd5\xce\xd8\xd5\xce\xd8\xd6\xce\xd9\ +\xd7\xcf\xd9\xd8\xd1\xdb\xda\xd2\xdc\xdb\xd3\xdd\xdb\xd3\xdd\xdb\ +\xd4\xdd\xdb\xd3\xdd\xdc\xd4\xde\xdc\xd4\xde\xdc\xd5\xde\xdc\xd5\ +\xdc\xdc\xd5\xdc\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdc\xde\xd6\xdc\ +\xde\xd6\xdb\xe0\xd6\xdc\xe0\xd7\xda\xe0\xd6\xd9\xe2\xd7\xda\xe3\ +\xd8\xda\xe4\xd6\xd8\xe4\xd6\xd7\xe4\xd5\xd6\xe4\xd5\xd6\xe4\xd4\ +\xd5\xe3\xd4\xd3\xe3\xd3\xd1\xe3\xd2\xd1\xe4\xd2\xd1\xe4\xd2\xd0\ +\xe5\xd3\xd0\xe6\xd3\xd0\xe6\xd2\xcf\xe6\xd3\xcf\xe7\xd4\xcf\xe7\ +\xd3\xce\xe5\xd2\xcd\xe6\xd3\xce\xe6\xd3\xce\xe6\xd3\xce\xe7\xd4\ +\xcf\xe7\xd4\xcf\xe7\xd5\xcf\xe6\xd4\xd1\xe4\xd4\xd1\xe4\xd2\xd0\ +\xe4\xd3\xd0\xe4\xd3\xd0\xe5\xd4\xd1\xe5\xd4\xd1\xe5\xd4\xd1\xe8\ +\xd5\xd1\xe8\xd5\xd0\xe9\xd6\xd1\xe9\xd7\xd3\xe9\xd8\xd5\xe9\xd8\ +\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\xd7\xeb\xdb\xd8\xec\xdb\xd8\ +\xec\xdc\xd9\xeb\xdc\xd9\xec\xdb\xd8\xeb\xda\xd7\xea\xda\xd7\xeb\ +\xdb\xd8\xec\xdc\xd9\xeb\xdc\xd9\xec\xdd\xda\xed\xde\xdb\xed\xde\ +\xdb\xed\xde\xdb\xee\xdf\xdc\xed\xde\xdc\xee\xdf\xdd\xee\xdf\xdd\ +\xef\xe0\xdd\xee\xe0\xde\xee\xe1\xdf\xef\xe2\xe0\xef\xe2\xe0\xf0\ +\xe3\xe1\xf0\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xf0\xe3\xe1\xf0\xe4\ +\xe2\xf1\xe5\xe1\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe4\xf5\xeb\xe4\ +\xf6\xec\xe5\xf6\xec\xe5\xf7\xed\xe6\xf7\xee\xe6\xf7\xee\xe5\xf8\ +\xef\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xee\xe5\xf5\xea\ +\xe2\xf3\xe4\xdc\xef\xdc\xd5\xea\xd6\xd1\xe5\xd2\xcc\xe0\xcd\xc9\ +\xdb\xc8\xc6\xd7\xc4\xc3\xd6\xc3\xc2\xd9\xc6\xc4\xde\xca\xc7\xe3\ +\xcf\xca\xe7\xd3\xcd\xea\xd8\xd0\xeb\xd9\xd2\xed\xda\xd2\xec\xd8\ +\xd1\xeb\xd5\xcf\xe6\xd2\xcc\xe1\xcd\xc7\xdc\xc7\xc3\xd6\xc1\xc0\ +\xcf\xbc\xbc\xc7\xb6\xba\xc0\xb1\xb7\xba\xac\xb7\xb4\xa9\xb5\xb2\ +\xa7\xb3\xb3\xa8\xb5\xb7\xa9\xb5\xb9\xaa\xb5\xba\xaa\xb4\xb9\xa8\ +\xb2\xbb\xa8\xb0\xbf\xaa\xaf\xc0\xab\xae\xbc\xa5\xa9\xb7\xa1\xa4\ +\xb5\x9e\xa0\xb4\x9c\x9d\xb3\x9b\x9b\xb8\xa1\xa1\xbe\xa8\xa6\xbe\ +\xa8\xa7\xb9\xa2\xa4\xb3\x9b\xa1\xaf\x98\xa3\xae\x97\xa5\xae\x96\ +\xa7\xad\x94\xa8\xaf\x95\xa8\xb8\x9e\xab\x00\x00\x00\xd6\xce\xd6\ +\xd6\xce\xd6\xd6\xcf\xd6\xd6\xce\xd7\xd6\xcf\xd7\xd7\xd0\xd8\xd9\ +\xd1\xd9\xda\xd3\xda\xda\xd2\xda\xda\xd3\xdb\xdb\xd4\xdb\xdb\xd3\ +\xdb\xdb\xd4\xdb\xdb\xd3\xdb\xdc\xd4\xdc\xdc\xd5\xdc\xdc\xd5\xdc\ +\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdd\xde\xd6\xdc\xde\xd6\xdc\xdf\ +\xd6\xdc\xe0\xd6\xdb\xe0\xd6\xdb\xe2\xd7\xda\xe3\xd7\xd9\xe4\xd7\ +\xd9\xe5\xd7\xd9\xe4\xd6\xd7\xe3\xd5\xd6\xe3\xd4\xd5\xe3\xd4\xd4\ +\xe3\xd3\xd2\xe2\xd2\xd1\xe2\xd2\xd0\xe4\xd2\xd0\xe4\xd3\xd0\xe4\ +\xd3\xcf\xe5\xd2\xd0\xe5\xd2\xcf\xe6\xd3\xcf\xe7\xd4\xd0\xe5\xd2\ +\xcd\xe6\xd3\xce\xe6\xd3\xce\xe7\xd4\xcf\xe8\xd6\xd2\xe8\xd6\xd1\ +\xe8\xd6\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe5\xd4\xd1\xe5\xd3\xd1\xe5\ +\xd5\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe7\xd5\xd2\xe9\xd6\xd3\xea\xd7\ +\xd2\xea\xd8\xd2\xea\xd8\xd5\xea\xd9\xd6\xea\xd9\xd6\xeb\xda\xd7\ +\xeb\xda\xd7\xec\xda\xd7\xeb\xdb\xd8\xeb\xdc\xd9\xea\xdc\xd9\xea\ +\xdb\xd8\xeb\xdb\xd8\xea\xda\xd7\xea\xda\xd8\xea\xda\xd8\xeb\xdc\ +\xd9\xeb\xdc\xda\xeb\xdc\xda\xec\xdd\xdb\xed\xde\xdc\xee\xde\xdc\ +\xee\xde\xdc\xee\xde\xdc\xed\xde\xdc\xed\xde\xdc\xee\xdf\xdc\xef\ +\xe0\xdd\xee\xe1\xdf\xef\xe2\xdf\xef\xe3\xe0\xf0\xe3\xe1\xf0\xe3\ +\xe2\xef\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf2\xe6\xe2\ +\xf2\xe7\xe3\xf3\xe8\xe3\xf3\xe9\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf6\ +\xec\xe5\xf6\xec\xe5\xf7\xed\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf7\xf0\ +\xe7\xf8\xf1\xe8\xf7\xf0\xe7\xf8\xf1\xe7\xf6\xee\xe4\xf4\xe9\xe0\ +\xf3\xe2\xdb\xef\xdd\xd6\xeb\xd8\xd2\xe7\xd4\xce\xe4\xd0\xcb\xe1\ +\xcd\xc9\xe0\xcc\xc8\xe2\xce\xca\xe5\xd1\xcc\xe8\xd5\xce\xec\xd9\ +\xd2\xf0\xde\xd7\xf2\xe2\xda\xf2\xe3\xda\xf2\xe2\xd9\xf0\xde\xd6\ +\xec\xd8\xd2\xe8\xd2\xcc\xe3\xcf\xc9\xdd\xc9\xc4\xd8\xc3\xc2\xd2\ +\xbf\xbe\xcb\xb8\xba\xc3\xb2\xb7\xbd\xac\xb5\xb7\xa7\xb2\xb5\xa6\ +\xb1\xb7\xa7\xb1\xbb\xa9\xb2\xbc\xaa\xb1\xbd\xa9\xb0\xbe\xaa\xae\ +\xc2\xae\xb0\xc5\xae\xaf\xc3\xaa\xaa\xbd\xa4\xa5\xb8\x9e\xa0\xb5\ +\x9c\x9c\xb3\x9b\x9b\xb3\x9d\x9d\xb7\xa2\xa2\xb8\xa3\xa5\xb6\xa1\ +\xa4\xaf\x99\xa0\xa5\x91\x9e\x9c\x8a\x9e\x97\x85\x9f\x93\x81\x9f\ +\x90\x7d\x9e\x9f\x87\xa3\x00\x00\x00\xd7\xcf\xd6\xd6\xce\xd5\xd7\ +\xce\xd5\xd7\xcf\xd6\xd8\xcf\xd6\xd8\xd0\xd7\xd7\xd0\xd7\xd9\xd1\ +\xd8\xda\xd1\xd8\xd9\xd2\xd9\xd9\xd2\xd9\xd9\xd2\xd9\xda\xd2\xd9\ +\xda\xd4\xdb\xdb\xd3\xda\xdb\xd3\xda\xdc\xd4\xdb\xdc\xd4\xdb\xdc\ +\xd4\xdb\xdc\xd4\xdb\xdc\xd4\xdb\xdc\xd4\xda\xdd\xd4\xd9\xde\xd4\ +\xda\xdf\xd5\xda\xe1\xd6\xd9\xe1\xd6\xda\xe4\xd8\xda\xe5\xd8\xda\ +\xe4\xd7\xd9\xe3\xd5\xd7\xe2\xd4\xd5\xe1\xd3\xd4\xe1\xd3\xd4\xe1\ +\xd2\xd3\xe2\xd3\xd2\xe2\xd4\xd2\xe4\xd2\xd0\xe5\xd2\xd1\xe4\xd2\ +\xd0\xe3\xd2\xcf\xe4\xd3\xd0\xe5\xd3\xd0\xe6\xd3\xd0\xe5\xd4\xd1\ +\xe6\xd4\xd1\xe7\xd6\xd3\xe8\xd6\xd3\xe8\xd7\xd4\xe8\xd8\xd4\xe8\ +\xd7\xd4\xe7\xd6\xd3\xe7\xd7\xd4\xe5\xd6\xd3\xe6\xd6\xd4\xe8\xd7\ +\xd4\xe9\xd8\xd5\xe9\xd8\xd5\xea\xd9\xd6\xe9\xd9\xd4\xeb\xda\xd4\ +\xea\xda\xd5\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\xdb\xd8\xec\ +\xdc\xd9\xeb\xdc\xd9\xec\xdd\xda\xec\xdd\xda\xeb\xdc\xd9\xea\xdb\ +\xd9\xea\xdb\xd9\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\ +\xed\xde\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xdf\xdd\xee\xe0\xde\xed\ +\xdf\xdd\xee\xdf\xdd\xef\xe0\xdd\xef\xe0\xdd\xee\xe2\xdd\xef\xe3\ +\xdf\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf1\xe5\xe1\xf1\xe5\xe1\ +\xf0\xe4\xe0\xf1\xe4\xe1\xf1\xe5\xe0\xf1\xe5\xe2\xf3\xe7\xe3\xf3\ +\xe9\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xed\ +\xe6\xf8\xef\xe5\xf8\xef\xe6\xf7\xef\xe6\xf8\xf1\xe8\xf7\xf0\xe7\ +\xf9\xf1\xe8\xf8\xf1\xe8\xf8\xf0\xe7\xf7\xed\xe3\xf4\xe8\xdf\xf2\ +\xe2\xdb\xf0\xde\xd7\xec\xd9\xd4\xea\xd6\xd1\xe8\xd4\xcf\xe8\xd4\ +\xce\xe9\xd5\xcf\xeb\xd8\xd1\xee\xdb\xd4\xf1\xe1\xd9\xf3\xe5\xdc\ +\xf5\xea\xdf\xf5\xeb\xe1\xf4\xea\xdf\xf3\xe5\xdc\xf1\xdf\xd7\xed\ +\xda\xd3\xe9\xd5\xce\xe4\xcf\xc9\xe0\xcb\xc6\xda\xc5\xc2\xd4\xbe\ +\xbe\xcd\xb9\xba\xc6\xb2\xb6\xbf\xad\xb2\xba\xa8\xb0\xb9\xa6\xae\ +\xbb\xa7\xae\xbe\xa9\xae\xc0\xa9\xad\xc0\xaa\xad\xc4\xad\xaf\xca\ +\xb1\xb0\xca\xb0\xae\xc6\xaa\xa9\xbe\xa2\xa1\xb5\x9c\x9b\xb0\x99\ +\x98\xae\x98\x9a\xb0\x9d\x9f\xb3\xa0\xa2\xb3\x9f\xa3\xac\x9a\xa2\ +\xa2\x90\x9f\x96\x86\x9c\x91\x82\x9c\x8d\x7d\x9c\x87\x77\x9b\x8b\ +\x78\x9c\x00\x00\x00\xd5\xcd\xd4\xd6\xce\xd5\xd7\xcf\xd5\xd8\xce\ +\xd5\xd8\xcf\xd5\xd8\xcf\xd6\xd8\xcf\xd6\xd9\xd1\xd7\xda\xd1\xd8\ +\xd9\xd1\xd9\xd9\xd1\xd9\xd9\xd1\xd8\xda\xd2\xd9\xdb\xd3\xda\xdb\ +\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\ +\xda\xdb\xd3\xda\xda\xd2\xd9\xdb\xd3\xd9\xdc\xd3\xd9\xde\xd4\xda\ +\xe0\xd5\xda\xe1\xd6\xda\xe3\xd8\xda\xe3\xd7\xd9\xe4\xd7\xd8\xe3\ +\xd6\xd8\xe3\xd5\xd6\xe2\xd4\xd5\xe2\xd4\xd5\xe1\xd3\xd4\xe2\xd3\ +\xd4\xe2\xd3\xd3\xe2\xd3\xd2\xe2\xd3\xd1\xe3\xd3\xd1\xe3\xd2\xd0\ +\xe4\xd3\xd1\xe4\xd4\xd1\xe6\xd4\xd1\xe6\xd4\xd1\xe6\xd6\xd3\xe8\ +\xd7\xd4\xe8\xd7\xd4\xe9\xd9\xd6\xea\xd9\xd6\xea\xd9\xd6\xe9\xd9\ +\xd6\xe7\xd8\xd5\xe8\xd9\xd6\xe8\xd9\xd6\xe9\xda\xd7\xeb\xda\xd7\ +\xeb\xda\xd7\xeb\xdb\xd8\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xec\ +\xdc\xd8\xed\xdc\xd9\xed\xdc\xd9\xed\xdc\xd9\xed\xdc\xd9\xec\xdd\ +\xda\xec\xdd\xda\xed\xde\xdb\xec\xdd\xda\xeb\xdc\xda\xeb\xdc\xda\ +\xe9\xdb\xd9\xe9\xdc\xda\xea\xdd\xdb\xeb\xde\xdc\xeb\xde\xdc\xec\ +\xde\xdc\xed\xdf\xdd\xed\xdf\xdd\xee\xe0\xde\xed\xe0\xde\xee\xe1\ +\xde\xee\xe1\xde\xef\xe1\xde\xef\xe2\xde\xef\xe3\xdf\xf0\xe4\xe0\ +\xf1\xe5\xe2\xf2\xe6\xe2\xf2\xe6\xe2\xf1\xe5\xe1\xf1\xe5\xe1\xf1\ +\xe5\xe1\xf1\xe5\xe1\xf2\xe6\xe2\xf3\xe7\xe2\xf3\xe9\xe2\xf4\xea\ +\xe3\xf5\xeb\xe4\xf6\xec\xe4\xf6\xec\xe5\xf7\xee\xe5\xf8\xef\xe6\ +\xf7\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf8\xf1\xe8\xf6\ +\xf2\xe9\xf8\xf1\xe8\xf8\xef\xe5\xf6\xec\xe2\xf5\xe8\xe0\xf3\xe4\ +\xdc\xf1\xe0\xd9\xef\xdd\xd6\xee\xdb\xd4\xee\xdb\xd4\xee\xdc\xd5\ +\xf1\xdf\xd9\xf2\xe2\xdb\xf4\xe7\xde\xf6\xeb\xe1\xf7\xed\xe4\xf8\ +\xef\xe5\xf7\xed\xe3\xf5\xea\xe0\xf3\xe6\xdc\xf1\xe1\xd9\xee\xdc\ +\xd5\xeb\xd6\xcf\xe7\xd1\xcb\xe1\xcc\xc6\xdb\xc6\xc2\xd5\xbf\xbd\ +\xce\xb9\xb8\xc9\xb3\xb4\xc3\xae\xb1\xbe\xa9\xad\xbd\xa8\xac\xc0\ +\xa9\xab\xc2\xaa\xac\xc4\xab\xab\xc6\xac\xaa\xcb\xb1\xae\xce\xb3\ +\xaf\xcb\xaf\xab\xc2\xa7\xa4\xb7\x9d\x9c\xae\x96\x98\xa9\x94\x97\ +\xab\x99\x9b\xae\x9d\x9f\xae\x9e\xa2\xab\x9c\xa3\xa5\x95\xa2\x99\ +\x8b\x9e\x92\x84\x9c\x8d\x80\x9d\x8a\x7a\x9b\x8b\x79\x9b\x00\x00\ +\x00\xd2\xca\xd1\xd7\xce\xd4\xd8\xce\xd4\xd8\xcf\xd5\xd8\xce\xd4\ +\xd9\xcf\xd5\xd8\xcf\xd5\xd9\xcf\xd5\xda\xcf\xd6\xda\xd0\xd6\xd9\ +\xd0\xd6\xd9\xd0\xd7\xd9\xd1\xd8\xda\xd2\xd9\xda\xd2\xd8\xda\xd1\ +\xd8\xda\xd1\xd9\xda\xd2\xd9\xd9\xd1\xd8\xd9\xd1\xd8\xd9\xd1\xd8\ +\xd9\xd1\xd8\xd9\xd1\xd9\xdb\xd3\xda\xdd\xd4\xda\xde\xd5\xda\xe0\ +\xd7\xdb\xe2\xd8\xda\xe3\xd8\xdb\xe3\xd7\xd9\xe3\xd6\xd8\xe3\xd5\ +\xd7\xe2\xd5\xd6\xe3\xd5\xd6\xe2\xd5\xd5\xe2\xd4\xd5\xe2\xd4\xd5\ +\xe2\xd4\xd3\xe2\xd4\xd2\xe3\xd4\xd2\xe3\xd4\xd2\xe4\xd4\xd2\xe4\ +\xd5\xd3\xe5\xd5\xd3\xe6\xd6\xd4\xe7\xd7\xd4\xe9\xd8\xd5\xea\xda\ +\xd6\xea\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xeb\xdc\xd9\xeb\xdc\xd9\ +\xeb\xdc\xd9\xeb\xdc\xda\xeb\xdc\xd9\xec\xdd\xda\xec\xdd\xda\xed\ +\xde\xdb\xed\xde\xdb\xee\xde\xdb\xee\xdd\xda\xee\xdd\xda\xee\xdd\ +\xda\xed\xdd\xda\xed\xde\xdb\xed\xde\xdb\xed\xde\xdb\xee\xdf\xdc\ +\xed\xdf\xdc\xed\xde\xdb\xec\xdd\xdb\xeb\xdd\xdb\xea\xdd\xdb\xea\ +\xdd\xdb\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\xec\xdf\xdd\xec\xdf\ +\xdd\xed\xe0\xde\xed\xe1\xde\xee\xe2\xde\xee\xe2\xde\xef\xe2\xdf\ +\xef\xe3\xdf\xf0\xe4\xe0\xf0\xe5\xe1\xf1\xe5\xe1\xf2\xe6\xe1\xf2\ +\xe6\xe2\xf2\xe6\xe1\xf2\xe6\xe2\xf2\xe6\xe2\xf2\xe6\xe2\xf2\xe6\ +\xe2\xf2\xe6\xe1\xf3\xe8\xe2\xf4\xe9\xe2\xf5\xea\xe3\xf5\xeb\xe4\ +\xf6\xed\xe5\xf7\xee\xe5\xf8\xef\xe5\xf7\xef\xe6\xf8\xf0\xe7\xf7\ +\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\xf8\xf2\xe9\xf6\xf1\xe9\xf8\xf2\ +\xe9\xf8\xf0\xe7\xf7\xef\xe5\xf6\xec\xe2\xf5\xe9\xe0\xf4\xe6\xde\ +\xf3\xe4\xdc\xf2\xe2\xdb\xf3\xe3\xdb\xf3\xe4\xdc\xf4\xe7\xde\xf5\ +\xea\xe0\xf6\xec\xe2\xf7\xef\xe5\xf7\xf1\xe6\xf7\xf1\xe6\xf7\xf0\ +\xe7\xf7\xee\xe4\xf5\xeb\xe1\xf5\xe8\xde\xf3\xe5\xdb\xf0\xde\xd6\ +\xeb\xd8\xd1\xe8\xd1\xcc\xe2\xcc\xc6\xdc\xc6\xc1\xd6\xbf\xbb\xd0\ +\xba\xb6\xcb\xb5\xb3\xc7\xb0\xaf\xc4\xad\xac\xc3\xab\xab\xc6\xad\ +\xab\xc8\xae\xab\xc9\xae\xaa\xcb\xaf\xab\xcc\xb1\xac\xcc\xb1\xac\ +\xc6\xab\xa7\xbc\xa4\xa1\xb0\x9a\x9b\xa7\x94\x97\xa4\x95\x98\xa9\ +\x9a\x9d\xac\x9d\xa1\xaa\x9c\xa4\xa6\x9a\xa5\x9e\x92\xa2\x95\x89\ +\x9e\x8f\x84\x9d\x8c\x7f\x9c\x90\x80\x9d\x00\x00\x00\xcf\xc4\xcc\ +\xd4\xcb\xd1\xd8\xcd\xd3\xda\xcf\xd2\xda\xcf\xd4\xdb\xce\xd4\xda\ +\xd0\xd6\xda\xd0\xd6\xd9\xcf\xd5\xd8\xcf\xd4\xd8\xcd\xd4\xd8\xce\ +\xd4\xd9\xcf\xd5\xda\xd0\xd6\xd9\xce\xd6\xd9\xce\xd6\xd9\xce\xd6\ +\xd7\xd0\xd6\xd7\xcf\xd6\xd7\xcf\xd6\xd8\xd0\xd7\xd8\xd0\xd7\xd9\ +\xd1\xd8\xdb\xd3\xda\xdc\xd4\xd9\xde\xd4\xda\xdf\xd5\xdb\xe1\xd7\ +\xda\xe2\xd7\xda\xe1\xd6\xd9\xe1\xd6\xd9\xe2\xd5\xd8\xe3\xd6\xd8\ +\xe3\xd6\xd8\xe3\xd6\xd8\xe4\xd6\xd7\xe4\xd6\xd7\xe4\xd6\xd7\xe4\ +\xd5\xd6\xe3\xd6\xd5\xe4\xd6\xd3\xe4\xd6\xd4\xe5\xd6\xd4\xe7\xd8\ +\xd6\xe7\xd8\xd6\xe7\xd8\xd7\xe9\xda\xd7\xea\xdb\xd9\xeb\xdc\xd9\ +\xec\xdd\xda\xed\xde\xdb\xed\xde\xdb\xed\xde\xdb\xed\xde\xdb\xed\ +\xde\xdc\xee\xdf\xdc\xee\xe1\xde\xef\xe2\xde\xef\xe1\xde\xf0\xe1\ +\xde\xf0\xe1\xde\xef\xe0\xdd\xef\xe0\xdd\xee\xe0\xdd\xee\xe0\xdd\ +\xef\xe1\xde\xf0\xe1\xde\xee\xe1\xde\xef\xe2\xde\xef\xe2\xde\xee\ +\xe0\xdd\xed\xdf\xde\xed\xe0\xde\xed\xe0\xde\xed\xe0\xde\xec\xdf\ +\xdd\xed\xe0\xde\xec\xdf\xdd\xec\xdf\xdd\xed\xe0\xde\xee\xe2\xde\ +\xef\xe3\xdf\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf2\ +\xe6\xe2\xf2\xe6\xe1\xf3\xe7\xe2\xf4\xe9\xe2\xf3\xe7\xe1\xf2\xe6\ +\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe2\xf4\xe8\xe2\xf4\xe8\xe2\ +\xf4\xe8\xe2\xf5\xe9\xe3\xf6\xea\xe3\xf5\xed\xe5\xf6\xed\xe5\xf8\ +\xef\xe6\xf7\xf0\xe7\xf7\xf1\xe8\xf7\xf0\xe7\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf9\xf1\xe8\xf8\xf1\xe9\xf8\xf2\xe9\xf7\xf1\xe9\xf9\xf2\xe8\ +\xf9\xf1\xe6\xf8\xef\xe5\xf7\xed\xe4\xf7\xec\xe2\xf5\xeb\xe1\xf6\ +\xeb\xe1\xf6\xeb\xe1\xf6\xeb\xe1\xf6\xec\xe2\xf7\xed\xe3\xf8\xf0\ +\xe6\xf7\xf1\xe6\xf7\xf2\xe8\xf9\xf1\xe9\xf7\xf2\xe7\xf8\xf1\xe6\ +\xf8\xef\xe5\xf6\xed\xe3\xf5\xea\xe0\xf4\xe6\xdc\xf1\xe0\xd7\xec\ +\xd8\xd1\xe9\xd3\xcc\xe3\xcd\xc5\xdd\xc5\xbf\xd7\xbf\xba\xd3\xbc\ +\xb7\xd0\xb8\xb3\xcf\xb6\xb1\xcd\xb3\xaf\xcc\xb2\xae\xcd\xb3\xad\ +\xcd\xb1\xac\xcc\xb0\xab\xca\xb0\xaa\xcb\xb1\xac\xc9\xaf\xab\xc1\ +\xa9\xa7\xb5\xa0\xa1\xaa\x99\x9d\xa4\x96\x9a\xa6\x99\x9d\xa8\x9c\ +\xa1\xa7\x9c\xa4\xa6\x9b\xa6\xa1\x97\xa4\x9a\x8f\xa1\x92\x87\x9d\ +\x8f\x84\x9c\x93\x85\x9e\x00\x00\x00\xca\xbf\xc6\xd2\xc7\xcc\xd7\ +\xcc\xd0\xd9\xce\xd0\xda\xcf\xd2\xdc\xd0\xd5\xdc\xd0\xd6\xdb\xcf\ +\xd5\xdb\xcf\xd5\xda\xcd\xd3\xd9\xcd\xd3\xd8\xcd\xd3\xd9\xce\xd4\ +\xd8\xce\xd4\xd8\xce\xd4\xd8\xcd\xd4\xd6\xcc\xd4\xd5\xcd\xd4\xd5\ +\xcd\xd4\xd6\xce\xd5\xd6\xcf\xd6\xd8\xd0\xd7\xd9\xd1\xd8\xdb\xd3\ +\xda\xdc\xd4\xdb\xdd\xd5\xdb\xdf\xd5\xdb\xe0\xd6\xdc\xe0\xd6\xdb\ +\xe0\xd6\xda\xe1\xd7\xd9\xe1\xd7\xd9\xe2\xd7\xd9\xe3\xd7\xd9\xe4\ +\xd7\xd9\xe4\xd8\xd8\xe5\xd7\xd8\xe5\xd7\xd8\xe5\xd7\xd8\xe5\xd7\ +\xd8\xe4\xd7\xd6\xe4\xd7\xd6\xe6\xd8\xd6\xe7\xd9\xd7\xe8\xda\xd8\ +\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xde\xdb\xee\xdf\xdc\xee\ +\xdf\xdc\xee\xe0\xdc\xee\xdf\xdc\xee\xe1\xdd\xee\xe2\xde\xef\xe3\ +\xdf\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe4\xe0\ +\xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe4\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf0\ +\xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xef\xe3\xdf\xee\xe3\ +\xdf\xee\xe1\xdf\xef\xe2\xe0\xee\xe1\xdf\xee\xe1\xdf\xed\xe0\xde\ +\xee\xe1\xdf\xee\xe2\xdf\xef\xe2\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf0\ +\xe4\xe0\xf1\xe5\xe0\xf1\xe5\xe1\xf2\xe6\xe2\xf3\xe7\xe2\xf3\xe8\ +\xe2\xf3\xe8\xe2\xf5\xe9\xe3\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\ +\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf5\xe9\xe3\xf5\ +\xe9\xe3\xf6\xeb\xe3\xf6\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf7\xf1\ +\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe9\xf9\xf2\xe9\ +\xf7\xf1\xe8\xf8\xf2\xe8\xf8\xf2\xe8\xf8\xf2\xe9\xf8\xf1\xe9\xf8\ +\xf1\xe7\xf9\xf1\xe6\xf9\xef\xe5\xf8\xef\xe5\xf8\xef\xe4\xf8\xef\ +\xe5\xf8\xef\xe5\xf8\xf0\xe6\xf8\xf1\xe7\xf8\xf2\xe7\xf8\xf2\xe8\ +\xf8\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe7\xf9\ +\xf0\xe6\xf7\xef\xe4\xf6\xec\xe2\xf5\xe8\xdf\xf2\xe1\xd8\xee\xda\ +\xd2\xea\xd3\xcb\xe4\xcc\xc4\xde\xc5\xbe\xd9\xc1\xba\xd9\xc0\xb8\ +\xd9\xbf\xb8\xd8\xbe\xb8\xd7\xbd\xb5\xd5\xbb\xb3\xd3\xb8\xb1\xcf\ +\xb5\xaf\xcc\xb2\xac\xca\xb1\xac\xc8\xb0\xad\xc3\xac\xac\xba\xa7\ +\xa8\xae\x9f\xa2\xa6\x99\x9f\xa4\x99\x9f\xa5\x9c\xa2\xa5\x9b\xa2\ +\xa4\x9b\xa5\xa3\x9a\xa6\x9f\x96\xa4\x98\x8e\x9f\x93\x87\x9d\x95\ +\x89\x9f\x00\x00\x00\xc3\xb7\xbe\xce\xc3\xc8\xd5\xc9\xcd\xd8\xcd\ +\xd0\xd9\xcf\xd1\xdb\xcf\xd4\xdc\xd0\xd6\xdb\xd0\xd6\xdb\xcf\xd5\ +\xda\xce\xd4\xd9\xcd\xd3\xd9\xcd\xd3\xd9\xcd\xd3\xd8\xcc\xd2\xd7\ +\xcc\xd2\xd6\xcb\xd2\xd6\xcb\xd2\xd5\xcb\xd3\xd4\xcd\xd3\xd5\xcd\ +\xd4\xd5\xce\xd5\xd7\xcf\xd6\xd9\xd1\xd8\xdb\xd3\xda\xdb\xd4\xdb\ +\xdc\xd4\xdb\xdd\xd5\xdc\xdf\xd6\xdc\xdf\xd6\xdb\xdf\xd6\xdb\xe0\ +\xd7\xda\xe1\xd7\xda\xe3\xd8\xdb\xe2\xd7\xda\xe4\xd8\xda\xe5\xd8\ +\xda\xe5\xd9\xd9\xe5\xd9\xd9\xe6\xd9\xd9\xe6\xd9\xda\xe7\xd9\xda\ +\xe7\xd9\xda\xe8\xda\xda\xe8\xdb\xd9\xe9\xdb\xda\xea\xdd\xdb\xeb\ +\xde\xdc\xee\xdf\xdc\xef\xdf\xdc\xef\xe0\xdd\xee\xe0\xdd\xee\xe1\ +\xde\xef\xe3\xdf\xf0\xe4\xe0\xf0\xe5\xe1\xf1\xe6\xe2\xf1\xe6\xe2\ +\xf2\xe7\xe3\xf2\xe7\xe2\xf2\xe7\xe1\xf1\xe7\xe2\xf2\xe6\xe3\xf2\ +\xe6\xe2\xf2\xe6\xe2\xf1\xe6\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf1\xe6\ +\xe2\xf2\xe6\xe2\xf1\xe5\xe1\xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe3\xe1\ +\xef\xe3\xe1\xef\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xef\xe2\xe0\xf0\ +\xe4\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf1\xe5\ +\xe2\xf2\xe6\xe2\xf3\xe7\xe2\xf3\xe9\xe1\xf4\xe9\xe2\xf5\xeb\xe3\ +\xf4\xeb\xe2\xf5\xea\xe2\xf4\xe9\xe2\xf4\xe9\xe2\xf4\xe9\xe2\xf4\ +\xe9\xe2\xf5\xe9\xe3\xf4\xe9\xe3\xf5\xea\xe3\xf6\xed\xe4\xf6\xed\ +\xe4\xf7\xee\xe5\xf8\xef\xe6\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\ +\xf9\xf2\xe9\xf8\xf1\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf7\xf2\xe9\xf9\ +\xf2\xe9\xf8\xf2\xe8\xf8\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf9\xf1\xe8\xf9\xf2\xe8\xf9\xf1\xe8\xf9\xf2\xe7\xf8\xf2\xe7\ +\xf9\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe8\xf8\ +\xf2\xe9\xf8\xf1\xe9\xf8\xf1\xe9\xf7\xf1\xe8\xf9\xf2\xe8\xf8\xf1\ +\xe7\xf8\xf1\xe6\xf7\xee\xe3\xf5\xe9\xdf\xf2\xe2\xd9\xee\xda\xd2\ +\xe9\xd2\xca\xe4\xcb\xc3\xdf\xc5\xbd\xde\xc4\xbc\xdf\xc5\xbd\xe0\ +\xc6\xbf\xdf\xc7\xbd\xde\xc4\xbc\xd9\xc1\xb9\xd4\xbc\xb5\xcf\xb6\ +\xb1\xca\xb2\xae\xc6\xaf\xad\xc2\xad\xad\xbc\xa9\xab\xb2\xa3\xa8\ +\xa8\x9c\xa3\xa2\x99\xa1\xa3\x9b\xa3\xa4\x9c\xa4\xa4\x9c\xa6\xa4\ +\x9c\xa7\xa3\x9b\xa6\x9e\x96\xa3\x97\x8d\x9f\x96\x8b\x9f\x00\x00\ +\x00\xbe\xb2\xb8\xcb\xbf\xc3\xd3\xc8\xcc\xd8\xcc\xd0\xd9\xcd\xd1\ +\xd9\xcd\xd3\xdb\xcf\xd5\xdb\xcf\xd5\xda\xcf\xd5\xdb\xcf\xd4\xd9\ +\xcd\xd3\xd8\xcd\xd3\xd9\xcd\xd2\xd7\xcb\xd1\xd7\xcb\xd1\xd5\xca\ +\xd1\xd5\xcb\xd1\xd3\xcb\xd2\xd3\xcc\xd3\xd4\xcc\xd3\xd6\xcf\xd6\ +\xd7\xd0\xd7\xd9\xd1\xd9\xdb\xd3\xda\xdb\xd4\xdb\xdc\xd5\xdc\xdd\ +\xd5\xdd\xde\xd7\xdc\xde\xd7\xdc\xdf\xd7\xdc\xe0\xd7\xdc\xe1\xd8\ +\xdb\xe1\xd7\xda\xe4\xd8\xdb\xe4\xd8\xda\xe5\xd8\xda\xe6\xd9\xdb\ +\xe7\xdb\xdb\xe7\xdb\xdb\xe8\xdb\xdc\xe9\xdb\xdc\xe9\xdb\xdc\xe9\ +\xdb\xdc\xea\xdc\xdd\xeb\xdd\xdd\xeb\xde\xdc\xec\xde\xdc\xee\xde\ +\xdc\xee\xe0\xdd\xee\xe1\xdd\xf0\xe3\xe0\xef\xe4\xe0\xf0\xe5\xe1\ +\xf2\xe6\xe2\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe9\xe3\xf3\ +\xea\xe2\xf3\xe8\xe2\xf3\xe9\xe2\xf3\xe8\xe3\xf3\xe8\xe4\xf2\xe7\ +\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf2\xe8\xe1\ +\xf2\xe7\xe3\xf2\xe6\xe2\xf0\xe5\xe1\xf0\xe5\xe1\xf0\xe4\xe2\xf0\ +\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe5\xe1\xf1\xe6\xe2\xf1\xe6\ +\xe2\xf1\xe5\xe1\xf2\xe6\xe2\xf3\xe7\xe3\xf3\xe7\xe1\xf3\xe7\xe2\ +\xf4\xe9\xe2\xf3\xe9\xe2\xf5\xeb\xe4\xf4\xeb\xe3\xf5\xec\xe3\xf6\ +\xec\xe3\xf6\xeb\xe3\xf6\xeb\xe4\xf5\xeb\xe2\xf5\xeb\xe2\xf5\xeb\ +\xe2\xf5\xec\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\ +\xf8\xef\xe6\xf7\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\ +\xf2\xe9\xf8\xf2\xe8\xf8\xf3\xe9\xf8\xf2\xe9\xf7\xf1\xe8\xf9\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf8\xf3\xe9\xf9\xf2\xe9\xf8\xf2\xe8\ +\xf8\xf2\xe8\xf9\xf3\xe9\xf8\xf2\xe8\xf9\xf3\xea\xf8\xf2\xe9\xf8\ +\xf1\xe8\xf7\xf3\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf9\xf1\xe9\xf8\xf2\ +\xe9\xf6\xf1\xe8\xf7\xf2\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe8\ +\xf7\xf1\xe6\xf7\xee\xe4\xf5\xe9\xdf\xf2\xe3\xd9\xee\xda\xd2\xea\ +\xd3\xcb\xe5\xcc\xc5\xe3\xc9\xc0\xe2\xc9\xc1\xe3\xcb\xc2\xe4\xcd\ +\xc4\xe3\xcc\xc4\xde\xc7\xbf\xda\xc2\xbb\xd4\xbd\xb7\xcd\xb6\xb2\ +\xc5\xb0\xae\xc1\xac\xae\xba\xa8\xad\xb0\xa3\xab\xa7\x9d\xa7\xa2\ +\x9b\xa5\xa0\x9a\xa4\xa2\x9d\xa5\xa4\x9e\xa8\xa6\x9d\xa7\xa5\x9d\ +\xa7\xa3\x9b\xa6\x9d\x94\xa3\x97\x8f\xa0\x00\x00\x00\xbc\xaf\xb5\ +\xc8\xbc\xc1\xd1\xc6\xca\xd5\xca\xd0\xd7\xcc\xd2\xd8\xcc\xd2\xd9\ +\xcd\xd3\xdb\xcf\xd4\xda\xcf\xd4\xda\xce\xd3\xd9\xcf\xd1\xd9\xcd\ +\xd1\xd8\xcd\xd0\xd7\xcb\xd1\xd7\xcb\xd0\xd4\xca\xd0\xd3\xc9\xcf\ +\xd3\xca\xd2\xd3\xcc\xd3\xd5\xce\xd5\xd6\xcf\xd6\xd8\xd1\xd8\xd9\ +\xd2\xd9\xdb\xd4\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xdd\xd5\xdc\xde\xd6\ +\xdd\xde\xd7\xdd\xdf\xd8\xdd\xe0\xd8\xde\xe1\xd8\xdc\xe1\xd9\xdc\ +\xe3\xd8\xdb\xe4\xd9\xdb\xe5\xd9\xdb\xe8\xdb\xdd\xe8\xdb\xdc\xe9\ +\xdd\xdd\xea\xdd\xde\xeb\xdd\xde\xeb\xdd\xde\xeb\xdd\xdd\xeb\xde\ +\xdc\xeb\xde\xde\xed\xe0\xde\xed\xe0\xde\xee\xe0\xde\xee\xe1\xde\ +\xef\xe3\xdf\xf1\xe5\xe1\xf1\xe6\xe2\xf3\xe8\xe4\xf3\xe8\xe4\xf4\ +\xe9\xe4\xf4\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf4\xea\ +\xe3\xf5\xeb\xe4\xf5\xeb\xe3\xf5\xea\xe5\xf4\xe9\xe5\xf4\xe9\xe5\ +\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xea\xe5\xf4\xe9\xe3\xf4\xe9\xe3\xf3\ +\xe8\xe3\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe4\xf2\xe7\xe4\xf2\xe7\ +\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe8\xe4\xf3\xe8\xe3\ +\xf3\xe8\xe4\xf4\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf5\ +\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe4\xf6\xed\xe4\xf6\xec\xe3\xf5\xed\ +\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xed\xe4\xf7\xed\xe5\xf6\xed\xe4\ +\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf8\xf0\xe7\xf8\ +\xf0\xe7\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf8\xf2\xe9\xf9\xf2\xe9\ +\xfa\xf3\xea\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xea\xf9\xf2\xe9\xf8\ +\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf8\xf2\ +\xea\xf7\xf2\xe9\xf8\xf2\xe9\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\ +\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe9\xf8\xf2\xe8\xf8\ +\xf2\xe7\xf7\xee\xe4\xf5\xe9\xdf\xf3\xe4\xda\xf0\xdc\xd3\xeb\xd5\ +\xcc\xe8\xd0\xc6\xe7\xce\xc6\xe6\xcf\xc6\xe7\xd0\xc8\xe5\xcf\xc7\ +\xe2\xcc\xc4\xdd\xc7\xc1\xd7\xc2\xbc\xd0\xbb\xb7\xc8\xb3\xb2\xbf\ +\xad\xaf\xb8\xa9\xae\xb0\xa3\xad\xa7\x9f\xaa\xa4\x9c\xa8\x9f\x9b\ +\xa6\x9f\x9b\xa7\xa3\x9e\xa8\xa6\xa0\xaa\xa6\x9e\xa8\xa3\x9d\xa7\ +\xa0\x9a\xa5\x9d\x95\xa3\x00\x00\x00\xbd\xb0\xb7\xc9\xbd\xc3\xd1\ +\xc6\xcb\xd6\xca\xd0\xd7\xcb\xd0\xd8\xcc\xd2\xd9\xcd\xd3\xda\xce\ +\xd3\xd9\xce\xd2\xd9\xce\xd1\xd9\xcf\xd2\xd9\xcd\xd0\xd8\xcd\xd0\ +\xd6\xcb\xcf\xd7\xcb\xcf\xd5\xca\xd0\xd4\xca\xd0\xd4\xcb\xd1\xd5\ +\xcd\xd4\xd7\xcf\xd6\xd8\xd0\xd7\xd9\xd1\xd8\xda\xd2\xd9\xda\xd4\ +\xdb\xdb\xd5\xdc\xdc\xd5\xdc\xdd\xd6\xdd\xdf\xd7\xde\xdf\xd8\xdd\ +\xdf\xd8\xdd\xe1\xd9\xde\xe2\xd8\xdd\xe2\xd9\xdc\xe3\xda\xdd\xe5\ +\xda\xdc\xe7\xdb\xdd\xe7\xdb\xdd\xe9\xdd\xde\xea\xde\xde\xeb\xde\ +\xdf\xec\xde\xdd\xeb\xde\xdd\xeb\xdf\xdc\xec\xdf\xdd\xec\xdf\xde\ +\xee\xe1\xdf\xee\xe1\xdf\xef\xe2\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf1\ +\xe6\xe2\xf2\xe7\xe3\xf3\xe9\xe5\xf5\xea\xe5\xf5\xeb\xe5\xf5\xeb\ +\xe4\xf6\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf5\xeb\xe4\ +\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe5\xf5\xea\xe5\xf5\xea\xe6\xf6\ +\xeb\xe6\xf5\xeb\xe5\xf5\xeb\xe5\xf4\xea\xe4\xf4\xe9\xe5\xf4\xe9\ +\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\ +\xf4\xe9\xe5\xf4\xe9\xe6\xf5\xeb\xe5\xf5\xeb\xe4\xf5\xeb\xe4\xf5\ +\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\ +\xe5\xf6\xed\xe5\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\ +\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\ +\xef\xe6\xf8\xef\xe6\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf9\xf2\ +\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ +\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf8\ +\xf3\xe9\xf9\xf3\xe9\xf7\xf3\xea\xf9\xf3\xea\xf8\xf3\xea\xf9\xf2\ +\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf2\xe9\ +\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\ +\xf3\xea\xf8\xf2\xe9\xf9\xf1\xe8\xf7\xf2\xe9\xf8\xf2\xe8\xf8\xf1\ +\xe7\xf7\xee\xe4\xf6\xeb\xe1\xf3\xe6\xdb\xf1\xdf\xd7\xed\xd9\xcf\ +\xeb\xd4\xcb\xea\xd3\xcb\xe8\xd2\xca\xe5\xcf\xc7\xe2\xcc\xc5\xdf\ +\xc9\xc3\xd8\xc3\xbe\xd2\xbd\xba\xca\xb6\xb7\xbf\xad\xb1\xb7\xa8\ +\xaf\xae\xa3\xae\xaa\xa0\xad\xa7\x9f\xac\xa1\x9c\xa8\x9f\x9b\xa6\ +\x9f\x9c\xa8\xa3\xa0\xaa\xa6\xa1\xab\xa5\x9f\xaa\xa2\x9c\xa7\x9e\ +\x99\xa5\x00\x00\x00\xbe\xb1\xb8\xcb\xc0\xc4\xd3\xc9\xcc\xd6\xcb\ +\xcf\xd7\xcc\xd0\xd8\xcc\xd1\xd8\xcd\xd2\xd9\xcd\xd1\xd9\xce\xd1\ +\xda\xcd\xd0\xd9\xcd\xd1\xd8\xce\xd1\xd9\xcc\xd0\xd7\xcb\xce\xd6\ +\xcb\xcf\xd6\xcb\xd1\xd5\xcb\xd1\xd6\xcd\xd3\xd7\xd0\xd5\xd8\xd0\ +\xd7\xd9\xd1\xd8\xda\xd2\xd9\xda\xd3\xd9\xdb\xd3\xdb\xdd\xd5\xdc\ +\xdd\xd6\xdd\xde\xd6\xde\xdf\xd8\xde\xe0\xd9\xde\xe1\xda\xde\xe2\ +\xda\xe0\xe3\xda\xde\xe3\xda\xdd\xe3\xda\xdd\xe6\xdb\xdd\xe7\xdb\ +\xdd\xe8\xdb\xde\xea\xde\xde\xeb\xde\xde\xec\xdd\xdf\xec\xdf\xdd\ +\xec\xdf\xdd\xec\xdf\xdd\xed\xe0\xde\xed\xe0\xde\xee\xe1\xdf\xef\ +\xe3\xe0\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe6\xe2\xf3\xe8\xe4\xf4\xe9\ +\xe5\xf5\xea\xe6\xf6\xea\xe4\xf5\xec\xe5\xf5\xec\xe5\xf5\xec\xe5\ +\xf6\xed\xe6\xf6\xed\xe6\xf6\xed\xe6\xf6\xec\xe5\xf7\xec\xe5\xf7\ +\xec\xe5\xf5\xec\xe5\xf6\xec\xe5\xf6\xeb\xe4\xf5\xec\xe5\xf5\xec\ +\xe5\xf6\xec\xe5\xf5\xec\xe4\xf5\xea\xe7\xf6\xea\xe6\xf4\xea\xe5\ +\xf4\xea\xe6\xf4\xea\xe6\xf4\xea\xe6\xf3\xea\xe6\xf4\xea\xe6\xf5\ +\xec\xe6\xf5\xec\xe5\xf6\xec\xe5\xf5\xec\xe5\xf6\xec\xe5\xf6\xec\ +\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\xe4\xf6\xee\xe4\ +\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\ +\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf8\xef\ +\xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe8\ +\xf9\xf1\xe8\xf9\xf2\xe9\xfa\xf3\xea\xf9\xf3\xea\xfa\xf3\xea\xf9\ +\xf2\xe9\xfa\xf3\xea\xfa\xf3\xea\xf9\xf2\xea\xfa\xf3\xea\xf8\xf3\ +\xea\xf8\xf3\xea\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf3\xea\xf9\xf3\xea\ +\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf2\xe9\xf9\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf7\xf3\xea\xf8\xf2\xe9\xf7\xf3\xea\xf8\xf2\xe8\xf7\xf3\ +\xe9\xf8\xf2\xe9\xf6\xf2\xe8\xf8\xf1\xe9\xf8\xf2\xe8\xf8\xf1\xe6\ +\xf7\xef\xe5\xf6\xec\xe2\xf4\xe8\xdd\xf2\xe2\xd9\xef\xdc\xd3\xec\ +\xd6\xce\xe9\xd2\xca\xe4\xcf\xc8\xe0\xcb\xc4\xdd\xc7\xc2\xd7\xc3\ +\xbe\xd1\xbd\xbc\xc9\xb6\xb9\xbe\xae\xb4\xb4\xa7\xb1\xad\xa3\xaf\ +\xab\xa2\xaf\xa9\xa1\xae\xa3\x9d\xaa\x9f\x9b\xa7\x9e\x9b\xa7\xa1\ +\x9d\xa9\xa4\x9f\xaa\xa7\xa1\xac\xa3\x9e\xa8\x9f\x9b\xa6\x00\x00\ +\x00\xbe\xb0\xb5\xcb\xc0\xc3\xd6\xcb\xce\xd8\xcd\xd0\xd9\xce\xd1\ +\xd9\xce\xd0\xda\xcf\xd1\xda\xcf\xd2\xda\xce\xd1\xdb\xcd\xd1\xda\ +\xcc\xd0\xd9\xcc\xd0\xda\xcd\xd1\xd8\xcd\xd0\xd8\xcd\xd0\xd7\xcd\ +\xd1\xd7\xcd\xd3\xd8\xcf\xd5\xd8\xd1\xd6\xda\xd3\xd7\xdb\xd4\xd9\ +\xdb\xd4\xd9\xdb\xd4\xd9\xdd\xd6\xdb\xdd\xd6\xdc\xde\xd7\xdd\xe0\ +\xd9\xde\xe0\xd9\xde\xe1\xda\xdf\xe3\xdb\xdf\xe5\xdc\xdf\xe5\xdc\ +\xdf\xe5\xdc\xdf\xe6\xdc\xdf\xe7\xdc\xdf\xe8\xdc\xde\xe8\xdc\xde\ +\xe9\xdd\xdd\xeb\xdd\xde\xeb\xde\xdc\xed\xe0\xde\xec\xdf\xdd\xed\ +\xe0\xde\xee\xe1\xdf\xef\xe2\xe0\xf0\xe3\xe1\xf1\xe5\xe2\xf0\xe6\ +\xe2\xf1\xe6\xe2\xf2\xe6\xe2\xf3\xe8\xe4\xf4\xe9\xe5\xf5\xeb\xe6\ +\xf4\xec\xe5\xf5\xed\xe6\xf5\xed\xe6\xf6\xee\xe7\xf5\xee\xe7\xf6\ +\xee\xe7\xf7\xef\xe8\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf5\xed\ +\xe6\xf5\xed\xe6\xf5\xed\xe6\xf6\xee\xe7\xf6\xee\xe7\xf5\xed\xe6\ +\xf6\xec\xe5\xf6\xed\xe6\xf5\xec\xe7\xf4\xeb\xe7\xf5\xeb\xe7\xf4\ +\xeb\xe7\xf4\xeb\xe7\xf5\xec\xe8\xf5\xec\xe7\xf5\xed\xe5\xf6\xed\ +\xe6\xf6\xed\xe6\xf7\xee\xe7\xf7\xee\xe7\xf6\xed\xe6\xf7\xed\xe6\ +\xf7\xec\xe5\xf7\xee\xe7\xf8\xef\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\ +\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\ +\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf1\xe8\ +\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\ +\xf3\xe9\xf9\xf3\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xfa\xf3\xe9\xf9\xf3\ +\xe9\xf9\xf3\xea\xf8\xf3\xe9\xf9\xf3\xe9\xfa\xf3\xea\xf7\xf2\xe9\ +\xf7\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf3\xea\xf8\xf3\xea\xf7\ +\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\ +\xea\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf3\xea\xf7\xf3\xe9\xf7\xf2\xe9\ +\xf7\xf1\xe8\xf7\xf1\xe9\xf8\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe6\xf7\ +\xf0\xe5\xf7\xed\xe3\xf5\xea\xdf\xf2\xe4\xda\xed\xda\xd2\xe9\xd3\ +\xcb\xe4\xcf\xc8\xe0\xc9\xc4\xd9\xc4\xc0\xd3\xbf\xbd\xcd\xb9\xba\ +\xc4\xb3\xb7\xbd\xad\xb6\xb3\xa7\xb3\xad\xa3\xb0\xab\xa2\xb0\xaa\ +\xa2\xaf\xa7\xa0\xad\xa1\x9c\xa9\x9e\x9a\xa6\x9e\x9c\xa8\xa3\x9f\ +\xab\xa5\xa2\xae\xa5\xa1\xac\xa1\x9d\xa9\x00\x00\x00\xbe\xb0\xb5\ +\xca\xbc\xc0\xd3\xc8\xcb\xd8\xcd\xd0\xd9\xce\xd1\xd9\xce\xd1\xd9\ +\xcf\xd1\xda\xcf\xd2\xdb\xce\xd2\xdb\xce\xd1\xda\xcd\xd0\xda\xcc\ +\xd0\xda\xcd\xd0\xda\xce\xd1\xd9\xce\xd1\xd8\xce\xd2\xd9\xcf\xd5\ +\xda\xd0\xd6\xdb\xd2\xd8\xdd\xd4\xd9\xde\xd4\xda\xde\xd5\xda\xde\ +\xd5\xdb\xdd\xd6\xdb\xdf\xd8\xdd\xdf\xd8\xdd\xe0\xda\xdf\xe2\xdb\ +\xdf\xe3\xdb\xdf\xe5\xdc\xde\xe6\xdd\xe0\xe7\xdd\xdf\xe7\xdc\xdf\ +\xe7\xdc\xdf\xe8\xdc\xde\xe9\xdc\xde\xe8\xdd\xde\xe9\xdc\xdd\xeb\ +\xdd\xde\xeb\xde\xdd\xed\xe0\xde\xed\xe0\xde\xee\xe1\xde\xef\xe3\ +\xe0\xf0\xe4\xe1\xf1\xe5\xe1\xf1\xe6\xe2\xf1\xe6\xe2\xf2\xe7\xe3\ +\xf2\xe7\xe3\xf4\xe9\xe5\xf5\xea\xe6\xf5\xec\xe6\xf5\xed\xe6\xf6\ +\xee\xe7\xf5\xed\xe6\xf6\xee\xe7\xf6\xee\xe7\xf6\xef\xe8\xf7\xef\ +\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf6\xee\xe7\xf6\xee\xe7\ +\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf5\xee\xe7\xf5\ +\xed\xe6\xf5\xec\xe7\xf5\xec\xe8\xf4\xeb\xe8\xf4\xec\xe8\xf5\xec\ +\xe7\xf4\xec\xe7\xf5\xed\xe6\xf6\xed\xe6\xf5\xee\xe7\xf7\xee\xe7\ +\xf6\xee\xe7\xf6\xee\xe7\xf7\xee\xe7\xf6\xee\xe7\xf7\xee\xe7\xf8\ +\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\ +\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\ +\xf9\xf0\xe7\xf8\xef\xe6\xfa\xf1\xe8\xf9\xf0\xe7\xf8\xf1\xe8\xf8\ +\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf3\ +\xea\xf8\xf3\xe9\xfa\xf3\xe9\xf9\xf3\xe9\xf9\xf3\xea\xf9\xf3\xe9\ +\xf8\xf3\xea\xf8\xf3\xea\xfa\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf8\ +\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf7\xf3\ +\xea\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ +\xf8\xf3\xea\xf7\xf3\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\ +\xf1\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf7\xf1\xe6\xf7\xf1\xe6\xf7\xf0\ +\xe5\xf6\xee\xe4\xf4\xe8\xde\xf0\xde\xd5\xe9\xd4\xcd\xe4\xce\xc8\ +\xdd\xc8\xc2\xd6\xc1\xbe\xce\xb9\xba\xc5\xb3\xb7\xbd\xad\xb6\xb6\ +\xa9\xb6\xb1\xa6\xb5\xae\xa5\xb3\xab\xa1\xb1\xaa\xa1\xaf\xa7\xa0\ +\xae\xa2\x9d\xab\x9f\x9b\xa9\x9e\x9c\xa8\xa0\x9e\xaa\xa4\xa1\xac\ +\xa6\xa2\xaf\xa3\xa0\xac\x00\x00\x00\xbb\xad\xb3\xc5\xb8\xbe\xce\ +\xc2\xc5\xd4\xc9\xcc\xd8\xcd\xd0\xda\xcf\xd2\xd9\xcf\xd1\xdb\xcf\ +\xd3\xdc\xce\xd2\xdc\xcf\xd1\xdb\xce\xd0\xda\xcd\xd0\xda\xcd\xd0\ +\xd9\xce\xd2\xda\xcf\xd2\xda\xd0\xd3\xda\xd0\xd6\xdc\xd2\xd7\xdd\ +\xd3\xd8\xde\xd5\xd9\xde\xd5\xd9\xdf\xd6\xda\xdf\xd6\xda\xe0\xd6\ +\xdc\xe0\xd8\xdd\xe1\xd8\xdd\xe1\xd9\xde\xe3\xda\xde\xe4\xdb\xde\ +\xe6\xdc\xde\xe7\xdc\xdf\xe8\xdc\xdf\xe9\xdd\xde\xea\xdd\xde\xe9\ +\xdd\xde\xe9\xdd\xde\xe9\xdd\xde\xea\xdc\xdd\xeb\xdd\xdd\xeb\xde\ +\xdc\xed\xe0\xde\xee\xe1\xde\xef\xe3\xdf\xf0\xe4\xe0\xf1\xe6\xe2\ +\xf1\xe6\xe2\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf4\ +\xe9\xe5\xf4\xea\xe6\xf5\xec\xe5\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\ +\xe7\xf6\xee\xe7\xf7\xef\xe8\xf7\xef\xe8\xf8\xf0\xe8\xf8\xef\xe8\ +\xf8\xef\xe8\xf8\xf0\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\ +\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\ +\xe7\xf6\xee\xe8\xf5\xed\xe7\xf6\xee\xe8\xf5\xed\xe7\xf6\xee\xe7\ +\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe7\xf7\xef\xe8\xf7\ +\xef\xe8\xf7\xef\xe7\xf7\xef\xe8\xf7\xef\xe8\xf7\xf0\xe6\xf8\xef\ +\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\ +\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\ +\xf0\xe7\xf9\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf3\xe9\xf9\xf3\xe9\ +\xf9\xf3\xea\xf9\xf3\xe9\xf9\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf7\xf3\ +\xea\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ +\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf1\xe8\xf7\xf2\xe9\xf8\xf2\ +\xe9\xf8\xf2\xe7\xf7\xf0\xe6\xf7\xf0\xe6\xf7\xef\xe5\xf6\xed\xe3\ +\xf4\xe7\xdd\xf0\xdf\xd7\xea\xd4\xce\xe3\xcd\xc7\xdb\xc6\xc0\xd2\ +\xbd\xbc\xc8\xb5\xb8\xbd\xad\xb5\xb4\xa6\xb3\xad\xa2\xb2\xad\xa3\ +\xb3\xae\xa4\xb4\xac\xa3\xb2\xa9\xa1\xb0\xa7\xa1\xaf\xa5\x9f\xae\ +\xa1\x9d\xab\x9f\x9c\xab\xa0\x9d\xab\xa2\xa0\xac\xa4\xa1\xad\xa3\ +\xa1\xad\x00\x00\x00\xb3\xa4\xac\xbd\xaf\xb5\xc7\xb9\xbf\xce\xc2\ +\xc6\xd4\xc9\xcc\xd7\xcc\xcf\xd9\xce\xd1\xdd\xce\xd3\xdd\xcf\xd2\ +\xdd\xd0\xd2\xdb\xce\xd0\xda\xcd\xcf\xda\xce\xcf\xda\xce\xd1\xda\ +\xcf\xd2\xda\xd0\xd3\xdb\xd2\xd4\xdc\xd3\xd6\xde\xd4\xd7\xe0\xd5\ +\xd8\xe2\xd7\xda\xe2\xd7\xda\xe2\xd7\xda\xe3\xd9\xdc\xe1\xd8\xdb\ +\xe2\xd9\xdc\xe4\xdb\xdd\xe5\xdc\xdf\xe6\xdb\xdf\xe7\xdc\xde\xe9\ +\xdd\xdf\xeb\xde\xde\xeb\xdf\xdf\xeb\xde\xde\xea\xdd\xdd\xea\xdd\ +\xdd\xeb\xdd\xdd\xea\xdd\xdc\xeb\xde\xdc\xec\xdf\xdd\xee\xe1\xde\ +\xef\xe3\xde\xf0\xe4\xe0\xf2\xe6\xe2\xf1\xe7\xe3\xf2\xe7\xe2\xf3\ +\xe8\xe3\xf3\xe8\xe3\xf4\xe9\xe4\xf3\xe9\xe4\xf5\xeb\xe4\xf6\xec\ +\xe6\xf5\xec\xe6\xf6\xee\xe7\xf6\xee\xe7\xf6\xee\xe8\xf7\xef\xe8\ +\xf7\xef\xe9\xf8\xf0\xe9\xf8\xf0\xe8\xf8\xf1\xe8\xf8\xf0\xe8\xf8\ +\xef\xe9\xf7\xef\xe8\xf7\xef\xe8\xf6\xf0\xe9\xf6\xf0\xe9\xf6\xf0\ +\xe9\xf8\xf0\xe9\xf8\xf0\xe9\xf7\xef\xe8\xf7\xef\xe8\xf8\xf0\xe9\ +\xf6\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf6\xef\xe8\xf8\xf0\xe9\xf8\ +\xf0\xe9\xf8\xf0\xe9\xf8\xf0\xe9\xf7\xef\xe8\xf7\xf0\xe9\xf7\xf0\ +\xe9\xf7\xef\xe8\xf8\xf0\xe8\xf8\xf0\xe8\xf8\xf0\xe6\xf8\xf0\xe7\ +\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf8\ +\xef\xe6\xf8\xef\xe6\xf9\xef\xe6\xf9\xf0\xe7\xf8\xf1\xe8\xf7\xf0\ +\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf2\xe8\xf9\xf1\xe9\ +\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xea\xfa\xf2\xea\xfa\xf3\xe9\xf9\ +\xf2\xe9\xfa\xf2\xe9\xfa\xf2\xe9\xf9\xf3\xea\xfa\xf3\xea\xf9\xf2\ +\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ +\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\ +\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\ +\xea\xf7\xf2\xea\xf8\xf2\xe9\xf7\xf1\xe8\xf7\xf1\xe7\xf8\xef\xe5\ +\xf7\xee\xe4\xf6\xec\xe2\xf5\xea\xe0\xf3\xe6\xdd\xf0\xe1\xd8\xed\ +\xd9\xd2\xe9\xd3\xcd\xe2\xcc\xc6\xd8\xc3\xbf\xce\xb9\xb9\xc2\xb0\ +\xb5\xb5\xa6\xb2\xac\xa0\xb0\xa9\x9e\xb0\xa9\xa0\xb1\xaa\xa1\xb2\ +\xab\xa3\xb2\xab\xa3\xb2\xa9\xa2\xb1\xa7\xa1\xb0\xa4\x9e\xad\xa0\ +\x9d\xac\xa0\x9c\xab\xa2\x9f\xae\xa3\xa0\xae\xa4\xa1\xaf\x00\x00\ +\x00\xa5\x93\x9d\xb3\xa2\xaa\xbe\xaf\xb6\xc8\xba\xbf\xd0\xc2\xc6\ +\xd5\xc9\xcd\xda\xcc\xd0\xdc\xcf\xd2\xdd\xd0\xd1\xdd\xd0\xd2\xdb\ +\xce\xd0\xdb\xce\xd0\xdb\xce\xd0\xda\xcd\xd0\xda\xce\xd1\xda\xd0\ +\xd3\xdc\xd1\xd4\xde\xd2\xd5\xdf\xd4\xd7\xe0\xd5\xd7\xe2\xd6\xd9\ +\xe2\xd7\xda\xe2\xd7\xda\xe4\xd9\xdb\xe4\xd9\xdc\xe4\xd9\xdd\xe5\ +\xda\xde\xe6\xdc\xde\xe8\xdc\xdf\xea\xdd\xde\xeb\xdf\xdf\xeb\xdf\ +\xdf\xed\xe0\xdf\xec\xdf\xde\xec\xdf\xdd\xeb\xde\xdd\xeb\xde\xdb\ +\xeb\xde\xdb\xec\xde\xdc\xed\xe0\xdd\xee\xe3\xde\xf0\xe4\xe0\xf1\ +\xe5\xe1\xf2\xe7\xe2\xf3\xe7\xe1\xf3\xe9\xe2\xf3\xe9\xe2\xf3\xe9\ +\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf6\xed\xe6\ +\xf6\xee\xe7\xf7\xef\xe8\xf7\xef\xe8\xf7\xef\xe8\xf7\xf0\xe9\xf8\ +\xef\xe9\xf8\xf0\xe8\xf8\xf0\xe7\xf7\xf1\xe8\xf8\xf0\xe8\xf6\xf0\ +\xe9\xf6\xf0\xe9\xf7\xf1\xea\xf7\xf1\xea\xf7\xf1\xe9\xf7\xf1\xe9\ +\xf7\xf1\xe9\xf8\xf0\xe8\xf8\xf0\xe8\xf8\xf0\xe9\xf6\xf0\xe9\xf7\ +\xf0\xe9\xf7\xf0\xe9\xf7\xf0\xe9\xf7\xf0\xe9\xf7\xf0\xe9\xf7\xf0\ +\xe9\xf7\xf1\xe9\xf7\xf1\xe8\xf6\xf0\xe9\xf6\xf0\xe9\xf6\xf1\xe9\ +\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xef\xe6\xf8\ +\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\ +\xe6\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\ +\xf8\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf2\xe9\xf9\xf2\xe8\xf8\ +\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf3\xe9\xfa\xf3\xea\ +\xf8\xf3\xea\xf9\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\ +\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf8\xf3\xea\ +\xf7\xf2\xe8\xf8\xf0\xe6\xf7\xee\xe4\xf6\xeb\xe1\xf5\xe9\xe0\xf4\ +\xe7\xdd\xf2\xe2\xda\xef\xdb\xd4\xeb\xd6\xd0\xe7\xd1\xcb\xe3\xcd\ +\xc7\xdc\xc6\xc2\xd5\xbf\xbd\xc9\xb5\xb8\xba\xa9\xb2\xac\xa0\xb0\ +\xa7\x9d\xae\xa7\x9d\xaf\xa6\x9d\xb1\xa7\x9f\xb0\xa9\xa1\xb1\xaa\ +\xa3\xb2\xaa\xa3\xb2\xa9\xa2\xb1\xa6\xa0\xaf\xa4\x9e\xad\xa3\x9e\ +\xad\xa2\x9f\xae\xa4\xa0\xaf\xa4\xa1\xb0\x00\x00\x00\x8d\x7a\x87\ +\x9f\x8d\x98\xb2\xa1\xa9\xc0\xb1\xb7\xcb\xbc\xc0\xd3\xc4\xc8\xd8\ +\xcb\xcd\xdc\xcf\xd1\xdc\xcf\xd1\xdd\xd0\xd2\xdb\xce\xd0\xdb\xce\ +\xd0\xdb\xce\xd0\xda\xce\xd1\xda\xcf\xd2\xdb\xd0\xd3\xdb\xd0\xd3\ +\xdd\xd2\xd5\xde\xd3\xd5\xe0\xd5\xd7\xe1\xd6\xd8\xe3\xd7\xd9\xe4\ +\xd8\xda\xe3\xd9\xdb\xe3\xd9\xdb\xe4\xd9\xdc\xe6\xda\xdd\xe8\xdc\ +\xde\xea\xde\xde\xeb\xdf\xdf\xec\xdf\xde\xec\xdf\xde\xed\xe0\xde\ +\xed\xe0\xde\xec\xdf\xdd\xed\xdf\xdd\xed\xde\xdb\xed\xde\xdc\xee\ +\xdf\xdd\xed\xe1\xdd\xf0\xe4\xe0\xf1\xe5\xe0\xf2\xe6\xe0\xf3\xe7\ +\xe1\xf3\xe9\xe2\xf3\xe8\xe2\xf3\xe9\xe3\xf4\xea\xe3\xf4\xea\xe3\ +\xf5\xeb\xe4\xf6\xec\xe5\xf6\xec\xe5\xf6\xed\xe6\xf5\xee\xe7\xf7\ +\xef\xe8\xf7\xef\xe8\xf8\xf0\xe9\xf8\xf0\xe8\xf7\xf0\xe8\xf8\xf0\ +\xe8\xf8\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf6\xf1\xe9\xf6\xf0\xea\ +\xf7\xf1\xea\xf6\xf1\xe9\xf6\xf1\xe9\xf7\xf1\xe9\xf8\xf1\xe9\xf8\ +\xf1\xe8\xf7\xf1\xe9\xf7\xf0\xea\xf6\xf0\xea\xf6\xf0\xe9\xf6\xf0\ +\xea\xf6\xf0\xea\xf6\xf0\xea\xf7\xf1\xe9\xf6\xf1\xe9\xf6\xf1\xe9\ +\xf6\xf2\xe8\xf6\xf1\xe9\xf6\xf1\xe9\xf7\xf2\xe9\xf8\xf2\xe9\xf7\ +\xf0\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf9\xef\xe6\xf9\xef\xe6\xf9\xef\ +\xe6\xf9\xef\xe6\xf9\xef\xe6\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\ +\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf1\xe9\xf9\xf1\xe8\xf8\ +\xf1\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ +\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf9\xf3\xea\xf9\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\ +\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\ +\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf1\xe7\xf7\ +\xee\xe4\xf5\xeb\xe1\xf4\xe6\xdd\xf3\xe1\xda\xf0\xdd\xd6\xec\xd7\ +\xd1\xe9\xd3\xcd\xe4\xce\xc8\xe0\xca\xc4\xdb\xc5\xc1\xd4\xbe\xbd\ +\xcb\xb7\xb9\xbf\xad\xb5\xaf\xa2\xb0\xa6\x9c\xae\xa5\x9c\xaf\xa5\ +\x9d\xaf\xa6\x9e\xaf\xa7\x9f\xb0\xa8\xa0\xb1\xa9\xa1\xb2\xab\xa4\ +\xb3\xaa\xa3\xb2\xa9\xa2\xb1\xa6\xa0\xaf\xa5\xa0\xaf\xa5\xa0\xaf\ +\xa5\xa0\xb0\xa5\xa1\xb0\x00\x00\x00\x75\x67\x75\x81\x71\x80\x9e\ +\x8d\x97\xb4\xa3\xaa\xc4\xb5\xb9\xcf\xc0\xc4\xd6\xc8\xcb\xdb\xce\ +\xd0\xdc\xcf\xd1\xdb\xce\xd1\xdd\xd0\xd2\xdd\xcf\xd1\xdc\xcf\xd1\ +\xda\xcf\xd3\xda\xcf\xd2\xda\xd0\xd3\xdb\xd0\xd3\xdc\xd1\xd3\xde\ +\xd2\xd4\xe0\xd3\xd5\xe2\xd5\xd7\xe2\xd5\xd7\xe3\xd6\xd8\xe5\xd8\ +\xda\xe5\xd9\xdb\xe6\xd9\xdb\xe7\xda\xdd\xe9\xdd\xdd\xeb\xde\xde\ +\xeb\xde\xde\xed\xe0\xde\xee\xe0\xdf\xed\xe1\xdf\xee\xe1\xdd\xee\ +\xdf\xdc\xed\xde\xdc\xee\xdf\xdc\xee\xe0\xdc\xee\xe1\xdd\xee\xe2\ +\xde\xf0\xe4\xe0\xf2\xe6\xe1\xf2\xe6\xe0\xf4\xe8\xe2\xf4\xe7\xe2\ +\xf3\xe8\xe1\xf4\xe8\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf6\ +\xec\xe5\xf7\xed\xe6\xf7\xee\xe7\xf5\xee\xe7\xf7\xef\xe7\xf6\xee\ +\xe7\xf6\xef\xe7\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xf1\xe7\xf8\xf1\xe8\ +\xf8\xf1\xe8\xf8\xf0\xe7\xf7\xf2\xe9\xf7\xf2\xe9\xf6\xf1\xe8\xf7\ +\xf2\xe9\xf6\xf1\xe8\xf7\xf2\xe8\xf6\xf2\xe9\xf8\xf1\xe8\xf6\xf1\ +\xe9\xf6\xf1\xe8\xf7\xf1\xea\xf7\xf1\xea\xf7\xf2\xe9\xf7\xf2\xea\ +\xf8\xf2\xea\xf7\xf2\xe9\xf6\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf7\ +\xf2\xe9\xf7\xf2\xe9\xf7\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf0\ +\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf9\xf0\xe7\ +\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\ +\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf2\ +\xe8\xf9\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\ +\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\ +\xe9\xf8\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\ +\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\ +\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xef\xe5\xf6\xeb\xe1\xf4\xe6\ +\xdd\xf2\xe0\xd8\xee\xd9\xd3\xea\xd4\xce\xe7\xcf\xc9\xe1\xc9\xc5\ +\xdc\xc4\xc1\xd7\xc0\xbe\xd1\xbb\xbb\xc9\xb4\xb7\xbf\xad\xb4\xb4\ +\xa5\xb1\xa7\x9d\xae\xa4\x9b\xae\xa4\x9c\xae\xa5\x9d\xaf\xa6\x9e\ +\xaf\xa6\x9e\xb0\xa8\xa0\xb0\xa9\xa2\xb1\xaa\xa3\xb2\xab\xa4\xb3\ +\xab\xa4\xb3\xa9\xa2\xb1\xa8\xa2\xb1\xa7\xa2\xb1\xa7\xa2\xb1\xa7\ +\xa2\xb1\x00\x00\x00\x74\x66\x74\x6a\x5e\x6d\x86\x77\x85\xa5\x94\ +\x9d\xba\xaa\xb0\xc7\xb9\xbd\xd1\xc3\xc7\xd7\xcb\xcf\xdb\xcd\xd1\ +\xdb\xce\xd1\xdb\xcf\xd1\xdc\xcf\xd1\xda\xcf\xd1\xda\xcf\xd2\xdb\ +\xd0\xd3\xdb\xd0\xd3\xda\xcf\xd2\xdc\xd1\xd3\xde\xd1\xd3\xe0\xd3\ +\xd5\xe1\xd4\xd6\xe2\xd5\xd7\xe2\xd5\xd7\xe3\xd6\xd7\xe4\xd7\xd9\ +\xe6\xd9\xda\xe8\xdb\xda\xe9\xdb\xdc\xea\xdd\xdc\xeb\xde\xdd\xed\ +\xdf\xdd\xed\xe0\xdd\xee\xe0\xdd\xef\xdf\xdc\xef\xe0\xdd\xef\xe0\ +\xdd\xef\xe0\xdd\xef\xe0\xdd\xef\xe2\xde\xf0\xe4\xe0\xf1\xe5\xe0\ +\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf4\ +\xe8\xe2\xf4\xe8\xe2\xf4\xe9\xe3\xf5\xeb\xe4\xf6\xed\xe5\xf7\xed\ +\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xee\xe6\xf8\xef\xe6\xf8\xf0\xe7\ +\xf8\xf0\xe7\xf7\xf0\xe7\xf7\xf1\xe8\xf7\xf0\xe7\xf8\xf1\xe8\xf8\ +\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf3\xea\xf8\xf2\xe9\xf7\xf2\xe9\ +\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xea\xf7\xf2\xea\xf7\xf3\xea\xf7\ +\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf1\ +\xe8\xf7\xf2\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe8\ +\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf7\ +\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf2\ +\xe8\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\ +\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf1\xe8\xf8\ +\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xf0\xe7\xf8\xf1\xe7\xf8\xf1\ +\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\ +\xf9\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\ +\xe9\xf8\xf1\xe8\xf7\xee\xe4\xf5\xe7\xdf\xf2\xe1\xd9\xee\xd9\xd2\ +\xe9\xd2\xcc\xe4\xcc\xc7\xde\xc5\xc1\xd7\xbe\xbd\xd1\xb9\xba\xcc\ +\xb6\xb7\xc7\xb1\xb5\xbe\xaa\xb2\xb4\xa4\xb0\xaa\x9d\xae\xa5\x9a\ +\xad\xa3\x9a\xae\xa3\x9a\xae\xa5\x9d\xad\xa5\x9d\xae\xa6\x9e\xae\ +\xa7\xa0\xb0\xa8\xa1\xb0\xa9\xa2\xb1\xa9\xa2\xb1\xaa\xa3\xb2\xa9\ +\xa3\xb3\xa8\xa3\xb2\xa9\xa4\xb3\xa9\xa4\xb3\xaa\xa4\xb4\x00\x00\ +\x00\x82\x73\x7f\x67\x5c\x6b\x75\x69\x78\x96\x86\x92\xad\x9e\xa6\ +\xbd\xae\xb5\xc7\xbb\xc0\xd0\xc5\xc9\xd6\xca\xcd\xd7\xcc\xcf\xd9\ +\xce\xd0\xda\xcf\xd1\xda\xcf\xd2\xd9\xcf\xd2\xd8\xcf\xd2\xd9\xcf\ +\xd2\xda\xd0\xd3\xdb\xd0\xd2\xdc\xd1\xd3\xdf\xd2\xd4\xe1\xd4\xd5\ +\xe1\xd4\xd6\xe1\xd5\xd6\xe2\xd6\xd6\xe4\xd8\xd8\xe5\xd9\xd9\xe7\ +\xd9\xda\xe8\xda\xdb\xea\xdc\xdb\xeb\xdd\xdb\xec\xdd\xdb\xee\xdf\ +\xdc\xee\xdf\xdc\xee\xdf\xdb\xee\xdf\xdc\xee\xdf\xdc\xf0\xe1\xde\ +\xf0\xe1\xde\xef\xe3\xdf\xf0\xe4\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf2\ +\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe8\ +\xe2\xf4\xe9\xe2\xf5\xeb\xe3\xf5\xec\xe3\xf6\xed\xe4\xf7\xee\xe5\ +\xf8\xef\xe5\xf8\xef\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf8\ +\xef\xe6\xf7\xf0\xe7\xf7\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe9\xf8\xf2\ +\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\xf3\xe9\xf9\xf2\xe9\ +\xf8\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf8\ +\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\ +\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\ +\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe7\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\ +\xe8\xf8\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\ +\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\ +\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf0\xe8\xf9\xf1\ +\xe8\xf8\xf0\xe7\xf9\xf1\xe8\xf9\xf0\xe7\xf8\xf0\xe8\xf7\xf0\xe7\ +\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf9\xf4\xeb\xf8\xf3\ +\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf3\xea\xf8\xf2\xe9\xf8\xf0\xe7\ +\xf7\xec\xe3\xf4\xe5\xdd\xef\xdc\xd5\xea\xd4\xce\xe4\xcc\xc7\xdd\ +\xc3\xc1\xd4\xba\xba\xca\xb1\xb5\xc3\xac\xb2\xbf\xa9\xb1\xb8\xa4\ +\xaf\xb1\xa0\xae\xa9\x9c\xad\xa3\x99\xac\xa3\x99\xad\xa3\x9a\xae\ +\xa3\x9a\xae\xa4\x9c\xae\xa5\x9d\xae\xa6\x9e\xaf\xa7\xa0\xb0\xa8\ +\xa1\xb0\xa8\xa1\xb0\xa8\xa1\xb1\xa9\xa1\xb1\xa8\xa1\xb2\xa8\xa2\ +\xb3\xa9\xa4\xb3\xab\xa5\xb4\xac\xa6\xb4\x00\x00\x00\x91\x83\x8e\ +\x6e\x63\x71\x6b\x60\x71\x86\x7a\x86\xa1\x92\x9b\xb1\xa2\xaa\xbd\ +\xb0\xb7\xc7\xbb\xc1\xce\xc2\xc8\xd3\xc8\xcb\xd5\xca\xcd\xd8\xcd\ +\xd0\xd9\xce\xd1\xd8\xce\xd1\xd7\xce\xd1\xd7\xce\xd1\xd8\xcf\xd2\ +\xdb\xd0\xd3\xdc\xd1\xd3\xde\xd2\xd4\xe0\xd3\xd5\xe0\xd4\xd5\xe1\ +\xd5\xd5\xe3\xd6\xd6\xe5\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe8\xda\ +\xda\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xdd\xda\xed\xdd\xda\ +\xee\xde\xdb\xee\xde\xdb\xee\xdf\xdc\xf0\xe0\xdd\xf0\xe2\xdd\xf1\ +\xe3\xdd\xf0\xe4\xde\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf2\xe6\ +\xe0\xf2\xe6\xdf\xf3\xe7\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe2\ +\xf5\xe9\xe3\xf5\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf8\xef\xe6\xf8\ +\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf9\xef\xe6\xf7\xf0\ +\xe7\xf7\xf1\xe8\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\ +\xf9\xf1\xe9\xf9\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf8\ +\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf1\ +\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe8\xf8\xf2\xe8\ +\xf8\xf1\xe8\xf9\xf1\xe9\xf9\xf3\xe7\xf9\xf2\xe8\xf9\xf1\xe9\xf9\ +\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\ +\xe8\xf9\xf2\xe8\xf7\xf1\xe7\xf8\xf1\xe8\xf7\xf0\xe8\xf9\xf2\xe8\ +\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe7\xf8\xf2\xe7\xf7\ +\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\ +\xe8\xf8\xf1\xe8\xf8\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\ +\xf9\xf0\xe7\xfa\xf1\xe8\xf9\xf1\xe8\xf9\xf1\xe8\xf9\xf1\xe8\xf7\ +\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf6\xf2\ +\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf2\xe9\ +\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf0\xe6\xf5\xeb\xe2\xf3\ +\xe2\xdb\xed\xd9\xd2\xe7\xd0\xcb\xdf\xc6\xc2\xd4\xba\xbb\xc9\xae\ +\xb4\xb9\xa0\xae\xb3\x9c\xad\xaf\x9b\xad\xa9\x98\xac\xa4\x96\xab\ +\xa1\x95\xab\x9f\x96\xab\xa1\x98\xac\xa1\x99\xad\xa3\x9b\xad\xa4\ +\x9c\xad\xa5\x9d\xae\xa5\x9d\xaf\xa7\xa0\xb0\xa8\xa1\xb0\xa8\xa0\ +\xb0\xa6\x9f\xb0\xa6\xa0\xb1\xa6\xa0\xb1\xa7\xa2\xb2\xa9\xa4\xb3\ +\xa9\xa3\xb2\xab\xa5\xb4\x00\x00\x00\xa1\x93\x9d\x82\x75\x83\x6f\ +\x65\x74\x7b\x70\x80\x90\x83\x91\xa2\x94\x9f\xb1\xa3\xae\xbd\xb1\ +\xb8\xc6\xba\xc0\xcb\xc0\xc5\xd2\xc7\xca\xd6\xcb\xce\xd8\xcd\xd0\ +\xd6\xcd\xd0\xd6\xcd\xd0\xd6\xcd\xd0\xd9\xce\xd1\xda\xcf\xd2\xdc\ +\xd1\xd3\xde\xd3\xd5\xe1\xd4\xd6\xe2\xd5\xd6\xe1\xd5\xd6\xe3\xd6\ +\xd7\xe4\xd6\xd7\xe6\xd8\xd9\xe6\xd9\xd9\xe7\xda\xd8\xe9\xdb\xd8\ +\xe9\xda\xd8\xeb\xdb\xd8\xec\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\xee\ +\xdd\xda\xee\xde\xdb\xee\xe0\xda\xef\xe1\xda\xf0\xe2\xdc\xf0\xe2\ +\xdc\xf2\xe4\xde\xf2\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf1\xe5\xdf\ +\xf2\xe6\xe0\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe9\xe3\xf5\xea\xe3\xf6\ +\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\ +\xe4\xf7\xee\xe5\xf7\xef\xe6\xf8\xef\xe6\xfa\xf0\xe7\xf8\xf0\xe7\ +\xf8\xf0\xe7\xf9\xf1\xe7\xf8\xf1\xe7\xf8\xf1\xe7\xf8\xf1\xe8\xf8\ +\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf8\xf2\ +\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe8\ +\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe8\xf9\xf2\xe9\xf9\xf3\xe9\xf8\ +\xf3\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf1\ +\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\ +\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf0\xe8\xf8\xf1\xe8\xf8\ +\xf0\xe7\xf7\xf1\xe8\xf8\xf0\xe7\xf8\xf0\xe8\xf8\xf1\xe8\xf7\xf0\ +\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf7\xf0\xe7\xf9\xf0\xe7\ +\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\ +\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf1\xe8\xf8\xf0\ +\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf7\xf2\xe9\ +\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf7\xf2\xe9\xf9\xf0\xe6\xf5\xeb\xe1\xf2\xe2\xda\xec\xd7\ +\xd0\xe4\xcc\xc8\xda\xc1\xbf\xcd\xb3\xb7\xbc\xa2\xaf\xa8\x92\xaa\ +\xa2\x8f\xaa\x9f\x90\xaa\x9d\x90\xa8\x9d\x92\xa9\x9d\x94\xa9\x9f\ +\x96\xab\xa1\x98\xac\xa2\x99\xac\xa2\x9a\xac\xa4\x9c\xad\xa5\x9d\ +\xae\xa6\x9e\xae\xa6\xa0\xae\xa6\x9f\xae\xa4\x9f\xaf\xa4\x9e\xaf\ +\xa4\x9e\xaf\xa5\x9f\xb0\xa6\xa0\xb1\xa7\xa3\xb1\xa8\xa3\xb2\xaa\ +\xa5\xb4\x00\x00\x00\xae\xa1\xa8\x99\x8a\x95\x82\x75\x84\x7b\x71\ +\x80\x82\x77\x86\x8c\x80\x8f\x9d\x93\xa0\xb0\xa5\xaf\xba\xae\xb7\ +\xc3\xb9\xbf\xcc\xc1\xc7\xd3\xc9\xcc\xd6\xcc\xcf\xd5\xcd\xd0\xd6\ +\xcd\xd0\xd5\xcc\xcf\xd7\xce\xd1\xd9\xcf\xd2\xdc\xd1\xd4\xdf\xd3\ +\xd5\xe1\xd4\xd6\xe2\xd5\xd6\xe1\xd5\xd6\xe3\xd6\xd7\xe4\xd6\xd7\ +\xe5\xd7\xd8\xe5\xd8\xd8\xe7\xda\xd7\xe9\xda\xd8\xe9\xda\xd8\xe9\ +\xda\xd8\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\xd8\xed\xdc\xd9\xed\xdd\ +\xd8\xee\xde\xd8\xef\xe0\xda\xef\xe1\xdb\xf0\xe2\xdc\xf2\xe4\xde\ +\xf2\xe4\xde\xf3\xe4\xde\xf2\xe6\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf3\ +\xe9\xe1\xf4\xe8\xe2\xf4\xe9\xe3\xf5\xe9\xe2\xf5\xeb\xe2\xf6\xeb\ +\xe3\xf5\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\ +\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xef\xe6\xf8\xf0\xe6\xf9\ +\xf0\xe7\xf9\xf0\xe6\xf9\xf0\xe7\xf8\xf1\xe7\xf8\xf1\xe8\xf9\xf2\ +\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe8\ +\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\ +\xf2\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\xf3\xe8\xf9\xf3\ +\xe7\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe8\ +\xf9\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe7\xf9\xf2\xe7\xf8\xf0\xe7\xf9\ +\xf1\xe7\xf9\xf0\xe7\xf9\xf1\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xf0\ +\xe7\xf9\xef\xe6\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf7\xf0\xe7\ +\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf7\ +\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xef\ +\xe6\xf9\xef\xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf7\xf1\xe8\xf7\xf0\xe7\ +\xf8\xf1\xe8\xf8\xf2\xe9\xf8\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf7\ +\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf3\xea\xf8\xf2\ +\xe9\xf8\xf0\xe7\xf6\xeb\xe1\xf1\xe0\xd8\xea\xd5\xcf\xe1\xca\xc6\ +\xd6\xbe\xbd\xc8\xb0\xb5\xb6\x9e\xae\xa1\x8f\xa9\x9a\x8b\xa7\x9b\ +\x8d\xa8\x9b\x8f\xa9\x9c\x92\xa9\x9d\x94\xaa\x9f\x96\xab\xa0\x97\ +\xac\xa2\x99\xad\xa3\x9a\xab\xa3\x9b\xac\xa3\x9c\xac\xa3\x9d\xad\ +\xa4\x9f\xae\xa3\x9e\xae\xa2\x9d\xad\xa0\x9c\xac\xa0\x9d\xad\xa1\ +\x9e\xae\xa3\x9f\xaf\xa5\xa1\xb1\xa7\xa2\xb2\xa9\xa4\xb3\x00\x00\ +\x00\xbd\xaf\xb5\xac\x9d\xa4\x9c\x8d\x96\x8c\x7e\x8a\x81\x75\x85\ +\x7a\x6f\x81\x85\x7d\x8d\x9d\x94\xa3\xad\xa3\xaf\xbb\xb1\xb9\xc7\ +\xbc\xc2\xd2\xc7\xca\xd5\xca\xcd\xd6\xcc\xcf\xd5\xcc\xcf\xd5\xcc\ +\xcf\xd7\xce\xd1\xd8\xcf\xd2\xdc\xd2\xd4\xde\xd2\xd4\xe1\xd4\xd6\ +\xe2\xd5\xd7\xe2\xd5\xd6\xe3\xd7\xd7\xe4\xd7\xd7\xe5\xd7\xd8\xe5\ +\xd8\xd8\xe7\xd9\xd8\xe7\xda\xd8\xe8\xd9\xd7\xe9\xda\xd7\xeb\xda\ +\xd7\xec\xda\xd7\xed\xdc\xd9\xec\xdb\xd8\xed\xdc\xd9\xed\xdd\xd9\ +\xef\xdf\xd9\xf0\xe1\xdb\xf0\xe2\xdc\xf2\xe4\xde\xf2\xe4\xde\xf2\ +\xe4\xde\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe2\xf4\xe8\ +\xe1\xf4\xe9\xe2\xf4\xe9\xe1\xf5\xea\xe2\xf5\xea\xe2\xf5\xeb\xe3\ +\xf6\xeb\xe3\xf6\xec\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf8\ +\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xef\xe7\xf8\xef\xe6\xf8\xef\ +\xe5\xf9\xf0\xe6\xfa\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe9\ +\xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\xf1\xe9\xf8\xf2\ +\xe8\xf9\xf3\xe7\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf1\xe8\ +\xf9\xf2\xe8\xf9\xf3\xe7\xf9\xf3\xe7\xf9\xf3\xe7\xf9\xf2\xe8\xf8\ +\xf2\xe8\xf8\xf2\xe6\xf8\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf9\xf0\ +\xe7\xf9\xf0\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf9\xef\xe6\xf9\xf0\xe7\ +\xf9\xf0\xe7\xf7\xef\xe6\xf7\xf0\xe7\xf8\xf1\xe8\xf7\xf1\xe8\xf8\ +\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\ +\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\ +\xf8\xef\xe6\xf8\xf0\xe7\xf9\xf1\xe8\xf7\xf0\xe7\xf7\xf0\xe7\xf8\ +\xf1\xe8\xf8\xf2\xe9\xf7\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\ +\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf0\xe7\ +\xf5\xe8\xe0\xf0\xde\xd7\xe8\xd3\xce\xe0\xc9\xc5\xd5\xbd\xbd\xc8\ +\xb1\xb5\xb7\xa2\xb0\xa7\x96\xab\x9e\x8f\xa9\x9d\x90\xa9\x9e\x91\ +\xa9\x9f\x93\xaa\xa0\x96\xaa\xa0\x96\xab\xa1\x98\xac\xa2\x99\xac\ +\xa2\x9a\xac\xa2\x99\xac\xa1\x9a\xab\xa1\x9b\xac\xa0\x9b\xac\xa0\ +\x9c\xac\x9f\x9b\xab\x9c\x9a\xab\x9d\x9a\xac\x9d\x9b\xad\x9f\x9d\ +\xae\xa3\x9f\xaf\xa4\xa1\xb1\xa8\xa3\xb2\x00\x00\x00\xc9\xbb\xbf\ +\xbc\xae\xb3\xaf\xa1\xa7\xa1\x91\x9a\x8d\x7d\x89\x78\x6b\x7b\x75\ +\x6b\x7b\x88\x81\x91\x9f\x97\xa4\xb3\xa9\xb3\xc3\xb8\xbe\xd0\xc5\ +\xc8\xd4\xca\xcd\xd5\xca\xcd\xd6\xca\xcd\xd5\xcb\xce\xd5\xcc\xcf\ +\xd9\xcf\xd2\xdc\xd1\xd3\xdd\xd2\xd4\xe0\xd4\xd6\xe2\xd4\xd7\xe1\ +\xd5\xd6\xe3\xd6\xd6\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd7\xd9\xe6\xd8\ +\xd8\xe7\xd9\xd7\xe8\xda\xd8\xe9\xda\xd8\xe9\xdb\xd8\xea\xdb\xd8\ +\xec\xdc\xd9\xee\xdd\xda\xee\xdd\xda\xee\xdd\xda\xef\xe0\xda\xef\ +\xe1\xdb\xf0\xe2\xdc\xf1\xe3\xdd\xf2\xe4\xde\xf1\xe3\xdd\xf3\xe5\ +\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe8\xe1\xf4\xe9\xe2\xf4\xe8\xe1\ +\xf4\xe8\xe2\xf3\xe8\xe1\xf4\xe8\xe1\xf4\xe9\xe1\xf5\xea\xe2\xf6\ +\xec\xe4\xf5\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\ +\xe5\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe6\xf9\xf0\xe6\xf8\xef\xe6\ +\xf9\xf0\xe6\xf8\xf0\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\ +\xf2\xe9\xf9\xf1\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf3\ +\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\ +\xf9\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf1\xe9\xf8\ +\xf2\xe7\xf9\xf2\xe8\xf9\xf3\xe7\xf9\xf2\xe8\xf9\xf1\xe7\xf9\xf0\ +\xe7\xf9\xf1\xe8\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe6\ +\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf8\ +\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf7\xef\xe6\xf7\xee\ +\xe5\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\ +\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe7\xf9\ +\xef\xe6\xf8\xef\xe6\xf8\xf1\xe8\xf9\xf1\xe8\xf8\xf1\xe7\xf9\xf1\ +\xe8\xf8\xf2\xe9\xf7\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ +\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf1\xe7\xf7\xed\xe4\xf4\xe6\xdf\xee\ +\xdb\xd4\xe7\xd1\xcc\xde\xc7\xc4\xd4\xbd\xbd\xc8\xb1\xb6\xb9\xa4\ +\xb1\xac\x99\xad\xa3\x94\xab\xa1\x94\xab\xa1\x95\xab\xa2\x96\xab\ +\xa2\x97\xab\xa3\x98\xac\xa2\x9a\xab\xa2\x9a\xab\xa1\x9a\xab\xa0\ +\x99\xaa\x9e\x98\xa9\x9d\x98\xa9\x9c\x98\xaa\x9b\x98\xa9\x98\x96\ +\xa9\x98\x96\xa8\x98\x98\xaa\x9a\x98\xab\x9b\x99\xac\x9e\x9d\xae\ +\xa2\x9f\xaf\xa5\xa2\xb1\x00\x00\x00\xd1\xc4\xc6\xc9\xbb\xbe\xbe\ +\xb0\xb4\xb2\xa4\xaa\xa1\x90\x99\x89\x7a\x86\x7d\x70\x7e\x85\x7c\ +\x8a\x96\x8e\x9b\xad\xa3\xad\xbf\xb4\xbb\xcd\xc2\xc5\xd5\xca\xcd\ +\xd6\xcb\xce\xd5\xca\xcd\xd6\xcb\xce\xd5\xcc\xcf\xd9\xce\xd1\xdb\ +\xd0\xd2\xdc\xd1\xd3\xdf\xd3\xd5\xe1\xd4\xd6\xe1\xd5\xd6\xe2\xd6\ +\xd5\xe3\xd6\xd7\xe4\xd6\xd7\xe5\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd7\ +\xe7\xd9\xd7\xe8\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xeb\xdd\xda\xec\ +\xdc\xda\xed\xdc\xd9\xee\xde\xdb\xef\xe0\xdc\xf0\xe1\xdc\xef\xe1\ +\xdb\xf0\xe2\xdc\xf0\xe2\xdc\xf1\xe3\xdd\xf2\xe5\xdf\xf1\xe5\xdf\ +\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf3\ +\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf5\xe9\xe2\xf5\xea\xe2\xf5\xec\ +\xe3\xf5\xec\xe3\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf9\xf0\xe6\ +\xf9\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe5\xf8\xef\xe6\xf9\xf0\xe6\xf9\ +\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe9\xf9\xf2\xe9\ +\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf3\xe7\xf9\ +\xf2\xe8\xf9\xf3\xe8\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf1\xe8\xf8\xf2\ +\xe8\xf8\xf1\xe8\xf8\xf1\xe7\xf9\xf0\xe8\xf8\xf0\xe7\xf8\xef\xe6\ +\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\ +\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xee\xe5\xf8\xef\xe6\xf8\xee\ +\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\ +\xf5\xed\xe3\xf6\xed\xe4\xf6\xed\xe5\xf6\xee\xe4\xf7\xed\xe5\xf6\ +\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\ +\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xf1\xe8\ +\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf2\xe9\xf8\xf3\xea\xf8\ +\xf1\xe8\xf7\xef\xe5\xf5\xeb\xe2\xf2\xe2\xdb\xec\xd8\xd2\xe5\xcf\ +\xca\xdc\xc7\xc4\xd2\xbd\xbd\xc8\xb2\xb8\xba\xa7\xb3\xae\x9e\xaf\ +\xa7\x99\xad\xa6\x99\xad\xa5\x99\xad\xa5\x99\xad\xa5\x9a\xad\xa4\ +\x9a\xac\xa4\x9a\xac\xa2\x9a\xac\xa2\x9a\xaa\x9f\x98\xaa\x9d\x97\ +\xa9\x9a\x96\xa9\x98\x95\xa8\x95\x94\xa7\x92\x92\xa6\x90\x91\xa4\ +\x92\x93\xa7\x94\x96\xa8\x97\x97\xaa\x9a\x9a\xac\x9e\x9d\xad\xa3\ +\xa0\xb0\x00\x00\x00\xd9\xcc\xce\xd3\xc6\xc8\xcb\xbd\xc0\xc0\xb2\ +\xb5\xb2\xa3\xa8\x9f\x90\x97\x90\x81\x8b\x8e\x82\x90\x93\x8a\x98\ +\xa6\x9d\xa8\xba\xae\xb5\xc9\xbe\xc1\xd2\xc7\xca\xd6\xcb\xce\xd6\ +\xca\xcd\xd6\xcb\xce\xd5\xcc\xcf\xd7\xce\xd1\xda\xcf\xd2\xdb\xd0\ +\xd3\xdc\xd1\xd3\xdf\xd3\xd5\xe0\xd3\xd6\xe1\xd4\xd6\xe2\xd6\xd6\ +\xe4\xd6\xd7\xe4\xd7\xd7\xe6\xd8\xd8\xe5\xd8\xd7\xe6\xd9\xd7\xe8\ +\xda\xd8\xe8\xdb\xd9\xea\xdc\xda\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\ +\xda\xed\xde\xdb\xef\xe0\xdc\xef\xe1\xdc\xf0\xe2\xdc\xf0\xe2\xdc\ +\xf0\xe2\xdc\xf0\xe3\xdd\xf1\xe4\xde\xf1\xe5\xdf\xf2\xe6\xe0\xf3\ +\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe6\ +\xe0\xf3\xe7\xe1\xf4\xe8\xe2\xf5\xe9\xe3\xf5\xeb\xe2\xf6\xec\xe4\ +\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\xf9\xf0\xe7\xf9\xf0\xe7\xf9\ +\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf8\xf0\ +\xe7\xf8\xf1\xe8\xf9\xf3\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\ +\xf8\xf3\xe8\xf8\xf2\xe8\xf9\xf1\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf8\ +\xf2\xe8\xf9\xf3\xe8\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf2\ +\xe9\xf9\xf3\xe8\xf9\xf2\xe8\xf8\xf1\xe9\xf8\xf1\xe8\xf8\xf1\xe7\ +\xf8\xf1\xe8\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf8\ +\xef\xe6\xf7\xee\xe5\xf8\xef\xe6\xf6\xed\xe4\xf7\xee\xe5\xf6\xed\ +\xe4\xf7\xed\xe5\xf7\xee\xe5\xf7\xee\xe6\xf7\xed\xe6\xf7\xed\xe5\ +\xf7\xed\xe5\xf6\xed\xe4\xf6\xed\xe4\xf5\xed\xe4\xf5\xec\xe4\xf6\ +\xec\xe5\xf6\xec\xe5\xf6\xed\xe4\xf6\xed\xe5\xf7\xee\xe5\xf7\xee\ +\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\ +\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\xf7\xf2\xe9\xf8\ +\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf0\xe6\xf6\xec\ +\xe2\xf3\xe6\xdd\xf0\xde\xd7\xe9\xd5\xcf\xe1\xcd\xc8\xd9\xc4\xc2\ +\xd0\xbb\xbd\xc6\xb2\xb8\xba\xa9\xb5\xb0\xa1\xb1\xab\x9e\xb0\xaa\ +\x9e\xaf\xa9\x9d\xaf\xa9\x9e\xae\xa8\x9d\xad\xa7\x9d\xad\xa6\x9c\ +\xac\xa3\x9b\xac\xa1\x99\xab\x9d\x97\xaa\x9a\x95\xa8\x95\x93\xa6\ +\x92\x91\xa5\x8d\x8e\xa3\x88\x8b\xa2\x87\x8c\xa1\x88\x8e\xa3\x8c\ +\x91\xa5\x8f\x93\xa7\x93\x95\xa9\x99\x9a\xab\x9f\x9e\xae\x00\x00\ +\x00\xdc\xd1\xd3\xda\xcd\xcf\xd4\xc7\xc9\xcb\xbd\xc0\xc0\xb1\xb4\ +\xb1\xa1\xa5\xa3\x91\x99\x9a\x8b\x96\x95\x8b\x97\x9e\x96\xa2\xb1\ +\xa8\xb1\xc3\xb8\xbd\xcf\xc4\xc7\xd5\xca\xcd\xd4\xcb\xce\xd4\xcb\ +\xce\xd5\xcc\xcf\xd6\xcd\xd0\xd8\xcf\xd2\xd9\xcf\xd2\xdc\xd1\xd4\ +\xdd\xd2\xd3\xdf\xd2\xd4\xe0\xd3\xd4\xe1\xd5\xd5\xe3\xd6\xd6\xe4\ +\xd7\xd7\xe5\xd7\xd8\xe5\xd7\xd9\xe6\xd8\xd8\xe8\xda\xda\xe8\xdb\ +\xd9\xe9\xdc\xda\xea\xdd\xdb\xec\xde\xdc\xed\xde\xdb\xed\xde\xdb\ +\xef\xe0\xdd\xef\xe1\xdd\xf0\xe2\xdd\xf0\xe2\xdc\xf1\xe3\xdd\xf0\ +\xe2\xdc\xf1\xe4\xde\xf0\xe5\xdf\xf1\xe5\xdf\xf1\xe5\xdf\xf3\xe7\ +\xe1\xf3\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\ +\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe3\xf5\xea\xe2\xf6\xec\xe4\xf6\ +\xed\xe4\xf7\xee\xe5\xf9\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\ +\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf1\xe8\xf9\xf1\xe7\xf8\xf2\xe8\ +\xf9\xf2\xe9\xf9\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf3\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\xf1\xe9\xf8\xf1\xe8\xf9\xf2\ +\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe7\xf9\xf2\xe8\ +\xf9\xf1\xe9\xf8\xf2\xe8\xf7\xf0\xe7\xf8\xf1\xe8\xf9\xf0\xe7\xf7\ +\xee\xe5\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\ +\xe5\xf7\xee\xe5\xf5\xec\xe4\xf6\xec\xe4\xf6\xec\xe4\xf6\xec\xe5\ +\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\xec\xe5\xf6\ +\xec\xe5\xf6\xec\xe5\xf5\xec\xe4\xf6\xec\xe3\xf6\xec\xe5\xf6\xeb\ +\xe5\xf6\xec\xe5\xf6\xeb\xe4\xf6\xec\xe3\xf5\xec\xe3\xf7\xee\xe5\ +\xf7\xee\xe5\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\ +\xef\xe6\xf7\xf1\xe8\xf8\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf3\ +\xea\xf8\xf2\xe9\xf8\xf1\xe7\xf6\xed\xe3\xf5\xe8\xe0\xf1\xe1\xda\ +\xec\xd9\xd2\xe6\xd2\xcc\xdd\xc9\xc6\xd5\xc1\xc0\xcc\xb7\xba\xc1\ +\xb0\xb7\xb8\xa9\xb4\xb2\xa3\xb1\xaf\xa2\xb1\xaf\xa2\xb1\xac\xa1\ +\xb0\xab\xa1\xaf\xab\xa1\xae\xa9\x9e\xae\xa7\x9d\xad\xa4\x9b\xac\ +\xa0\x99\xab\x9c\x96\xa9\x97\x94\xa7\x91\x90\xa5\x8b\x8d\xa2\x84\ +\x89\xa0\x7e\x86\x9d\x7c\x86\x9e\x7d\x87\x9e\x80\x8a\xa0\x85\x8d\ +\xa2\x8c\x90\xa5\x92\x94\xa8\x9a\x9a\xab\x00\x00\x00\xdc\xd1\xd3\ +\xdc\xd0\xd2\xd9\xcd\xcf\xd2\xc5\xc7\xc9\xbb\xbd\xbe\xad\xb1\xb0\ +\x9d\xa1\xa6\x94\x9a\x9e\x90\x9a\x9c\x92\x9e\xab\xa3\xae\xbd\xb3\ +\xbb\xc9\xc0\xc6\xd2\xc7\xca\xd4\xca\xcd\xd4\xcb\xce\xd4\xcb\xce\ +\xd5\xcd\xd0\xd7\xce\xd1\xd7\xce\xd1\xd9\xcf\xd2\xdc\xd1\xd3\xdd\ +\xd1\xd3\xdf\xd3\xd5\xe1\xd4\xd6\xe2\xd6\xd6\xe3\xd5\xd6\xe4\xd7\ +\xd8\xe5\xd8\xd8\xe5\xd8\xd8\xe7\xd9\xda\xe8\xda\xdb\xe9\xdc\xdb\ +\xea\xdd\xdb\xeb\xdd\xdb\xec\xde\xdc\xed\xdf\xdd\xee\xe0\xdd\xef\ +\xe1\xde\xf0\xe1\xdd\xf0\xe3\xdc\xf0\xe2\xdc\xf1\xe2\xdc\xf0\xe2\ +\xdc\xf0\xe4\xde\xf0\xe4\xde\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\ +\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf2\xe6\xe0\xf4\xe8\xe2\xf4\ +\xe8\xe2\xf5\xe9\xe2\xf4\xea\xe4\xf5\xeb\xe4\xf6\xed\xe4\xf7\xee\ +\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\ +\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf1\xe7\xf8\xf1\xe8\xf9\xf1\xe8\xf9\ +\xf1\xe9\xf9\xf1\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\ +\xe8\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\ +\xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf2\xe8\xf8\xf3\xe8\xf9\xf2\xe9\xf9\ +\xf1\xe8\xf8\xf0\xe7\xf8\xf0\xe7\xf8\xee\xe6\xf7\xee\xe5\xf6\xed\ +\xe4\xf7\xed\xe5\xf6\xed\xe4\xf6\xed\xe4\xf5\xec\xe4\xf5\xec\xe4\ +\xf5\xeb\xe4\xf5\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf4\ +\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xe9\xe3\xf5\xeb\ +\xe4\xf5\xeb\xe4\xf4\xeb\xe3\xf5\xeb\xe3\xf5\xea\xe3\xf5\xeb\xe4\ +\xf5\xeb\xe4\xf5\xea\xe3\xf6\xeb\xe3\xf5\xeb\xe3\xf6\xec\xe3\xf7\ +\xec\xe4\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\ +\xe6\xf8\xf1\xe8\xf9\xf1\xe8\xf6\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe8\ +\xf8\xee\xe5\xf5\xeb\xe1\xf2\xe4\xdc\xee\xdc\xd5\xe8\xd5\xce\xe0\ +\xcd\xc8\xd8\xc4\xc2\xcf\xbb\xbd\xc4\xb3\xb8\xbc\xac\xb6\xb5\xa8\ +\xb4\xb2\xa5\xb3\xb2\xa5\xb3\xb0\xa4\xb2\xaf\xa4\xb1\xae\xa4\xb1\ +\xad\xa3\xaf\xab\xa1\xaf\xa8\x9e\xae\xa5\x9c\xad\x9f\x99\xaa\x99\ +\x95\xa8\x93\x92\xa5\x8c\x8e\xa3\x82\x87\x9f\x7a\x83\x9c\x73\x80\ +\x9a\x70\x7e\x98\x71\x80\x9a\x74\x83\x9b\x7b\x86\x9d\x83\x8b\xa1\ +\x8b\x90\xa5\x95\x96\xa9\x00\x00\x00\xdd\xd2\xd4\xde\xd2\xd4\xdc\ +\xd0\xd1\xd8\xcb\xcd\xd1\xc3\xc5\xc8\xb7\xb9\xbc\xa8\xaa\xb0\x9c\ +\xa0\xa7\x97\x9d\xa1\x94\x9e\xa5\x9e\xaa\xb6\xaf\xb8\xc4\xbb\xc2\ +\xce\xc4\xc9\xd2\xc9\xcc\xd3\xc9\xce\xd4\xca\xcf\xd5\xcb\xd0\xd6\ +\xcd\xd0\xd7\xce\xd1\xd7\xce\xd2\xd9\xcf\xd2\xdc\xd1\xd3\xdd\xd2\ +\xd4\xe0\xd3\xd5\xe1\xd5\xd5\xe2\xd6\xd6\xe3\xd6\xd7\xe4\xd8\xd7\ +\xe5\xd8\xd8\xe6\xd9\xda\xe8\xda\xdb\xe9\xdc\xdb\xea\xdd\xdb\xea\ +\xdd\xdb\xeb\xde\xdc\xec\xdf\xdc\xee\xe0\xdd\xee\xe1\xde\xef\xe2\ +\xde\xf0\xe2\xdd\xf0\xe3\xdd\xf0\xe3\xdd\xf1\xe3\xdd\xf1\xe4\xde\ +\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf2\ +\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf4\xe8\xe2\xf5\xe9\xe3\xf4\xe8\ +\xe2\xf4\xe9\xe3\xf5\xeb\xe4\xf6\xed\xe5\xf7\xee\xe5\xf8\xef\xe6\ +\xf8\xef\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe7\xf8\xf0\xe6\xf9\ +\xf0\xe8\xf9\xf1\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\ +\xe8\xf9\xf2\xe8\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\ +\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe8\xf9\ +\xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe8\xf8\xf2\xe7\xf8\xf0\xe8\xf9\xf0\ +\xe6\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\xf6\xeb\xe4\ +\xf5\xeb\xe5\xf5\xeb\xe3\xf5\xea\xe4\xf4\xe9\xe3\xf4\xe9\xe2\xf4\ +\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf3\xe9\xe2\xf4\xe9\xe2\xf4\xe8\ +\xe2\xf3\xe9\xe2\xf4\xe9\xe3\xf4\xe9\xe3\xf4\xea\xe3\xf5\xeb\xe4\ +\xf5\xea\xe4\xf5\xe9\xe3\xf5\xea\xe3\xf5\xe9\xe3\xf5\xe9\xe3\xf5\ +\xe9\xe3\xf4\xe9\xe3\xf5\xea\xe2\xf5\xeb\xe2\xf6\xeb\xe3\xf7\xec\ +\xe4\xf6\xec\xe4\xf7\xee\xe5\xf8\xef\xe6\xf8\xf0\xe7\xf7\xf1\xe8\ +\xf8\xf1\xe8\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf1\xe7\xf7\xed\xe3\xf4\ +\xe8\xdf\xf1\xe0\xd8\xeb\xd8\xd2\xe4\xd0\xcb\xdc\xc7\xc4\xd2\xbe\ +\xbe\xc6\xb5\xb9\xbc\xad\xb6\xb7\xa9\xb5\xb4\xa8\xb4\xb2\xa6\xb2\ +\xb2\xa5\xb3\xb2\xa5\xb2\xb0\xa5\xb2\xb0\xa4\xb1\xae\xa4\xb1\xac\ +\xa2\xaf\xaa\x9f\xaf\xa5\x9d\xad\x9f\x99\xaa\x99\x95\xa7\x92\x91\ +\xa5\x89\x8c\xa1\x7d\x86\x9d\x73\x80\x9a\x6b\x7c\x97\x65\x79\x94\ +\x65\x7a\x95\x68\x7b\x96\x71\x80\x99\x7c\x86\x9d\x87\x8d\xa3\x92\ +\x95\xa8\x00\x00\x00\xde\xd3\xd5\xde\xd2\xd4\xdf\xd1\xd4\xdc\xd0\ +\xd0\xd7\xca\xca\xd0\xc0\xc1\xc6\xb3\xb3\xb9\xa4\xa5\xb0\x9c\x9f\ +\xa8\x99\xa1\xa4\x9a\xa5\xaf\xa7\xb2\xbd\xb5\xbd\xc9\xc0\xc6\xd0\ +\xc7\xcc\xd2\xc8\xce\xd3\xc9\xce\xd4\xca\xcf\xd5\xcb\xd1\xd6\xcc\ +\xd1\xd6\xcd\xd1\xd7\xce\xd2\xd9\xcf\xd3\xdc\xd2\xd4\xdd\xd2\xd4\ +\xdf\xd3\xd5\xe1\xd5\xd5\xe2\xd6\xd7\xe3\xd6\xd7\xe4\xd8\xd8\xe6\ +\xda\xda\xe7\xda\xdb\xe8\xdb\xdb\xe9\xdc\xda\xea\xdd\xdb\xeb\xde\ +\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe2\xdf\xee\xe2\xde\xf0\xe3\xe0\ +\xf0\xe3\xde\xf0\xe4\xde\xf1\xe3\xdd\xf1\xe4\xde\xf1\xe5\xdf\xf1\ +\xe5\xdf\xf3\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\ +\xe1\xf3\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf5\xe9\xe3\xf5\xea\xe3\ +\xf5\xeb\xe5\xf6\xed\xe5\xf6\xed\xe4\xf8\xef\xe6\xf8\xef\xe6\xf9\ +\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf8\xf1\ +\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\ +\xf9\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\ +\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf3\xe8\xf8\xf2\xe9\xf9\xf2\ +\xe8\xf9\xf2\xe8\xf8\xf1\xe8\xf9\xf1\xe7\xf9\xef\xe7\xf8\xef\xe6\ +\xf7\xee\xe5\xf5\xed\xe4\xf6\xec\xe4\xf6\xeb\xe3\xf4\xea\xe3\xf4\ +\xea\xe3\xf4\xe9\xe3\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf3\xe8\ +\xe3\xf3\xe8\xe3\xf3\xe7\xe3\xf3\xe7\xe3\xf3\xe7\xe1\xf3\xe7\xe1\ +\xf3\xe7\xe1\xf4\xe9\xe2\xf4\xea\xe3\xf3\xea\xe3\xf4\xe9\xe3\xf4\ +\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf3\xe8\ +\xe1\xf5\xe9\xe3\xf4\xe9\xe1\xf5\xe9\xe2\xf6\xeb\xe3\xf7\xec\xe4\ +\xf6\xed\xe4\xf7\xee\xe5\xf9\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf8\ +\xf2\xe9\xf7\xf1\xe8\xf8\xf0\xe7\xf6\xec\xe2\xf3\xe5\xdd\xef\xdd\ +\xd6\xe9\xd4\xcf\xe1\xcc\xc8\xd7\xc3\xc1\xcb\xb9\xbb\xbd\xae\xb6\ +\xb7\xa9\xb4\xb5\xa9\xb5\xb4\xa8\xb4\xb3\xa7\xb3\xb3\xa7\xb4\xb2\ +\xa7\xb3\xb1\xa5\xb1\xb0\xa5\xb1\xaf\xa5\xb2\xad\xa3\xb0\xab\xa1\ +\xaf\xa6\x9e\xad\xa0\x9b\xab\x97\x95\xa7\x8f\x90\xa3\x85\x8a\xa0\ +\x77\x82\x9b\x6e\x7d\x97\x65\x78\x94\x5d\x74\x90\x5b\x73\x8e\x60\ +\x76\x92\x69\x7b\x96\x77\x83\x9d\x85\x8b\xa2\x90\x93\xa8\x00\x00\ +\x00\xe0\xd5\xd7\xe0\xd4\xd6\xe0\xd3\xd5\xdf\xd3\xd3\xdc\xcf\xcf\ +\xd6\xc6\xc7\xcd\xbb\xba\xc2\xad\xac\xb7\xa1\xa3\xb0\x9e\xa2\xa8\ +\x9c\xa5\xaa\xa2\xad\xb8\xb0\xba\xc3\xbb\xc2\xcd\xc4\xca\xd0\xc6\ +\xcc\xd1\xc7\xcd\xd2\xc8\xce\xd3\xc9\xcf\xd4\xca\xd0\xd4\xcb\xd0\ +\xd6\xcd\xd2\xd8\xcf\xd2\xd9\xd0\xd3\xdd\xd2\xd4\xde\xd2\xd4\xdf\ +\xd3\xd5\xe1\xd5\xd7\xe3\xd6\xd8\xe4\xd7\xd9\xe5\xd9\xda\xe7\xdb\ +\xdb\xe8\xdb\xdc\xe9\xdc\xdb\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\ +\xed\xe0\xde\xee\xe2\xdf\xef\xe3\xdf\xf0\xe4\xdf\xf0\xe4\xdf\xf1\ +\xe5\xdf\xf2\xe6\xe0\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\ +\xe1\xf3\xe7\xe1\xf4\xe7\xe1\xf4\xe8\xe2\xf3\xe8\xe2\xf4\xe9\xe2\ +\xf5\xe8\xe2\xf5\xe9\xe3\xf4\xea\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf7\ +\xed\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\ +\xe7\xf9\xf1\xe8\xfa\xf1\xe8\xf9\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\ +\xf8\xf1\xe8\xfa\xf3\xea\xfa\xf2\xea\xf9\xf2\xe9\xf9\xf2\xe9\xf8\ +\xf2\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\ +\xe9\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf0\xe7\xf9\xf0\xe7\ +\xf9\xf0\xe7\xf8\xef\xe7\xf7\xef\xe6\xf7\xee\xe6\xf6\xed\xe5\xf5\ +\xec\xe4\xf4\xea\xe4\xf4\xea\xe4\xf4\xea\xe4\xf3\xe9\xe3\xf3\xe9\ +\xe2\xf3\xe7\xe1\xf2\xe7\xe3\xf3\xe7\xe3\xf3\xe7\xe3\xf2\xe6\xe2\ +\xf1\xe5\xe1\xf1\xe5\xe0\xf1\xe5\xe1\xf1\xe5\xe1\xf2\xe6\xe1\xf2\ +\xe7\xe1\xf4\xe9\xe2\xf4\xe9\xe2\xf3\xe9\xe2\xf3\xe8\xe2\xf4\xe7\ +\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe7\xe2\xf3\xe7\xe1\ +\xf3\xe9\xe0\xf4\xe9\xe1\xf5\xea\xe2\xf6\xeb\xe3\xf7\xec\xe4\xf7\ +\xed\xe4\xf8\xef\xe6\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xf1\ +\xe7\xf8\xef\xe5\xf6\xeb\xe1\xf2\xe4\xdb\xed\xda\xd3\xe5\xd1\xcc\ +\xdd\xc8\xc5\xd2\xbf\xbe\xc4\xb3\xb9\xb9\xaa\xb5\xb6\xa9\xb5\xb5\ +\xa9\xb5\xb5\xa9\xb5\xb4\xa8\xb4\xb4\xa8\xb4\xb3\xa7\xb3\xb3\xa7\ +\xb3\xb0\xa6\xb2\xb0\xa6\xb2\xaf\xa5\xb2\xab\xa2\xb0\xa9\xa0\xaf\ +\xa3\x9c\xac\x9a\x97\xa9\x8e\x8f\xa3\x82\x87\x9f\x74\x80\x9b\x69\ +\x79\x95\x61\x75\x91\x59\x71\x8e\x55\x70\x8c\x5b\x72\x8e\x66\x79\ +\x94\x74\x80\x9b\x82\x8a\xa1\x8f\x92\xa6\x00\x00\x00\xe1\xd8\xd9\ +\xe0\xd5\xd7\xe0\xd4\xd6\xe0\xd3\xd4\xde\xd1\xd2\xda\xcb\xcc\xd2\ +\xc2\xc3\xc8\xb5\xb4\xbc\xa7\xa6\xb4\xa0\xa2\xae\x9f\xa6\xaa\xa0\ +\xab\xb4\xac\xb7\xbe\xb7\xc0\xc9\xc1\xc7\xd0\xc6\xcc\xd1\xc7\xcd\ +\xd1\xc8\xce\xd2\xc8\xce\xd2\xc9\xcf\xd1\xca\xcf\xd4\xcc\xd2\xd6\ +\xce\xd2\xd9\xd0\xd2\xda\xd1\xd4\xdc\xd2\xd4\xde\xd3\xd5\xdf\xd4\ +\xd6\xe2\xd6\xd8\xe4\xd7\xd9\xe6\xda\xd9\xe6\xda\xda\xe8\xdb\xdc\ +\xe9\xdc\xda\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\xee\xe1\xdf\xef\ +\xe3\xdf\xef\xe3\xdf\xf0\xe4\xe0\xf1\xe5\xe0\xf1\xe5\xdf\xf2\xe6\ +\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe8\xe1\xf4\xe8\xe2\ +\xf3\xe8\xe2\xf3\xe9\xe3\xf4\xea\xe3\xf4\xea\xe3\xf4\xe9\xe3\xf5\ +\xea\xe3\xf5\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe5\xf6\xed\ +\xe4\xf8\xef\xe6\xf8\xef\xe6\xf9\xef\xe6\xf8\xf0\xe7\xf9\xf1\xe8\ +\xf9\xf1\xe8\xf7\xf0\xe7\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf9\ +\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\ +\xe8\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf1\xe9\xf8\xf2\xe8\ +\xf9\xf2\xe8\xf8\xf1\xe8\xf9\xf1\xe7\xf8\xf0\xe7\xf9\xf0\xe7\xf8\ +\xef\xe6\xf8\xee\xe6\xf7\xed\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf4\xea\ +\xe3\xf4\xe9\xe4\xf3\xe8\xe5\xf3\xe8\xe4\xf2\xe7\xe3\xf3\xe7\xe3\ +\xf2\xe6\xe2\xf1\xe6\xe2\xf2\xe6\xe1\xf1\xe5\xe1\xf1\xe5\xe1\xf0\ +\xe3\xe0\xf0\xe3\xdf\xf1\xe3\xdf\xf1\xe4\xe1\xf2\xe6\xe0\xf3\xe7\ +\xe1\xf3\xe7\xe1\xf4\xe8\xe1\xf3\xe7\xe1\xf3\xe7\xe1\xf1\xe5\xdf\ +\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe8\xe2\xf4\xe8\xe1\xf4\ +\xe9\xe1\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xec\xe4\xf7\xed\xe4\xf8\xef\ +\xe6\xf8\xf0\xe7\xf7\xef\xe6\xf8\xf1\xe8\xf7\xf0\xe7\xf7\xef\xe5\ +\xf5\xea\xe0\xf3\xe2\xdb\xed\xd9\xd2\xe5\xd1\xcb\xdb\xc7\xc4\xd0\ +\xbd\xbd\xc2\xb2\xb8\xb8\xaa\xb6\xb7\xaa\xb5\xb6\xaa\xb6\xb5\xa9\ +\xb5\xb5\xa9\xb5\xb4\xa8\xb4\xb4\xa8\xb4\xb3\xa7\xb4\xb3\xa7\xb3\ +\xb0\xa6\xb3\xae\xa4\xb1\xad\xa4\xb1\xaa\xa2\xb0\xa4\x9e\xad\x9c\ +\x97\xa9\x90\x90\xa4\x83\x87\xa0\x75\x80\x9b\x6b\x79\x95\x62\x75\ +\x92\x59\x70\x8e\x57\x6e\x8d\x5c\x71\x8e\x68\x78\x95\x74\x7f\x9b\ +\x82\x88\xa1\x8e\x91\xa5\x00\x00\x00\xe0\xd8\xda\xe1\xd6\xd8\xe1\ +\xd5\xd7\xe0\xd3\xd5\xdf\xd2\xd2\xdc\xcd\xce\xd5\xc5\xc6\xcc\xba\ +\xba\xc1\xad\xad\xb6\xa2\xa3\xb1\xa0\xa5\xac\x9f\xa8\xaf\xa6\xb0\ +\xbb\xb3\xbc\xc5\xbe\xc3\xcf\xc5\xc9\xd1\xc8\xcc\xd2\xc8\xcd\xd2\ +\xc8\xcf\xd2\xc9\xcf\xd3\xca\xcf\xd4\xcc\xd1\xd6\xcd\xd3\xd9\xd0\ +\xd3\xda\xd1\xd4\xdc\xd1\xd4\xde\xd4\xd6\xe0\xd5\xd7\xe1\xd6\xd8\ +\xe3\xd7\xd9\xe6\xd9\xd9\xe6\xda\xda\xe7\xda\xdb\xe9\xdb\xdb\xea\ +\xdd\xdb\xeb\xde\xdc\xed\xe0\xde\xef\xe2\xdf\xef\xe4\xe0\xf0\xe4\ +\xe0\xf0\xe4\xe0\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\ +\xf3\xe7\xe1\xf3\xe8\xe2\xf3\xe9\xe2\xf4\xe9\xe2\xf4\xea\xe3\xf4\ +\xea\xe3\xf4\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf5\xeb\ +\xe4\xf6\xec\xe5\xf6\xed\xe5\xf6\xed\xe4\xf7\xee\xe5\xf7\xef\xe5\ +\xf8\xef\xe6\xf9\xef\xe6\xf9\xf1\xe8\xf9\xf0\xe7\xf8\xf0\xe7\xf8\ +\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf2\xe8\xf8\xf2\ +\xe8\xf9\xf3\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\ +\xf9\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf1\xe8\xf8\xf2\xe8\xf7\ +\xf1\xe7\xf9\xf0\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe5\xf7\xed\ +\xe6\xf6\xec\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf3\xe8\xe4\xf3\xe8\xe4\ +\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf1\xe5\xe3\xf1\ +\xe4\xe1\xf0\xe3\xe1\xf0\xe4\xe0\xef\xe3\xe0\xef\xe3\xdf\xf0\xe2\ +\xdf\xf0\xe1\xdf\xf0\xe2\xdf\xf1\xe5\xe1\xf2\xe6\xe1\xf3\xe7\xe1\ +\xf2\xe6\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf2\xe6\xe0\xf3\ +\xe7\xe1\xf2\xe6\xe0\xf3\xe7\xe1\xf3\xe7\xe1\xf4\xe9\xe1\xf5\xea\ +\xe2\xf6\xec\xe3\xf6\xed\xe4\xf6\xed\xe4\xf8\xef\xe6\xf9\xf0\xe7\ +\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe6\xf7\xee\xe4\xf5\xea\xe0\xf2\ +\xe2\xda\xed\xd9\xd2\xe4\xd1\xcb\xdd\xc8\xc5\xd2\xbe\xbe\xc3\xb2\ +\xb8\xb9\xab\xb5\xb8\xaa\xb5\xb6\xaa\xb5\xb5\xa9\xb5\xb6\xaa\xb6\ +\xb5\xa9\xb5\xb4\xa8\xb4\xb4\xa8\xb4\xb3\xa7\xb3\xb2\xa7\xb3\xaf\ +\xa5\xb2\xae\xa4\xb1\xaa\xa1\xb0\xa4\x9e\xae\x9b\x97\xaa\x90\x90\ +\xa4\x84\x88\xa1\x7a\x81\x9d\x71\x7d\x99\x68\x77\x95\x60\x73\x90\ +\x60\x72\x90\x64\x74\x92\x6d\x7a\x96\x79\x81\x9c\x84\x88\xa1\x8f\ +\x90\xa6\x00\x00\x00\xe1\xd7\xd9\xe1\xd6\xd8\xe0\xd4\xd6\xe0\xd3\ +\xd5\xde\xd1\xd2\xdc\xce\xcf\xd7\xc8\xc9\xd0\xc0\xbf\xc7\xb3\xb3\ +\xba\xa6\xa6\xb3\x9f\xa3\xac\x9f\xa5\xaa\xa0\xab\xb5\xad\xb7\xc1\ +\xb9\xc0\xcc\xc2\xc7\xd2\xc8\xcb\xd2\xc9\xcc\xd2\xc9\xcd\xd3\xc9\ +\xcd\xd4\xcb\xd1\xd6\xcc\xd1\xd7\xcd\xd2\xd9\xd0\xd3\xda\xd0\xd3\ +\xdd\xd2\xd5\xde\xd3\xd6\xe0\xd5\xd7\xe1\xd6\xd8\xe2\xd7\xd9\xe5\ +\xd9\xd9\xe5\xd9\xd9\xe6\xda\xda\xe9\xdb\xdb\xea\xdd\xdb\xec\xdf\ +\xdd\xee\xe1\xdf\xef\xe2\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf2\xe6\xe0\ +\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe9\xe2\xf4\xe8\xe2\xf4\xe8\xe2\xf5\ +\xe9\xe2\xf5\xeb\xe3\xf5\xeb\xe4\xf5\xec\xe4\xf6\xec\xe5\xf6\xec\ +\xe5\xf6\xec\xe5\xf6\xec\xe5\xf7\xed\xe6\xf7\xed\xe6\xf7\xee\xe6\ +\xf7\xee\xe4\xf6\xed\xe4\xf6\xee\xe4\xf8\xee\xe6\xf9\xf0\xe7\xf9\ +\xf0\xe7\xf7\xf1\xe8\xf7\xf1\xe8\xf7\xf1\xe8\xf8\xf1\xe8\xf8\xf1\ +\xe8\xf8\xf1\xe8\xfa\xf2\xe9\xf8\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\ +\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf8\xf1\xe8\xf8\xf2\xe7\xf7\xf1\xe8\xf8\xf0\xe7\xf8\xef\ +\xe6\xf8\xef\xe6\xf8\xef\xe6\xf6\xec\xe5\xf6\xec\xe5\xf5\xeb\xe4\ +\xf4\xea\xe3\xf2\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf1\xe6\xe2\xf1\ +\xe5\xe1\xf0\xe4\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xef\xe3\xe0\xee\xe2\ +\xdf\xee\xe1\xe0\xee\xe1\xdf\xee\xe1\xde\xee\xdf\xdd\xef\xe0\xdd\ +\xef\xe1\xdd\xef\xe2\xdf\xf1\xe5\xe1\xf1\xe5\xe1\xf0\xe4\xe0\xf0\ +\xe4\xdf\xf0\xe4\xde\xf1\xe5\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe6\ +\xe1\xf3\xe7\xe1\xf4\xe8\xe1\xf4\xe9\xe1\xf5\xea\xe2\xf7\xec\xe4\ +\xf6\xed\xe4\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\ +\xf0\xe6\xf8\xef\xe5\xf7\xee\xe4\xf5\xea\xe0\xf2\xe3\xdc\xed\xda\ +\xd4\xe7\xd3\xcd\xde\xca\xc5\xd5\xc1\xc0\xc7\xb6\xba\xbd\xae\xb6\ +\xb9\xaa\xb6\xb8\xab\xb5\xb7\xab\xb7\xb5\xa9\xb5\xb4\xa8\xb4\xb5\ +\xa9\xb5\xb3\xa7\xb3\xb3\xa7\xb3\xb2\xa7\xb2\xaf\xa5\xb2\xae\xa4\ +\xb1\xaa\xa1\xb0\xa4\x9d\xad\x9b\x97\xaa\x93\x92\xa6\x8a\x8d\xa3\ +\x81\x87\x9f\x7a\x82\x9d\x72\x7d\x99\x6b\x78\x95\x6b\x78\x94\x6f\ +\x7a\x97\x77\x7f\x9b\x80\x85\x9e\x88\x8b\xa2\x91\x92\xa6\x00\x00\ +\x00\xe1\xd7\xd9\xe1\xd6\xd8\xe1\xd5\xd7\xe0\xd3\xd5\xde\xd2\xd1\ +\xdc\xcf\xcf\xd8\xca\xcb\xd3\xc3\xc4\xcb\xba\xb9\xc0\xac\xad\xb5\ +\xa2\xa4\xad\x9d\xa3\xa9\x9d\xa7\xae\xa5\xb0\xbd\xb4\xbb\xc8\xbf\ +\xc4\xd1\xc7\xca\xd5\xca\xcd\xd4\xca\xcd\xd4\xcb\xce\xd6\xcd\xd0\ +\xd7\xce\xd1\xd8\xcf\xd2\xd9\xd1\xd4\xda\xd1\xd4\xdc\xd3\xd6\xde\ +\xd4\xd7\xe0\xd5\xd7\xe1\xd6\xd8\xe3\xd7\xd9\xe5\xd9\xda\xe5\xd9\ +\xd9\xe7\xda\xda\xe9\xdb\xdb\xea\xdd\xdb\xeb\xde\xdc\xef\xe2\xe0\ +\xf1\xe5\xe1\xf1\xe6\xe2\xf2\xe6\xe1\xf3\xe7\xe1\xf3\xe8\xe2\xf4\ +\xea\xe3\xf4\xea\xe3\xf5\xeb\xe3\xf5\xeb\xe3\xf6\xeb\xe3\xf5\xeb\ +\xe4\xf6\xed\xe4\xf6\xed\xe5\xf7\xed\xe6\xf7\xed\xe6\xf7\xed\xe5\ +\xf6\xed\xe5\xf7\xed\xe5\xf7\xee\xe6\xf8\xef\xe6\xf7\xee\xe5\xf6\ +\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf7\xf0\ +\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ +\xf9\xf2\xe9\xfa\xf3\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf9\xf3\xe9\xf8\ +\xf2\xe8\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe9\xf9\xf2\xe9\xf9\xf2\ +\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf9\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\ +\xf7\xee\xe6\xf7\xec\xe5\xf6\xec\xe5\xf5\xeb\xe5\xf4\xe9\xe4\xf3\ +\xe8\xe4\xf2\xe7\xe3\xf1\xe6\xe2\xf1\xe5\xe2\xf0\xe3\xe1\xef\xe2\ +\xe0\xef\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xee\xe1\xdf\xee\xe1\xdf\ +\xee\xe0\xde\xee\xdf\xdd\xee\xdf\xdd\xee\xdf\xdd\xee\xdf\xdd\xef\ +\xe1\xdd\xef\xe2\xde\xef\xe3\xdf\xef\xe3\xdf\xf0\xe3\xdf\xf0\xe4\ +\xe0\xf1\xe5\xe2\xf1\xe6\xdf\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe6\xe1\ +\xf3\xe8\xe1\xf4\xe9\xe1\xf5\xeb\xe3\xf6\xec\xe4\xf6\xee\xe5\xf7\ +\xee\xe5\xf8\xef\xe6\xf7\xee\xe6\xf8\xef\xe5\xf8\xf0\xe7\xf8\xef\ +\xe6\xf7\xee\xe4\xf6\xeb\xe1\xf3\xe5\xdd\xef\xdc\xd6\xe8\xd5\xcf\ +\xe2\xce\xc9\xda\xc5\xc3\xd0\xbc\xbd\xc6\xb5\xb9\xbe\xb0\xb7\xba\ +\xac\xb6\xb9\xab\xb6\xb7\xaa\xb5\xb6\xa9\xb5\xb5\xa9\xb4\xb4\xa8\ +\xb4\xb3\xa7\xb3\xb2\xa6\xb3\xaf\xa6\xb3\xad\xa3\xb0\xaa\xa0\xaf\ +\xa4\x9d\xae\x9f\x9a\xac\x99\x95\xa9\x93\x91\xa6\x8c\x8d\xa4\x85\ +\x88\xa1\x7e\x83\x9d\x78\x80\x9c\x79\x7f\x9c\x7c\x82\x9d\x83\x86\ +\xa0\x89\x8b\xa3\x8f\x90\xa5\x96\x95\xa9\x00\x00\x00\xe1\xd7\xd9\ +\xe1\xd6\xd8\xe0\xd5\xd7\xe0\xd3\xd5\xdd\xd1\xd1\xdc\xce\xcf\xd9\ +\xcb\xcc\xd5\xc6\xc7\xcf\xbf\xbf\xc5\xb2\xb3\xb9\xa6\xa7\xaf\x9f\ +\xa3\xaa\x9c\xa5\xaa\x9f\xaa\xb7\xae\xb6\xc5\xbc\xc1\xd0\xc5\xc8\ +\xd4\xc9\xcc\xd6\xcb\xce\xd6\xcb\xce\xd6\xcd\xd0\xd8\xce\xd1\xda\ +\xd0\xd3\xdb\xd1\xd4\xdc\xd2\xd5\xdd\xd3\xd6\xdf\xd4\xd7\xe1\xd6\ +\xd7\xe2\xd6\xd8\xe3\xd7\xd9\xe6\xd9\xda\xe6\xda\xda\xe8\xda\xda\ +\xe9\xdb\xdc\xea\xdd\xdb\xec\xdf\xdd\xee\xe2\xdf\xf1\xe5\xe1\xf2\ +\xe6\xe1\xf2\xe7\xe1\xf4\xea\xe2\xf4\xeb\xe3\xf4\xeb\xe3\xf5\xec\ +\xe3\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xee\xe5\ +\xf7\xee\xe5\xf8\xee\xe7\xf7\xee\xe6\xf7\xee\xe5\xf8\xee\xe6\xf7\ +\xee\xe5\xf8\xee\xe6\xf7\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\ +\xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf7\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe8\ +\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf3\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf9\ +\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf1\ +\xe9\xf9\xf2\xe8\xf9\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf0\xe7\ +\xf9\xf0\xe7\xf9\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\xf7\xed\xe5\xf6\ +\xed\xe6\xf6\xec\xe5\xf5\xea\xe5\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe6\ +\xe2\xf1\xe4\xe2\xf0\xe3\xe1\xee\xe1\xdf\xee\xe1\xdf\xee\xe0\xe0\ +\xee\xe0\xe0\xee\xe1\xdf\xee\xe1\xdf\xed\xe0\xde\xed\xe0\xde\xed\ +\xdf\xdd\xed\xde\xdc\xed\xde\xdc\xee\xdf\xdd\xee\xdf\xdd\xee\xe0\ +\xdd\xef\xe1\xde\xef\xe2\xde\xf0\xe1\xde\xf0\xe2\xdf\xf1\xe5\xe0\ +\xf2\xe5\xdf\xf2\xe6\xe0\xf2\xe6\xdf\xf3\xe7\xe1\xf3\xe8\xe0\xf5\ +\xea\xe2\xf5\xeb\xe3\xf6\xed\xe4\xf7\xee\xe4\xf7\xee\xe5\xf7\xee\ +\xe5\xf8\xef\xe6\xf7\xee\xe5\xf9\xf0\xe7\xf8\xef\xe6\xf7\xef\xe5\ +\xf6\xeb\xe1\xf4\xe7\xde\xf1\xdf\xd7\xeb\xd8\xd1\xe5\xd1\xcb\xde\ +\xca\xc6\xd7\xc3\xc1\xd1\xbd\xbe\xc9\xb7\xba\xc3\xb3\xb8\xbf\xaf\ +\xb7\xbb\xac\xb6\xb9\xaa\xb5\xb7\xa9\xb5\xb6\xa8\xb4\xb4\xa8\xb3\ +\xb2\xa6\xb3\xb0\xa4\xb2\xae\xa3\xb1\xab\xa0\xb0\xa8\x9e\xae\xa3\ +\x9c\xad\x9f\x9a\xac\x9a\x97\xaa\x94\x93\xa7\x90\x8e\xa5\x89\x8a\ +\xa2\x84\x87\xa0\x85\x87\xa1\x88\x89\xa2\x8d\x8d\xa4\x91\x91\xa7\ +\x96\x94\xa9\x9b\x98\xac\x00\x00\x00\xe2\xd7\xd9\xe1\xd6\xd8\xe0\ +\xd5\xd7\xe0\xd3\xd5\xde\xd1\xd1\xdc\xce\xcf\xdb\xcd\xce\xd7\xc9\ +\xca\xd2\xc2\xc3\xca\xba\xbb\xbf\xad\xae\xb3\xa2\xa6\xab\x9d\xa6\ +\xa7\x9d\xa7\xb1\xa8\xb2\xc0\xb6\xbd\xcd\xc1\xc5\xd3\xc8\xcb\xd5\ +\xca\xcd\xd6\xcb\xce\xd8\xcd\xcf\xd9\xce\xd1\xdb\xd0\xd3\xde\xd3\ +\xd5\xdd\xd2\xd4\xde\xd3\xd5\xdf\xd4\xd6\xe1\xd6\xd8\xe3\xd6\xd8\ +\xe4\xd7\xd9\xe6\xda\xda\xe7\xdb\xdb\xe9\xdb\xdc\xea\xdd\xdb\xeb\ +\xde\xdc\xee\xdf\xdd\xee\xe2\xde\xf1\xe5\xe1\xf2\xe6\xe0\xf3\xe8\ +\xe1\xf4\xea\xe3\xf5\xeb\xe4\xf6\xed\xe5\xf7\xee\xe5\xf7\xee\xe5\ +\xf7\xee\xe5\xf6\xed\xe4\xf7\xee\xe5\xf8\xef\xe6\xf7\xee\xe6\xf8\ +\xef\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\ +\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf7\xf0\xe7\ +\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf7\ +\xf2\xe9\xfa\xf3\xea\xfa\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xfa\xf3\ +\xea\xfa\xf3\xe9\xf8\xf1\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf2\xe8\ +\xf8\xf1\xe7\xf8\xf0\xe8\xf9\xf1\xe8\xf9\xef\xe6\xf8\xef\xe6\xf7\ +\xee\xe5\xf8\xef\xe5\xf7\xee\xe5\xf7\xed\xe6\xf5\xeb\xe4\xf5\xeb\ +\xe4\xf4\xea\xe3\xf4\xe9\xe5\xf2\xe6\xe2\xf1\xe5\xe1\xf1\xe4\xe2\ +\xee\xe1\xdf\xed\xe0\xde\xec\xe0\xdf\xec\xde\xdf\xec\xdf\xe0\xec\ +\xdf\xdf\xed\xde\xdf\xec\xde\xdd\xec\xde\xdc\xed\xdf\xdd\xec\xdd\ +\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xed\xde\xdc\xee\xdf\xdd\ +\xee\xdf\xde\xef\xe0\xdd\xf0\xe2\xdf\xef\xe3\xde\xf1\xe5\xde\xf1\ +\xe5\xdf\xf1\xe5\xdf\xf3\xe7\xe1\xf4\xe8\xe2\xf4\xea\xe2\xf5\xea\ +\xe2\xf7\xed\xe4\xf6\xed\xe5\xf7\xee\xe4\xf7\xed\xe4\xf8\xee\xe4\ +\xf7\xef\xe5\xf7\xee\xe4\xf8\xef\xe5\xf8\xef\xe5\xf7\xed\xe3\xf4\ +\xe9\xdf\xf2\xe1\xda\xed\xda\xd3\xe8\xd5\xcf\xe4\xcf\xca\xde\xca\ +\xc5\xd9\xc4\xc3\xd4\xc0\xbf\xcf\xbc\xbd\xca\xb8\xbb\xc6\xb4\xb9\ +\xc1\xb1\xb7\xbe\xad\xb6\xbb\xad\xb7\xba\xab\xb6\xb7\xa9\xb5\xb4\ +\xa8\xb4\xb1\xa4\xb2\xad\xa3\xb1\xab\xa1\xb1\xa7\x9e\xae\xa3\x9d\ +\xae\xa0\x9a\xad\x9c\x98\xab\x97\x93\xa8\x93\x90\xa6\x8f\x8e\xa5\ +\x90\x8f\xa6\x93\x90\xa6\x94\x92\xa8\x98\x96\xaa\x9b\x98\xac\x9f\ +\x9b\xad\x00\x00\x00\xe1\xd6\xd9\xe0\xd5\xd7\xe0\xd4\xd6\xdf\xd3\ +\xd4\xde\xd1\xd2\xdc\xce\xcf\xdb\xcd\xce\xd9\xcb\xcc\xd5\xc6\xc7\ +\xce\xbf\xc0\xc5\xb3\xb5\xb8\xa7\xaa\xad\x9f\xa6\xa7\x9d\xa8\xaa\ +\xa1\xac\xb9\xaf\xb6\xc8\xbc\xc1\xd0\xc5\xc8\xd5\xca\xcd\xd7\xcc\ +\xce\xd8\xcd\xcf\xd9\xce\xd1\xdb\xd0\xd2\xdd\xd2\xd4\xde\xd3\xd5\ +\xde\xd3\xd5\xe0\xd5\xd7\xe1\xd6\xd8\xe4\xd7\xd8\xe6\xda\xd9\xe7\ +\xdb\xdb\xe9\xdb\xdc\xea\xdd\xdc\xeb\xde\xdc\xee\xde\xdc\xef\xe1\ +\xdd\xf0\xe4\xe0\xf1\xe5\xdf\xf2\xe7\xe0\xf4\xe8\xe2\xf5\xea\xe3\ +\xf6\xec\xe4\xf8\xee\xe6\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\ +\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\ +\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\ +\xf8\xef\xe6\xf8\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\ +\xf1\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xea\xf9\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe8\ +\xf9\xf1\xe8\xf9\xf1\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf9\ +\xf1\xe8\xf9\xef\xe6\xf9\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\ +\xe5\xf6\xed\xe5\xf6\xec\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf4\xe9\xe4\ +\xf3\xe8\xe4\xf1\xe6\xe2\xf1\xe5\xe1\xf0\xe3\xe1\xed\xe0\xde\xec\ +\xdf\xde\xec\xde\xdf\xeb\xdd\xde\xeb\xdd\xde\xeb\xdd\xde\xeb\xdd\ +\xdd\xeb\xdd\xde\xeb\xdd\xdc\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\ +\xec\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xef\ +\xe0\xdd\xef\xe0\xdd\xf0\xe1\xde\xf1\xe2\xde\xf2\xe4\xde\xf1\xe5\ +\xdf\xf3\xe7\xe1\xf4\xe9\xe2\xf5\xea\xe2\xf5\xea\xe2\xf6\xec\xe4\ +\xf6\xed\xe4\xf7\xed\xe4\xf7\xee\xe5\xf6\xed\xe4\xf7\xee\xe4\xf8\ +\xef\xe5\xf9\xf0\xe6\xf8\xef\xe6\xf7\xee\xe4\xf5\xea\xe0\xf2\xe5\ +\xdc\xf0\xde\xd7\xeb\xd8\xd2\xe8\xd3\xcf\xe3\xcf\xca\xdf\xcb\xc7\ +\xdb\xc6\xc4\xd8\xc3\xc2\xd4\xc0\xbf\xd0\xbc\xbd\xcc\xba\xbc\xc9\ +\xb7\xbb\xc7\xb6\xba\xc2\xb2\xb8\xbe\xaf\xb7\xbb\xac\xb6\xb7\xa9\ +\xb5\xb2\xa6\xb2\xae\xa3\xb1\xab\xa0\xb1\xa7\x9f\xaf\xa5\x9d\xae\ +\xa2\x9a\xad\x9f\x99\xab\x9d\x97\xaa\x9a\x95\xaa\x9a\x95\xaa\x9b\ +\x97\xab\x9d\x97\xab\x9e\x99\xad\xa0\x9b\xae\xa2\x9e\xaf\x00\x00\ +\x00\xe1\xd6\xd9\xe1\xd6\xd8\xe0\xd4\xd6\xdf\xd2\xd4\xde\xd1\xd2\ +\xdc\xce\xcf\xdc\xce\xcf\xdb\xcd\xce\xd8\xca\xcb\xd3\xc4\xc5\xca\ +\xba\xbb\xbd\xad\xaf\xb1\xa3\xa9\xa8\x9d\xa8\xa6\x9d\xa9\xb2\xa8\ +\xb2\xc3\xb7\xbd\xcd\xc3\xc5\xd4\xc9\xcc\xd7\xcc\xce\xd8\xcd\xcf\ +\xdb\xd0\xd2\xdd\xd1\xd3\xdf\xd3\xd5\xdf\xd3\xd5\xe0\xd4\xd6\xe1\ +\xd4\xd6\xe2\xd5\xd7\xe4\xd8\xd8\xe6\xd9\xd9\xe8\xdb\xda\xea\xdc\ +\xdb\xeb\xdd\xdb\xed\xdf\xdd\xee\xe1\xde\xef\xe2\xde\xf0\xe4\xdf\ +\xf1\xe5\xdf\xf2\xe7\xe0\xf4\xe8\xe1\xf5\xeb\xe3\xf6\xec\xe4\xf7\ +\xee\xe5\xf8\xef\xe6\xf8\xee\xe5\xf8\xee\xe5\xf8\xef\xe6\xf7\xee\ +\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\ +\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xef\xe6\xf8\xf0\xe7\xf8\ +\xf0\xe7\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xfa\xf3\ +\xea\xf9\xf3\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\ +\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe8\xf8\xf2\xe9\xf9\xf1\xe9\xf9\ +\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\xf8\xf1\xe7\xf9\xf0\xe7\xf8\xf0\ +\xe7\xf9\xef\xe7\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe5\ +\xf5\xeb\xe4\xf6\xec\xe5\xf5\xeb\xe4\xf4\xe9\xe4\xf3\xe8\xe4\xf1\ +\xe6\xe2\xf1\xe5\xe1\xf0\xe3\xe1\xed\xe0\xde\xec\xde\xdf\xeb\xdd\ +\xde\xeb\xde\xdf\xea\xdd\xde\xea\xdd\xde\xea\xdc\xdd\xea\xdc\xdd\ +\xeb\xdc\xdc\xeb\xdd\xdb\xeb\xdc\xda\xeb\xdc\xda\xec\xdd\xdb\xec\ +\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xed\xde\xdc\xee\xdf\xdc\xef\xe0\ +\xdd\xf0\xe1\xde\xf0\xe2\xdf\xf1\xe4\xde\xf2\xe5\xdf\xf3\xe7\xe1\ +\xf4\xe8\xe2\xf5\xea\xe2\xf5\xeb\xe2\xf6\xec\xe4\xf7\xed\xe4\xf7\ +\xed\xe4\xf8\xed\xe4\xf7\xee\xe4\xf7\xee\xe4\xf8\xef\xe5\xf8\xef\ +\xe6\xf8\xef\xe6\xf8\xef\xe5\xf6\xec\xe2\xf4\xe8\xde\xf2\xe2\xdb\ +\xef\xdd\xd7\xec\xd8\xd3\xe9\xd4\xcf\xe5\xd1\xcc\xe2\xce\xc9\xdf\ +\xca\xc6\xdb\xc7\xc5\xd9\xc4\xc2\xd6\xc2\xc1\xd4\xc0\xc0\xcf\xbc\ +\xbe\xca\xb8\xbb\xc6\xb5\xb9\xc1\xb1\xb8\xbc\xad\xb6\xb6\xa9\xb5\ +\xb1\xa5\xb3\xad\xa2\xb2\xab\xa1\xb1\xa9\x9f\xb0\xa7\x9e\xaf\xa6\ +\x9e\xaf\xa5\x9d\xaf\xa3\x9d\xad\xa3\x9b\xae\xa3\x9c\xae\xa2\x9c\ +\xae\xa2\x9c\xae\xa4\x9e\xaf\xa5\x9f\xb0\x00\x00\x00\xe1\xd6\xd9\ +\xe1\xd6\xd8\xe0\xd5\xd7\xe0\xd3\xd5\xde\xd1\xd2\xdd\xcf\xd0\xdd\ +\xcf\xd0\xdc\xcd\xce\xdb\xcd\xce\xd7\xc9\xca\xcf\xc0\xc1\xc3\xb4\ +\xb7\xb6\xa7\xac\xac\xa0\xa9\xa4\x9b\xa8\xa9\xa1\xac\xbc\xb1\xb8\ +\xca\xbf\xc2\xd3\xc8\xca\xd7\xcc\xce\xda\xcf\xd1\xdc\xd0\xd2\xde\ +\xd1\xd3\xdf\xd3\xd5\xe0\xd3\xd5\xe0\xd3\xd4\xe0\xd4\xd6\xe2\xd6\ +\xd6\xe5\xd7\xd8\xe6\xd9\xd9\xe9\xdc\xda\xeb\xdd\xdb\xed\xde\xdc\ +\xee\xe0\xdd\xef\xe2\xde\xf0\xe3\xdf\xf0\xe4\xde\xf1\xe5\xdf\xf3\ +\xe6\xe0\xf3\xe8\xe0\xf5\xea\xe2\xf6\xec\xe3\xf6\xed\xe4\xf8\xef\ +\xe6\xf8\xef\xe5\xf8\xef\xe4\xf7\xee\xe5\xf7\xee\xe6\xf7\xee\xe5\ +\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf8\ +\xef\xe6\xf8\xef\xe6\xf9\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf1\ +\xe8\xf8\xf1\xe8\xf9\xf1\xe8\xf8\xf2\xe9\xfa\xf3\xea\xfa\xf3\xea\ +\xf9\xf3\xea\xf9\xf3\xe9\xf9\xf3\xea\xf9\xf2\xe9\xf8\xf1\xe8\xf9\ +\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf1\xe8\xf9\xf2\xe8\xf9\xf1\ +\xe8\xf8\xf2\xe8\xf8\xf1\xe7\xf9\xf0\xe7\xf8\xef\xe7\xf8\xef\xe5\ +\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe4\xf5\xec\xe4\xf6\xec\xe5\xf5\ +\xeb\xe4\xf5\xea\xe4\xf4\xe9\xe4\xf4\xe9\xe5\xf1\xe6\xe2\xf1\xe5\ +\xe1\xf0\xe3\xe1\xed\xe0\xde\xec\xde\xdf\xec\xde\xdf\xea\xde\xde\ +\xe9\xde\xdd\xea\xde\xdd\xeb\xdd\xde\xea\xdc\xdd\xe9\xdc\xdb\xea\ +\xdc\xdb\xeb\xdb\xd9\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\ +\xda\xeb\xdc\xdb\xec\xdd\xdb\xed\xde\xdb\xef\xe0\xdd\xef\xe0\xdd\ +\xf0\xe1\xde\xf1\xe3\xde\xf2\xe5\xdf\xf3\xe7\xe1\xf4\xe8\xe2\xf5\ +\xe9\xe1\xf5\xea\xe2\xf6\xeb\xe3\xf6\xec\xe3\xf7\xec\xe4\xf7\xee\ +\xe3\xf7\xee\xe4\xf6\xed\xe4\xf8\xef\xe5\xf7\xf0\xe6\xf8\xef\xe6\ +\xf7\xee\xe5\xf6\xec\xe2\xf5\xea\xe0\xf4\xe7\xdf\xf1\xe2\xdb\xf0\ +\xde\xd7\xec\xd9\xd4\xe9\xd6\xd1\xe7\xd3\xce\xe4\xd0\xcb\xe1\xcd\ +\xc8\xdf\xcc\xc8\xde\xcb\xc8\xdb\xc7\xc6\xd6\xc3\xc2\xd1\xbe\xbf\ +\xcb\xb9\xbd\xc6\xb6\xba\xc0\xb0\xb9\xb9\xab\xb7\xb3\xa8\xb5\xae\ +\xa4\xb2\xad\xa2\xb2\xab\xa1\xb1\xac\xa2\xb2\xac\xa2\xb2\xab\xa2\ +\xb2\xab\xa1\xb1\xaa\xa1\xb0\xa8\xa0\xb0\xa7\x9f\xb0\xa6\x9f\xb0\ +\xa7\xa0\xb1\xa6\xa0\xb1\x00\x00\x00\xe0\xd6\xd9\xe1\xd5\xd7\xe1\ +\xd5\xd7\xe0\xd3\xd4\xdf\xd1\xd2\xde\xd0\xd1\xdd\xcf\xd0\xde\xd0\ +\xd0\xdd\xcf\xd0\xdb\xcc\xcd\xd4\xc6\xc7\xc9\xbb\xbe\xbd\xae\xb2\ +\xb0\xa4\xac\xa7\x9d\xa9\xa7\x9e\xab\xb4\xab\xb5\xc5\xba\xbf\xd1\ +\xc5\xc8\xd7\xcc\xce\xda\xcf\xd1\xdd\xd0\xd2\xdd\xd1\xd2\xdf\xd1\ +\xd3\xe0\xd3\xd3\xe0\xd4\xd4\xe2\xd4\xd5\xe4\xd6\xd7\xe5\xd7\xd8\ +\xe7\xd9\xd8\xea\xdc\xda\xec\xdd\xdb\xed\xde\xdb\xef\xe0\xdd\xf0\ +\xe1\xdd\xf0\xe2\xdd\xf1\xe3\xdd\xf3\xe5\xdf\xf3\xe6\xdf\xf3\xe8\ +\xe0\xf5\xea\xe2\xf6\xeb\xe3\xf6\xed\xe4\xf8\xef\xe5\xf7\xee\xe5\ +\xf8\xef\xe5\xf9\xf0\xe6\xf8\xef\xe5\xf8\xef\xe6\xf8\xef\xe6\xf9\ +\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe6\xf9\xf0\xe7\xf9\xf0\xe7\xf9\xf1\ +\xe8\xf7\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\ +\xf9\xf2\xe9\xfa\xf3\xea\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe8\xf9\ +\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe9\xf8\xf2\ +\xe8\xf9\xf2\xe8\xf9\xf3\xe8\xf9\xf2\xe7\xf8\xf2\xe7\xf8\xf1\xe6\ +\xf9\xf0\xe7\xf8\xf0\xe6\xf9\xf0\xe5\xf7\xee\xe6\xf7\xee\xe5\xf6\ +\xed\xe4\xf5\xec\xe3\xf5\xeb\xe3\xf4\xea\xe3\xf5\xea\xe3\xf4\xea\ +\xe3\xf3\xe9\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf0\xe4\xe1\xef\xe2\xe0\ +\xed\xe0\xdf\xec\xde\xdf\xeb\xdd\xde\xeb\xdd\xdd\xe9\xdd\xdd\xea\ +\xdc\xdd\xe9\xdb\xdc\xe9\xdb\xdc\xe9\xdb\xdb\xe9\xdc\xd9\xe9\xdb\ +\xd9\xea\xdb\xd9\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xeb\xdc\xda\ +\xeb\xdc\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe0\xdd\xf0\xe1\xde\xf1\ +\xe2\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe2\xf5\xea\ +\xe2\xf5\xea\xe2\xf5\xea\xe2\xf6\xeb\xe3\xf6\xec\xe4\xf7\xed\xe4\ +\xf6\xed\xe4\xf7\xee\xe5\xf8\xee\xe6\xf7\xee\xe6\xf7\xee\xe4\xf7\ +\xec\xe3\xf6\xeb\xe3\xf4\xea\xe1\xf3\xe7\xdf\xf1\xe3\xdc\xf0\xdf\ +\xd9\xee\xdb\xd6\xeb\xd8\xd3\xe9\xd5\xd0\xe6\xd3\xce\xe5\xd1\xce\ +\xe2\xd0\xcc\xdf\xcc\xc9\xdb\xc7\xc5\xd5\xc2\xc1\xce\xbd\xbe\xc9\ +\xb9\xbc\xc2\xb3\xba\xba\xad\xb8\xb5\xa9\xb6\xaf\xa5\xb2\xaf\xa4\ +\xb2\xaf\xa4\xb3\xae\xa4\xb2\xae\xa5\xb3\xae\xa5\xb3\xad\xa4\xb2\ +\xac\xa3\xb2\xaa\xa2\xb2\xa9\xa2\xb1\xa9\xa1\xb2\xaa\xa2\xb3\xa9\ +\xa3\xb3\x00\x00\x00\xdf\xd5\xd8\xe1\xd6\xd8\xe1\xd5\xd7\xe1\xd4\ +\xd6\xe0\xd2\xd3\xdf\xd1\xd2\xdf\xd1\xd2\xdf\xd1\xd2\xde\xd0\xd1\ +\xdc\xcf\xd0\xd8\xcb\xcc\xcf\xc2\xc5\xc4\xb7\xbb\xb7\xab\xb2\xab\ +\xa1\xad\xaa\xa2\xae\xb0\xa8\xb3\xc1\xb6\xbb\xce\xc2\xc5\xd6\xcc\ +\xce\xdc\xd0\xd3\xde\xd1\xd3\xde\xd1\xd3\xdf\xd1\xd3\xe0\xd2\xd3\ +\xe1\xd3\xd4\xe3\xd4\xd6\xe4\xd6\xd7\xe5\xd8\xd7\xe8\xda\xd8\xeb\ +\xdc\xda\xec\xdc\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe0\xdc\xf0\xe2\ +\xdc\xf1\xe3\xdd\xf2\xe4\xde\xf3\xe7\xdf\xf3\xe8\xe0\xf5\xea\xe2\ +\xf6\xeb\xe3\xf7\xee\xe5\xf8\xef\xe6\xf8\xef\xe5\xf8\xef\xe5\xf9\ +\xef\xe5\xf8\xf0\xe6\xf8\xf0\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xf0\ +\xe7\xf9\xf0\xe7\xf8\xf1\xe8\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\ +\xf9\xf1\xe8\xf8\xf2\xe9\xf8\xf3\xea\xf9\xf2\xe9\xf9\xf2\xe9\xf9\ +\xf3\xea\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf3\xe9\xf9\xf2\ +\xe8\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\xe8\xf8\xf2\xe8\xf9\xf2\xe8\ +\xf9\xf2\xe8\xf9\xf2\xe8\xf8\xf1\xe7\xf8\xf0\xe7\xf9\xf0\xe7\xf9\ +\xf0\xe7\xf8\xef\xe6\xf8\xee\xe6\xf7\xee\xe5\xf5\xec\xe4\xf5\xeb\ +\xe3\xf5\xeb\xe4\xf4\xea\xe3\xf4\xe9\xe2\xf3\xe8\xe2\xf2\xe7\xe3\ +\xf2\xe7\xe3\xf1\xe6\xe2\xf0\xe4\xe1\xee\xe1\xdf\xec\xdf\xdf\xec\ +\xde\xdf\xeb\xdd\xde\xeb\xdd\xde\xe9\xdc\xdd\xea\xdb\xdc\xea\xdc\ +\xdd\xe9\xdb\xdc\xe9\xdb\xdb\xea\xdb\xd9\xea\xda\xd8\xe9\xda\xd8\ +\xe9\xda\xd8\xea\xdb\xd9\xeb\xdc\xda\xea\xdb\xd9\xeb\xdc\xda\xec\ +\xdd\xdb\xed\xde\xdb\xef\xe0\xdd\xf0\xe1\xde\xf1\xe2\xdf\xf1\xe3\ +\xdf\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe7\xe1\xf4\xe9\xe1\xf5\xea\xe1\ +\xf5\xea\xe2\xf5\xea\xe2\xf6\xec\xe4\xf7\xed\xe4\xf7\xed\xe5\xf7\ +\xee\xe5\xf7\xee\xe5\xf7\xed\xe4\xf7\xec\xe4\xf6\xec\xe2\xf6\xeb\ +\xe3\xf5\xea\xe2\xf4\xe9\xe1\xf3\xe7\xdf\xf2\xe4\xdd\xf0\xe1\xda\ +\xee\xdd\xd7\xec\xda\xd5\xeb\xd8\xd3\xe9\xd6\xd3\xe7\xd4\xd0\xe3\ +\xd0\xcd\xde\xcb\xc8\xd9\xc6\xc5\xd2\xc0\xc1\xcb\xba\xbd\xc3\xb4\ +\xbb\xbc\xae\xb8\xb6\xaa\xb5\xb2\xa7\xb4\xb1\xa7\xb4\xb0\xa6\xb3\ +\xb1\xa7\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xaf\xa5\xb3\xad\xa4\xb3\xad\ +\xa3\xb3\xac\xa3\xb3\xab\xa4\xb3\xab\xa4\xb3\xaa\xa4\xb3\x00\x00\ +\x00\xde\xd5\xd8\xe0\xd5\xd7\xe1\xd5\xd7\xe1\xd4\xd5\xe2\xd3\xd5\ +\xe1\xd3\xd4\xdf\xd1\xd2\xdf\xd1\xd2\xdf\xd1\xd2\xde\xd1\xd2\xdb\ +\xcf\xd1\xd5\xc8\xcb\xcb\xbf\xc2\xc0\xb4\xb9\xb1\xa8\xb3\xad\xa4\ +\xb0\xb0\xa7\xb2\xbd\xb1\xb8\xcb\xbe\xc1\xd5\xc8\xca\xdb\xd0\xd1\ +\xdf\xd2\xd4\xde\xd2\xd3\xe0\xd2\xd3\xe0\xd2\xd3\xe1\xd3\xd4\xe2\ +\xd5\xd6\xe5\xd8\xd6\xe7\xd9\xd7\xe9\xda\xd8\xeb\xdc\xda\xeb\xdc\ +\xd9\xec\xdd\xda\xee\xdf\xdb\xef\xe0\xdb\xf0\xe2\xdc\xf1\xe3\xdd\ +\xf3\xe5\xdf\xf2\xe6\xdf\xf3\xe8\xe0\xf5\xea\xe2\xf6\xeb\xe3\xf7\ +\xed\xe4\xf8\xef\xe5\xf9\xf0\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf9\xf0\ +\xe6\xf9\xf0\xe7\xf9\xf0\xe8\xf9\xf0\xe8\xf8\xf0\xe7\xf7\xf0\xe7\ +\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf2\xe9\xf9\xf1\xe8\xf8\xf2\xe9\xfa\ +\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf8\xf1\xe9\ +\xf8\xf1\xe9\xf9\xf3\xe9\xf8\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\ +\xf1\xe8\xf9\xf2\xe9\xf7\xf1\xe8\xf9\xf0\xe7\xf9\xf0\xe6\xf8\xef\ +\xe6\xf7\xee\xe5\xf6\xed\xe4\xf5\xeb\xe3\xf6\xea\xe4\xf5\xe9\xe3\ +\xf5\xe9\xe3\xf3\xe8\xe1\xf2\xe6\xe2\xf2\xe6\xe2\xf1\xe6\xe2\xf0\ +\xe5\xe1\xef\xe3\xe0\xed\xdf\xdf\xec\xde\xe0\xeb\xdd\xde\xeb\xdd\ +\xde\xea\xdc\xdd\xea\xdc\xdd\xe9\xdb\xdc\xe9\xdb\xdc\xe9\xdb\xda\ +\xea\xdb\xd9\xe9\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xe9\xda\xd7\xe9\ +\xda\xd8\xea\xdb\xd9\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xde\ +\xdb\xee\xdf\xdc\xf0\xe1\xde\xf0\xe1\xde\xf1\xe2\xde\xf1\xe3\xe0\ +\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe8\xe2\xf4\xe9\xe1\xf4\xe8\xe1\xf5\ +\xe9\xe1\xf6\xeb\xe3\xf6\xed\xe4\xf6\xed\xe4\xf6\xed\xe4\xf6\xec\ +\xe4\xf6\xec\xe3\xf6\xec\xe3\xf6\xeb\xe3\xf5\xea\xe2\xf5\xea\xe2\ +\xf4\xe9\xe1\xf3\xe8\xe0\xf2\xe7\xdf\xf1\xe5\xdd\xf0\xe2\xdc\xef\ +\xe0\xda\xee\xde\xd8\xed\xdb\xd7\xea\xd7\xd3\xe6\xd3\xd0\xe1\xce\ +\xcb\xdc\xc8\xc7\xd4\xc2\xc2\xcc\xbb\xbe\xc5\xb6\xbb\xbe\xaf\xb9\ +\xb7\xab\xb6\xb3\xa8\xb4\xb2\xa7\xb4\xb1\xa7\xb5\xb0\xa7\xb4\xb1\ +\xa7\xb4\xb0\xa6\xb3\xaf\xa5\xb3\xae\xa5\xb4\xae\xa4\xb4\xae\xa4\ +\xb3\xae\xa6\xb5\xad\xa6\xb3\xab\xa4\xb3\x00\x00\x00\xdd\xd2\xd5\ +\xde\xd3\xd5\xe0\xd4\xd5\xe0\xd3\xd3\xe1\xd4\xd5\xe0\xd4\xd4\xe0\ +\xd3\xd4\xe0\xd3\xd3\xdf\xd3\xd3\xe0\xd3\xd4\xde\xd1\xd3\xd9\xcd\ +\xcf\xd1\xc6\xc8\xc6\xbb\xc1\xb9\xae\xb7\xb0\xa6\xb1\xb1\xa6\xb1\ +\xb9\xac\xb3\xc7\xba\xbc\xd1\xc4\xc6\xda\xce\xce\xdf\xd3\xd3\xe1\ +\xd4\xd4\xe1\xd3\xd4\xe2\xd4\xd5\xe2\xd4\xd5\xe4\xd7\xd5\xe5\xd8\ +\xd6\xe7\xd9\xd7\xe9\xda\xd8\xeb\xdb\xd9\xeb\xdc\xda\xec\xdd\xda\ +\xef\xe0\xdd\xf0\xe1\xde\xf0\xe2\xde\xf1\xe3\xdd\xf2\xe5\xdf\xf3\ +\xe7\xe0\xf3\xe8\xe0\xf5\xea\xe2\xf7\xec\xe4\xf7\xee\xe5\xf8\xef\ +\xe6\xf9\xf0\xe6\xf9\xf0\xe7\xf7\xf2\xe6\xf7\xf0\xe8\xf7\xf1\xe8\ +\xf7\xf2\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf9\ +\xf2\xe9\xf9\xf2\xe8\xf8\xf3\xea\xf8\xf3\xe9\xf9\xf2\xea\xf9\xf3\ +\xea\xf9\xf3\xea\xf9\xf3\xea\xf9\xf3\xea\xfa\xf3\xea\xfa\xf3\xea\ +\xfa\xf2\xea\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf3\xe9\xf9\xf2\xe9\xf9\ +\xf2\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf8\xf1\xe9\xf8\xf2\xe8\xf8\xf2\ +\xe7\xf9\xf0\xe7\xf9\xf0\xe7\xf8\xef\xe5\xf8\xee\xe6\xf6\xed\xe4\ +\xf6\xeb\xe3\xf5\xea\xe2\xf4\xe9\xe2\xf4\xe8\xe2\xf3\xe7\xe1\xf2\ +\xe6\xe1\xf2\xe6\xe2\xf1\xe5\xe1\xf0\xe4\xe0\xef\xe2\xe1\xee\xe1\ +\xe0\xed\xdf\xdf\xeb\xdd\xde\xeb\xdd\xde\xea\xdc\xdd\xe9\xdb\xdc\ +\xe8\xdb\xdb\xe8\xda\xdb\xe8\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xe8\ +\xd9\xd7\xe8\xd9\xd8\xe8\xd9\xd7\xe8\xd9\xd9\xe8\xd9\xd8\xe9\xd9\ +\xd8\xe9\xda\xd8\xea\xdb\xd9\xec\xdd\xdb\xed\xde\xdc\xee\xdf\xdc\ +\xef\xe1\xde\xef\xe0\xde\xef\xe2\xde\xf0\xe4\xe0\xf1\xe5\xe1\xf2\ +\xe6\xe2\xf2\xe6\xe1\xf3\xe8\xe2\xf3\xe7\xe1\xf4\xe9\xe2\xf5\xec\ +\xe3\xf5\xec\xe4\xf5\xec\xe4\xf5\xec\xe3\xf5\xeb\xe2\xf5\xeb\xe3\ +\xf5\xe9\xe2\xf4\xe9\xe1\xf4\xe9\xe1\xf4\xe8\xe1\xf3\xe8\xe0\xf2\ +\xe7\xdf\xf1\xe6\xdf\xf1\xe4\xde\xf0\xe4\xde\xf0\xe3\xdd\xf0\xe3\ +\xdd\xee\xe0\xda\xec\xd9\xd6\xe8\xd5\xd1\xe3\xd0\xcd\xde\xcb\xc9\ +\xd5\xc4\xc3\xce\xbd\xc0\xc6\xb7\xbc\xbd\xae\xb7\xb6\xa9\xb5\xb4\ +\xa8\xb4\xb2\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\ +\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa6\xb4\xb1\xa7\xb4\xb0\xa7\xb4\ +\xb0\xa7\xb4\xac\xa4\xb1\x00\x00\x00\xdb\xd1\xd4\xdc\xd1\xd4\xde\ +\xd1\xd4\xdf\xd2\xd4\xdf\xd3\xd3\xdf\xd3\xd3\xdf\xd3\xd4\xdf\xd3\ +\xd4\xe0\xd3\xd5\xe0\xd3\xd5\xdf\xd2\xd4\xdb\xd0\xd2\xd5\xca\xcc\ +\xcc\xc1\xc6\xc1\xb6\xbd\xb6\xab\xb5\xb4\xa7\xb2\xb9\xaa\xb2\xc2\ +\xb3\xb6\xce\xc0\xc1\xd7\xca\xcb\xdf\xd2\xd2\xe2\xd4\xd5\xe2\xd5\ +\xd5\xe3\xd5\xd6\xe4\xd6\xd6\xe5\xd8\xd6\xe7\xd9\xd7\xe9\xda\xd8\ +\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xda\xed\xde\xdb\xef\xe0\xdd\xef\ +\xe0\xdd\xf0\xe1\xde\xf1\xe3\xde\xf1\xe5\xdf\xf2\xe6\xe0\xf3\xe8\ +\xe0\xf5\xea\xe2\xf6\xeb\xe3\xf6\xed\xe4\xf8\xef\xe6\xf9\xf0\xe6\ +\xf9\xf0\xe7\xf7\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf9\xf1\xe9\xf8\ +\xf1\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf3\xea\xf8\xf3\xea\xf8\xf3\ +\xe9\xf7\xf2\xea\xf9\xf3\xe9\xf9\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\ +\xf9\xf3\xea\xf9\xf3\xea\xf9\xf2\xe9\xf9\xf3\xea\xf9\xf2\xe9\xf8\ +\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf2\ +\xe9\xf9\xf2\xe8\xf8\xf1\xe8\xf8\xf2\xe8\xf8\xf1\xe7\xf9\xf1\xe6\ +\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xec\xe4\xf6\xeb\xe3\xf5\ +\xe9\xe3\xf3\xe7\xe1\xf3\xe7\xe1\xf3\xe7\xe2\xf3\xe7\xe2\xf1\xe5\ +\xe1\xf0\xe4\xe0\xf0\xe3\xe0\xef\xe2\xe0\xed\xe0\xde\xec\xde\xde\ +\xeb\xdd\xde\xea\xdd\xdd\xea\xdc\xdc\xe8\xdb\xdb\xe8\xda\xda\xe8\ +\xda\xd8\xe8\xd9\xd7\xe7\xd8\xd6\xe7\xd8\xd6\xe7\xd8\xd6\xe8\xd9\ +\xd7\xe7\xd9\xd9\xe7\xd7\xd8\xe8\xd8\xd9\xe8\xd8\xd9\xe9\xda\xd9\ +\xea\xdb\xd9\xec\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xee\xe0\xde\xee\ +\xe1\xdf\xef\xe3\xe0\xf1\xe4\xe1\xf1\xe5\xe2\xf1\xe6\xe2\xf2\xe7\ +\xe3\xf2\xe8\xe3\xf3\xe8\xe2\xf4\xea\xe3\xf4\xeb\xe4\xf4\xeb\xe3\ +\xf4\xeb\xe4\xf4\xeb\xe3\xf4\xeb\xe2\xf5\xe9\xe3\xf4\xe9\xe2\xf4\ +\xe9\xe1\xf3\xe8\xe1\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xe0\xf1\xe5\ +\xdf\xf0\xe4\xdd\xf0\xe3\xdd\xf0\xe3\xdd\xef\xe3\xdd\xee\xe0\xdb\ +\xeb\xda\xd7\xe9\xd6\xd3\xe4\xd1\xce\xde\xcb\xca\xd6\xc4\xc5\xce\ +\xbd\xc0\xc4\xb4\xba\xb9\xac\xb6\xb5\xa9\xb4\xb3\xa7\xb4\xb2\xa8\ +\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb4\ +\xb1\xa7\xb4\xb3\xa8\xb5\xb3\xa9\xb5\xb3\xa8\xb4\xb2\xa8\xb3\xaf\ +\xa6\xb2\x00\x00\x00\xd8\xcf\xd2\xda\xcf\xd2\xdb\xd0\xd2\xdc\xd0\ +\xd2\xdd\xd0\xd2\xde\xd1\xd2\xde\xd1\xd3\xde\xd1\xd3\xdf\xd2\xd4\ +\xde\xd3\xd5\xde\xd2\xd4\xdc\xd1\xd3\xd9\xce\xd1\xd1\xc7\xca\xc7\ +\xbd\xc2\xbc\xb1\xba\xb9\xac\xb4\xb8\xaa\xb1\xbd\xae\xb3\xca\xba\ +\xbc\xd4\xc6\xc7\xdd\xd0\xd1\xe3\xd5\xd6\xe4\xd6\xd7\xe5\xd7\xd7\ +\xe7\xd9\xd7\xe8\xd9\xd7\xe8\xd9\xd7\xea\xdb\xd9\xeb\xdc\xda\xec\ +\xdd\xdb\xec\xdd\xda\xed\xde\xdb\xee\xdf\xdc\xef\xe0\xdd\xf0\xe2\ +\xdf\xf1\xe3\xde\xf1\xe5\xdf\xf3\xe7\xe1\xf3\xe8\xe1\xf5\xea\xe2\ +\xf6\xec\xe3\xf7\xed\xe5\xf8\xef\xe6\xf9\xf0\xe6\xf8\xf0\xe7\xf8\ +\xf1\xe8\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf2\xe9\xf9\xf2\ +\xe9\xf8\xf2\xe9\xf8\xf3\xea\xf7\xf3\xe9\xf7\xf3\xea\xf8\xf3\xea\ +\xf7\xf3\xea\xf7\xf3\xe9\xf7\xf3\xea\xf8\xf3\xea\xf9\xf3\xea\xf8\ +\xf3\xea\xfa\xf3\xea\xf8\xf2\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf9\xf3\ +\xe9\xf8\xf2\xe8\xf9\xf1\xe9\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe8\ +\xf8\xf1\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe7\xf8\xef\xe6\xf7\ +\xef\xe5\xf7\xed\xe5\xf6\xec\xe4\xf5\xeb\xe3\xf5\xe9\xe3\xf3\xe7\ +\xe1\xf3\xe7\xe1\xf2\xe6\xe1\xf2\xe6\xe2\xf1\xe5\xe1\xf0\xe4\xe0\ +\xef\xe2\xe0\xee\xe1\xdf\xed\xe0\xdf\xec\xde\xdf\xeb\xdd\xdd\xea\ +\xdd\xdc\xea\xdd\xdb\xe9\xdc\xd9\xe9\xda\xd8\xe9\xda\xd8\xe7\xd8\ +\xd6\xe7\xd8\xd6\xe6\xd7\xd5\xe6\xd7\xd5\xe7\xd7\xd7\xe6\xd7\xd8\ +\xe5\xd7\xd8\xe6\xd8\xd9\xe6\xd7\xd9\xe7\xd9\xd9\xea\xdb\xd9\xec\ +\xdd\xdb\xed\xde\xdc\xed\xde\xdc\xee\xe0\xde\xee\xe1\xdf\xf0\xe3\ +\xe1\xf1\xe5\xe3\xf2\xe6\xe3\xf2\xe7\xe4\xf2\xe8\xe4\xf3\xe8\xe4\ +\xf4\xe9\xe5\xf5\xea\xe5\xf5\xeb\xe4\xf5\xeb\xe3\xf5\xeb\xe4\xf4\ +\xea\xe3\xf3\xe9\xe3\xf2\xe8\xe1\xf2\xe7\xe0\xf2\xe5\xdf\xf1\xe5\ +\xde\xf1\xe4\xde\xf1\xe4\xde\xf0\xe4\xde\xf1\xe4\xde\xf0\xe2\xdd\ +\xef\xe0\xdd\xee\xdf\xdc\xed\xdf\xda\xec\xdb\xd8\xe9\xd8\xd5\xe6\ +\xd4\xd1\xe1\xd0\xcd\xdb\xc9\xc8\xd3\xc2\xc4\xcb\xbb\xbe\xc0\xb1\ +\xb9\xb8\xaa\xb6\xb5\xa9\xb5\xb2\xa8\xb5\xb2\xa7\xb5\xb2\xa8\xb5\ +\xb2\xa8\xb5\xb1\xa7\xb4\xb1\xa7\xb4\xb1\xa7\xb5\xb4\xa9\xb6\xb6\ +\xab\xb5\xb6\xab\xb5\xb7\xac\xb5\xb7\xab\xb5\xb6\xab\xb3\x00\x00\ +\x00\xd8\xcd\xd0\xd8\xcd\xd0\xd9\xce\xd0\xdb\xce\xd0\xdb\xce\xd0\ +\xdb\xce\xd0\xdc\xcf\xd1\xdd\xd1\xd3\xde\xd1\xd3\xde\xd2\xd4\xdd\ +\xd2\xd4\xde\xd3\xd5\xdb\xd0\xd3\xd6\xcb\xce\xcc\xc3\xc7\xc1\xb6\ +\xbd\xbb\xaf\xb7\xba\xab\xb2\xbb\xab\xb1\xc5\xb4\xb7\xd1\xc2\xc3\ +\xdb\xcd\xce\xe3\xd5\xd6\xe6\xd8\xd9\xe7\xd9\xd9\xe9\xdb\xd9\xea\ +\xdb\xd9\xea\xdb\xd9\xeb\xdc\xda\xec\xdd\xdb\xed\xde\xdc\xec\xdd\ +\xdb\xed\xde\xdb\xee\xdf\xdc\xf0\xe1\xde\xef\xe3\xdf\xf0\xe5\xe0\ +\xf2\xe6\xe0\xf2\xe6\xe0\xf3\xe8\xe1\xf5\xea\xe2\xf6\xeb\xe3\xf6\ +\xed\xe4\xf8\xef\xe6\xf9\xf0\xe7\xf8\xf0\xe7\xf8\xf1\xe8\xf9\xf1\ +\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf3\xea\xf8\xf3\xea\ +\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\ +\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf8\xf2\ +\xe9\xfa\xf3\xea\xf9\xf3\xe9\xf8\xf3\xe9\xf9\xf2\xe9\xf9\xf3\xe9\ +\xf9\xf2\xe8\xf9\xf2\xe9\xf9\xf2\xe8\xf9\xf3\xe7\xf9\xf2\xe9\xf8\ +\xf1\xe8\xf9\xf1\xe8\xf9\xef\xe6\xf8\xef\xe6\xf8\xee\xe5\xf7\xee\ +\xe5\xf6\xeb\xe3\xf6\xeb\xe3\xf5\xe9\xe3\xf3\xe7\xe1\xf3\xe7\xe1\ +\xf2\xe6\xe1\xf0\xe4\xe0\xf0\xe4\xe0\xef\xe2\xdf\xee\xe1\xdf\xec\ +\xdf\xdd\xec\xdf\xdd\xeb\xde\xdc\xeb\xde\xdc\xea\xdd\xdb\xeb\xdd\ +\xdb\xeb\xdb\xd9\xe9\xda\xd8\xe8\xd9\xd7\xe7\xd8\xd6\xe6\xd6\xd4\ +\xe4\xd5\xd3\xe4\xd6\xd4\xe5\xd4\xd6\xe5\xd6\xd7\xe3\xd5\xd6\xe4\ +\xd6\xd7\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\xdb\xea\xdc\xda\xec\xdd\ +\xdb\xed\xde\xdc\xed\xe0\xde\xef\xe2\xe0\xf0\xe4\xe2\xf0\xe5\xe3\ +\xf1\xe7\xe4\xf1\xe8\xe5\xf2\xe9\xe6\xf3\xe9\xe5\xf3\xea\xe6\xf3\ +\xe9\xe5\xf4\xe9\xe5\xf3\xe9\xe3\xf3\xe8\xe3\xf2\xe7\xe1\xf1\xe5\ +\xdf\xf0\xe2\xdd\xef\xe0\xda\xee\xdf\xd9\xef\xde\xd8\xef\xde\xd8\ +\xee\xdf\xd9\xee\xdf\xda\xed\xde\xda\xec\xdc\xd9\xec\xdb\xd8\xea\ +\xd9\xd6\xe9\xd8\xd5\xe7\xd6\xd3\xe5\xd3\xd0\xe1\xcf\xcc\xdc\xca\ +\xc8\xd6\xc4\xc4\xd0\xbf\xc1\xc7\xb8\xbc\xbf\xb1\xb8\xb7\xaa\xb6\ +\xb5\xa9\xb5\xb3\xa8\xb5\xb1\xa7\xb4\xb1\xa7\xb4\xb2\xa8\xb5\xb1\ +\xa8\xb5\xb2\xa7\xb5\xb4\xa9\xb5\xb7\xac\xb6\xb6\xab\xb5\xba\xae\ +\xb6\xbc\xaf\xb7\xc0\xb2\xb8\xc2\xb4\xb7\x00\x00\x00\xd7\xcd\xcf\ +\xd8\xcd\xcf\xd7\xcc\xcf\xd8\xcd\xcf\xda\xcd\xcf\xda\xcd\xcf\xda\ +\xce\xd0\xdb\xcf\xd1\xdc\xd0\xd2\xdc\xd1\xd3\xdd\xd2\xd4\xde\xd3\ +\xd5\xdd\xd2\xd5\xda\xcf\xd2\xd2\xc8\xcc\xc7\xbd\xc3\xbe\xb3\xbb\ +\xbb\xad\xb5\xb9\xaa\xb1\xbf\xaf\xb2\xcd\xbd\xbe\xd9\xca\xcb\xe1\ +\xd3\xd4\xe7\xd9\xda\xe8\xda\xda\xe8\xdb\xd9\xeb\xdc\xda\xeb\xdc\ +\xda\xec\xdd\xdb\xee\xde\xdc\xee\xdf\xdc\xee\xdf\xdc\xef\xe0\xdd\ +\xef\xe0\xdd\xef\xe1\xde\xef\xe3\xdf\xf0\xe4\xe1\xf3\xe7\xe0\xf3\ +\xe7\xe1\xf4\xe8\xe2\xf5\xea\xe4\xf6\xec\xe3\xf7\xee\xe5\xf8\xef\ +\xe6\xf8\xf0\xe6\xf8\xf1\xe7\xf8\xf1\xe8\xf8\xf1\xe9\xf8\xf2\xe8\ +\xf7\xf2\xe9\xf8\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\ +\xf2\xe9\xf7\xf2\xe9\xf9\xf4\xeb\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\ +\xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\xe9\ +\xf9\xf3\xea\xf8\xf2\xea\xf9\xf3\xea\xfa\xf3\xe9\xf9\xf1\xe8\xf9\ +\xf2\xe9\xf9\xf1\xe9\xf9\xf2\xe9\xf9\xf1\xe9\xf8\xf1\xe8\xf8\xf1\ +\xe8\xf8\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf6\xec\xe3\ +\xf6\xea\xe3\xf5\xe8\xe3\xf3\xe8\xe1\xf2\xe6\xe0\xf1\xe5\xe1\xf0\ +\xe4\xe0\xef\xe3\xdf\xee\xe2\xde\xee\xe0\xde\xec\xdf\xdd\xec\xde\ +\xdd\xec\xde\xdc\xeb\xdd\xdb\xec\xdd\xdb\xec\xdd\xdb\xea\xdb\xd9\ +\xea\xdb\xd9\xe8\xd9\xd7\xe8\xd7\xd6\xe6\xd5\xd4\xe4\xd5\xd3\xe4\ +\xd4\xd4\xe3\xd4\xd5\xe3\xd5\xd6\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd9\ +\xda\xe7\xd9\xda\xe7\xda\xda\xe9\xdb\xdc\xe9\xdc\xdc\xeb\xde\xdd\ +\xed\xdf\xde\xee\xe1\xe0\xf0\xe4\xe2\xf1\xe6\xe4\xf1\xe8\xe5\xf1\ +\xe8\xe5\xf1\xe8\xe5\xf2\xe9\xe6\xf2\xe9\xe5\xf4\xe9\xe5\xf3\xe9\ +\xe5\xf1\xe6\xe2\xf0\xe4\xe0\xef\xe0\xdd\xee\xde\xdb\xed\xdb\xd8\ +\xec\xda\xd6\xeb\xd8\xd3\xea\xd7\xd2\xea\xd6\xd2\xea\xd6\xd1\xea\ +\xd6\xd2\xe9\xd6\xd3\xe8\xd6\xd2\xe7\xd4\xd1\xe5\xd3\xd0\xe4\xd3\ +\xd0\xe2\xd0\xcd\xde\xcc\xc9\xdb\xc8\xc6\xd6\xc4\xc4\xd2\xc1\xc3\ +\xcd\xbe\xc1\xc7\xb9\xbd\xc1\xb3\xbb\xbb\xaf\xb9\xb8\xad\xb8\xb6\ +\xaa\xb6\xb3\xa9\xb5\xb2\xa8\xb5\xb3\xa9\xb5\xb2\xa8\xb5\xb2\xa8\ +\xb5\xb4\xaa\xb6\xb6\xaa\xb5\xb8\xac\xb5\xbd\xb0\xb7\xc2\xb3\xb8\ +\xc6\xb7\xba\xcb\xbc\xbe\x00\x00\x00\xd7\xcc\xcf\xd7\xcc\xcf\xd7\ +\xcc\xd0\xd8\xcc\xce\xd8\xcc\xcf\xd9\xcd\xd0\xd9\xce\xd0\xda\xd0\ +\xd2\xdb\xd0\xd3\xdc\xd1\xd4\xde\xd3\xd5\xdf\xd4\xd6\xe0\xd5\xd8\ +\xde\xd3\xd6\xd7\xcd\xd1\xcd\xc3\xc9\xc1\xb6\xbe\xba\xad\xb6\xb8\ +\xa8\xb0\xbb\xa9\xae\xc8\xb8\xb8\xd6\xc6\xc6\xdf\xd1\xd0\xe5\xd8\ +\xd8\xe9\xdc\xdb\xea\xdc\xda\xeb\xdc\xda\xec\xdd\xdb\xec\xde\xdc\ +\xed\xdf\xdd\xee\xdf\xdd\xee\xdf\xdd\xee\xe0\xdd\xef\xe0\xdd\xef\ +\xe2\xde\xf0\xe4\xe0\xf1\xe5\xe1\xf3\xe8\xe2\xf3\xe9\xe2\xf4\xe9\ +\xe2\xf5\xeb\xe4\xf6\xed\xe4\xf6\xed\xe4\xf8\xef\xe6\xf8\xef\xe6\ +\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf7\xf2\xe9\xf7\xf3\xea\xf7\ +\xf3\xea\xf8\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\ +\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ +\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\ +\xf3\xea\xf8\xf3\xe9\xf9\xf3\xea\xf8\xf2\xe9\xf9\xf1\xe8\xf9\xf2\ +\xe9\xf9\xf1\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf0\xe7\ +\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf6\xec\xe3\xf5\xeb\xe4\xf5\ +\xea\xe3\xf4\xe8\xe2\xf3\xe6\xe1\xf1\xe5\xe1\xf0\xe4\xe0\xef\xe3\ +\xdf\xef\xe0\xde\xef\xe0\xde\xed\xdf\xdd\xed\xdf\xdd\xed\xde\xdc\ +\xec\xdd\xdb\xec\xde\xdc\xec\xdd\xdb\xea\xdb\xd9\xe9\xda\xd8\xe8\ +\xd8\xd6\xe7\xd7\xd6\xe7\xd5\xd4\xe5\xd5\xd3\xe4\xd5\xd5\xe3\xd4\ +\xd5\xe4\xd6\xd7\xe4\xd7\xd9\xe5\xd7\xd9\xe6\xd9\xda\xe6\xd9\xd9\ +\xe8\xd9\xda\xe8\xda\xdb\xe9\xdb\xdc\xeb\xdc\xdd\xec\xde\xdf\xee\ +\xe1\xe1\xf0\xe3\xe3\xf0\xe6\xe5\xf0\xe7\xe4\xf1\xe8\xe5\xf2\xe9\ +\xe6\xf2\xe8\xe5\xf2\xe7\xe4\xf1\xe6\xe3\xef\xe4\xe0\xee\xe0\xdd\ +\xed\xdc\xd9\xeb\xda\xd7\xe9\xd7\xd4\xe8\xd4\xd2\xe7\xd3\xce\xe5\ +\xd1\xcc\xe4\xcf\xca\xe3\xce\xc9\xe3\xcd\xc8\xe2\xcd\xc8\xe1\xcc\ +\xc8\xe0\xcc\xc7\xdf\xcb\xc8\xde\xcb\xc8\xdd\xca\xc8\xdc\xca\xc7\ +\xd9\xc7\xc5\xd7\xc5\xc4\xd5\xc4\xc5\xd3\xc3\xc5\xd0\xc2\xc4\xcc\ +\xbf\xc2\xc6\xba\xc1\xc2\xb7\xbf\xc0\xb4\xbf\xbe\xb2\xbc\xba\xaf\ +\xba\xb7\xac\xb7\xb4\xaa\xb7\xb3\xa9\xb6\xb1\xa7\xb4\xb2\xa7\xb3\ +\xb3\xa7\xb2\xb7\xa9\xb3\xbf\xb1\xb6\xc5\xb6\xb9\xcb\xbb\xbe\xd1\ +\xc1\xc1\x00\x00\x00\xd8\xcd\xcf\xd8\xcd\xcf\xd8\xcc\xcf\xd8\xcd\ +\xcf\xd9\xce\xd1\xd9\xce\xd1\xd9\xce\xd1\xdb\xd0\xd3\xdc\xd1\xd4\ +\xdc\xd1\xd4\xde\xd3\xd6\xdf\xd4\xd6\xdf\xd4\xd7\xde\xd5\xd8\xda\ +\xd1\xd4\xd2\xc7\xce\xc5\xbb\xc3\xb8\xad\xb7\xb3\xa5\xae\xb5\xa3\ +\xaa\xc2\xae\xb1\xd1\xc0\xbf\xdd\xce\xcc\xe5\xd6\xd4\xe9\xdd\xdb\ +\xeb\xde\xdc\xea\xdd\xdb\xed\xdf\xdd\xec\xdf\xdd\xed\xe0\xde\xec\ +\xe0\xdd\xed\xdf\xde\xef\xdf\xdd\xee\xe1\xdf\xef\xe2\xdf\xf0\xe4\ +\xe0\xf1\xe5\xe1\xf3\xe8\xe3\xf3\xe9\xe2\xf4\xea\xe3\xf5\xeb\xe4\ +\xf6\xec\xe5\xf6\xed\xe5\xf8\xef\xe6\xf8\xf0\xe7\xf7\xf0\xe7\xf8\ +\xf1\xe8\xf8\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\ +\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\ +\xf9\xf4\xeb\xf9\xf4\xeb\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\ +\xf2\xe9\xf8\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\xf7\xf3\xea\xf9\xf3\ +\xea\xf9\xf2\xe9\xfa\xf3\xea\xf8\xf1\xe8\xf9\xf1\xe9\xf9\xf1\xe9\ +\xf9\xf2\xe9\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf0\xe7\xf7\xee\xe5\xf7\ +\xee\xe5\xf7\xee\xe5\xf5\xec\xe3\xf6\xec\xe3\xf5\xeb\xe4\xf3\xe9\ +\xe2\xf2\xe7\xe1\xf2\xe6\xe1\xf0\xe4\xe0\xef\xe3\xdf\xef\xe1\xdf\ +\xef\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xed\xde\xdc\xed\xde\xdc\xed\ +\xde\xdc\xec\xdd\xdb\xea\xdb\xd9\xe9\xd9\xd7\xe9\xd8\xd6\xe8\xd7\ +\xd6\xe6\xd5\xd4\xe5\xd5\xd4\xe4\xd4\xd6\xe3\xd5\xd6\xe4\xd6\xd8\ +\xe4\xd7\xd9\xe5\xd9\xdb\xe5\xd9\xdb\xe5\xd8\xda\xe6\xda\xda\xe7\ +\xdb\xdb\xe8\xdc\xdc\xe9\xdd\xdd\xec\xdf\xe0\xec\xe0\xe0\xee\xe3\ +\xe3\xf0\xe5\xe5\xf0\xe7\xe4\xf1\xe8\xe5\xf1\xe7\xe5\xf1\xe5\xe3\ +\xef\xe3\xe1\xee\xe0\xde\xec\xdc\xdb\xeb\xda\xd8\xe8\xd5\xd4\xe5\ +\xd3\xd0\xe2\xcf\xcc\xe0\xcb\xc8\xde\xc9\xc7\xdd\xc8\xc2\xdc\xc6\ +\xc1\xdb\xc4\xbf\xda\xc4\xbf\xd9\xc2\xbd\xd9\xc2\xbd\xd9\xc3\xbf\ +\xd8\xc3\xc0\xd8\xc3\xc1\xd8\xc5\xc4\xd8\xc7\xc6\xd8\xc6\xc6\xd8\ +\xc7\xc8\xd5\xc6\xc7\xd5\xc7\xc9\xd4\xc7\xc9\xd1\xc5\xc8\xcc\xc1\ +\xc8\xca\xc0\xc7\xc7\xbd\xc5\xc6\xbc\xc4\xc4\xb9\xc2\xc0\xb5\xbf\ +\xba\xb0\xba\xb4\xaa\xb7\xb0\xa5\xb3\xaf\xa3\xb0\xaf\xa3\xaf\xb5\ +\xa8\xb1\xbf\xb0\xb5\xc9\xb8\xba\xd1\xc0\xc0\xd7\xc6\xc4\x00\x00\ +\x00\xd9\xce\xd1\xda\xcf\xd1\xdb\xcf\xd2\xda\xcf\xd2\xdb\xd0\xd3\ +\xdb\xd0\xd3\xdb\xd1\xd4\xdc\xd2\xd5\xdd\xd2\xd5\xdd\xd3\xd6\xde\ +\xd3\xd6\xdd\xd3\xd6\xde\xd5\xd8\xdf\xd6\xd9\xdd\xd3\xd7\xd5\xcc\ +\xd1\xc7\xbe\xc6\xb6\xac\xb7\xad\xa0\xab\xab\x99\xa3\xb8\xa4\xa8\ +\xcb\xb7\xb8\xda\xc7\xc6\xe3\xd3\xd1\xe8\xdb\xd8\xeb\xde\xdc\xed\ +\xe0\xde\xee\xe1\xdf\xee\xe1\xdf\xee\xe1\xdf\xee\xe0\xde\xee\xe1\ +\xdf\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe0\xf0\xe4\xe1\xf1\xe7\xe3\ +\xf3\xe8\xe4\xf4\xea\xe3\xf4\xea\xe3\xf6\xec\xe5\xf6\xec\xe5\xf7\ +\xee\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf2\ +\xe9\xf7\xf3\xea\xf8\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\ +\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf9\xf4\xeb\xf8\xf3\xea\xf9\ +\xf4\xeb\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\ +\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf9\xf3\xea\ +\xf8\xf3\xe9\xf9\xf2\xe9\xf8\xf2\xe8\xf9\xf2\xe9\xf9\xf1\xe8\xf8\ +\xf1\xe8\xf9\xf0\xe8\xf9\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\ +\xe4\xf7\xed\xe5\xf6\xec\xe5\xf6\xec\xe5\xf4\xea\xe3\xf3\xe8\xe2\ +\xf3\xe7\xe2\xf2\xe6\xe1\xf0\xe4\xe0\xef\xe3\xdf\xef\xe1\xdf\xee\ +\xe0\xde\xee\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xed\xde\xdc\xec\xdd\ +\xdb\xeb\xdb\xd9\xeb\xd9\xd8\xe9\xd7\xd6\xe8\xd6\xd4\xe5\xd6\xd4\ +\xe4\xd5\xd3\xe4\xd4\xd5\xe4\xd6\xd7\xe3\xd6\xd8\xe4\xd7\xd9\xe4\ +\xd7\xd9\xe5\xd8\xda\xe5\xd9\xda\xe6\xd9\xdb\xe8\xdb\xdd\xe8\xdb\ +\xdd\xe9\xdc\xde\xeb\xde\xe0\xed\xe0\xe2\xee\xe3\xe3\xef\xe4\xe4\ +\xef\xe5\xe5\xef\xe4\xe4\xef\xe3\xe2\xed\xe0\xe0\xec\xdd\xdc\xea\ +\xdb\xd9\xe8\xd6\xd5\xe4\xd2\xd2\xe0\xcd\xcc\xdd\xc7\xc7\xd8\xc3\ +\xc3\xd5\xbf\xbf\xd3\xbc\xba\xd2\xba\xb8\xd0\xb8\xb5\xd0\xb7\xb4\ +\xcf\xb7\xb4\xd0\xb8\xb6\xd2\xbb\xb7\xd4\xbd\xbb\xd3\xbd\xbb\xd4\ +\xc0\xbf\xd6\xc3\xc2\xd6\xc6\xc6\xd7\xc8\xc9\xd8\xca\xcb\xd9\xcc\ +\xce\xd8\xcc\xce\xd7\xcb\xce\xd5\xcc\xcf\xd3\xca\xcf\xd2\xc8\xce\ +\xd0\xc5\xcd\xcf\xc4\xcb\xcb\xc1\xc8\xc6\xbb\xc4\xbe\xb5\xbf\xb7\ +\xad\xb9\xb0\xa6\xb3\xab\x9f\xae\xab\x9d\xac\xb3\xa4\xb0\xc0\xaf\ +\xb5\xcc\xba\xbc\xd5\xc3\xc3\xdb\xca\xc7\x00\x00\x00\xd9\xce\xd1\ +\xda\xcf\xd2\xdb\xd0\xd3\xdc\xd1\xd4\xdb\xd1\xd4\xdb\xd2\xd5\xdb\ +\xd2\xd5\xdc\xd2\xd5\xdd\xd3\xd6\xdf\xd4\xd7\xde\xd4\xd7\xdd\xd4\ +\xd7\xde\xd5\xd8\xe0\xd7\xda\xde\xd5\xd8\xd5\xcd\xd2\xc8\xbf\xc7\ +\xb6\xac\xb8\xa5\x99\xa6\x9f\x90\x9c\xab\x96\x9d\xc2\xad\xad\xd3\ +\xc0\xbe\xe0\xce\xcb\xe7\xd8\xd5\xeb\xdd\xdb\xed\xe0\xde\xee\xe1\ +\xdf\xef\xe2\xe0\xee\xe1\xdf\xee\xe1\xdf\xed\xe0\xde\xed\xe0\xde\ +\xef\xe2\xe0\xf0\xe3\xe1\xf1\xe5\xe2\xf2\xe8\xe3\xf3\xe9\xe3\xf4\ +\xea\xe3\xf4\xea\xe3\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf8\xef\ +\xe5\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xf1\xe8\xf8\xf2\xe9\xf7\xf3\xea\ +\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\ +\xf3\xea\xf9\xf4\xeb\xf8\xf3\xea\xf9\xf4\xeb\xf8\xf3\xea\xf7\xf2\ +\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\ +\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xe9\xf9\ +\xf2\xe8\xf8\xf2\xe8\xf8\xf1\xe8\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf1\ +\xe8\xf8\xf0\xe7\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe5\ +\xf6\xec\xe5\xf5\xeb\xe4\xf4\xea\xe3\xf4\xe8\xe2\xf3\xe7\xe2\xf1\ +\xe5\xe2\xf0\xe4\xe0\xef\xe3\xdf\xef\xe2\xde\xee\xe1\xdf\xee\xe0\ +\xde\xee\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xec\xdd\xdb\xec\xdb\xda\ +\xeb\xd8\xd7\xe9\xd7\xd5\xe8\xd6\xd5\xe6\xd6\xd4\xe5\xd5\xd4\xe4\ +\xd5\xd5\xe3\xd5\xd6\xe3\xd5\xd6\xe3\xd6\xd8\xe3\xd6\xd8\xe5\xd8\ +\xda\xe6\xd9\xdb\xe6\xd9\xdb\xe8\xdb\xdd\xe8\xdb\xdd\xea\xdd\xdf\ +\xec\xdf\xe1\xec\xe0\xe2\xed\xe2\xe3\xed\xe4\xe3\xee\xe4\xe4\xee\ +\xe1\xe1\xec\xde\xdf\xea\xdb\xdc\xe8\xd8\xd9\xe4\xd4\xd5\xe1\xcf\ +\xcf\xdd\xc9\xcb\xd8\xc3\xc4\xd2\xbd\xbf\xcc\xb7\xb8\xc8\xb1\xb3\ +\xc4\xac\xae\xc1\xa7\xaa\xbf\xa6\xa8\xc0\xa8\xa9\xc4\xac\xae\xc8\ +\xb1\xb1\xcd\xb6\xb4\xcf\xb9\xb7\xd1\xbc\xba\xd3\xbf\xbe\xd4\xc2\ +\xc3\xd6\xc6\xc7\xd7\xc9\xca\xd9\xcc\xcd\xdb\xce\xd0\xdb\xd0\xd3\ +\xda\xd1\xd4\xda\xd1\xd5\xd8\xd0\xd5\xd8\xcf\xd5\xd8\xce\xd4\xd6\ +\xcb\xd2\xd0\xc8\xcf\xcb\xc1\xca\xc2\xb9\xc3\xb9\xb0\xbc\xb1\xa7\ +\xb6\xaa\x9d\xaf\xa7\x9a\xab\xb0\xa1\xae\xbe\xad\xb5\xcc\xbb\xbd\ +\xd7\xc5\xc5\xdf\xcd\xca\x00\x00\x00\xd9\xce\xd1\xda\xcf\xd2\xdb\ +\xd0\xd3\xdc\xd2\xd5\xdc\xd2\xd5\xdb\xd2\xd5\xdb\xd2\xd5\xdd\xd4\ +\xd7\xdd\xd4\xd7\xdf\xd4\xd7\xde\xd5\xd8\xde\xd5\xd8\xde\xd5\xd8\ +\xdf\xd6\xd9\xdd\xd4\xd8\xd3\xcc\xd2\xc9\xc1\xc9\xb7\xae\xba\x9f\ +\x97\xa6\x8f\x83\x93\x98\x85\x90\xb4\x9e\xa1\xcb\xb6\xb5\xd9\xc6\ +\xc3\xe3\xd2\xd0\xe9\xda\xd8\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\ +\xee\xe1\xdf\xed\xe0\xde\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe1\xf0\ +\xe4\xe1\xf0\xe5\xe1\xf3\xe8\xe4\xf4\xe9\xe4\xf4\xea\xe3\xf5\xeb\ +\xe4\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xef\xe6\xf6\xf0\xe7\ +\xf7\xf0\xe7\xf9\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\ +\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf9\xf4\xeb\xf9\xf4\ +\xeb\xf9\xf4\xeb\xf9\xf4\xeb\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\ +\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf7\xf3\xea\xf7\xf3\xe9\xf7\xf2\xea\xf8\xf3\xe9\xf9\xf3\ +\xe9\xf9\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf1\xe8\xf9\xef\xe6\ +\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf6\xed\xe4\xf5\xeb\xe5\xf5\ +\xeb\xe4\xf5\xe9\xe3\xf4\xe8\xe2\xf3\xe7\xe2\xf2\xe6\xe2\xf0\xe4\ +\xe0\xee\xe3\xde\xee\xe2\xdf\xee\xe1\xdf\xee\xe0\xde\xef\xe0\xdd\ +\xee\xdf\xdd\xed\xde\xdc\xed\xdc\xdb\xeb\xda\xd9\xe9\xd7\xd6\xe8\ +\xd6\xd5\xe7\xd5\xd4\xe5\xd5\xd3\xe4\xd5\xd4\xe3\xd5\xd6\xe2\xd4\ +\xd5\xe3\xd5\xd6\xe3\xd5\xd7\xe4\xd7\xd9\xe5\xd8\xda\xe6\xd9\xdb\ +\xe6\xd9\xdb\xe7\xdb\xdd\xe7\xdc\xde\xe9\xdd\xdf\xea\xdf\xe1\xeb\ +\xe0\xe2\xec\xe1\xe3\xee\xe2\xe4\xed\xe1\xe2\xec\xdf\xe0\xe9\xdb\ +\xdc\xe5\xd7\xd8\xe2\xd1\xd4\xde\xcc\xcf\xd9\xc7\xca\xd4\xbf\xc3\ +\xcd\xb7\xbc\xc5\xaf\xb4\xbb\xa4\xad\xb4\x9b\xa5\xad\x94\xa0\xa8\ +\x90\x9c\xa8\x92\x9e\xb0\x9a\xa2\xb9\xa3\xa8\xc1\xab\xad\xc7\xb1\ +\xb2\xcd\xb8\xb7\xd0\xbc\xbb\xd2\xc0\xc1\xd4\xc4\xc5\xd7\xc8\xc9\ +\xd9\xcb\xcd\xdc\xcf\xd1\xdd\xd2\xd4\xdf\xd5\xd7\xdf\xd6\xd9\xdf\ +\xd6\xdb\xdd\xd6\xdb\xde\xd7\xdb\xdf\xd6\xda\xdc\xd2\xd8\xd6\xcd\ +\xd4\xd0\xc8\xcf\xc7\xbe\xc8\xbe\xb4\xc1\xb5\xaa\xba\xa9\x9d\xb0\ +\xa4\x95\xab\xac\x9c\xad\xbc\xab\xb5\xcb\xba\xbe\xd8\xc6\xc8\xe1\ +\xd0\xce\x00\x00\x00\xd9\xce\xd2\xda\xcf\xd2\xdb\xd0\xd3\xdc\xd2\ +\xd5\xdb\xd3\xd6\xdc\xd3\xd6\xde\xd5\xd8\xde\xd5\xd8\xe0\xd6\xd9\ +\xe1\xd6\xd9\xe0\xd5\xd8\xde\xd5\xd8\xde\xd5\xd8\xde\xd5\xd9\xdb\ +\xd2\xd7\xd3\xcc\xd1\xca\xc2\xca\xbb\xb2\xbe\xa1\x9a\xa9\x83\x7a\ +\x8d\x80\x72\x82\xa0\x8c\x93\xbf\xaa\xaa\xd1\xbd\xba\xde\xcb\xc8\ +\xe5\xd4\xd2\xe9\xdb\xd9\xea\xdd\xdb\xeb\xde\xdc\xec\xdf\xdd\xed\ +\xe0\xde\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe1\xf0\xe4\xe2\xf1\xe6\ +\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe4\xf4\xea\xe4\xf5\xeb\xe3\ +\xf5\xeb\xe4\xf6\xec\xe5\xf7\xed\xe6\xf7\xf0\xe6\xf7\xf0\xe7\xf7\ +\xf0\xe7\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\ +\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\ +\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf8\ +\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\ +\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf7\xf1\xe8\xf8\xf2\xe8\ +\xf9\xf1\xe9\xf8\xf1\xe8\xf7\xf1\xe8\xf7\xf0\xe7\xf8\xef\xe6\xf7\ +\xee\xe5\xf7\xee\xe5\xf6\xec\xe4\xf5\xec\xe4\xf4\xea\xe3\xf3\xe7\ +\xe1\xf2\xe7\xe2\xf2\xe6\xe2\xf0\xe4\xe0\xef\xe3\xdf\xef\xe1\xde\ +\xef\xdf\xde\xee\xdf\xdd\xee\xdf\xdd\xee\xdf\xde\xed\xe0\xde\xed\ +\xde\xdc\xed\xdd\xda\xeb\xd9\xd9\xe9\xd8\xd6\xe8\xd6\xd5\xe6\xd5\ +\xd4\xe3\xd4\xd3\xe4\xd4\xd4\xe2\xd3\xd4\xe2\xd4\xd5\xe3\xd5\xd6\ +\xe2\xd5\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe5\xd9\xdb\xe5\xda\xdc\xe7\ +\xdc\xde\xe7\xdc\xdf\xe8\xdd\xdf\xea\xdf\xe1\xeb\xe0\xe2\xec\xe1\ +\xe3\xec\xe0\xe2\xec\xdf\xe1\xe9\xdc\xde\xe6\xd8\xdb\xe1\xd3\xd6\ +\xdc\xce\xd0\xd8\xc6\xca\xd1\xbe\xc3\xc8\xb3\xbc\xbe\xa9\xb4\xb3\ +\x9e\xad\xa8\x92\xa6\x9a\x87\x9e\x8c\x7b\x95\x85\x77\x91\x92\x81\ +\x97\xa5\x91\x9f\xb2\x9e\xa6\xbe\xa9\xad\xc6\xb2\xb5\xcd\xb9\xbb\ +\xd1\xc0\xc1\xd4\xc4\xc5\xd7\xc9\xca\xdb\xcd\xcf\xdd\xd0\xd2\xde\ +\xd3\xd5\xe1\xd6\xd8\xe2\xd9\xdc\xe4\xdb\xde\xe4\xdb\xdf\xe5\xdc\ +\xdf\xe5\xdc\xdf\xe4\xdb\xde\xe1\xd7\xdc\xdc\xd2\xd8\xd5\xcc\xd3\ +\xcc\xc3\xce\xc3\xb9\xc5\xba\xaf\xbe\xae\xa3\xb5\xa7\x99\xae\xad\ +\x9e\xb0\xbd\xad\xb8\xcb\xbb\xc1\xd7\xc7\xc9\xe1\xd0\xcf\x00\x00\ +\x00\xd7\xce\xd3\xda\xcf\xd2\xdb\xd1\xd4\xdd\xd3\xd6\xdc\xd3\xd6\ +\xde\xd5\xd8\xdf\xd6\xd9\xe0\xd7\xda\xe1\xd6\xd9\xe0\xd6\xd9\xe0\ +\xd5\xd8\xdf\xd6\xd9\xdf\xd6\xd9\xde\xd5\xd9\xdc\xd3\xd8\xd4\xcd\ +\xd2\xcc\xc4\xcc\xbf\xb8\xc3\xa9\xa4\xb2\x87\x81\x95\x71\x67\x7a\ +\x89\x79\x86\xaf\x9a\x9e\xc6\xb1\xb0\xd5\xc2\xbf\xde\xcd\xcb\xe5\ +\xd5\xd3\xe8\xda\xd8\xe9\xdc\xdb\xea\xdc\xdb\xeb\xde\xdd\xec\xde\ +\xde\xed\xe0\xde\xee\xe2\xe0\xf0\xe3\xe1\xf1\xe5\xe2\xf2\xe7\xe3\ +\xf2\xe7\xe3\xf3\xe8\xe4\xf4\xe9\xe4\xf4\xe9\xe3\xf5\xeb\xe4\xf5\ +\xec\xe4\xf7\xed\xe6\xf7\xee\xe6\xf7\xf0\xe7\xf8\xf0\xe7\xf6\xf2\ +\xe9\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\ +\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf7\ +\xf2\xe9\xf9\xf4\xeb\xf7\xf2\xe9\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\ +\xea\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf7\xf3\xea\xf8\xf3\xea\ +\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf7\xf1\xe8\xf9\xf2\xe9\xf8\ +\xf1\xe8\xf8\xf0\xe7\xf7\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\ +\xe5\xf5\xec\xe4\xf5\xeb\xe4\xf4\xe8\xe2\xf3\xe7\xe1\xf2\xe6\xe1\ +\xf1\xe5\xe1\xef\xe4\xdf\xef\xe1\xdf\xef\xe0\xde\xee\xdf\xdd\xed\ +\xdf\xdd\xed\xde\xdc\xed\xdf\xdd\xee\xdf\xdd\xec\xdd\xdb\xeb\xda\ +\xd9\xea\xd9\xd8\xe8\xd8\xd7\xe6\xd6\xd5\xe4\xd5\xd3\xe3\xd5\xd3\ +\xe3\xd4\xd5\xe2\xd3\xd4\xe2\xd4\xd5\xe2\xd5\xd7\xe3\xd6\xd8\xe5\ +\xd8\xda\xe5\xd9\xdb\xe5\xd9\xdc\xe5\xda\xdd\xe6\xdb\xde\xe6\xdb\ +\xde\xe8\xdd\xe0\xe9\xde\xe1\xea\xdf\xe1\xeb\xe0\xe2\xea\xdf\xe1\ +\xe9\xdd\xdf\xe7\xda\xdc\xe4\xd6\xd9\xdf\xd1\xd5\xd9\xcb\xd0\xd2\ +\xc2\xca\xc9\xb7\xc2\xbf\xac\xb9\xb4\xa1\xb3\xa8\x96\xab\x9a\x89\ +\xa3\x88\x7b\x9a\x7b\x72\x92\x83\x78\x93\x98\x89\x9c\xaa\x99\xa5\ +\xb8\xa6\xae\xc2\xb1\xb5\xca\xb8\xbb\xd1\xc1\xc3\xd6\xc7\xc9\xdb\ +\xcd\xce\xdf\xd1\xd2\xe2\xd5\xd5\xe4\xd7\xd8\xe5\xda\xdc\xe6\xdc\ +\xde\xe7\xde\xe0\xe9\xdf\xe3\xe9\xe0\xe3\xea\xe1\xe4\xea\xe1\xe3\ +\xea\xe0\xe3\xe6\xdd\xe0\xe1\xd7\xdc\xdb\xd1\xd7\xd3\xca\xd2\xcb\ +\xc1\xcc\xc2\xb7\xc4\xb7\xad\xbd\xb1\xa5\xb6\xb3\xa5\xb7\xbf\xb0\ +\xbd\xcd\xbe\xc5\xd8\xc8\xcb\xe1\xd1\xd1\x00\x00\x00\xd7\xce\xd4\ +\xda\xd0\xd5\xda\xd1\xd5\xdc\xd3\xd6\xdc\xd3\xd6\xde\xd5\xd8\xde\ +\xd5\xd8\xe0\xd7\xda\xe2\xd7\xda\xe1\xd6\xd9\xe0\xd5\xd8\xdf\xd6\ +\xd9\xdf\xd6\xd9\xde\xd5\xda\xdb\xd3\xd8\xd6\xce\xd4\xce\xc7\xce\ +\xc3\xbc\xc7\xaf\xaa\xb8\x95\x90\xa2\x7e\x76\x89\x7f\x74\x85\x99\ +\x87\x93\xb6\xa1\xa3\xc9\xb4\xb5\xd5\xc3\xc1\xde\xcd\xcc\xe3\xd5\ +\xd3\xe5\xd8\xd8\xe8\xdb\xda\xe9\xdb\xdc\xea\xdc\xdd\xec\xde\xdd\ +\xec\xdf\xdd\xee\xe1\xdf\xef\xe3\xe1\xf0\xe4\xe2\xf1\xe5\xe2\xf2\ +\xe7\xe3\xf2\xe7\xe3\xf3\xe8\xe4\xf3\xe9\xe3\xf4\xea\xe4\xf6\xec\ +\xe5\xf7\xed\xe6\xf7\xef\xe6\xf8\xf1\xe8\xf7\xf1\xe8\xf6\xf2\xe9\ +\xf7\xf2\xe9\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\ +\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf8\xf3\xea\xf7\xf2\xe9\xf8\xf3\ +\xea\xf7\xf2\xe9\xf7\xf2\xe9\xf7\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\ +\xf8\xf2\xe9\xf8\xf2\xe9\xf8\xf2\xe9\xf7\xf2\xe9\xf7\xf1\xe8\xf7\ +\xf2\xe8\xf7\xf2\xe8\xf7\xf2\xe9\xf9\xf2\xe9\xf8\xf1\xe8\xf7\xf0\ +\xe7\xf8\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf6\xed\xe5\xf5\xeb\xe4\ +\xf4\xe9\xe3\xf3\xe7\xe1\xf2\xe6\xe0\xf0\xe4\xe1\xf0\xe4\xe0\xf0\ +\xe2\xdf\xee\xe0\xde\xee\xdf\xdd\xee\xdf\xdd\xed\xde\xdc\xec\xdd\ +\xdb\xec\xdd\xdb\xeb\xdc\xda\xeb\xdb\xd9\xe9\xda\xd8\xe8\xd8\xd7\ +\xe7\xd8\xd6\xe6\xd7\xd5\xe5\xd5\xd4\xe3\xd4\xd4\xe2\xd4\xd5\xe2\ +\xd4\xd5\xe1\xd3\xd5\xe2\xd4\xd6\xe4\xd7\xd9\xe5\xd8\xda\xe5\xd8\ +\xda\xe5\xd9\xdb\xe5\xda\xdd\xe6\xdb\xde\xe6\xdb\xde\xe7\xdc\xdf\ +\xe9\xde\xe1\xe9\xdf\xe2\xea\xdf\xe2\xe9\xde\xe1\xe7\xdc\xdf\xe4\ +\xd9\xdc\xe1\xd5\xd9\xdd\xd0\xd5\xd7\xc8\xcf\xce\xbe\xc9\xc4\xb4\ +\xc2\xba\xa9\xbd\xb0\xa0\xb7\xa6\x99\xb1\x9e\x90\xab\x95\x89\xa4\ +\x95\x89\xa2\xa0\x94\xa7\xae\x9f\xac\xba\xab\xb3\xc4\xb4\xb9\xcb\ +\xbc\xbf\xd3\xc4\xc6\xd9\xcb\xcd\xde\xd0\xd2\xe4\xd6\xd7\xe6\xda\ +\xda\xe9\xdc\xdd\xe9\xde\xdf\xea\xdf\xe1\xec\xe1\xe3\xec\xe2\xe4\ +\xed\xe5\xe6\xee\xe7\xe8\xee\xe8\xe9\xee\xe7\xe8\xee\xe6\xe7\xea\ +\xe1\xe3\xe6\xdc\xdf\xe0\xd6\xdc\xda\xd0\xd7\xd3\xc9\xd2\xcb\xc0\ +\xcb\xc2\xb7\xc3\xbb\xaf\xbe\xbc\xaf\xbe\xc6\xb8\xc3\xd0\xc2\xc9\ +\xda\xcb\xce\xe2\xd2\xd4\x00\x00\x00\xd7\xcf\xd5\xda\xd1\xd6\xda\ +\xd1\xd7\xdb\xd2\xd6\xdc\xd3\xd7\xdd\xd4\xd7\xde\xd5\xd8\xdf\xd5\ +\xd8\xe1\xd5\xd8\xe0\xd5\xd8\xe0\xd5\xd8\xdf\xd5\xd8\xde\xd5\xd8\ +\xde\xd6\xda\xdc\xd5\xda\xd8\xd1\xd7\xd2\xcb\xd2\xc8\xc1\xcb\xb8\ +\xb1\xbe\xa5\x9f\xaf\x94\x90\xa1\x8c\x84\x95\x94\x87\x96\xa5\x93\ +\x9d\xba\xa6\xa9\xcb\xb7\xb7\xd6\xc4\xc3\xdd\xce\xcc\xe1\xd3\xd2\ +\xe5\xd7\xd8\xe7\xd9\xda\xe8\xda\xdb\xe9\xdc\xdc\xea\xdc\xdd\xeb\ +\xde\xdc\xec\xdf\xdd\xee\xe1\xdf\xef\xe2\xe0\xef\xe3\xe0\xf0\xe5\ +\xe1\xf1\xe5\xe2\xf2\xe7\xe3\xf4\xea\xe3\xf4\xea\xe3\xf6\xec\xe5\ +\xf7\xee\xe7\xf6\xef\xe6\xf8\xf0\xe7\xf8\xf1\xe8\xf8\xf1\xe8\xf7\ +\xf1\xe8\xf6\xf1\xe8\xf6\xf1\xe8\xf7\xf2\xe9\xf6\xf1\xe8\xf7\xf1\ +\xe8\xf7\xf1\xe8\xf7\xf2\xe9\xf8\xf3\xea\xf7\xf2\xe9\xf9\xf1\xe8\ +\xf9\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf7\ +\xf0\xe7\xf9\xf2\xe9\xf9\xf1\xe8\xf8\xf1\xe8\xf9\xf1\xe8\xf9\xf2\ +\xe9\xf8\xf1\xe8\xf7\xf0\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xee\xe5\ +\xf7\xee\xe5\xf6\xed\xe4\xf6\xeb\xe3\xf4\xea\xe3\xf4\xe8\xe2\xf3\ +\xe7\xe1\xf1\xe5\xe1\xf1\xe5\xe1\xef\xe3\xdf\xee\xe1\xde\xee\xdf\ +\xdd\xee\xdf\xdd\xec\xdd\xdb\xeb\xdc\xda\xea\xdb\xd9\xe9\xda\xd8\ +\xe9\xda\xd8\xe9\xda\xd8\xe9\xda\xd8\xe7\xd8\xd6\xe6\xd7\xd5\xe5\ +\xd6\xd4\xe4\xd4\xd4\xe2\xd4\xd5\xe1\xd3\xd4\xe0\xd2\xd4\xe2\xd4\ +\xd5\xe3\xd5\xd7\xe3\xd7\xd9\xe5\xd7\xd9\xe4\xd9\xdb\xe3\xd8\xdb\ +\xe3\xd8\xdb\xe5\xda\xdd\xe6\xdb\xde\xe6\xdb\xde\xe7\xdd\xe0\xe6\ +\xde\xe1\xe7\xdd\xe0\xe6\xdd\xe0\xe6\xdc\xdf\xe4\xd9\xdc\xe0\xd4\ +\xda\xdc\xd0\xd6\xd6\xc8\xcf\xce\xbf\xca\xc4\xb5\xc4\xbc\xae\xc0\ +\xb6\xa9\xbe\xb1\xa4\xbb\xad\xa1\xb7\xad\xa1\xb5\xb1\xa3\xb3\xb8\ +\xaa\xb6\xc0\xb1\xb9\xc7\xb8\xbd\xcf\xc0\xc3\xd4\xc7\xc9\xdc\xce\ +\xcf\xe1\xd4\xd6\xe6\xd9\xdb\xea\xde\xdf\xed\xe1\xe1\xed\xe2\xe2\ +\xed\xe2\xe4\xef\xe4\xe6\xee\xe4\xe6\xee\xe6\xe7\xef\xe7\xe8\xef\ +\xe8\xe9\xf0\xe8\xe9\xf0\xe8\xe9\xf0\xe8\xe9\xec\xe4\xe5\xe9\xdf\ +\xe2\xe4\xdb\xdf\xe0\xd6\xdc\xda\xcf\xd7\xd3\xc8\xd0\xcb\xc0\xcb\ +\xc5\xba\xc6\xc6\xbb\xc6\xcc\xc0\xc9\xd3\xc6\xcc\xdb\xcd\xd1\xe2\ +\xd4\xd5\x00\x00\x00\xd6\xce\xd6\xd8\xd0\xd7\xd9\xd1\xd6\xda\xd2\ +\xd7\xdd\xd3\xd9\xde\xd4\xd8\xdd\xd4\xd7\xde\xd5\xd7\xdf\xd4\xd7\ +\xe0\xd5\xd8\xde\xd4\xd7\xdd\xd4\xd7\xde\xd4\xd9\xde\xd5\xdb\xde\ +\xd5\xdb\xdc\xd5\xd9\xd8\xd1\xd6\xd1\xc9\xd0\xc6\xbe\xc8\xb8\xb1\ +\xbd\xa9\xa4\xb3\x9c\x98\xa9\x9a\x91\xa1\xa0\x92\xa0\xac\x9b\xa3\ +\xbc\xa9\xac\xca\xb8\xb9\xd5\xc4\xc3\xdc\xcd\xcb\xe1\xd2\xd3\xe4\ +\xd6\xd7\xe5\xd8\xd8\xe7\xd9\xda\xe8\xda\xdb\xe9\xdb\xdb\xea\xdd\ +\xdb\xeb\xde\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\xef\xe3\xe0\ +\xf0\xe4\xe0\xf2\xe6\xe2\xf3\xe9\xe2\xf5\xeb\xe4\xf6\xec\xe5\xf7\ +\xee\xe7\xf6\xef\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf1\ +\xe8\xf8\xf1\xe8\xf7\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\ +\xf8\xf1\xe8\xf8\xf1\xe8\xf8\xf1\xe8\xf7\xf0\xe7\xf8\xf0\xe7\xf8\ +\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\ +\xe7\xf8\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf8\xf0\xe7\ +\xf7\xf0\xe7\xf8\xef\xe6\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf5\ +\xeb\xe3\xf5\xea\xe3\xf4\xe8\xe2\xf3\xe7\xe1\xf2\xe6\xe1\xf1\xe5\ +\xe0\xf0\xe4\xe0\xef\xe2\xdf\xee\xe0\xde\xed\xde\xdc\xec\xdd\xdb\ +\xeb\xdc\xdb\xea\xdb\xda\xea\xdb\xd9\xe9\xd9\xd8\xe9\xda\xd8\xe8\ +\xd9\xd8\xe8\xd9\xd7\xe7\xd8\xd6\xe6\xd7\xd5\xe4\xd5\xd4\xe3\xd4\ +\xd4\xe3\xd4\xd5\xe1\xd3\xd5\xe1\xd3\xd5\xe2\xd4\xd6\xe3\xd6\xd8\ +\xe4\xd7\xd9\xe4\xd8\xda\xe3\xd7\xda\xe3\xd7\xda\xe3\xd8\xdb\xe5\ +\xda\xdd\xe6\xdb\xde\xe6\xdb\xde\xe6\xdd\xe0\xe6\xdd\xe1\xe6\xdd\ +\xe0\xe5\xdc\xdf\xe5\xdb\xde\xe3\xd8\xdc\xe0\xd4\xda\xdc\xd0\xd6\ +\xd8\xca\xd2\xd2\xc3\xce\xcb\xbd\xc9\xc7\xba\xc8\xc3\xb7\xc6\xc0\ +\xb4\xc3\xc0\xb3\xc1\xc1\xb3\xc0\xc3\xb5\xc0\xc9\xb9\xc2\xcd\xbe\ +\xc4\xd2\xc3\xc7\xd8\xca\xcc\xde\xd0\xd2\xe3\xd6\xd8\xe8\xdc\xdd\ +\xec\xe0\xe1\xee\xe4\xe4\xef\xe6\xe6\xef\xe6\xe6\xf0\xe5\xe7\xee\ +\xe6\xe7\xee\xe4\xe6\xee\xe6\xe7\xee\xe7\xe8\xef\xe7\xe8\xef\xe7\ +\xe8\xef\xe7\xe8\xee\xe6\xe7\xec\xe4\xe6\xea\xe1\xe4\xe7\xde\xe1\ +\xe3\xd9\xde\xdf\xd4\xdb\xd9\xce\xd6\xd3\xc8\xd1\xd0\xc5\xcf\xd0\ +\xc4\xcd\xd3\xc6\xce\xd8\xcb\xd1\xdf\xd1\xd4\xe4\xd7\xd9\x00\x00\ +\x00\xd6\xcf\xd8\xd7\xd0\xd7\xd8\xd1\xd7\xda\xd3\xd8\xdb\xd4\xd8\ +\xdd\xd3\xd9\xdd\xd4\xd7\xdd\xd3\xd8\xdd\xd4\xd8\xdd\xd4\xd7\xdd\ +\xd4\xd7\xdd\xd4\xd8\xde\xd4\xda\xdf\xd5\xdb\xdf\xd5\xdc\xdf\xd7\ +\xdc\xdd\xd6\xdb\xd9\xd2\xd7\xd3\xcc\xd2\xc9\xc2\xca\xbd\xb7\xc2\ +\xb0\xab\xb9\xa4\x9e\xaf\xa3\x9a\xa8\xa8\x9b\xa7\xb1\xa2\xa9\xbe\ +\xad\xb0\xcb\xb9\xba\xd4\xc4\xc4\xdc\xcc\xcc\xdf\xd2\xd3\xe3\xd5\ +\xd6\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\xda\xe9\xdb\xdb\ +\xe9\xdc\xdb\xeb\xdd\xdb\xec\xdf\xdd\xee\xdf\xdd\xef\xe1\xde\xf0\ +\xe4\xe0\xf2\xe7\xe2\xf3\xe9\xe2\xf5\xeb\xe4\xf7\xed\xe6\xf7\xee\ +\xe6\xf8\xef\xe6\xf7\xef\xe6\xf6\xef\xe7\xf7\xf0\xe7\xf7\xf0\xe7\ +\xf7\xf0\xe7\xf7\xf0\xe8\xf8\xf1\xe8\xf7\xf0\xe7\xf7\xf0\xe7\xf8\ +\xf0\xe7\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\ +\xe5\xf7\xef\xe5\xf8\xef\xe6\xf8\xef\xe6\xf7\xef\xe6\xf7\xee\xe5\ +\xf8\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xf8\xef\xe5\xf7\ +\xee\xe5\xf7\xee\xe5\xf6\xed\xe4\xf5\xec\xe3\xf5\xea\xe2\xf4\xe8\ +\xe2\xf3\xe7\xe1\xf2\xe6\xe1\xf2\xe6\xe2\xf0\xe4\xe0\xef\xe3\xdf\ +\xef\xe2\xdf\xee\xe1\xdf\xed\xdf\xdd\xec\xdd\xdb\xeb\xdc\xda\xe9\ +\xdb\xdb\xe8\xd9\xda\xe8\xd9\xda\xe7\xd9\xd9\xe7\xd8\xd8\xe7\xd8\ +\xd7\xe6\xd7\xd5\xe6\xd6\xd5\xe4\xd5\xd5\xe3\xd3\xd4\xe2\xd4\xd5\ +\xe2\xd4\xd6\xe2\xd5\xd7\xe3\xd6\xd8\xe3\xd7\xd9\xe4\xd7\xd9\xe2\ +\xd7\xda\xe2\xd7\xda\xe2\xd7\xda\xe3\xd8\xdb\xe3\xd9\xdc\xe4\xda\ +\xdd\xe4\xdb\xde\xe6\xdd\xdf\xe6\xdd\xe0\xe7\xde\xe1\xe6\xdd\xe0\ +\xe5\xdb\xdf\xe4\xd8\xde\xe1\xd6\xdb\xde\xd2\xd8\xdc\xcf\xd5\xd8\ +\xcc\xd3\xd5\xc8\xd1\xd2\xc5\xcf\xd0\xc2\xcd\xcf\xc1\xcb\xce\xc0\ +\xca\xcf\xc1\xc9\xd2\xc3\xc9\xd4\xc5\xcb\xd7\xca\xcd\xdb\xcd\xcf\ +\xe0\xd2\xd4\xe5\xd8\xd9\xe9\xdd\xde\xed\xe1\xe1\xef\xe5\xe6\xf0\ +\xe8\xe8\xf0\xe8\xe8\xef\xe7\xe7\xee\xe6\xe7\xed\xe5\xe7\xee\xe6\ +\xe7\xee\xe6\xe8\xef\xe7\xe8\xef\xe6\xe8\xee\xe6\xe7\xee\xe5\xe8\ +\xee\xe5\xe7\xed\xe4\xe6\xeb\xe2\xe5\xe9\xe0\xe3\xe6\xdd\xe0\xe2\ +\xd8\xdf\xde\xd4\xda\xdb\xd1\xd7\xd9\xce\xd4\xd8\xcc\xd3\xdb\xce\ +\xd4\xde\xd2\xd6\xe2\xd5\xd8\xe6\xd9\xdb\x00\x00\x00\xd6\xd1\xd9\ +\xd6\xd0\xd8\xd9\xd2\xd9\xda\xd3\xd9\xdb\xd4\xd9\xdb\xd4\xda\xdc\ +\xd4\xd9\xdd\xd2\xd9\xdc\xd3\xd7\xdc\xd3\xd6\xdd\xd3\xd8\xde\xd4\ +\xda\xdf\xd5\xda\xdf\xd5\xdb\xe0\xd6\xdc\xe0\xd5\xdb\xde\xd7\xdc\ +\xdf\xd6\xdb\xdd\xd3\xd9\xd7\xcf\xd5\xce\xc7\xcf\xc3\xbc\xc7\xb5\ +\xaf\xbd\xab\xa5\xb3\xa9\xa0\xac\xad\xa0\xab\xb4\xa6\xad\xc0\xb1\ +\xb4\xca\xba\xbc\xd4\xc4\xc4\xda\xcb\xcc\xde\xd0\xd1\xe2\xd4\xd5\ +\xe5\xd7\xd8\xe5\xd8\xd9\xe6\xd8\xd9\xe6\xd8\xd9\xe7\xd9\xda\xe8\ +\xda\xda\xe9\xdc\xda\xec\xde\xdc\xee\xdf\xdc\xef\xe3\xdf\xf2\xe6\ +\xe1\xf3\xe7\xe2\xf3\xe9\xe2\xf6\xec\xe5\xf6\xec\xe5\xf7\xed\xe6\ +\xf6\xec\xe6\xf7\xee\xe6\xf7\xee\xe5\xf7\xee\xe6\xf8\xee\xe5\xf8\ +\xef\xe6\xf8\xef\xe6\xf7\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf7\xed\ +\xe4\xf5\xec\xe4\xf6\xeb\xe4\xf6\xec\xe4\xf6\xea\xe2\xf6\xeb\xe3\ +\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xea\xe2\xf6\xeb\xe3\xf5\ +\xe9\xe1\xf6\xea\xe2\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xeb\ +\xe3\xf6\xeb\xe3\xf4\xe9\xe1\xf3\xe7\xe0\xf3\xe7\xe1\xf1\xe5\xdf\ +\xf1\xe5\xdf\xf1\xe5\xe0\xef\xe3\xdf\xf0\xe4\xe0\xf0\xe4\xe0\xee\ +\xe1\xdf\xed\xde\xdc\xec\xdd\xdb\xea\xdc\xdc\xe8\xda\xdb\xe7\xda\ +\xdb\xe7\xd9\xda\xe6\xd8\xd9\xe7\xd7\xd9\xe7\xd8\xd7\xe5\xd5\xd6\ +\xe5\xd6\xd5\xe4\xd5\xd6\xe3\xd4\xd5\xe2\xd5\xd6\xe2\xd5\xd6\xe2\ +\xd5\xd7\xe3\xd6\xd8\xe3\xd7\xd9\xe2\xd7\xda\xe2\xd7\xda\xe2\xd7\ +\xda\xe1\xd6\xd9\xe1\xd5\xdb\xe1\xd8\xdc\xe2\xd9\xdc\xe4\xda\xde\ +\xe5\xdb\xe1\xe6\xdc\xe2\xe6\xdd\xe2\xe7\xde\xe3\xe6\xdd\xe1\xe6\ +\xda\xe1\xe4\xd9\xdc\xe2\xd7\xdb\xe0\xd4\xda\xdf\xd3\xd9\xdc\xd0\ +\xd6\xda\xce\xd4\xd9\xcd\xd3\xd8\xcc\xd2\xd9\xcb\xd1\xd9\xcc\xd1\ +\xda\xcc\xd0\xdd\xcf\xd3\xdf\xd3\xd4\xe3\xd5\xd6\xe6\xd9\xd9\xea\ +\xdd\xdd\xee\xe2\xe2\xf0\xe6\xe6\xf1\xe8\xe8\xef\xe8\xe8\xf0\xe8\ +\xe8\xef\xe6\xe6\xf0\xe5\xe7\xef\xe5\xe6\xed\xe6\xe6\xee\xe6\xe7\ +\xef\xe6\xe9\xed\xe4\xe7\xee\xe5\xe8\xed\xe4\xe7\xed\xe4\xe7\xec\ +\xe3\xe6\xec\xe3\xe6\xea\xe1\xe4\xe8\xdf\xe2\xe6\xdd\xe0\xe2\xd9\ +\xdd\xe1\xd6\xda\xdf\xd4\xd8\xdf\xd4\xd7\xe0\xd5\xd8\xe1\xd6\xd9\ +\xe4\xd7\xda\xe7\xda\xdc\x00\x00\x00\xd7\xd2\xdb\xd7\xd2\xdb\xd9\ +\xd3\xda\xda\xd3\xda\xdb\xd4\xda\xdc\xd4\xda\xdb\xd5\xda\xdb\xd3\ +\xd8\xdc\xd2\xd8\xdc\xd2\xd8\xdc\xd2\xd9\xdd\xd3\xd9\xde\xd5\xda\ +\xe0\xd6\xdc\xe1\xd7\xdd\xe1\xd7\xdd\xe1\xd7\xdd\xe1\xd7\xdd\xe0\ +\xd7\xdc\xdf\xd5\xda\xda\xd1\xd7\xd1\xc9\xd0\xc6\xbe\xc7\xbc\xb5\ +\xc0\xb3\xaa\xb7\xaf\xa5\xb0\xb1\xa4\xaf\xb9\xaa\xb1\xc0\xb0\xb5\ +\xc9\xb8\xbb\xd2\xc2\xc4\xd8\xc9\xca\xdd\xcf\xd0\xe1\xd3\xd4\xe3\ +\xd5\xd6\xe4\xd6\xd7\xe3\xd7\xd7\xe4\xd7\xd7\xe6\xd8\xd9\xe7\xda\ +\xda\xe9\xdc\xda\xeb\xde\xdc\xee\xe0\xde\xef\xe3\xdf\xf1\xe5\xe1\ +\xf2\xe7\xe3\xf3\xe9\xe2\xf4\xea\xe3\xf5\xeb\xe4\xf5\xeb\xe4\xf5\ +\xeb\xe4\xf6\xec\xe5\xf6\xeb\xe4\xf6\xec\xe4\xf6\xec\xe5\xf6\xec\ +\xe5\xf6\xec\xe4\xf5\xea\xe3\xf4\xe9\xe2\xf5\xe9\xe2\xf4\xe9\xe1\ +\xf4\xe8\xe1\xf3\xe8\xe0\xf3\xe8\xe0\xf3\xe7\xdf\xf4\xe8\xe0\xf4\ +\xe8\xe0\xf4\xe8\xdf\xf4\xe7\xdf\xf4\xe6\xdf\xf3\xe6\xde\xf3\xe6\ +\xde\xf3\xe7\xdf\xf3\xe8\xe0\xf4\xe9\xe0\xf3\xe8\xe0\xf2\xe7\xdf\ +\xf2\xe6\xdf\xf2\xe5\xde\xf2\xe4\xde\xf1\xe4\xde\xf0\xe3\xdf\xef\ +\xe3\xdf\xf0\xe4\xe0\xef\xe3\xdf\xef\xe2\xdf\xee\xe0\xdd\xed\xde\ +\xdc\xec\xdd\xda\xeb\xdb\xda\xe7\xd9\xda\xe7\xd9\xda\xe7\xd9\xda\ +\xe6\xd8\xd9\xe6\xd8\xd9\xe6\xd7\xd8\xe5\xd6\xd6\xe5\xd5\xd6\xe3\ +\xd5\xd6\xe2\xd4\xd6\xe3\xd5\xd7\xe2\xd6\xd8\xe3\xd6\xd8\xe1\xd5\ +\xd9\xe1\xd6\xd9\xe1\xd6\xd9\xe0\xd5\xd9\xdf\xd5\xd9\xde\xd5\xda\ +\xdf\xd5\xdb\xe0\xd6\xdc\xe2\xd8\xdd\xe4\xda\xdf\xe5\xdc\xe1\xe6\ +\xdc\xe2\xe7\xdd\xe2\xe8\xde\xe3\xe7\xdd\xe3\xe6\xdd\xe2\xe6\xdc\ +\xdf\xe5\xda\xdd\xe5\xda\xdd\xe3\xd8\xdb\xe2\xd6\xda\xe1\xd5\xda\ +\xe0\xd5\xd9\xe0\xd3\xd8\xe1\xd3\xd7\xe1\xd3\xd7\xe2\xd4\xd7\xe3\ +\xd6\xd8\xe6\xd9\xda\xe8\xda\xdb\xeb\xdd\xde\xed\xe1\xe1\xf0\xe5\ +\xe5\xf1\xe8\xe7\xf1\xe9\xe7\xf1\xe8\xe7\xf0\xe7\xe7\xf0\xe6\xe7\ +\xf0\xe5\xe7\xef\xe6\xe7\xee\xe6\xe7\xed\xe5\xe7\xed\xe4\xe7\xed\ +\xe4\xe7\xed\xe4\xe7\xec\xe3\xe6\xeb\xe2\xe5\xeb\xe2\xe5\xea\xe1\ +\xe4\xea\xe1\xe4\xea\xe1\xe4\xe8\xdf\xe2\xe6\xdd\xe0\xe4\xda\xdd\ +\xe5\xda\xdc\xe5\xd9\xdb\xe4\xd9\xdb\xe5\xda\xdc\xe5\xda\xdc\xe6\ +\xdb\xdc\x00\x00\x00\xd9\xd4\xdd\xda\xd4\xdd\xdb\xd4\xdc\xdc\xd5\ +\xdc\xdc\xd5\xdc\xdc\xd4\xdb\xdc\xd5\xda\xdb\xd4\xda\xdb\xd3\xd9\ +\xdc\xd4\xd9\xdd\xd4\xd9\xdd\xd4\xd9\xdf\xd5\xdb\xe1\xd7\xdc\xe2\ +\xd8\xdd\xe2\xd8\xde\xe2\xd9\xde\xe2\xd9\xdd\xe2\xd9\xdc\xe0\xd7\ +\xdb\xdf\xd6\xd9\xda\xd1\xd6\xd3\xcb\xd0\xc9\xc1\xc9\xc0\xb7\xc1\ +\xb8\xaf\xb9\xb2\xa7\xb2\xb5\xa8\xb2\xb9\xab\xb2\xc1\xb1\xb6\xc8\ +\xb8\xbb\xcf\xc0\xc2\xd7\xc8\xca\xdb\xce\xcf\xde\xd1\xd3\xe0\xd3\ +\xd5\xe1\xd5\xd6\xe2\xd6\xd7\xe4\xd8\xd8\xe7\xd9\xda\xe9\xdb\xdb\ +\xea\xdd\xdc\xec\xdf\xdd\xed\xe1\xde\xef\xe3\xdf\xf1\xe4\xe1\xf2\ +\xe6\xe2\xf2\xe7\xe2\xf3\xe8\xe3\xf3\xe9\xe4\xf3\xe9\xe3\xf3\xe9\ +\xe4\xf4\xea\xe4\xf5\xea\xe4\xf4\xea\xe3\xf4\xea\xe3\xf4\xe8\xe2\ +\xf3\xe7\xe1\xf2\xe6\xe0\xf2\xe6\xdf\xf2\xe5\xdf\xf3\xe5\xdf\xf3\ +\xe5\xde\xf2\xe5\xdd\xf1\xe4\xdd\xf3\xe4\xdc\xf2\xe4\xdc\xf2\xe3\ +\xdc\xf2\xe2\xdb\xf1\xe2\xdb\xf1\xe2\xdb\xf1\xe2\xdb\xf2\xe3\xdc\ +\xf2\xe4\xdd\xf2\xe5\xdd\xf2\xe6\xdd\xf2\xe5\xdd\xf1\xe3\xdc\xf1\ +\xe2\xdc\xf0\xe2\xdc\xf0\xe1\xdd\xf0\xe1\xde\xf0\xe1\xde\xef\xe2\ +\xde\xee\xe0\xde\xee\xdf\xdd\xed\xde\xdc\xec\xdd\xdb\xeb\xdc\xda\ +\xe9\xdb\xd9\xe7\xd9\xdb\xe7\xd9\xda\xe7\xd9\xda\xe7\xd9\xda\xe5\ +\xd7\xd8\xe5\xd7\xd8\xe4\xd6\xd7\xe4\xd6\xd7\xe4\xd6\xd7\xe3\xd6\ +\xd7\xe3\xd6\xd8\xe3\xd6\xd8\xe2\xd6\xd9\xe0\xd6\xd9\xe0\xd6\xd9\ +\xe0\xd5\xda\xdf\xd5\xda\xde\xd5\xdb\xdd\xd5\xda\xdd\xd5\xda\xde\ +\xd6\xdc\xe0\xd8\xde\xe2\xda\xdf\xe3\xdc\xe1\xe5\xdc\xe1\xe6\xdc\ +\xe2\xe7\xde\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xde\xe3\xe6\xdd\xe1\ +\xe6\xdc\xdf\xe6\xdc\xdf\xe6\xdb\xde\xe6\xdb\xde\xe6\xdb\xde\xe5\ +\xda\xdc\xe6\xd9\xdb\xe6\xd9\xdb\xe7\xda\xdc\xe9\xdc\xde\xea\xde\ +\xde\xec\xe0\xe0\xee\xe3\xe2\xf0\xe6\xe4\xf1\xe8\xe5\xf3\xea\xe7\ +\xf1\xe9\xe6\xf2\xe8\xe7\xf1\xe7\xe7\xf1\xe6\xe6\xf0\xe5\xe6\xef\ +\xe4\xe6\xef\xe5\xe7\xed\xe4\xe6\xed\xe3\xe6\xed\xe3\xe6\xec\xe3\ +\xe6\xeb\xe2\xe5\xeb\xe2\xe5\xea\xe1\xe4\xeb\xe2\xe5\xea\xe1\xe4\ +\xe9\xe0\xe3\xe8\xdf\xe2\xe7\xde\xe1\xe6\xdd\xe0\xe7\xdd\xe0\xe7\ +\xdc\xdf\xe7\xdc\xde\xe6\xdb\xdd\xe6\xdb\xdd\xe5\xda\xdc\x00\x00\ +\x00\xdb\xd5\xde\xdc\xd6\xde\xdd\xd6\xdd\xde\xd7\xde\xdd\xd6\xdd\ +\xdd\xd6\xdd\xdd\xd5\xdc\xdc\xd5\xda\xdd\xd6\xdb\xdd\xd6\xdb\xde\ +\xd5\xda\xdf\xd5\xdb\xe0\xd6\xdb\xe1\xd8\xdc\xe3\xda\xdd\xe2\xd9\ +\xdd\xe3\xda\xde\xe3\xda\xdd\xe2\xd9\xdd\xe2\xd9\xdc\xe0\xd6\xd9\ +\xe0\xd5\xd8\xdd\xd3\xd6\xd6\xcc\xd1\xcd\xc3\xca\xc4\xb9\xc2\xb9\ +\xb0\xba\xb4\xa8\xb2\xb6\xa8\xb2\xba\xac\xb3\xc0\xb0\xb5\xc5\xb6\ +\xb9\xcf\xc1\xc3\xd4\xc7\xc8\xd9\xcc\xce\xdd\xd0\xd2\xe0\xd3\xd5\ +\xe1\xd4\xd6\xe3\xd6\xd8\xe5\xd8\xd9\xe7\xda\xdb\xea\xdc\xdc\xeb\ +\xde\xdd\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\xf0\xe4\xe0\xf1\xe5\ +\xe1\xf1\xe5\xe1\xf2\xe6\xe2\xf1\xe6\xe2\xf1\xe6\xe3\xf2\xe7\xe3\ +\xf3\xe8\xe4\xf3\xe7\xe3\xf2\xe6\xe1\xf1\xe5\xe0\xf1\xe4\xe0\xf1\ +\xe2\xdf\xf1\xe2\xde\xf1\xe3\xdd\xf1\xe3\xdd\xf1\xe2\xdc\xf1\xe2\ +\xdc\xf0\xe0\xda\xf0\xe0\xda\xf0\xdf\xd9\xf0\xdf\xd9\xf0\xde\xd8\ +\xf0\xdd\xd7\xef\xdd\xd7\xef\xdd\xd7\xef\xde\xd8\xf0\xdf\xd8\xf1\ +\xe0\xd9\xf0\xe0\xda\xf0\xe0\xda\xef\xe0\xd9\xef\xdf\xd9\xef\xdf\ +\xdb\xee\xdf\xdc\xee\xdf\xdc\xed\xde\xdc\xed\xde\xdc\xec\xdd\xdb\ +\xec\xdd\xdb\xec\xdd\xdb\xea\xdb\xd9\xea\xda\xd9\xe8\xd9\xda\xe7\ +\xd9\xda\xe6\xd8\xd9\xe6\xd8\xd9\xe6\xd8\xd9\xe5\xd7\xd8\xe5\xd7\ +\xd8\xe5\xd7\xd8\xe4\xd6\xd8\xe3\xd5\xd8\xe3\xd6\xd8\xe2\xd5\xd7\ +\xe2\xd5\xd7\xe1\xd6\xd8\xdf\xd5\xd8\xdf\xd5\xd9\xde\xd4\xda\xde\ +\xd5\xdb\xdd\xd5\xdb\xdc\xd4\xdb\xdd\xd5\xdc\xde\xd7\xde\xe0\xd8\ +\xdf\xe1\xd9\xdf\xe2\xdb\xe1\xe4\xdd\xe2\xe4\xdd\xe2\xe5\xdd\xe2\ +\xe4\xdd\xe2\xe6\xdd\xe3\xe6\xde\xe3\xe7\xdd\xe2\xe6\xdd\xe1\xe6\ +\xdd\xe0\xe8\xdd\xe0\xe9\xdd\xe1\xe8\xdd\xe0\xe8\xdd\xdf\xea\xdd\ +\xdf\xea\xdd\xdf\xea\xdd\xdf\xec\xe0\xe0\xee\xe3\xe2\xef\xe4\xe3\ +\xf0\xe7\xe4\xf1\xe8\xe5\xf2\xe9\xe6\xf2\xe9\xe6\xf1\xe8\xe6\xf0\ +\xe6\xe6\xf0\xe6\xe6\xef\xe5\xe5\xee\xe4\xe5\xee\xe3\xe5\xee\xe3\ +\xe5\xed\xe2\xe4\xed\xe2\xe4\xec\xe2\xe5\xec\xe3\xe5\xeb\xe2\xe5\ +\xeb\xe2\xe5\xea\xe1\xe4\xea\xe1\xe4\xe9\xe0\xe3\xe8\xdf\xe2\xe7\ +\xde\xe1\xe6\xdd\xe0\xe6\xdd\xe0\xe7\xdd\xe0\xe7\xdc\xdf\xe7\xdc\ +\xdf\xe6\xdb\xdd\xe6\xdb\xdd\xe5\xda\xdd\x00\x00\x00\xdc\xd7\xe0\ +\xdd\xd8\xdf\xdf\xd8\xdf\xdf\xd8\xdf\xdf\xd8\xdf\xdf\xd7\xde\xdf\ +\xd7\xde\xdf\xd7\xdd\xdf\xd8\xdd\xdf\xd8\xdd\xdf\xd8\xdd\xe0\xd7\ +\xdc\xe1\xd7\xdb\xe2\xd9\xdc\xe2\xd9\xdc\xe3\xda\xdd\xe4\xda\xdd\ +\xe3\xda\xdd\xe3\xda\xdd\xe3\xda\xdd\xe2\xd7\xda\xe1\xd6\xd9\xe1\ +\xd6\xd9\xde\xd3\xd6\xd7\xcd\xd1\xce\xc4\xca\xc5\xba\xc3\xbb\xb1\ +\xbb\xb6\xaa\xb5\xb7\xaa\xb4\xbb\xac\xb5\xbe\xaf\xb5\xc3\xb4\xb8\ +\xcb\xbd\xc1\xd2\xc4\xc7\xd5\xc9\xcc\xdb\xcf\xd1\xde\xd3\xd5\xe0\ +\xd4\xd6\xe3\xd7\xd9\xe7\xda\xdb\xe7\xda\xdb\xe9\xdc\xdc\xea\xdc\ +\xdc\xeb\xde\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xdf\xef\xe2\xe0\ +\xef\xe2\xe0\xef\xe2\xe0\xf0\xe4\xe1\xf0\xe4\xe1\xf0\xe5\xe1\xf1\ +\xe5\xe1\xef\xe3\xe0\xef\xe2\xde\xef\xe0\xdd\xee\xdf\xdd\xed\xde\ +\xdb\xee\xde\xdb\xee\xde\xdb\xee\xdf\xda\xee\xde\xd9\xee\xde\xd9\ +\xed\xdc\xd7\xee\xdb\xd6\xee\xdb\xd6\xec\xd9\xd4\xec\xd9\xd4\xec\ +\xd9\xd4\xed\xda\xd5\xec\xd9\xd4\xed\xda\xd5\xee\xdb\xd6\xee\xdb\ +\xd6\xee\xdb\xd6\xed\xdb\xd6\xed\xdb\xd7\xed\xdc\xd9\xec\xdc\xd9\ +\xeb\xdb\xda\xeb\xdc\xda\xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xe9\ +\xdb\xd9\xe9\xda\xd8\xe7\xd9\xd9\xe5\xd8\xd9\xe5\xd7\xd8\xe5\xd7\ +\xd8\xe4\xd6\xd8\xe3\xd5\xd6\xe4\xd6\xd7\xe4\xd6\xd7\xe3\xd5\xd6\ +\xe1\xd4\xd6\xe2\xd5\xd6\xe1\xd4\xd6\xe0\xd3\xd6\xe0\xd3\xd6\xdf\ +\xd4\xd7\xde\xd3\xd8\xdd\xd3\xd8\xdc\xd4\xda\xdc\xd5\xdc\xdc\xd5\ +\xdc\xdc\xd6\xdd\xdd\xd6\xdd\xdf\xd8\xdf\xde\xd7\xdf\xdf\xd8\xdf\ +\xe1\xd9\xe0\xe3\xdb\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe3\ +\xdc\xe1\xe3\xdc\xe1\xe5\xdc\xe1\xe6\xdc\xe2\xe6\xdd\xe1\xe7\xde\ +\xe0\xe9\xde\xe1\xe9\xde\xe0\xea\xdf\xe1\xec\xdf\xe1\xed\xe0\xe2\ +\xed\xe1\xe1\xee\xe3\xe3\xef\xe4\xe4\xee\xe4\xe4\xef\xe5\xe3\xef\ +\xe4\xe3\xef\xe5\xe3\xef\xe5\xe3\xef\xe4\xe3\xed\xe1\xe1\xec\xe0\ +\xe1\xec\xdf\xe1\xec\xdf\xe1\xeb\xe0\xe2\xec\xe1\xe3\xec\xe1\xe3\ +\xec\xe1\xe3\xec\xe0\xe2\xec\xe1\xe3\xea\xe0\xe3\xe9\xe0\xe3\xe9\ +\xe0\xe3\xe8\xdf\xe2\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdc\xdf\xe5\xdb\ +\xde\xe4\xdb\xde\xe5\xdb\xde\xe6\xdb\xde\xe4\xda\xdd\xe4\xda\xdd\ +\xe3\xda\xdd\xe3\xda\xdd\x00\x00\x00\xdc\xd7\xe0\xde\xd7\xdf\xdf\ +\xd8\xdf\xdf\xd8\xdf\xdf\xd8\xde\xdf\xd8\xdf\xe0\xd9\xde\xe1\xda\ +\xde\xe1\xd9\xdf\xe1\xda\xdf\xe0\xd9\xde\xe2\xd8\xde\xe2\xd9\xdc\ +\xe2\xd9\xdc\xe3\xd9\xdc\xe4\xda\xdd\xe5\xda\xdd\xe5\xda\xdd\xe5\ +\xda\xdd\xe4\xd9\xdc\xe2\xd8\xdb\xe2\xd7\xda\xe2\xd7\xda\xe1\xd6\ +\xd9\xde\xd3\xd6\xd8\xcd\xd1\xcf\xc5\xcb\xc7\xbc\xc3\xbd\xb2\xbc\ +\xb7\xac\xb6\xb7\xab\xb5\xb9\xab\xb5\xba\xac\xb3\xbe\xb0\xb7\xc7\ +\xba\xbe\xcd\xc2\xc5\xd4\xc9\xcc\xda\xcf\xd2\xde\xd3\xd6\xe2\xd6\ +\xd8\xe5\xd8\xda\xe6\xda\xda\xe6\xda\xda\xe8\xdb\xdb\xe9\xdc\xdc\ +\xea\xdc\xdd\xeb\xde\xdc\xec\xdf\xde\xed\xe0\xdf\xed\xe0\xe0\xee\ +\xe0\xe0\xef\xe1\xe1\xee\xe2\xe0\xf0\xe2\xe1\xef\xe2\xe0\xee\xe1\ +\xdf\xee\xdf\xdd\xed\xde\xdc\xec\xdd\xdb\xeb\xdc\xda\xeb\xdc\xda\ +\xec\xdc\xd9\xec\xdb\xd9\xed\xdb\xd8\xec\xdb\xd8\xec\xda\xd7\xeb\ +\xd8\xd4\xeb\xd8\xd4\xeb\xd8\xd3\xea\xd7\xd2\xea\xd7\xd2\xeb\xd8\ +\xd3\xeb\xd8\xd3\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd4\xec\xd9\xd5\ +\xeb\xd9\xd6\xea\xd9\xd6\xea\xd9\xd6\xea\xd9\xd7\xe8\xda\xd7\xe8\ +\xda\xd8\xe7\xd9\xd8\xe7\xd9\xd9\xe7\xd9\xd9\xe6\xd8\xd9\xe6\xd8\ +\xd9\xe5\xd7\xd8\xe5\xd7\xd8\xe4\xd6\xd8\xe3\xd6\xd8\xe3\xd6\xd7\ +\xe2\xd4\xd7\xe2\xd5\xd6\xe2\xd4\xd6\xe0\xd4\xd6\xe0\xd3\xd5\xe0\ +\xd3\xd5\xe0\xd3\xd5\xde\xd2\xd5\xdd\xd2\xd5\xdc\xd1\xd6\xdb\xd2\ +\xd8\xdb\xd2\xd8\xdb\xd3\xd9\xdc\xd4\xdc\xdc\xd5\xdc\xdd\xd6\xdd\ +\xde\xd6\xdf\xde\xd6\xe0\xde\xd7\xe0\xdf\xd8\xe1\xdf\xd8\xdf\xe0\ +\xd9\xe0\xe1\xda\xe0\xe1\xda\xe0\xe1\xda\xe1\xe2\xda\xe0\xe2\xdb\ +\xe1\xe2\xdb\xe0\xe4\xdc\xe1\xe5\xdb\xe1\xe6\xdd\xe0\xe7\xde\xe1\ +\xe8\xdd\xe0\xea\xdf\xe1\xeb\xdf\xe1\xec\xdf\xe1\xed\xe1\xe2\xed\ +\xe2\xe2\xed\xe1\xe1\xec\xe0\xe0\xeb\xdf\xdf\xec\xdf\xe0\xeb\xde\ +\xde\xeb\xdd\xde\xe9\xdd\xdd\xe8\xdc\xdc\xe8\xdb\xdd\xe7\xda\xdc\ +\xe6\xdb\xdd\xe7\xdc\xde\xe8\xdd\xdf\xea\xdf\xe1\xeb\xe0\xe2\xeb\ +\xe0\xe2\xeb\xe0\xe2\xea\xe0\xe2\xea\xe0\xe3\xe9\xdf\xe2\xe8\xde\ +\xe1\xe7\xdc\xdf\xe6\xdb\xde\xe5\xda\xdd\xe4\xda\xdd\xe4\xda\xdd\ +\xe3\xda\xdd\xe3\xda\xdd\xe3\xda\xdd\xe3\xd9\xdc\xe3\xd9\xdd\xe2\ +\xd9\xde\x00\x00\x00\xdb\xd6\xdf\xdd\xd7\xde\xde\xd7\xde\xdf\xd8\ +\xdf\xdf\xd7\xde\xe0\xd8\xdf\xe1\xd9\xe0\xe2\xdb\xe0\xe2\xdb\xe0\ +\xe2\xdb\xe0\xe1\xda\xdf\xe3\xda\xde\xe3\xda\xdd\xe4\xdb\xde\xe6\ +\xdb\xde\xe6\xdb\xdd\xe6\xdb\xde\xe6\xdb\xde\xe5\xda\xdd\xe4\xd9\ +\xdc\xe2\xd8\xdb\xe3\xd8\xdb\xe2\xd8\xda\xe1\xd6\xd9\xe0\xd5\xd8\ +\xdd\xd3\xd6\xd7\xce\xd2\xd0\xc6\xcc\xc7\xbd\xc4\xbe\xb3\xbd\xb7\ +\xad\xb7\xb7\xac\xb6\xb8\xab\xb5\xb8\xab\xb3\xbb\xae\xb6\xc3\xb7\ +\xbd\xcb\xbf\xc4\xd3\xc9\xcc\xdb\xd1\xd4\xe0\xd6\xd8\xe3\xd8\xda\ +\xe5\xd8\xda\xe6\xda\xda\xe6\xda\xda\xe7\xdb\xdb\xe8\xdc\xdc\xe9\ +\xdc\xdd\xe9\xdd\xdd\xea\xdd\xde\xec\xdf\xe0\xec\xe0\xe0\xed\xe1\ +\xe1\xed\xe1\xe1\xed\xe0\xe0\xed\xe0\xe0\xec\xdf\xdf\xeb\xdd\xdc\ +\xea\xdc\xdb\xea\xdc\xda\xe9\xdb\xd9\xe9\xdb\xd9\xe9\xda\xd8\xe9\ +\xda\xd8\xe9\xda\xd7\xea\xda\xd7\xe9\xd9\xd6\xe9\xd8\xd5\xe8\xd6\ +\xd3\xe8\xd5\xd2\xe7\xd5\xd2\xe7\xd5\xd2\xe8\xd6\xd3\xe8\xd6\xd3\ +\xe9\xd7\xd4\xea\xd8\xd3\xea\xd8\xd4\xea\xd9\xd6\xe9\xd8\xd5\xe9\ +\xd8\xd5\xe8\xd7\xd5\xe7\xd8\xd6\xe6\xd6\xd6\xe4\xd6\xd7\xe4\xd6\ +\xd7\xe4\xd6\xd7\xe5\xd7\xd8\xe4\xd6\xd7\xe4\xd6\xd7\xe2\xd5\xd6\ +\xe2\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe1\ +\xd4\xd6\xe0\xd2\xd5\xde\xd1\xd4\xde\xd1\xd4\xdc\xd1\xd4\xdc\xd1\ +\xd4\xdc\xd1\xd4\xdb\xd0\xd5\xda\xd0\xd6\xda\xd1\xd7\xda\xd2\xd8\ +\xdb\xd3\xda\xdb\xd5\xdc\xdd\xd6\xdd\xde\xd6\xdf\xde\xd5\xdf\xde\ +\xd7\xe0\xdd\xd8\xe1\xde\xd8\xe1\xdf\xd8\xe1\xe0\xd9\xe0\xe1\xda\ +\xe1\xe0\xd9\xe0\xe0\xda\xe1\xe1\xd9\xe0\xe1\xd9\xe0\xe2\xda\xdf\ +\xe2\xdb\xe0\xe4\xda\xe0\xe6\xdc\xe0\xe6\xdd\xe0\xe8\xdd\xe0\xe9\ +\xde\xe0\xe9\xde\xe0\xec\xdf\xe1\xeb\xde\xe0\xea\xde\xdf\xe9\xdd\ +\xde\xe8\xdb\xdc\xe6\xd9\xda\xe6\xd8\xd9\xe5\xd7\xd8\xe4\xd6\xd7\ +\xe3\xd6\xd7\xe2\xd5\xd7\xe2\xd5\xd7\xe1\xd3\xd6\xe0\xd4\xd7\xe2\ +\xd7\xda\xe4\xd9\xdb\xe7\xdc\xde\xe9\xde\xe0\xea\xdf\xe1\xea\xdf\ +\xe1\xea\xdf\xe1\xe9\xde\xe0\xe8\xdd\xe0\xe6\xdb\xde\xe5\xda\xdd\ +\xe4\xd9\xdc\xe3\xd8\xdb\xe3\xd8\xdb\xe4\xd9\xdc\xe1\xd9\xdb\xe2\ +\xd9\xdd\xe2\xd9\xde\xe2\xd9\xdd\xe2\xd9\xde\xe1\xd9\xdf\x00\x00\ +\x00\xd8\xd3\xdc\xda\xd4\xdd\xdc\xd5\xdd\xdc\xd5\xdc\xdf\xd8\xdf\ +\xe1\xd9\xe0\xe0\xda\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe3\xdc\xe1\xe4\ +\xdc\xe0\xe5\xdc\xde\xe5\xdc\xdf\xe5\xdc\xdf\xe6\xdd\xe0\xe7\xdd\ +\xe0\xe8\xdd\xe0\xe7\xdd\xdf\xe7\xdc\xde\xe5\xda\xdd\xe5\xda\xdd\ +\xe4\xd9\xdc\xe3\xd8\xdb\xe2\xd7\xda\xe1\xd6\xd9\xe0\xd5\xd8\xdc\ +\xd2\xd5\xd7\xcd\xd2\xcf\xc5\xcb\xc7\xbc\xc4\xbe\xb3\xbd\xb9\xad\ +\xb9\xb7\xab\xb7\xb4\xa9\xb4\xb3\xa8\xb2\xb8\xad\xb5\xc1\xb6\xbe\ +\xcb\xc1\xc7\xd5\xcb\xd0\xdd\xd3\xd6\xe1\xd6\xd9\xe3\xd8\xda\xe3\ +\xd7\xda\xe4\xd8\xda\xe6\xd9\xda\xe6\xd9\xdb\xe6\xda\xdb\xe7\xdb\ +\xdd\xe8\xdc\xde\xe9\xdd\xdf\xe9\xde\xe1\xeb\xdf\xe1\xec\xe0\xe2\ +\xec\xe0\xe1\xec\xdf\xe0\xeb\xde\xdf\xe9\xdd\xdd\xe8\xdb\xdb\xe7\ +\xda\xdb\xe6\xd9\xdb\xe6\xd8\xda\xe6\xd8\xda\xe6\xd8\xd8\xe6\xd8\ +\xd8\xe6\xd7\xd6\xe6\xd7\xd6\xe6\xd5\xd3\xe5\xd4\xd2\xe4\xd3\xd1\ +\xe3\xd2\xcf\xe3\xd2\xd0\xe4\xd3\xd0\xe5\xd4\xd1\xe5\xd4\xd1\xe7\ +\xd6\xd3\xe7\xd6\xd3\xe7\xd6\xd3\xe6\xd5\xd3\xe6\xd5\xd4\xe5\xd6\ +\xd4\xe4\xd5\xd4\xe2\xd3\xd4\xe1\xd3\xd4\xe1\xd3\xd4\xe1\xd3\xd5\ +\xe1\xd4\xd5\xe1\xd3\xd5\xe0\xd3\xd5\xdf\xd2\xd4\xde\xd2\xd4\xde\ +\xd2\xd5\xdf\xd3\xd6\xde\xd4\xd5\xde\xd2\xd5\xdd\xd2\xd5\xdd\xd2\ +\xd5\xdb\xd0\xd4\xda\xcf\xd2\xdb\xd0\xd3\xd9\xcf\xd4\xd9\xcf\xd3\ +\xd8\xce\xd4\xd8\xce\xd5\xd7\xcf\xd7\xd9\xd1\xd8\xdb\xd3\xda\xdc\ +\xd5\xdc\xdd\xd6\xdd\xde\xd7\xdd\xde\xd6\xdf\xde\xd8\xe0\xdd\xd9\ +\xe2\xde\xd9\xe2\xdf\xda\xe2\xe0\xda\xe1\xe0\xda\xe0\xe0\xd9\xe1\ +\xe0\xd9\xe1\xe0\xd9\xe0\xdf\xd8\xe0\xe1\xd9\xe0\xe1\xda\xe0\xe2\ +\xdb\xdf\xe4\xdb\xe0\xe5\xdc\xdf\xe7\xdc\xdf\xe7\xdc\xe0\xe9\xde\ +\xe0\xe9\xdd\xdf\xe8\xdb\xdd\xe6\xd9\xdb\xe4\xd7\xd9\xe1\xd4\xd6\ +\xe0\xd3\xd5\xdd\xd0\xd2\xdc\xce\xd0\xdc\xce\xd0\xda\xcc\xce\xd8\ +\xcb\xcd\xd8\xcb\xce\xd8\xcb\xce\xd9\xca\xce\xdb\xce\xd1\xde\xd2\ +\xd5\xe2\xd7\xd9\xe6\xdb\xdd\xea\xdd\xdf\xeb\xde\xe0\xe9\xdd\xdf\ +\xe8\xdc\xde\xe6\xdb\xdd\xe5\xda\xdc\xe4\xd9\xdc\xe2\xd7\xda\xe1\ +\xd7\xda\xe2\xd7\xda\xe1\xd7\xda\xe0\xd7\xdb\xe1\xd7\xdd\xe2\xd8\ +\xde\xe2\xd9\xde\xe1\xda\xde\xe0\xd9\xde\x00\x00\x00\xd6\xd2\xdb\ +\xd8\xd2\xdb\xdb\xd4\xdc\xdd\xd6\xdd\xde\xd7\xde\xe0\xd9\xe0\xe2\ +\xda\xe1\xe3\xdc\xe1\xe4\xdd\xe2\xe4\xdd\xe2\xe4\xdd\xe0\xe5\xdd\ +\xe0\xe5\xdc\xdf\xe5\xdc\xdf\xe7\xdd\xdf\xe8\xdd\xe0\xe9\xde\xe0\ +\xe8\xdd\xdf\xe7\xdc\xdf\xe7\xdc\xdf\xe6\xdb\xde\xe4\xda\xdd\xe4\ +\xd9\xdc\xe3\xd8\xdb\xe1\xd7\xda\xe1\xd6\xd9\xde\xd4\xd7\xdb\xd1\ +\xd5\xd5\xcb\xd1\xce\xc4\xcb\xc7\xbd\xc5\xbf\xb4\xbe\xb9\xae\xba\ +\xb4\xa8\xb4\xb2\xa7\xb3\xb2\xa7\xb2\xb7\xac\xb6\xc2\xb7\xbf\xcd\ +\xc3\xc9\xd5\xcd\xd1\xdd\xd2\xd6\xe1\xd6\xd9\xe1\xd6\xd9\xe2\xd7\ +\xd9\xe2\xd7\xda\xe3\xd8\xdb\xe4\xd9\xdb\xe4\xda\xdc\xe6\xdb\xdd\ +\xe6\xdc\xdf\xe8\xde\xe1\xe9\xde\xe0\xe9\xdf\xe1\xea\xdf\xe1\xea\ +\xdf\xe1\xe9\xde\xdf\xe9\xdc\xde\xe6\xdb\xdc\xe6\xd9\xdb\xe5\xd9\ +\xda\xe5\xd9\xda\xe5\xd8\xd9\xe5\xd8\xd9\xe4\xd7\xd9\xe4\xd6\xd7\ +\xe4\xd5\xd6\xe4\xd5\xd4\xe2\xd3\xd1\xe1\xd1\xd1\xe0\xd1\xd0\xe0\ +\xd1\xd0\xe0\xd1\xd0\xe1\xd1\xd0\xe3\xd3\xd1\xe4\xd4\xd2\xe4\xd4\ +\xd2\xe4\xd4\xd3\xe3\xd3\xd2\xe2\xd4\xd2\xe2\xd3\xd3\xe0\xd2\xd3\ +\xdf\xd1\xd3\xde\xd1\xd3\xde\xd1\xd3\xdd\xd1\xd3\xdd\xd1\xd4\xde\ +\xd2\xd4\xdc\xd1\xd4\xda\xd0\xd3\xda\xcf\xd3\xda\xd0\xd4\xdb\xd0\ +\xd5\xdc\xd2\xd6\xdc\xd1\xd6\xdb\xd1\xd6\xda\xd0\xd5\xd9\xce\xd5\ +\xd7\xce\xd3\xd7\xce\xd3\xd6\xce\xd4\xd5\xcd\xd3\xd5\xce\xd4\xd5\ +\xcd\xd4\xd7\xcf\xd6\xd8\xd1\xd8\xdb\xd4\xdb\xdb\xd5\xdc\xdd\xd6\ +\xdd\xde\xd7\xde\xde\xd8\xdf\xdf\xd8\xe2\xde\xd9\xe2\xde\xd9\xe2\ +\xdf\xda\xe2\xe0\xda\xe2\xdf\xdb\xe1\xe0\xd8\xe2\xdf\xd8\xe1\xdf\ +\xd8\xe1\xdf\xd9\xe0\xe0\xd9\xdf\xe1\xda\xdf\xe2\xdb\xe0\xe4\xdb\ +\xdf\xe4\xdb\xdf\xe6\xdc\xdf\xe7\xdc\xdf\xe8\xdd\xdf\xe7\xdc\xde\ +\xe5\xd9\xdb\xe1\xd5\xd7\xdd\xd1\xd4\xda\xce\xd1\xd7\xcb\xce\xd5\ +\xc7\xcb\xd2\xc4\xc7\xcf\xc1\xc4\xce\xc0\xc3\xce\xc0\xc4\xce\xc0\ +\xc5\xce\xc0\xc4\xcf\xc1\xc6\xd3\xc5\xc9\xd9\xcb\xcf\xde\xd1\xd4\ +\xe2\xd6\xd8\xe7\xda\xdc\xe8\xdc\xde\xe9\xdc\xde\xe8\xdb\xdd\xe5\ +\xda\xdc\xe3\xd8\xdb\xe2\xd7\xda\xe2\xd7\xda\xe1\xd7\xda\xe0\xd7\ +\xda\xdf\xd5\xd9\xdf\xd5\xdc\xe0\xd6\xdc\xe0\xd6\xdc\xdf\xd7\xdc\ +\xde\xd7\xdc\xdf\xd8\xdd\x00\x00\x00\xd5\xd1\xdb\xd7\xd2\xdb\xda\ +\xd3\xdc\xdc\xd5\xdc\xdd\xd6\xdd\xe0\xd8\xdf\xe1\xda\xe0\xe3\xdc\ +\xe1\xe3\xdd\xe2\xe4\xdc\xe2\xe5\xdd\xe0\xe6\xdd\xe0\xe6\xdd\xe0\ +\xe8\xdd\xdf\xe8\xdd\xe0\xe9\xde\xe1\xe9\xde\xe0\xe9\xde\xe0\xe8\ +\xdd\xdf\xe7\xdc\xdf\xe6\xdc\xdf\xe6\xdb\xde\xe5\xd9\xdc\xe3\xd8\ +\xdb\xe2\xd7\xda\xdf\xd6\xd9\xde\xd4\xd8\xdc\xd2\xd8\xd9\xcf\xd5\ +\xd4\xca\xd0\xce\xc4\xcb\xc6\xbd\xc5\xbd\xb4\xbe\xb6\xac\xb8\xb2\ +\xa8\xb4\xb1\xa7\xb4\xb1\xa8\xb3\xb7\xae\xb8\xc2\xb9\xc1\xcc\xc4\ +\xcb\xd4\xcc\xd2\xdb\xd2\xd7\xdf\xd5\xd9\xdf\xd6\xd9\xdf\xd6\xdb\ +\xe1\xd7\xdc\xe1\xd8\xdb\xe3\xd9\xdd\xe4\xdb\xde\xe6\xdc\xdf\xe6\ +\xdd\xe0\xe7\xde\xe0\xe8\xde\xe1\xe8\xdf\xe2\xe8\xdf\xe0\xe8\xdd\ +\xe0\xe6\xdb\xde\xe5\xda\xdc\xe4\xd9\xdb\xe3\xd8\xda\xe3\xd8\xdb\ +\xe4\xd8\xda\xe3\xd8\xda\xe2\xd7\xd8\xe2\xd5\xd7\xe1\xd4\xd6\xe1\ +\xd4\xd5\xdf\xd1\xd2\xde\xd0\xd1\xdd\xcf\xd1\xdd\xcf\xd0\xdd\xcf\ +\xd0\xde\xd0\xd0\xdf\xd1\xd1\xe0\xd1\xd2\xe0\xd2\xd2\xe0\xd2\xd2\ +\xdf\xd1\xd1\xdf\xd1\xd2\xdf\xd1\xd2\xde\xd1\xd2\xdc\xd0\xd3\xda\ +\xcf\xd2\xdb\xd0\xd3\xda\xcf\xd3\xd9\xcf\xd3\xda\xce\xd4\xd8\xce\ +\xd3\xd8\xce\xd4\xd7\xcd\xd3\xd7\xcf\xd5\xd8\xcf\xd5\xd8\xd0\xd6\ +\xd9\xd1\xd6\xd9\xd0\xd6\xd8\xd0\xd6\xd7\xce\xd4\xd5\xcd\xd3\xd5\ +\xce\xd3\xd4\xcc\xd3\xd5\xcd\xd4\xd5\xcd\xd3\xd5\xcd\xd4\xd7\xcf\ +\xd6\xd8\xd1\xd8\xda\xd3\xda\xdc\xd5\xdc\xdd\xd6\xdd\xde\xd7\xde\ +\xdf\xd8\xe0\xdf\xd9\xe1\xdf\xd9\xe2\xdf\xda\xe3\xe0\xdb\xe3\xdf\ +\xdb\xe2\xdf\xd9\xe2\xdd\xd7\xe1\xdd\xd7\xe1\xdf\xd7\xe1\xdf\xd8\ +\xdf\xe0\xd9\xe0\xe1\xda\xe0\xe2\xda\xdf\xe4\xda\xe0\xe4\xda\xdf\ +\xe5\xdb\xde\xe7\xdc\xdf\xe6\xdb\xde\xe4\xd9\xdc\xe1\xd6\xd8\xdc\ +\xd1\xd3\xd6\xcb\xcf\xd0\xc5\xcb\xcc\xc0\xc6\xc9\xbc\xc2\xc3\xb5\ +\xbc\xc1\xb3\xba\xc1\xb3\xba\xc0\xb3\xba\xbe\xb2\xba\xc0\xb3\xbc\ +\xc3\xb6\xbe\xc8\xbc\xc1\xd0\xc1\xc6\xd7\xc9\xcd\xde\xd0\xd3\xe3\ +\xd6\xd8\xe6\xd9\xdb\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd9\xdb\xe2\xd7\ +\xdb\xe2\xd7\xda\xe0\xd6\xda\xdf\xd5\xd8\xdf\xd5\xd8\xdf\xd4\xd7\ +\xdd\xd3\xd8\xdc\xd2\xd8\xdc\xd2\xd8\xdb\xd3\xd8\xdb\xd4\xd9\xdc\ +\xd5\xda\x00\x00\x00\xd4\xd0\xdb\xd6\xd1\xda\xd8\xd2\xdb\xdb\xd4\ +\xdc\xdd\xd6\xdd\xde\xd8\xde\xe1\xd9\xe0\xe3\xdc\xe1\xe4\xdd\xe2\ +\xe5\xdc\xe1\xe7\xde\xe0\xe7\xde\xe1\xe7\xde\xe1\xe8\xdf\xe2\xea\ +\xde\xe1\xea\xdf\xe2\xeb\xe0\xe3\xe9\xdf\xe1\xea\xdf\xe1\xe9\xde\ +\xe1\xe7\xdd\xe0\xe6\xdd\xe0\xe5\xdc\xdf\xe3\xda\xdd\xe1\xd8\xdb\ +\xe0\xd6\xdb\xde\xd4\xda\xdd\xd3\xd9\xdc\xd2\xd8\xda\xd0\xd6\xd4\ +\xcb\xd1\xcd\xc5\xcc\xc5\xbc\xc6\xbc\xb2\xbe\xb5\xab\xb7\xb2\xa9\ +\xb7\xb1\xa9\xb6\xb1\xa8\xb4\xb6\xae\xb9\xc0\xb8\xc2\xcb\xc3\xcb\ +\xd4\xcc\xd2\xd9\xd2\xd8\xdd\xd6\xdb\xdd\xd6\xdb\xde\xd6\xdb\xdf\ +\xd8\xde\xe0\xd9\xde\xe2\xdb\xe0\xe3\xdc\xe0\xe5\xdc\xe2\xe5\xdd\ +\xe1\xe5\xde\xe0\xe7\xdd\xe0\xe6\xdd\xe0\xe5\xdc\xdf\xe3\xdb\xde\ +\xe3\xd9\xdc\xe1\xd8\xdb\xe1\xd7\xdb\xe1\xd7\xdb\xe0\xd8\xdb\xe1\ +\xd7\xda\xe0\xd5\xd8\xe0\xd5\xd8\xe0\xd4\xd6\xde\xd3\xd5\xdd\xd0\ +\xd2\xdb\xcf\xd1\xdb\xce\xd1\xda\xcd\xd0\xda\xcd\xd1\xdb\xce\xd0\ +\xdc\xd0\xd2\xdd\xd0\xd2\xde\xd0\xd3\xde\xd1\xd2\xdd\xd0\xd2\xdd\ +\xcf\xd1\xdd\xcf\xd2\xdb\xd0\xd3\xd9\xcf\xd2\xd8\xce\xd3\xd7\xcd\ +\xd3\xd6\xcc\xd3\xd6\xcc\xd2\xd5\xcd\xd4\xd6\xce\xd3\xd5\xcd\xd4\ +\xd4\xcc\xd3\xd6\xce\xd5\xd6\xce\xd5\xd7\xcf\xd6\xd7\xcf\xd6\xd8\ +\xd0\xd7\xd7\xcf\xd6\xd6\xce\xd5\xd5\xcd\xd4\xd3\xcc\xd3\xd3\xcc\ +\xd4\xd3\xcc\xd4\xd4\xcc\xd5\xd5\xce\xd5\xd7\xd0\xd7\xd8\xd1\xd9\ +\xda\xd3\xda\xdb\xd4\xdb\xdc\xd5\xdc\xde\xd6\xdf\xdf\xd8\xe0\xde\ +\xd9\xe2\xdf\xda\xe3\xe0\xdb\xe3\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xda\ +\xe3\xdf\xd9\xe2\xdd\xd8\xe1\xde\xd8\xe0\xe0\xd9\xe1\xe1\xda\xe1\ +\xe2\xdb\xe0\xe1\xdb\xdf\xe4\xd9\xdf\xe3\xda\xde\xe5\xdb\xdd\xe5\ +\xda\xdd\xe5\xda\xdd\xe2\xd7\xda\xde\xd3\xd6\xd6\xcb\xd1\xcf\xc4\ +\xcb\xc7\xbc\xc6\xc0\xb7\xc1\xb8\xae\xb9\xb3\xa9\xb5\xb2\xa7\xb3\ +\xb2\xa7\xb3\xb0\xa7\xb3\xaf\xa5\xb2\xb0\xa6\xb3\xb5\xab\xb7\xbd\ +\xb1\xbc\xc6\xb9\xc0\xce\xc1\xc5\xd7\xc9\xcc\xdd\xd0\xd2\xe1\xd4\ +\xd6\xe3\xd6\xd8\xe3\xd7\xd9\xe3\xd8\xda\xe2\xd7\xda\xe1\xd6\xd9\ +\xdf\xd4\xd7\xde\xd4\xd6\xdd\xd2\xd5\xda\xd0\xd3\xda\xcf\xd3\xd8\ +\xce\xd4\xd9\xce\xd4\xd6\xcf\xd5\xd8\xd0\xd6\xda\xd2\xd9\x00\x00\ +\x00\xd3\xcf\xda\xd4\xd0\xda\xd6\xd1\xda\xd9\xd2\xdb\xdc\xd4\xdc\ +\xde\xd7\xde\xdf\xd8\xdf\xe2\xdb\xe0\xe3\xdc\xe1\xe5\xdc\xe1\xe6\ +\xdd\xe1\xe7\xde\xe1\xe8\xdf\xe2\xe8\xdf\xe2\xe9\xe0\xe3\xea\xe0\ +\xe3\xe9\xe0\xe3\xe9\xdf\xe2\xe9\xdf\xe2\xe8\xdf\xe2\xe8\xdf\xe2\ +\xe7\xde\xe1\xe6\xdd\xe0\xe5\xdc\xdf\xe3\xda\xdd\xe1\xd8\xdd\xe0\ +\xd6\xdc\xdf\xd5\xdb\xdd\xd4\xda\xdc\xd3\xd8\xd8\xd0\xd6\xd3\xcc\ +\xd2\xcd\xc5\xcd\xc5\xbd\xc7\xbb\xb3\xbf\xb4\xad\xb9\xb1\xaa\xb8\ +\xae\xa8\xb7\xae\xa7\xb5\xb4\xad\xb9\xbf\xb8\xc3\xca\xc2\xcc\xd3\ +\xcc\xd4\xda\xd2\xd9\xdc\xd5\xdc\xdd\xd6\xdd\xde\xd7\xdd\xe0\xd8\ +\xde\xe2\xdb\xe0\xe3\xdc\xe1\xe3\xdd\xe2\xe3\xdc\xe2\xe3\xdc\xe2\ +\xe3\xdc\xe1\xe3\xdb\xdf\xe3\xda\xdf\xe2\xd9\xde\xe1\xd8\xde\xe0\ +\xd8\xdd\xe0\xd8\xdd\xdf\xd7\xdc\xde\xd7\xdc\xdd\xd6\xdb\xde\xd6\ +\xdb\xde\xd4\xd9\xdd\xd4\xd8\xdc\xd2\xd6\xdb\xd0\xd4\xd9\xcf\xd2\ +\xd8\xcd\xd1\xd7\xcc\xd2\xd7\xcd\xd1\xd9\xce\xd2\xd9\xcd\xd2\xda\ +\xcf\xd2\xdb\xcf\xd2\xdb\xcf\xd2\xdb\xcf\xd2\xda\xce\xd2\xd9\xcf\ +\xd3\xd9\xcf\xd3\xd6\xcd\xd3\xd6\xcd\xd3\xd5\xcd\xd3\xd5\xcd\xd4\ +\xd4\xcd\xd4\xd4\xcd\xd4\xd4\xcd\xd4\xd5\xcd\xd5\xd5\xce\xd5\xd5\ +\xcd\xd5\xd5\xce\xd5\xd5\xce\xd5\xd6\xce\xd5\xd6\xce\xd5\xd5\xce\ +\xd6\xd4\xcd\xd5\xd3\xcc\xd5\xd2\xcb\xd4\xd3\xcb\xd5\xd4\xcc\xd6\ +\xd5\xcd\xd7\xd6\xce\xd8\xd8\xd1\xd8\xd8\xd1\xd8\xda\xd3\xda\xda\ +\xd3\xda\xdb\xd4\xdc\xdc\xd4\xde\xdd\xd6\xe0\xdd\xd9\xe1\xde\xd9\ +\xe2\xde\xd9\xe2\xe0\xda\xe3\xe0\xda\xe3\xe0\xd9\xe3\xdf\xda\xe2\ +\xdf\xda\xe1\xe0\xda\xe1\xe1\xda\xe1\xe2\xdb\xe1\xe2\xdb\xe0\xe3\ +\xda\xe0\xe2\xd9\xde\xe3\xd9\xde\xe4\xda\xdc\xe4\xd9\xdc\xe2\xd7\ +\xda\xde\xd4\xd7\xd7\xcd\xd2\xd1\xc7\xcd\xc7\xbd\xc7\xbf\xb5\xc1\ +\xb6\xad\xb9\xaf\xa5\xb2\xac\xa3\xb0\xac\xa3\xb1\xab\xa2\xb0\xaa\ +\xa2\xaf\xaa\xa2\xaf\xab\xa2\xaf\xac\xa4\xb1\xb2\xa9\xb5\xbc\xb0\ +\xbb\xc5\xb9\xc0\xcf\xc1\xc6\xd6\xc8\xcb\xdb\xce\xd1\xdf\xd2\xd5\ +\xe2\xd5\xd8\xe2\xd7\xda\xe1\xd6\xd9\xde\xd3\xd6\xdc\xd1\xd4\xda\ +\xcf\xd2\xd9\xce\xd1\xd7\xcb\xd0\xd4\xc9\xcf\xd3\xc9\xcf\xd2\xc9\ +\xd0\xd2\xca\xd2\xd4\xcc\xd3\xd7\xcf\xd7\x00\x00\x00\xd2\xce\xd9\ +\xd3\xcf\xda\xd5\xcf\xd9\xd7\xd1\xdb\xda\xd3\xdb\xdc\xd5\xdc\xde\ +\xd7\xde\xe0\xd9\xdf\xe1\xda\xdf\xe4\xda\xe0\xe5\xdc\xe0\xe6\xdd\ +\xe0\xe8\xdf\xe2\xe9\xe0\xe3\xea\xe1\xe4\xe9\xe0\xe3\xea\xe1\xe4\ +\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe3\xe8\xdf\xe2\xe8\ +\xdf\xe2\xe7\xde\xe2\xe5\xdc\xe0\xe4\xdb\xe0\xe2\xd9\xdf\xe0\xd8\ +\xdd\xde\xd6\xdb\xdd\xd6\xdb\xda\xd3\xd8\xd8\xd0\xd6\xd3\xcb\xd3\ +\xcd\xc5\xcf\xc5\xbe\xc8\xbd\xb6\xc2\xb4\xae\xbd\xaf\xaa\xba\xac\ +\xa8\xb8\xac\xa6\xb5\xb3\xad\xba\xbf\xb9\xc4\xcb\xc5\xcf\xd3\xcd\ +\xd6\xda\xd3\xdb\xdd\xd6\xdd\xdd\xd6\xdd\xdf\xd8\xdf\xe0\xd9\xe0\ +\xe2\xdb\xe1\xe3\xdc\xe2\xe3\xdc\xe2\xe2\xdc\xe2\xe2\xdc\xe1\xe0\ +\xd9\xdf\xe0\xd8\xde\xdf\xd8\xde\xdf\xd8\xdd\xdf\xd8\xde\xdf\xd7\ +\xdd\xde\xd7\xdc\xdd\xd5\xdb\xdc\xd5\xdb\xdc\xd4\xda\xdc\xd4\xda\ +\xdb\xd3\xda\xda\xd1\xd8\xd9\xd0\xd6\xd7\xcf\xd5\xd5\xcc\xd3\xd5\ +\xcc\xd3\xd5\xcd\xd3\xd6\xce\xd4\xd6\xcd\xd3\xd7\xce\xd3\xd8\xcf\ +\xd4\xd8\xcf\xd4\xd8\xce\xd4\xd7\xce\xd3\xd7\xce\xd4\xd7\xce\xd4\ +\xd6\xce\xd4\xd4\xce\xd4\xd4\xcd\xd3\xd4\xcc\xd4\xd4\xcd\xd5\xd4\ +\xcd\xd6\xd5\xce\xd6\xd5\xce\xd8\xd5\xce\xd8\xd5\xcf\xd8\xd5\xce\ +\xd7\xd4\xcd\xd6\xd5\xcd\xd5\xd5\xcd\xd6\xd5\xcd\xd6\xd4\xcc\xd5\ +\xd3\xcb\xd5\xd3\xcb\xd5\xd4\xcc\xd6\xd5\xcd\xd7\xd6\xce\xd7\xd6\ +\xcf\xd6\xd8\xd1\xd8\xd8\xd1\xd8\xd8\xd1\xd8\xda\xd3\xda\xdb\xd3\ +\xdc\xdb\xd4\xde\xdb\xd6\xdf\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\ +\xdf\xd9\xe3\xe0\xd9\xe3\xe0\xd9\xe3\xe0\xda\xe1\xe1\xda\xe2\xe2\ +\xdb\xe2\xe2\xdb\xe2\xe3\xdc\xe2\xe3\xdc\xe1\xe3\xda\xe0\xe2\xd9\ +\xdd\xe3\xd9\xdc\xe4\xd9\xdc\xe3\xd8\xdb\xe0\xd5\xd8\xda\xd0\xd4\ +\xd3\xc9\xcf\xc9\xc0\xc9\xbf\xb6\xc2\xb7\xad\xbb\xaf\xa6\xb5\xab\ +\xa2\xb0\xa9\xa1\xaf\xa8\xa1\xaf\xa8\xa1\xaf\xa8\xa0\xae\xa7\xa0\ +\xaf\xa7\xa0\xae\xa7\xa1\xaf\xaa\xa2\xb1\xb2\xa8\xb5\xbc\xb1\xbb\ +\xc6\xb9\xc0\xcf\xc1\xc6\xd6\xc9\xcc\xdb\xce\xd1\xdf\xd3\xd6\xe0\ +\xd5\xd8\xde\xd3\xd6\xdc\xd1\xd4\xd9\xce\xd1\xd7\xcb\xce\xd3\xc8\ +\xcb\xd1\xc5\xcb\xcd\xc2\xc8\xca\xc1\xc9\xc9\xc1\xca\xcb\xc4\xcf\ +\xcf\xc8\xd2\xd5\xcd\xd6\x00\x00\x00\xd2\xce\xd9\xd2\xce\xd9\xd2\ +\xce\xd8\xd5\xd0\xd9\xd7\xd1\xda\xda\xd3\xda\xdc\xd5\xdc\xdf\xd7\ +\xdd\xdf\xd8\xdd\xe1\xd9\xde\xe5\xdb\xe0\xe6\xdd\xe0\xe7\xde\xe1\ +\xea\xe1\xe4\xea\xe1\xe4\xea\xe1\xe4\xeb\xe2\xe5\xe9\xe0\xe3\xe9\ +\xe0\xe3\xe9\xe1\xe4\xea\xe0\xe4\xea\xdf\xe5\xe8\xe0\xe5\xe7\xdf\ +\xe4\xe7\xdd\xe3\xe5\xdc\xe2\xe3\xdb\xe0\xe1\xda\xdf\xdf\xd8\xdd\ +\xdf\xd8\xdc\xdc\xd5\xdb\xda\xd2\xd9\xd8\xd1\xd7\xd4\xcc\xd6\xce\ +\xc9\xd2\xc7\xc1\xcd\xbd\xb8\xc4\xb4\xb0\xbe\xaf\xac\xbc\xad\xa9\ +\xb9\xac\xa7\xb7\xb4\xaf\xbc\xc1\xbb\xc6\xcd\xc7\xd0\xd4\xce\xd7\ +\xdb\xd5\xdc\xdf\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe1\xe3\ +\xdc\xe3\xe3\xdc\xe2\xe2\xdb\xe2\xe0\xda\xe0\xdf\xd8\xdf\xde\xd6\ +\xdd\xde\xd7\xdd\xde\xd7\xde\xde\xd7\xdd\xde\xd7\xde\xdc\xd5\xdc\ +\xdc\xd5\xdc\xdc\xd5\xdb\xdb\xd3\xdb\xdb\xd4\xdb\xda\xd3\xda\xd9\ +\xd2\xd8\xd8\xd0\xd8\xd6\xcf\xd6\xd6\xcd\xd4\xd4\xcd\xd4\xd5\xcd\ +\xd4\xd5\xce\xd4\xd5\xcd\xd4\xd5\xce\xd4\xd5\xce\xd4\xd6\xce\xd4\ +\xd6\xcf\xd5\xd6\xce\xd5\xd5\xce\xd5\xd7\xce\xd5\xd6\xce\xd5\xd5\ +\xce\xd5\xd4\xcd\xd5\xd5\xce\xd5\xd5\xce\xd7\xd5\xce\xd7\xd4\xce\ +\xd7\xd4\xcf\xd8\xd5\xcf\xd8\xd4\xcf\xd8\xd3\xce\xd7\xd3\xce\xd7\ +\xd3\xcc\xd5\xd3\xcc\xd6\xd4\xcd\xd7\xd4\xcc\xd6\xd4\xcc\xd6\xd4\ +\xcc\xd6\xd5\xcd\xd7\xd5\xce\xd8\xd5\xcd\xd7\xd6\xce\xd8\xd7\xd0\ +\xd7\xd8\xd0\xda\xd9\xd0\xda\xd9\xd2\xda\xd9\xd3\xdc\xd9\xd4\xdd\ +\xda\xd5\xde\xdc\xd7\xe0\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\xde\ +\xd8\xe2\xde\xd8\xe1\xdf\xd8\xe0\xdf\xd8\xe0\xe0\xd9\xe0\xe1\xd9\ +\xe0\xe2\xda\xe0\xe2\xdb\xdf\xe3\xdb\xdf\xe3\xd9\xdc\xe4\xd9\xdc\ +\xe3\xd8\xdb\xe1\xd6\xd9\xdc\xd1\xd4\xd5\xca\xd0\xcd\xc2\xca\xc3\ +\xba\xc4\xb7\xae\xbb\xb0\xa6\xb6\xa9\xa2\xb1\xa8\xa1\xaf\xa7\xa0\ +\xaf\xa8\xa1\xb0\xa5\x9f\xae\xa6\x9f\xae\xa6\x9f\xad\xa6\x9f\xae\ +\xa6\x9f\xad\xa7\xa0\xae\xab\xa3\xb1\xb4\xab\xb7\xbf\xb3\xbc\xc7\ +\xbb\xc2\xd0\xc4\xc9\xd6\xcb\xcf\xdb\xd0\xd3\xdb\xd0\xd3\xdb\xcf\ +\xd2\xda\xcc\xd0\xd7\xc9\xcd\xd2\xc6\xc9\xcd\xc2\xc7\xc8\xbe\xc5\ +\xc2\xb9\xc2\xbf\xb6\xc1\xbe\xb7\xc3\xc4\xbe\xca\xcb\xc5\xcf\xd4\ +\xcd\xd6\x00\x00\x00\xd2\xce\xd9\xd2\xce\xd9\xd2\xcd\xd8\xd3\xce\ +\xd9\xd5\xcf\xd9\xd8\xd1\xd9\xda\xd3\xda\xdd\xd6\xdc\xde\xd7\xdc\ +\xe0\xd9\xde\xe3\xdb\xe1\xe5\xdc\xe1\xe7\xdd\xe3\xe9\xe0\xe4\xeb\ +\xe1\xe4\xea\xe1\xe4\xeb\xe2\xe5\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe1\ +\xe3\xe7\xe1\xe4\xe7\xe1\xe5\xe7\xe1\xe5\xe8\xe0\xe5\xe6\xdf\xe4\ +\xe5\xde\xe3\xe4\xdd\xe2\xe2\xdb\xe0\xe1\xda\xdf\xe0\xd9\xde\xde\ +\xd6\xdd\xdc\xd4\xdb\xdb\xd4\xdb\xd9\xd2\xdb\xd6\xd1\xda\xd0\xcb\ +\xd5\xc6\xc2\xcd\xbc\xb8\xc5\xb5\xb1\xc0\xb1\xac\xbb\xad\xa8\xb8\ +\xae\xa9\xb8\xb6\xb1\xbe\xc3\xbd\xc8\xcd\xc8\xd1\xd7\xd0\xd8\xdc\ +\xd5\xdc\xe0\xd9\xe0\xe1\xda\xe1\xe0\xd9\xe0\xe2\xdb\xe2\xe2\xdb\ +\xe2\xe2\xdb\xe2\xe0\xd9\xe0\xdf\xd8\xdf\xde\xd7\xde\xdd\xd6\xdd\ +\xdd\xd6\xde\xdd\xd7\xde\xdd\xd7\xde\xdd\xd8\xdf\xdd\xd6\xdd\xdb\ +\xd5\xdd\xd9\xd4\xdd\xda\xd3\xdd\xda\xd2\xdc\xd8\xd2\xdc\xd8\xd1\ +\xda\xd7\xd0\xd9\xd7\xcf\xd8\xd6\xcf\xd8\xd6\xce\xd8\xd7\xcf\xd8\ +\xd5\xcf\xd8\xd5\xcf\xd7\xd5\xce\xd7\xd5\xcf\xd7\xd6\xcf\xd7\xd6\ +\xcf\xd7\xd8\xd0\xd8\xd8\xd0\xd8\xd8\xd1\xd8\xd7\xd0\xd7\xd7\xd0\ +\xd7\xd6\xcf\xd8\xd5\xd0\xd9\xd5\xd0\xd9\xd4\xd0\xd9\xd5\xd0\xd9\ +\xd4\xd0\xd9\xd4\xd0\xd9\xd4\xcf\xd8\xd2\xcc\xd6\xd1\xcd\xd5\xd1\ +\xcc\xd5\xd3\xcc\xd5\xd4\xcd\xd6\xd4\xcc\xd6\xd4\xce\xd7\xd5\xce\ +\xd7\xd5\xcd\xd7\xd6\xce\xd8\xd7\xcf\xd9\xd7\xcf\xd9\xd7\xcf\xd9\ +\xd8\xd1\xda\xd8\xd2\xdc\xd9\xd4\xdd\xd9\xd4\xdd\xdb\xd6\xdf\xdd\ +\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd6\ +\xdf\xdc\xd4\xde\xdc\xd4\xdd\xdc\xd5\xdd\xdc\xd5\xdc\xdd\xd5\xdc\ +\xdf\xd7\xdc\xe2\xd8\xdc\xe3\xd8\xdb\xe3\xd8\xdb\xe3\xd7\xd9\xdf\ +\xd3\xd5\xd9\xce\xd1\xd1\xc6\xcc\xc8\xbe\xc6\xbd\xb3\xbe\xb2\xa8\ +\xb6\xab\xa3\xb1\xa8\xa1\xb0\xa6\x9f\xaf\xa6\x9f\xae\xa5\x9e\xad\ +\xa5\x9f\xae\xa5\x9e\xad\xa5\x9e\xad\xa5\x9e\xad\xa5\x9e\xad\xa6\ +\x9f\xae\xa6\x9f\xae\xae\xa5\xb2\xb7\xae\xb9\xc2\xb6\xbf\xca\xbf\ +\xc6\xd1\xc6\xcb\xd3\xc7\xcd\xd5\xca\xcd\xd8\xca\xce\xd6\xc8\xcc\ +\xd2\xc6\xc9\xcc\xc0\xc6\xc5\xbb\xc3\xbe\xb5\xbf\xb6\xad\xba\xb3\ +\xac\xba\xb6\xaf\xbd\xc0\xb9\xc6\xca\xc3\xce\xd2\xca\xd3\x00\x00\ +\x00\xd3\xcf\xda\xd2\xce\xd9\xd2\xcd\xd9\xd4\xcd\xd8\xd4\xcf\xd8\ +\xd7\xd0\xd9\xd9\xd1\xd9\xdb\xd4\xdb\xdd\xd6\xdc\xdf\xd8\xdd\xe1\ +\xda\xdf\xe3\xdc\xe1\xe6\xdd\xe3\xe8\xde\xe4\xe9\xe0\xe3\xea\xe1\ +\xe4\xeb\xe2\xe5\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe5\xe8\xe1\xe6\ +\xe8\xe1\xe6\xe8\xe1\xe6\xe8\xe1\xe6\xe7\xe0\xe5\xe6\xdf\xe4\xe5\ +\xde\xe2\xe3\xdc\xe1\xe2\xdb\xe0\xe1\xda\xe0\xe0\xd8\xdf\xde\xd7\ +\xde\xdd\xd8\xdf\xdc\xd7\xdf\xdb\xd6\xdf\xd6\xd3\xdc\xcf\xcd\xd6\ +\xc8\xc3\xcf\xbe\xba\xc7\xb6\xb1\xc0\xb1\xac\xbb\xaf\xaa\xba\xb0\ +\xab\xba\xb8\xb2\xbf\xc5\xbf\xca\xcf\xc9\xd3\xd8\xd1\xd9\xdd\xd6\ +\xdd\xe0\xd9\xe0\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\ +\xe0\xd9\xe0\xe0\xd9\xe0\xde\xd7\xde\xde\xd7\xdf\xdd\xd7\xe0\xdd\ +\xd7\xe0\xdc\xd7\xe0\xdc\xd8\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xda\xd5\ +\xde\xda\xd5\xde\xd9\xd4\xdd\xd9\xd5\xdd\xd8\xd4\xdd\xd8\xd3\xdc\ +\xd7\xd2\xdb\xd7\xd1\xdb\xd7\xd1\xdb\xd7\xd2\xdb\xd6\xd1\xda\xd6\ +\xd1\xda\xd6\xd1\xda\xd5\xd1\xda\xd6\xd2\xdb\xd6\xd1\xda\xd7\xd3\ +\xdb\xd9\xd2\xdb\xda\xd2\xda\xda\xd2\xd9\xd8\xd3\xdb\xd8\xd2\xda\ +\xd6\xd1\xda\xd5\xd0\xd9\xd5\xd0\xd9\xd5\xd1\xda\xd4\xd0\xda\xd3\ +\xcf\xd9\xd2\xcd\xd8\xd1\xcc\xd6\xd0\xcc\xd5\xd0\xcb\xd4\xd1\xcb\ +\xd5\xd1\xcc\xd6\xd2\xcd\xd6\xd2\xcd\xd6\xd2\xcd\xd6\xd5\xcd\xd7\ +\xd6\xce\xd8\xd6\xce\xd8\xd7\xce\xd9\xd6\xd0\xda\xd7\xd2\xdb\xd7\ +\xd2\xdb\xd9\xd4\xdd\xda\xd5\xde\xdb\xd6\xdf\xdd\xd8\xe1\xdc\xd7\ +\xe0\xdd\xd8\xe1\xdc\xd7\xe0\xda\xd5\xde\xd8\xd3\xdc\xd8\xd0\xda\ +\xd7\xcf\xd9\xd6\xce\xd8\xd6\xcf\xd7\xd7\xcf\xd6\xda\xd1\xd7\xdd\ +\xd3\xd7\xe0\xd5\xd8\xe1\xd5\xd8\xe1\xd5\xd7\xdc\xd0\xd2\xd6\xcb\ +\xce\xce\xc2\xc9\xc4\xb9\xc2\xb8\xae\xba\xaf\xa5\xb3\xa8\xa1\xb0\ +\xa6\x9f\xaf\xa5\x9d\xae\xa4\x9d\xae\xa2\x9c\xad\xa2\x9d\xad\xa3\ +\x9d\xac\xa3\x9d\xac\xa4\x9d\xac\xa4\x9d\xac\xa4\x9d\xac\xa5\x9e\ +\xad\xa8\xa1\xaf\xb2\xa9\xb5\xbd\xb3\xbd\xc4\xb9\xc2\xc9\xbe\xc5\ +\xcd\xc1\xc7\xd0\xc4\xc8\xd2\xc5\xc9\xd0\xc4\xc8\xcb\xbf\xc5\xc3\ +\xb8\xc1\xba\xb1\xbb\xb2\xaa\xb8\xad\xa6\xb4\xad\xa7\xb6\xb6\xaf\ +\xbc\xc2\xba\xc5\xcc\xc3\xcd\xd4\xca\xd2\x00\x00\x00\xd3\xcf\xda\ +\xd4\xd0\xda\xd4\xcf\xda\xd3\xce\xd8\xd4\xcf\xd8\xd6\xcf\xd9\xd8\ +\xd0\xda\xda\xd3\xda\xdc\xd4\xdb\xdf\xd8\xdd\xe0\xd9\xde\xe2\xdb\ +\xe0\xe3\xdc\xe1\xe8\xde\xe3\xe8\xdf\xe3\xe9\xe0\xe3\xea\xe1\xe4\ +\xe9\xe0\xe3\xe9\xe0\xe3\xe9\xe0\xe4\xe7\xe1\xe6\xe7\xe0\xe5\xe7\ +\xe0\xe5\xe7\xe0\xe5\xe7\xe0\xe5\xe6\xdf\xe4\xe5\xdd\xe4\xe4\xdd\ +\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe1\xdf\xd9\xe2\ +\xdd\xd9\xe2\xdb\xd8\xe1\xdb\xd8\xe1\xd6\xd3\xdd\xd0\xcc\xd7\xc9\ +\xc5\xd0\xbd\xb9\xc6\xb6\xb1\xc0\xb3\xad\xbd\xb0\xac\xbb\xb2\xad\ +\xbc\xbb\xb5\xc1\xc6\xc0\xca\xd1\xca\xd3\xd9\xd2\xd8\xdd\xd6\xdd\ +\xe0\xda\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe0\xd9\xe0\xe0\ +\xd9\xe0\xdf\xd8\xdf\xde\xd7\xe0\xdc\xd8\xe1\xdd\xd8\xe1\xdd\xd8\ +\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd7\xe0\xdc\xd7\xe0\ +\xdb\xd6\xdf\xdc\xd7\xe0\xda\xd6\xdf\xdb\xd6\xdf\xd9\xd5\xde\xd9\ +\xd5\xde\xd9\xd4\xdd\xd7\xd4\xdd\xd7\xd3\xdd\xd6\xd2\xdd\xd6\xd3\ +\xdc\xd6\xd3\xdc\xd8\xd3\xdc\xd8\xd3\xdc\xd8\xd3\xdc\xda\xd5\xde\ +\xda\xd5\xde\xdb\xd5\xde\xd9\xd4\xdd\xd9\xd4\xdd\xd8\xd3\xdc\xd8\ +\xd3\xdc\xd7\xd2\xdb\xd6\xd2\xdb\xd4\xd0\xda\xd2\xce\xd9\xd1\xcd\ +\xd8\xd0\xcc\xd7\xcf\xcb\xd6\xd0\xcb\xd6\xd1\xcb\xd6\xd1\xcb\xd6\ +\xd1\xcc\xd5\xd2\xcb\xd5\xd2\xcd\xd6\xd4\xce\xd8\xd5\xce\xd8\xd6\ +\xcf\xd8\xd6\xd0\xd9\xd6\xd1\xda\xd7\xd2\xdb\xd8\xd3\xdc\xd9\xd4\ +\xdd\xda\xd5\xde\xdb\xd6\xdf\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd7\xe0\ +\xdb\xd6\xdf\xd8\xd3\xdc\xd5\xcf\xd9\xd3\xcb\xd5\xcf\xc7\xd2\xcd\ +\xc5\xcf\xcd\xc3\xcf\xce\xc4\xce\xd2\xc7\xce\xd6\xca\xcf\xda\xcd\ +\xd1\xdc\xce\xd2\xdd\xd0\xd1\xd9\xcd\xd0\xd2\xc7\xcb\xcb\xbf\xc6\ +\xc1\xb6\xbe\xb6\xac\xb8\xac\xa3\xb2\xa6\x9e\xaf\xa4\x9d\xae\xa2\ +\x9c\xad\xa2\x9c\xad\xa2\x9c\xad\xa2\x9c\xac\xa2\x9d\xac\xa3\x9d\ +\xab\xa3\x9c\xab\xa3\x9c\xab\xa3\x9c\xab\xa5\x9e\xad\xa6\x9f\xae\ +\xac\xa3\xb1\xb7\xad\xb7\xbe\xb4\xbc\xc4\xb9\xc0\xc7\xbb\xc1\xcb\ +\xbf\xc4\xca\xbe\xc4\xc7\xbc\xc3\xc1\xb6\xbf\xb8\xae\xba\xaf\xa8\ +\xb5\xa9\xa2\xb2\xa9\xa3\xb2\xb0\xa9\xb8\xbc\xb3\xc0\xc7\xbd\xc7\ +\xd1\xc7\xce\xd8\xce\xd4\x00\x00\x00\xd4\xd0\xdb\xd7\xd2\xdc\xd7\ +\xd2\xdb\xd6\xd1\xda\xd5\xd0\xd8\xd7\xcf\xd9\xd7\xcf\xd8\xda\xd3\ +\xda\xdc\xd5\xdb\xde\xd6\xdc\xe0\xd8\xde\xe1\xda\xdf\xe2\xdb\xe0\ +\xe3\xdc\xe1\xe6\xdf\xe4\xe8\xdf\xe4\xe8\xdf\xe3\xe8\xdf\xe2\xe7\ +\xde\xe1\xe7\xdd\xe3\xe6\xdd\xe3\xe5\xde\xe3\xe6\xdf\xe4\xe6\xdf\ +\xe4\xe6\xde\xe4\xe6\xde\xe5\xe4\xde\xe5\xe5\xdd\xe5\xe5\xde\xe5\ +\xe4\xdd\xe4\xe2\xdd\xe4\xe1\xdc\xe4\xe0\xdb\xe4\xdf\xdb\xe4\xdd\ +\xda\xe3\xdc\xd9\xe2\xdb\xd8\xe1\xd8\xd3\xde\xd3\xce\xd9\xc8\xc4\ +\xcf\xbc\xb8\xc5\xb7\xb2\xc1\xb3\xaf\xbe\xb3\xae\xbd\xb4\xaf\xbd\ +\xbc\xb5\xc2\xc6\xbf\xc9\xd1\xc9\xd2\xd9\xd1\xd8\xdf\xd7\xde\xe1\ +\xda\xe0\xe1\xda\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\ +\xe1\xe0\xd9\xe0\xde\xd9\xe2\xdf\xda\xe2\xdf\xda\xe2\xdf\xda\xe3\ +\xdf\xda\xe3\xe0\xdb\xe4\xdf\xda\xe3\xde\xd9\xe2\xdf\xda\xe3\xdf\ +\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xdd\xd8\xe1\xde\xd9\xe2\xdc\xd8\ +\xe1\xdb\xd7\xe1\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd9\xd6\xdf\ +\xd9\xd3\xdd\xd9\xd4\xdd\xda\xd5\xde\xdb\xd6\xdf\xdb\xd6\xdf\xdc\ +\xd7\xe0\xdc\xd7\xe0\xda\xd5\xde\xd9\xd4\xdd\xda\xd5\xde\xd8\xd3\ +\xdc\xd7\xd1\xdb\xd4\xcf\xda\xd2\xce\xd9\xd2\xce\xd9\xd0\xcc\xd7\ +\xd0\xcc\xd7\xd0\xcc\xd7\xd0\xcc\xd7\xd0\xcb\xd6\xd0\xca\xd5\xd0\ +\xcb\xd6\xd1\xcc\xd6\xd3\xce\xd7\xd4\xcf\xd8\xd4\xd0\xd9\xd6\xd1\ +\xda\xd5\xd0\xda\xd7\xd1\xdc\xd6\xd3\xdd\xd8\xd5\xde\xdb\xd5\xde\ +\xdb\xd6\xdf\xdd\xd8\xe1\xdd\xd8\xe1\xdb\xd6\xdf\xd8\xd3\xdc\xd5\ +\xd0\xd9\xd2\xcb\xd4\xcd\xc5\xcf\xc5\xbd\xc9\xc1\xb8\xc5\xbf\xb5\ +\xc2\xc2\xb7\xc3\xc6\xb9\xc3\xcc\xbe\xc5\xd2\xc4\xc8\xd4\xc6\xca\ +\xd6\xc8\xcc\xd4\xc6\xca\xcf\xc3\xc7\xc8\xbc\xc3\xbe\xb3\xbc\xb2\ +\xa9\xb4\xaa\xa1\xb1\xa4\x9d\xae\xa1\x9b\xac\xa0\x9a\xac\xa0\x9a\ +\xab\xa0\x9a\xab\xa0\x9b\xac\xa0\x9a\xab\xa1\x9b\xac\xa1\x9c\xac\ +\xa1\x9c\xac\xa2\x9c\xab\xa3\x9d\xac\xa5\x9e\xad\xa8\x9f\xaf\xaf\ +\xa6\xb3\xb8\xad\xb8\xbe\xb2\xbb\xc3\xb6\xbd\xc3\xb7\xbd\xc2\xb6\ +\xbd\xbd\xb2\xbc\xb6\xac\xb8\xae\xa7\xb4\xa8\xa1\xb1\xa7\xa0\xb0\ +\xad\xa6\xb5\xb8\xaf\xbc\xc4\xba\xc4\xce\xc3\xca\xd6\xcb\xd1\xdd\ +\xd1\xd6\x00\x00\x00\xd5\xd0\xda\xd8\xd3\xdc\xd8\xd3\xdc\xd8\xd1\ +\xdb\xd7\xd0\xda\xd8\xd0\xda\xd8\xd0\xd9\xd9\xd2\xda\xda\xd4\xdb\ +\xdd\xd5\xdc\xde\xd6\xdd\xdf\xd8\xde\xe1\xda\xe0\xe3\xdb\xe1\xe4\ +\xdd\xe2\xe5\xde\xe3\xe6\xdd\xe3\xe6\xdd\xe2\xe6\xdd\xe2\xe6\xdc\ +\xe1\xe4\xdd\xe2\xe4\xdd\xe2\xe5\xde\xe3\xe4\xdd\xe4\xe4\xdd\xe4\ +\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xde\xe5\xe3\xde\xe5\xe3\xdf\xe5\xe3\ +\xdf\xe7\xe1\xdd\xe6\xe0\xdc\xe5\xde\xdc\xe5\xde\xdb\xe5\xde\xda\ +\xe4\xdd\xda\xe3\xdd\xd9\xe2\xda\xd4\xde\xd3\xce\xd8\xc8\xc3\xcf\ +\xbe\xba\xc7\xb9\xb4\xc2\xb6\xb1\xc0\xb3\xaf\xbd\xb4\xad\xba\xbc\ +\xb4\xc0\xc6\xbe\xc8\xd1\xc9\xd1\xd8\xd1\xd8\xde\xd7\xdd\xe1\xd9\ +\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\xe1\xdf\xdb\xe2\ +\xe0\xda\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xe1\ +\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe2\xdc\xe5\xe1\xdc\ +\xe5\xdf\xdc\xe5\xde\xdb\xe4\xde\xdb\xe5\xde\xdb\xe4\xdd\xd9\xe3\ +\xdc\xd8\xe2\xdb\xd8\xe2\xdc\xd9\xe1\xdc\xd7\xe0\xdb\xd6\xdf\xdb\ +\xd6\xdf\xdb\xd6\xdf\xdc\xd7\xe0\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd8\ +\xe1\xdb\xd6\xdf\xda\xd5\xde\xd9\xd5\xde\xd8\xd4\xdd\xd7\xd2\xdb\ +\xd5\xd0\xda\xd5\xd0\xda\xd3\xcf\xda\xd2\xce\xd9\xd1\xcd\xd8\xd1\ +\xcd\xd8\xd0\xcc\xd7\xd0\xcc\xd7\xcf\xcb\xd6\xcf\xcb\xd6\xd1\xcc\ +\xd7\xd3\xcd\xd8\xd4\xcf\xd9\xd6\xd1\xda\xd6\xd0\xda\xd5\xd0\xdb\ +\xd4\xd0\xdb\xd4\xd0\xdb\xd6\xd2\xdd\xd8\xd2\xdd\xd9\xd4\xdd\xda\ +\xd5\xde\xda\xd5\xde\xd8\xd3\xdc\xd6\xd1\xda\xd2\xcd\xd6\xcd\xc6\ +\xd0\xc5\xbd\xc9\xbb\xb1\xc0\xb1\xa7\xba\xaf\xa4\xb9\xb1\xa6\xb8\ +\xb7\xaa\xb9\xbd\xaf\xbb\xc5\xb5\xbf\xca\xbb\xc1\xce\xbf\xc4\xce\ +\xc1\xc5\xc9\xbd\xc3\xc3\xb7\xbf\xb9\xae\xb9\xaf\xa5\xb3\xa5\x9d\ +\xaf\xa0\x99\xac\x9e\x98\xac\x9c\x98\xab\x9c\x98\xab\x9e\x9a\xaa\ +\x9f\x9a\xab\xa0\x9a\xab\xa0\x9a\xab\xa1\x9c\xac\xa1\x9c\xab\xa1\ +\x9c\xaa\xa3\x9d\xac\xa4\x9d\xac\xa4\x9e\xad\xa9\xa2\xb0\xb2\xa7\ +\xb3\xb7\xab\xb6\xbc\xaf\xb9\xbb\xaf\xb9\xb8\xae\xb9\xb4\xab\xb7\ +\xae\xa6\xb4\xa7\xa0\xb0\xa5\x9e\xaf\xa9\xa2\xb2\xb5\xab\xb9\xc0\ +\xb6\xc0\xcb\xbf\xc7\xd4\xc8\xce\xda\xcf\xd4\xe0\xd5\xd8\x00\x00\ +\x00\xd6\xd2\xdb\xd8\xd3\xdc\xda\xd3\xdd\xda\xd2\xdc\xda\xd3\xda\ +\xda\xd2\xda\xd9\xd2\xda\xda\xd3\xda\xdb\xd4\xdb\xdd\xd5\xdc\xde\ +\xd6\xdd\xdf\xd7\xde\xe1\xd8\xdf\xe1\xda\xe1\xe4\xdc\xe3\xe5\xde\ +\xe3\xe5\xde\xe2\xe4\xdd\xe2\xe4\xdc\xe1\xe4\xdd\xe1\xe4\xdc\xe1\ +\xe4\xdc\xe2\xe3\xdc\xe3\xe3\xdc\xe3\xe3\xdd\xe4\xe2\xdd\xe5\xe2\ +\xde\xe5\xe2\xdd\xe6\xe3\xde\xe7\xe3\xde\xe6\xe2\xde\xe7\xe1\xdd\ +\xe6\xe0\xdd\xe6\xdf\xdc\xe5\xdf\xdb\xe6\xde\xda\xe5\xde\xdb\xe4\ +\xde\xda\xe3\xdf\xd9\xe2\xda\xd5\xdf\xd4\xcf\xd9\xcc\xc6\xd2\xc1\ +\xbd\xc9\xba\xb5\xc3\xb7\xb2\xc1\xb4\xae\xbd\xb5\xad\xba\xbc\xb3\ +\xbf\xc6\xbe\xc8\xd1\xc9\xd1\xda\xd1\xd9\xde\xd6\xdd\xe0\xd9\xe0\ +\xe0\xd9\xe0\xe1\xda\xe1\xe1\xdb\xe3\xe0\xdb\xe4\xe1\xdc\xe5\xe1\ +\xdc\xe5\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe7\xe3\xde\ +\xe7\xe3\xde\xe7\xe2\xde\xe7\xe2\xde\xe7\xe1\xde\xe7\xe1\xde\xe7\ +\xe1\xde\xe7\xe1\xde\xe7\xe0\xdd\xe6\xdf\xdc\xe5\xdf\xdb\xe4\xe0\ +\xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xdd\xd8\ +\xe1\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\ +\xdd\xd8\xe1\xdb\xd6\xdf\xda\xd5\xde\xd9\xd4\xdd\xd8\xd3\xdc\xd7\ +\xd2\xdb\xd6\xd0\xdb\xd3\xd0\xda\xd3\xcf\xda\xd2\xce\xd9\xd1\xce\ +\xd8\xd1\xcd\xd8\xd1\xcd\xd8\xd0\xcc\xd7\xd1\xcd\xd8\xd1\xcd\xd8\ +\xd2\xcd\xd8\xd3\xce\xd9\xd3\xcd\xd8\xd1\xcd\xd8\xd0\xcc\xd7\xd0\ +\xcc\xd7\xd0\xcc\xd7\xd3\xcd\xd8\xd4\xce\xd9\xd5\xd0\xd9\xd4\xcf\ +\xd8\xd3\xcd\xd7\xd2\xcc\xd6\xcd\xc7\xd2\xc7\xbf\xcb\xbd\xb3\xc2\ +\xad\xa3\xb6\x9e\x95\xae\x98\x8f\xac\x9a\x90\xac\xa1\x95\xae\xaa\ +\x9d\xb1\xb3\xa5\xb5\xbd\xaf\xba\xc3\xb6\xbd\xc4\xb8\xbe\xc3\xb6\ +\xbd\xbc\xb0\xbb\xb3\xa8\xb5\xa9\xa1\xb0\xa0\x99\xac\x9a\x95\xaa\ +\x98\x94\xa8\x9a\x95\xa9\x9a\x96\xaa\x9b\x97\xaa\x9d\x99\xab\x9e\ +\x99\xaa\xa0\x9a\xab\xa0\x9a\xab\xa0\x9b\xab\xa1\x9b\xaa\xa1\x9c\ +\xab\xa2\x9c\xac\xa2\x9c\xac\xa3\x9d\xad\xa9\xa1\xaf\xae\xa4\xb2\ +\xb2\xa7\xb3\xb2\xa7\xb5\xaf\xa6\xb4\xaa\xa2\xb2\xa6\x9f\xaf\xa3\ +\x9d\xae\xa4\x9f\xb0\xad\xa6\xb4\xb8\xaf\xbc\xc3\xb9\xc3\xcf\xc2\ +\xc9\xd7\xcb\xd1\xdd\xd2\xd6\xe2\xd7\xda\x00\x00\x00\xd8\xd2\xdb\ +\xd9\xd3\xdc\xda\xd3\xdc\xda\xd4\xda\xdb\xd4\xdb\xdb\xd4\xdb\xdb\ +\xd4\xdb\xdc\xd4\xdb\xdd\xd5\xdc\xdd\xd5\xdc\xdf\xd7\xde\xdf\xd8\ +\xdf\xdf\xd8\xdf\xe2\xdb\xe2\xe2\xdb\xe2\xe4\xdc\xe3\xe2\xdb\xe2\ +\xe4\xdb\xe2\xe4\xdc\xe2\xe3\xdc\xe3\xe2\xdb\xe3\xe2\xdb\xe3\xe3\ +\xdb\xe2\xe1\xdc\xe4\xe1\xdc\xe6\xe1\xdd\xe5\xe0\xdc\xe5\xe0\xdd\ +\xe6\xe1\xde\xe7\xe1\xdd\xe6\xe0\xde\xe7\xe0\xdd\xe7\xdf\xdd\xe6\ +\xe0\xdb\xe7\xdf\xdb\xe6\xdf\xdb\xe6\xdf\xdc\xe5\xe1\xdc\xe5\xe1\ +\xdc\xe5\xe0\xdb\xe4\xdc\xd7\xe0\xd6\xd1\xda\xcc\xc7\xd2\xc2\xbe\ +\xca\xba\xb5\xc4\xb7\xb2\xc1\xb6\xb0\xbd\xb5\xae\xbb\xbd\xb4\xbf\ +\xc7\xbe\xc8\xd1\xca\xd1\xd9\xd1\xd8\xdf\xd8\xdf\xe2\xdb\xe2\xe3\ +\xdc\xe3\xe1\xdc\xe3\xe2\xdd\xe4\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\ +\xe7\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xdf\xe8\xe3\xdf\xe8\ +\xe1\xde\xe7\xe2\xdf\xe8\xe2\xdf\xe8\xe3\xe0\xe9\xe3\xe0\xe9\xe3\ +\xe0\xe9\xe3\xe0\xe9\xe3\xdf\xe8\xe3\xde\xe7\xe1\xdd\xe6\xe2\xdd\ +\xe6\xe1\xdc\xe5\xe0\xdb\xe3\xe0\xdb\xe4\xe0\xdb\xe3\xe0\xdb\xe4\ +\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xdd\xd9\xe2\xdc\ +\xd7\xe0\xdb\xd6\xdf\xda\xd6\xdf\xda\xd5\xde\xd8\xd3\xdc\xd7\xd2\ +\xdb\xd7\xd2\xdc\xd4\xd0\xdb\xd3\xcf\xda\xd3\xcf\xda\xd3\xcf\xda\ +\xd2\xce\xd9\xd2\xce\xd9\xd1\xcd\xd8\xcf\xcb\xd6\xce\xca\xd5\xcc\ +\xc8\xd3\xcc\xc8\xd4\xca\xc6\xd2\xcb\xc4\xd0\xca\xc4\xd0\xcc\xc6\ +\xd1\xce\xc8\xd3\xce\xc8\xd3\xcf\xc9\xd3\xcd\xc8\xd2\xcc\xc6\xd1\ +\xc9\xc3\xce\xc7\xc0\xcb\xbf\xb7\xc3\xb4\xaa\xbb\xa1\x99\xb0\x91\ +\x88\xa6\x85\x7d\xa0\x80\x78\x9f\x83\x7c\xa1\x8f\x86\xa5\x9e\x93\ +\xab\xaa\xa0\xb1\xb4\xa9\xb6\xb8\xad\xb8\xb8\xad\xb8\xb2\xa8\xb6\ +\xab\xa2\xb1\xa3\x9a\xad\x99\x93\xa9\x96\x90\xa7\x94\x8f\xa5\x94\ +\x91\xa6\x96\x93\xa8\x99\x94\xa9\x9b\x97\xaa\x9b\x98\xa9\x9c\x98\ +\xa8\x9f\x98\xaa\x9f\x9a\xa9\x9f\x9a\xaa\xa0\x9b\xaa\xa0\x9c\xaa\ +\xa1\x9c\xab\xa0\x9a\xab\xa3\x9d\xad\xa6\x9e\xae\xa7\x9f\xaf\xa6\ +\x9f\xaf\xa4\x9d\xaf\xa2\x9c\xae\xa1\x9c\xac\xa2\x9d\xae\xa5\x9f\ +\xb0\xae\xa7\xb7\xba\xb1\xbd\xc5\xba\xc3\xcf\xc2\xc9\xd6\xca\xd0\ +\xdd\xd2\xd6\xe3\xd8\xdb\x00\x00\x00\xd8\xd2\xdb\xda\xd3\xdc\xdb\ +\xd4\xdb\xdb\xd3\xda\xdb\xd4\xdb\xdc\xd4\xdb\xdc\xd5\xdb\xdd\xd5\ +\xdb\xdd\xd5\xdc\xde\xd6\xdc\xdf\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe0\ +\xe0\xd9\xe0\xe2\xda\xe2\xe2\xdb\xe3\xe2\xda\xe3\xe2\xda\xe2\xe2\ +\xdb\xe3\xe1\xdb\xe2\xe1\xda\xe3\xe0\xda\xe3\xe0\xda\xe3\xe0\xdb\ +\xe4\xe0\xdb\xe4\xdf\xdb\xe4\xde\xdc\xe4\xdf\xdc\xe5\xe0\xdd\xe6\ +\xe0\xdc\xe6\xe0\xdd\xe7\xdf\xdc\xe6\xe0\xdb\xe7\xdf\xdc\xe7\xe0\ +\xdb\xe7\xdf\xdb\xe6\xe0\xdc\xe6\xe0\xdd\xe5\xe2\xdd\xe6\xe2\xdd\ +\xe6\xe1\xdc\xe5\xdd\xd8\xe1\xd6\xd0\xda\xcd\xc8\xd3\xc3\xbf\xcb\ +\xbb\xb6\xc4\xb8\xb3\xc1\xb6\xae\xbb\xb6\xad\xba\xbe\xb5\xc0\xc8\ +\xbf\xc9\xd1\xc9\xd2\xd9\xd2\xd9\xdf\xd8\xdf\xe3\xdc\xe3\xe4\xde\ +\xe4\xe2\xde\xe4\xe2\xdd\xe6\xe3\xde\xe7\xe3\xde\xe7\xe4\xdf\xe8\ +\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe0\xe9\xe3\xdf\xe8\xe1\xdf\xe8\xe2\ +\xdf\xe8\xe2\xdf\xe8\xe2\xdf\xe8\xe4\xe1\xea\xe6\xe1\xea\xe6\xe1\ +\xea\xe5\xe0\xe9\xe5\xe0\xe9\xe4\xdf\xe7\xe2\xde\xe5\xe3\xdf\xe5\ +\xe2\xde\xe4\xe3\xde\xe4\xe2\xdd\xe5\xe1\xdd\xe4\xe1\xdc\xe5\xe0\ +\xdb\xe4\xe1\xdc\xe5\xe0\xdb\xe4\xde\xd9\xe2\xde\xd9\xe2\xdd\xd8\ +\xe1\xdc\xd7\xe0\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xd9\xd4\xde\ +\xd8\xd3\xdd\xd6\xd1\xdc\xd4\xd0\xdb\xd3\xcf\xda\xd3\xcf\xda\xd2\ +\xce\xd9\xce\xca\xd5\xca\xc6\xd2\xc6\xc2\xcf\xc4\xc0\xcd\xc3\xbf\ +\xcc\xc3\xbd\xca\xc3\xbd\xca\xc5\xbe\xca\xc5\xbf\xcb\xc8\xc2\xcd\ +\xc9\xc2\xcd\xc9\xc3\xce\xc8\xc1\xcc\xc6\xbf\xca\xc3\xbb\xc6\xbf\ +\xb6\xc3\xb7\xad\xbc\xaa\xa0\xb4\x9a\x91\xab\x88\x80\xa2\x79\x70\ +\x99\x6e\x67\x93\x71\x6a\x95\x7d\x76\x9c\x8d\x85\xa3\x9a\x91\xa8\ +\xa4\x9b\xae\xa9\xa0\xb1\xab\xa2\xb2\xa8\xa0\xb1\xa2\x9a\xac\x9a\ +\x93\xa8\x93\x8d\xa4\x8e\x8b\xa3\x8d\x89\xa2\x8f\x8c\xa4\x92\x8f\ +\xa5\x94\x92\xa6\x97\x94\xa8\x99\x95\xa8\x9a\x97\xa8\x9c\x97\xa7\ +\x9d\x98\xa8\x9f\x99\xaa\xa0\x9a\xaa\xa0\x9a\xab\xa0\x9a\xab\xa1\ +\x9b\xac\xa0\x9a\xac\xa0\x9a\xac\xa0\x9a\xac\xa0\x9b\xad\x9f\x9a\ +\xad\x9f\x9a\xae\xa0\x9d\xac\xa0\x9d\xad\xa5\x9f\xb0\xae\xa7\xb5\ +\xba\xb1\xbc\xc3\xb9\xc3\xcc\xc0\xc8\xd3\xc7\xcd\xdb\xd0\xd4\xe1\ +\xd6\xd9\x00\x00\x00\xda\xd3\xdb\xdb\xd4\xdb\xdc\xd5\xdc\xdd\xd5\ +\xdc\xdc\xd4\xdb\xdd\xd5\xdb\xdd\xd6\xdb\xdd\xd6\xdb\xdd\xd6\xdb\ +\xde\xd6\xdc\xdf\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe1\xe1\xda\xe3\xe2\ +\xd9\xe4\xe0\xda\xe3\xdf\xd9\xe3\xe0\xda\xe3\xe0\xdb\xe4\xdf\xda\ +\xe3\xe0\xdb\xe3\xdf\xda\xe4\xdf\xdb\xe4\xdf\xdb\xe3\xde\xdb\xe4\ +\xdd\xd9\xe3\xde\xda\xe5\xde\xda\xe4\xde\xdb\xe5\xde\xdb\xe6\xde\ +\xdc\xe6\xdd\xdc\xe6\xdd\xdb\xe6\xdd\xdc\xe6\xde\xdc\xe6\xde\xdb\ +\xe5\xdf\xdb\xe7\xe1\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe7\xe2\xdd\xe6\ +\xe0\xdb\xe4\xdc\xd7\xe0\xd6\xd1\xda\xcd\xc8\xd3\xc2\xbe\xca\xba\ +\xb5\xc4\xb7\xb1\xbf\xb5\xae\xbb\xb6\xad\xba\xbd\xb4\xbf\xc7\xbe\ +\xc8\xd1\xc9\xd3\xda\xd3\xdb\xe0\xda\xe0\xe2\xde\xe4\xe2\xde\xe5\ +\xe3\xde\xe6\xe3\xde\xe7\xe3\xde\xe7\xe4\xdf\xe8\xe5\xe0\xe9\xe5\ +\xe0\xe9\xe5\xe0\xe9\xe4\xdf\xe8\xe3\xdf\xe8\xe1\xde\xe7\xe2\xdf\ +\xe8\xe2\xdf\xe8\xe5\xe0\xe9\xe6\xe1\xea\xe7\xe2\xeb\xe6\xe1\xea\ +\xe5\xe0\xe9\xe4\xe0\xe7\xe4\xe0\xe6\xe2\xdf\xe4\xe4\xdf\xe5\xe5\ +\xde\xe5\xe4\xde\xe4\xe4\xdd\xe4\xe2\xdc\xe4\xe0\xdb\xe4\xe1\xdc\ +\xe5\xe0\xdb\xe4\xdf\xda\xe3\xde\xd9\xe2\xdd\xd8\xe1\xdd\xd8\xe1\ +\xdc\xd7\xe0\xdc\xd7\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xda\xd5\xde\xd9\ +\xd4\xde\xd6\xd2\xdc\xd4\xd0\xdb\xd3\xcf\xda\xd0\xcc\xd7\xcb\xc7\ +\xd3\xc5\xc1\xce\xbf\xb9\xc9\xba\xb5\xc5\xb9\xb4\xc3\xb8\xb1\xc1\ +\xb9\xb2\xc0\xba\xb3\xc1\xbb\xb5\xc3\xc0\xb8\xc5\xc3\xbb\xc7\xc7\ +\xbe\xca\xc6\xbe\xc9\xc3\xbb\xc6\xbe\xb5\xc1\xb8\xae\xbd\xae\xa5\ +\xb5\xa0\x97\xae\x92\x89\xa6\x83\x7b\x9e\x74\x6c\x96\x68\x62\x8e\ +\x67\x61\x8e\x71\x6a\x93\x80\x79\x9c\x8d\x86\xa3\x97\x90\xa7\x9d\ +\x96\xaa\xa0\x99\xad\x9e\x98\xac\x99\x93\xa8\x91\x8c\xa3\x8b\x87\ +\xa1\x88\x85\x9f\x88\x86\x9f\x8b\x88\xa1\x8d\x8a\xa3\x91\x8e\xa4\ +\x94\x91\xa6\x95\x93\xa6\x98\x94\xa7\x99\x96\xa8\x9b\x97\xa8\x9d\ +\x97\xa8\xa0\x9a\xaa\x9f\x9a\xaa\xa0\x9a\xaa\xa0\x9a\xab\xa0\x99\ +\xac\x9f\x99\xac\x9e\x99\xac\x9e\x9a\xad\x9d\x9a\xac\x9e\x9b\xad\ +\x9f\x9c\xac\x9f\x9d\xac\xa4\x9f\xaf\xae\xa6\xb4\xb8\xaf\xbb\xc1\ +\xb6\xc0\xc9\xbd\xc5\xd0\xc5\xcb\xd7\xcc\xd2\xde\xd3\xd8\x00\x00\ +\x00\xdd\xd6\xde\xdd\xd6\xdd\xdc\xd5\xdc\xde\xd7\xdc\xdd\xd6\xdb\ +\xdd\xd6\xdb\xdc\xd5\xda\xde\xd7\xdc\xde\xd7\xdb\xdd\xd6\xdc\xdf\ +\xd7\xde\xdf\xd7\xde\xdf\xd8\xe0\xe1\xd9\xe3\xe1\xda\xe4\xdf\xda\ +\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\ +\xe0\xdb\xe4\xdf\xdb\xe3\xdd\xd9\xe4\xdc\xd8\xe3\xdd\xd9\xe4\xdd\ +\xd9\xe4\xdd\xda\xe5\xdc\xdb\xe5\xdb\xda\xe4\xdd\xdc\xe6\xdc\xdb\ +\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdd\xdc\xe6\xdf\xdb\xe7\xe0\xdc\xe7\ +\xe1\xde\xe6\xe0\xde\xe6\xe2\xde\xe7\xe2\xdd\xe6\xe2\xdd\xe6\xe0\ +\xdb\xe4\xdc\xd7\xe0\xd5\xd0\xda\xcd\xc7\xd3\xc2\xbe\xca\xba\xb5\ +\xc3\xb7\xb1\xc0\xb5\xae\xbc\xb5\xae\xba\xbe\xb4\xc0\xc7\xbf\xc9\ +\xd2\xca\xd4\xdb\xd4\xdc\xe0\xda\xe2\xe2\xde\xe4\xe2\xde\xe5\xe2\ +\xdd\xe7\xe3\xde\xe7\xe5\xe0\xe9\xe5\xe0\xe9\xe6\xe1\xea\xe6\xe1\ +\xea\xe4\xe0\xe9\xe3\xdf\xe8\xe2\xdd\xe6\xe4\xdf\xe8\xe4\xdf\xe8\ +\xe5\xe0\xe9\xe7\xe2\xeb\xe7\xe2\xea\xe7\xe2\xea\xe5\xe0\xe9\xe5\ +\xe0\xe8\xe3\xdf\xe8\xe5\xde\xe5\xe5\xdf\xe6\xe6\xdf\xe6\xe6\xdf\ +\xe6\xe4\xdd\xe4\xe4\xdd\xe4\xe2\xdd\xe5\xe0\xdb\xe4\xe0\xdb\xe4\ +\xe1\xdc\xe5\xdf\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xde\xd9\xe2\xde\ +\xd9\xe2\xde\xda\xe3\xde\xd9\xe2\xdd\xd7\xe0\xdb\xd6\xdf\xd9\xd4\ +\xdf\xd6\xd1\xdc\xd3\xce\xd9\xce\xca\xd5\xc8\xc3\xd0\xc0\xbb\xcb\ +\xb8\xb2\xc2\xb1\xab\xbd\xad\xa7\xba\xab\xa5\xb7\xaa\xa3\xb6\xaa\ +\xa4\xb6\xac\xa6\xb7\xae\xa8\xb8\xb3\xac\xbb\xb8\xb1\xbf\xbe\xb5\ +\xc2\xbd\xb5\xc1\xba\xb1\xbe\xb2\xaa\xb9\xa9\xa1\xb3\x9b\x93\xaa\ +\x8c\x84\xa2\x7f\x77\x9b\x72\x6a\x93\x67\x61\x8d\x63\x5e\x89\x6a\ +\x64\x8e\x76\x70\x95\x83\x7d\x9d\x8c\x87\xa2\x92\x8d\xa5\x96\x90\ +\xa7\x96\x90\xa6\x91\x8d\xa3\x8a\x86\x9f\x85\x81\x9c\x82\x7f\x9c\ +\x83\x81\x9d\x87\x84\x9d\x89\x86\xa0\x8d\x8a\xa3\x91\x8e\xa4\x93\ +\x91\xa5\x95\x92\xa6\x97\x93\xa6\x99\x96\xa8\x9c\x96\xa7\x9e\x99\ +\xa9\x9f\x99\xaa\x9f\x99\xaa\x9e\x99\xaa\x9e\x9a\xab\x9d\x9a\xac\ +\x9e\x9a\xad\x9d\x99\xac\x9e\x9a\xad\x9e\x9b\xad\xa0\x9c\xac\xa0\ +\x9c\xad\xa3\x9e\xae\xab\xa4\xb3\xb6\xac\xb8\xbf\xb4\xbe\xc4\xb9\ +\xc2\xcb\xc0\xc9\xd2\xc8\xcf\xd8\xce\xd4\x00\x00\x00\xde\xd7\xde\ +\xde\xd7\xde\xde\xd7\xde\xdf\xd7\xde\xdf\xd7\xdd\xde\xd7\xdc\xde\ +\xd7\xdc\xde\xd6\xdb\xde\xd7\xdc\xde\xd6\xdb\xde\xd6\xdd\xdf\xd7\ +\xde\xdf\xd8\xdf\xe0\xd8\xe2\xdf\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe1\ +\xdd\xd8\xe1\xdd\xd8\xe2\xdd\xd7\xe2\xdd\xd8\xe3\xde\xd9\xe3\xdd\ +\xd9\xe4\xdc\xd8\xe3\xdb\xd7\xe2\xdc\xd8\xe3\xdc\xd9\xe4\xdb\xdb\ +\xe5\xdb\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdb\xda\xe4\ +\xdc\xdb\xe5\xdc\xdc\xe6\xdd\xdb\xe5\xde\xdb\xe5\xdf\xdb\xe6\xdf\ +\xdb\xe6\xdf\xdc\xe5\xe2\xdd\xe6\xe1\xdc\xe5\xe1\xdc\xe5\xdf\xda\ +\xe3\xdb\xd6\xdf\xd6\xd0\xda\xcc\xc7\xd3\xc1\xbd\xca\xba\xb6\xc3\ +\xb7\xb2\xc1\xb3\xad\xbb\xb4\xad\xba\xbc\xb4\xbe\xc7\xbf\xc9\xd2\ +\xca\xd4\xd8\xd2\xdb\xde\xd9\xe2\xe1\xdd\xe4\xe2\xdd\xe6\xe2\xdd\ +\xe6\xe5\xe0\xe8\xe5\xe0\xe9\xe5\xe0\xe9\xe5\xe0\xe9\xe5\xe0\xe9\ +\xe4\xdf\xe8\xe4\xdf\xe8\xe3\xde\xe7\xe5\xe0\xe9\xe4\xdf\xe8\xe6\ +\xe1\xea\xe6\xe1\xeb\xe7\xe2\xeb\xe5\xe0\xe9\xe5\xe0\xe9\xe4\xdf\ +\xe8\xe5\xdf\xe6\xe5\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\ +\xe4\xdd\xe4\xe4\xdd\xe3\xe2\xdd\xe5\xe2\xdd\xe5\xe1\xdc\xe5\xe0\ +\xdb\xe4\xe0\xdb\xe3\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xe0\xd9\ +\xe2\xe1\xd9\xe2\xdf\xd8\xe1\xdc\xd7\xe0\xda\xd4\xdf\xd9\xd3\xdd\ +\xd4\xce\xd9\xce\xc7\xd3\xc5\xc0\xce\xbc\xb6\xc6\xb1\xaa\xbe\xa5\ +\x9e\xb5\x9f\x99\xb0\x9d\x97\xad\x9d\x96\xac\x9d\x97\xac\x9d\x97\ +\xab\x9e\x97\xaa\xa0\x9a\xac\xa4\x9d\xaf\xa8\xa2\xb3\xac\xa5\xb6\ +\xac\xa5\xb6\xa9\xa1\xb3\xa2\x9b\xae\x98\x90\xa7\x8a\x83\x9f\x7e\ +\x77\x99\x72\x6c\x93\x69\x64\x8d\x63\x5f\x89\x65\x61\x8a\x6e\x6b\ +\x90\x79\x76\x97\x82\x7e\x9c\x89\x85\xa0\x8c\x88\xa2\x8c\x89\xa1\ +\x89\x86\x9f\x83\x80\x9a\x7d\x7a\x97\x7b\x7a\x96\x7d\x7c\x99\x80\ +\x7f\x9a\x84\x83\x9c\x8a\x87\xa0\x8d\x8b\xa1\x90\x8e\xa3\x93\x91\ +\xa4\x96\x92\xa5\x98\x94\xa6\x9c\x96\xa7\x9e\x98\xa8\x9f\x99\xa9\ +\x9e\x99\xa9\x9f\x99\xaa\x9d\x99\xab\x9d\x99\xac\x9d\x99\xac\x9e\ +\x9a\xad\x9d\x9a\xad\x9e\x9c\xad\xa0\x9d\xad\xa0\x9d\xad\xa3\x9d\ +\xae\xa8\xa1\xb1\xb1\xa7\xb5\xb8\xae\xba\xc0\xb5\xbf\xc7\xbb\xc4\ +\xcc\xc2\xca\xd1\xc7\xcf\x00\x00\x00\xdf\xd8\xdf\xdf\xd8\xdf\xdf\ +\xd7\xde\xde\xd7\xdd\xde\xd7\xdd\xde\xd8\xdc\xdf\xd8\xdd\xde\xd6\ +\xdb\xde\xd7\xdb\xde\xd7\xdb\xdd\xd5\xdc\xde\xd6\xdd\xde\xd7\xdf\ +\xde\xd8\xe1\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd7\xe2\xdc\xd6\xe1\xdc\ +\xd6\xe2\xdb\xd6\xe1\xdb\xd7\xe2\xdc\xd8\xe2\xdc\xd8\xe3\xdc\xd8\ +\xe3\xdb\xd8\xe3\xdb\xd9\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\ +\xdc\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\xdb\xda\xe4\xdb\xda\xe4\xdc\ +\xdb\xe5\xdd\xdb\xe5\xde\xdb\xe6\xde\xda\xe5\xde\xda\xe5\xde\xda\ +\xe6\xe0\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe0\xdb\xe4\xdf\xda\xe3\ +\xdb\xd6\xdf\xd6\xd1\xdb\xcc\xc9\xd4\xc3\xbf\xcb\xbb\xb7\xc5\xb7\ +\xb2\xc1\xb3\xac\xbc\xb3\xab\xba\xb9\xb1\xbe\xc3\xbc\xc8\xcd\xc8\ +\xd2\xd7\xd2\xdb\xdd\xd8\xe1\xe1\xdc\xe5\xe2\xde\xe7\xe2\xde\xe7\ +\xe3\xdf\xe8\xe3\xdf\xe8\xe3\xdf\xe8\xe3\xdf\xe8\xe4\xdf\xe8\xe3\ +\xde\xe7\xe4\xdf\xe8\xe3\xde\xe7\xe4\xdf\xe8\xe5\xe0\xe9\xe5\xe0\ +\xe9\xe6\xe1\xea\xe5\xe1\xe9\xe6\xe1\xe9\xe5\xe0\xe9\xe6\xe0\xe7\ +\xe6\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe4\ +\xdd\xe4\xe4\xde\xe4\xe3\xde\xe4\xe3\xdd\xe5\xe3\xdc\xe4\xe1\xdc\ +\xe5\xe1\xdc\xe5\xe1\xdb\xe4\xe1\xda\xe3\xe1\xd9\xe2\xe0\xd9\xe1\ +\xdf\xd8\xe1\xde\xd7\xe1\xdb\xd6\xdf\xd8\xd2\xdd\xd3\xcd\xd8\xcc\ +\xc6\xd2\xc1\xbc\xcb\xb7\xb1\xc3\xaa\xa3\xb9\x9b\x94\xaf\x92\x8b\ +\xa8\x92\x8b\xa5\x94\x8e\xa6\x96\x90\xa6\x98\x92\xa7\x98\x92\xa6\ +\x97\x92\xa6\x97\x92\xa7\x9a\x95\xa9\x9c\x97\xaa\x9d\x98\xab\x9b\ +\x96\xaa\x98\x91\xa6\x92\x8b\xa2\x88\x82\x9e\x7e\x79\x98\x74\x6e\ +\x92\x6c\x67\x8d\x66\x61\x89\x64\x5f\x88\x68\x66\x8b\x71\x6f\x92\ +\x79\x78\x97\x7f\x7d\x9a\x83\x81\x9b\x82\x81\x9b\x81\x7f\x99\x7b\ +\x7a\x96\x76\x76\x93\x77\x77\x93\x78\x79\x96\x7c\x7c\x98\x80\x80\ +\x99\x84\x83\x9b\x8b\x88\x9f\x8e\x8c\xa1\x90\x8e\xa2\x94\x90\xa4\ +\x97\x94\xa5\x9a\x96\xa7\x9e\x98\xa8\x9e\x99\xa9\x9f\x99\xa9\x9f\ +\x99\xaa\x9e\x99\xaa\x9d\x9a\xab\x9d\x99\xad\x9d\x9a\xad\x9e\x9b\ +\xad\xa0\x9d\xad\xa1\x9e\xae\xa2\x9e\xae\xa4\x9f\xae\xa8\xa1\xb0\ +\xae\xa5\xb3\xb4\xaa\xb7\xb9\xaf\xbb\xbf\xb5\xbf\xc4\xbb\xc5\xc8\ +\xbf\xc9\x00\x00\x00\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd7\ +\xde\xdf\xd7\xde\xe0\xd8\xde\xdf\xd8\xdc\xde\xd7\xdc\xdd\xd6\xdc\ +\xde\xd6\xdc\xdd\xd5\xdc\xdd\xd6\xdc\xdd\xd6\xde\xdd\xd7\xe0\xdc\ +\xd7\xe0\xdc\xd6\xe0\xdc\xd6\xe1\xdb\xd6\xe1\xda\xd6\xe1\xda\xd6\ +\xe1\xda\xd6\xe1\xdb\xd7\xe2\xdb\xd7\xe2\xdc\xd8\xe3\xda\xd9\xe3\ +\xdb\xda\xe4\xdb\xda\xe4\xda\xd9\xe3\xdb\xda\xe4\xdb\xda\xe4\xdb\ +\xda\xe4\xdb\xda\xe4\xda\xd9\xe3\xdc\xdb\xe5\xdc\xdb\xe5\xdb\xdb\ +\xe5\xdf\xdb\xe6\xdd\xda\xe5\xdd\xd9\xe4\xde\xda\xe5\xde\xda\xe5\ +\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xdf\xda\xe3\xdf\xda\xe3\xdb\ +\xd6\xdf\xd6\xd0\xdb\xce\xca\xd5\xc6\xc2\xce\xbd\xb8\xc6\xb7\xb2\ +\xc1\xb1\xac\xbb\xaf\xa9\xb8\xb6\xb0\xbd\xc2\xbc\xc7\xce\xc8\xd2\ +\xd5\xd1\xdb\xdc\xd8\xe1\xe0\xdd\xe6\xe1\xde\xe7\xe1\xde\xe6\xe1\ +\xde\xe7\xe1\xde\xe7\xe2\xdf\xe8\xe3\xde\xe7\xe4\xdf\xe8\xe3\xde\ +\xe7\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe0\xe9\xe5\xe0\xe9\xe5\xe0\xe9\ +\xe6\xe1\xea\xe5\xe1\xe8\xe5\xe0\xe7\xe7\xe0\xe7\xe6\xdf\xe6\xe6\ +\xde\xe6\xe6\xdf\xe6\xe4\xdd\xe4\xe4\xdd\xe4\xe5\xde\xe5\xe4\xde\ +\xe5\xe4\xdf\xe4\xe4\xde\xe5\xe4\xdd\xe4\xe4\xdc\xe5\xe2\xdc\xe5\ +\xe3\xdb\xe4\xe1\xda\xe3\xe0\xd9\xe1\xdf\xd7\xe0\xdf\xd7\xe1\xdd\ +\xd7\xe0\xdb\xd6\xdf\xd8\xd2\xdd\xd3\xcd\xd8\xcd\xc6\xd3\xc3\xbb\ +\xcb\xb5\xae\xc2\xa8\xa0\xb7\x98\x8f\xac\x8d\x84\xa2\x8d\x86\xa2\ +\x90\x8a\xa3\x96\x90\xa5\x97\x92\xa6\x96\x91\xa5\x96\x91\xa6\x95\ +\x90\xa5\x96\x91\xa6\x97\x92\xa6\x97\x92\xa6\x96\x91\xa6\x94\x8e\ +\xa3\x8f\x88\xa1\x89\x83\x9d\x80\x7b\x99\x78\x73\x93\x6f\x6a\x8e\ +\x68\x64\x8a\x64\x61\x88\x65\x65\x89\x6b\x6b\x8d\x71\x72\x90\x75\ +\x77\x94\x78\x7a\x95\x7b\x7b\x96\x79\x79\x94\x75\x75\x91\x73\x74\ +\x90\x74\x75\x90\x76\x78\x94\x79\x79\x95\x7c\x7d\x97\x81\x82\x9a\ +\x87\x86\x9d\x8b\x8a\x9f\x8f\x8d\xa1\x92\x8f\xa3\x97\x93\xa5\x9b\ +\x95\xa6\x9d\x97\xa8\x9e\x98\xa9\x9f\x99\xa9\x9e\x98\xa9\x9e\x99\ +\xaa\x9d\x9a\xab\x9d\x9a\xac\x9d\x9a\xac\x9f\x9c\xad\xa0\x9d\xad\ +\xa2\x9f\xae\xa4\x9f\xae\xa7\xa1\xb0\xab\xa2\xb1\xae\xa5\xb3\xb1\ +\xa8\xb5\xb4\xaa\xb7\xb6\xac\xb9\xba\xb1\xbd\xbf\xb5\xc2\x00\x00\ +\x00\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd8\xdf\xe0\xd8\xdf\xe0\xd8\xdf\ +\xdf\xd7\xde\xde\xd8\xde\xdf\xd7\xde\xde\xd6\xdd\xde\xd6\xdd\xdd\ +\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdd\xdb\xd4\xde\xda\xd4\xdf\xda\xd4\ +\xdf\xda\xd4\xdf\xd8\xd4\xdf\xd9\xd5\xe0\xd9\xd5\xe0\xd9\xd5\xe0\ +\xd9\xd5\xe0\xd8\xd7\xe1\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd8\xe2\xd9\ +\xd8\xe2\xd9\xd8\xe2\xd9\xd8\xe2\xd9\xd8\xe2\xda\xd9\xe3\xd9\xd8\ +\xe2\xda\xd9\xe3\xda\xd9\xe3\xdb\xd9\xe3\xdb\xd9\xe3\xdd\xd9\xe4\ +\xdd\xd9\xe4\xdd\xd9\xe4\xdc\xd8\xe3\xdc\xd8\xe3\xde\xd9\xe3\xdf\ +\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xdf\xda\xe3\xde\xd9\xe2\xdb\xd6\ +\xe0\xd7\xd3\xdd\xd0\xcc\xd7\xc7\xc3\xd0\xbd\xba\xc7\xb5\xb2\xc0\ +\xae\xaa\xba\xae\xa9\xb8\xb7\xb1\xbf\xc2\xbd\xc9\xcc\xc9\xd4\xd5\ +\xd1\xdc\xdb\xd7\xe2\xdf\xdb\xe6\xe1\xdd\xe8\xe1\xdd\xe7\xe2\xde\ +\xe8\xe1\xdf\xe8\xe2\xdf\xe8\xe3\xdf\xe8\xe3\xde\xe7\xe3\xde\xe7\ +\xe3\xde\xe7\xe3\xde\xe7\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe1\xe6\xe6\ +\xe1\xe7\xe7\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe5\xde\xe5\xe5\xde\ +\xe5\xe4\xdd\xe4\xe5\xde\xe5\xe4\xdd\xe4\xe5\xde\xe5\xe5\xde\xe5\ +\xe4\xdd\xe4\xe5\xde\xe5\xe3\xdc\xe4\xe3\xdb\xe5\xe0\xdb\xe4\xe0\ +\xda\xe3\xe0\xd8\xe2\xe0\xd8\xe2\xde\xd6\xe0\xdd\xd6\xe0\xda\xd5\ +\xde\xd8\xd2\xdd\xd2\xcc\xd8\xcc\xc5\xd3\xc3\xbb\xcb\xb7\xad\xc2\ +\xa8\x9e\xb7\x99\x8f\xad\x8f\x86\xa4\x8f\x88\xa2\x93\x8c\xa2\x96\ +\x90\xa5\x97\x91\xa5\x95\x90\xa5\x93\x8e\xa3\x93\x8f\xa3\x94\x8f\ +\xa4\x94\x90\xa4\x94\x90\xa4\x94\x90\xa3\x92\x8d\xa2\x8e\x89\x9f\ +\x87\x83\x9d\x81\x7c\x98\x79\x74\x94\x72\x6e\x8f\x6b\x68\x8a\x64\ +\x64\x88\x64\x65\x86\x67\x68\x89\x6b\x6e\x8d\x6f\x72\x90\x70\x74\ +\x91\x71\x74\x90\x70\x74\x8f\x6e\x72\x8d\x6d\x71\x8d\x71\x73\x8f\ +\x73\x76\x91\x75\x78\x93\x7a\x7c\x96\x7e\x80\x99\x84\x84\x9b\x89\ +\x88\x9e\x8d\x8b\x9f\x92\x8f\xa3\x97\x93\xa5\x9b\x95\xa6\x9d\x97\ +\xa8\x9e\x98\xa8\x9e\x98\xa9\x9e\x99\xa9\x9d\x99\xaa\x9d\x9a\xaa\ +\x9e\x9b\xab\x9c\x9b\xac\x9f\x9d\xad\xa0\x9e\xae\xa3\x9f\xaf\xa6\ +\xa1\xb0\xaa\xa3\xb1\xad\xa4\xb1\xaf\xa6\xb3\xb0\xa7\xb4\xae\xa5\ +\xb2\xaf\xa6\xb3\xb4\xab\xb8\xba\xb0\xbd\x00\x00\x00\xde\xd7\xde\ +\xe0\xd9\xe0\xe0\xd9\xe0\xdf\xd9\xe0\xe0\xd8\xdf\xdf\xd8\xdf\xdf\ +\xd8\xde\xdf\xd7\xde\xde\xd7\xdd\xde\xd6\xdd\xdc\xd4\xdb\xdc\xd5\ +\xdc\xdb\xd4\xde\xd9\xd3\xdc\xd8\xd3\xde\xd8\xd3\xde\xd7\xd3\xde\ +\xd7\xd3\xde\xd8\xd4\xdf\xd8\xd4\xdf\xd8\xd4\xdf\xd7\xd5\xdf\xd6\ +\xd5\xdf\xd7\xd5\xe0\xd6\xd5\xdf\xd8\xd6\xe1\xd8\xd7\xe1\xd8\xd7\ +\xe1\xd9\xd8\xe2\xda\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe2\xd9\xd7\xe2\ +\xd9\xd8\xe2\xda\xd9\xe3\xdb\xd9\xe3\xdc\xd9\xe3\xdc\xd8\xe3\xdb\ +\xd7\xe2\xda\xd6\xe1\xdb\xd7\xe2\xdc\xd8\xe3\xdd\xd8\xe3\xde\xda\ +\xe3\xdd\xd9\xe2\xde\xd9\xe2\xde\xda\xe3\xdf\xd9\xe2\xdc\xd8\xe1\ +\xd7\xd3\xde\xd0\xcc\xd8\xc7\xc3\xcf\xbb\xb9\xc7\xb2\xaf\xbf\xae\ +\xab\xbb\xb0\xac\xbc\xb8\xb3\xc1\xc2\xbe\xca\xcd\xc8\xd4\xd3\xd1\ +\xdc\xda\xd8\xe2\xdf\xdc\xe6\xe1\xde\xe8\xe1\xdd\xe7\xe2\xdf\xe8\ +\xe1\xdf\xe8\xe4\xdf\xe8\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe7\xe2\ +\xdd\xe6\xe2\xde\xe6\xe3\xdf\xe5\xe4\xdf\xe6\xe6\xdf\xe6\xe5\xdf\ +\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe5\xde\xe5\ +\xe4\xdd\xe4\xe4\xdd\xe4\xe5\xde\xe5\xe5\xde\xe5\xe4\xdd\xe4\xe4\ +\xdd\xe4\xe3\xdb\xe4\xe1\xdb\xe5\xdf\xdb\xe4\xe0\xd8\xe2\xdf\xd8\ +\xe2\xdf\xd7\xe1\xde\xd6\xe0\xdc\xd5\xdf\xda\xd5\xde\xd7\xd1\xdc\ +\xd3\xcd\xd9\xcd\xc6\xd3\xc3\xbc\xcb\xb8\xaf\xc2\xaa\xa0\xb7\x9a\ +\x91\xad\x92\x88\xa6\x92\x88\xa3\x93\x8b\xa3\x96\x8f\xa4\x96\x90\ +\xa4\x94\x8f\xa4\x93\x8e\xa3\x92\x8e\xa2\x92\x8e\xa3\x94\x8f\xa4\ +\x93\x8e\xa3\x93\x8e\xa2\x91\x8c\xa1\x8d\x88\x9f\x88\x84\x9d\x82\ +\x7e\x99\x7b\x76\x94\x73\x70\x8f\x6c\x6b\x8b\x66\x68\x88\x64\x66\ +\x87\x64\x68\x87\x66\x6b\x89\x68\x6e\x8b\x6a\x6f\x8c\x6c\x71\x8c\ +\x6d\x71\x8d\x6b\x70\x8a\x6d\x71\x8c\x70\x74\x8f\x73\x77\x91\x75\ +\x78\x93\x78\x7c\x95\x7d\x7e\x99\x83\x84\x9b\x88\x87\x9d\x8c\x8b\ +\x9f\x93\x8f\xa3\x97\x93\xa5\x9b\x95\xa6\x9d\x97\xa8\x9d\x97\xa8\ +\x9e\x97\xa8\x9d\x99\xaa\x9d\x99\xaa\x9e\x9a\xaa\x9d\x9a\xab\x9e\ +\x9c\xac\xa0\x9d\xad\xa2\x9f\xae\xa5\xa0\xaf\xa8\xa2\xb1\xac\xa4\ +\xb2\xaf\xa5\xb3\xaf\xa5\xb3\xaf\xa6\xb3\xaf\xa5\xb3\xaf\xa6\xb3\ +\xb1\xa8\xb5\xb6\xad\xba\x00\x00\x00\xdd\xd6\xdd\xdf\xd8\xdf\xe0\ +\xd9\xe0\xdf\xd8\xdf\xe0\xd9\xe0\xdf\xd9\xe0\xdf\xd8\xdf\xdf\xd7\ +\xde\xde\xd6\xdd\xde\xd6\xdd\xdc\xd4\xdc\xdc\xd4\xde\xda\xd4\xdd\ +\xd8\xd3\xdd\xd8\xd2\xdd\xd6\xd2\xdd\xd6\xd2\xdd\xd7\xd3\xde\xd7\ +\xd3\xde\xd7\xd3\xde\xd7\xd4\xde\xd6\xd4\xde\xd5\xd3\xdf\xd4\xd3\ +\xde\xd5\xd3\xdf\xd7\xd5\xe0\xd7\xd6\xe0\xd8\xd7\xe1\xd8\xd7\xe1\ +\xd8\xd6\xe2\xd8\xd6\xe1\xd8\xd6\xe1\xd8\xd6\xe2\xd8\xd6\xe2\xd8\ +\xd8\xe1\xda\xd9\xe3\xda\xd9\xe3\xd9\xd7\xe2\xda\xd6\xe1\xda\xd6\ +\xe1\xda\xd6\xe1\xdb\xd7\xe2\xdb\xd7\xe2\xdb\xd7\xe2\xdb\xd8\xe2\ +\xdc\xd8\xe1\xde\xda\xe3\xde\xda\xe3\xdf\xda\xe3\xdc\xd9\xe2\xd7\ +\xd4\xde\xd0\xcc\xd7\xc5\xc2\xcf\xb9\xb6\xc6\xb1\xae\xbe\xae\xab\ +\xbb\xb2\xaf\xbe\xb8\xb3\xc2\xc2\xbe\xca\xca\xc8\xd4\xd3\xd2\xdc\ +\xd9\xd8\xe2\xde\xdc\xe6\xe1\xdd\xe8\xe1\xde\xe7\xe1\xde\xe7\xe1\ +\xde\xe7\xe2\xde\xe7\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe5\xe2\xdd\ +\xe5\xe4\xde\xe5\xe4\xde\xe5\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\ +\xe3\xdc\xe3\xe3\xdc\xe3\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe4\ +\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe3\xdc\xe3\xe3\xdb\xe4\xe1\xda\ +\xe4\xdf\xda\xe3\xdf\xda\xe3\xde\xd8\xe1\xde\xd7\xe1\xdf\xd7\xe0\ +\xdd\xd7\xe0\xdb\xd5\xde\xda\xd5\xde\xd7\xd2\xdc\xd4\xce\xd9\xce\ +\xc7\xd3\xc4\xbd\xcc\xb9\xb1\xc4\xab\xa1\xb8\x9c\x92\xae\x92\x88\ +\xa6\x92\x89\xa4\x94\x8c\xa4\x96\x8f\xa4\x96\x90\xa4\x94\x8f\xa4\ +\x92\x8d\xa2\x91\x8d\xa2\x91\x8c\xa1\x92\x8d\xa2\x91\x8e\xa2\x91\ +\x8d\xa2\x8f\x8c\xa0\x8d\x88\x9e\x88\x85\x9c\x82\x7f\x99\x7c\x78\ +\x95\x75\x73\x91\x6e\x6f\x8d\x6a\x6c\x8a\x67\x6b\x89\x65\x6a\x89\ +\x65\x6c\x89\x63\x6c\x89\x65\x6d\x8a\x68\x70\x8c\x6a\x71\x8b\x6a\ +\x70\x8b\x6d\x73\x8d\x71\x76\x90\x73\x77\x92\x74\x78\x93\x77\x7b\ +\x94\x7c\x7f\x98\x82\x83\x9a\x88\x87\x9c\x8c\x8a\x9e\x92\x8f\xa2\ +\x96\x92\xa4\x99\x94\xa5\x9c\x96\xa7\x9c\x96\xa7\x9d\x97\xa8\x9d\ +\x99\xaa\x9d\x99\xab\x9e\x9b\xab\x9e\x9a\xab\x9e\x9c\xac\xa0\x9d\ +\xae\xa3\x9f\xae\xa6\xa1\xb1\xa9\xa2\xb1\xac\xa4\xb1\xae\xa4\xb2\ +\xb0\xa6\xb4\xb0\xa6\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa8\xb4\xb3\ +\xa9\xb7\x00\x00\x00\xdc\xd5\xdc\xde\xd7\xde\xde\xd7\xde\xe0\xd9\ +\xe0\xdf\xd8\xdf\xde\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdd\xd6\xdd\ +\xdd\xd5\xdc\xdb\xd3\xdd\xdb\xd4\xdd\xd8\xd3\xdc\xd6\xd0\xdb\xd5\ +\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd5\xd1\xdc\xd6\xd2\ +\xdd\xd6\xd2\xde\xd4\xd2\xde\xd3\xd1\xdd\xd3\xd1\xdd\xd3\xd1\xdd\ +\xd4\xd3\xdd\xd5\xd4\xde\xd5\xd4\xdf\xd5\xd4\xe0\xd5\xd3\xde\xd6\ +\xd4\xe0\xd6\xd4\xe0\xd6\xd4\xe0\xd6\xd4\xdf\xd7\xd6\xe1\xd7\xd6\ +\xe0\xd8\xd6\xe1\xd7\xd6\xe0\xd6\xd5\xe0\xd7\xd4\xdf\xd9\xd5\xe0\ +\xd9\xd5\xe0\xd9\xd5\xe0\xd9\xd5\xe0\xda\xd6\xe1\xdb\xd7\xe2\xdb\ +\xd8\xe2\xdd\xda\xe4\xde\xdb\xe4\xdf\xdc\xe5\xdc\xd9\xe2\xd7\xd3\ +\xde\xce\xcb\xd6\xc3\xc1\xce\xb9\xb6\xc5\xb2\xaf\xbf\xb1\xae\xbe\ +\xb2\xaf\xbf\xb8\xb3\xc2\xc0\xbd\xca\xca\xc8\xd4\xd2\xd1\xdb\xd7\ +\xd6\xe0\xdd\xdb\xe6\xe1\xdd\xe7\xe1\xde\xe7\xe0\xde\xe7\xe2\xdd\ +\xe6\xe2\xdd\xe6\xe1\xdc\xe5\xe0\xdc\xe4\xe0\xdd\xe5\xe2\xdc\xe4\ +\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe2\xe1\xda\xe1\xe2\ +\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\ +\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xd9\xe3\xdf\xd8\xe2\xdd\xd8\xe1\ +\xdd\xd8\xe1\xdc\xd7\xe0\xdc\xd7\xdf\xdd\xd6\xe0\xdc\xd5\xde\xda\ +\xd5\xde\xda\xd5\xde\xd9\xd4\xdc\xd4\xce\xd9\xcf\xc8\xd4\xc6\xbf\ +\xcd\xbc\xb3\xc5\xad\xa4\xba\x9d\x93\xae\x93\x89\xa7\x92\x89\xa4\ +\x94\x8b\xa4\x96\x8e\xa5\x97\x90\xa5\x95\x90\xa5\x94\x8f\xa4\x92\ +\x8d\xa2\x91\x8c\xa1\x91\x8c\xa1\x91\x8c\xa2\x91\x8d\xa1\x8e\x8c\ +\xa0\x8c\x8a\x9e\x89\x86\x9c\x84\x81\x99\x7e\x7b\x96\x78\x77\x93\ +\x72\x73\x90\x6d\x6f\x8d\x6a\x6e\x8b\x68\x6e\x8b\x65\x6e\x8a\x64\ +\x6e\x8a\x65\x6f\x8b\x68\x71\x8c\x6a\x73\x8d\x6c\x74\x8d\x6e\x76\ +\x8f\x70\x76\x90\x72\x78\x91\x73\x79\x93\x77\x7d\x95\x7c\x80\x98\ +\x82\x84\x9a\x88\x87\x9c\x8c\x8b\x9f\x92\x8f\xa2\x96\x92\xa5\x98\ +\x94\xa5\x9b\x97\xa7\x9c\x97\xa8\x9b\x98\xa9\x9c\x99\xa9\x9d\x9a\ +\xaa\x9e\x9a\xaa\x9d\x9b\xab\x9f\x9d\xad\xa2\x9f\xae\xa5\xa0\xaf\ +\xa8\xa2\xb1\xab\xa4\xb3\xad\xa4\xb2\xaf\xa6\xb3\xb0\xa7\xb4\xb1\ +\xa8\xb5\xb1\xa7\xb4\xb0\xa7\xb4\xaf\xa6\xb3\xb1\xa7\xb6\x00\x00\ +\x00\xda\xd2\xdb\xdd\xd6\xdc\xde\xd7\xde\xdf\xd8\xdf\xdf\xd8\xdf\ +\xde\xd7\xde\xde\xd7\xdd\xdc\xd5\xdc\xdc\xd4\xdc\xda\xd2\xdc\xd9\ +\xd2\xdc\xd8\xd2\xdb\xd6\xd1\xdb\xd4\xcf\xda\xd4\xd0\xdb\xd4\xd0\ +\xdb\xd3\xcf\xdb\xd3\xcf\xdc\xd3\xcf\xdb\xd4\xd1\xdc\xd3\xd1\xdd\ +\xd3\xd1\xdd\xd2\xd0\xdc\xd2\xd0\xdc\xd2\xd0\xdc\xd3\xd1\xdd\xd3\ +\xd1\xdc\xd2\xd1\xdd\xd3\xd1\xdd\xd3\xd1\xdd\xd4\xd2\xde\xd4\xd2\ +\xde\xd4\xd2\xde\xd4\xd2\xde\xd5\xd3\xdf\xd5\xd4\xde\xd5\xd4\xdf\ +\xd5\xd3\xde\xd4\xd2\xde\xd5\xd3\xde\xd6\xd4\xde\xd5\xd3\xde\xd4\ +\xd3\xdd\xd6\xd3\xde\xd7\xd5\xdf\xda\xd6\xe1\xda\xd7\xe1\xdc\xd8\ +\xe3\xdd\xd9\xe4\xdd\xda\xe4\xdf\xda\xe5\xdb\xd7\xe2\xd4\xd3\xdd\ +\xcd\xcb\xd7\xc3\xc1\xcd\xba\xb7\xc5\xb4\xb1\xc1\xb2\xaf\xbe\xb1\ +\xae\xbe\xb6\xb3\xc1\xbd\xba\xc9\xc8\xc6\xd2\xd0\xce\xd9\xd7\xd6\ +\xe0\xde\xdc\xe5\xe0\xdd\xe6\xe1\xdd\xe6\xe1\xdd\xe6\xe2\xdd\xe6\ +\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xda\xe3\xe1\xda\xe2\xe1\ +\xda\xe1\xe1\xda\xe1\xe0\xd9\xe1\xe0\xd8\xe0\xe0\xd9\xe0\xe1\xda\ +\xe1\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\xe1\xe0\xd9\xe0\xe0\xd9\xe0\ +\xdf\xd8\xe1\xde\xd7\xe1\xdd\xd8\xe1\xdc\xd7\xe0\xdc\xd7\xe0\xdb\ +\xd6\xdf\xdb\xd6\xdf\xda\xd6\xdf\xda\xd5\xde\xda\xd4\xde\xda\xd5\ +\xde\xd9\xd4\xdd\xd5\xcf\xda\xd0\xc9\xd5\xc8\xc1\xce\xbe\xb6\xc6\ +\xaf\xa6\xbc\xa1\x94\xb0\x93\x89\xa7\x91\x88\xa4\x94\x8b\xa4\x96\ +\x8e\xa5\x97\x90\xa5\x98\x91\xa5\x96\x90\xa5\x95\x8f\xa4\x94\x8e\ +\xa3\x92\x8d\xa2\x92\x8d\xa2\x91\x8d\xa1\x90\x8b\xa0\x8d\x8a\x9e\ +\x8a\x88\x9c\x87\x84\x99\x82\x7f\x97\x7c\x7a\x95\x77\x77\x92\x72\ +\x74\x8f\x6f\x72\x8e\x6c\x73\x8e\x69\x72\x8c\x68\x72\x8c\x69\x72\ +\x8c\x6b\x74\x8e\x6c\x75\x8e\x6c\x76\x8f\x6b\x76\x8e\x6d\x77\x90\ +\x70\x79\x92\x74\x7b\x95\x78\x7e\x96\x7d\x81\x99\x83\x85\x9b\x89\ +\x88\x9d\x8e\x8c\x9f\x92\x8f\xa2\x96\x91\xa5\x98\x94\xa6\x9a\x97\ +\xa7\x9b\x98\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9e\x9b\xab\x9e\x9c\xac\ +\x9f\x9c\xac\xa0\x9e\xae\xa3\x9f\xaf\xa7\xa2\xb1\xaa\xa3\xb2\xac\ +\xa4\xb3\xaf\xa6\xb3\xaf\xa7\xb4\xb1\xa8\xb5\xb2\xa9\xb6\xb2\xa8\ +\xb5\xb1\xa8\xb5\xb1\xa7\xb4\xb0\xa7\xb4\x00\x00\x00\xd8\xd1\xdb\ +\xda\xd4\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xdd\xd6\xde\xdd\xd5\xde\xdc\ +\xd5\xdd\xdb\xd3\xdc\xda\xd2\xdb\xd8\xd1\xdb\xd6\xd1\xdb\xd5\xd0\ +\xdb\xd3\xcf\xda\xd4\xd0\xdb\xd3\xcf\xdb\xd3\xcf\xdb\xd3\xcf\xdb\ +\xd2\xcf\xdb\xd0\xce\xda\xd0\xce\xda\xd0\xce\xda\xd0\xce\xda\xd0\ +\xce\xda\xcf\xcd\xd9\xd0\xce\xda\xd0\xce\xda\xd0\xce\xda\xd0\xce\ +\xda\xd0\xce\xda\xd1\xcf\xdb\xd2\xd0\xdc\xd2\xd0\xdc\xd1\xcf\xdb\ +\xd2\xd0\xdc\xd2\xd0\xdc\xd2\xd0\xdc\xd2\xd0\xdc\xd3\xd1\xdd\xd3\ +\xd1\xdd\xd3\xd2\xdd\xd3\xd1\xdd\xd2\xd1\xdc\xd3\xd1\xdd\xd4\xd2\ +\xde\xd5\xd3\xdf\xd7\xd5\xe0\xda\xd8\xe2\xda\xd8\xe2\xdc\xd9\xe4\ +\xdd\xda\xe4\xdf\xdb\xe6\xde\xda\xe5\xda\xd8\xe2\xd4\xd2\xdd\xcd\ +\xcb\xd7\xc3\xc0\xce\xba\xb8\xc7\xb5\xb2\xc1\xb1\xae\xbd\xb1\xae\ +\xbd\xb3\xaf\xbe\xbc\xb9\xc7\xc7\xc4\xd1\xcf\xce\xd9\xd7\xd5\xdf\ +\xdc\xd9\xe3\xde\xda\xe4\xde\xdb\xe4\xe0\xda\xe3\xdf\xda\xe3\xdf\ +\xda\xe3\xde\xd9\xe2\xe0\xd8\xe1\xe0\xd9\xe3\xe0\xd9\xe1\xe1\xd9\ +\xe2\xdf\xd7\xe1\xe0\xd8\xe1\xdf\xd8\xe1\xe0\xd8\xe1\xe0\xd9\xe0\ +\xe0\xd9\xe0\xe0\xd8\xe0\xdf\xd8\xe0\xde\xd7\xe0\xdd\xd7\xe0\xdc\ +\xd7\xe0\xdb\xd6\xdf\xda\xd5\xde\xda\xd5\xde\xda\xd4\xdf\xda\xd5\ +\xde\xda\xd5\xde\xd9\xd5\xdd\xda\xd5\xdd\xd9\xd5\xdd\xd9\xd4\xde\ +\xd7\xd1\xdb\xd1\xca\xd5\xc9\xc2\xd0\xbe\xb7\xc7\xb1\xa8\xbd\xa2\ +\x98\xb2\x93\x89\xa8\x91\x88\xa4\x93\x8a\xa4\x96\x8e\xa5\x98\x91\ +\xa6\x99\x93\xa7\x99\x93\xa6\x98\x91\xa5\x96\x91\xa4\x95\x90\xa4\ +\x94\x8f\xa4\x94\x8f\xa2\x91\x8e\xa1\x91\x8c\xa1\x8e\x8a\x9e\x89\ +\x87\x9c\x86\x83\x99\x82\x80\x98\x7d\x7c\x96\x79\x7a\x93\x74\x78\ +\x91\x71\x77\x90\x6e\x76\x8f\x6c\x76\x8f\x6a\x76\x8e\x6b\x76\x90\ +\x6d\x78\x91\x6c\x77\x91\x6c\x77\x91\x6e\x7a\x93\x72\x7c\x94\x77\ +\x7e\x97\x7a\x7f\x98\x7f\x82\x9b\x85\x87\x9c\x8a\x89\x9d\x8e\x8c\ +\xa0\x91\x8f\xa2\x95\x92\xa5\x98\x95\xa7\x99\x97\xa7\x9a\x98\xa8\ +\x9c\x99\xa9\x9c\x9a\xaa\x9d\x9c\xac\x9d\x9c\xac\x9f\x9d\xad\xa2\ +\x9e\xae\xa5\xa1\xb0\xa9\xa3\xb1\xab\xa4\xb3\xae\xa5\xb3\xb0\xa7\ +\xb4\xb2\xa8\xb5\xb2\xa9\xb6\xb2\xa9\xb6\xb1\xa8\xb5\xb2\xa9\xb6\ +\xb2\xa8\xb5\xb1\xa8\xb4\x00\x00\x00\xd7\xcf\xd9\xd9\xd1\xdb\xda\ +\xd2\xdc\xdb\xd4\xde\xdb\xd3\xdc\xdb\xd3\xdd\xd9\xd2\xdc\xd8\xd0\ +\xda\xd5\xcf\xd9\xd5\xcf\xd9\xd2\xcd\xd8\xd1\xce\xd9\xd1\xcd\xd8\ +\xd3\xcf\xda\xd2\xcf\xda\xd1\xce\xda\xd0\xce\xda\xd0\xce\xda\xcf\ +\xcd\xd9\xce\xcc\xd8\xce\xcc\xd8\xcd\xcb\xd7\xce\xcc\xd8\xce\xcc\ +\xd8\xce\xcc\xd8\xce\xcc\xd8\xcd\xcb\xd7\xcd\xcb\xd7\xcd\xcb\xd7\ +\xce\xcc\xd8\xcf\xcd\xd9\xcf\xcd\xd9\xcf\xcd\xd9\xcf\xcd\xd9\xd0\ +\xce\xda\xd0\xce\xda\xd0\xce\xda\xd1\xcf\xdb\xd2\xd0\xdc\xd2\xd0\ +\xdc\xd0\xce\xda\xd0\xce\xda\xd1\xcf\xdb\xd3\xd1\xdd\xd4\xd2\xde\ +\xd6\xd5\xdf\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd8\xe2\xda\xd9\xe3\xdd\ +\xd9\xe4\xdb\xdb\xe5\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\ +\xd6\xc1\xc1\xcd\xba\xb7\xc6\xb3\xb0\xbf\xaf\xac\xbc\xad\xaa\xb9\ +\xb0\xad\xbc\xba\xb7\xc6\xc4\xc2\xce\xcb\xc9\xd5\xd0\xcd\xd8\xd5\ +\xd1\xdc\xd9\xd4\xde\xdb\xd6\xdf\xdc\xd7\xe0\xde\xd9\xe2\xdd\xd8\ +\xe1\xdd\xd7\xe1\xdd\xd8\xe1\xdd\xd7\xe1\xde\xd8\xe2\xde\xd8\xe1\ +\xdf\xd7\xe1\xdf\xd7\xe0\xe0\xd8\xe1\xde\xd6\xe0\xde\xd7\xdf\xde\ +\xd7\xdf\xdd\xd5\xe0\xdc\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xda\xd3\ +\xde\xd9\xd4\xdd\xd8\xd4\xdd\xda\xd4\xdf\xda\xd4\xdf\xd9\xd4\xde\ +\xda\xd4\xde\xda\xd4\xde\xd9\xd4\xde\xda\xd6\xdf\xd7\xd1\xdc\xd1\ +\xcc\xd7\xc9\xc3\xd1\xbe\xb8\xc8\xb1\xab\xbe\xa5\x9b\xb4\x96\x8c\ +\xa9\x90\x86\xa4\x92\x8a\xa4\x95\x8e\xa4\x98\x90\xa6\x9a\x93\xa8\ +\x9b\x95\xa9\x9a\x94\xa7\x9a\x92\xa6\x97\x92\xa7\x96\x90\xa5\x95\ +\x91\xa5\x95\x90\xa4\x92\x8e\xa2\x91\x8c\xa0\x8d\x8a\x9e\x8a\x88\ +\x9c\x87\x85\x9a\x84\x83\x99\x80\x81\x97\x7b\x7d\x95\x77\x7b\x93\ +\x74\x7a\x92\x6f\x79\x91\x6d\x79\x90\x6c\x77\x91\x6d\x79\x92\x6c\ +\x79\x94\x6d\x79\x93\x71\x7b\x96\x75\x7f\x96\x78\x7e\x98\x7c\x82\ +\x9a\x81\x85\x9b\x85\x87\x9c\x8a\x8a\x9e\x8e\x8c\xa0\x92\x90\xa3\ +\x94\x92\xa5\x96\x94\xa7\x99\x97\xa7\x99\x98\xa8\x9a\x99\xa9\x9d\ +\x9c\xac\x9d\x9c\xac\x9f\x9d\xad\xa1\x9e\xae\xa4\xa1\xb0\xa8\xa2\ +\xb1\xab\xa4\xb2\xad\xa6\xb3\xb0\xa6\xb3\xb1\xa8\xb5\xb3\xa9\xb6\ +\xb3\xa9\xb6\xb3\xa8\xb5\xb2\xa9\xb6\xb3\xa9\xb6\xb2\xa8\xb5\xb1\ +\xa8\xb5\x00\x00\x00\xd2\xcd\xd6\xd4\xce\xd8\xd6\xd1\xda\xd8\xd0\ +\xda\xd8\xd0\xda\xd7\xcf\xd9\xd6\xcf\xd8\xd4\xce\xd8\xd1\xcc\xd6\ +\xcf\xcb\xd6\xcf\xcb\xd7\xd0\xcc\xd7\xd0\xcc\xd8\xd0\xcc\xd8\xd1\ +\xcd\xd9\xd0\xce\xda\xd0\xce\xda\xcf\xcd\xd9\xce\xcc\xd8\xcd\xcb\ +\xd8\xcc\xca\xd6\xcc\xca\xd7\xcc\xc9\xd7\xcb\xc9\xd5\xcc\xca\xd6\ +\xcb\xc9\xd5\xca\xc8\xd4\xca\xc8\xd4\xca\xc8\xd4\xcc\xca\xd6\xcc\ +\xca\xd6\xcc\xca\xd6\xcc\xca\xd6\xcc\xca\xd6\xcd\xcb\xd7\xcd\xcb\ +\xd7\xcd\xcb\xd7\xce\xcc\xd8\xd0\xce\xda\xd0\xce\xda\xcf\xcd\xd9\ +\xcf\xcd\xd9\xcf\xcd\xd9\xd1\xcf\xdb\xd3\xd1\xdd\xd4\xd2\xdd\xd5\ +\xd3\xdf\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xd9\xd8\xe2\xda\xd9\ +\xe3\xdb\xda\xe4\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\xd6\ +\xc3\xc1\xcf\xba\xb7\xc5\xb1\xae\xbe\xaa\xa7\xb7\xa8\xa5\xb5\xaa\ +\xa7\xb7\xb2\xae\xbe\xba\xb7\xc5\xc0\xbd\xc9\xc7\xc3\xce\xcd\xc9\ +\xd4\xd4\xcd\xd8\xd7\xd2\xdb\xd9\xd4\xdd\xdb\xd6\xdf\xdb\xd6\xdf\ +\xdb\xd6\xdf\xdc\xd7\xe0\xdd\xd8\xe1\xdd\xd8\xe1\xdd\xd9\xe2\xdd\ +\xd9\xe2\xdd\xd9\xe2\xdd\xd8\xe1\xdd\xd6\xe0\xdc\xd7\xe0\xdb\xd6\ +\xdf\xda\xd5\xdf\xda\xd4\xdf\xd8\xd2\xdd\xd8\xd2\xdd\xd8\xd3\xdd\ +\xd8\xd2\xdc\xd8\xd2\xdc\xd8\xd2\xdd\xd6\xd1\xdc\xd7\xd1\xdc\xd8\ +\xd2\xdd\xd8\xd3\xdd\xd9\xd3\xdf\xd8\xd2\xdc\xd2\xcc\xd7\xca\xc3\ +\xd1\xbf\xb9\xc9\xb1\xaa\xbe\xa3\x9a\xb3\x97\x8d\xa9\x8f\x86\xa3\ +\x8f\x89\xa3\x95\x8d\xa6\x99\x92\xa7\x9c\x95\xa9\x9d\x97\xaa\x9c\ +\x96\xa9\x9c\x96\xa8\x9b\x94\xa8\x99\x94\xa8\x98\x93\xa7\x96\x92\ +\xa5\x95\x91\xa4\x94\x8f\xa3\x91\x8e\xa1\x8f\x8c\x9f\x8c\x8a\x9d\ +\x8a\x89\x9d\x87\x87\x9b\x82\x83\x98\x7d\x80\x97\x7a\x80\x96\x76\ +\x7e\x95\x72\x7d\x94\x6e\x7a\x93\x6e\x7b\x94\x70\x7a\x95\x72\x7e\ +\x97\x75\x7f\x97\x79\x80\x9a\x7d\x83\x9c\x80\x84\x9c\x82\x85\x9d\ +\x87\x89\x9d\x8b\x8b\x9f\x90\x8f\xa3\x92\x90\xa4\x95\x93\xa6\x96\ +\x94\xa7\x98\x96\xa9\x9a\x98\xaa\x9b\x99\xab\x9d\x9c\xac\x9e\x9d\ +\xad\xa2\x9f\xae\xa5\xa0\xb0\xa8\xa2\xb1\xab\xa4\xb3\xad\xa6\xb3\ +\xaf\xa7\xb4\xb0\xa7\xb4\xb1\xa8\xb5\xb2\xa9\xb6\xb2\xa9\xb6\xb2\ +\xa9\xb6\xb2\xaa\xb6\xb3\xaa\xb6\xb2\xa9\xb6\xb2\xa9\xb6\x00\x00\ +\x00\xcf\xca\xd4\xd1\xcc\xd5\xd2\xcd\xd6\xd3\xcd\xd7\xd2\xcd\xd7\ +\xd2\xcd\xd7\xd2\xcc\xd6\xd0\xcb\xd6\xce\xc9\xd4\xcc\xc9\xd5\xcc\ +\xca\xd6\xcd\xca\xd6\xce\xcb\xd7\xcf\xcc\xd8\xce\xcc\xd8\xce\xcc\ +\xd8\xcf\xcd\xd9\xcf\xcd\xd9\xcd\xcb\xd7\xcd\xcb\xd7\xcc\xc9\xd6\ +\xcc\xc9\xd6\xcc\xc9\xd6\xcb\xc9\xd5\xca\xc8\xd4\xca\xc8\xd4\xc9\ +\xc7\xd3\xc9\xc7\xd3\xc9\xc7\xd3\xca\xc8\xd4\xc9\xc7\xd3\xc9\xc7\ +\xd4\xc9\xc6\xd4\xc9\xc6\xd4\xc9\xc6\xd5\xca\xc7\xd5\xcb\xc9\xd5\ +\xcc\xca\xd6\xce\xcc\xd8\xce\xcc\xd8\xce\xcc\xd8\xce\xcc\xd8\xce\ +\xcc\xd8\xcf\xcd\xd9\xd0\xce\xda\xd1\xd0\xdb\xd3\xd2\xdc\xd5\xd4\ +\xde\xd6\xd5\xdf\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xda\xd9\xe3\ +\xdb\xda\xe4\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\xd6\xc2\ +\xc1\xce\xb9\xb7\xc5\xaf\xac\xbc\xa6\xa3\xb5\x9f\x9b\xad\x9d\x99\ +\xab\xa4\x9f\xaf\xad\xa7\xb7\xb4\xaf\xbe\xbe\xb9\xc5\xc8\xc2\xcd\ +\xcf\xc9\xd4\xd4\xcf\xd9\xd8\xd3\xdb\xda\xd5\xde\xdb\xd6\xdf\xdb\ +\xd6\xdf\xdd\xd8\xe1\xde\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\xdd\xd8\ +\xe1\xdd\xd7\xe1\xdb\xd6\xe0\xda\xd6\xdf\xdb\xd6\xe0\xda\xd4\xdf\ +\xda\xd4\xdf\xd9\xd2\xdd\xd7\xd3\xde\xd7\xd2\xdd\xd6\xd1\xdc\xd5\ +\xd1\xdc\xd5\xd1\xdc\xd4\xd1\xdc\xd5\xd1\xdc\xd5\xd1\xdc\xd7\xd2\ +\xdd\xd8\xd3\xdd\xd7\xd1\xdc\xd3\xcc\xd7\xca\xc4\xd1\xbe\xb9\xc8\ +\xb1\xaa\xbe\xa3\x9c\xb3\x96\x8e\xa9\x8c\x85\xa2\x8f\x88\xa3\x95\ +\x8e\xa6\x99\x92\xa8\x9d\x97\xaa\x9f\x98\xab\x9f\x99\xac\x9f\x99\ +\xab\x9e\x98\xaa\x9c\x96\xaa\x9a\x96\xa9\x98\x94\xa7\x98\x93\xa6\ +\x96\x93\xa5\x95\x91\xa4\x94\x91\xa4\x91\x8e\xa1\x8f\x8e\xa1\x8c\ +\x8b\x9f\x89\x89\x9d\x84\x86\x9b\x7f\x85\x99\x7b\x82\x98\x76\x7f\ +\x97\x72\x7c\x95\x72\x7e\x96\x75\x7f\x98\x79\x82\x9a\x7c\x84\x9d\ +\x7e\x84\x9d\x82\x86\x9e\x85\x88\xa0\x87\x8a\x9f\x8c\x8d\xa1\x8f\ +\x8e\xa2\x91\x90\xa4\x94\x92\xa5\x95\x93\xa7\x96\x94\xa8\x99\x97\ +\xaa\x9a\x98\xab\x9d\x9b\xac\xa1\x9e\xae\xa5\xa1\xb0\xa7\xa2\xb1\ +\xa8\xa2\xb1\xab\xa4\xb3\xad\xa6\xb4\xaf\xa6\xb4\xb1\xa8\xb4\xb1\ +\xa8\xb5\xb2\xa9\xb6\xb1\xa9\xb6\xb2\xa9\xb6\xb1\xa8\xb5\xb1\xa9\ +\xb5\xb2\xa9\xb6\xb3\xaa\xb7\xb2\xa9\xb6\x00\x00\x00\xcb\xc7\xd2\ +\xcd\xc8\xd3\xcd\xc8\xd3\xce\xc8\xd3\xce\xc8\xd3\xcd\xc8\xd3\xcc\ +\xc8\xd3\xcc\xc8\xd3\xca\xc7\xd3\xca\xc7\xd3\xca\xc8\xd4\xcb\xc9\ +\xd5\xcd\xcb\xd7\xcc\xca\xd6\xcd\xcb\xd7\xcd\xcb\xd7\xce\xcc\xd8\ +\xce\xcc\xd8\xcd\xcb\xd7\xcc\xca\xd6\xcb\xc9\xd5\xcb\xc9\xd5\xcb\ +\xc8\xd5\xcb\xc9\xd5\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\xd4\xc8\xc6\ +\xd2\xc8\xc6\xd2\xc8\xc6\xd2\xc7\xc5\xd1\xc7\xc4\xd1\xc6\xc3\xd2\ +\xc6\xc4\xd2\xc7\xc4\xd2\xc8\xc6\xd3\xca\xc8\xd4\xcb\xc9\xd5\xcc\ +\xca\xd6\xcd\xcb\xd7\xcc\xca\xd6\xcc\xca\xd6\xcd\xcb\xd7\xcd\xcb\ +\xd7\xce\xcc\xd8\xcf\xcd\xd9\xd2\xd0\xdb\xd3\xd2\xdc\xd4\xd3\xdd\ +\xd5\xd4\xde\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xdb\xda\xe4\xdc\ +\xdb\xe5\xdc\xdb\xe5\xd9\xd8\xe2\xd4\xd2\xdd\xcc\xca\xd6\xc3\xc2\ +\xce\xb9\xb6\xc5\xac\xa9\xb9\x9e\x9a\xac\x91\x8c\xa1\x8b\x86\x9b\ +\x90\x8a\x9d\x9e\x98\xa9\xab\xa6\xb5\xb9\xb3\xc0\xc6\xbf\xca\xce\ +\xc8\xd3\xd4\xcf\xd9\xd8\xd3\xdc\xda\xd5\xde\xdb\xd6\xdf\xdc\xd7\ +\xe0\xde\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe2\xdc\xd8\xe2\xdc\xd6\xe0\ +\xda\xd5\xe0\xd9\xd5\xe0\xd8\xd4\xdf\xd8\xd4\xdf\xd8\xd3\xde\xd7\ +\xd3\xde\xd6\xd2\xdd\xd5\xd1\xdc\xd5\xd1\xdc\xd4\xd0\xdb\xd4\xd0\ +\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd5\xd1\xdc\xd5\xd1\xdc\xd5\xd1\xdc\ +\xd5\xd0\xdb\xd0\xcc\xd7\xc7\xc3\xcf\xbd\xb8\xc6\xb0\xab\xbe\xa4\ +\x9d\xb3\x97\x8e\xa9\x8d\x86\xa2\x8e\x88\xa3\x95\x8e\xa6\x9a\x94\ +\xa8\x9e\x98\xab\xa0\x9a\xab\xa1\x9b\xad\xa0\x9a\xac\xa0\x9a\xab\ +\x9d\x97\xa9\x9d\x97\xa8\x9b\x96\xa9\x99\x94\xa7\x99\x94\xa7\x98\ +\x94\xa6\x96\x92\xa5\x96\x92\xa4\x94\x90\xa3\x91\x8f\xa2\x8f\x8e\ +\xa0\x88\x8b\x9e\x83\x88\x9c\x7f\x85\x99\x7b\x82\x9a\x79\x81\x99\ +\x79\x81\x99\x7c\x84\x9c\x7f\x86\x9e\x82\x87\x9f\x83\x88\xa0\x87\ +\x8b\xa2\x8b\x8d\xa2\x8f\x8f\xa3\x90\x90\xa4\x92\x91\xa5\x94\x92\ +\xa6\x96\x94\xa8\x96\x94\xa8\x97\x95\xa9\x9a\x98\xab\x9c\x99\xac\ +\xa2\x9d\xaf\xa7\xa2\xb1\xac\xa5\xb3\xad\xa6\xb4\xad\xa7\xb5\xaf\ +\xa8\xb6\xb0\xa8\xb6\xb1\xa8\xb5\xb1\xa8\xb5\xb1\xa8\xb5\xb2\xa9\ +\xb6\xb2\xa9\xb6\xb2\xa9\xb6\xb2\xa9\xb6\xb2\xa8\xb6\xb2\xa9\xb6\ +\xb3\xaa\xb7\xb2\xa9\xb6\x00\x00\x00\xc9\xc5\xd0\xc9\xc5\xd0\xc8\ +\xc4\xcf\xc8\xc3\xce\xc8\xc4\xcf\xc9\xc5\xd0\xc8\xc5\xd1\xc9\xc6\ +\xd1\xc8\xc5\xd1\xc7\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xca\xc8\xd4\ +\xcb\xc9\xd5\xcb\xc9\xd5\xcc\xca\xd6\xcc\xca\xd6\xcc\xca\xd6\xcb\ +\xc9\xd5\xca\xc8\xd4\xcb\xc9\xd5\xca\xc8\xd4\xca\xc8\xd4\xcb\xc9\ +\xd5\xca\xc8\xd4\xca\xc8\xd4\xc9\xc7\xd3\xc9\xc7\xd3\xc8\xc6\xd2\ +\xc8\xc6\xd2\xc5\xc3\xcf\xc4\xc2\xd0\xc4\xc1\xd0\xc5\xc2\xd1\xc5\ +\xc2\xd1\xc7\xc4\xd2\xc8\xc6\xd2\xc9\xc7\xd4\xcb\xc9\xd5\xca\xc8\ +\xd4\xca\xc8\xd4\xcb\xc9\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xcd\xcb\xd7\ +\xce\xcc\xd8\xcf\xcd\xd9\xd2\xd0\xdb\xd3\xd2\xdc\xd4\xd3\xdd\xd6\ +\xd5\xdf\xd7\xd6\xe0\xd8\xd7\xe1\xda\xd9\xe3\xda\xd9\xe3\xda\xd9\ +\xe3\xdc\xdb\xe5\xd8\xd7\xe1\xd3\xd1\xdd\xcc\xc9\xd6\xc5\xc2\xcf\ +\xb8\xb5\xc4\xa6\xa3\xb5\x92\x8f\xa3\x80\x7b\x92\x73\x6e\x85\x7d\ +\x79\x8f\x96\x90\xa4\xaa\xa5\xb5\xba\xb6\xc3\xc6\xc3\xce\xd0\xcc\ +\xd7\xd6\xd2\xdc\xd9\xd4\xdf\xda\xd6\xdf\xdb\xd7\xe0\xdc\xd7\xe1\ +\xdc\xd8\xe2\xdb\xd7\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd8\xd4\xdf\xd9\ +\xd5\xe0\xd7\xd3\xde\xd7\xd3\xde\xd6\xd2\xdd\xd4\xd0\xdb\xd4\xd0\ +\xdb\xd4\xd0\xdb\xd3\xcf\xdb\xd3\xcf\xdb\xd4\xd0\xdb\xd4\xd0\xdb\ +\xd4\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd4\xd0\xdb\xd3\xcf\xda\xd0\ +\xcc\xd7\xc6\xc2\xce\xbc\xb7\xc5\xb0\xac\xbe\xa7\xa1\xb5\x9b\x94\ +\xaa\x92\x8c\xa4\x90\x8a\xa3\x96\x8f\xa6\x9b\x94\xa9\x9f\x98\xab\ +\xa2\x9b\xad\xa4\x9c\xad\xa3\x9b\xac\xa0\x9a\xab\x9f\x99\xaa\x9d\ +\x97\xa8\x9c\x96\xa8\x9d\x96\xa7\x9b\x95\xa7\x9a\x95\xa6\x99\x95\ +\xa5\x97\x94\xa5\x97\x93\xa5\x95\x93\xa3\x92\x91\xa3\x8d\x8e\xa0\ +\x85\x8a\x9d\x82\x87\x9c\x7f\x86\x9c\x80\x86\x9d\x80\x86\x9d\x83\ +\x89\x9f\x86\x8a\xa0\x88\x8c\xa3\x8c\x8f\xa4\x90\x90\xa4\x94\x93\ +\xa7\x94\x93\xa7\x95\x93\xa7\x96\x94\xa8\x96\x94\xa8\x97\x95\xa9\ +\x98\x96\xaa\x99\x97\xab\x9c\x99\xac\x9f\x9c\xae\xa5\xa0\xb1\xaa\ +\xa4\xb3\xaf\xa8\xb6\xb1\xab\xb7\xb3\xac\xb9\xb4\xad\xba\xb5\xad\ +\xba\xb3\xaa\xb7\xb2\xa8\xb5\xb2\xa9\xb6\xb1\xa8\xb5\xb0\xa7\xb4\ +\xb0\xa7\xb4\xb0\xa7\xb4\xb1\xa8\xb5\xb2\xa9\xb6\xb2\xa9\xb6\xb2\ +\xa9\xb6\x00\x00\x00\xc6\xc2\xcd\xc6\xc2\xcd\xc4\xc1\xcc\xc4\xc0\ +\xcc\xc4\xc1\xcd\xc4\xc2\xce\xc4\xc2\xcf\xc6\xc4\xd0\xc6\xc4\xd0\ +\xc7\xc5\xd1\xc8\xc6\xd3\xc9\xc7\xd3\xca\xc8\xd4\xcb\xca\xd6\xcc\ +\xca\xd6\xcc\xca\xd6\xcc\xc9\xd6\xcc\xca\xd6\xcb\xc9\xd5\xcb\xc9\ +\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xcb\xc9\xd5\xca\xc8\xd4\ +\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\xd4\xc9\xc7\xd3\xc8\xc6\xd2\xc5\ +\xc3\xcf\xc4\xc1\xce\xc3\xc1\xcd\xc5\xc1\xd0\xc4\xc2\xd0\xc5\xc3\ +\xd0\xc7\xc5\xd1\xc8\xc6\xd2\xc9\xc7\xd3\xc9\xc7\xd3\xc9\xc7\xd3\ +\xc9\xc7\xd3\xc9\xc7\xd3\xc9\xc7\xd3\xcb\xc9\xd5\xcc\xca\xd6\xce\ +\xcc\xd8\xd0\xce\xda\xd2\xd1\xdb\xd4\xd3\xdd\xd5\xd4\xde\xd7\xd6\ +\xe0\xd7\xd6\xe0\xd8\xd7\xe1\xd9\xd8\xe2\xdb\xda\xe4\xdb\xda\xe4\ +\xda\xd9\xe3\xd8\xd7\xe1\xd4\xd2\xde\xcd\xcc\xd7\xc4\xc2\xcf\xb4\ +\xb1\xc0\xa0\x9d\xaf\x8a\x88\x9c\x6f\x6d\x84\x63\x60\x79\x7c\x78\ +\x8f\x9a\x97\xab\xb1\xae\xbe\xc2\xbf\xcc\xcc\xc9\xd5\xd4\xd1\xdc\ +\xd8\xd4\xdf\xd9\xd5\xdf\xd9\xd6\xe0\xda\xd6\xe1\xda\xd6\xe1\xd9\ +\xd5\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd8\xd4\xdf\xd8\xd4\xdf\xd6\xd2\ +\xdd\xd6\xd2\xdd\xd4\xd0\xdc\xd4\xd0\xdb\xd3\xcf\xdb\xd3\xcf\xdb\ +\xd4\xcf\xdc\xd4\xd0\xdc\xd5\xd1\xdc\xd5\xd1\xdc\xd6\xd2\xdd\xd4\ +\xd0\xdb\xd5\xd1\xdc\xd4\xd0\xdb\xd4\xd0\xdb\xcf\xcc\xd6\xc7\xc3\ +\xcf\xbd\xb8\xc7\xb3\xae\xbf\xaa\xa4\xb6\x9f\x99\xad\x96\x90\xa7\ +\x94\x8e\xa5\x96\x90\xa7\x9c\x96\xaa\xa0\x99\xab\xa3\x9c\xac\xa3\ +\x9c\xad\xa3\x9b\xac\xa0\x9a\xab\xa0\x9a\xab\x9f\x99\xaa\x9e\x98\ +\xa9\x9c\x96\xa7\x9c\x96\xa7\x9b\x95\xa6\x9a\x96\xa7\x99\x96\xa6\ +\x98\x95\xa5\x97\x94\xa4\x94\x93\xa3\x90\x90\xa1\x89\x8c\x9e\x85\ +\x89\x9d\x84\x88\x9d\x84\x8a\x9f\x86\x8a\xa0\x8a\x8d\xa2\x8d\x90\ +\xa4\x91\x91\xa6\x94\x93\xa7\x96\x95\xa8\x97\x95\xa9\x98\x95\xa8\ +\x99\x96\xa9\x99\x97\xab\x9a\x97\xaa\x9b\x97\xaa\x9b\x98\xab\x9d\ +\x99\xad\x9f\x9b\xae\xa3\x9e\xb1\xa8\xa2\xb3\xac\xa5\xb6\xb1\xaa\ +\xb8\xb5\xad\xba\xb5\xae\xbb\xb6\xaf\xbc\xb8\xaf\xbc\xb4\xac\xb8\ +\xb1\xa8\xb5\xb1\xa8\xb5\xb0\xa7\xb4\xb0\xa7\xb5\xb0\xa7\xb5\xb0\ +\xa7\xb5\xb1\xa7\xb4\xb1\xa8\xb5\xb1\xa8\xb5\xb1\xa8\xb5\x00\x00\ +\x00\xc3\xbf\xcb\xc3\xbe\xca\xc0\xbe\xca\xc0\xbd\xca\xc1\xbe\xcc\ +\xc1\xbf\xcd\xc3\xc1\xce\xc5\xc3\xcf\xc5\xc3\xd0\xc7\xc5\xd2\xc9\ +\xc7\xd3\xc9\xc7\xd3\xca\xc8\xd4\xcb\xca\xd6\xcc\xca\xd6\xcd\xcb\ +\xd7\xcc\xca\xd6\xcc\xca\xd6\xcb\xc9\xd5\xcc\xca\xd6\xca\xc8\xd4\ +\xcb\xc9\xd5\xcb\xc9\xd5\xca\xc8\xd4\xc9\xc7\xd3\xc9\xc7\xd3\xc9\ +\xc7\xd3\xc9\xc8\xd4\xc9\xc7\xd3\xc7\xc6\xd2\xc7\xc3\xcf\xc5\xc3\ +\xcf\xc4\xc2\xce\xc4\xc1\xce\xc4\xc2\xce\xc4\xc2\xce\xc6\xc4\xd0\ +\xc7\xc5\xd1\xc8\xc6\xd2\xc9\xc7\xd3\xc8\xc6\xd2\xc8\xc6\xd2\xc7\ +\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xcc\xca\xd6\xcd\xcb\xd7\xcf\xcd\ +\xd9\xd0\xce\xda\xd3\xd1\xdc\xd5\xd4\xde\xd6\xd5\xdf\xd7\xd6\xe0\ +\xd8\xd7\xe1\xd9\xd8\xe2\xd9\xd8\xe2\xdb\xda\xe4\xda\xd9\xe4\xd9\ +\xd9\xe3\xd8\xd7\xe1\xd4\xd2\xdd\xcc\xca\xd6\xc2\xc0\xcc\xb2\xae\ +\xbe\x9d\x9b\xac\x85\x82\x98\x69\x66\x7e\x6f\x6c\x85\x8e\x8c\xa2\ +\xaa\xa9\xbb\xbe\xbc\xca\xca\xc8\xd4\xd2\xd1\xdc\xd7\xd5\xe0\xd8\ +\xd6\xe0\xd9\xd6\xe0\xda\xd7\xe1\xda\xd7\xe1\xdb\xd7\xe2\xda\xd6\ +\xe1\xd8\xd5\xe0\xd8\xd5\xdf\xd7\xd4\xdf\xd7\xd2\xdd\xd5\xd1\xdc\ +\xd4\xd0\xdb\xd3\xd0\xda\xd1\xce\xda\xd1\xce\xdb\xd3\xcf\xdb\xd4\ +\xd1\xdb\xd4\xd1\xdc\xd6\xd1\xdd\xd6\xd2\xdd\xd5\xd1\xdc\xd5\xd1\ +\xdc\xd5\xd1\xdc\xd3\xcf\xda\xd0\xcc\xd7\xc7\xc4\xd0\xbd\xba\xc8\ +\xb4\xb1\xc0\xab\xa6\xb7\xa1\x9c\xaf\x9a\x94\xa9\x99\x92\xa7\x9a\ +\x94\xa8\x9e\x98\xab\xa2\x9b\xac\xa3\x9d\xad\xa3\x9c\xac\xa3\x9c\ +\xac\xa1\x9b\xab\x9f\x99\xab\x9f\x99\xaa\x9e\x98\xa9\x9d\x97\xa8\ +\x9c\x96\xa7\x9c\x96\xa7\x9a\x97\xa6\x99\x97\xa7\x99\x96\xa6\x98\ +\x95\xa5\x95\x94\xa4\x91\x91\xa2\x8e\x8f\xa1\x8c\x8d\xa1\x8b\x8d\ +\xa1\x8b\x8f\xa2\x8d\x8f\xa3\x8f\x90\xa4\x94\x93\xa7\x96\x96\xa8\ +\x99\x97\xa9\x9a\x97\xaa\x9b\x97\xaa\x9b\x98\xaa\x9c\x99\xaa\x9c\ +\x99\xab\x9d\x99\xac\x9d\x99\xac\x9e\x9a\xad\x9f\x9a\xad\xa1\x9c\ +\xaf\xa6\xa0\xb2\xaa\xa4\xb6\xad\xa6\xb7\xaf\xa7\xb8\xb3\xac\xb9\ +\xb5\xae\xbb\xb7\xb0\xbd\xb7\xaf\xbc\xb3\xaa\xb7\xb1\xa8\xb5\xaf\ +\xa7\xb4\xaf\xa7\xb4\xae\xa6\xb4\xae\xa6\xb3\xad\xa6\xb3\xaf\xa7\ +\xb4\xaf\xa7\xb4\xb1\xa8\xb5\xb1\xa8\xb5\x00\x00\x00\xbf\xbb\xc7\ +\xc0\xbc\xc8\xbd\xba\xc7\xbd\xba\xc9\xbf\xbc\xca\xc1\xbe\xcd\xc2\ +\xbf\xce\xc4\xc1\xcf\xc6\xc4\xd1\xc7\xc5\xd2\xc9\xc7\xd3\xc9\xc8\ +\xd4\xcb\xc9\xd5\xcc\xca\xd6\xcc\xcb\xd7\xcd\xcb\xd6\xcc\xcb\xd6\ +\xcc\xca\xd6\xcb\xc9\xd5\xca\xc8\xd4\xcb\xc9\xd5\xca\xc8\xd4\xca\ +\xc8\xd4\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\xd4\xc9\xc7\xd3\xca\xc8\ +\xd4\xca\xc7\xd3\xca\xc6\xd2\xc7\xc3\xcf\xc5\xc3\xcf\xc4\xc2\xce\ +\xc4\xc1\xcd\xc4\xc1\xcd\xc3\xc1\xcd\xc4\xc3\xcf\xc6\xc4\xd0\xc7\ +\xc5\xd1\xc7\xc5\xd1\xc8\xc6\xd2\xc7\xc5\xd1\xc7\xc5\xd1\xc8\xc6\ +\xd2\xca\xc8\xd4\xcb\xc9\xd5\xcd\xcb\xd7\xcf\xcd\xd9\xd0\xce\xda\ +\xd2\xd0\xdb\xd4\xd3\xdd\xd5\xd4\xde\xd6\xd5\xdf\xd7\xd6\xe0\xd7\ +\xd6\xe0\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd7\xe2\xd9\xd9\xe3\xda\xd9\ +\xe3\xd7\xd6\xe0\xd2\xd0\xdc\xca\xc8\xd4\xbf\xbd\xc9\xb0\xab\xbb\ +\x9b\x97\xa9\x81\x7d\x93\x76\x73\x8b\x89\x86\x9d\xa4\xa4\xb5\xb9\ +\xb8\xc7\xc8\xc6\xd3\xd0\xcf\xdb\xd6\xd5\xdf\xd7\xd6\xe0\xd7\xd7\ +\xe1\xd8\xd7\xe1\xd9\xd8\xe2\xd9\xd8\xe2\xd8\xd8\xe1\xd8\xd6\xe1\ +\xd7\xd5\xdf\xd8\xd4\xdf\xd5\xd3\xde\xd4\xd1\xdd\xd1\xcf\xdb\xd0\ +\xce\xda\xd0\xce\xdb\xd1\xcf\xdb\xd1\xd0\xdb\xd3\xd1\xdd\xd4\xd2\ +\xdc\xd4\xd2\xdd\xd4\xd2\xdc\xd5\xd2\xdd\xd6\xd2\xdd\xd4\xd1\xdb\ +\xd2\xcf\xda\xce\xcc\xd7\xc7\xc5\xd1\xbe\xbb\xc8\xb6\xb3\xc2\xad\ +\xa8\xb9\xa4\x9e\xb0\x9e\x99\xac\x9e\x97\xab\x9e\x98\xab\xa0\x9a\ +\xac\xa3\x9d\xac\xa4\x9d\xac\xa3\x9c\xab\xa1\x9c\xab\xa1\x9b\xab\ +\x9f\x99\xaa\x9e\x98\xa9\x9e\x98\xa9\x9d\x97\xa8\x9d\x97\xa7\x9c\ +\x96\xa8\x9b\x96\xa7\x99\x97\xa7\x99\x96\xa6\x98\x95\xa5\x95\x94\ +\xa4\x93\x93\xa3\x91\x91\xa3\x91\x91\xa4\x90\x91\xa4\x90\x91\xa4\ +\x92\x93\xa5\x95\x94\xa7\x98\x97\xa9\x9c\x99\xaa\x9c\x99\xab\x9d\ +\x99\xab\x9d\x99\xaa\x9e\x9b\xaa\x9e\x9b\xab\x9e\x9b\xac\xa0\x9d\ +\xac\xa0\x9c\xae\xa0\x9c\xae\xa0\x9b\xae\xa3\x9d\xb0\xa5\x9f\xb1\ +\xac\xa5\xb7\xaf\xa8\xb8\xb1\xaa\xb9\xb1\xaa\xb8\xb4\xad\xba\xb4\ +\xad\xba\xb2\xab\xb8\xae\xa7\xb4\xab\xa4\xb3\xad\xa4\xb2\xac\xa4\ +\xb3\xab\xa3\xb3\xab\xa4\xb3\xac\xa5\xb3\xac\xa5\xb4\xad\xa7\xb3\ +\xad\xa6\xb3\xae\xa6\xb4\x00\x00\x00\xbd\xb9\xc5\xbd\xba\xc6\xbc\ +\xb8\xc7\xbc\xb9\xc6\xbc\xb9\xc8\xbf\xbc\xcb\xc2\xbf\xcd\xc5\xc3\ +\xcf\xc7\xc5\xd1\xc8\xc6\xd2\xca\xc8\xd4\xcb\xc9\xd5\xcc\xca\xd6\ +\xcd\xcb\xd7\xcd\xcb\xd7\xce\xcc\xd7\xcd\xca\xd7\xcc\xca\xd6\xcb\ +\xc9\xd5\xcb\xc8\xd4\xcb\xc9\xd5\xca\xc9\xd4\xca\xc9\xd5\xca\xc7\ +\xd3\xca\xc8\xd3\xca\xc8\xd3\xca\xc8\xd4\xca\xc7\xd3\xca\xc7\xd3\ +\xca\xc6\xd2\xc9\xc5\xd1\xc7\xc4\xd0\xc6\xc3\xcf\xc5\xc1\xcd\xc5\ +\xc1\xcd\xc6\xc2\xce\xc6\xc4\xd0\xc7\xc3\xd0\xc7\xc4\xd0\xc6\xc5\ +\xd0\xc7\xc5\xd1\xc8\xc6\xd2\xc7\xc5\xd1\xc8\xc6\xd2\xcb\xc9\xd5\ +\xcc\xca\xd6\xcd\xcb\xd7\xce\xcc\xd8\xd0\xce\xda\xd2\xd0\xdb\xd3\ +\xd1\xdb\xd4\xd3\xdd\xd5\xd4\xde\xd5\xd4\xde\xd6\xd5\xdf\xd6\xd5\ +\xdf\xd7\xd6\xe0\xd7\xd6\xe1\xd8\xd7\xe2\xd9\xd7\xe2\xda\xd7\xe1\ +\xd7\xd3\xde\xd1\xcd\xd8\xca\xc5\xd1\xbe\xba\xc7\xad\xa8\xb7\x98\ +\x91\xa4\x88\x82\x97\x8c\x88\x9c\x9d\x9c\xaf\xb4\xb3\xc2\xc4\xc4\ +\xd1\xcf\xce\xd9\xd5\xd4\xde\xd8\xd7\xe1\xd8\xd7\xe1\xd9\xd8\xe2\ +\xda\xd9\xe3\xda\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe1\xd7\xd6\xe0\xd6\ +\xd6\xe0\xd6\xd4\xdf\xd4\xd2\xdd\xd2\xd1\xdd\xd1\xcf\xdb\xd1\xcf\ +\xdb\xd2\xd0\xdc\xd2\xd0\xdd\xd2\xd1\xdc\xd3\xd0\xdd\xd3\xd1\xde\ +\xd3\xd2\xdd\xd4\xd2\xdd\xd5\xd2\xdd\xd3\xd1\xdb\xd1\xd0\xda\xcd\ +\xcb\xd6\xc5\xc3\xcf\xbf\xbb\xc8\xb7\xb2\xc1\xae\xa8\xb8\xa5\x9f\ +\xb0\xa0\x9a\xac\x9f\x99\xac\x9f\x99\xac\xa3\x9c\xac\xa4\x9d\xac\ +\xa3\x9c\xab\xa3\x9c\xab\xa2\x9b\xaa\xa1\x9c\xaa\xa0\x99\xaa\x9f\ +\x99\xa9\x9f\x99\xa9\x9d\x97\xa8\x9e\x98\xa9\x9d\x97\xa8\x9c\x96\ +\xa8\x9a\x97\xa7\x9a\x97\xa6\x9a\x97\xa7\x98\x95\xa5\x95\x94\xa4\ +\x95\x93\xa5\x94\x93\xa5\x94\x93\xa5\x96\x94\xa7\x97\x95\xa7\x99\ +\x98\xa9\x9c\x99\xaa\x9d\x9a\xa9\x9c\x99\xaa\x9d\x9a\xab\x9e\x9a\ +\xab\x9e\x9b\xab\x9f\x9c\xac\xa1\x9c\xad\xa1\x9d\xad\xa1\x9e\xae\ +\xa2\x9d\xae\xa2\x9c\xad\xa3\x9d\xae\xa6\x9e\xaf\xac\xa4\xb5\xb1\ +\xaa\xb9\xb3\xac\xba\xb2\xab\xb9\xb2\xab\xb7\xb0\xa9\xb6\xac\xa5\ +\xb4\xa9\xa3\xb1\xa7\xa0\xaf\xa8\xa1\xb0\xa9\xa2\xb0\xa9\xa2\xb1\ +\xa9\xa2\xb1\xaa\xa3\xb1\xab\xa4\xb3\xac\xa4\xb2\xac\xa5\xb2\xad\ +\xa5\xb3\x00\x00\x00\xbd\xb9\xc5\xbc\xb8\xc4\xbd\xb8\xc5\xbc\xb7\ +\xc6\xbc\xb8\xc7\xbf\xbd\xca\xc2\xc1\xcc\xc5\xc3\xcf\xc7\xc5\xd1\ +\xc8\xc6\xd2\xca\xc8\xd4\xcc\xca\xd6\xcd\xcb\xd6\xce\xcc\xd8\xcf\ +\xcc\xd7\xcf\xcc\xd7\xcf\xcb\xd6\xcc\xca\xd5\xcc\xca\xd6\xcb\xc9\ +\xd5\xcb\xc9\xd5\xcb\xca\xd4\xcc\xc9\xd5\xcc\xc8\xd4\xcb\xc7\xd2\ +\xcb\xc7\xd3\xcc\xc7\xd4\xcb\xc7\xd3\xcb\xc7\xd2\xca\xc6\xd2\xca\ +\xc6\xd2\xca\xc5\xd1\xc9\xc5\xd0\xc7\xc4\xd0\xc8\xc4\xcf\xc7\xc3\ +\xcf\xc8\xc4\xcf\xc8\xc4\xd0\xc8\xc4\xd0\xc8\xc5\xd0\xc9\xc5\xd0\ +\xc7\xc6\xd1\xc9\xc7\xd3\xc9\xc7\xd3\xcb\xc9\xd5\xcc\xca\xd6\xce\ +\xcc\xd8\xce\xcc\xd8\xcf\xce\xd9\xd0\xce\xd9\xd1\xd0\xda\xd4\xd1\ +\xdb\xd5\xd1\xdc\xd4\xd2\xdd\xd4\xd3\xdd\xd5\xd4\xde\xd7\xd4\xdf\ +\xd8\xd5\xe0\xd8\xd5\xe0\xda\xd6\xe1\xda\xd6\xe0\xd9\xd5\xe0\xd6\ +\xd1\xdd\xd0\xcc\xd7\xc7\xc3\xcf\xbb\xb6\xc2\xa9\xa2\xb1\x98\x8f\ +\xa2\x93\x8b\x9e\x9b\x98\xab\xae\xad\xbe\xc0\xbf\xcd\xcb\xcb\xd7\ +\xd3\xd2\xdd\xd8\xd7\xe1\xda\xd9\xe3\xda\xd9\xe3\xda\xd9\xe3\xda\ +\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe1\xd8\xd7\xe1\xd7\xd6\xe0\xd6\xd5\ +\xdf\xd5\xd4\xdf\xd4\xd3\xde\xd4\xd3\xde\xd4\xd2\xdd\xd3\xd1\xdd\ +\xd4\xd2\xdd\xd4\xd2\xde\xd3\xd2\xdd\xd3\xd2\xdd\xd3\xd1\xde\xd4\ +\xd3\xdd\xd3\xd3\xdd\xd4\xd1\xdc\xd0\xcf\xd9\xcb\xca\xd5\xc5\xc3\ +\xce\xbd\xba\xc6\xb5\xb0\xbf\xac\xa7\xb7\xa5\x9f\xb0\xa1\x9b\xad\ +\xa1\x9b\xad\xa0\x9a\xab\xa3\x9c\xad\xa3\x9c\xac\xa4\x9d\xab\xa3\ +\x9c\xab\xa2\x9c\xaa\xa1\x9b\xab\xa0\x9a\xa9\x9f\x9a\xa9\x9e\x99\ +\xa9\x9e\x98\xa9\x9d\x97\xa8\x9d\x97\xa8\x9c\x96\xa7\x9c\x96\xa7\ +\x9c\x97\xa7\x9a\x96\xa7\x98\x95\xa5\x97\x95\xa5\x97\x95\xa5\x97\ +\x95\xa6\x97\x95\xa6\x99\x97\xa7\x9a\x98\xa8\x9c\x99\xa9\x9d\x9a\ +\xaa\x9c\x9a\xaa\x9d\x99\xaa\x9e\x9a\xab\x9f\x9a\xab\xa0\x9b\xac\ +\xa0\x9b\xac\xa1\x9b\xac\xa1\x9d\xad\xa3\x9e\xae\xa3\x9e\xad\xa4\ +\x9f\xae\xa5\x9f\xaf\xa6\xa0\xb0\xaa\xa3\xb2\xae\xa7\xb6\xaf\xa8\ +\xb7\xae\xa7\xb6\xab\xa5\xb4\xa9\xa3\xb1\xa7\xa2\xb0\xa3\x9e\xad\ +\xa1\x9c\xab\xa4\x9e\xad\xa5\x9e\xad\xa5\x9f\xae\xa6\x9f\xae\xa7\ +\xa1\xb0\xa9\xa1\xb0\xa7\xa1\xb0\xa8\xa2\xb0\xa6\xa1\xb1\x00\x00\ +\x00\xbc\xb8\xc5\xbc\xb8\xc6\xbd\xb9\xc6\xbd\xb9\xc6\xbd\xb9\xc8\ +\xbf\xbd\xc9\xc2\xc0\xcc\xc5\xc3\xcf\xc7\xc5\xd1\xc8\xc6\xd2\xca\ +\xc8\xd4\xcb\xc9\xd5\xcc\xcb\xd5\xce\xcc\xd8\xce\xce\xd7\xd0\xce\ +\xd8\xd1\xcd\xd8\xcf\xcb\xd6\xcd\xcb\xd6\xcd\xcb\xd5\xcd\xcb\xd5\ +\xce\xca\xd5\xce\xca\xd4\xcc\xc8\xd5\xcd\xc9\xd4\xcc\xc8\xd3\xcc\ +\xc8\xd2\xcc\xc8\xd3\xcb\xc7\xd2\xcc\xc8\xd3\xcd\xc9\xd4\xcc\xc9\ +\xd3\xcd\xc8\xd3\xcc\xc6\xd1\xcb\xc5\xd0\xca\xc5\xd0\xca\xc4\xcf\ +\xc8\xc4\xcf\xc9\xc5\xd0\xca\xc5\xd1\xca\xc7\xd1\xcc\xc8\xd3\xcb\ +\xc9\xd3\xcc\xcb\xd5\xcb\xcb\xd6\xcc\xca\xd6\xcd\xcb\xd7\xce\xcd\ +\xd7\xcf\xcc\xd8\xce\xcd\xd8\xd0\xcf\xd9\xd3\xcf\xda\xd4\xd0\xdb\ +\xd3\xcf\xdb\xd4\xd0\xdc\xd5\xd1\xdc\xd6\xd2\xdd\xd8\xd4\xdf\xd8\ +\xd4\xdf\xd8\xd4\xdf\xda\xd6\xe1\xd9\xd5\xe0\xd8\xd4\xdf\xd3\xcf\ +\xda\xcd\xc8\xd3\xc5\xbf\xca\xb7\xb0\xbd\xa7\x9e\xab\x9d\x93\xa3\ +\x9f\x98\xa9\xab\xa8\xb8\xbb\xba\xc9\xc8\xc8\xd4\xd0\xd0\xdc\xd8\ +\xd7\xe1\xda\xd9\xe3\xdb\xda\xe4\xda\xd9\xe3\xdb\xda\xe4\xdb\xda\ +\xe4\xd9\xd8\xe2\xd9\xd8\xe2\xd9\xd8\xe2\xd7\xd6\xe0\xd6\xd5\xdf\ +\xd6\xd5\xdf\xd6\xd5\xdf\xd6\xd4\xdf\xd6\xd3\xdf\xd6\xd4\xde\xd6\ +\xd4\xdf\xd5\xd4\xdf\xd4\xd2\xde\xd5\xd4\xdd\xd5\xd4\xde\xd6\xd4\ +\xde\xd1\xd0\xda\xce\xcc\xd8\xc9\xc7\xd3\xc1\xbe\xcc\xba\xb6\xc4\ +\xb2\xad\xbc\xab\xa5\xb5\xa5\x9f\xb0\xa2\x9c\xad\xa1\x9b\xac\xa1\ +\x9b\xac\xa1\x9b\xab\xa3\x9c\xac\xa3\x9c\xac\xa1\x9c\xaa\xa2\x9b\ +\xaa\xa2\x9a\xaa\xa0\x9b\xa9\xa0\x9a\xa9\x9f\x9a\xa8\x9d\x98\xa8\ +\x9e\x98\xa9\x9d\x97\xa9\x9d\x98\xa9\x9c\x96\xa7\x9c\x97\xa7\x9b\ +\x96\xa6\x9a\x97\xa7\x99\x97\xa7\x9a\x98\xa8\x9a\x98\xa8\x9b\x98\ +\xa8\x9b\x98\xa9\x9c\x99\xa8\x9e\x9a\xaa\x9e\x99\xa9\x9f\x9a\xaa\ +\x9f\x98\xa9\x9e\x98\xa9\x9f\x9a\xaa\xa1\x9a\xac\xa0\x9b\xac\xa1\ +\x9d\xad\xa2\x9d\xad\xa4\x9e\xaf\xa4\xa0\xae\xa5\xa0\xaf\xa8\xa1\ +\xb0\xa9\xa2\xb1\xaa\xa3\xb2\xac\xa5\xb4\xac\xa6\xb5\xaa\xa4\xb3\ +\xa6\xa1\xb0\xa3\x9f\xad\xa0\x9c\xab\x9d\x9a\xa9\x9c\x97\xa8\x9f\ +\x9a\xa9\xa1\x9c\xab\xa2\x9d\xad\xa3\x9d\xad\xa3\x9d\xae\xa2\x9e\ +\xac\xa2\x9c\xad\xa0\x9c\xab\xa0\x9b\xab\x00\x00\x00\xbe\xba\xc6\ +\xbe\xba\xc6\xbe\xba\xc6\xbf\xbb\xc7\xbd\xbb\xc7\xc0\xbe\xca\xc2\ +\xc0\xcc\xc4\xc2\xce\xc5\xc3\xd0\xc7\xc5\xd1\xc9\xc7\xd3\xcb\xc9\ +\xd5\xcc\xcb\xd6\xce\xcd\xd6\xcf\xce\xd8\xd0\xcd\xd8\xd1\xce\xd9\ +\xd1\xcd\xd8\xd0\xcc\xd7\xcf\xcc\xd7\xd0\xcd\xd7\xd1\xcd\xd8\xd0\ +\xcc\xd7\xcf\xcb\xd6\xce\xcb\xd6\xce\xca\xd5\xcd\xc9\xd4\xce\xc9\ +\xd4\xcf\xca\xd4\xd0\xca\xd5\xd0\xca\xd4\xd0\xcb\xd4\xcf\xca\xd3\ +\xcf\xc9\xd2\xce\xc8\xd2\xcc\xc6\xd1\xcb\xc5\xd0\xcb\xc5\xcf\xca\ +\xc5\xd0\xca\xc6\xd1\xcb\xc7\xd2\xcd\xc9\xd4\xce\xca\xd5\xcd\xcc\ +\xd6\xcd\xcc\xd6\xcd\xcc\xd6\xce\xcc\xd7\xce\xcd\xd8\xce\xcc\xd8\ +\xcf\xcc\xd8\xce\xcc\xd8\xd0\xce\xd9\xd0\xcf\xd9\xd0\xcf\xda\xd3\ +\xcf\xda\xd4\xd0\xdb\xd5\xd1\xdc\xd7\xd3\xde\xd7\xd3\xde\xd7\xd3\ +\xde\xd7\xd3\xde\xd8\xd4\xde\xd8\xd4\xde\xd7\xd2\xdd\xd2\xcd\xd8\ +\xcb\xc5\xd0\xc1\xba\xc5\xb3\xaa\xb6\xa6\x9b\xaa\xa4\x9a\xa9\xab\ +\xa4\xb4\xb5\xb5\xc3\xc3\xc3\xd0\xcc\xcc\xd8\xd5\xd4\xde\xda\xd9\ +\xe3\xda\xd9\xe3\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xda\xd9\xe3\ +\xda\xd9\xe3\xda\xd9\xe3\xd9\xd8\xe2\xd8\xd7\xe1\xd8\xd6\xe1\xd7\ +\xd6\xe0\xd7\xd6\xe0\xd7\xd6\xe0\xd7\xd6\xe0\xd7\xd6\xe0\xd7\xd6\ +\xe0\xd7\xd6\xe0\xd5\xd5\xdf\xd5\xd4\xde\xd2\xd1\xdb\xce\xcc\xd8\ +\xc9\xc7\xd3\xc4\xc2\xce\xbd\xba\xc8\xb4\xb1\xc0\xae\xa8\xb8\xa7\ +\xa1\xb2\xa3\x9d\xae\xa1\x9b\xac\xa0\x9a\xab\xa0\x9a\xab\xa0\x9b\ +\xac\xa1\x9c\xac\xa1\x9b\xaa\xa3\x9d\xac\xa2\x9c\xab\xa1\x9b\xaa\ +\xa1\x9a\xaa\xa0\x9a\xa9\x9f\x99\xa8\x9f\x98\xa9\x9d\x97\xa9\x9e\ +\x98\xa9\x9d\x97\xa8\x9d\x98\xa9\x9c\x97\xa8\x9b\x98\xa8\x9b\x98\ +\xa8\x9b\x98\xa8\x9c\x99\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9e\x9a\xaa\ +\x9e\x9b\xaa\x9f\x9b\xaa\x9f\x99\xa9\x9f\x9a\xaa\x9f\x99\xaa\x9f\ +\x99\xaa\xa0\x9a\xab\xa0\x9b\xab\xa1\x9c\xac\xa1\x9c\xac\xa2\x9e\ +\xad\xa4\x9f\xad\xa4\x9f\xae\xa6\xa1\xb0\xaa\xa3\xb1\xab\xa4\xb3\ +\xab\xa4\xb3\xac\xa5\xb2\xab\xa4\xb2\xa7\xa2\xb0\xa2\x9e\xad\x9e\ +\x9b\xaa\x9a\x98\xa7\x96\x95\xa5\x97\x95\xa5\x99\x95\xa5\x9e\x99\ +\xa9\x9f\x9a\xaa\xa0\x9a\xab\xa0\x9a\xab\x9d\x99\xaa\x9b\x98\xa8\ +\x9a\x96\xa8\x9b\x98\xa9\x00\x00\x00\xbf\xbb\xc7\xbf\xbb\xc7\xbf\ +\xbb\xc7\xbe\xbb\xc7\xbe\xbc\xc8\xc0\xbe\xca\xc1\xbf\xcb\xc3\xc1\ +\xcd\xc5\xc3\xcf\xc7\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xcc\xca\xd6\ +\xce\xcd\xd7\xd0\xce\xd8\xd0\xcf\xd9\xd0\xcf\xd9\xd1\xd0\xda\xd2\ +\xcf\xda\xd3\xcf\xda\xd3\xcf\xda\xd2\xce\xd9\xd2\xcf\xd9\xd2\xce\ +\xd9\xd2\xcd\xd7\xd1\xcc\xd7\xd0\xca\xd4\xcf\xcb\xd4\xd0\xca\xd4\ +\xd3\xcb\xd4\xd3\xcb\xd5\xd2\xcb\xd3\xd2\xca\xd3\xd1\xca\xd3\xd0\ +\xc8\xd2\xce\xc7\xd1\xcc\xc7\xd0\xcd\xc7\xd1\xcc\xc7\xd1\xcb\xc7\ +\xd2\xcc\xc8\xd3\xce\xca\xd5\xce\xca\xd5\xd0\xcc\xd7\xcf\xcc\xd7\ +\xcf\xcd\xd7\xd0\xcc\xd7\xce\xcd\xd7\xce\xcd\xd8\xcf\xcc\xd8\xce\ +\xcc\xd9\xcf\xcd\xd9\xcf\xce\xd8\xd0\xce\xda\xd2\xcf\xd9\xd3\xcf\ +\xda\xd4\xd0\xdb\xd5\xd1\xdc\xd6\xd2\xdd\xd8\xd3\xdd\xd7\xd3\xdc\ +\xd8\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd5\xd0\xda\xd0\xca\xd5\xc8\ +\xc1\xcc\xbd\xb5\xbf\xae\xa4\xb0\xa7\x9d\xaa\xab\xa3\xb0\xb3\xae\ +\xbd\xbd\xbc\xcb\xc8\xc8\xd4\xd0\xd0\xdb\xd8\xd7\xe1\xda\xd9\xe3\ +\xdc\xdb\xe5\xdb\xda\xe4\xda\xd9\xe3\xda\xd9\xe3\xda\xd9\xe3\xda\ +\xd9\xe3\xd9\xd8\xe2\xd9\xd7\xe1\xd9\xd6\xe1\xda\xd7\xe1\xd8\xd6\ +\xe0\xd8\xd6\xe0\xd7\xd7\xe0\xd8\xd7\xe1\xd8\xd7\xe1\xd7\xd6\xe0\ +\xd6\xd3\xde\xd2\xd1\xdc\xce\xcc\xd7\xc9\xc7\xd2\xc3\xc1\xce\xbd\ +\xba\xc8\xb7\xb3\xc2\xaf\xa9\xba\xa9\xa2\xb4\xa3\x9d\xae\xa1\x9b\ +\xad\xa0\x9a\xab\xa0\x99\xaa\xa1\x9a\xab\xa0\x9b\xab\xa0\x9b\xab\ +\xa1\x9c\xab\xa1\x9c\xab\xa1\x9b\xaa\xa2\x9b\xaa\x9f\x9a\xa9\xa0\ +\x9a\xa9\x9f\x99\xa8\x9e\x98\xa9\x9d\x98\xa9\x9e\x97\xa9\x9d\x98\ +\xa7\x9d\x98\xa8\x9d\x98\xa9\x9d\x99\xa9\x9c\x99\xa9\x9d\x9a\xa9\ +\x9d\x9a\xa9\x9d\x9a\xa9\x9d\x9a\xa9\x9e\x9b\xaa\x9f\x9b\xaa\x9f\ +\x9a\xa9\x9f\x9a\xaa\x9f\x99\xa9\x9f\x9a\xaa\xa0\x99\xab\xa0\x9a\ +\xab\xa0\x9b\xaa\xa1\x9b\xac\xa2\x9c\xad\xa2\x9d\xac\xa4\x9f\xae\ +\xa6\xa1\xb0\xa8\xa2\xb1\xaa\xa3\xb2\xac\xa5\xb2\xac\xa5\xb2\xae\ +\xa7\xb4\xad\xa6\xb3\xa5\xa0\xae\x9e\x9b\xaa\x98\x97\xa7\x94\x93\ +\xa3\x92\x91\xa2\x92\x91\xa2\x95\x93\xa4\x9c\x97\xa7\x9e\x98\xa9\ +\x9d\x97\xa8\x9c\x97\xa8\x99\x95\xa7\x97\x93\xa6\x98\x94\xa7\x9b\ +\x97\xa9\x00\x00\x00\xbf\xbb\xc7\xc0\xbc\xc8\xc0\xbc\xc8\xc0\xbc\ +\xc8\xbe\xbc\xc8\xc0\xbe\xca\xc1\xbf\xcb\xc3\xc1\xcd\xc5\xc3\xcf\ +\xc7\xc5\xd1\xc9\xc7\xd3\xca\xc8\xd4\xcc\xcb\xd6\xcf\xce\xd8\xd2\ +\xcf\xda\xd1\xd0\xda\xd2\xd1\xdb\xd4\xd1\xdb\xd4\xd0\xdb\xd4\xd0\ +\xdb\xd5\xd1\xdc\xd4\xd1\xdb\xd5\xd1\xdb\xd6\xd1\xda\xd5\xd0\xd9\ +\xd4\xcf\xd8\xd1\xcc\xd5\xd3\xcb\xd5\xd3\xcb\xd5\xd4\xcc\xd5\xd3\ +\xcc\xd3\xd2\xcb\xd2\xd2\xcb\xd2\xd2\xca\xd2\xd1\xca\xd2\xd1\xc9\ +\xd2\xcf\xc8\xd2\xce\xc8\xd2\xcf\xc9\xd3\xcf\xc9\xd4\xce\xc9\xd5\ +\xcf\xcb\xd6\xcf\xcb\xd6\xd0\xcc\xd7\xd1\xcd\xd8\xd2\xcd\xd8\xd0\ +\xcd\xd8\xd1\xcd\xd8\xcf\xce\xd8\xce\xcc\xd9\xcf\xcd\xd8\xcf\xcc\ +\xd8\xcf\xcd\xd9\xd0\xce\xd9\xd3\xcf\xda\xd3\xcf\xda\xd4\xd0\xdb\ +\xd5\xd2\xdc\xd8\xd3\xdd\xd9\xd4\xdd\xd7\xd2\xdb\xd7\xd2\xdb\xd7\ +\xd2\xdb\xd9\xd4\xdd\xd8\xd3\xdc\xd4\xcf\xd9\xce\xc9\xd2\xc7\xbf\ +\xca\xb9\xb0\xbb\xad\xa0\xad\xab\xa1\xad\xaf\xa8\xb6\xb6\xb5\xc3\ +\xc2\xc2\xcf\xcc\xcc\xd7\xd4\xd3\xde\xdb\xda\xe4\xdb\xda\xe4\xdc\ +\xdb\xe5\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xd9\xd8\ +\xe2\xda\xd8\xe2\xdb\xd8\xe3\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd6\xe0\ +\xd9\xd6\xe0\xd9\xd7\xe2\xd9\xd7\xe1\xd7\xd4\xdf\xd3\xd1\xdb\xce\ +\xcc\xd7\xc9\xc7\xd2\xc1\xbe\xcd\xbb\xb8\xc6\xb5\xb1\xc1\xb0\xab\ +\xba\xa9\xa3\xb4\xa5\x9e\xaf\xa2\x9c\xad\x9f\x99\xab\x9f\x99\xaa\ +\xa0\x9a\xab\x9f\x99\xaa\xa1\x9a\xab\xa2\x9b\xaa\xa1\x9b\xaa\xa2\ +\x9b\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa0\x9a\xa9\xa1\x99\xa8\xa0\x99\ +\xa8\x9e\x99\xa9\x9d\x98\xa9\x9e\x98\xa9\x9d\x97\xa8\x9e\x97\xa8\ +\x9d\x98\xa8\x9d\x99\xa9\x9d\x9a\xa9\x9e\x9b\xaa\x9d\x9a\xaa\x9d\ +\x9a\xa9\x9e\x9b\xab\x9d\x9b\xaa\x9f\x9b\xaa\x9f\x9a\xa9\x9f\x99\ +\xa9\x9f\x9a\xa9\x9e\x99\xa9\x9f\x9a\xaa\x9f\x99\xab\xa1\x9b\xab\ +\xa2\x9c\xad\xa2\x9c\xac\xa3\x9d\xad\xa4\x9f\xae\xa7\xa2\xb0\xaa\ +\xa3\xb1\xac\xa5\xb2\xad\xa6\xb3\xae\xa7\xb4\xb1\xaa\xb7\xae\xa7\ +\xb4\xa4\xa0\xad\x98\x97\xa7\x93\x93\xa4\x91\x90\xa2\x8f\x8f\xa0\ +\x8f\x8f\xa0\x94\x91\xa2\x9a\x96\xa6\x9e\x98\xa9\x9d\x97\xa8\x9a\ +\x94\xa6\x96\x92\xa5\x96\x92\xa5\x97\x93\xa6\x98\x95\xa8\x00\x00\ +\x00\xc0\xbc\xc8\xc0\xbc\xc8\xc1\xbd\xc9\xc0\xbc\xc8\xc1\xbd\xc9\ +\xc0\xbe\xca\xc2\xc0\xcc\xc3\xc1\xcd\xc5\xc3\xcf\xc6\xc4\xd0\xc9\ +\xc7\xd3\xcc\xca\xd5\xce\xcd\xd6\xd2\xce\xd9\xd4\xd0\xdb\xd6\xd1\ +\xdc\xd6\xd3\xde\xd7\xd3\xde\xd7\xd3\xde\xd7\xd3\xde\xd8\xd4\xde\ +\xd9\xd4\xdd\xd9\xd4\xdd\xd8\xd3\xdc\xd7\xd2\xdb\xd7\xd1\xda\xd6\ +\xce\xd8\xd6\xce\xd7\xd5\xce\xd6\xd6\xcf\xd6\xd7\xcf\xd6\xd5\xcd\ +\xd4\xd4\xcc\xd3\xd3\xcc\xd3\xd2\xcb\xd3\xd3\xcb\xd4\xd2\xca\xd4\ +\xd1\xcb\xd4\xd1\xcb\xd5\xd1\xcc\xd7\xd2\xcd\xd7\xd0\xcc\xd7\xd1\ +\xcd\xd8\xd1\xcd\xd8\xd2\xce\xd9\xd3\xcf\xda\xd2\xce\xd9\xd3\xcf\ +\xda\xd2\xce\xd9\xd1\xce\xd8\xd1\xce\xda\xd0\xcd\xd9\xd0\xcc\xd8\ +\xd1\xcc\xd8\xd2\xce\xd9\xd3\xcf\xda\xd5\xd0\xdb\xd7\xd1\xdb\xd7\ +\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd6\xd1\xda\xd8\xd3\ +\xdc\xd9\xd4\xdd\xd7\xd2\xdb\xd3\xce\xd7\xcc\xc6\xcf\xc1\xb9\xc3\ +\xb3\xa7\xb3\xad\xa1\xad\xad\xa4\xb1\xb2\xad\xbb\xb9\xb9\xc7\xc6\ +\xc5\xd1\xd0\xcf\xdb\xd8\xd7\xe1\xdb\xda\xe4\xdc\xdb\xe5\xdc\xdb\ +\xe5\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xda\xe4\xdb\xd9\xe3\ +\xdb\xd8\xe3\xdc\xd8\xe3\xda\xd7\xe1\xd9\xd5\xe0\xdb\xd7\xe2\xd8\ +\xd7\xe1\xd7\xd4\xdf\xd4\xd0\xdb\xcd\xcc\xd7\xc7\xc5\xd1\xc0\xbd\ +\xca\xb9\xb6\xc5\xb4\xb0\xbf\xaf\xa9\xb9\xa9\xa3\xb4\xa7\x9f\xb0\ +\xa4\x9d\xae\xa4\x9c\xad\xa2\x9b\xac\xa0\x9b\xac\xa0\x9b\xab\xa2\ +\x9a\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa3\x9c\xab\xa1\x9b\xa9\xa1\x9b\ +\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa0\x99\xa8\xa0\x9a\xa8\xa1\x9a\xa8\ +\x9e\x99\xa8\x9e\x98\xa9\x9e\x98\xa8\x9d\x9a\xa9\x9e\x9a\xa9\x9d\ +\x9a\xaa\x9e\x9b\xaa\x9d\x9a\xab\x9e\x9b\xab\x9e\x9b\xab\x9e\x9b\ +\xab\x9e\x9a\xaa\x9e\x99\xa8\x9e\x99\xa8\x9f\x99\xa8\x9f\x98\xa9\ +\x9f\x9a\xa9\x9f\x99\xab\x9f\x99\xaa\xa1\x9b\xac\xa0\x9a\xab\xa2\ +\x9c\xad\xa2\x9d\xae\xa4\x9f\xae\xa6\xa0\xb0\xaa\xa4\xb2\xac\xa5\ +\xb3\xad\xa6\xb3\xae\xa7\xb4\xaf\xa8\xb5\xaa\xa4\xb3\x9f\x9c\xac\ +\x94\x94\xa5\x8d\x8e\xa0\x8b\x8c\x9e\x8c\x8c\x9e\x8d\x8d\x9f\x92\ +\x90\xa2\x99\x95\xa6\x9d\x97\xa8\x9c\x96\xa7\x9a\x94\xa5\x96\x91\ +\xa4\x94\x90\xa3\x95\x91\xa4\x97\x94\xa7\x00\x00\x00\xc2\xbd\xc9\ +\xc2\xbe\xc9\xc2\xbe\xca\xc1\xbd\xc9\xc1\xbe\xca\xc1\xbf\xcc\xc1\ +\xbf\xcb\xc3\xc1\xcd\xc5\xc3\xcf\xc7\xc5\xd0\xca\xc8\xd3\xce\xca\ +\xd6\xd0\xcd\xd8\xd3\xcf\xda\xd6\xd1\xdd\xd7\xd3\xde\xd9\xd5\xe0\ +\xda\xd6\xe0\xda\xd7\xe0\xdb\xd7\xe0\xda\xd6\xdf\xdb\xd6\xdf\xda\ +\xd5\xde\xd9\xd5\xdd\xda\xd4\xdc\xdb\xd4\xdb\xd9\xd2\xd9\xd8\xd1\ +\xd8\xd8\xd1\xd8\xd8\xd0\xd7\xd8\xd0\xd7\xd7\xcf\xd6\xd7\xcf\xd6\ +\xd7\xcf\xd6\xd5\xcd\xd4\xd4\xcc\xd5\xd4\xcc\xd6\xd4\xcc\xd6\xd3\ +\xcd\xd7\xd4\xcf\xd8\xd5\xd0\xd9\xd4\xcf\xd8\xd4\xd0\xd9\xd4\xd0\ +\xd9\xd5\xd1\xdb\xd6\xd1\xdb\xd5\xd1\xdb\xd4\xd0\xdb\xd4\xd0\xdb\ +\xd3\xcf\xda\xd2\xce\xd9\xd2\xce\xd9\xd1\xcd\xd9\xd2\xce\xd9\xd2\ +\xce\xd9\xd4\xd0\xdb\xd6\xd0\xdb\xd6\xd1\xdb\xd7\xd2\xdb\xd7\xd2\ +\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd6\xd1\xda\xd7\xd2\xdb\xd8\xd3\xdc\ +\xd9\xd4\xdd\xd7\xd2\xdb\xd1\xcb\xd4\xc8\xc1\xcb\xbb\xb1\xbc\xaf\ +\xa3\xaf\xac\xa1\xad\xaf\xa7\xb4\xb2\xb0\xbf\xbf\xbe\xcc\xcb\xcb\ +\xd7\xd5\xd4\xde\xda\xd9\xe3\xdc\xdb\xe5\xdc\xdb\xe5\xdc\xdb\xe5\ +\xdc\xdb\xe5\xdb\xdb\xe5\xdd\xda\xe5\xde\xd9\xe4\xdd\xd9\xe4\xdb\ +\xd8\xe2\xda\xd6\xe1\xda\xd7\xe2\xda\xd6\xe1\xd8\xd4\xdf\xd5\xd1\ +\xdc\xcf\xcb\xd6\xc7\xc4\xd0\xbe\xbc\xc9\xb7\xb3\xc2\xb3\xae\xbe\ +\xae\xa8\xb9\xaa\xa3\xb4\xa8\xa0\xb0\xa6\x9e\xaf\xa5\x9d\xae\xa4\ +\x9c\xad\xa3\x9b\xac\xa0\x9a\xab\xa0\x9a\xab\xa2\x9a\xab\xa1\x9b\ +\xa9\xa1\x9a\xa9\xa2\x9b\xaa\xa1\x9b\xa9\xa1\x9a\xa9\xa2\x9b\xa8\ +\xa1\x9a\xa8\xa1\x9a\xa9\xa1\x9a\xa9\xa0\x99\xa8\x9f\x9a\xa9\x9f\ +\x99\xa9\x9d\x99\xa8\x9d\x9a\xa9\x9d\x9a\xaa\x9e\x9b\xa9\x9d\x9a\ +\xa9\x9e\x9b\xaa\x9e\x9b\xaa\x9d\x9a\xaa\x9d\x9a\xaa\x9e\x9a\xa9\ +\x9f\x99\xa8\x9f\x9a\xa9\x9e\x99\xa8\x9f\x99\xa9\x9e\x98\xa8\x9f\ +\x99\xaa\xa0\x9a\xaa\xa0\x9a\xab\xa1\x9b\xac\xa2\x9c\xad\xa2\x9c\ +\xac\xa3\x9e\xad\xa5\xa0\xaf\xa8\xa2\xb1\xaa\xa3\xb2\xa9\xa4\xb2\ +\xa8\xa3\xb2\xa7\xa2\xb1\xa2\x9e\xae\x97\x95\xa7\x8c\x8c\xa0\x85\ +\x87\x9b\x86\x87\x9b\x89\x89\x9c\x8c\x8c\x9e\x92\x90\xa2\x9a\x96\ +\xa7\x9e\x98\xa9\x9e\x98\xa9\x9a\x94\xa6\x98\x92\xa5\x95\x90\xa3\ +\x95\x91\xa4\x97\x93\xa7\x00\x00\x00\xc5\xbf\xca\xc4\xbf\xcb\xc3\ +\xbf\xcb\xc4\xc0\xcc\xc3\xbf\xcc\xc2\xbf\xcd\xc1\xbf\xcc\xc3\xc0\ +\xce\xc5\xc3\xce\xc7\xc5\xd1\xcc\xc8\xd3\xce\xca\xd5\xd1\xcd\xd8\ +\xd5\xd1\xdc\xd6\xd2\xdd\xd9\xd6\xdf\xd9\xd6\xe0\xdb\xd8\xe1\xdd\ +\xd9\xe2\xdd\xd9\xe2\xde\xd9\xe2\xdd\xd8\xe0\xdc\xd7\xe0\xdd\xd6\ +\xdd\xdd\xd6\xdd\xdd\xd6\xdd\xdb\xd4\xdb\xdb\xd4\xdb\xda\xd3\xda\ +\xd9\xd1\xd8\xd9\xd1\xd8\xd9\xd1\xd8\xd8\xd0\xd7\xd8\xd0\xd7\xd7\ +\xd0\xd7\xd6\xcf\xd6\xd6\xce\xd6\xd5\xce\xd7\xd6\xcf\xd8\xd6\xd0\ +\xd9\xd6\xd1\xda\xd7\xd1\xda\xd6\xd1\xda\xd6\xd1\xda\xd7\xd2\xdb\ +\xd7\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd6\xd1\xdb\xd5\xd0\xda\xd4\ +\xcf\xda\xd3\xcf\xda\xd3\xcf\xda\xd3\xcf\xda\xd5\xd0\xdb\xd5\xd0\ +\xdb\xd6\xd1\xdb\xd7\xd1\xdb\xd6\xd1\xda\xd6\xd1\xda\xd5\xd0\xd9\ +\xd6\xd1\xda\xd6\xd1\xda\xd7\xd1\xda\xd7\xd3\xdc\xd8\xd3\xdc\xd8\ +\xd3\xdc\xd5\xd0\xd9\xce\xc7\xd0\xc4\xbc\xc5\xb5\xab\xb5\xad\xa2\ +\xad\xad\xa3\xb1\xaf\xaa\xb9\xb7\xb5\xc5\xc4\xc4\xd1\xcf\xcd\xd8\ +\xd6\xd5\xdf\xda\xd9\xe3\xdb\xda\xe4\xdc\xdb\xe5\xdc\xdc\xe6\xdd\ +\xdb\xe5\xde\xd9\xe4\xde\xda\xe5\xdd\xd9\xe4\xdc\xd8\xe3\xdb\xd7\ +\xe2\xdc\xd8\xe3\xda\xd6\xe1\xd6\xd2\xdd\xd2\xce\xd9\xca\xc6\xd1\ +\xc2\xbe\xcb\xb8\xb4\xc2\xb0\xab\xbb\xad\xa7\xb8\xaa\xa4\xb5\xa8\ +\xa1\xb1\xa8\xa0\xb0\xa6\x9f\xaf\xa6\x9e\xaf\xa4\x9d\xae\xa3\x9b\ +\xac\xa1\x9b\xac\xa0\x9a\xab\xa1\x9b\xab\xa0\x9a\xa9\xa2\x9b\xaa\ +\xa2\x9c\xaa\xa2\x9b\xa9\xa2\x9b\xa9\xa2\x9b\xa9\xa1\x9a\xa9\xa1\ +\x9a\xa9\xa1\x9a\xa9\xa0\x9a\xa9\x9f\x9a\xa9\x9f\x99\xa8\x9f\x9a\ +\xa9\x9f\x9a\xa9\x9e\x9b\xaa\x9d\x9a\xa9\x9e\x9b\xaa\x9e\x9b\xa9\ +\x9e\x9a\xaa\x9e\x9b\xab\x9d\x99\xa9\x9d\x99\xa8\x9e\x99\xa9\x9e\ +\x98\xa8\x9e\x98\xa7\x9e\x98\xa8\x9e\x98\xa8\x9f\x99\xa9\x9f\x99\ +\xaa\x9f\x99\xaa\xa0\x9a\xab\xa1\x9b\xac\xa1\x9d\xac\xa3\x9d\xad\ +\xa4\x9f\xae\xa5\xa0\xaf\xa6\xa1\xb0\xa5\x9f\xb0\xa3\x9d\xad\x9e\ +\x9a\xad\x97\x94\xa8\x8d\x8b\xa0\x81\x83\x99\x7c\x7e\x95\x7f\x81\ +\x97\x85\x86\x9a\x8b\x8a\x9d\x92\x90\xa2\x9b\x97\xa7\x9e\x99\xa9\ +\x9f\x99\xa9\x9c\x96\xa7\x99\x93\xa5\x98\x92\xa5\x96\x92\xa5\x98\ +\x94\xa7\x00\x00\x00\xc7\xc1\xcc\xc7\xc1\xcc\xc6\xc2\xce\xc6\xc2\ +\xce\xc5\xc2\xce\xc4\xc1\xce\xc3\xc1\xcd\xc4\xc1\xce\xc5\xc3\xcf\ +\xc7\xc5\xd0\xca\xc9\xd3\xcf\xca\xd5\xd1\xcd\xd8\xd5\xd1\xdc\xd7\ +\xd3\xde\xd8\xd5\xdf\xdb\xd8\xe1\xdc\xd9\xe2\xdd\xda\xe3\xde\xdb\ +\xe4\xdf\xda\xe3\xdf\xda\xe2\xdf\xda\xe0\xdf\xd8\xdf\xdf\xd8\xdf\ +\xde\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdd\xd5\xdc\xdb\xd4\xdb\xdb\ +\xd3\xda\xdc\xd4\xdb\xdb\xd3\xda\xda\xd2\xd9\xda\xd2\xd9\xda\xd2\ +\xd9\xd9\xd2\xd9\xd8\xd1\xd8\xd9\xd2\xd9\xd9\xd2\xda\xda\xd4\xdb\ +\xda\xd3\xdb\xda\xd4\xdc\xda\xd4\xdc\xdb\xd3\xdb\xdb\xd3\xdc\xda\ +\xd4\xdc\xda\xd4\xdd\xd8\xd3\xdc\xd8\xd3\xdc\xd8\xd2\xdc\xd7\xd2\ +\xdc\xd6\xd2\xdc\xd6\xd2\xdd\xd7\xd3\xdd\xd7\xd2\xdc\xd8\xd3\xdc\ +\xd8\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd8\xd3\xdc\xd7\xd2\xdb\xd8\ +\xd2\xdb\xd7\xd3\xdc\xd8\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd7\xd2\ +\xdb\xd2\xcc\xd5\xca\xc2\xcc\xbe\xb5\xbf\xb1\xa6\xb2\xac\xa2\xaf\ +\xac\xa6\xb4\xaf\xad\xbc\xba\xba\xc9\xc8\xc7\xd3\xd2\xd1\xdc\xd8\ +\xd7\xe1\xdb\xda\xe4\xdc\xda\xe5\xdf\xdb\xe6\xde\xda\xe5\xde\xd9\ +\xe5\xde\xd9\xe4\xde\xda\xe5\xdc\xda\xe4\xdd\xd9\xe3\xdc\xd8\xe2\ +\xda\xd6\xe1\xd4\xd0\xdb\xcd\xc9\xd4\xc5\xc1\xcd\xbc\xb8\xc4\xb2\ +\xad\xbc\xac\xa6\xb7\xaa\xa4\xb4\xaa\xa2\xb3\xa8\xa0\xb1\xa8\xa1\ +\xb0\xa6\x9f\xae\xa6\x9e\xaf\xa5\x9e\xaf\xa2\x9c\xad\xa1\x9b\xac\ +\xa0\x9a\xab\x9f\x9a\xa9\xa0\x9b\xa9\xa2\x9c\xaa\xa2\x9b\xaa\xa4\ +\x9d\xa9\xa3\x9c\xaa\xa3\x9c\xa9\xa3\x9c\xab\xa2\x9b\xaa\xa2\x9a\ +\xa8\xa2\x9c\xa9\xa0\x9b\xaa\x9f\x9b\xaa\xa0\x9a\xa9\x9e\x9b\xaa\ +\x9e\x9a\xa9\x9d\x9b\xaa\x9d\x9a\xa9\x9c\x9a\xaa\x9d\x9b\xab\x9c\ +\x99\xa9\x9b\x98\xa8\x9c\x98\xa8\x9d\x98\xa8\x9d\x97\xa8\x9e\x97\ +\xa9\x9e\x97\xa8\x9e\x98\xa9\x9f\x99\xaa\x9e\x98\xa9\xa0\x9a\xab\ +\xa1\x9b\xac\xa0\x9a\xab\xa1\x9b\xac\xa2\x9d\xad\xa4\x9e\xae\xa3\ +\x9e\xad\xa6\xa1\xb0\xa7\xa1\xb1\xa4\x9f\xaf\x9e\x9a\xad\x93\x90\ +\xa5\x87\x86\x9c\x7b\x7c\x95\x75\x77\x90\x79\x7a\x94\x81\x81\x98\ +\x8a\x89\x9d\x92\x90\xa2\x9c\x96\xa8\xa1\x9b\xab\x9f\x99\xaa\x9d\ +\x97\xa8\x9c\x96\xa7\x9a\x94\xa6\x9a\x95\xa7\x9b\x97\xa8\x00\x00\ +\x00\xc8\xc2\xcd\xc8\xc2\xcd\xc8\xc3\xce\xc7\xc3\xcf\xc7\xc3\xcf\ +\xc4\xc2\xce\xc5\xc3\xcf\xc4\xc2\xce\xc5\xc3\xcf\xc6\xc5\xd0\xca\ +\xc8\xd3\xce\xcb\xd6\xd2\xce\xd9\xd4\xd0\xdb\xd7\xd3\xdd\xd9\xd6\ +\xdf\xdb\xd8\xe1\xdd\xda\xe3\xde\xdb\xe4\xdf\xdb\xe4\xe0\xdb\xe4\ +\xe1\xdc\xe4\xe1\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe0\xdf\xd8\xdf\xe0\ +\xd8\xdf\xdf\xd7\xde\xde\xd6\xdd\xdd\xd5\xdc\xdc\xd5\xdc\xdc\xd4\ +\xdb\xdc\xd4\xdb\xdc\xd4\xdb\xdc\xd5\xdb\xdc\xd5\xdb\xdc\xd4\xdb\ +\xdb\xd4\xdb\xdc\xd4\xdb\xdc\xd5\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xdc\ +\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdb\xdb\xd4\xdb\xdc\xd4\ +\xdc\xdb\xd4\xdc\xdb\xd4\xdc\xdb\xd4\xdd\xdb\xd5\xdd\xda\xd4\xdd\ +\xda\xd4\xde\xda\xd5\xde\xda\xd4\xde\xda\xd5\xde\xda\xd5\xde\xda\ +\xd5\xde\xda\xd5\xde\xda\xd5\xde\xda\xd4\xdd\xda\xd3\xdd\xd8\xd3\ +\xdc\xd9\xd4\xdd\xd9\xd4\xdd\xd8\xd3\xdc\xd7\xd2\xdb\xd4\xcf\xd8\ +\xcf\xc7\xd1\xc5\xbd\xc7\xb7\xae\xb8\xac\xa2\xaf\xab\xa3\xb2\xab\ +\xa7\xb7\xb2\xb1\xc1\xc0\xc1\xce\xcc\xcb\xd6\xd5\xd4\xde\xda\xda\ +\xe4\xdf\xda\xe5\xde\xda\xe5\xde\xda\xe5\xde\xda\xe5\xde\xda\xe4\ +\xde\xda\xe4\xdc\xd9\xe3\xdd\xd9\xe3\xdb\xd7\xe2\xd8\xd3\xde\xd2\ +\xcd\xd8\xcb\xc5\xd0\xc2\xbd\xc9\xb8\xb2\xc0\xaf\xa8\xb7\xab\xa4\ +\xb3\xa9\xa2\xb1\xa8\xa1\xb1\xa8\xa0\xb0\xa8\xa0\xb0\xa6\x9f\xaf\ +\xa7\x9e\xaf\xa5\x9e\xaf\xa2\x9c\xad\xa0\x99\xab\x9f\x99\xa9\x9f\ +\x9a\xa9\x9f\x9a\xa9\xa1\x9b\xa9\xa2\x9c\xa9\xa3\x9c\xa9\xa4\x9d\ +\xaa\xa4\x9d\xaa\xa3\x9c\xa9\xa3\x9c\xaa\xa3\x9c\xa9\xa2\x9c\xa9\ +\xa1\x9b\xaa\xa0\x9b\xaa\xa0\x9b\xaa\x9e\x9b\xab\x9e\x9b\xaa\x9d\ +\x9a\xa9\x9c\x99\xaa\x9b\x99\xa9\x9b\x99\xa9\x9b\x99\xa9\x9a\x97\ +\xa7\x9a\x98\xa8\x9b\x97\xa7\x9d\x97\xa7\x9d\x97\xa7\x9d\x96\xa7\ +\x9e\x98\xa9\x9e\x98\xa9\x9e\x98\xa9\x9f\x9a\xaa\x9f\x9a\xab\xa1\ +\x9a\xab\xa1\x9b\xac\xa2\x9c\xad\xa3\x9e\xae\xa7\xa2\xb1\xaa\xa5\ +\xb4\xab\xa6\xb5\xa9\xa4\xb3\xa3\x9e\xb0\x98\x94\xa8\x8b\x88\x9f\ +\x7c\x7c\x96\x76\x77\x91\x78\x79\x93\x80\x7f\x97\x8c\x89\x9e\x95\ +\x91\xa4\x9c\x97\xa8\xa2\x9c\xab\xa2\x9b\xab\xa0\x99\xaa\x9e\x97\ +\xa8\x9c\x96\xa7\x9d\x97\xa8\x9d\x99\xa9\x00\x00\x00\xc8\xc2\xcd\ +\xc8\xc2\xcd\xc9\xc3\xce\xc9\xc4\xd0\xc7\xc3\xd0\xc7\xc3\xcf\xc5\ +\xc3\xcf\xc5\xc3\xcf\xc5\xc3\xcf\xc6\xc4\xd0\xc9\xc7\xd3\xcf\xcb\ +\xd6\xd1\xcd\xd8\xd4\xd0\xdb\xd7\xd3\xdc\xd9\xd6\xdf\xdb\xd8\xe1\ +\xdd\xda\xe3\xdf\xdb\xe4\xe1\xdc\xe5\xe2\xdd\xe6\xe1\xdd\xe5\xe1\ +\xdd\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xda\xe1\xe1\xd9\ +\xe0\xe0\xd8\xdf\xdf\xd7\xde\xdf\xd7\xde\xde\xd6\xdd\xde\xd6\xdc\ +\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\ +\xd7\xdc\xde\xd7\xdd\xdf\xd8\xdd\xdf\xd8\xdd\xde\xd7\xdc\xde\xd7\ +\xdc\xde\xd7\xdc\xdd\xd6\xdc\xdd\xd6\xdb\xdd\xd6\xdc\xde\xd7\xdc\ +\xde\xd6\xdc\xde\xd7\xdd\xde\xd6\xdd\xdc\xd5\xdd\xdc\xd4\xde\xdc\ +\xd6\xdf\xdd\xd6\xe0\xde\xd6\xe0\xdd\xd6\xe0\xdd\xd5\xdf\xdd\xd6\ +\xdf\xdc\xd6\xdf\xdb\xd5\xde\xda\xd5\xde\xda\xd5\xde\xd9\xd4\xdd\ +\xd9\xd4\xdd\xd7\xd2\xdb\xd7\xd2\xdb\xd7\xd2\xdb\xd2\xcd\xd6\xcb\ +\xc4\xce\xbf\xb6\xc0\xaf\xa7\xb3\xa8\xa0\xb0\xa8\xa4\xb4\xad\xab\ +\xbb\xb8\xb7\xc5\xc5\xc5\xd1\xd1\xd0\xda\xd8\xd7\xe1\xdd\xda\xe4\ +\xde\xda\xe5\xdd\xda\xe5\xdd\xda\xe4\xde\xdb\xe4\xde\xda\xe4\xdc\ +\xd9\xe3\xdd\xd9\xe2\xdc\xd8\xe1\xd8\xd2\xdd\xd1\xcb\xd6\xca\xc3\ +\xce\xc1\xb9\xc6\xb5\xae\xbb\xad\xa6\xb4\xa9\xa2\xb1\xa9\xa1\xb1\ +\xa8\xa1\xb0\xa7\xa0\xaf\xa8\xa1\xb0\xa7\xa0\xaf\xa6\x9f\xaf\xa5\ +\x9f\xae\xa0\x9b\xab\x9e\x99\xa9\x9e\x98\xa8\x9d\x98\xa7\x9e\x99\ +\xa8\x9f\x9a\xa8\xa2\x9c\xa8\xa5\x9d\xaa\xa4\x9d\xaa\xa4\x9d\xaa\ +\xa4\x9d\xaa\xa3\x9c\xa9\xa4\x9d\xa9\xa3\x9b\xaa\xa1\x9c\xab\xa0\ +\x9b\xaa\x9e\x9b\xaa\x9e\x9b\xaa\x9e\x9b\xaa\x9c\x9a\xaa\x9a\x99\ +\xa9\x99\x98\xa8\x98\x97\xa7\x99\x97\xa7\x9a\x97\xa7\x9a\x97\xa7\ +\x9b\x96\xa6\x9c\x97\xa7\x9c\x96\xa7\x9c\x96\xa7\x9d\x97\xa8\x9e\ +\x98\xa9\x9e\x98\xa9\x9e\x9a\xa9\x9f\x9a\xaa\xa0\x9a\xab\xa1\x9b\ +\xac\xa2\x9d\xad\xa7\xa2\xb1\xab\xa6\xb4\xab\xa6\xb5\xac\xa7\xb6\ +\xac\xa7\xb6\xa9\xa4\xb3\xa0\x9a\xad\x92\x8e\xa4\x85\x82\x9b\x7e\ +\x7c\x97\x84\x82\x9a\x98\x91\xa4\xa4\x9c\xab\xa6\x9e\xad\xa2\x9c\ +\xab\xa5\x9e\xad\xa8\x9f\xaf\xa8\x9e\xae\xa3\x9a\xaa\x9d\x96\xa7\ +\x9d\x97\xa8\x9e\x99\xaa\x00\x00\x00\xc8\xc2\xcd\xc7\xc1\xcc\xc8\ +\xc2\xcd\xc9\xc4\xcf\xc8\xc3\xcf\xc8\xc4\xd0\xc7\xc4\xd0\xc5\xc3\ +\xcf\xc5\xc3\xcf\xc6\xc4\xd0\xc9\xc7\xd3\xce\xc9\xd4\xd0\xcc\xd7\ +\xd3\xd0\xda\xd5\xd1\xdc\xd8\xd5\xde\xd9\xd6\xdf\xdc\xd9\xe2\xde\ +\xdb\xe4\xe1\xdd\xe6\xe3\xde\xe7\xe2\xde\xe6\xe3\xde\xe5\xe3\xdc\ +\xe3\xe2\xdc\xe2\xe3\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xd9\xe0\ +\xe1\xd9\xe0\xdf\xd7\xde\xdf\xd7\xdf\xe0\xd9\xdf\xe1\xda\xdf\xe0\ +\xd9\xde\xdf\xd9\xde\xe1\xd9\xde\xe1\xd8\xde\xdf\xd8\xde\xe0\xd8\ +\xdd\xe1\xd8\xde\xe0\xd8\xde\xe1\xd7\xde\xe1\xd8\xde\xe0\xd7\xdd\ +\xe0\xd8\xdc\xe0\xd8\xdd\xe0\xd7\xdd\xdf\xd8\xdd\xe1\xd8\xde\xe0\ +\xd8\xde\xdf\xd8\xde\xde\xd6\xdd\xde\xd7\xde\xde\xd7\xdf\xde\xd6\ +\xe1\xe0\xd8\xe0\xdf\xd7\xe1\xde\xd6\xe0\xde\xd6\xe0\xde\xd6\xe0\ +\xde\xd5\xe0\xdd\xd6\xe0\xdb\xd5\xde\xd9\xd4\xdd\xd9\xd4\xdd\xd8\ +\xd3\xdc\xd8\xd3\xdc\xd9\xd4\xdd\xd6\xd1\xda\xce\xc9\xd2\xc6\xbe\ +\xc9\xb7\xaf\xbb\xa8\xa1\xb0\xa5\xa0\xb0\xa7\xa6\xb6\xaf\xaf\xbe\ +\xbe\xbd\xcb\xcb\xca\xd5\xd4\xd3\xdd\xdb\xd8\xe2\xde\xda\xe5\xde\ +\xda\xe4\xde\xdb\xe4\xdd\xda\xe3\xde\xda\xe3\xdd\xd8\xe1\xde\xd9\ +\xe2\xdd\xd7\xe0\xd7\xd1\xdc\xd0\xca\xd5\xc9\xc3\xce\xc0\xb8\xc4\ +\xb5\xac\xba\xaa\xa3\xb3\xa8\xa1\xb0\xa8\xa1\xb1\xa9\xa2\xb1\xa9\ +\xa2\xb1\xa9\xa2\xb1\xa7\xa0\xaf\xa7\xa0\xaf\xa6\xa0\xaf\xa1\x9c\ +\xab\x9f\x9a\xa9\x9f\x9a\xa9\x9f\x9a\xa9\x9e\x9a\xa8\x9f\x9b\xa7\ +\xa1\x9a\xa7\xa4\x9d\xaa\xa5\x9e\xab\xa5\x9e\xab\xa5\x9e\xab\xa4\ +\x9d\xab\xa3\x9d\xab\xa1\x9b\xaa\xa0\x9c\xab\xa0\x9b\xaa\x9e\x9b\ +\xa9\x9d\x9a\xa9\x9d\x9a\xa9\x9b\x99\xaa\x99\x98\xa8\x97\x96\xa7\ +\x96\x95\xa6\x96\x95\xa5\x98\x95\xa5\x99\x96\xa6\x99\x97\xa7\x9c\ +\x95\xa7\x9b\x95\xa6\x9c\x96\xa7\x9d\x97\xa8\x9e\x98\xa9\x9e\x98\ +\xa9\x9e\x9a\xaa\x9f\x9a\xab\x9f\x9a\xaa\xa1\x9b\xab\xa4\x9f\xad\ +\xaa\xa6\xb3\xac\xa8\xb5\xaf\xaa\xb8\xb0\xab\xb9\xb0\xac\xba\xb1\ +\xac\xba\xaa\xa5\xb5\xa0\x9a\xad\x93\x8e\xa3\x8c\x88\x9f\xa1\x99\ +\xaa\xad\xa4\xb1\xab\xa1\xae\xab\xa2\xaf\xa8\x9f\xae\xa9\xa0\xaf\ +\xaa\x9f\xb0\xaa\xa0\xb0\xa9\x9f\xaf\xa2\x9a\xaa\x9d\x96\xa7\x9e\ +\x98\xa9\x00\x00\x00\xc8\xc2\xcd\xc7\xc1\xcc\xc7\xc1\xcc\xc9\xc3\ +\xce\xc8\xc4\xcf\xc8\xc4\xd0\xc7\xc5\xd1\xc5\xc3\xcf\xc5\xc3\xcf\ +\xc6\xc4\xd0\xcb\xc7\xd3\xcd\xc9\xd5\xd0\xcc\xd7\xd2\xce\xd9\xd4\ +\xd0\xdb\xd6\xd2\xdd\xd9\xd5\xe0\xdc\xd9\xe2\xdd\xda\xe3\xe1\xdd\ +\xe6\xe4\xdf\xe8\xe4\xdf\xe7\xe4\xdf\xe5\xe4\xde\xe5\xe4\xdd\xe4\ +\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdc\xe3\xe3\xdb\xe1\xe2\xdb\xe1\xe2\ +\xdb\xe1\xe2\xda\xe0\xe2\xdb\xe0\xe3\xdc\xe1\xe2\xdb\xe0\xe2\xdb\ +\xe0\xe3\xd8\xdf\xe2\xd8\xde\xe2\xd9\xde\xe3\xd9\xdf\xe3\xd9\xdf\ +\xe2\xd8\xde\xe2\xd8\xdd\xe2\xd8\xde\xe2\xd8\xde\xe2\xd8\xde\xe2\ +\xd8\xde\xe2\xd8\xde\xe3\xd8\xde\xe3\xd9\xde\xe3\xd9\xde\xe1\xd9\ +\xde\xdf\xd8\xde\xdf\xd7\xde\xdf\xd8\xdf\xdf\xd8\xe0\xe0\xd9\xe0\ +\xe0\xd8\xe1\xe0\xd8\xe1\xe0\xd8\xe2\xdf\xd7\xe1\xdf\xd7\xe1\xdf\ +\xd7\xe1\xdd\xd5\xdf\xdc\xd5\xde\xda\xd5\xde\xda\xd5\xde\xda\xd5\ +\xde\xda\xd5\xde\xd8\xd3\xdc\xd4\xcf\xd8\xcb\xc5\xcf\xbf\xb8\xc3\ +\xad\xa8\xb6\xa3\x9f\xb0\xa4\xa1\xb3\xa9\xa7\xb9\xb7\xb6\xc5\xc5\ +\xc3\xd0\xd0\xd0\xda\xda\xd6\xe1\xde\xdb\xe4\xde\xdb\xe4\xde\xda\ +\xe3\xdc\xd9\xe2\xdd\xd8\xe1\xdc\xd6\xe0\xda\xd5\xdf\xd9\xd4\xde\ +\xd4\xcf\xda\xcd\xc7\xd2\xc7\xc0\xcb\xc0\xb8\xc3\xb5\xae\xbb\xac\ +\xa5\xb2\xa9\xa2\xb0\xa8\xa1\xb0\xa9\xa2\xb0\xaa\xa3\xb1\xa9\xa2\ +\xb1\xa9\xa2\xaf\xa9\xa2\xaf\xa7\xa0\xae\xa4\x9e\xac\xa1\x9b\xaa\ +\xa1\x9b\xaa\xa1\x9b\xa9\xa0\x9b\xa9\xa1\x9b\xa8\xa2\x9b\xa8\xa4\ +\x9d\xaa\xa4\x9d\xaa\xa5\x9e\xaa\xa4\x9d\xaa\xa3\x9c\xab\xa1\x9c\ +\xab\x9f\x9a\xa9\x9f\x9b\xaa\x9f\x9c\xab\x9e\x9b\xaa\x9c\x99\xa9\ +\x9a\x99\xa9\x99\x98\xa9\x97\x96\xa7\x94\x95\xa6\x94\x93\xa4\x94\ +\x93\xa4\x95\x94\xa4\x98\x95\xa5\x99\x95\xa6\x9b\x96\xa7\x9c\x96\ +\xa7\x9c\x97\xa8\x9c\x97\xa8\x9d\x98\xa9\x9e\x98\xa9\x9e\x99\xaa\ +\x9f\x9a\xaa\xa0\x9a\xaa\xa1\x9c\xab\xa6\xa1\xaf\xae\xa7\xb5\xb2\ +\xac\xb8\xb4\xae\xbb\xb7\xb0\xbd\xbb\xb4\xc0\xbe\xb8\xc3\xbc\xb7\ +\xc2\xb6\xb0\xbd\xaa\xa3\xb2\xa3\x9b\xab\xad\xa4\xb1\xac\xa3\xaf\ +\xab\xa1\xae\xa9\xa0\xad\xaa\xa1\xaf\xaa\xa1\xaf\xa8\x9e\xae\xa7\ +\x9d\xad\xa9\x9f\xaf\xa9\x9f\xaf\xa3\x9a\xab\x9d\x97\xa8\x00\x00\ +\x00\xc6\xc0\xcb\xc6\xc0\xcb\xc6\xc0\xcb\xc7\xc1\xcc\xc9\xc3\xce\ +\xc9\xc4\xd0\xca\xc6\xd1\xc7\xc5\xd0\xc7\xc4\xd0\xc6\xc4\xd0\xca\ +\xc6\xd2\xcd\xc9\xd4\xcf\xcb\xd6\xd1\xcd\xd8\xd2\xce\xd9\xd5\xd1\ +\xdc\xd8\xd4\xdf\xdb\xd8\xe2\xdd\xda\xe3\xe1\xdd\xe6\xe4\xdf\xe7\ +\xe4\xe0\xe7\xe5\xe0\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe5\xdf\xe5\xe5\ +\xdf\xe4\xe6\xdf\xe4\xe4\xde\xe2\xe4\xdd\xe2\xe3\xdc\xe1\xe3\xdc\ +\xe1\xe3\xdc\xe1\xe3\xdb\xe1\xe2\xdc\xe0\xe3\xdb\xe0\xe3\xd9\xdf\ +\xe3\xd9\xdf\xe3\xd9\xdf\xe3\xda\xde\xe4\xda\xe0\xe3\xd9\xde\xe3\ +\xda\xdd\xe3\xda\xde\xe2\xd9\xdd\xe2\xd8\xde\xe3\xd9\xdf\xe4\xda\ +\xdf\xe4\xda\xe0\xe3\xda\xde\xe3\xd9\xdf\xe3\xd9\xdf\xe1\xd8\xde\ +\xdf\xd9\xdf\xe0\xd8\xe0\xdf\xd8\xdf\xe0\xd9\xe1\xe1\xda\xe0\xe1\ +\xd9\xe1\xe0\xd8\xe2\xe0\xd8\xe2\xdf\xd7\xe1\xdf\xd7\xe1\xdd\xd7\ +\xe0\xdd\xd6\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\ +\xda\xd5\xde\xd7\xd2\xdb\xd1\xcc\xd6\xc6\xc1\xcc\xb7\xb3\xc0\xa8\ +\xa4\xb4\xa1\x9f\xb2\xa5\xa3\xb6\xb0\xae\xbf\xc0\xbc\xcb\xcc\xc9\ +\xd5\xd7\xd3\xde\xdc\xd8\xe2\xdd\xda\xe3\xdc\xd9\xe2\xdb\xd6\xdf\ +\xda\xd4\xde\xd7\xd1\xdd\xd7\xd1\xdc\xd4\xd0\xdb\xd0\xcc\xd7\xc9\ +\xc4\xcf\xc3\xbd\xc8\xbc\xb5\xc1\xb4\xad\xba\xad\xa5\xb3\xa9\xa2\ +\xb0\xab\xa2\xaf\xaa\xa3\xb0\xaa\xa2\xb0\xaa\xa3\xb0\xab\xa2\xaf\ +\xa9\xa2\xaf\xa8\xa1\xae\xa6\x9f\xac\xa3\x9c\xab\xa3\x9d\xaa\xa2\ +\x9c\xa8\xa2\x9c\xa8\xa2\x9b\xa8\xa3\x9c\xa9\xa4\x9d\xaa\xa4\x9d\ +\xaa\xa3\x9d\xaa\xa1\x9c\xaa\xa1\x9c\xab\xa0\x9b\xaa\x9f\x9b\xaa\ +\x9e\x9b\xaa\x9e\x9b\xab\x9e\x9b\xaa\x9c\x99\xa9\x98\x97\xa8\x96\ +\x95\xa7\x94\x94\xa6\x93\x93\xa5\x91\x91\xa3\x92\x91\xa2\x94\x92\ +\xa4\x96\x94\xa4\x99\x95\xa5\x9b\x95\xa6\x9c\x96\xa7\x9d\x97\xa8\ +\x9c\x97\xa8\x9c\x97\xa9\x9c\x98\xa9\x9d\x99\xa9\x9d\x9a\xaa\x9f\ +\x9b\xaa\xa1\x9c\xab\xa7\xa2\xb0\xb0\xa9\xb6\xb6\xaf\xbb\xba\xb4\ +\xbf\xbe\xb9\xc3\xc4\xbf\xc8\xc8\xc2\xcc\xc9\xc3\xcc\xc6\xc0\xca\ +\xb2\xa9\xb5\xaa\xa1\xae\xac\xa4\xb0\xac\xa3\xaf\xaa\xa1\xae\xa8\ +\x9f\xac\xa8\x9e\xad\xa7\x9f\xac\xa7\x9d\xad\xa7\x9d\xad\xa7\x9d\ +\xad\xa9\x9f\xae\xaa\xa1\xaf\xa1\x9a\xaa\x00\x00\x00\xc6\xc0\xcb\ +\xc5\xbf\xca\xc6\xc1\xcb\xca\xc3\xce\xcb\xc5\xd0\xcc\xc6\xd1\xcb\ +\xc7\xd2\xca\xc6\xd2\xcb\xc7\xd2\xcc\xc8\xd3\xcd\xc9\xd3\xcd\xc9\ +\xd4\xcf\xcb\xd6\xd1\xcd\xd8\xd2\xce\xd9\xd4\xd0\xdb\xd6\xd2\xdd\ +\xda\xd7\xe0\xdd\xda\xe3\xe1\xdd\xe5\xe4\xdf\xe7\xe5\xe1\xe7\xe6\ +\xe1\xe7\xe7\xe0\xe7\xe6\xe0\xe6\xe6\xe0\xe5\xe7\xe0\xe5\xe7\xe0\ +\xe5\xe6\xdf\xe4\xe6\xdf\xe4\xe4\xdd\xe2\xe5\xdc\xe2\xe5\xdc\xe1\ +\xe5\xdb\xe1\xe4\xdc\xe1\xe6\xdc\xe2\xe5\xdb\xe1\xe4\xda\xe0\xe5\ +\xdb\xe0\xe5\xda\xe1\xe5\xdc\xdf\xe6\xdd\xe0\xe5\xdc\xdf\xe4\xdb\ +\xde\xe4\xdb\xde\xe4\xdb\xde\xe4\xdb\xdf\xe6\xdd\xe0\xe6\xdc\xe2\ +\xe5\xdb\xe1\xe4\xda\xe1\xe4\xda\xe0\xe3\xd9\xdf\xe1\xda\xdf\xe0\ +\xd9\xe0\xe0\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe1\xd9\ +\xe2\xdf\xd7\xe1\xdf\xd7\xe1\xdf\xd7\xe2\xdf\xd8\xe0\xde\xd7\xe0\ +\xdc\xd8\xe1\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xda\xd5\xde\xda\ +\xd5\xde\xd5\xd1\xdb\xcd\xc9\xd4\xc2\xbe\xc9\xb3\xaf\xbe\xa5\xa3\ +\xb5\xa4\xa2\xb5\xab\xa9\xbb\xb7\xb4\xc4\xc6\xc3\xcf\xd2\xce\xd9\ +\xd8\xd4\xdf\xdb\xd8\xe2\xda\xd7\xe0\xd9\xd5\xde\xd8\xd2\xdc\xd5\ +\xd0\xda\xd2\xcd\xd8\xd1\xcc\xd7\xcd\xc7\xd2\xc6\xc1\xcc\xbf\xb9\ +\xc4\xb9\xb2\xbe\xb2\xab\xb8\xac\xa5\xb2\xab\xa3\xb0\xac\xa3\xb0\ +\xab\xa2\xaf\xab\xa3\xaf\xab\xa2\xaf\xac\xa3\xaf\xab\xa2\xb0\xab\ +\xa2\xaf\xa9\xa0\xad\xa6\x9f\xac\xa5\x9e\xab\xa4\x9d\xaa\xa4\x9d\ +\xaa\xa4\x9d\xaa\xa4\x9d\xaa\xa3\x9c\xaa\xa3\x9d\xab\xa0\x9c\xab\ +\xa0\x9b\xaa\x9f\x9b\xaa\x9e\x9a\xa9\x9d\x9a\xa9\x9c\x9a\xaa\x9a\ +\x99\xa9\x9b\x9a\xaa\x98\x96\xa8\x95\x95\xa7\x92\x93\xa6\x8f\x90\ +\xa3\x8d\x8f\xa2\x8e\x8f\xa1\x8f\x90\xa2\x91\x91\xa3\x95\x93\xa4\ +\x98\x95\xa5\x9b\x96\xa7\x9c\x97\xa7\x9c\x96\xa7\x9d\x98\xa8\x9c\ +\x98\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9e\x9a\xaa\xa0\x9a\xaa\xa1\x9c\ +\xab\xa6\xa1\xb0\xaf\xaa\xb6\xb7\xb1\xbd\xbf\xb9\xc3\xc6\xbf\xc8\ +\xcb\xc5\xce\xd0\xc8\xd2\xd0\xc9\xd2\xc9\xc1\xcb\xaf\xa6\xb2\xaa\ +\xa1\xae\xab\xa1\xae\xac\xa3\xaf\xab\xa3\xaf\xa9\xa0\xad\xa7\x9d\ +\xab\xa6\x9d\xac\xa8\x9e\xad\xa7\x9d\xad\xa6\x9c\xac\xa7\x9d\xad\ +\xab\xa1\xb0\xa8\x9f\xae\x00\x00\x00\xc6\xc0\xcb\xc7\xc1\xcb\xc9\ +\xc3\xcd\xcb\xc6\xcf\xcd\xc8\xd1\xcf\xc9\xd2\xce\xc9\xd4\xd0\xcd\ +\xd7\xd2\xce\xd8\xd1\xcd\xd7\xd0\xcc\xd7\xd0\xcc\xd7\xd1\xcd\xd8\ +\xd1\xcd\xd8\xd2\xce\xd9\xd4\xd0\xdb\xd6\xd2\xdd\xd9\xd6\xdf\xdd\ +\xda\xe3\xe1\xdd\xe5\xe4\xdf\xe6\xe6\xe1\xe7\xe7\xe1\xe8\xe8\xe1\ +\xe8\xe8\xe1\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xe8\xe1\xe5\ +\xe8\xdf\xe5\xe8\xde\xe4\xe7\xdd\xe3\xe7\xdc\xe3\xe7\xdd\xe3\xe7\ +\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe6\xdd\xe2\xe6\xdd\ +\xe0\xe7\xde\xe1\xe6\xdd\xe0\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdd\xe0\ +\xe6\xdd\xe0\xe6\xdd\xe0\xe7\xdd\xe1\xe7\xdd\xe1\xe6\xdd\xe1\xe6\ +\xdd\xdf\xe5\xdb\xdf\xe4\xda\xe0\xe3\xda\xdf\xe1\xda\xe0\xe1\xda\ +\xe0\xe1\xda\xe1\xe0\xd9\xe0\xe1\xd9\xe2\xe1\xd9\xe3\xe0\xd8\xe2\ +\xe1\xd9\xe3\xe0\xd8\xe2\xe1\xd8\xe3\xde\xd8\xe1\xdc\xd8\xe1\xdc\ +\xd7\xe0\xdc\xd7\xe0\xdb\xd6\xdf\xda\xd6\xdf\xd8\xd5\xdf\xd8\xd5\ +\xdf\xd3\xcf\xda\xca\xc6\xd2\xbc\xb9\xc7\xaa\xa9\xba\xa1\x9f\xb3\ +\xa6\xa4\xb7\xae\xab\xbc\xbd\xb9\xc8\xcb\xc7\xd2\xd3\xcf\xda\xd7\ +\xd3\xdd\xd9\xd6\xdf\xd8\xd3\xdc\xd5\xd0\xd9\xd2\xcd\xd6\xcf\xca\ +\xd3\xce\xc8\xd2\xc9\xc3\xce\xc2\xbc\xc7\xbc\xb5\xc0\xb7\xb0\xbb\ +\xb0\xa9\xb5\xad\xa4\xb1\xac\xa4\xb0\xab\xa2\xb0\xac\xa3\xb0\xad\ +\xa4\xb0\xad\xa4\xb0\xac\xa4\xaf\xac\xa3\xaf\xac\xa3\xaf\xab\xa3\ +\xad\xa9\xa1\xac\xa7\xa0\xac\xa6\x9f\xab\xa5\x9e\xab\xa6\x9f\xac\ +\xa5\x9e\xab\xa3\x9d\xab\xa1\x9c\xaa\x9d\x9a\xa9\x9b\x98\xa7\x9b\ +\x98\xa8\x9b\x98\xa8\x9a\x97\xa7\x97\x97\xa8\x96\x96\xa8\x95\x96\ +\xa6\x93\x93\xa6\x90\x91\xa4\x8d\x90\xa3\x8b\x8e\xa2\x87\x8c\x9f\ +\x87\x8b\x9f\x8b\x8c\x9f\x90\x8f\xa2\x94\x92\xa3\x98\x94\xa4\x9c\ +\x96\xa7\x9d\x97\xa7\x9d\x96\xa7\x9c\x97\xa8\x9d\x99\xa9\x9c\x99\ +\xa9\x9d\x9a\xaa\x9f\x9b\xab\xa0\x9b\xab\xa3\x9e\xad\xa6\xa1\xaf\ +\xb0\xa9\xb6\xb9\xb3\xbe\xc0\xbb\xc4\xc7\xc2\xcb\xcf\xc9\xd1\xd4\ +\xcd\xd4\xd4\xcd\xd4\xc4\xbb\xc4\xad\xa3\xb0\xaa\xa0\xad\xa9\xa0\ +\xad\xaa\xa2\xae\xab\xa2\xaf\xa9\xa0\xad\xa8\x9f\xac\xa4\x9a\xaa\ +\xa6\x9d\xac\xa6\x9c\xac\xa3\x99\xa9\xa6\x9e\xad\xaa\xa0\xaf\xab\ +\xa1\xb1\x00\x00\x00\xc9\xc3\xcd\xca\xc4\xcd\xcc\xc6\xcf\xd0\xc8\ +\xd2\xd0\xcb\xd3\xd1\xcc\xd5\xd4\xd0\xd8\xd7\xd3\xdc\xd6\xd3\xdc\ +\xd5\xd2\xdb\xd4\xd1\xda\xd3\xd0\xd9\xd3\xcf\xda\xd4\xd0\xda\xd4\ +\xcf\xda\xd4\xd0\xdb\xd6\xd2\xdd\xd9\xd6\xdf\xde\xd9\xe2\xe2\xdd\ +\xe4\xe4\xe0\xe6\xe6\xe0\xe6\xe7\xe0\xe7\xe9\xe2\xe8\xe8\xe2\xe7\ +\xea\xe3\xe8\xe9\xe2\xe7\xe9\xe3\xe7\xea\xe1\xe6\xea\xe0\xe6\xe9\ +\xdf\xe4\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xdd\xe3\xe7\xde\ +\xe3\xe7\xdd\xe4\xe7\xdd\xe3\xe8\xde\xe2\xe7\xde\xe1\xe8\xde\xe1\ +\xe9\xdf\xe2\xe9\xde\xe1\xe9\xde\xe1\xe9\xde\xe1\xe8\xde\xe1\xe8\ +\xde\xe1\xe7\xdd\xe1\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdd\xe0\xe5\xdc\ +\xe0\xe5\xdb\xe0\xe3\xda\xe0\xe2\xda\xe0\xe2\xda\xe1\xe1\xda\xe1\ +\xe1\xda\xe1\xe1\xd9\xe2\xe0\xd8\xe2\xe1\xd9\xe3\xe0\xd9\xe3\xdf\ +\xd9\xe3\xe0\xd9\xe2\xde\xda\xe2\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd7\ +\xe0\xda\xd7\xe0\xd9\xd5\xdf\xd9\xd5\xe0\xd9\xd5\xe0\xd7\xd3\xdd\ +\xd0\xcc\xd7\xc4\xc1\xce\xb4\xb2\xc2\xa4\xa2\xb6\xa1\x9f\xb3\xa7\ +\xa4\xb7\xb3\xaf\xc0\xc2\xbe\xcb\xcb\xc8\xd3\xd2\xce\xd8\xd7\xd2\ +\xdb\xd6\xd1\xda\xd3\xce\xd7\xcf\xca\xd3\xcc\xc5\xce\xc8\xc1\xcb\ +\xc5\xbe\xc8\xc0\xb9\xc4\xbb\xb3\xbe\xb6\xae\xb9\xb0\xa9\xb4\xad\ +\xa5\xb1\xab\xa4\xaf\xac\xa2\xaf\xad\xa4\xaf\xac\xa4\xaf\xad\xa3\ +\xaf\xad\xa4\xaf\xad\xa3\xaf\xad\xa4\xaf\xac\xa3\xae\xab\xa4\xae\ +\xab\xa3\xae\xab\xa2\xae\xa8\xa0\xae\xa6\x9f\xac\xa5\x9e\xac\xa2\ +\x9c\xab\x9f\x9b\xaa\x9c\x99\xa9\x99\x96\xa6\x96\x95\xa5\x96\x95\ +\xa6\x95\x94\xa5\x91\x91\xa5\x90\x91\xa4\x8e\x91\xa4\x8c\x90\xa3\ +\x88\x8d\xa1\x83\x8a\x9f\x82\x89\x9e\x82\x88\x9c\x80\x86\x9b\x86\ +\x89\x9d\x8d\x8d\xa0\x92\x90\xa2\x97\x94\xa4\x9a\x95\xa6\x9c\x96\ +\xa6\x9c\x96\xa7\x9d\x97\xa8\x9d\x98\xa9\x9c\x99\xa9\x9d\x99\xaa\ +\xa0\x9b\xab\xa3\x9d\xad\xa5\xa1\xae\xad\xa6\xb2\xb4\xae\xb9\xba\ +\xb4\xbe\xc0\xbb\xc4\xc9\xc2\xcb\xcf\xc8\xd0\xd3\xcc\xd3\xd4\xcd\ +\xd4\xc0\xb8\xc1\xaa\xa0\xad\xaa\xa2\xae\xa9\xa0\xad\xaa\xa0\xad\ +\xaa\xa1\xae\xa9\xa1\xae\xa8\x9f\xac\xa3\x99\xa9\xa4\x9b\xab\xa4\ +\x9b\xab\xa2\x98\xa9\xa7\x9d\xad\xaa\xa0\xaf\xac\xa3\xb0\x00\x00\ +\x00\xcc\xc7\xd0\xcd\xc8\xd1\xd0\xc8\xd2\xd2\xcc\xd2\xd5\xce\xd6\ +\xd6\xd1\xd8\xdb\xd7\xdd\xdc\xd8\xdf\xda\xd7\xdf\xd8\xd5\xdd\xd7\ +\xd4\xdd\xd7\xd4\xdd\xd6\xd3\xdc\xd6\xd3\xdc\xd5\xd2\xdb\xd6\xd3\ +\xdc\xd6\xd3\xdc\xdb\xd6\xdf\xde\xd9\xe2\xe1\xdc\xe4\xe3\xdf\xe5\ +\xe6\xe0\xe6\xe7\xe0\xe7\xe9\xe3\xe8\xea\xe3\xe8\xeb\xe3\xe8\xea\ +\xe3\xe8\xe9\xe3\xe7\xea\xe1\xe6\xea\xe0\xe7\xe9\xe0\xe3\xe8\xdf\ +\xe3\xe8\xdf\xe3\xe8\xde\xe4\xe8\xde\xe4\xe8\xde\xe5\xe8\xde\xe4\ +\xe8\xdf\xe2\xe8\xdf\xe2\xeb\xe0\xe3\xea\xdf\xe2\xea\xdf\xe2\xea\ +\xdf\xe2\xea\xdf\xe1\xea\xdf\xe2\xea\xdf\xe2\xea\xdf\xe2\xe8\xdd\ +\xe0\xe6\xdd\xe0\xe6\xdd\xe0\xe7\xde\xe1\xe6\xdd\xe0\xe6\xdc\xe1\ +\xe3\xd9\xdf\xe2\xdc\xe1\xe2\xdb\xe1\xe2\xdb\xe2\xe1\xda\xe2\xe0\ +\xd8\xe2\xe2\xd9\xe3\xdf\xd9\xe3\xde\xd9\xe2\xdf\xda\xe3\xdf\xda\ +\xe3\xde\xda\xe2\xde\xd9\xe2\xde\xd8\xe1\xda\xd7\xe1\xda\xd6\xe0\ +\xd9\xd5\xe0\xda\xd6\xe1\xda\xd6\xe1\xd8\xd4\xdf\xd5\xd1\xdc\xcb\ +\xc8\xd4\xbf\xbc\xca\xae\xac\xbc\xa4\xa0\xb4\xa5\xa0\xb4\xad\xa7\ +\xb9\xb7\xb2\xc2\xc2\xbe\xca\xcd\xc7\xd2\xd2\xce\xd7\xd4\xcf\xd8\ +\xd2\xcd\xd6\xcd\xc7\xd0\xc9\xc0\xca\xc3\xbb\xc5\xc0\xb8\xc2\xbd\ +\xb5\xbf\xb8\xb0\xbb\xb3\xab\xb6\xaf\xa7\xb2\xac\xa4\xb0\xac\xa4\ +\xaf\xad\xa3\xaf\xac\xa2\xae\xac\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\ +\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xac\xa4\xaf\xab\xa4\xaf\xac\ +\xa2\xaf\xa9\xa2\xae\xa7\xa0\xad\xa5\x9f\xac\xa1\x9c\xaa\xa0\x9a\ +\xa9\x9c\x99\xa9\x97\x96\xa5\x93\x92\xa4\x92\x92\xa5\x90\x90\xa3\ +\x8a\x8d\xa0\x89\x8e\xa1\x88\x8d\xa1\x86\x8c\xa0\x7f\x88\x9e\x77\ +\x83\x9b\x77\x82\x9b\x79\x82\x9a\x7d\x84\x9a\x83\x87\x9c\x8a\x8c\ +\x9f\x91\x90\xa2\x96\x93\xa3\x99\x96\xa6\x9d\x96\xa7\x9c\x97\xa7\ +\x9c\x97\xa8\x9c\x99\xa9\x9d\x9a\xaa\x9f\x9a\xab\xa2\x9f\xae\xa3\ +\x9f\xae\xa8\xa3\xb0\xb1\xaa\xb5\xb7\xb2\xbd\xbc\xb7\xc0\xc0\xbb\ +\xc5\xc6\xc1\xca\xcf\xc8\xd0\xd4\xcd\xd4\xd5\xce\xd5\xbd\xb4\xbe\ +\xa8\x9f\xac\xaa\xa1\xae\xaa\xa1\xae\xa9\xa0\xad\xab\xa1\xae\xab\ +\xa2\xaf\xa8\x9f\xac\xa4\x9a\xaa\xa2\x99\xa9\xa3\x9a\xa9\xa2\x99\ +\xa9\xa8\x9f\xae\xaa\xa1\xae\xab\xa2\xaf\x00\x00\x00\xcf\xca\xd3\ +\xd0\xcb\xd4\xd2\xcd\xd4\xd6\xcf\xd6\xd8\xd2\xd9\xdb\xd7\xdd\xdf\ +\xdb\xe1\xdf\xdc\xe2\xdd\xda\xe0\xdb\xd8\xe0\xdb\xd8\xe0\xdb\xd8\ +\xe0\xd9\xd6\xdf\xd8\xd5\xde\xd7\xd4\xdd\xd7\xd4\xdd\xda\xd5\xde\ +\xdb\xd6\xdf\xdd\xd8\xe0\xe0\xdc\xe2\xe4\xdc\xe4\xe5\xde\xe5\xe6\ +\xdf\xe6\xe9\xe3\xe7\xea\xe3\xe8\xea\xe3\xe8\xeb\xe4\xe9\xea\xe2\ +\xe8\xeb\xe2\xe7\xeb\xe1\xe7\xea\xe1\xe4\xea\xe1\xe4\xea\xe0\xe3\ +\xe8\xdf\xe3\xe9\xdf\xe3\xe9\xe0\xe4\xe9\xe0\xe3\xe9\xe0\xe3\xea\ +\xe0\xe3\xec\xe1\xe4\xeb\xe0\xe3\xea\xdf\xe2\xec\xe0\xe3\xeb\xe0\ +\xe2\xeb\xe0\xe2\xea\xdf\xe1\xea\xdf\xe1\xea\xdf\xe2\xe8\xde\xe1\ +\xe7\xdd\xe0\xe7\xde\xe1\xe7\xdd\xe1\xe6\xdc\xe1\xe4\xdc\xe2\xe3\ +\xdc\xe2\xe4\xdc\xe2\xe3\xdc\xe3\xe1\xda\xe2\xe0\xda\xe3\xdf\xda\ +\xe4\xdf\xda\xe3\xde\xd9\xe2\xde\xd9\xe2\xde\xda\xe3\xde\xd9\xe2\ +\xdf\xda\xe3\xde\xda\xe3\xdc\xd8\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xdb\ +\xd7\xe1\xd9\xd5\xe0\xd9\xd5\xe0\xd6\xd2\xdd\xd1\xce\xd9\xc6\xc4\ +\xd0\xb7\xb4\xc3\xa9\xa6\xb7\xa4\xa0\xb3\xab\xa4\xb6\xb3\xab\xbb\ +\xbb\xb5\xc3\xc5\xbe\xcb\xcc\xc6\xd1\xd1\xcb\xd5\xce\xc9\xd2\xca\ +\xc3\xcd\xc4\xbd\xc6\xbd\xb4\xbf\xb7\xaf\xba\xb3\xab\xb6\xb0\xa8\ +\xb3\xad\xa5\xb1\xac\xa3\xb0\xac\xa4\xaf\xac\xa3\xaf\xac\xa3\xaf\ +\xac\xa2\xae\xad\xa3\xaf\xac\xa2\xae\xac\xa2\xae\xad\xa3\xaf\xad\ +\xa3\xaf\xad\xa3\xae\xac\xa3\xae\xac\xa3\xae\xab\xa3\xae\xaa\xa2\ +\xaf\xa8\xa0\xad\xa6\x9f\xac\xa2\x9c\xab\x9f\x9a\xa9\x9b\x98\xa8\ +\x96\x95\xa6\x92\x91\xa3\x90\x8f\xa3\x8c\x8d\xa0\x84\x89\x9e\x81\ +\x87\x9c\x7f\x88\x9d\x7b\x85\x9c\x74\x82\x9b\x6c\x7c\x97\x6c\x7c\ +\x96\x70\x7d\x96\x77\x80\x98\x7f\x85\x99\x87\x89\x9d\x8f\x8f\xa1\ +\x95\x93\xa3\x99\x96\xa6\x9a\x97\xa7\x9b\x98\xa8\x9b\x98\xa8\x9b\ +\x98\xa8\x9d\x9a\xaa\xa3\x9d\xad\xa4\xa0\xb0\xa3\x9f\xae\xaa\xa5\ +\xb1\xb4\xae\xb9\xba\xb4\xbf\xbe\xb9\xc3\xc1\xbc\xc6\xc6\xc1\xca\ +\xd0\xca\xd2\xd4\xcf\xd7\xd6\xcf\xd6\xb7\xae\xb9\xaa\xa1\xae\xa9\ +\xa0\xad\xa9\xa0\xad\xaa\xa1\xae\xab\xa1\xae\xac\xa2\xad\xa9\xa0\ +\xac\xa4\x9b\xaa\xa1\x98\xa8\xa1\x99\xa9\xa2\x9a\xa9\xa8\x9e\xad\ +\xaa\xa1\xae\xab\xa1\xae\x00\x00\x00\xd2\xce\xd6\xd3\xcf\xd6\xd5\ +\xd1\xd7\xda\xd3\xda\xde\xd7\xde\xe0\xdb\xe1\xe2\xde\xe5\xe2\xde\ +\xe4\xe1\xde\xe4\xe2\xdd\xe3\xe0\xdd\xe3\xde\xdb\xe2\xdc\xd9\xe2\ +\xdb\xd8\xe1\xd9\xd5\xde\xd9\xd4\xdd\xd9\xd4\xdd\xdb\xd6\xde\xdd\ +\xd7\xdf\xdf\xd9\xe0\xe1\xdb\xe2\xe4\xdd\xe4\xe6\xdf\xe6\xe8\xe1\ +\xe6\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\xea\xe3\xe8\xeb\xe3\xe7\ +\xec\xe2\xe8\xeb\xe2\xe5\xeb\xe2\xe5\xea\xe1\xe4\xe9\xe0\xe3\xe9\ +\xe0\xe3\xea\xe1\xe4\xea\xe1\xe4\xeb\xe1\xe4\xec\xe1\xe3\xed\xe2\ +\xe4\xec\xe1\xe3\xec\xe1\xe3\xed\xe1\xe3\xed\xe1\xe2\xed\xe0\xe2\ +\xec\xe0\xe2\xeb\xe0\xe2\xea\xde\xe1\xe9\xde\xe1\xe9\xde\xe1\xe8\ +\xdf\xe2\xe7\xde\xe1\xe7\xdd\xe2\xe5\xdd\xe2\xe4\xdd\xe2\xe4\xdc\ +\xe3\xe2\xdc\xe2\xe1\xda\xe3\xe0\xda\xe3\xdf\xdb\xe3\xdf\xda\xe3\ +\xdf\xda\xe3\xdf\xd9\xe3\xde\xdb\xe4\xdd\xd9\xe3\xde\xda\xe3\xde\ +\xda\xe3\xdd\xd9\xe4\xdc\xd8\xe3\xdc\xd8\xe3\xdb\xd7\xe2\xda\xd6\ +\xe1\xd8\xd4\xdf\xd8\xd4\xdf\xd5\xd1\xdc\xce\xca\xd6\xc1\xbd\xca\ +\xb3\xae\xbe\xa9\xa2\xb5\xab\xa3\xb4\xb2\xa9\xb9\xb8\xaf\xbd\xbf\ +\xb8\xc5\xc8\xc2\xcd\xce\xc8\xd3\xd0\xc9\xd4\xcb\xc5\xcf\xc5\xbe\ +\xc8\xbd\xb5\xc0\xb5\xad\xb8\xb0\xa8\xb3\xad\xa5\xb0\xac\xa4\xaf\ +\xac\xa3\xaf\xac\xa3\xae\xac\xa3\xae\xad\xa2\xae\xab\xa1\xad\xac\ +\xa2\xae\xad\xa3\xaf\xab\xa1\xad\xad\xa3\xaf\xac\xa2\xae\xac\xa2\ +\xaf\xad\xa2\xae\xac\xa3\xaf\xab\xa2\xae\xab\xa3\xaf\xa9\xa1\xae\ +\xa7\xa0\xad\xa3\x9d\xab\x9e\x9a\xa9\x9a\x97\xa7\x93\x93\xa5\x8f\ +\x8f\xa2\x8b\x8c\xa0\x85\x8a\x9e\x7c\x84\x9b\x76\x81\x99\x72\x80\ +\x98\x6e\x7e\x97\x67\x79\x95\x64\x77\x93\x63\x76\x91\x69\x79\x94\ +\x72\x7d\x96\x7a\x81\x98\x85\x88\x9c\x8d\x8e\xa0\x93\x92\xa2\x97\ +\x95\xa5\x99\x96\xa7\x99\x96\xa7\x9a\x97\xa8\x9b\x98\xa9\x9d\x9a\ +\xaa\xa2\x9f\xae\xa4\xa0\xb0\xa3\xa1\xb0\xac\xa9\xb5\xb7\xb2\xbd\ +\xbe\xb9\xc4\xc2\xbd\xc8\xc5\xc1\xcb\xc9\xc3\xce\xcf\xca\xd3\xd3\ +\xcf\xd7\xd2\xcb\xd3\xb2\xa9\xb4\xa8\x9f\xac\xa8\x9f\xac\xa9\xa0\ +\xad\xaa\xa1\xae\xaa\xa1\xae\xaa\xa1\xad\xa9\xa0\xad\xa6\x9d\xab\ +\xa1\x99\xa8\x9e\x96\xa6\xa1\x9a\xa9\xa9\xa0\xad\xab\xa2\xaf\xab\ +\xa2\xaf\x00\x00\x00\xd5\xd1\xd8\xd7\xd3\xd9\xd9\xd5\xdb\xdc\xd8\ +\xde\xe0\xdc\xe2\xe3\xdf\xe5\xe5\xe1\xe6\xe6\xe2\xe7\xe6\xe2\xe7\ +\xe6\xe2\xe8\xe5\xe1\xe7\xe3\xe0\xe5\xe0\xdd\xe5\xdd\xda\xe2\xda\ +\xd5\xdf\xd9\xd4\xdd\xd9\xd4\xdd\xdb\xd5\xdd\xdd\xd6\xdd\xdf\xd8\ +\xdf\xe0\xd9\xe0\xe2\xdc\xe2\xe5\xde\xe3\xe7\xe0\xe5\xe8\xe1\xe6\ +\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\xeb\xe3\xe8\xeb\xe2\xe6\xeb\ +\xe2\xe5\xea\xe1\xe4\xeb\xe2\xe5\xea\xe1\xe4\xeb\xe0\xe3\xeb\xe1\ +\xe4\xeb\xe1\xe4\xec\xe0\xe4\xec\xe1\xe4\xec\xe1\xe3\xed\xe2\xe4\ +\xee\xe2\xe4\xee\xe2\xe4\xee\xe2\xe2\xee\xe2\xe2\xee\xe1\xe2\xec\ +\xdf\xe1\xec\xdf\xe1\xea\xdf\xe2\xea\xdf\xe2\xe9\xdf\xe2\xe8\xdf\ +\xe1\xe7\xde\xe2\xe6\xdd\xe3\xe5\xde\xe3\xe4\xdd\xe3\xe3\xdc\xe3\ +\xe1\xda\xe2\xe0\xda\xe3\xdf\xda\xe3\xe0\xdb\xe4\xdf\xda\xe3\xde\ +\xda\xe3\xdd\xdb\xe3\xdd\xda\xe3\xdd\xdb\xe4\xdd\xda\xe5\xdd\xd9\ +\xe4\xdc\xd8\xe3\xdd\xd9\xe4\xdb\xd7\xe2\xdb\xd7\xe2\xd9\xd5\xe1\ +\xda\xd6\xe0\xd8\xd4\xdf\xd5\xd0\xdb\xca\xc5\xd1\xbc\xb8\xc5\xb1\ +\xaa\xba\xad\xa4\xb4\xb2\xa8\xb7\xb8\xae\xbb\xbc\xb3\xc0\xc4\xbd\ +\xc9\xcc\xc6\xd1\xd0\xca\xd5\xcf\xc9\xd4\xc8\xc2\xcd\xc1\xba\xc5\ +\xb9\xb1\xbc\xb1\xa9\xb4\xad\xa4\xb0\xac\xa2\xae\xac\xa2\xae\xab\ +\xa2\xad\xab\xa2\xad\xac\xa2\xae\xac\xa2\xae\xac\xa2\xae\xac\xa2\ +\xae\xac\xa2\xae\xad\xa3\xaf\xac\xa2\xae\xac\xa2\xaf\xac\xa3\xaf\ +\xab\xa2\xae\xac\xa3\xaf\xaa\xa3\xae\xaa\xa1\xae\xa7\xa0\xad\xa4\ +\x9d\xac\xa1\x9c\xab\x9a\x97\xa9\x93\x92\xa5\x8c\x8d\xa1\x86\x8a\ +\x9f\x7e\x85\x9c\x75\x80\x99\x6c\x7b\x94\x66\x78\x92\x60\x75\x91\ +\x5d\x72\x90\x5d\x73\x90\x5d\x72\x8f\x62\x73\x90\x6c\x78\x93\x76\ +\x7e\x97\x81\x86\x9b\x88\x8a\x9d\x90\x8f\xa2\x93\x92\xa4\x94\x93\ +\xa5\x95\x94\xa6\x97\x95\xa8\x9a\x97\xa8\x9d\x9a\xaa\xa2\x9f\xaf\ +\xa4\xa1\xb1\xa5\xa2\xb1\xae\xab\xb7\xb9\xb5\xc1\xc2\xbe\xc9\xc6\ +\xc2\xcd\xc9\xc5\xd0\xce\xc9\xd3\xd3\xce\xd7\xd4\xce\xd8\xcc\xc5\ +\xcf\xac\xa3\xb0\xa7\x9e\xab\xa9\xa0\xad\xa8\x9f\xac\xaa\xa0\xad\ +\xab\xa2\xaf\xaa\xa2\xae\xa9\xa0\xad\xa7\x9f\xab\xa1\x9a\xa9\x9d\ +\x95\xa6\xa0\x99\xa9\xa9\xa0\xad\xab\xa2\xae\xab\xa2\xae\x00\x00\ +\x00\xd9\xd5\xdb\xdb\xd7\xdd\xdd\xd9\xdf\xe0\xdc\xe2\xe3\xdf\xe4\ +\xe5\xe1\xe6\xe8\xe4\xe9\xe9\xe5\xea\xea\xe6\xeb\xe9\xe5\xea\xe8\ +\xe4\xea\xe6\xe2\xe8\xe3\xe0\xe6\xdd\xda\xe3\xdb\xd7\xe0\xd9\xd6\ +\xde\xd9\xd5\xde\xdc\xd4\xdb\xdc\xd5\xdc\xdd\xd6\xdd\xdf\xd7\xde\ +\xe0\xd9\xdf\xe3\xdc\xe1\xe6\xdf\xe4\xe7\xe0\xe5\xe8\xe1\xe6\xea\ +\xe3\xe8\xeb\xe4\xe9\xeb\xe3\xe7\xec\xe4\xe7\xeb\xe2\xe5\xec\xe3\ +\xe6\xeb\xe2\xe5\xed\xe1\xe4\xeb\xe0\xe3\xeb\xe0\xe2\xeb\xdf\xe2\ +\xec\xe1\xe2\xeb\xe0\xe2\xed\xe1\xe3\xee\xe3\xe3\xee\xe4\xe3\xf0\ +\xe4\xe3\xef\xe4\xe4\xef\xe3\xe3\xee\xe2\xe2\xee\xe1\xe3\xec\xdf\ +\xe1\xeb\xdf\xe1\xea\xde\xe0\xea\xdf\xe2\xea\xde\xe2\xe7\xde\xe1\ +\xe6\xdd\xe2\xe5\xdc\xe1\xe3\xdc\xe2\xe4\xdc\xe3\xe2\xdb\xe2\xe1\ +\xdb\xe3\xe0\xdb\xe4\xdf\xda\xe3\xe0\xdb\xe4\xde\xda\xe5\xdd\xda\ +\xe4\xdd\xdb\xe3\xdd\xda\xe4\xde\xdb\xe4\xde\xda\xe5\xdd\xd9\xe4\ +\xdd\xd9\xe4\xdb\xd8\xe2\xdb\xd7\xe1\xdd\xd8\xe1\xdb\xd7\xdf\xdc\ +\xd7\xe0\xda\xd4\xde\xd3\xcd\xd8\xc7\xc2\xce\xba\xb5\xc3\xb2\xa9\ +\xb9\xb2\xa8\xb6\xb7\xac\xb9\xbc\xb1\xbd\xc1\xb9\xc5\xc9\xc3\xce\ +\xcf\xca\xd5\xd1\xcc\xd6\xcc\xc6\xd1\xc5\xbf\xca\xbc\xb5\xc0\xb5\ +\xad\xb8\xad\xa4\xb0\xab\xa2\xae\xaa\xa0\xac\xac\xa2\xae\xab\xa1\ +\xad\xac\xa2\xae\xab\xa1\xad\xab\xa1\xad\xab\xa1\xad\xad\xa3\xaf\ +\xad\xa3\xaf\xac\xa2\xae\xae\xa4\xb0\xad\xa3\xb0\xad\xa3\xaf\xab\ +\xa1\xae\xac\xa3\xaf\xab\xa2\xaf\xa8\xa0\xad\xa6\x9e\xac\xa3\x9d\ +\xab\x9d\x99\xa9\x95\x93\xa6\x8b\x8d\xa2\x82\x87\x9e\x7a\x81\x9a\ +\x70\x7c\x96\x64\x75\x91\x5b\x70\x8e\x54\x6d\x8d\x52\x6c\x8c\x54\ +\x6b\x8b\x55\x6b\x8b\x5b\x6d\x8c\x65\x72\x8e\x6e\x78\x92\x78\x80\ +\x96\x81\x85\x99\x88\x89\x9d\x8d\x8e\xa0\x90\x90\xa2\x93\x92\xa4\ +\x96\x94\xa7\x98\x95\xa8\x9b\x99\xa9\x9f\x9c\xac\xa4\xa1\xb0\xa6\ +\xa3\xb3\xaf\xaa\xb8\xb9\xb6\xc2\xc4\xc0\xcb\xca\xc6\xd1\xcc\xc8\ +\xd3\xd1\xce\xd7\xd7\xd2\xdb\xd8\xd3\xdc\xca\xc3\xcb\xaa\x9f\xad\ +\xa7\x9e\xab\xa9\xa0\xad\xa8\x9f\xac\xaa\xa2\xae\xac\xa3\xaf\xab\ +\xa2\xaf\xaa\xa2\xae\xa8\x9f\xac\xa3\x9a\xa9\x9e\x96\xa7\x9f\x98\ +\xa7\xa6\x9d\xab\xa9\xa0\xad\xab\xa1\xae\x00\x00\x00\xdd\xd9\xdf\ +\xdf\xdb\xe1\xe0\xdc\xe2\xe2\xde\xe4\xe4\xe0\xe5\xe7\xe3\xe8\xe9\ +\xe5\xea\xea\xe6\xeb\xeb\xe7\xec\xeb\xe7\xec\xe9\xe5\xea\xe8\xe4\ +\xe9\xe3\xdf\xe5\xdc\xda\xe2\xdb\xd6\xdf\xd9\xd5\xde\xd9\xd4\xdd\ +\xdb\xd4\xdb\xdb\xd4\xdb\xdd\xd6\xdd\xde\xd7\xde\xe0\xd8\xde\xe1\ +\xda\xdf\xe3\xdc\xe1\xe6\xdf\xe4\xe7\xe0\xe5\xe9\xe2\xe7\xeb\xe3\ +\xe8\xed\xe4\xe7\xec\xe3\xe6\xec\xe2\xe5\xec\xe3\xe6\xed\xe2\xe5\ +\xeb\xe0\xe3\xec\xe1\xe2\xeb\xe0\xe2\xec\xdf\xe1\xed\xe0\xe2\xed\ +\xe0\xe2\xee\xe1\xe3\xef\xe2\xe3\xef\xe3\xe3\xef\xe4\xe4\xef\xe3\ +\xe3\xef\xe3\xe3\xef\xe3\xe3\xef\xe2\xe3\xec\xe0\xe1\xec\xdf\xe1\ +\xeb\xdf\xe1\xea\xde\xe1\xe9\xde\xe1\xe7\xdd\xe0\xe6\xdc\xe1\xe5\ +\xdc\xe2\xe3\xdc\xe2\xe3\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe3\xe1\xdc\ +\xe4\xe0\xdb\xe4\xe0\xda\xe3\xde\xdb\xe3\xde\xda\xe4\xde\xda\xe3\ +\xde\xdb\xe4\xdf\xdb\xe5\xde\xda\xe5\xdd\xd9\xe4\xdd\xda\xe3\xdd\ +\xd9\xe2\xdd\xd8\xe1\xdc\xd7\xe0\xdd\xd8\xe1\xdc\xd8\xe1\xdc\xd8\ +\xe0\xd8\xd3\xdd\xce\xca\xd5\xc4\xbf\xcb\xb9\xb3\xc0\xb4\xab\xb8\ +\xb7\xac\xb8\xbd\xb1\xbd\xc0\xb6\xc2\xc6\xbf\xca\xce\xc8\xd3\xd1\ +\xcb\xd6\xcf\xc9\xd4\xc9\xc3\xce\xbf\xba\xc5\xb9\xb0\xbc\xb0\xa7\ +\xb2\xab\xa1\xad\xaa\xa1\xad\xab\xa1\xad\xab\xa1\xad\xac\xa2\xae\ +\xac\xa2\xae\xab\xa1\xad\xac\xa2\xae\xad\xa3\xaf\xad\xa3\xaf\xad\ +\xa3\xaf\xad\xa3\xaf\xac\xa2\xae\xad\xa3\xae\xac\xa2\xaf\xab\xa2\ +\xae\xaa\xa1\xae\xa9\xa0\xad\xa7\x9f\xac\xa4\x9e\xac\x9d\x99\xaa\ +\x96\x94\xa8\x8c\x8d\xa2\x81\x86\x9e\x77\x80\x9b\x6c\x79\x95\x61\ +\x73\x92\x56\x6c\x8c\x4d\x68\x89\x4b\x65\x88\x4b\x66\x87\x4f\x66\ +\x86\x54\x68\x88\x5d\x6b\x89\x67\x72\x8d\x70\x78\x91\x77\x7e\x95\ +\x7f\x84\x98\x86\x89\x9c\x8b\x8d\xa0\x90\x91\xa3\x94\x94\xa6\x97\ +\x96\xa8\x9a\x98\xa9\x9d\x9a\xab\xa2\x9f\xae\xa5\xa1\xb1\xa9\xa6\ +\xb5\xb3\xb1\xbf\xbf\xbd\xc9\xc8\xc4\xcf\xce\xca\xd5\xd3\xd0\xd9\ +\xd9\xd4\xdd\xda\xd5\xde\xca\xc2\xcb\xa9\x9e\xab\xa7\x9d\xac\xa9\ +\xa0\xad\xa9\x9f\xac\xa9\xa0\xad\xac\xa2\xaf\xab\xa2\xae\xaa\xa1\ +\xae\xa7\x9e\xab\xa3\x9a\xa9\x9e\x96\xa7\x9e\x97\xa6\xa4\x9b\xaa\ +\xa8\x9f\xac\xaa\xa1\xae\x00\x00\x00\xdf\xdb\xe1\xe1\xdd\xe3\xe2\ +\xde\xe4\xe2\xde\xe4\xe4\xe0\xe5\xe8\xe4\xe9\xea\xe6\xeb\xeb\xe7\ +\xec\xeb\xe7\xec\xeb\xe7\xec\xe9\xe5\xea\xe5\xe2\xe8\xe1\xdd\xe4\ +\xda\xd7\xe0\xd9\xd6\xdf\xd9\xd4\xdd\xd8\xd3\xdc\xd8\xd2\xdb\xdb\ +\xd3\xda\xdc\xd5\xdc\xdd\xd6\xdc\xde\xd7\xdc\xdf\xd8\xdd\xe2\xdb\ +\xe0\xe4\xdd\xe2\xe7\xdf\xe4\xe9\xe1\xe4\xec\xe3\xe6\xed\xe4\xe7\ +\xec\xe3\xe6\xec\xe2\xe5\xed\xe2\xe5\xec\xe1\xe3\xeb\xe0\xe2\xec\ +\xe1\xe3\xed\xe0\xe2\xec\xe0\xe2\xed\xe0\xe2\xee\xe1\xe3\xee\xe1\ +\xe3\xee\xe2\xe2\xee\xe2\xe2\xee\xe3\xe3\xee\xe2\xe2\xee\xe2\xe2\ +\xee\xe2\xe2\xee\xe2\xe2\xec\xe0\xe0\xec\xdf\xe1\xeb\xde\xe0\xea\ +\xde\xe0\xe9\xdd\xdf\xe7\xdd\xe0\xe5\xdc\xe0\xe4\xdb\xe1\xe2\xdb\ +\xe0\xe2\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xdb\xe3\xe0\xdb\xe4\ +\xdf\xda\xe3\xe0\xda\xe3\xe0\xda\xe3\xe0\xda\xe3\xdf\xdb\xe4\xdf\ +\xdb\xe4\xdf\xda\xe4\xde\xd9\xe3\xde\xda\xe3\xdd\xd8\xe1\xdd\xd9\ +\xe2\xdd\xd8\xe1\xdc\xd7\xe0\xdd\xd8\xe1\xdd\xd8\xe1\xdc\xd6\xe0\ +\xd5\xd1\xdb\xcc\xc8\xd4\xc2\xbb\xc8\xb9\xb1\xbe\xb6\xac\xb9\xbb\ +\xb0\xbb\xbf\xb4\xbf\xc3\xbb\xc6\xcb\xc4\xcf\xce\xc9\xd4\xcf\xc9\ +\xd4\xcd\xc7\xd2\xc6\xc0\xcb\xbc\xb6\xc1\xb5\xad\xb8\xad\xa5\xb0\ +\xab\xa2\xad\xab\xa1\xad\xab\xa1\xad\xab\xa1\xad\xab\xa1\xad\xac\ +\xa2\xae\xad\xa3\xaf\xac\xa2\xae\xac\xa2\xae\xac\xa2\xae\xac\xa2\ +\xae\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xb0\xab\xa3\xaf\xab\xa1\xaf\ +\xaa\xa1\xae\xa7\x9f\xad\xa4\x9d\xac\x9e\x9a\xa9\x99\x96\xa8\x90\ +\x90\xa5\x86\x89\xa1\x78\x80\x9b\x6b\x78\x95\x5f\x70\x90\x53\x6a\ +\x8b\x4a\x64\x87\x46\x61\x85\x45\x60\x83\x49\x60\x82\x4c\x61\x82\ +\x55\x65\x84\x5f\x6c\x88\x69\x73\x8d\x72\x7a\x91\x7b\x81\x96\x82\ +\x87\x9a\x89\x8c\x9f\x8f\x90\xa2\x94\x94\xa6\x98\x96\xa8\x9a\x99\ +\xa9\x9e\x9b\xab\xa0\x9d\xad\xa1\x9e\xae\xa3\xa0\xb0\xab\xa8\xb7\ +\xb8\xb6\xc4\xc3\xc1\xcd\xcd\xc9\xd4\xd3\xcf\xd9\xd7\xd4\xdd\xdb\ +\xd6\xdf\xcb\xc5\xcd\xa8\x9e\xac\xa5\x9b\xaa\xa7\x9e\xac\xa9\xa0\ +\xac\xa8\x9f\xac\xaa\xa1\xae\xab\xa1\xad\xab\xa2\xae\xa8\x9f\xac\ +\xa5\x9c\xaa\x9f\x97\xa7\x9d\x95\xa5\xa2\x99\xa9\xa7\x9d\xac\xaa\ +\xa0\xad\x00\x00\x00\xe0\xdc\xe2\xe2\xde\xe4\xe3\xdf\xe5\xe4\xe0\ +\xe5\xe5\xe1\xe6\xe9\xe5\xea\xea\xe6\xeb\xec\xe8\xed\xeb\xe7\xec\ +\xea\xe6\xeb\xe7\xe3\xe9\xe4\xe0\xe6\xe0\xdc\xe2\xdc\xd7\xe0\xd9\ +\xd5\xde\xd8\xd3\xdc\xd7\xd2\xdb\xd7\xd1\xda\xd9\xd3\xd9\xda\xd3\ +\xda\xdb\xd4\xdb\xdd\xd6\xdc\xde\xd7\xdc\xe1\xda\xdf\xe4\xdb\xe0\ +\xe7\xde\xe1\xe9\xe0\xe3\xeb\xe2\xe5\xed\xe4\xe7\xec\xe3\xe6\xed\ +\xe3\xe6\xed\xe2\xe5\xec\xe1\xe3\xec\xe0\xe2\xed\xdf\xe1\xed\xe0\ +\xe2\xed\xe0\xe2\xec\xdf\xe1\xed\xe0\xe2\xed\xe0\xe1\xed\xe1\xe1\ +\xed\xe1\xe1\xee\xe2\xe2\xed\xe1\xe1\xed\xe1\xe1\xec\xe0\xe1\xed\ +\xe1\xe1\xec\xe0\xe0\xeb\xdf\xdf\xeb\xde\xe0\xe9\xdc\xde\xe8\xdc\ +\xdf\xe6\xdb\xde\xe3\xda\xde\xe3\xd9\xe0\xe1\xda\xe0\xe2\xda\xe0\ +\xe2\xda\xe1\xe2\xdb\xe1\xe1\xda\xe2\xe0\xdc\xe5\xe1\xdc\xe5\xe0\ +\xdb\xe4\xe0\xdb\xe4\xdf\xda\xe3\xdf\xdb\xe4\xe0\xdb\xe4\xde\xd9\ +\xe2\xde\xda\xe3\xde\xda\xe3\xdf\xd9\xe2\xdf\xd8\xe2\xde\xd7\xe1\ +\xdc\xd8\xe1\xde\xd9\xe2\xdd\xd8\xe1\xdd\xd8\xe1\xda\xd5\xdf\xd5\ +\xcf\xda\xca\xc5\xd0\xbf\xb7\xc4\xb8\xae\xbb\xbb\xaf\xba\xbe\xb2\ +\xbc\xc1\xb6\xc1\xc7\xbf\xca\xcc\xc5\xd0\xcd\xc7\xd2\xcd\xc7\xd2\ +\xca\xc4\xcf\xc3\xbd\xc8\xbd\xb5\xc0\xb6\xae\xb9\xb0\xa8\xb3\xac\ +\xa3\xae\xab\xa2\xae\xab\xa2\xae\xac\xa2\xae\xad\xa3\xaf\xad\xa3\ +\xaf\xad\xa2\xaf\xad\xa3\xaf\xad\xa3\xaf\xac\xa2\xae\xad\xa3\xaf\ +\xad\xa3\xaf\xad\xa3\xaf\xac\xa4\xb0\xac\xa3\xaf\xab\xa2\xaf\xa8\ +\xa0\xad\xa4\x9e\xad\xa0\x9b\xab\x9b\x98\xa8\x93\x92\xa6\x8b\x8d\ +\xa4\x7a\x80\x9c\x6b\x77\x95\x5f\x6f\x90\x52\x67\x8a\x48\x61\x85\ +\x44\x5e\x82\x43\x5d\x81\x44\x5d\x7f\x47\x5c\x7e\x50\x61\x80\x5c\ +\x69\x85\x66\x70\x8b\x70\x78\x91\x7a\x81\x96\x82\x87\x9b\x8a\x8d\ +\xa0\x91\x91\xa4\x95\x95\xa7\x99\x97\xa9\x9d\x9a\xaa\x9e\x9b\xab\ +\xa0\x9d\xad\xa1\x9e\xae\xa1\x9e\xae\xa5\xa2\xb2\xb1\xae\xbd\xbe\ +\xbc\xc9\xca\xc7\xd2\xd2\xce\xd9\xd7\xd4\xdd\xdb\xd7\xdf\xd0\xc9\ +\xd1\xab\xa0\xad\xa5\x9a\xa9\xa6\x9c\xab\xa7\x9e\xac\xa8\xa0\xad\ +\xaa\xa0\xad\xaa\xa2\xae\xab\xa3\xae\xa9\xa0\xac\xa7\x9e\xac\xa0\ +\x99\xa7\x9d\x95\xa6\x9f\x97\xa7\xa7\x9d\xab\xa9\xa1\xad\x00\x00\ +\x00\xe0\xdc\xe2\xe1\xdd\xe2\xe2\xde\xe3\xe4\xe0\xe5\xe7\xe3\xe8\ +\xe9\xe5\xea\xec\xe8\xed\xec\xe8\xed\xeb\xe7\xec\xe8\xe4\xe9\xe6\ +\xe2\xe7\xe2\xde\xe4\xdf\xdb\xe2\xdb\xd7\xe0\xd6\xd3\xdc\xd6\xd1\ +\xda\xd5\xd0\xd9\xd5\xd0\xd9\xd7\xd1\xd9\xd9\xd2\xd9\xda\xd3\xda\ +\xdc\xd5\xda\xdf\xd6\xdc\xe1\xd8\xdc\xe3\xda\xdd\xe6\xdd\xdf\xe8\ +\xde\xe1\xeb\xe0\xe3\xec\xe2\xe5\xed\xe2\xe5\xec\xe1\xe4\xec\xe1\ +\xe3\xeb\xe0\xe2\xed\xdf\xe1\xec\xdf\xe1\xeb\xde\xe0\xec\xdf\xe1\ +\xec\xe0\xe1\xec\xe0\xe1\xec\xe0\xe1\xeb\xdf\xe0\xec\xe0\xe1\xec\ +\xe0\xe1\xed\xe0\xe1\xec\xe0\xe0\xec\xe0\xe0\xed\xdf\xe0\xec\xdf\ +\xdf\xec\xdd\xdf\xe9\xdd\xde\xe9\xdc\xde\xe7\xdb\xdd\xe5\xd9\xdc\ +\xe2\xd8\xdb\xe1\xd7\xdd\xe0\xd8\xde\xdf\xd7\xde\xdf\xd9\xe0\xe0\ +\xd9\xe0\xe1\xda\xe1\xe1\xdb\xe4\xe1\xdb\xe4\xe2\xdc\xe4\xe1\xdb\ +\xe3\xe1\xdb\xe3\xe0\xda\xe3\xdf\xd9\xe2\xe0\xd9\xe2\xe0\xd9\xe1\ +\xe1\xd9\xe2\xe0\xd9\xe1\xe0\xd8\xe0\xe0\xd8\xe0\xdf\xd8\xe1\xde\ +\xd9\xe2\xdd\xd9\xe2\xde\xd9\xe2\xdc\xd8\xe1\xd9\xd4\xde\xd2\xcc\ +\xd7\xc7\xc1\xcc\xbb\xb3\xc0\xb7\xac\xb8\xb8\xad\xb8\xbb\xaf\xba\ +\xbf\xb5\xc1\xc6\xbe\xc9\xcc\xc4\xcf\xcd\xc7\xd2\xcd\xc7\xd2\xc9\ +\xc3\xce\xc6\xbe\xc9\xc1\xb9\xc4\xbb\xb3\xbe\xb5\xad\xb8\xb0\xa8\ +\xb3\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xac\xa3\xae\ +\xad\xa3\xaf\xad\xa3\xaf\xad\xa2\xae\xad\xa2\xae\xac\xa2\xae\xac\ +\xa3\xaf\xab\xa4\xaf\xac\xa3\xaf\xac\xa3\xaf\xaa\xa2\xaf\xa7\xa0\ +\xae\xa4\x9e\xad\x9f\x9b\xab\x97\x95\xa7\x8d\x8d\xa3\x7c\x81\x9c\ +\x6d\x76\x95\x60\x6f\x8f\x55\x67\x8a\x4c\x62\x86\x44\x5d\x81\x42\ +\x5a\x7e\x42\x58\x7c\x46\x5a\x7d\x50\x60\x80\x5c\x67\x84\x68\x71\ +\x8c\x72\x79\x91\x7c\x81\x96\x84\x88\x9d\x8c\x8f\xa2\x93\x94\xa5\ +\x97\x96\xa8\x9c\x9a\xaa\x9f\x9c\xac\xa1\x9e\xae\xa1\x9e\xae\xa2\ +\x9f\xaf\xa3\xa0\xb0\xa2\x9f\xaf\xa3\x9d\xae\xb4\xb0\xc0\xc6\xc4\ +\xd0\xd0\xcd\xd7\xd6\xd3\xdd\xdb\xd6\xdf\xd4\xce\xd7\xaf\xa5\xb1\ +\xa6\x9c\xab\xa6\x9c\xab\xa8\x9e\xac\xaa\xa1\xad\xaa\xa1\xae\xaa\ +\xa2\xae\xaa\xa2\xad\xa8\xa0\xac\xa8\x9f\xac\xa4\x9c\xaa\x9d\x95\ +\xa6\x9d\x95\xa6\xa4\x9b\xaa\xa8\x9f\xac\x00\x00\x00\xdd\xda\xe0\ +\xdf\xdb\xe1\xdf\xdb\xe2\xe4\xe0\xe5\xe8\xe4\xe9\xeb\xe7\xec\xed\ +\xe9\xee\xec\xe8\xed\xea\xe6\xeb\xe8\xe4\xe9\xe5\xe1\xe7\xe2\xde\ +\xe4\xdd\xd9\xe1\xd9\xd4\xdd\xd5\xd0\xd9\xd4\xcf\xd8\xd4\xcf\xd8\ +\xd4\xcf\xd8\xd6\xcf\xd8\xd7\xd0\xd7\xd9\xd2\xd8\xdc\xd4\xda\xde\ +\xd4\xd9\xdf\xd6\xd9\xe2\xd8\xda\xe5\xda\xdc\xe7\xdc\xdf\xe9\xde\ +\xe1\xea\xdf\xe1\xeb\xe0\xe2\xeb\xe0\xe2\xec\xe0\xe2\xec\xe0\xe2\ +\xec\xdf\xe1\xec\xdf\xe1\xeb\xde\xe0\xeb\xde\xe0\xeb\xde\xe0\xec\ +\xdf\xe1\xeb\xde\xe1\xeb\xdf\xe1\xec\xdf\xe1\xed\xdf\xe2\xec\xdf\ +\xe1\xeb\xde\xe0\xeb\xdf\xdf\xeb\xdf\xdf\xec\xde\xdf\xea\xde\xde\ +\xe9\xdc\xde\xe8\xdb\xdd\xe6\xd9\xdc\xe3\xd9\xdc\xe2\xd7\xdc\xdf\ +\xd6\xdc\xde\xd6\xdd\xde\xd7\xde\xde\xd7\xde\xdf\xd8\xdf\xe1\xd9\ +\xe1\xe1\xda\xe1\xe2\xdb\xe2\xe3\xdc\xe3\xe2\xdc\xe2\xe2\xda\xe2\ +\xe1\xd9\xe1\xe1\xd9\xe1\xe1\xda\xe1\xe1\xda\xe1\xe1\xda\xe1\xe1\ +\xd9\xe0\xe0\xda\xe0\xe0\xd9\xe0\xe1\xd9\xe0\xe0\xd9\xe1\xde\xd8\ +\xe1\xde\xd9\xe2\xdd\xd8\xe1\xda\xd5\xde\xd5\xcf\xda\xca\xc4\xcf\ +\xbd\xb5\xc2\xb3\xa9\xb6\xb0\xa6\xb2\xb4\xa7\xb2\xb7\xab\xb7\xbf\ +\xb6\xc2\xca\xc2\xcd\xce\xc8\xd3\xd0\xca\xd5\xcf\xc9\xd3\xcd\xc6\ +\xd1\xc9\xc2\xcd\xc5\xbe\xc9\xbf\xb8\xc3\xb9\xb1\xbc\xb3\xaa\xb6\ +\xaf\xa6\xb1\xad\xa4\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\ +\xa3\xaf\xac\xa2\xae\xad\xa3\xaf\xac\xa3\xae\xac\xa3\xaf\xab\xa3\ +\xae\xab\xa3\xae\xac\xa3\xaf\xab\xa2\xaf\xa9\xa1\xaf\xa6\xa0\xaf\ +\xa0\x9c\xab\x98\x95\xa7\x8b\x8c\xa1\x7d\x81\x9c\x6f\x78\x95\x63\ +\x6f\x8f\x57\x66\x89\x4d\x61\x86\x47\x5c\x81\x44\x5a\x7e\x45\x59\ +\x7c\x4a\x5c\x7d\x55\x62\x81\x60\x6b\x87\x6d\x74\x8f\x77\x7d\x95\ +\x82\x86\x9b\x8b\x8e\xa1\x92\x93\xa5\x98\x97\xa9\x9b\x9a\xaa\xa0\ +\x9d\xac\xa1\x9e\xae\xa2\x9f\xaf\xa3\x9f\xae\xa3\xa0\xaf\xa2\x9f\ +\xb0\xa4\xa0\xaf\xa1\x9b\xac\xa3\x9d\xae\xc0\xbd\xcb\xcf\xcc\xd6\ +\xd6\xd2\xdb\xda\xd6\xdf\xd8\xd3\xda\xb5\xaa\xb6\xa6\x9d\xaa\xa6\ +\x9d\xab\xa7\x9e\xab\xaa\xa1\xae\xaa\xa1\xad\xaa\xa2\xae\xaa\xa1\ +\xad\xa9\xa1\xac\xa9\xa0\xad\xa7\x9e\xab\x9f\x97\xa7\x9c\x94\xa5\ +\xa1\x98\xa8\xa8\x9f\xad\x00\x00\x00\xda\xd6\xdc\xdb\xd8\xde\xde\ +\xda\xe0\xe3\xdf\xe4\xe6\xe2\xe7\xe9\xe5\xea\xec\xe7\xec\xeb\xe8\ +\xed\xea\xe6\xeb\xe7\xe3\xe8\xe3\xdf\xe5\xdf\xdb\xe1\xdb\xd6\xdd\ +\xd7\xd2\xdb\xd3\xce\xd7\xd3\xce\xd7\xd4\xcf\xd8\xd4\xcf\xd8\xd6\ +\xce\xd8\xd7\xd0\xd7\xd8\xd0\xd7\xdb\xd2\xd7\xdc\xd3\xd7\xdf\xd4\ +\xd7\xe0\xd4\xd6\xe3\xd6\xd8\xe6\xd9\xdb\xe7\xdb\xdd\xe9\xdc\xde\ +\xe9\xde\xe0\xeb\xde\xe0\xeb\xdf\xe1\xec\xdf\xe1\xec\xdf\xe1\xec\ +\xdf\xe1\xeb\xde\xe0\xeb\xdf\xe0\xec\xdf\xe0\xeb\xdf\xe1\xeb\xdf\ +\xe0\xeb\xdf\xe0\xec\xdf\xe1\xec\xdf\xe1\xeb\xde\xe0\xeb\xde\xe0\ +\xea\xdd\xdf\xea\xde\xde\xea\xde\xde\xe9\xdd\xdd\xe8\xdb\xdd\xe7\ +\xd9\xdc\xe5\xd9\xdb\xe3\xd8\xdb\xe1\xd7\xdb\xde\xd4\xdc\xdd\xd5\ +\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xde\xd7\xde\xdf\xd8\xdf\xe1\xda\xe1\ +\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\xe0\ +\xda\xe0\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xda\xe1\xe1\xda\ +\xe1\xe1\xda\xe0\xe0\xd9\xe0\xe0\xd9\xe0\xde\xd7\xe0\xdd\xd7\xe0\ +\xda\xd5\xde\xd8\xd3\xdc\xd4\xce\xd8\xcb\xc5\xd0\xbd\xb6\xc2\xb0\ +\xa7\xb4\xaa\x9e\xaa\xaa\x9c\xa8\xae\xa1\xad\xb8\xae\xba\xc5\xbd\ +\xc8\xcd\xc7\xd2\xd1\xcb\xd6\xd3\xcd\xd7\xd3\xcd\xd8\xd0\xca\xd5\ +\xcc\xc6\xd1\xc7\xc1\xcc\xc3\xbb\xc6\xbd\xb4\xbf\xb6\xad\xb8\xb2\ +\xa8\xb4\xaf\xa5\xb1\xad\xa4\xaf\xad\xa3\xaf\xad\xa3\xaf\xad\xa3\ +\xaf\xac\xa3\xaf\xac\xa2\xaf\xac\xa2\xae\xab\xa4\xaf\xac\xa4\xaf\ +\xab\xa2\xaf\xab\xa1\xae\xa8\xa0\xae\xa4\x9e\xad\x9d\x98\xa9\x95\ +\x92\xa5\x8a\x8a\xa1\x7d\x81\x9b\x72\x79\x95\x68\x72\x90\x5d\x6a\ +\x8b\x54\x63\x87\x4d\x5e\x83\x4b\x5c\x80\x4c\x5c\x7f\x53\x61\x82\ +\x5d\x68\x86\x69\x71\x8d\x75\x7a\x94\x80\x83\x9a\x89\x8c\xa0\x92\ +\x92\xa6\x98\x97\xa9\x9c\x9b\xab\x9f\x9d\xad\xa1\x9e\xae\xa2\x9f\ +\xaf\xa2\x9f\xae\xa3\xa0\xaf\xa3\xa1\xaf\xa4\xa0\xaf\xa6\xa1\xb0\ +\xa4\x9e\xae\xa0\x9a\xab\xab\xa6\xb7\xce\xca\xd4\xd6\xd2\xdb\xdb\ +\xd7\xde\xdd\xd6\xdd\xbe\xb3\xbd\xa6\x9d\xab\xa4\x9b\xaa\xa5\x9c\ +\xab\xa9\xa0\xad\xab\xa2\xae\xa9\xa0\xad\xaa\xa1\xad\xa9\xa0\xad\ +\xaa\xa1\xae\xa8\x9f\xac\xa3\x9b\xaa\x9c\x95\xa4\x9d\x96\xa6\xa5\ +\x9c\xab\x00\x00\x00\xd5\xd2\xd8\xd8\xd4\xda\xdb\xd7\xdd\xe0\xdc\ +\xe1\xe5\xdf\xe4\xe9\xe2\xe7\xea\xe4\xe9\xeb\xe5\xea\xe9\xe4\xe9\ +\xe7\xe2\xe7\xe2\xde\xe4\xdd\xd8\xdf\xd8\xd3\xdb\xd4\xcf\xd8\xd2\ +\xcd\xd6\xd2\xcd\xd6\xd2\xcd\xd6\xd3\xcd\xd7\xd5\xce\xd7\xd5\xce\ +\xd5\xd7\xd0\xd5\xd8\xd0\xd5\xdb\xd1\xd4\xdd\xd2\xd4\xdf\xd2\xd4\ +\xe0\xd3\xd5\xe2\xd5\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe8\xdb\xdd\xe8\ +\xdb\xdd\xea\xdd\xdf\xea\xdd\xdf\xeb\xde\xe0\xeb\xde\xe0\xec\xde\ +\xe1\xeb\xdf\xdf\xeb\xdf\xdf\xec\xdf\xe0\xeb\xde\xe0\xec\xdf\xe1\ +\xec\xdf\xe1\xec\xde\xe1\xeb\xde\xe0\xea\xdd\xdf\xe9\xdc\xde\xe9\ +\xdd\xde\xe8\xdc\xdc\xe8\xdc\xdd\xe7\xdb\xdc\xe6\xda\xdb\xe3\xd8\ +\xda\xe1\xd7\xda\xde\xd4\xdb\xdd\xd5\xda\xdb\xd4\xda\xdb\xd4\xdb\ +\xdd\xd5\xdd\xdd\xd6\xdd\xdf\xd7\xde\xe0\xd8\xdf\xe1\xd9\xe0\xe2\ +\xda\xe1\xe1\xda\xe2\xe1\xda\xe1\xe1\xd9\xe0\xe2\xd9\xe0\xe2\xda\ +\xe1\xe3\xda\xe2\xe2\xda\xe2\xe2\xda\xe1\xe3\xda\xe2\xe2\xdb\xe1\ +\xe1\xd9\xe0\xe0\xd7\xde\xde\xd6\xdd\xdc\xd4\xdd\xda\xd3\xdd\xd7\ +\xd1\xda\xd2\xcd\xd6\xca\xc5\xcf\xc0\xb8\xc4\xb1\xa8\xb4\xa3\x97\ +\xa5\x9d\x91\x9f\xa4\x97\xa6\xaf\xa6\xb3\xbc\xb3\xc0\xc7\xc1\xcc\ +\xd0\xca\xd5\xd4\xce\xd9\xd7\xd3\xdc\xd7\xd2\xdb\xd3\xcd\xd8\xcf\ +\xca\xd4\xcb\xc5\xcf\xc6\xc0\xc9\xc1\xb9\xc3\xbc\xb4\xbe\xb6\xae\ +\xb7\xb1\xa8\xb3\xb0\xa6\xb2\xaf\xa5\xb1\xae\xa4\xb0\xae\xa4\xb0\ +\xae\xa4\xb0\xac\xa4\xb0\xac\xa3\xb0\xac\xa2\xb0\xaa\xa2\xaf\xa9\ +\xa0\xad\xa5\x9f\xad\xa0\x9b\xab\x98\x96\xa7\x91\x90\xa4\x89\x8b\ +\x9f\x80\x83\x9b\x78\x7d\x97\x6e\x76\x93\x68\x70\x8e\x61\x6b\x8b\ +\x59\x65\x86\x57\x63\x83\x59\x64\x84\x5e\x68\x87\x66\x6e\x8b\x71\ +\x78\x93\x7e\x81\x9a\x89\x8b\xa1\x91\x92\xa6\x97\x96\xaa\x9c\x9b\ +\xac\x9e\x9d\xae\xa2\x9f\xaf\xa2\x9f\xaf\xa3\xa0\xb0\xa5\xa1\xb0\ +\xa5\xa0\xb1\xa6\xa1\xb1\xa6\xa1\xb0\xa7\xa2\xb1\xa5\xa1\xb0\xa0\ +\x9a\xab\x9f\x99\xaa\xb4\xb0\xbf\xd5\xd1\xda\xde\xd7\xde\xe0\xda\ +\xe0\xc8\xbf\xc8\xaa\xa0\xad\xa5\x9c\xaa\xa4\x9a\xaa\xa7\x9e\xab\ +\xab\xa2\xaf\xaa\xa1\xae\xaa\xa1\xae\xa9\xa1\xad\xaa\xa1\xae\xaa\ +\xa1\xae\xa6\x9d\xaa\x9e\x96\xa5\x9c\x94\xa5\xa1\x99\xa9\x00\x00\ +\x00\xd0\xcd\xd3\xd4\xd0\xd6\xd7\xd3\xd9\xdc\xd8\xdd\xe0\xdb\xe1\ +\xe4\xde\xe3\xe5\xe0\xe5\xe8\xe2\xe7\xe8\xe2\xe7\xe6\xe0\xe5\xe2\ +\xdb\xe1\xdc\xd5\xdc\xd7\xd0\xd8\xd5\xce\xd7\xd4\xcd\xd6\xd3\xcd\ +\xd6\xd3\xcd\xd5\xd4\xcd\xd6\xd5\xcd\xd6\xd5\xcd\xd4\xd7\xcf\xd4\ +\xd7\xce\xd3\xd9\xce\xd2\xdb\xce\xd1\xdc\xcf\xd1\xdd\xd0\xd1\xe0\ +\xd2\xd3\xe2\xd4\xd5\xe3\xd6\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe8\xdb\ +\xdd\xea\xdd\xdf\xea\xdd\xdf\xeb\xde\xe0\xeb\xde\xe0\xea\xdf\xdf\ +\xeb\xde\xdf\xec\xdf\xdf\xeb\xdf\xe0\xed\xe0\xe1\xed\xe0\xe2\xec\ +\xdf\xe1\xeb\xde\xe0\xea\xdd\xdf\xe9\xdc\xde\xe8\xdc\xdd\xe9\xdd\ +\xdd\xe8\xdb\xdc\xe7\xda\xdc\xe5\xd8\xda\xe2\xd7\xda\xe1\xd6\xd9\ +\xde\xd4\xda\xdc\xd3\xd9\xdb\xd3\xda\xdb\xd4\xdb\xdd\xd6\xdd\xdd\ +\xd6\xdd\xdf\xd7\xde\xe0\xd8\xdf\xe1\xda\xdf\xe1\xda\xe0\xe1\xda\ +\xe1\xe2\xd9\xe0\xe2\xda\xe1\xe1\xd9\xe0\xe2\xda\xe1\xe2\xda\xe2\ +\xe3\xdb\xe1\xe3\xdb\xe2\xe3\xdb\xe2\xe3\xdb\xe1\xe1\xd9\xe0\xdf\ +\xd7\xde\xdd\xd6\xdd\xdc\xd5\xdb\xd9\xd2\xdb\xd6\xce\xd8\xd1\xc9\ +\xd3\xc9\xc2\xcd\xc0\xb9\xc4\xb2\xa9\xb5\xa1\x97\xa6\x93\x8a\x9b\ +\x96\x8c\x9d\xa4\x9a\xab\xb1\xaa\xb9\xbd\xb8\xc5\xc9\xc5\xd0\xd3\ +\xcf\xd9\xda\xd6\xdf\xdb\xd6\xdf\xd8\xd3\xdc\xd6\xd1\xda\xd3\xce\ +\xd7\xcf\xca\xd3\xca\xc4\xcd\xc7\xbf\xc8\xc2\xbb\xc3\xbd\xb5\xbe\ +\xb9\xb0\xba\xb5\xac\xb6\xb2\xa8\xb4\xb0\xa6\xb2\xaf\xa5\xb1\xad\ +\xa4\xb0\xad\xa3\xb0\xab\xa2\xaf\xa9\xa1\xae\xa6\x9f\xac\xa2\x9c\ +\xab\x9c\x98\xa8\x96\x95\xa6\x90\x90\xa2\x8a\x8a\x9f\x83\x85\x9c\ +\x7e\x81\x99\x79\x7c\x97\x74\x77\x94\x6e\x73\x91\x69\x6f\x8d\x64\ +\x6c\x8a\x64\x6d\x8b\x69\x70\x8d\x71\x76\x93\x7c\x80\x99\x87\x88\ +\xa0\x91\x91\xa6\x98\x96\xa9\x9b\x99\xac\x9e\x9c\xae\xa1\x9e\xae\ +\xa2\x9f\xaf\xa3\xa0\xb0\xa4\xa1\xb0\xa6\xa1\xb0\xa7\xa2\xb1\xa6\ +\xa2\xb1\xa7\xa2\xb1\xa6\xa1\xb0\xa6\xa1\xb0\xa4\x9f\xae\x9f\x99\ +\xaa\x9f\x9a\xab\xbb\xb7\xc6\xdc\xd6\xde\xe2\xda\xe1\xd4\xcb\xd3\ +\xac\xa1\xae\xa7\x9e\xac\xa6\x9d\xab\xa7\x9d\xab\xa9\xa0\xad\xa9\ +\xa0\xad\xa9\xa0\xad\xa9\xa0\xad\xa9\xa0\xad\xaa\xa2\xae\xa8\x9f\ +\xac\xa1\x9a\xa8\x9c\x94\xa5\x9f\x97\xa8\x00\x00\x00\xcb\xc6\xce\ +\xce\xca\xd0\xd2\xcf\xd4\xd7\xd3\xd9\xdc\xd7\xdd\xe0\xda\xdf\xe3\ +\xdc\xe2\xe5\xdf\xe4\xe6\xe0\xe5\xe4\xde\xe4\xe0\xd9\xe0\xdc\xd4\ +\xdb\xd7\xd0\xd7\xd5\xce\xd5\xd5\xce\xd4\xd4\xce\xd4\xd4\xcc\xd4\ +\xd4\xcd\xd4\xd4\xce\xd4\xd5\xcd\xd3\xd6\xcd\xd3\xd7\xcd\xd0\xd8\ +\xcc\xcf\xd9\xcb\xcd\xd9\xcb\xcd\xdb\xcd\xce\xdb\xcd\xce\xdd\xcf\ +\xd0\xe0\xd2\xd3\xe2\xd5\xd6\xe4\xd7\xd9\xe6\xd9\xdb\xe9\xdc\xde\ +\xe9\xdc\xde\xe9\xdc\xde\xea\xdd\xdd\xeb\xdd\xde\xeb\xde\xdf\xeb\ +\xdf\xe0\xec\xdf\xe0\xed\xe0\xe1\xed\xe1\xe1\xec\xe0\xe1\xec\xdf\ +\xe0\xea\xde\xde\xe9\xdd\xdd\xe9\xdd\xdd\xe8\xdb\xdc\xe7\xda\xdc\ +\xe6\xd9\xdb\xe4\xd8\xda\xe2\xd7\xd9\xe0\xd5\xd8\xdd\xd3\xd9\xdc\ +\xd3\xd9\xdb\xd3\xda\xdc\xd4\xdb\xdd\xd6\xdd\xdd\xd5\xdc\xdf\xd7\ +\xde\xdf\xd8\xde\xe0\xd9\xde\xe1\xda\xdf\xe2\xda\xe0\xe2\xd9\xe1\ +\xe2\xda\xe1\xe1\xd9\xe0\xe2\xda\xe1\xe2\xda\xe1\xe3\xdb\xe2\xe4\ +\xdc\xe2\xe4\xdd\xe2\xe3\xdc\xe1\xe2\xdb\xe0\xe1\xd9\xdf\xde\xd6\ +\xdd\xdc\xd4\xdb\xd7\xd0\xd8\xd2\xca\xd4\xcc\xc4\xce\xc7\xbf\xca\ +\xc0\xb9\xc4\xb2\xaa\xb7\xa3\x9b\xaa\x94\x8e\x9f\x90\x89\x9c\x99\ +\x93\xa6\xa9\xa2\xb3\xb6\xb1\xbf\xc3\xbf\xcb\xcf\xcb\xd6\xd7\xd3\ +\xdd\xdb\xd8\xe1\xdd\xd8\xe1\xdc\xd6\xdf\xd9\xd4\xdd\xd6\xd1\xda\ +\xd1\xcc\xd5\xce\xc7\xd1\xcb\xc4\xcd\xc8\xc0\xc7\xc4\xbc\xc4\xc1\ +\xb7\xc2\xbd\xb3\xbe\xb9\xb0\xba\xb5\xac\xb6\xb3\xa9\xb4\xae\xa5\ +\xb2\xac\xa3\xb0\xa8\xa1\xae\xa5\x9e\xac\xa1\x9a\xaa\x9b\x97\xa8\ +\x97\x95\xa5\x92\x90\xa3\x8d\x8d\xa0\x88\x89\x9d\x84\x86\x9c\x81\ +\x83\x9b\x80\x81\x9a\x7c\x7d\x97\x76\x79\x94\x71\x75\x91\x71\x76\ +\x92\x73\x78\x94\x79\x7e\x97\x83\x87\x9e\x8e\x8e\xa3\x96\x95\xa8\ +\x9a\x98\xab\x9d\x9a\xad\x9f\x9c\xae\xa2\x9f\xaf\xa3\xa0\xb0\xa3\ +\xa0\xb0\xa4\xa1\xb1\xa6\xa1\xb0\xa8\xa3\xb1\xa8\xa2\xb1\xa7\xa3\ +\xb2\xa5\xa1\xb0\xa3\x9e\xad\xa8\xa3\xb1\xa4\x9f\xae\xa0\x9a\xab\ +\xa0\x9a\xac\xba\xb7\xc6\xe1\xdb\xe1\xde\xd7\xdc\xb0\xa6\xb3\xa8\ +\x9f\xac\xa8\x9f\xac\xa8\x9e\xab\xa6\x9d\xab\xa7\x9e\xab\xa8\x9f\ +\xac\xa9\xa0\xad\xa9\xa0\xae\xa9\xa0\xad\xa9\xa0\xad\xa6\x9d\xaa\ +\x9c\x94\xa5\x9c\x94\xa5\x00\x00\x00\xc5\xc1\xc9\xc9\xc4\xcb\xcf\ +\xc8\xcf\xd3\xcc\xd3\xd5\xd1\xd7\xda\xd4\xdb\xdf\xd8\xdf\xe2\xdb\ +\xe2\xe3\xdc\xe3\xe2\xdc\xe1\xdf\xd8\xde\xdc\xd4\xd9\xd9\xd1\xd7\ +\xd7\xce\xd3\xd7\xcd\xd2\xd6\xcd\xd2\xd6\xcd\xd2\xd6\xcd\xd1\xd6\ +\xcc\xd1\xd5\xcb\xd1\xd6\xcb\xd1\xd6\xca\xce\xd6\xc9\xcd\xd6\xc8\ +\xca\xd7\xc9\xca\xd7\xc9\xca\xda\xca\xcb\xda\xcc\xcd\xdc\xce\xd0\ +\xe0\xd2\xd3\xe2\xd5\xd7\xe4\xd7\xd9\xe6\xd9\xdb\xe7\xda\xdc\xe8\ +\xda\xdc\xe9\xdc\xdc\xe9\xdb\xdc\xeb\xdd\xde\xeb\xde\xde\xec\xde\ +\xdf\xed\xdf\xe0\xed\xdf\xe1\xec\xdf\xe0\xea\xde\xde\xe9\xdd\xdd\ +\xe9\xdd\xdd\xe8\xda\xdb\xe7\xdb\xdc\xe7\xda\xdb\xe6\xd9\xdb\xe3\ +\xd7\xd9\xe1\xd6\xd8\xe0\xd5\xd8\xdd\xd3\xda\xdc\xd4\xda\xdb\xd3\ +\xda\xdc\xd5\xdc\xdd\xd5\xdc\xde\xd5\xdc\xde\xd6\xdd\xdf\xd8\xdd\ +\xe0\xd9\xde\xe1\xda\xdf\xe2\xdb\xe0\xe2\xda\xdf\xe2\xda\xe0\xe2\ +\xda\xe1\xe2\xdb\xe2\xe3\xda\xe1\xe3\xdb\xe2\xe4\xdd\xe1\xe4\xdc\ +\xe2\xe3\xdc\xe1\xe3\xdc\xe1\xe1\xda\xdf\xdd\xd6\xdc\xd9\xd1\xd8\ +\xd4\xcb\xd5\xcd\xc5\xcf\xc9\xc1\xcb\xc4\xbc\xc7\xbe\xb7\xc1\xb6\ +\xaf\xbb\xae\xa8\xb5\xa1\x9c\xac\x98\x93\xa6\x9a\x95\xa8\xa5\x9f\ +\xb2\xb1\xac\xbb\xbc\xb8\xc6\xc8\xc4\xd0\xd2\xce\xd9\xd9\xd5\xe0\ +\xdd\xda\xe3\xdd\xda\xe3\xdb\xd8\xe1\xda\xd6\xdf\xd8\xd3\xdc\xd4\ +\xcf\xd8\xd1\xca\xd4\xcf\xc7\xd0\xcc\xc5\xcb\xc9\xc1\xc8\xc6\xbd\ +\xc5\xc1\xb8\xc0\xbb\xb2\xbc\xb5\xac\xb6\xb1\xa7\xb3\xad\xa4\xb0\ +\xa8\xa1\xae\xa5\x9e\xad\xa1\x9c\xab\x9d\x98\xa9\x98\x96\xa6\x95\ +\x92\xa5\x91\x8f\xa3\x8e\x8d\xa1\x8d\x8d\xa1\x8d\x8c\xa0\x8c\x8a\ +\x9f\x88\x87\x9d\x82\x82\x9b\x7c\x7f\x97\x7b\x7f\x98\x7d\x81\x99\ +\x81\x85\x9c\x8a\x8c\xa1\x93\x92\xa6\x98\x97\xab\x9b\x99\xac\x9e\ +\x9b\xae\xa0\x9d\xae\xa1\x9e\xaf\xa3\xa0\xb0\xa4\xa1\xb1\xa3\xa0\ +\xb0\xa7\xa3\xb1\xa7\xa2\xb1\xa7\xa3\xb1\xa4\xa0\xaf\xa5\xa2\xb1\ +\xab\xa7\xb4\xab\xa7\xb3\xac\xa8\xb3\xa6\xa1\xaf\xa3\x9e\xad\xa0\ +\x9b\xab\xbc\xb8\xc5\xde\xd8\xde\xbb\xb1\xbb\xa6\x9d\xac\xa9\xa0\ +\xae\xa9\xa0\xad\xa8\x9f\xac\xa8\x9f\xac\xa6\x9d\xaa\xa8\x9f\xac\ +\xa8\xa0\xad\xa9\xa0\xad\xaa\xa1\xae\xa7\x9e\xab\x9f\x98\xa7\x9b\ +\x94\xa4\x00\x00\x00\xc1\xbc\xc5\xc3\xbd\xc5\xc7\xc3\xca\xcd\xc6\ +\xce\xd0\xcc\xd3\xd4\xd0\xd6\xda\xd4\xdb\xdf\xd8\xdf\xe0\xd9\xe0\ +\xdf\xd9\xde\xdd\xd5\xda\xdd\xd4\xd9\xdc\xd2\xd6\xdb\xd0\xd4\xd8\ +\xce\xd1\xd7\xcc\xd0\xd7\xcc\xd0\xd7\xcd\xd0\xd6\xcc\xd0\xd5\xcb\ +\xcf\xd6\xca\xce\xd5\xc9\xcc\xd5\xc7\xc9\xd4\xc6\xc8\xd5\xc5\xc8\ +\xd6\xc6\xc8\xd8\xc7\xca\xd7\xc9\xcb\xda\xcc\xcd\xdd\xcf\xd1\xdf\ +\xd2\xd4\xe1\xd4\xd6\xe3\xd6\xd8\xe5\xd8\xda\xe6\xda\xdb\xe8\xda\ +\xdb\xe9\xdb\xdc\xe9\xdc\xdc\xeb\xdd\xdc\xeb\xdd\xdd\xec\xde\xde\ +\xec\xde\xdf\xeb\xdd\xde\xea\xdc\xdd\xea\xdd\xdd\xe9\xdc\xdc\xe7\ +\xdc\xdc\xe7\xdb\xdc\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd7\xd9\xe1\xd6\ +\xd9\xe0\xd6\xd9\xde\xd4\xd9\xdc\xd5\xda\xdd\xd5\xdb\xdc\xd5\xdc\ +\xde\xd6\xdd\xde\xd6\xdd\xdf\xd7\xdd\xe0\xd9\xde\xe1\xda\xdf\xe1\ +\xda\xdf\xe2\xdb\xe0\xe2\xdb\xe0\xe3\xdb\xe1\xe2\xdb\xe2\xe2\xdb\ +\xe2\xe3\xdc\xe3\xe4\xdc\xe3\xe3\xdc\xe2\xe3\xdc\xe1\xe4\xdd\xe2\ +\xe3\xdc\xe1\xe2\xdb\xe0\xdf\xd8\xdd\xda\xd2\xd9\xd4\xcc\xd4\xce\ +\xc6\xd0\xca\xc1\xcb\xc4\xbc\xc7\xc2\xba\xc4\xbf\xb8\xc3\xb9\xb4\ +\xc1\xb0\xac\xbb\xa4\xa0\xb2\x9e\x9a\xae\xa3\x9f\xb1\xad\xa7\xb8\ +\xb3\xaf\xbe\xbe\xba\xc8\xca\xc7\xd2\xd5\xd1\xdc\xdc\xd8\xe2\xde\ +\xdb\xe4\xde\xdb\xe4\xdc\xd9\xe2\xdc\xd8\xe1\xd9\xd4\xdd\xd7\xd2\ +\xdb\xd5\xd0\xd8\xd3\xcc\xd3\xcf\xc8\xcf\xcb\xc3\xca\xc5\xbc\xc4\ +\xbe\xb6\xbf\xb8\xaf\xb9\xb2\xa9\xb4\xad\xa4\xb1\xa9\xa1\xaf\xa6\ +\x9f\xad\xa3\x9d\xac\x9f\x9a\xaa\x9c\x98\xa8\x98\x96\xa7\x98\x94\ +\xa7\x98\x95\xa6\x99\x95\xa7\x9a\x96\xa8\x98\x94\xa6\x94\x91\xa4\ +\x8e\x8d\xa1\x89\x89\x9f\x85\x87\x9d\x86\x89\x9e\x89\x8b\xa0\x90\ +\x90\xa4\x96\x96\xa9\x9a\x98\xab\x9c\x9a\xac\x9f\x9c\xae\xa1\x9e\ +\xaf\xa2\x9f\xaf\xa4\xa1\xb1\xa4\xa0\xb0\xa5\xa1\xb1\xa7\xa1\xb0\ +\xa7\xa2\xb1\xa5\xa1\xb0\x9f\x9d\xac\x99\x98\xa8\xa1\x9e\xae\xa7\ +\xa2\xb1\xa6\xa1\xb0\xa4\x9f\xae\xa2\x9d\xad\xa3\x9e\xae\xa3\x9e\ +\xae\xba\xb6\xc2\xbf\xb9\xc3\xa6\x9d\xad\xa9\xa0\xae\xa9\xa0\xad\ +\xa8\x9f\xac\xa8\x9e\xac\xa6\x9d\xaa\xa5\x9c\xac\xa8\xa0\xae\xa9\ +\xa0\xae\xaa\xa1\xae\xa9\xa0\xad\xa3\x9a\xa9\x9c\x94\xa5\x00\x00\ +\x00\xbe\xb7\xc1\xc0\xb8\xc1\xc2\xbb\xc4\xc7\xbf\xc9\xcc\xc6\xcf\ +\xd0\xcb\xd3\xd5\xd0\xd7\xd9\xd2\xda\xdc\xd5\xdb\xdc\xd4\xda\xdd\ +\xd4\xd9\xde\xd5\xd8\xdf\xd4\xd7\xde\xd2\xd4\xdb\xce\xd1\xd9\xcc\ +\xce\xd9\xcc\xcf\xd8\xcc\xce\xd8\xca\xcd\xd6\xca\xcd\xd5\xc9\xcc\ +\xd4\xc7\xca\xd3\xc5\xc7\xd3\xc3\xc6\xd3\xc2\xc5\xd4\xc4\xc6\xd6\ +\xc5\xc8\xd7\xc8\xca\xd9\xca\xcc\xda\xcc\xce\xdd\xcf\xd1\xe0\xd2\ +\xd3\xe1\xd4\xd6\xe3\xd5\xd7\xe5\xd8\xd9\xe6\xd9\xd9\xe8\xda\xdb\ +\xe8\xdb\xda\xeb\xdc\xda\xec\xdd\xdb\xea\xde\xdc\xeb\xdd\xde\xea\ +\xdc\xdd\xea\xdc\xdc\xe9\xdd\xdd\xe9\xdc\xdc\xe8\xdc\xdc\xe8\xdb\ +\xdc\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd8\xda\xe3\xd8\xdb\xe0\xd6\xd9\ +\xdf\xd5\xdb\xdd\xd6\xdb\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdd\xde\ +\xd6\xdd\xdf\xd8\xde\xe0\xd9\xde\xe1\xda\xdf\xe0\xd9\xde\xe1\xda\ +\xdf\xe2\xdb\xe0\xe3\xdb\xe2\xe2\xdb\xe2\xe3\xdb\xe2\xe3\xdb\xe2\ +\xe4\xdb\xe2\xe3\xdb\xe2\xe2\xdb\xe0\xe3\xdc\xe1\xe3\xdc\xe1\xe2\ +\xdb\xe0\xdf\xd8\xdd\xda\xd2\xd9\xd6\xce\xd5\xd1\xc8\xd2\xcf\xc6\ +\xd0\xcb\xc3\xcd\xc8\xc1\xcc\xc6\xc0\xca\xc0\xbc\xc8\xba\xb6\xc3\ +\xb0\xad\xbd\xa8\xa3\xb5\xa5\xa1\xb3\xaa\xa6\xb6\xad\xa8\xb8\xb4\ +\xb0\xc0\xc1\xbf\xcc\xd0\xcc\xd7\xd8\xd4\xdf\xdc\xd9\xe2\xdc\xd9\ +\xe2\xde\xdb\xe4\xde\xdb\xe4\xde\xda\xe3\xde\xd9\xe1\xdc\xd7\xdf\ +\xd8\xd3\xda\xd5\xcd\xd5\xcd\xc6\xcd\xc8\xc0\xc9\xc1\xb8\xc2\xba\ +\xb1\xbb\xb3\xab\xb6\xae\xa5\xb2\xaa\xa2\xaf\xa7\xa0\xad\xa5\x9f\ +\xad\xa2\x9d\xac\xa0\x9b\xab\x9f\x9a\xaa\xa0\x9b\xab\x9f\x9a\xab\ +\xa1\x9c\xab\xa1\x9c\xac\xa0\x9b\xab\x9b\x97\xa8\x96\x93\xa6\x93\ +\x91\xa5\x90\x90\xa3\x90\x8f\xa3\x90\x91\xa4\x95\x94\xa7\x99\x98\ +\xab\x9c\x9a\xad\x9f\x9c\xac\xa0\x9d\xae\xa1\x9e\xae\xa2\x9f\xaf\ +\xa4\xa1\xb1\xa4\xa1\xb0\xa5\xa1\xb0\xa6\xa2\xb1\xa5\xa1\xb0\x9f\ +\x9d\xad\x97\x96\xa6\x8c\x8c\x9e\x81\x85\x98\x91\x91\xa3\xa9\xa2\ +\xb1\xa5\x9e\xad\x9f\x99\xaa\xa0\x9a\xab\xa0\x9b\xab\xa1\x9c\xac\ +\xa7\xa1\xaf\xa5\x9d\xac\xa7\x9f\xac\xa8\xa0\xad\xa7\x9e\xac\xa5\ +\x9d\xab\xa5\x9d\xab\xa3\x9c\xab\xa5\x9e\xac\xaa\xa1\xae\xa9\xa1\ +\xae\xaa\xa1\xae\xa6\x9e\xac\x9d\x96\xa6\x00\x00\x00\xbd\xb5\xbf\ +\xbe\xb6\xc0\xc0\xb8\xc2\xc3\xbc\xc4\xc7\xc0\xc9\xcc\xc5\xcf\xcf\ +\xc9\xd1\xd4\xcd\xd4\xd7\xd0\xd6\xda\xd1\xd7\xdd\xd3\xd6\xdf\xd4\ +\xd7\xe0\xd5\xd7\xe0\xd3\xd5\xdf\xd1\xd2\xdb\xce\xcf\xdb\xcd\xce\ +\xd9\xcb\xcc\xd7\xc9\xcb\xd7\xca\xcc\xd4\xc7\xca\xd4\xc6\xc8\xd2\ +\xc4\xc6\xd1\xc1\xc3\xd1\xc1\xc3\xd3\xc2\xc5\xd5\xc4\xc6\xd6\xc7\ +\xc9\xd7\xc9\xcb\xd9\xca\xcc\xdb\xcd\xcf\xdc\xce\xd0\xdf\xd1\xd2\ +\xe2\xd4\xd5\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd8\xd8\xe9\xd8\xd9\xe9\ +\xda\xd9\xe9\xdb\xd9\xea\xdb\xda\xe9\xdb\xdc\xea\xdb\xdc\xe8\xdb\ +\xdc\xe8\xdc\xdd\xe9\xdd\xdd\xe8\xdc\xdc\xe7\xda\xdc\xe6\xdb\xdc\ +\xe5\xda\xdc\xe4\xd9\xdc\xe3\xd8\xdc\xe1\xd8\xdb\xe0\xd7\xdc\xde\ +\xd8\xdd\xdf\xd8\xdd\xde\xd7\xdc\xe0\xd9\xde\xdf\xd8\xdf\xe0\xd8\ +\xe0\xe1\xda\xde\xe1\xda\xdf\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xe0\ +\xe3\xdb\xe2\xe2\xdb\xe1\xe2\xda\xe1\xe2\xda\xe1\xe3\xda\xe2\xe1\ +\xda\xe0\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xe0\xe1\xda\xdf\xdf\xd7\ +\xdd\xdc\xd5\xdb\xd9\xd1\xd8\xd6\xce\xd5\xd3\xcb\xd5\xcf\xc7\xd1\ +\xcc\xc4\xcf\xca\xc3\xce\xc9\xc3\xcf\xc4\xc0\xcb\xbe\xb9\xc7\xb6\ +\xb3\xc2\xad\xaa\xba\xa8\xa4\xb5\xa7\xa2\xb3\xab\xa7\xb7\xb8\xb6\ +\xc4\xc7\xc5\xd1\xd3\xcf\xda\xd8\xd5\xdf\xdc\xd9\xe2\xde\xdb\xe4\ +\xdf\xdc\xe5\xe0\xdc\xe5\xe1\xdc\xe5\xdf\xda\xe1\xdb\xd7\xdd\xd5\ +\xcf\xd6\xcf\xc9\xd0\xc9\xc1\xca\xc0\xb8\xc2\xb9\xb1\xbc\xb2\xaa\ +\xb5\xad\xa4\xb1\xac\xa3\xb0\xa8\xa0\xad\xa7\xa0\xae\xa7\xa0\xae\ +\xa5\x9e\xae\xa4\x9e\xad\xa5\x9f\xad\xa7\xa0\xae\xa5\x9e\xae\xa6\ +\x9f\xae\xa5\x9f\xae\xa1\x9c\xab\x9d\x99\xa9\x9a\x97\xa9\x98\x95\ +\xa7\x96\x95\xa7\x96\x96\xa8\x99\x98\xab\x9c\x9a\xac\x9e\x9c\xac\ +\xa0\x9d\xad\xa2\x9f\xaf\xa2\x9f\xaf\xa3\xa0\xb0\xa3\xa0\xb0\xa4\ +\xa1\xb1\xa5\xa2\xb1\xa4\xa1\xb0\xa1\x9e\xae\x98\x97\xa7\x8d\x8e\ +\x9e\x7e\x82\x94\x6f\x77\x8b\x69\x73\x87\x84\x86\x9b\xa4\x9e\xae\ +\xa0\x98\xa9\xa0\x99\xaa\x9f\x9a\xab\xa0\x9a\xaa\x9e\x98\xa7\xa2\ +\x9c\xab\xa4\x9d\xac\xa4\x9d\xad\xa6\x9f\xac\xa5\x9e\xab\xa4\x9d\ +\xac\xa3\x9b\xaa\xa5\x9b\xab\xa8\xa0\xae\xa8\xa0\xad\xa8\xa0\xad\ +\xa8\xa0\xad\xa1\x9a\xa8\x00\x00\x00\xbd\xb5\xbf\xbe\xb6\xbf\xbf\ +\xb7\xc1\xc2\xba\xc1\xc4\xbd\xc4\xc7\xc0\xc8\xcc\xc5\xcc\xd1\xc9\ +\xd0\xd6\xce\xd2\xda\xd0\xd3\xde\xd3\xd4\xe1\xd4\xd6\xe2\xd5\xd6\ +\xe2\xd4\xd5\xe1\xd2\xd3\xde\xd0\xd1\xdc\xcd\xce\xda\xcb\xcc\xd7\ +\xc9\xca\xd6\xc7\xc9\xd4\xc7\xc9\xd2\xc4\xc6\xd1\xc2\xc4\xd1\xc0\ +\xc3\xd0\xc0\xc2\xd2\xc2\xc4\xd3\xc4\xc6\xd4\xc6\xc8\xd7\xc7\xca\ +\xd9\xc9\xca\xda\xca\xcb\xdb\xcb\xcc\xdd\xce\xcf\xdf\xd1\xd2\xe1\ +\xd3\xd4\xe3\xd5\xd6\xe4\xd6\xd7\xe7\xd7\xd8\xe7\xd8\xd9\xe7\xd9\ +\xd8\xe7\xda\xda\xe8\xda\xdb\xe8\xdb\xdb\xe8\xdc\xdb\xe8\xdc\xdc\ +\xe8\xdc\xdc\xe7\xda\xdc\xe6\xda\xdc\xe5\xda\xdc\xe5\xda\xdc\xe3\ +\xd9\xdc\xe2\xd8\xdb\xe1\xd9\xdc\xdf\xd8\xdc\xe0\xd8\xde\xe0\xd9\ +\xde\xe0\xd9\xde\xe0\xda\xdf\xe0\xda\xdf\xe1\xda\xe1\xe2\xdb\xe0\ +\xe2\xdb\xe0\xe1\xda\xdf\xe1\xd9\xdf\xe2\xd9\xe1\xe1\xda\xe1\xe2\ +\xda\xe1\xe2\xda\xe1\xe2\xda\xe1\xe1\xd9\xe0\xe1\xda\xdf\xe0\xd9\ +\xdf\xe1\xd9\xe0\xe0\xd9\xdf\xe0\xd8\xde\xdf\xd7\xde\xde\xd6\xdd\ +\xdb\xd3\xda\xd8\xd0\xd8\xd4\xcc\xd6\xd3\xcb\xd5\xd1\xc9\xd4\xcf\ +\xca\xd4\xd0\xca\xd5\xce\xc9\xd4\xca\xc5\xd1\xc2\xbe\xca\xb5\xb1\ +\xc1\xa8\xa4\xb7\x9f\x9b\xae\xa1\x9d\xae\xae\xab\xb9\xbf\xbd\xc8\ +\xcb\xc8\xd3\xd4\xd1\xdb\xd9\xd6\xdf\xdd\xda\xe3\xdf\xdc\xe5\xe1\ +\xdd\xe6\xe1\xdd\xe3\xde\xda\xe0\xda\xd5\xdb\xd5\xcd\xd6\xcf\xc7\ +\xd1\xc6\xbf\xc9\xbd\xb5\xc0\xb4\xad\xb8\xaf\xa5\xb3\xad\xa4\xb1\ +\xac\xa3\xb0\xaa\xa3\xb0\xa9\xa2\xaf\xa8\xa1\xaf\xa8\xa1\xaf\xa8\ +\xa1\xae\xa8\xa1\xae\xa8\xa1\xaf\xa7\xa0\xae\xa7\xa0\xae\xa6\x9f\ +\xad\xa5\x9f\xae\xa2\x9d\xac\x9e\x9b\xaa\x9e\x99\xaa\x9b\x98\xaa\ +\x9b\x98\xaa\x9b\x9a\xab\x9e\x9c\xac\xa0\x9d\xad\xa1\x9e\xae\xa2\ +\x9f\xaf\xa3\xa0\xb0\xa4\xa1\xb0\xa5\xa2\xb2\xa7\xa4\xb3\xa6\xa3\ +\xb3\xa2\xa0\xaf\x9a\x99\xa9\x8f\x8f\x9f\x80\x84\x95\x70\x77\x8a\ +\x5e\x6a\x7d\x4e\x5e\x73\x4e\x5c\x73\x80\x82\x97\xa0\x9a\xab\xa1\ +\x9b\xab\xa0\x9a\xab\xa0\x99\xab\xa0\x9b\xaa\xa0\x9a\xa9\xa1\x9c\ +\xab\xa3\x9d\xac\xa3\x9c\xac\xa4\x9d\xac\xa3\x9b\xaa\xa3\x9b\xab\ +\xa5\x9d\xac\xa6\x9e\xac\xa6\x9e\xab\xa7\x9f\xac\xa7\xa0\xad\xa5\ +\x9d\xac\x00\x00\x00\xbe\xb6\xbe\xc0\xb8\xbf\xc0\xb8\xbf\xc2\xba\ +\xc1\xc3\xbb\xc2\xc5\xbd\xc4\xc9\xc1\xc8\xd0\xc7\xcd\xd7\xcc\xcf\ +\xdb\xcf\xd2\xdf\xd2\xd3\xe2\xd4\xd6\xe4\xd6\xd6\xe3\xd5\xd6\xe3\ +\xd4\xd4\xe1\xd1\xd1\xdd\xce\xcd\xdb\xca\xcc\xd8\xc9\xca\xd6\xc8\ +\xc9\xd4\xc6\xc8\xd2\xc3\xc6\xd1\xc1\xc4\xd1\xc0\xc3\xd1\xc0\xc2\ +\xd2\xc1\xc4\xd2\xc5\xc7\xd3\xc5\xc7\xd6\xc7\xc8\xd7\xc7\xc8\xd7\ +\xc7\xc8\xd9\xc9\xca\xdc\xcc\xcd\xdd\xcf\xd0\xdf\xd1\xd2\xe1\xd3\ +\xd4\xe3\xd5\xd6\xe4\xd6\xd7\xe4\xd6\xd7\xe5\xd7\xd8\xe5\xd8\xd9\ +\xe6\xda\xda\xe7\xdb\xdb\xe8\xdb\xdc\xe7\xdb\xdc\xe6\xdb\xdd\xe6\ +\xdb\xdd\xe6\xda\xdc\xe5\xdb\xdc\xe4\xda\xdd\xe2\xd9\xdc\xe2\xd9\ +\xdc\xe1\xd9\xdc\xe0\xd9\xdd\xe0\xd9\xde\xe0\xd9\xde\xdf\xda\xde\ +\xe0\xda\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe1\xe2\xdb\xe1\xe2\ +\xdb\xe1\xe1\xd9\xe0\xe1\xda\xe1\xe2\xd9\xe0\xe1\xd9\xe0\xe1\xd9\ +\xe0\xe1\xd9\xe0\xe1\xd9\xe0\xe1\xd9\xdf\xe0\xd9\xdf\xe0\xd8\xdf\ +\xe1\xd8\xe0\xdf\xd7\xde\xdf\xd8\xdf\xde\xd7\xde\xdd\xd5\xdc\xda\ +\xd3\xdb\xd7\xcf\xd9\xd7\xd0\xda\xd6\xd1\xda\xd6\xd1\xda\xd7\xd2\ +\xdb\xd7\xd2\xdc\xd4\xce\xd9\xca\xc6\xd1\xbc\xb8\xc6\xa9\xa5\xb7\ +\x98\x94\xa7\x93\x8f\xa3\xa2\x9e\xaf\xb6\xb2\xbf\xc4\xc2\xcd\xd0\ +\xcd\xd7\xd8\xd5\xde\xdd\xda\xe4\xe1\xdd\xe6\xe3\xde\xe6\xe0\xdc\ +\xe2\xdb\xd7\xdd\xd7\xd1\xd7\xd0\xc9\xd1\xc7\xc1\xca\xbd\xb6\xc1\ +\xb4\xac\xb7\xae\xa6\xb1\xad\xa4\xb1\xac\xa3\xb0\xab\xa3\xb0\xaa\ +\xa3\xb0\xa9\xa2\xaf\xa9\xa2\xae\xa9\xa2\xae\xa8\xa1\xaf\xa8\xa1\ +\xaf\xa7\xa0\xaf\xa7\xa0\xae\xa7\xa0\xaf\xa7\xa0\xaf\xa8\xa1\xaf\ +\xa6\x9f\xae\xa4\x9e\xad\xa2\x9d\xad\xa0\x9c\xac\x9e\x9b\xab\x9e\ +\x9b\xab\x9f\x9d\xad\xa1\x9e\xae\xa3\xa0\xb0\xa4\xa1\xb1\xa4\xa1\ +\xb1\xa6\xa4\xb3\xaa\xa7\xb7\xaa\xa8\xb8\xa7\xa6\xb6\xa2\xa1\xb1\ +\x99\x98\xa8\x87\x89\x9b\x74\x79\x8d\x61\x6c\x7f\x4d\x5c\x71\x39\ +\x4d\x64\x34\x48\x61\x50\x5a\x73\x86\x85\x9a\xa1\x9c\xad\xa0\x9b\ +\xab\xa1\x9b\xab\xa0\x9b\xab\xa1\x9c\xab\xa2\x9d\xac\xa5\xa0\xaf\ +\xa9\xa3\xb0\xa6\x9f\xad\xa2\x9b\xaa\xa1\x9a\xa9\xa4\x9d\xab\xa6\ +\x9f\xac\xa6\x9f\xac\xa6\x9f\xac\xa6\x9f\xad\xa6\x9f\xad\x00\x00\ +\x00\xbf\xb7\xbd\xbf\xb7\xbe\xc0\xb8\xbf\xc1\xb9\xc0\xc2\xba\xc1\ +\xc4\xbc\xc3\xc9\xc0\xc6\xd1\xc6\xca\xd8\xcb\xce\xdc\xcf\xd0\xdf\ +\xd2\xd3\xe2\xd3\xd5\xe4\xd6\xd7\xe4\xd6\xd6\xe4\xd5\xd3\xe1\xd2\ +\xd0\xdc\xcd\xcb\xd8\xc9\xc9\xd8\xc8\xc9\xd4\xc6\xc8\xd2\xc4\xc6\ +\xd1\xc3\xc5\xd1\xc2\xc4\xd1\xc2\xc3\xd1\xc1\xc2\xd1\xc1\xc3\xd2\ +\xc4\xc6\xd4\xc5\xc6\xd4\xc5\xc6\xd5\xc5\xc6\xd5\xc5\xc6\xd7\xc7\ +\xc8\xd9\xc9\xca\xdb\xcc\xcd\xdd\xd0\xd0\xdf\xd1\xd3\xe2\xd4\xd5\ +\xe3\xd5\xd7\xe3\xd6\xd7\xe4\xd6\xd7\xe5\xd8\xda\xe6\xd9\xda\xe7\ +\xda\xdc\xe7\xda\xdd\xe6\xda\xdd\xe6\xda\xdc\xe6\xda\xdd\xe4\xdb\ +\xdd\xe4\xdb\xde\xe3\xdb\xdd\xe3\xd9\xdc\xe2\xda\xdd\xe1\xd9\xde\ +\xe0\xd9\xde\xe0\xda\xdf\xe0\xdb\xdf\xe0\xd9\xdf\xe1\xda\xe1\xe2\ +\xdb\xe2\xe1\xda\xe1\xe1\xdb\xe1\xe2\xda\xe1\xe2\xdb\xe2\xe1\xda\ +\xe1\xe1\xd9\xe0\xe2\xd9\xe0\xe2\xda\xe1\xe1\xd9\xe0\xe1\xd9\xe0\ +\xe1\xd9\xe0\xe0\xd8\xdf\xdf\xd8\xde\xe0\xd8\xdf\xe0\xd8\xdf\xde\ +\xd7\xde\xdf\xd8\xdf\xdf\xd8\xdf\xde\xd8\xdf\xdd\xd5\xdf\xdb\xd4\ +\xde\xdb\xd6\xdf\xdc\xd7\xe0\xdc\xd7\xe0\xdc\xd7\xe0\xdd\xd8\xe1\ +\xda\xd4\xde\xcf\xca\xd5\xbf\xbb\xc8\xaa\xa6\xb8\x91\x8d\xa1\x83\ +\x80\x95\x92\x8f\xa1\xaa\xa7\xb6\xbd\xb9\xc5\xcc\xc9\xd2\xd7\xd4\ +\xdd\xdf\xdc\xe3\xe3\xdf\xe6\xe3\xdf\xe5\xe0\xdc\xe2\xd9\xd5\xdb\ +\xd1\xcc\xd4\xc7\xc2\xcb\xbc\xb6\xc0\xb3\xab\xb6\xad\xa5\xb1\xad\ +\xa4\xb0\xac\xa3\xb0\xab\xa3\xb0\xab\xa2\xaf\xa8\xa2\xaf\xa9\xa2\ +\xaf\xa9\xa1\xae\xa9\xa2\xaf\xa9\xa2\xb1\xa8\xa1\xb0\xa8\xa1\xaf\ +\xa8\xa1\xae\xa8\xa1\xaf\xa8\xa1\xb0\xa8\xa1\xaf\xa8\xa1\xaf\xa7\ +\xa0\xaf\xa6\xa0\xae\xa4\x9f\xae\xa2\x9e\xae\xa1\x9e\xad\xa0\x9e\ +\xae\xa1\xa1\xb1\xa5\xa2\xb1\xa6\xa4\xb4\xa8\xa5\xb5\xa9\xa8\xb8\ +\xab\xaa\xba\xae\xad\xbc\xae\xae\xbc\xa9\xaa\xb9\x9f\x9f\xaf\x88\ +\x8b\x9e\x6a\x72\x86\x54\x61\x75\x3f\x51\x66\x2f\x43\x5c\x2d\x3e\ +\x59\x3d\x48\x62\x62\x63\x7b\x91\x8e\xa1\xa4\x9f\xae\xa3\x9d\xac\ +\xa2\x9d\xac\xa2\x9d\xac\xa3\x9d\xac\xa9\xa5\xb2\xb1\xad\xb9\xae\ +\xaa\xb6\xa8\xa4\xaf\xa1\x9b\xaa\xa2\x9c\xab\xa5\x9e\xad\xa7\xa0\ +\xad\xa6\x9f\xac\xa7\xa0\xad\xa5\x9f\xad\x00\x00\x00\xbe\xb5\xbd\ +\xbf\xb7\xbe\xbf\xb8\xbf\xc1\xb9\xc0\xc2\xba\xc1\xc4\xbb\xc2\xcb\ +\xbf\xc5\xd2\xc6\xc9\xd9\xcc\xcd\xdc\xce\xcf\xde\xd0\xd1\xe0\xd2\ +\xd3\xe3\xd4\xd5\xe3\xd4\xd4\xe1\xd2\xd0\xdf\xd0\xce\xda\xca\xcb\ +\xd7\xc7\xc8\xd3\xc4\xc5\xd1\xc3\xc5\xd1\xc3\xc5\xd2\xc4\xc5\xd2\ +\xc3\xc3\xd2\xc3\xc4\xd1\xc2\xc3\xd1\xc1\xc2\xd2\xc2\xc3\xd2\xc3\ +\xc4\xd2\xc2\xc3\xd2\xc2\xc3\xd3\xc3\xc4\xd4\xc4\xc5\xd7\xc7\xc8\ +\xd8\xca\xcb\xdb\xcd\xcf\xdd\xd0\xd2\xdf\xd2\xd4\xe1\xd4\xd6\xe1\ +\xd4\xd6\xe2\xd5\xd7\xe4\xd7\xd9\xe5\xd9\xdb\xe5\xda\xdc\xe5\xda\ +\xdc\xe6\xdb\xdd\xe6\xda\xdd\xe5\xdb\xdc\xe3\xda\xdd\xe2\xd9\xdc\ +\xe2\xda\xde\xe1\xda\xdd\xe0\xda\xde\xe1\xdb\xe0\xe2\xdb\xe0\xe1\ +\xdb\xe1\xe1\xda\xe1\xe0\xdb\xe2\xe0\xdc\xe2\xe0\xdc\xe2\xe2\xdc\ +\xe2\xe2\xdc\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe0\xda\xe1\ +\xe1\xda\xe1\xe0\xd8\xdf\xe0\xd8\xdf\xdf\xd7\xde\xdf\xd7\xde\xdf\ +\xd7\xde\xdf\xd7\xde\xde\xd6\xdd\xde\xd6\xdd\xde\xd7\xde\xdf\xd7\ +\xe0\xe0\xd8\xe2\xe0\xd9\xe3\xdf\xd9\xe2\xde\xd9\xe2\xde\xd9\xe2\ +\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe0\xdb\xe4\xdb\xd7\xdf\xd3\ +\xcd\xd8\xc5\xc0\xcc\xb0\xac\xbb\x91\x8c\xa1\x73\x6f\x86\x7d\x79\ +\x8d\x9b\x98\xa8\xb6\xb2\xbd\xc7\xc3\xcd\xd3\xd0\xd9\xdc\xda\xe0\ +\xe3\xdf\xe5\xe3\xdf\xe5\xdf\xdb\xe1\xd9\xd5\xdb\xcf\xcb\xd2\xc2\ +\xbc\xc5\xb5\xad\xb9\xad\xa5\xb1\xad\xa3\xb0\xaa\xa3\xb0\xaa\xa1\ +\xae\xab\xa2\xaf\xaa\xa2\xaf\xa9\xa1\xae\xa8\xa2\xaf\xa9\xa2\xaf\ +\xa8\xa1\xae\xa8\xa1\xaf\xa9\xa2\xaf\xa8\xa1\xaf\xa9\xa2\xaf\xa9\ +\xa2\xb0\xaa\xa3\xb0\xaa\xa3\xaf\xaa\xa3\xaf\xab\xa4\xb1\xa9\xa2\ +\xb1\xa7\xa2\xb1\xa7\xa3\xb2\xa7\xa4\xb3\xa6\xa4\xb3\xa6\xa6\xb4\ +\xa6\xa7\xb5\xa9\xa9\xb8\xad\xae\xbc\xae\xae\xbc\xae\xae\xbc\xb3\ +\xb3\xc1\xb6\xb7\xc5\xb3\xb4\xc2\xa8\xa8\xb8\x8f\x92\xa5\x6b\x73\ +\x87\x4b\x5a\x6d\x38\x48\x5f\x2d\x3c\x56\x2a\x38\x52\x36\x40\x59\ +\x55\x56\x6e\x73\x71\x88\x9b\x98\xaa\xa7\xa1\xb1\xaa\xa6\xb2\xab\ +\xa5\xb2\xac\xa6\xb2\xab\xa6\xb2\xac\xa7\xb4\xab\xa6\xb4\xab\xa7\ +\xb3\xa6\xa1\xaf\xa3\x9c\xac\xa5\x9e\xad\xa6\x9f\xad\xa6\x9f\xad\ +\xa6\x9f\xac\xa5\x9e\xac\x00\x00\x00\xbe\xb6\xbe\xbf\xb6\xbe\xbf\ +\xb7\xbe\xc1\xb9\xc0\xc2\xb9\xc1\xc6\xbb\xc2\xcd\xc1\xc4\xd3\xc6\ +\xc9\xd8\xcb\xcd\xda\xcc\xcd\xdc\xce\xcf\xdf\xd0\xd1\xe1\xd2\xd2\ +\xe1\xd1\xd2\xdf\xcf\xcf\xdb\xcc\xcd\xd7\xc8\xc9\xd4\xc5\xc6\xd0\ +\xc3\xc5\xcf\xc1\xc4\xce\xc0\xc2\xcf\xc1\xc3\xd0\xc1\xc3\xd2\xc2\ +\xc3\xd1\xc0\xc1\xd0\xc0\xc1\xd0\xc0\xc1\xd1\xc0\xc1\xd0\xc0\xc1\ +\xd0\xc0\xc1\xd2\xc2\xc3\xd2\xc2\xc3\xd4\xc5\xc6\xd6\xc8\xc9\xd9\ +\xcb\xcd\xdb\xce\xd0\xdd\xd0\xd2\xdf\xd2\xd4\xe1\xd4\xd6\xe3\xd5\ +\xd7\xe3\xd7\xd9\xe4\xd9\xdb\xe4\xd9\xdb\xe5\xda\xdb\xe5\xda\xdc\ +\xe5\xdb\xdd\xe4\xdc\xde\xe3\xdb\xde\xe2\xda\xdd\xe1\xda\xdd\xe2\ +\xdb\xdf\xe1\xdb\xdf\xe2\xdc\xe1\xe2\xdc\xe1\xe2\xdc\xe2\xe1\xdc\ +\xe2\xe0\xdb\xe2\xe0\xdc\xe2\xdf\xdb\xe1\xdf\xdc\xe1\xe1\xdc\xe2\ +\xe2\xdc\xe3\xe3\xdd\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xe0\ +\xd9\xe0\xe0\xd9\xe0\xe0\xd9\xdf\xdf\xd7\xde\xdf\xd6\xdd\xde\xd6\ +\xdd\xdf\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdf\xd7\xe0\xe1\xd9\xe3\ +\xe0\xd9\xe3\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe2\xdd\xe6\xe1\ +\xdc\xe5\xe2\xde\xe6\xe0\xdb\xe4\xdc\xd7\xe0\xd5\xd0\xd9\xca\xc4\ +\xd0\xb7\xb2\xbf\x9d\x99\xab\x79\x75\x8b\x6c\x68\x7e\x88\x84\x96\ +\xa9\xa6\xb2\xc0\xbc\xc6\xcf\xcc\xd4\xd8\xd5\xdb\xdf\xdc\xe2\xe1\ +\xdd\xe3\xdf\xdb\xe1\xd8\xd4\xda\xd0\xcb\xd2\xc2\xba\xc3\xb3\xaa\ +\xb5\xac\xa4\xb0\xac\xa3\xb0\xab\xa2\xaf\xab\xa3\xb0\xab\xa3\xb0\ +\xaa\xa1\xae\xaa\xa2\xaf\xa8\xa2\xaf\xa8\xa1\xae\xa8\xa2\xaf\xa9\ +\xa1\xaf\xa9\xa1\xaf\xa9\xa1\xaf\xaa\xa2\xaf\xa9\xa2\xb1\xaa\xa2\ +\xaf\xaa\xa3\xb0\xaa\xa3\xb0\xab\xa4\xb1\xac\xa6\xb3\xad\xa9\xb6\ +\xaf\xac\xbb\xb0\xad\xbc\xae\xae\xbc\xac\xac\xba\xa7\xa8\xb6\xa9\ +\xa9\xb8\xaf\xaf\xbd\xb3\xb3\xc1\xb5\xb5\xc3\xb7\xb7\xc6\xbb\xbc\ +\xca\xbb\xbc\xc9\xb1\xb2\xc0\x99\x9b\xad\x73\x7b\x8f\x4f\x5a\x6f\ +\x39\x46\x5c\x2f\x3a\x52\x29\x32\x4c\x33\x39\x52\x4d\x4e\x67\x6b\ +\x67\x7f\x84\x80\x95\x9b\x95\xa7\xac\xa8\xb6\xae\xa9\xb5\xac\xa6\ +\xb3\xae\xaa\xb6\xae\xaa\xb6\xb0\xac\xb8\xb1\xad\xb9\xac\xa7\xb3\ +\xa4\x9f\xad\xa1\x9c\xab\xa7\xa0\xae\xa7\xa0\xad\xa4\x9d\xab\xa6\ +\x9f\xad\x00\x00\x00\xbe\xb5\xbe\xbe\xb6\xbd\xbf\xb7\xbe\xc1\xb9\ +\xc0\xc2\xb9\xc0\xc8\xbd\xc2\xcd\xc1\xc5\xd2\xc5\xc7\xd6\xc8\xca\ +\xd9\xcb\xcc\xd9\xcb\xcc\xdc\xce\xcf\xdd\xcf\xd0\xdd\xcf\xd0\xd9\ +\xcb\xcc\xd7\xc9\xca\xd4\xc6\xc8\xd1\xc3\xc6\xcf\xc1\xc4\xcc\xbf\ +\xc2\xcb\xbe\xc1\xcd\xbf\xc2\xcf\xc1\xc2\xd0\xc0\xc1\xd0\xc0\xc1\ +\xcf\xbf\xc0\xcf\xbf\xc0\xce\xbe\xbf\xcd\xbd\xbe\xce\xbd\xbe\xce\ +\xbe\xbf\xcf\xbf\xc0\xd1\xc2\xc4\xd4\xc6\xc8\xd7\xc9\xcb\xd9\xcc\ +\xce\xdc\xcf\xd1\xde\xd1\xd3\xe0\xd3\xd5\xe1\xd5\xd7\xe1\xd6\xd8\ +\xe3\xd8\xda\xe4\xd9\xdb\xe4\xd9\xdc\xe4\xda\xdd\xe4\xdb\xde\xe5\ +\xdc\xdf\xe3\xdb\xde\xe2\xdb\xde\xe2\xdb\xdf\xe2\xdc\xe1\xe3\xdd\ +\xe2\xe3\xdd\xe2\xe2\xde\xe3\xe2\xde\xe4\xe2\xde\xe4\xe1\xdd\xe3\ +\xe1\xdd\xe3\xe0\xdb\xe2\xe0\xdb\xe3\xdf\xdc\xe2\xe0\xdc\xe2\xe2\ +\xde\xe4\xe2\xde\xe3\xe1\xdb\xe2\xdd\xd6\xdd\xda\xd3\xdb\xd9\xd1\ +\xd9\xd7\xcf\xd8\xdc\xd5\xdd\xdf\xd8\xde\xdf\xd7\xde\xdf\xd7\xde\ +\xdf\xd7\xde\xde\xd7\xde\xdf\xd7\xe1\xe0\xd8\xe2\xe0\xdb\xe4\xe0\ +\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdd\ +\xe5\xe0\xdb\xe4\xdc\xd7\xe0\xd5\xd0\xd9\xce\xc8\xd2\xbf\xb8\xc5\ +\xa9\xa4\xb4\x8d\x89\x9d\x76\x72\x88\x7d\x7a\x8e\x98\x95\xa5\xb5\ +\xb2\xbe\xc7\xc4\xcd\xd2\xce\xd6\xdb\xd7\xdd\xde\xda\xe0\xde\xda\ +\xe0\xda\xd5\xdc\xd3\xcd\xd4\xc6\xbe\xc8\xb8\xb0\xba\xae\xa6\xb1\ +\xac\xa4\xaf\xac\xa3\xb0\xab\xa3\xaf\xac\xa3\xaf\xab\xa2\xaf\xaa\ +\xa1\xae\xaa\xa1\xae\xa9\xa1\xae\xaa\xa1\xae\xaa\xa1\xaf\xaa\xa2\ +\xaf\xaa\xa2\xaf\xaa\xa2\xaf\xaa\xa2\xb0\xaa\xa3\xb0\xab\xa4\xb1\ +\xac\xa4\xb1\xb0\xa9\xb6\xb4\xaf\xbc\xb4\xb0\xbd\xb5\xb3\xc2\xb8\ +\xb6\xc3\xb7\xb7\xc4\xb4\xb4\xc1\xad\xae\xbc\xab\xac\xba\xb0\xb1\ +\xbe\xb6\xb6\xc4\xba\xba\xc8\xbc\xbc\xcb\xbf\xc0\xcc\xc0\xc2\xcd\ +\xba\xbb\xc8\xa4\xa7\xb8\x85\x8a\x9d\x61\x6a\x7d\x4a\x53\x67\x3d\ +\x43\x58\x30\x35\x4e\x33\x38\x51\x4c\x4d\x66\x67\x64\x7b\x81\x7b\ +\x91\x96\x90\xa3\xa4\x9f\xaf\xac\xa6\xb4\xa4\x9d\xad\xa2\x9c\xac\ +\xa6\xa1\xb0\xab\xa7\xb5\xb4\xb1\xbc\xb3\xae\xb9\xaa\xa6\xb3\x9f\ +\x9a\xa9\xa1\x9b\xaa\xa7\xa0\xae\xa6\x9f\xac\xa4\x9e\xad\x00\x00\ +\x00\xbe\xb5\xbe\xbe\xb7\xbd\xbf\xb7\xbe\xc1\xb9\xc0\xc2\xb9\xc0\ +\xc7\xbc\xc2\xcc\xc0\xc3\xd0\xc3\xc6\xd4\xc7\xc8\xd5\xc8\xc9\xd7\ +\xc9\xca\xd8\xca\xcb\xd9\xcb\xcc\xd8\xca\xcc\xd5\xc9\xca\xd3\xc6\ +\xc9\xd1\xc4\xc7\xcd\xc3\xc6\xcb\xc0\xc3\xc9\xbe\xc2\xc9\xbd\xc0\ +\xcb\xbe\xc1\xcd\xbf\xc1\xce\xbe\xbf\xce\xbe\xbf\xcd\xbd\xbe\xcb\ +\xbb\xbc\xcb\xbb\xbc\xca\xba\xbb\xca\xba\xbc\xcb\xba\xbd\xcd\xbd\ +\xbf\xcf\xc0\xc2\xd1\xc3\xc5\xd5\xc7\xc9\xd8\xca\xcc\xda\xcd\xcf\ +\xde\xd1\xd3\xdf\xd2\xd4\xe0\xd4\xd6\xe1\xd6\xd8\xe2\xd7\xd9\xe3\ +\xd8\xdb\xe3\xd9\xdc\xe3\xda\xdd\xe4\xdb\xde\xe4\xdc\xdf\xe4\xdd\ +\xe0\xe4\xdd\xe0\xe3\xdd\xe1\xe3\xdc\xe1\xe4\xde\xe3\xe4\xe0\xe5\ +\xe4\xe0\xe6\xe4\xe0\xe6\xe3\xdf\xe5\xe3\xdf\xe5\xe1\xdd\xe3\xdf\ +\xdb\xe3\xdf\xda\xe3\xe0\xdb\xe4\xdf\xdb\xe3\xd8\xd3\xdb\xba\xb3\ +\xc1\xb5\xaf\xbd\xa9\xa2\xb4\xa8\xa0\xb2\xa6\x9e\xb0\xa5\x9e\xb1\ +\xaf\xa5\xb7\xc1\xb7\xc5\xd2\xca\xd4\xdc\xd4\xdc\xdd\xd5\xdc\xdd\ +\xd6\xdd\xdf\xd7\xe0\xe0\xda\xe3\xe1\xdc\xe5\xe1\xdc\xe5\xe2\xdd\ +\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe3\xde\xe6\xe1\xdc\xe5\ +\xde\xd9\xe2\xd8\xd3\xdc\xd1\xcb\xd5\xc7\xc1\xcc\xb7\xb1\xbf\xa2\ +\x9d\xaf\x8c\x8a\x9e\x80\x7e\x93\x8d\x8b\x9e\xa6\xa3\xb2\xbc\xb9\ +\xc4\xcb\xc8\xd1\xd6\xd2\xd9\xdb\xd7\xdd\xdc\xd7\xde\xdc\xd6\xdd\ +\xd7\xd1\xd7\xce\xc6\xce\xc0\xb9\xc2\xb5\xad\xb7\xae\xa6\xb1\xae\ +\xa6\xb1\xae\xa6\xb2\xb0\xa7\xb3\xaf\xa6\xb2\xae\xa5\xb1\xad\xa4\ +\xb0\xab\xa2\xaf\xab\xa3\xb0\xa9\xa2\xb0\xaa\xa2\xb0\xaa\xa3\xb0\ +\xa9\xa3\xb0\xaa\xa3\xb1\xac\xa5\xb2\xad\xa6\xb3\xb2\xac\xb9\xb8\ +\xb4\xc1\xbb\xb8\xc4\xbb\xb8\xc5\xbc\xba\xc6\xbc\xbc\xc8\xbf\xbf\ +\xcb\xbf\xbf\xcb\xb6\xb8\xc4\xb1\xb2\xbf\xb1\xb3\xbe\xb6\xb7\xc3\ +\xbd\xbd\xc9\xc1\xc1\xcd\xc0\xc1\xcc\xc0\xc2\xcd\xbc\xbe\xca\xb0\ +\xb3\xc0\x99\x9d\xad\x7c\x82\x95\x64\x6b\x7e\x5e\x60\x74\x48\x4a\ +\x5e\x3a\x3d\x54\x4c\x4e\x64\x66\x64\x7a\x7d\x79\x8e\x92\x8c\xa0\ +\xa0\x9b\xac\xa8\xa3\xb2\xab\xa5\xb4\xab\xa4\xb2\xa7\xa0\xb0\xa4\ +\x9f\xae\xa9\xa5\xb2\xab\xa7\xb3\xa6\xa2\xaf\x9d\x97\xa8\x9b\x96\ +\xa6\xa1\x9b\xaa\xa8\xa1\xaf\xa6\x9f\xae\x00\x00\x00\xbb\xb3\xbd\ +\xbe\xb6\xbd\xbe\xb6\xbd\xc0\xb8\xbf\xc2\xb9\xc0\xc6\xbc\xc1\xca\ +\xbf\xc3\xce\xc2\xc5\xd1\xc4\xc6\xd3\xc6\xc8\xd4\xc6\xc8\xd5\xc8\ +\xca\xd4\xc7\xca\xd2\xc6\xc9\xd1\xc5\xc8\xcd\xc3\xc8\xcc\xc2\xc6\ +\xc9\xc0\xc6\xc8\xbf\xc5\xc8\xbc\xc2\xc7\xbb\xc0\xca\xbc\xbf\xcc\ +\xbd\xbf\xcd\xbd\xbe\xcb\xbb\xbc\xc9\xb9\xbb\xc9\xb8\xba\xc8\xb7\ +\xba\xc8\xb7\xb9\xc7\xb6\xb9\xc9\xb8\xbb\xcb\xba\xbd\xcd\xbf\xc1\ +\xd0\xc1\xc3\xd3\xc5\xc7\xd6\xc9\xcb\xda\xcd\xcf\xdd\xd0\xd2\xdf\ +\xd2\xd4\xdf\xd4\xd6\xe1\xd6\xd8\xe2\xd7\xd9\xe3\xd8\xdb\xe2\xda\ +\xdc\xe4\xdb\xde\xe4\xdc\xdf\xe4\xdd\xe0\xe4\xdd\xe1\xe3\xdd\xe2\ +\xe3\xdd\xe2\xe4\xde\xe3\xe4\xe0\xe5\xe5\xe1\xe7\xe5\xe1\xe7\xe5\ +\xe1\xe7\xe4\xe0\xe6\xe3\xdf\xe5\xe1\xdd\xe3\xe0\xdc\xe3\xdd\xdb\ +\xe4\xdd\xd9\xe2\xca\xc6\xd2\xa9\xa4\xb6\x9a\x96\xa9\x98\x93\xa9\ +\x95\x90\xa6\x93\x8e\xa5\x95\x90\xa6\x99\x96\xab\x9c\x96\xac\x9a\ +\x93\xab\xa0\x97\xaf\xbb\xb2\xc3\xd6\xcf\xd8\xdf\xd7\xde\xdf\xd8\ +\xdf\xe0\xd9\xe0\xe2\xdb\xe3\xe2\xdc\xe5\xe2\xdd\xe5\xe2\xdd\xe5\ +\xe2\xdd\xe5\xe2\xdd\xe6\xe2\xdd\xe6\xe1\xdc\xe5\xdf\xda\xe3\xdb\ +\xd6\xdf\xd6\xd2\xda\xd0\xcb\xd5\xc5\xbf\xca\xb7\xb2\xbf\xa6\xa3\ +\xb4\x93\x91\xa6\x8c\x8a\x9f\x9a\x97\xa8\xae\xaa\xb7\xc1\xbe\xc8\ +\xd0\xcc\xd3\xd9\xd4\xda\xdd\xd7\xdc\xdd\xd7\xdc\xdb\xd5\xda\xd4\ +\xcd\xd4\xcb\xc4\xcc\xc0\xb8\xc0\xb6\xae\xb8\xb7\xae\xb9\xba\xb2\ +\xbc\xbc\xb4\xbd\xbd\xb4\xbc\xbd\xb2\xbc\xb8\xaf\xb9\xb3\xab\xb6\ +\xb0\xa7\xb3\xad\xa5\xb2\xad\xa5\xb2\xae\xa5\xb2\xae\xa7\xb3\xb1\ +\xaa\xb7\xb5\xaf\xbb\xb9\xb4\xc0\xbd\xb9\xc5\xc0\xbe\xca\xc4\xc2\ +\xce\xc5\xc3\xcf\xc4\xc3\xcf\xc4\xc3\xcf\xc8\xc9\xd3\xc8\xc9\xd4\ +\xc1\xc2\xcd\xb7\xb9\xc4\xb3\xb5\xc0\xb3\xb4\xc1\xba\xbb\xc7\xc1\ +\xc1\xcd\xc0\xc1\xcd\xbd\xbf\xcb\xbb\xbc\xc9\xb6\xb8\xc5\xa9\xac\ +\xba\x91\x96\xa7\x7b\x81\x94\x76\x7c\x90\x6d\x6f\x82\x52\x54\x67\ +\x4e\x52\x66\x62\x63\x77\x79\x77\x8b\x8e\x8a\x9c\x9b\x96\xa7\xa1\ +\x9d\xad\xa4\xa1\xb0\xb3\xae\xba\xaf\xa8\xb5\xa4\x9d\xad\xa3\x9d\ +\xad\xa4\x9f\xaf\xa6\xa1\xb0\x9d\x97\xa7\x99\x93\xa4\x9a\x94\xa6\ +\xa3\x9d\xac\xa6\x9f\xae\x00\x00\x00\xbc\xb3\xbd\xbd\xb5\xbe\xbe\ +\xb6\xbe\xc0\xb8\xbf\xc1\xb9\xc0\xc5\xbb\xc1\xc8\xbd\xc3\xcb\xc0\ +\xc4\xcd\xc1\xc4\xcf\xc3\xc6\xd1\xc3\xc6\xd1\xc4\xc7\xcf\xc4\xc7\ +\xcc\xc1\xc6\xca\xc0\xc6\xc8\xbf\xc6\xc7\xbf\xc6\xc6\xbf\xc5\xc6\ +\xbd\xc3\xc7\xbc\xc2\xc7\xba\xbe\xc9\xba\xbd\xcb\xbc\xbe\xcc\xbb\ +\xbe\xca\xb9\xbb\xc8\xb7\xba\xc6\xb6\xb9\xc5\xb6\xb8\xc4\xb5\xb9\ +\xc4\xb5\xb8\xc6\xb7\xb9\xc9\xb9\xbb\xcb\xbc\xbe\xcf\xbf\xc1\xd2\ +\xc3\xc5\xd5\xc7\xc9\xd8\xca\xcc\xdb\xce\xd0\xde\xd1\xd3\xdf\xd3\ +\xd5\xe0\xd5\xd7\xe1\xd6\xd9\xe2\xd7\xda\xe3\xda\xdd\xe3\xdb\xde\ +\xe3\xdc\xdf\xe4\xdd\xe0\xe4\xde\xe2\xe3\xdd\xe2\xe4\xdd\xe2\xe4\ +\xe0\xe5\xe5\xe1\xe7\xe6\xe2\xe8\xe5\xe1\xe7\xe5\xe1\xe7\xe3\xdf\ +\xe5\xe2\xdf\xe5\xe1\xdd\xe3\xdf\xdc\xe4\xde\xdb\xe4\xd6\xd2\xdd\ +\xab\xa6\xb8\x9e\x99\xac\x9b\x97\xaa\x98\x94\xa8\x96\x91\xa6\x93\ +\x8e\xa4\x92\x8e\xa4\x94\x8f\xa4\x98\x94\xa9\x9e\x99\xae\x9d\x97\ +\xae\x98\x90\xab\xa5\x9a\xb3\xd1\xc9\xd4\xe0\xd9\xe0\xe0\xd9\xe0\ +\xe2\xdb\xe2\xe3\xdc\xe3\xe3\xdc\xe4\xe3\xdd\xe4\xe3\xde\xe4\xe2\ +\xdc\xe5\xe1\xdc\xe6\xe1\xdc\xe5\xe0\xdb\xe4\xdf\xda\xe3\xdc\xd7\ +\xe0\xd8\xd3\xdc\xd1\xcc\xd5\xc6\xc2\xcd\xba\xb7\xc5\xab\xa9\xb8\ +\x99\x97\xaa\x95\x92\xa6\xa3\xa0\xaf\xb8\xb3\xbe\xc9\xc4\xcc\xd4\ +\xcf\xd4\xdb\xd5\xda\xde\xd8\xdd\xdf\xd9\xdd\xdc\xd6\xdb\xd7\xd0\ +\xd7\xd1\xc9\xd0\xca\xc3\xca\xca\xc2\xc9\xcb\xc3\xcb\xcd\xc5\xcc\ +\xcd\xc5\xcb\xcd\xc3\xc9\xca\xc0\xc7\xc4\xbc\xc4\xc0\xb7\xc1\xbd\ +\xb5\xbf\xbb\xb3\xbf\xbb\xb4\xbf\xbd\xb7\xc2\xbe\xb9\xc5\xbf\xbb\ +\xc6\xc3\xbf\xcb\xc6\xc3\xce\xcb\xc7\xd2\xcd\xcc\xd6\xd1\xcf\xda\ +\xd0\xcf\xd9\xd0\xcf\xd9\xd0\xcf\xd9\xcc\xcd\xd7\xc8\xc8\xd4\xbf\ +\xc1\xcc\xb7\xb9\xc4\xb2\xb4\xc0\xb5\xb7\xc2\xbc\xbe\xc9\xbf\xc1\ +\xcc\xbd\xbe\xca\xb9\xbb\xc7\xb5\xb8\xc5\xaf\xb2\xc0\x9f\xa3\xb3\ +\x87\x8f\xa1\x7f\x87\x9a\x7c\x83\x96\x6b\x6f\x82\x5f\x62\x74\x61\ +\x63\x76\x76\x75\x89\x8a\x86\x99\x94\x90\xa2\x98\x95\xa6\x98\x96\ +\xa8\xa7\xa3\xb3\xaf\xa8\xb5\xa2\x9b\xab\x9d\x97\xa8\x9c\x97\xa7\ +\x9e\x99\xa9\x9c\x96\xa6\x9a\x94\xa5\x9a\x94\xa5\x9c\x96\xa7\xa6\ +\xa0\xae\x00\x00\x00\xba\xb2\xbc\xbc\xb3\xbd\xbe\xb6\xbe\xc0\xb8\ +\xbf\xc1\xb9\xc0\xc4\xba\xc0\xc5\xbb\xc1\xc8\xbd\xc3\xca\xbf\xc3\ +\xcb\xc0\xc3\xcb\xc0\xc5\xca\xbf\xc4\xc9\xbf\xc4\xc6\xbd\xc3\xc4\ +\xbc\xc3\xc5\xbd\xc4\xc3\xbb\xc2\xc5\xbd\xc3\xc5\xbc\xc2\xc6\xbc\ +\xc1\xc6\xb9\xbd\xc7\xb9\xbb\xca\xba\xbd\xca\xba\xbd\xc9\xb9\xbc\ +\xc7\xb8\xba\xc6\xb7\xba\xc4\xb5\xb8\xc3\xb4\xb8\xc3\xb4\xb9\xc4\ +\xb5\xb9\xc7\xb7\xba\xcb\xba\xbd\xce\xbd\xc0\xd0\xc0\xc3\xd2\xc5\ +\xc6\xd6\xc8\xca\xd9\xcc\xce\xdc\xcf\xd1\xdf\xd2\xd4\xe0\xd4\xd6\ +\xe2\xd7\xda\xe2\xd8\xdb\xe3\xda\xdd\xe3\xdb\xde\xe3\xdd\xdf\xe4\ +\xdd\xe2\xe3\xdd\xe3\xe4\xdd\xe2\xe2\xde\xe3\xe4\xe0\xe5\xe4\xe0\ +\xe6\xe5\xe1\xe7\xe5\xe1\xe7\xe4\xe0\xe6\xe3\xe0\xe6\xe3\xdf\xe5\ +\xdf\xdd\xe4\xdf\xdd\xe5\xde\xdb\xe4\xd3\xd0\xd9\xa8\xa2\xb4\xa1\ +\x9b\xae\x9d\x98\xab\x99\x94\xa8\x97\x91\xa6\x94\x8f\xa4\x94\x8f\ +\xa4\x92\x8d\xa3\x91\x8b\xa2\x95\x8f\xa6\x9d\x97\xad\x9f\x9a\xb0\ +\x97\x90\xaa\x9f\x95\xb0\xd2\xca\xd6\xe0\xd9\xe0\xe3\xdb\xe2\xe4\ +\xdc\xe3\xe3\xdd\xe4\xe4\xdc\xe4\xe4\xdc\xe4\xe4\xdd\xe3\xe1\xdd\ +\xe4\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xdf\xda\xe3\xde\xd9\xe2\ +\xda\xd5\xde\xd2\xce\xd8\xc7\xc4\xcf\xbc\xb9\xc7\xad\xab\xbb\x9c\ +\x9a\xae\x9c\x99\xac\xad\xa9\xb6\xbe\xb9\xc2\xcd\xc6\xcd\xd7\xd1\ +\xd7\xdd\xd7\xdc\xe1\xdb\xe0\xe3\xdd\xe2\xe2\xdb\xe0\xdf\xd8\xdc\ +\xdb\xd4\xd9\xd8\xd2\xd8\xd9\xd2\xd9\xdb\xd4\xda\xdb\xd4\xd9\xd9\ +\xd2\xd7\xd6\xce\xd5\xd2\xca\xd1\xcf\xc7\xd0\xcc\xc4\xce\xcb\xc4\ +\xce\xca\xc4\xcf\xca\xc5\xd0\xca\xc5\xd0\xcb\xc7\xd2\xcd\xc9\xd5\ +\xd1\xcd\xd8\xd4\xd0\xdb\xd9\xd5\xe0\xda\xd9\xe3\xdc\xdb\xe5\xdb\ +\xda\xe4\xd6\xd5\xdf\xd0\xd0\xdb\xcb\xcb\xd7\xc7\xc7\xd3\xbe\xc0\ +\xca\xb5\xb7\xc2\xb2\xb5\xc2\xb5\xb8\xc4\xbb\xbd\xc8\xba\xbd\xc8\ +\xb6\xb9\xc5\xb2\xb6\xc3\xae\xb2\xc0\xa0\xa6\xb5\x8b\x93\xa5\x7d\ +\x88\x9a\x7b\x86\x98\x71\x79\x8c\x65\x6c\x7f\x65\x69\x7c\x72\x73\ +\x86\x84\x81\x95\x8b\x88\x9b\x8c\x8a\x9e\x8b\x8b\x9e\x91\x90\xa2\ +\xae\xa8\xb6\xa3\x9b\xac\x9f\x99\xaa\x9d\x97\xa8\x9d\x97\xa8\x9c\ +\x96\xa7\x9b\x95\xa6\x98\x92\xa4\x99\x93\xa5\x9d\x98\xa9\x00\x00\ +\x00\xb8\xb0\xbb\xbb\xb2\xbc\xbd\xb4\xbe\xbe\xb5\xbf\xbf\xb8\xbf\ +\xc1\xb8\xc0\xc4\xba\xc1\xc5\xba\xc1\xc5\xbc\xc2\xc6\xbc\xc2\xc5\ +\xbc\xc2\xc4\xbc\xc2\xc3\xbb\xc1\xc2\xba\xc1\xc1\xb9\xc0\xc3\xbb\ +\xc2\xc3\xbb\xc2\xc5\xbb\xc2\xc6\xbb\xc1\xc6\xbb\xc1\xc6\xb9\xbd\ +\xc7\xb8\xbc\xc7\xb9\xbb\xc9\xbb\xbc\xc8\xba\xbc\xc6\xb7\xba\xc4\ +\xb5\xb9\xc3\xb4\xb9\xc1\xb4\xb8\xc2\xb3\xb8\xc4\xb5\xb9\xc6\xb8\ +\xba\xca\xb9\xbc\xcc\xbc\xbe\xcf\xbf\xc0\xd1\xc1\xc3\xd3\xc5\xc6\ +\xd8\xca\xcc\xda\xcd\xcf\xdd\xd0\xd2\xdf\xd3\xd5\xe2\xd6\xd8\xe2\ +\xd8\xdb\xe3\xda\xdd\xe3\xdc\xdf\xe4\xdd\xe2\xe3\xdd\xe3\xe4\xde\ +\xe3\xe3\xde\xe3\xe1\xdd\xe3\xe2\xde\xe4\xe3\xdf\xe5\xe4\xe0\xe6\ +\xe4\xe0\xe6\xe4\xe0\xe6\xe4\xe0\xe6\xe2\xdf\xe5\xe1\xde\xe4\xdf\ +\xdc\xe4\xdf\xdc\xe5\xd5\xd2\xdc\xac\xa6\xb7\xa0\x9a\xad\x9d\x97\ +\xaa\x9b\x94\xa8\x99\x92\xa7\x96\x91\xa6\x94\x8f\xa4\x92\x8d\xa3\ +\x8f\x8a\xa0\x8f\x89\xa0\x93\x8e\xa5\x9e\x99\xae\x9e\x9a\xaf\x95\ +\x8d\xa9\xa6\x9d\xb6\xd8\xd0\xd9\xe3\xdc\xe1\xe4\xdd\xe2\xe4\xdd\ +\xe3\xe4\xdd\xe3\xe4\xdd\xe4\xe4\xdd\xe4\xe3\xdd\xe4\xe1\xdd\xe4\ +\xe2\xdd\xe5\xe2\xdd\xe6\xe0\xdb\xe5\xe0\xdb\xe4\xdf\xda\xe2\xd9\ +\xd6\xdf\xd0\xcd\xd8\xc5\xc3\xcf\xbb\xb8\xc7\xad\xab\xbc\xa0\x9e\ +\xb1\xa4\xa0\xb1\xb4\xae\xba\xc3\xbb\xc4\xcf\xc8\xcf\xda\xd4\xd9\ +\xe1\xdb\xe0\xe6\xe0\xe5\xe8\xe2\xe7\xe6\xe0\xe5\xe5\xdf\xe4\xe4\ +\xde\xe3\xe5\xdf\xe4\xe6\xdf\xe4\xe5\xdf\xe4\xe4\xdd\xe2\xe0\xda\ +\xe0\xdd\xd6\xdd\xda\xd3\xdb\xd9\xd2\xdb\xd7\xd2\xdb\xd6\xd0\xda\ +\xd4\xd0\xda\xd4\xd0\xdb\xd6\xd2\xdd\xd8\xd4\xdf\xda\xd7\xe1\xdc\ +\xd8\xe3\xde\xda\xe5\xe0\xdd\xe7\xe0\xdf\xe9\xdf\xde\xe8\xda\xd9\ +\xe2\xd2\xd2\xdd\xcc\xcc\xd8\xca\xca\xd6\xc4\xc5\xd0\xb7\xb9\xc6\ +\xb0\xb3\xc1\xb0\xb4\xc2\xb1\xb5\xc3\xb0\xb4\xc2\xae\xb3\xc0\xaa\ +\xaf\xbd\xa4\xab\xba\x9d\xa5\xb4\x8d\x97\xa8\x7c\x89\x9b\x77\x85\ +\x98\x6f\x7b\x8e\x64\x6c\x7f\x65\x6b\x7e\x6e\x70\x83\x7b\x79\x8d\ +\x7d\x7b\x8f\x7e\x7b\x90\x7d\x7c\x92\x76\x78\x8e\x97\x93\xa6\xab\ +\xa4\xb3\xa6\x9f\xad\xa0\x9b\xab\xa0\x99\xaa\x9e\x98\xa9\x9d\x96\ +\xa7\x9b\x95\xa6\x99\x93\xa5\x98\x94\xa4\x00\x00\x00\xb4\xae\xb8\ +\xb8\xb0\xba\xba\xb2\xbc\xbd\xb4\xbe\xbf\xb6\xbf\xc0\xb7\xbf\xc0\ +\xb8\xbf\xc1\xb9\xc0\xc1\xb9\xc1\xc1\xb9\xc0\xc1\xba\xc0\xc0\xb8\ +\xbf\xc0\xb9\xc0\xc0\xb8\xbf\xc1\xb9\xc0\xc1\xb9\xc0\xc2\xba\xc1\ +\xc5\xba\xc1\xc5\xbb\xc1\xc7\xbb\xc1\xc7\xba\xbf\xc6\xb9\xbc\xc7\ +\xb9\xbc\xc8\xba\xbd\xc7\xb9\xbc\xc5\xb7\xbb\xc3\xb6\xba\xc1\xb4\ +\xb9\xc0\xb3\xb9\xc1\xb3\xb9\xc3\xb5\xba\xc6\xb8\xbb\xc9\xb9\xbc\ +\xcc\xbb\xbe\xce\xbd\xc0\xd0\xc0\xc1\xd2\xc3\xc5\xd5\xc7\xc9\xd8\ +\xcb\xcd\xdc\xcf\xd1\xde\xd2\xd4\xe0\xd5\xd8\xe1\xd8\xdb\xe3\xdb\ +\xde\xe3\xdc\xe0\xe3\xdd\xe2\xe4\xdd\xe2\xe3\xde\xe3\xe2\xde\xe3\ +\xe1\xdd\xe2\xe1\xdd\xe3\xe1\xdd\xe3\xe3\xdf\xe5\xe4\xe0\xe6\xe2\ +\xdf\xe5\xe2\xdf\xe5\xe0\xde\xe4\xdf\xdc\xe5\xdf\xdc\xe5\xdf\xdc\ +\xe4\xdb\xd8\xe1\xb4\xae\xbe\x9f\x99\xac\x9d\x97\xab\x9b\x94\xa9\ +\x99\x92\xa7\x97\x91\xa6\x96\x90\xa5\x93\x8e\xa3\x91\x8c\xa1\x8e\ +\x89\xa0\x8d\x89\xa0\x94\x8f\xa6\x9c\x98\xad\x9d\x98\xae\x95\x8d\ +\xa9\xae\xa3\xba\xdf\xd8\xde\xe4\xdd\xe2\xe5\xde\xe2\xe5\xde\xe3\ +\xe4\xdd\xe3\xe3\xdc\xe3\xe3\xdd\xe3\xe1\xdd\xe3\xe1\xdc\xe4\xe1\ +\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xe0\xdb\xe4\xde\xd9\xe3\xd8\xd4\ +\xdf\xd0\xcc\xd8\xc5\xc3\xd0\xbc\xb9\xc8\xb0\xad\xbd\xa7\xa4\xb4\ +\xad\xa7\xb6\xba\xb3\xbe\xc6\xbe\xc6\xd4\xcd\xd3\xde\xd8\xdd\xe5\ +\xdf\xe4\xe9\xe3\xe8\xeb\xe5\xea\xeb\xe5\xea\xec\xe6\xeb\xec\xe6\ +\xeb\xec\xe6\xeb\xec\xe6\xeb\xec\xe5\xeb\xe9\xe1\xe8\xe7\xdf\xe6\ +\xe5\xde\xe5\xe1\xdd\xe4\xe0\xdb\xe4\xde\xd9\xe2\xdc\xd9\xe2\xdd\ +\xda\xe3\xdf\xdb\xe5\xe0\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe8\xe4\xe0\ +\xea\xe3\xe0\xea\xe1\xe0\xe9\xe0\xdf\xe9\xdd\xdc\xe6\xd7\xd7\xe1\ +\xd0\xd0\xdb\xcd\xcd\xd8\xc8\xc9\xd4\xbe\xc0\xcc\xaf\xb3\xc1\xaa\ +\xb0\xbd\xa8\xaf\xbd\xa3\xab\xb9\xa0\xa8\xb6\x9d\xa6\xb4\x9a\xa2\ +\xb2\x96\x9f\xaf\x8d\x98\xa8\x7b\x89\x9b\x73\x82\x95\x6a\x79\x8c\ +\x5b\x68\x7b\x5d\x65\x78\x70\x72\x86\x8d\x8a\x9c\x82\x7e\x91\x6d\ +\x6a\x81\x6c\x6b\x82\x66\x69\x80\x66\x69\x82\xa0\x9c\xae\xaa\xa3\ +\xb1\xa5\x9d\xad\xa4\x9d\xad\xa1\x9a\xab\x9e\x97\xa8\x9d\x96\xa7\ +\x9c\x96\xa7\x9a\x95\xa6\x00\x00\x00\xb2\xab\xb7\xb5\xae\xba\xb9\ +\xb1\xbb\xbd\xb4\xbe\xbe\xb5\xbf\xbf\xb6\xc0\xc0\xb7\xbf\xc0\xb8\ +\xc0\xc0\xb7\xc1\xc0\xb8\xc0\xc0\xb9\xc0\xbf\xb8\xc0\xbf\xb7\xbf\ +\xc0\xb9\xc0\xc1\xb8\xbf\xc0\xb9\xbf\xc1\xb8\xc1\xc5\xbb\xc0\xc5\ +\xbb\xc1\xc6\xbb\xc1\xc6\xbb\xc0\xc6\xba\xc0\xc6\xb9\xbe\xc8\xba\ +\xbf\xc6\xb9\xbe\xc3\xb7\xbd\xc2\xb6\xbb\xc0\xb3\xbb\xbf\xb3\xb9\ +\xc0\xb3\xb9\xc3\xb5\xba\xc6\xb7\xbb\xc8\xba\xbc\xca\xbc\xbe\xcc\ +\xbe\xc0\xcf\xc0\xc3\xd1\xc2\xc5\xd2\xc4\xc6\xd6\xc8\xca\xd9\xcd\ +\xcf\xdc\xd1\xd3\xdf\xd5\xd8\xe1\xd8\xdb\xe1\xda\xdd\xe2\xdc\xe1\ +\xe3\xdc\xe1\xe3\xde\xe2\xe1\xdd\xe2\xe0\xdc\xe3\xe1\xdd\xe3\xe0\ +\xdb\xe1\xdf\xdc\xe2\xdf\xdd\xe3\xe0\xde\xe4\xe0\xde\xe4\xdf\xdc\ +\xe4\xdf\xdc\xe5\xde\xdb\xe4\xda\xd7\xe0\xc8\xc3\xd0\xb5\xaf\xbf\ +\xa4\x9d\xb0\x9b\x94\xa9\x9a\x93\xa8\x9a\x94\xa9\x9a\x94\xa9\x96\ +\x91\xa6\x95\x90\xa5\x94\x8f\xa4\x93\x8e\xa4\x8f\x8b\xa1\x8c\x89\ +\xa0\x8e\x88\xa1\x94\x8f\xa6\x9b\x97\xad\x9d\x98\xad\x92\x89\xa8\ +\xba\xae\xc2\xe1\xda\xe0\xe4\xdd\xe2\xe4\xdd\xe2\xe4\xdc\xe2\xe3\ +\xdb\xe3\xe3\xdc\xe3\xe1\xdc\xe2\xdf\xdc\xe2\xe0\xdb\xe4\xe1\xdc\ +\xe5\xe2\xdd\xe6\xe2\xdc\xe5\xde\xdb\xe4\xde\xdb\xe4\xd9\xd5\xe0\ +\xd2\xce\xd9\xca\xc6\xd2\xc0\xbc\xc9\xb4\xb0\xbf\xad\xa8\xb7\xb2\ +\xab\xb9\xbd\xb5\xbe\xca\xc2\xc9\xd7\xd0\xd6\xe1\xdb\xe0\xe7\xe1\ +\xe6\xec\xe6\xeb\xee\xea\xed\xef\xec\xee\xef\xed\xee\xef\xed\xee\ +\xef\xed\xee\xee\xeb\xee\xee\xe9\xed\xec\xe6\xec\xea\xe5\xec\xe7\ +\xe3\xe9\xe6\xe2\xea\xe5\xe0\xe9\xe1\xde\xe7\xe0\xdc\xe6\xe1\xde\ +\xe8\xe5\xe2\xec\xe7\xe4\xed\xe6\xe3\xec\xe5\xe2\xeb\xe5\xe2\xec\ +\xe5\xe2\xeb\xe1\xe0\xe9\xdf\xde\xe8\xdd\xdc\xe6\xd9\xd8\xe2\xd0\ +\xd1\xdb\xcb\xcc\xd7\xc1\xc4\xcf\xb0\xb5\xc2\xa4\xab\xba\x9d\xa7\ +\xb5\x94\xa1\xaf\x8e\x9c\xaa\x8a\x98\xa7\x88\x97\xa7\x8a\x98\xa8\ +\x83\x92\xa2\x72\x84\x96\x6e\x7e\x91\x66\x76\x88\x65\x71\x85\x7b\ +\x7e\x91\x92\x90\xa3\xaa\xa4\xb5\x94\x8d\x9e\x61\x5e\x75\x5b\x5b\ +\x73\x55\x59\x71\x49\x4f\x6a\x5e\x64\x7d\xa9\xa4\xb4\xb4\xae\xba\ +\xb2\xab\xb8\xac\xa4\xb3\xa5\x9e\xad\xa1\x99\xa9\x9e\x97\xa7\x9c\ +\x96\xa6\x00\x00\x00\xaf\xa9\xb6\xb3\xad\xb8\xb8\xb0\xbb\xba\xb2\ +\xbc\xbc\xb4\xbe\xbe\xb5\xbf\xbe\xb5\xbf\xbe\xb6\xc0\xbf\xb7\xc1\ +\xbf\xb8\xc0\xbf\xb7\xc1\xbf\xb8\xbf\xbe\xb7\xbe\xc0\xb9\xc0\xc1\ +\xb8\xbf\xc1\xb9\xc0\xc1\xb9\xc0\xc4\xbb\xc2\xc4\xbb\xc2\xc5\xbc\ +\xc3\xc6\xbb\xc2\xc6\xbc\xc3\xc6\xbb\xc1\xc6\xbb\xc2\xc4\xb8\xc0\ +\xc1\xb6\xbd\xc0\xb4\xbd\xc0\xb4\xbc\xc1\xb4\xbc\xc2\xb6\xbc\xc4\ +\xb6\xbc\xc5\xb7\xbb\xc7\xb9\xbd\xc9\xbb\xbe\xcc\xbe\xc0\xcf\xc1\ +\xc3\xd0\xc2\xc4\xd3\xc5\xc7\xd6\xc8\xca\xd8\xcc\xce\xdb\xd1\xd4\ +\xdd\xd4\xd7\xe0\xd8\xdb\xe1\xdb\xdf\xe2\xdc\xe1\xe2\xdc\xe1\xe1\ +\xdd\xe3\xe1\xdd\xe3\xe1\xdd\xe3\xe0\xdc\xe2\xde\xda\xe0\xdd\xda\ +\xe0\xdd\xdb\xe1\xdd\xda\xe2\xdd\xda\xe2\xda\xd6\xe0\xd3\xd0\xda\ +\xc0\xbc\xca\xaa\xa3\xb6\xa2\x99\xac\xa1\x98\xab\x9e\x98\xab\x9b\ +\x94\xa8\x98\x92\xa7\x95\x90\xa6\x93\x8e\xa4\x93\x8f\xa5\x95\x8f\ +\xa5\x95\x91\xa5\x93\x90\xa4\x91\x8c\xa3\x8d\x89\xa0\x8b\x88\xa0\ +\x8c\x88\xa1\x94\x90\xa8\x9b\x98\xad\x99\x93\xac\x91\x85\xa7\xc9\ +\xbf\xcd\xe2\xdb\xe0\xe2\xdb\xe0\xe2\xdc\xe1\xe2\xdb\xe2\xe2\xdb\ +\xe2\xe1\xdc\xe2\xe0\xdc\xe2\xe0\xdb\xe4\xe1\xdc\xe4\xe1\xdc\xe5\ +\xe0\xde\xe7\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdc\xe5\xdd\xd7\xe1\xd6\ +\xd1\xdb\xcc\xc8\xd3\xc4\xbe\xca\xb8\xb1\xbf\xb1\xaa\xb9\xb5\xad\ +\xb9\xc0\xb7\xc2\xcc\xc5\xcc\xd7\xd1\xd7\xe2\xdc\xe1\xe9\xe3\xe8\ +\xed\xe8\xec\xef\xed\xee\xf0\xf0\xf0\xf0\xf0\xf0\xef\xec\xef\xee\ +\xea\xee\xef\xed\xee\xef\xed\xef\xee\xea\xef\xec\xe8\xee\xea\xe6\ +\xec\xe2\xde\xe7\xd3\xce\xd7\xc6\xc0\xcb\xc6\xc2\xcd\xd5\xd2\xdd\ +\xe1\xdf\xe8\xe6\xe3\xec\xe7\xe4\xed\xe6\xe3\xec\xe5\xe2\xeb\xe3\ +\xe2\xeb\xe1\xe0\xe9\xe0\xdf\xea\xde\xdd\xe6\xd6\xd6\xe0\xcf\xcf\ +\xda\xc5\xc7\xd1\xb3\xb7\xc5\xa0\xa9\xb7\x93\x9f\xae\x83\x94\xa3\ +\x79\x8e\x9c\x74\x8a\x98\x76\x8a\x99\x77\x8a\x9a\x6f\x84\x94\x63\ +\x7a\x8b\x62\x78\x8a\x5f\x71\x84\x74\x7e\x92\xa1\xa0\xb0\xa5\xa2\ +\xb3\xac\xa7\xb7\x90\x89\x9a\x56\x54\x6a\x4e\x4e\x65\x47\x4a\x62\ +\x39\x40\x5a\x2c\x38\x55\x7a\x7d\x94\xb7\xb1\xbd\xb8\xb2\xbd\xb1\ +\xab\xb7\xab\xa4\xb2\xa9\xa2\xb1\xa8\xa1\xaf\xa1\x9a\xab\x00\x00\ +\x00\xac\xa7\xb5\xb1\xab\xb7\xb6\xaf\xba\xb9\xb1\xbc\xbb\xb3\xbd\ +\xbc\xb4\xbe\xbd\xb5\xc0\xbe\xb6\xbf\xbf\xb7\xc1\xbe\xb6\xc1\xbf\ +\xb7\xbf\xbf\xb7\xc0\xbf\xb7\xbf\xc0\xb8\xbf\xc1\xb9\xc0\xc1\xb9\ +\xc0\xc1\xb9\xc0\xc3\xbb\xc2\xc4\xbc\xc3\xc5\xbd\xc4\xc6\xbd\xc5\ +\xc7\xbd\xc5\xc7\xbc\xc4\xc5\xbb\xc2\xc1\xb7\xc0\xbe\xb5\xbe\xbe\ +\xb4\xbe\xc0\xb6\xbe\xc2\xb7\xbf\xc5\xb9\xbf\xc5\xb8\xbe\xc7\xb9\ +\xbe\xc8\xba\xbe\xca\xbc\xc0\xcc\xbd\xc0\xce\xc0\xc2\xd0\xc2\xc4\ +\xd3\xc6\xc9\xd5\xca\xcd\xd7\xce\xd0\xda\xd1\xd4\xdc\xd5\xd8\xdf\ +\xd7\xdc\xe1\xdb\xe0\xe2\xdc\xe1\xe3\xdd\xe2\xe3\xdd\xe4\xe1\xdd\ +\xe3\xe1\xdd\xe3\xe0\xdc\xe2\xde\xdb\xe1\xdd\xd9\xe0\xdb\xd8\xe1\ +\xdb\xd8\xe1\xcf\xcc\xd7\xb3\xaf\xbf\xa5\xa1\xb3\x9f\x98\xac\xa3\ +\x9b\xad\xa3\x9b\xac\xa0\x98\xac\x9d\x97\xaa\x9a\x94\xa8\x99\x92\ +\xa7\x96\x90\xa5\x93\x8e\xa4\x8f\x8c\xa2\x8e\x8b\xa1\x8e\x8b\xa2\ +\x90\x8d\xa3\x90\x8d\xa3\x8d\x8a\xa1\x8c\x88\xa1\x8b\x87\xa0\x8c\ +\x87\xa2\x94\x90\xa9\x99\x97\xac\x93\x8d\xa9\x97\x8d\xac\xd0\xc8\ +\xd2\xe0\xd9\xde\xdf\xd8\xdd\xdf\xd8\xdf\xe0\xd9\xe0\xe0\xda\xe1\ +\xdf\xda\xe2\xdf\xda\xe4\xe0\xdc\xe5\xe0\xdd\xe6\xe0\xdd\xe6\xe1\ +\xde\xe7\xe2\xde\xe7\xe3\xdf\xe7\xe2\xdd\xe5\xde\xd9\xe2\xd8\xd3\ +\xdd\xd0\xca\xd5\xc6\xc0\xcc\xba\xb3\xc0\xb2\xa9\xb6\xb7\xad\xb9\ +\xc1\xb8\xc1\xca\xc2\xc9\xd6\xcf\xd5\xe0\xda\xdf\xe8\xe1\xe7\xed\ +\xe8\xeb\xf0\xee\xef\xf0\xed\xee\xe5\xde\xe3\xdb\xd4\xde\xe8\xe4\ +\xea\xef\xec\xef\xef\xec\xef\xed\xe9\xef\xe6\xe1\xe7\xca\xc3\xcd\ +\xb7\xaf\xba\xb2\xaa\xb5\xb4\xac\xb7\xb9\xb2\xbd\xc3\xbe\xc9\xd1\ +\xce\xd8\xdf\xdd\xe7\xe6\xe3\xec\xe6\xe3\xec\xe3\xe2\xeb\xe2\xe1\ +\xea\xe2\xe1\xea\xe1\xe0\xe9\xdb\xdb\xe5\xd2\xd3\xdd\xc8\xca\xd4\ +\xb7\xbb\xc8\xa1\xa9\xb7\x8b\x99\xa8\x71\x88\x96\x63\x7e\x8c\x5d\ +\x7a\x87\x5b\x78\x85\x59\x77\x86\x52\x71\x81\x52\x6f\x81\x57\x6f\ +\x83\x5c\x6f\x83\x83\x8a\x9e\xa2\xa1\xb1\xa4\xa2\xb2\xa7\xa5\xb4\ +\x79\x73\x85\x47\x45\x5c\x41\x40\x58\x36\x37\x51\x29\x30\x4a\x24\ +\x30\x4c\x36\x40\x5d\x8e\x8c\xa1\xb2\xab\xb9\xad\xa6\xb3\xb1\xaa\ +\xb6\xae\xa7\xb4\xa7\xa0\xaf\xa4\x9d\xac\x00\x00\x00\xaa\xa5\xb4\ +\xb0\xaa\xb7\xb4\xae\xb9\xb8\xb1\xbb\xbb\xb3\xbd\xbc\xb4\xbe\xbd\ +\xb5\xbf\xbe\xb6\xc0\xbf\xb7\xc1\xbf\xb6\xc1\xbe\xb8\xbe\xbe\xb7\ +\xbf\xc1\xb9\xc0\xc1\xb9\xc0\xc0\xb8\xbf\xc0\xb8\xbf\xc2\xba\xc1\ +\xc4\xbc\xc3\xc5\xbd\xc4\xc6\xbe\xc5\xc9\xbf\xc7\xc9\xc0\xc7\xc8\ +\xc0\xc7\xc4\xbc\xc5\xc0\xb7\xc2\xbe\xb5\xc0\xbe\xb6\xc0\xc0\xb7\ +\xbf\xc3\xb8\xbf\xc5\xba\xc0\xc7\xbb\xc0\xc8\xbc\xbf\xca\xbc\xc0\ +\xcb\xbd\xc1\xcc\xbe\xc2\xcf\xc0\xc4\xd2\xc4\xc8\xd5\xca\xcd\xd6\ +\xcc\xcf\xd8\xd0\xd3\xdb\xd3\xd6\xdd\xd6\xda\xdf\xd9\xde\xe1\xdb\ +\xe0\xe2\xdc\xe1\xe3\xdd\xe2\xe3\xdd\xe3\xe2\xdd\xe3\xe1\xdd\xe3\ +\xe0\xdc\xe2\xde\xda\xe0\xdd\xd9\xdf\xda\xd6\xde\xb9\xb8\xc6\x9f\ +\x9c\xb1\x9b\x97\xac\x9f\x9a\xad\xa0\x9a\xad\xa1\x9a\xac\xa2\x9a\ +\xac\x9f\x97\xab\x9d\x97\xaa\x9b\x94\xa8\x98\x92\xa7\x95\x90\xa5\ +\x94\x90\xa5\x90\x8d\xa3\x8e\x8c\xa2\x8d\x8a\xa2\x8d\x89\xa2\x8e\ +\x8b\xa1\x8e\x8b\xa1\x8d\x89\xa1\x8c\x87\xa1\x8b\x86\xa1\x8b\x87\ +\xa2\x93\x8f\xa8\x97\x94\xac\x90\x8a\xa7\x9e\x93\xaf\xd7\xd0\xd7\ +\xde\xd7\xdb\xde\xd7\xdc\xdf\xd8\xdf\xde\xda\xe0\xdf\xda\xe3\xe0\ +\xdb\xe3\xe0\xdd\xe6\xe0\xdd\xe6\xe1\xde\xe7\xe1\xdd\xe6\xe3\xde\ +\xe7\xe4\xdf\xe7\xe3\xdf\xe7\xe3\xdf\xe6\xe1\xdc\xe5\xdd\xd5\xdf\ +\xd3\xcc\xd6\xc9\xc2\xcc\xbc\xb4\xc0\xb3\xaa\xb7\xb6\xac\xb8\xbf\ +\xb6\xc0\xca\xc1\xc9\xd6\xcf\xd5\xe1\xda\xdf\xe9\xe2\xe7\xee\xe9\ +\xeb\xf0\xeb\xec\xdc\xd3\xd7\xbe\xb4\xc2\xce\xc7\xd2\xdb\xd7\xde\ +\xe8\xe3\xea\xed\xe9\xee\xd7\xd1\xd8\xb7\xaf\xb9\xb3\xab\xb6\xb2\ +\xaa\xb5\xb3\xab\xb5\xb3\xab\xb6\xb3\xab\xb6\xb6\xaf\xba\xc4\xbf\ +\xcc\xdc\xdb\xe5\xe6\xe3\xec\xe5\xe2\xeb\xe4\xe3\xec\xe3\xe2\xeb\ +\xe2\xe1\xea\xdf\xde\xe8\xd8\xd7\xe1\xcc\xcd\xd8\xbc\xc0\xcc\xa9\ +\xaf\xbd\x8e\x9b\xa9\x67\x7f\x8d\x52\x71\x7e\x4c\x6d\x7b\x47\x6b\ +\x79\x43\x67\x76\x3d\x63\x74\x48\x68\x7a\x56\x6f\x83\x62\x76\x8b\ +\x8f\x95\xa7\xa2\xa1\xb0\xa4\xa3\xb2\x96\x93\xa3\x57\x55\x69\x3a\ +\x39\x52\x31\x31\x4a\x27\x28\x42\x21\x26\x41\x24\x2b\x47\x28\x33\ +\x4f\x3c\x46\x62\x8d\x8b\xa1\xaf\xa8\xb7\xad\xa6\xb5\xab\xa4\xb2\ +\xa9\xa1\xb0\xa7\xa0\xaf\x00\x00\x00\xa8\xa4\xb3\xaf\xa9\xb6\xb4\ +\xad\xb9\xb7\xb1\xbc\xba\xb2\xbc\xbc\xb4\xbe\xbd\xb5\xbf\xbe\xb6\ +\xc0\xbf\xb7\xc0\xbe\xb6\xc0\xbf\xb8\xbf\xc0\xb9\xc0\xc2\xba\xc1\ +\xc3\xbb\xc2\xc2\xba\xc1\xc2\xba\xc1\xc4\xbc\xc3\xc5\xbd\xc4\xc7\ +\xbf\xc6\xc9\xc0\xc7\xcb\xc0\xc8\xca\xc1\xc9\xc9\xc1\xc8\xc4\xbc\ +\xc7\xc0\xb9\xc4\xbe\xb8\xc3\xbf\xb8\xc3\xc0\xb7\xc1\xc2\xb8\xc1\ +\xc4\xba\xc1\xc7\xbb\xc1\xc8\xbc\xc2\xc9\xbd\xc2\xcc\xbe\xc4\xcd\ +\xc1\xc5\xd1\xc5\xc8\xd5\xca\xcd\xd7\xcc\xcf\xd8\xcf\xd2\xd9\xd2\ +\xd5\xdb\xd4\xd8\xde\xd7\xdc\xdf\xd9\xde\xe2\xdc\xe1\xe3\xdd\xe2\ +\xe5\xdf\xe4\xe5\xdf\xe4\xe4\xde\xe3\xe3\xde\xe4\xe2\xdd\xe3\xdf\ +\xdb\xe1\xdc\xd8\xdf\xb3\xb0\xc1\x94\x92\xa8\x95\x91\xa7\x9c\x96\ +\xaa\x9e\x98\xaa\x9e\x98\xaa\x9f\x99\xab\xa0\x9a\xab\x9f\x98\xab\ +\x9d\x95\xa8\x9b\x95\xa8\x98\x92\xa6\x95\x90\xa5\x94\x8f\xa4\x91\ +\x8e\xa4\x8f\x8c\xa2\x8d\x89\xa2\x8d\x8a\xa3\x8c\x89\xa2\x8d\x89\ +\xa2\x8d\x89\xa2\x8a\x86\x9f\x89\x86\xa0\x89\x86\xa0\x8b\x87\xa2\ +\x93\x90\xa8\x96\x92\xab\x89\x82\xa3\xb4\xac\xbf\xdd\xd6\xdb\xdc\ +\xd5\xdc\xdf\xd8\xdf\xde\xd9\xdf\xde\xda\xe2\xe0\xdc\xe4\xe1\xdc\ +\xe5\xe1\xdd\xe6\xe1\xdd\xe6\xe2\xdd\xe6\xe2\xde\xe7\xe3\xde\xe7\ +\xe3\xde\xe7\xe4\xe0\xe7\xe6\xe1\xe8\xe3\xde\xe5\xde\xd6\xe0\xd5\ +\xce\xd8\xcc\xc4\xce\xbd\xb4\xc0\xb6\xac\xb8\xb7\xae\xb9\xc1\xb8\ +\xc2\xcb\xc3\xcb\xd7\xd0\xd5\xe2\xdb\xe0\xe9\xe3\xe7\xe9\xe3\xe6\ +\xd3\xc9\xcf\xb5\xab\xb8\xb1\xa8\xb5\xb4\xac\xb9\xce\xca\xd5\xe4\ +\xe0\xe7\xca\xc2\xca\xb3\xab\xb6\xb3\xab\xb6\xb3\xab\xb6\xb0\xaa\ +\xb5\xb0\xaa\xb5\xb1\xaa\xb5\xb2\xaa\xb5\xb4\xad\xb8\xc8\xc5\xd1\ +\xe1\xdf\xe9\xe8\xe5\xee\xe6\xe4\xed\xe5\xe4\xed\xe5\xe4\xed\xe1\ +\xe0\xea\xdb\xdb\xe4\xd1\xd2\xdd\xc3\xc5\xd0\xb3\xb8\xc4\x9b\xa5\ +\xb2\x73\x87\x94\x4e\x6e\x7b\x44\x67\x76\x3e\x63\x72\x39\x62\x71\ +\x38\x60\x72\x48\x69\x7d\x5c\x74\x89\x6d\x7f\x94\x97\x99\xab\xa3\ +\xa2\xb2\xa5\xa3\xb2\x81\x7e\x90\x4f\x4f\x65\x30\x31\x49\x27\x28\ +\x40\x22\x24\x3d\x23\x24\x3e\x28\x2a\x45\x2b\x31\x4c\x32\x3c\x5a\ +\x44\x4e\x6a\x84\x85\x9c\xa9\xa4\xb3\xad\xa6\xb5\xac\xa5\xb4\xac\ +\xa5\xb3\x00\x00\x00\xa6\xa3\xb2\xad\xa9\xb5\xb3\xad\xb8\xb7\xb1\ +\xbb\xbb\xb3\xbd\xbd\xb5\xbf\xbd\xb5\xbf\xbe\xb6\xc0\xbe\xb6\xc0\ +\xbf\xb7\xc0\xc0\xb9\xc1\xc2\xba\xc1\xc3\xbc\xc3\xc4\xbc\xc3\xc3\ +\xbb\xc2\xc4\xbc\xc3\xc5\xbd\xc4\xc7\xbe\xc5\xca\xbf\xc7\xcb\xc1\ +\xc8\xcc\xc2\xc9\xcc\xc3\xca\xc9\xc0\xca\xc5\xbe\xc8\xc1\xbb\xc6\ +\xc0\xb9\xc5\xbe\xb8\xc3\xc1\xb8\xc3\xc2\xb8\xc2\xc4\xba\xc1\xc6\ +\xbb\xc2\xc7\xbc\xc2\xca\xbe\xc4\xcb\xbf\xc5\xce\xc3\xc8\xd3\xc8\ +\xcb\xd6\xcc\xcf\xd8\xcf\xd2\xda\xd2\xd6\xdb\xd4\xd8\xde\xd7\xdc\ +\xe0\xd9\xdf\xe2\xdc\xe1\xe3\xdd\xe2\xe4\xde\xe3\xe5\xdf\xe4\xe6\ +\xe0\xe5\xe5\xdf\xe4\xe4\xdf\xe4\xe3\xde\xe3\xe2\xdd\xe2\xcf\xca\ +\xd4\xa4\x9f\xb2\x98\x94\xa9\x96\x92\xa6\x9c\x96\xa9\x9e\x98\xa9\ +\x9e\x98\xaa\x9e\x98\xaa\x9f\x9a\xac\x9f\x98\xab\x9e\x97\xaa\x9b\ +\x95\xa8\x98\x92\xa6\x95\x91\xa5\x93\x8f\xa4\x90\x8d\xa4\x8f\x8c\ +\xa2\x8d\x8a\xa2\x8d\x8a\xa3\x8d\x8a\xa3\x8c\x89\xa2\x8a\x87\xa1\ +\x89\x86\x9f\x88\x85\x9e\x88\x85\x9f\x87\x84\xa1\x8a\x87\xa3\x92\ +\x8f\xa8\x91\x8d\xa8\x93\x8c\xaa\xd0\xca\xd3\xdd\xd6\xdd\xdf\xd8\ +\xdf\xde\xd9\xe0\xdf\xdc\xe1\xe0\xdc\xe3\xe1\xdc\xe5\xe2\xdd\xe5\ +\xe2\xdd\xe5\xe3\xde\xe6\xe3\xde\xe7\xe3\xde\xe6\xe3\xde\xe7\xe4\ +\xe0\xe8\xe6\xe2\xe8\xe8\xe2\xe9\xe6\xdf\xe6\xdf\xd8\xdf\xd7\xcf\ +\xd7\xcc\xc3\xcd\xbf\xb5\xbf\xb9\xad\xb9\xbd\xb3\xbd\xc3\xba\xc4\ +\xcc\xc4\xcc\xd8\xd1\xd6\xde\xd7\xdc\xd1\xc8\xcf\xb9\xb0\xba\xb1\ +\xa8\xb4\xb0\xa8\xb3\xad\xa6\xb3\xb5\xae\xbb\xcd\xc8\xd2\xbc\xb5\ +\xbf\xaf\xa9\xb4\xb0\xa9\xb4\xb1\xaa\xb5\xb0\xa9\xb4\xb0\xa9\xb4\ +\xb0\xa9\xb4\xaf\xa8\xb3\xaf\xa7\xb2\xb7\xb1\xbd\xd1\xd0\xdb\xe6\ +\xe3\xed\xe8\xe5\xee\xe7\xe5\xee\xe5\xe4\xed\xe3\xe2\xeb\xdf\xde\ +\xe7\xd7\xd8\xe2\xcb\xcc\xd7\xbf\xc2\xcd\xae\xb3\xc0\x91\x9d\xaa\ +\x69\x7e\x8e\x4a\x6a\x7a\x3f\x64\x74\x3a\x60\x73\x38\x5f\x73\x46\ +\x68\x7d\x64\x7b\x90\x79\x87\x9c\x9d\x9e\xaf\xa4\xa3\xb2\xa6\xa5\ +\xb3\x81\x80\x91\x5a\x5b\x72\x34\x36\x4e\x2b\x2c\x44\x30\x2f\x46\ +\x39\x35\x4c\x40\x3c\x54\x45\x43\x5b\x49\x4a\x64\x4e\x52\x6d\x52\ +\x58\x74\x74\x76\x8d\x9d\x99\xab\xb1\xaa\xb8\xb5\xae\xbc\x00\x00\ +\x00\xa5\xa4\xb2\xad\xa9\xb5\xb3\xae\xb9\xb7\xb2\xbc\xbc\xb4\xbe\ +\xbd\xb5\xbf\xbe\xb6\xc0\xbf\xb7\xc1\xc0\xb8\xc2\xc1\xb9\xc3\xc2\ +\xba\xc4\xc5\xbd\xc5\xc5\xbd\xc5\xc5\xbd\xc4\xc6\xbe\xc5\xc6\xbe\ +\xc5\xc8\xbe\xc6\xca\xc0\xc7\xcc\xc2\xc8\xce\xc4\xca\xcf\xc4\xcb\ +\xcd\xc5\xcc\xcb\xc3\xcc\xc7\xc1\xcb\xc4\xbe\xca\xc2\xbc\xc8\xc1\ +\xbb\xc6\xc1\xba\xc5\xc2\xba\xc4\xc3\xbb\xc3\xc6\xbb\xc3\xc8\xbc\ +\xc3\xca\xbf\xc5\xcc\xc1\xc7\xd1\xc6\xcb\xd5\xca\xce\xd8\xcf\xd2\ +\xdb\xd3\xd5\xdc\xd4\xd9\xde\xd7\xda\xe0\xd9\xdc\xe2\xdb\xe0\xe3\ +\xdd\xe2\xe4\xde\xe3\xe5\xdf\xe4\xe6\xe0\xe5\xe6\xe1\xe6\xe6\xe0\ +\xe5\xe5\xdf\xe4\xe4\xde\xe3\xde\xd9\xe0\xc0\xb9\xc7\xa3\x9d\xb1\ +\xa0\x9a\xad\x9b\x95\xa8\x99\x93\xa6\x9a\x94\xa7\x9d\x97\xa9\x9e\ +\x99\xab\x9e\x99\xac\x9f\x99\xac\x9e\x98\xab\x9c\x96\xa9\x99\x93\ +\xa7\x96\x91\xa6\x93\x8f\xa4\x90\x8e\xa4\x8e\x8c\xa2\x8f\x8c\xa4\ +\x8f\x8c\xa5\x8d\x8a\xa3\x8d\x8a\xa3\x8a\x88\xa1\x88\x86\x9f\x88\ +\x85\x9f\x85\x84\x9e\x85\x84\xa0\x86\x84\xa1\x8b\x88\xa5\x91\x8f\ +\xa9\x8c\x87\xa7\xb3\xac\xc0\xdc\xd6\xdb\xdf\xd8\xde\xe0\xda\xe0\ +\xda\xd5\xdc\xd0\xca\xd3\xda\xd7\xdf\xe1\xdc\xe5\xe2\xdd\xe4\xe3\ +\xdf\xe5\xe4\xe0\xe7\xe4\xe0\xe7\xe4\xdf\xe8\xe6\xe1\xe8\xe9\xe2\ +\xe9\xea\xe3\xea\xea\xe4\xea\xe7\xe0\xe5\xe0\xd9\xde\xd8\xce\xd5\ +\xcd\xc2\xc9\xc2\xb5\xbe\xbe\xb2\xba\xc0\xb5\xbf\xc4\xbb\xc5\xcd\ +\xc5\xcc\xc9\xc1\xc8\xb7\xaf\xb8\xb0\xa9\xb4\xb0\xa8\xb3\xae\xa8\ +\xb3\xad\xa6\xb3\xae\xa7\xb4\xb2\xac\xb8\xb0\xaa\xb5\xae\xa9\xb3\ +\xae\xa7\xb2\xaf\xa9\xb4\xb0\xaa\xb5\xb0\xaa\xb5\xaf\xa9\xb4\xae\ +\xa8\xb3\xaf\xa7\xb2\xb1\xaa\xb5\xbd\xb8\xc4\xdb\xd9\xe4\xe9\xe6\ +\xef\xe9\xe6\xf0\xe8\xe5\xee\xe6\xe5\xee\xe3\xe1\xea\xdd\xdd\xe6\ +\xd3\xd3\xde\xc9\xca\xd5\xba\xbd\xc9\xa7\xae\xbb\x8b\x96\xa6\x65\ +\x7b\x8d\x46\x67\x7a\x3d\x60\x75\x3a\x5e\x74\x45\x65\x7d\x68\x7d\ +\x93\x8b\x92\xa6\xa2\xa1\xb2\xa5\xa4\xb3\xa6\xa3\xb1\x7d\x7d\x91\ +\x60\x63\x7c\x43\x42\x5b\x44\x41\x58\x59\x53\x65\x6c\x62\x71\x76\ +\x6b\x7b\x7a\x6f\x80\x7d\x72\x87\x7f\x79\x8d\x7b\x78\x8c\x72\x73\ +\x87\x78\x7a\x8e\x94\x91\xa4\xb2\xad\xba\x00\x00\x00\xa7\xa4\xb3\ +\xae\xab\xb6\xb5\xaf\xba\xb9\xb4\xbd\xbc\xb6\xbf\xbe\xb6\xc0\xbf\ +\xb7\xc1\xc1\xb9\xc3\xc2\xba\xc4\xc4\xbc\xc6\xc6\xbe\xc8\xc6\xbe\ +\xc8\xc7\xbf\xc9\xc8\xc0\xc7\xc7\xbf\xc6\xc8\xbf\xc6\xcb\xc0\xc8\ +\xcd\xc2\xc9\xcf\xc5\xcb\xd0\xc6\xcc\xcf\xc5\xcd\xcd\xc5\xcc\xcc\ +\xc4\xcd\xc9\xc4\xce\xc8\xc2\xcd\xc6\xc0\xcb\xc4\xbe\xc9\xc4\xbc\ +\xc7\xc3\xbc\xc6\xc4\xbc\xc6\xc6\xbc\xc4\xc9\xbd\xc6\xcb\xc1\xc7\ +\xcf\xc5\xcb\xd2\xc8\xce\xd6\xcd\xd1\xda\xd1\xd4\xdd\xd4\xd8\xde\ +\xd6\xdb\xdf\xd8\xdb\xe1\xda\xdd\xe3\xdc\xe1\xe3\xdd\xe2\xe5\xdf\ +\xe4\xe6\xe0\xe5\xe7\xe0\xe5\xe8\xe1\xe5\xe7\xe1\xe6\xe6\xe0\xe5\ +\xe1\xdc\xe1\xc5\xbd\xcc\xa7\xa0\xb4\xa3\x9d\xaf\xa1\x9b\xac\x9f\ +\x99\xaa\x9b\x95\xa8\x9a\x94\xa7\x99\x94\xa7\x9b\x96\xa9\x9b\x96\ +\xa9\x9e\x98\xab\x9d\x97\xaa\x9d\x97\xaa\x98\x93\xa7\x96\x91\xa6\ +\x94\x91\xa5\x92\x8f\xa4\x8f\x8c\xa2\x8f\x8c\xa3\x8e\x8b\xa3\x8b\ +\x88\xa1\x8b\x88\xa1\x8b\x88\xa2\x87\x85\x9f\x86\x84\x9e\x85\x83\ +\x9e\x82\x82\x9d\x82\x82\x9f\x84\x83\xa0\x8b\x89\xa6\x8b\x89\xa6\ +\x9b\x95\xb0\xd5\xcf\xd5\xe0\xd9\xde\xe0\xda\xdf\xd5\xcc\xd3\xaf\ +\xa7\xb5\xb1\xac\xba\xd1\xcc\xd6\xe0\xdc\xe3\xe3\xde\xe5\xe4\xe0\ +\xe6\xe5\xe1\xe7\xe7\xe2\xe8\xe8\xe2\xe9\xea\xe3\xea\xeb\xe5\xea\ +\xed\xe6\xeb\xec\xe5\xea\xe9\xdf\xe4\xe3\xd8\xda\xda\xce\xd1\xd0\ +\xc2\xc7\xc4\xb6\xbd\xc1\xb4\xbb\xc2\xb7\xbf\xc1\xb8\xc2\xb6\xad\ +\xb7\xb1\xa8\xb4\xb0\xa9\xb4\xaf\xa8\xb3\xad\xa8\xb3\xac\xa6\xb2\ +\xad\xa7\xb3\xaf\xa8\xb4\xae\xa9\xb3\xaf\xa7\xb3\xaf\xa7\xb3\xaf\ +\xa9\xb4\xb0\xaa\xb5\xb0\xaa\xb5\xaf\xa9\xb4\xae\xa9\xb3\xaf\xa9\ +\xb4\xb0\xa9\xb4\xb1\xaa\xb5\xc8\xc5\xd0\xe4\xe2\xeb\xea\xe8\xef\ +\xea\xe8\xee\xe9\xe6\xee\xe6\xe4\xed\xe1\xe0\xe9\xdb\xda\xe4\xd1\ +\xd1\xda\xc4\xc5\xd0\xb5\xb8\xc5\xa1\xa7\xb7\x83\x8f\xa3\x5a\x71\ +\x87\x40\x5f\x76\x3c\x5c\x75\x43\x60\x78\x6f\x7e\x96\x9f\x9f\xb1\ +\xa3\xa2\xb2\xa7\xa4\xb3\xa5\xa3\xb2\x79\x79\x8e\x60\x62\x7b\x58\ +\x55\x6d\x6b\x63\x76\x83\x76\x85\x93\x86\x92\x9e\x90\x9c\xa5\x97\ +\xa4\xa6\x9b\xa7\xa5\x9a\xa8\x9c\x95\xa3\x91\x8e\x9d\x8b\x8b\x9b\ +\x88\x88\x9c\x89\x8b\x9e\x00\x00\x00\xab\xa9\xb6\xb2\xae\xba\xb8\ +\xb2\xbe\xbb\xb5\xbf\xbd\xb7\xc1\xbf\xb9\xc2\xc1\xbc\xc5\xc4\xbd\ +\xc7\xc7\xbf\xc9\xc8\xc0\xca\xca\xc2\xcc\xc9\xc1\xcc\xc9\xc1\xcb\ +\xc9\xc1\xc8\xca\xc1\xc8\xcc\xc2\xc9\xcd\xc4\xca\xd0\xc6\xcb\xd1\ +\xc6\xcc\xd1\xc7\xcd\xcf\xc6\xcd\xce\xc6\xcd\xcd\xc5\xcf\xcb\xc5\ +\xce\xca\xc4\xce\xca\xc4\xcf\xc9\xc3\xce\xc7\xc2\xcc\xc7\xbf\xc9\ +\xc7\xbe\xc8\xc9\xc0\xc8\xcb\xc2\xc9\xcf\xc5\xcb\xd2\xc8\xce\xd5\ +\xcb\xd0\xd7\xce\xd1\xdb\xd2\xd5\xde\xd5\xd8\xdf\xd8\xdb\xe2\xdb\ +\xde\xe3\xdc\xdf\xe4\xdd\xe1\xe5\xde\xe2\xe6\xdf\xe3\xe7\xe0\xe4\ +\xe8\xe0\xe4\xe7\xe1\xe3\xe8\xe1\xe5\xe7\xe0\xe5\xd2\xcb\xd5\xac\ +\xa2\xb6\xa6\x9c\xb1\xa4\x9c\xae\xa4\x9d\xae\xa2\x9a\xab\x9e\x97\ +\xa8\x9b\x95\xa7\x99\x93\xa7\x98\x94\xa8\x9a\x96\xa9\x9c\x97\xaa\ +\x9c\x97\xaa\x9b\x96\xaa\x98\x93\xa7\x96\x91\xa6\x93\x90\xa5\x92\ +\x90\xa5\x90\x8e\xa3\x8e\x8b\xa2\x8c\x89\xa1\x89\x86\x9f\x87\x85\ +\x9e\x87\x87\x9f\x88\x86\x9f\x85\x83\x9e\x83\x82\x9d\x81\x82\x9e\ +\x80\x81\x9d\x80\x80\x9e\x81\x82\xa0\x87\x86\xa4\x8c\x89\xa6\xc4\ +\xbe\xc9\xdf\xd7\xdb\xd9\xd2\xd8\xc8\xc0\xc9\xb0\xa9\xb6\xa3\x9b\ +\xad\xab\xa5\xb5\xd5\xd0\xd9\xe3\xdf\xe5\xe6\xe0\xe7\xe8\xe2\xe9\ +\xea\xe3\xea\xea\xe4\xea\xec\xe5\xeb\xec\xe6\xeb\xed\xe6\xeb\xee\ +\xe7\xeb\xee\xe6\xe9\xea\xe0\xe3\xe4\xd7\xda\xdb\xcd\xd1\xd0\xc2\ +\xc6\xc6\xb7\xbd\xc3\xb6\xbd\xb6\xac\xb7\xb0\xa6\xb2\xb0\xa8\xb3\ +\xaf\xa7\xb2\xae\xa6\xb2\xae\xa8\xb3\xad\xa6\xb3\xad\xa6\xb3\xaf\ +\xa8\xb4\xaf\xa9\xb4\xb0\xa7\xb3\xaf\xa7\xb3\xaf\xa8\xb4\xb0\xa9\ +\xb5\xb0\xaa\xb5\xaf\xa7\xb4\xaf\xa8\xb3\xb0\xa8\xb3\xae\xa8\xb3\ +\xae\xa7\xb2\xb5\xb0\xbc\xd7\xd6\xe0\xea\xe8\xee\xea\xe8\xed\xe9\ +\xe6\xef\xe9\xe6\xee\xe6\xe3\xec\xe0\xde\xe8\xd7\xd7\xe1\xcd\xcc\ +\xd7\xc0\xc1\xce\xb1\xb4\xc3\x9a\xa0\xb3\x76\x83\x99\x4b\x63\x7c\ +\x3b\x59\x73\x4b\x63\x7d\x8d\x92\xa7\xa3\xa2\xb2\xa4\xa2\xb2\xa8\ +\xa5\xb4\xa5\xa1\xb0\x77\x76\x8c\x63\x62\x7c\x75\x6d\x82\x91\x83\ +\x91\xa5\x95\x9f\xb1\xa2\xa9\xb9\xab\xb2\xbd\xb1\xb9\xbf\xb4\xbc\ +\xb9\xaf\xb9\xae\xa7\xb1\xa8\xa1\xae\xa2\x9e\xac\x9b\x99\xa9\x96\ +\x95\xa7\x00\x00\x00\xb1\xae\xba\xb5\xb1\xbd\xb8\xb4\xbf\xbc\xb6\ +\xc1\xbe\xb8\xc3\xc0\xba\xc5\xc4\xbf\xc9\xc7\xc2\xcb\xca\xc3\xcd\ +\xcc\xc5\xcf\xce\xc6\xd0\xcc\xc5\xcd\xcc\xc5\xcc\xcc\xc4\xcb\xce\ +\xc5\xcb\xcf\xc5\xcb\xd2\xc6\xcc\xd3\xc7\xcd\xd2\xc8\xce\xd2\xc8\ +\xce\xd0\xc6\xce\xcf\xc7\xce\xce\xc6\xcf\xcf\xc7\xd1\xce\xc7\xd1\ +\xce\xc7\xd1\xce\xc7\xd1\xcd\xc5\xcf\xcb\xc3\xcd\xcb\xc3\xcd\xcd\ +\xc5\xcc\xce\xc6\xcd\xd1\xc7\xce\xd5\xcb\xd1\xd7\xce\xd2\xd9\xd0\ +\xd3\xdc\xd3\xd6\xde\xd5\xd8\xe2\xd9\xdc\xe3\xdc\xdf\xe5\xde\xe1\ +\xe6\xdf\xe2\xe7\xe0\xe3\xe7\xe0\xe4\xe7\xe1\xe3\xe8\xe1\xe3\xe8\ +\xe0\xe4\xe8\xe1\xe4\xe3\xdd\xe2\xbc\xb2\xc2\xad\xa3\xb4\xa8\x9e\ +\xb1\xa4\x9c\xae\xa6\x9e\xae\xa4\x9c\xac\xa0\x99\xa9\x9d\x97\xa9\ +\x9a\x95\xa8\x98\x93\xa7\x98\x93\xa8\x98\x94\xa8\x9a\x96\xaa\x9a\ +\x97\xaa\x99\x94\xa8\x97\x91\xa7\x95\x90\xa5\x92\x8f\xa5\x8f\x8d\ +\xa3\x8c\x89\xa1\x8a\x88\xa0\x87\x86\x9f\x85\x84\x9d\x84\x84\x9e\ +\x85\x84\x9e\x85\x84\x9e\x84\x82\x9d\x81\x80\x9d\x80\x81\x9e\x7d\ +\x7f\x9d\x7d\x7f\x9d\x80\x82\xa1\x84\x83\xa2\xac\xa8\xbb\xd7\xcf\ +\xd4\xb5\xac\xba\xa2\x9a\xad\xa5\x9f\xb0\xa2\x9c\xad\x9e\x98\xaa\ +\xb7\xb0\xbe\xe2\xdd\xe4\xe7\xe0\xe6\xe9\xe3\xe9\xeb\xe4\xea\xec\ +\xe5\xea\xed\xe6\xeb\xed\xe6\xea\xef\xe8\xeb\xf0\xe9\xec\xf1\xeb\ +\xec\xf0\xe9\xea\xec\xe1\xe2\xe5\xd8\xda\xdc\xcf\xd1\xd1\xc3\xc6\ +\xc8\xbb\xc0\xb5\xab\xb5\xaf\xa7\xb2\xaf\xa7\xb2\xad\xa5\xb0\xad\ +\xa5\xb2\xad\xa6\xb3\xad\xa6\xb3\xad\xa6\xb2\xae\xa7\xb3\xb1\xa9\ +\xb4\xb0\xa8\xb4\xae\xa6\xb3\xad\xa7\xb3\xae\xa7\xb4\xaf\xa8\xb4\ +\xae\xa6\xb3\xad\xa7\xb2\xae\xa8\xb3\xad\xa7\xb2\xae\xa6\xb2\xaf\ +\xa8\xb4\xc7\xc4\xcf\xe6\xe4\xec\xea\xe8\xee\xea\xe7\xee\xea\xe8\ +\xee\xe9\xe6\xee\xe5\xe3\xec\xde\xdc\xe5\xd5\xd4\xde\xca\xca\xd5\ +\xbc\xbd\xcb\xaa\xae\xbe\x8e\x93\xa9\x64\x71\x8b\x5d\x6e\x87\x85\ +\x8c\xa0\xa0\x9f\xb0\xa3\xa2\xb1\xa6\xa3\xb2\xa6\xa5\xb3\xa1\x9e\ +\xad\x74\x71\x88\x78\x71\x86\x95\x88\x95\xad\x9d\xa6\xba\xab\xb1\ +\xc5\xb5\xb9\xcb\xbd\xc2\xcd\xc2\xc7\xcd\xc2\xc6\xc7\xbc\xc3\xbd\ +\xb5\xbd\xb9\xb0\xb9\xb4\xac\xb8\xa9\xa6\xb3\xa3\x9f\xae\x00\x00\ +\x00\xb6\xb2\xbe\xb7\xb3\xbf\xb8\xb4\xc0\xba\xb6\xc1\xbc\xb8\xc3\ +\xc1\xbb\xc7\xc5\xbf\xc9\xc9\xc4\xcd\xcd\xc6\xd0\xcf\xc7\xd1\xcf\ +\xc7\xd0\xcf\xc7\xcf\xcf\xc7\xce\xd0\xc7\xcd\xd2\xc7\xcd\xd3\xc7\ +\xcd\xd3\xc7\xcd\xd3\xc8\xce\xd2\xc8\xce\xd1\xc7\xcd\xd1\xc8\xcf\ +\xd0\xc8\xcf\xd1\xc9\xd0\xd0\xc8\xd1\xd1\xca\xd2\xd2\xcb\xd1\xd0\ +\xc9\xd1\xcf\xc7\xd0\xce\xc7\xd0\xcf\xc7\xcf\xd1\xc9\xd0\xd3\xca\ +\xd0\xd5\xcb\xd1\xd7\xce\xd3\xd9\xcf\xd5\xdb\xd2\xd5\xdd\xd4\xd7\ +\xe0\xd7\xda\xe4\xdb\xde\xe6\xdd\xe0\xe7\xe0\xe3\xe8\xe0\xe3\xe7\ +\xe1\xe4\xe7\xe1\xe4\xe8\xe1\xe4\xe8\xe1\xe4\xe8\xe1\xe4\xe8\xe0\ +\xe3\xde\xd7\xdd\xb6\xab\xbb\xaf\xa5\xb5\xa9\x9f\xb1\xa6\x9d\xaf\ +\xa6\x9d\xae\xa6\x9e\xae\xa4\x9c\xac\x9e\x98\xa9\x9b\x95\xa8\x98\ +\x94\xa7\x98\x94\xa8\x97\x91\xa7\x98\x93\xa8\x9a\x96\xa9\x99\x95\ +\xa9\x97\x93\xa8\x95\x91\xa7\x93\x8f\xa5\x8f\x8c\xa3\x8b\x88\xa0\ +\x88\x87\x9f\x85\x84\x9f\x86\x85\x9f\x85\x84\x9e\x84\x84\x9e\x84\ +\x83\x9d\x84\x84\x9e\x82\x82\x9e\x80\x81\x9d\x7c\x7f\x9d\x7b\x7d\ +\x9c\x7c\x7e\x9d\x7f\x80\xa0\x95\x92\xad\xc2\xb9\xc2\x97\x91\xa5\ +\x95\x90\xa6\x9c\x97\xaa\xa1\x9b\xac\xa0\x9a\xab\xa0\x9a\xac\xc8\ +\xc2\xcc\xe6\xe1\xe6\xea\xe3\xe8\xec\xe5\xea\xed\xe6\xeb\xee\xe7\ +\xeb\xee\xe7\xea\xef\xe8\xeb\xf1\xeb\xec\xf1\xec\xed\xf2\xed\xee\ +\xf1\xea\xea\xed\xe3\xe3\xe7\xd9\xda\xdc\xcf\xd1\xcc\xbf\xc4\xb3\ +\xa9\xb4\xaf\xa6\xb1\xad\xa5\xb0\xad\xa6\xb1\xac\xa5\xb2\xad\xa6\ +\xb3\xad\xa6\xb3\xae\xa7\xb4\xad\xa7\xb3\xae\xa8\xb3\xaf\xa9\xb4\ +\xac\xa6\xb2\xac\xa6\xb2\xad\xa6\xb2\xaf\xa8\xb5\xae\xa7\xb4\xad\ +\xa7\xb3\xae\xa7\xb3\xad\xa6\xb2\xac\xa6\xb2\xad\xa6\xb3\xb9\xb4\ +\xc0\xdf\xdd\xe6\xea\xe8\xef\xe9\xe7\xee\xe6\xe4\xeb\xe9\xe7\xed\ +\xe8\xe6\xee\xe4\xe0\xe9\xdb\xd8\xe3\xd3\xd1\xdb\xc5\xc5\xd2\xb6\ +\xb6\xc5\xa2\xa4\xb6\x94\x97\xab\x99\x9a\xab\xa0\x9f\xaf\xa2\xa0\ +\xb0\xa5\xa2\xb1\xa7\xa4\xb3\xa7\xa4\xb3\xa0\x9d\xad\x78\x72\x89\ +\x8c\x81\x92\xab\x9a\xa4\xbe\xae\xb4\xc8\xba\xbd\xd2\xc4\xc6\xd7\ +\xcb\xce\xd9\xce\xd1\xd8\xcd\xd0\xd1\xc7\xcb\xca\xbf\xc5\xc5\xbc\ +\xc2\xbe\xb7\xc0\xb4\xaf\xb9\xac\xa6\xb3\x00\x00\x00\xb7\xb3\xbe\ +\xb9\xb5\xc1\xb9\xb5\xc1\xba\xb6\xc2\xbc\xb8\xc3\xc1\xbc\xc7\xc6\ +\xc0\xcb\xca\xc4\xcd\xce\xc6\xd0\xd0\xc9\xd1\xd1\xca\xd1\xd2\xcb\ +\xd1\xd2\xc9\xd0\xd3\xc9\xcf\xd5\xca\xd0\xd5\xc9\xcf\xd5\xc9\xcf\ +\xd3\xc8\xce\xd3\xc8\xce\xd2\xc8\xce\xd3\xc9\xd0\xd2\xca\xd1\xd3\ +\xcb\xd2\xd3\xcb\xd2\xd3\xcb\xd2\xd5\xcd\xd4\xd4\xcc\xd3\xd3\xcb\ +\xd2\xd3\xcb\xd2\xd3\xcb\xd2\xd4\xcc\xd3\xd6\xcd\xd4\xd9\xcf\xd5\ +\xda\xd0\xd6\xdb\xd2\xd6\xdd\xd3\xd6\xdf\xd6\xd9\xe2\xd9\xdc\xe5\ +\xdc\xdf\xe7\xde\xe1\xe8\xe0\xe2\xe9\xe0\xe3\xe8\xe0\xe3\xe9\xe1\ +\xe4\xe6\xdf\xe2\xe6\xdf\xe2\xe7\xe0\xe3\xe6\xdf\xe2\xdb\xd3\xd9\ +\xb5\xab\xb8\xb1\xa6\xb5\xab\xa1\xb2\xa5\x9d\xaf\xa5\x9d\xae\xa7\ +\x9f\xaf\xa6\x9f\xae\xa2\x9c\xad\x9d\x98\xab\x9a\x95\xa9\x99\x94\ +\xa7\x97\x93\xa7\x95\x92\xa7\x96\x94\xa8\x98\x96\xa9\x98\x95\xa9\ +\x94\x90\xa6\x91\x8e\xa4\x8f\x8c\xa4\x8b\x88\xa1\x87\x86\x9f\x84\ +\x83\x9d\x84\x83\x9d\x82\x83\x9d\x82\x82\x9c\x82\x82\x9c\x82\x82\ +\x9c\x82\x83\x9d\x7f\x80\x9d\x7d\x7e\x9c\x7b\x7e\x9b\x7a\x7d\x9c\ +\x7c\x7d\x9e\x84\x83\xa2\x9f\x9a\xaf\x8e\x8b\xa0\x90\x8e\xa2\x93\ +\x90\xa4\x9b\x96\xa8\x9f\x99\xaa\xa0\x9a\xab\xab\xa3\xb3\xdc\xd4\ +\xdb\xe9\xe2\xe7\xeb\xe4\xe8\xed\xe6\xe9\xef\xe7\xea\xf0\xe9\xeb\ +\xf1\xea\xec\xf1\xeb\xec\xf2\xec\xed\xf2\xed\xed\xf2\xee\xed\xf1\ +\xe9\xe8\xed\xe1\xe1\xe4\xd7\xd7\xc8\xbc\xc2\xb0\xa6\xb1\xae\xa6\ +\xb1\xac\xa5\xb0\xab\xa5\xb1\xab\xa5\xb1\xab\xa5\xb1\xab\xa4\xb1\ +\xad\xa6\xb3\xad\xa7\xb3\xad\xa6\xb3\xad\xa7\xb2\xac\xa5\xb3\xad\ +\xa6\xb2\xad\xa6\xb4\xae\xa6\xb3\xad\xa6\xb3\xac\xa5\xb2\xae\xa7\ +\xb3\xad\xa7\xb3\xad\xa6\xb3\xab\xa4\xb1\xb1\xab\xb8\xd1\xcf\xd9\ +\xdc\xda\xe1\xbd\xb7\xc3\xac\xa5\xb3\xc2\xbe\xcb\xe6\xe3\xeb\xe6\ +\xe3\xec\xe0\xdd\xe6\xd8\xd4\xdf\xcd\xcb\xd6\xc1\xc0\xcc\xb6\xb5\ +\xc3\xa6\xa5\xb4\xa2\xa1\xb1\xa1\x9f\xb0\xa5\xa2\xb1\xa6\xa3\xb2\ +\xa6\xa4\xb3\xa6\xa4\xb2\x9e\x9b\xaa\x7e\x76\x8a\x98\x8b\x9a\xb7\ +\xa7\xaf\xc7\xb8\xbc\xd2\xc4\xc6\xda\xcd\xcf\xe0\xd4\xd8\xe2\xd7\ +\xda\xe0\xd5\xd8\xd9\xce\xd1\xd2\xc8\xcb\xcc\xc4\xc8\xc4\xbd\xc4\ +\xba\xb2\xbd\xb0\xa9\xb6\x00\x00\x00\xbb\xb5\xc0\xbd\xb8\xc3\xbd\ +\xb9\xc5\xbe\xba\xc6\xbf\xbb\xc7\xc5\xc0\xcb\xca\xc5\xcf\xcd\xc7\ +\xd1\xd0\xc8\xd2\xd1\xc9\xd2\xd3\xcb\xd2\xd3\xcb\xd1\xd4\xcb\xd1\ +\xd5\xcb\xd1\xd5\xca\xd0\xd6\xca\xd0\xd5\xca\xd0\xd5\xc9\xcf\xd3\ +\xc9\xcf\xd3\xc9\xcf\xd4\xca\xd0\xd5\xcb\xd1\xd5\xcb\xd1\xd5\xcc\ +\xd3\xd6\xcd\xd3\xd7\xce\xd4\xd8\xcf\xd5\xd8\xcf\xd5\xd8\xd0\xd6\ +\xd9\xd0\xd6\xda\xd0\xd6\xdb\xd0\xd6\xdb\xd2\xd7\xdc\xd3\xd7\xdd\ +\xd3\xd7\xdf\xd5\xd8\xe0\xd7\xda\xe3\xda\xdd\xe5\xdd\xde\xe7\xde\ +\xe0\xe9\xe1\xe2\xe8\xe0\xe2\xe9\xe1\xe3\xe9\xe1\xe3\xe6\xdf\xe2\ +\xe7\xe0\xe3\xe7\xe0\xe3\xe5\xde\xe1\xd9\xd1\xd7\xb6\xac\xb8\xb1\ +\xa7\xb4\xae\xa4\xb4\xa4\x9d\xb0\xa5\x9d\xaf\xa6\x9e\xb0\xa7\x9f\ +\xb0\xa5\x9d\xae\xa1\x9b\xad\x9d\x98\xab\x99\x94\xa8\x96\x94\xa8\ +\x95\x93\xa7\x94\x92\xa7\x95\x93\xa7\x98\x96\xa9\x95\x92\xa7\x92\ +\x8f\xa5\x90\x8e\xa5\x8c\x8a\xa3\x87\x86\x9f\x85\x84\x9e\x82\x82\ +\x9d\x81\x82\x9d\x81\x83\x9c\x81\x82\x9d\x80\x81\x9c\x80\x81\x9d\ +\x80\x80\x9d\x7e\x7f\x9d\x7a\x7d\x9a\x7a\x7e\x9c\x79\x7b\x9c\x7c\ +\x7d\x9e\x82\x81\x9e\x86\x84\x9d\x8a\x89\x9e\x8f\x8e\xa1\x97\x94\ +\xa6\x9b\x97\xa7\x9e\x99\xa9\x9f\x9a\xaa\xb9\xb2\xbe\xe4\xdd\xe2\ +\xec\xe4\xe6\xee\xe4\xe7\xef\xe7\xea\xf0\xea\xeb\xf1\xec\xec\xf2\ +\xec\xed\xf3\xec\xee\xf2\xed\xec\xf2\xed\xec\xf2\xec\xeb\xf1\xe7\ +\xe7\xe5\xd8\xd9\xc0\xb4\xbc\xaf\xa7\xb2\xad\xa5\xb1\xac\xa5\xb1\ +\xac\xa6\xb0\xab\xa5\xb1\xac\xa5\xb1\xac\xa5\xb1\xac\xa5\xb2\xad\ +\xa6\xb3\xad\xa6\xb3\xac\xa6\xb2\xac\xa6\xb3\xac\xa6\xb2\xad\xa6\ +\xb3\xac\xa7\xb3\xac\xa7\xb3\xac\xa6\xb3\xad\xa7\xb3\xad\xa6\xb3\ +\xad\xa6\xb3\xab\xa4\xb1\xa7\xa1\xb0\xaf\xab\xb9\xb0\xaa\xb7\xad\ +\xa6\xb2\xb4\xae\xb9\xb1\xab\xb6\xcb\xc7\xd3\xe7\xe5\xee\xe3\xe0\ +\xe9\xdd\xda\xe3\xd5\xd1\xdc\xcb\xc9\xd4\xb5\xb2\xbf\xa3\xa1\xb1\ +\xa2\x9f\xaf\xa3\xa0\xb0\xa5\xa2\xb1\xa7\xa4\xb3\xa7\xa4\xb3\xa7\ +\xa4\xb3\xa1\x9d\xab\x85\x7b\x8d\xa2\x94\xa2\xbd\xaf\xb5\xcd\xbf\ +\xc2\xd8\xcb\xcf\xe0\xd5\xd8\xe5\xdb\xde\xe6\xdc\xdf\xe3\xd9\xdb\ +\xdd\xd2\xd4\xd6\xcc\xce\xd0\xc6\xca\xc6\xbf\xc6\xbb\xb5\xbf\xb2\ +\xab\xb7\x00\x00\x00\xbf\xba\xc4\xc2\xbc\xc7\xc2\xbe\xca\xc4\xc0\ +\xcb\xc7\xc3\xce\xcb\xc6\xd0\xce\xc9\xd3\xcf\xc9\xd2\xd1\xc9\xd3\ +\xd2\xc9\xd2\xd2\xca\xd1\xd2\xca\xd1\xd4\xca\xd1\xd4\xca\xd0\xd4\ +\xca\xd0\xd3\xc9\xcf\xd5\xca\xcf\xd6\xc9\xcf\xd5\xc9\xcf\xd5\xca\ +\xd0\xd5\xcb\xd1\xd6\xcc\xd2\xd7\xcc\xd2\xd7\xcd\xd3\xd8\xce\xd4\ +\xd9\xcf\xd4\xda\xd1\xd5\xdc\xd2\xd6\xdd\xd3\xd8\xde\xd4\xd9\xde\ +\xd4\xd9\xdd\xd3\xd8\xdd\xd2\xd7\xde\xd4\xd7\xdf\xd4\xd8\xe0\xd5\ +\xd8\xe1\xd7\xda\xe5\xda\xdd\xe6\xdd\xde\xe6\xde\xdf\xe8\xe0\xe1\ +\xe9\xe0\xe1\xea\xe1\xe2\xd7\xcc\xd2\xd4\xc9\xd1\xe7\xe0\xe3\xe6\ +\xdf\xe2\xe5\xdd\xe0\xdd\xd5\xd9\xbb\xb1\xbc\xb2\xa8\xb5\xb0\xa6\ +\xb5\xa5\x9d\xb0\xa1\x9b\xae\xa5\x9d\xb0\xa7\x9e\xb0\xa6\x9f\xb0\ +\xa3\x9d\xaf\x9f\x9a\xad\x9a\x97\xaa\x95\x93\xa7\x95\x93\xa7\x94\ +\x92\xa6\x94\x92\xa6\x96\x94\xa7\x97\x95\xa9\x93\x90\xa6\x91\x8e\ +\xa5\x8d\x8b\xa3\x89\x88\xa1\x84\x84\x9e\x81\x82\x9d\x7f\x80\x9c\ +\x7e\x81\x9d\x7f\x81\x9d\x80\x81\x9d\x80\x81\x9d\x80\x80\x9e\x7e\ +\x7e\x9c\x7b\x7e\x9c\x7a\x7e\x9c\x79\x7c\x9c\x79\x7b\x9d\x7b\x7b\ +\x9b\x7e\x7f\x9b\x80\x81\x9a\x8b\x8b\x9f\x96\x94\xa4\x9b\x97\xa7\ +\x9b\x98\xa8\x9b\x97\xa7\x9c\x97\xa7\xbf\xb7\xc1\xe7\xdf\xe2\xed\ +\xe3\xe6\xee\xe5\xe8\xf1\xe9\xeb\xf2\xec\xed\xf2\xed\xee\xf2\xed\ +\xee\xf1\xec\xec\xf1\xec\xeb\xf2\xed\xeb\xf2\xeb\xeb\xe1\xd5\xd6\ +\xb8\xad\xb6\xad\xa6\xb1\xab\xa4\xb0\xaa\xa5\xaf\xac\xa5\xb1\xaa\ +\xa3\xb0\xab\xa4\xb1\xab\xa5\xb2\xac\xa5\xb2\xac\xa5\xb2\xab\xa4\ +\xb1\xab\xa5\xb1\xaa\xa5\xb1\xa9\xa5\xb1\xaa\xa5\xb1\xab\xa6\xb3\ +\xac\xa6\xb2\xab\xa5\xb2\xac\xa6\xb2\xad\xa6\xb3\xac\xa6\xb2\xa7\ +\xa1\xae\xa8\xa3\xb1\xbb\xb6\xbf\xbd\xb8\xc1\xb6\xb0\xba\xb5\xae\ +\xb9\xb2\xac\xb7\xb3\xac\xb9\xd9\xd6\xe0\xe6\xe3\xec\xe2\xdf\xe8\ +\xdb\xd8\xe2\xcf\xcb\xd4\xaa\xa7\xb5\xa2\x9f\xaf\xa2\x9f\xaf\xa4\ +\xa1\xb0\xa6\xa3\xb2\xa7\xa4\xb3\xa7\xa4\xb4\xa8\xa5\xb4\xa2\x9c\ +\xaa\x8b\x80\x91\xa9\x9b\xa7\xc1\xb2\xb9\xd0\xc2\xc6\xda\xcf\xd2\ +\xe2\xd7\xda\xe6\xdb\xde\xe5\xdb\xde\xe2\xd7\xd9\xdb\xd0\xd2\xd6\ +\xcb\xce\xcf\xc6\xca\xc5\xbe\xc6\xba\xb4\xbe\xb5\xae\xb8\x00\x00\ +\x00\xc6\xbe\xc8\xc7\xc1\xcb\xc9\xc4\xcd\xcb\xc6\xd1\xcc\xc8\xd3\ +\xcf\xc9\xd5\xd1\xcb\xd5\xd0\xcb\xd4\xcf\xc8\xd2\xcf\xc7\xd0\xcf\ +\xc7\xcf\xcf\xc7\xce\xd1\xc8\xcf\xd2\xc7\xce\xd3\xc9\xcf\xd4\xc9\ +\xcf\xd4\xc9\xd0\xd5\xcb\xcf\xd6\xcb\xd0\xd7\xcc\xd0\xd8\xcd\xd0\ +\xd9\xce\xd1\xd9\xce\xd1\xda\xcf\xd2\xdb\xd0\xd3\xdb\xd1\xd4\xde\ +\xd3\xd6\xe0\xd5\xd8\xe2\xd8\xda\xe2\xd8\xdb\xe2\xd7\xda\xe1\xd6\ +\xd9\xe0\xd5\xd8\xe0\xd5\xd8\xe0\xd5\xd8\xe0\xd6\xd8\xe3\xd8\xda\ +\xe5\xda\xdc\xe7\xdc\xde\xe8\xdd\xdf\xe8\xdd\xdf\xe9\xde\xe0\xea\ +\xe1\xe2\xd6\xc9\xd0\xb0\xa0\xb4\xbe\xb2\xc1\xd2\xc7\xcf\xe2\xd9\ +\xdc\xe1\xd8\xdb\xc5\xba\xc3\xb2\xa8\xb5\xb2\xa8\xb5\xa8\x9f\xb1\ +\x9c\x96\xab\xa1\x9b\xaf\xa3\x9d\xaf\xa4\x9e\xaf\xa4\x9e\xaf\xa1\ +\x9c\xae\x9d\x99\xac\x97\x94\xa7\x95\x93\xa7\x96\x94\xa8\x95\x92\ +\xa8\x94\x91\xa6\x95\x92\xa8\x95\x92\xa8\x91\x8e\xa5\x8e\x8b\xa4\ +\x8a\x89\xa2\x84\x84\x9e\x81\x82\x9d\x80\x81\x9d\x7d\x80\x9c\x7e\ +\x80\x9c\x7e\x7f\x9b\x7e\x7e\x9b\x7f\x7f\x9c\x7e\x7e\x9c\x7e\x7f\ +\x9e\x7c\x80\x9d\x7a\x7c\x9c\x78\x7a\x9b\x77\x78\x9a\x7a\x7a\x99\ +\x79\x7a\x95\x88\x87\x9b\x97\x94\xa4\x9a\x96\xa6\x9c\x98\xa9\x99\ +\x96\xa6\x99\x95\xa5\x98\x93\xa4\xbd\xb5\xbf\xe7\xde\xe1\xed\xe5\ +\xe7\xef\xe7\xe8\xf1\xeb\xec\xf1\xec\xed\xf2\xed\xee\xf3\xee\xec\ +\xf3\xee\xec\xf2\xed\xeb\xf2\xeb\xea\xdb\xce\xd1\xb3\xaa\xb4\xac\ +\xa4\xaf\xa9\xa3\xaf\xaa\xa3\xaf\xa9\xa2\xaf\xaa\xa3\xb0\xaa\xa3\ +\xb0\xa9\xa4\xb0\xab\xa4\xb1\xac\xa4\xb1\xab\xa5\xb2\xa9\xa4\xb1\ +\xab\xa5\xb1\xa9\xa6\xb1\xaa\xa6\xb2\xaa\xa6\xb2\xab\xa6\xb3\xab\ +\xa5\xb2\xab\xa5\xb1\xab\xa5\xb2\xab\xa5\xb2\xac\xa7\xb3\xb9\xb4\ +\xbe\xc1\xbc\xc4\xbb\xb3\xbd\xb8\xb1\xbc\xb1\xab\xb6\xad\xa6\xb3\ +\xad\xa7\xb4\xc7\xc2\xce\xe8\xe6\xed\xe8\xe3\xec\xe1\xdd\xe6\xc7\ +\xc3\xcd\xa5\xa2\xb1\xa1\x9e\xaf\xa3\xa0\xb0\xa4\xa1\xb1\xa6\xa3\ +\xb2\xa7\xa4\xb3\xa7\xa5\xb3\xab\xa7\xb4\xa0\x98\xa5\x8e\x82\x91\ +\xae\xa0\xab\xc4\xb6\xbb\xd2\xc4\xc8\xdb\xcf\xd1\xe1\xd6\xd9\xe3\ +\xd8\xdb\xe1\xd6\xd9\xdc\xd1\xd3\xd7\xcc\xce\xd0\xc7\xca\xca\xc2\ +\xc7\xc2\xba\xc3\xb9\xb2\xbc\xb6\xad\xb7\x00\x00\x00\xc8\xc0\xc9\ +\xca\xc3\xcd\xcc\xc7\xd0\xcf\xc9\xd3\xcf\xc9\xd4\xd0\xca\xd5\xd0\ +\xca\xd6\xcf\xca\xd4\xcd\xc7\xd1\xcd\xc5\xcf\xce\xc6\xce\xce\xc6\ +\xcd\xce\xc6\xcd\xd1\xc6\xce\xd1\xc7\xcd\xd2\xc8\xce\xd3\xc9\xcf\ +\xd6\xcb\xce\xd6\xcb\xcf\xd8\xcc\xcf\xd9\xcd\xcf\xdb\xce\xd1\xdb\ +\xcf\xd1\xdd\xd0\xd3\xdd\xd1\xd3\xdf\xd3\xd5\xe1\xd5\xd7\xe3\xd7\ +\xda\xe5\xd9\xdc\xe6\xda\xdc\xe5\xd9\xdc\xe4\xd8\xdb\xe2\xd7\xda\ +\xe1\xd5\xd8\xe1\xd5\xd7\xe2\xd6\xd8\xe4\xd8\xda\xe4\xd9\xdb\xe6\ +\xdb\xdd\xe6\xdb\xdd\xe7\xdc\xde\xe8\xdd\xdf\xe9\xde\xe0\xdf\xd4\ +\xd7\xb8\xa7\xb6\xa7\x97\xb0\xa4\x92\xaf\xbb\xac\xbe\xdb\xd1\xd6\ +\xd0\xc6\xcb\xb4\xa9\xb6\xb1\xa7\xb4\xaf\xa6\xb4\x99\x93\xa9\x99\ +\x93\xa9\x9d\x97\xad\xa1\x9b\xaf\xa2\x9d\xaf\xa2\x9d\xaf\xa1\x9c\ +\xaf\x9d\x99\xac\x97\x95\xa9\x97\x94\xa8\x95\x94\xa9\x93\x92\xa7\ +\x94\x91\xa7\x96\x93\xa8\x93\x91\xa6\x8e\x8d\xa4\x8a\x8a\xa2\x86\ +\x85\x9f\x83\x83\x9e\x81\x83\x9e\x7e\x81\x9d\x7d\x7f\x9c\x7d\x7e\ +\x9b\x7b\x7d\x9b\x7b\x7c\x9a\x7d\x7e\x9c\x7e\x7f\x9d\x7d\x81\x9f\ +\x7c\x80\x9d\x79\x7a\x9b\x76\x78\x9a\x77\x77\x97\x74\x74\x91\x7f\ +\x7e\x96\x95\x91\xa3\x9b\x96\xa7\x9d\x97\xa8\x9c\x96\xa7\x9b\x96\ +\xa7\x98\x95\xa6\x9a\x95\xa6\xc1\xb8\xc2\xea\xe1\xe3\xf0\xe6\xe8\ +\xf0\xe9\xe9\xf1\xeb\xeb\xf2\xed\xed\xf2\xed\xec\xf2\xee\xec\xf4\ +\xed\xea\xf2\xea\xe7\xd5\xc8\xcb\xb2\xa9\xb3\xab\xa4\xb0\xa9\xa2\ +\xb0\xa9\xa2\xaf\xa9\xa3\xb0\xa9\xa3\xb0\xa8\xa3\xaf\xa9\xa3\xaf\ +\xaa\xa4\xb1\xaa\xa4\xb1\xaa\xa6\xb2\xa9\xa5\xb0\xaa\xa4\xb1\xaa\ +\xa6\xb2\xa9\xa5\xb1\xaa\xa6\xb2\xab\xa5\xb2\xaa\xa4\xb1\xac\xa6\ +\xb3\xac\xa7\xb3\xae\xa8\xb4\xb8\xb2\xbc\xc1\xbc\xc5\xbd\xb6\xc0\ +\xb8\xb1\xbc\xb5\xae\xb9\xb1\xab\xb6\xab\xa6\xb2\xaa\xa4\xb1\xb3\ +\xae\xbc\xe1\xde\xe6\xeb\xe7\xec\xe0\xdb\xe3\xb6\xb1\xbf\xa2\x9f\ +\xaf\xa2\x9f\xaf\xa5\xa0\xaf\xa6\xa2\xb1\xa6\xa3\xb2\xa6\xa3\xb2\ +\xa9\xa5\xb3\xac\xa8\xb4\x9a\x90\x9c\x90\x81\x90\xb1\xa3\xab\xc6\ +\xb8\xbd\xd2\xc4\xc8\xd8\xcd\xd0\xdd\xd2\xd5\xde\xd3\xd6\xd9\xcf\ +\xd1\xd3\xc8\xcb\xce\xc4\xc7\xc9\xc0\xc4\xc4\xbc\xc3\xbd\xb6\xbf\ +\xb6\xaf\xb8\xb5\xac\xb5\x00\x00\x00\xc6\xbe\xc8\xca\xc3\xcc\xcb\ +\xc6\xcf\xcf\xca\xd3\xd0\xcb\xd6\xd0\xcb\xd6\xcf\xcb\xd6\xce\xc9\ +\xd4\xcc\xc7\xd1\xcc\xc5\xcf\xcc\xc4\xce\xcc\xc4\xcb\xcc\xc4\xcb\ +\xcf\xc4\xcb\xd1\xc7\xcd\xd2\xc6\xcd\xd4\xc9\xcd\xd6\xca\xce\xd7\ +\xcb\xce\xda\xcd\xcf\xdb\xce\xd0\xdd\xd0\xd2\xdd\xd0\xd2\xdd\xd0\ +\xd2\xdf\xd2\xd4\xe2\xd5\xd6\xe4\xd7\xd9\xe6\xd9\xdb\xe8\xdb\xdd\ +\xe8\xdb\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe5\xd9\xdb\xe4\xd7\xd9\xe3\ +\xd6\xd8\xe2\xd5\xd7\xe4\xd7\xd9\xe5\xd8\xda\xe6\xd9\xda\xe6\xda\ +\xdc\xe6\xdb\xdd\xe7\xdb\xdd\xe8\xdd\xdd\xe7\xdc\xdc\xd9\xcb\xcf\ +\xb7\xa7\xb7\xa7\x97\xb0\xa0\x8f\xae\xb1\x9f\xb7\xd1\xc6\xcc\xba\ +\xaf\xbb\xb1\xa7\xb4\xb3\xa9\xb6\xa1\x9a\xae\x94\x90\xa7\x95\x92\ +\xa9\x9a\x95\xab\x9d\x98\xad\x9f\x9b\xaf\x9f\x9a\xae\x9e\x9a\xae\ +\x9b\x99\xac\x97\x96\xaa\x95\x93\xa8\x94\x92\xa8\x93\x91\xa7\x93\ +\x91\xa7\x93\x92\xa8\x8e\x8f\xa6\x8b\x8b\xa3\x89\x88\xa2\x85\x86\ +\xa1\x82\x83\xa0\x80\x81\x9d\x7e\x80\x9c\x7c\x7d\x9b\x77\x7b\x98\ +\x71\x76\x94\x79\x7c\x99\x7e\x7f\x9d\x7e\x82\x9f\x7d\x81\x9e\x78\ +\x7c\x9c\x75\x76\x99\x75\x75\x96\x73\x72\x91\x79\x79\x91\x90\x8d\ +\xa0\x9b\x95\xa6\x9d\x97\xa8\x9c\x96\xa7\x9c\x97\xa7\x99\x96\xa6\ +\x97\x93\xa5\x9c\x96\xa7\xd1\xc6\xcd\xf0\xe5\xe6\xf0\xe7\xe8\xf1\ +\xe9\xe9\xf1\xea\xea\xf2\xeb\xeb\xf2\xec\xeb\xf4\xed\xea\xf0\xe6\ +\xe4\xcd\xc0\xc5\xb0\xa7\xb2\xab\xa3\xb1\xa9\xa2\xaf\xa9\xa2\xaf\ +\xa8\xa2\xaf\xaa\xa3\xb0\xa8\xa3\xaf\xa8\xa2\xaf\xa9\xa4\xb0\xa9\ +\xa5\xb1\xa8\xa4\xb3\xa7\xa3\xb0\xa8\xa4\xb1\xaa\xa5\xb2\xa9\xa5\ +\xb2\xa9\xa5\xb1\xaa\xa5\xb2\xb4\xaf\xba\xbe\xb9\xc3\xc0\xbc\xc4\ +\xbd\xb8\xc1\xbf\xb9\xc3\xc1\xbc\xc5\xba\xb3\xbc\xb6\xae\xb9\xb1\ +\xac\xb6\xb0\xa9\xb5\xa8\xa2\xb0\xa6\xa1\xb0\xa6\xa1\xb0\xcf\xca\ +\xd5\xeb\xe7\xed\xd1\xcc\xd5\xa7\xa4\xb3\xa2\x9f\xaf\xa4\xa0\xb0\ +\xa6\xa2\xb1\xa6\xa3\xb2\xa5\xa2\xb1\xa8\xa4\xb2\xaa\xa6\xb2\xad\ +\xa8\xb4\x90\x83\x90\x93\x82\x8e\xb5\xa5\xac\xc6\xb8\xbc\xcf\xc3\ +\xc6\xd5\xca\xcd\xd7\xcd\xd0\xd5\xcb\xcf\xce\xc5\xc9\xc7\xbe\xc2\ +\xc2\xba\xbe\xbd\xb6\xbd\xba\xb4\xbd\xb5\xb0\xb9\xad\xa8\xb2\xb0\ +\xa8\xb2\x00\x00\x00\xc3\xbb\xc5\xc8\xc1\xcb\xcb\xc5\xcf\xcf\xca\ +\xd3\xd1\xcc\xd7\xd0\xcc\xd7\xd0\xcb\xd6\xcd\xc9\xd4\xcc\xc6\xd1\ +\xcb\xc6\xd0\xcb\xc3\xcd\xca\xc2\xc9\xca\xc1\xc8\xcd\xc2\xc9\xcf\ +\xc5\xcb\xd2\xc6\xcb\xd4\xc8\xcb\xd7\xca\xcd\xda\xcc\xcf\xdb\xce\ +\xd0\xdd\xd0\xd2\xde\xd2\xd3\xdf\xd3\xd4\xe0\xd3\xd5\xe1\xd5\xd6\ +\xe3\xd6\xd8\xe6\xd9\xdb\xe8\xdb\xdc\xe9\xdc\xdd\xea\xdd\xde\xe9\ +\xdd\xde\xe9\xdc\xde\xe7\xda\xdc\xe5\xd8\xda\xe3\xd6\xd8\xe2\xd5\ +\xd7\xe2\xd6\xd7\xe3\xd7\xd8\xe4\xd8\xd8\xe4\xd9\xd9\xe6\xd9\xd9\ +\xe6\xda\xda\xe6\xda\xda\xe8\xdb\xdb\xe7\xdb\xdb\xd7\xca\xcb\xb4\ +\xa4\xb6\xa8\x99\xb2\xa1\x8f\xaf\xa9\x97\xb2\xb7\xa9\xba\xb1\xa6\ +\xb4\xb1\xa8\xb4\xae\xa4\xb3\x98\x93\xa9\x94\x90\xa8\x94\x91\xa9\ +\x97\x93\xaa\x9a\x96\xac\x9b\x98\xad\x9a\x99\xad\x9c\x9a\xae\x9a\ +\x98\xac\x96\x94\xaa\x95\x93\xa9\x92\x92\xa7\x8f\x90\xa5\x90\x91\ +\xa7\x8f\x90\xa6\x8d\x8d\xa5\x8c\x8c\xa4\x87\x87\xa1\x85\x86\xa1\ +\x82\x83\x9f\x80\x81\x9e\x7a\x7e\x9b\x72\x78\x95\x4d\x63\x79\x5b\ +\x6a\x83\x7a\x7e\x9c\x7e\x82\x9f\x7e\x82\x9f\x79\x7e\x9d\x74\x77\ +\x99\x72\x73\x95\x72\x71\x90\x76\x75\x8e\x8c\x89\x9d\x9a\x95\xa6\ +\x9d\x97\xa8\x9d\x98\xa9\x9c\x98\xa8\x99\x96\xa6\x96\x94\xa4\x94\ +\x91\xa4\xa8\xa0\xaf\xdf\xd4\xd8\xec\xe1\xe3\xef\xe5\xe6\xf0\xe7\ +\xe7\xf1\xe9\xe9\xf2\xea\xe9\xf3\xec\xe9\xec\xe2\xe1\xc4\xb8\xbe\ +\xac\xa4\xb1\xaa\xa3\xb0\xa9\xa3\xaf\xa7\xa0\xae\xa8\xa2\xae\xa8\ +\xa2\xaf\xa7\xa3\xaf\xa6\xa2\xaf\x99\x99\xaa\x7e\x86\xa1\x9b\x9c\ +\xae\xa4\xa1\xb0\x9f\x9d\xad\xa5\xa2\xb0\xa7\xa3\xb2\xa9\xa5\xb2\ +\xb2\xae\xb9\xbf\xba\xc3\xbf\xba\xc3\xc0\xbb\xc4\xc1\xbc\xc5\xbf\ +\xba\xc3\xbc\xb6\xc0\xb5\xaf\xba\xb5\xaf\xba\xb2\xac\xb7\xaf\xa8\ +\xb5\xa9\xa4\xb0\xa4\x9f\xae\xa1\x9d\xad\xc5\xc1\xce\xe6\xe2\xe8\ +\xba\xb4\xc1\xa2\x9e\xaf\xa3\xa0\xaf\xa3\xa0\xaf\xa5\xa2\xb1\xa5\ +\xa1\xb1\xa5\xa2\xb1\xa6\xa3\xb1\xaa\xa6\xb2\xac\xa7\xb3\x82\x73\ +\x81\x96\x85\x91\xb5\xa5\xab\xc3\xb5\xb9\xca\xbe\xc1\xcf\xc5\xc8\ +\xcf\xc6\xca\xca\xc1\xc7\xc0\xb9\xbe\xb8\xb1\xb6\xb1\xab\xb3\xad\ +\xaa\xb4\xab\xa9\xb4\xa7\xa4\xae\xa4\xa0\xab\xab\xa6\xb0\x00\x00\ +\x00\xc2\xba\xc4\xc6\xbe\xc8\xcb\xc3\xcd\xcf\xc8\xd2\xd1\xcc\xd5\ +\xd2\xcd\xd6\xd1\xcc\xd6\xcf\xc9\xd4\xcd\xc7\xd2\xcc\xc5\xcf\xca\ +\xc2\xcc\xc9\xc1\xc9\xca\xc0\xc8\xcc\xc0\xc7\xce\xc3\xc9\xd1\xc6\ +\xc9\xd5\xc7\xcb\xd7\xca\xcc\xda\xcd\xcf\xdd\xcf\xd0\xde\xd1\xd3\ +\xe0\xd2\xd3\xe1\xd4\xd5\xe2\xd4\xd6\xe4\xd6\xd7\xe6\xd8\xda\xe8\ +\xdb\xdb\xea\xdc\xdd\xea\xdd\xde\xea\xde\xde\xea\xde\xde\xe9\xdd\ +\xdd\xe8\xdc\xdc\xe7\xda\xdb\xe5\xd7\xd8\xe3\xd5\xd6\xe2\xd4\xd5\ +\xe2\xd5\xd6\xe3\xd5\xd6\xe3\xd7\xd7\xe4\xd7\xd7\xe5\xd8\xd8\xe6\ +\xd9\xda\xe6\xd9\xda\xe7\xda\xda\xe5\xd8\xd8\xcd\xbc\xc2\xb1\xa1\ +\xb3\xaa\x9a\xb3\xa4\x93\xb0\x9e\x8c\xae\xa4\x95\xb0\xad\xa1\xb2\ +\xb0\xa7\xb6\xa3\x9c\xb0\x96\x93\xaa\x95\x91\xaa\x94\x91\xaa\x95\ +\x92\xaa\x97\x94\xab\x98\x96\xac\x98\x96\xab\x97\x96\xab\x96\x94\ +\xaa\x93\x93\xa8\x92\x93\xa8\x90\x91\xa6\x8f\x90\xa7\x8f\x90\xa7\ +\x8f\x8f\xa7\x8d\x8d\xa6\x8c\x8a\xa4\x87\x87\xa2\x84\x85\xa1\x82\ +\x84\xa0\x7d\x80\x9d\x72\x79\x96\x49\x64\x77\x46\x62\x73\x70\x77\ +\x93\x7c\x7f\x9e\x7c\x81\x9e\x78\x7e\x9c\x73\x78\x98\x6c\x6d\x90\ +\x6d\x6e\x8d\x70\x70\x8c\x86\x83\x99\x98\x93\xa4\x9d\x97\xa8\x9d\ +\x98\xa9\x9b\x98\xa8\x99\x96\xa7\x97\x94\xa6\x95\x93\xa6\x97\x92\ +\xa5\xae\xa5\xb3\xc8\xbb\xc6\xd8\xcb\xd2\xe7\xdc\xde\xef\xe5\xe5\ +\xf1\xe7\xe7\xf2\xe8\xe6\xe2\xd5\xd5\xb8\xae\xb7\xa8\xa3\xb0\xa8\ +\xa2\xaf\xa5\xa1\xad\x9e\x9c\xab\xa6\xa1\xae\xa6\xa2\xb0\xa6\xa2\ +\xaf\xa6\xa1\xaf\x8d\x91\xa6\x67\x77\x96\x93\x95\xa9\xa2\x9f\xaf\ +\x7d\x82\x99\x93\x94\xa7\xa2\xa0\xb0\xa8\xa6\xb3\xbb\xb6\xc0\xbe\ +\xb9\xc2\xbc\xb7\xc1\xbe\xba\xc2\xbc\xb7\xc1\xb9\xb3\xbe\xb7\xb0\ +\xbb\xb4\xae\xb9\xb3\xad\xb8\xb0\xaa\xb5\xb0\xa9\xb5\xab\xa6\xb2\ +\xa3\x9e\xad\x9e\x9b\xab\xc0\xbd\xca\xcf\xca\xd3\xa4\xa1\xb0\xa2\ +\x9d\xae\xa3\x9f\xaf\xa6\xa1\xb1\xa4\xa1\xb1\xa4\xa1\xb0\xa6\xa3\ +\xb2\xa9\xa5\xb2\xab\xa8\xb3\x9d\x95\xa3\x80\x71\x7f\x9b\x89\x95\ +\xb3\xa3\xaa\xbf\xb1\xb6\xc5\xb9\xbd\xc8\xbd\xc3\xc6\xbe\xc4\xbc\ +\xb5\xbb\xad\xa7\xaf\x9d\x9c\xa5\x97\x98\xa3\x98\x9b\xa6\x97\x9a\ +\xa7\x93\x95\xa1\x98\x96\xa3\xa2\x9f\xaa\x00\x00\x00\xc2\xba\xc4\ +\xc7\xbf\xc9\xcb\xc4\xcd\xcf\xc8\xd2\xd1\xcb\xd5\xd1\xcc\xd5\xd0\ +\xcb\xd5\xd0\xcb\xd4\xcf\xc8\xd2\xce\xc7\xd0\xcc\xc4\xcd\xca\xc2\ +\xc9\xca\xbf\xc8\xcb\xc1\xc7\xcf\xc3\xc8\xd2\xc5\xc9\xd4\xc7\xca\ +\xd7\xc9\xcb\xda\xcd\xce\xdd\xcf\xd0\xe0\xd2\xd3\xe1\xd3\xd4\xe2\ +\xd4\xd5\xe4\xd6\xd7\xe6\xd7\xd8\xe7\xda\xda\xe8\xda\xdb\xea\xdc\ +\xdd\xeb\xdd\xde\xeb\xdd\xde\xeb\xde\xde\xea\xdc\xdd\xe9\xdc\xdd\ +\xe8\xda\xdb\xe6\xd8\xd9\xe4\xd6\xd7\xe3\xd4\xd5\xe3\xd4\xd5\xe2\ +\xd4\xd5\xe3\xd4\xd5\xe3\xd5\xd5\xe3\xd6\xd6\xe5\xd7\xd6\xe5\xd8\ +\xd6\xe6\xd8\xd6\xe6\xd8\xd7\xe1\xd2\xd0\xcb\xba\xc0\xb4\xa4\xb5\ +\xac\x9e\xb4\xa7\x98\xb2\xa2\x91\xaf\x9d\x8d\xad\xa1\x93\xaf\xa6\ +\x9d\xb2\x9d\x96\xae\x98\x94\xab\x95\x92\xab\x95\x91\xaa\x94\x91\ +\xaa\x96\x92\xab\x95\x93\xab\x95\x93\xaa\x93\x93\xa8\x93\x94\xa9\ +\x92\x93\xa8\x91\x93\xa7\x90\x91\xa8\x8f\x90\xa8\x91\x92\xa9\x90\ +\x90\xa8\x8e\x8d\xa6\x8b\x8a\xa4\x88\x87\xa4\x84\x85\xa1\x81\x83\ +\xa0\x75\x7c\x99\x4d\x68\x7c\x3d\x5f\x6e\x53\x69\x7d\x72\x77\x96\ +\x7a\x7e\x9c\x76\x7d\x9a\x71\x79\x96\x5f\x63\x87\x63\x65\x84\x71\ +\x72\x8d\x80\x7e\x96\x94\x90\xa3\x9b\x96\xa8\x9e\x99\xaa\x9c\x98\ +\xa9\x9a\x97\xa8\x98\x95\xa6\x98\x95\xa7\x97\x94\xa7\x99\x93\xa6\ +\xa5\x9c\xb0\xb0\xa4\xb7\xbf\xb1\xc0\xd9\xcb\xd1\xeb\xdf\xe0\xef\ +\xe4\xe3\xd6\xc8\xca\xac\xa5\xb1\xa5\xa0\xaf\xa5\xa1\xb0\x94\x94\ +\xa5\x6b\x75\x8f\x99\x98\xa9\xa6\xa1\xaf\xa5\xa1\xb0\xa5\xa1\xb0\ +\xa1\x9f\xae\x9f\x9e\xae\x9c\x9a\xab\xa0\x9e\xad\x98\x98\xaa\x99\ +\x99\xaa\x8e\x90\xa6\xb2\xaf\xbb\xba\xb4\xbf\xbc\xb7\xc0\xbe\xb8\ +\xc2\xbb\xb5\xbf\xb9\xb3\xbe\xb9\xb3\xbe\xb8\xb1\xbc\xb4\xae\xb9\ +\xb3\xad\xb8\xb0\xaa\xb6\xb1\xaa\xb6\xad\xa7\xb3\xa9\xa5\xb2\xab\ +\xa6\xb3\xb0\xab\xb9\xad\xa8\xb6\xa0\x9d\xad\xa2\x9e\xae\xa4\x9f\ +\xaf\xa5\xa1\xb2\xa3\xa0\xb0\xa4\xa1\xb1\xa8\xa5\xb3\xaa\xa6\xb2\ +\xab\xa7\xb3\x90\x88\x97\x8e\x80\x8e\x9c\x8b\x96\xb0\xa1\xa7\xb9\ +\xad\xb2\xbf\xb4\xba\xc0\xb6\xbd\xbb\xb3\xb9\xa8\xa2\xaa\x8a\x8d\ +\x98\x74\x7e\x8c\x75\x81\x8f\x7d\x88\x97\x7e\x88\x96\x7f\x87\x94\ +\x8d\x8f\x9d\x98\x97\xa5\x00\x00\x00\xc2\xba\xc4\xc7\xbf\xc9\xcc\ +\xc4\xce\xcf\xc7\xd1\xd1\xca\xd4\xd1\xcc\xd5\xd2\xcd\xd6\xd1\xcb\ +\xd4\xd1\xc9\xd3\xcf\xc7\xd1\xcd\xc4\xcd\xcc\xc3\xca\xcc\xc2\xc9\ +\xcf\xc3\xc8\xd1\xc5\xc8\xd3\xc6\xc8\xd5\xc7\xc9\xd8\xca\xcc\xdb\ +\xcd\xce\xdc\xce\xcf\xdf\xd1\xd2\xe1\xd4\xd5\xe4\xd5\xd6\xe6\xd8\ +\xd9\xe8\xda\xdb\xe9\xdb\xdc\xe9\xdb\xdc\xeb\xdd\xde\xeb\xdc\xde\ +\xea\xdc\xdd\xeb\xdd\xde\xea\xdc\xdd\xea\xdd\xdb\xe9\xda\xdb\xe9\ +\xd9\xd9\xe6\xd7\xd7\xe5\xd6\xd4\xe4\xd5\xd4\xe4\xd5\xd2\xe3\xd4\ +\xd3\xe4\xd5\xd2\xe3\xd5\xd3\xe4\xd6\xd4\xe5\xd6\xd4\xe6\xd7\xd5\ +\xe6\xd7\xd5\xe6\xd7\xd5\xe2\xd2\xd1\xd0\xbe\xc2\xb7\xa8\xb6\xaf\ +\xa2\xb4\xaa\x9d\xb4\xa6\x97\xb2\xa0\x90\xaf\x99\x8a\xab\x95\x8b\ +\xaa\x97\x92\xac\x98\x95\xad\x98\x94\xac\x97\x94\xad\x95\x92\xab\ +\x95\x93\xab\x95\x94\xac\x96\x94\xab\x96\x95\xab\x93\x95\xaa\x92\ +\x94\xa8\x92\x94\xaa\x90\x92\xaa\x8f\x92\xaa\x90\x90\xa8\x8f\x8f\ +\xa7\x8e\x8d\xa7\x8b\x8b\xa5\x88\x89\xa4\x86\x87\xa3\x7c\x80\x9d\ +\x53\x6b\x80\x40\x63\x71\x40\x60\x70\x53\x65\x7e\x72\x79\x98\x75\ +\x7c\x99\x6f\x7a\x96\x5a\x61\x83\x56\x59\x7a\x72\x73\x8f\x7f\x7d\ +\x95\x91\x8e\xa2\x9b\x97\xa8\x9e\x98\xa9\x9e\x9a\xaa\x9d\x9a\xaa\ +\x9b\x98\xa8\x9a\x98\xa9\x9a\x96\xa8\x97\x93\xa6\x9b\x97\xa9\xa8\ +\xa0\xb2\xab\xa1\xb5\xb1\xa5\xb8\xcd\xbf\xc7\xe2\xd5\xd7\xcc\xbf\ +\xc1\xa6\xa0\xaf\xa5\xa0\xaf\xa4\x9f\xae\x9d\x9b\xab\x89\x8c\xa1\ +\x9b\x99\xaa\xa2\x9f\xae\xa4\xa0\xaf\xa4\xa0\xaf\xa4\xa1\xb0\xa5\ +\xa1\xb1\x9d\x9c\xad\x9b\x9a\xab\xa0\x9e\xae\x9b\x9a\xab\xa4\xa1\ +\xb1\xb8\xb3\xbe\xb7\xb1\xbc\xb9\xb2\xbe\xbb\xb6\xc0\xb7\xb1\xbd\ +\xb9\xb3\xbe\xb7\xb1\xbc\xb6\xb0\xbb\xb1\xab\xb7\xb0\xa9\xb6\xb1\ +\xaa\xb7\xb0\xa9\xb6\xae\xa7\xb3\xb1\xab\xb7\xb6\xb0\xba\xb0\xab\ +\xb7\xa6\xa2\xb1\xa2\x9d\xae\xa3\x9f\xae\xa4\xa0\xb0\xa2\x9f\xaf\ +\xa3\xa0\xb0\xa6\xa3\xb2\xa8\xa5\xb3\xab\xa7\xb3\xa1\x9c\xaa\xa3\ +\x9b\xa7\x9e\x90\x9c\x9f\x8e\x98\xab\x9c\xa3\xb5\xa7\xad\xb7\xac\ +\xb3\xb3\xab\xb2\xab\xa4\xab\x8b\x8b\x96\x5e\x6d\x7d\x52\x69\x79\ +\x5b\x70\x80\x63\x74\x84\x67\x76\x86\x70\x7c\x8c\x81\x88\x98\x8b\ +\x8f\x9e\x00\x00\x00\xc2\xba\xc4\xc7\xbf\xc9\xca\xc3\xcd\xcd\xc5\ +\xcf\xcf\xc8\xd2\xd0\xca\xd3\xd0\xcb\xd4\xd2\xca\xd4\xd1\xc9\xd2\ +\xcf\xc7\xd0\xce\xc6\xcd\xce\xc4\xcb\xce\xc3\xca\xd0\xc4\xc8\xd2\ +\xc4\xc8\xd4\xc6\xc9\xd8\xca\xcc\xd9\xcb\xcd\xdb\xcd\xce\xdd\xcf\ +\xd0\xdf\xd1\xd2\xe1\xd2\xd3\xe4\xd6\xd7\xe7\xd9\xda\xe9\xdb\xdc\ +\xea\xdc\xdd\xeb\xdd\xde\xea\xdd\xdd\xea\xdd\xdd\xea\xdc\xdd\xeb\ +\xdd\xdc\xeb\xdc\xda\xeb\xdd\xda\xea\xdc\xda\xea\xdb\xd9\xe8\xd9\ +\xd7\xe6\xd7\xd5\xe5\xd6\xd4\xe5\xd6\xd4\xe4\xd5\xd3\xe4\xd5\xd4\ +\xe4\xd4\xd2\xe5\xd5\xd3\xe5\xd6\xd3\xe6\xd6\xd4\xe6\xd6\xd4\xe5\ +\xd5\xd3\xe5\xd4\xd2\xe3\xd2\xd0\xd4\xc3\xc4\xbd\xad\xb7\xb2\xa5\ +\xb5\xad\xa2\xb5\xab\x9e\xb5\xa4\x96\xb1\x9d\x8f\xad\x96\x8b\xab\ +\x97\x8f\xac\x98\x92\xad\x99\x95\xae\x98\x95\xae\x98\x95\xad\x97\ +\x95\xae\x95\x95\xac\x94\x95\xad\x94\x95\xab\x93\x93\xaa\x90\x91\ +\xa9\x8f\x91\xa9\x8f\x91\xa9\x8f\x91\xa9\x91\x91\xa9\x91\x91\xa8\ +\x90\x8f\xa7\x8e\x8d\xa7\x8a\x8a\xa4\x82\x84\xa0\x5c\x6f\x87\x40\ +\x61\x71\x3c\x5e\x6d\x40\x5d\x70\x57\x67\x82\x70\x7a\x96\x71\x7b\ +\x98\x5b\x65\x85\x49\x4f\x70\x71\x72\x8d\x7d\x7d\x95\x8f\x8c\xa0\ +\x98\x95\xa7\x9d\x98\xa8\x9e\x99\xa9\x9c\x99\xa9\x9d\x9a\xaa\x9b\ +\x98\xa8\x99\x97\xa7\x97\x94\xa6\x97\x93\xa6\xa0\x9a\xac\xa9\xa1\ +\xb4\xab\xa1\xb4\xae\xa2\xb5\xc0\xb3\xbe\xb4\xab\xb7\xa3\x9f\xae\ +\xa5\xa1\xb0\xa8\xa2\xb1\xaf\xaa\xb7\xad\xa8\xb6\xa3\x9f\xaf\xa1\ +\x9e\xae\xa2\x9f\xae\xa1\x9e\xae\xa1\x9e\xae\xa4\xa1\xb0\xa3\xa1\ +\xb0\x97\x95\xa8\x8d\x8d\xa0\x93\x93\xa6\xad\xaa\xb7\xb3\xae\xb9\ +\xb3\xad\xb9\xb6\xb0\xbb\xb9\xb3\xbe\xb5\xaf\xbb\xb7\xb1\xbc\xb8\ +\xb2\xbd\xb5\xaf\xba\xb2\xac\xb8\xb2\xab\xb7\xb2\xab\xb7\xb2\xac\ +\xb7\xb1\xac\xb7\xb6\xb0\xbb\xb8\xb2\xbd\xb4\xad\xb9\xad\xa7\xb6\ +\xa4\x9f\xaf\xa4\x9f\xae\xa4\xa0\xaf\xa3\xa0\xb0\xa3\xa0\xb0\xa5\ +\xa2\xb1\xa8\xa5\xb3\xa9\xa4\xb2\xaf\xa8\xb5\xb5\xab\xb5\xa9\x9c\ +\xa7\xa3\x93\x9d\xa4\x94\x9d\xaa\x9c\xa3\xab\x9f\xa6\xa6\x9d\xa6\ +\x9a\x93\x9e\x71\x77\x85\x43\x5d\x70\x3c\x5b\x6e\x42\x60\x72\x4b\ +\x66\x78\x54\x6a\x7c\x62\x73\x84\x74\x7f\x90\x81\x88\x9a\x00\x00\ +\x00\xc4\xbc\xc6\xc7\xbf\xc9\xca\xc2\xcc\xcd\xc5\xcf\xcf\xc7\xd1\ +\xcf\xc9\xd2\xd0\xca\xd3\xd1\xca\xd3\xd0\xc8\xd2\xd0\xc8\xcf\xcf\ +\xc7\xce\xcf\xc5\xcc\xd0\xc5\xca\xd2\xc6\xca\xd4\xc6\xca\xd6\xc8\ +\xca\xd8\xca\xcc\xda\xcb\xcd\xdb\xcd\xce\xde\xcf\xd0\xe0\xd1\xd1\ +\xe2\xd3\xd4\xe4\xd6\xd8\xe8\xda\xdb\xea\xdc\xdd\xeb\xdd\xde\xea\ +\xdc\xde\xea\xdc\xdd\xeb\xdc\xdb\xeb\xdd\xdb\xeb\xdc\xda\xeb\xdd\ +\xdb\xec\xdd\xdb\xeb\xdc\xda\xea\xdb\xd9\xea\xda\xd8\xe9\xd9\xd7\ +\xe8\xd8\xd6\xe7\xd7\xd5\xe7\xd6\xd4\xe7\xd6\xd4\xe5\xd5\xd2\xe5\ +\xd5\xd2\xe5\xd5\xd2\xe6\xd5\xd2\xe6\xd5\xd2\xe5\xd4\xd1\xe5\xd4\ +\xd1\xe5\xd5\xd2\xe4\xd5\xd3\xdb\xcd\xcc\xc7\xb7\xbe\xb4\xa7\xb6\ +\xb0\xa4\xb5\xae\xa1\xb5\xab\x9e\xb5\xa8\x9c\xb4\xa5\x99\xb3\xa9\ +\x9f\xb8\xa0\x97\xb3\x9a\x94\xaf\x9a\x96\xaf\x9a\x97\xb0\x9a\x97\ +\xb0\x98\x97\xae\x96\x95\xad\x95\x95\xac\x91\x92\xaa\x8e\x90\xa8\ +\x8f\x91\xa9\x8f\x91\xa9\x94\x95\xaa\x96\x96\xac\x94\x95\xab\x92\ +\x91\xa9\x8e\x8d\xa7\x89\x89\xa4\x6c\x78\x93\x46\x64\x77\x40\x61\ +\x71\x3b\x59\x6c\x40\x59\x70\x5b\x69\x85\x71\x7d\x99\x5f\x6b\x89\ +\x41\x47\x6a\x6d\x6d\x89\x7d\x7c\x94\x8c\x89\x9e\x98\x94\xa6\x9d\ +\x98\xa8\x9e\x99\xaa\x9e\x9b\xab\x9d\x9a\xaa\x9c\x99\xa9\x9c\x99\ +\xa9\x9a\x97\xa7\x98\x94\xa6\x98\x94\xa7\xa4\x9d\xb0\xa9\xa1\xb5\ +\xaa\xa1\xb3\xa8\x9f\xb2\xa4\x9e\xb0\xa4\xa1\xb0\xad\xa9\xb7\xb1\ +\xab\xb7\xb4\xad\xba\xb2\xac\xb8\xac\xa7\xb5\xa6\xa1\xb0\x9f\x9d\ +\xad\x77\x84\x9e\x7d\x87\xa0\xa1\xa0\xaf\xa3\xa2\xb0\x9b\x9a\xac\ +\x6f\x76\x90\x81\x85\x9d\xac\xa9\xb6\xb2\xac\xb8\xb2\xad\xb9\xb4\ +\xad\xb9\xb6\xb0\xbc\xb4\xae\xba\xb5\xaf\xba\xb7\xb0\xbb\xb4\xae\ +\xba\xb2\xac\xb8\xb3\xad\xb9\xb3\xad\xb9\xb5\xae\xb9\xb6\xaf\xba\ +\xb7\xb1\xbc\xba\xb5\xbf\xba\xb5\xbf\xb5\xae\xba\xa9\xa5\xb3\xa4\ +\xa0\xaf\xa3\xa0\xaf\xa2\x9e\xaf\xa4\xa1\xb0\xa7\xa4\xb2\xaa\xa6\ +\xb2\xb4\xae\xb9\xc9\xbf\xc5\xbf\xb3\xba\xb1\xa3\xae\xa5\x96\xa1\ +\x9e\x8e\x97\x9e\x8f\x97\x9b\x8f\x99\x94\x8b\x97\x8b\x87\x94\x64\ +\x6d\x7e\x3b\x58\x6c\x32\x54\x68\x35\x58\x6b\x3d\x5d\x70\x46\x62\ +\x75\x58\x6c\x80\x6d\x7a\x8c\x7e\x85\x97\x00\x00\x00\xc5\xbc\xc6\ +\xc7\xbf\xc9\xc9\xc1\xcb\xcc\xc4\xce\xce\xc6\xd0\xd1\xc9\xd3\xd2\ +\xca\xd4\xd2\xca\xd4\xd1\xca\xd2\xd1\xc9\xd0\xd0\xc7\xce\xd1\xc6\ +\xcc\xd2\xc6\xcc\xd4\xc7\xcb\xd6\xc8\xcc\xd7\xca\xcc\xd8\xca\xcc\ +\xda\xcc\xcd\xdd\xcd\xce\xde\xce\xcf\xe0\xd1\xd0\xe3\xd3\xd3\xe6\ +\xd7\xd7\xe9\xdb\xd9\xeb\xdc\xda\xea\xdc\xdc\xea\xdd\xdc\xeb\xdc\ +\xdb\xec\xdd\xdb\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\xda\xea\xdc\xda\ +\xec\xdd\xdb\xeb\xdd\xda\xec\xdc\xda\xec\xdb\xd8\xeb\xda\xd7\xea\ +\xd9\xd6\xe9\xd8\xd5\xe7\xd6\xd3\xe6\xd5\xd2\xe6\xd5\xd2\xe6\xd4\ +\xd1\xe5\xd4\xd1\xe6\xd4\xd1\xe5\xd4\xd1\xe5\xd5\xd2\xe5\xd5\xd2\ +\xe6\xd7\xd5\xe5\xd8\xd7\xe1\xd4\xd4\xd1\xc1\xc5\xbb\xac\xb7\xb0\ +\xa4\xb5\xaf\xa4\xb5\xae\xa3\xb6\xaf\xa4\xb7\xbb\xb0\xc1\xc2\xba\ +\xca\xbb\xb1\xc5\xad\xa5\xbc\xa3\x9d\xb5\x9e\x9a\xb2\x9b\x99\xb0\ +\x99\x98\xaf\x97\x97\xae\x96\x96\xae\x94\x95\xac\x90\x92\xaa\x91\ +\x93\xaa\x93\x95\xaa\x97\x97\xad\x96\x97\xac\x96\x95\xab\x93\x92\ +\xab\x90\x90\xa8\x74\x7c\x99\x48\x63\x7a\x43\x64\x75\x3e\x5c\x70\ +\x3d\x55\x6d\x46\x5b\x75\x6a\x79\x95\x5f\x6c\x8b\x52\x55\x79\x80\ +\x7e\x97\x81\x7e\x96\x8b\x88\x9e\x95\x91\xa4\x9b\x97\xa8\x9d\x99\ +\xaa\x9d\x9a\xaa\x9d\x9a\xaa\x9d\x9a\xaa\x9b\x98\xa8\x9c\x99\xa9\ +\x99\x96\xa6\x97\x93\xa6\x9c\x97\xaa\xa7\xa0\xb3\xa9\xa0\xb3\xa8\ +\xa0\xb2\xa3\x9e\xaf\xa5\xa2\xb1\xae\xaa\xb7\xb1\xaa\xb7\xb2\xae\ +\xba\xb3\xae\xba\xb0\xab\xb7\xa9\xa5\xb3\x9f\x9c\xad\x4c\x6a\x8d\ +\x59\x73\x94\xa0\x9f\xae\xa1\xa0\xaf\x9c\x9b\xac\x67\x76\x94\x79\ +\x83\x9e\xac\xa8\xb6\xaf\xa8\xb6\xb1\xac\xb9\xb3\xad\xb9\xb5\xae\ +\xbb\xb4\xad\xb9\xb4\xad\xb9\xb7\xb1\xbc\xb6\xb0\xbb\xb5\xaf\xba\ +\xb5\xaf\xba\xb5\xaf\xba\xb7\xb0\xbb\xba\xb4\xbe\xbd\xb8\xc1\xc2\ +\xbd\xc5\xc0\xbb\xc4\xbc\xb7\xc0\xb2\xac\xb9\xa4\xa0\xaf\xa2\x9f\ +\xae\xa2\xa0\xaf\xa6\xa3\xb2\xaa\xa6\xb2\xb3\xac\xb7\xd3\xca\xcf\ +\xd4\xc9\xcc\xc6\xba\xc0\xb5\xa8\xb1\xa7\x98\xa2\x97\x88\x92\x91\ +\x82\x8e\x8a\x80\x8c\x7e\x7a\x8a\x78\x78\x8a\x5a\x66\x79\x37\x53\ +\x6b\x30\x50\x67\x31\x53\x69\x37\x57\x6d\x45\x61\x76\x59\x6c\x81\ +\x6c\x78\x8d\x7e\x84\x98\x00\x00\x00\xc6\xbe\xc8\xc8\xc0\xca\xc8\ +\xc0\xca\xcc\xc4\xce\xcf\xc7\xd1\xd2\xca\xd4\xd3\xcb\xd5\xd2\xcb\ +\xd3\xd2\xcb\xd1\xd2\xca\xd1\xd1\xc9\xcf\xd2\xc8\xce\xd3\xc8\xce\ +\xd6\xc9\xcc\xd7\xc9\xcd\xd8\xcb\xce\xd9\xcb\xcc\xda\xcb\xcd\xdc\ +\xcc\xcd\xdd\xce\xce\xe2\xd0\xcf\xe3\xd4\xd1\xe6\xd7\xd5\xe9\xd9\ +\xd8\xea\xdb\xd9\xeb\xdc\xda\xeb\xdc\xda\xeb\xdc\xda\xea\xdb\xd9\ +\xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xea\xda\xd9\xeb\xdb\xd8\xec\ +\xdc\xd9\xed\xdc\xd9\xed\xdc\xd9\xec\xdb\xd8\xeb\xda\xd7\xeb\xd9\ +\xd5\xeb\xd7\xd3\xe8\xd6\xd2\xe8\xd5\xd2\xe7\xd4\xd0\xe5\xd2\xce\ +\xe5\xd2\xcf\xe5\xd2\xce\xe7\xd5\xd1\xe7\xd6\xd3\xe7\xd7\xd5\xe7\ +\xda\xd8\xe6\xd9\xd8\xe7\xdb\xdb\xdc\xd0\xd0\xc3\xb6\xbe\xb5\xa9\ +\xb7\xb0\xa6\xb6\xaf\xa5\xb6\xb0\xa6\xb7\xbc\xb3\xc1\xcb\xc3\xce\ +\xcd\xc6\xd1\xc8\xc1\xd0\xbe\xb7\xc7\xac\xa8\xbc\xa0\x9c\xb3\x99\ +\x98\xb1\x98\x98\xaf\x99\x99\xae\x96\x96\xab\x94\x96\xac\x94\x95\ +\xab\x95\x96\xab\x9a\x99\xae\x9b\x9a\xaf\x98\x97\xad\x93\x93\xab\ +\x7f\x85\xa0\x4c\x66\x7d\x42\x61\x74\x40\x5e\x72\x3c\x51\x6b\x3c\ +\x4d\x6b\x53\x61\x83\x52\x5e\x81\x78\x76\x93\x9e\x9a\xad\x84\x82\ +\x98\x8b\x89\x9e\x93\x8f\xa3\x99\x95\xa7\x9d\x98\xa9\x9d\x99\xaa\ +\x9e\x9b\xab\x9e\x9a\xab\x9d\x9a\xaa\x9c\x99\xa9\x9a\x97\xa7\x98\ +\x94\xa6\x95\x93\xa6\xa0\x9b\xad\xa7\xa0\xb1\xa6\xa0\xb2\xa4\xa0\ +\xb0\xaa\xa5\xb4\xae\xaa\xb6\xad\xa9\xb5\xb2\xae\xb9\xb5\xaf\xbb\ +\xaf\xa9\xb6\xa9\xa5\xb2\xa5\xa2\xb1\x87\x8d\xa4\xa8\xa8\xb8\xb2\ +\xae\xbb\xa7\xa5\xb3\x9d\x9d\xad\x78\x82\x9c\x88\x8d\xa4\xaf\xab\ +\xb7\xad\xa8\xb5\xae\xaa\xb6\xb2\xab\xb8\xb3\xac\xb9\xb4\xad\xba\ +\xb6\xb0\xbb\xb7\xb1\xbc\xb5\xae\xb9\xb4\xae\xb9\xb4\xae\xb9\xb5\ +\xaf\xba\xb8\xb2\xbd\xbc\xb6\xc0\xbf\xba\xc3\xbc\xb7\xc0\xbb\xb5\ +\xbf\xbc\xb7\xc0\xb5\xb0\xbb\xa5\xa1\xb0\xa2\x9f\xaf\xa2\xa0\xb0\ +\xa7\xa3\xb2\xae\xa9\xb6\xd6\xcb\xd0\xe3\xd7\xd8\xd9\xcc\xce\xca\ +\xbf\xc3\xba\xad\xb4\xa8\x99\xa3\x90\x81\x8e\x81\x76\x83\x76\x70\ +\x81\x6b\x6a\x7f\x62\x67\x7d\x4b\x5a\x73\x35\x4e\x69\x30\x4d\x68\ +\x33\x51\x6a\x3d\x59\x72\x4d\x64\x7b\x60\x6e\x85\x72\x7c\x91\x83\ +\x87\x9b\x00\x00\x00\xc9\xc1\xcb\xc9\xc1\xcb\xca\xc2\xcc\xcc\xc4\ +\xce\xd0\xc8\xd2\xd2\xca\xd4\xd3\xcb\xd5\xd3\xcb\xd4\xd3\xcb\xd2\ +\xd3\xcb\xd2\xd2\xc9\xd0\xd3\xc8\xce\xd5\xc9\xce\xd6\xca\xce\xd7\ +\xca\xcd\xd7\xca\xcc\xd8\xcb\xcd\xda\xcc\xcd\xde\xce\xcf\xdf\xd0\ +\xd0\xe2\xd3\xd1\xe4\xd4\xd2\xe8\xd7\xd5\xe9\xd8\xd7\xe9\xda\xd8\ +\xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xea\xdb\xd9\xe9\xdb\xd8\xea\ +\xda\xd9\xea\xda\xd8\xea\xd9\xd8\xeb\xda\xd7\xec\xdb\xd8\xec\xdb\ +\xd8\xee\xdd\xda\xee\xdd\xd9\xed\xdd\xd8\xed\xdb\xd6\xec\xd9\xd4\ +\xea\xd7\xd2\xe8\xd5\xd0\xe7\xd3\xcf\xe7\xd3\xce\xe6\xd3\xce\xe6\ +\xd2\xcd\xe7\xd5\xd1\xe8\xd7\xd4\xe8\xd9\xd6\xe9\xda\xd8\xe8\xdb\ +\xd9\xe9\xdc\xdb\xea\xde\xde\xe4\xd9\xd9\xd3\xc6\xc9\xbc\xae\xb9\ +\xb3\xa7\xb6\xb0\xa5\xb6\xb0\xa6\xb7\xb9\xb0\xbe\xc6\xbd\xca\xd1\ +\xcb\xd5\xd4\xcf\xd8\xcd\xc7\xd3\xc0\xbb\xca\xac\xa8\xbd\x9c\x99\ +\xb1\x98\x97\xae\x9b\x99\xaf\x98\x98\xae\x99\x99\xad\x9a\x9b\xae\ +\x9c\x9c\xb0\x9e\x9e\xb1\x9c\x9c\xb0\x98\x99\xae\x89\x8d\xa7\x55\ +\x6b\x84\x43\x63\x75\x41\x5e\x72\x3d\x50\x6d\x36\x44\x67\x39\x42\ +\x6b\x45\x4a\x73\x8c\x88\xa0\xa8\xa1\xb2\x89\x86\x9c\x8c\x89\x9e\ +\x94\x90\xa3\x98\x94\xa7\x9b\x97\xa9\x9d\x9a\xaa\x9e\x9b\xab\x9d\ +\x9a\xaa\x9d\x9a\xaa\x9b\x98\xa8\x9b\x98\xa8\x98\x95\xa7\x93\x91\ +\xa4\x97\x94\xa7\xa2\x9d\xae\xa2\x9d\xb0\x9a\x98\xac\xae\xa9\xb6\ +\xad\xa9\xb5\xae\xaa\xb6\xb1\xad\xb9\xb3\xae\xba\xad\xa7\xb4\xaa\ +\xa6\xb2\xa9\xa4\xb2\xb4\xb0\xbc\xb7\xb3\xbd\xb6\xb2\xbd\xb5\xb1\ +\xbc\xa4\xa4\xb2\x90\x90\xa6\x9b\x9a\xac\xb1\xab\xb8\xb2\xac\xb9\ +\xaf\xaa\xb7\xb0\xab\xb7\xb1\xac\xb8\xb4\xae\xba\xb5\xaf\xbb\xb6\ +\xb0\xbb\xb3\xac\xb8\xb4\xae\xb9\xb5\xaf\xb9\xb6\xb0\xbb\xb8\xb2\ +\xbd\xba\xb2\xbd\xb9\xb3\xbe\xb8\xb2\xbd\xb6\xb0\xba\xb7\xb2\xbb\ +\xb4\xae\xba\xa6\xa3\xb1\xa3\xa0\xaf\xa5\xa2\xb1\xac\xa7\xb5\xd1\ +\xc6\xcd\xea\xde\xdf\xe6\xd9\xda\xdd\xd0\xd2\xd0\xc2\xc5\xbf\xb1\ +\xb7\xaa\x9b\xa4\x8c\x7d\x8a\x74\x69\x7a\x66\x60\x75\x59\x5b\x72\ +\x4a\x55\x6f\x3b\x4e\x69\x32\x49\x66\x31\x4a\x67\x3a\x52\x6f\x4a\ +\x5e\x79\x5b\x6a\x83\x6d\x76\x8d\x7c\x80\x97\x8b\x8b\x9f\x00\x00\ +\x00\xca\xc2\xcc\xcc\xc4\xce\xcd\xc5\xcf\xd0\xc8\xd2\xd1\xc9\xd3\ +\xd1\xc9\xd3\xd2\xca\xd4\xd3\xcb\xd4\xd4\xcd\xd3\xd3\xcc\xd3\xd4\ +\xca\xd0\xd4\xca\xd0\xd5\xca\xcf\xd5\xca\xce\xd7\xca\xcd\xd8\xcb\ +\xcd\xd9\xcc\xce\xdc\xce\xcf\xde\xcf\xd0\xe1\xd2\xd2\xe4\xd5\xd3\ +\xe5\xd5\xd3\xe7\xd6\xd4\xe9\xd7\xd5\xe9\xd7\xd6\xea\xd9\xd7\xea\ +\xd9\xd8\xe9\xda\xd8\xe9\xda\xd8\xea\xda\xd9\xe9\xda\xd8\xe9\xd9\ +\xd8\xea\xda\xd8\xeb\xda\xd6\xec\xdb\xd8\xed\xdc\xd8\xed\xdc\xd9\ +\xef\xdf\xd8\xee\xde\xd8\xee\xde\xd8\xed\xdb\xd6\xeb\xd8\xd3\xe9\ +\xd6\xd1\xe8\xd4\xcf\xe8\xd4\xcf\xe7\xd3\xce\xe7\xd3\xce\xe9\xd6\ +\xd1\xe9\xd8\xd4\xea\xd9\xd6\xe9\xdb\xd8\xe9\xdb\xd8\xe9\xdd\xdb\ +\xea\xde\xdf\xea\xdf\xdf\xea\xdf\xdf\xe2\xd7\xd8\xca\xbd\xc3\xb8\ +\xac\xb9\xb0\xa6\xb6\xb0\xa7\xb8\xb5\xab\xbb\xbd\xb5\xc2\xc9\xc2\ +\xcd\xcf\xc9\xd3\xd3\xce\xd8\xd0\xca\xd6\xc0\xbc\xcb\xa7\xa4\xba\ +\x9a\x97\xb0\x9e\x9c\xb1\x9f\x9e\xb2\x9f\x9e\xb1\x9f\x9f\xb1\x9e\ +\x9f\xb1\x9c\x9e\xb1\x9a\x9d\xb0\x91\x95\xac\x63\x77\x90\x48\x68\ +\x7b\x40\x59\x73\x3f\x53\x71\x3b\x4d\x6f\x34\x42\x6a\x44\x49\x71\ +\x95\x90\xa5\xaa\xa3\xb4\x8e\x8a\x9f\x8c\x89\x9e\x92\x8e\xa2\x95\ +\x92\xa4\x99\x96\xa7\x9c\x99\xa9\x9d\x9a\xaa\x9c\x99\xa9\x9d\x9a\ +\xaa\x9c\x99\xa9\x9b\x98\xa8\x9a\x97\xa7\x96\x94\xa5\x94\x92\xa5\ +\x9a\x97\xaa\x99\x97\xab\xa5\xa2\xb2\xac\xa7\xb5\xac\xa8\xb5\xaf\ +\xab\xb7\xb1\xad\xb9\xb1\xac\xb8\xad\xa8\xb4\xaa\xa6\xb2\xad\xa9\ +\xb6\xb2\xae\xba\xb5\xb1\xbc\xb5\xb1\xbc\xb6\xb2\xbd\xb4\xb1\xbc\ +\xa3\xa1\xb1\xa1\x9f\xaf\xb0\xab\xb7\xb1\xab\xb8\xae\xaa\xb6\xb0\ +\xab\xb8\xb0\xab\xb7\xb3\xac\xb9\xb4\xae\xba\xb4\xad\xb9\xb3\xac\ +\xb9\xb4\xae\xb9\xb4\xae\xb9\xb7\xb1\xbc\xb8\xb1\xbc\xb7\xb1\xbc\ +\xb7\xb1\xbc\xb7\xb1\xbc\xb6\xb0\xbb\xb6\xb0\xbb\xb5\xaf\xba\xa8\ +\xa4\xb2\xa5\xa2\xb0\xaa\xa5\xb4\xca\xc0\xc8\xea\xdf\xdf\xec\xe0\ +\xe0\xe7\xda\xdb\xdf\xd2\xd4\xd3\xc6\xc8\xc1\xb3\xb8\xab\x9b\xa4\ +\x8a\x79\x86\x68\x5e\x72\x54\x51\x69\x44\x49\x65\x3a\x45\x62\x32\ +\x42\x60\x30\x44\x63\x38\x4b\x69\x47\x56\x73\x58\x64\x7f\x69\x71\ +\x8a\x79\x7d\x95\x88\x88\x9d\x92\x91\xa4\x00\x00\x00\xcd\xc5\xcf\ +\xcf\xc7\xd1\xd1\xc9\xd3\xd3\xcb\xd5\xd4\xcc\xd6\xd4\xcc\xd6\xd3\ +\xcb\xd5\xd4\xcc\xd4\xd5\xcd\xd4\xd5\xcd\xd4\xd5\xca\xd0\xd5\xcb\ +\xd1\xd7\xcc\xd2\xd7\xcc\xd0\xd8\xcc\xd0\xd9\xcc\xcf\xdb\xce\xd0\ +\xdd\xcf\xd1\xde\xd0\xd2\xe1\xd2\xd3\xe5\xd5\xd5\xe5\xd5\xd4\xe6\ +\xd5\xd3\xe8\xd6\xd5\xe8\xd6\xd5\xe8\xd7\xd6\xe8\xd8\xd6\xe8\xd8\ +\xd7\xe8\xd8\xd7\xe7\xd8\xd6\xe8\xd8\xd7\xea\xd8\xd7\xe9\xd8\xd7\ +\xeb\xda\xd7\xec\xdb\xd7\xec\xdb\xd8\xed\xdc\xd9\xee\xde\xd8\xee\ +\xde\xd8\xee\xdf\xd8\xed\xdc\xd7\xec\xd9\xd4\xeb\xd8\xd3\xea\xd6\ +\xd1\xe9\xd6\xd0\xe9\xd5\xd0\xe9\xd5\xcf\xe9\xd6\xd0\xeb\xd8\xd3\ +\xeb\xda\xd6\xec\xdb\xd8\xea\xdb\xd8\xea\xdc\xd9\xeb\xde\xdd\xec\ +\xe0\xe0\xec\xe0\xe0\xec\xe1\xe1\xeb\xe1\xe1\xe0\xd3\xd4\xc8\xbb\ +\xc1\xb9\xad\xb9\xb3\xa9\xb8\xb2\xa9\xb9\xb4\xac\xba\xbb\xb4\xc2\ +\xbf\xb8\xc6\xc2\xbb\xc9\xc6\xc0\xcd\xc6\xc1\xce\xb4\xb0\xc2\x9e\ +\x9b\xb2\xa1\x9f\xb3\xa2\xa1\xb3\xa0\xa0\xb2\x9e\x9e\xb1\x9b\x9e\ +\xb0\x98\x9d\xaf\x95\x9b\xaf\x7b\x8a\xa3\x54\x70\x89\x41\x58\x77\ +\x38\x4e\x6f\x33\x47\x6c\x34\x47\x6b\x3c\x44\x69\x87\x83\x9b\xa8\ +\xa2\xb1\x93\x90\xa4\x8b\x88\x9d\x90\x8c\xa1\x93\x8e\xa3\x97\x94\ +\xa6\x9a\x97\xa8\x9c\x99\xa9\x9e\x9b\xab\x9d\x9a\xaa\x9c\x99\xa9\ +\x9c\x99\xa8\x9a\x97\xa7\x99\x97\xa8\x97\x95\xa7\x98\x95\xa7\xa8\ +\xa3\xb2\xac\xa7\xb6\xaa\xa6\xb3\xac\xa8\xb4\xad\xa9\xb5\xb0\xac\ +\xb8\xaf\xaa\xb7\xab\xa7\xb3\xac\xa8\xb4\xaf\xab\xb7\xb0\xac\xb8\ +\xb0\xac\xb9\xb3\xaf\xbb\xb4\xb0\xbb\xb4\xb0\xbc\xb6\xb2\xbd\xae\ +\xa9\xb6\xad\xa9\xb5\xb0\xac\xb8\xad\xa9\xb5\xad\xa8\xb5\xad\xa8\ +\xb6\xae\xa9\xb7\xb1\xaa\xb7\xb1\xaa\xb7\xb3\xac\xb9\xb3\xad\xb9\ +\xb4\xae\xb9\xb6\xb0\xbb\xb6\xb0\xbb\xb6\xb0\xbb\xb6\xb0\xbb\xb5\ +\xaf\xba\xb4\xae\xb9\xb3\xad\xb8\xb2\xad\xb8\xaa\xa5\xb2\xaa\xa4\ +\xb2\xc2\xb8\xc2\xea\xdf\xdf\xee\xe3\xe3\xed\xe1\xe1\xe8\xdb\xdc\ +\xe1\xd3\xd5\xd5\xc7\xc9\xc4\xb6\xb9\xae\x9c\xa3\x85\x74\x7f\x55\ +\x4e\x64\x3f\x40\x5b\x34\x39\x57\x2d\x37\x56\x2d\x39\x59\x35\x41\ +\x61\x43\x4e\x6c\x55\x5d\x79\x65\x6b\x87\x76\x77\x92\x84\x84\x9a\ +\x91\x8e\xa2\x9b\x96\xa7\x00\x00\x00\xd0\xc8\xcf\xd1\xc9\xd2\xd4\ +\xcc\xd5\xd6\xcf\xd8\xd6\xcf\xd8\xd6\xce\xd7\xd5\xcd\xd6\xd5\xce\ +\xd5\xd5\xce\xd5\xd5\xce\xd4\xd6\xcc\xd2\xd8\xce\xd3\xd9\xce\xd2\ +\xd9\xce\xd1\xd9\xce\xd1\xdb\xcf\xd2\xdc\xcf\xd2\xde\xd1\xd3\xdf\ +\xd2\xd4\xe2\xd4\xd5\xe4\xd5\xd6\xe5\xd6\xd5\xe6\xd5\xd3\xe7\xd5\ +\xd4\xe7\xd5\xd4\xe8\xd5\xd4\xe8\xd6\xd5\xe7\xd8\xd5\xe7\xd7\xd5\ +\xe7\xd7\xd5\xe8\xd8\xd6\xe8\xd8\xd7\xe9\xd9\xd7\xea\xd9\xd7\xeb\ +\xda\xd7\xec\xdb\xd8\xec\xdc\xd8\xed\xdc\xd7\xee\xdd\xd7\xed\xdd\ +\xd7\xee\xdd\xd6\xee\xdb\xd6\xec\xd9\xd5\xec\xd8\xd3\xeb\xd8\xd2\ +\xea\xd7\xd0\xea\xd7\xd0\xea\xd7\xd1\xeb\xd8\xd3\xec\xda\xd5\xec\ +\xdc\xd8\xec\xdc\xd9\xec\xdd\xda\xeb\xdd\xdb\xeb\xdf\xdd\xec\xe0\ +\xe0\xec\xe1\xe0\xec\xe2\xe2\xed\xe4\xe3\xed\xe3\xe1\xe2\xd6\xd5\ +\xcf\xc2\xc8\xbe\xb2\xbd\xb2\xa9\xb9\xb2\xa9\xba\xa9\xa3\xb6\x7c\ +\x7c\x9b\x78\x78\x98\x8e\x8b\xa7\x9b\x98\xb1\x9a\x96\xb1\x98\x95\ +\xaf\x9b\x99\xb0\x9d\x9d\xb1\x9e\x9e\xb1\x9c\x9f\xb1\x9a\x9f\xb1\ +\x96\x9d\xb0\x87\x92\xab\x54\x69\x8d\x41\x5a\x7d\x37\x50\x72\x31\ +\x45\x6a\x2e\x40\x66\x32\x3c\x62\x62\x61\x81\xa0\x9a\xad\x9a\x95\ +\xa8\x88\x85\x9a\x8e\x8b\x9f\x91\x8d\xa1\x93\x8f\xa3\x98\x94\xa6\ +\x9c\x98\xa9\x9c\x99\xa9\x9b\x98\xa9\x9a\x98\xa8\x9c\x99\xa9\x9b\ +\x98\xa8\x9a\x97\xa7\x9b\x98\xa8\xa2\x9e\xae\xa6\xa1\xb0\xaa\xa6\ +\xb5\xaa\xa5\xb3\xab\xa6\xb3\xac\xa8\xb4\xb0\xac\xb8\xae\xa9\xb6\ +\xac\xa8\xb4\xaf\xab\xb7\xb1\xad\xb9\xb0\xac\xb8\xb0\xac\xb8\xb2\ +\xae\xba\xb4\xb0\xbc\xb4\xb0\xbc\xb7\xb2\xbd\xb6\xb1\xbc\xad\xa9\ +\xb6\xac\xa8\xb5\xae\xaa\xb6\xab\xa6\xb5\xac\xa7\xb6\xac\xa8\xb6\ +\xad\xa8\xb5\xaf\xa8\xb5\xb1\xab\xb7\xb1\xaa\xb7\xb2\xab\xb7\xb5\ +\xaf\xba\xb5\xaf\xba\xb5\xaf\xba\xb4\xae\xb9\xb4\xae\xb8\xb2\xac\ +\xb7\xb1\xab\xb6\xae\xa8\xb5\xa9\xa3\xb1\xc0\xb6\xbf\xe8\xdc\xdc\ +\xee\xe3\xe3\xed\xe2\xe2\xed\xe1\xe1\xe9\xdc\xdd\xe2\xd4\xd5\xd7\ +\xc9\xca\xc7\xb7\xba\xb2\x9e\xa3\x88\x74\x7e\x4b\x44\x5b\x30\x33\ +\x4f\x2a\x30\x4d\x28\x2f\x4f\x31\x38\x57\x40\x46\x64\x51\x56\x74\ +\x62\x65\x81\x71\x72\x8d\x80\x7f\x96\x8d\x8a\x9e\x98\x93\xa6\xa0\ +\x99\xaa\x00\x00\x00\xd2\xca\xd1\xd4\xcc\xd4\xd7\xcf\xd6\xd8\xd0\ +\xd8\xd8\xd1\xd8\xd8\xd1\xd8\xd7\xd0\xd7\xd6\xcf\xd6\xd7\xcf\xd6\ +\xd8\xce\xd4\xd9\xcf\xd5\xda\xd1\xd4\xdb\xd0\xd3\xdb\xd0\xd3\xdb\ +\xd0\xd3\xdd\xd2\xd5\xdd\xd2\xd5\xe0\xd3\xd5\xe2\xd5\xd7\xe3\xd5\ +\xd7\xe3\xd5\xd6\xe5\xd5\xd6\xe6\xd6\xd5\xe6\xd6\xd5\xe6\xd6\xd4\ +\xe6\xd6\xd4\xe6\xd7\xd5\xe6\xd7\xd6\xe6\xd7\xd5\xe6\xd7\xd5\xe6\ +\xd7\xd5\xe6\xd7\xd5\xe8\xd8\xd6\xea\xd8\xd7\xea\xd9\xd6\xeb\xda\ +\xd7\xec\xdb\xd8\xec\xda\xd7\xed\xdb\xd7\xee\xdb\xd6\xee\xdb\xd6\ +\xee\xdd\xd7\xee\xdc\xd7\xee\xdb\xd5\xed\xda\xd3\xec\xd8\xd2\xea\ +\xd7\xd0\xeb\xd8\xd1\xec\xd9\xd3\xed\xda\xd5\xed\xdb\xd6\xed\xdd\ +\xd9\xed\xde\xdb\xec\xdf\xdc\xec\xdf\xdc\xeb\xde\xdc\xec\xdf\xdd\ +\xed\xe2\xe1\xee\xe3\xe1\xee\xe4\xe1\xee\xe4\xe1\xe9\xdd\xdd\xda\ +\xd0\xd2\xc4\xbc\xc4\xb5\xac\xba\xae\xa7\xb8\x91\x8f\xa8\x5a\x62\ +\x87\x44\x4a\x78\x49\x4b\x7b\x55\x56\x84\x5c\x5f\x8b\x60\x64\x8d\ +\x68\x6e\x93\x76\x7d\x9b\x8a\x90\xa8\x96\x9d\xaf\x8c\x97\xac\x6a\ +\x7d\x9e\x45\x5c\x84\x3f\x5b\x7e\x3b\x56\x79\x34\x4b\x6f\x2e\x3f\ +\x65\x31\x3d\x64\x38\x3e\x64\x77\x73\x8f\x9f\x99\xac\x89\x85\x9b\ +\x88\x85\x9a\x8d\x8b\x9f\x92\x90\xa4\x98\x94\xa8\x9b\x97\xa9\x9d\ +\x9a\xaa\x9d\x9a\xaa\x99\x97\xa8\x99\x98\xa9\x9c\x9a\xaa\x9c\x99\ +\xa9\x9f\x9b\xab\xa7\xa3\xb2\xa3\x9f\xae\xa8\xa2\xb1\xa9\xa5\xb3\ +\xab\xa7\xb4\xad\xa9\xb5\xaf\xab\xb7\xad\xa9\xb5\xb1\xad\xb9\xb3\ +\xaf\xbb\xb2\xae\xba\xb0\xac\xb7\xb1\xad\xb8\xb3\xaf\xbb\xb4\xb0\ +\xbc\xb4\xb0\xbc\xb7\xb3\xbe\xb8\xb4\xbf\xb4\xb0\xbc\xac\xa7\xb4\ +\xad\xa9\xb5\xab\xa6\xb4\xaa\xa5\xb5\xac\xa7\xb6\xac\xa8\xb5\xab\ +\xa7\xb4\xac\xa7\xb5\xac\xa7\xb4\xb1\xaa\xb6\xb4\xae\xb9\xb4\xae\ +\xb9\xb3\xad\xb8\xb1\xac\xb7\xb1\xab\xb7\xaf\xa9\xb6\xad\xa8\xb4\ +\xaa\xa5\xb3\xbf\xb6\xbf\xe1\xd4\xd6\xe9\xdc\xdc\xeb\xdd\xde\xea\ +\xde\xde\xeb\xdf\xdf\xe9\xdc\xdd\xe3\xd5\xd6\xd8\xca\xcb\xc9\xb9\ +\xbc\xb5\xa1\xa3\x8e\x78\x7f\x4e\x45\x59\x2c\x2f\x4c\x29\x2e\x4b\ +\x2e\x33\x50\x3d\x40\x5d\x4d\x4f\x6b\x5e\x5f\x7b\x6d\x6c\x87\x7b\ +\x79\x91\x89\x86\x9b\x94\x8e\xa2\x9d\x96\xa8\xa3\x9b\xac\x00\x00\ +\x00\xd4\xcc\xd3\xd7\xcf\xd6\xd8\xd0\xd7\xd9\xd1\xd8\xda\xd2\xd9\ +\xda\xd2\xd9\xda\xd2\xd9\xd9\xd1\xd7\xd8\xd0\xd7\xd9\xd1\xd6\xdb\ +\xd1\xd5\xdc\xd2\xd4\xdd\xd2\xd5\xdd\xd2\xd5\xde\xd3\xd4\xdd\xd2\ +\xd5\xe0\xd4\xd6\xe2\xd5\xd7\xe2\xd5\xd7\xe3\xd6\xd8\xe4\xd6\xd8\ +\xe4\xd6\xd7\xe5\xd6\xd7\xe5\xd7\xd6\xe6\xd6\xd5\xe5\xd7\xd6\xe5\ +\xd5\xd6\xe5\xd5\xd6\xe4\xd4\xd5\xe4\xd4\xd4\xe5\xd5\xd5\xe4\xd5\ +\xd3\xe6\xd6\xd4\xe8\xd7\xd5\xea\xd8\xd6\xe9\xd8\xd5\xea\xd9\xd6\ +\xeb\xd9\xd6\xec\xd9\xd6\xec\xd9\xd7\xee\xdb\xd6\xee\xdb\xd7\xef\ +\xdc\xd7\xee\xdd\xd7\xee\xdc\xd5\xed\xda\xd3\xed\xda\xd3\xeb\xd8\ +\xd1\xec\xd9\xd2\xed\xda\xd3\xec\xda\xd5\xec\xdc\xd6\xec\xdc\xd8\ +\xec\xde\xda\xec\xdf\xdc\xed\xe0\xdd\xeb\xde\xdc\xec\xdf\xdd\xed\ +\xe1\xdf\xee\xe2\xdf\xeb\xdf\xde\xda\xcf\xd1\xbd\xb2\xbc\xb3\xaa\ +\xb6\xb2\xaa\xb6\xa6\x9e\xb0\x93\x8e\xa5\x7f\x80\x9c\x56\x5b\x85\ +\x55\x5c\x88\x4c\x51\x80\x48\x4f\x7d\x4b\x55\x7e\x4d\x5c\x7f\x4e\ +\x61\x80\x53\x65\x85\x64\x71\x94\x60\x6f\x95\x4d\x5e\x8a\x3e\x54\ +\x7e\x3f\x57\x7d\x40\x59\x7c\x3b\x55\x77\x34\x46\x6b\x32\x3e\x65\ +\x34\x3c\x63\x3f\x41\x68\x7a\x75\x91\x8d\x8a\x9f\x83\x7f\x97\x88\ +\x85\x9a\x8e\x8c\x9f\x99\x96\xa7\x9a\x97\xa8\x9c\x99\xa9\x9e\x9b\ +\xaa\x9d\x9a\xaa\x9c\x99\xa9\x9b\x98\xa8\x9c\x99\xa9\xa7\xa4\xb2\ +\xa8\xa3\xb2\xa5\xa0\xae\xa6\xa1\xb1\xaa\xa5\xb3\xaa\xa7\xb3\xad\ +\xa8\xb5\xad\xaa\xb7\xaf\xab\xb6\xb1\xad\xb9\xb5\xb1\xbc\xb4\xb0\ +\xbc\xb1\xad\xb9\xb2\xae\xba\xb2\xae\xba\xb4\xb0\xbc\xb5\xb1\xbc\ +\xb5\xb1\xbc\xb6\xb2\xbd\xb8\xb4\xbf\xaf\xac\xb9\xac\xa8\xb5\xaa\ +\xa5\xb4\xa8\xa3\xb2\xaa\xa5\xb4\xaa\xa6\xb4\xa9\xa4\xb3\xaa\xa5\ +\xb4\xac\xa7\xb4\xb1\xab\xb7\xb2\xab\xb8\xb2\xac\xb7\xb0\xac\xb7\ +\xae\xa9\xb5\xae\xa9\xb5\xab\xa6\xb4\xaa\xa4\xb3\xc0\xb6\xbf\xdd\ +\xcf\xd0\xe2\xd3\xd4\xe4\xd6\xd7\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xda\ +\xda\xe5\xd9\xd9\xdf\xd2\xd2\xd4\xc6\xc7\xc8\xb8\xba\xb7\xa1\xa3\ +\x92\x7a\x7f\x52\x47\x59\x2f\x31\x4b\x32\x34\x50\x3b\x3e\x59\x4c\ +\x4c\x66\x5c\x5b\x76\x6a\x68\x82\x78\x74\x8d\x83\x7f\x95\x8e\x89\ +\x9d\x98\x92\xa5\x9d\x97\xa9\xa2\x9a\xab\x00\x00\x00\xd6\xce\xd5\ +\xd8\xd0\xd6\xda\xd1\xd7\xda\xd2\xd8\xda\xd3\xd9\xdb\xd4\xd9\xdb\ +\xd4\xd8\xdb\xd3\xd8\xdb\xd2\xd7\xdc\xd2\xd6\xdc\xd3\xd5\xde\xd3\ +\xd5\xdf\xd3\xd5\xe0\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\xe2\xd6\xd8\ +\xe4\xd7\xd9\xe3\xd7\xd9\xe4\xd7\xd9\xe3\xd6\xd8\xe4\xd7\xd8\xe4\ +\xd7\xd8\xe4\xd6\xd8\xe5\xd6\xd7\xe4\xd5\xd7\xe4\xd5\xd6\xe3\xd4\ +\xd5\xe2\xd4\xd5\xe3\xd3\xd4\xe3\xd3\xd4\xe4\xd5\xd3\xe5\xd6\xd4\ +\xe6\xd6\xd4\xe8\xd6\xd5\xe9\xd8\xd6\xe9\xd8\xd5\xea\xd8\xd5\xea\ +\xd9\xd6\xeb\xd9\xd7\xee\xdb\xd6\xee\xdc\xd7\xee\xdd\xd8\xef\xdf\ +\xd9\xf0\xde\xd8\xef\xdd\xd6\xee\xdb\xd4\xed\xda\xd3\xed\xd9\xd2\ +\xec\xd9\xd2\xed\xda\xd3\xec\xd9\xd4\xec\xda\xd5\xec\xdb\xd6\xec\ +\xdc\xd9\xeb\xdd\xda\xeb\xde\xdb\xea\xdb\xd8\xec\xde\xdb\xec\xdf\ +\xdc\xe5\xd8\xd6\xc8\xbc\xc3\xb1\xa8\xb5\xb0\xa7\xb4\xae\xa5\xb3\ +\xad\xa6\xb2\xa3\x9c\xad\x9c\x97\xaa\x91\x90\xa7\x7d\x7f\xa1\x70\ +\x74\x98\x62\x69\x8e\x57\x64\x86\x50\x63\x83\x4f\x63\x81\x53\x64\ +\x86\x59\x65\x8c\x53\x60\x8b\x4e\x5d\x89\x4d\x5c\x87\x5f\x6d\x91\ +\x72\x7d\x99\x78\x83\x9b\x6e\x76\x91\x61\x65\x87\x86\x83\xa1\x92\ +\x8d\xa8\x86\x7f\x9c\x91\x8b\xa4\x8b\x87\xa0\x85\x82\x9a\x8a\x88\ +\x9c\x94\x90\xa3\x9a\x97\xa8\x9c\x99\xa9\x9e\x9a\xaa\x9f\x9b\xab\ +\x9f\x9b\xaa\x9e\x9a\xaa\xa0\x9c\xac\xac\xa9\xb7\xa7\xa3\xb2\xa6\ +\xa1\xb0\xa7\xa2\xb1\xa9\xa5\xb3\xac\xa8\xb5\xac\xa8\xb5\xae\xa9\ +\xb7\xaf\xab\xb7\xb4\xb0\xbb\xb6\xb2\xbd\xb5\xb1\xbd\xb2\xae\xba\ +\xb2\xae\xba\xb2\xae\xba\xb5\xb1\xbc\xb6\xb2\xbd\xb5\xb1\xbd\xb6\ +\xb2\xbd\xb6\xb2\xbe\xb5\xb1\xbd\xad\xa9\xb5\xa8\xa3\xb1\xa6\xa1\ +\xb1\xaa\xa5\xb4\xa9\xa4\xb3\xa8\xa3\xb2\xa8\xa4\xb1\xab\xa6\xb3\ +\xb0\xa9\xb6\xb1\xab\xb6\xaf\xaa\xb5\xad\xa8\xb4\xac\xa8\xb4\xa9\ +\xa4\xb2\xaf\xa8\xb4\xc7\xba\xc0\xd8\xc9\xc9\xd9\xc9\xca\xda\xcb\ +\xcc\xdb\xcd\xcf\xdd\xcf\xd1\xdf\xd1\xd3\xe0\xd3\xd5\xdf\xd2\xd3\ +\xd9\xcc\xcd\xcf\xc0\xc3\xc2\xb2\xb5\xb1\x9d\x9f\x91\x7a\x7f\x5a\ +\x4f\x60\x40\x3f\x56\x47\x47\x5f\x51\x4f\x68\x5d\x5a\x73\x6a\x66\ +\x7f\x74\x71\x8a\x7e\x7a\x91\x88\x83\x98\x92\x8d\xa0\x99\x93\xa5\ +\x9d\x97\xa8\xa0\x9a\xaa\x00\x00\x00\xd6\xce\xd5\xd9\xcf\xd6\xda\ +\xd0\xd6\xda\xd1\xd7\xdb\xd2\xd7\xdc\xd3\xd8\xdc\xd3\xd9\xdd\xd2\ +\xd8\xdd\xd4\xd7\xdf\xd4\xd6\xdf\xd4\xd6\xe1\xd4\xd6\xe1\xd4\xd6\ +\xe2\xd5\xd6\xe2\xd5\xd7\xe3\xd6\xd8\xe5\xd8\xda\xe5\xd8\xda\xe5\ +\xd8\xda\xe4\xd8\xda\xe4\xd7\xd9\xe4\xd7\xd9\xe4\xd7\xd9\xe4\xd6\ +\xd8\xe3\xd5\xd7\xe4\xd6\xd7\xe2\xd4\xd7\xe2\xd4\xd6\xe1\xd3\xd5\ +\xe0\xd3\xd4\xe1\xd3\xd3\xe2\xd3\xd4\xe4\xd4\xd4\xe4\xd5\xd3\xe6\ +\xd6\xd4\xe8\xd7\xd5\xe9\xd7\xd4\xe9\xd8\xd6\xea\xd9\xd6\xeb\xd9\ +\xd6\xed\xdb\xd7\xee\xdb\xd7\xee\xdd\xd7\xef\xdf\xd9\xf0\xdf\xd8\ +\xf0\xdf\xd8\xf0\xde\xd7\xee\xdc\xd5\xed\xda\xd3\xec\xd8\xd2\xec\ +\xd8\xd1\xeb\xd8\xd2\xeb\xd7\xd2\xea\xd8\xd3\xeb\xd9\xd4\xea\xd9\ +\xd6\xea\xda\xd7\xe9\xd9\xd6\xea\xdb\xd8\xe9\xdb\xd8\xdf\xd0\xcf\ +\xbe\xb1\xbb\xaf\xa5\xb3\xac\xa3\xb1\xac\xa5\xb2\xad\xa6\xb3\xad\ +\xa6\xb3\xad\xa6\xb3\xad\xa6\xb3\xa8\xa2\xb2\xa4\x9f\xb0\x9b\x98\ +\xac\x8e\x8e\xa4\x81\x85\x9d\x7d\x82\x9b\x82\x84\x9f\x84\x85\xa1\ +\x7e\x7d\x9e\x66\x6c\x93\x80\x85\xa4\xc4\xc3\xcd\xc9\xc7\xce\xc7\ +\xc4\xcc\xc1\xbe\xc8\xb7\xb6\xc4\xc0\xbd\xca\xc9\xc4\xcf\xc2\xbd\ +\xc9\xb9\xb3\xc3\xaf\xa9\xbc\xa3\x9e\xb1\x92\x8e\xa2\x90\x8c\xa1\ +\x97\x92\xa5\x9b\x98\xa9\x9d\x9a\xaa\x9e\x9a\xaa\xa0\x9b\xab\x9f\ +\x9a\xab\xaa\xa6\xb4\xac\xa8\xb5\xa7\xa2\xb1\xa5\xa1\xb0\xa7\xa2\ +\xb1\xa7\xa2\xb1\xa9\xa4\xb2\xa9\xa6\xb5\xae\xa9\xb6\xaf\xac\xb8\ +\xb3\xaf\xbb\xb5\xb1\xbc\xb3\xaf\xbb\xb4\xaf\xba\xb4\xb0\xbc\xb2\ +\xae\xba\xb4\xb0\xbc\xb5\xb1\xbd\xb6\xb1\xbd\xb7\xb3\xbe\xb6\xb2\ +\xbe\xb7\xb3\xbe\xaf\xaa\xb6\xa6\xa1\xb1\xa6\xa1\xb1\xaa\xa5\xb4\ +\xa8\xa3\xb2\xa7\xa2\xb1\xa7\xa2\xb1\xa9\xa5\xb2\xae\xa9\xb5\xad\ +\xa9\xb5\xaa\xa6\xb2\xa5\xa2\xb1\xa5\x9f\xaf\xb4\xaa\xb4\xc8\xb8\ +\xbb\xce\xbc\xbd\xcc\xbb\xbe\xcc\xbd\xc0\xce\xbf\xc3\xd0\xc2\xc6\ +\xd3\xc5\xc9\xd6\xc8\xcc\xd7\xca\xcd\xd7\xc9\xcc\xd0\xc3\xc6\xc6\ +\xb8\xbd\xb9\xa9\xaf\xa7\x94\x9b\x8c\x78\x82\x66\x5d\x6f\x5b\x58\ +\x6e\x60\x5d\x76\x68\x66\x7c\x71\x6c\x83\x79\x74\x8b\x82\x7e\x93\ +\x8b\x85\x9a\x90\x8b\x9f\x96\x91\xa3\x9a\x94\xa6\x9f\x99\xa9\xa5\ +\x9e\xae\x00\x00\x00\xd3\xca\xd1\xd8\xce\xd4\xd9\xcf\xd5\xda\xd0\ +\xd6\xda\xd0\xd6\xdb\xd1\xd7\xdc\xd3\xd8\xdd\xd4\xd7\xe0\xd5\xd8\ +\xe0\xd5\xd8\xe2\xd5\xd7\xe2\xd5\xd6\xe3\xd5\xd6\xe4\xd6\xd7\xe5\ +\xd7\xd8\xe5\xd8\xda\xe6\xd9\xdb\xe8\xdb\xdd\xe7\xda\xdc\xe6\xd9\ +\xdb\xe4\xd7\xd9\xe5\xd8\xda\xe5\xd8\xda\xe4\xd7\xd9\xe3\xd6\xd8\ +\xe2\xd5\xd7\xe2\xd5\xd7\xe1\xd3\xd5\xe0\xd3\xd5\xe0\xd2\xd4\xe0\ +\xd2\xd3\xe1\xd3\xd4\xe2\xd2\xd3\xe4\xd4\xd4\xe5\xd6\xd4\xe6\xd7\ +\xd4\xe8\xd6\xd5\xe9\xd7\xd6\xe9\xd8\xd5\xea\xd9\xd6\xeb\xda\xd7\ +\xed\xdb\xd8\xed\xdd\xd7\xef\xdf\xd9\xf0\xe0\xd9\xef\xdf\xd8\xef\ +\xdf\xd8\xef\xdd\xd6\xec\xda\xd3\xec\xd7\xd0\xea\xd6\xd0\xe9\xd6\ +\xcf\xe9\xd5\xcf\xe9\xd6\xd1\xe9\xd6\xd1\xe9\xd7\xd2\xe8\xd7\xd4\ +\xe7\xd5\xd2\xe8\xd7\xd3\xe9\xd7\xd3\xdd\xcc\xcb\xbc\xae\xb7\xac\ +\xa1\xb1\xaa\xa2\xb1\xaa\xa3\xb2\xac\xa5\xb2\xad\xa5\xb2\xab\xa4\ +\xb1\xac\xa5\xb3\xac\xa5\xb3\xad\xa6\xb4\xac\xa6\xb3\xac\xa5\xb4\ +\xab\xa4\xb3\xac\xa5\xb4\xab\xa4\xb3\xad\xa6\xb5\xae\xa7\xb5\xa8\ +\xa1\xb3\xc2\xbe\xca\xd3\xcf\xd5\xcf\xcc\xd2\xcf\xcc\xd3\xce\xcb\ +\xd4\xcb\xc9\xd2\xcc\xca\xd3\xc8\xc5\xcf\xc4\xc0\xcb\xbf\xba\xc6\ +\xb0\xab\xbb\xae\xa9\xb9\xb1\xac\xbc\x9e\x99\xab\x93\x8f\xa3\x98\ +\x95\xa7\x9d\x9b\xab\xa1\x9b\xac\xa0\x9c\xac\xa5\xa0\xb0\xac\xa8\ +\xb6\xa9\xa5\xb4\xa8\xa4\xb3\xa3\xa0\xaf\xa4\xa1\xb0\xa5\xa1\xb0\ +\xa7\xa3\xb2\xa9\xa6\xb5\xab\xa8\xb7\xb0\xac\xb9\xb4\xb0\xbc\xb2\ +\xae\xba\xb1\xad\xb9\xb0\xad\xb9\xb3\xaf\xbb\xb2\xaf\xbb\xb4\xb0\ +\xbc\xb2\xaf\xbb\xb4\xb1\xbd\xb7\xb3\xbe\xb7\xb3\xbe\xb8\xb4\xbf\ +\xb2\xad\xb9\xa5\x9f\xb0\xa5\xa0\xb0\xa7\xa2\xb1\xa6\xa1\xb0\xa5\ +\xa0\xb0\xa7\xa2\xb1\xa9\xa4\xb1\xa9\xa5\xb2\x9f\x9e\xad\x94\x95\ +\xa7\x8f\x8e\xa2\xab\xa0\xad\xbc\xab\xb2\xba\xaa\xb1\xb8\xa9\xb1\ +\xb9\xab\xb4\xbd\xaf\xb7\xbf\xb2\xba\xc2\xb5\xbc\xc5\xb8\xc0\xc7\ +\xbb\xc2\xca\xbe\xc4\xcb\xbe\xc4\xc7\xb8\xbe\xbc\xad\xb6\xac\x9e\ +\xa9\x9c\x8c\x98\x8a\x7b\x8b\x70\x6a\x7f\x65\x64\x7b\x69\x68\x80\ +\x78\x74\x8b\x87\x84\x98\x91\x8d\x9f\x9a\x95\xa6\xa0\x9b\xab\xa2\ +\x9d\xad\xa4\x9f\xae\xa6\xa0\xae\xa9\xa3\xb0\xad\xa6\xb2\x00\x00\ +\x00\xcf\xc7\xce\xd5\xcc\xd3\xd8\xce\xd4\xda\xd0\xd6\xda\xd0\xd6\ +\xdb\xd2\xd7\xdd\xd4\xd8\xe0\xd6\xd9\xe2\xd7\xd9\xe3\xd6\xd9\xe3\ +\xd7\xd8\xe4\xd7\xd8\xe6\xd8\xd9\xe6\xd8\xd9\xe7\xd9\xda\xe8\xdb\ +\xdb\xe8\xdb\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe7\xda\xdc\xe6\xd9\xdb\ +\xe5\xd8\xda\xe5\xd8\xda\xe3\xd6\xd8\xe3\xd6\xd8\xe2\xd5\xd8\xe0\ +\xd3\xd7\xdf\xd2\xd5\xdf\xd2\xd5\xe0\xd3\xd5\xdf\xd2\xd4\xdf\xd1\ +\xd4\xe0\xd2\xd4\xe2\xd4\xd5\xe4\xd5\xd5\xe5\xd6\xd5\xe6\xd7\xd6\ +\xe7\xd8\xd6\xe8\xd8\xd6\xea\xd9\xd7\xeb\xda\xd7\xec\xdb\xd8\xed\ +\xdb\xd8\xed\xde\xd7\xee\xde\xd8\xee\xde\xd8\xef\xde\xd8\xef\xdd\ +\xd6\xec\xda\xd3\xeb\xd7\xd1\xea\xd4\xce\xe8\xd3\xcc\xe7\xd3\xcc\ +\xe7\xd3\xcd\xe7\xd3\xce\xe6\xd3\xce\xde\xca\xc8\xd4\xc0\xc1\xe4\ +\xd0\xcc\xe5\xd2\xcd\xd6\xc5\xc4\xb9\xac\xb6\xac\xa2\xb2\xa9\xa1\ +\xb0\xa9\xa2\xb1\xab\xa4\xb3\xab\xa4\xb2\xab\xa3\xb2\xab\xa4\xb3\ +\xab\xa4\xb3\xab\xa4\xb3\xac\xa5\xb3\xab\xa4\xb3\xab\xa4\xb3\xab\ +\xa4\xb3\xab\xa4\xb4\xac\xa3\xb3\xbc\xb7\xc3\xc6\xc1\xcd\xd3\xcf\ +\xd7\xd3\xd0\xd6\xd2\xcf\xd5\xd2\xd0\xd7\xd2\xcf\xd6\xd2\xcf\xd8\ +\xce\xcb\xd5\xc6\xc2\xcd\xc5\xc1\xcc\xbd\xb9\xc4\xad\xa8\xb7\xa9\ +\xa4\xb3\xa9\xa3\xb4\xb1\xac\xba\xa5\xa0\xb2\x9a\x95\xa8\x9b\x97\ +\xa9\xa0\x9a\xab\xa2\x9d\xae\xab\xa6\xb6\xac\xa7\xb6\xa8\xa4\xb3\ +\xa5\xa1\xb0\xa1\x9e\xae\xa3\xa0\xb0\xa3\xa0\xb0\xa5\xa2\xb2\xa7\ +\xa4\xb3\xa9\xa6\xb5\xae\xab\xb8\xae\xac\xb8\xae\xab\xb8\xae\xab\ +\xb8\xb1\xad\xb9\xaf\xad\xb9\xb0\xae\xba\xb2\xaf\xbb\xb3\xb0\xbc\ +\xb4\xb1\xbd\xb6\xb2\xbe\xb8\xb4\xbf\xb8\xb4\xbf\xb5\xb1\xbd\xa4\ +\x9f\xb0\xa0\x9c\xad\xa4\x9e\xaf\xa3\x9d\xae\xa4\x9f\xaf\xa4\xa0\ +\xaf\x98\x99\xa8\x86\x8e\x9f\x78\x84\x98\x7e\x84\x99\x9c\x94\xa4\ +\xa7\x9a\xa7\xa6\x9a\xa8\xa3\x99\xa8\xa1\x99\xaa\xa3\x9b\xab\xa8\ +\x9e\xae\xac\xa2\xb0\xb1\xa6\xb3\xb4\xa9\xb6\xb7\xac\xb8\xbb\xaf\ +\xba\xbc\xb0\xba\xb7\xab\xb6\xad\xa1\xad\x9f\x94\xa4\x92\x86\x97\ +\x89\x7d\x90\x79\x73\x89\x6d\x6c\x83\x71\x71\x8a\x86\x83\x99\x9a\ +\x99\xa9\xa7\xa4\xb2\xae\xaa\xb5\xae\xaa\xb6\xae\xaa\xb6\xaf\xab\ +\xb7\xae\xaa\xb6\xb0\xaa\xb6\xb3\xad\xb8\x00\x00\x00\xcb\xc2\xca\ +\xd2\xc9\xcf\xd7\xcd\xd4\xda\xd0\xd6\xda\xd0\xd6\xdc\xd2\xd6\xdf\ +\xd5\xd7\xe1\xd6\xd9\xe3\xd7\xd9\xe4\xd8\xd9\xe6\xd8\xd9\xe7\xd9\ +\xd9\xe8\xda\xd9\xe8\xda\xda\xe9\xdb\xdc\xea\xdd\xdd\xea\xde\xde\ +\xe9\xdc\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd8\xda\xe5\ +\xd8\xda\xe3\xd6\xd8\xe3\xd5\xd9\xe1\xd4\xd8\xe0\xd2\xd6\xdf\xd2\ +\xd5\xdf\xd2\xd6\xe0\xd2\xd5\xe0\xd2\xd4\xe0\xd2\xd4\xe1\xd3\xd4\ +\xe1\xd3\xd5\xe3\xd4\xd6\xe4\xd6\xd7\xe6\xd6\xd7\xe7\xd8\xd8\xe7\ +\xd8\xd7\xe8\xd8\xd7\xea\xd9\xd8\xeb\xda\xd7\xec\xdb\xd8\xed\xdd\ +\xd8\xee\xdd\xd7\xee\xdd\xd7\xef\xdd\xd7\xed\xdb\xd6\xec\xd9\xd4\ +\xeb\xd7\xd1\xe8\xd4\xcf\xe6\xd2\xcc\xe6\xd1\xcb\xe5\xcf\xca\xe4\ +\xcf\xca\xe5\xd1\xcb\xc6\xb4\xba\xb2\xa3\xb1\xd5\xc2\xc1\xe3\xcf\ +\xca\xd3\xc1\xc2\xbc\xae\xb7\xaf\xa6\xb3\xab\xa2\xb2\xa9\xa1\xb1\ +\xaa\xa3\xb2\xaa\xa3\xb2\xaa\xa3\xb2\xaa\xa3\xb2\xab\xa4\xb3\xab\ +\xa4\xb3\xab\xa4\xb3\xaa\xa3\xb1\xa7\xa1\xb0\xa5\x9f\xaf\xa2\x9c\ +\xaf\xb5\xad\xbd\xd7\xd4\xdb\xd3\xd0\xd8\xd5\xd1\xda\xd5\xd1\xd7\ +\xd4\xd0\xd7\xd3\xcf\xd6\xd3\xcf\xd7\xd1\xcd\xd5\xcb\xc8\xd1\xc7\ +\xc2\xcd\xc2\xbe\xc9\xb9\xb5\xc1\xa9\xa4\xb4\xa6\xa1\xb1\xa7\xa1\ +\xb2\xaa\xa4\xb5\xb1\xac\xbb\xa8\xa2\xb3\x9d\x99\xa9\x9e\x98\xa9\ +\xa4\x9f\xaf\xae\xa9\xb7\xaa\xa6\xb5\xa6\xa2\xb1\xa4\xa1\xb0\xa1\ +\x9e\xae\xa2\x9f\xaf\xa3\xa0\xb0\xa3\xa0\xb0\xa5\xa2\xb2\xa7\xa4\ +\xb4\xaa\xa7\xb6\xab\xa8\xb7\xaa\xa7\xb6\xab\xa8\xb6\xae\xab\xb7\ +\xad\xab\xb8\xaf\xad\xb9\xb1\xaf\xbb\xb3\xb1\xbd\xb4\xb1\xbc\xb7\ +\xb3\xbe\xb8\xb4\xc0\xb8\xb4\xbf\xb8\xb3\xbf\xa6\xa1\xb1\x9f\x9a\ +\xad\xa0\x9b\xad\xa3\x9d\xae\x95\x95\xa6\x7a\x85\x97\x61\x76\x88\ +\x5c\x75\x87\x72\x80\x92\x8c\x8b\x9c\x95\x8e\x9e\x96\x8f\xa0\x96\ +\x8f\xa2\x95\x90\xa3\x97\x93\xa6\x9a\x95\xa9\x9c\x97\xaa\xa1\x9a\ +\xab\xa4\x9b\xac\xa7\x9e\xaf\xaa\xa0\xb0\xac\xa3\xb1\xae\xa3\xb1\ +\xaa\xa0\xae\xa1\x98\xa8\x96\x8c\x9e\x8c\x82\x97\x88\x7f\x93\x7f\ +\x79\x8f\x77\x74\x8d\x7a\x7a\x93\x8e\x8e\xa2\xa8\xa6\xb4\xb2\xae\ +\xb9\xb2\xae\xb9\xb1\xad\xb9\xb1\xad\xb9\xb1\xad\xb9\xb1\xad\xb8\ +\xb1\xad\xb8\xb3\xad\xb8\x00\x00\x00\xc7\xbf\xc6\xcf\xc5\xcc\xd6\ +\xcc\xd2\xda\xd0\xd5\xdb\xd2\xd5\xdd\xd2\xd5\xdf\xd5\xd7\xe2\xd6\ +\xd8\xe5\xd8\xd9\xe7\xd9\xda\xe8\xda\xdb\xe8\xdb\xd9\xea\xdc\xda\ +\xea\xdd\xdb\xec\xde\xde\xec\xdf\xdf\xeb\xdf\xdf\xea\xde\xde\xe9\ +\xdc\xde\xe8\xdb\xdd\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd8\xda\xe3\xd6\ +\xd8\xe2\xd4\xd8\xe0\xd4\xd7\xdf\xd2\xd5\xde\xd2\xd6\xde\xd2\xd6\ +\xde\xd2\xd5\xde\xd2\xd5\xe0\xd2\xd6\xe0\xd3\xd6\xe2\xd5\xd6\xe4\ +\xd6\xd8\xe4\xd7\xd9\xe5\xd7\xd9\xe6\xd7\xd8\xe6\xd7\xd8\xe7\xd8\ +\xd7\xe9\xd9\xd7\xeb\xd9\xd8\xec\xda\xd8\xed\xdc\xd9\xed\xdc\xd8\ +\xee\xdd\xd7\xed\xdd\xd6\xee\xdb\xd6\xed\xda\xd5\xeb\xd8\xd3\xe8\ +\xd5\xd0\xe6\xd2\xcd\xe5\xd1\xcc\xe4\xcf\xca\xe2\xce\xc9\xe4\xcf\ +\xca\xc7\xb6\xbc\xa9\x9d\xaf\xbc\xab\xb3\xdf\xcc\xc7\xd9\xc7\xc4\ +\xc2\xb4\xba\xb2\xa8\xb5\xaf\xa6\xb3\xab\xa3\xb2\xaa\xa3\xb2\xa9\ +\xa2\xb1\xa9\xa2\xb1\xa9\xa2\xb1\xaa\xa3\xb3\xab\xa4\xb2\xab\xa4\ +\xb2\xaa\xa3\xb1\xa7\xa1\xb0\xa4\x9f\xb0\xa3\x9d\xb1\xcc\xc9\xd1\ +\xd7\xd3\xd9\xd7\xd2\xd9\xd7\xd2\xdb\xd5\xd1\xd7\xd4\xd0\xd7\xd5\ +\xd0\xd9\xd1\xcd\xd5\xce\xc9\xd2\xc8\xc4\xcf\xc5\xc1\xcc\xc1\xbd\ +\xc8\xb7\xb2\xbf\xa9\xa3\xb4\xa4\x9e\xaf\xa5\x9f\xb0\xab\xa6\xb5\ +\xb3\xae\xbc\xb1\xac\xbc\xa9\xa3\xb4\x9e\x99\xab\xa9\xa3\xb3\xae\ +\xa8\xb7\xa9\xa5\xb4\xa6\xa3\xb2\xa4\xa1\xaf\xa1\x9e\xae\xa2\x9f\ +\xaf\xa3\xa0\xaf\xa2\x9f\xaf\xa5\xa2\xb2\xa6\xa3\xb3\xa5\xa2\xb2\ +\xaa\xa7\xb6\xab\xa8\xb7\xa7\xa4\xb3\xaa\xa7\xb5\xad\xab\xb8\xb1\ +\xae\xbb\xb1\xaf\xbb\xb2\xb0\xbc\xb2\xb0\xbc\xb7\xb3\xbf\xb6\xb2\ +\xbe\xb9\xb5\xbf\xb8\xb4\xbe\xad\xa9\xb6\x9b\x97\xaa\x96\x93\xa6\ +\x7b\x83\x94\x5b\x71\x82\x51\x6f\x7f\x58\x73\x84\x7a\x85\x97\x8e\ +\x8d\x9f\x8f\x8b\x9d\x90\x8a\x9d\x8f\x8b\x9e\x90\x8c\x9f\x91\x8c\ +\xa1\x93\x8f\xa3\x94\x90\xa5\x97\x92\xa7\x9c\x96\xa9\x9f\x98\xaa\ +\xa1\x9a\xab\xa4\x9c\xac\xa4\x9c\xad\xa4\x9a\xab\xa0\x98\xa9\x9a\ +\x92\xa3\x91\x8a\x9d\x89\x82\x97\x89\x82\x97\x87\x82\x97\x85\x82\ +\x98\x89\x88\x9e\x96\x96\xaa\xa9\xa8\xb5\xb3\xaf\xba\xb2\xae\xb9\ +\xb1\xad\xb8\xb1\xad\xb8\xae\xaa\xb6\xaa\xa6\xb3\xaf\xab\xb7\xb2\ +\xad\xb8\x00\x00\x00\xc4\xbc\xc3\xcc\xc2\xc9\xd5\xca\xcf\xdb\xd0\ +\xd2\xdc\xd1\xd4\xde\xd2\xd4\xe0\xd3\xd5\xe3\xd6\xd8\xe5\xd8\xd8\ +\xe7\xd9\xda\xe9\xdb\xdb\xe9\xdc\xda\xea\xdd\xdb\xed\xe0\xde\xef\ +\xe2\xe1\xee\xe2\xe2\xed\xe1\xe1\xeb\xdf\xe0\xea\xdd\xdf\xe9\xdc\ +\xde\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd8\xda\xe3\xd5\xd9\xe2\xd5\xd8\ +\xe0\xd5\xd8\xde\xd3\xd7\xdd\xd2\xd8\xdd\xd3\xd9\xdd\xd2\xd9\xde\ +\xd3\xd8\xde\xd4\xd7\xe0\xd4\xd7\xe2\xd5\xd8\xe4\xd7\xda\xe5\xd8\ +\xda\xe6\xd9\xdb\xe6\xd9\xda\xe6\xd8\xd9\xe6\xd7\xd9\xe8\xd9\xd9\ +\xe9\xd9\xd7\xea\xda\xd8\xeb\xdb\xd9\xec\xdc\xd9\xec\xdb\xd8\xec\ +\xda\xd8\xec\xda\xd8\xec\xda\xd7\xeb\xd8\xd5\xe9\xd6\xd2\xe6\xd4\ +\xcf\xe5\xd1\xcd\xe3\xcf\xcb\xe3\xcf\xca\xe3\xcf\xca\xd3\xc2\xc2\ +\xa9\x9e\xae\xa9\x9e\xae\xcd\xb9\xba\xdd\xcb\xc6\xcb\xbb\xbe\xb8\ +\xac\xb7\xb0\xa6\xb3\xad\xa4\xb2\xab\xa4\xb3\xaa\xa3\xb1\xaa\xa3\ +\xb2\xa9\xa2\xb1\xab\xa4\xb2\xaa\xa3\xb1\xa9\xa2\xb2\xaa\xa3\xb2\ +\xa8\xa1\xb0\xa5\x9f\xaf\xa9\xa5\xb4\xc0\xbb\xc5\xd1\xcd\xd4\xd6\ +\xd2\xd8\xd4\xd0\xd7\xd5\xd0\xd9\xd5\xd1\xd8\xd2\xcd\xd6\xcf\xca\ +\xd3\xcd\xc8\xd2\xc8\xc4\xce\xc4\xbf\xca\xc1\xbd\xc8\xb7\xb2\xc0\ +\xa8\xa2\xb3\xa4\x9e\xae\xa3\x9d\xae\xaa\xa5\xb4\xb4\xb0\xbd\xb4\ +\xb0\xbc\xb1\xae\xbb\xab\xa5\xb5\xac\xa7\xb7\xae\xa9\xb7\xa9\xa6\ +\xb5\xa5\xa2\xb1\xa2\x9f\xaf\x9f\x9d\xad\xa0\x9d\xad\xa0\x9d\xad\ +\xa2\x9f\xaf\xa7\xa4\xb4\xa5\xa2\xb2\xa4\xa1\xb1\xa9\xa6\xb5\xa9\ +\xa6\xb5\xa6\xa3\xb3\xa9\xa6\xb4\xac\xa9\xb8\xae\xac\xb9\xb1\xaf\ +\xbb\xb3\xb0\xbc\xb4\xb1\xbd\xb8\xb4\xc0\xb8\xb4\xc0\xb9\xb5\xc0\ +\xb8\xb4\xbf\xb8\xb3\xbe\x7d\x7b\x94\x62\x6e\x82\x51\x67\x79\x53\ +\x6a\x7b\x6a\x79\x8b\x8b\x8e\x9e\x9b\x96\xa6\x95\x90\xa1\x92\x8d\ +\x9f\x90\x8b\x9e\x8f\x8b\x9e\x8f\x8b\x9e\x90\x8c\xa0\x90\x8b\xa0\ +\x92\x8d\xa2\x93\x8f\xa3\x96\x91\xa5\x9a\x94\xa6\x9e\x97\xa8\x9f\ +\x98\xa9\xa0\x98\xa9\x9e\x97\xa8\x9c\x94\xa6\x96\x8e\xa1\x90\x8a\ +\x9d\x8e\x88\x9b\x95\x8e\xa2\x9d\x97\xa8\xa0\x9c\xac\xa1\x9f\xb0\ +\xa4\xa3\xb3\xac\xaa\xb7\xb2\xae\xb9\xb2\xae\xb9\xab\xa7\xb4\xa7\ +\xa3\xb0\x9e\x9b\xaa\x9b\x99\xa9\xad\xa8\xb5\xb3\xad\xb8\x00\x00\ +\x00\xc1\xb8\xc0\xcb\xc1\xc7\xd4\xc8\xcc\xdb\xce\xd1\xdd\xd1\xd3\ +\xe0\xd3\xd5\xe0\xd3\xd6\xe3\xd7\xd7\xe6\xd8\xd9\xe7\xda\xda\xe9\ +\xdb\xdb\xea\xdd\xdc\xed\xdf\xdd\xef\xe3\xe1\xef\xe5\xe3\xef\xe4\ +\xe4\xee\xe2\xe2\xed\xe1\xe1\xeb\xdf\xe0\xea\xdd\xdf\xe9\xdc\xde\ +\xe8\xdb\xdd\xe6\xd9\xdb\xe3\xd7\xda\xe1\xd5\xd8\xdf\xd4\xd8\xde\ +\xd3\xd9\xdd\xd3\xd9\xdd\xd4\xda\xdc\xd3\xda\xdd\xd3\xd9\xdf\xd4\ +\xda\xe0\xd5\xda\xe2\xd7\xda\xe3\xd8\xdb\xe4\xd9\xdc\xe5\xd9\xdc\ +\xe5\xd9\xdb\xe6\xd9\xda\xe5\xd8\xd9\xe7\xd9\xd9\xe7\xd9\xd9\xe8\ +\xda\xd9\xea\xdb\xd8\xeb\xdb\xd8\xeb\xda\xd8\xeb\xda\xd8\xeb\xda\ +\xd7\xeb\xda\xd7\xea\xd9\xd7\xe8\xd6\xd4\xe6\xd4\xd1\xe4\xd1\xce\ +\xe4\xd0\xcd\xe2\xcf\xcb\xe0\xce\xca\xde\xcc\xc8\xb9\xab\xb5\xa8\ +\x9d\xae\xaf\xa0\xad\xd7\xc3\xbf\xd2\xc1\xc2\xc1\xb4\xbc\xb2\xa8\ +\xb5\xaf\xa6\xb3\xad\xa4\xb3\xab\xa2\xb2\xab\xa4\xb2\xab\xa4\xb2\ +\xac\xa4\xb2\xab\xa4\xb2\xab\xa4\xb2\xab\xa4\xb2\xaa\xa3\xb1\xa7\ +\xa1\xb0\xa8\xa3\xb2\xb2\xae\xbb\xc8\xc3\xcb\xd5\xd1\xd7\xd5\xd1\ +\xd7\xd4\xcf\xd7\xd4\xcf\xd8\xd2\xcd\xd6\xce\xc9\xd2\xcb\xc6\xd0\ +\xc7\xc2\xcd\xc4\xbf\xca\xc0\xbc\xc8\xb6\xb1\xbe\xa6\xa0\xb1\xa3\ +\x9d\xae\xa2\x9c\xad\xa9\xa2\xb1\xb2\xad\xba\xb3\xaf\xbb\xb3\xaf\ +\xbb\xaf\xab\xb8\xab\xa6\xb5\xad\xa8\xb7\xac\xa7\xb5\xa5\xa2\xb2\ +\xa1\x9f\xaf\x9f\x9d\xad\xa0\x9d\xad\xa1\x9e\xae\xa2\x9e\xaf\xa7\ +\xa4\xb4\xa3\xa0\xb0\xa3\xa0\xb0\xa9\xa6\xb5\xa8\xa5\xb3\xa7\xa4\ +\xb3\xaa\xa7\xb6\xae\xab\xb9\xae\xac\xba\xb0\xae\xbb\xb1\xaf\xbb\ +\xb5\xb1\xbe\xb8\xb4\xc0\xb9\xb6\xc2\xbb\xb7\xc1\xb8\xb4\xbf\xbc\ +\xb7\xc2\x90\x85\x99\x93\x8e\x98\x8f\x8d\x99\xa1\x9a\xa6\xaf\xa5\ +\xb1\xab\xa2\xaf\xa1\x9a\xa9\x9b\x95\xa5\x97\x91\xa2\x94\x8f\xa0\ +\x92\x8e\xa0\x91\x8d\xa0\x90\x8c\x9f\x90\x8b\xa0\x90\x8b\xa0\x90\ +\x8c\xa1\x92\x8d\xa1\x95\x8f\xa2\x98\x93\xa5\x9b\x96\xa7\x9b\x95\ +\xa8\x9a\x94\xa6\x97\x91\xa4\x93\x8d\xa0\x95\x8f\xa2\x9e\x99\xaa\ +\xa7\xa3\xb1\xac\xa8\xb5\xb0\xac\xb8\xb0\xac\xb9\xae\xac\xb8\xad\ +\xab\xb7\xae\xac\xb7\xad\xaa\xb5\xa4\xa1\xaf\xa0\x9e\xad\xa5\xa1\ +\xb0\xa4\xa0\xae\xaf\xaa\xb5\xb4\xae\xb8\x00\x00\x00\xc0\xb5\xbd\ +\xcb\xbf\xc4\xd3\xc6\xca\xdb\xce\xd0\xde\xd1\xd3\xe0\xd3\xd5\xe1\ +\xd4\xd5\xe3\xd5\xd6\xe5\xd8\xd9\xe7\xda\xda\xea\xdc\xdd\xeb\xde\ +\xde\xee\xe1\xdf\xf0\xe4\xe3\xef\xe6\xe5\xef\xe6\xe5\xef\xe4\xe4\ +\xed\xe2\xe3\xed\xe0\xe2\xeb\xde\xe0\xe9\xdc\xde\xe8\xdb\xdd\xe5\ +\xd9\xdc\xe3\xd8\xdb\xe2\xd7\xda\xe0\xd5\xdb\xdf\xd5\xdb\xdd\xd5\ +\xdc\xdd\xd5\xdc\xdd\xd5\xdc\xdc\xd4\xdb\xde\xd5\xdb\xe0\xd6\xdb\ +\xe1\xd6\xdc\xe2\xd8\xdd\xe3\xd9\xdd\xe5\xda\xdc\xe5\xd9\xdc\xe5\ +\xd9\xdc\xe6\xd9\xda\xe6\xd8\xda\xe6\xd8\xda\xe7\xd9\xda\xe7\xd9\ +\xd9\xe8\xda\xd9\xe9\xda\xd9\xea\xda\xd7\xe9\xda\xd7\xe9\xd9\xd7\ +\xe9\xd8\xd7\xe8\xd6\xd5\xe6\xd5\xd3\xe4\xd3\xd1\xe2\xd0\xce\xe0\ +\xcd\xcb\xdf\xcc\xcb\xdd\xcb\xc8\xc9\xba\xbe\xaa\xa0\xaf\xa7\x9c\ +\xac\xbc\xaa\xb1\xd7\xc4\xc2\xc6\xb8\xbe\xb9\xaf\xbb\xb1\xa8\xb5\ +\xb0\xa7\xb4\xae\xa5\xb2\xad\xa3\xb3\xae\xa4\xb3\xad\xa5\xb3\xae\ +\xa6\xb3\xac\xa5\xb2\xac\xa5\xb2\xac\xa5\xb2\xa9\xa3\xb1\xa7\xa2\ +\xb1\xaf\xab\xb8\xc0\xbb\xc5\xd5\xd1\xd7\xd4\xd0\xd7\xd2\xcd\xd6\ +\xd4\xcf\xd8\xd2\xcd\xd6\xcd\xc8\xd1\xc9\xc4\xce\xc6\xc1\xcc\xc4\ +\xc0\xcb\xbf\xbb\xc7\xb7\xb2\xbf\xa8\xa2\xb2\xa2\x9c\xac\xa1\x9b\ +\xac\xa7\xa1\xb1\xaf\xab\xb8\xb2\xae\xba\xb3\xae\xbb\xaf\xab\xb8\ +\xa8\xa3\xb2\xab\xa7\xb6\xaa\xa7\xb5\xa7\xa4\xb3\xa2\x9f\xb0\xa0\ +\x9d\xae\xa1\x9d\xad\xa1\x9e\xad\xa1\x9e\xaf\xa6\xa3\xb3\xa4\xa1\ +\xb1\xa3\xa0\xb0\xaa\xa7\xb6\xa6\xa3\xb3\xa7\xa5\xb4\xa9\xa7\xb5\ +\xac\xa9\xb8\xaf\xac\xba\xb2\xaf\xbc\xb1\xaf\xbb\xb5\xb2\xbe\xba\ +\xb6\xc1\xba\xb6\xc1\xbd\xb9\xc4\xb7\xb3\xbf\xb9\xb4\xc0\xc9\xba\ +\xbd\xd8\xc4\xc1\xd0\xbd\xbc\xc6\xb6\xb9\xb8\xac\xb5\xac\xa3\xaf\ +\xa5\x9e\xac\xa1\x9a\xa9\x9a\x96\xa5\x98\x92\xa3\x95\x90\xa2\x93\ +\x8f\xa1\x92\x8e\xa1\x8f\x8b\x9f\x90\x8b\x9f\x8f\x8a\x9f\x8f\x8a\ +\x9f\x90\x8c\xa0\x91\x8d\xa0\x96\x92\xa5\x99\x94\xa7\x97\x92\xa5\ +\x96\x90\xa4\x99\x94\xa6\xa2\x9f\xaf\xac\xa9\xb6\xb2\xae\xba\xb3\ +\xaf\xba\xb2\xaf\xbb\xb2\xaf\xbb\xb0\xad\xb9\x9f\xa2\xb0\x89\x93\ +\xa5\x7f\x8d\x9f\x97\x99\xaa\xa8\xa4\xb3\xae\xaa\xb6\xae\xaa\xb6\ +\xad\xa8\xb5\xb3\xad\xb8\x00\x00\x00\xbd\xb1\xb8\xc9\xbc\xc1\xd2\ +\xc4\xc7\xd9\xcc\xce\xdd\xd0\xd1\xdf\xd2\xd3\xe0\xd2\xd3\xe3\xd5\ +\xd6\xe5\xd7\xd8\xe6\xd9\xda\xe9\xdb\xdc\xeb\xde\xdf\xee\xe2\xe2\ +\xf0\xe5\xe4\xf1\xe7\xe6\xf0\xe6\xe6\xef\xe5\xe5\xed\xe2\xe4\xec\ +\xe0\xe2\xec\xdf\xe1\xea\xdd\xdf\xe7\xdc\xde\xe6\xdb\xde\xe4\xd9\ +\xdd\xe2\xd8\xdd\xe2\xd8\xde\xe0\xd8\xde\xde\xd6\xde\xdf\xd7\xde\ +\xde\xd6\xdd\xdd\xd5\xdc\xde\xd6\xdd\xde\xd6\xdc\xe1\xd8\xde\xe2\ +\xd8\xde\xe3\xd9\xdf\xe3\xd9\xdf\xe5\xda\xdd\xe4\xd9\xdd\xe4\xda\ +\xdd\xe6\xda\xdb\xe6\xda\xdc\xe6\xd9\xdb\xe6\xd9\xd9\xe6\xd8\xda\ +\xe7\xd8\xda\xe7\xd8\xd9\xe7\xd8\xd7\xe7\xd9\xd7\xe6\xd8\xd6\xe6\ +\xd7\xd5\xe4\xd5\xd4\xe3\xd2\xd1\xe0\xd0\xce\xde\xcd\xcc\xdc\xcb\ +\xcb\xdb\xc9\xc9\xc0\xb1\xb9\xac\xa2\xb1\xa8\x9e\xaf\xa9\x9c\xab\ +\xc9\xb6\xb8\xcd\xbe\xbf\xbf\xb5\xbf\xb5\xab\xb8\xb3\xa8\xb5\xb1\ +\xa9\xb5\xb0\xa7\xb4\xb0\xa6\xb5\xaf\xa5\xb4\xae\xa7\xb4\xae\xa7\ +\xb4\xad\xa6\xb3\xae\xa7\xb4\xab\xa5\xb2\xa9\xa3\xb2\xb3\xaf\xbb\ +\xc7\xc2\xcb\xd2\xcd\xd4\xd6\xd2\xd8\xd3\xce\xd6\xd1\xcc\xd6\xcf\ +\xca\xd3\xcb\xc6\xcf\xc8\xc3\xcd\xc3\xbf\xca\xc2\xbe\xc9\xc0\xbc\ +\xc7\xb6\xb2\xbf\xa6\xa1\xb0\xa0\x9a\xab\xa1\x9b\xab\xa2\x9d\xad\ +\xac\xa8\xb5\xb2\xae\xba\xb2\xae\xba\xab\xa7\xb5\xa5\xa2\xb1\xaa\ +\xa7\xb6\xaa\xa7\xb6\xa8\xa5\xb4\xa3\xa0\xb0\xa1\x9e\xae\xa1\x9f\ +\xaf\xa0\x9e\xae\xa1\x9e\xae\xa3\xa0\xb0\xa3\xa0\xb0\xa4\xa0\xb1\ +\xa8\xa5\xb6\xa3\xa0\xb0\xa6\xa3\xb2\xa9\xa7\xb5\xad\xaa\xb8\xb0\ +\xae\xbb\xb3\xb1\xbe\xb3\xb1\xbe\xb8\xb6\xc2\xb9\xb9\xc3\xbc\xb9\ +\xc3\xbd\xb9\xc4\xb6\xb2\xbd\xb8\xb3\xc0\xce\xc0\xc3\xd7\xc3\xc0\ +\xcc\xba\xbb\xc1\xb2\xb7\xb4\xaa\xb3\xae\xa5\xb1\xa9\xa1\xae\xa5\ +\x9e\xac\x9e\x9a\xa8\x9b\x95\xa6\x99\x93\xa4\x97\x91\xa3\x94\x8f\ +\xa2\x92\x8c\x9f\x8f\x8a\x9d\x8f\x8a\x9d\x8e\x88\x9c\x8d\x89\x9d\ +\x8e\x89\x9e\x92\x8e\xa2\x95\x91\xa5\x97\x93\xa6\x9d\x99\xaa\xa6\ +\xa2\xb2\xae\xab\xb8\xb3\xaf\xba\xb4\xb0\xbb\xb3\xaf\xba\xae\xaa\ +\xb7\xb0\xac\xb8\xb2\xae\xb9\x9e\xa1\xae\x69\x83\x98\x53\x79\x8f\ +\x8b\x95\xa7\xaa\xa5\xb4\xad\xa9\xb6\xad\xa9\xb6\xa8\xa4\xb4\xb0\ +\xaa\xb7\x00\x00\x00\xba\xad\xb3\xc6\xb8\xbc\xcf\xc1\xc3\xd7\xca\ +\xcc\xdc\xce\xd0\xde\xd1\xd1\xe0\xd2\xd3\xe2\xd4\xd5\xe5\xd7\xd8\ +\xe7\xda\xda\xe9\xdc\xdc\xec\xdf\xe0\xee\xe3\xe3\xef\xe5\xe5\xf1\ +\xe7\xe7\xf0\xe7\xe7\xf0\xe5\xe6\xee\xe3\xe5\xec\xe1\xe3\xeb\xdf\ +\xe2\xe8\xdd\xe0\xe7\xdc\xdf\xe6\xdc\xdf\xe4\xda\xdf\xe3\xda\xdf\ +\xe2\xda\xe0\xe1\xd9\xe0\xe0\xd8\xdf\xdf\xd8\xdf\xde\xd6\xe0\xde\ +\xd6\xdd\xdd\xd6\xde\xde\xd6\xdd\xdf\xd8\xdf\xe0\xd9\xdf\xe2\xda\ +\xdf\xe3\xda\xe0\xe3\xda\xdf\xe3\xda\xdf\xe4\xda\xde\xe4\xd9\xdd\ +\xe4\xda\xdc\xe5\xd9\xdb\xe5\xd9\xdb\xe6\xd9\xdb\xe6\xd9\xda\xe5\ +\xd9\xda\xe6\xd8\xd9\xe5\xd7\xd9\xe5\xd6\xd8\xe5\xd6\xd8\xe4\xd5\ +\xd6\xe2\xd4\xd4\xdf\xd0\xd2\xdd\xce\xcf\xdb\xcb\xcd\xd1\xc1\xc5\ +\xb1\xa6\xb3\xad\xa4\xb3\xab\xa1\xb1\xa6\x9c\xad\xae\xa0\xad\xd0\ +\xbd\xbe\xc5\xb8\xbe\xbb\xb2\xbd\xb4\xab\xb7\xb3\xaa\xb5\xb1\xa8\ +\xb6\xb0\xa7\xb4\xb0\xa7\xb5\xb0\xa8\xb4\xaf\xa7\xb4\xb0\xa7\xb4\ +\xad\xa6\xb3\xac\xa5\xb2\xaa\xa4\xb2\xba\xb6\xc1\xce\xc9\xd1\xd1\ +\xcc\xd3\xd5\xd2\xd8\xd4\xd0\xd6\xcf\xca\xd3\xcf\xcb\xd1\xca\xc7\ +\xd0\xc7\xc4\xcd\xc3\xc0\xc9\xc0\xbc\xc7\xc0\xbc\xc6\xb9\xb5\xc0\ +\xaa\xa5\xb2\xa1\x9c\xab\xa1\x9c\xab\xa2\x9d\xad\xab\xa6\xb4\xb2\ +\xae\xba\xb3\xaf\xbb\xac\xa8\xb5\xa3\xa1\xb1\xa8\xa5\xb4\xaa\xa7\ +\xb6\xa9\xa6\xb5\xa4\xa1\xb1\xa2\x9f\xaf\xa0\x9f\xaf\xa1\x9f\xaf\ +\xa2\x9f\xaf\xa4\xa1\xb1\xa3\xa0\xb1\xa5\xa2\xb2\xa9\xa6\xb6\xa4\ +\xa1\xb1\xa5\xa2\xb1\xa9\xa6\xb4\xad\xab\xb9\xb1\xae\xbc\xb2\xb0\ +\xbd\xb5\xb3\xbf\xbb\xb9\xc4\xbc\xba\xc5\xbf\xbc\xc6\xbd\xb9\xc4\ +\xb8\xb4\xbf\xba\xb6\xc1\xca\xbd\xc1\xd2\xbe\xbd\xc7\xb6\xb9\xba\ +\xae\xb6\xb2\xa8\xb4\xae\xa5\xb2\xac\xa3\xb0\xa7\xa0\xad\xa3\x9d\ +\xac\x9e\x99\xa9\x9b\x95\xa6\x99\x93\xa5\x97\x91\xa3\x92\x8d\xa0\ +\x90\x8a\x9d\x8f\x89\x9c\x8e\x88\x9c\x8d\x88\x9c\x8c\x88\x9c\x8f\ +\x8b\x9f\x95\x91\xa5\x9f\x9b\xad\xa8\xa6\xb4\xb1\xad\xb9\xb4\xb0\ +\xbc\xb4\xb0\xbb\xb4\xb0\xbb\xb0\xac\xb9\xa0\x9d\xad\xa3\xa1\xb0\ +\xb2\xae\xba\xae\xab\xb6\x7e\x90\xa2\x60\x82\x96\x7b\x8a\x9f\x98\ +\x99\xac\xa1\x9f\xb0\x9b\x9a\xad\x9f\x9e\xb0\xaa\xa7\xb5\x00\x00\ +\x00\xb7\xa8\xae\xc3\xb4\xb7\xcd\xbd\xbf\xd5\xc7\xc8\xda\xcc\xce\ +\xdc\xce\xcf\xdf\xd1\xd2\xe2\xd4\xd5\xe4\xd7\xd7\xe6\xda\xda\xea\ +\xde\xde\xec\xe0\xe1\xee\xe3\xe3\xef\xe5\xe5\xf0\xe6\xe7\xf0\xe6\ +\xe6\xf0\xe4\xe6\xef\xe4\xe6\xed\xe2\xe5\xeb\xe0\xe2\xe9\xde\xe1\ +\xe7\xdd\xe0\xe6\xdb\xe1\xe4\xdb\xe1\xe3\xdc\xe1\xe2\xda\xe1\xe2\ +\xd9\xe0\xe0\xd9\xe1\xe0\xd8\xe1\xdf\xd7\xe1\xdf\xd7\xe1\xde\xd6\ +\xe0\xde\xd6\xe0\xde\xd8\xdf\xdf\xd8\xdf\xe1\xd9\xdf\xe1\xdb\xe0\ +\xe2\xda\xdf\xe2\xda\xe0\xe3\xda\xdf\xe4\xda\xdf\xe3\xd9\xdd\xe3\ +\xda\xdd\xe2\xd8\xdc\xe3\xd8\xdb\xe3\xd8\xdb\xe4\xd8\xda\xe5\xd8\ +\xd9\xe4\xd7\xd8\xe4\xd7\xd8\xe3\xd6\xd7\xe2\xd5\xd7\xe1\xd3\xd5\ +\xdf\xd1\xd3\xdc\xcf\xd1\xdb\xcd\xcf\xc6\xb9\xc0\xad\xa3\xb3\xae\ +\xa4\xb2\xaa\xa1\xb1\xa6\x9f\xae\xa4\x9a\xab\xbb\xa9\xb1\xd0\xc0\ +\xc2\xc2\xb7\xbf\xba\xb1\xbd\xb3\xaa\xb6\xb1\xa8\xb5\xb1\xa8\xb5\ +\xb1\xa8\xb5\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xaf\xa6\xb3\xac\ +\xa5\xb2\xab\xa4\xb2\xc4\xc0\xc9\xcf\xcb\xd2\xce\xc9\xd1\xd3\xcf\ +\xd5\xd4\xd0\xd6\xce\xc9\xd2\xcb\xc7\xd0\xca\xc6\xcf\xc7\xc3\xcc\ +\xc2\xbf\xc8\xc0\xbc\xc6\xbe\xba\xc5\xb8\xb4\xbf\xac\xa8\xb4\xa2\ +\x9d\xad\xa1\x9c\xab\xa2\x9d\xac\xa8\xa3\xb2\xb0\xac\xb8\xb2\xad\ +\xba\xac\xa9\xb6\xa3\xa0\xb0\xa7\xa4\xb3\xa9\xa6\xb5\xa9\xa6\xb5\ +\xa5\xa3\xb2\xa2\xa1\xb1\xa0\x9e\xae\xa3\x9f\xaf\xa2\x9f\xaf\xa4\ +\xa1\xb1\xa3\xa0\xb0\xa6\xa3\xb2\xa9\xa6\xb5\xa3\xa0\xb1\xa4\xa2\ +\xb1\xab\xa8\xb6\xae\xac\xba\xb1\xaf\xbc\xb3\xb0\xbd\xb6\xb4\xc0\ +\xbb\xb9\xc5\xbe\xbd\xc7\xc1\xbe\xc8\xbc\xb8\xc3\xba\xb6\xc2\xbd\ +\xb9\xc3\xc4\xba\xc0\xcc\xba\xbb\xc1\xb2\xb7\xb5\xab\xb5\xb1\xa7\ +\xb3\xaf\xa7\xb2\xad\xa4\xb1\xa9\xa2\xb0\xa5\x9e\xad\xa1\x9b\xab\ +\x9e\x98\xa8\x9b\x95\xa7\x9a\x94\xa5\x94\x8e\xa0\x8f\x89\x9c\x8e\ +\x88\x9b\x8f\x88\x9c\x8f\x8a\x9c\x8d\x89\x9d\x8f\x8b\x9f\x99\x96\ +\xa8\xa9\xa6\xb4\xb1\xae\xbb\xb3\xaf\xbb\xb4\xb0\xbb\xb3\xaf\xbb\ +\xb3\xaf\xba\xb2\xae\xba\xa8\xa5\xb2\xa8\xa5\xb3\xaf\xac\xb8\xa1\ +\xa2\xb0\x73\x87\x9d\x5f\x80\x96\x66\x7d\x97\x84\x8a\xa3\x90\x93\ +\xaa\x89\x8c\xa5\x97\x97\xac\xa5\xa3\xb3\x00\x00\x00\xb5\xa6\xab\ +\xbf\xae\xb1\xc8\xb8\xb9\xd1\xc2\xc3\xd8\xca\xcc\xdc\xce\xd0\xde\ +\xd0\xd1\xe1\xd3\xd4\xe4\xd6\xd7\xe6\xd9\xdb\xea\xdd\xdf\xec\xe0\ +\xe2\xee\xe3\xe5\xef\xe4\xe5\xf0\xe5\xe6\xef\xe6\xe7\xef\xe6\xe8\ +\xef\xe4\xe6\xed\xe2\xe5\xec\xe1\xe4\xe8\xde\xe1\xe8\xdd\xe3\xe6\ +\xdd\xe3\xe5\xdd\xe3\xe4\xdc\xe3\xe4\xdc\xe3\xe1\xda\xe1\xe1\xd9\ +\xe3\xe0\xda\xe2\xe1\xd8\xe2\xde\xd9\xe2\xde\xd8\xe2\xde\xd9\xe2\ +\xdf\xd7\xe1\xe0\xd9\xe0\xe0\xd9\xe0\xe2\xda\xe1\xe2\xdb\xe1\xe3\ +\xda\xe2\xe3\xdb\xe1\xe2\xda\xdf\xe2\xda\xdf\xe2\xd9\xde\xe1\xd8\ +\xde\xe1\xd7\xdc\xe2\xd7\xdb\xe2\xd7\xd9\xe2\xd7\xd9\xe2\xd7\xd8\ +\xe2\xd6\xd8\xe2\xd6\xd8\xe1\xd5\xd7\xdf\xd4\xd7\xdd\xd2\xd5\xdb\ +\xd1\xd3\xda\xcd\xd0\xbd\xb2\xbc\xac\xa3\xb2\xae\xa4\xb2\xab\xa2\ +\xb1\xa8\xa0\xaf\xa5\x9c\xac\xa6\x9b\xac\xc6\xb4\xb8\xcf\xc0\xc2\ +\xbf\xb4\xbe\xb9\xaf\xbb\xb4\xaa\xb6\xb3\xa8\xb6\xb1\xa7\xb4\xb1\ +\xa8\xb5\xb0\xa7\xb4\xb1\xa8\xb5\xaf\xa6\xb3\xac\xa5\xb2\xae\xa7\ +\xb5\xc8\xc3\xcc\xd0\xcc\xd3\xce\xc9\xd2\xcd\xc9\xd0\xd2\xce\xd4\ +\xce\xc9\xd0\xc8\xc3\xcc\xca\xc5\xcd\xc8\xc4\xcd\xc3\xc0\xc9\xbe\ +\xbb\xc5\xbc\xb8\xc3\xb9\xb5\xc0\xae\xaa\xb5\xa2\x9e\xac\xa1\x9c\ +\xab\xa2\x9d\xac\xa5\xa1\xaf\xaf\xab\xb6\xb2\xae\xba\xab\xa7\xb5\ +\xa3\xa0\xb0\xa5\xa2\xb2\xa7\xa4\xb3\xaa\xa6\xb5\xa7\xa4\xb4\xa4\ +\xa3\xb3\xa2\xa1\xb0\xa3\xa2\xb1\xa2\x9f\xaf\xa3\xa0\xb0\xa4\xa1\ +\xb1\xa7\xa4\xb3\xa8\xa5\xb4\xa5\xa2\xb1\xa7\xa4\xb3\xab\xa9\xb7\ +\xae\xad\xba\xb0\xae\xbc\xb5\xb3\xbf\xba\xb9\xc4\xbe\xbd\xc7\xc0\ +\xbe\xc9\xc0\xbc\xc6\xbc\xb9\xc4\xbd\xb9\xc4\xbe\xba\xc5\xb7\xad\ +\xb8\xc1\xb1\xb4\xbd\xb0\xb6\xb3\xa9\xb4\xb1\xa8\xb4\xaf\xa6\xb2\ +\xac\xa5\xb2\xa9\xa2\xaf\xa6\xa0\xae\xa1\x9c\xab\x9e\x99\xa9\x9d\ +\x97\xa8\x9c\x96\xa7\x96\x90\xa1\x90\x8a\x9d\x92\x8b\x9d\x94\x8c\ +\x9e\x93\x8c\x9d\x91\x8b\x9e\x92\x8e\xa1\xa1\x9f\xae\xae\xac\xb8\ +\xae\xac\xb8\xa4\xa2\xb1\xad\xa9\xb6\xb3\xaf\xbb\xb1\xad\xb8\xad\ +\xa9\xb6\xb1\xae\xb9\xae\xa9\xb8\xac\xa7\xb5\x8d\x92\xa6\x64\x7c\ +\x96\x66\x85\x9d\x7f\x90\xa7\x93\x97\xad\x95\x96\xac\x94\x94\xac\ +\x99\x97\xac\x9e\x9c\xb0\x00\x00\x00\xaa\x98\x9d\xbc\xaa\xad\xc5\ +\xb3\xb5\xce\xbf\xc0\xd6\xc8\xca\xda\xcd\xcf\xdd\xcf\xd1\xde\xd2\ +\xd3\xe2\xd5\xd7\xe7\xda\xdc\xeb\xde\xe0\xed\xe0\xe2\xed\xe2\xe4\ +\xef\xe4\xe6\xef\xe5\xe6\xef\xe5\xe6\xee\xe3\xe5\xed\xe3\xe5\xec\ +\xe2\xe5\xea\xe1\xe5\xe8\xdf\xe4\xe8\xdf\xe5\xe7\xe0\xe5\xe6\xdf\ +\xe5\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdc\xe6\xe2\xdc\xe5\xe1\xdb\xe5\ +\xe1\xdc\xe5\xe1\xdc\xe5\xe1\xdc\xe5\xdf\xdb\xe4\xdd\xd8\xe1\xda\ +\xd4\xde\xda\xd3\xdc\xdd\xd7\xde\xe1\xdb\xe2\xe3\xdc\xe3\xe3\xdc\ +\xe3\xe3\xdb\xe2\xe2\xdb\xe0\xe2\xdb\xe0\xe0\xd8\xdf\xdf\xd8\xdd\ +\xe0\xd6\xdd\xdf\xd7\xdb\xe0\xd5\xda\xdf\xd5\xd9\xe0\xd5\xda\xdf\ +\xd4\xd9\xdf\xd4\xd8\xdd\xd3\xd7\xdc\xd1\xd7\xda\xd0\xd7\xd5\xcb\ +\xd1\xb4\xaa\xb7\xac\xa5\xb2\xab\xa4\xb1\xad\xa5\xb2\xa9\xa0\xb0\ +\xa7\x9e\xad\xa6\x9d\xad\xad\xa1\xad\xcc\xbd\xbf\xc6\xb9\xbe\xb9\ +\xae\xba\xb5\xab\xb7\xb3\xaa\xb7\xb3\xaa\xb7\xb2\xa9\xb6\xb2\xa9\ +\xb6\xb1\xa8\xb5\xb0\xa7\xb4\xae\xa6\xb3\xb2\xaa\xb7\xcb\xc6\xce\ +\xc9\xc4\xcd\xcd\xc8\xd0\xce\xc9\xd0\xcf\xcb\xd1\xce\xca\xd0\xca\ +\xc5\xce\xc5\xc1\xca\xc4\xc1\xca\xc3\xc0\xc9\xc0\xbd\xc5\xbb\xb8\ +\xc2\xb9\xb5\xc0\xaf\xab\xb6\xa5\xa1\xae\xa1\x9d\xac\xa1\x9d\xac\ +\xa4\x9f\xae\xac\xa8\xb5\xb2\xae\xba\xaa\xa7\xb5\xa2\x9f\xaf\xa3\ +\xa0\xb0\xa7\xa4\xb3\xa9\xa6\xb5\xa8\xa6\xb5\xa4\xa3\xb2\xa3\xa2\ +\xb2\xa4\xa2\xb2\xa1\x9e\xae\xa2\x9f\xaf\xa4\xa1\xb1\xa7\xa4\xb4\ +\xa5\xa3\xb2\xa5\xa3\xb2\xa8\xa5\xb4\xad\xaa\xb7\xb0\xad\xb9\xb2\ +\xb0\xbc\xb7\xb5\xc1\xbe\xbd\xc6\xbd\xbc\xc6\xbf\xbe\xc8\xbf\xbc\ +\xc7\xbf\xbb\xc5\xc1\xbd\xc7\xbf\xbc\xc5\xac\xa3\xb2\xae\xa0\xab\ +\xbb\xae\xb6\xb2\xa8\xb4\xb0\xa8\xb3\xad\xa6\xb3\xab\xa4\xb1\xa7\ +\xa1\xb0\xa4\x9f\xae\xa2\x9d\xac\xa0\x99\xaa\x9f\x99\xa9\x9d\x97\ +\xa8\x9a\x94\xa5\x96\x90\xa1\x96\x8f\xa0\x97\x8f\xa0\x97\x8f\xa0\ +\x94\x8e\xa0\x97\x94\xa6\xa6\xa4\xb2\xb1\xae\xb9\xaa\xa8\xb5\x97\ +\x97\xa8\xa2\xa2\xb2\xb2\xae\xba\xa7\xa4\xb3\x9d\x9a\xac\xac\xa9\ +\xb6\xaf\xab\xb7\xa8\xa4\xb4\x8f\x93\xa9\x75\x86\xa1\x6b\x84\x9f\ +\x79\x8b\xa4\x94\x99\xad\x8e\x91\xaa\x93\x92\xaa\x97\x95\xac\x98\ +\x96\xab\x00\x00\x00\x69\x5e\x6d\xa7\x91\x96\xc3\xb0\xb2\xcc\xbd\ +\xbf\xd2\xc4\xc6\xd7\xca\xcc\xdb\xce\xcf\xdd\xd0\xd2\xe2\xd5\xd7\ +\xe6\xd9\xdb\xe9\xdd\xdf\xeb\xdf\xe1\xec\xe1\xe3\xed\xe2\xe4\xed\ +\xe2\xe4\xee\xe3\xe5\xec\xe2\xe5\xec\xe2\xe6\xeb\xe2\xe6\xea\xe1\ +\xe6\xe8\xe0\xe6\xe8\xe1\xe7\xe8\xe0\xe7\xe8\xe1\xe8\xe8\xe1\xe8\ +\xe7\xdf\xe9\xe6\xdf\xe8\xe4\xde\xe8\xe2\xdd\xe6\xe2\xdd\xe6\xe3\ +\xde\xe7\xe3\xde\xe7\xd4\xd0\xda\xc2\xbb\xc7\xbb\xb4\xbf\xb9\xb2\ +\xbd\xc0\xb8\xc3\xcc\xc5\xce\xd9\xd3\xdb\xe1\xdb\xe2\xe3\xdc\xe3\ +\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd8\xdf\xdf\xd7\xde\xde\xd7\xdd\xde\ +\xd6\xdc\xde\xd5\xdb\xdd\xd4\xdb\xdc\xd4\xda\xdc\xd3\xda\xdc\xd3\ +\xd9\xdc\xd3\xd9\xdb\xd2\xd9\xda\xd2\xd9\xd2\xc9\xd1\xaf\xa7\xb6\ +\xab\xa4\xb2\xaa\xa3\xb1\xaa\xa3\xb1\xaa\xa2\xb1\xa8\x9f\xaf\xa6\ +\x9f\xae\xa5\x9d\xad\xb6\xac\xb7\xbb\xb1\xba\xb7\xae\xb9\xb5\xac\ +\xb8\xb4\xab\xb7\xb3\xaa\xb7\xb3\xaa\xb7\xb3\xaa\xb7\xb3\xaa\xb7\ +\xb2\xa9\xb6\xb0\xa8\xb5\xb0\xa9\xb6\xbb\xb6\xc0\xb6\xb1\xbd\xbf\ +\xba\xc3\xc7\xc2\xcb\xce\xc9\xd0\xce\xca\xd0\xc9\xc5\xce\xc6\xc2\ +\xcb\xc3\xc0\xc9\xc2\xbf\xc8\xc0\xbd\xc5\xbb\xb7\xc2\xb9\xb5\xc0\ +\xb1\xad\xb8\xa7\xa3\xb0\xa2\x9d\xac\xa1\x9d\xac\xa2\x9e\xad\xa9\ +\xa4\xb2\xb0\xac\xb8\xab\xa7\xb6\xa1\x9e\xaf\xa2\xa0\xb0\xa6\xa3\ +\xb3\xa9\xa6\xb5\xa9\xa6\xb5\xa4\xa3\xb2\xa4\xa3\xb2\xa3\xa3\xb2\ +\x9f\x9e\xae\xa2\xa0\xb0\xa5\xa2\xb2\xa6\xa3\xb2\xa4\xa2\xb1\xa7\ +\xa4\xb3\xa9\xa7\xb5\xab\xa8\xb7\xaf\xad\xb9\xb4\xb2\xbe\xb8\xb6\ +\xc2\xbc\xbb\xc5\xbf\xbd\xc8\xc0\xc0\xc9\xbe\xba\xc5\xc1\xbd\xc8\ +\xc1\xbd\xc7\xc0\xbd\xc7\x94\x8b\xa0\x99\x8e\xa1\xb8\xad\xb7\xb2\ +\xa9\xb5\xb0\xa7\xb3\xad\xa5\xb2\xaa\xa3\xb2\xa6\xa0\xaf\xa3\x9d\ +\xad\xa2\x9d\xad\xa0\x9b\xab\x9f\x9a\xab\x9f\x99\xaa\x9e\x98\xa9\ +\x9a\x94\xa5\x9a\x92\xa3\x99\x91\xa2\x98\x90\xa1\x97\x91\xa2\x9d\ +\x9a\xaa\xaa\xa7\xb5\xb0\xae\xba\xaa\xa8\xb5\x93\x93\xa7\x9d\x9d\ +\xaf\xad\xaa\xb7\xab\xa8\xb6\xa3\xa0\xb1\xaa\xa6\xb5\xb1\xad\xb9\ +\xa9\xa5\xb3\x94\x96\xaa\x89\x91\xa9\x7c\x8a\xa4\x65\x7e\x9b\x6b\ +\x7e\x9c\x7e\x85\xa3\x8d\x8e\xa9\x93\x91\xaa\x93\x91\xaa\x00\x00\ +\x00\x3a\x3b\x52\x5e\x54\x67\xa3\x8d\x8f\xc2\xb3\xb4\xcd\xc0\xc3\ +\xd2\xc5\xc8\xd8\xcb\xce\xdd\xd0\xd2\xe1\xd3\xd6\xe4\xd8\xdb\xe7\ +\xdc\xdf\xea\xdf\xe2\xeb\xe0\xe2\xec\xe1\xe4\xec\xe1\xe4\xec\xe2\ +\xe5\xeb\xe1\xe4\xec\xe1\xe6\xea\xe2\xe8\xe9\xe2\xe7\xe9\xe1\xe8\ +\xe8\xe1\xe8\xe8\xe1\xe8\xe8\xe2\xe8\xe9\xe1\xea\xe7\xe1\xea\xe6\ +\xe0\xea\xe5\xe0\xe9\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xdf\xe8\xdd\xd9\ +\xe3\xbc\xb4\xc2\xb1\xa8\xb4\xb1\xa7\xb3\xb0\xa7\xb2\xb1\xa7\xb3\ +\xb1\xa7\xb3\xb8\xaf\xba\xc0\xb7\xc3\xcd\xc4\xce\xd8\xd1\xda\xe0\ +\xd8\xe0\xe0\xd9\xe0\xdf\xd8\xe0\xde\xd7\xdf\xdd\xd6\xdd\xdc\xd4\ +\xdb\xdb\xd3\xda\xdb\xd3\xd9\xdb\xd3\xd9\xdb\xd2\xd9\xdb\xd3\xda\ +\xda\xd3\xda\xdb\xd3\xdb\xd1\xc9\xd3\xae\xa7\xb5\xaa\xa3\xb2\xaa\ +\xa3\xb2\xa9\xa2\xb1\xaa\xa3\xb2\xab\xa1\xb0\xa9\xa0\xb0\xa6\x9f\ +\xae\xac\xa5\xb4\xb6\xae\xb9\xb6\xae\xb9\xb6\xae\xb9\xb5\xad\xb8\ +\xb4\xac\xb7\xb4\xab\xb7\xb3\xaa\xb7\xb4\xab\xb8\xb2\xa9\xb6\xb1\ +\xa8\xb5\xaf\xa8\xb5\xad\xa7\xb6\xaa\xa6\xb4\xac\xa7\xb5\xb7\xb2\ +\xbd\xc5\xc0\xc8\xcb\xc7\xcd\xcb\xc6\xce\xc7\xc2\xcb\xc3\xc0\xc9\ +\xc1\xbe\xc8\xbf\xbc\xc5\xbc\xb8\xc3\xb8\xb4\xbf\xb3\xaf\xbb\xa8\ +\xa3\xb0\xa4\x9f\xae\xa2\x9e\xad\xa2\x9e\xad\xa3\x9f\xae\xad\xa9\ +\xb5\xaa\xa8\xb6\xa1\x9f\xaf\xa0\x9f\xaf\xa5\xa2\xb1\xaa\xa7\xb6\ +\xa9\xa6\xb6\xa6\xa6\xb4\xa5\xa4\xb3\xa2\xa1\xb1\x9e\x9d\xae\xa2\ +\xa1\xb1\xa6\xa3\xb2\xa6\xa3\xb2\xa6\xa3\xb2\xa8\xa5\xb4\xa9\xa6\ +\xb5\xad\xaa\xb9\xb2\xb0\xbc\xb6\xb4\xc0\xba\xb7\xc3\xbc\xbb\xc6\ +\xc0\xbf\xc9\xbd\xbc\xc7\xbf\xbe\xca\xc5\xc2\xcb\xc3\xc0\xca\xc2\ +\xbe\xc7\x7f\x78\x8f\x89\x81\x98\xb5\xac\xb7\xb1\xa8\xb4\xad\xa6\ +\xb2\xaa\xa4\xb1\xa6\xa1\xb0\xa4\x9f\xae\xa2\x9d\xad\xa1\x9d\xad\ +\xa5\xa0\xaf\xa8\xa2\xb0\xab\xa4\xb2\xaa\xa3\xb2\xa5\x9f\xae\xa2\ +\x9b\xab\x9e\x97\xa8\x9b\x95\xa6\x9b\x95\xa6\xa1\x9e\xad\xa7\xa5\ +\xb4\xa2\xa1\xb1\xa5\xa5\xb4\xa0\xa0\xb1\xa3\xa2\xb3\xa2\xa0\xb0\ +\x9b\x99\xaa\xa7\xa3\xb2\xa8\xa5\xb4\xae\xa9\xb7\xa7\xa4\xb2\x84\ +\x86\x9f\x89\x8d\xa6\x94\x99\xae\x7c\x8a\xa4\x60\x77\x97\x7b\x84\ +\xa1\x8e\x8e\xa9\x8f\x8d\xa9\x8e\x8c\xa9\x00\x00\x00\x34\x39\x53\ +\x35\x38\x53\x4d\x44\x59\x94\x7c\x7f\xc2\xb2\xb4\xce\xc0\xc4\xd3\ +\xc7\xca\xd8\xcd\xd0\xde\xd3\xd6\xe3\xd8\xdb\xe7\xdc\xdf\xe8\xde\ +\xe2\xea\xdf\xe3\xea\xe1\xe4\xea\xe1\xe4\xea\xe1\xe5\xea\xe2\xe8\ +\xea\xe3\xe8\xe9\xe3\xe8\xea\xe3\xe9\xe8\xe2\xe9\xe8\xe1\xe8\xe9\ +\xe2\xea\xe9\xe2\xeb\xe9\xe2\xec\xe8\xe3\xec\xe8\xe4\xea\xe6\xe1\ +\xea\xe6\xe1\xea\xe5\xe0\xe9\xe5\xe0\xe9\xd7\xd2\xdd\xb4\xac\xb9\ +\xb0\xa6\xb2\xb0\xa6\xb2\xae\xa5\xb1\xae\xa4\xb0\xad\xa4\xb0\xad\ +\xa3\xb0\xad\xa4\xb0\xaf\xa5\xb2\xb5\xab\xb7\xc4\xbc\xc6\xd6\xcf\ +\xd8\xdc\xd6\xdf\xdc\xd7\xe0\xda\xd5\xdf\xda\xd4\xdd\xda\xd3\xdd\ +\xd9\xd3\xdd\xd9\xd2\xdc\xda\xd3\xdd\xdb\xd4\xde\xdb\xd4\xde\xdb\ +\xd5\xdd\xd2\xcc\xd6\xae\xa7\xb6\xaa\xa3\xb2\xa9\xa2\xb1\xa8\xa2\ +\xb0\xa8\xa1\xb0\xa9\xa2\xb1\xaa\xa2\xb1\xa8\xa1\xb0\xab\xa4\xb2\ +\xb5\xae\xb9\xb5\xad\xb7\xb5\xad\xb7\xb4\xac\xb7\xb5\xad\xb8\xb5\ +\xad\xb8\xb4\xac\xb8\xb4\xab\xb8\xb2\xa9\xb6\xb0\xa8\xb6\xae\xa7\ +\xb6\xaa\xa5\xb4\xa9\xa4\xb3\xa8\xa3\xb2\xab\xa6\xb4\xb2\xad\xb9\ +\xbc\xb7\xc1\xc8\xc3\xca\xc7\xc2\xcb\xc4\xc0\xc9\xc0\xbc\xc6\xbe\ +\xbb\xc5\xbc\xb7\xc2\xb8\xb4\xbf\xb3\xaf\xba\xac\xa8\xb4\xa4\x9f\ +\xae\xa3\x9e\xad\xa0\x9d\xac\xa1\x9d\xac\xa7\xa3\xb2\xa7\xa4\xb3\ +\xa2\x9f\xaf\xa1\x9f\xaf\xa3\xa0\xb0\xa9\xa7\xb6\xa9\xa8\xb7\xa6\ +\xa6\xb4\xa5\xa5\xb4\xa1\xa1\xb0\xa2\xa1\xb1\xa5\xa3\xb2\xa5\xa2\ +\xb1\xa5\xa2\xb1\xa7\xa4\xb3\xa9\xa6\xb4\xac\xa9\xb6\xae\xac\xba\ +\xb5\xb3\xbf\xb6\xb4\xc1\xbb\xba\xc4\xbe\xbd\xc7\xc1\xbf\xca\xc1\ +\xbf\xca\xc8\xc6\xd0\xc4\xc0\xca\xc4\xc0\xca\xc3\xbf\xc9\x6c\x66\ +\x81\x77\x73\x8d\xb1\xa9\xb4\xad\xa5\xb2\xaa\xa3\xb1\xa6\xa1\xb0\ +\xa3\x9f\xae\xa1\x9e\xad\xa1\x9e\xae\xa8\xa4\xb3\xb0\xaa\xb7\xb3\ +\xad\xb9\xb4\xae\xb9\xb2\xab\xb6\xab\xa6\xb3\xa6\xa1\xaf\xa2\x9d\ +\xac\x9f\x9b\xab\x9f\x9c\xab\xa1\x9f\xaf\x9f\x9e\xaf\x95\x96\xab\ +\x9f\x9f\xb2\xa9\xa9\xb7\xa7\xa7\xb6\x97\x97\xaa\x7f\x80\x9a\x9c\ +\x9c\xad\xaa\xa6\xb6\xa9\xa4\xb3\x9c\x9a\xad\x77\x7d\x99\x80\x85\ +\xa1\x92\x95\xad\x85\x8f\xa8\x76\x83\xa2\x86\x8b\xa7\x90\x8f\xaa\ +\x8c\x8b\xa8\x87\x87\xa5\x00\x00\x00\x3b\x42\x5f\x33\x38\x54\x2f\ +\x32\x4f\x41\x3b\x54\x8b\x76\x7e\xbc\xa9\xab\xcd\xc1\xc4\xd6\xcb\ +\xcf\xda\xd1\xd5\xe0\xd6\xdb\xe4\xdb\xdf\xe7\xdd\xe3\xe8\xdf\xe4\ +\xe9\xe1\xe5\xe9\xe1\xe6\xea\xe2\xe7\xe9\xe3\xe8\xea\xe3\xe9\xea\ +\xe3\xea\xe9\xe2\xea\xe9\xe2\xe9\xe9\xe1\xea\xe8\xe1\xeb\xe7\xe3\ +\xec\xe8\xe3\xec\xe9\xe5\xeb\xe9\xe5\xeb\xe8\xe3\xea\xe7\xe2\xeb\ +\xe7\xe2\xea\xe6\xe1\xea\xd0\xcb\xd6\xb2\xa9\xb5\xaf\xa5\xb1\xaf\ +\xa5\xb1\xae\xa4\xb0\xad\xa3\xb0\xac\xa2\xaf\xac\xa2\xaf\xac\xa2\ +\xb0\xab\xa2\xaf\xac\xa3\xb0\xae\xa3\xb1\xb5\xab\xb9\xc5\xbc\xc8\ +\xd0\xc9\xd3\xd4\xcf\xd8\xd8\xd3\xdc\xd9\xd4\xdd\xd9\xd4\xdd\xd8\ +\xd3\xdc\xd9\xd4\xdd\xda\xd5\xde\xda\xd5\xde\xdb\xd6\xdf\xd4\xcf\ +\xd9\xb0\xa9\xb8\xa8\xa1\xb0\xa8\xa1\xb0\xa7\xa1\xb1\xa8\xa1\xb1\ +\xa9\xa2\xb1\xa9\xa3\xb2\xab\xa2\xb3\xaa\xa3\xb2\xb2\xaa\xb5\xb6\ +\xae\xb8\xb6\xae\xb8\xb5\xad\xb8\xb4\xac\xb7\xb5\xad\xb7\xb4\xad\ +\xb7\xb4\xac\xb8\xb3\xaa\xb6\xb0\xa8\xb5\xae\xa7\xb5\xab\xa6\xb4\ +\xa8\xa3\xb2\xa8\xa3\xb2\xa8\xa3\xb2\xa7\xa2\xb1\xac\xa8\xb4\xb8\ +\xb4\xbe\xc5\xc0\xc9\xc3\xbf\xc8\xbf\xbb\xc6\xbd\xb9\xc4\xbb\xb7\ +\xc2\xb8\xb4\xbf\xb5\xb1\xbc\xaf\xab\xb7\xa6\xa2\xaf\xa2\x9e\xad\ +\xa1\x9d\xac\xa0\x9d\xac\xa2\x9f\xae\xa5\xa2\xb1\xa1\x9f\xaf\xa1\ +\x9f\xaf\xa1\x9f\xaf\xa9\xa6\xb5\xa9\xa9\xb7\xa6\xa6\xb4\xa5\xa5\ +\xb3\x9f\x9e\xae\xa6\xa4\xb2\xa6\xa3\xb2\xa4\xa1\xb0\xa6\xa3\xb2\ +\xa8\xa6\xb3\xaa\xa8\xb5\xad\xaa\xb7\xb3\xb0\xbc\xb5\xb3\xbf\xb8\ +\xb6\xc2\xbe\xbc\xc7\xc1\xc0\xca\xc3\xc2\xcc\xc5\xc4\xcd\xc1\xbd\ +\xc9\xc7\xc4\xcd\xc4\xc0\xc9\xc5\xc0\xc8\x50\x50\x6e\x69\x69\x85\ +\xa8\xa2\xaf\xa7\xa2\xb0\xa4\xa0\xb0\xa2\x9f\xae\x9f\x9c\xad\x9f\ +\x9c\xac\xa6\xa2\xb1\xad\xa9\xb5\xb1\xab\xb7\xaf\xa9\xb5\xac\xa6\ +\xb2\xaa\xa4\xb1\xa7\xa3\xaf\xa5\xa1\xad\xa3\x9f\xab\xa2\x9e\xad\ +\xa0\x9e\xac\x9f\x9f\xaf\x9f\x9f\xaf\x9b\x9c\xaf\x9d\x9e\xb1\xa3\ +\xa4\xb4\xa5\xa5\xb5\x9a\x9a\xac\x7c\x81\x9c\x88\x8d\xa4\xa5\xa4\ +\xb4\xa1\xa0\xb0\x8c\x8d\xa4\x7e\x83\x9f\x85\x88\xa5\x81\x86\xa3\ +\x6c\x7d\x9d\x6c\x7d\x9c\x82\x87\xa4\x8d\x8d\xa8\x88\x89\xa5\x86\ +\x87\xa5\x00\x00\x00\x3b\x42\x5f\x32\x38\x54\x30\x35\x52\x2f\x32\ +\x50\x3c\x3b\x54\x66\x5a\x68\xa3\x8e\x92\xc7\xb7\xba\xd5\xcb\xd0\ +\xdc\xd3\xd9\xe0\xd8\xdd\xe4\xdc\xe2\xe6\xdf\xe4\xe7\xe0\xe6\xe8\ +\xe0\xe7\xe9\xe1\xe8\xe9\xe2\xe9\xea\xe3\xea\xea\xe3\xea\xea\xe3\ +\xea\xe9\xe2\xeb\xea\xe2\xeb\xe7\xe1\xeb\xe8\xe3\xec\xe9\xe4\xed\ +\xe9\xe4\xec\xe9\xe5\xea\xe8\xe4\xeb\xe8\xe4\xeb\xe8\xe3\xea\xe7\ +\xe3\xea\xd8\xd3\xdd\xb5\xac\xb9\xaf\xa5\xb1\xae\xa4\xb0\xad\xa3\ +\xb0\xad\xa3\xb0\xac\xa2\xaf\xab\xa1\xae\xab\xa1\xae\xaa\xa1\xae\ +\xab\xa1\xaf\xaa\xa0\xb0\xaa\x9f\xb0\xab\xa0\xb1\xaf\xa5\xb5\xb5\ +\xab\xba\xbf\xb6\xc2\xce\xc8\xd1\xd7\xd3\xdd\xd8\xd3\xde\xd9\xd5\ +\xde\xdb\xd6\xdf\xda\xd6\xdf\xdb\xd6\xdf\xd7\xd3\xdd\xb3\xae\xbd\ +\xa7\xa0\xb0\xa6\xa0\xaf\xa5\xa0\xb0\xa6\xa1\xb0\xa8\xa2\xb1\xaa\ +\xa3\xb2\xac\xa5\xb4\xab\xa4\xb3\xb3\xab\xb7\xb8\xaf\xb9\xb7\xaf\ +\xb9\xb6\xae\xb8\xb5\xad\xb7\xb5\xad\xb7\xb4\xac\xb7\xb5\xad\xb8\ +\xb4\xac\xb7\xb3\xab\xb7\xaf\xa9\xb5\xac\xa8\xb4\xa9\xa4\xb3\xa8\ +\xa3\xb2\xa8\xa3\xb1\xa6\xa1\xb0\xa5\xa1\xb0\xaa\xa5\xb2\xb8\xb2\ +\xbd\xc4\xbe\xc7\xc0\xbc\xc6\xbd\xb9\xc4\xbb\xb7\xc2\xb9\xb5\xc0\ +\xb7\xb3\xbe\xaf\xab\xb7\xa6\xa2\xaf\xa3\x9f\xae\x9f\x9d\xac\xa0\ +\x9d\xac\xa1\x9e\xac\xa2\x9f\xaf\x9e\x9b\xac\x9e\x9d\xad\x9f\x9e\ +\xae\xa7\xa4\xb4\xa9\xa9\xb7\xa7\xa6\xb6\xa5\xa4\xb3\xa0\xa0\xaf\ +\xa6\xa5\xb3\xa5\xa2\xb1\xa4\xa1\xb0\xa7\xa4\xb2\xa9\xa7\xb3\xab\ +\xa8\xb5\xad\xab\xb8\xb4\xb2\xbe\xb7\xb5\xc1\xbb\xb9\xc5\xbf\xbd\ +\xc8\xc1\xc0\xca\xc7\xc6\xcf\xc6\xc3\xcd\xc9\xc5\xd0\xc7\xc4\xcd\ +\xc4\xc0\xc9\xbb\xb5\xbd\x40\x48\x64\x5b\x60\x7b\x9d\x9a\xaa\x9f\ +\x9d\xad\x9e\x9c\xac\x9e\x9d\xac\x9b\x99\xab\x9c\x9b\xab\xa2\x9f\ +\xaf\xa6\xa1\xb0\xa5\xa1\xae\xa4\x9f\xae\xa4\xa0\xae\xa5\xa0\xae\ +\xa5\xa1\xad\xa5\xa1\xad\xa4\xa0\xac\xa3\x9f\xad\xa1\x9d\xac\x9f\ +\x9e\xad\x9e\x9e\xae\xa0\xa0\xb1\x9e\x9f\xb0\x9f\x9f\xb0\xa1\xa1\ +\xb3\x9c\x9c\xaf\x7f\x85\x9f\x76\x7d\x9c\x92\x93\xab\x98\x98\xac\ +\x8b\x8d\xa6\x88\x8b\xa6\x89\x8b\xa8\x7f\x83\xa2\x68\x78\x9a\x61\ +\x76\x98\x6f\x7c\x9c\x7f\x82\xa2\x83\x84\xa2\x8f\x90\xa8\x00\x00\ +\x00\x3a\x40\x5d\x35\x3b\x57\x31\x37\x54\x2e\x36\x50\x2e\x35\x4f\ +\x33\x37\x50\x43\x40\x55\x78\x68\x72\xae\x9b\xa0\xc9\xbc\xc2\xd9\ +\xd1\xd6\xdf\xd7\xde\xe3\xdb\xe2\xe4\xdd\xe4\xe6\xdf\xe6\xe8\xe1\ +\xe8\xe9\xe4\xea\xeb\xe4\xeb\xea\xe3\xeb\xe9\xe4\xec\xea\xe2\xec\ +\xe7\xe3\xeb\xe8\xe3\xec\xe8\xe3\xec\xe9\xe4\xec\xe8\xe4\xec\xe9\ +\xe4\xec\xe9\xe5\xeb\xe8\xe4\xeb\xe7\xe3\xe9\xe7\xe1\xe8\xe6\xe1\ +\xe8\xce\xc9\xd5\xb3\xa9\xb6\xad\xa2\xb0\xac\xa2\xaf\xab\xa1\xae\ +\xab\xa1\xae\xab\xa1\xae\xaa\xa1\xae\xa9\xa0\xad\xaa\xa0\xaf\xa9\ +\x9f\xae\xa9\x9e\xaf\xa6\x9c\xae\xa8\x9e\xaf\xa6\x9d\xae\xa6\x9e\ +\xaf\xae\xa5\xb3\xc6\xbe\xc9\xd5\xd0\xda\xd8\xd5\xdf\xd9\xd5\xe0\ +\xda\xd5\xdf\xda\xd5\xde\xd9\xd5\xdd\xb8\xb4\xc2\xa7\xa0\xb0\xa7\ +\xa1\xb0\xa5\xa0\xae\xa5\x9f\xb0\xa6\xa0\xb0\xab\xa4\xb3\xb0\xa9\ +\xb6\xae\xa7\xb5\xb6\xb0\xbd\xc2\xbc\xc7\xba\xb2\xbd\xb8\xb0\xba\ +\xb7\xaf\xb9\xb7\xaf\xb9\xb6\xae\xb9\xb6\xae\xb9\xb5\xad\xb8\xb4\ +\xad\xb8\xb0\xa9\xb5\xaf\xab\xb7\xa9\xa5\xb3\xa8\xa3\xb2\xa7\xa1\ +\xb1\xa6\xa3\xb2\xa4\xa1\xb0\xa4\xa0\xae\xaa\xa6\xb2\xb8\xb5\xbe\ +\xc0\xbc\xc6\xbd\xba\xc4\xbc\xb7\xc3\xbb\xb7\xc1\xb7\xb3\xbf\xae\ +\xaa\xb6\xa5\xa0\xae\xa3\x9e\xad\xa0\x9e\xac\xa0\x9d\xac\xa0\x9d\ +\xad\xa1\x9e\xad\x9b\x99\xac\x9e\x9d\xae\x9d\x9c\xad\xa6\xa4\xb3\ +\xaa\xa8\xb7\xa8\xa7\xb7\xa3\xa2\xb2\xa0\xa0\xb0\xa6\xa5\xb4\xa7\ +\xa4\xb3\xa7\xa4\xb3\xa8\xa5\xb4\xa9\xa6\xb4\xab\xa9\xb7\xaf\xad\ +\xb8\xb4\xb2\xbe\xb8\xb6\xc2\xba\xb8\xc4\xc0\xbf\xca\xc7\xc5\xcf\ +\xc9\xc8\xd1\xcb\xc9\xd2\xcc\xc8\xd2\xc9\xc6\xcf\xc6\xc3\xcc\x98\ +\x98\xa6\x3d\x4c\x62\x55\x5e\x75\x95\x96\xa6\x9a\x99\xaa\x9b\x9b\ +\xac\x9c\x9b\xac\x9b\x99\xac\x9c\x9b\xab\x9e\x9c\xab\xa0\x9d\xab\ +\xa1\x9d\xac\xa2\x9e\xad\xa4\xa0\xb0\xa5\xa0\xaf\xa4\x9f\xad\xa5\ +\xa0\xae\xa5\xa1\xae\xa3\x9e\xac\xa3\x9e\xad\xa1\x9d\xac\xa0\x9c\ +\xac\xa0\x9d\xad\xa0\x9f\xae\x9d\x9c\xac\x9d\x9d\xae\x9b\x9c\xaf\ +\x8e\x91\xa9\x84\x86\xa4\x86\x87\xa6\x81\x86\xa4\x77\x80\xa0\x82\ +\x87\xa4\x88\x8b\xa7\x80\x85\xa3\x77\x7e\xa0\x67\x77\x9a\x62\x74\ +\x97\x6e\x78\x9c\x7f\x83\xa3\x9a\x9b\xae\x00\x00\x00\x43\x4a\x65\ +\x3f\x46\x61\x37\x3e\x5a\x31\x38\x53\x2f\x36\x51\x2e\x34\x4f\x30\ +\x35\x4e\x34\x37\x4f\x4e\x48\x5b\x7c\x6d\x79\xae\xa0\xa8\xd0\xc6\ +\xce\xdb\xd4\xdd\xe1\xda\xe3\xe2\xdd\xe5\xe5\xe0\xe9\xe8\xe3\xeb\ +\xe9\xe4\xec\xe9\xe3\xed\xe8\xe3\xed\xe8\xe3\xec\xe8\xe3\xec\xe8\ +\xe3\xec\xe8\xe3\xec\xe9\xe4\xec\xe9\xe4\xec\xe9\xe5\xea\xea\xe6\ +\xec\xe0\xdb\xe3\xc8\xc0\xc9\xc3\xbb\xc4\xd2\xc9\xd0\xdf\xda\xe0\ +\xcf\xc9\xd3\xb3\xaa\xb7\xab\xa2\xaf\xab\xa1\xae\xaa\xa0\xad\xaa\ +\xa0\xad\xa9\xa0\xad\xa9\xa0\xae\xa8\xa0\xae\xa9\xa0\xaf\xa9\x9f\ +\xaf\xa6\x9c\xae\xa4\x9c\xae\xa4\x9b\xad\xa4\x9d\xad\xa5\x9d\xad\ +\xaa\xa1\xaf\xbb\xb4\xbf\xd0\xcb\xd5\xd8\xd4\xdf\xd8\xd4\xdf\xd8\ +\xd4\xdf\xd8\xd4\xde\xc3\xbe\xcb\xa5\x9f\xb0\xa5\xa0\xaf\xa5\xa0\ +\xaf\xa5\x9f\xb0\xa5\xa0\xaf\xa9\xa2\xb1\xb0\xa9\xb6\xaf\xa8\xb6\ +\xb7\xb0\xbd\xc9\xc5\xd0\xc6\xc0\xcb\xbf\xb8\xc2\xba\xb2\xbd\xb8\ +\xb0\xbb\xb7\xaf\xba\xb6\xae\xb9\xb6\xae\xb9\xb4\xae\xb9\xb0\xa9\ +\xb5\xaf\xaa\xb7\xab\xa7\xb5\xa8\xa3\xb2\xa7\xa2\xb1\xa6\xa2\xb0\ +\xa6\xa2\xb0\xa3\x9e\xad\xa2\x9e\xad\xaa\xa7\xb3\xba\xb6\xc0\xbe\ +\xbb\xc4\xbd\xb9\xc4\xbb\xb7\xc2\xb8\xb4\xc0\xaf\xab\xb6\xa5\xa1\ +\xae\xa2\x9f\xad\xa1\x9e\xad\xa0\x9d\xac\xa1\x9e\xad\x9f\x9c\xac\ +\x99\x97\xaa\x9b\x99\xab\x9f\x9e\xae\xa5\xa4\xb3\xab\xaa\xb8\xa9\ +\xa9\xb7\xa1\xa1\xb1\xa3\xa3\xb2\xa8\xa8\xb6\xa8\xa5\xb4\xa8\xa5\ +\xb4\xa9\xa6\xb4\xaa\xa7\xb5\xad\xaa\xb7\xb1\xaf\xbb\xb8\xb6\xc1\ +\xba\xb8\xc4\xc0\xbf\xc9\xc9\xc8\xd1\xcb\xca\xd3\xcd\xca\xd3\xca\ +\xc8\xd1\xcc\xca\xd3\xc9\xc6\xcf\xc7\xc1\xcb\x6d\x75\x83\x3d\x53\ +\x65\x54\x62\x76\x8f\x92\xa2\x98\x98\xaa\x98\x98\xaa\x9b\x99\xac\ +\x9d\x9b\xad\x9c\x9a\xaa\x9d\x9a\xaa\x9e\x9b\xab\xa0\x9d\xac\xa3\ +\xa0\xaf\xa7\xa3\xb2\xa8\xa3\xb2\xa7\xa2\xb1\xa6\xa1\xb0\xa5\xa0\ +\xaf\xa4\x9f\xae\xa4\x9f\xad\xa4\x9f\xae\xa3\x9e\xad\xa2\x9f\xad\ +\xa1\x9f\xad\xa0\x9d\xad\x9d\x9c\xad\x9a\x99\xac\x90\x90\xa8\x87\ +\x8a\xa6\x83\x85\xa4\x6f\x79\x9e\x64\x74\x9a\x73\x7d\x9f\x82\x87\ +\xa5\x7a\x7f\xa0\x6e\x77\x9b\x67\x74\x98\x5b\x6c\x91\x65\x72\x97\ +\x8e\x90\xa9\xa4\xa2\xb2\x00\x00\x00\x63\x69\x85\x58\x5f\x7a\x47\ +\x4d\x68\x3d\x43\x5e\x35\x3c\x56\x31\x38\x52\x32\x37\x50\x30\x35\ +\x4e\x33\x37\x50\x37\x39\x51\x51\x4d\x61\x82\x78\x86\xb5\xaa\xb5\ +\xd0\xc9\xd3\xde\xd9\xe3\xe4\xdf\xe8\xe6\xe1\xea\xe8\xe3\xec\xe9\ +\xe4\xed\xe9\xe4\xed\xe9\xe3\xed\xe9\xe4\xec\xe8\xe3\xec\xe7\xe3\ +\xeb\xe8\xe4\xea\xea\xe4\xea\xea\xe4\xea\xe8\xe3\xe9\xcb\xc5\xcf\ +\xb1\xa9\xb4\xae\xa6\xb1\xb1\xa7\xb1\xc0\xb6\xbe\xd5\xce\xd5\xcf\ +\xc9\xd3\xb7\xae\xba\xab\xa2\xaf\xaa\xa1\xae\xa9\xa0\xad\xaa\xa1\ +\xae\xa9\xa0\xad\xa9\xa0\xad\xaa\xa1\xae\xa9\x9f\xaf\xa6\x9d\xad\ +\xa3\x9c\xac\xa2\x9b\xac\xa4\x9d\xad\xa5\x9e\xad\xa6\x9e\xae\xa7\ +\x9f\xae\xb2\xa9\xb7\xc8\xc1\xcc\xcf\xca\xd4\xcf\xc9\xd3\xd0\xca\ +\xd4\xc3\xbe\xca\xa7\xa1\xb1\xa6\xa1\xb0\xa5\xa0\xb0\xa4\x9f\xaf\ +\xa4\xa0\xaf\xa8\xa2\xb1\xb1\xa9\xb6\xb0\xa9\xb7\xb6\xb0\xbe\xca\ +\xc6\xd1\xca\xc6\xd1\xc8\xc3\xce\xc5\xbf\xca\xc3\xbc\xc7\xc1\xba\ +\xc5\xbf\xb8\xc3\xbe\xb8\xc3\xbe\xb7\xc2\xb3\xac\xb8\xae\xaa\xb6\ +\xae\xa9\xb7\xa8\xa3\xb2\xa8\xa3\xb2\xa5\xa0\xae\xa5\xa0\xaf\xa4\ +\x9f\xae\xa1\x9e\xad\xa2\x9f\xae\xae\xaa\xb6\xbc\xb9\xc3\xbf\xbc\ +\xc6\xbc\xb8\xc3\xba\xb6\xc1\xb2\xae\xb9\xa6\xa2\xaf\xa3\x9e\xad\ +\xa0\x9d\xac\xa0\x9d\xac\xa1\x9e\xae\x9e\x9c\xac\x97\x96\xa9\x96\ +\x96\xa8\x9c\x9b\xad\xa3\xa3\xb2\xaa\xaa\xb8\xa8\xa8\xb7\xa2\xa2\ +\xb2\xa7\xa6\xb6\xa8\xa8\xb6\xa6\xa4\xb3\xa9\xa6\xb4\xa8\xa6\xb4\ +\xab\xa9\xb5\xaf\xad\xb9\xb4\xb2\xbe\xbb\xb9\xc4\xc0\xbf\xc9\xc7\ +\xc7\xd0\xc9\xc8\xd1\xcd\xcb\xd3\xcc\xca\xd3\xcd\xca\xd3\xcc\xc9\ +\xd2\xca\xc7\xd0\xb6\xb2\xbc\x4e\x61\x6d\x44\x5d\x6b\x63\x73\x83\ +\x95\x97\xa7\x96\x96\xa8\x99\x99\xab\x9d\x9b\xac\xa1\x9f\xae\x9f\ +\x9d\xac\x9c\x9a\xaa\x9d\x9a\xaa\xa1\x9e\xae\xa3\xa0\xb0\xa6\xa2\ +\xb1\xa7\xa2\xb0\xa8\xa2\xb1\xa8\xa3\xb2\xa7\xa2\xb2\xa6\xa1\xb0\ +\xa6\xa1\xb0\xa5\xa0\xaf\xa6\xa1\xaf\xa5\xa0\xaf\xa4\x9f\xae\xa3\ +\x9e\xad\xa1\x9e\xad\x9f\x9d\xad\x97\x97\xaa\x8d\x8d\xa6\x84\x85\ +\xa3\x78\x7d\xa0\x6e\x77\x9d\x6c\x75\x9c\x71\x78\x9c\x69\x70\x96\ +\x62\x6a\x92\x64\x6e\x94\x5a\x66\x8d\x69\x74\x97\x9d\x9c\xae\xa6\ +\xa3\xb2\x00\x00\x00\xa1\xa0\xb4\x7a\x7d\x96\x60\x64\x7c\x55\x58\ +\x6f\x45\x49\x62\x3c\x42\x5b\x37\x3b\x56\x30\x35\x50\x2f\x33\x4d\ +\x30\x34\x4d\x32\x37\x50\x3c\x3f\x56\x51\x51\x64\x82\x7a\x8a\xb1\ +\xab\xb7\xcf\xcb\xd5\xe0\xdb\xe4\xe6\xe1\xea\xe8\xe3\xec\xe9\xe3\ +\xed\xe8\xe4\xeb\xe8\xe4\xeb\xe8\xe3\xeb\xe8\xe3\xeb\xe8\xe4\xe9\ +\xea\xe3\xea\xea\xe5\xeb\xe3\xdd\xe6\xbe\xb6\xc2\xaf\xa7\xb2\xaf\ +\xa6\xb2\xae\xa6\xb1\xad\xa4\xaf\xb4\xaa\xb4\xcb\xc3\xcb\xd4\xcf\ +\xd8\xc4\xbe\xca\xae\xa5\xb2\xaa\xa1\xae\xa9\xa0\xad\xa8\x9f\xac\ +\xa9\xa0\xad\xaa\xa1\xae\xaa\xa0\xae\xa9\xa0\xad\xa6\x9e\xae\xa4\ +\x9c\xad\xa3\x9d\xad\xa4\x9e\xad\xa5\x9e\xad\xa5\x9e\xad\xa6\x9f\ +\xae\xaa\xa2\xb1\xb7\xae\xb9\xc0\xb6\xc0\xc1\xb8\xc2\xbd\xb5\xbf\ +\xa8\xa2\xb1\xa5\x9f\xaf\xa5\x9f\xae\xa3\x9f\xae\xa3\xa0\xaf\xa8\ +\xa3\xb1\xb1\xaa\xb7\xaf\xa8\xb6\xb8\xb1\xbf\xca\xc6\xd1\xcb\xc6\ +\xd1\xc9\xc5\xd0\xc7\xc3\xce\xc1\xbc\xc7\xb8\xb2\xbf\xbb\xb5\xc1\ +\xbf\xbb\xc7\xc1\xbd\xc8\xb2\xac\xbb\xae\xaa\xb6\xb1\xac\xb9\xa9\ +\xa4\xb4\xaa\xa5\xb4\xa6\xa1\xb0\x9f\x9c\xac\xa2\x9f\xae\xa1\x9e\ +\xad\xa1\x9e\xac\xa5\xa2\xaf\xb4\xb0\xba\xbd\xbb\xc4\xbd\xb9\xc4\ +\xbb\xb7\xc2\xb5\xb1\xbc\xa6\xa2\xb0\xa2\x9e\xad\xa0\x9d\xac\xa0\ +\x9d\xac\xa0\x9d\xad\x9c\x99\xaa\x8e\x8d\xa2\x8f\x8f\xa3\x97\x97\ +\xa9\xa1\xa1\xb2\xa9\xa9\xb8\xa7\xa7\xb6\xa2\xa2\xb2\xa6\xa6\xb5\ +\xa8\xa8\xb6\xa7\xa6\xb3\xa9\xa6\xb4\xa9\xa6\xb4\xab\xa9\xb6\xb1\ +\xaf\xbb\xb8\xb6\xc2\xbd\xbc\xc7\xc6\xc5\xce\xc9\xc8\xd1\xc9\xc8\ +\xd1\xcd\xcc\xd5\xcc\xc9\xd2\xcc\xc9\xd2\xce\xcb\xd4\xca\xc6\xcf\ +\x93\x96\xa0\x47\x60\x6b\x4f\x69\x75\x7d\x87\x97\x99\x99\xa9\x9e\ +\x9c\xac\xa3\xa0\xaf\xa4\xa0\xae\xa5\xa1\xaf\xa6\xa2\xb0\xa1\x9e\ +\xad\x9f\x9c\xac\xa1\x9e\xae\xa2\x9e\xae\xa3\x9d\xad\xa3\x9d\xae\ +\xa1\x9e\xaf\xa3\x9f\xaf\xa5\x9f\xb0\xa7\xa2\xb2\xa9\xa4\xb3\xa8\ +\xa3\xb2\xa7\xa1\xb0\xa6\xa1\xb0\xa6\xa1\xb0\xa4\x9f\xae\xa4\x9f\ +\xae\xa2\x9f\xae\xa2\x9f\xae\x9d\x9a\xab\x91\x8f\xa7\x81\x83\xa2\ +\x74\x78\x9d\x6a\x6f\x98\x6a\x6e\x97\x63\x68\x91\x5f\x66\x91\x60\ +\x67\x90\x5c\x66\x8d\x7e\x82\x9f\xa2\xa0\xb0\xa6\xa3\xb2\x00\x00\ +\x00\xcd\xca\xd5\xbb\xb8\xc7\x9a\x97\xab\x76\x76\x8c\x5d\x5e\x74\ +\x50\x53\x6a\x47\x4b\x64\x3b\x3f\x5b\x33\x38\x53\x31\x36\x4f\x31\ +\x35\x4f\x33\x37\x50\x34\x39\x51\x39\x3e\x55\x51\x51\x65\x7f\x7a\ +\x8c\xa8\xa2\xb1\xc7\xc2\xcd\xd4\xcf\xd9\xcf\xca\xd6\xc5\xc0\xce\ +\xbd\xb9\xc9\xbb\xb7\xc8\xbe\xbb\xca\xc6\xc1\xcf\xd1\xcb\xd6\xe2\ +\xdb\xe4\xe2\xdc\xe4\xbb\xb4\xbe\xad\xa5\xb0\xae\xa6\xb1\xae\xa6\ +\xb1\xad\xa5\xb0\xac\xa3\xaf\xaf\xa5\xb0\xc5\xbc\xc4\xd7\xd2\xd9\ +\xc2\xbb\xc6\xa8\x9f\xac\xa9\xa0\xad\xa8\x9f\xac\xa9\xa0\xad\xa9\ +\xa0\xad\xaa\xa1\xae\xa9\xa1\xae\xa6\x9f\xad\xa5\x9f\xae\xa2\x9d\ +\xac\xa2\x9d\xad\xa2\x9c\xab\xa4\x9d\xac\xa5\x9e\xad\xa5\x9f\xae\ +\xa7\x9f\xaf\xb1\xa8\xb4\xba\xb2\xbb\xbb\xb3\xbc\xa8\xa3\xb3\xa4\ +\x9f\xaf\xa3\x9f\xaf\xa2\x9f\xaf\xa3\xa0\xaf\xa7\xa3\xb1\xb1\xaa\ +\xb7\xae\xa7\xb5\xb7\xb1\xbe\xc8\xc3\xce\xca\xc6\xd1\xc4\xc0\xcc\ +\xae\xa8\xb7\xa0\x9a\xab\x9c\x97\xa9\xa0\x9b\xac\xa4\x9e\xb0\xaa\ +\xa4\xb4\xaf\xab\xb9\xb6\xb2\xbd\xb6\xb2\xbe\xab\xa6\xb5\xa9\xa4\ +\xb3\xa8\xa3\xb2\xa3\x9f\xae\xa0\x9d\xac\xa1\x9e\xad\xa0\x9d\xac\ +\x9f\x9d\xac\xa6\xa2\xb0\xb6\xb2\xbd\xbf\xbb\xc5\xbc\xb9\xc3\xb7\ +\xb3\xbe\xa9\xa5\xb2\xa1\x9e\xad\xa0\x9d\xac\xa0\x9d\xac\x9f\x9c\ +\xab\x9c\x9a\xaa\x8b\x8c\xa2\x83\x85\x9d\x8d\x8e\xa3\x9f\x9f\xb0\ +\xa9\xa9\xb8\xa6\xa6\xb6\xa3\xa3\xb3\xa5\xa5\xb4\xa6\xa6\xb4\xa8\ +\xa6\xb4\xa9\xa6\xb4\xa9\xa8\xb5\xad\xab\xb7\xb4\xb2\xbe\xbb\xb9\ +\xc4\xc3\xc2\xcc\xc8\xc7\xd0\xc8\xc7\xd0\xcd\xcc\xd4\xcb\xc9\xd2\ +\xcc\xc9\xd1\xcd\xca\xd3\xcd\xca\xd2\xc4\xc0\xc9\x70\x7e\x88\x47\ +\x65\x6e\x5e\x75\x80\x91\x95\xa6\x98\x99\xab\xa0\x9e\xad\xa6\xa2\ +\xb1\xa7\xa3\xb0\xa7\xa3\xaf\xa6\xa2\xae\xa4\xa0\xae\x9f\x9c\xac\ +\x9e\x9b\xab\x9d\x9b\xab\x9d\x9a\xaa\x9c\x99\xaa\x9f\x9a\xab\xa0\ +\x9b\xac\x9f\x9b\xad\xa1\x9d\xae\xa4\x9f\xb0\xa7\xa2\xb2\xa8\xa3\ +\xb2\xa8\xa3\xb3\xa8\xa2\xb1\xa7\xa1\xb0\xa7\xa2\xb1\xa7\xa3\xb1\ +\xa8\xa3\xb1\xa6\xa2\xb0\xa4\xa0\xaf\x9a\x96\xab\x89\x87\xa4\x78\ +\x78\x9d\x71\x72\x98\x72\x74\x99\x77\x79\x9c\x79\x7c\x9e\x83\x85\ +\xa2\x97\x96\xab\xa4\xa1\xb1\xa3\xa0\xaf\x00\x00\x00\xd4\xd0\xdb\ +\xcf\xcb\xd7\xc7\xc2\xcf\xaf\xad\xbd\x8a\x88\x9c\x6f\x6f\x86\x5e\ +\x60\x78\x52\x56\x6e\x47\x4c\x66\x3e\x43\x5c\x36\x3c\x57\x34\x3b\ +\x55\x32\x38\x52\x31\x38\x51\x34\x39\x52\x42\x44\x5b\x51\x4d\x64\ +\x61\x5a\x71\x6f\x66\x7d\x61\x58\x75\x52\x4c\x6e\x4a\x47\x6d\x48\ +\x48\x71\x4c\x4e\x78\x53\x58\x81\x7d\x7a\x99\xcb\xc4\xd0\xe6\xdf\ +\xe6\xc5\xbc\xc6\xad\xa4\xb0\xac\xa4\xaf\xac\xa4\xaf\xac\xa3\xae\ +\xac\xa4\xaf\xab\xa3\xae\xac\xa4\xaf\xb8\xaf\xb8\xb6\xae\xb8\xa7\ +\x9e\xab\xa5\x9b\xaa\xa7\x9e\xab\xa9\xa0\xad\xaa\xa1\xae\xaa\xa1\ +\xae\xa9\xa1\xae\xa7\xa0\xad\xa6\xa0\xae\xa3\x9e\xad\xa2\x9d\xac\ +\xa3\x9d\xac\xa2\x9d\xac\xa3\x9e\xad\xa4\x9e\xad\xa6\x9e\xad\xa7\ +\x9f\xaf\xaf\xa6\xb3\xba\xb1\xbc\xaa\xa5\xb4\x9f\x9e\xb0\x9b\x9d\ +\xb0\x9d\x9d\xaf\xa3\xa0\xb0\xa5\xa2\xb1\xb0\xaa\xb6\xaf\xa8\xb4\ +\xb3\xac\xb9\xbb\xb5\xc0\xc0\xbb\xc6\xae\xaa\xb8\xa3\x9e\xae\xa2\ +\x9c\xad\xa0\x9b\xac\x9f\x9b\xac\xa0\x9b\xac\xa3\x9d\xae\xaf\xaa\ +\xb8\xc5\xc1\xcb\xc5\xc1\xcb\xad\xa8\xb6\xa9\xa5\xb3\xa7\xa2\xb1\ +\xa5\xa0\xaf\xa1\x9d\xac\xa0\x9c\xab\xa1\x9e\xac\xa2\x9f\xad\xa2\ +\x9f\xae\xa8\xa5\xb2\xb7\xb4\xbf\xbd\xb9\xc3\xb9\xb5\xc0\xac\xa9\ +\xb5\xa1\x9f\xad\x9f\x9c\xab\xa1\x9e\xad\x9f\x9c\xab\x9d\x9b\xaa\ +\x91\x91\xa4\x82\x85\x9d\x82\x86\x9d\x97\x98\xab\xa5\xa5\xb4\xa4\ +\xa4\xb4\xa2\xa2\xb2\xa4\xa4\xb4\xa5\xa5\xb3\xa5\xa5\xb2\xa9\xa7\ +\xb4\xa9\xa7\xb5\xb0\xae\xba\xb6\xb5\xc1\xbe\xbd\xc7\xc5\xc4\xce\ +\xc8\xc7\xd0\xcc\xcb\xd4\xcc\xca\xd3\xcd\xcb\xd4\xd1\xce\xd5\xd1\ +\xce\xd5\xce\xca\xd2\xa9\xa8\xb4\x50\x63\x73\x48\x62\x6e\x61\x76\ +\x83\x94\x97\xa8\x96\x96\xa9\x97\x95\xa9\xa3\x9f\xaf\xa8\xa3\xb1\ +\xa8\xa3\xb1\xa6\xa2\xb0\xa5\xa0\xaf\x9f\x9c\xab\x9c\x99\xa9\x9c\ +\x99\xa9\x9c\x99\xa9\x9d\x9a\xa9\x9e\x9b\xab\x9e\x9a\xac\x9d\x99\ +\xad\x9d\x99\xac\x9e\x9a\xad\xa0\x9b\xae\xa3\x9e\xaf\xa5\xa0\xb1\ +\xa8\xa3\xb2\xa9\xa4\xb2\xaa\xa4\xb2\xac\xa5\xb3\xad\xa6\xb3\xad\ +\xa6\xb3\xad\xa7\xb4\xab\xa5\xb3\xa5\xa0\xb1\xa0\x9b\xaf\x9b\x97\ +\xad\x9e\x99\xad\x9c\x9a\xac\x8a\x8d\xa4\x80\x88\x9e\x88\x8c\xa3\ +\x8e\x8f\xa5\x87\x84\x9d\x00\x00\x00\xd7\xd3\xde\xd0\xcc\xd8\xca\ +\xc6\xd2\xc4\xc0\xcc\xb9\xb4\xc4\xaa\xa4\xb6\x8f\x8b\xa1\x70\x71\ +\x89\x5c\x60\x79\x53\x58\x71\x45\x4b\x66\x3c\x43\x5d\x34\x3c\x57\ +\x31\x38\x52\x31\x37\x51\x3c\x3e\x57\x3f\x40\x56\x3c\x38\x4f\x3c\ +\x36\x4f\x38\x32\x4f\x33\x2e\x51\x2e\x2c\x54\x2c\x2e\x59\x2e\x35\ +\x60\x33\x3b\x6a\x58\x58\x80\xc6\xbd\xc9\xe6\xdf\xe6\xcf\xc6\xd0\ +\xad\xa4\xb0\xab\xa2\xaf\xab\xa2\xae\xab\xa3\xae\xab\xa3\xae\xab\ +\xa3\xaf\xab\xa3\xaf\xab\xa2\xae\xa9\xa0\xac\xa7\x9e\xab\xa5\x9c\ +\xaa\xa7\x9d\xac\xaa\xa1\xae\xa9\xa0\xad\xa9\xa1\xae\xa8\xa1\xae\ +\xa7\xa0\xad\xa7\xa0\xad\xa3\x9d\xad\xa3\x9e\xad\xa2\x9d\xac\xa3\ +\x9c\xac\xa3\x9d\xac\xa3\x9e\xad\xa4\x9f\xae\xa4\x9d\xae\xa4\x9e\ +\xae\xae\xa5\xb3\xab\xa6\xb5\x9d\x9d\xb0\x8e\x97\xaf\x96\x9a\xaf\ +\xa3\xa1\xb1\xa4\xa1\xb0\xaf\xa9\xb6\xaf\xa8\xb4\xb1\xa9\xb5\xb8\ +\xb0\xbb\xb8\xb0\xbc\xa8\xa2\xb1\xa7\xa2\xb1\xa7\xa2\xb1\xa5\x9f\ +\xaf\xa7\xa2\xb2\xa0\x9d\xad\x9e\x9a\xac\xa3\x9f\xaf\xb5\xb1\xbe\ +\xc2\xbd\xc8\xae\xa9\xb7\xaa\xa5\xb4\xa7\xa3\xb2\xa4\xa0\xaf\xa4\ +\x9f\xae\xa3\x9e\xad\xa1\x9d\xac\xa0\x9e\xac\xa2\x9f\xae\xa3\xa0\ +\xaf\xab\xa8\xb5\xba\xb6\xc1\xba\xb7\xc2\xad\xaa\xb6\xa2\x9f\xae\ +\x9f\x9c\xab\x9f\x9d\xac\x9f\x9d\xac\x9e\x9d\xab\x95\x94\xa7\x84\ +\x86\x9e\x7f\x83\x9c\x8e\x91\xa5\x9e\xa0\xb1\xa3\xa4\xb4\xa0\xa1\ +\xb2\xa4\xa4\xb3\xa5\xa5\xb3\xa5\xa5\xb3\xa8\xa7\xb5\xaa\xa9\xb6\ +\xb3\xb1\xbd\xb9\xb8\xc3\xc1\xc1\xca\xc6\xc5\xcf\xca\xc9\xd3\xcc\ +\xcb\xd5\xcc\xc9\xd3\xd1\xce\xd7\xd1\xcf\xd6\xcf\xca\xd3\xcf\xcb\ +\xd4\x83\x83\x98\x4a\x5d\x71\x43\x5d\x6c\x58\x6f\x81\xab\xae\xc0\ +\xcc\xcc\xd7\xcd\xcd\xd9\xad\xa8\xb9\xa5\xa2\xb1\xa6\xa2\xb1\xa6\ +\xa2\xb1\xa7\xa2\xb1\xa4\xa0\xaf\xa0\x9d\xac\x9f\x9c\xac\x9d\x9a\ +\xaa\x9c\x98\xab\x9c\x99\xab\x9d\x99\xac\x9c\x98\xab\x9e\x9a\xad\ +\x9e\x9a\xad\x9e\x9a\xac\x9f\x9c\xad\xa0\x9c\xae\xa2\x9e\xaf\xa7\ +\xa2\xb1\xa8\xa3\xb3\xaa\xa4\xb3\xad\xa6\xb4\xad\xa7\xb6\xae\xa7\ +\xb6\xae\xa7\xb5\xac\xa5\xb3\xab\xa4\xb4\xaa\xa4\xb3\xa7\xa1\xb1\ +\x94\x93\xa6\x73\x81\x97\x65\x7c\x90\x68\x7c\x92\x66\x73\x8d\x53\ +\x59\x7b\x00\x00\x00\xd7\xd3\xde\xd4\xd0\xdb\xce\xca\xd5\xc7\xc3\ +\xcf\xbf\xba\xc9\xba\xb4\xc3\xb8\xb1\xc0\xa6\xa0\xb3\x87\x85\x9c\ +\x71\x74\x8d\x5f\x63\x7c\x4e\x53\x6e\x41\x49\x64\x39\x40\x5b\x34\ +\x3b\x55\x32\x38\x52\x30\x33\x4c\x35\x34\x4a\x35\x32\x49\x36\x32\ +\x49\x37\x35\x4d\x38\x36\x51\x37\x37\x56\x37\x3a\x5e\x3f\x43\x6a\ +\x83\x7d\x98\xd2\xc9\xd3\xe9\xe3\xe7\xd7\xce\xd5\xaf\xa6\xb3\xaa\ +\xa1\xae\xaa\xa1\xae\xaa\xa2\xae\xa9\xa2\xad\xab\xa2\xae\xab\xa2\ +\xaf\xa9\xa1\xae\xa9\xa1\xad\xa8\x9f\xac\xa7\x9f\xac\xa8\x9f\xac\ +\xa9\xa0\xad\xa9\xa0\xad\xa8\x9f\xac\xa7\x9f\xac\xa7\xa0\xad\xa6\ +\x9f\xac\xa4\x9e\xad\xa3\x9e\xad\xa2\x9d\xac\xa1\x9c\xab\xa1\x9d\ +\xac\xa2\x9d\xac\xa3\x9d\xac\xa3\x9f\xae\xa3\x9e\xad\xa2\x9d\xae\ +\xa2\x9e\xb0\xa1\x9f\xaf\xa0\x9e\xb0\xa1\x9f\xaf\xa4\xa1\xb1\xa4\ +\xa1\xb0\xaf\xaa\xb6\xaf\xa8\xb5\xaf\xa7\xb3\xb8\xb0\xbb\xb9\xb1\ +\xbc\xa5\xa0\xaf\xa6\xa1\xb1\xaa\xa5\xb4\xaa\xa5\xb4\xaa\xa5\xb4\ +\xaa\xa6\xb5\x9e\x9a\xad\xa0\x9c\xae\xaa\xa5\xb5\xb4\xb0\xbd\xae\ +\xaa\xb7\xab\xa6\xb4\xa9\xa5\xb3\xa4\xa1\xaf\xa1\x9d\xac\xa3\x9e\ +\xad\xa2\x9f\xae\xa2\x9f\xae\xa1\x9e\xad\xa2\x9f\xae\xa4\xa2\xb0\ +\xb0\xad\xb9\xbb\xb8\xc2\xb0\xad\xb9\x9a\x9d\xad\x93\x98\xaa\x9e\ +\x9d\xac\xa0\x9d\xac\x9f\x9c\xab\x98\x98\xa9\x87\x88\xa0\x7e\x82\ +\x9b\x86\x8a\xa2\x97\x99\xac\xa1\xa4\xb3\x9d\x9e\xb0\xa3\xa3\xb3\ +\xa3\xa3\xb2\xa4\xa4\xb3\xa7\xa7\xb5\xad\xad\xb9\xb5\xb4\xc0\xbf\ +\xbf\xc9\xc6\xc5\xcf\xcb\xca\xd4\xcc\xcb\xd4\xcd\xcc\xd5\xd1\xce\ +\xd7\xd2\xcf\xd6\xd0\xcd\xd4\xd1\xcd\xd5\xb5\xb0\xbc\x8e\x8f\xa4\ +\x6e\x78\x93\x8d\x9c\xad\xdb\xe1\xe9\xfc\xfb\xfa\xf7\xf7\xf7\xf6\ +\xf6\xf5\xe7\xe5\xe9\xba\xb5\xc4\xaa\xa7\xb7\xa6\xa2\xb3\xa5\xa1\ +\xb1\xa7\xa2\xb1\xa5\xa2\xb1\xa5\xa2\xb1\xa3\xa0\xb0\xa1\x9e\xae\ +\x9f\x9c\xad\x9f\x9b\xad\x9e\x9a\xad\x9f\x9c\xad\xa0\x9d\xae\xa1\ +\x9e\xae\xa1\x9e\xae\xa1\x9e\xae\xa1\x9e\xae\xa1\x9e\xae\xa4\x9f\ +\xb0\xa5\xa0\xb0\xa7\xa2\xb2\xa7\xa2\xb2\xa9\xa4\xb2\xac\xa6\xb5\ +\xac\xa5\xb4\xab\xa4\xb3\xa9\xa3\xb2\x9d\x98\xaa\x81\x83\x9b\x6e\ +\x7d\x93\x64\x78\x8f\x5d\x6f\x88\x52\x5c\x7b\x3a\x42\x69\x00\x00\ +\x00\xd8\xd4\xdf\xd6\xd2\xdd\xd2\xce\xd9\xcd\xc9\xd5\xc6\xc1\xce\ +\xbf\xba\xc9\xbc\xb5\xc4\xba\xb3\xc1\xb2\xab\xbb\x9c\x99\xab\x82\ +\x82\x98\x6a\x6c\x85\x59\x5f\x7a\x4f\x55\x70\x44\x4b\x65\x3a\x40\ +\x59\x33\x38\x51\x2e\x33\x4b\x2b\x2d\x45\x2a\x2a\x42\x2a\x29\x40\ +\x2a\x2a\x43\x2b\x2c\x46\x2d\x30\x4b\x39\x3b\x56\x85\x80\x90\xcb\ +\xc3\xcb\xe1\xda\xe0\xde\xd4\xda\xb6\xab\xb6\xab\xa2\xaf\xac\xa3\ +\xaf\xab\xa2\xaf\xa9\xa0\xad\xa9\xa1\xad\xa8\xa1\xae\xa9\xa2\xae\ +\xa8\xa1\xae\xa7\x9f\xac\xa6\x9f\xac\xa7\x9d\xab\xa7\x9f\xac\xa8\ +\x9f\xac\xa9\xa0\xad\xa7\x9f\xac\xa6\x9f\xac\xa5\x9e\xab\xa5\x9f\ +\xad\xa3\x9e\xad\xa2\x9d\xad\xa1\x9c\xab\xa1\x9d\xac\xa1\x9c\xab\ +\xa2\x9e\xad\xa2\x9d\xad\xa2\x9d\xad\xa0\x9e\xaf\x9d\x9b\xae\xa2\ +\x9f\xb0\xa2\xa0\xaf\xa2\xa0\xb0\xa4\xa1\xb1\xa4\xa1\xb0\xae\xa8\ +\xb4\xae\xa8\xb4\xad\xa6\xb3\xb8\xb0\xbb\xb3\xac\xb8\xa2\x9e\xae\ +\xa0\x9c\xac\xa6\xa2\xb1\xac\xa8\xb6\xb6\xb2\xbe\xbc\xb7\xc1\xab\ +\xa6\xb6\xa1\x9e\xaf\xa9\xa5\xb5\xb1\xac\xba\xae\xa9\xb7\xac\xa7\ +\xb6\xab\xa7\xb4\xa8\xa4\xb2\xa5\x9f\xae\xa2\x9e\xad\xa1\x9e\xad\ +\xa2\x9f\xae\xa3\x9f\xae\x94\x97\xaa\xa2\xa0\xaf\xa6\xa5\xb2\xb2\ +\xb0\xba\xb6\xb1\xbc\x58\x82\xa4\x2d\x69\x90\x91\x9a\xae\x9f\x9d\ +\xac\x9e\x9b\xaa\x9a\x99\xaa\x88\x8a\xa0\x7d\x82\x9b\x82\x87\xa0\ +\x8a\x8e\xa3\x99\x9b\xae\x9b\x9d\xaf\xa1\xa1\xb2\xa5\xa3\xb3\xa5\ +\xa5\xb4\xaa\xaa\xb8\xb0\xb0\xbc\xba\xbb\xc6\xc2\xc1\xcb\xc8\xc7\ +\xd1\xca\xc9\xd3\xcd\xcb\xd5\xd2\xd0\xd9\xd1\xce\xd6\xce\xcb\xd3\ +\xd1\xcc\xd3\xbe\xba\xc5\x9f\x9f\xb4\xce\xce\xdb\xec\xeb\xf1\xf9\ +\xf7\xf7\xf6\xf6\xf5\xf4\xf4\xf4\xf5\xf5\xf5\xf4\xf4\xf4\xf4\xf2\ +\xf4\xf0\xed\xf1\xe2\xdf\xe5\xd5\xd3\xdc\xc9\xc7\xd2\xad\xa9\xb9\ +\xa1\x9e\xae\xa4\xa1\xb0\xa7\xa2\xb1\xa6\xa2\xb1\xa6\xa2\xb1\xa5\ +\xa1\xb0\xa3\xa0\xaf\xa2\x9f\xaf\xa2\x9f\xaf\xa1\x9e\xaf\xa0\x9d\ +\xad\xa1\x9e\xae\xa0\x9d\xad\x9f\x9b\xac\x9e\x9b\xac\x9f\x9b\xac\ +\xa1\x9c\xae\xa1\x9d\xae\xa3\x9e\xaf\xa5\x9f\xaf\xa5\x9f\xb0\xa1\ +\x98\xac\x97\x8f\xa6\x7f\x79\x96\x65\x65\x86\x5d\x60\x81\x56\x5b\ +\x7c\x48\x50\x73\x3a\x41\x69\x2e\x37\x62\x00\x00\x00\xd9\xd5\xe0\ +\xd7\xd3\xde\xd3\xcf\xda\xcf\xcb\xd6\xca\xc6\xd2\xc6\xc2\xce\xc2\ +\xbd\xca\xc0\xba\xc7\xbc\xb5\xc2\xb8\xb1\xbf\xb2\xab\xb9\xa1\x9b\ +\xad\x84\x84\x9a\x6e\x70\x87\x5f\x61\x79\x4b\x51\x69\x3e\x43\x5c\ +\x34\x39\x53\x30\x35\x4f\x2d\x32\x4b\x28\x2b\x46\x25\x27\x3f\x22\ +\x25\x3c\x22\x26\x3f\x28\x2d\x46\x3d\x41\x57\x6b\x66\x7a\xb5\xab\ +\xb6\xdb\xd3\xda\xbf\xb5\xbd\xaa\xa1\xae\xab\xa2\xaf\xab\xa2\xaf\ +\xaa\xa1\xae\xa8\xa0\xad\xa6\xa0\xad\xa8\xa1\xae\xa7\xa0\xad\xa7\ +\xa0\xad\xa5\x9f\xac\xa6\x9e\xab\xa7\x9f\xac\xa8\x9f\xac\xa8\xa1\ +\xae\xa7\xa0\xad\xa7\xa0\xad\xa5\x9e\xac\xa6\x9f\xad\xa3\x9e\xad\ +\xa2\x9d\xac\xa0\x9c\xab\x9f\x9c\xab\x9f\x9c\xac\xa1\x9e\xad\xa1\ +\x9c\xac\xa1\x9d\xad\xa1\x9d\xae\xa0\x9c\xaf\xa1\x9e\xaf\xa2\x9f\ +\xaf\xa3\xa0\xaf\xa4\xa1\xb0\xa3\xa0\xaf\xae\xa8\xb5\xaf\xa8\xb5\ +\xad\xa6\xb3\xb5\xae\xbb\x9f\x9c\xad\x97\x95\xa7\x98\x96\xa9\x9e\ +\x9b\xac\xa8\xa4\xb2\xbf\xba\xc4\xc7\xc2\xcb\xbd\xb7\xc2\xae\xaa\ +\xb9\xa1\x9c\xaf\xab\xa6\xb6\xaf\xaa\xb9\xad\xa8\xb6\xad\xa6\xb4\ +\xaa\xa5\xb3\xa6\xa1\xb0\xa4\x9f\xae\xa1\x9e\xad\xa3\x9e\xad\x6f\ +\x88\xa7\x23\x69\x93\x90\x98\xac\xa3\xa1\xb0\xa9\xa7\xb3\xb2\xaf\ +\xb8\x6e\x8e\xae\x13\x74\xa4\x7c\x9e\xb9\xa3\xa4\xb4\x9c\x9b\xab\ +\x9a\x99\xaa\x84\x89\x9e\x7b\x81\x9b\x7e\x84\x9d\x81\x86\x9f\x8b\ +\x90\xa5\x94\x98\xab\x87\x95\xac\x73\x8e\xab\xa6\xa7\xb7\xad\xad\ +\xba\xb5\xb5\xc0\xbd\xbe\xc8\xc5\xc4\xce\xcc\xcb\xd4\xcc\xcb\xd4\ +\xcf\xcd\xd6\xcf\xcc\xd5\xcd\xcb\xd2\xcc\xc9\xd2\xc7\xc4\xcd\xb0\ +\xad\xc0\xda\xd8\xe3\xec\xeb\xf0\xef\xee\xf1\xef\xee\xf1\xf2\xf2\ +\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf5\xf5\xf3\xf3\xf3\xf3\xf3\xf4\ +\xf6\xf6\xf6\xf8\xf8\xf8\xf7\xf7\xf7\xed\xed\xee\xd6\xd5\xdc\xae\ +\xaa\xb9\xa3\xa0\xb0\xa6\xa2\xb0\xa8\xa2\xb2\xa8\xa4\xb2\xa7\xa3\ +\xb2\xa6\xa3\xb2\xa6\xa3\xb2\xa5\xa1\xb0\xa3\xa0\xb0\xa2\x9f\xaf\ +\xa1\x9e\xae\xa0\x9d\xad\x9f\x9b\xac\x9e\x9a\xab\x9d\x9a\xad\x9b\ +\x98\xaa\x95\x91\xa6\x8d\x88\x9f\x84\x7e\x98\x79\x71\x90\x6e\x67\ +\x89\x5e\x56\x7d\x4e\x46\x71\x44\x3e\x6a\x3e\x3c\x68\x36\x38\x65\ +\x30\x35\x62\x2d\x35\x61\x00\x00\x00\xd9\xd5\xe0\xd7\xd3\xde\xd4\ +\xd0\xdb\xd0\xcc\xd7\xce\xca\xd5\xca\xc6\xd2\xc8\xc4\xd0\xc9\xc2\ +\xcf\xc5\xbe\xcb\xc1\xba\xc6\xbd\xb4\xc1\xba\xb1\xbe\xb9\xb0\xbc\ +\xa3\x9c\xad\x7f\x7b\x90\x69\x68\x7f\x51\x52\x6a\x43\x47\x60\x3c\ +\x43\x5d\x36\x3c\x57\x30\x36\x53\x2a\x2e\x4a\x25\x29\x42\x23\x28\ +\x40\x26\x2c\x45\x2b\x31\x4a\x37\x3b\x53\x67\x64\x76\xb7\xaf\xb7\ +\xbc\xb3\xbb\xa9\xa0\xac\xa8\xa0\xad\xaa\xa1\xae\xaa\xa2\xaf\xa9\ +\xa1\xae\xa7\xa0\xad\xa7\xa0\xad\xa7\xa0\xad\xa7\xa0\xad\xa7\xa0\ +\xad\xa5\x9e\xab\xa5\x9e\xab\xa6\x9f\xac\xa8\xa0\xad\xa9\xa1\xae\ +\xa8\xa0\xad\xa6\x9f\xac\xa6\x9f\xac\xa6\x9e\xad\xa2\x9d\xac\xa1\ +\x9c\xab\x9f\x9b\xab\x9f\x9c\xac\x9f\x9c\xac\xa0\x9c\xac\x9f\x9c\ +\xac\xa0\x9d\xad\xa0\x9d\xae\xa1\x9e\xae\xa2\x9f\xaf\xa3\xa1\xb0\ +\xa3\xa0\xb0\xa3\xa0\xaf\xad\xa8\xb4\xae\xa7\xb4\xad\xa6\xb3\xb4\ +\xad\xb9\x9f\x9c\xae\x96\x95\xa8\x94\x93\xa7\x96\x94\xa8\x9f\x9c\ +\xad\xad\xa8\xb6\xbe\xb9\xc3\xc4\xbe\xc8\xbf\xba\xc5\xad\xa9\xba\ +\xae\xaa\xb9\xb4\xaf\xbe\xab\xa5\xb5\xab\xa5\xb3\xad\xa6\xb4\xa8\ +\xa3\xb0\xa4\xa0\xaf\xa3\x9f\xae\xa2\x9e\xac\x6e\x90\xaf\x3e\x83\ +\xaa\x9b\xa0\xb1\xa0\xa0\xad\xa3\xa0\xaf\xab\xa9\xb5\xa5\xa5\xb3\ +\x8b\x9d\xb2\x9b\x9e\xaf\xa5\xac\xbb\xa2\xa6\xb6\x98\x99\xa9\x7f\ +\x87\x9e\x72\x7f\x9a\x7b\x84\x9d\x7a\x82\x9b\x7d\x85\x9d\x8b\x92\ +\xa7\x66\x89\xa8\x0e\x76\xab\x9c\xac\xc0\xaf\xaf\xbc\xb7\xb8\xc4\ +\xbc\xbc\xc8\xc8\xc7\xd1\xcd\xcd\xd6\xd0\xcf\xd8\xcf\xcc\xd5\xcb\ +\xc8\xd0\xca\xc7\xd0\xcb\xc7\xd0\xc2\xbc\xcb\xdd\xdb\xe5\xe7\xe5\ +\xeb\xeb\xea\xef\xed\xec\xf1\xef\xee\xf1\xf3\xf2\xf3\xf3\xf3\xf3\ +\xf4\xf4\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf8\ +\xf8\xf8\xf6\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xed\xec\xee\xc0\xbd\ +\xc8\xa7\xa2\xb2\xa9\xa4\xb3\xab\xa6\xb5\xad\xa9\xb5\xae\xaa\xb6\ +\xae\xa9\xb5\xac\xa8\xb5\xac\xa8\xb4\xab\xa7\xb3\xa8\xa4\xb2\xa4\ +\xa1\xb0\x9d\x9b\xab\x94\x92\xa6\x88\x87\x9d\x7d\x7b\x97\x72\x6f\ +\x8f\x6d\x6b\x8a\x6b\x67\x85\x68\x64\x81\x61\x5e\x7c\x58\x54\x77\ +\x4f\x47\x71\x41\x3a\x68\x37\x32\x64\x33\x32\x63\x30\x33\x64\x2d\ +\x35\x63\x00\x00\x00\xda\xd5\xe0\xd6\xd2\xdd\xd4\xd0\xdb\xd1\xcc\ +\xd7\xcf\xca\xd5\xcd\xc8\xd4\xce\xc8\xd3\xcd\xc7\xd2\xcd\xc7\xd2\ +\xca\xc3\xcd\xc7\xbf\xca\xc2\xb9\xc4\xbf\xb5\xc0\xc0\xb5\xc0\xb7\ +\xac\xb8\xa1\x98\xa7\x7b\x75\x8c\x5c\x5b\x74\x51\x55\x6d\x49\x50\ +\x6a\x3d\x46\x63\x33\x3c\x59\x2b\x32\x4e\x27\x2f\x49\x27\x2f\x49\ +\x28\x2f\x4a\x2c\x32\x4c\x35\x39\x51\x56\x53\x66\x82\x7a\x87\x9e\ +\x94\xa1\xa8\x9f\xac\xa8\xa0\xad\xaa\xa2\xaf\xaa\xa2\xaf\xa9\xa2\ +\xaf\xa8\xa1\xae\xa8\xa1\xae\xa8\xa1\xae\xa6\x9f\xac\xa6\x9f\xac\ +\xa6\x9f\xac\xa6\x9f\xac\xa7\xa0\xad\xa8\xa1\xae\xa8\xa1\xae\xa4\ +\x9e\xad\xa4\x9e\xad\xa5\x9f\xad\xa2\x9d\xac\xa1\x9c\xab\x9f\x9b\ +\xab\x9f\x9c\xab\x9e\x9b\xab\x9f\x9c\xac\x9f\x9c\xac\xa0\x9d\xad\ +\xa1\x9e\xaf\xa0\x9c\xae\xa1\x9f\xaf\xa1\xa0\xb0\xa0\x9f\xaf\xa2\ +\x9f\xaf\xac\xa6\xb3\xaf\xa9\xb5\xaf\xa8\xb4\xb3\xac\xba\xa2\x9f\ +\xaf\x98\x96\xa9\x96\x95\xa9\x94\x93\xa6\x99\x97\xa9\xa1\x9d\xad\ +\xac\xa6\xb4\xb2\xac\xb9\xbb\xb6\xc2\xc4\xbf\xca\xbc\xb7\xc5\xb9\ +\xb4\xc3\xb4\xb0\xbe\xa9\xa2\xb3\xae\xa6\xb4\xad\xa7\xb3\xa7\xa2\ +\xb0\xa3\x9f\xaf\x9b\x99\xa9\x99\x97\xa9\x9e\x9f\xb1\xaa\xab\xb8\ +\x9f\x9f\xad\xa1\xa1\xae\xa4\xa3\xb1\xaa\xa9\xb5\xa4\xa1\xaf\x9c\ +\x9b\xab\x9a\x9b\xab\x9f\xa6\xb7\x9c\xa5\xb7\x72\x88\xa4\x2c\x6f\ +\x98\x69\x83\xa3\x76\x80\x9a\x72\x7f\x98\x7d\x87\xa0\x81\x99\xb3\ +\x72\xa4\xc4\xbf\xc5\xd2\xb0\xb2\xbf\xba\xbb\xc6\xc3\xc3\xce\xcb\ +\xcc\xd5\xce\xce\xd7\xcd\xcb\xd4\xbd\xbb\xc5\xc1\xbe\xc7\xcb\xc7\ +\xd1\xd2\xcc\xd8\xe0\xde\xe6\xe8\xe6\xec\xe8\xe5\xec\xeb\xe9\xef\ +\xee\xed\xf1\xf1\xf0\xf2\xf3\xf2\xf3\xf2\xf2\xf3\xf6\xf6\xf6\xf7\ +\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\ +\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf6\xf5\xf6\xcd\xc9\xd3\ +\xac\xa8\xb6\xac\xa7\xb4\xad\xa9\xb5\xb0\xaa\xb6\xb0\xaa\xb7\xae\ +\xaa\xb6\xad\xa8\xb5\xa9\xa6\xb3\xa2\x9e\xae\x96\x93\xa7\x8b\x88\ +\xa0\x80\x7e\x9a\x75\x74\x93\x75\x74\x93\x79\x78\x95\x7e\x7c\x97\ +\x79\x79\x91\x6e\x6f\x87\x62\x63\x7d\x59\x5b\x77\x54\x52\x76\x47\ +\x41\x6e\x38\x33\x66\x32\x30\x63\x2f\x31\x62\x2b\x33\x62\x00\x00\ +\x00\xdb\xd5\xe0\xd6\xd2\xdc\xd4\xce\xd9\xd1\xcc\xd7\xcf\xc9\xd4\ +\xce\xc8\xd3\xce\xc8\xd3\xce\xc8\xd3\xcf\xc9\xd4\xcf\xc8\xd2\xce\ +\xc5\xcf\xcb\xc2\xcb\xc8\xbe\xc6\xc4\xb9\xc2\xc3\xb8\xc1\xc1\xb6\ +\xbe\xb4\xa8\xb5\x9c\x93\xa3\x7a\x75\x8b\x60\x64\x7b\x56\x5d\x77\ +\x46\x50\x6b\x36\x3f\x5c\x2e\x39\x55\x2c\x36\x52\x2a\x33\x4f\x29\ +\x32\x4d\x29\x32\x4c\x30\x35\x4d\x3d\x3d\x52\x81\x76\x85\xa8\x9f\ +\xab\xa9\xa0\xac\xa9\xa0\xad\xa9\xa1\xae\xa8\xa1\xae\xa9\xa2\xaf\ +\xa9\xa2\xaf\xa8\xa1\xae\xa7\xa0\xad\xa7\xa0\xad\xa6\x9f\xad\xa6\ +\x9f\xac\xa7\xa0\xad\xa7\xa0\xad\xa6\xa0\xae\x66\x7a\x98\x86\x8b\ +\xa3\xa6\xa0\xaf\xa4\x9e\xad\xa1\x9c\xac\x9f\x9b\xac\x9e\x9b\xab\ +\x9f\x9c\xac\x9f\x9c\xac\xa0\x9d\xad\xa1\x9e\xae\xa0\x9d\xae\x9d\ +\x9b\xaf\xa0\x9e\xae\xa1\xa0\xb0\xa0\x9f\xaf\xa1\x9f\xaf\xaa\xa5\ +\xb2\xaf\xa8\xb4\xac\xa5\xb3\xb3\xac\xba\xa6\xa2\xb2\xa0\x9d\xae\ +\x9b\x98\xab\x99\x97\xaa\x97\x96\xa9\x9c\x99\xab\xa3\x9f\xaf\xae\ +\xa8\xb7\xbd\xb7\xc3\xc8\xc4\xcd\xcb\xc8\xd2\xca\xc6\xd2\xc5\xc1\ +\xcd\xb0\xaa\xb8\xaa\xa4\xb3\xaf\xa8\xb5\xaa\xa5\xb3\xa4\xa0\xaf\ +\x9c\x9b\xaa\x93\x93\xa5\x8e\x8f\xa3\xa2\xa4\xb4\xa6\xa9\xb7\x9c\ +\x9b\xab\xa3\xa2\xb0\x9b\xa0\xb1\x3c\x75\x9b\x8b\x96\xac\x8e\x99\ +\xab\x7d\x99\xab\x95\xa3\xb6\x7d\x9a\xb6\x34\x82\xad\x79\x94\xb1\ +\x6a\x7b\x96\x6e\x7e\x98\x72\x81\x9c\x8a\x92\xa8\x9e\xa2\xb3\xba\ +\xc1\xce\xb6\xb9\xc5\xbb\xbc\xc7\xca\xcb\xd3\xc6\xc6\xd0\xba\xba\ +\xc5\xae\xad\xba\xa9\xa7\xb5\xa9\xa7\xb6\xb4\xb2\xc3\xe3\xe1\xe8\ +\xe8\xe6\xeb\xe6\xe4\xea\xea\xe8\xee\xea\xe9\xef\xea\xe8\xee\xf1\ +\xf0\xf2\xf2\xf1\xf2\xf4\xf4\xf4\xf6\xf6\xf6\xf8\xf8\xf8\xf6\xf6\ +\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\ +\xf8\xf8\xf8\xf7\xf7\xf7\xf6\xf6\xf6\xf1\xf0\xf1\xd7\xd2\xdb\xb3\ +\xae\xbb\xb1\xac\xb8\xb3\xad\xb9\xb2\xac\xb8\xa9\xa4\xb3\xa3\x9d\ +\xae\x9d\x99\xac\x9e\x99\xad\x9c\x99\xac\x9b\x98\xac\x9a\x96\xac\ +\x9a\x97\xab\x9c\x99\xac\x9a\x97\xaa\x92\x91\xa4\x86\x86\x9a\x78\ +\x78\x8e\x68\x6a\x82\x5d\x61\x7a\x58\x5b\x78\x4c\x4b\x73\x3c\x38\ +\x69\x30\x2f\x62\x2b\x2f\x60\x28\x30\x60\x00\x00\x00\xda\xd5\xde\ +\xd7\xd1\xdc\xd4\xce\xd9\xd1\xcb\xd6\xcf\xc9\xd4\xce\xc8\xd3\xcd\ +\xc7\xd2\xcb\xc5\xd0\xcd\xc7\xd1\xd0\xc8\xd2\xd1\xc9\xd1\xd1\xc7\ +\xcf\xce\xc4\xcb\xcb\xc0\xc8\xc8\xbc\xc4\xc8\xbb\xc3\xc7\xbb\xc3\ +\xbd\xb1\xbc\xb1\xa4\xb1\x96\x8e\x9f\x75\x74\x8c\x60\x65\x80\x4a\ +\x52\x6e\x3c\x45\x60\x37\x41\x5d\x32\x3d\x59\x2d\x37\x53\x2b\x34\ +\x50\x2e\x35\x4e\x2e\x32\x48\x56\x4f\x5f\x9d\x92\x9e\xa9\xa0\xad\ +\xa8\xa0\xad\xa9\xa1\xae\xaa\xa2\xaf\xa9\xa1\xae\xa9\xa2\xaf\xa9\ +\xa2\xaf\xa8\xa1\xae\xa7\xa0\xad\xa7\xa0\xaf\xa5\x9f\xad\xa5\x9f\ +\xae\xa6\xa0\xae\xa6\xa0\xaf\x79\x87\xa4\x8c\x91\xa7\xa6\xa0\xaf\ +\xa4\x9f\xae\xa3\x9e\xad\x9e\x9b\xab\x9e\x9b\xab\x9f\x9c\xac\x9e\ +\x9b\xab\x9e\x9b\xab\x9f\x9c\xac\xa0\x9d\xae\x9d\x9b\xad\x9d\x9b\ +\xae\x9f\x9f\xaf\x9d\x9e\xae\xa0\x9f\xaf\xa8\xa4\xb2\xac\xa6\xb3\ +\xa8\xa2\xb0\xaf\xa9\xb7\xaa\xa7\xb6\xac\xa9\xb6\xa8\xa5\xb4\xa5\ +\xa2\xb1\xa0\x9c\xae\x9e\x9a\xac\x9c\x98\xab\xa6\xa2\xb2\xbb\xb7\ +\xc3\xcc\xc6\xd0\xd3\xd0\xd9\xd6\xd3\xdc\xd9\xd6\xde\xbd\xba\xc6\ +\xa8\xa3\xb3\xaf\xa8\xb5\xae\xa7\xb4\xa8\xa3\xb2\x9d\x9c\xab\x97\ +\x97\xa8\x90\x91\xa4\x8b\x8f\xa2\xaa\xae\xbc\xa1\xa4\xb5\x9c\x9c\ +\xac\x7f\x93\xae\x18\x6e\x9d\x6b\x92\xac\x23\x89\x9c\x29\x90\xa4\ +\x78\x9c\xb1\x8d\x9d\xb2\x79\x8f\xa8\x75\x8b\xa5\x6d\x87\xa2\x58\ +\x78\x97\x62\x7f\x9e\x82\x8c\xa5\x96\x9c\xb0\xae\xb7\xc6\xb0\xb2\ +\xc0\xb2\xb4\xc1\x9b\xa1\xb2\x90\x99\xae\x92\x98\xae\x96\x9a\xaf\ +\x96\x99\xae\x8e\x93\xad\xc1\xc3\xd3\xe8\xe6\xec\xe6\xe4\xea\xe6\ +\xe4\xea\xea\xe8\xee\xea\xe8\xee\xe8\xe6\xec\xef\xee\xf1\xf4\xf4\ +\xf4\xf3\xf3\xf3\xf4\xf3\xf4\xf1\xf0\xf2\xf3\xf2\xf4\xf6\xf6\xf6\ +\xf5\xf5\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf6\xf6\xf6\xf4\ +\xf4\xf4\xf2\xf2\xf2\xf3\xf3\xf3\xf4\xf3\xf4\xde\xda\xe1\xb9\xb3\ +\xbe\xb7\xb1\xbc\xad\xa7\xb4\x9e\x9a\xab\x97\x94\xa9\x9b\x98\xab\ +\xa1\x9d\xaf\xa4\xa1\xb1\xa8\xa3\xb3\xaa\xa5\xb4\xab\xa6\xb6\xa9\ +\xa5\xb4\xa3\xa0\xb0\x9a\x97\xaa\x8e\x8e\xa1\x82\x81\x96\x73\x74\ +\x89\x64\x68\x7f\x5c\x61\x7a\x54\x56\x76\x44\x41\x6e\x30\x30\x62\ +\x2a\x2e\x5f\x26\x2d\x5e\x00\x00\x00\xd9\xd3\xdd\xd6\xd0\xdb\xd3\ +\xcd\xd8\xd0\xca\xd5\xcf\xc9\xd4\xcd\xc7\xd2\xcb\xc5\xd0\xcb\xc5\ +\xd0\xcd\xc6\xd0\xcf\xc6\xd0\xd2\xc8\xd0\xd4\xca\xd0\xd4\xc9\xcf\ +\xd3\xc7\xcc\xcf\xc3\xca\xcb\xbe\xc6\xc9\xbc\xc4\xc8\xbc\xc3\xc5\ +\xb8\xbf\xba\xad\xb6\xa8\x9d\xaa\x88\x84\x98\x6d\x6f\x89\x5c\x60\ +\x7b\x4f\x57\x71\x41\x49\x65\x37\x42\x5d\x3a\x42\x5d\x34\x3a\x54\ +\x2a\x2e\x44\x35\x35\x48\x81\x77\x85\xa7\x9e\xab\xa9\xa1\xae\xa9\ +\xa1\xae\xaa\xa1\xae\xaa\xa2\xaf\xa8\xa2\xaf\xa9\xa2\xaf\xa9\xa2\ +\xaf\xa9\xa2\xaf\xa8\xa1\xae\xa6\xa0\xaf\xa3\x9e\xad\xa5\x9f\xae\ +\xa6\xa0\xae\xa7\xa1\xaf\xa5\xa0\xaf\xa7\xa2\xb0\xa5\xa0\xaf\xa5\ +\xa0\xaf\xa0\x9c\xac\x9e\x9b\xaa\x9f\x9c\xac\x9f\x9c\xac\x9f\x9b\ +\xab\x9e\x9c\xac\x9b\x9a\xaa\x8f\x90\xa3\x97\x97\xa9\x9c\x9d\xaf\ +\x99\x9b\xae\xa0\x9f\xaf\xa5\xa2\xb0\xac\xa7\xb3\xab\xa4\xb2\xb3\ +\xad\xb9\xaf\xab\xb8\xaf\xab\xb7\xb1\xad\xb9\xaf\xab\xb9\xab\xa7\ +\xb5\xa5\xa0\xb1\xa0\x9c\xae\xa2\x9d\xb0\xbd\xb8\xc4\xd6\xd2\xd9\ +\xdc\xd9\xe0\xd5\xd0\xd9\xd7\xd2\xd9\xbe\xb8\xc4\xb0\xaa\xb9\xb3\ +\xae\xbb\xaf\xa8\xb6\xaa\xa4\xb2\x94\x96\xa7\x8d\x91\xa3\x8d\x91\ +\xa4\x85\x8b\xa0\x83\x89\xa0\xa2\xa7\xb8\x9d\xa2\xb3\x98\x9a\xad\ +\x89\x9c\xb1\x67\x9a\xaf\x1c\x93\xa6\x2e\x98\xac\x70\x97\xae\x7c\ +\x90\xa8\x7d\x91\xaa\x58\x7c\x9a\x21\x70\x9c\x15\x75\xa6\x39\x89\ +\xb3\x86\x93\xab\x8a\x94\xab\xa5\xb0\xc2\x96\x9b\xaf\x88\x90\xa8\ +\x80\x8e\xa8\x7c\x8b\xa5\x6d\x7c\x99\x59\x6f\x93\x71\x80\xa5\xbd\ +\xc0\xd2\xe8\xe7\xee\xe8\xe6\xec\xe4\xe2\xe8\xeb\xe9\xef\xec\xeb\ +\xf0\xeb\xe9\xef\xee\xee\xf1\xef\xee\xf1\xf2\xf2\xf3\xf2\xf2\xf3\ +\xef\xed\xf1\xee\xec\xf1\xf2\xf0\xf2\xf4\xf4\xf4\xf7\xf7\xf7\xf9\ +\xf9\xf9\xfa\xfa\xfa\xf8\xf8\xf8\xf5\xf5\xf5\xf2\xf1\xf2\xf4\xf4\ +\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xfa\xfa\xfa\xe1\xdd\xe3\xb7\xb0\xba\ +\xa1\x9c\xac\x94\x92\xa6\x97\x95\xa9\x9e\x9b\xae\xa4\xa1\xb1\xa8\ +\xa5\xb4\xab\xa7\xb6\xad\xa8\xb7\xad\xa8\xb7\xab\xa6\xb5\xa7\xa3\ +\xb3\xa0\x9d\xad\x96\x95\xa7\x8b\x8a\x9e\x7d\x7e\x93\x6f\x72\x88\ +\x63\x69\x80\x60\x65\x7e\x52\x51\x78\x37\x36\x66\x2c\x2f\x60\x27\ +\x2e\x5d\x00\x00\x00\xd7\xd2\xdb\xd5\xcf\xd9\xd2\xcd\xd6\xd0\xca\ +\xd4\xce\xc8\xd2\xcb\xc5\xd0\xc9\xc3\xce\xc9\xc3\xce\xcb\xc3\xce\ +\xcd\xc4\xce\xd0\xc6\xcd\xd3\xc8\xce\xd6\xca\xd0\xd5\xc9\xcf\xd3\ +\xc7\xcd\xd0\xc3\xca\xcc\xc0\xc6\xc9\xbd\xc4\xcb\xbe\xc4\xcc\xbe\ +\xc3\xc6\xb8\xbe\xb2\xa6\xb1\x9a\x92\xa3\x83\x80\x95\x66\x68\x81\ +\x52\x57\x6f\x48\x4f\x67\x47\x4e\x65\x39\x3e\x54\x2e\x30\x46\x31\ +\x31\x45\x66\x5d\x6d\xa4\x9b\xa7\xaa\xa1\xae\xaa\xa2\xaf\xa9\xa1\ +\xae\xac\xa3\xb0\xaa\xa2\xaf\xa9\xa1\xae\xa9\xa1\xae\xa9\xa2\xaf\ +\xa8\xa1\xaf\xa7\xa0\xae\xa6\xa0\xae\xa3\x9f\xad\xa4\x9f\xad\xa5\ +\xa0\xaf\xa5\xa0\xaf\xa5\xa0\xaf\xa6\xa2\xb1\xa5\xa1\xb0\xa2\x9f\ +\xae\x9e\x9b\xab\x9e\x9c\xac\x9e\x9b\xab\x9e\x9c\xab\x9d\x9b\xac\ +\x8f\x8e\xa2\x63\x67\x82\x8b\x8d\xa0\x9b\x9c\xad\x9b\x9c\xaf\x9f\ +\x9e\xae\xa2\x9f\xaf\xac\xa6\xb4\xad\xa7\xb5\xb5\xae\xbb\xb0\xaa\ +\xb8\xaf\xa9\xb7\xb1\xac\xb8\xb1\xac\xb8\xb1\xab\xb8\xb1\xab\xb7\ +\xb0\xab\xb7\xaf\xaa\xb6\xb6\xb0\xbb\xbf\xb9\xc2\xbe\xb7\xc1\xb6\ +\xae\xb8\xb0\xa9\xb5\xad\xa6\xb3\xae\xa7\xb5\xb0\xa9\xb6\xad\xa5\ +\xb4\x9a\x9c\xae\x7a\x89\xa2\x85\x8c\xa2\x89\x8e\xa3\x86\x8b\xa2\ +\x7d\x84\x9e\x7b\x84\x9d\x91\x9a\xaf\x99\xa2\xb4\x93\x99\xab\x7d\ +\x97\xaa\x58\x9f\xb1\x64\xae\xbf\x40\x8b\xac\x5a\x85\xa6\x6a\x84\ +\xa0\x5d\x7f\x9d\x38\x7c\xa4\x4f\x8d\xb5\x3f\x8d\xb8\x4f\x88\xad\ +\x78\x8f\xad\x93\xa2\xba\x7b\x87\xa7\x74\x82\xa4\x69\x7c\xa0\x52\ +\x6a\x90\x38\x57\x7f\x4d\x6b\x96\xba\xc0\xd5\xea\xea\xef\xe5\xe3\ +\xea\xe8\xe6\xec\xed\xec\xf0\xf0\xef\xf1\xef\xee\xf2\xf2\xf1\xf3\ +\xf0\xef\xf2\xf0\xef\xf2\xf6\xf6\xf6\xf6\xf6\xf6\xf4\xf4\xf4\xf4\ +\xf4\xf5\xf6\xf6\xf6\xf8\xf7\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xf4\xf4\ +\xf7\xf3\xf3\xf6\xf6\xf5\xf5\xf4\xf3\xf4\xf7\xf6\xf7\xf8\xf8\xf8\ +\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xd1\xcd\xd3\x90\x8f\xa2\x91\ +\x90\xa4\x98\x96\xaa\x9f\x9d\xae\xa6\xa3\xb2\xab\xa7\xb6\xae\xa9\ +\xb7\xaf\xaa\xb8\xad\xa8\xb7\xab\xa6\xb5\xa8\xa3\xb3\xa3\xa1\xb0\ +\x9b\x9a\xab\x92\x91\xa4\x86\x86\x9a\x78\x7b\x90\x6d\x73\x88\x69\ +\x6f\x85\x60\x62\x81\x46\x43\x6f\x33\x34\x63\x2a\x30\x5d\x00\x00\ +\x00\xd7\xd2\xdb\xd3\xce\xd8\xd0\xca\xd5\xd1\xc8\xd3\xcd\xc6\xd1\ +\xca\xc4\xcf\xc9\xc3\xce\xc9\xc2\xcd\xca\xc1\xcc\xca\xc2\xcc\xce\ +\xc3\xcb\xd2\xc6\xcd\xd3\xc7\xcd\xd6\xca\xd0\xd6\xca\xd0\xd6\xca\ +\xd0\xd2\xc6\xcc\xce\xc1\xc8\xcc\xc0\xc6\xcd\xbf\xc5\xce\xc0\xc4\ +\xcd\xbf\xc3\xc4\xb6\xbc\xa9\x9d\xaa\x88\x82\x96\x67\x68\x7e\x51\ +\x55\x6a\x47\x49\x5e\x37\x39\x4b\x2f\x30\x43\x31\x31\x45\x51\x4b\ +\x5d\x9b\x91\x9f\xaa\xa1\xae\xaa\xa1\xae\xab\xa2\xaf\xaa\xa2\xaf\ +\xaa\xa2\xaf\xab\xa3\xb0\xab\xa2\xaf\xa9\xa1\xae\xa9\xa1\xae\xa8\ +\xa1\xae\xa8\xa1\xaf\xa6\xa0\xae\xa4\x9e\xad\xa3\x9e\xad\xa4\x9f\ +\xae\xa5\xa0\xaf\xa3\x9f\xaf\xa2\xa0\xb0\xa1\xa0\xaf\xa0\x9d\xad\ +\x9e\x9b\xab\x9f\x9c\xad\x9e\x9c\xac\x9c\x9b\xac\x99\x98\xaa\x77\ +\x78\x91\x7d\x7f\x96\x9a\x9a\xab\x9c\x9c\xad\x9f\x9e\xae\xa2\x9f\ +\xb0\xac\xa6\xb5\xb1\xaa\xb7\xb4\xad\xba\xb2\xab\xb8\xb1\xaa\xb8\ +\xb2\xab\xb8\xb1\xab\xb7\xb1\xaa\xb7\xb1\xab\xb6\xb1\xab\xb6\xb0\ +\xaa\xb5\xb0\xaa\xb5\xb1\xac\xb7\xb1\xab\xb6\xb3\xac\xb7\xb3\xad\ +\xb8\xb2\xac\xb7\xb2\xac\xb8\xb2\xac\xb7\xb0\xab\xb8\x6a\x92\xb2\ +\x25\x83\xb0\x94\x9a\xb0\x8b\x8e\xa5\x89\x8d\xa4\x86\x8b\xa4\x79\ +\x84\x9f\x75\x82\x9d\x80\x8e\xa5\x90\x9c\xb0\x84\x91\xa8\x81\x92\ +\xa7\x70\xac\xbd\x59\xa2\xb9\x54\x82\xa2\x6a\x88\xa4\x56\x79\x98\ +\x4b\x74\x95\x5c\x81\xa2\x49\x8d\xb6\x2d\x9e\xd1\x9d\xb7\xcf\x72\ +\x87\xa8\x56\x6e\x99\x55\x72\x9e\x47\x64\x90\x33\x54\x7f\x48\x6a\ +\x94\xb9\xc3\xd8\xeb\xeb\xf0\xdc\xdc\xe4\xe4\xe3\xe9\xee\xed\xf0\ +\xf2\xf1\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf5\xf4\xf5\xf6\xf6\xf6\xf7\ +\xf7\xf7\xf6\xf6\xf6\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\ +\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfc\xfc\xfc\xf7\xf7\xf9\xee\xef\xf4\ +\xf6\xf6\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xfa\ +\xfa\xfa\xfa\xfa\xfa\xee\xee\xef\xa1\xa2\xb1\x8c\x8d\xa2\x96\x95\ +\xa7\x9e\x9c\xad\xa7\xa3\xb2\xae\xa9\xb6\xaf\xab\xb7\xaf\xab\xb8\ +\xad\xa9\xb7\xaa\xa6\xb5\xa7\xa4\xb3\xa5\xa2\xb2\xa0\x9f\xaf\x98\ +\x97\xa9\x8e\x8d\xa1\x82\x84\x98\x76\x7b\x90\x6d\x74\x89\x6a\x6f\ +\x87\x59\x59\x7d\x3d\x3b\x67\x2f\x33\x5e\x00\x00\x00\xd6\xd1\xda\ +\xd2\xcc\xd6\xcf\xc8\xd3\xcc\xc6\xd1\xca\xc4\xcf\xc8\xc2\xcd\xc7\ +\xc1\xcc\xc9\xc2\xcd\xc9\xc1\xcc\xc9\xc1\xcb\xcd\xc2\xc9\xcf\xc4\ +\xcb\xd2\xc6\xcc\xd6\xca\xd0\xd8\xcc\xd2\xd9\xcd\xd3\xd8\xcc\xd1\ +\xd5\xc9\xcf\xd1\xc5\xcb\xcf\xc2\xc8\xcf\xc1\xc7\xd0\xc2\xc6\xd1\ +\xc3\xc6\xcf\xc0\xc4\xb7\xaa\xb4\x96\x8d\x9f\x6b\x69\x7d\x48\x47\ +\x58\x39\x38\x49\x32\x32\x43\x35\x36\x49\x3e\x3b\x51\x83\x7a\x89\ +\xaa\xa1\xae\xab\xa2\xaf\xab\xa2\xaf\xaa\xa2\xaf\xac\xa3\xb0\xac\ +\xa3\xb0\xac\xa4\xb1\xab\xa2\xaf\xab\xa2\xaf\xaa\xa2\xaf\xaa\xa2\ +\xb0\xa9\xa3\xb1\xa6\xa2\xb0\xa0\x9d\xae\x78\x89\xa3\x94\x98\xab\ +\x97\x99\xac\x5d\x76\x98\x98\x99\xab\x9e\x9e\xae\x9e\x9c\xad\x9d\ +\x9c\xac\x9c\x9b\xab\x9d\x9c\xac\x9d\x9b\xad\x8d\x8b\xa3\x7c\x7b\ +\x96\x9b\x99\xab\xa3\xa0\xb0\xa8\xa3\xb4\xa8\xa2\xb3\xad\xa6\xb5\ +\xb1\xaa\xb7\xb2\xab\xb8\xb2\xab\xb8\xaf\xa9\xb6\xae\xa7\xb4\xaf\ +\xa8\xb5\xaf\xa9\xb5\xae\xa8\xb4\xad\xa8\xb4\xad\xa7\xb3\xac\xa6\ +\xb3\xad\xa7\xb3\xaf\xa9\xb4\xb1\xab\xb6\xb2\xac\xb7\xb4\xae\xb9\ +\xb4\xae\xb9\xb3\xad\xb8\xb4\xae\xb9\xa2\xab\xbc\x9c\xaf\xc3\xbb\ +\xbe\xc9\xa9\xa9\xba\x92\x93\xaa\x80\x84\xa2\x5e\x80\xa3\x56\x7f\ +\xa2\x6b\x80\x9d\x6d\x81\x9c\x7b\x8d\xa5\x79\x89\xa3\x78\x8c\xa6\ +\x64\xa5\xb8\x52\x91\xaa\x48\x74\x96\x41\x77\x9c\x38\x72\x99\x28\ +\x6f\x9a\x50\x80\xa5\x60\x8d\xb1\xad\xbc\xcc\x72\x8a\xa5\x3f\x64\ +\x8b\x4c\x76\x9d\x46\x6b\x99\x48\x6e\x99\x98\xaa\xc6\xdb\xdd\xe6\ +\xd4\xd4\xde\xe3\xe2\xe9\xef\xee\xf2\xf3\xf3\xf3\xf4\xf4\xf4\xf6\ +\xf6\xf6\xf6\xf6\xf6\xf8\xf8\xf8\xfa\xfa\xfa\xf8\xf8\xf8\xfa\xfa\ +\xfa\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfe\xfe\xfe\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xfe\xfe\xfd\xfe\xfd\xfd\xfc\xfc\xfc\xfc\ +\xfc\xfc\xfb\xfb\xfb\xfc\xfc\xfc\xf9\xf9\xf9\xf7\xf7\xf7\xf6\xf5\ +\xf6\xf0\xef\xef\xae\xac\xb8\x85\x89\x9d\x8f\x91\xa3\x9b\x9a\xab\ +\xa4\xa2\xb2\xac\xa9\xb7\xb0\xac\xb9\xae\xaa\xb8\xab\xa8\xb7\xa8\ +\xa5\xb4\xa7\xa4\xb4\xa6\xa3\xb2\xa1\xa1\xb1\x9d\x9c\xad\x96\x94\ +\xa7\x8c\x8d\xa1\x80\x84\x97\x73\x7a\x8d\x6f\x76\x8a\x67\x6b\x86\ +\x50\x4d\x74\x38\x37\x61\x00\x00\x00\xd5\xd0\xd9\xd2\xcc\xd7\xce\ +\xc8\xd3\xcb\xc5\xd0\xc8\xc2\xce\xc6\xc0\xcb\xc6\xbf\xca\xc7\xc0\ +\xcb\xc9\xc0\xcb\xca\xc1\xcb\xcc\xc1\xc9\xce\xc3\xca\xd1\xc5\xcb\ +\xd5\xc9\xcf\xd8\xcd\xd2\xda\xcf\xd2\xdb\xd0\xd4\xd9\xce\xd3\xd6\ +\xcb\xd1\xd2\xc7\xcd\xd0\xc5\xcb\xd1\xc5\xca\xd1\xc4\xc8\xd2\xc4\ +\xc8\xd0\xc2\xc6\xc6\xb8\xbf\x9f\x95\xa5\x66\x63\x77\x3f\x3e\x50\ +\x36\x36\x48\x3b\x3d\x52\x3a\x3c\x55\x63\x5d\x72\xa0\x97\xa4\xac\ +\xa3\xaf\xab\xa3\xaf\xab\xa2\xb0\xaa\xa2\xaf\xac\xa3\xb0\xad\xa3\ +\xb0\xac\xa3\xb0\xab\xa3\xb0\xa9\xa2\xaf\xa2\x9f\xae\x80\x89\xa2\ +\x9c\x9c\xad\x9f\x9e\xae\x46\x77\x9b\x73\x8b\xa5\x98\x9c\xae\x72\ +\x83\x9d\x96\x99\xaa\x9b\x9c\xac\x9a\x9b\xac\x9b\x9b\xac\x9c\x9b\ +\xac\x9b\x9a\xab\x9f\x9c\xaf\xa2\x9f\xb0\xa6\xa0\xb2\xad\xa7\xb5\ +\xac\xa6\xb5\xaa\xa5\xb4\xa9\xa4\xb3\xaa\xa5\xb4\xae\xa8\xb5\xae\ +\xa7\xb5\xae\xa7\xb5\xad\xa8\xb6\xac\xa7\xb5\xab\xa6\xb3\xab\xa6\ +\xb3\xab\xa6\xb2\xab\xa6\xb2\xab\xa6\xb2\xab\xa7\xb3\xad\xa7\xb4\ +\xac\xa7\xb3\xaf\xa9\xb4\xb5\xae\xba\xb6\xb0\xbb\xb2\xad\xb8\xb2\ +\xac\xb7\xaf\xab\xb6\xad\xa8\xb5\xae\xa7\xb5\xad\xaa\xb7\xb6\xb6\ +\xc3\xb3\xb6\xc4\x95\x9a\xb4\x49\x86\xb0\x40\x87\xb0\x6c\x88\xa4\ +\x5b\x79\x95\x52\x73\x91\x55\x78\x9c\x5c\x7a\x9f\x51\x7d\x9e\x55\ +\x9b\xb1\x44\x89\xa4\x10\x66\x93\x1c\x6f\x9d\x16\x77\xa7\x4a\x87\ +\xb0\x68\x88\xa7\x7a\x96\xb1\x9d\xae\xc0\x37\x66\x8c\x4b\x7c\xa5\ +\x5a\x89\xb2\x73\x96\xb9\xb4\xbf\xd3\xdc\xdd\xe6\xe7\xe6\xec\xef\ +\xef\xf2\xf3\xf3\xf3\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\ +\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfd\xfd\xfd\ +\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\ +\xfe\xfe\xfe\xfe\xfe\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ +\xfc\xfb\xfb\xfb\xf8\xf8\xf8\xf5\xf5\xf5\xf1\xf0\xf1\xe6\xe2\xe7\ +\xb2\xb2\xbe\x7c\x82\x97\x87\x8b\x9e\x96\x97\xa8\xa1\x9f\xaf\xaa\ +\xa7\xb6\xac\xa9\xb8\xac\xa9\xb7\xaa\xa7\xb6\xa7\xa5\xb4\xa4\xa2\ +\xb2\xa3\xa1\xb1\xa1\xa0\xb1\xa0\x9f\xb0\x9c\x9a\xac\x93\x94\xa6\ +\x88\x8a\x9e\x7a\x80\x93\x6f\x76\x8a\x6d\x74\x89\x62\x64\x82\x46\ +\x44\x6c\x00\x00\x00\xd7\xd1\xdc\xd2\xcc\xd7\xcd\xc7\xd2\xcb\xc5\ +\xd0\xc8\xc2\xcd\xc6\xc0\xcb\xc6\xbe\xca\xc7\xbf\xca\xc8\xbf\xca\ +\xca\xc0\xca\xcd\xc2\xc9\xcf\xc4\xca\xd3\xc7\xcd\xd5\xc9\xcf\xd8\ +\xcc\xd2\xdb\xd0\xd3\xdc\xd1\xd4\xdc\xd1\xd4\xdb\xd0\xd3\xd8\xcc\ +\xd2\xd4\xca\xcf\xd2\xc7\xcd\xd1\xc5\xcb\xd1\xc4\xca\xd0\xc3\xc8\ +\xce\xc0\xc6\xc6\xba\xc1\x93\x89\x99\x51\x4e\x62\x45\x44\x58\x4c\ +\x4d\x62\x52\x54\x6f\x54\x56\x72\x82\x79\x8d\xaa\xa0\xae\xac\xa3\ +\xb0\xab\xa3\xaf\xab\xa2\xaf\xab\xa2\xaf\xac\xa3\xb0\xac\xa3\xb0\ +\xaa\xa2\xaf\xaa\xa2\xaf\xa0\x9e\xae\x79\x88\xa4\x9a\x9b\xad\x94\ +\x9a\xac\x3c\x7a\x92\x40\x79\x8f\x91\x9a\xac\x9f\xa1\xb1\x9f\xa0\ +\xb0\x9d\x9f\xad\x9a\x9c\xad\x95\x97\xaa\x9d\x9c\xae\xab\xa7\xb7\ +\xb5\xaf\xbc\xb6\xb0\xbc\xb3\xad\xba\xb1\xaa\xb7\xae\xa7\xb6\xab\ +\xa6\xb5\xaa\xa5\xb4\xaa\xa5\xb4\xae\xaa\xb7\xae\xa9\xb7\xac\xa7\ +\xb4\xaa\xa5\xb4\xaa\xa6\xb5\xab\xa7\xb3\xab\xa7\xb3\xaa\xa6\xb2\ +\xaa\xa6\xb2\xaa\xa5\xb2\xaa\xa6\xb3\xac\xa6\xb3\xac\xa8\xb4\xad\ +\xa8\xb5\xba\xb6\xc0\xbe\xba\xc3\xb0\xac\xb8\xa8\xa5\xb2\xa8\xa5\ +\xb4\xa7\xa4\xb3\xa8\xa4\xb3\xa8\xa4\xb3\xa8\xa5\xb4\xa8\xa7\xb6\ +\xae\xb1\xc0\xa5\xb0\xc2\x86\x97\xb3\x6f\x84\xa2\x76\x8e\xa9\x6e\ +\x8c\xab\x22\x72\x9f\x1f\x74\xa1\x35\x74\x9d\x3e\x77\x99\x44\x8e\ +\xa6\x34\x81\xa0\x1e\x6d\x99\x18\x76\xa8\x27\x69\x93\x5a\x81\xa2\ +\x5d\x84\xa5\x9b\xae\xc3\x49\x79\x9d\x60\x92\xb4\x73\x9d\xbd\x9b\ +\xaf\xca\xc3\xcb\xdb\xe5\xe5\xec\xec\xeb\xef\xf3\xf2\xf3\xf6\xf6\ +\xf6\xf8\xf8\xf8\xf9\xf9\xf9\xf8\xf8\xf8\xfa\xfa\xfa\xfc\xfc\xfc\ +\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfe\xfe\xfe\xfe\xfe\xfe\xfe\ +\xfe\xfe\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfc\xfc\ +\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\ +\xfa\xfa\xfa\xfa\xfa\xfa\xf9\xf8\xf9\xf5\xf4\xf5\xa8\xa7\xb3\x71\ +\x7a\x90\x7f\x85\x98\x8d\x91\xa3\x9c\x9b\xac\xa3\xa2\xb1\xa7\xa7\ +\xb5\xa9\xa6\xb5\xa6\xa5\xb4\xa3\xa2\xb2\xa1\xa1\xb1\xa0\xa0\xb1\ +\xa0\x9f\xb0\xa1\x9f\xb1\x9e\x9d\xb0\x98\x98\xaa\x8e\x91\xa3\x81\ +\x86\x99\x73\x79\x8c\x6b\x72\x86\x6d\x73\x89\x5e\x63\x80\x00\x00\ +\x00\xd7\xd1\xdc\xd2\xcc\xd7\xcf\xc9\xd4\xcb\xc5\xd0\xc9\xc3\xce\ +\xc8\xc1\xcc\xc8\xc0\xcb\xc7\xbe\xca\xc8\xbf\xca\xca\xbf\xc9\xcd\ +\xc1\xc9\xd1\xc6\xcc\xd3\xc7\xcd\xd5\xc9\xcf\xd7\xcc\xd0\xda\xcf\ +\xd2\xdc\xd1\xd4\xdc\xd1\xd4\xdd\xd2\xd5\xdc\xd1\xd5\xd9\xcf\xd4\ +\xd5\xcb\xd1\xd2\xc8\xce\xd2\xc7\xcd\xd1\xc5\xcb\xce\xc2\xc8\xcb\ +\xbf\xc5\xaf\xa3\xaf\x75\x6e\x82\x67\x65\x7a\x70\x6e\x83\x76\x77\ +\x8e\x66\x69\x82\x67\x67\x7e\x9c\x94\xa2\xad\xa4\xaf\xad\xa4\xb0\ +\xac\xa3\xb0\xac\xa4\xb0\xad\xa4\xb0\xab\xa3\xaf\xac\xa3\xb0\xa9\ +\xa2\xaf\xa9\xa3\xb0\xa8\xa2\xb0\xa7\xa2\xb1\x6b\x8a\x9d\x36\x7b\ +\x8e\x45\x7f\x91\x8a\x99\xa9\x95\x9a\xac\x95\x9a\xac\x98\x9c\xad\ +\x9c\x9e\xaf\xa8\xa7\xb5\xbb\xb6\xc2\xbe\xb8\xc3\xbc\xb6\xc1\xba\ +\xb4\xbf\xb7\xb0\xbb\xb3\xad\xb9\xb0\xa9\xb6\xae\xa7\xb6\xab\xa5\ +\xb4\xaa\xa5\xb5\xb0\xab\xb8\xb0\xab\xb7\xae\xaa\xb7\xac\xa7\xb5\ +\xac\xa7\xb5\xab\xa7\xb3\xab\xa6\xb2\xaa\xa6\xb2\xab\xa6\xb2\xab\ +\xa7\xb3\xaa\xa6\xb2\xaa\xa7\xb2\xaa\xa6\xb2\xab\xa7\xb3\xbc\xb8\ +\xc1\xcb\xc9\xd0\xb4\xb0\xbc\xa9\xa6\xb4\xac\xa8\xb5\xaf\xab\xb8\ +\xae\xab\xb9\xab\xa8\xb7\xa8\xa5\xb5\xa7\xa4\xb4\xa0\x9f\xb1\x9c\ +\x9d\xb0\x9b\xa2\xb6\x96\xa1\xb6\x79\x8c\xa8\x66\x80\xa1\x4e\x87\ +\xaf\x48\x85\xad\x49\x78\x9e\x4a\x76\x99\x32\x74\x98\x30\x7c\x9e\ +\x1b\x82\xb3\x46\x98\xc5\x79\x9e\xba\x56\x80\xa1\x51\x7e\x9f\x76\ +\x97\xb6\x51\x83\xa8\x64\x8f\xb5\x9d\xb1\xcc\xc9\xd1\xdf\xe6\xe6\ +\xec\xed\xec\xf0\xf3\xf3\xf3\xf5\xf5\xf5\xf4\xf4\xf4\xf5\xf5\xf5\ +\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfc\xfc\xfc\xfc\ +\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xff\xff\ +\xff\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\xfd\xfd\ +\xfe\xfe\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfa\xf9\xfa\xf8\xf8\xf8\xf9\ +\xf9\xf9\xf6\xf6\xf6\xbd\xba\xc0\x6b\x72\x87\x68\x73\x89\x76\x7e\ +\x92\x86\x8b\x9d\x94\x96\xa7\x9d\x9d\xad\xa3\xa2\xb2\xa4\xa4\xb3\ +\xa3\xa2\xb2\xa1\xa1\xb1\x9f\x9f\xb0\x9d\x9e\xb0\x9d\x9e\xb0\x9f\ +\x9f\xb1\xa0\xa0\xb1\x9c\x9c\xae\x94\x95\xa7\x88\x8c\x9e\x7a\x80\ +\x93\x6b\x73\x85\x6a\x72\x87\x68\x74\x8a\x00\x00\x00\xd7\xd1\xdc\ +\xd2\xcc\xd7\xce\xc8\xd3\xcb\xc5\xd0\xc9\xc3\xce\xc9\xc2\xcd\xc9\ +\xc1\xcc\xc8\xbf\xca\xc9\xbf\xca\xcb\xc0\xc9\xcf\xc2\xc9\xd2\xc6\ +\xcc\xd3\xc7\xcd\xd4\xc9\xcf\xd6\xcb\xd0\xd8\xcd\xd1\xda\xcf\xd3\ +\xdc\xd1\xd4\xde\xd2\xd6\xdd\xd3\xd6\xdc\xd2\xd7\xda\xd0\xd6\xd6\ +\xcc\xd2\xd3\xc8\xce\xd1\xc7\xcd\xcf\xc5\xcb\xcc\xc1\xc9\xc3\xb8\ +\xc1\xae\xa5\xb3\xa3\x9b\xac\x9b\x96\xa8\x91\x8f\xa1\x79\x7a\x90\ +\x68\x6a\x82\x84\x7f\x93\xa7\x9d\xab\xad\xa4\xb0\xae\xa5\xb1\xad\ +\xa4\xb1\xad\xa4\xb0\xad\xa4\xb1\xac\xa3\xb0\xab\xa3\xb0\xa9\xa2\ +\xb0\xa9\xa2\xb0\xa6\xa1\xaf\x86\x93\xa5\x64\x86\x9b\x53\x88\x9b\ +\x56\x87\x9c\x82\x93\xa6\x95\x99\xac\x9d\x9f\xb0\xb6\xb2\xbe\xc0\ +\xba\xc5\xbd\xb7\xc2\xbc\xb6\xc1\xba\xb4\xbf\xba\xb4\xbe\xb7\xb1\ +\xbc\xb5\xae\xba\xb3\xac\xb9\xb0\xa9\xb7\xae\xa7\xb6\xae\xa7\xb7\ +\xb2\xac\xb9\xb3\xac\xb9\xb3\xac\xb9\xb2\xac\xb8\xb1\xab\xb8\xb0\ +\xab\xb7\xb0\xa9\xb6\xae\xa8\xb4\xad\xa6\xb4\xac\xa6\xb3\xac\xa8\ +\xb4\xac\xa7\xb3\xaa\xa6\xb2\xa9\xa6\xb2\xb0\xab\xb8\xb8\xb3\xbe\ +\xb5\xb1\xbd\xb6\xb2\xbe\xb3\xaf\xbb\xb0\xac\xb8\xae\xaa\xb7\xaa\ +\xa8\xb7\xa8\xa5\xb5\x9d\x9f\xb2\xa3\xa2\xb3\x9f\x9f\xb1\x91\x91\ +\xab\x85\x88\xa6\x7d\x87\xa6\x77\x86\xa6\x54\x79\xa0\x27\x75\xa5\ +\x48\x7a\xa1\x44\x71\x96\x36\x69\x90\x2b\x6a\x94\x23\x85\xb8\x18\ +\x76\xa7\x50\x7c\x97\x8c\xa4\xb5\x57\x83\x9f\x3c\x74\x96\x5c\x89\ +\xb1\x92\xa8\xc7\xc2\xca\xd9\xdd\xdf\xe7\xeb\xea\xf0\xf0\xef\xf1\ +\xef\xef\xf1\xf1\xf0\xf2\xf0\xf0\xf2\xf1\xf0\xf2\xf1\xf1\xf2\xf1\ +\xf0\xf2\xf5\xf5\xf5\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\ +\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\ +\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfe\ +\xfe\xfe\xfd\xfd\xfd\xf5\xf4\xf4\xcb\xc8\xce\xc1\xbf\xc7\x9d\x9a\ +\xa7\x73\x77\x8d\x67\x70\x87\x66\x71\x87\x6f\x78\x8d\x7e\x85\x98\ +\x8c\x90\xa2\x97\x98\xaa\x9e\x9e\xaf\xa1\xa0\xb2\x9f\x9f\xb1\x9c\ +\x9d\xb1\x9b\x9c\xb0\x99\x9b\xaf\x99\x9b\xaf\x9c\x9e\xb1\xa0\xa0\ +\xb2\x9f\x9e\xb0\x99\x9a\xab\x8b\x8f\xa0\x7c\x82\x93\x6c\x75\x86\ +\x61\x6d\x81\x5e\x74\x8a\x00\x00\x00\xd7\xd1\xdc\xd3\xcd\xd8\xcf\ +\xc9\xd4\xcb\xc5\xd0\xcb\xc3\xce\xca\xc2\xcd\xc9\xc1\xcc\xc8\xbf\ +\xca\xca\xc0\xca\xcc\xc1\xc9\xce\xc4\xca\xd2\xc6\xcc\xd3\xc7\xcd\ +\xd4\xc8\xce\xd3\xc9\xcf\xd5\xcb\xd1\xd8\xce\xd3\xda\xd0\xd6\xdb\ +\xd1\xd7\xdd\xd3\xd8\xde\xd4\xda\xde\xd4\xda\xdb\xd1\xd7\xd7\xcd\ +\xd3\xd4\xca\xd0\xd0\xc5\xcd\xcd\xc2\xca\xcb\xc0\xc8\xc8\xbd\xc5\ +\xc4\xbb\xc5\xc0\xb8\xc3\xbb\xb5\xc1\xa9\xa6\xb6\x8d\x8b\xa1\x8e\ +\x89\x9e\x9c\x92\xa3\xac\xa2\xaf\xae\xa5\xb1\xae\xa5\xb2\xae\xa5\ +\xb1\xad\xa4\xb1\xad\xa4\xb1\xab\xa3\xb0\xaa\xa3\xb0\xa9\xa2\xaf\ +\xa9\xa2\xb0\xa0\x9d\xae\x79\x85\x9e\x7a\x91\xa8\x1a\x6a\x8f\x6c\ +\x8c\xa5\xae\xad\xbc\xbd\xb7\xc3\xbd\xb6\xc3\xbd\xb7\xc2\xbb\xb4\ +\xbf\xba\xb4\xbf\xba\xb2\xbe\xb8\xb1\xbc\xb7\xae\xbb\xb7\xae\xbb\ +\xb5\xae\xbb\xb4\xad\xba\xb4\xad\xba\xb3\xac\xb9\xb3\xac\xb9\xb3\ +\xac\xb9\xb3\xad\xb9\xb3\xad\xb8\xb3\xad\xb8\xb4\xae\xb9\xb5\xaf\ +\xba\xb4\xae\xb9\xb1\xab\xb8\xb0\xaa\xb6\xb0\xaa\xb5\xb0\xa9\xb5\ +\xae\xaa\xb5\xb0\xab\xb6\xb2\xae\xba\xc0\xbc\xc6\xcb\xc8\xd1\xc2\ +\xbf\xc9\xb6\xb2\xbd\xb1\xad\xb9\xaf\xab\xb7\xad\xa9\xb7\x95\xa0\ +\xb5\x24\x73\xa1\x7b\x97\xb4\xaa\xa7\xb6\x97\x9d\xb3\x5a\x85\xab\ +\x89\x8f\xad\x76\x84\xa8\x2e\x7d\xad\x11\x83\xba\x45\x79\xa1\x42\ +\x6e\x93\x31\x66\x8f\x18\x64\x92\x15\x7d\xb1\x0b\x80\xb9\x37\x81\ +\xaf\x3f\x70\x8e\x5e\x88\xa6\x48\x80\xa2\x6e\x96\xba\xaf\xbb\xd1\ +\xc9\xce\xda\xde\xdf\xe6\xe4\xe5\xea\xe8\xe6\xeb\xe6\xe5\xea\xe6\ +\xe4\xea\xe7\xe6\xeb\xe9\xe8\xec\xea\xe9\xee\xee\xed\xf0\xf4\xf4\ +\xf4\xf9\xf9\xf9\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfd\xfd\xfd\ +\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\ +\xfd\xfd\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xfc\xfc\ +\xfc\xf7\xf6\xf6\xbb\xb6\xbf\x8e\x8e\xa1\x8d\x8e\xa1\x7f\x83\x96\ +\x6f\x77\x8c\x6b\x74\x8a\x6f\x78\x8c\x7a\x81\x94\x86\x8b\x9e\x90\ +\x94\xa6\x98\x9a\xad\x9c\x9e\xb1\x9a\x9c\xaf\x97\x9a\xae\x96\x99\ +\xae\x95\x98\xae\x95\x9a\xae\x99\x9b\xaf\x9e\x9f\xb1\x9e\x9d\xaf\ +\x81\x82\x97\x61\x65\x7e\x4a\x4f\x6d\x3d\x45\x63\x3b\x4a\x67\x35\ +\x57\x72\x00\x00\x00\xd7\xd1\xdc\xd4\xce\xd9\xcf\xc9\xd4\xcb\xc5\ +\xd0\xcc\xc4\xcf\xca\xc2\xcd\xc9\xc1\xcc\xc8\xbf\xca\xc9\xc0\xc9\ +\xcc\xc1\xc9\xce\xc4\xcb\xd1\xc5\xcb\xd1\xc6\xcc\xd2\xc8\xce\xd2\ +\xc8\xce\xd4\xca\xd0\xd6\xcd\xd3\xd8\xcf\xd5\xdb\xd1\xd7\xdd\xd3\ +\xd9\xdf\xd5\xdb\xe0\xd6\xdb\xde\xd4\xda\xdb\xd1\xd7\xd7\xcd\xd4\ +\xd2\xc8\xd0\xce\xc5\xcc\xca\xc0\xc8\xc8\xbe\xc7\xc7\xbd\xc6\xc6\ +\xbe\xc8\xc7\xbf\xc9\xca\xc2\xcc\xc7\xc0\xca\xc6\xbf\xcb\xbd\xb7\ +\xc3\xad\xa4\xb1\xae\xa4\xb0\xad\xa6\xb2\xae\xa5\xb1\xab\xa3\xb1\ +\xad\xa4\xb1\xad\xa4\xb1\xab\xa2\xb0\xab\xa2\xb0\xa9\xa1\xaf\xa8\ +\xa1\xb0\xa6\xa0\xaf\x9b\x9d\xaf\x5d\x83\xa7\xa7\xab\xbd\xbf\xbb\ +\xc5\xbd\xb8\xc4\xbc\xb6\xc1\xbb\xb4\xc0\xba\xb4\xbf\xba\xb2\xbd\ +\xb9\xb1\xbc\xb8\xaf\xbb\xb8\xaf\xbc\xb4\xad\xba\xb4\xad\xba\xb4\ +\xad\xba\xb4\xad\xba\xb3\xac\xb9\xb5\xaf\xbb\xb6\xb0\xbc\xb6\xb0\ +\xbb\xb7\xb1\xbc\xb7\xb1\xbc\xb6\xb0\xbb\xb6\xb0\xbb\xb5\xb0\xba\ +\xb8\xb2\xbd\xb6\xb0\xbb\xb5\xaf\xba\xb5\xaf\xba\xb4\xaf\xba\xb4\ +\xb0\xbb\xb9\xb5\xbf\xcc\xc8\xd1\xe2\xe0\xe5\xdc\xda\xe1\xc7\xc3\ +\xcd\xba\xb6\xc2\xb5\xb1\xbc\xb1\xaf\xbb\xac\xae\xbc\x66\xa3\xc7\ +\x9d\xb5\xca\xb1\xb1\xc0\x88\xa3\xbf\x1b\x8c\xbf\x67\x9d\xc0\x8d\ +\x95\xb1\x66\x83\xa8\x77\x98\xbb\x4c\x77\xa1\x42\x74\x9d\x27\x6c\ +\x99\x04\x69\x9e\x14\x7d\xb1\x32\x8b\xb6\xc9\xd4\xdf\xa1\xb8\xcd\ +\x54\x80\x9e\x44\x7e\xa2\x91\xac\xcc\xb4\xbe\xd0\xbf\xc5\xd1\xcd\ +\xce\xd9\xd5\xd6\xde\xdf\xdf\xe5\xe1\xe0\xe6\xe4\xe2\xe8\xe4\xe3\ +\xe8\xe5\xe3\xe8\xe8\xe7\xeb\xee\xed\xf0\xf7\xf7\xf7\xfb\xfb\xfc\ +\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\ +\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfd\xfd\xfd\xfe\xfe\ +\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xfd\xfd\xfd\xf9\xf9\xf9\xd8\xd3\xd5\ +\x96\x94\xa3\x94\x94\xa6\x93\x93\xa5\x89\x8c\x9e\x7b\x81\x94\x75\ +\x7d\x91\x75\x7d\x91\x7b\x82\x95\x81\x88\x9b\x8b\x90\xa3\x92\x97\ +\xaa\x97\x9b\xae\x95\x99\xae\x91\x96\xad\x92\x96\xad\x91\x96\xad\ +\x93\x97\xaf\x97\x9a\xaf\x9d\x9e\xb1\x6d\x6e\x85\x2f\x35\x57\x20\ +\x2a\x51\x1d\x27\x4f\x17\x22\x48\x16\x26\x4a\x1b\x40\x5d\x00\x00\ +\x00\xd8\xd2\xdd\xd3\xcd\xd8\xd0\xca\xd5\xcd\xc6\xd1\xcb\xc3\xce\ +\xca\xc2\xcd\xc9\xc1\xcc\xc8\xbf\xca\xc9\xc0\xc9\xcc\xc1\xc9\xce\ +\xc4\xcb\xcf\xc5\xcb\xd1\xc7\xcd\xd2\xc8\xce\xd3\xc9\xcf\xd3\xca\ +\xd1\xd5\xcd\xd4\xd7\xd0\xd5\xda\xd2\xd8\xdc\xd4\xd9\xde\xd6\xdb\ +\xe0\xd6\xdc\xe0\xd6\xdc\xdd\xd4\xda\xda\xd2\xd7\xd5\xce\xd4\xcf\ +\xc8\xcf\xcb\xc2\xca\xc7\xbe\xc6\xc5\xbc\xc6\xc5\xbc\xc6\xc6\xbd\ +\xc7\xc7\xbe\xc8\xca\xc2\xcc\xce\xc6\xcf\xd2\xcb\xd3\xc3\xbc\xc8\ +\xb4\xab\xb8\xaf\xa7\xb3\xa7\xa0\xaf\x75\x7f\x9b\xa0\x9d\xae\xac\ +\xa4\xb1\xac\xa4\xb1\xac\xa3\xb0\xaa\xa2\xb0\xa8\xa1\xb0\xa7\xa1\ +\xb0\xa5\xa0\xaf\xb5\xb0\xbd\xc2\xbe\xc9\xbe\xba\xc6\xbc\xb8\xc4\ +\xbb\xb5\xc0\xbb\xb6\xc0\xba\xb4\xbf\xbb\xb3\xbe\xba\xb2\xbd\xba\ +\xb2\xbd\xba\xb2\xbd\xb9\xb1\xbd\xb8\xb2\xbd\xb7\xb1\xbc\xb7\xb1\ +\xbc\xb6\xaf\xbb\xb6\xb0\xbb\xb7\xb1\xbc\xb7\xb1\xbc\xb8\xb1\xbc\ +\xb9\xb2\xbd\xb9\xb2\xbd\xb9\xb4\xbe\xb9\xb4\xbe\xba\xb5\xbf\xbb\ +\xb6\xbf\xbc\xb7\xc0\xbc\xb7\xbf\xbe\xb9\xc3\xc2\xbe\xc7\xd0\xce\ +\xd5\xe6\xe5\xe9\xf4\xf4\xf4\xf4\xf4\xf4\xeb\xea\xed\xdd\xda\xe0\ +\x99\xaf\xc5\x2e\x80\xae\xac\xb8\xca\xc1\xb9\xc5\xb7\xb4\xc1\xa4\ +\xad\xbe\xa5\xae\xc1\xa1\xbc\xd2\xa4\xb2\xc7\x92\x9f\xb8\x7b\x8f\ +\xaf\x69\x82\xa8\x4f\x8a\xb6\x1d\x7e\xaf\x19\x83\xb9\x17\x7e\xb6\ +\x38\x77\x9f\x21\x56\x77\x4a\x72\x8e\x8b\xa7\xbd\x82\xa9\xca\x6c\ +\x9e\xc3\x81\xa3\xc5\xaa\xb6\xcb\xc6\xcc\xd7\xc9\xcb\xd6\xd3\xd2\ +\xdb\xde\xdc\xe2\xe2\xe0\xe6\xe3\xe1\xe6\xe3\xe1\xe6\xe4\xe3\xe8\ +\xe7\xe5\xeb\xeb\xe9\xee\xef\xee\xf1\xf4\xf3\xf5\xf7\xf8\xf7\xf9\ +\xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\ +\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfe\xfe\xfe\xfe\xfe\xfe\xff\xff\xff\ +\xfe\xfe\xfe\xfc\xfd\xfc\xf2\xef\xef\xac\xa6\xb1\x95\x95\xa6\x95\ +\x95\xa5\x95\x95\xa6\x93\x93\xa5\x87\x8a\x9c\x7f\x84\x97\x7d\x83\ +\x96\x7f\x85\x98\x82\x88\x9c\x87\x8d\xa0\x8c\x92\xa6\x92\x97\xab\ +\x90\x96\xac\x8d\x93\xab\x8c\x92\xaa\x8c\x92\xab\x8f\x94\xac\x95\ +\x98\xaf\x9b\x9c\xb1\x6a\x6d\x87\x1a\x24\x49\x0f\x19\x3e\x0e\x18\ +\x3d\x11\x1f\x44\x1a\x38\x57\x1e\x50\x67\x00\x00\x00\xd7\xd1\xdc\ +\xd3\xcd\xd8\xcf\xc9\xd4\xce\xc6\xd1\xcc\xc3\xce\xca\xc2\xcd\xc9\ +\xc1\xcc\xc8\xc0\xca\xca\xc1\xca\xcb\xc2\xc9\xce\xc3\xcb\xd0\xc5\ +\xcd\xd2\xc8\xce\xd3\xc9\xcf\xd3\xc9\xd0\xd4\xcc\xd2\xd6\xcf\xd5\ +\xd8\xd0\xd7\xda\xd2\xd9\xdc\xd5\xda\xdd\xd5\xda\xde\xd6\xdb\xde\ +\xd7\xdc\xdd\xd7\xdc\xdc\xd5\xda\xd9\xd1\xd8\xd4\xcc\xd3\xcd\xc5\ +\xcd\xc7\xbe\xc8\xc4\xbb\xc5\xc2\xb9\xc3\xc2\xb9\xc4\xc3\xba\xc5\ +\xc3\xbb\xc5\xc6\xbe\xc8\xcc\xc4\xcc\xd0\xc8\xd2\xcf\xc7\xd1\xc2\ +\xbb\xc6\xaa\xa5\xb4\x8d\x91\xa8\xa7\xa2\xb2\xab\xa5\xb2\xab\xa4\ +\xb1\xab\xa4\xb1\xab\xa3\xb2\xab\xa5\xb2\xa6\xa1\xb1\xaa\xa5\xb5\ +\xc7\xc3\xce\xc8\xc4\xcf\xc3\xc0\xca\xc1\xbe\xc9\xbe\xb9\xc4\xbb\ +\xb5\xc0\xba\xb4\xbf\xbc\xb4\xbf\xbd\xb5\xc0\xbd\xb5\xc0\xbc\xb4\ +\xbf\xba\xb3\xbe\xb9\xb3\xbe\xb9\xb3\xbe\xb8\xb2\xbd\xba\xb3\xbd\ +\xb8\xb2\xbd\xb9\xb2\xbd\xb9\xb3\xbe\xb9\xb3\xbe\xb9\xb4\xbd\xba\ +\xb4\xbf\xba\xb4\xbe\xba\xb4\xbe\xbb\xb5\xbf\xbc\xb6\xc0\xbe\xb9\ +\xc3\xc2\xbf\xc8\xcf\xcc\xd5\xe1\xde\xe4\xef\xee\xf0\xf2\xf2\xf3\ +\xf3\xf2\xf3\xf0\xf0\xf2\xef\xef\xf1\xed\xea\xee\xc3\xd0\xdf\x7e\ +\xb1\xd1\xb4\xc1\xd0\xc9\xc7\xd1\xb7\xc1\xcf\x22\x79\xa7\x85\xac\ +\xc9\xb4\xb7\xc6\xaf\xb6\xc6\xa3\xac\xc0\x92\x9f\xb9\x84\x99\xb8\ +\x57\x8e\xb8\x03\x7a\xb2\x47\xa4\xd5\x6b\x94\xba\x6f\x90\xb5\x72\ +\x98\xbc\x64\x8d\xb1\x53\x89\xb0\x65\x9e\xc4\x67\x9e\xc2\x6d\x97\ +\xbb\x99\xac\xc4\xcb\xcf\xd9\xde\xdf\xe5\xde\xdd\xe4\xe2\xe0\xe6\ +\xe3\xe1\xe7\xe6\xe4\xea\xe8\xe6\xec\xe8\xe7\xec\xe9\xe8\xed\xef\ +\xee\xf1\xef\xef\xf1\xef\xed\xf1\xf1\xf0\xf2\xf3\xf2\xf3\xf6\xf6\ +\xf6\xf7\xf7\xf7\xfa\xfa\xfa\xfc\xfc\xfc\xfd\xfd\xfd\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfe\xfa\ +\xf9\xf8\xc0\xba\xc0\x99\x97\xa7\x98\x98\xa8\x98\x97\xa7\x97\x97\ +\xa7\x97\x97\xa8\x90\x91\xa3\x88\x8b\x9d\x84\x89\x9b\x83\x89\x9c\ +\x84\x8a\x9d\x85\x8b\xa0\x87\x8e\xa2\x8b\x91\xa7\x8b\x91\xa9\x88\ +\x8e\xa8\x85\x8d\xa7\x84\x8d\xa8\x8a\x8f\xa9\x90\x93\xac\x99\x9a\ +\xaf\x8a\x8c\xa4\x30\x3d\x65\x13\x20\x48\x17\x26\x4f\x23\x3f\x60\ +\x2d\x59\x71\x2a\x5c\x72\x00\x00\x00\xd7\xd1\xdc\xd3\xcd\xd8\xd0\ +\xca\xd5\xcd\xc7\xd2\xcc\xc5\xd0\xca\xc3\xce\xc8\xc0\xcb\xc9\xc1\ +\xcb\xca\xc1\xcb\xcd\xc4\xcb\xcf\xc5\xcd\xd1\xc7\xce\xd3\xc9\xcf\ +\xd5\xcb\xd1\xd4\xcc\xd2\xd6\xce\xd4\xd8\xd0\xd7\xda\xd2\xd9\xdc\ +\xd4\xda\xdc\xd4\xda\xde\xd7\xdc\xdd\xd6\xdb\xdd\xd7\xdb\xde\xd7\ +\xdc\xdd\xd6\xdb\xdb\xd3\xda\xd7\xd0\xd7\xd2\xca\xd2\xc9\xc1\xca\ +\xc3\xba\xc4\xc0\xb6\xc1\xbf\xb7\xc2\xc0\xb7\xc2\xbf\xb6\xc1\xc0\ +\xb6\xc1\xc4\xbb\xc5\xcb\xc2\xcb\xd0\xc8\xcf\xd4\xcd\xd4\xc2\xbb\ +\xc8\xad\xa6\xb5\xad\xa6\xb5\xaa\xa5\xb3\xac\xa5\xb3\xa9\xa3\xb2\ +\xa8\xa2\xb1\x9c\x9d\xaf\x4f\x70\x97\x9c\xa4\xb9\xd1\xce\xd8\xcd\ +\xc9\xd4\xcc\xc8\xd3\xcb\xc7\xd1\xc5\xc1\xcc\xbe\xb9\xc4\xba\xb4\ +\xbf\xba\xb4\xbf\xb9\xb3\xbe\xbb\xb4\xbe\xbd\xb4\xbe\xbc\xb5\xbf\ +\xbd\xb6\xc0\xbc\xb5\xbf\xba\xb5\xbf\xba\xb4\xbf\xb8\xb2\xbd\xb9\ +\xb2\xbd\xb8\xb2\xbd\xb9\xb3\xbe\xb9\xb3\xbe\xb9\xb3\xbe\xb9\xb3\ +\xbe\xb9\xb3\xbe\xb9\xb3\xbe\xbb\xb5\xc0\xc3\xbf\xc9\xce\xcb\xd4\ +\xd8\xd5\xdd\xe3\xe1\xe6\xe7\xe5\xea\xe6\xe4\xe8\xe3\xe0\xe5\xdf\ +\xdc\xe1\xdc\xd9\xe0\xde\xdc\xe2\xdf\xde\xe3\xd4\xd2\xdb\xc7\xc6\ +\xcf\xbf\xbc\xc6\xa6\xb3\xc6\x52\xac\xdb\xad\xca\xdf\xd3\xd8\xe2\ +\xc3\xca\xd9\xb7\xc1\xd3\xb1\xbd\xcf\xb0\xbc\xce\x8e\xb4\xd0\x2d\ +\xa0\xd8\xb9\xd2\xe4\xda\xdf\xe7\xc1\xcb\xda\xad\xbf\xd3\x85\xa9\ +\xcf\x78\xaa\xd0\x65\x9d\xc4\x50\x88\xb3\x67\x95\xb8\x91\xaa\xc2\ +\xc9\xd0\xdb\xeb\xea\xef\xeb\xe9\xee\xed\xed\xef\xec\xeb\xef\xec\ +\xeb\xef\xef\xee\xf1\xef\xef\xf1\xf2\xf1\xf3\xf5\xf5\xf5\xf8\xf8\ +\xf8\xf8\xf8\xf8\xf5\xf5\xf5\xf3\xf3\xf3\xf4\xf4\xf4\xf7\xf7\xf7\ +\xfa\xfa\xfa\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xff\xff\xff\xfe\ +\xfe\xfe\xfe\xfe\xfe\xfd\xfd\xfd\xe6\xe3\xe3\xb0\xac\xb6\x99\x98\ +\xa8\x98\x98\xa8\x99\x99\xa9\x9a\x9a\xaa\x99\x99\xa9\x99\x99\xa9\ +\x97\x97\xa8\x90\x92\xa4\x8a\x8e\xa0\x85\x8b\x9e\x86\x8c\xa0\x85\ +\x8c\xa0\x82\x89\xa0\x84\x8b\xa3\x85\x8c\xa6\x80\x89\xa4\x7f\x86\ +\xa4\x7e\x87\xa5\x83\x8a\xa7\x8b\x90\xaa\x96\x98\xae\x95\x96\xab\ +\x73\x7a\x9a\x5f\x67\x8b\x67\x74\x90\x56\x6f\x87\x3a\x64\x7b\x35\ +\x63\x7a\x00\x00\x00\xd9\xd4\xdf\xd6\xd0\xdb\xd3\xcd\xd8\xd0\xca\ +\xd5\xce\xc8\xd3\xcb\xc6\xd1\xcb\xc3\xcf\xcb\xc3\xce\xcc\xc3\xce\ +\xce\xc6\xce\xd0\xc8\xcf\xd3\xc8\xd0\xd4\xc9\xd0\xd5\xcc\xd2\xd7\ +\xcd\xd3\xd7\xcf\xd6\xda\xd2\xd9\xdc\xd5\xda\xdd\xd6\xdb\xde\xd7\ +\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\xd6\xdc\xde\xd6\xdc\xdd\xd6\xdc\ +\xdd\xd5\xdc\xda\xd3\xda\xd5\xce\xd5\xce\xc6\xce\xc5\xbc\xc6\xbf\ +\xb7\xc1\xbf\xb6\xc0\xc0\xb7\xc1\xbf\xb5\xbf\xc0\xb5\xbf\xc2\xb8\ +\xc1\xc7\xbe\xc6\xcc\xc2\xca\xd1\xc9\xd0\xd4\xcd\xd5\xbf\xb9\xc6\ +\x89\x92\xad\x75\x85\xa5\xaf\xa8\xb6\xae\xa7\xb5\xac\xa6\xb6\x9c\ +\x9e\xb3\x69\x81\xa3\xa6\xa9\xbc\xd5\xd2\xdb\xd3\xd0\xd8\xd0\xcc\ +\xd6\xcf\xcc\xd5\xce\xca\xd3\xc0\xbc\xc7\xb9\xb4\xbe\xb6\xaf\xbb\ +\xb4\xae\xb9\xb4\xad\xb8\xb8\xb0\xbb\xb8\xb1\xbd\xba\xb3\xbe\xba\ +\xb3\xbe\xba\xb4\xbf\xbb\xb5\xbf\xba\xb4\xbf\xb9\xb3\xbe\xb9\xb3\ +\xbe\xb7\xb1\xbc\xb7\xb1\xbc\xb7\xb1\xbc\xb5\xaf\xba\xb4\xaf\xba\ +\xb3\xaf\xba\xb3\xaf\xbb\xbc\xb8\xc3\xc7\xc4\xcd\xcd\xca\xd0\xcd\ +\xc8\xd0\xcc\xc8\xd0\xcf\xcb\xd2\xd2\xcf\xd6\xd3\xd1\xd8\xdc\xd9\ +\xe0\xde\xdb\xe2\xe2\xe0\xe6\xe2\xe0\xe5\xde\xdc\xe2\xd2\xd1\xd9\ +\xc3\xc0\xcd\xbe\xb6\xc2\xb6\xb1\xbc\xaf\xac\xba\xa0\xa4\xb8\x90\ +\x95\xb0\x72\x76\x9c\x63\x6e\x93\x4e\x60\x8c\x4e\x67\x94\x51\x6f\ +\x9c\x88\x9a\xbd\xa3\xb2\xd3\x97\xad\xd6\x8c\xac\xd5\x75\xa3\xcc\ +\x5d\x94\xbb\x4b\x83\xb1\x65\x94\xb7\x93\xad\xc3\xd1\xd6\xdf\xed\ +\xec\xef\xf2\xf1\xf2\xf5\xf5\xf5\xf4\xf4\xf4\xf1\xf0\xf2\xf1\xf0\ +\xf2\xf3\xf2\xf3\xf5\xf5\xf5\xf8\xf8\xf8\xfb\xfb\xfb\xfc\xfc\xfc\ +\xfb\xfb\xfb\xfa\xfa\xfa\xf8\xf8\xf8\xf8\xf8\xf8\xfa\xfa\xfa\xfb\ +\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfd\xfc\xf1\xf1\xf0\xc9\xce\ +\xcd\x87\x95\x97\x8d\x91\x9f\x99\x98\xa9\x93\x94\xa4\x90\x93\xa4\ +\x96\x97\xa7\x9a\x9a\xaa\x9b\x9b\xab\x9c\x9b\xab\x9b\x9b\xab\x98\ +\x98\xa9\x7c\x84\x99\x68\x77\x8e\x76\x81\x96\x7e\x87\x9c\x80\x87\ +\x9f\x7e\x86\x9e\x7e\x86\xa2\x7d\x86\xa3\x7a\x84\xa1\x7a\x84\xa2\ +\x81\x88\xa5\x8c\x90\xaa\x95\x97\xad\x9d\x9c\xb0\x9d\x9d\xaf\x9c\ +\x9c\xad\x99\x9a\xab\x6b\x7a\x92\x41\x65\x7e\x39\x64\x7c\x00\x00\ +\x00\xdc\xd6\xe0\xd9\xd3\xde\xd6\xd0\xdb\xd4\xcd\xd9\xd2\xcc\xd7\ +\xcf\xc9\xd4\xcd\xc7\xd2\xce\xc6\xd0\xcf\xc7\xd0\xd1\xc8\xd1\xd1\ +\xc9\xd0\xd3\xca\xd1\xd5\xcb\xd1\xd7\xcd\xd3\xd8\xcf\xd5\xd9\xd1\ +\xd7\xdb\xd4\xd9\xdd\xd6\xdb\xdf\xd8\xdd\xdf\xd8\xdd\xdf\xd8\xdd\ +\xdf\xd7\xdd\xde\xd6\xdd\xdd\xd5\xdd\xdd\xd5\xdc\xdc\xd5\xdc\xdb\ +\xd4\xdb\xd7\xd0\xd7\xd2\xca\xd1\xcc\xc3\xca\xc6\xbb\xc4\xc2\xb8\ +\xc1\xc3\xb7\xc0\xc2\xb6\xbf\xc1\xb5\xbe\xc1\xb6\xbe\xc6\xbb\xc3\ +\xcb\xc1\xc8\xce\xc4\xcb\xcf\xc5\xcd\xcc\xc3\xcb\xa6\xa7\xbb\x8f\ +\x97\xb0\xae\xa7\xb6\xac\xa5\xb4\xa9\xa3\xb3\xa6\xa1\xb3\xa9\xa3\ +\xb4\xa8\xa4\xb5\xc0\xbc\xc6\xd4\xd0\xd7\xd6\xd2\xd9\xd7\xd1\xd6\ +\xcc\xc7\xd0\xc3\xc0\xca\xbe\xba\xc4\xba\xb3\xbf\xb5\xae\xba\xb4\ +\xae\xba\xb4\xad\xb9\xb4\xac\xb9\xb5\xae\xba\xb5\xae\xba\xb4\xad\ +\xba\xb5\xb0\xbb\xb6\xb0\xbb\xb5\xaf\xba\xb4\xad\xb9\xb4\xae\xb9\ +\xb4\xae\xb9\xb3\xad\xb8\xb1\xac\xb8\xb2\xae\xb9\xb2\xae\xba\xb4\ +\xb0\xbc\xb9\xb5\xc0\xc0\xbb\xc6\xc5\xc2\xcc\xc8\xc4\xce\xce\xcb\ +\xd3\xd7\xd5\xdc\xdd\xdb\xe1\xe1\xe0\xe5\xe1\xe0\xe6\xe8\xe6\xeb\ +\xe8\xe6\xeb\xea\xe9\xed\xef\xef\xf1\xef\xef\xf1\xe5\xe4\xea\xce\ +\xcc\xd6\xba\xb7\xc4\x94\x98\xb0\x79\x85\xa6\x5c\x6a\x96\x3e\x4e\ +\x84\x46\x5a\x8a\x4b\x61\x92\x62\x78\xa3\x7f\x90\xb4\xaa\xb4\xce\ +\xc4\xcc\xde\xca\xd0\xe1\xaf\xb9\xd7\x85\x9e\xc9\x6a\x97\xc1\x55\ +\x90\xb8\x63\x98\xbc\x92\xae\xc3\xb2\xbd\xcc\xe8\xe8\xec\xf2\xf1\ +\xf2\xf2\xf2\xf3\xf4\xf4\xf4\xf2\xf2\xf2\xf4\xf3\xf4\xf6\xf6\xf6\ +\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\ +\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xf9\xf9\xf9\xfa\xfa\ +\xfa\xfa\xf8\xf8\xa0\xab\xae\x6f\x87\x8c\x4a\x6f\x76\x3f\x68\x73\ +\x6c\x7d\x8d\x7b\x83\x95\x58\x65\x7e\x54\x66\x82\x69\x7a\x92\x85\ +\x8c\xa0\x98\x99\xa9\x9c\x9c\xab\x9e\x9e\xad\x99\x99\xab\x66\x76\ +\x8a\x45\x65\x76\x4e\x6b\x7a\x61\x75\x86\x73\x7f\x95\x79\x82\x9c\ +\x79\x82\x9e\x7a\x83\xa0\x7b\x83\xa2\x7d\x85\xa3\x82\x88\xa5\x8c\ +\x8f\xaa\x95\x96\xad\x9c\x9b\xae\x9a\x9a\xad\x99\x9a\xab\x95\x96\ +\xa8\x6c\x78\x93\x49\x65\x82\x3f\x65\x7e\x00\x00\x00\xdd\xd8\xe1\ +\xda\xd5\xde\xd8\xd4\xdd\xd6\xd1\xdb\xd5\xcf\xda\xd2\xcc\xd7\xd1\ +\xca\xd4\xd1\xc9\xd3\xd2\xca\xd3\xd4\xcc\xd3\xd3\xcb\xd2\xd4\xcb\ +\xd1\xd6\xcc\xd2\xd8\xce\xd4\xd9\xd2\xd7\xda\xd3\xd8\xdc\xd5\xda\ +\xdf\xd8\xdd\xe0\xd9\xde\xdf\xd8\xdd\xdf\xd8\xdd\xdf\xd7\xdd\xdf\ +\xd7\xde\xdd\xd5\xdc\xdd\xd5\xdc\xdc\xd5\xdc\xdb\xd4\xdb\xda\xd3\ +\xda\xd7\xce\xd6\xd0\xc8\xcf\xcd\xc3\xcb\xca\xbf\xc6\xc6\xba\xc1\ +\xc0\xb3\xbc\xb9\xae\xb9\xbc\xb3\xbd\xbd\xb4\xbe\xbd\xb4\xbe\xbc\ +\xb2\xbc\xba\xb1\xbb\xb9\xaf\xba\xb9\xaf\xba\xb7\xae\xba\xb5\xad\ +\xb8\xb3\xab\xb9\xb0\xa9\xb6\xa8\xa5\xb5\x69\x82\xa3\x8d\x95\xac\ +\xa1\x9f\xaf\x9e\x9e\xb1\x8e\x94\xad\x51\x78\x9d\x5a\x79\x9d\xaa\ +\xab\xbd\xc9\xc5\xcf\xbd\xb9\xc4\xb8\xb2\xbd\xb4\xae\xba\xb3\xac\ +\xb9\xb4\xad\xb9\xb4\xad\xba\xb3\xac\xb9\xb2\xac\xb8\xb3\xac\xb8\ +\xb3\xac\xb8\xb2\xac\xb8\xb2\xac\xb7\xb2\xac\xb8\xb2\xac\xb8\xb4\ +\xae\xb9\xb5\xaf\xba\xb5\xb1\xbc\xb6\xb2\xbd\xb7\xb3\xbf\xbe\xba\ +\xc4\xc8\xc5\xce\xd2\xcf\xd8\xda\xd7\xdf\xe1\xde\xe5\xe6\xe2\xe7\ +\xea\xe8\xec\xef\xef\xf1\xf0\xef\xf1\xef\xee\xf1\xf1\xef\xf2\xf4\ +\xf4\xf4\xf5\xf5\xf5\xf4\xf4\xf4\xf4\xf4\xf4\xee\xed\xf0\xbd\xbf\ +\xcf\x86\x93\xb1\x76\x86\xaa\x6c\x7e\xa4\x72\x87\xa9\x7e\x92\xaf\ +\x89\x99\xb4\xa0\xa8\xbe\xbd\xc0\xd1\xd4\xd6\xe1\xd9\xdb\xe5\xdc\ +\xdd\xe7\xd0\xd2\xdf\xac\xb5\xd0\x8e\xa5\xc9\x7f\xa5\xc6\x76\xa8\ +\xc5\x90\xad\xc3\xaf\xbd\xce\xf0\xef\xf2\xef\xed\xf0\xef\xed\xf0\ +\xf0\xed\xf0\xf1\xef\xf0\xf6\xf6\xf6\xf7\xf7\xf7\xf9\xf9\xf9\xf9\ +\xf9\xf9\xf9\xf9\xf9\xf9\xf9\xf9\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\ +\xfa\xfa\xfa\xfa\xf9\xf9\xf9\xf9\xf9\xf9\xfb\xfb\xfb\xf7\xf4\xf4\ +\x53\x70\x7a\x30\x5e\x68\x37\x67\x71\x39\x68\x73\x3d\x66\x73\x3d\ +\x5c\x71\x27\x44\x64\x31\x52\x72\x3f\x66\x81\x4d\x6f\x88\x6c\x7f\ +\x95\x8e\x93\xa5\x9c\x9d\xad\x9a\x9b\xab\x65\x77\x87\x3e\x62\x6d\ +\x3b\x5f\x6b\x41\x62\x6f\x4e\x67\x77\x61\x6f\x89\x76\x7f\x9c\x7a\ +\x82\x9f\x7f\x86\xa3\x83\x88\xa5\x86\x8b\xa7\x8d\x90\xa9\x93\x95\ +\xaa\x97\x98\xac\x95\x96\xaa\x95\x97\xa8\x8e\x92\xa4\x67\x72\x8f\ +\x4d\x63\x82\x47\x64\x80\x00\x00\x00\xde\xd8\xe1\xdc\xd5\xdf\xdd\ +\xd5\xdf\xda\xd4\xdd\xd7\xd1\xda\xd6\xcf\xd9\xd5\xcd\xd7\xd5\xcd\ +\xd7\xd6\xcf\xd6\xd6\xce\xd5\xd6\xce\xd5\xd7\xcd\xd4\xd9\xcf\xd4\ +\xd9\xd1\xd6\xda\xd3\xd8\xdc\xd5\xda\xde\xd7\xdc\xdf\xd8\xdd\xe0\ +\xd9\xde\xe0\xd9\xde\xe1\xda\xdf\xe0\xd9\xdf\xde\xd7\xde\xdd\xd7\ +\xde\xdc\xd5\xdc\xdc\xd5\xdc\xdb\xd4\xdb\xda\xd3\xda\xd9\xd1\xd7\ +\xd6\xce\xd4\xcf\xc6\xce\xc6\xbc\xc4\xbb\xb0\xba\xb6\xad\xb8\xb7\ +\xaf\xba\xb8\xb0\xbb\xb8\xaf\xba\xb8\xaf\xba\xb9\xb0\xba\xb9\xb0\ +\xba\xb9\xaf\xba\xb8\xaf\xb9\xb8\xae\xba\xb5\xad\xb8\xb3\xab\xb8\ +\xaf\xa9\xb8\x90\x99\xaf\x44\x79\xa4\x80\x94\xae\xa9\xa8\xb7\xa5\ +\xa6\xb6\x98\x9e\xb3\x66\x84\xa5\x70\x88\xa7\xc9\xc7\xd3\xd2\xcf\ +\xd7\xc4\xc1\xca\xbb\xb5\xc0\xb7\xb1\xbc\xb4\xad\xba\xb3\xac\xb9\ +\xb3\xac\xb9\xb4\xad\xb9\xb4\xad\xb9\xb3\xad\xb8\xb3\xae\xb8\xb4\ +\xae\xb9\xb4\xae\xb9\xb4\xae\xb9\xb5\xae\xb9\xb6\xb0\xbb\xb6\xb0\ +\xbb\xb7\xb0\xbb\xb6\xb2\xbd\xbd\xb9\xc4\xcb\xc7\xd0\xda\xd8\xde\ +\xe3\xe1\xe7\xea\xe8\xec\xef\xed\xef\xf4\xf3\xf4\xf5\xf5\xf5\xf3\ +\xf3\xf3\xf2\xf2\xf3\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\xf5\ +\xf5\xf4\xf4\xf4\xf3\xf3\xf4\xe9\xea\xed\xb1\xb9\xce\x93\xa5\xc2\ +\x8e\xa4\xbe\x8c\xa0\xb9\x8b\x9d\xb6\x92\xa0\xb8\xa5\xac\xc0\xbe\ +\xc1\xcf\xdd\xde\xe6\xe2\xe2\xe9\xe0\xe1\xe8\xe3\xe3\xe8\xe0\xe0\ +\xe7\xcf\xd1\xdf\xaa\xb7\xd1\x9a\xaf\xcd\x96\xb0\xcd\x9b\xb2\xc9\ +\xcd\xd5\xde\xf0\xef\xf1\xec\xe9\xee\xf0\xed\xf0\xf2\xf0\xf2\xf6\ +\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\ +\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xf9\xf9\xf9\xfa\xfa\xfa\ +\xfb\xfb\xfb\xfc\xfc\xfc\xff\xff\xff\xd5\xd7\xd5\x45\x6a\x6f\x2c\ +\x5b\x66\x2e\x5e\x6a\x36\x66\x72\x35\x62\x70\x2c\x59\x6c\x2c\x54\ +\x71\x34\x60\x7c\x3e\x68\x82\x40\x68\x83\x3f\x68\x81\x52\x70\x88\ +\x7e\x89\x9d\x99\x9c\xab\x77\x84\x92\x41\x62\x6b\x32\x56\x62\x32\ +\x54\x62\x36\x56\x66\x3c\x57\x6d\x5e\x6c\x88\x7d\x83\x9f\x84\x88\ +\xa3\x85\x89\xa4\x87\x8c\xa6\x8e\x92\xaa\x92\x95\xab\x95\x96\xaa\ +\x93\x95\xa8\x8f\x93\xa6\x8b\x90\xa3\x68\x72\x8e\x4f\x61\x7f\x46\ +\x5e\x7a\x00\x00\x00\xe1\xd9\xe1\xde\xd7\xdf\xdd\xd6\xde\xdb\xd4\ +\xdd\xda\xd2\xdc\xd9\xd1\xda\xd7\xd0\xd9\xd9\xd1\xd9\xd9\xd1\xd9\ +\xd9\xd2\xd8\xd8\xd1\xd7\xd9\xd1\xd6\xd9\xd1\xd6\xda\xd3\xd8\xdc\ +\xd5\xda\xdd\xd6\xdb\xde\xd8\xdd\xe0\xd9\xde\xe1\xda\xdf\xe1\xda\ +\xdf\xe0\xd9\xdf\xe0\xd9\xdf\xdf\xd8\xdf\xdd\xd6\xdd\xdc\xd5\xdc\ +\xdb\xd4\xdb\xda\xd3\xda\xd6\xcf\xd5\xcf\xc8\xce\xc8\xc0\xc7\xc1\ +\xb8\xc1\xbc\xb3\xbd\xbb\xb2\xbc\xbb\xb2\xbd\xb9\xb1\xbc\xb9\xb1\ +\xbc\xb9\xb0\xbb\xb9\xb0\xba\xb9\xb0\xba\xb9\xb0\xba\xb8\xae\xb9\ +\xb8\xae\xb9\xb7\xad\xb9\xb5\xad\xb8\xb5\xad\xb8\x9f\xa0\xb4\x4c\ +\x76\x9f\x83\x95\xb1\x9d\xa2\xb4\xa2\xa1\xb2\xa6\xa4\xb4\xa2\xa2\ +\xb3\x9c\x9e\xb0\xaa\xaa\xba\xd5\xd2\xd9\xd0\xcd\xd5\xcc\xc9\xd1\ +\xc7\xc4\xcd\xc0\xbc\xc6\xbb\xb6\xc2\xb8\xb1\xbd\xb6\xaf\xbb\xb5\ +\xaf\xba\xb5\xad\xb9\xb3\xad\xb9\xb4\xae\xb9\xb5\xaf\xba\xb6\xb0\ +\xbb\xb5\xaf\xbb\xb6\xb0\xbb\xb7\xb1\xbc\xb7\xb1\xbc\xb9\xb3\xbe\ +\xbf\xbc\xc6\xcc\xc9\xd1\xdd\xdb\xe1\xeb\xe9\xed\xf0\xef\xf2\xf4\ +\xf4\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\ +\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf5\xf4\xf5\xef\xee\xf3\ +\xe5\xe3\xeb\xca\xcd\xda\xae\xba\xcf\xa2\xb3\xcb\x9a\xae\xc6\x96\ +\xa9\xc0\x9d\xaa\xbf\xae\xb4\xc5\xce\xce\xd9\xeb\xeb\xee\xee\xed\ +\xf0\xe2\xe2\xe9\xe2\xe1\xe7\xe5\xe3\xe9\xe5\xe3\xe8\xe6\xe4\xea\ +\xdb\xdb\xe6\xc4\xcb\xdf\xb0\xbe\xd9\xb1\xc0\xd7\xd1\xd4\xdf\xe5\ +\xe3\xe9\xea\xe8\xed\xed\xe9\xee\xf1\xef\xf1\xf5\xf5\xf5\xf7\xf7\ +\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xf8\xf8\xf8\xf7\xf7\xf7\xf8\xf8\xf8\ +\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xff\ +\xff\xff\xf5\xf4\xf3\x7d\x91\x8f\x2f\x5e\x61\x28\x5b\x62\x29\x5c\ +\x66\x30\x61\x6e\x2d\x5f\x6d\x2d\x5e\x6f\x36\x63\x79\x3c\x67\x7f\ +\x42\x6b\x84\x3f\x67\x81\x40\x68\x82\x3f\x67\x7f\x4a\x6a\x82\x89\ +\x90\xa3\x90\x94\xa2\x53\x64\x73\x2d\x41\x58\x23\x39\x52\x25\x3c\ +\x57\x2d\x44\x5e\x3e\x53\x6c\x64\x6e\x89\x79\x7d\x97\x57\x5c\x78\ +\x5c\x62\x80\x80\x85\x9f\x91\x94\xa9\x93\x97\xaa\x8f\x93\xa6\x8a\ +\x90\xa2\x8a\x8f\xa2\x6e\x77\x90\x50\x5e\x78\x3b\x49\x63\x00\x00\ +\x00\xe1\xda\xe1\xe0\xd9\xe0\xdf\xd8\xdf\xdd\xd5\xdc\xdb\xd4\xdb\ +\xdc\xd4\xdb\xda\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\xd3\xda\xda\ +\xd3\xd8\xda\xd3\xd8\xdb\xd4\xd9\xdc\xd5\xda\xdd\xd6\xdb\xdd\xd7\ +\xdc\xdf\xd9\xde\xe0\xda\xdf\xe1\xda\xe0\xe0\xda\xe0\xdf\xd8\xe0\ +\xdf\xd8\xdf\xdf\xd8\xdf\xdd\xd6\xdd\xdb\xd4\xdb\xd7\xd0\xd7\xcf\ +\xc7\xce\xca\xc2\xc9\xc6\xbe\xc5\xc0\xb7\xbf\xbe\xb5\xbf\xbd\xb4\ +\xbe\xbd\xb4\xbe\xbb\xb3\xbd\xba\xb2\xbc\xb8\xb0\xbb\xb8\xb0\xba\ +\xb9\xb0\xba\xb9\xb0\xba\xb9\xb0\xba\xb7\xae\xb9\xb7\xad\xb8\xb6\ +\xac\xb8\xb5\xac\xb7\xb4\xab\xb7\xb1\xaa\xb7\x90\x9b\xb4\x3d\x74\ +\x9f\x83\x95\xae\x70\x85\xa6\x8d\x95\xac\x97\x9a\xae\x8c\x90\xa8\ +\xc0\xbc\xc8\xd6\xd4\xda\xd3\xd1\xd7\xd6\xd4\xda\xd4\xd2\xd9\xcf\ +\xcc\xd4\xc8\xc4\xce\xc1\xbd\xc7\xbe\xb8\xc3\xb9\xb3\xbf\xb9\xb3\ +\xbf\xb7\xb1\xbc\xb7\xb1\xbc\xb8\xb2\xbd\xb7\xb1\xbc\xb9\xb3\xbe\ +\xba\xb5\xbf\xbb\xb6\xc0\xbd\xb7\xc2\xc1\xbe\xc7\xce\xcc\xd4\xe3\ +\xe1\xe6\xee\xed\xf0\xf2\xf2\xf3\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\ +\xf7\xf7\xf7\xf7\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\xf7\ +\xf8\xf8\xf8\xf2\xf1\xf5\xee\xeb\xf2\xea\xe8\xf1\xe2\xe0\xea\xcd\ +\xd0\xdc\xc2\xca\xdb\xba\xc7\xdb\xc4\xd0\xe0\xd2\xd8\xe3\xdb\xdc\ +\xe5\xe8\xe9\xed\xf4\xf4\xf5\xf5\xf4\xf4\xe8\xe8\xec\xe5\xe5\xeb\ +\xe3\xe2\xe8\xe6\xe5\xea\xe7\xe5\xeb\xe8\xe6\xeb\xea\xe8\xed\xea\ +\xe8\xef\xe3\xe4\xed\xc5\xd0\xe2\xda\xdd\xe8\xe2\xe0\xe7\xeb\xe8\ +\xed\xef\xeb\xf0\xf1\xef\xf1\xf3\xf3\xf4\xf7\xf7\xf6\xf8\xf8\xf8\ +\xf9\xf9\xf9\xf8\xf8\xf8\xf7\xf7\xf7\xf9\xf9\xf9\xf9\xf9\xf9\xf9\ +\xf9\xf9\xfc\xfc\xfc\xfc\xfd\xfc\xff\xff\xff\xec\xea\xe9\x95\xa5\ +\xa7\x5b\x7e\x86\x40\x6d\x73\x29\x5c\x62\x23\x58\x62\x2a\x5c\x6c\ +\x30\x62\x72\x2b\x5f\x70\x37\x64\x7a\x3e\x69\x7f\x43\x6c\x83\x42\ +\x69\x81\x45\x6a\x84\x44\x69\x82\x3b\x5e\x77\x60\x70\x88\x98\x9a\ +\xaa\x69\x6f\x82\x33\x3d\x58\x25\x32\x4f\x24\x33\x50\x25\x36\x53\ +\x29\x38\x54\x38\x42\x5d\x59\x5e\x78\x47\x4b\x62\x28\x2e\x4b\x42\ +\x48\x6a\x6a\x6d\x89\x85\x88\x9f\x8d\x92\xa5\x88\x8e\xa1\x89\x8f\ +\xa1\x5f\x65\x7c\x37\x3d\x59\x2b\x32\x4f\x00\x00\x00\xe3\xdb\xe2\ +\xe2\xda\xe1\xe1\xd9\xdf\xe0\xd8\xde\xde\xd6\xdd\xde\xd6\xdd\xde\ +\xd6\xdd\xdd\xd5\xdc\xdd\xd5\xdc\xdd\xd6\xdc\xdc\xd5\xda\xdc\xd5\ +\xda\xde\xd6\xdb\xdd\xd7\xdc\xdd\xd6\xdd\xde\xd8\xde\xdf\xd8\xe0\ +\xe1\xdb\xe1\xe1\xdb\xe1\xe1\xda\xe1\xdf\xd8\xdf\xde\xd7\xde\xde\ +\xd7\xde\xdb\xd4\xdb\xd5\xce\xd4\xcf\xc7\xcd\xcd\xc5\xcc\xcb\xc4\ +\xcb\xc7\xc1\xc8\xc1\xb9\xc0\xbd\xb4\xbe\xbd\xb3\xbd\xbb\xb3\xbd\ +\xb9\xb1\xbb\xb9\xb0\xbb\xb7\xaf\xb9\xb6\xad\xb7\xb3\xaa\xb6\xb5\ +\xac\xb6\xb5\xac\xb6\xb5\xac\xb6\xb5\xac\xb6\xb6\xac\xb7\xb2\xab\ +\xb6\xb3\xab\xb6\xb2\xaa\xb6\xaa\xa7\xb7\x6f\x91\xb4\x99\xa3\xb8\ +\x80\x93\xae\x8e\x99\xaf\xa6\xa9\xb7\xa1\xa4\xb4\xcd\xc9\xd1\xd9\ +\xd6\xdd\xd8\xd6\xdc\xda\xd8\xde\xd4\xd2\xd9\xd2\xcf\xd6\xcd\xca\ +\xd3\xcb\xc8\xd0\xc7\xc4\xcd\xc9\xc5\xcf\xc8\xc4\xce\xc5\xc1\xca\ +\xc1\xbe\xc8\xbe\xbb\xc4\xc2\xbf\xc8\xc6\xc2\xcb\xc8\xc5\xcd\xce\ +\xca\xd2\xd1\xce\xd6\xd6\xd3\xdb\xe3\xe0\xe6\xee\xed\xef\xf4\xf4\ +\xf4\xf6\xf6\xf5\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf5\xf5\xf5\ +\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf8\xf9\xf8\xf9\xf6\ +\xf6\xf8\xf9\xf9\xfa\xf0\xef\xf3\xe3\xe3\xeb\xef\xef\xf4\xf9\xfa\ +\xf9\xf8\xf7\xf8\xf9\xf9\xf8\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\ +\xf6\xf6\xf6\xf3\xf2\xf3\xeb\xe9\xef\xe7\xe5\xeb\xe6\xe4\xea\xe7\ +\xe6\xeb\xea\xe8\xed\xec\xe9\xee\xec\xea\xef\xee\xed\xf1\xf1\xf0\ +\xf2\xe0\xe2\xed\xed\xed\xf1\xed\xeb\xf1\xeb\xe7\xee\xef\xeb\xf0\ +\xf1\xee\xf1\xf3\xf3\xf3\xf5\xf5\xf5\xf5\xf5\xf5\xf8\xf8\xf8\xf7\ +\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\ +\xfc\xfd\xfd\xfd\xd2\xd4\xd8\x77\x9c\xa6\x62\x8f\x98\x5a\x87\x8f\ +\x50\x7a\x83\x3f\x6b\x79\x32\x5d\x74\x33\x62\x78\x38\x68\x7d\x37\ +\x68\x7c\x39\x68\x7c\x3d\x6a\x7e\x3d\x6a\x7e\x3a\x65\x7b\x3f\x66\ +\x7e\x43\x65\x7f\x38\x59\x74\x39\x4e\x6c\x71\x75\x8a\x74\x75\x89\ +\x2c\x31\x4d\x1e\x23\x3f\x23\x2d\x48\x24\x31\x4e\x24\x2f\x4a\x2c\ +\x35\x4c\x35\x3c\x53\x3b\x40\x55\x24\x29\x40\x1d\x20\x3c\x27\x2b\ +\x4e\x48\x4c\x6d\x6e\x72\x8d\x82\x88\x9b\x6f\x73\x87\x31\x35\x53\ +\x21\x28\x4a\x23\x2a\x4b\x00\x00\x00\xe5\xde\xe4\xe4\xdc\xe2\xe2\ +\xdb\xe0\xe1\xda\xdf\xe0\xd9\xde\xdf\xd8\xde\xdf\xd7\xde\xdf\xd7\ +\xdd\xdf\xd7\xdd\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xdf\xd8\xdd\ +\xde\xd7\xdd\xdd\xd7\xdd\xde\xd7\xde\xdf\xd8\xdf\xe1\xda\xe1\xe2\ +\xdb\xe2\xe1\xda\xe1\xe0\xd9\xdf\xdc\xd4\xdb\xd6\xce\xd5\xd3\xcb\ +\xd1\xd1\xcb\xd0\xd0\xc9\xd0\xce\xc8\xce\xcc\xc5\xcc\xc8\xc1\xc8\ +\xc1\xba\xc1\xbe\xb5\xbf\xbe\xb4\xbe\xbc\xb3\xbd\xbb\xb2\xbc\xba\ +\xb2\xbc\xba\xb1\xbb\xb8\xaf\xb9\xb6\xad\xb7\xb6\xac\xb7\xb5\xac\ +\xb6\xb5\xac\xb6\xb5\xac\xb6\xae\xa8\xb6\x77\x8b\xa7\xa5\xa3\xb3\ +\xb4\xae\xb8\xb3\xad\xb9\xb6\xae\xba\xb4\xaf\xba\x75\x90\xaf\x81\ +\x92\xad\xa4\xa5\xb3\x9b\x9e\xaf\xbe\xba\xc5\xdb\xd7\xdd\xd9\xd7\ +\xdc\xd8\xd5\xdd\xd2\xcf\xd7\xd3\xd0\xd8\xd3\xd0\xd8\xd4\xd1\xd8\ +\xd1\xce\xd7\xd2\xcf\xd7\xd3\xd0\xd7\xd2\xce\xd5\xce\xca\xd0\xce\ +\xca\xd0\xd3\xd0\xd7\xd9\xd5\xdb\xdc\xd8\xde\xe2\xdf\xe4\xe8\xe5\ +\xea\xec\xe9\xed\xef\xed\xf1\xf1\xf1\xf2\xf4\xf4\xf4\xf4\xf4\xf4\ +\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf9\ +\xf9\xf9\xf8\xf8\xf8\xfb\xfb\xfb\xfe\xfe\xfe\xff\xff\xff\xff\xff\ +\xff\xfc\xfc\xfd\xfe\xfe\xfd\xfc\xfc\xfc\xfa\xfa\xfa\xfa\xfa\xfa\ +\xfa\xfa\xfa\xfa\xfa\xfa\xf9\xf9\xf9\xf9\xf9\xf9\xf6\xf6\xf6\xf0\ +\xee\xf2\xec\xeb\xf0\xe5\xe3\xe9\xe6\xe5\xea\xeb\xe9\xee\xee\xea\ +\xef\xee\xec\xf0\xef\xec\xf1\xf1\xef\xf2\xf1\xf0\xf2\xf2\xf0\xf2\ +\xf3\xf2\xf3\xf3\xf3\xf4\xf0\xee\xf2\xf2\xf0\xf2\xf5\xf5\xf5\xf5\ +\xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf5\xf5\xf5\xf7\xf7\xf7\xf7\xf7\ +\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xfe\xfe\xfe\xf6\xf4\xf4\xca\xc8\xcf\ +\x8e\x9a\xaf\x7e\xa0\xaf\x71\xa0\xab\x64\x97\xa0\x53\x85\x8e\x39\ +\x65\x79\x31\x5b\x7c\x36\x61\x80\x35\x65\x7d\x34\x66\x7b\x30\x64\ +\x76\x2f\x65\x75\x33\x66\x76\x31\x62\x75\x2f\x5c\x73\x35\x5a\x73\ +\x30\x50\x6c\x2a\x40\x5f\x2a\x35\x52\x3c\x40\x5a\x24\x2a\x47\x1a\ +\x1f\x3b\x1c\x20\x3b\x23\x2b\x44\x1e\x24\x3c\x26\x2c\x42\x2a\x31\ +\x44\x27\x2d\x41\x23\x27\x39\x1a\x18\x2c\x18\x18\x31\x15\x1d\x40\ +\x28\x32\x58\x48\x53\x72\x31\x3a\x5b\x1e\x29\x4c\x22\x2d\x50\x28\ +\x33\x54\x00\x00\x00\xe6\xdf\xe6\xe5\xde\xe4\xe5\xdd\xe3\xe2\xdb\ +\xe0\xe1\xda\xdf\xe0\xd9\xde\xe0\xd9\xde\xe0\xd9\xde\xe0\xd9\xdd\ +\xdf\xd7\xdd\xdf\xd8\xde\xdf\xd8\xde\xdf\xd8\xdf\xdf\xd8\xde\xdf\ +\xd8\xdf\xdf\xd8\xdf\xdf\xda\xe0\xe1\xdb\xe2\xe2\xdc\xe3\xe1\xdb\ +\xe2\xdc\xd6\xdb\xd7\xd0\xd5\xd5\xce\xd3\xd5\xcf\xd4\xd3\xcd\xd2\ +\xd0\xca\xd0\xcf\xc9\xcf\xcd\xc6\xcd\xc6\xbf\xc6\xc0\xb9\xc0\xbe\ +\xb6\xbf\xbe\xb5\xbe\xbc\xb4\xbd\xba\xb1\xbb\xb9\xb0\xba\xb8\xaf\ +\xb9\xb9\xb0\xba\xb9\xb0\xba\xb8\xaf\xb9\xb8\xb0\xba\xb9\xaf\xba\ +\xb8\xaf\xba\xaf\xab\xba\x5e\x84\xaa\xa5\xa6\xb7\xb4\xaf\xbb\xb2\ +\xaf\xbb\xaf\xac\xb8\xaa\xa9\xb6\xa3\xa4\xb5\xa1\xa1\xb3\x9d\x9e\ +\xb0\x98\x9a\xac\x99\x9a\xac\xb8\xb4\xc0\xd6\xd3\xd9\xd5\xd3\xd9\ +\xd5\xd1\xd9\xd4\xd0\xd8\xd5\xd1\xd9\xd5\xd1\xd9\xd6\xd2\xd9\xd5\ +\xd1\xd7\xd7\xd4\xda\xd5\xd3\xd9\xd8\xd5\xda\xdd\xdc\xe1\xe1\xde\ +\xe4\xe5\xe2\xe7\xeb\xe8\xed\xec\xe8\xed\xee\xec\xf0\xef\xee\xf0\ +\xef\xef\xf1\xf2\xf2\xf3\xf3\xf3\xf3\xf5\xf5\xf5\xf5\xf5\xf5\xf6\ +\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfc\xfc\ +\xfc\xfd\xfd\xfd\xfe\xfe\xfe\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfd\ +\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfa\ +\xfa\xfa\xf9\xf9\xf9\xf8\xf8\xf8\xf6\xf6\xf6\xf2\xf1\xf3\xec\xeb\ +\xef\xe7\xe5\xeb\xea\xe9\xed\xf0\xed\xf0\xf0\xec\xf1\xf1\xf1\xf2\ +\xf1\xf0\xf1\xf0\xee\xf1\xf2\xf2\xf2\xf3\xf2\xf3\xf5\xf5\xf5\xf5\ +\xf5\xf5\xf2\xf1\xf2\xd3\xcd\xd2\xe0\xda\xdc\xf6\xf3\xf3\xf9\xf8\ +\xf8\xf5\xf6\xf5\xf4\xf4\xf4\xf3\xf2\xf3\xf5\xf5\xf5\xf8\xf9\xf9\ +\xff\xff\xff\xe9\xe3\xe5\xa7\xa4\xb7\x86\x89\xa4\x72\x82\x9b\x67\ +\x82\x93\x6a\x8d\x9c\x63\x93\x9d\x62\x96\x9e\x45\x6f\x8a\x39\x61\ +\x87\x34\x60\x82\x2d\x60\x79\x2b\x61\x76\x29\x61\x74\x2a\x62\x74\ +\x2e\x64\x75\x2f\x62\x75\x2f\x5e\x73\x29\x4e\x68\x20\x3c\x5c\x20\ +\x31\x52\x21\x2a\x49\x20\x26\x44\x1d\x24\x40\x17\x1c\x36\x17\x1b\ +\x34\x1b\x1e\x34\x1a\x1d\x31\x20\x25\x38\x21\x26\x38\x1c\x20\x31\ +\x1b\x1b\x2c\x1a\x18\x2a\x17\x15\x2a\x13\x16\x31\x14\x1f\x43\x25\ +\x37\x59\x25\x37\x57\x24\x34\x58\x26\x35\x58\x20\x32\x51\x00\x00\ +\x00\xe6\xdf\xe6\xe5\xde\xe5\xe5\xde\xe3\xe3\xdc\xe1\xe2\xdb\xe0\ +\xe1\xda\xdf\xe0\xd9\xde\xe0\xd9\xde\xe1\xda\xde\xe0\xd8\xde\xe0\ +\xd8\xdf\xdf\xd9\xe0\xdf\xd8\xdf\xe0\xda\xe1\xdf\xd9\xe0\xdf\xda\ +\xe0\xe0\xdc\xe2\xe0\xdd\xe3\xe1\xdb\xe2\xdc\xd6\xdb\xd9\xd3\xd8\ +\xd9\xd3\xd8\xd7\xd1\xd6\xd6\xd0\xd5\xd4\xce\xd3\xd2\xcc\xd1\xd0\ +\xca\xcf\xcd\xc6\xcd\xc7\xc0\xc7\xc2\xba\xc1\xbf\xb7\xbe\xbf\xb6\ +\xbe\xbd\xb4\xbd\xbc\xb3\xbd\xba\xb1\xbb\xba\xb1\xbb\xb9\xb0\xba\ +\xb9\xb1\xbb\xb9\xb1\xbb\xba\xb2\xbc\xbb\xb3\xbd\xbc\xb4\xbe\xb2\ +\xaf\xbd\x3c\x73\x9c\x8f\x9c\xb2\xb5\xb0\xbc\xb3\xaf\xbb\xaf\xac\ +\xb8\xab\xa9\xb7\xa8\xa7\xb5\xa6\xa5\xb3\xa4\xa2\xb1\xa4\xa1\xb0\ +\xa5\xa0\xb1\xa5\xa0\xb0\xa7\xa0\xb0\xd5\xcf\xd6\xd8\xd5\xdb\xd7\ +\xd2\xdb\xd8\xd5\xdc\xd9\xd6\xdf\xd9\xd5\xdc\xdc\xd8\xde\xdb\xd9\ +\xdf\xdd\xda\xe0\xe1\xde\xe3\xe7\xe4\xe9\xe8\xe5\xea\xe9\xe6\xea\ +\xec\xe9\xed\xef\xed\xf0\xef\xec\xf0\xf0\xef\xf1\xf2\xf2\xf1\xf2\ +\xf2\xf2\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf4\xf6\xf6\xf6\xf5\xf5\ +\xf5\xf6\xf6\xf6\xf8\xf8\xf8\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\ +\xfd\xfd\xfd\xfd\xfd\xfd\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfc\ +\xfc\xfc\xfb\xfb\xfb\xfa\xfa\xfa\xfb\xfb\xfb\xfa\xfa\xfa\xfa\xfa\ +\xfa\xf7\xf7\xf7\xf6\xf6\xf6\xf2\xf2\xf3\xec\xea\xee\xeb\xe9\xee\ +\xef\xed\xf1\xf1\xf0\xf2\xf1\xf0\xf1\xf3\xf3\xf3\xf4\xf4\xf4\xf3\ +\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf4\xf4\xf4\xf7\xf7\xf7\xf9\xf8\ +\xf8\x94\x9f\xa4\x85\x94\x9b\x9a\xa2\xa7\xc5\xc4\xc6\xee\xea\xeb\ +\xf5\xf4\xf4\xf6\xf6\xf6\xf9\xf9\xf9\xf8\xf7\xf7\xc7\xc3\xcb\x8e\ +\x8f\xa9\x7c\x85\xa1\x77\x84\x9e\x5d\x79\x8d\x45\x70\x7d\x46\x75\ +\x7f\x49\x79\x84\x52\x80\x8c\x54\x78\x98\x50\x72\x9c\x43\x6d\x90\ +\x36\x67\x82\x2f\x63\x7a\x2d\x63\x78\x2a\x62\x75\x31\x65\x78\x32\ +\x63\x77\x31\x5d\x74\x27\x4a\x64\x1b\x32\x53\x1b\x2a\x4b\x1d\x25\ +\x46\x1d\x24\x42\x1c\x22\x3e\x15\x1a\x33\x20\x25\x3a\x1a\x1d\x31\ +\x17\x18\x2a\x18\x19\x2a\x1a\x1d\x2b\x17\x18\x27\x12\x12\x21\x14\ +\x14\x23\x16\x15\x29\x15\x16\x30\x16\x1d\x3d\x1c\x2c\x4a\x1e\x35\ +\x50\x21\x35\x55\x1b\x30\x4c\x15\x2b\x43\x00\x00\x00\xe6\xdf\xe6\ +\xe6\xde\xe5\xe5\xde\xe3\xe3\xdc\xe1\xe2\xdb\xe0\xe1\xda\xdf\xe1\ +\xda\xdf\xe1\xda\xdf\xe1\xda\xdf\xe1\xd9\xdf\xe0\xd9\xe0\xe1\xda\ +\xe1\xe1\xda\xe1\xe0\xdb\xe2\xe1\xdc\xe3\xe1\xdc\xe3\xe1\xdd\xe3\ +\xe1\xdc\xe2\xd8\xd1\xd7\xd5\xcf\xd4\xd9\xd2\xd7\xd8\xd2\xd7\xd7\ +\xd1\xd6\xd8\xd2\xd7\xd5\xcf\xd4\xd3\xcd\xd2\xd0\xca\xcf\xcd\xc6\ +\xcd\xc9\xc3\xca\xc5\xbe\xc5\xc2\xba\xc1\xbf\xb7\xbf\xbf\xb6\xbe\ +\xbf\xb7\xbe\xbe\xb6\xbe\xbe\xb5\xbf\xbe\xb5\xbf\xbd\xb5\xbf\xbd\ +\xb5\xc0\xbc\xb6\xbf\xbb\xb4\xbf\xba\xb4\xbe\xb2\xb0\xbd\x75\x90\ +\xad\xa9\xa9\xb9\xb5\xaf\xbb\xb2\xac\xb9\xb0\xab\xb7\xae\xaa\xb6\ +\xac\xa7\xb4\xab\xa5\xb3\xaa\xa4\xb2\xaa\xa4\xb3\xa9\xa3\xb1\xa6\ +\xa0\xb1\x93\x8d\xa4\xa8\xa0\xb3\xce\xc7\xd1\xd9\xd5\xdc\xdf\xdc\ +\xe2\xde\xdc\xe2\xdf\xdb\xe1\xdc\xd9\xdf\xdf\xdb\xe1\xdf\xdb\xe1\ +\xe1\xdd\xe2\xe4\xe0\xe6\xe6\xe2\xe7\xe6\xe3\xe8\xe9\xe6\xeb\xee\ +\xea\xef\xef\xec\xef\xf0\xed\xf0\xf1\xef\xf1\xf1\xf0\xf1\xf0\xef\ +\xf0\xf3\xf3\xf3\xf5\xf4\xf5\xf3\xf3\xf3\xf4\xf4\xf4\xf7\xf7\xf7\ +\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\ +\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\ +\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xf8\xf8\xf8\ +\xf7\xf7\xf7\xf2\xf0\xf2\xee\xeb\xef\xed\xed\xf0\xf1\xf1\xf2\xf4\ +\xf4\xf4\xf2\xf2\xf3\xf5\xf5\xf5\xf6\xf6\xf6\xf7\xf7\xf7\xf4\xf4\ +\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\xf1\xef\xf0\x63\x89\x90\ +\x43\x7a\x82\x43\x7b\x83\x48\x7c\x84\x55\x83\x88\x8a\xa3\xa5\xa8\ +\xb8\xb7\xa0\xb1\xb1\x76\x8b\x95\x5b\x79\x8d\x5e\x7b\x90\x63\x7f\ +\x94\x60\x7f\x91\x4d\x78\x86\x47\x75\x81\x3c\x72\x7c\x36\x6d\x78\ +\x37\x6b\x78\x50\x76\x96\x5e\x79\xa5\x58\x79\x9f\x4b\x74\x95\x40\ +\x6e\x8c\x39\x6b\x83\x30\x67\x7c\x31\x64\x79\x33\x62\x78\x33\x5d\ +\x74\x26\x48\x62\x16\x2e\x4e\x15\x27\x48\x16\x22\x43\x19\x21\x41\ +\x18\x1f\x3c\x16\x1a\x33\x23\x27\x3b\x24\x27\x39\x1b\x1c\x2c\x10\ +\x10\x1e\x12\x13\x1f\x14\x15\x23\x14\x14\x24\x16\x16\x26\x15\x15\ +\x26\x14\x15\x2c\x2e\x34\x4e\x39\x40\x54\x1c\x2e\x41\x18\x30\x43\ +\x16\x2a\x3e\x15\x1f\x35\x00\x00\x00\xe7\xe0\xe7\xe5\xde\xe5\xe5\ +\xdd\xe3\xe4\xdd\xe2\xe3\xdb\xe2\xe2\xdb\xe1\xe2\xdb\xdf\xe2\xdb\ +\xe0\xe1\xda\xdf\xe0\xd8\xdf\xe1\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\ +\xe1\xdd\xe3\xe1\xde\xe4\xe2\xde\xe4\xe3\xde\xe6\xdb\xd6\xdd\xd0\ +\xc9\xcf\xd3\xcd\xd2\xd8\xd2\xd7\xdb\xd5\xda\xda\xd4\xd9\xd9\xd3\ +\xd8\xd6\xd0\xd5\xd2\xcc\xd1\xd0\xca\xcf\xce\xc7\xcd\xcb\xc4\xcb\ +\xc8\xc1\xc8\xc4\xbc\xc3\xc1\xb8\xc0\xbf\xb6\xc0\xbe\xb7\xbe\xbe\ +\xb6\xbf\xbe\xb6\xbf\xbe\xb7\xc0\xc2\xbc\xc5\xc2\xbd\xc6\xbb\xb6\ +\xbf\xb8\xb2\xbd\xb7\xb0\xbc\xb7\xb1\xbc\xb7\xb1\xbb\xb5\xae\xb9\ +\xb4\xac\xb8\xb2\xa9\xb6\xb1\xa9\xb6\xb0\xa7\xb4\xae\xa6\xb3\xad\ +\xa6\xb3\xac\xa5\xb3\xac\xa5\xb2\xab\xa4\xb3\xa1\x9c\xae\x7d\x7a\ +\x9a\x88\x82\xa0\xd2\xcc\xd6\xce\xc8\xd2\xd0\xca\xd4\xd5\xd0\xd8\ +\xdb\xd7\xde\xdf\xdc\xe2\xdf\xdc\xe2\xdb\xd8\xde\xdf\xdc\xe1\xe1\ +\xdd\xe3\xe5\xe1\xe7\xea\xe7\xec\xed\xeb\xef\xee\xed\xf0\xef\xee\ +\xf0\xf0\xed\xf0\xf0\xed\xf0\xf0\xed\xf0\xf1\xef\xf1\xf1\xf1\xf2\ +\xf1\xef\xf1\xf4\xf3\xf4\xf5\xf4\xf5\xf7\xf6\xf7\xfb\xfb\xfb\xfb\ +\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xfb\xfb\ +\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ +\xfb\xfb\xfb\xfb\xfb\xfb\xf9\xf9\xf9\xfa\xfa\xfa\xf7\xf7\xf7\xf1\ +\xef\xf1\xf2\xf0\xf2\xf1\xf1\xf2\xf3\xf3\xf3\xf5\xf5\xf5\xf4\xf4\ +\xf4\xf6\xf6\xf6\xf7\xf7\xf7\xf9\xf9\xf9\xf8\xf8\xf8\xf9\xf9\xf9\ +\xfa\xfa\xfa\xfa\xfa\xfa\xe7\xe6\xe9\x94\xa3\xb1\x82\x9c\xab\x7e\ +\x9c\xab\x77\x9a\xa8\x6b\x96\xa2\x5d\x8d\x98\x41\x74\x82\x37\x6d\ +\x7b\x3e\x71\x80\x3c\x6e\x7d\x3b\x70\x7c\x3d\x74\x7e\x3c\x76\x7e\ +\x39\x75\x7d\x37\x75\x7d\x36\x76\x7d\x37\x76\x7f\x3b\x76\x81\x4a\ +\x79\x90\x5e\x7d\xa1\x5c\x79\x9f\x63\x80\xa2\x59\x7d\x9d\x4b\x77\ +\x92\x3e\x6e\x85\x37\x67\x7d\x35\x60\x77\x2f\x53\x6e\x20\x3f\x5d\ +\x15\x2f\x4e\x13\x28\x48\x17\x25\x46\x1b\x26\x44\x19\x20\x3d\x15\ +\x18\x31\x17\x16\x29\x1c\x1c\x2c\x1d\x1e\x2c\x13\x14\x22\x10\x10\ +\x1d\x13\x14\x22\x1b\x1d\x2e\x1b\x1d\x2d\x15\x16\x26\x12\x14\x25\ +\x1c\x21\x37\x1f\x23\x35\x1a\x22\x32\x18\x23\x34\x16\x1e\x31\x17\ +\x19\x30\x00\x00\x00\xe6\xdf\xe6\xe5\xde\xe5\xe4\xde\xe4\xe5\xdc\ +\xe3\xe3\xdb\xe2\xe2\xdb\xe2\xe2\xda\xe0\xe1\xd9\xdf\xe0\xd9\xe0\ +\xdf\xd8\xdf\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdd\xe3\xe3\xdf\xe5\xe2\ +\xde\xe4\xe2\xdf\xe5\xe3\xde\xe8\xdb\xd5\xdc\xd9\xd2\xd8\xdf\xd9\ +\xde\xdf\xd9\xde\xdb\xd5\xda\xda\xd4\xd9\xd7\xd1\xd6\xd4\xce\xd3\ +\xd1\xcb\xd0\xcf\xc8\xcf\xcc\xc6\xcc\xcb\xc4\xcb\xc9\xc2\xc9\xc7\ +\xbf\xc6\xc4\xbc\xc3\xc2\xba\xc1\xc0\xb9\xc1\xc0\xb8\xc2\xc2\xbb\ +\xc5\xc8\xc3\xcb\xca\xc6\xcd\xc0\xbb\xc3\xba\xb3\xbe\xb8\xb1\xbb\ +\xb7\xb0\xbb\xb6\xae\xb9\xb4\xac\xb7\xb4\xac\xb7\xb4\xac\xb7\xb3\ +\xaa\xb7\xb1\xa8\xb5\xb0\xa7\xb4\xb0\xa7\xb4\xb0\xa7\xb4\xad\xa6\ +\xb3\xad\xa6\xb2\xaa\xa3\xb2\x94\x8f\xa7\x7f\x7e\x9d\xa0\x9d\xb0\ +\xd9\xd3\xdb\xe0\xdb\xe2\xd6\xd2\xdb\xce\xc9\xd4\xd1\xcc\xd6\xd2\ +\xcb\xd3\xd1\xca\xd0\xdf\xda\xde\xe8\xe5\xea\xe9\xe5\xea\xec\xeb\ +\xef\xed\xea\xf0\xef\xed\xf0\xf1\xf0\xf2\xf0\xed\xf1\xf0\xee\xf1\ +\xef\xec\xf1\xef\xeb\xf0\xf1\xf1\xf2\xf0\xee\xf0\xf2\xf1\xf2\xf7\ +\xf8\xf8\xf1\xf0\xf3\xf7\xf7\xf7\xfb\xfb\xfb\xfb\xfb\xfb\xfb\xfb\ +\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xfa\xfa\xfa\xfc\xfc\xfc\xfd\xfd\xfd\ +\xfd\xfd\xfd\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfb\ +\xfb\xfb\xfa\xfa\xfa\xfb\xfb\xfb\xf6\xf6\xf6\xf3\xf3\xf3\xf3\xf3\ +\xf3\xf3\xf3\xf3\xf6\xf6\xf6\xf7\xf7\xf7\xf6\xf6\xf6\xf8\xf8\xf8\ +\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ +\xfc\xfc\xda\xd6\xdd\xa9\xa6\xb6\xa4\xa4\xb3\xa2\xa3\xb3\x9b\x9f\ +\xae\x89\x95\xa7\x73\x8a\x9f\x55\x79\x8f\x40\x70\x83\x44\x74\x84\ +\x3f\x72\x80\x3b\x72\x7c\x3c\x76\x7f\x38\x77\x7e\x39\x79\x7f\x42\ +\x82\x87\x51\x8c\x92\x5b\x92\x98\x61\x91\x9b\x5e\x89\x9a\x68\x8b\ +\xa1\x66\x83\xa1\x5f\x7b\x9d\x5b\x7b\x9b\x5f\x81\x9f\x4a\x74\x8d\ +\x34\x62\x79\x29\x50\x6b\x1b\x3d\x5d\x15\x35\x57\x14\x31\x51\x12\ +\x29\x49\x16\x27\x47\x17\x22\x41\x17\x1d\x39\x15\x17\x2e\x15\x13\ +\x26\x15\x12\x21\x13\x12\x21\x16\x16\x25\x18\x18\x28\x16\x16\x27\ +\x18\x1a\x2c\x18\x19\x2c\x12\x14\x24\x10\x10\x1f\x12\x14\x25\x15\ +\x15\x27\x17\x18\x28\x16\x17\x28\x1a\x1d\x31\x20\x22\x38\x00\x00\ +\x00\xe6\xdf\xe6\xe5\xde\xe5\xe5\xde\xe5\xe3\xdc\xe3\xe3\xdc\xe3\ +\xe2\xdb\xe2\xe0\xda\xe1\xe0\xd8\xdf\xdf\xd7\xde\xdf\xd8\xdf\xe1\ +\xda\xe1\xe2\xdc\xe3\xe2\xdd\xe3\xe1\xdd\xe3\xe2\xdf\xe4\xe3\xde\ +\xe6\xe3\xdf\xe6\xe0\xda\xdf\xe1\xdd\xe2\xe0\xdc\xe1\xde\xd8\xdd\ +\xdc\xd6\xdb\xd9\xd3\xd8\xd5\xcf\xd4\xd2\xcc\xd1\xd0\xc9\xce\xce\ +\xc7\xcd\xcb\xc4\xcb\xca\xc3\xca\xc9\xc2\xc9\xc9\xc1\xc8\xc8\xc1\ +\xc8\xc6\xc0\xc7\xc6\xc2\xc8\xc7\xc3\xc9\xca\xc6\xcc\xcb\xc7\xce\ +\xc6\xc0\xc9\xbd\xb5\xbf\xba\xb1\xbb\xb7\xaf\xba\xb7\xaf\xb8\xb4\ +\xac\xb7\xb4\xac\xb7\xb4\xac\xb7\xb3\xab\xb6\xb1\xa8\xb4\xb1\xa8\ +\xb5\xb1\xa8\xb5\xb2\xa9\xb6\xb1\xa9\xb5\xaf\xa7\xb4\xad\xa6\xb4\ +\xa6\xa0\xb1\x94\x8f\xa8\xa5\xa3\xb4\xae\xab\xb9\xc9\xc3\xce\xe6\ +\xe2\xe8\xe5\xe1\xe7\xdf\xdc\xe2\xdc\xda\xe2\xc2\xba\xc5\xaf\xa5\ +\xb2\xac\xa4\xb3\xb3\xa9\xb6\xb7\xad\xb8\xb9\xb0\xbb\xbf\xb7\xc1\ +\xc2\xba\xc3\xcb\xc6\xce\xd3\xcd\xd2\xd3\xce\xd3\xde\xda\xe0\xe3\ +\xe0\xe4\xe2\xde\xe1\xe0\xde\xdf\xdb\xd6\xd8\xc8\xbf\xc4\xed\xeb\ +\xee\xf8\xf8\xf8\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfa\xfa\xfa\ +\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfa\ +\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfb\xfb\xfb\xfa\xfa\xfa\xfc\xfc\ +\xfc\xfa\xfa\xfa\xf6\xf6\xf6\xf4\xf4\xf4\xf6\xf6\xf6\xf5\xf5\xf5\ +\xf7\xf7\xf7\xf9\xf9\xf9\xf8\xf8\xf8\xfb\xfb\xfb\xfd\xfd\xfd\xfd\ +\xfd\xfd\xfd\xfd\xfd\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfa\xfb\xce\xc8\ +\xd1\xad\xa8\xb8\xa7\xa5\xb6\x9b\x9b\xaf\x85\x8c\xa4\x68\x7a\x97\ +\x55\x70\x8f\x60\x7b\x98\x67\x86\x9e\x58\x7f\x94\x4e\x7c\x8d\x4b\ +\x7f\x8c\x4a\x81\x8c\x4c\x84\x8e\x5a\x90\x9a\x68\x99\xa1\x69\x98\ +\xa1\x61\x91\x9a\x5b\x89\x96\x5c\x86\x97\x60\x86\x99\x64\x85\x9b\ +\x68\x86\x9e\x5f\x7d\x9a\x5c\x7c\x9b\x4a\x6e\x88\x26\x52\x6a\x16\ +\x3a\x5c\x11\x33\x58\x16\x34\x59\x1b\x38\x5a\x17\x32\x51\x15\x29\ +\x48\x14\x1b\x37\x13\x14\x2c\x12\x11\x25\x16\x15\x27\x13\x12\x22\ +\x12\x10\x20\x15\x15\x24\x19\x19\x29\x17\x16\x27\x19\x1c\x31\x1c\ +\x21\x36\x16\x19\x2d\x11\x13\x26\x12\x15\x27\x18\x1a\x2b\x19\x1a\ +\x2a\x18\x18\x29\x1e\x22\x37\x25\x28\x3f\x00\x00\x00\xe7\xe0\xe7\ +\xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe0\ +\xd9\xe0\xdf\xd8\xde\xde\xd7\xde\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xdb\ +\xe1\xe2\xdd\xe3\xe2\xde\xe4\xe2\xdd\xe4\xe3\xdf\xe5\xe2\xdd\xe3\ +\xe1\xdc\xe1\xe2\xde\xe3\xe0\xdc\xe1\xdd\xd9\xde\xdc\xd7\xdc\xda\ +\xd4\xd9\xd6\xd0\xd5\xd3\xcd\xd2\xd0\xca\xcf\xcf\xc9\xce\xcd\xc6\ +\xcd\xcc\xc5\xcc\xcb\xc4\xcb\xcb\xc4\xcb\xc9\xc4\xca\xc9\xc5\xcb\ +\xc9\xc5\xcb\xc9\xc6\xcb\xca\xc5\xcc\xc9\xc4\xcb\xc0\xb9\xc2\xba\ +\xb2\xbc\xb9\xb1\xbb\xb8\xaf\xb9\xb6\xae\xb8\xb6\xad\xb8\xb4\xac\ +\xb7\xb3\xab\xb6\xb2\xaa\xb6\xb3\xaa\xb6\xb3\xab\xb7\xb4\xab\xb7\ +\xb3\xab\xb7\xb2\xa9\xb5\xaf\xa7\xb5\xac\xa5\xb3\xa8\xa3\xb3\xb2\ +\xb0\xbf\xb9\xb7\xc5\xb9\xb5\xc2\xc2\xbd\xc9\xe5\xe0\xe6\xe6\xe2\ +\xe7\xe1\xdd\xe3\xd4\xcf\xd7\xb6\xad\xbb\xa9\xa1\xb1\xa8\xa1\xb1\ +\xa8\xa1\xb1\x9f\x9a\xab\x9c\x96\xaa\x9c\x99\xab\x9e\x9a\xac\x97\ +\x94\xa7\x71\x74\x8f\x5c\x60\x7b\x71\x6d\x85\x77\x70\x84\x6a\x62\ +\x76\x5d\x56\x69\x51\x4d\x64\x5b\x5a\x73\xe6\xe4\xe7\xf6\xf6\xf6\ +\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xfa\xfa\xfa\xfa\xfa\xfa\xfc\ +\xfc\xfc\xfa\xfa\xfa\xf9\xf9\xf9\xf9\xf9\xf9\xfb\xfb\xfb\xfc\xfc\ +\xfc\xfb\xfb\xfb\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xf9\xf9\xf9\ +\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xfb\ +\xfb\xfb\xfb\xfb\xfb\xfd\xfd\xfd\xfd\xfd\xfd\xfc\xfc\xfc\xfc\xfc\ +\xfc\xfd\xfd\xfd\xfc\xfc\xfc\xf4\xf3\xf4\xb6\xb2\xbe\xa7\xa4\xb4\ +\x95\x94\xab\x7c\x82\x9f\x66\x77\x96\x5a\x73\x93\x5e\x76\x96\x6c\ +\x7e\x9c\x78\x8c\xa6\x72\x8f\xa7\x68\x8e\xa3\x5e\x8b\x9e\x60\x8f\ +\x9e\x6e\x9a\xa7\x72\x9d\xa8\x5f\x90\x9c\x5c\x8d\x98\x55\x85\x90\ +\x54\x7d\x8e\x4f\x73\x8d\x4a\x6d\x8a\x4a\x6d\x8c\x4d\x72\x8f\x4f\ +\x73\x90\x4f\x73\x90\x45\x69\x84\x26\x4a\x69\x1a\x38\x5e\x17\x32\ +\x5b\x11\x2e\x56\x1b\x37\x5c\x1f\x3d\x5d\x1f\x33\x4f\x20\x27\x3f\ +\x1b\x1c\x32\x17\x17\x2a\x15\x15\x27\x12\x11\x22\x13\x11\x21\x15\ +\x14\x23\x15\x14\x23\x15\x17\x29\x23\x2b\x44\x25\x2e\x48\x1e\x24\ +\x3d\x15\x1a\x30\x12\x17\x29\x17\x1b\x2d\x1b\x1d\x30\x1d\x1f\x33\ +\x20\x26\x3b\x23\x28\x40\x00\x00\x00\xe7\xe0\xe7\xe4\xdd\xe4\xe3\ +\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe0\xd9\xe0\xdf\xd8\ +\xdf\xdf\xd8\xdf\xdf\xd7\xde\xdf\xd9\xe0\xe0\xda\xe1\xe0\xdc\xe1\ +\xe1\xdd\xe4\xe2\xdd\xe6\xe2\xde\xe4\xe1\xdd\xe3\xe3\xde\xe3\xe1\ +\xdd\xe2\xdf\xda\xdf\xdc\xd7\xdc\xd9\xd3\xd9\xd7\xd1\xd6\xd4\xce\ +\xd3\xd1\xcb\xd0\xd1\xca\xcf\xcf\xc9\xce\xcd\xc6\xcd\xcc\xc5\xcc\ +\xcb\xc4\xcb\xca\xc3\xca\xc9\xc3\xc9\xc8\xc4\xca\xc9\xc5\xcb\xc9\ +\xc4\xca\xca\xc3\xca\xc7\xbf\xc9\xbf\xb6\xbf\xb9\xb0\xbb\xb9\xb0\ +\xba\xb8\xaf\xb9\xb7\xae\xb8\xb6\xad\xb8\xb6\xad\xb8\xb5\xac\xb8\ +\xb6\xad\xb9\xb6\xae\xb9\xb6\xae\xb9\xb6\xae\xb9\xb4\xac\xb7\xb3\ +\xaa\xb6\xae\xa7\xb5\xac\xa7\xb5\xc0\xbe\xc9\xd4\xd2\xdb\xd4\xd2\ +\xd9\xd5\xd2\xda\xd6\xd4\xdb\xe4\xe0\xe6\xe2\xde\xe4\xdd\xd9\xe0\ +\xc5\xbd\xc8\xb2\xaa\xb7\xa5\x9d\xae\xa2\x9c\xad\x9e\x98\xab\x9f\ +\x99\xac\xa3\x9e\xaf\xa3\xa0\xb0\x96\x94\xa8\x6e\x74\x91\x62\x6a\ +\x88\x7d\x7c\x94\x75\x72\x88\x6b\x6a\x7f\x67\x67\x7c\x63\x65\x7c\ +\x60\x62\x7a\x55\x57\x71\xca\xc6\xcf\xef\xeb\xef\xf5\xf4\xf5\xf8\ +\xf8\xf8\xf7\xf7\xf7\xfa\xfa\xfa\xfb\xfb\xfb\xfa\xfa\xfa\xf7\xf7\ +\xf7\xf8\xf8\xf8\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfa\xfa\xfa\ +\xfd\xfd\xfd\xfd\xfd\xfd\xfa\xfa\xfa\xf8\xf8\xf8\xf7\xf7\xf7\xf9\ +\xf9\xf9\xf9\xf9\xf9\xf9\xf9\xf9\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\ +\xfd\xfd\xfd\xfd\xfd\xfd\xfd\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\ +\xff\xff\xff\xbe\xbb\xbd\x88\x8a\x9b\x8a\x8b\xa1\x7d\x81\x9e\x6a\ +\x76\x97\x68\x77\x99\x6b\x7c\x9c\x75\x81\xa0\x76\x82\x9e\x6e\x7c\ +\x9a\x69\x7e\x9a\x6b\x89\xa1\x6e\x91\xa6\x6e\x96\xa7\x77\x9f\xab\ +\x72\x9c\xa6\x65\x92\x9d\x61\x8e\x99\x55\x80\x8f\x52\x6d\x93\x53\ +\x64\x98\x50\x62\x97\x4c\x61\x93\x4b\x68\x91\x4d\x71\x90\x4b\x72\ +\x8e\x45\x69\x87\x32\x4f\x73\x26\x40\x67\x21\x36\x5f\x1b\x31\x5c\ +\x1e\x35\x5d\x25\x3b\x5e\x36\x40\x5b\x39\x3b\x4f\x2f\x2e\x42\x24\ +\x22\x35\x16\x15\x27\x15\x14\x24\x15\x14\x23\x14\x13\x22\x13\x14\ +\x23\x1c\x23\x39\x26\x30\x4b\x21\x29\x44\x1b\x22\x3b\x18\x1e\x37\ +\x15\x1b\x31\x17\x1c\x30\x1a\x1e\x32\x1b\x1f\x34\x25\x2a\x3f\x35\ +\x3b\x54\x00\x00\x00\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\ +\xe3\xe2\xdb\xe2\xe0\xd9\xe0\xdf\xd8\xe0\xdf\xd7\xdf\xde\xd7\xdf\ +\xdd\xd6\xdf\xde\xd7\xde\xdd\xd9\xdf\xde\xd9\xe2\xdf\xda\xe4\xe1\ +\xdc\xe5\xe0\xdc\xe3\xde\xda\xe0\xe0\xdc\xe1\xdc\xd9\xde\xd9\xd3\ +\xd9\xd7\xd0\xd7\xd5\xce\xd5\xd3\xcd\xd3\xd3\xcc\xd3\xd3\xcd\xd2\ +\xd2\xcc\xd1\xcf\xc8\xcf\xcd\xc6\xcd\xcb\xc4\xcb\xca\xc3\xca\xc8\ +\xc1\xc8\xc8\xc2\xc8\xc8\xc2\xc9\xc8\xc1\xc8\xc9\xc2\xc9\xc9\xc2\ +\xc9\xc5\xbd\xc5\xbd\xb4\xbe\xba\xb1\xbb\xbb\xb2\xbc\xba\xb1\xbb\ +\xba\xb1\xbb\xba\xb1\xbc\xb9\xb0\xbb\xba\xb1\xbb\xb9\xb1\xbb\xb8\ +\xaf\xbb\xb8\xb1\xbb\xb7\xaf\xba\xb5\xad\xb9\xb2\xa9\xb6\xb0\xa9\ +\xb7\xc1\xbe\xca\xd8\xd5\xdd\xd9\xd6\xdd\xdc\xd9\xe0\xde\xdc\xe2\ +\xe0\xdc\xe2\xe3\xdf\xe5\xe0\xdb\xe4\xdb\xd6\xdf\xc3\xbb\xc7\xb0\ +\xa8\xb7\xa3\x9c\xad\xa1\x9b\xac\xa2\x9c\xad\xa7\xa1\xb2\xa2\x9f\ +\xb0\x90\x8f\xa6\x6c\x73\x93\x68\x72\x91\x92\x90\xa6\xb8\xaf\xb9\ +\xb6\xaa\xb3\x8c\x84\x94\x6d\x68\x7d\x6b\x68\x7d\x6c\x6b\x7f\x68\ +\x68\x7e\xca\xc5\xcd\xe4\xe1\xe5\xf3\xf1\xf3\xf7\xf7\xf7\xfa\xfa\ +\xfa\xfb\xfb\xfb\xfa\xfa\xfa\xf9\xf9\xf9\xfa\xfa\xfa\xfc\xfc\xfc\ +\xfb\xfb\xfb\xfc\xfc\xfc\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xfa\ +\xfa\xfa\xf8\xf8\xf8\xf7\xf7\xf7\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\ +\xfb\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfd\xfd\xfd\xfc\xfc\xfc\ +\xfc\xfc\xfc\xfd\xfd\xfd\xfd\xfd\xfd\xfe\xfe\xfe\xdc\xdb\xdc\x4b\ +\x65\x6e\x43\x66\x6f\x4b\x69\x75\x54\x6c\x7d\x5b\x71\x88\x6c\x7d\ +\x93\x7d\x87\x9e\x81\x89\xa1\x80\x88\xa0\x71\x7d\x99\x66\x76\x94\ +\x63\x74\x90\x64\x77\x93\x69\x82\x98\x6a\x86\x9a\x5d\x82\x91\x50\ +\x7c\x87\x48\x77\x82\x47\x6e\x86\x4c\x67\x90\x53\x64\x97\x55\x64\ +\x99\x55\x67\x98\x53\x6a\x96\x54\x77\x97\x57\x7d\x98\x57\x7b\x95\ +\x4f\x6c\x8c\x43\x58\x7e\x37\x47\x6f\x32\x41\x6a\x2a\x3a\x64\x2f\ +\x3b\x5e\x37\x39\x52\x34\x33\x48\x28\x26\x39\x1a\x18\x2b\x12\x10\ +\x23\x1a\x19\x28\x19\x18\x26\x15\x15\x22\x1a\x1d\x33\x27\x30\x4b\ +\x29\x34\x4f\x20\x29\x42\x1b\x23\x3c\x1b\x22\x3b\x1f\x28\x43\x20\ +\x29\x45\x20\x27\x42\x21\x27\x3f\x29\x2f\x47\x60\x68\x7f\x00\x00\ +\x00\xe6\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe2\ +\xe0\xd7\xe1\xde\xd6\xe1\xde\xd7\xdf\xdd\xd6\xdf\xdc\xd5\xdf\xdc\ +\xd5\xdf\xdb\xd6\xdf\xdd\xd8\xe1\xde\xd9\xe2\xde\xda\xe3\xdc\xd8\ +\xe1\xdd\xd9\xdf\xde\xda\xdf\xd8\xd3\xd9\xd5\xd0\xd6\xd7\xd1\xd7\ +\xd6\xd2\xd9\xd5\xd3\xda\xd4\xd1\xd8\xd3\xcd\xd3\xd1\xcb\xd1\xce\ +\xc8\xce\xcc\xc5\xcc\xca\xc3\xca\xc9\xc2\xc9\xc7\xbf\xc6\xc5\xbd\ +\xc4\xc5\xbd\xc4\xc6\xbe\xc5\xc7\xbf\xc6\xc6\xbe\xc5\xc4\xbb\xc4\ +\xc0\xb6\xc1\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbd\ +\xb4\xbd\xbb\xb3\xbd\xbb\xb3\xbd\xba\xb2\xbc\xba\xb2\xbc\xb9\xb1\ +\xbb\xb7\xaf\xba\xb6\xad\xb8\xb3\xac\xb9\xc3\xc0\xcb\xd8\xd6\xdd\ +\xd9\xd7\xdd\xdb\xd8\xdd\xe0\xdc\xe2\xdd\xdb\xe1\xde\xda\xe0\xde\ +\xdb\xe1\xdf\xdb\xe1\xd4\xcf\xd7\xbb\xb3\xbf\xab\xa5\xb4\xa5\x9f\ +\xb0\xa8\xa2\xb2\xa9\xa4\xb4\xa3\x9f\xb0\x91\x8f\xa7\x81\x83\xa2\ +\x86\x8a\xa5\x9a\x99\xaf\xaf\xa7\xb6\xb6\xac\xb8\xbb\xb0\xb9\xbd\ +\xb1\xb8\xab\x9f\xa9\x9f\x94\x9f\x8d\x84\x93\x93\x8e\x9e\xd4\xd0\ +\xd7\xe9\xe6\xeb\xf3\xf2\xf3\xf6\xf7\xf6\xf9\xf9\xf9\xf9\xf9\xf9\ +\xf9\xf9\xf9\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfb\ +\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfa\xfa\xfa\xfa\xfa\xfa\xf8\xf8\ +\xf8\xf7\xf7\xf7\xfa\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\ +\xfd\xfd\xfd\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfd\ +\xfd\xfd\xfd\xfe\xfd\xf0\xec\xef\x98\x9b\xa9\x70\x84\x95\x5b\x76\ +\x85\x48\x6c\x7a\x3b\x65\x71\x38\x63\x6d\x3e\x65\x6f\x4c\x6c\x77\ +\x5a\x74\x84\x69\x7b\x8c\x6f\x80\x93\x70\x80\x94\x75\x81\x98\x6c\ +\x7b\x94\x6a\x7b\x92\x57\x72\x87\x3e\x67\x78\x33\x67\x73\x34\x68\ +\x74\x38\x6a\x77\x3e\x6a\x7d\x43\x68\x84\x49\x68\x8a\x4d\x6c\x8d\ +\x4e\x70\x8d\x51\x75\x90\x58\x7c\x95\x50\x75\x8c\x47\x66\x82\x59\ +\x6f\x8d\x56\x67\x88\x4c\x5a\x7d\x37\x42\x68\x21\x29\x4a\x21\x24\ +\x3f\x21\x23\x3e\x1f\x20\x39\x1c\x1a\x31\x15\x12\x27\x1a\x18\x29\ +\x1f\x1f\x2d\x16\x16\x25\x22\x2a\x43\x31\x3d\x58\x2b\x36\x52\x22\ +\x2d\x46\x20\x2b\x42\x20\x2a\x44\x23\x2c\x48\x20\x29\x44\x1d\x26\ +\x41\x24\x2b\x46\x2d\x34\x4e\x64\x6d\x81\x00\x00\x00\xe5\xde\xe5\ +\xe3\xdc\xe3\xe3\xdc\xe2\xe3\xdb\xe4\xe0\xd8\xe2\xdf\xd7\xe1\xde\ +\xd6\xe0\xdb\xd6\xdf\xdb\xd6\xdf\xda\xd5\xde\xda\xd5\xde\xda\xd6\ +\xdf\xdb\xd7\xe0\xdc\xd9\xe1\xdc\xd9\xe3\xda\xd6\xdf\xda\xd6\xdc\ +\xd7\xd2\xd8\xd5\xd0\xd6\xd9\xd6\xdb\xdc\xd8\xdd\xda\xd6\xdb\xd8\ +\xd3\xd8\xd6\xd1\xd6\xd5\xcf\xd4\xd2\xcc\xd1\xd0\xca\xcf\xce\xc8\ +\xce\xc9\xc2\xc9\xc4\xbd\xc3\xc2\xba\xc1\xc1\xb9\xc1\xc3\xbb\xc2\ +\xc5\xbd\xc4\xc5\xbd\xc4\xc6\xbd\xc4\xc7\xc0\xc7\xc2\xba\xc3\xbf\ +\xb6\xc0\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbe\xb5\xbf\xbc\xb3\ +\xbd\xbc\xb3\xbd\xbb\xb3\xbd\xba\xb3\xbd\xb9\xb1\xbb\xb8\xb0\xbb\ +\xb5\xad\xb9\xc7\xc2\xcd\xd8\xd6\xde\xd9\xd6\xdf\xd9\xd7\xdc\xdd\ +\xda\xe0\xdd\xdb\xe1\xdb\xd9\xdf\xdc\xd9\xdf\xdd\xd9\xdf\xca\xc5\ +\xce\xb7\xb1\xbd\xb1\xab\xb7\xac\xa6\xb5\xb1\xaa\xb8\xb3\xad\xba\ +\xb3\xad\xbb\xac\xa8\xba\xa8\xa6\xbb\xab\xaa\xbd\xaa\xa7\xba\xa4\ +\xa1\xb4\xa7\xa2\xb5\xae\xa7\xb6\xb3\xab\xb8\xbb\xb0\xb9\xc1\xb4\ +\xbb\xc5\xb8\xbb\xc3\xb5\xb9\xca\xc3\xca\xe7\xe3\xe9\xf1\xef\xf1\ +\xf5\xf5\xf5\xf7\xf7\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf9\xf9\xf9\xfa\ +\xfa\xfa\xf9\xf9\xf9\xf6\xf6\xf6\xf8\xf8\xf8\xf8\xf8\xf8\xfa\xfa\ +\xfa\xf9\xf9\xf9\xfa\xfa\xfa\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\ +\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfb\ +\xfb\xfb\xfc\xfc\xfc\xfc\xfc\xfc\xfd\xfd\xfd\xfc\xfc\xfc\xf9\xf8\ +\xf9\xce\xc9\xd0\xb9\xb3\xc0\xb1\xae\xbc\xa5\xa4\xb3\x8f\x95\xa6\ +\x7a\x88\x9b\x65\x7c\x8e\x51\x70\x81\x43\x69\x77\x3d\x66\x72\x3b\ +\x64\x6f\x3b\x65\x70\x41\x6a\x74\x51\x70\x7c\x5a\x76\x84\x5a\x74\ +\x86\x40\x66\x77\x30\x5e\x6f\x2d\x60\x6f\x2e\x62\x6f\x31\x65\x72\ +\x34\x68\x75\x33\x67\x74\x3a\x6a\x79\x3d\x6c\x7d\x3d\x6c\x7d\x3c\ +\x6c\x7b\x3b\x6b\x7a\x3f\x6d\x7d\x43\x6a\x7d\x3a\x54\x71\x3e\x4c\ +\x6a\x38\x42\x62\x24\x2d\x4d\x12\x1a\x37\x18\x1d\x39\x30\x33\x4b\ +\x31\x33\x4a\x27\x27\x3d\x1e\x1e\x32\x1a\x1a\x2d\x1d\x1d\x2e\x15\ +\x15\x26\x2c\x33\x4b\x3a\x44\x60\x33\x3e\x5b\x27\x32\x4d\x22\x2e\ +\x48\x27\x31\x4c\x28\x31\x4c\x22\x2b\x47\x1e\x27\x42\x1f\x28\x43\ +\x26\x2e\x4a\x4b\x5a\x72\x00\x00\x00\xe4\xdd\xe5\xe2\xdc\xe4\xe2\ +\xdb\xe3\xe0\xd9\xe3\xe0\xd8\xe2\xdd\xd7\xe1\xdb\xd6\xe0\xdb\xd5\ +\xde\xda\xd4\xde\xd9\xd4\xde\xd8\xd4\xdf\xd9\xd5\xe0\xda\xd6\xe1\ +\xdc\xd8\xe3\xdc\xd9\xe3\xd9\xd5\xdf\xd7\xd1\xd9\xdd\xd8\xde\xdf\ +\xdb\xe0\xe0\xdc\xe1\xdd\xd8\xdd\xdd\xd7\xdc\xdb\xd5\xda\xd9\xd3\ +\xd8\xd6\xd0\xd5\xd2\xcc\xd1\xd0\xca\xcf\xcc\xc5\xcb\xc7\xbf\xc7\ +\xc6\xbf\xc6\xc6\xbe\xc5\xc5\xbe\xc5\xc5\xbd\xc4\xc3\xbb\xc2\xc4\ +\xbd\xc4\xc9\xc2\xc9\xca\xc3\xca\xc5\xbd\xc5\xbf\xb6\xbf\xbe\xb5\ +\xbe\xbe\xb5\xbf\xbe\xb5\xbe\xbd\xb4\xbe\xbd\xb5\xbf\xbc\xb4\xbe\ +\xbb\xb4\xbe\xbc\xb3\xbd\xb9\xb1\xbb\xb8\xb0\xbb\xc9\xc5\xcf\xdb\ +\xd8\xe0\xda\xd7\xe0\xd9\xd6\xdd\xdb\xd9\xdf\xdb\xd9\xdf\xda\xd8\ +\xde\xda\xd7\xdd\xdb\xd7\xdd\xd2\xce\xd5\xb4\xb0\xbc\xaf\xab\xb7\ +\xb1\xab\xb8\xb4\xaf\xba\xb6\xb0\xbb\xb6\xaf\xbc\xc0\xbb\xc9\xc5\ +\xc0\xce\xc0\xba\xc9\xb9\xb5\xc5\xb2\xae\xbf\xac\xa8\xbb\xa7\xa3\ +\xb6\xaa\xa6\xb6\xae\xa8\xb8\xb6\xad\xb9\xbb\xb1\xba\xbf\xb2\xba\ +\xc2\xb7\xbd\xdc\xd4\xda\xef\xed\xf0\xf4\xf3\xf4\xf5\xf5\xf5\xf5\ +\xf5\xf5\xf7\xf7\xf7\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\ +\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf7\xf7\xf7\ +\xf8\xf8\xf8\xfa\xfa\xfa\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xfb\ +\xfb\xfb\xfb\xfb\xfb\xfc\xfc\xfc\xfb\xfb\xfb\xfb\xfb\xfb\xfc\xfc\ +\xfc\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xfa\xf0\xef\xf0\xc7\xc2\xca\ +\xc0\xbb\xc4\xbc\xb6\xc1\xb5\xae\xba\xad\xa7\xb5\xa6\xa2\xb1\x9f\ +\x9c\xae\x94\x95\xa9\x86\x8d\xa3\x78\x84\x9b\x64\x7a\x8f\x53\x71\ +\x83\x45\x6b\x78\x3c\x69\x73\x3b\x69\x72\x3d\x68\x76\x3c\x67\x79\ +\x35\x62\x74\x2f\x5f\x71\x2e\x60\x71\x31\x63\x73\x30\x63\x72\x34\ +\x68\x75\x38\x6b\x77\x39\x6c\x78\x3c\x6e\x7a\x3d\x6f\x7b\x3a\x6d\ +\x7a\x3c\x6d\x7b\x42\x6d\x7d\x39\x56\x72\x29\x3b\x5e\x1e\x2b\x4d\ +\x17\x20\x40\x0f\x18\x35\x1f\x25\x3f\x33\x38\x4c\x2f\x31\x46\x24\ +\x25\x3c\x1c\x1e\x35\x11\x15\x2d\x0f\x12\x27\x0c\x0e\x22\x1c\x21\ +\x37\x37\x3f\x58\x3d\x46\x61\x33\x3d\x5a\x2b\x36\x53\x26\x2f\x4c\ +\x28\x31\x4d\x24\x2d\x4a\x1f\x28\x43\x21\x29\x46\x29\x34\x50\x4c\ +\x5f\x77\x00\x00\x00\xe2\xdd\xe6\xe1\xdb\xe4\xdf\xda\xe3\xdf\xd9\ +\xe2\xdd\xd8\xe1\xdc\xd6\xe0\xdb\xd4\xdf\xd9\xd3\xde\xd8\xd3\xde\ +\xd6\xd2\xdd\xd8\xd4\xdf\xd9\xd5\xe0\xdb\xd7\xe2\xdc\xd8\xe3\xdc\ +\xd9\xe4\xde\xdc\xe4\xe3\xdf\xe5\xe4\xe1\xe5\xe3\xdf\xe4\xe1\xdc\ +\xe1\xe0\xda\xdf\xde\xd8\xdd\xdb\xd4\xd9\xd7\xd1\xd6\xd2\xcc\xd1\ +\xcf\xc9\xce\xcd\xc6\xcd\xcb\xc5\xcb\xca\xc3\xc9\xc9\xc2\xc9\xc6\ +\xbf\xc6\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbe\xc5\xc8\xc1\xc8\xc9\xc2\ +\xc9\xc9\xc2\xc9\xc4\xbd\xc4\xbe\xb6\xbe\xbd\xb4\xbe\xbd\xb4\xbe\ +\xbd\xb4\xbe\xbe\xb5\xbe\xbd\xb5\xbf\xbd\xb4\xbe\xbd\xb4\xbe\xbc\ +\xb2\xbd\xbb\xb1\xbc\xc6\xc0\xcb\xd9\xd6\xdf\xdb\xd9\xe1\xd9\xd7\ +\xde\xdc\xd9\xdf\xdb\xd9\xdf\xd9\xd6\xdc\xd9\xd6\xdc\xda\xd6\xdc\ +\xd7\xd2\xd8\xc0\xba\xc4\xb2\xac\xb9\xb2\xac\xb8\xb2\xac\xb9\xb0\ +\xac\xb8\xb5\xb0\xbc\xc4\xbf\xcd\xcd\xca\xd5\xcc\xc7\xd3\xc8\xc4\ +\xd0\xc3\xbf\xcc\xbb\xb7\xc7\xb4\xb1\xc1\xae\xab\xbd\xac\xa9\xba\ +\xae\xaa\xba\xb2\xac\xbb\xb8\xaf\xbb\xbb\xb1\xbc\xbf\xb5\xbe\xe3\ +\xdd\xe2\xf2\xf2\xf3\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf2\xf3\xf1\xf1\ +\xf3\xf3\xf2\xf3\xf4\xf3\xf4\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf3\xf4\ +\xf5\xf5\xf5\xf3\xf3\xf4\xf3\xf3\xf4\xf5\xf5\xf5\xf8\xf8\xf8\xf9\ +\xf9\xf9\xfa\xfa\xfa\xfc\xfc\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfc\xfc\ +\xfc\xfc\xfc\xfc\xfb\xfb\xfb\xfd\xfd\xfd\xfc\xfc\xfc\xfa\xfb\xfb\ +\xfc\xfd\xfd\xf8\xf7\xf7\xdd\xd9\xdc\xc2\xbb\xc4\xbc\xb6\xbf\xb7\ +\xae\xba\xb1\xa9\xb6\xad\xa6\xb5\xa9\xa4\xb3\xa4\xa0\xb0\xa2\x9e\ +\xaf\xa0\x9c\xaf\x9e\x9b\xae\x9b\x99\xad\x97\x97\xab\x8f\x93\xa6\ +\x84\x8e\xa0\x75\x88\x99\x67\x81\x93\x50\x74\x89\x41\x6b\x7f\x37\ +\x67\x77\x32\x65\x75\x32\x67\x75\x33\x67\x75\x34\x68\x76\x38\x6b\ +\x77\x3b\x6d\x78\x3c\x6e\x7a\x3b\x6e\x79\x3c\x6f\x7a\x3f\x70\x7b\ +\x42\x6e\x7d\x43\x69\x7e\x3c\x54\x74\x2e\x3d\x62\x23\x2f\x51\x16\ +\x1f\x3c\x18\x1d\x39\x14\x17\x30\x0f\x13\x2c\x0f\x13\x2b\x10\x16\ +\x2e\x10\x16\x2e\x14\x1a\x32\x14\x1a\x32\x12\x16\x2e\x19\x1f\x33\ +\x23\x2a\x40\x28\x32\x4c\x2f\x3c\x59\x27\x33\x50\x25\x31\x4c\x22\ +\x2c\x47\x1a\x23\x40\x1d\x27\x45\x30\x3d\x5a\x4e\x63\x78\x00\x00\ +\x00\xe3\xde\xe7\xe0\xdb\xe4\xdf\xda\xe3\xdd\xd8\xe1\xdd\xd7\xe2\ +\xdb\xd6\xe1\xda\xd5\xe0\xd8\xd4\xdf\xd7\xd3\xde\xd6\xd2\xde\xd8\ +\xd4\xdf\xd9\xd5\xe0\xdb\xd7\xe2\xdc\xd8\xe3\xdf\xdb\xe5\xe7\xe3\ +\xe9\xe8\xe4\xe9\xe5\xe1\xe6\xe3\xe0\xe5\xe0\xdb\xe0\xdd\xd7\xdc\ +\xd9\xd2\xd7\xd4\xcd\xd2\xd0\xc9\xce\xce\xc7\xcc\xce\xc7\xcc\xce\ +\xc7\xcd\xcd\xc7\xcc\xcc\xc5\xcb\xc8\xc1\xc8\xc7\xc0\xc7\xc7\xbf\ +\xc6\xc7\xc0\xc7\xc7\xc0\xc7\xc6\xbe\xc5\xc5\xbd\xc5\xc7\xc0\xc7\ +\xc6\xbf\xc6\xc0\xb7\xc0\xbe\xb5\xbf\xbc\xb3\xbd\xbd\xb4\xbe\xbd\ +\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbc\xb3\xbd\xbb\xb3\xbc\xc1\xba\ +\xc4\xd7\xd4\xdd\xdc\xd9\xe2\xdb\xd9\xe0\xdc\xda\xe0\xdb\xd9\xdf\ +\xd8\xd6\xdc\xd7\xd4\xda\xd9\xd5\xdb\xd7\xd4\xd9\xc4\xbd\xc6\xb7\ +\xaf\xbb\xb4\xad\xba\xb5\xaf\xbb\xb0\xab\xb8\xb7\xb3\xbf\xca\xc6\ +\xd3\xd5\xd0\xdc\xd5\xd0\xdb\xd3\xcd\xd8\xcf\xc9\xd5\xca\xc5\xd1\ +\xc4\xbf\xcc\xbd\xb9\xc8\xb6\xb3\xc3\xb1\xae\xbe\xaf\xac\xbc\xb2\ +\xad\xbd\xb5\xaf\xbd\xb6\xae\xbc\xba\xb0\xbb\xcc\xc4\xca\xe2\xdc\ +\xde\xec\xe8\xea\xf0\xed\xef\xf0\xed\xf0\xef\xec\xf1\xef\xec\xf0\ +\xf0\xed\xf1\xf1\xef\xf1\xf0\xee\xf0\xed\xea\xee\xf2\xf0\xf1\xf1\ +\xee\xf2\xf8\xf5\xf6\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\ +\xff\xff\xff\xff\xff\xff\xff\xff\xff\xfb\xfb\xfb\xec\xe9\xea\xd4\ +\xcd\xd2\xc0\xb9\xc0\xbb\xb2\xbd\xb7\xae\xb9\xb3\xaa\xb7\xb1\xa8\ +\xb6\xae\xa6\xb5\xab\xa4\xb3\xa7\xa1\xb2\xa4\x9f\xb0\xa2\x9e\xaf\ +\xa0\x9d\xae\xa1\x9d\xaf\xa2\x9e\xaf\xa4\xa0\xb0\xa4\xa0\xb0\xa2\ +\x9f\xaf\x9f\x9f\xaf\x77\x88\x9c\x4a\x71\x85\x3f\x6f\x7d\x37\x6d\ +\x79\x36\x6d\x78\x35\x6c\x76\x35\x6c\x76\x35\x6b\x75\x36\x6b\x75\ +\x37\x6c\x75\x38\x6c\x75\x38\x6c\x75\x39\x6b\x75\x3b\x6a\x77\x40\ +\x6a\x7a\x3e\x5c\x74\x36\x48\x6d\x31\x3f\x64\x1d\x28\x48\x11\x16\ +\x34\x0e\x11\x2d\x0b\x0f\x28\x0b\x10\x28\x0f\x16\x2d\x12\x19\x2f\ +\x16\x1c\x32\x13\x18\x2f\x12\x16\x2c\x11\x17\x2a\x11\x15\x27\x16\ +\x1d\x31\x27\x33\x4e\x2b\x37\x54\x2b\x36\x51\x25\x2f\x4a\x1a\x24\ +\x41\x1c\x26\x43\x32\x40\x5c\x4b\x61\x77\x00\x00\x00\xe2\xdc\xe7\ +\xe0\xdb\xe5\xde\xda\xe4\xdd\xd7\xe2\xdc\xd7\xe2\xdb\xd7\xe2\xda\ +\xd6\xe1\xd9\xd5\xe0\xd7\xd3\xdf\xd6\xd2\xde\xd8\xd4\xdf\xd9\xd5\ +\xe0\xdb\xd7\xe2\xdd\xda\xe4\xe5\xe2\xe7\xe6\xe2\xe7\xe4\xe0\xe6\ +\xe3\xdf\xe5\xe0\xdb\xe0\xd9\xd4\xd9\xd5\xce\xd3\xd3\xcc\xd1\xd1\ +\xca\xcf\xcf\xc8\xcd\xd0\xc9\xce\xd0\xc9\xce\xcf\xc9\xce\xcc\xc6\ +\xcb\xc9\xc1\xc8\xc8\xc0\xc7\xc7\xc0\xc7\xc6\xbf\xc6\xc5\xbd\xc4\ +\xc5\xbd\xc4\xc5\xbe\xc5\xc7\xbe\xc5\xc8\xc0\xc7\xc7\xc0\xc7\xc1\ +\xb9\xc1\xbe\xb5\xbf\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbe\xb5\ +\xbf\xbd\xb4\xbe\xbc\xb3\xbd\xbd\xb5\xbf\xd4\xd0\xd8\xde\xdc\xe2\ +\xde\xdb\xe2\xdb\xd9\xdf\xda\xd8\xde\xda\xd8\xde\xd7\xd5\xdb\xd8\ +\xd5\xdb\xd5\xd0\xd7\xc6\xbe\xc7\xbf\xb7\xc1\xb6\xaf\xba\xb6\xb0\ +\xbb\xb3\xad\xb9\xb8\xb4\xc0\xd0\xcc\xd6\xd9\xd4\xdd\xd9\xd3\xde\ +\xd7\xd1\xdc\xd5\xcf\xda\xd3\xcd\xd8\xcf\xc8\xd3\xc9\xc5\xd1\xc3\ +\xbf\xcd\xbe\xba\xc9\xb8\xb5\xc5\xb4\xb1\xc1\xb3\xaf\xbf\xb5\xaf\ +\xbf\xb5\xae\xbb\xb6\xae\xba\xb9\xaf\xba\xba\xaf\xb9\xbb\xb1\xba\ +\xc3\xb8\xbf\xd4\xcb\xce\xe1\xd9\xdc\xe8\xe2\xe5\xed\xe9\xed\xed\ +\xe9\xee\xee\xea\xee\xeb\xe7\xec\xf0\xed\xf0\xeb\xe8\xea\x90\x86\ +\x8e\x81\x77\x7d\x93\x86\x87\x94\x87\x87\x99\x8d\x8d\x9f\x93\x93\ +\xa6\x9a\x9c\xa9\x9f\xa0\xbc\xb4\xb2\xb0\xa5\xa6\xc5\xbe\xc0\xcc\ +\xc5\xc7\xce\xc8\xca\xc6\xbf\xc4\xc2\xba\xc0\xbd\xb4\xbe\xb9\xaf\ +\xba\xb6\xac\xb8\xb5\xac\xb7\xb3\xaa\xb7\xb2\xa8\xb5\xae\xa7\xb4\ +\xac\xa5\xb4\xa9\xa3\xb2\xa8\xa2\xb2\xa6\xa0\xb1\xa5\xa0\xb1\xa7\ +\xa1\xb1\xa9\xa4\xb2\xa9\xa4\xb3\xa9\xa4\xb2\xa7\xa2\xb1\xa7\xa3\ +\xb2\x9d\x9d\xad\x79\x8a\x9c\x52\x7b\x89\x46\x79\x84\x40\x77\x81\ +\x3b\x74\x7d\x3b\x74\x7d\x3d\x75\x7e\x3b\x73\x7a\x3c\x73\x7b\x3d\ +\x72\x7b\x39\x6e\x77\x37\x6a\x76\x35\x68\x75\x38\x66\x76\x38\x5e\ +\x75\x2a\x44\x67\x2d\x3f\x66\x25\x30\x55\x13\x1b\x3b\x0e\x14\x32\ +\x0e\x13\x2f\x0f\x16\x33\x14\x1d\x37\x13\x19\x2f\x0f\x12\x25\x14\ +\x16\x2b\x19\x1d\x31\x18\x1c\x2f\x19\x1d\x2f\x15\x18\x2a\x1b\x23\ +\x39\x2a\x34\x4f\x2b\x35\x50\x26\x2f\x48\x1e\x27\x43\x1b\x25\x40\ +\x2e\x3c\x58\x46\x5c\x73\x00\x00\x00\xe1\xdd\xe7\xdf\xdb\xe6\xdd\ +\xd9\xe4\xdc\xd9\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xda\xd6\xe1\xda\xd6\ +\xe1\xd9\xd5\xe0\xd8\xd4\xe0\xd8\xd4\xdf\xda\xd6\xe1\xdb\xd7\xe2\ +\xde\xda\xe4\xdf\xdb\xe4\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe5\xd8\ +\xd2\xdb\xd3\xcc\xd1\xd2\xcb\xd0\xd2\xcb\xd0\xd1\xca\xcf\xd3\xcc\ +\xd0\xd1\xca\xcf\xd0\xc9\xce\xcd\xc6\xcb\xc9\xc2\xc7\xc6\xbe\xc4\ +\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc4\xc5\ +\xbd\xc4\xc4\xbc\xc3\xc6\xbe\xc5\xc8\xc0\xc7\xc2\xb9\xc3\xbe\xb5\ +\xbf\xbd\xb4\xbe\xbc\xb4\xbd\xbe\xb5\xbf\xbf\xb5\xbe\xbe\xb4\xbd\ +\xbd\xb5\xbe\xcc\xc8\xd1\xdc\xda\xe0\xdd\xda\xe1\xdc\xda\xe0\xd9\ +\xd7\xdd\xd8\xd6\xdc\xd9\xd7\xdd\xd8\xd6\xdc\xd8\xd2\xd9\xd1\xca\ +\xd3\xd7\xd0\xda\xc8\xc3\xcc\xb7\xaf\xbb\xb8\xb2\xbd\xb5\xb0\xbd\ +\xcc\xc8\xd3\xdb\xd6\xe0\xda\xd5\xde\xd9\xd3\xdd\xd7\xd1\xdc\xd6\ +\xd0\xdb\xd3\xcd\xd8\xd2\xcc\xd7\xce\xc9\xd4\xca\xc5\xd2\xc5\xc1\ +\xce\xc0\xbd\xcb\xbb\xb6\xc6\xb6\xb3\xc3\xb5\xb1\xc0\xb5\xaf\xbe\ +\xb5\xae\xbb\xb4\xac\xb9\xb2\xa9\xb6\xb3\xa9\xb5\xb7\xac\xb6\xbb\ +\xae\xb7\xbd\xb0\xb9\xc3\xb7\xbd\xce\xc6\xca\xe2\xdc\xe1\xe7\xe3\ +\xe7\xe9\xe4\xe9\xe8\xe3\xe6\xa6\x9d\xa2\x51\x4f\x62\x47\x48\x5c\ +\x46\x47\x5d\x44\x46\x5c\x40\x43\x5b\x3c\x40\x59\x40\x43\x5a\x44\ +\x46\x5c\x45\x49\x5f\x4c\x4d\x64\x59\x5a\x6e\x74\x71\x81\x8a\x82\ +\x91\x8e\x86\x93\x9a\x8f\x9b\xb0\xa7\xb1\xb6\xad\xb8\xb6\xac\xb8\ +\xb5\xac\xb8\xb3\xaa\xb7\xb2\xa9\xb6\xb0\xa7\xb6\xae\xa7\xb5\xac\ +\xa5\xb4\xaa\xa4\xb4\xa9\xa3\xb3\xaa\xa5\xb3\xae\xa7\xb5\xaf\xa8\ +\xb5\xaf\xa8\xb5\xaf\xa8\xb4\xae\xa7\xb4\xad\xa7\xb4\xae\xa8\xb5\ +\xab\xa6\xb4\x9a\x9e\xad\x83\x94\xa3\x6b\x8b\x98\x5c\x85\x91\x54\ +\x83\x8f\x52\x85\x8f\x4d\x82\x8c\x51\x84\x8e\x52\x83\x8e\x4c\x7c\ +\x89\x42\x73\x83\x3d\x6c\x7f\x3a\x67\x7d\x36\x60\x7c\x28\x49\x6d\ +\x28\x3f\x65\x24\x30\x55\x1b\x22\x44\x19\x1e\x40\x19\x20\x40\x16\ +\x1f\x3e\x1c\x26\x45\x22\x2a\x42\x22\x22\x37\x26\x29\x3e\x2d\x31\ +\x46\x20\x24\x36\x25\x29\x3a\x23\x26\x39\x1c\x21\x39\x25\x2e\x49\ +\x27\x30\x4a\x25\x2d\x46\x1b\x22\x3c\x18\x1e\x39\x27\x32\x4c\x3d\ +\x53\x6b\x00\x00\x00\xe2\xde\xe8\xe0\xdc\xe7\xde\xda\xe5\xdd\xd9\ +\xe4\xdc\xd8\xe3\xdc\xd8\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xd9\xd5\xe0\ +\xd9\xd5\xe0\xd9\xd5\xe0\xda\xd6\xe1\xdc\xd8\xe3\xde\xd9\xe4\xdd\ +\xd9\xe4\xdd\xd9\xe4\xde\xda\xe4\xdf\xdc\xe6\xda\xd5\xdf\xd1\xca\ +\xd1\xcf\xc7\xcd\xce\xc7\xcc\xce\xc6\xcb\xcf\xc8\xcd\xcf\xc8\xcd\ +\xcb\xc4\xc9\xc8\xc1\xc6\xc7\xbf\xc5\xc6\xbe\xc4\xc6\xbe\xc4\xc7\ +\xbf\xc6\xc7\xbf\xc6\xc5\xbd\xc4\xc3\xbb\xc3\xc4\xbc\xc3\xc5\xbd\ +\xc4\xc6\xbe\xc5\xc7\xbe\xc5\xc3\xbb\xc3\xbe\xb5\xbf\xbe\xb5\xbf\ +\xbe\xb5\xbe\xbd\xb4\xbd\xc0\xb5\xbe\xbf\xb4\xbd\xc7\xc1\xca\xd9\ +\xd7\xdd\xdb\xd9\xdf\xd9\xd7\xdf\xd8\xd6\xdd\xd7\xd5\xdb\xd9\xd7\ +\xdd\xd6\xd0\xd8\xd6\xd0\xd7\xdb\xd6\xdc\xe0\xdc\xe3\xe1\xdc\xe3\ +\xc4\xbe\xc9\xb7\xb1\xbc\xb7\xb1\xbd\xc8\xc3\xcf\xda\xd5\xdf\xdc\ +\xd7\xe0\xda\xd5\xde\xd9\xd3\xdd\xd8\xd1\xdc\xd6\xd0\xdb\xd4\xce\ +\xd9\xd2\xcc\xd7\xd1\xcb\xd6\xce\xc8\xd4\xcb\xc6\xd2\xc7\xc3\xcf\ +\xc3\xbf\xcc\xbf\xbb\xc9\xba\xb6\xc5\xb6\xb1\xc0\xb5\xb0\xbd\xb4\ +\xae\xbb\xb3\xac\xb9\xb3\xab\xb7\xb4\xaa\xb5\xb6\xaa\xb6\xb8\xab\ +\xb5\xb5\xa9\xb3\xba\xb1\xba\xbf\xb6\xbd\xc5\xbd\xc2\xc6\xbe\xc5\ +\xa2\x99\xa2\x5d\x59\x6a\x48\x47\x5a\x42\x43\x58\x46\x48\x5f\x41\ +\x45\x5d\x3e\x42\x5d\x3e\x43\x5f\x3b\x41\x5a\x3c\x42\x5a\x40\x45\ +\x5d\x41\x46\x5f\x41\x46\x5f\x42\x47\x5f\x47\x4b\x61\x48\x48\x5f\ +\x58\x55\x69\x84\x7c\x8b\xa3\x98\xa5\xb1\xa7\xb3\xb5\xac\xb7\xb4\ +\xac\xb8\xb4\xab\xb7\xb2\xa9\xb6\xaf\xa8\xb5\xae\xa7\xb5\xae\xa8\ +\xb5\xaf\xa8\xb6\xb0\xa9\xb6\xb3\xaa\xb7\xb3\xab\xb6\xb3\xab\xb7\ +\xb3\xab\xb7\xb2\xab\xb6\xb2\xab\xb7\xb2\xab\xb7\xb2\xab\xb7\xb2\ +\xab\xb7\xad\xa8\xb5\xa2\xa1\xb1\x93\x99\xab\x83\x92\xa4\x7a\x8e\ +\xa1\x74\x8d\x9f\x70\x8d\x9f\x6c\x8c\x9e\x5b\x80\x95\x4b\x73\x8d\ +\x40\x67\x8a\x3d\x61\x88\x3c\x62\x86\x38\x5e\x82\x3b\x5a\x7e\x44\ +\x57\x7b\x40\x46\x68\x37\x39\x59\x31\x35\x55\x28\x30\x52\x31\x3a\ +\x59\x47\x4b\x62\x38\x38\x4b\x2a\x29\x3e\x2d\x2e\x44\x29\x2a\x3e\ +\x2c\x2d\x41\x36\x39\x4d\x30\x36\x4f\x2c\x33\x4f\x26\x2e\x49\x22\ +\x29\x41\x1d\x23\x3a\x1d\x22\x39\x26\x2e\x46\x34\x45\x5e\x00\x00\ +\x00\xe2\xdf\xe9\xe0\xdc\xe7\xdf\xdb\xe6\xdd\xd9\xe4\xdc\xd8\xe3\ +\xdc\xd8\xe3\xdb\xd7\xe2\xdb\xd7\xe2\xdb\xd7\xe2\xd9\xd5\xe0\xd9\ +\xd5\xe1\xdc\xd7\xe2\xde\xd9\xe2\xdf\xda\xe4\xdf\xda\xe3\xdf\xda\ +\xe3\xdd\xda\xe4\xdf\xdb\xe6\xdf\xdb\xe6\xda\xd5\xe0\xd5\xce\xd4\ +\xd3\xcc\xd1\xd1\xca\xcf\xcf\xc8\xcd\xcc\xc5\xca\xc8\xc0\xc6\xc7\ +\xbf\xc5\xc9\xbf\xc5\xc8\xc0\xc6\xc8\xc0\xc7\xc9\xc1\xc9\xc7\xbf\ +\xc6\xc3\xbc\xc2\xc4\xbc\xc3\xc4\xbc\xc3\xc4\xbc\xc3\xc5\xbd\xc4\ +\xc8\xc0\xc7\xc3\xbb\xc3\xbf\xb6\xc0\xbe\xb5\xbe\xbd\xb4\xbd\xbd\ +\xb3\xbd\xc0\xb5\xbe\xc4\xbb\xc4\xd6\xd3\xda\xda\xd8\xde\xd9\xd7\ +\xdf\xd8\xd5\xde\xd6\xd4\xdb\xda\xd7\xdd\xd3\xcc\xd5\xd8\xd1\xd9\ +\xe0\xdc\xe2\xe2\xde\xe4\xe3\xdf\xe5\xe0\xdc\xe2\xc1\xb9\xc4\xba\ +\xb4\xbf\xc9\xc4\xcf\xda\xd5\xde\xdd\xd7\xe0\xdd\xd6\xe0\xda\xd5\ +\xde\xd9\xd4\xdd\xd7\xd1\xdc\xd6\xd0\xdb\xd4\xce\xd9\xd1\xcb\xd7\ +\xd1\xcb\xd6\xcf\xc9\xd4\xcf\xc9\xd4\xce\xc8\xd3\xcb\xc5\xd1\xc7\ +\xc2\xce\xc1\xbe\xcb\xbd\xb8\xc7\xba\xb6\xc3\xba\xb3\xc0\xb8\xb1\ +\xbe\xb6\xaf\xbc\xb5\xad\xba\xb6\xac\xb9\xb6\xad\xb9\xb1\xa7\xb3\ +\xb2\xa8\xb4\xb7\xad\xb9\xbc\xb3\xbd\xbc\xb4\xbe\xab\xa3\xb0\x7c\ +\x77\x87\x4c\x4a\x5c\x50\x4f\x63\x50\x51\x66\x42\x44\x5b\x3f\x43\ +\x5c\x42\x46\x60\x3c\x41\x58\x39\x3e\x55\x39\x3e\x57\x3c\x41\x5a\ +\x3d\x42\x5b\x3c\x41\x5a\x3b\x3f\x58\x37\x3c\x55\x38\x3c\x55\x43\ +\x45\x5d\x5c\x58\x6c\x82\x79\x89\x99\x91\x9d\xa7\x9e\xac\xaf\xa6\ +\xb3\xb3\xab\xb7\xb3\xac\xb8\xb2\xaa\xb6\xb2\xab\xb6\xb3\xac\xb7\ +\xb5\xad\xb8\xb4\xac\xb7\xb4\xac\xb7\xb4\xac\xb7\xb5\xad\xb8\xb5\ +\xad\xb8\xb5\xad\xb8\xb5\xad\xb8\xb5\xad\xb8\xb2\xab\xb7\xae\xa8\ +\xb5\xa7\xa3\xb2\x9e\x9d\xae\x97\x98\xac\x8d\x92\xa7\x84\x8c\xa4\ +\x7d\x89\xa1\x76\x85\xa0\x5d\x74\x9c\x4e\x67\x97\x44\x61\x92\x3f\ +\x61\x8d\x3b\x62\x8b\x34\x5f\x86\x34\x5a\x83\x45\x5f\x89\x4d\x5b\ +\x87\x4d\x53\x7b\x49\x4f\x73\x43\x4b\x6f\x41\x48\x6b\x40\x42\x5e\ +\x34\x33\x4a\x2e\x2b\x41\x30\x2f\x43\x38\x37\x49\x36\x37\x49\x37\ +\x3a\x4e\x3a\x3f\x57\x32\x39\x53\x28\x2f\x4a\x22\x28\x3f\x23\x28\ +\x3e\x1d\x22\x37\x1d\x23\x39\x28\x31\x48\x00\x00\x00\xe2\xdf\xe9\ +\xe1\xdd\xe8\xe0\xdc\xe7\xdf\xdb\xe6\xdd\xd9\xe4\xdc\xd9\xe3\xdd\ +\xd9\xe4\xdd\xd8\xe3\xdd\xd7\xe2\xdc\xd7\xe1\xdd\xd8\xe2\xdd\xd8\ +\xe1\xde\xd9\xe2\xe0\xdb\xe4\xe0\xdb\xe4\xe0\xdb\xe4\xdf\xdb\xe4\ +\xe0\xdd\xe6\xe1\xde\xe7\xe1\xde\xe7\xdf\xdb\xe5\xdb\xd6\xdf\xd6\ +\xd0\xd6\xd2\xca\xd0\xcd\xc5\xcb\xca\xc2\xc8\xcb\xc4\xc9\xca\xc4\ +\xc9\xcb\xc3\xc9\xca\xc3\xc9\xc9\xc1\xc7\xc5\xbc\xc4\xc5\xbc\xc4\ +\xc4\xbd\xc4\xc4\xbc\xc3\xc7\xbf\xc6\xc9\xc1\xc8\xc9\xc1\xc8\xc3\ +\xba\xc3\xbf\xb7\xc0\xbf\xb6\xc1\xc5\xbc\xc7\xc9\xc2\xcb\xc7\xbe\ +\xc8\xcf\xca\xd1\xda\xd9\xde\xda\xd8\xdf\xd8\xd6\xde\xd9\xd7\xde\ +\xd8\xd5\xdb\xcb\xc0\xcd\xda\xd2\xdb\xe3\xdf\xe5\xe4\xe0\xe6\xe4\ +\xdf\xe6\xe4\xe0\xe6\xe0\xdc\xe3\xbe\xb6\xc2\xc0\xb9\xc4\xda\xd5\ +\xdd\xdd\xd8\xdf\xdd\xd6\xdf\xde\xd5\xe0\xd9\xd5\xdd\xd9\xd3\xdd\ +\xd7\xd1\xdc\xd5\xcf\xda\xd4\xce\xd9\xd2\xcb\xd8\xd0\xcb\xd6\xd0\ +\xca\xd5\xd0\xca\xd5\xd1\xcb\xd6\xd1\xcb\xd6\xcf\xc9\xd3\xcc\xc6\ +\xd1\xc8\xc1\xcd\xc4\xbe\xc9\xc0\xb9\xc6\xbe\xb7\xc3\xbb\xb4\xc1\ +\xb8\xb1\xbe\xb8\xb0\xbc\xb9\xb1\xbc\xb8\xaf\xbb\xb7\xae\xba\xbb\ +\xb2\xbd\xbe\xb5\xbf\xbe\xb5\xbf\xbd\xb5\xbf\xa0\x99\xa6\x65\x61\ +\x74\x63\x62\x78\x60\x61\x78\x54\x55\x6c\x4e\x51\x6a\x53\x56\x70\ +\x48\x4a\x62\x3b\x3e\x56\x39\x3e\x56\x3d\x42\x5a\x41\x47\x5e\x3e\ +\x44\x5b\x3b\x40\x59\x3a\x41\x5a\x39\x40\x5a\x39\x40\x59\x38\x3e\ +\x57\x3f\x44\x5b\x53\x54\x69\x6b\x67\x7c\x80\x79\x8c\x99\x92\x9f\ +\xaa\xa3\xae\xb0\xa8\xb3\xb1\xa8\xb2\xac\xa4\xaf\x99\x8f\x9b\xa0\ +\x97\xa3\xb3\xab\xb5\xb6\xae\xb9\xb7\xaf\xba\xb7\xaf\xba\xb7\xaf\ +\xba\xb7\xaf\xba\xb6\xae\xb9\xb3\xaa\xb7\xad\xa7\xb5\xa7\xa3\xb2\ +\xa0\x9e\xaf\x9a\x99\xac\x92\x94\xaa\x8c\x8f\xa6\x86\x8c\xa5\x81\ +\x88\xa3\x63\x73\x9d\x4e\x66\x98\x43\x63\x92\x3f\x63\x90\x3b\x63\ +\x8e\x3b\x63\x8c\x3e\x60\x8e\x48\x5f\x92\x4f\x5e\x94\x5e\x69\x9d\ +\x65\x75\x9d\x56\x68\x8e\x40\x4e\x74\x3a\x3e\x60\x3e\x3e\x5b\x40\ +\x3e\x57\x41\x40\x54\x45\x43\x56\x41\x42\x55\x42\x47\x5d\x41\x4c\ +\x64\x40\x4a\x65\x32\x39\x53\x2a\x31\x4b\x22\x28\x3f\x19\x1e\x34\ +\x19\x1e\x35\x1e\x23\x3b\x00\x00\x00\xe3\xe0\xe9\xe1\xdd\xe8\xe0\ +\xdc\xe6\xe0\xdc\xe7\xdf\xda\xe5\xde\xd9\xe4\xdd\xd9\xe3\xdf\xda\ +\xe3\xde\xd9\xe2\xdd\xd8\xe1\xdd\xd8\xe2\xde\xd9\xe2\xde\xd9\xe2\ +\xdf\xda\xe4\xe0\xdb\xe4\xe1\xdc\xe5\xe1\xdc\xe5\xe3\xde\xe7\xe3\ +\xdf\xe8\xe2\xdf\xe8\xe3\xe0\xe9\xe2\xdf\xe9\xe0\xdc\xe7\xdd\xd9\ +\xe3\xda\xd5\xdf\xd6\xd0\xd9\xd0\xc9\xd1\xce\xc7\xce\xcd\xc5\xcd\ +\xcc\xc3\xcb\xc8\xc0\xc7\xc6\xbe\xc5\xc6\xbe\xc5\xc7\xbf\xc6\xca\ +\xc1\xc8\xcc\xc4\xcb\xce\xc7\xcf\xce\xc6\xcf\xc9\xc2\xcb\xcc\xc6\ +\xd0\xd1\xcd\xd8\xd3\xcf\xda\xd3\xcf\xda\xd3\xce\xd8\xd9\xd6\xdd\ +\xdb\xd9\xdf\xda\xd8\xde\xdb\xd9\xdf\xd5\xd1\xd9\xc1\xb5\xc3\xd2\ +\xc7\xd2\xe5\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe6\xe6\xdf\xe5\xe5\xe0\ +\xe6\xdb\xd4\xdc\xbc\xb4\xbf\xcc\xc6\xd0\xdf\xd9\xe0\xdf\xd8\xdf\ +\xde\xd6\xdf\xdc\xd5\xde\xdb\xd5\xde\xd8\xd3\xdc\xd6\xd0\xdb\xd4\ +\xce\xd9\xd3\xce\xd9\xd1\xcc\xd7\xd0\xcc\xd7\xd2\xcc\xd7\xd2\xcc\ +\xd7\xd2\xcd\xd7\xd5\xcd\xd7\xd5\xce\xd7\xd3\xcc\xd5\xd0\xc9\xd3\ +\xcd\xc6\xd1\xc8\xc2\xcc\xc3\xbd\xc8\xc0\xba\xc5\xbf\xb7\xc2\xbd\ +\xb5\xc0\xbc\xb4\xbf\xbb\xb3\xbe\xbe\xb4\xbf\xbe\xb4\xbf\xbd\xb5\ +\xbf\xbc\xb4\xbe\xbc\xb4\xbe\xae\xa8\xb5\x8c\x89\x9b\x8a\x88\x9c\ +\x8c\x8c\x9f\x94\x91\xa6\x97\x95\xa9\x88\x88\x9e\x6f\x6f\x85\x53\ +\x54\x6a\x4d\x51\x68\x4b\x50\x68\x48\x4d\x64\x43\x49\x60\x42\x47\ +\x5f\x40\x47\x5f\x3b\x43\x5c\x3a\x42\x5b\x37\x3e\x57\x36\x3d\x57\ +\x38\x40\x59\x3c\x44\x5f\x45\x4b\x66\x58\x5a\x71\x6e\x6a\x7c\x7b\ +\x74\x84\x7b\x74\x82\x6d\x66\x74\x52\x4f\x61\x63\x60\x72\x97\x8f\ +\x9d\xb3\xaa\xb6\xb8\xaf\xbb\xb8\xae\xba\xb7\xaf\xba\xb7\xaf\xba\ +\xb6\xad\xb9\xb3\xab\xb8\xae\xa8\xb5\xa8\xa4\xb3\xa3\xa0\xb0\x9e\ +\x9c\xaf\x99\x98\xac\x94\x95\xaa\x90\x91\xa8\x8e\x91\xa7\x85\x8a\ +\xa7\x64\x74\x9d\x4a\x67\x95\x46\x68\x93\x48\x6b\x96\x46\x65\x95\ +\x48\x5f\x94\x4a\x59\x96\x50\x5a\x99\x60\x6d\x9f\x5a\x6d\x98\x3f\ +\x55\x82\x33\x46\x72\x3a\x45\x6c\x42\x46\x67\x44\x46\x61\x46\x4b\ +\x66\x47\x4b\x66\x47\x4b\x66\x48\x52\x6c\x3c\x4c\x66\x41\x4e\x69\ +\x3f\x49\x64\x34\x3d\x59\x25\x2b\x44\x1c\x22\x38\x18\x1d\x34\x1a\ +\x1f\x38\x00\x00\x00\xe3\xe0\xe9\xe1\xdd\xe8\xe0\xdc\xe7\xdf\xdb\ +\xe6\xe0\xda\xe5\xe0\xda\xe4\xe0\xdb\xe4\xdf\xda\xe3\xe0\xd9\xe3\ +\xe0\xd9\xe3\xe1\xd9\xe2\xe0\xd9\xe2\xe1\xd9\xe3\xe1\xdb\xe4\xe1\ +\xdc\xe5\xe1\xdc\xe5\xe1\xdd\xe5\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xe0\ +\xe9\xe5\xe1\xea\xe5\xe2\xeb\xe5\xe2\xeb\xe5\xe2\xec\xe5\xe2\xeb\ +\xe4\xe0\xea\xe0\xdd\xe6\xe0\xdb\xe4\xde\xd9\xe2\xdd\xd7\xe0\xda\ +\xd3\xdc\xd6\xce\xd7\xd4\xcc\xd5\xd7\xd0\xd7\xda\xd3\xda\xdd\xd6\ +\xdd\xdd\xd5\xde\xdb\xd4\xde\xd8\xd3\xdc\xd8\xd3\xdc\xd6\xd2\xdd\ +\xd6\xd2\xdc\xd5\xd1\xdc\xd9\xd6\xde\xdc\xda\xe0\xdb\xd9\xdf\xdb\ +\xd9\xdf\xd5\xd1\xd8\xbe\xb2\xc1\xc7\xbb\xc8\xe3\xdc\xe3\xe5\xdf\ +\xe5\xe7\xe0\xe6\xe7\xe1\xe7\xe6\xdf\xe6\xe4\xde\xe4\xc9\xc0\xc9\ +\xc3\xbd\xc7\xdc\xd6\xde\xe0\xda\xe0\xdf\xd7\xdf\xdd\xd6\xdd\xdc\ +\xd4\xde\xda\xd3\xdd\xd6\xd1\xda\xd5\xcf\xda\xd4\xce\xd9\xd3\xcd\ +\xd8\xd2\xcc\xd7\xd1\xcb\xd6\xd2\xcc\xd7\xd4\xce\xd8\xd4\xcf\xd8\ +\xd6\xcf\xd8\xd6\xce\xd8\xd7\xcf\xd7\xd7\xcf\xd7\xd3\xcc\xd4\xcf\ +\xc8\xd2\xc9\xc4\xce\xc7\xc0\xca\xc3\xbc\xc6\xc1\xb9\xc4\xc0\xb8\ +\xc3\xbf\xb6\xc2\xbf\xb5\xc2\xba\xb0\xbd\xb9\xaf\xbc\xba\xb1\xbd\ +\xb8\xb1\xbc\xb7\xb0\xbb\xb3\xad\xba\xb9\xb3\xbf\xc6\xbf\xc8\xd1\ +\xca\xd2\xd4\xcd\xd4\xca\xc2\xcc\xb1\xaa\xb7\x95\x90\xa3\x83\x83\ +\x98\x71\x75\x8b\x60\x65\x7d\x58\x5c\x75\x50\x55\x6b\x48\x4e\x64\ +\x40\x46\x5d\x3d\x43\x5b\x37\x3e\x57\x36\x3e\x58\x35\x3e\x59\x35\ +\x3e\x5a\x38\x41\x5b\x38\x41\x5d\x3c\x42\x5d\x3e\x44\x5e\x3d\x42\ +\x5a\x35\x3a\x51\x36\x3b\x53\x3d\x42\x59\x62\x60\x72\x9d\x94\xa2\ +\xb7\xae\xb9\xb9\xaf\xba\xb8\xae\xba\xb8\xaf\xba\xb5\xad\xb9\xb2\ +\xaa\xb7\xaf\xa8\xb5\xaa\xa4\xb3\xa6\xa2\xb1\xa2\x9f\xb0\x9e\x9c\ +\xaf\x9a\x9a\xad\x9a\x98\xac\x98\x98\xab\x9a\x9a\xad\x96\x96\xad\ +\x76\x7f\xa3\x52\x66\x95\x4c\x60\x95\x49\x5b\x93\x49\x56\x94\x4c\ +\x53\x96\x57\x5f\x9c\x63\x70\x9f\x47\x59\x88\x3a\x4c\x7b\x37\x47\ +\x76\x3b\x48\x74\x43\x50\x75\x4b\x5f\x80\x48\x5f\x86\x46\x53\x7c\ +\x3e\x45\x69\x41\x4d\x6a\x2d\x42\x5e\x2b\x3e\x5a\x3d\x48\x63\x30\ +\x38\x52\x23\x2a\x43\x23\x2b\x42\x1a\x20\x36\x19\x1e\x35\x00\x00\ +\x00\xe3\xe0\xe9\xe2\xde\xe9\xe1\xdd\xe8\xe3\xdd\xe7\xe0\xdb\xe5\ +\xe1\xdc\xe4\xe1\xdc\xe5\xe1\xda\xe3\xe1\xd9\xe3\xe2\xda\xe3\xe3\ +\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe2\xe3\xdd\xe4\xe3\xdd\xe4\xe2\xdd\ +\xe5\xe5\xdd\xe6\xe4\xde\xe8\xe5\xe0\xe9\xe6\xe1\xea\xe6\xe1\xea\ +\xe6\xe2\xeb\xe6\xe3\xec\xe7\xe4\xed\xe6\xe3\xec\xe6\xe3\xec\xe5\ +\xe2\xeb\xe4\xdf\xe8\xe5\xe0\xe9\xe4\xdf\xe8\xe3\xdf\xe6\xe3\xdf\ +\xe5\xe4\xde\xe5\xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe1\xda\xe1\ +\xdf\xd7\xe1\xdc\xd7\xe0\xdb\xd6\xdf\xd8\xd3\xdd\xd7\xd3\xdd\xd9\ +\xd6\xde\xde\xdc\xe2\xdd\xdb\xe1\xdd\xdb\xe1\xd7\xd4\xdb\xbd\xb3\ +\xc0\xbb\xae\xbd\xda\xd3\xdb\xe3\xdc\xe3\xe6\xdf\xe6\xe6\xe0\xe6\ +\xe7\xe1\xe6\xe7\xe1\xe6\xd8\xd0\xd8\xba\xb2\xbd\xcd\xc6\xce\xe1\ +\xda\xe0\xe0\xd8\xe0\xde\xd7\xde\xdd\xd5\xdc\xda\xd4\xdb\xd8\xd1\ +\xdb\xd5\xcf\xd9\xd3\xcd\xd9\xd2\xcc\xd7\xd1\xcc\xd7\xd2\xcc\xd7\ +\xd3\xcd\xd8\xd4\xce\xd9\xd5\xd0\xd8\xd5\xd0\xd9\xd8\xd0\xda\xd8\ +\xd1\xda\xd9\xd2\xda\xda\xd3\xda\xd7\xd0\xd7\xd3\xcc\xd3\xd1\xc9\ +\xd2\xce\xc6\xd0\xca\xc2\xcc\xc6\xbe\xc8\xc3\xba\xc5\xc2\xb9\xc4\ +\xc2\xb8\xc4\xc1\xb8\xc4\xb9\xaf\xbc\xb8\xaf\xbc\xb8\xaf\xbb\xb9\ +\xb1\xbc\xbe\xb7\xc2\xcc\xc3\xcb\xd5\xcd\xd4\xda\xd3\xd8\xd8\xce\ +\xd4\xd6\xcc\xd2\xd6\xcc\xd2\xd2\xc8\xcf\xca\xc0\xc8\xb5\xae\xbb\ +\x93\x92\xa7\x7b\x7e\x96\x69\x6c\x83\x5b\x5e\x74\x4b\x4f\x64\x42\ +\x48\x5e\x39\x40\x59\x39\x40\x59\x3c\x44\x5d\x39\x41\x5b\x38\x40\ +\x5a\x3a\x42\x5b\x36\x3f\x5a\x35\x3d\x58\x35\x3d\x57\x31\x39\x51\ +\x36\x3e\x55\x36\x3e\x55\x40\x45\x5c\x74\x6f\x82\xa8\x9f\xab\xb7\ +\xad\xb9\xb8\xae\xba\xb7\xae\xb9\xb4\xab\xb8\xb0\xa8\xb5\xac\xa6\ +\xb4\xa8\xa3\xb2\xa6\xa2\xb1\xa4\xa0\xb0\xa3\xa0\xb0\xa1\x9f\xb0\ +\xa1\x9f\xb0\xa2\xa0\xb0\xa2\xa0\xb1\xa4\xa2\xb3\xa3\xa1\xb2\x8d\ +\x8e\xab\x6a\x72\xa0\x58\x63\x99\x52\x5a\x94\x52\x5a\x94\x5c\x69\ +\x97\x5a\x6a\x94\x40\x50\x7e\x39\x46\x75\x3d\x4a\x78\x48\x58\x7f\ +\x53\x6a\x89\x56\x72\x8f\x57\x72\x94\x48\x5a\x85\x4b\x56\x78\x3e\ +\x4d\x6c\x27\x3c\x5a\x21\x35\x53\x3c\x47\x63\x32\x3a\x55\x2c\x34\ +\x4e\x23\x29\x42\x1b\x1f\x37\x1f\x23\x39\x00\x00\x00\xe5\xe2\xeb\ +\xe3\xe0\xe9\xe2\xdf\xe9\xe3\xde\xe7\xe3\xde\xe7\xe1\xdc\xe5\xe2\ +\xdc\xe4\xe2\xdb\xe4\xe3\xdc\xe3\xe3\xdd\xe3\xe4\xdd\xe4\xe4\xdd\ +\xe4\xe4\xdd\xe4\xe4\xdc\xe4\xe5\xde\xe5\xe5\xde\xe5\xe6\xde\xe6\ +\xe7\xdf\xe8\xe7\xe0\xe9\xe6\xe1\xe9\xe7\xe2\xeb\xe8\xe3\xec\xe8\ +\xe4\xed\xe7\xe5\xee\xe7\xe4\xed\xe7\xe4\xed\xe8\xe3\xec\xe6\xe2\ +\xeb\xe5\xe0\xe9\xe4\xe0\xe8\xe5\xe0\xe7\xe6\xdf\xe6\xe6\xdf\xe6\ +\xe5\xde\xe5\xe5\xde\xe5\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xde\ +\xd8\xe1\xdd\xd7\xe0\xdb\xd6\xdf\xdc\xd8\xe0\xdf\xdd\xe3\xdd\xdb\ +\xe1\xdd\xdb\xe1\xd9\xd6\xde\xc9\xc2\xcc\xbe\xb4\xc1\xc8\xbd\xc9\ +\xe0\xda\xe0\xe2\xdc\xe1\xe4\xde\xe3\xe6\xe0\xe5\xe7\xe1\xe6\xe5\ +\xde\xe4\xc8\xc0\xca\xbb\xb3\xbd\xd6\xd0\xd6\xe1\xda\xe0\xdf\xd8\ +\xdf\xdd\xd6\xdd\xdc\xd5\xdc\xda\xd3\xdc\xd7\xd1\xda\xd4\xce\xd8\ +\xd2\xcd\xd7\xd2\xcd\xd7\xd1\xcb\xd6\xd2\xcd\xd7\xd4\xce\xd8\xd5\ +\xd0\xd9\xd7\xd1\xda\xd7\xd2\xdb\xd9\xd1\xdb\xd9\xd2\xdb\xda\xd3\ +\xda\xdb\xd4\xdb\xd9\xd2\xd9\xd7\xcf\xd6\xd5\xce\xd5\xd4\xcd\xd4\ +\xd1\xc9\xd2\xcd\xc5\xcf\xc9\xc1\xca\xc7\xbf\xc8\xc4\xbb\xc4\xc4\ +\xbb\xc5\xc2\xb9\xc4\xbc\xb3\xbf\xba\xb2\xbd\xbd\xb5\xc0\xc3\xbb\ +\xc5\xcc\xc4\xcc\xce\xc6\xce\xca\xc3\xca\xc1\xb9\xc2\xc3\xb9\xc2\ +\xcb\xc1\xc8\xd5\xca\xd0\xd9\xcf\xd5\xd4\xcb\xd2\xc9\xc2\xca\xb6\ +\xb0\xbc\x96\x94\xa7\x78\x7a\x90\x60\x64\x7b\x55\x59\x70\x4c\x52\ +\x69\x44\x4b\x62\x40\x47\x5e\x3e\x45\x5c\x3a\x41\x58\x3d\x43\x5a\ +\x38\x3f\x56\x36\x3d\x55\x37\x3e\x56\x37\x3e\x56\x38\x40\x56\x34\ +\x3c\x53\x35\x3c\x52\x44\x47\x5c\x6c\x67\x79\x9a\x90\x9e\xb4\xab\ +\xb6\xb5\xac\xb8\xb2\xa9\xb5\xae\xa5\xb2\xa9\xa2\xb1\xa6\xa0\xaf\ +\xa4\x9e\xae\xa3\x9f\xaf\xa3\xa0\xb0\xa6\xa3\xb2\xa8\xa4\xb3\xaa\ +\xa6\xb4\xab\xa7\xb5\xab\xa7\xb6\xad\xa9\xb8\xae\xab\xb8\xa9\xa6\ +\xb7\x98\x97\xaf\x79\x7d\x9f\x4e\x61\x84\x46\x60\x7e\x48\x61\x82\ +\x56\x65\x87\x69\x73\x92\x70\x7c\x99\x6a\x7d\x96\x64\x7a\x94\x63\ +\x79\x94\x64\x79\x96\x5d\x6e\x8e\x54\x62\x82\x3d\x4f\x6e\x28\x3b\ +\x5b\x1f\x30\x50\x40\x49\x65\x38\x3f\x5b\x29\x33\x4d\x20\x27\x41\ +\x23\x28\x3e\x2f\x34\x45\x00\x00\x00\xe5\xe2\xeb\xe3\xe1\xea\xe4\ +\xe0\xe9\xe4\xdf\xe8\xe4\xdf\xe8\xe4\xde\xe7\xe4\xdd\xe5\xe4\xdd\ +\xe4\xe5\xdd\xe4\xe5\xde\xe5\xe6\xde\xe4\xe6\xdf\xe4\xe5\xde\xe4\ +\xe5\xde\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe6\xdf\xe6\xe7\xe0\xe7\xe9\ +\xe2\xe9\xe9\xe2\xe9\xe8\xe4\xeb\xe9\xe5\xec\xea\xe5\xed\xe9\xe4\ +\xee\xe9\xe4\xee\xe9\xe4\xed\xe8\xe3\xec\xe7\xe2\xeb\xe6\xe1\xe9\ +\xe6\xe1\xe7\xe7\xe0\xe7\xe6\xdf\xe6\xe6\xdf\xe6\xe5\xde\xe5\xe6\ +\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe2\xdb\xe2\xe1\xda\xe1\xdf\xd9\ +\xe1\xde\xd9\xe1\xde\xdb\xe2\xde\xdc\xe2\xdd\xdb\xe1\xdc\xda\xe1\ +\xd5\xd0\xda\xc8\xc0\xcb\xc8\xc0\xcb\xda\xd2\xd9\xe0\xda\xdf\xe1\ +\xdb\xe0\xe3\xdd\xe2\xe5\xdf\xe4\xe6\xe0\xe5\xe6\xdf\xe4\xd1\xc9\ +\xd2\xc2\xba\xc4\xe0\xda\xdf\xe0\xd8\xde\xde\xd7\xdd\xdc\xd5\xdc\ +\xdb\xd4\xdb\xdb\xd3\xdb\xd6\xd0\xd9\xd3\xcf\xd8\xd2\xcd\xd6\xd1\ +\xcc\xd6\xd2\xcd\xd7\xd3\xce\xd7\xd4\xcf\xd8\xd6\xd1\xda\xd9\xd1\ +\xdb\xda\xd2\xdc\xda\xd2\xdc\xdb\xd2\xdd\xdb\xd3\xdd\xdb\xd4\xdb\ +\xd9\xd2\xd9\xd9\xd1\xd8\xd9\xd2\xd8\xd9\xd2\xd9\xd7\xd0\xd6\xd5\ +\xcc\xd4\xd1\xc9\xcf\xce\xc6\xcd\xc9\xc1\xc8\xc5\xbd\xc5\xc1\xb8\ +\xc2\xbd\xb5\xc0\xbd\xb5\xc0\xc0\xb7\xc2\xc3\xbb\xc4\xc4\xbb\xc5\ +\xbe\xb8\xc2\xba\xb5\xbf\xb1\xad\xb8\xb1\xac\xb8\xb6\xb0\xba\xbf\ +\xb7\xc0\xce\xc5\xcb\xd6\xcf\xd3\xd3\xca\xd0\xcd\xc5\xcb\xc0\xb8\ +\xc1\xab\xa5\xb2\x8f\x8d\x9f\x76\x77\x8c\x60\x63\x7a\x53\x58\x70\ +\x4d\x52\x68\x47\x4d\x62\x40\x46\x5b\x3d\x42\x57\x36\x3c\x51\x37\ +\x3d\x52\x37\x3d\x53\x36\x3c\x53\x36\x3c\x53\x30\x36\x4e\x2d\x33\ +\x4a\x2d\x33\x4a\x2f\x33\x4b\x5f\x5b\x6e\x99\x91\x9f\xab\xa2\xaf\ +\xaf\xa6\xb3\xac\xa4\xb3\xa7\xa1\xb0\xa3\x9d\xae\xa1\x9c\xac\xa0\ +\x9d\xad\xa3\xa0\xaf\xa8\xa3\xb2\xab\xa6\xb5\xad\xa9\xb6\xaf\xab\ +\xb7\xb0\xac\xb8\xb0\xac\xb8\xb3\xae\xba\xb4\xaf\xbb\xae\xab\xb8\ +\x99\x99\xac\x6a\x79\x90\x3e\x5e\x75\x47\x66\x7d\x6d\x7f\x94\x8f\ +\x98\xaa\x8b\x95\xa8\x7d\x8b\xa1\x77\x86\x9c\x74\x83\x9b\x70\x7d\ +\x97\x67\x73\x90\x5c\x67\x84\x4a\x57\x74\x34\x40\x5f\x23\x30\x4f\ +\x33\x3e\x5a\x38\x42\x5e\x2d\x36\x51\x29\x2f\x48\x35\x39\x4c\x30\ +\x33\x45\x00\x00\x00\xe6\xe3\xec\xe5\xe2\xeb\xe5\xe1\xea\xe5\xe0\ +\xe9\xe4\xdf\xe8\xe4\xdf\xe8\xe5\xdd\xe6\xe5\xdf\xe5\xe6\xde\xe6\ +\xe6\xdf\xe5\xe8\xe1\xe6\xe7\xe0\xe5\xe7\xe0\xe5\xe5\xde\xe3\xe6\ +\xdf\xe5\xe6\xdf\xe6\xe7\xe0\xe7\xe9\xe2\xe9\xea\xe2\xe9\xe9\xe4\ +\xea\xea\xe4\xeb\xe9\xe6\xeb\xea\xe5\xed\xea\xe6\xec\xea\xe5\xed\ +\xe9\xe5\xec\xe8\xe4\xea\xe6\xe2\xe9\xe6\xe2\xe8\xe7\xe1\xe7\xe7\ +\xe0\xe7\xe6\xdf\xe6\xe7\xe0\xe7\xe6\xdf\xe6\xe7\xe0\xe7\xe7\xe0\ +\xe7\xe5\xde\xe5\xe3\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xdd\xda\xdf\ +\xde\xda\xe0\xdd\xda\xe0\xdf\xdc\xe3\xdf\xdb\xe4\xd3\xcd\xd7\xce\ +\xc6\xd1\xdc\xd5\xdd\xe1\xda\xe0\xe0\xda\xe0\xe1\xdb\xe0\xe3\xdc\ +\xe1\xe4\xdd\xe2\xe5\xdf\xe4\xe6\xdf\xe3\xe0\xd9\xde\xd3\xcc\xd4\ +\xe1\xda\xdf\xdf\xd8\xdd\xdd\xd6\xdd\xdb\xd4\xdb\xda\xd3\xda\xda\ +\xd3\xda\xd8\xd0\xd9\xd5\xce\xd8\xd5\xce\xd7\xd5\xcd\xd7\xd2\xcd\ +\xd6\xd2\xcd\xd6\xd6\xce\xd8\xd7\xd0\xda\xd9\xd1\xdb\xda\xd3\xdb\ +\xdb\xd4\xdb\xdc\xd4\xdc\xdc\xd3\xde\xdb\xd3\xdb\xd9\xd2\xd9\xd9\ +\xd2\xd9\xda\xd3\xda\xdd\xd6\xda\xdc\xd5\xda\xd9\xd2\xd7\xd7\xcf\ +\xd5\xd4\xcd\xd2\xcf\xc7\xcd\xca\xc2\xc9\xc6\xbd\xc6\xc1\xb8\xc2\ +\xbe\xb6\xc1\xbf\xb6\xc1\xc1\xb7\xc2\xbb\xb4\xbf\xb6\xb2\xbd\xb6\ +\xb2\xbe\xb0\xac\xb8\xb1\xad\xb8\xb2\xae\xb9\xaf\xab\xb8\xb3\xae\ +\xbb\xcb\xc3\xca\xd3\xcc\xd1\xcf\xc5\xcc\xc6\xbd\xc4\xbc\xb3\xbc\ +\xb6\xad\xb7\xa7\xa0\xae\x8f\x8d\xa0\x7c\x7c\x93\x69\x6d\x84\x5f\ +\x64\x7c\x5b\x61\x78\x4d\x52\x68\x3e\x42\x56\x3c\x41\x56\x3a\x40\ +\x55\x36\x3d\x51\x33\x3a\x50\x28\x2e\x45\x2a\x30\x47\x2a\x32\x49\ +\x2a\x31\x48\x32\x38\x4f\x55\x55\x67\x78\x72\x83\x93\x8b\x9c\xa9\ +\xa2\xb1\xa9\xa2\xb1\xa3\x9d\xae\xa2\x9c\xad\xa2\x9e\xae\xa4\xa0\ +\xaf\xa8\xa3\xb2\xab\xa6\xb5\xad\xa8\xb5\xaf\xab\xb7\xb1\xad\xb9\ +\xb1\xad\xb9\xb3\xaf\xbb\xb4\xb0\xbc\xb4\xb0\xbc\xad\xab\xb8\x93\ +\x96\xa9\x64\x75\x8c\x3f\x61\x75\x54\x71\x83\x78\x89\x9b\x8f\x97\ +\xa8\x8b\x93\xa6\x87\x91\xa4\x7e\x89\x9e\x7a\x84\x9a\x77\x7d\x96\ +\x6e\x74\x8f\x5f\x65\x81\x46\x4d\x6a\x2e\x37\x54\x2d\x36\x4f\x37\ +\x40\x5c\x29\x2f\x48\x28\x2b\x40\x25\x27\x39\x22\x23\x35\x00\x00\ +\x00\xe6\xe3\xec\xe7\xe2\xeb\xe6\xe1\xea\xe5\xe0\xe9\xe5\xe0\xe9\ +\xe5\xdf\xe7\xe6\xdf\xe6\xe6\xdf\xe6\xe7\xe0\xe6\xe8\xe1\xe6\xe8\ +\xe1\xe6\xe8\xe1\xe6\xe7\xe0\xe5\xe7\xe0\xe5\xe7\xe0\xe5\xe7\xe0\ +\xe6\xe7\xe1\xe7\xe9\xe2\xe9\xea\xe3\xea\xeb\xe4\xeb\xeb\xe4\xeb\ +\xeb\xe5\xeb\xe9\xe5\xeb\xe9\xe5\xeb\xe9\xe5\xeb\xe9\xe5\xeb\xe8\ +\xe3\xea\xe8\xe2\xe8\xe8\xe0\xe8\xe8\xe1\xe8\xe7\xe0\xe7\xe6\xe0\ +\xe7\xe7\xe0\xe7\xe7\xe1\xe8\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe0\xe7\ +\xe4\xdd\xe4\xe3\xdc\xe3\xe1\xdc\xe3\xd9\xd4\xde\xdb\xd7\xdf\xdb\ +\xd8\xdf\xe3\xde\xe7\xdc\xd6\xe0\xd6\xce\xd8\xde\xd7\xdf\xe1\xda\ +\xe1\xe1\xda\xe0\xe0\xda\xdf\xdf\xda\xdf\xe1\xdb\xe0\xe3\xdc\xe1\ +\xe4\xdc\xe1\xe4\xdd\xe2\xe4\xdd\xe1\xe3\xdc\xdf\xe0\xd9\xde\xde\ +\xd7\xdc\xdd\xd6\xdb\xdc\xd5\xdb\xda\xd3\xda\xda\xd3\xda\xd9\xd2\ +\xd9\xd7\xd0\xd8\xd7\xd0\xd7\xd6\xcf\xd6\xd6\xcf\xd7\xd6\xcf\xd8\ +\xd7\xd0\xd9\xd8\xd1\xd9\xda\xd3\xda\xdb\xd4\xdb\xdc\xd5\xdc\xdb\ +\xd4\xdc\xdc\xd4\xdc\xdb\xd5\xdc\xda\xd3\xda\xda\xd3\xda\xdb\xd4\ +\xdb\xdd\xd5\xdc\xde\xd7\xdc\xdc\xd5\xda\xdb\xd4\xd9\xd9\xd2\xd7\ +\xd5\xce\xd3\xd0\xc8\xce\xcb\xc3\xca\xc5\xbd\xc6\xc1\xb9\xc3\xc1\ +\xb9\xc3\xc0\xb8\xc3\xbb\xb5\xc0\xb7\xb3\xbe\xb7\xb3\xbe\xb1\xaf\ +\xba\xad\xab\xb8\xaf\xad\xb9\xb0\xae\xba\xaa\xa9\xb8\xb2\xad\xbc\ +\xc5\xbe\xc6\xcc\xc5\xca\xc6\xbe\xc5\xbf\xb6\xbf\xbb\xb2\xbc\xba\ +\xb1\xbb\xb6\xae\xb9\xaf\xa7\xb4\x9d\x99\xa9\x83\x82\x97\x74\x78\ +\x8e\x6c\x70\x88\x5f\x63\x7b\x51\x55\x6b\x48\x4d\x62\x42\x48\x5d\ +\x3c\x41\x56\x33\x39\x4f\x2f\x36\x4c\x2b\x33\x49\x2d\x35\x4b\x2e\ +\x35\x4c\x33\x38\x4f\x3e\x43\x5a\x63\x61\x77\x86\x82\x91\x9e\x98\ +\xa7\xa5\x9f\xaf\xa5\xa0\xb0\xa6\xa1\xb1\xa8\xa3\xb2\xaa\xa6\xb4\ +\xac\xa7\xb6\xad\xa9\xb6\xaf\xab\xb7\xb0\xac\xb8\xb0\xac\xb8\xb2\ +\xae\xba\xb3\xaf\xbb\xb4\xb0\xbc\xb3\xb0\xbd\xab\xab\xb8\x8a\x8e\ +\xa3\x58\x6e\x84\x42\x64\x76\x5e\x77\x88\x82\x8e\x9f\x8e\x96\xa6\ +\x8d\x95\xa5\x86\x8d\xa0\x7e\x87\x9b\x7c\x83\x98\x75\x7a\x92\x67\ +\x6b\x84\x51\x55\x6e\x34\x38\x50\x1b\x1c\x2d\x26\x2c\x43\x2a\x2f\ +\x46\x25\x28\x3b\x19\x19\x2a\x14\x15\x22\x00\x00\x00\xe8\xe4\xed\ +\xe8\xe3\xec\xe6\xe1\xea\xe5\xe0\xe9\xe6\xe1\xe9\xe6\xe0\xe7\xe7\ +\xdf\xe7\xe7\xe0\xe7\xe8\xe1\xe6\xe8\xe1\xe6\xe9\xe2\xe7\xe9\xe2\ +\xe7\xe8\xe1\xe6\xe8\xe1\xe6\xe8\xe1\xe6\xe9\xe2\xe6\xe8\xe2\xe8\ +\xe9\xe3\xe9\xea\xe3\xea\xeb\xe4\xeb\xea\xe3\xea\xeb\xe4\xeb\xea\ +\xe4\xea\xe9\xe4\xea\xe8\xe4\xea\xe8\xe3\xea\xe9\xe2\xe9\xe9\xe1\ +\xe9\xe8\xe1\xe8\xe7\xe0\xe7\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe2\xe8\ +\xe8\xe1\xe8\xe9\xe2\xe9\xe8\xe1\xe8\xe8\xe0\xe8\xe6\xdf\xe6\xe5\ +\xde\xe5\xe3\xde\xe6\xd5\xd1\xdb\xd6\xd3\xdc\xde\xda\xe2\xe3\xdf\ +\xe7\xde\xd9\xe2\xe1\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\xe1\xdb\xe0\ +\xe1\xdb\xe0\xdf\xd9\xde\xe0\xda\xdf\xe2\xdb\xe0\xe3\xdc\xe0\xe3\ +\xdc\xe0\xe3\xdc\xdf\xe2\xdb\xde\xe0\xd9\xdd\xde\xd7\xdc\xdc\xd6\ +\xdb\xdd\xd6\xda\xdc\xd4\xdb\xda\xd3\xda\xd9\xd2\xd9\xd8\xd2\xd9\ +\xd8\xd1\xd8\xd8\xd0\xd7\xd7\xd0\xd7\xd8\xd1\xd8\xd8\xd1\xd8\xd9\ +\xd2\xd9\xda\xd4\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\ +\xdc\xdc\xd5\xdc\xdb\xd4\xdb\xdb\xd4\xdb\xdb\xd4\xdb\xdd\xd6\xdb\ +\xde\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xdc\xd5\xda\xda\xd3\xd8\xd6\ +\xce\xd4\xd0\xc8\xcf\xca\xc2\xca\xc6\xbe\xc8\xc5\xbd\xc7\xc5\xbd\ +\xc7\xbc\xb6\xc1\xb8\xb4\xbf\xb7\xb2\xbd\xb4\xb1\xbd\xae\xad\xbb\ +\xae\xad\xbb\xb1\xaf\xbb\xae\xae\xbc\xa7\xa7\xb8\xb3\xb0\xbd\xc2\ +\xbb\xc3\xc6\xbe\xc5\xc2\xb9\xc1\xbd\xb5\xbe\xbd\xb4\xbe\xbb\xb2\ +\xbc\xba\xb1\xbc\xb8\xb0\xba\xb0\xa9\xb6\xa9\xa3\xb2\x9e\x9b\xac\ +\x8b\x8c\xa0\x74\x75\x8d\x5f\x62\x78\x49\x4d\x62\x41\x46\x5b\x42\ +\x48\x5e\x3e\x45\x5a\x35\x3c\x50\x31\x36\x4b\x2f\x35\x4a\x2f\x35\ +\x4b\x34\x3b\x51\x3d\x43\x5b\x4c\x4f\x65\x6a\x68\x7b\x89\x85\x97\ +\x9f\x9b\xaa\xa9\xa5\xb4\xaa\xa6\xb5\xad\xa8\xb6\xaf\xaa\xb8\xb0\ +\xab\xba\xb1\xad\xba\xb2\xae\xba\xb2\xae\xba\xb2\xae\xba\xb2\xae\ +\xba\xb2\xaf\xbb\xb1\xb0\xbc\xad\xad\xb9\xa2\xa2\xb2\x7e\x88\x9c\ +\x4c\x69\x7d\x47\x68\x78\x6b\x7e\x8f\x85\x90\x9f\x8b\x93\xa2\x86\ +\x8f\x9f\x80\x87\x9a\x7c\x83\x96\x75\x7b\x90\x67\x6b\x82\x52\x58\ +\x6e\x36\x38\x4a\x1a\x1b\x2c\x27\x2e\x47\x26\x2d\x45\x1d\x20\x33\ +\x13\x14\x23\x14\x14\x22\x00\x00\x00\xea\xe5\xee\xe9\xe4\xed\xe8\ +\xe3\xec\xe6\xe1\xea\xe6\xe1\xe9\xe6\xe0\xe8\xe6\xe0\xe7\xe9\xe2\ +\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe2\xe7\xe8\xe1\xe6\ +\xe9\xe2\xe7\xe8\xe1\xe6\xe9\xe2\xe7\xe9\xe2\xe8\xea\xe4\xe9\xea\ +\xe4\xea\xeb\xe5\xea\xea\xe4\xea\xea\xe4\xea\xeb\xe3\xeb\xe9\xe3\ +\xeb\xea\xe3\xea\xe9\xe3\xe9\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe0\xe7\ +\xe7\xe0\xe7\xe9\xe2\xe9\xe9\xe1\xe8\xe7\xe3\xe9\xe9\xe2\xe9\xe9\ +\xe2\xe9\xe8\xe2\xe9\xe8\xe1\xe8\xe7\xe0\xe7\xe5\xe0\xe6\xe5\xe2\ +\xe9\xd3\xce\xd8\xd9\xd3\xdd\xe4\xe0\xe7\xe5\xe0\xe7\xe3\xdc\xe3\ +\xe3\xdb\xe2\xe3\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe1\xe1\xdb\xe0\xe0\ +\xda\xdf\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xdf\xe2\xdb\xde\xe2\xdb\ +\xde\xe1\xdb\xde\xe1\xd8\xdb\xdf\xd7\xdc\xdd\xd6\xdb\xdc\xd6\xdb\ +\xdc\xd5\xda\xdb\xd5\xda\xda\xd2\xd9\xd9\xd1\xd8\xd9\xd1\xd8\xd9\ +\xd1\xd8\xd9\xd1\xd8\xd9\xd1\xd8\xda\xd2\xd9\xda\xd3\xda\xdc\xd4\ +\xdb\xdd\xd6\xdd\xdc\xd5\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xdc\xd5\xdc\ +\xdc\xd5\xdc\xdc\xd5\xdc\xdc\xd5\xdc\xde\xd7\xdc\xde\xd7\xdc\xde\ +\xd7\xdc\xde\xd7\xdc\xde\xd7\xdc\xdd\xd6\xdb\xda\xd3\xd8\xd6\xcf\ +\xd4\xd1\xc9\xd0\xcc\xc4\xcc\xca\xc2\xcc\xca\xc1\xcb\xc0\xba\xc3\ +\xb8\xb4\xbf\xb7\xb3\xbe\xb7\xb3\xbe\xb4\xb1\xbd\xb3\xb1\xbd\xb2\ +\xb0\xbc\xb3\xb0\xbe\xae\xad\xbc\xb3\xb0\xbd\xbb\xb5\xbf\xc1\xb8\ +\xc1\xc4\xbc\xc3\xc1\xb9\xc0\xbe\xb5\xbe\xbe\xb5\xbe\xbc\xb3\xbe\ +\xbd\xb4\xbe\xbd\xb4\xbe\xbd\xb4\xbe\xbc\xb4\xbe\xb6\xae\xba\xa4\ +\xa0\xb0\x89\x87\x9c\x5f\x60\x75\x4d\x50\x65\x52\x56\x6d\x4c\x50\ +\x66\x39\x3e\x53\x31\x35\x4a\x32\x37\x4b\x32\x38\x4b\x2f\x35\x4a\ +\x2e\x35\x4c\x31\x38\x51\x32\x38\x51\x4b\x4d\x61\x74\x73\x84\x93\ +\x90\x9f\xaa\xa6\xb5\xae\xab\xb9\xb1\xad\xbc\xb3\xae\xbd\xb5\xb1\ +\xbd\xb6\xb2\xbe\xb7\xb3\xbf\xb5\xb1\xbd\xb3\xb0\xbc\xb3\xb0\xbb\ +\xb2\xb0\xbb\xad\xad\xb9\xa5\xa6\xb3\x95\x9a\xa9\x74\x83\x96\x47\ +\x66\x77\x50\x6d\x7d\x76\x85\x95\x88\x92\xa0\x84\x8d\x9b\x7e\x86\ +\x98\x79\x81\x93\x71\x77\x8a\x61\x68\x7b\x4d\x54\x69\x43\x48\x5c\ +\x36\x3d\x51\x30\x37\x4d\x26\x2c\x41\x1f\x23\x35\x19\x1d\x2e\x18\ +\x1b\x2b\x00\x00\x00\xeb\xe6\xef\xe9\xe4\xed\xe8\xe3\xec\xe8\xe3\ +\xeb\xe7\xe2\xe9\xe8\xe1\xe8\xe8\xe1\xe7\xe9\xe2\xe7\xea\xe3\xe8\ +\xea\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe7\xe9\xe2\xe6\xe8\xe1\xe6\xe9\ +\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\xeb\xe4\xe9\xec\xe5\xea\xec\xe5\ +\xea\xec\xe5\xeb\xeb\xe5\xeb\xea\xe4\xea\xeb\xe3\xea\xeb\xe4\xeb\ +\xea\xe4\xea\xeb\xe4\xeb\xe9\xe2\xe9\xe9\xe2\xe9\xe9\xe2\xe9\xe8\ +\xe1\xe8\xe9\xe2\xe9\xe9\xe3\xea\xea\xe2\xe9\xea\xe3\xea\xea\xe3\ +\xea\xea\xe3\xea\xe6\xe0\xe7\xe5\xe1\xe7\xe4\xe2\xe9\xe0\xdc\xe4\ +\xe4\xe0\xe6\xe5\xde\xe5\xe3\xdd\xe3\xe3\xdd\xe4\xe3\xdd\xe4\xe3\ +\xdb\xe2\xe3\xdc\xe2\xe3\xdd\xe1\xe2\xdc\xe1\xe1\xda\xdf\xe2\xdb\ +\xe0\xe1\xda\xdf\xe1\xda\xdf\xe2\xdb\xdf\xe1\xda\xdd\xe2\xd9\xdc\ +\xdf\xd8\xdb\xdf\xd8\xdb\xdf\xd6\xdb\xde\xd5\xda\xdc\xd5\xda\xdc\ +\xd4\xd9\xda\xd3\xd8\xd9\xd3\xd8\xda\xd3\xd8\xd9\xd2\xd7\xda\xd3\ +\xd8\xda\xd3\xd9\xda\xd3\xd9\xdc\xd4\xdb\xdd\xd5\xdc\xdd\xd6\xdd\ +\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xdd\xd6\xdd\xdd\ +\xd6\xdd\xdd\xd6\xdd\xde\xd7\xdc\xdf\xd8\xdc\xdf\xd8\xdd\xe0\xd9\ +\xde\xe0\xd9\xde\xdf\xd8\xdd\xde\xd7\xdc\xdb\xd4\xd9\xd7\xd0\xd6\ +\xd4\xcc\xd3\xce\xc7\xce\xcb\xc4\xcb\xbf\xba\xc4\xb5\xb2\xbe\xb4\ +\xb1\xbd\xb5\xb2\xbd\xb5\xb2\xbe\xb4\xb2\xbe\xb5\xb3\xbf\xb8\xb6\ +\xc2\xb6\xb4\xc0\xb5\xb2\xbe\xbb\xb6\xc0\xbd\xb7\xc1\xc1\xb9\xc2\ +\xc3\xbb\xc2\xc3\xb9\xc1\xc2\xb8\xc0\xc0\xb8\xc0\xc0\xb8\xc0\xc1\ +\xb8\xc0\xc1\xb9\xc0\xc1\xb8\xc1\xc0\xb7\xc1\xbe\xb5\xc0\xb4\xad\ +\xb9\x9a\x95\xa7\x6d\x6e\x84\x5b\x5f\x75\x57\x58\x6e\x47\x4a\x5f\ +\x3d\x40\x53\x36\x3a\x4d\x36\x3c\x4f\x31\x37\x4d\x29\x2e\x45\x2c\ +\x32\x49\x2e\x35\x4c\x2f\x35\x4d\x40\x45\x5a\x62\x63\x76\x80\x7f\ +\x91\xa2\xa0\xad\xb1\xaf\xbb\xb6\xb3\xbe\xb9\xb5\xc0\xba\xb6\xc2\ +\xbc\xb7\xc2\xbc\xb7\xc1\xbb\xb5\xc0\xb9\xb5\xbf\xb7\xb3\xbe\xb1\ +\xb0\xbb\xa7\xa7\xb3\x9d\xa0\xac\x8d\x94\xa4\x69\x7c\x8d\x44\x65\ +\x75\x56\x72\x80\x74\x85\x93\x7e\x89\x98\x78\x82\x93\x72\x7c\x8c\ +\x67\x71\x82\x58\x63\x75\x4a\x53\x66\x41\x48\x5c\x46\x4c\x60\x32\ +\x37\x4a\x20\x21\x35\x1f\x22\x35\x17\x1c\x2e\x17\x1d\x2e\x00\x00\ +\x00\xed\xe8\xef\xeb\xe6\xee\xe9\xe4\xed\xe8\xe3\xeb\xe9\xe3\xea\ +\xe8\xe2\xe8\xe8\xe3\xe8\xea\xe3\xe8\xea\xe3\xe8\xeb\xe4\xe7\xe9\ +\xe2\xe5\xea\xe2\xe6\xe9\xe3\xe6\xe9\xe2\xe7\xea\xe3\xe8\xea\xe3\ +\xe8\xea\xe3\xe8\xec\xe5\xea\xec\xe5\xea\xec\xe6\xeb\xec\xe6\xeb\ +\xeb\xe6\xeb\xeb\xe5\xeb\xeb\xe4\xeb\xeb\xe4\xeb\xeb\xe4\xeb\xeb\ +\xe5\xeb\xeb\xe4\xeb\xea\xe3\xea\xea\xe3\xea\xe9\xe2\xe9\xea\xe3\ +\xea\xea\xe2\xea\xea\xe3\xea\xea\xe3\xea\xea\xe3\xea\xea\xe3\xe9\ +\xe6\xe0\xe7\xe6\xe2\xe8\xea\xe7\xec\xe9\xe5\xea\xe4\xde\xe5\xe4\ +\xdd\xe4\xe4\xde\xe5\xe3\xde\xe4\xe3\xdd\xe4\xe2\xdc\xe3\xe3\xdc\ +\xe2\xe2\xdc\xe1\xe2\xdc\xe1\xe2\xda\xdf\xe1\xda\xdf\xe2\xdb\xe0\ +\xe2\xdb\xe0\xe2\xdb\xe0\xe1\xda\xdd\xe1\xd8\xdb\xe1\xd8\xdb\xdf\ +\xd7\xda\xdf\xd6\xd9\xde\xd5\xd9\xdd\xd4\xd9\xdc\xd3\xd8\xdb\xd3\ +\xd8\xda\xd3\xd7\xd9\xd3\xd7\xda\xd2\xd8\xda\xd2\xd8\xda\xd3\xd8\ +\xda\xd4\xd8\xdc\xd5\xda\xdc\xd5\xdb\xde\xd6\xde\xdd\xd8\xde\xde\ +\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd7\xde\xde\xd8\xde\xde\xd8\ +\xde\xde\xd7\xdc\xdf\xd8\xdd\xde\xd7\xdc\xe0\xd9\xde\xe0\xd9\xde\ +\xe0\xd9\xde\xdf\xd8\xdd\xde\xd7\xdc\xdc\xd5\xda\xd8\xd1\xd7\xd2\ +\xcb\xd2\xc2\xbb\xc6\xb4\xb2\xbf\xb0\xaf\xbd\xb0\xae\xbb\xb2\xb0\ +\xbc\xb3\xb1\xbd\xb4\xb2\xbe\xb6\xb4\xc1\xb9\xb7\xc3\xb8\xb6\xc2\ +\xb6\xb3\xbf\xb9\xb4\xc0\xbe\xb9\xc2\xc0\xb9\xc2\xc5\xbd\xc4\xc8\ +\xbe\xc3\xc6\xbb\xc2\xc7\xbb\xc2\xc7\xbb\xc1\xc6\xbb\xc2\xc6\xbb\ +\xc2\xc6\xbb\xc3\xc4\xbb\xc3\xc3\xba\xc3\xc2\xba\xc4\xbe\xb6\xc2\ +\xac\xa7\xb6\x94\x92\xa4\x7c\x7b\x90\x61\x61\x75\x48\x4a\x5d\x3c\ +\x3f\x52\x3c\x40\x53\x3d\x43\x58\x37\x3d\x51\x2d\x33\x47\x2b\x32\ +\x46\x31\x38\x4d\x31\x39\x4e\x3a\x40\x56\x4e\x52\x67\x6a\x6b\x7d\ +\x8d\x8b\x9a\xaa\xa6\xb2\xba\xb6\xc1\xbf\xba\xc4\xc0\xbb\xc4\xc2\ +\xbc\xc6\xc3\xbd\xc6\xc1\xbb\xc4\xbc\xb8\xc1\xb7\xb3\xbd\xad\xad\ +\xb6\xa2\xa3\xae\x99\x9c\xa9\x88\x91\xa0\x62\x78\x89\x47\x68\x77\ +\x5f\x78\x85\x75\x84\x92\x71\x7f\x8e\x65\x75\x84\x5d\x6b\x7b\x52\ +\x5f\x71\x4e\x59\x6c\x4f\x56\x6a\x48\x4f\x63\x3b\x40\x54\x28\x2d\ +\x42\x22\x27\x3b\x1e\x24\x38\x1b\x22\x36\x00\x00\x00\xec\xe8\xee\ +\xeb\xe7\xed\xe9\xe5\xec\xe9\xe5\xeb\xea\xe3\xea\xe9\xe2\xe9\xe9\ +\xe2\xe7\xea\xe3\xe8\xea\xe4\xe8\xeb\xe3\xe6\xeb\xe2\xe5\xeb\xe3\ +\xe5\xeb\xe2\xe6\xea\xe3\xe7\xe9\xe2\xe7\xea\xe3\xe8\xea\xe3\xe8\ +\xec\xe5\xea\xed\xe6\xeb\xed\xe6\xeb\xec\xe6\xec\xec\xe6\xeb\xec\ +\xe5\xec\xec\xe5\xec\xeb\xe5\xeb\xeb\xe4\xeb\xec\xe5\xec\xec\xe5\ +\xec\xec\xe5\xec\xea\xe3\xea\xea\xe3\xea\xe9\xe3\xe9\xe9\xe2\xe9\ +\xe9\xe2\xe9\xea\xe3\xea\xea\xe3\xea\xea\xe3\xe9\xe8\xe2\xe8\xe7\ +\xe1\xe7\xe5\xe0\xe6\xe4\xdd\xe4\xe3\xdd\xe4\xe3\xde\xe5\xe3\xde\ +\xe4\xe2\xdf\xe5\xe3\xdd\xe4\xe3\xdd\xe4\xe2\xdd\xe2\xe2\xdc\xe1\ +\xe2\xdc\xe1\xe1\xda\xdf\xe2\xdb\xe0\xe3\xdc\xe1\xe3\xdc\xe1\xe2\ +\xdb\xe0\xe0\xd9\xdd\xe1\xd7\xda\xdf\xd6\xd9\xdf\xd6\xd9\xdf\xd6\ +\xd9\xde\xd5\xd8\xdd\xd4\xd7\xdd\xd3\xd7\xdc\xd2\xd8\xdb\xd2\xd7\ +\xdb\xd1\xd7\xda\xd2\xd7\xdb\xd2\xd8\xd9\xd3\xd8\xda\xd3\xd8\xdc\ +\xd5\xda\xdd\xd6\xdb\xde\xd7\xdd\xde\xd8\xdd\xde\xd7\xde\xde\xd7\ +\xde\xdf\xd8\xdf\xde\xd7\xde\xdf\xd8\xdf\xdf\xd8\xde\xdf\xd8\xdd\ +\xde\xd7\xdc\xde\xd7\xdc\xe0\xd9\xde\xdf\xd8\xdd\xe0\xd9\xde\xdf\ +\xd9\xde\xe0\xd9\xde\xde\xd8\xde\xdb\xd5\xdb\xd6\xcf\xd6\xc0\xba\ +\xc5\xb4\xb1\xbe\xb2\xb0\xbd\xb1\xaf\xbc\xb4\xb1\xbd\xb3\xb1\xbe\ +\xb5\xb3\xbf\xb8\xb7\xc2\xbc\xba\xc5\xbd\xbb\xc6\xb9\xb7\xc3\xb8\ +\xb4\xc0\xbd\xb8\xc2\xc1\xba\xc3\xc6\xbd\xc4\xce\xc3\xc6\xce\xc1\ +\xc5\xcd\xc0\xc3\xcd\xc0\xc3\xcc\xbf\xc3\xcc\xbf\xc3\xcc\xc0\xc6\ +\xca\xc0\xc7\xca\xc0\xc8\xc9\xc1\xc9\xc8\xc0\xcb\xc8\xc1\xca\xc5\ +\xbf\xc9\xbc\xb7\xc3\xa4\xa0\xaf\x7a\x78\x8b\x4f\x50\x65\x3f\x43\ +\x57\x3e\x44\x58\x3f\x45\x59\x33\x39\x4c\x2a\x30\x44\x2f\x36\x4a\ +\x2f\x36\x4b\x31\x38\x4e\x38\x3f\x56\x3e\x44\x5b\x4a\x4b\x5e\x6e\ +\x6b\x7b\x94\x90\x9d\xb1\xab\xb5\xc2\xbc\xc5\xc9\xc2\xc9\xc9\xc2\ +\xca\xc6\xbf\xc6\xc0\xba\xc1\xba\xb6\xbd\xb3\xaf\xb8\xa9\xa8\xb1\ +\x9f\xa1\xaa\x96\x99\xa5\x83\x8c\x9b\x5b\x74\x84\x43\x68\x75\x59\ +\x74\x80\x66\x7a\x86\x5d\x6d\x7c\x4e\x5b\x6b\x46\x4e\x60\x4e\x57\ +\x6a\x5d\x62\x75\x52\x58\x6c\x3d\x42\x59\x3d\x42\x5a\x3c\x42\x5b\ +\x2e\x36\x50\x2a\x31\x4a\x00\x00\x00\xed\xe9\xef\xec\xe8\xee\xeb\ +\xe7\xed\xec\xe4\xeb\xea\xe3\xeb\xeb\xe4\xea\xeb\xe4\xe9\xea\xe3\ +\xe8\xea\xe2\xe6\xeb\xe2\xe5\xec\xe3\xe6\xec\xe3\xe6\xeb\xe2\xe5\ +\xea\xe2\xe6\xe9\xe2\xe8\xe9\xe2\xe7\xea\xe3\xe8\xec\xe5\xea\xec\ +\xe5\xea\xed\xe6\xeb\xed\xe7\xec\xee\xe8\xed\xee\xe7\xed\xed\xe6\ +\xed\xed\xe5\xed\xed\xe6\xed\xec\xe5\xed\xed\xe6\xec\xec\xe5\xeb\ +\xeb\xe4\xeb\xeb\xe4\xeb\xea\xe3\xea\xe9\xe2\xe9\xe7\xe0\xe7\xe8\ +\xe1\xe8\xe8\xe1\xe8\xe8\xe1\xe8\xe7\xe0\xe7\xe6\xdf\xe6\xe4\xdd\ +\xe4\xe2\xdd\xe4\xe1\xde\xe4\xe1\xdd\xe3\xe3\xde\xe5\xe4\xdd\xe4\ +\xe3\xdc\xe3\xe3\xdc\xe3\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xe2\ +\xdb\xdf\xe1\xda\xdf\xe2\xdb\xe0\xe2\xdb\xe0\xe1\xda\xdf\xe0\xd9\ +\xdc\xdf\xd7\xda\xde\xd5\xd8\xdd\xd4\xd7\xdd\xd4\xd7\xdd\xd4\xd7\ +\xdc\xd3\xd6\xdb\xd2\xd5\xdb\xd2\xd5\xdb\xd1\xd6\xda\xd0\xd6\xdb\ +\xd1\xd7\xdb\xd2\xd8\xda\xd3\xd8\xd9\xd2\xd7\xdc\xd5\xda\xdc\xd5\ +\xda\xdc\xd5\xda\xde\xd7\xdc\xdf\xd7\xdc\xdf\xd6\xdd\xdf\xd8\xdf\ +\xdd\xd6\xdd\xde\xd7\xde\xde\xd8\xde\xde\xd7\xdc\xdf\xd8\xdd\xde\ +\xd7\xdc\xdd\xd6\xdb\xde\xd7\xdc\xdf\xd8\xdd\xdf\xd9\xde\xe0\xda\ +\xdf\xdf\xd9\xde\xdf\xd9\xde\xda\xd3\xd9\xc4\xbd\xc6\xb7\xb3\xbf\ +\xb5\xb1\xbc\xb3\xb0\xbc\xb5\xb1\xbc\xb7\xb3\xbe\xb8\xb6\xc1\xbc\ +\xb9\xc4\xbf\xbb\xc6\xc1\xbd\xc8\xbe\xba\xc6\xb9\xb6\xc1\xbb\xb6\ +\xc1\xc2\xbc\xc5\xc5\xbe\xc5\xd1\xc5\xc7\xd4\xc7\xc9\xd3\xc5\xc7\ +\xd3\xc5\xc6\xd2\xc4\xc6\xd2\xc5\xc8\xd1\xc6\xca\xd1\xc6\xcc\xd0\ +\xc6\xcd\xcf\xc7\xcd\xce\xc7\xce\xcf\xc7\xd0\xce\xc7\xd0\xcf\xc7\ +\xd1\xcc\xc6\xd0\xc0\xbb\xc7\xa2\x9c\xad\x6b\x69\x7d\x4f\x52\x67\ +\x4d\x53\x69\x40\x46\x5c\x36\x3e\x53\x36\x3e\x52\x33\x3a\x4f\x30\ +\x37\x4d\x30\x37\x4e\x2f\x36\x4c\x2c\x32\x47\x36\x3a\x4f\x52\x52\ +\x64\x73\x70\x7d\x92\x8e\x98\xac\xa6\xad\xb6\xaf\xb5\xbc\xb6\xbc\ +\xb3\xad\xb4\xa6\xa2\xa9\xa5\xa2\xa8\xa2\xa1\xaa\xa0\xa1\xaa\x99\ +\x9b\xa4\x92\x95\xa0\x7c\x87\x97\x53\x70\x80\x41\x66\x73\x49\x63\ +\x70\x42\x4d\x5d\x34\x3b\x4c\x30\x36\x48\x38\x3e\x52\x4c\x50\x63\ +\x5e\x60\x72\x44\x48\x60\x31\x39\x54\x3d\x44\x5e\x52\x5a\x75\x56\ +\x5b\x74\x00\x00\x00\xee\xea\xef\xee\xe8\xef\xed\xe6\xed\xec\xe5\ +\xeb\xec\xe5\xeb\xeb\xe4\xea\xeb\xe4\xe9\xea\xe3\xe8\xea\xe2\xe6\ +\xeb\xe3\xe5\xec\xe3\xe6\xec\xe3\xe6\xea\xe2\xe5\xe9\xe2\xe5\xe9\ +\xe2\xe7\xe9\xe2\xe7\xea\xe3\xe8\xec\xe5\xea\xed\xe6\xeb\xed\xe7\ +\xec\xee\xe8\xed\xee\xe8\xed\xee\xe8\xee\xee\xe7\xed\xee\xe7\xee\ +\xee\xe7\xed\xed\xe6\xed\xed\xe7\xec\xec\xe6\xeb\xec\xe5\xeb\xeb\ +\xe6\xea\xea\xe4\xe9\xe9\xe2\xe9\xe7\xe0\xe7\xe7\xe0\xe7\xe7\xe1\ +\xe7\xe7\xe0\xe7\xe6\xdf\xe6\xe4\xde\xe5\xe4\xde\xe5\xe1\xdc\xe6\ +\xe1\xdc\xe5\xe1\xdd\xe4\xe3\xdf\xe4\xe3\xde\xe4\xe4\xdd\xe4\xe4\ +\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe1\xe2\xdb\xe0\xe1\xda\xdf\xe2\xdb\ +\xe0\xe2\xdb\xe0\xe2\xdb\xe0\xe0\xd9\xde\xdf\xd7\xdb\xdf\xd6\xd9\ +\xde\xd5\xd8\xde\xd4\xd7\xde\xd3\xd6\xdc\xd3\xd6\xdc\xd2\xd5\xda\ +\xd1\xd4\xda\xd1\xd4\xd9\xd0\xd4\xda\xd0\xd6\xdc\xd2\xd8\xdc\xd2\ +\xd8\xdc\xd3\xd9\xda\xd3\xd8\xdb\xd4\xd9\xdb\xd4\xd9\xdb\xd4\xd9\ +\xdc\xd5\xda\xdd\xd6\xdb\xde\xd6\xdd\xdf\xd7\xde\xdd\xd7\xdd\xdd\ +\xd7\xdd\xde\xd7\xdd\xde\xd7\xdc\xdd\xd6\xdb\xdd\xd6\xdb\xdc\xd5\ +\xda\xdc\xd5\xda\xde\xd7\xdc\xde\xd8\xdd\xdf\xd9\xde\xde\xd8\xdd\ +\xdf\xd9\xdd\xde\xd8\xdd\xca\xc3\xcb\xb9\xb3\xbe\xb6\xb1\xbc\xb5\ +\xb0\xbb\xb5\xb1\xbc\xb8\xb4\xbf\xbb\xb7\xc2\xbf\xbb\xc6\xc0\xbd\ +\xc8\xc1\xbd\xc8\xc1\xbd\xc8\xbc\xb9\xc5\xba\xb6\xc1\xc0\xbb\xc4\ +\xc7\xc0\xc8\xcf\xc5\xc8\xd7\xc8\xc9\xd8\xca\xcb\xd9\xca\xcb\xd8\ +\xca\xcb\xd9\xcb\xcd\xd9\xcc\xcf\xd7\xcc\xd0\xd6\xcc\xd1\xd5\xcc\ +\xd2\xd4\xcd\xd2\xd4\xcd\xd3\xd3\xcc\xd2\xd4\xcd\xd4\xd5\xce\xd5\ +\xd5\xce\xd5\xd1\xc9\xd2\xbe\xb7\xc3\x92\x8d\x9e\x6e\x6f\x85\x55\ +\x5a\x72\x49\x50\x69\x43\x4a\x61\x39\x40\x54\x36\x3e\x52\x33\x3a\ +\x51\x2f\x36\x4c\x2c\x32\x47\x28\x2c\x42\x2c\x31\x47\x33\x36\x4b\ +\x45\x45\x56\x55\x51\x5d\x5e\x58\x62\x6a\x65\x6c\x62\x5e\x66\x5e\ +\x5b\x66\x58\x59\x63\x5d\x63\x6f\x7b\x83\x8e\x96\x98\xa1\x93\x95\ +\x9f\x89\x8f\x9b\x73\x82\x92\x4b\x69\x77\x32\x45\x52\x2b\x33\x43\ +\x2c\x32\x44\x28\x2d\x40\x2b\x30\x44\x34\x38\x4c\x57\x56\x68\x6d\ +\x6c\x7f\x4b\x4e\x67\x38\x3d\x57\x50\x56\x6f\x5f\x61\x76\x00\x00\ +\x00\xef\xeb\xf0\xef\xe8\xee\xee\xe6\xee\xec\xe5\xeb\xea\xe4\xea\ +\xea\xe4\xe8\xeb\xe4\xe9\xe9\xe2\xe7\xe9\xe3\xe6\xeb\xe2\xe5\xec\ +\xe3\xe6\xec\xe3\xe6\xeb\xe2\xe5\xe9\xe3\xe6\xea\xe3\xe7\xea\xe3\ +\xe8\xeb\xe4\xe9\xec\xe5\xea\xed\xe6\xeb\xee\xe8\xed\xee\xe8\xed\ +\xef\xe8\xee\xef\xe8\xef\xef\xe9\xee\xef\xe8\xee\xee\xe8\xed\xee\ +\xe8\xed\xed\xe7\xec\xec\xe6\xeb\xeb\xe5\xeb\xeb\xe5\xea\xea\xe4\ +\xe9\xe9\xe2\xe9\xe7\xe0\xe7\xe7\xe0\xe7\xe7\xe0\xe7\xe5\xde\xe5\ +\xe5\xdf\xe6\xe3\xde\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe2\xdd\xe6\xe1\ +\xdc\xe6\xe2\xde\xe4\xe3\xdf\xe5\xe4\xde\xe5\xe5\xde\xe5\xe3\xdc\ +\xe3\xe1\xdb\xe1\xe1\xdb\xe0\xe0\xd9\xde\xe1\xda\xdf\xe0\xd9\xde\ +\xdf\xd8\xdd\xde\xd8\xdc\xdf\xd6\xdb\xde\xd5\xd8\xdd\xd4\xd7\xdd\ +\xd3\xd6\xdc\xd1\xd4\xdb\xd0\xd3\xda\xd0\xd3\xd9\xcf\xd2\xd8\xcf\ +\xd2\xd9\xcf\xd4\xda\xd0\xd6\xdb\xd1\xd7\xdb\xd1\xd7\xdb\xd2\xd8\ +\xda\xd2\xd8\xda\xd3\xd8\xda\xd3\xd8\xdb\xd4\xd9\xdc\xd5\xda\xdc\ +\xd5\xdb\xdd\xd5\xdb\xde\xd6\xdd\xdd\xd5\xdc\xdc\xd4\xdb\xdc\xd5\ +\xdb\xdc\xd5\xdb\xdc\xd6\xda\xdb\xd4\xd9\xda\xd3\xd8\xdb\xd4\xd9\ +\xdb\xd5\xda\xdc\xd6\xdc\xdd\xd6\xdd\xdd\xd6\xdd\xde\xd7\xdd\xde\ +\xd8\xde\xd0\xc9\xd1\xbb\xb4\xbf\xb6\xb0\xbb\xb4\xaf\xbb\xb4\xb0\ +\xbb\xb7\xb3\xbe\xbb\xb7\xc2\xbe\xbb\xc6\xc2\xbc\xc7\xc3\xbe\xc8\ +\xc3\xbe\xc9\xc1\xbd\xc8\xbb\xb8\xc4\xbd\xb9\xc4\xc6\xc2\xc9\xcf\ +\xc7\xcb\xd9\xca\xcb\xdb\xcc\xcc\xdc\xce\xcf\xdd\xcf\xd0\xdd\xd0\ +\xd1\xde\xd0\xd2\xdb\xd1\xd3\xdb\xd1\xd4\xda\xd1\xd5\xd9\xd1\xd6\ +\xd8\xd0\xd6\xd7\xd0\xd5\xd7\xd1\xd6\xd8\xd1\xd6\xd9\xd1\xd7\xda\ +\xd3\xd9\xd9\xd2\xd7\xd0\xc8\xd1\xb7\xb0\xbe\x89\x86\x99\x59\x5c\ +\x72\x48\x4e\x64\x3b\x40\x54\x36\x3c\x50\x37\x3f\x53\x32\x38\x4f\ +\x2f\x35\x4c\x2c\x32\x4a\x29\x30\x49\x2c\x32\x4a\x2c\x31\x46\x23\ +\x26\x35\x1f\x1f\x2d\x24\x23\x2f\x24\x23\x30\x26\x27\x34\x26\x27\ +\x36\x2b\x2d\x3e\x44\x4d\x5c\x6f\x78\x84\x8d\x92\x9c\x88\x8f\x9b\ +\x7d\x88\x98\x62\x76\x87\x43\x50\x61\x2e\x33\x44\x28\x2d\x3f\x25\ +\x2a\x3d\x25\x2b\x3f\x2b\x31\x44\x37\x3a\x4e\x60\x5e\x6f\x67\x67\ +\x7a\x4c\x50\x67\x51\x55\x6c\x4f\x51\x64\x00\x00\x00\xef\xec\xf0\ +\xf0\xeb\xef\xee\xe8\xee\xec\xe6\xeb\xea\xe4\xe9\xe9\xe4\xe9\xea\ +\xe3\xe8\xea\xe3\xe8\xea\xe3\xe8\xe9\xe3\xe6\xea\xe1\xe5\xea\xe2\ +\xe5\xe9\xe2\xe4\xea\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe9\ +\xec\xe6\xeb\xed\xe7\xec\xee\xe8\xed\xf0\xea\xef\xef\xe9\xee\xef\ +\xe9\xee\xf1\xeb\xf0\xf0\xea\xef\xef\xe9\xee\xee\xe8\xed\xed\xe7\ +\xec\xec\xe6\xeb\xec\xe6\xeb\xec\xe6\xeb\xea\xe4\xea\xea\xe3\xe9\ +\xe7\xe0\xe7\xe6\xdf\xe6\xe5\xe0\xe5\xe4\xe0\xe6\xe4\xde\xe8\xe4\ +\xde\xe7\xe3\xdf\xe8\xe2\xde\xe7\xe3\xdf\xe8\xe3\xde\xe7\xe2\xde\ +\xe5\xe2\xde\xe4\xe4\xde\xe5\xe5\xde\xe5\xe3\xdc\xe3\xe3\xdc\xe1\ +\xe2\xdb\xe0\xe0\xd9\xde\xdf\xd8\xde\xe0\xd9\xde\xde\xd7\xdc\xdd\ +\xd6\xdb\xdd\xd5\xd9\xdd\xd4\xd8\xde\xd3\xd6\xdc\xd1\xd4\xda\xcf\ +\xd2\xda\xcf\xd1\xd9\xcf\xd1\xd9\xce\xd1\xd8\xcf\xd3\xd8\xce\xd3\ +\xd9\xce\xd5\xd9\xd0\xd6\xda\xd0\xd6\xdb\xd1\xd7\xdb\xd0\xd7\xd9\ +\xd2\xd7\xdb\xd4\xd9\xdb\xd3\xd8\xdb\xd5\xda\xdb\xd3\xda\xdc\xd4\ +\xdb\xdc\xd4\xdb\xdb\xd3\xda\xda\xd3\xda\xd9\xd2\xd9\xd9\xd3\xd9\ +\xd9\xd2\xd8\xd9\xd2\xd7\xd8\xd1\xd6\xd8\xd1\xd6\xd8\xd2\xd8\xda\ +\xd3\xda\xdb\xd4\xdb\xdc\xd4\xdb\xdb\xd5\xdc\xde\xd7\xde\xd8\xd1\ +\xd8\xc0\xb9\xc3\xb7\xb0\xbb\xb3\xad\xba\xb1\xae\xba\xb5\xb2\xbd\ +\xb9\xb5\xc0\xbe\xb9\xc4\xc1\xbc\xc7\xc4\xbf\xc8\xc5\xc0\xc9\xc5\ +\xc0\xca\xc0\xbd\xc8\xbd\xb9\xc5\xc5\xc1\xc9\xcf\xc8\xce\xd8\xcb\ +\xcd\xda\xcb\xcc\xdc\xce\xce\xe0\xd1\xd2\xe1\xd3\xd4\xe0\xd4\xd5\ +\xe0\xd3\xd6\xdf\xd4\xd6\xde\xd5\xd7\xdc\xd3\xd6\xdc\xd3\xd6\xdc\ +\xd3\xd7\xdc\xd3\xd8\xdc\xd3\xd9\xdb\xd4\xda\xdb\xd5\xda\xdb\xd4\ +\xd9\xdb\xd4\xd9\xd8\xd0\xd7\xca\xc3\xcd\xa3\x9c\xaa\x5f\x5d\x6f\ +\x3a\x3b\x4d\x34\x37\x4a\x37\x3d\x52\x34\x3a\x51\x31\x37\x4f\x2f\ +\x35\x4f\x2a\x32\x4d\x2f\x37\x50\x31\x37\x51\x29\x2e\x44\x21\x25\ +\x35\x1e\x1f\x2e\x1c\x1d\x29\x1c\x1e\x2b\x23\x25\x35\x25\x27\x39\ +\x2c\x31\x44\x44\x4b\x5c\x6f\x77\x84\x8b\x90\x9c\x85\x8d\x9a\x78\ +\x84\x95\x5d\x6a\x7b\x33\x38\x47\x22\x25\x37\x25\x29\x3b\x27\x2b\ +\x3e\x29\x2f\x41\x2a\x30\x43\x3a\x3d\x50\x70\x6e\x80\x63\x64\x78\ +\x55\x59\x6d\x47\x4a\x5e\x00\x00\x00\xf0\xed\xef\xf0\xec\xf0\xef\ +\xe9\xee\xed\xe6\xec\xeb\xe5\xea\xea\xe4\xe9\xea\xe3\xe8\xe9\xe2\ +\xe7\xe8\xe1\xe6\xe8\xe1\xe7\xe9\xe2\xe5\xea\xe2\xe6\xe9\xe2\xe6\ +\xea\xe3\xe7\xe9\xe2\xe8\xea\xe3\xe8\xeb\xe5\xea\xed\xe7\xec\xee\ +\xe8\xed\xf0\xea\xef\xf1\xeb\xf0\xf1\xeb\xf0\xf1\xeb\xf0\xf1\xeb\ +\xf0\xf0\xea\xef\xef\xe9\xee\xef\xe9\xee\xee\xe8\xed\xee\xe7\xec\ +\xee\xe7\xec\xec\xe5\xea\xec\xe5\xea\xe9\xe3\xe9\xe7\xe0\xe7\xe5\ +\xe0\xe6\xe4\xdf\xe7\xe3\xde\xe8\xe4\xde\xe7\xe3\xdf\xe8\xe3\xe0\ +\xe9\xe2\xe0\xe9\xe3\xdf\xe8\xe2\xdf\xe8\xe2\xdd\xe6\xe1\xdd\xe5\ +\xe2\xdd\xe3\xe4\xdd\xe4\xe3\xdc\xe3\xe3\xdb\xe1\xe1\xdb\xe0\xdf\ +\xd8\xe0\xde\xd7\xdf\xde\xd7\xdd\xde\xd7\xdd\xdd\xd6\xdb\xde\xd6\ +\xda\xdf\xd6\xd8\xde\xd4\xd7\xdd\xd1\xd4\xdb\xd0\xd3\xd9\xce\xd1\ +\xd9\xce\xd1\xd9\xce\xd1\xd7\xcd\xd1\xd7\xcd\xd2\xd7\xcd\xd3\xd8\ +\xce\xd4\xd9\xcf\xd5\xd9\xcf\xd5\xd9\xd0\xd5\xd8\xd1\xd6\xd9\xd2\ +\xd7\xd9\xd2\xd8\xd9\xd1\xd8\xda\xd2\xd9\xdb\xd3\xda\xdb\xd3\xda\ +\xda\xd2\xd9\xd7\xd0\xd7\xd5\xce\xd5\xd4\xcd\xd4\xd2\xcb\xd2\xd0\ +\xc8\xce\xcd\xc6\xcb\xcf\xc8\xcd\xd2\xcb\xd0\xd6\xcf\xd5\xd8\xd1\ +\xd8\xd9\xd2\xda\xdb\xd4\xdb\xdc\xd5\xdc\xdc\xd5\xdc\xc9\xc1\xcb\ +\xb6\xb0\xbb\xb4\xae\xba\xb3\xae\xba\xb4\xb0\xbc\xb8\xb4\xbf\xbd\ +\xb9\xc3\xc2\xbd\xc6\xc3\xbd\xc7\xc4\xbe\xc8\xc5\xbf\xca\xc5\xc1\ +\xca\xbf\xbc\xc7\xc2\xbf\xc8\xcc\xc6\xcc\xd4\xca\xcd\xd8\xca\xca\ +\xdb\xcc\xca\xde\xd1\xcf\xe1\xd3\xd4\xe3\xd5\xd6\xe3\xd6\xd7\xe2\ +\xd6\xd8\xe0\xd6\xd8\xdf\xd5\xd8\xdf\xd6\xd9\xdf\xd6\xd9\xdf\xd6\ +\xd9\xdf\xd6\xd9\xde\xd5\xd9\xde\xd4\xd9\xdf\xd6\xda\xde\xd5\xda\ +\xdd\xd5\xda\xdb\xd4\xda\xd2\xca\xd2\xa4\x99\xa5\x4d\x49\x58\x3f\ +\x41\x54\x45\x4a\x61\x3f\x46\x5c\x37\x3d\x54\x39\x40\x58\x33\x3a\ +\x54\x30\x37\x52\x30\x38\x52\x2e\x35\x4d\x2b\x30\x47\x26\x2a\x3c\ +\x21\x23\x34\x22\x25\x36\x27\x2a\x3c\x26\x2b\x3d\x28\x2e\x41\x2f\ +\x35\x48\x42\x47\x58\x68\x6c\x79\x75\x7b\x88\x86\x8c\x98\x70\x77\ +\x85\x35\x37\x45\x1e\x1f\x2e\x22\x25\x36\x28\x2c\x3e\x24\x29\x3b\ +\x21\x24\x36\x25\x27\x3a\x47\x47\x58\x5d\x5e\x70\x41\x45\x5a\x3a\ +\x40\x55\x00\x00\x00\xf1\xed\xef\xf1\xec\xef\xef\xe9\xee\xed\xe7\ +\xec\xec\xe6\xeb\xea\xe4\xe9\xea\xe3\xe8\xe9\xe2\xe7\xe9\xe2\xe7\ +\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe3\xe8\xea\xe3\xe8\xea\xe3\xe8\xea\ +\xe3\xe8\xea\xe3\xe8\xec\xe6\xeb\xed\xe7\xec\xef\xe9\xee\xf0\xeb\ +\xf0\xf2\xeb\xf0\xf2\xec\xf1\xf1\xeb\xf0\xf2\xec\xf1\xf0\xea\xef\ +\xf0\xea\xef\xef\xe9\xee\xee\xe8\xed\xed\xe7\xec\xed\xe6\xeb\xec\ +\xe5\xea\xeb\xe4\xe9\xea\xe3\xe9\xe8\xe1\xe8\xe6\xe0\xe7\xe4\xe0\ +\xe8\xe3\xdf\xe8\xe2\xde\xe7\xe3\xdf\xe8\xe2\xe0\xe9\xe2\xdf\xe8\ +\xe2\xdf\xe8\xe2\xe0\xe8\xe4\xdf\xe8\xe3\xde\xe7\xe3\xde\xe5\xe3\ +\xde\xe4\xe3\xdd\xe4\xe3\xdc\xe2\xe2\xda\xe1\xe1\xda\xe1\xe0\xd9\ +\xe0\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd8\xdd\xdf\xd7\xdc\xdf\xd6\xd9\ +\xdf\xd6\xd9\xde\xd3\xd6\xdc\xd1\xd4\xd9\xce\xd1\xd8\xcd\xd0\xd8\ +\xcd\xd0\xd6\xcc\xd0\xd5\xcb\xd1\xd7\xcd\xd3\xd8\xcd\xd3\xd8\xcf\ +\xd5\xd8\xcf\xd4\xd7\xd0\xd5\xd8\xd1\xd6\xd9\xd1\xd7\xd8\xd0\xd7\ +\xd9\xd1\xd8\xda\xd2\xd9\xda\xd2\xd9\xda\xd2\xd9\xd9\xd2\xd8\xd4\ +\xcc\xd4\xcd\xc5\xcc\xc8\xc0\xc7\xc3\xbb\xc3\xbe\xb6\xbe\xbc\xb4\ +\xbc\xbd\xb5\xbd\xc1\xba\xc1\xc7\xc0\xc6\xcd\xc6\xcb\xd1\xcb\xd1\ +\xd4\xcd\xd3\xd6\xcf\xd5\xd9\xd2\xd9\xd0\xc9\xd0\xbb\xb4\xbe\xb4\ +\xad\xb9\xb3\xad\xba\xb6\xb1\xbc\xb7\xb3\xbe\xbc\xb7\xc2\xc1\xbc\ +\xc5\xc3\xbe\xc7\xc3\xbd\xc8\xc5\xbf\xca\xc7\xc2\xcb\xc2\xbf\xc9\ +\xbf\xbb\xc6\xc4\xc0\xc8\xcb\xc4\xc9\xd5\xc7\xc9\xd8\xc7\xc7\xdc\ +\xce\xcc\xdf\xd2\xd1\xe2\xd5\xd6\xe3\xd7\xd7\xe3\xd7\xd8\xe2\xd6\ +\xd8\xe1\xd6\xd8\xe1\xd6\xd8\xe1\xd7\xd9\xe1\xd7\xda\xe1\xd6\xd9\ +\xdf\xd5\xd8\xdd\xd5\xd7\xde\xd5\xd8\xde\xd5\xd9\xdf\xd5\xda\xdd\ +\xd5\xdb\xdb\xd4\xda\xcb\xc1\xc7\x6d\x65\x74\x4c\x4e\x65\x5a\x5f\ +\x79\x58\x5e\x76\x4d\x53\x69\x46\x4c\x61\x3f\x45\x5b\x39\x3f\x57\ +\x34\x3b\x53\x32\x38\x4f\x33\x37\x4f\x31\x36\x4d\x2d\x31\x46\x2a\ +\x2e\x40\x29\x2d\x3f\x29\x2d\x3f\x29\x2e\x41\x26\x2a\x3d\x24\x26\ +\x38\x31\x35\x48\x38\x3e\x4f\x4f\x54\x60\x5c\x5f\x69\x31\x32\x3d\ +\x17\x16\x26\x20\x22\x33\x26\x2a\x3c\x23\x26\x38\x1e\x1f\x31\x1e\ +\x1f\x31\x24\x26\x38\x35\x39\x4d\x2f\x36\x4c\x2b\x31\x48\x00\x00\ +\x00\xf1\xec\xee\xf0\xeb\xef\xef\xe9\xee\xed\xe7\xec\xec\xe6\xeb\ +\xeb\xe5\xea\xea\xe3\xe8\xea\xe3\xe8\xeb\xe4\xe9\xe9\xe2\xe7\xea\ +\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe2\xe7\xe9\xe2\xe7\xea\xe4\ +\xe9\xeb\xe5\xea\xee\xe8\xed\xef\xe9\xee\xf0\xea\xef\xf2\xed\xef\ +\xf1\xec\xef\xf1\xec\xf0\xf1\xeb\xf0\xf1\xeb\xf0\xf0\xea\xef\xef\ +\xea\xee\xef\xe8\xec\xee\xe7\xec\xed\xe6\xec\xec\xe5\xea\xed\xe6\ +\xeb\xeb\xe5\xea\xe9\xe2\xe8\xe7\xe1\xe8\xe5\xe1\xe9\xe4\xe0\xe9\ +\xe3\xe0\xe9\xe3\xe0\xe9\xe3\xe0\xe8\xe3\xe0\xe9\xe3\xe0\xe9\xe3\ +\xe0\xe9\xe4\xe0\xe9\xe5\xe0\xe9\xe4\xdf\xe8\xe3\xde\xe7\xe3\xde\ +\xe4\xe2\xde\xe4\xe2\xdc\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\ +\xe0\xda\xe0\xe0\xda\xdf\xe0\xd9\xde\xe0\xd6\xdb\xdf\xd6\xd9\xdd\ +\xd3\xd6\xdb\xd1\xd4\xd9\xce\xd1\xd8\xcd\xcf\xd7\xcc\xce\xd6\xca\ +\xd0\xd4\xca\xd0\xd5\xcb\xd1\xd7\xce\xd4\xd7\xd0\xd5\xd8\xd1\xd5\ +\xd7\xd0\xd5\xd8\xd0\xd7\xd9\xd1\xd8\xd9\xd0\xd7\xd8\xd1\xd8\xd9\ +\xd2\xd9\xda\xd2\xd8\xd9\xd2\xd8\xd7\xcf\xd6\xcd\xc5\xcc\xc4\xbc\ +\xc3\xbb\xb3\xbc\xb8\xb0\xba\xb6\xaf\xba\xb5\xad\xb7\xb4\xad\xb8\ +\xb6\xae\xb8\xb8\xb0\xba\xbc\xb4\xbe\xc2\xb9\xc1\xc6\xbf\xc6\xcb\ +\xc3\xca\xd0\xc9\xd0\xcf\xc8\xcf\xbe\xb6\xc1\xb4\xae\xb9\xb4\xae\ +\xb9\xb6\xb0\xbb\xb7\xb2\xbd\xb9\xb5\xc0\xbf\xba\xc4\xc3\xbe\xc7\ +\xc4\xbe\xc8\xc4\xbf\xc9\xc7\xc2\xcb\xc5\xc0\xcb\xc0\xbc\xc7\xbe\ +\xba\xc5\xc6\xc0\xc8\xd4\xc8\xcb\xd4\xc4\xc5\xd8\xc9\xc8\xdc\xcf\ +\xcd\xe0\xd2\xd1\xe1\xd4\xd4\xe2\xd6\xd6\xe3\xd7\xd7\xe2\xd5\xd7\ +\xe2\xd6\xd8\xe1\xd7\xd9\xe2\xd7\xd9\xe1\xd6\xd9\xdf\xd5\xd8\xdf\ +\xd5\xd8\xde\xd5\xd8\xdd\xd4\xd7\xde\xd5\xd8\xdd\xd6\xdb\xdd\xd6\ +\xdb\xd4\xcd\xd3\xa6\x9d\xab\x84\x81\x98\x84\x86\x9d\x75\x78\x90\ +\x5e\x63\x7a\x53\x56\x6c\x4d\x51\x66\x44\x4a\x60\x3f\x44\x5b\x39\ +\x3d\x55\x35\x39\x51\x37\x3c\x52\x31\x36\x4a\x2f\x33\x46\x2b\x2f\ +\x41\x2a\x2e\x40\x26\x2a\x3b\x1e\x21\x31\x20\x23\x35\x27\x2c\x40\ +\x1f\x22\x35\x23\x25\x35\x27\x28\x35\x1e\x1e\x2b\x18\x18\x27\x20\ +\x21\x32\x23\x27\x38\x22\x26\x38\x1f\x22\x34\x1e\x20\x32\x21\x24\ +\x36\x28\x2c\x40\x2a\x30\x46\x26\x2b\x40\x00\x00\x00\xf1\xec\xef\ +\xf0\xea\xef\xf0\xe9\xee\xee\xe7\xec\xee\xe7\xec\xed\xe6\xeb\xec\ +\xe5\xea\xeb\xe4\xe9\xea\xe4\xe9\xeb\xe4\xe9\xea\xe3\xe8\xe9\xe2\ +\xe7\xe9\xe2\xe6\xe8\xe1\xe6\xe9\xe2\xe7\xeb\xe4\xe9\xed\xe7\xec\ +\xee\xe8\xed\xef\xe9\xed\xf1\xeb\xee\xf2\xed\xf0\xf3\xee\xf0\xf3\ +\xee\xef\xf3\xee\xf0\xf2\xec\xee\xf2\xec\xef\xf1\xeb\xed\xf0\xe9\ +\xec\xee\xe7\xea\xee\xe7\xea\xed\xe6\xea\xec\xe5\xea\xeb\xe5\xea\ +\xea\xe3\xe8\xe8\xe2\xe8\xe7\xe2\xe9\xe6\xe2\xeb\xe3\xe0\xe9\xe2\ +\xdf\xe9\xe2\xdf\xe9\xe4\xe1\xe9\xe4\xe1\xea\xe5\xe2\xeb\xe5\xe2\ +\xeb\xe7\xe1\xea\xe6\xe1\xea\xe5\xe0\xe9\xe4\xe0\xe8\xe4\xdf\xe6\ +\xe3\xdf\xe5\xe2\xde\xe4\xe1\xdd\xe3\xe1\xdd\xe3\xe2\xdb\xe2\xe1\ +\xda\xe0\xe0\xd9\xde\xe0\xd9\xdd\xdf\xd5\xda\xdc\xd3\xd6\xda\xd0\ +\xd3\xd8\xcd\xd0\xd5\xcb\xcf\xd4\xc9\xce\xd1\xc7\xcd\xd3\xc9\xcf\ +\xd5\xcb\xd1\xd7\xcd\xd2\xd7\xd0\xd5\xd7\xcf\xd5\xd6\xce\xd5\xd7\ +\xcf\xd6\xd8\xd0\xd7\xd8\xd0\xd7\xd8\xd1\xd8\xd9\xd1\xd8\xd9\xd2\ +\xd9\xd9\xd1\xd8\xd3\xcc\xd2\xc5\xbc\xc5\xb9\xb1\xbb\xb8\xb1\xbb\ +\xb9\xb2\xbc\xb9\xb1\xbc\xb5\xaf\xba\xb3\xad\xb8\xb2\xad\xb8\xb4\ +\xae\xb9\xb7\xb0\xba\xba\xb2\xbc\xbd\xb6\xc0\xc1\xb9\xc2\xc5\xbe\ +\xc5\xc5\xbe\xc7\xbc\xb6\xc1\xb6\xb0\xbb\xb3\xac\xb9\xb3\xad\xb8\ +\xb5\xb0\xbb\xb7\xb3\xbe\xbd\xb9\xc3\xc3\xbe\xc7\xc3\xbe\xc7\xc3\ +\xbe\xc8\xc5\xbf\xc9\xc6\xc2\xcb\xc2\xbe\xc9\xbe\xba\xc5\xc8\xc3\ +\xcb\xd2\xcb\xcf\xd0\xc2\xc3\xd3\xc2\xc1\xd7\xc7\xc5\xda\xcc\xca\ +\xdd\xd0\xce\xdf\xd2\xd3\xe1\xd4\xd5\xe1\xd5\xd5\xe2\xd5\xd7\xe2\ +\xd5\xd7\xe1\xd5\xd7\xdf\xd4\xd6\xdf\xd4\xd7\xdf\xd4\xd7\xdf\xd4\ +\xd7\xdd\xd5\xd8\xdd\xd4\xd7\xde\xd5\xdb\xdc\xd5\xda\xdc\xd4\xd9\ +\xd6\xcf\xd5\xd2\xcb\xd2\xce\xc8\xcf\xc1\xba\xc3\xa5\x9f\xae\x7c\ +\x7a\x8d\x5a\x5b\x71\x55\x5a\x70\x54\x59\x6e\x4e\x53\x69\x44\x4a\ +\x5e\x40\x45\x5a\x37\x3d\x51\x38\x3c\x4e\x33\x36\x48\x2e\x31\x43\ +\x23\x25\x36\x1f\x21\x31\x25\x29\x3c\x26\x2b\x3f\x1b\x1e\x30\x1d\ +\x1f\x31\x16\x17\x24\x16\x16\x22\x19\x19\x26\x18\x18\x25\x19\x1a\ +\x26\x19\x1c\x2a\x1e\x21\x32\x21\x25\x38\x29\x2d\x3f\x29\x2f\x42\ +\x23\x2a\x3d\x21\x28\x3b\x00\x00\x00\xf1\xec\xee\xf0\xeb\xed\xf0\ +\xe9\xed\xee\xe7\xec\xee\xe7\xec\xed\xe6\xea\xed\xe6\xea\xeb\xe5\ +\xea\xeb\xe4\xe9\xea\xe3\xe7\xea\xe3\xe7\xe9\xe2\xe6\xe8\xe1\xe6\ +\xe7\xe0\xe6\xe9\xe2\xe7\xeb\xe4\xe9\xed\xe6\xeb\xee\xe8\xed\xef\ +\xea\xed\xf1\xec\xee\xf3\xee\xf0\xf2\xee\xf0\xf2\xee\xf0\xf3\xef\ +\xf1\xf2\xee\xf0\xf2\xed\xef\xf1\xec\xee\xf1\xea\xed\xf0\xe9\xec\ +\xef\xe8\xeb\xee\xe7\xeb\xed\xe6\xeb\xec\xe5\xea\xea\xe3\xe8\xe9\ +\xe2\xe8\xe7\xe2\xea\xe6\xe2\xeb\xe4\xe1\xe9\xe3\xe0\xe9\xe3\xdf\ +\xea\xe3\xe0\xea\xe4\xe1\xea\xe5\xe1\xea\xe8\xe3\xec\xe8\xe3\xec\ +\xe7\xe2\xec\xe6\xe1\xea\xe6\xe1\xea\xe5\xe0\xe9\xe5\xdf\xe8\xe3\ +\xdf\xe5\xe2\xde\xe4\xe1\xdd\xe3\xe2\xdc\xe2\xe1\xdb\xe1\xe1\xda\ +\xdf\xe0\xd9\xde\xde\xd6\xdb\xdc\xd2\xd7\xd8\xce\xd4\xd5\xcb\xd1\ +\xd3\xc9\xcf\xd2\xc7\xcd\xd0\xc6\xcc\xd1\xc7\xcd\xd4\xca\xd0\xd6\ +\xcd\xd2\xd7\xcf\xd4\xd5\xce\xd4\xd5\xcd\xd4\xd6\xce\xd5\xd6\xcf\ +\xd6\xd7\xcf\xd6\xd9\xd1\xd8\xd9\xd2\xd8\xda\xd3\xd9\xd9\xd2\xd7\ +\xd4\xcd\xd3\xc1\xba\xc4\xb7\xb1\xbc\xb9\xb2\xbc\xba\xb2\xbc\xbb\ +\xb3\xbd\xba\xb2\xbc\xb7\xb0\xbb\xb5\xaf\xba\xb5\xaf\xba\xb5\xaf\ +\xba\xb8\xb1\xbb\xbb\xb4\xbe\xc0\xb8\xc2\xc1\xba\xc3\xbd\xb7\xc1\ +\xb7\xb1\xbd\xb6\xb0\xbc\xb3\xad\xb9\xb2\xab\xb7\xb4\xae\xb9\xb6\ +\xb2\xbd\xbc\xb8\xc2\xc2\xbd\xc6\xc4\xbf\xc8\xc4\xbe\xc8\xc4\xbe\ +\xc7\xc5\xc0\xc9\xc5\xc1\xca\xc3\xbf\xca\xc9\xc6\xcf\xd2\xcc\xd1\ +\xcd\xbe\xc0\xcc\xba\xbc\xcf\xbe\xbd\xd4\xc3\xc2\xd8\xc9\xc7\xda\ +\xcc\xcb\xde\xcf\xce\xdf\xd0\xd2\xe0\xd2\xd3\xe0\xd3\xd5\xe0\xd3\ +\xd5\xdf\xd3\xd5\xdf\xd4\xd6\xde\xd4\xd6\xdf\xd4\xd7\xdd\xd4\xd7\ +\xde\xd4\xd9\xdc\xd4\xda\xdb\xd4\xd9\xdb\xd4\xd9\xda\xd3\xd8\xd7\ +\xd0\xd5\xd4\xcc\xd2\xcf\xc7\xcd\xca\xc2\xc9\xb5\xad\xb9\x94\x90\ +\xa2\x87\x86\x99\x79\x78\x8c\x65\x66\x7b\x57\x5b\x70\x50\x54\x69\ +\x49\x4d\x61\x43\x47\x59\x3b\x3e\x4f\x31\x33\x44\x24\x26\x36\x28\ +\x2a\x3d\x2b\x2f\x42\x21\x24\x37\x1c\x1f\x32\x1e\x22\x33\x17\x18\ +\x27\x14\x14\x20\x16\x16\x21\x12\x11\x1c\x12\x11\x1b\x15\x16\x23\ +\x1a\x1e\x2e\x1e\x21\x33\x23\x27\x39\x32\x38\x4a\x37\x3d\x52\x35\ +\x3c\x53\x00\x00\x00\xf1\xeb\xee\xf1\xeb\xee\xf0\xe9\xec\xee\xe7\ +\xea\xee\xe7\xea\xed\xe6\xea\xed\xe6\xe9\xec\xe4\xe8\xec\xe3\xe7\ +\xeb\xe3\xe6\xea\xe2\xe5\xea\xe2\xe5\xe9\xe1\xe5\xe8\xe1\xe5\xe9\ +\xe2\xe7\xec\xe5\xea\xed\xe6\xeb\xef\xe8\xed\xf1\xeb\xee\xf2\xed\ +\xef\xf2\xef\xf0\xf3\xf0\xf0\xf3\xf0\xf0\xf2\xef\xf1\xf3\xef\xf0\ +\xf3\xee\xf0\xf2\xed\xee\xf2\xec\xed\xf1\xea\xec\xf0\xe9\xec\xef\ +\xe8\xeb\xee\xe7\xea\xed\xe6\xea\xeb\xe4\xe9\xe9\xe3\xe8\xe8\xe2\ +\xe9\xe7\xe2\xea\xe4\xe0\xe9\xe3\xe0\xe8\xe2\xde\xe9\xe3\xe0\xe9\ +\xe4\xe1\xea\xe5\xe2\xeb\xe8\xe3\xec\xe9\xe4\xec\xe8\xe4\xeb\xe8\ +\xe3\xea\xe7\xe3\xea\xe7\xe3\xea\xe5\xe1\xe8\xe4\xe0\xe6\xe3\xdf\ +\xe5\xe1\xde\xe3\xe1\xdc\xe2\xe2\xdb\xe2\xe1\xdb\xe0\xe0\xd9\xdd\ +\xdd\xd6\xdb\xda\xd2\xd7\xd7\xcf\xd4\xd5\xcc\xd1\xd3\xc8\xce\xd1\ +\xc7\xcd\xd0\xc5\xcb\xd0\xc6\xcc\xd1\xc8\xce\xd4\xcb\xd1\xd6\xcc\ +\xd3\xd5\xcc\xd3\xd4\xcc\xd3\xd6\xce\xd5\xd6\xce\xd5\xd7\xcf\xd6\ +\xd9\xd1\xd8\xda\xd4\xd8\xdb\xd4\xd9\xda\xd3\xd8\xd4\xcd\xd3\xc2\ +\xbb\xc4\xb8\xb2\xbc\xba\xb2\xbc\xbb\xb3\xbd\xbb\xb3\xbd\xbb\xb3\ +\xbd\xba\xb2\xbc\xb6\xb0\xba\xb6\xb0\xbb\xb7\xb1\xbc\xb8\xb1\xbb\ +\xba\xb1\xbd\xbc\xb5\xbf\xc0\xb8\xc2\xbd\xb8\xc2\xb7\xb2\xbd\xb5\ +\xb0\xbb\xb4\xb0\xbc\xb1\xac\xb8\xb1\xab\xb8\xb6\xb0\xbc\xbb\xb6\ +\xc1\xc1\xbc\xc5\xc2\xbc\xc5\xbd\xb7\xc1\xbb\xb4\xbf\xbc\xb6\xc1\ +\xc1\xbe\xc9\xcb\xc9\xd3\xcc\xc9\xd2\xcf\xc9\xce\xc4\xb6\xba\xc1\ +\xaf\xb2\xc6\xb4\xb3\xcb\xb9\xb7\xd0\xbe\xbd\xd5\xc4\xc2\xd8\xc9\ +\xc7\xdc\xcd\xcc\xdd\xce\xcf\xde\xd0\xd1\xde\xd1\xd3\xde\xd2\xd4\ +\xde\xd2\xd4\xde\xd3\xd5\xde\xd3\xd6\xdd\xd3\xd6\xdc\xd2\xd7\xdc\ +\xd2\xd8\xda\xd3\xd8\xd9\xd2\xd7\xd7\xcf\xd4\xd3\xca\xd0\xcd\xc6\ +\xcb\xc8\xc0\xc8\xc4\xbb\xc4\xbe\xb6\xc0\xb9\xb1\xbc\xb5\xad\xb9\ +\xac\xa5\xb2\x96\x92\xa3\x7d\x7d\x91\x6b\x6c\x82\x5c\x5f\x74\x53\ +\x56\x69\x43\x44\x56\x32\x33\x44\x2e\x2f\x43\x37\x3a\x4e\x31\x33\ +\x47\x21\x24\x38\x21\x25\x38\x20\x23\x36\x19\x1a\x2a\x17\x17\x25\ +\x16\x18\x25\x18\x19\x27\x14\x15\x22\x1b\x1d\x2d\x21\x26\x3a\x1d\ +\x22\x34\x19\x1d\x2f\x23\x26\x38\x40\x47\x5c\x52\x56\x6e\x00\x00\ +\x00\xf0\xe9\xeb\xf1\xeb\xec\xf0\xea\xec\xef\xe8\xea\xef\xe8\xea\ +\xef\xe7\xea\xee\xe6\xe8\xec\xe3\xe6\xec\xe3\xe6\xeb\xe2\xe5\xeb\ +\xe2\xe5\xeb\xe1\xe4\xea\xe1\xe4\xea\xe1\xe5\xea\xe2\xe6\xec\xe5\ +\xe9\xef\xe8\xeb\xef\xe8\xec\xf1\xeb\xee\xf2\xee\xef\xf2\xf1\xf1\ +\xf1\xf2\xf2\xf1\xf1\xf1\xf3\xf2\xf1\xf2\xf1\xf0\xf3\xf0\xf0\xf4\ +\xef\xf0\xf2\xed\xee\xf2\xec\xed\xf1\xeb\xed\xf0\xe9\xec\xef\xe8\ +\xeb\xed\xe6\xe9\xeb\xe4\xe8\xea\xe3\xe9\xe9\xe2\xe9\xe7\xe0\xe8\ +\xe4\xdf\xe8\xe4\xe0\xe9\xe2\xdf\xe7\xe3\xe0\xe9\xe4\xe1\xea\xe8\ +\xe3\xeb\xe9\xe4\xec\xe9\xe5\xea\xe9\xe5\xeb\xea\xe6\xec\xe9\xe5\ +\xeb\xe8\xe4\xea\xe7\xe3\xe9\xe5\xe1\xe7\xe4\xdf\xe5\xe5\xde\xe5\ +\xe3\xdc\xe3\xe2\xdb\xe2\xe1\xda\xe1\xdf\xd9\xdf\xdd\xd6\xdb\xd9\ +\xd2\xd7\xd6\xcf\xd4\xd3\xcb\xd1\xd0\xc8\xce\xcf\xc7\xcd\xce\xc5\ +\xcb\xce\xc5\xcc\xcf\xc7\xce\xd1\xc8\xd0\xd3\xcb\xd2\xd4\xcc\xd3\ +\xd5\xcd\xd4\xd6\xce\xd5\xd7\xcf\xd6\xd7\xcf\xd6\xd9\xd1\xd7\xda\ +\xd3\xd8\xd9\xd2\xd7\xd8\xd1\xd6\xcf\xc7\xce\xc0\xb8\xc2\xba\xb2\ +\xbc\xba\xb2\xbc\xba\xb2\xbc\xba\xb2\xbc\xb9\xb1\xbb\xba\xb2\xbb\ +\xb7\xb1\xbc\xb7\xb1\xbc\xb7\xb1\xbc\xb7\xb2\xbd\xb8\xb1\xbc\xba\ +\xb2\xbd\xbc\xb6\xbf\xbd\xb7\xc1\xb8\xb3\xbd\xb4\xaf\xbb\xb4\xaf\ +\xbb\xb3\xaf\xba\xaf\xab\xb7\xb1\xad\xb8\xb7\xb2\xbd\xb8\xb1\xbd\ +\xb5\xaf\xba\xb5\xae\xbb\xc0\xba\xc6\xd1\xcf\xd9\xe4\xe3\xe9\xed\ +\xed\xf0\xdc\xd9\xe1\xc6\xc0\xc7\xb7\xaa\xb1\xb4\xa5\xaa\xb9\xa6\ +\xa9\xc0\xab\xac\xc7\xb3\xb3\xce\xbb\xba\xd4\xc3\xc2\xd7\xc7\xc6\ +\xd8\xca\xca\xda\xcc\xcd\xda\xcd\xcf\xdc\xcf\xd1\xdc\xd0\xd2\xdc\ +\xd1\xd4\xdc\xd1\xd4\xdb\xd1\xd4\xda\xd1\xd4\xd9\xd0\xd5\xd8\xd0\ +\xd5\xd5\xcd\xd2\xd2\xc8\xce\xcd\xc3\xca\xc8\xbe\xc6\xc3\xba\xc2\ +\xbd\xb4\xbe\xb9\xb0\xba\xb7\xae\xb8\xb7\xae\xb8\xb5\xac\xb7\xb2\ +\xa9\xb5\xa8\xa1\xaf\x9a\x94\xa5\x82\x7e\x91\x65\x64\x77\x53\x54\ +\x67\x40\x41\x56\x42\x45\x5a\x3e\x41\x56\x2e\x32\x46\x2a\x2e\x41\ +\x26\x29\x3c\x23\x26\x3a\x19\x19\x29\x19\x19\x29\x1b\x1c\x2b\x1c\ +\x1d\x2c\x17\x18\x26\x1e\x22\x33\x22\x28\x3b\x22\x28\x3c\x1d\x21\ +\x35\x19\x1b\x2e\x38\x38\x4b\x66\x66\x79\x00\x00\x00\xef\xe8\xea\ +\xf0\xea\xeb\xf0\xea\xeb\xf0\xe9\xe9\xf0\xe8\xe9\xef\xe7\xe8\xee\ +\xe5\xe6\xee\xe3\xe5\xed\xe2\xe4\xeb\xe2\xe3\xec\xe2\xe4\xeb\xe1\ +\xe4\xea\xe1\xe3\xec\xe3\xe6\xec\xe4\xe7\xed\xe6\xe9\xee\xe7\xea\ +\xf0\xe9\xec\xf2\xec\xee\xf2\xef\xf0\xf2\xf2\xf2\xf1\xf1\xf1\xf1\ +\xf2\xf2\xf1\xf1\xf1\xf2\xf1\xf1\xf2\xf1\xf1\xf3\xf0\xef\xf3\xee\ +\xef\xf3\xed\xee\xf3\xed\xee\xf1\xeb\xec\xef\xe8\xeb\xef\xe6\xe9\ +\xeb\xe3\xe8\xea\xe3\xe8\xe9\xe1\xe8\xe6\xe0\xe7\xe4\xdf\xe7\xe4\ +\xdf\xe7\xe4\xde\xe7\xe5\xe0\xe9\xe6\xe1\xea\xe7\xe3\xec\xe9\xe5\ +\xeb\xea\xe6\xec\xe9\xe6\xeb\xeb\xe6\xed\xeb\xe5\xec\xeb\xe5\xeb\ +\xea\xe3\xea\xe8\xe2\xe8\xe6\xdf\xe6\xe5\xde\xe5\xe4\xdd\xe4\xe2\ +\xdb\xe2\xe1\xda\xe1\xde\xd8\xdf\xdc\xd5\xdd\xd8\xd1\xd8\xd4\xcd\ +\xd4\xd2\xca\xd1\xd0\xc8\xcf\xce\xc6\xce\xcc\xc4\xcc\xcd\xc5\xcd\ +\xce\xc6\xcd\xd0\xc8\xcf\xd0\xc8\xcf\xd3\xcb\xd1\xd4\xcc\xd3\xd5\ +\xcd\xd4\xd6\xce\xd5\xd7\xcf\xd6\xd8\xd0\xd7\xd9\xd2\xd7\xd8\xd1\ +\xd6\xd6\xcf\xd4\xcb\xc4\xcc\xbc\xb4\xbe\xb8\xb0\xba\xba\xb2\xbc\ +\xbb\xb3\xbd\xb9\xb1\xbb\xba\xb2\xbc\xb9\xb1\xbb\xb9\xb2\xbb\xb8\ +\xb1\xbc\xb8\xb2\xbd\xb9\xb2\xbd\xba\xb2\xbd\xb9\xb1\xbc\xba\xb3\ +\xbd\xbc\xb8\xc1\xba\xb4\xbf\xb6\xb1\xbc\xb5\xb0\xba\xb4\xb0\xbb\ +\xb2\xae\xba\xb1\xac\xb8\xaf\xab\xb6\xb1\xaa\xb7\xb5\xaf\xbb\xbf\ +\xb9\xc4\xe4\xe3\xe8\xf8\xf8\xf8\xf7\xf7\xf7\xf4\xf4\xf4\xe9\xe8\ +\xeb\xc1\xbb\xc4\xae\xa3\xae\xb0\xa1\xaa\xb1\x9f\xa6\xb7\xa5\xa8\ +\xc2\xae\xb0\xca\xb7\xb8\xcf\xbd\xbd\xd2\xc1\xc2\xd4\xc5\xc6\xd5\ +\xc6\xc8\xd7\xca\xcb\xd9\xcb\xcd\xda\xcd\xcf\xda\xcf\xd2\xda\xd0\ +\xd3\xd9\xd0\xd3\xd9\xd0\xd4\xd8\xce\xd3\xd6\xcc\xd2\xd2\xc8\xcd\ +\xcd\xc3\xc9\xc8\xbd\xc4\xc1\xb8\xc0\xbb\xb2\xbc\xb8\xaf\xb9\xb6\ +\xad\xb7\xb6\xac\xb6\xb5\xab\xb5\xb3\xa9\xb5\xaf\xa7\xb3\xad\xa4\ +\xb1\xac\xa3\xb0\x9b\x92\xa2\x6f\x6d\x81\x67\x68\x7c\x5a\x5c\x70\ +\x58\x5a\x6e\x44\x47\x5b\x39\x3d\x51\x38\x3a\x4f\x2d\x2e\x42\x25\ +\x26\x38\x1a\x1b\x2a\x1a\x1b\x29\x1b\x1c\x2a\x17\x17\x25\x16\x17\ +\x24\x1b\x1e\x2d\x22\x27\x3b\x27\x2d\x41\x23\x28\x3c\x1c\x20\x33\ +\x1e\x20\x33\x4a\x4b\x5d\x00\x00\x00\xf0\xe9\xea\xf0\xe8\xe9\xf0\ +\xe9\xe9\xf1\xe9\xe9\xf0\xe8\xe9\xef\xe7\xe7\xf0\xe5\xe6\xee\xe3\ +\xe4\xee\xe2\xe3\xed\xe1\xe3\xec\xe1\xe3\xec\xe1\xe3\xec\xe1\xe3\ +\xec\xe3\xe6\xed\xe5\xe8\xee\xe6\xe9\xee\xe7\xea\xf1\xea\xec\xf2\ +\xed\xee\xf2\xf0\xf0\xf1\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf2\xf1\xf1\ +\xf1\xf1\xf2\xf2\xf2\xf1\xf1\xf2\xf0\xf0\xf3\xee\xef\xf3\xed\xee\ +\xf2\xec\xed\xf1\xea\xeb\xf0\xe7\xe9\xed\xe4\xe7\xeb\xe3\xe6\xe9\ +\xe2\xe6\xe8\xe1\xe7\xe5\xdf\xe6\xe5\xde\xe6\xe4\xde\xe6\xe3\xde\ +\xe8\xe5\xe0\xe9\xe6\xe1\xea\xe7\xe3\xeb\xe8\xe4\xea\xe9\xe5\xeb\ +\xeb\xe5\xec\xec\xe6\xec\xec\xe5\xec\xec\xe6\xeb\xeb\xe4\xea\xe9\ +\xe2\xe8\xe7\xe0\xe7\xe6\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\ +\xe2\xdf\xd7\xde\xdc\xd5\xdc\xd8\xd1\xd8\xd4\xcd\xd4\xd1\xca\xd1\ +\xd0\xc8\xd0\xcd\xc5\xcf\xcc\xc4\xcc\xcb\xc3\xcc\xcc\xc3\xcc\xcd\ +\xc5\xcc\xce\xc5\xcc\xd0\xc6\xce\xd1\xc8\xd0\xd2\xcb\xd1\xd4\xcd\ +\xd3\xd6\xce\xd5\xd7\xcf\xd6\xd8\xd0\xd7\xd7\xcf\xd6\xd6\xce\xd4\ +\xcd\xc5\xcd\xbe\xb6\xc0\xb9\xb1\xbb\xb9\xb1\xbb\xb9\xb1\xbb\xb9\ +\xb1\xbb\xb9\xb1\xbb\xb9\xb1\xbb\xb9\xb1\xbc\xb8\xb0\xbb\xb8\xb2\ +\xbc\xba\xb3\xbe\xb9\xb1\xbc\xba\xb2\xbd\xba\xb3\xbe\xbc\xb6\xc0\ +\xba\xb4\xbf\xb7\xb1\xbc\xb5\xb0\xbb\xb5\xaf\xba\xb3\xaf\xba\xaf\ +\xab\xb7\xae\xa9\xb5\xb2\xab\xb8\xb6\xb0\xbb\xca\xc4\xce\xef\xed\ +\xef\xf6\xf6\xf6\xf5\xf5\xf5\xf6\xf6\xf6\xee\xee\xee\xc1\xbb\xc3\ +\xae\xa5\xb1\xb2\xa5\xb0\xb3\xa4\xad\xbb\xac\xb1\xc5\xb5\xb8\xcc\ +\xbc\xbe\xd1\xc1\xc3\xd5\xc5\xc6\xd6\xc8\xc9\xd7\xc9\xcb\xd7\xca\ +\xcc\xd8\xcb\xcd\xd9\xcc\xce\xd9\xce\xd0\xda\xcf\xd2\xd8\xcf\xd2\ +\xd7\xcf\xd1\xd6\xcd\xd0\xd2\xc9\xce\xcd\xc3\xc9\xc7\xbd\xc4\xc2\ +\xb7\xbf\xbc\xb1\xbb\xb7\xae\xb8\xb5\xac\xb7\xb5\xac\xb6\xb6\xac\ +\xb6\xb5\xab\xb6\xb3\xa9\xb5\xaf\xa6\xb2\xac\xa3\xb0\xac\xa3\xb0\ +\xa9\xa0\xae\x9f\x97\xa7\x95\x90\xa1\x83\x7f\x92\x64\x62\x74\x4d\ +\x4e\x62\x4d\x50\x64\x3e\x41\x54\x30\x32\x45\x22\x23\x34\x1a\x1b\ +\x2a\x1f\x20\x2f\x1f\x20\x2f\x1b\x1b\x28\x1b\x1c\x29\x22\x26\x37\ +\x2b\x31\x45\x30\x36\x49\x26\x2a\x3e\x20\x25\x37\x1b\x1e\x30\x2e\ +\x2f\x42\x00\x00\x00\xef\xe7\xe9\xef\xe7\xe8\xef\xe6\xe6\xf0\xe6\ +\xe6\xf1\xe7\xe7\xf0\xe6\xe6\xef\xe4\xe4\xef\xe3\xe3\xee\xe2\xe2\ +\xed\xe1\xe0\xed\xe1\xe3\xec\xe0\xe2\xec\xe1\xe3\xee\xe4\xe5\xed\ +\xe5\xe7\xee\xe5\xe8\xef\xe7\xea\xf1\xea\xec\xf2\xed\xee\xf3\xef\ +\xf0\xf2\xf2\xf2\xf2\xf2\xf2\xf3\xf3\xf3\xf1\xf1\xf1\xf1\xf2\xf2\ +\xf2\xf1\xf1\xf3\xf1\xf0\xf3\xef\xf0\xf4\xee\xef\xf3\xec\xed\xf1\ +\xea\xeb\xf0\xe7\xe8\xec\xe3\xe6\xea\xe1\xe4\xe8\xe0\xe4\xe6\xe0\ +\xe4\xe6\xdf\xe5\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xde\xe4\xe5\xe0\xe7\ +\xe5\xe1\xe7\xe6\xe2\xe8\xe7\xe3\xe9\xe8\xe4\xea\xea\xe5\xeb\xeb\ +\xe4\xec\xeb\xe6\xea\xec\xe6\xeb\xeb\xe5\xea\xe9\xe3\xe8\xe8\xe0\ +\xe7\xe6\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xdf\xd9\xe0\ +\xdc\xd5\xdc\xd8\xd1\xd8\xd4\xcd\xd4\xd1\xca\xd1\xcd\xc5\xcf\xcd\ +\xc5\xcf\xca\xc2\xcc\xcb\xc1\xcc\xca\xc1\xca\xca\xc2\xca\xce\xc4\ +\xcc\xce\xc3\xcb\xcf\xc5\xcc\xd0\xc8\xcf\xd1\xc9\xd0\xd4\xcc\xd3\ +\xd6\xcf\xd6\xd7\xcf\xd6\xd6\xce\xd5\xd4\xcc\xd3\xd1\xc9\xd0\xc4\ +\xbc\xc4\xba\xb1\xbb\xb8\xb0\xba\xb9\xb1\xbb\xb9\xb1\xbb\xb8\xb0\ +\xba\xb8\xb0\xbb\xb8\xb0\xbc\xb9\xb0\xbb\xb9\xb1\xbc\xb9\xb1\xbc\ +\xba\xb2\xbd\xba\xb2\xbd\xbb\xb3\xbe\xbc\xb5\xbf\xbb\xb5\xc0\xb8\ +\xb2\xbd\xb6\xb0\xbb\xb4\xae\xba\xb2\xab\xb8\xaf\xa8\xb5\xb0\xa9\ +\xb6\xb2\xab\xb8\xb4\xad\xba\xc8\xc0\xc9\xeb\xe8\xea\xf1\xf1\xf1\ +\xf4\xf4\xf4\xf4\xf4\xf4\xe0\xda\xdd\xb7\xaf\xb9\xb6\xae\xba\xb5\ +\xab\xb7\xb7\xaa\xb5\xbe\xb0\xb8\xc2\xb5\xbb\xc7\xb8\xbd\xca\xbc\ +\xbf\xcd\xbf\xc2\xd1\xc3\xc5\xd4\xc6\xc8\xd4\xc7\xc9\xd7\xca\xcc\ +\xd7\xca\xcd\xd7\xcc\xce\xd7\xcc\xd0\xd7\xcc\xcf\xd5\xcb\xce\xd2\ +\xc7\xca\xce\xc3\xc8\xc8\xbe\xc5\xc3\xb8\xbf\xbd\xb2\xba\xb8\xad\ +\xb7\xb5\xac\xb6\xb5\xab\xb6\xb5\xac\xb7\xb4\xab\xb7\xb5\xab\xb7\ +\xb4\xaa\xb6\xaf\xa6\xb2\xac\xa3\xb0\xab\xa3\xaf\xac\xa3\xb0\xaf\ +\xa6\xb1\xb1\xa8\xb4\xaf\xa6\xb1\x8d\x86\x95\x66\x64\x77\x52\x53\ +\x67\x45\x47\x5b\x39\x3a\x4d\x2b\x2f\x42\x1f\x22\x33\x1f\x21\x30\ +\x1f\x20\x30\x20\x20\x2e\x28\x2a\x3b\x37\x3b\x4e\x34\x38\x4c\x28\ +\x2b\x3e\x24\x27\x38\x2a\x2d\x3d\x23\x26\x36\x2a\x2d\x3f\x00\x00\ +\x00\xef\xe4\xe6\xef\xe4\xe6\xef\xe4\xe4\xef\xe4\xe4\xef\xe4\xe3\ +\xf0\xe5\xe2\xf0\xe3\xe2\xee\xe2\xe1\xee\xe0\xe0\xed\xe0\xe1\xed\ +\xe1\xe1\xec\xe0\xe1\xed\xe1\xe3\xee\xe3\xe4\xee\xe5\xe6\xee\xe6\ +\xe7\xef\xe8\xe9\xf1\xeb\xec\xf2\xed\xee\xf3\xef\xef\xf2\xf1\xf1\ +\xf2\xf2\xf2\xf2\xf2\xf2\xf3\xf2\xf2\xf2\xf1\xf1\xf3\xf1\xf1\xf2\ +\xf0\xf0\xf4\xef\xef\xf3\xee\xed\xf3\xec\xeb\xf1\xe9\xea\xef\xe4\ +\xe6\xec\xe1\xe4\xe9\xe0\xe3\xe8\xdf\xe4\xe6\xdf\xe4\xe6\xde\xe4\ +\xe4\xdd\xe4\xe4\xdd\xe4\xe4\xdd\xe4\xe6\xdf\xe6\xe7\xe0\xe7\xe6\ +\xe1\xe7\xe7\xe2\xe8\xe9\xe3\xea\xeb\xe4\xea\xea\xe3\xea\xeb\xe5\ +\xea\xeb\xe5\xea\xeb\xe5\xea\xe9\xe3\xe8\xe8\xe1\xe7\xe6\xdf\xe6\ +\xe5\xde\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe1\xda\xe1\xdc\xd5\xdc\xd8\ +\xd1\xd8\xd4\xcd\xd4\xd2\xcb\xd2\xcf\xc7\xd1\xcd\xc5\xcf\xcc\xc4\ +\xce\xcc\xc3\xcc\xcb\xc3\xca\xcb\xc3\xc9\xce\xc3\xcb\xcf\xc3\xcb\ +\xcf\xc4\xcc\xcf\xc7\xce\xd1\xc9\xd0\xd4\xcc\xd3\xd6\xcd\xd4\xd5\ +\xce\xd4\xd4\xcd\xd4\xd4\xcc\xd3\xd3\xcb\xd1\xc9\xc1\xc9\xbd\xb5\ +\xbf\xb9\xb0\xba\xb9\xb0\xba\xb9\xb0\xba\xb8\xb0\xba\xb8\xb0\xba\ +\xb8\xb0\xbb\xb9\xb1\xbc\xb9\xb2\xbc\xb8\xb2\xbd\xba\xb3\xbe\xba\ +\xb3\xbe\xba\xb3\xbe\xba\xb4\xbf\xbc\xb6\xc1\xba\xb4\xbf\xb5\xb0\ +\xbc\xb3\xae\xb9\xb0\xaa\xb7\xaf\xa9\xb5\xaf\xa8\xb5\xb1\xaa\xb7\ +\xb5\xac\xb8\xc1\xb8\xc3\xe7\xe3\xe7\xef\xed\xef\xed\xea\xed\xe6\ +\xe3\xe6\xc6\xbe\xc6\xb5\xad\xba\xc1\xb9\xc3\xbc\xb3\xbe\xb9\xae\ +\xb9\xbd\xb1\xb9\xbe\xb1\xb9\xbe\xb2\xba\xbd\xb1\xb9\xbe\xb1\xba\ +\xbf\xb2\xbb\xc2\xb6\xbc\xc4\xb8\xbe\xc5\xb9\xbf\xc7\xba\xc0\xca\ +\xbc\xc2\xcc\xbf\xc4\xcd\xc2\xc6\xce\xc2\xc6\xcc\xc0\xc5\xc9\xbe\ +\xc5\xc6\xba\xc0\xbf\xb4\xbb\xb9\xae\xb8\xb5\xab\xb6\xb5\xab\xb5\ +\xb5\xaa\xb6\xb5\xab\xb7\xb5\xab\xb7\xb6\xaa\xb7\xb3\xa9\xb5\xaf\ +\xa5\xb1\xac\xa1\xae\xac\xa3\xb0\xad\xa4\xb0\xaf\xa5\xb2\xb2\xa9\ +\xb4\xb6\xad\xb6\xb3\xa9\xb4\x8f\x85\x92\x5c\x5a\x6d\x4f\x51\x66\ +\x45\x48\x5b\x35\x39\x4d\x2f\x33\x45\x2d\x2f\x3e\x24\x25\x33\x28\ +\x2a\x39\x34\x36\x49\x3e\x42\x55\x39\x3c\x4f\x29\x2b\x3b\x24\x24\ +\x33\x2a\x2c\x3b\x24\x26\x36\x2a\x2d\x3e\x00\x00\x00\xee\xe3\xe4\ +\xee\xe3\xe3\xee\xe1\xe2\xed\xe0\xe0\xed\xe0\xde\xee\xe1\xdf\xef\ +\xe2\xdf\xef\xe2\xe0\xee\xe1\xdf\xed\xe0\xdf\xec\xdf\xdf\xed\xe0\ +\xe0\xed\xe1\xe1\xed\xe2\xe3\xee\xe3\xe5\xef\xe6\xe7\xef\xe8\xe9\ +\xf1\xe9\xea\xf2\xec\xec\xf4\xef\xee\xf3\xf0\xf0\xf2\xf1\xf1\xf3\ +\xf1\xf1\xf3\xf2\xf2\xf3\xf1\xf1\xf2\xf1\xf0\xf3\xef\xee\xf4\xef\ +\xee\xf3\xee\xed\xf2\xea\xea\xf1\xe7\xe8\xee\xe3\xe4\xec\xe1\xe3\ +\xea\xe0\xe3\xe8\xdf\xe3\xe6\xdf\xe4\xe5\xdd\xe3\xe4\xdd\xe4\xe4\ +\xdc\xe3\xe4\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe6\xe0\xe7\xe7\xe0\ +\xe7\xe9\xe2\xe9\xea\xe3\xea\xea\xe3\xea\xea\xe4\xe9\xea\xe4\xe9\ +\xeb\xe5\xea\xe9\xe3\xe8\xe9\xe2\xe7\xe6\xe0\xe6\xe5\xde\xe6\xe5\ +\xde\xe5\xe2\xdc\xe3\xe0\xd9\xe0\xdc\xd5\xdc\xd8\xd1\xd8\xd5\xce\ +\xd5\xd3\xcc\xd3\xd2\xca\xd2\xcf\xc7\xd0\xce\xc6\xce\xcd\xc5\xcc\ +\xcb\xc3\xca\xcc\xc2\xca\xce\xc3\xcb\xcf\xc5\xcc\xcf\xc5\xcc\xd0\ +\xc6\xce\xd1\xc9\xd0\xd4\xcc\xd3\xd6\xce\xd5\xd6\xce\xd5\xd5\xcd\ +\xd4\xd4\xcc\xd3\xd3\xcb\xd2\xcf\xc6\xce\xc2\xb9\xc3\xba\xb2\xbc\ +\xb9\xb0\xba\xb9\xb1\xbb\xb8\xb0\xba\xb7\xaf\xb9\xb7\xaf\xba\xb9\ +\xb1\xbc\xb9\xb2\xbd\xb8\xb2\xbd\xba\xb4\xbf\xba\xb4\xbf\xba\xb4\ +\xbf\xbb\xb4\xbf\xbd\xb7\xc2\xbb\xb6\xc0\xb6\xb2\xbd\xb1\xab\xb7\ +\xae\xa7\xb5\xad\xa6\xb4\xad\xa6\xb5\xaf\xa8\xb6\xb1\xaa\xb8\xbb\ +\xb3\xc0\xe3\xdf\xe4\xee\xeb\xed\xe4\xdf\xe3\xd9\xd4\xdb\xbf\xb8\ +\xc3\xbd\xb6\xc2\xc9\xc1\xcb\xc1\xb8\xc3\xb9\xae\xb9\xba\xaf\xb9\ +\xbc\xb1\xba\xbd\xb2\xb9\xbc\xb1\xba\xbc\xb0\xb9\xbb\xb0\xba\xba\ +\xaf\xb9\xbb\xaf\xb9\xbb\xaf\xb8\xbc\xb0\xb8\xbc\xb0\xb8\xbc\xb0\ +\xb8\xbd\xb1\xb8\xbe\xb2\xba\xc0\xb3\xbb\xc1\xb4\xbc\xbe\xb3\xbb\ +\xba\xaf\xb8\xb7\xac\xb6\xb5\xaa\xb5\xb5\xaa\xb5\xb4\xaa\xb5\xb5\ +\xaa\xb5\xb5\xaa\xb6\xb4\xab\xb6\xb3\xa9\xb4\xaf\xa5\xb1\xac\xa1\ +\xae\xac\xa3\xb0\xae\xa4\xb0\xb0\xa6\xb2\xb3\xa9\xb5\xb5\xac\xb6\ +\xb8\xae\xb8\xa3\x98\xa5\x82\x7c\x8e\x72\x6f\x82\x5a\x5a\x6d\x57\ +\x59\x6d\x52\x56\x68\x43\x46\x55\x32\x32\x41\x3a\x3b\x4c\x42\x44\ +\x58\x3b\x40\x53\x3a\x3f\x51\x32\x34\x44\x2a\x2a\x39\x2d\x2e\x3d\ +\x26\x27\x35\x24\x24\x34\x00\x00\x00\xee\xe3\xe2\xee\xe1\xe1\xed\ +\xdf\xdf\xec\xde\xdc\xed\xde\xdc\xec\xde\xdc\xee\xdf\xdc\xee\xe0\ +\xdd\xee\xdf\xdd\xed\xdf\xdd\xec\xdf\xdd\xed\xdf\xdf\xec\xe0\xe0\ +\xef\xe3\xe3\xee\xe3\xe4\xef\xe5\xe5\xf0\xe6\xe7\xf1\xe8\xe8\xf2\ +\xeb\xea\xf3\xee\xed\xf4\xf0\xef\xf3\xf0\xef\xf4\xf1\xf0\xf2\xf1\ +\xf1\xf2\xf1\xf0\xf3\xf0\xef\xf4\xf0\xef\xf2\xee\xed\xf3\xed\xec\ +\xf2\xea\xea\xf0\xe6\xe6\xee\xe2\xe4\xeb\xe0\xe2\xea\xe0\xe3\xe8\ +\xdf\xe2\xe6\xde\xe3\xe4\xdd\xe2\xe4\xdc\xe4\xe3\xdd\xe4\xe4\xdd\ +\xe4\xe4\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe7\xe0\xe7\xe8\xe1\xe8\ +\xe8\xe1\xe8\xe9\xe2\xe8\xe9\xe3\xe8\xe9\xe3\xe8\xea\xe4\xe9\xe9\ +\xe3\xe8\xe9\xe3\xe8\xe8\xe2\xe7\xe6\xdf\xe5\xe5\xde\xe4\xe3\xdc\ +\xe3\xe0\xd9\xe0\xdc\xd5\xdc\xd8\xd1\xd8\xd6\xcf\xd6\xd5\xce\xd5\ +\xd3\xcc\xd3\xd1\xca\xd1\xce\xc6\xcd\xce\xc6\xcd\xcd\xc5\xcc\xcf\ +\xc4\xcc\xd0\xc5\xcd\xd0\xc5\xcd\xd0\xc6\xce\xd1\xc8\xd0\xd3\xcb\ +\xd1\xd5\xcd\xd3\xd7\xd0\xd6\xd7\xd1\xd5\xd7\xcf\xd6\xd5\xcd\xd4\ +\xd4\xcc\xd3\xd2\xca\xd1\xcd\xc5\xcd\xbe\xb6\xc0\xba\xb0\xba\xba\ +\xb1\xbb\xb8\xaf\xb9\xb7\xb0\xb9\xb7\xaf\xb9\xb9\xb1\xbc\xb8\xb1\ +\xbc\xb8\xb2\xbd\xb9\xb3\xbe\xbb\xb5\xc0\xbc\xb5\xbf\xbc\xb5\xc0\ +\xbc\xb6\xc2\xb6\xb0\xbc\xae\xa7\xb5\xab\xa4\xb3\xaa\xa3\xb2\xaa\ +\xa3\xb2\xab\xa4\xb3\xad\xa6\xb5\xb0\xa9\xb7\xb7\xaf\xbb\xde\xd7\ +\xdd\xe5\xe0\xe5\xda\xd4\xda\xd6\xd2\xd8\xbf\xb7\xc1\xbf\xb7\xc0\ +\xcc\xc4\xcc\xc0\xb8\xc3\xb6\xaa\xb6\xb6\xab\xb6\xbc\xb1\xba\xbd\ +\xb1\xb9\xbc\xb1\xb8\xbb\xb1\xba\xbb\xb0\xb9\xba\xaf\xb8\xba\xaf\ +\xb9\xba\xaf\xb7\xbb\xaf\xb7\xbb\xaf\xb7\xbb\xaf\xb7\xb9\xae\xb6\ +\xba\xae\xb5\xbb\xad\xb7\xb9\xad\xb7\xba\xad\xb8\xb8\xad\xb7\xb6\ +\xab\xb6\xb6\xaa\xb7\xb6\xaa\xb6\xb4\xaa\xb6\xb5\xaa\xb5\xb4\xaa\ +\xb6\xb4\xaa\xb6\xb2\xa8\xb4\xaf\xa5\xb1\xad\xa3\xb0\xac\xa2\xaf\ +\xaf\xa5\xb1\xb1\xa7\xb3\xb3\xaa\xb5\xb7\xac\xb6\xb8\xad\xb7\xb7\ +\xad\xb6\xb5\xac\xb6\xaf\xa6\xb1\x87\x7f\x8f\x5e\x5e\x72\x66\x68\ +\x7b\x54\x55\x65\x37\x38\x48\x4c\x4e\x61\x60\x63\x78\x5b\x5d\x72\ +\x4f\x51\x65\x3d\x3e\x51\x37\x37\x47\x35\x35\x43\x29\x2a\x38\x25\ +\x26\x35\x00\x00\x00\xed\xe0\xe1\xed\xe0\xe0\xec\xde\xdc\xec\xdc\ +\xda\xeb\xdc\xd9\xec\xdc\xd9\xec\xdc\xd9\xec\xdc\xd9\xec\xdc\xd9\ +\xeb\xdc\xda\xec\xde\xdc\xec\xdf\xdd\xed\xe0\xe0\xee\xe2\xe2\xef\ +\xe4\xe4\xef\xe5\xe5\xf0\xe7\xe7\xf1\xe8\xe8\xf2\xe9\xea\xf3\xed\ +\xec\xf3\xef\xee\xf3\xef\xee\xf3\xef\xee\xf4\xf0\xef\xf4\xf0\xef\ +\xf3\xef\xee\xf3\xee\xed\xf2\xed\xec\xf2\xea\xea\xf1\xe7\xe7\xef\ +\xe5\xe5\xee\xe1\xe3\xeb\xe0\xe2\xe9\xde\xe1\xe8\xde\xe2\xe7\xde\ +\xe3\xe6\xdf\xe4\xe4\xdc\xe2\xe3\xdb\xe2\xe2\xdb\xe2\xe3\xdc\xe3\ +\xe3\xdc\xe3\xe4\xdd\xe4\xe6\xdf\xe6\xe6\xdf\xe6\xe7\xe0\xe7\xe8\ +\xe2\xe8\xe9\xe3\xe8\xe8\xe2\xe7\xe8\xe2\xe7\xe8\xe2\xe7\xe8\xe2\ +\xe7\xe7\xe1\xe6\xe7\xe1\xe5\xe5\xdf\xe4\xe3\xdc\xe2\xdf\xd8\xde\ +\xdb\xd4\xdb\xd8\xd1\xd8\xd7\xd0\xd7\xd7\xd0\xd6\xd6\xce\xd5\xd3\ +\xcb\xd3\xd2\xca\xd1\xd0\xc8\xcf\xd0\xc8\xcf\xd1\xc7\xce\xd2\xc7\ +\xcf\xd2\xc8\xcf\xd2\xca\xd1\xd3\xcc\xd1\xd6\xce\xd4\xd7\xd0\xd5\ +\xd9\xd2\xd7\xd9\xd2\xd7\xd9\xd2\xd7\xd7\xcf\xd5\xd6\xce\xd5\xd5\ +\xcd\xd4\xd4\xcd\xd4\xcb\xc3\xcb\xbe\xb6\xc0\xb9\xb1\xbb\xb9\xb1\ +\xbb\xb8\xb0\xba\xb7\xaf\xb9\xb8\xb0\xbb\xb7\xb0\xbb\xb6\xb0\xbb\ +\xb8\xb2\xbd\xb9\xb3\xbe\xba\xb4\xbf\xbc\xb5\xc0\xb9\xb3\xbe\xae\ +\xa7\xb5\xa8\xa1\xb0\xa8\xa1\xb0\xa9\xa1\xb1\xaa\xa3\xb1\xa9\xa2\ +\xb1\xab\xa4\xb3\xae\xa7\xb6\xb1\xaa\xb8\xd1\xca\xd2\xe6\xe2\xe7\ +\xde\xda\xdf\xd9\xd5\xdb\xb7\xb1\xbd\x9b\x90\xa3\xc1\xb9\xc3\xc3\ +\xbb\xc5\xb4\xa8\xb5\xb6\xa9\xb5\xb9\xae\xb8\xbb\xb0\xba\xbb\xb0\ +\xb9\xbb\xb0\xba\xba\xaf\xb9\xba\xaf\xb8\xba\xaf\xb8\xb8\xad\xb7\ +\xb9\xae\xb6\xb9\xae\xb7\xb8\xad\xb6\xb9\xae\xb6\xb9\xad\xb6\xb8\ +\xad\xb7\xb8\xad\xb7\xb7\xab\xb6\xb6\xab\xb6\xb6\xaa\xb6\xb6\xaa\ +\xb6\xb6\xaa\xb6\xb4\xa9\xb5\xb3\xa9\xb5\xb3\xa9\xb5\xb3\xa8\xb5\ +\xb2\xa8\xb4\xaf\xa5\xb1\xad\xa3\xb0\xac\xa3\xb0\xaf\xa5\xb1\xb1\ +\xa7\xb3\xb4\xaa\xb5\xb6\xab\xb6\xb8\xad\xb7\xb9\xae\xb8\xb8\xae\ +\xb8\xb7\xae\xb8\xa7\x9d\xa9\x87\x82\x94\x79\x79\x8c\x6c\x6b\x7d\ +\x4e\x4d\x5f\x59\x5b\x6f\x73\x73\x88\x71\x71\x85\x64\x65\x79\x4a\ +\x4b\x5d\x3c\x3c\x4c\x38\x37\x47\x2d\x2d\x3d\x28\x2a\x3a\x00\x00\ +\x00\xee\xe0\xde\xee\xdf\xdd\xec\xdc\xda\xeb\xdb\xd8\xeb\xda\xd7\ +\xec\xda\xd7\xec\xdb\xd7\xeb\xda\xd6\xeb\xd9\xd6\xeb\xda\xd7\xeb\ +\xdc\xd9\xec\xde\xdc\xed\xdf\xdd\xee\xe1\xe1\xef\xe3\xe3\xef\xe4\ +\xe4\xf0\xe6\xe6\xf1\xe7\xe7\xf2\xe9\xe8\xf3\xec\xec\xf3\xee\xec\ +\xf3\xee\xec\xf4\xee\xee\xf3\xef\xee\xf3\xef\xee\xf3\xef\xee\xf2\ +\xee\xed\xf2\xeb\xeb\xf1\xe9\xe9\xf1\xe6\xe6\xef\xe4\xe4\xee\xe1\ +\xe3\xeb\xe0\xe2\xe9\xdf\xe2\xe8\xdf\xe2\xe8\xde\xe4\xe5\xde\xe3\ +\xe4\xdc\xe2\xe3\xdb\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe4\ +\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe6\xe7\xe0\xe7\xe7\xe0\xe7\xe8\xe2\ +\xe7\xe8\xe2\xe7\xe8\xe2\xe7\xe9\xe3\xe8\xe9\xe3\xe8\xe8\xe2\xe7\ +\xe7\xe0\xe5\xe5\xdf\xe4\xe2\xdc\xe1\xde\xd8\xde\xdb\xd4\xdb\xd8\ +\xd1\xd8\xd9\xd1\xd8\xd8\xd1\xd7\xd8\xd0\xd6\xd5\xce\xd4\xd4\xcc\ +\xd3\xd3\xcb\xd2\xd3\xca\xd2\xd3\xcc\xd1\xd3\xcb\xd1\xd3\xcc\xd2\ +\xd4\xcd\xd2\xd7\xd0\xd5\xd9\xd2\xd7\xdb\xd4\xd9\xdb\xd4\xd9\xdb\ +\xd4\xd9\xda\xd2\xd7\xd9\xd2\xd7\xd8\xd1\xd6\xd7\xd0\xd6\xd8\xd0\ +\xd6\xd4\xcd\xd3\xc7\xbf\xc7\xbc\xb4\xbe\xb9\xb1\xbb\xb9\xb0\xba\ +\xb8\xb0\xba\xb8\xb0\xba\xb7\xb0\xba\xb6\xaf\xb9\xb4\xae\xb9\xb6\ +\xaf\xba\xb8\xb2\xbc\xba\xb3\xbe\xba\xb4\xbf\xb6\xb0\xbc\xaf\xa8\ +\xb7\xab\xa4\xb3\xa9\xa2\xb2\xa8\xa1\xb0\xa8\xa1\xb0\xa9\xa2\xb1\ +\xac\xa5\xb4\xaf\xa8\xb8\xc4\xbd\xc9\xe9\xe5\xea\xe7\xe3\xe8\xdb\ +\xd7\xdd\xba\xb5\xc2\x81\x7b\x97\xb4\xad\xba\xc6\xbe\xc8\xb4\xaa\ +\xb7\xb4\xa8\xb4\xb8\xad\xb7\xbb\xb0\xb9\xba\xaf\xb8\xba\xaf\xb8\ +\xb9\xae\xb7\xba\xaf\xb8\xb9\xae\xb7\xb8\xad\xb8\xb9\xae\xb8\xb9\ +\xae\xb7\xb8\xad\xb7\xb9\xae\xb8\xb8\xad\xb7\xb8\xad\xb7\xb7\xab\ +\xb6\xb5\xa9\xb5\xb4\xa8\xb5\xb5\xa8\xb6\xb5\xa9\xb6\xb6\xaa\xb6\ +\xb5\xaa\xb6\xb3\xa9\xb5\xb3\xa8\xb4\xb2\xa8\xb5\xb1\xa7\xb4\xaf\ +\xa5\xb2\xad\xa3\xb0\xac\xa3\xb0\xaf\xa5\xb1\xb1\xa7\xb3\xb3\xaa\ +\xb4\xb5\xac\xb6\xb8\xad\xb7\xb8\xad\xb7\xb9\xae\xb8\xb9\xae\xb8\ +\xb6\xad\xb7\xb3\xaa\xb4\xae\xa6\xb1\xa9\xa1\xae\x97\x91\xa1\x92\ +\x8d\x9f\x94\x8f\xa0\x86\x84\x97\x76\x76\x8b\x62\x62\x76\x4c\x4b\ +\x5d\x3f\x40\x50\x38\x38\x48\x33\x35\x46\x00\x00\x00\xed\xde\xdc\ +\xee\xdd\xda\xec\xdb\xd8\xec\xda\xd6\xeb\xd8\xd3\xeb\xd8\xd3\xeb\ +\xd8\xd3\xeb\xd8\xd3\xeb\xd9\xd5\xe9\xd8\xd5\xea\xd9\xd6\xeb\xdc\ +\xd9\xec\xde\xdc\xec\xdf\xdd\xed\xe0\xde\xee\xe1\xe0\xee\xe2\xe0\ +\xf0\xe4\xe3\xf1\xe6\xe4\xf2\xe9\xe6\xf3\xeb\xe8\xf3\xeb\xe8\xf3\ +\xec\xe9\xf2\xec\xea\xf3\xed\xeb\xf2\xed\xed\xf3\xec\xeb\xf2\xe9\ +\xe9\xf1\xe7\xe7\xf0\xe4\xe4\xef\xe2\xe2\xed\xe0\xe2\xea\xdf\xe1\ +\xea\xe0\xe2\xe8\xdf\xe2\xe7\xde\xe3\xe5\xde\xe3\xe4\xdd\xe3\xe4\ +\xdb\xe3\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe3\xdc\xe3\xe3\xdc\ +\xe3\xe4\xdd\xe4\xe6\xdf\xe6\xe6\xe0\xe6\xe7\xe0\xe6\xe6\xe1\xe6\ +\xe8\xe1\xe6\xea\xe3\xe8\xea\xe3\xe8\xe9\xe2\xe7\xe7\xe0\xe5\xe5\ +\xde\xe3\xe1\xda\xdf\xde\xd7\xdd\xda\xd3\xda\xd8\xd1\xd8\xda\xd1\ +\xd8\xd8\xd1\xd6\xd7\xd0\xd5\xd6\xcf\xd4\xd6\xce\xd5\xd6\xcf\xd5\ +\xd6\xcf\xd4\xd6\xce\xd5\xd6\xcf\xd4\xd7\xd0\xd5\xd8\xd1\xd6\xda\ +\xd3\xd8\xdc\xd5\xda\xdc\xd5\xda\xdc\xd5\xda\xdd\xd5\xda\xdc\xd3\ +\xd9\xda\xd3\xd8\xd9\xd2\xd7\xd8\xd1\xd6\xd8\xd1\xd7\xd7\xd0\xd6\ +\xd0\xc8\xcf\xc1\xb9\xc3\xbb\xb2\xbc\xb9\xb1\xbb\xb8\xb0\xba\xb7\ +\xaf\xba\xb7\xaf\xba\xb7\xb0\xbb\xb4\xae\xb9\xb3\xad\xb8\xb4\xae\ +\xb9\xb6\xb0\xbb\xb8\xb2\xbd\xb9\xb3\xbe\xb5\xae\xbb\xb2\xab\xb8\ +\xad\xa6\xb5\xaa\xa3\xb2\xa9\xa1\xb0\xa8\xa1\xb1\xa9\xa4\xb2\xac\ +\xa7\xb6\xc0\xba\xc6\xed\xeb\xef\xee\xec\xef\xe2\xdd\xe4\xc1\xbc\ +\xc9\x7a\x77\x95\xad\xa7\xb6\xc8\xc1\xcc\xb8\xad\xba\xb2\xa7\xb3\ +\xb7\xab\xb7\xba\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xb9\ +\xae\xb7\xb9\xae\xb8\xb8\xad\xb7\xb8\xad\xb7\xb8\xad\xb7\xb8\xad\ +\xb7\xb8\xad\xb7\xb8\xad\xb7\xb7\xac\xb6\xb6\xaa\xb6\xb4\xa8\xb5\ +\xb4\xa7\xb5\xb4\xa7\xb5\xb4\xa7\xb5\xb4\xa9\xb5\xb5\xaa\xb6\xb4\ +\xa9\xb5\xb4\xa9\xb5\xb2\xa8\xb4\xb2\xa8\xb4\xaf\xa5\xb2\xad\xa3\ +\xb0\xad\xa3\xb0\xae\xa4\xb1\xb1\xa7\xb3\xb3\xa9\xb4\xb5\xab\xb5\ +\xb7\xac\xb6\xb7\xad\xb7\xb7\xac\xb6\xb7\xac\xb6\xb7\xac\xb6\xb5\ +\xac\xb6\xb5\xac\xb6\xb6\xad\xb6\xb6\xac\xb6\xb4\xab\xb5\xad\xa3\ +\xb0\x9e\x99\xa8\x95\x90\xa5\x8e\x8b\xa0\x72\x70\x86\x49\x49\x5b\ +\x43\x43\x54\x38\x39\x4a\x00\x00\x00\xee\xde\xdb\xee\xdd\xd9\xed\ +\xda\xd5\xeb\xd8\xd3\xea\xd6\xd1\xe9\xd6\xd1\xe9\xd5\xd0\xe9\xd6\ +\xd1\xea\xd7\xd2\xea\xd7\xd4\xea\xd9\xd6\xea\xda\xd7\xea\xdb\xd9\ +\xeb\xdc\xda\xeb\xdd\xda\xeb\xde\xdc\xec\xdf\xdd\xec\xdf\xdd\xee\ +\xe1\xdf\xf0\xe4\xe2\xf1\xe6\xe4\xf2\xe8\xe6\xf2\xe9\xe6\xf2\xea\ +\xe7\xf2\xea\xe7\xf2\xea\xe7\xf1\xe9\xe7\xf1\xe7\xe7\xf0\xe5\xe5\ +\xee\xe2\xe2\xed\xe1\xe1\xeb\xe0\xe1\xea\xdf\xe1\xe8\xdd\xdf\xe6\ +\xdd\xe0\xe5\xdc\xe0\xe4\xdc\xe1\xe3\xdc\xe2\xe2\xdb\xe2\xe2\xda\ +\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\xe3\xdc\xe3\ +\xe4\xdd\xe4\xe5\xde\xe5\xe6\xdf\xe5\xe6\xe0\xe5\xe8\xe1\xe6\xe9\ +\xe2\xe7\xe9\xe2\xe7\xe9\xe2\xe7\xe6\xdf\xe4\xe4\xdd\xe2\xe0\xd9\ +\xdd\xdc\xd4\xdb\xd8\xd1\xd8\xd7\xd0\xd7\xd8\xd1\xd6\xd7\xd0\xd5\ +\xd6\xcf\xd4\xd7\xd0\xd5\xd8\xd0\xd7\xd9\xd2\xd7\xd9\xd2\xd7\xda\ +\xd3\xd8\xd9\xd2\xd7\xda\xd3\xd8\xdc\xd5\xda\xdd\xd6\xdb\xdd\xd6\ +\xdb\xdd\xd6\xdb\xde\xd6\xdb\xde\xd4\xda\xdd\xd4\xd8\xdb\xd1\xd7\ +\xda\xd1\xd7\xd9\xd1\xd6\xd8\xd1\xd6\xd6\xcf\xd5\xd4\xcd\xd4\xc9\ +\xc1\xcb\xbf\xb7\xc1\xba\xb2\xbc\xb9\xb0\xba\xb8\xaf\xba\xb6\xae\ +\xb9\xb7\xaf\xba\xb6\xb0\xbb\xb6\xb0\xbb\xb6\xb0\xbb\xb5\xaf\xba\ +\xb4\xae\xb9\xb5\xae\xbb\xb5\xae\xbb\xb5\xae\xbb\xb4\xad\xba\xaf\ +\xa8\xb6\xaa\xa2\xb2\xa7\xa0\xb0\xa8\xa2\xb2\xac\xa6\xb5\xc0\xba\ +\xc8\xf1\xf0\xf1\xf7\xf7\xf7\xf2\xf2\xf3\xd3\xd0\xd9\x7d\x7b\x98\ +\xac\xa5\xb5\xcc\xc7\xcf\xbd\xb4\xc0\xb2\xa8\xb5\xb5\xaa\xb5\xb7\ +\xac\xb7\xb8\xad\xb8\xb7\xac\xb6\xb7\xac\xb6\xb8\xad\xb7\xb6\xac\ +\xb6\xb6\xac\xb6\xb5\xab\xb5\xb5\xaa\xb4\xb6\xab\xb5\xb7\xac\xb6\ +\xb7\xac\xb6\xb7\xab\xb7\xb5\xa9\xb5\xb4\xa8\xb5\xb3\xa6\xb4\xb2\ +\xa6\xb3\xb2\xa6\xb4\xb4\xa7\xb4\xb5\xaa\xb5\xb6\xaa\xb6\xb4\xaa\ +\xb6\xb4\xaa\xb6\xb2\xa8\xb4\xb0\xa6\xb2\xad\xa4\xb1\xad\xa4\xb1\ +\xaf\xa6\xb2\xb1\xa7\xb3\xb3\xaa\xb5\xb4\xab\xb4\xb6\xab\xb5\xb6\ +\xab\xb5\xb6\xab\xb5\xb6\xab\xb5\xb4\xab\xb5\xb4\xab\xb5\xb5\xac\ +\xb6\xb6\xad\xb7\xb5\xad\xb7\xb4\xaa\xb5\xa9\xa0\xae\x99\x92\xa5\ +\x8f\x8b\xa0\x94\x91\xa6\x8f\x8c\xa2\x6c\x6c\x84\x5b\x5d\x72\x47\ +\x48\x5c\x00\x00\x00\xee\xde\xd8\xee\xdc\xd6\xec\xd9\xd3\xeb\xd7\ +\xd2\xea\xd6\xd1\xe9\xd5\xd0\xea\xd5\xd0\xe9\xd5\xd1\xe9\xd6\xd1\ +\xe9\xd6\xd1\xe9\xd8\xd4\xea\xd9\xd6\xea\xda\xd7\xe9\xda\xd7\xea\ +\xda\xd7\xea\xdb\xd8\xeb\xdb\xd9\xeb\xdc\xda\xeb\xdd\xdb\xed\xdf\ +\xdd\xee\xe2\xe0\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe7\xe4\xf0\xe6\xe4\ +\xf0\xe5\xe3\xef\xe4\xe4\xee\xe3\xe3\xed\xe1\xe1\xec\xdf\xe0\xea\ +\xde\xdf\xe9\xdd\xdf\xe7\xdc\xde\xe7\xdc\xdf\xe4\xdb\xde\xe3\xda\ +\xdf\xe2\xda\xdf\xe1\xda\xe0\xe1\xd9\xe0\xe1\xd9\xe0\xe0\xd9\xe0\ +\xdf\xd8\xdf\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe4\ +\xdd\xe4\xe5\xde\xe4\xe6\xdf\xe4\xe7\xe0\xe5\xe7\xe0\xe5\xe7\xe0\ +\xe5\xe6\xdf\xe4\xe4\xdd\xe2\xe1\xda\xdf\xdd\xd6\xdc\xd9\xd2\xd9\ +\xd6\xcf\xd6\xd6\xce\xd5\xd6\xcf\xd5\xd6\xcf\xd4\xd6\xcf\xd4\xd8\ +\xd0\xd6\xda\xd3\xd7\xdb\xd4\xd9\xdb\xd4\xd9\xdb\xd4\xd9\xdc\xd5\ +\xdb\xdc\xd5\xda\xdd\xd6\xdb\xde\xd7\xdc\xdf\xd8\xdd\xdf\xd8\xdd\ +\xde\xd7\xdc\xde\xd5\xda\xdd\xd2\xd9\xda\xd0\xd6\xd9\xcf\xd5\xd8\ +\xcf\xd5\xd7\xd0\xd5\xd6\xce\xd6\xd5\xcf\xd6\xd2\xca\xd3\xc6\xbe\ +\xc8\xbd\xb4\xbe\xb8\xb0\xb9\xb7\xaf\xba\xb7\xaf\xba\xb8\xb0\xbb\ +\xb7\xb0\xbb\xb8\xb1\xbc\xb8\xb2\xbd\xb8\xb2\xbd\xb6\xaf\xbb\xb3\ +\xac\xb9\xb2\xac\xb9\xb1\xab\xb9\xb2\xac\xba\xb4\xad\xba\xb1\xaa\ +\xb8\xaa\xa3\xb3\xa6\xa1\xb1\xaa\xa4\xb4\xc0\xba\xc7\xf2\xf0\xf2\ +\xfb\xfb\xfb\xf9\xf9\xf9\xe6\xe5\xe8\x89\x87\xa1\xab\xa6\xb5\xd1\ +\xcb\xd4\xc5\xbd\xc8\xb3\xa9\xb6\xb2\xa7\xb3\xb5\xa9\xb5\xb6\xaa\ +\xb6\xb6\xab\xb5\xb6\xab\xb5\xb6\xab\xb5\xb5\xab\xb5\xb4\xa9\xb5\ +\xb3\xa9\xb4\xb3\xa9\xb4\xb4\xa9\xb4\xb3\xa9\xb4\xb4\xaa\xb5\xb5\ +\xab\xb6\xb6\xa9\xb5\xb5\xa9\xb6\xb3\xa6\xb4\xb1\xa6\xb3\xb0\xa6\ +\xb3\xb1\xa6\xb3\xb2\xa8\xb4\xb3\xa8\xb4\xb4\xaa\xb6\xb4\xaa\xb6\ +\xb4\xa9\xb5\xb1\xa7\xb3\xaf\xa5\xb1\xad\xa3\xb0\xaf\xa5\xb2\xb1\ +\xa7\xb3\xb3\xaa\xb5\xb5\xab\xb5\xb6\xac\xb6\xb5\xaa\xb4\xb4\xaa\ +\xb4\xb5\xaa\xb4\xb4\xaa\xb4\xb4\xab\xb5\xb5\xac\xb6\xb5\xac\xb6\ +\xb5\xad\xb7\xb2\xa8\xb4\xa3\x99\xa9\x8d\x86\x9c\x81\x7e\x97\x87\ +\x84\x9c\x8c\x8a\xa1\x8e\x8c\xa3\x8e\x8d\xa3\x7a\x7a\x8f\x00\x00\ +\x00\xee\xdb\xd6\xee\xdb\xd5\xed\xd9\xd3\xea\xd7\xd1\xea\xd7\xd0\ +\xea\xd6\xd0\xe9\xd6\xcf\xe9\xd5\xcf\xe8\xd5\xd0\xe9\xd5\xd0\xe9\ +\xd6\xd1\xea\xd7\xd3\xe9\xd7\xd3\xe9\xd7\xd3\xe8\xd6\xd4\xe8\xd7\ +\xd4\xe9\xd8\xd5\xe9\xd9\xd6\xe9\xda\xd8\xec\xdd\xdb\xed\xdf\xdd\ +\xee\xe2\xe0\xef\xe3\xe1\xef\xe3\xe3\xee\xe3\xe2\xee\xe2\xe2\xed\ +\xe1\xe1\xec\xe0\xe0\xea\xde\xde\xe9\xdd\xdd\xe8\xdc\xdd\xe7\xda\ +\xdc\xe5\xda\xdc\xe3\xd9\xdc\xe2\xd8\xdc\xe0\xd7\xdd\xde\xd7\xdc\ +\xdd\xd6\xdc\xde\xd6\xdd\xdf\xd7\xde\xdf\xd7\xde\xde\xd6\xdd\xde\ +\xd7\xde\xde\xd6\xdd\xdf\xd8\xdf\xe1\xda\xe1\xe1\xda\xe0\xe2\xdb\ +\xe1\xe3\xdd\xe2\xe4\xdd\xe2\xe4\xdd\xe2\xe2\xdb\xe0\xe2\xdb\xe0\ +\xe0\xd9\xde\xdd\xd6\xdb\xda\xd2\xd9\xd6\xcf\xd6\xd4\xcd\xd4\xd4\ +\xcd\xd4\xd4\xcc\xd3\xd5\xce\xd4\xd7\xcf\xd6\xd9\xd1\xd8\xdb\xd5\ +\xd9\xdc\xd5\xda\xdd\xd6\xdb\xdc\xd6\xdb\xdc\xd6\xdc\xdd\xd7\xdd\ +\xdf\xd9\xde\xe0\xda\xdf\xe1\xda\xdf\xe0\xd9\xde\xde\xd7\xdc\xdd\ +\xd5\xd9\xdc\xd3\xd7\xdb\xd1\xd6\xd9\xcf\xd5\xd7\xcf\xd4\xd6\xce\ +\xd4\xd5\xce\xd5\xd4\xcd\xd5\xd5\xce\xd8\xd2\xca\xd4\xc6\xbe\xc8\ +\xbb\xb3\xbd\xb7\xaf\xba\xb7\xaf\xba\xb7\xaf\xba\xb9\xb1\xbb\xb9\ +\xb1\xbc\xb8\xb2\xbc\xb8\xb2\xbd\xb9\xb3\xbe\xb7\xb1\xbd\xb3\xae\ +\xbb\xb0\xab\xb9\xad\xa8\xb8\xab\xa6\xb7\xb2\xab\xb9\xb2\xac\xb9\ +\xaa\xa5\xb4\xa8\xa3\xb2\xc1\xbd\xc8\xf5\xf5\xf5\xfc\xfc\xfc\xfb\ +\xfb\xfb\xed\xec\xed\x91\x90\xa5\xaa\xa5\xb4\xd6\xd0\xd8\xce\xc7\ +\xd1\xb9\xb0\xbc\xb1\xa6\xb3\xb4\xa8\xb4\xb5\xa9\xb5\xb5\xa9\xb5\ +\xb5\xaa\xb5\xb5\xa9\xb5\xb3\xa9\xb5\xb2\xa8\xb3\xb1\xa7\xb3\xb1\ +\xa7\xb3\xb2\xa8\xb4\xb1\xa7\xb3\xb2\xa8\xb4\xb4\xa9\xb5\xb5\xaa\ +\xb6\xb5\xa9\xb6\xb3\xa8\xb5\xb1\xa7\xb3\xb0\xa6\xb3\xb0\xa6\xb3\ +\xb1\xa7\xb3\xb2\xa8\xb4\xb3\xa8\xb4\xb4\xaa\xb6\xb4\xaa\xb6\xb3\ +\xa9\xb5\xb1\xa7\xb3\xae\xa4\xb1\xae\xa4\xb1\xb0\xa6\xb2\xb4\xaa\ +\xb5\xb4\xab\xb5\xb5\xab\xb5\xb4\xa9\xb3\xb2\xa8\xb4\xb3\xa9\xb4\ +\xb3\xa9\xb5\xb4\xaa\xb5\xb4\xaa\xb6\xb5\xac\xb6\xb6\xac\xb7\xae\ +\xa4\xb1\x9a\x90\xa3\x7d\x79\x93\x71\x71\x8f\x78\x78\x94\x81\x80\ +\x9b\x88\x88\xa0\x92\x90\xa5\x92\x92\xa5\x00\x00\x00\xef\xdc\xd6\ +\xee\xdb\xd5\xed\xd9\xd2\xeb\xd7\xd0\xeb\xd6\xcf\xea\xd7\xd0\xea\ +\xd5\xcf\xe8\xd5\xce\xe9\xd4\xce\xe8\xd4\xce\xe8\xd4\xcf\xe8\xd4\ +\xcf\xe7\xd4\xcf\xe7\xd4\xcf\xe6\xd5\xd1\xe6\xd5\xd3\xe6\xd5\xd2\ +\xe8\xd7\xd4\xe8\xd9\xd7\xea\xdb\xd9\xec\xde\xdc\xec\xe0\xde\xed\ +\xe0\xde\xec\xdf\xe1\xed\xdf\xe0\xec\xe0\xdf\xea\xde\xde\xea\xde\ +\xde\xe8\xdc\xdd\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd8\xda\xe2\xd7\xd9\ +\xe0\xd6\xda\xdf\xd5\xdb\xdd\xd5\xda\xdb\xd3\xda\xdb\xd3\xda\xdb\ +\xd3\xda\xdb\xd4\xdb\xdc\xd4\xdb\xdc\xd4\xdb\xdd\xd5\xdc\xde\xd6\ +\xdd\xdd\xd6\xde\xdf\xd7\xde\xe0\xd8\xe0\xe1\xd9\xdf\xe2\xdb\xe0\ +\xe1\xda\xdf\xdf\xd8\xdd\xde\xd7\xdc\xdd\xd5\xdb\xda\xd3\xd9\xd9\ +\xd1\xd7\xd6\xce\xd5\xd3\xcc\xd3\xd2\xcb\xd2\xd2\xcb\xd2\xd2\xcb\ +\xd2\xd5\xce\xd5\xd6\xcf\xd6\xd9\xd2\xd8\xdc\xd4\xdb\xdd\xd6\xdb\ +\xde\xd7\xdc\xde\xd8\xdd\xdf\xd7\xde\xe0\xd9\xe0\xe1\xdb\xe1\xe2\ +\xdc\xe2\xe1\xdb\xe1\xe0\xd9\xde\xde\xd7\xdc\xdc\xd5\xda\xdc\xd3\ +\xd8\xd9\xd1\xd6\xd7\xcf\xd4\xd6\xcf\xd5\xd6\xce\xd5\xd5\xce\xd5\ +\xd6\xce\xd7\xd8\xd0\xda\xdb\xd3\xdd\xd5\xcd\xd7\xc8\xbf\xc9\xbc\ +\xb3\xbe\xb7\xaf\xba\xb8\xb0\xba\xb3\xac\xb6\x9d\x99\xa8\x9e\x9d\ +\xac\xab\xa7\xb5\xb1\xad\xba\xb2\xad\xbc\xb2\xae\xbc\xb0\xac\xba\ +\xad\xa7\xb9\xa4\xa1\xb5\xa0\x9d\xb2\xad\xa8\xb7\xb2\xad\xb9\xac\ +\xa8\xb6\xbd\xb8\xc3\xf1\xef\xf1\xfa\xfa\xfa\xf9\xf9\xf9\xe9\xe7\ +\xe9\x8b\x8d\xa0\xa9\xa6\xb6\xda\xd5\xdb\xd7\xd1\xd9\xc5\xbd\xc7\ +\xb6\xab\xb8\xb5\xa9\xb5\xb6\xaa\xb6\xb7\xab\xb7\xb6\xac\xb7\xb5\ +\xaa\xb6\xb4\xa9\xb5\xb1\xa7\xb3\xb0\xa6\xb2\xb1\xa7\xb2\xaf\xa5\ +\xb2\xaf\xa5\xb2\xb0\xa6\xb2\xb1\xa7\xb3\xb2\xa8\xb4\xb3\xa9\xb5\ +\xb4\xaa\xb6\xb2\xa8\xb4\xb2\xa8\xb4\xb1\xa7\xb3\xb0\xa6\xb2\xb0\ +\xa6\xb3\xb1\xa7\xb3\xb2\xa8\xb4\xb4\xaa\xb6\xb2\xa8\xb4\xaf\xa5\ +\xb2\xad\xa4\xb0\xae\xa4\xb1\xb0\xa6\xb2\xb3\xaa\xb5\xb4\xab\xb5\ +\xb4\xaa\xb4\xb2\xa8\xb3\xb1\xa7\xb3\xb1\xa7\xb4\xb2\xa8\xb3\xb3\ +\xa9\xb5\xb4\xaa\xb6\xb5\xab\xb7\xb5\xac\xb7\xa9\x9e\xad\x8c\x85\ +\x9b\x6a\x6b\x8a\x64\x67\x87\x6c\x6e\x8d\x75\x77\x94\x7f\x80\x9b\ +\x8b\x8c\xa1\x84\x87\x9f\x00\x00\x00\xef\xdd\xd6\xee\xdc\xd5\xed\ +\xd9\xd3\xec\xd7\xd0\xec\xd6\xd0\xeb\xd5\xcf\xea\xd4\xce\xe9\xd4\ +\xcd\xe9\xd3\xcd\xe8\xd3\xcc\xe7\xd3\xcc\xe6\xd3\xcd\xe6\xd3\xce\ +\xe5\xd2\xcd\xe6\xd4\xd1\xe5\xd4\xd1\xe6\xd5\xd2\xe6\xd7\xd4\xe7\ +\xd8\xd6\xe9\xdb\xd9\xea\xdd\xdb\xeb\xde\xdc\xeb\xde\xdc\xeb\xde\ +\xdf\xeb\xde\xde\xea\xdd\xde\xe9\xdd\xdd\xe8\xdb\xdc\xe7\xd9\xdc\ +\xe6\xd9\xdb\xe3\xd7\xda\xe1\xd6\xda\xdf\xd6\xd9\xde\xd5\xda\xdd\ +\xd4\xda\xdc\xd4\xd9\xda\xd2\xd9\xda\xd2\xd9\xdb\xd3\xda\xdc\xd4\ +\xdb\xdc\xd4\xdb\xde\xd6\xdc\xdf\xd7\xde\xdf\xd7\xde\xe0\xd8\xdf\ +\xe0\xd8\xdf\xe0\xd8\xdf\xdf\xd8\xde\xdf\xd8\xdd\xde\xd7\xdc\xdc\ +\xd5\xda\xd9\xd2\xd7\xd7\xd0\xd5\xd6\xcf\xd5\xd5\xcd\xd3\xd3\xcc\ +\xd3\xd1\xca\xd1\xd0\xc9\xd2\xd2\xca\xd3\xd2\xcc\xd3\xd4\xcd\xd4\ +\xd7\xd0\xd7\xda\xd3\xda\xdc\xd5\xdc\xdc\xd5\xdd\xde\xd7\xdd\xdf\ +\xd9\xde\xe0\xd9\xe0\xe1\xdb\xe1\xe3\xdd\xe2\xe3\xdd\xe2\xe2\xdc\ +\xe1\xe2\xdb\xe0\xe0\xd9\xde\xde\xd7\xdc\xdb\xd5\xda\xda\xd2\xd7\ +\xd7\xd0\xd5\xd7\xcf\xd5\xd6\xce\xd5\xd6\xcf\xd7\xd9\xd1\xdb\xdc\ +\xd4\xde\xde\xd7\xe0\xdd\xd7\xe0\xd6\xcf\xd9\xc9\xc1\xcb\xb8\xaf\ +\xbb\xa8\xa1\xaf\xa9\xa5\xb3\x76\x86\x9f\x59\x7a\x96\x8e\x97\xad\ +\xa8\xa7\xb8\xa9\xa6\xb8\xa9\xa6\xb8\xa9\xa5\xb8\xa6\xa3\xb7\xa2\ +\x9f\xb5\x9c\x99\xb2\x9c\x99\xb1\xac\xa7\xb7\xb3\xad\xb9\xb8\xb1\ +\xbe\xe1\xdd\xe1\xf4\xf4\xf4\xf6\xf6\xf6\xe4\xe2\xe5\x87\x8b\xa0\ +\xb0\xad\xbb\xe0\xdb\xe1\xde\xd9\xdf\xd0\xca\xd3\xc0\xb8\xc4\xb7\ +\xac\xb8\xb6\xab\xb7\xb8\xad\xb8\xb8\xae\xb8\xb7\xad\xb7\xb7\xac\ +\xb7\xb4\xa9\xb5\xb2\xa8\xb4\xb0\xa6\xb3\xaf\xa6\xb2\xae\xa4\xb1\ +\xad\xa4\xb1\xae\xa5\xb2\xb0\xa7\xb4\xb2\xa8\xb4\xb2\xa8\xb4\xb2\ +\xa8\xb3\xb1\xa7\xb3\xb0\xa6\xb3\xb0\xa6\xb2\xb0\xa6\xb2\xb0\xa6\ +\xb2\xb1\xa7\xb3\xb2\xa8\xb4\xb1\xa7\xb3\xaf\xa5\xb2\xac\xa2\xaf\ +\xac\xa4\xb0\xb0\xa6\xb2\xb3\xa9\xb5\xb4\xaa\xb5\xb3\xa9\xb4\xb0\ +\xa6\xb2\xb0\xa6\xb2\xb1\xa6\xb2\xb2\xa8\xb4\xb3\xa9\xb5\xb5\xab\ +\xb6\xb7\xad\xb8\xb3\xaa\xb5\x9f\x96\xa6\x7b\x78\x92\x57\x5d\x81\ +\x57\x5e\x82\x61\x66\x88\x6c\x6e\x8f\x77\x7a\x97\x83\x85\x9e\x6f\ +\x78\x97\x00\x00\x00\xef\xdd\xd6\xef\xdc\xd5\xed\xdb\xd4\xed\xd7\ +\xd1\xec\xd6\xd0\xeb\xd5\xcf\xe9\xd3\xcd\xe9\xd3\xcd\xe8\xd2\xcc\ +\xe8\xd2\xcc\xe7\xd2\xcc\xe6\xd3\xcc\xe6\xd2\xcd\xe5\xd2\xcd\xe5\ +\xd3\xd0\xe5\xd4\xd1\xe4\xd5\xd3\xe5\xd6\xd4\xe7\xd8\xd6\xe8\xda\ +\xd8\xe9\xdc\xda\xea\xdd\xdb\xea\xdc\xdc\xea\xdd\xdc\xe9\xdc\xdc\ +\xe8\xdc\xdc\xe8\xdb\xdc\xe6\xd9\xdc\xe6\xd9\xda\xe4\xd9\xdb\xe2\ +\xd7\xda\xe1\xd6\xd9\xdf\xd6\xd8\xde\xd4\xda\xde\xd4\xda\xdc\xd4\ +\xd9\xdb\xd3\xd9\xda\xd2\xd9\xdb\xd3\xda\xdc\xd5\xdb\xde\xd6\xdc\ +\xe0\xd8\xde\xe0\xd9\xde\xe0\xd9\xdf\xe0\xd8\xdf\xdf\xd7\xde\xdf\ +\xd7\xde\xde\xd6\xdd\xdd\xd6\xdd\xdd\xd5\xdb\xda\xd3\xd9\xd7\xd0\ +\xd7\xd5\xcd\xd4\xd3\xcc\xd3\xd1\xc9\xd1\xd0\xc9\xd1\xce\xc7\xd1\ +\xce\xc7\xd1\xcf\xc9\xd3\xd2\xcc\xd4\xd4\xcf\xd6\xd8\xd2\xd8\xdb\ +\xd4\xdb\xdc\xd5\xdc\xde\xd7\xdd\xdf\xd8\xde\xe0\xda\xdf\xe2\xdc\ +\xe1\xe3\xdd\xe2\xe5\xde\xe3\xe5\xde\xe3\xe5\xde\xe3\xe3\xdc\xe1\ +\xe2\xdb\xe0\xe0\xd9\xde\xde\xd7\xdc\xdc\xd5\xda\xda\xd3\xd8\xd9\ +\xd1\xd8\xd9\xd1\xd8\xda\xd3\xda\xdc\xd5\xdd\xe0\xd9\xe0\xe1\xda\ +\xe1\xe1\xda\xe2\xe0\xd8\xe0\xda\xd2\xdc\xc8\xc0\xcb\xa8\xa3\xb4\ +\xa6\xa6\xb6\x6f\x89\xa3\x4f\x7c\x9b\x7d\x93\xac\x99\xa0\xb4\x9f\ +\xa1\xb5\xa5\xa3\xb7\xa7\xa5\xb8\xa7\xa5\xb8\xa3\xa1\xb6\x9d\x9a\ +\xb3\x96\x93\xaf\x96\x94\xaf\xa6\xa2\xb3\xb5\xae\xba\xc8\xc1\xca\ +\xe4\xe0\xe4\xf0\xef\xf0\xe1\xde\xe3\x92\x94\xa7\xbe\xbb\xc7\xe4\ +\xe0\xe5\xe5\xde\xe4\xd9\xd4\xdb\xcd\xc7\xd1\xbf\xb7\xc1\xb8\xac\ +\xb8\xb8\xad\xb8\xba\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\xb8\xad\xb7\ +\xb5\xac\xb7\xb4\xaa\xb6\xb2\xa7\xb4\xaf\xa5\xb2\xad\xa4\xb1\xad\ +\xa4\xb1\xad\xa4\xb2\xaf\xa6\xb3\xb0\xa7\xb3\xb1\xa8\xb3\xb1\xa7\ +\xb3\xb0\xa6\xb2\xb0\xa6\xb3\xaf\xa5\xb3\xb0\xa6\xb3\xb1\xa7\xb2\ +\xb1\xa7\xb3\xb0\xa6\xb3\xac\xa2\xb0\xa9\x9f\xae\xa9\xa0\xad\xad\ +\xa4\xb0\xb2\xa8\xb4\xb3\xa9\xb4\xb1\xa7\xb3\xb0\xa6\xb2\xb0\xa6\ +\xb2\xb0\xa6\xb2\xb2\xa8\xb4\xb4\xaa\xb5\xb6\xac\xb6\xb6\xad\xb7\ +\xb0\xa5\xb2\x95\x8e\xa2\x67\x6b\x8a\x49\x56\x7d\x4d\x58\x7f\x58\ +\x60\x85\x66\x69\x8c\x74\x75\x94\x80\x81\x9d\x6f\x77\x98\x00\x00\ +\x00\xef\xdd\xd6\xee\xdc\xd5\xee\xdb\xd4\xed\xd8\xd1\xec\xd6\xd0\ +\xea\xd4\xce\xea\xd4\xce\xe8\xd2\xcc\xe7\xd2\xcc\xe8\xd2\xcb\xe6\ +\xd1\xcb\xe6\xd2\xcc\xe6\xd2\xcc\xe5\xd2\xcd\xe4\xd1\xcf\xe4\xd2\ +\xd0\xe4\xd4\xd2\xe4\xd5\xd3\xe6\xd7\xd5\xe7\xd9\xd7\xe8\xdb\xd9\ +\xe8\xdb\xd9\xe9\xdb\xd9\xe9\xdb\xdc\xe7\xdb\xdc\xe7\xda\xdc\xe7\ +\xda\xdc\xe7\xda\xdc\xe6\xd9\xdb\xe5\xd9\xda\xe2\xd7\xda\xe2\xd7\ +\xda\xe0\xd6\xd9\xde\xd4\xd9\xde\xd4\xdb\xde\xd4\xda\xdd\xd5\xda\ +\xdc\xd4\xda\xdc\xd4\xdb\xde\xd6\xdc\xe0\xd9\xde\xe1\xda\xdf\xe1\ +\xda\xdf\xdf\xd8\xdd\xdf\xd8\xde\xde\xd6\xdd\xdd\xd6\xdd\xdd\xd6\ +\xdd\xdd\xd6\xdd\xdc\xd5\xdc\xd9\xd2\xd9\xd6\xcf\xd6\xd3\xcd\xd4\ +\xcf\xc9\xd1\xcd\xc6\xcf\xcc\xc6\xcf\xcb\xc5\xcf\xcb\xc5\xd0\xcd\ +\xc7\xd1\xd0\xcb\xd4\xd4\xcf\xd8\xda\xd3\xd9\xdb\xd4\xdb\xdd\xd6\ +\xdd\xdf\xd8\xde\xe1\xda\xdf\xe2\xdb\xe0\xe4\xdd\xe2\xe5\xde\xe3\ +\xe6\xdf\xe4\xe7\xe0\xe5\xe6\xdf\xe4\xe6\xdf\xe3\xe3\xdc\xe1\xe2\ +\xdb\xe0\xe0\xd9\xde\xde\xd7\xdc\xdc\xd5\xda\xdb\xd5\xda\xdb\xd4\ +\xdb\xdd\xd6\xdd\xdf\xd8\xdf\xe0\xd9\xe0\xe2\xdb\xe2\xe1\xda\xe1\ +\xe2\xdb\xe2\xe0\xd9\xe0\xdb\xd3\xdd\xcd\xc6\xd0\xb1\xad\xbb\x75\ +\x84\x9f\x80\x94\xad\x92\xa1\xb6\x84\x9a\xb1\x80\x98\xb0\x98\x9f\ +\xb4\xa7\xa6\xb9\xa8\xa6\xb9\xa2\x9f\xb5\x9c\x97\xb2\x94\x90\xaf\ +\x8b\x88\xaa\x8a\x86\xa8\xa4\x9d\xb0\xb3\xac\xb9\xca\xc6\xce\xe8\ +\xe6\xeb\xe1\xdf\xe3\xa4\xa1\xb3\xcf\xca\xd3\xe7\xe2\xe8\xe6\xe0\ +\xe5\xe0\xda\xe0\xd5\xd0\xd8\xcb\xc4\xce\xbd\xb2\xbe\xb7\xab\xb7\ +\xb8\xad\xb7\xb9\xae\xb8\xb9\xaf\xb9\xb9\xae\xb8\xb7\xad\xb7\xb6\ +\xab\xb7\xb4\xaa\xb6\xb2\xa8\xb4\xae\xa5\xb2\xac\xa3\xb0\xac\xa3\ +\xb1\xad\xa4\xb1\xae\xa5\xb1\xaf\xa6\xb3\xaf\xa5\xb2\xae\xa6\xb2\ +\xaf\xa6\xb2\xaf\xa5\xb3\xaf\xa5\xb2\xb0\xa6\xb3\xae\xa6\xb2\xad\ +\xa5\xb1\xaa\xa0\xaf\xa3\x9a\xaa\x9f\x97\xa7\xa7\x9e\xac\xaf\xa6\ +\xb2\xb1\xa7\xb3\xb0\xa6\xb2\xaf\xa5\xb1\xb0\xa6\xb2\xb1\xa7\xb3\ +\xb1\xa7\xb3\xb5\xaa\xb5\xb6\xab\xb6\xb6\xab\xb6\xab\xa1\xae\x8b\ +\x86\x9e\x59\x62\x86\x40\x50\x7a\x44\x54\x7c\x52\x5b\x83\x62\x67\ +\x8c\x71\x73\x94\x80\x81\x9c\x81\x84\x9f\x00\x00\x00\xef\xdd\xd6\ +\xef\xdd\xd6\xee\xdb\xd4\xeb\xd8\xd1\xea\xd7\xd0\xea\xd5\xcf\xe9\ +\xd4\xce\xe8\xd2\xcc\xe8\xd1\xcc\xe7\xd1\xcb\xe7\xd1\xcb\xe6\xd1\ +\xcb\xe5\xd1\xcc\xe5\xd2\xcd\xe4\xd1\xcf\xe3\xd2\xd0\xe2\xd2\xd0\ +\xe4\xd5\xd3\xe4\xd6\xd4\xe5\xd8\xd6\xe6\xd9\xd8\xe6\xd9\xd7\xe7\ +\xd9\xda\xe7\xd9\xda\xe7\xda\xda\xe7\xdb\xdb\xe6\xd9\xdb\xe6\xda\ +\xdc\xe6\xda\xdc\xe5\xda\xdc\xe4\xd9\xdb\xe3\xd8\xdb\xe3\xd8\xdb\ +\xe1\xd7\xda\xe0\xd7\xda\xe0\xd7\xdb\xdf\xd5\xdb\xdf\xd5\xdb\xdf\ +\xd6\xdb\xe0\xd8\xde\xe1\xda\xdf\xe2\xd9\xdf\xe1\xda\xdf\xe0\xd9\ +\xde\xdf\xd8\xdd\xde\xd7\xde\xdd\xd6\xdd\xdc\xd5\xdc\xdb\xd4\xdb\ +\xda\xd3\xdb\xd8\xd2\xd9\xd4\xcf\xd6\xd0\xcc\xd5\xce\xc9\xd2\xca\ +\xc5\xce\xc8\xc3\xcd\xc7\xc1\xcc\xc9\xc4\xcf\xcd\xc7\xd2\xd1\xcc\ +\xd5\xd5\xd0\xd9\xd9\xd5\xdb\xdd\xd7\xdd\xdf\xd8\xdf\xe0\xda\xe0\ +\xe1\xdb\xe0\xe4\xdd\xe2\xe6\xdf\xe4\xe7\xe0\xe5\xe8\xe2\xe7\xe9\ +\xe2\xe7\xe8\xe1\xe6\xe7\xe0\xe5\xe6\xdf\xe3\xe5\xde\xe2\xe3\xdc\ +\xe0\xe1\xda\xdf\xdf\xd8\xdd\xde\xd7\xdd\xde\xd7\xde\xdf\xd8\xdf\ +\xe0\xd9\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe2\xdb\xe2\xe2\xdb\xe2\xe2\ +\xdb\xe2\xde\xd8\xde\xd7\xd0\xd8\xc2\xbb\xc6\xa9\xa7\xb7\xae\xad\ +\xbc\xaf\xae\xbe\xa0\xaa\xbb\x8b\x9f\xb5\x73\x8d\xa8\x86\x95\xae\ +\x99\x9e\xb5\x9c\x9d\xb4\x9c\x9a\xb3\x98\x93\xb1\x8e\x8b\xad\x82\ +\x7c\xa6\x82\x79\xa3\xa3\x9a\xaf\xbe\xb8\xc3\xe3\xe2\xe6\xdf\xdd\ +\xe2\xb3\xad\xbb\xd7\xd1\xd8\xe8\xe2\xe7\xe6\xe0\xe5\xde\xd8\xdd\ +\xde\xd7\xdd\xd5\xce\xd5\xc6\xbe\xc7\xb7\xab\xb6\xb6\xac\xb7\xb7\ +\xad\xb7\xb9\xae\xb8\xb9\xae\xb8\xb8\xae\xb8\xb7\xad\xb8\xb6\xac\ +\xb8\xb4\xaa\xb6\xb2\xa8\xb4\xb0\xa6\xb2\xad\xa5\xb2\xac\xa3\xb2\ +\xad\xa4\xb2\xad\xa4\xb1\xad\xa4\xb1\xae\xa5\xb1\xae\xa5\xb2\xae\ +\xa6\xb2\xaf\xa6\xb3\xae\xa5\xb2\xad\xa4\xb1\xac\xa3\xb0\xa8\x9e\ +\xad\x9b\x92\xa3\x90\x8a\x9d\x9b\x95\xa5\xac\xa3\xb1\xb0\xa7\xb3\ +\xb0\xa6\xb2\xb1\xa7\xb3\xb1\xa7\xb3\xb1\xa7\xb3\xb2\xa8\xb4\xb4\ +\xa9\xb5\xb4\xa9\xb6\xb5\xaa\xb5\xa4\x9b\xaa\x7f\x7f\x9a\x53\x5f\ +\x85\x45\x57\x7f\x48\x59\x7f\x58\x64\x87\x69\x6e\x8f\x74\x79\x94\ +\x7d\x83\x98\x84\x89\x9b\x00\x00\x00\xef\xde\xd8\xef\xdd\xd7\xee\ +\xdb\xd6\xeb\xd8\xd2\xeb\xd7\xd1\xe9\xd6\xcf\xe8\xd5\xcd\xe8\xd3\ +\xcc\xe8\xd2\xcb\xe7\xd1\xcb\xe6\xd0\xca\xe5\xd1\xca\xe4\xd0\xcb\ +\xe4\xd1\xcc\xe4\xd1\xce\xe3\xd1\xcf\xe3\xd1\xd0\xe2\xd3\xd1\xe3\ +\xd4\xd3\xe4\xd6\xd5\xe6\xd8\xd9\xe7\xd9\xd9\xe6\xd8\xd9\xe6\xd9\ +\xda\xe6\xda\xdb\xe6\xda\xdb\xe7\xda\xdc\xe7\xda\xdc\xe7\xda\xdc\ +\xe7\xdb\xdd\xe7\xdb\xdd\xe6\xda\xdc\xe5\xda\xdc\xe4\xd9\xdb\xe3\ +\xd8\xda\xe2\xd8\xdb\xe2\xd7\xdb\xe0\xd6\xdc\xe1\xd7\xdd\xe2\xd8\ +\xde\xe4\xd9\xe0\xe3\xd9\xe0\xe1\xd9\xdf\xe0\xda\xdf\xdf\xd8\xde\ +\xde\xd7\xde\xdc\xd5\xdc\xdb\xd4\xdb\xdb\xd4\xda\xda\xd2\xdb\xd6\ +\xd1\xd9\xd2\xcd\xd7\xcf\xca\xd3\xcb\xc8\xd1\xc8\xc4\xce\xc5\xc1\ +\xcc\xc5\xc1\xcc\xc7\xc3\xce\xcb\xc7\xd1\xd1\xcc\xd5\xd5\xd0\xd8\ +\xd9\xd5\xdc\xdd\xd7\xde\xdf\xd9\xe0\xe2\xdb\xe1\xe3\xdd\xe2\xe6\ +\xe0\xe5\xe8\xe1\xe6\xe9\xe2\xe7\xea\xe2\xe7\xea\xe3\xe8\xea\xe3\ +\xe7\xe8\xe1\xe6\xe7\xe0\xe5\xe5\xde\xe1\xe2\xdb\xde\xe0\xd7\xdb\ +\xdc\xd4\xda\xda\xd3\xd8\xda\xd3\xd9\xdb\xd4\xdb\xdd\xd5\xdc\xde\ +\xd6\xdd\xde\xd7\xde\xdc\xd6\xdc\xdb\xd3\xdb\xd7\xcf\xd7\xc2\xbb\ +\xc6\xba\xb4\xc1\xba\xb4\xc0\xb3\xae\xbb\xaa\xa9\xb9\xad\xac\xbb\ +\xaf\xaf\xbf\x98\x9e\xb3\x6f\x82\xa3\x7e\x90\xae\x88\x9a\xb3\x88\ +\x96\xb1\x8f\x97\xb0\x95\x95\xb0\x90\x8e\xaf\x84\x7f\xaa\x78\x6f\ +\xa1\x8a\x81\xa7\xb0\xab\xb8\xd2\xce\xd7\xd2\xcf\xd8\x90\x87\x9f\ +\xaa\x9f\xad\xcd\xc5\xca\xd6\xce\xd3\xd5\xce\xd2\xdb\xd4\xd8\xd7\ +\xd0\xd5\xc9\xc1\xc8\xb8\xae\xb9\xb3\xa9\xb4\xb6\xac\xb7\xb7\xae\ +\xb8\xb7\xad\xb7\xb7\xae\xb8\xb7\xae\xb8\xb7\xae\xb7\xb6\xac\xb7\ +\xb5\xab\xb6\xb3\xa9\xb5\xb0\xa7\xb4\xae\xa5\xb3\xac\xa4\xb2\xab\ +\xa3\xb0\xab\xa3\xb0\xab\xa3\xb0\xac\xa4\xb1\xad\xa5\xb2\xad\xa5\ +\xb2\xae\xa5\xb2\xad\xa4\xb1\xac\xa3\xb0\xa6\x9e\xac\x91\x8a\x9d\ +\x80\x7a\x91\x8e\x88\x9b\xa6\x9f\xac\xaf\xa7\xb2\xaf\xa6\xb2\xb1\ +\xa7\xb3\xb1\xa6\xb2\xb2\xa7\xb3\xb2\xa8\xb4\xb3\xa9\xb5\xb3\xa9\ +\xb4\xb0\xa5\xb1\x9c\x96\xa7\x7d\x81\x99\x5d\x6e\x8a\x56\x6b\x87\ +\x57\x6c\x85\x5a\x6e\x83\x58\x6f\x82\x53\x6e\x81\x50\x6e\x80\x4b\ +\x6d\x7d\x00\x00\x00\xee\xdf\xd9\xef\xdd\xd7\xee\xdb\xd6\xeb\xd8\ +\xd3\xeb\xd7\xd2\xea\xd6\xd0\xe8\xd4\xce\xe6\xd3\xcc\xe7\xd2\xcc\ +\xe7\xd1\xcb\xe4\xd1\xcb\xe4\xd0\xca\xe4\xd0\xcb\xe3\xd0\xcb\xe3\ +\xd0\xcd\xe2\xd0\xce\xe2\xd1\xcf\xe1\xd2\xd1\xe1\xd3\xd3\xe3\xd5\ +\xd6\xe6\xd8\xd9\xe7\xd9\xda\xe7\xd8\xd9\xe7\xda\xdb\xe7\xda\xdb\ +\xe7\xda\xdc\xe8\xdb\xdd\xe8\xdb\xdd\xe8\xdb\xdd\xe9\xdc\xde\xe9\ +\xdc\xde\xe9\xdc\xdd\xe7\xdc\xdd\xe7\xda\xdc\xe5\xd9\xdb\xe4\xd9\ +\xdc\xe4\xd9\xdc\xe3\xd9\xdd\xe3\xd9\xde\xe4\xda\xdf\xe4\xda\xe0\ +\xe4\xda\xe0\xe2\xd9\xdf\xe1\xda\xde\xdf\xd8\xde\xde\xd7\xdd\xdc\ +\xd6\xdd\xdb\xd4\xdb\xd9\xd4\xda\xda\xd3\xda\xd5\xd0\xd8\xd2\xcd\ +\xd6\xce\xc9\xd2\xc9\xc6\xd0\xc7\xc3\xce\xc6\xc2\xcd\xc5\xc1\xcc\ +\xc8\xc4\xcf\xcc\xc8\xd2\xd1\xcc\xd5\xd5\xd1\xd9\xd8\xd5\xdb\xde\ +\xd7\xde\xe0\xd9\xe0\xe1\xda\xe1\xe4\xde\xe3\xe6\xe1\xe6\xe9\xe2\ +\xe7\xe9\xe2\xe7\xea\xe3\xe8\xe9\xe2\xe7\xea\xe3\xe8\xe8\xe1\xe6\ +\xe4\xdc\xe1\xdd\xd5\xd8\xd8\xce\xd2\xd3\xc9\xce\xcf\xc5\xcb\xcc\ +\xc2\xc9\xcb\xc1\xc8\xcb\xc1\xc9\xcb\xc2\xc9\xcb\xc1\xc9\xcb\xc2\ +\xc9\xc8\xbf\xc8\xc5\xbd\xc6\xc1\xb9\xc2\xb0\xa9\xb8\xad\xa7\xb6\ +\xb5\xaf\xba\xb3\xac\xb9\x9f\x9f\xb2\xa5\xa5\xb6\xb2\xaf\xbf\x97\ +\x9a\xb1\x8a\x91\xae\xa0\xa3\xba\x93\x9b\xb4\x86\x92\xaf\x82\x8e\ +\xad\x81\x88\xac\x80\x82\xaa\x7a\x78\xa6\x70\x6a\xa1\x78\x73\xa2\ +\xa9\xa5\xb6\xbe\xba\xc5\xc4\xc0\xcc\x71\x6f\x93\x54\x55\x7d\x6e\ +\x6a\x87\x8c\x83\x98\xa3\x96\xa6\xac\x9f\xac\xa4\x99\xa5\x92\x8b\ +\x9c\x8c\x87\x98\x94\x8e\x9c\xa1\x99\xa4\xac\xa3\xae\xb2\xa9\xb4\ +\xb4\xac\xb5\xb6\xad\xb7\xb6\xad\xb8\xb5\xab\xb7\xb5\xac\xb6\xb5\ +\xab\xb6\xb4\xaa\xb6\xb1\xa9\xb5\xae\xa6\xb4\xab\xa4\xb1\xaa\xa3\ +\xb0\xaa\xa3\xb0\xab\xa4\xb1\xac\xa5\xb2\xac\xa5\xb2\xab\xa4\xb1\ +\xab\xa4\xb1\xac\xa3\xb0\xa6\x9e\xac\x8a\x85\x9a\x6e\x6c\x85\x7b\ +\x78\x90\x9b\x95\xa4\xab\xa3\xaf\xae\xa5\xb1\xae\xa4\xb0\xac\xa3\ +\xae\xa9\xa0\xab\xa4\x9d\xa7\x9f\x99\xa4\x96\x93\x9e\x88\x8b\x95\ +\x74\x7e\x8c\x57\x6e\x82\x42\x66\x7a\x3d\x65\x78\x3b\x65\x78\x39\ +\x64\x76\x3d\x66\x7a\x45\x6a\x7f\x4b\x6d\x85\x53\x73\x8d\x00\x00\ +\x00\xef\xe0\xdd\xee\xde\xda\xed\xdb\xd7\xeb\xd9\xd6\xea\xd7\xd3\ +\xea\xd7\xd2\xe9\xd6\xd1\xe7\xd3\xce\xe6\xd3\xcd\xe5\xd2\xcd\xe4\ +\xd0\xcb\xe5\xd1\xcc\xe4\xd0\xcb\xe2\xcf\xcc\xe2\xcf\xcc\xe1\xcf\ +\xce\xe0\xd1\xcf\xe2\xd2\xd2\xe1\xd3\xd4\xe3\xd5\xd6\xe5\xd8\xd8\ +\xe6\xda\xda\xe5\xd9\xda\xe5\xd9\xd9\xe5\xd8\xdb\xe7\xda\xdc\xe8\ +\xdb\xdd\xe9\xdc\xde\xea\xdd\xdf\xeb\xde\xdf\xeb\xde\xdf\xeb\xde\ +\xde\xea\xde\xde\xe9\xdd\xdd\xe8\xdb\xdd\xe7\xda\xdc\xe7\xdb\xde\ +\xe6\xdb\xde\xe7\xdc\xdf\xe6\xdd\xe0\xe7\xdd\xe1\xe5\xdc\xe0\xe4\ +\xda\xdf\xe3\xd8\xde\xe0\xd8\xdd\xdf\xd8\xdc\xde\xd6\xdc\xdb\xd5\ +\xdb\xda\xd3\xda\xd9\xd2\xd9\xd5\xcf\xd8\xd1\xcc\xd5\xcc\xc8\xd1\ +\xc8\xc5\xce\xc7\xc3\xce\xc5\xc1\xcc\xc7\xc3\xce\xc8\xc4\xcf\xcd\ +\xc8\xd2\xd1\xcc\xd5\xd4\xd0\xd8\xd7\xd3\xd9\xda\xd6\xdc\xdf\xd8\ +\xde\xe1\xda\xe1\xe5\xde\xe4\xe7\xe0\xe5\xe9\xe2\xe7\xea\xe3\xe8\ +\xea\xe3\xe8\xea\xe3\xe7\xe9\xe2\xe7\xe3\xdc\xe1\xda\xd1\xd7\xcd\ +\xc2\xc7\xc4\xb8\xbf\xbf\xb3\xbc\xbc\xb1\xba\xba\xaf\xba\xba\xaf\ +\xb9\xb8\xae\xba\xb9\xae\xb9\xb9\xae\xb8\xb8\xaf\xba\xb8\xaf\xb9\ +\xb8\xae\xb9\xae\xa6\xb5\x9e\x9c\xb0\xae\xa8\xb6\xb3\xab\xb7\xad\ +\xa6\xb4\xab\xa8\xb8\xaf\xac\xbb\xb2\xae\xbc\xb1\xaf\xbd\xb6\xb3\ +\xc1\xb6\xb3\xc3\x99\x99\xb3\x85\x8c\xac\x80\x8a\xad\x7b\x83\xaa\ +\x75\x79\xa6\x7a\x79\xa8\x77\x74\xa7\x80\x7b\xa8\xae\xa9\xb9\xb3\ +\xae\xbc\xaa\xa5\xbb\x6e\x6a\x98\x49\x4e\x7b\x38\x44\x71\x37\x44\ +\x72\x3a\x48\x76\x3e\x4d\x79\x39\x4d\x76\x34\x4d\x72\x38\x51\x72\ +\x44\x5a\x74\x56\x66\x7b\x6c\x76\x84\x84\x86\x92\x9d\x9b\xa6\xae\ +\xa6\xb1\xb4\xaa\xb6\xb4\xaa\xb6\xb5\xab\xb6\xb4\xaa\xb6\xb3\xaa\ +\xb5\xb2\xaa\xb5\xb1\xa8\xb4\xad\xa6\xb2\xaa\xa3\xb0\xa8\xa2\xaf\ +\xa8\xa1\xaf\xa9\xa2\xaf\xa9\xa2\xaf\xa7\xa0\xad\xa7\xa1\xae\xa5\ +\x9e\xab\x9d\x99\xa7\x84\x85\x97\x67\x6d\x84\x69\x71\x86\x82\x86\ +\x95\x89\x8d\x98\x83\x89\x96\x7b\x84\x90\x73\x7e\x8a\x67\x78\x86\ +\x5b\x70\x80\x53\x6b\x7f\x49\x66\x7f\x43\x62\x7e\x3d\x5f\x7c\x40\ +\x60\x7f\x45\x64\x82\x4d\x6d\x88\x54\x72\x8d\x5a\x76\x92\x67\x7b\ +\x97\x72\x7f\x9c\x7b\x83\xa0\x85\x87\xa3\x00\x00\x00\xef\xe1\xde\ +\xee\xdf\xdc\xed\xdc\xd9\xeb\xda\xd7\xea\xd9\xd6\xe9\xd7\xd3\xe8\ +\xd5\xd2\xe7\xd5\xd1\xe7\xd3\xcf\xe5\xd2\xcd\xe4\xd1\xcc\xe4\xd0\ +\xcd\xe3\xd0\xcc\xe2\xcf\xcc\xe1\xcf\xcc\xe0\xd0\xcd\xe0\xd1\xcf\ +\xe0\xd2\xd2\xe1\xd3\xd4\xe3\xd5\xd6\xe4\xd7\xd7\xe5\xd9\xd9\xe6\ +\xda\xd9\xe5\xd9\xda\xe6\xd9\xdb\xe7\xdb\xdc\xe8\xdc\xdd\xea\xde\ +\xdf\xeb\xdf\xdf\xec\xdf\xe0\xec\xe0\xe0\xec\xe0\xe0\xec\xde\xdf\ +\xeb\xdd\xdd\xea\xdc\xdd\xe9\xdc\xdd\xe8\xdc\xdd\xe9\xdc\xdf\xe9\ +\xde\xdf\xe9\xde\xe1\xe9\xde\xe1\xe8\xde\xe0\xe6\xdc\xdf\xe4\xda\ +\xde\xe1\xd9\xdd\xe0\xd8\xdd\xdf\xd8\xdd\xdd\xd6\xdc\xdb\xd4\xdb\ +\xda\xd3\xda\xd6\xcf\xd7\xd0\xcb\xd4\xcc\xc8\xd1\xc8\xc5\xce\xc6\ +\xc2\xce\xc5\xc1\xcc\xc6\xc2\xcd\xc9\xc5\xcf\xcc\xc7\xd0\xcf\xca\ +\xd3\xd2\xcd\xd7\xd5\xd0\xd9\xd8\xd4\xdc\xdd\xd7\xde\xe1\xda\xe1\ +\xe4\xde\xe3\xe8\xe0\xe5\xe9\xe2\xe7\xea\xe3\xe8\xeb\xe4\xe8\xe9\ +\xe2\xe6\xe6\xdf\xe3\xda\xd2\xd8\xc8\xbd\xc5\xbd\xb2\xbb\xbc\xb0\ +\xba\xbc\xb1\xbb\xba\xb0\xba\xba\xaf\xb9\xb9\xae\xb8\xb9\xae\xb8\ +\xb9\xae\xb8\xb7\xad\xb7\xb7\xae\xb8\xb6\xad\xb7\xb6\xad\xb8\xaa\ +\xa5\xb4\x9d\x9c\xb1\xad\xa8\xb6\xae\xa8\xb6\x98\x96\xad\xaa\xa7\ +\xb8\xb4\xaf\xbc\xb0\xac\xba\xa7\xa5\xb7\xad\xaa\xbc\xb2\xae\xbf\ +\xab\xa9\xbb\x8d\x90\xb0\x84\x8a\xae\x89\x8d\xb1\x77\x7a\xa8\x78\ +\x77\xa9\x78\x73\xa9\x89\x84\xad\xb5\xaf\xbd\xb4\xae\xbc\x9a\x93\ +\xb7\x7c\x76\xad\x52\x55\x85\x31\x3e\x6e\x2d\x3e\x6f\x2d\x41\x72\ +\x2f\x46\x74\x2d\x47\x73\x29\x48\x6e\x25\x48\x6b\x27\x4b\x69\x2c\ +\x50\x69\x34\x57\x6a\x42\x61\x6f\x61\x75\x80\x8b\x8f\x99\xa3\x9e\ +\xa8\xaa\xa3\xad\xac\xa4\xaf\xad\xa5\xae\xac\xa4\xae\xaa\xa2\xac\ +\xa7\xa0\xaa\xa4\x9e\xa9\x9d\x9a\xa5\x97\x96\xa1\x91\x92\x9e\x8d\ +\x8f\x9c\x87\x8c\x98\x7f\x87\x94\x78\x84\x92\x6e\x7f\x8f\x64\x78\ +\x89\x55\x6f\x83\x48\x67\x7e\x44\x66\x7e\x4a\x6a\x82\x49\x6c\x83\ +\x47\x69\x84\x45\x67\x86\x49\x69\x89\x4b\x69\x8a\x51\x6b\x8f\x5d\ +\x71\x96\x66\x75\x99\x6a\x76\x99\x66\x70\x98\x69\x72\x99\x64\x6e\ +\x95\x62\x6e\x93\x68\x74\x95\x6c\x77\x97\x73\x7c\x9a\x7b\x7f\x9d\ +\x86\x86\xa1\x8e\x8b\xa3\x00\x00\x00\xed\xe1\xde\xed\xdf\xdd\xed\ +\xde\xdb\xeb\xdb\xd9\xe9\xd9\xd7\xe9\xd8\xd6\xe8\xd6\xd3\xe7\xd5\ +\xd2\xe6\xd4\xd1\xe5\xd3\xd0\xe5\xd1\xce\xe4\xd1\xce\xe3\xd0\xcd\ +\xe2\xd0\xce\xe1\xcf\xce\xe0\xd0\xcf\xe1\xd1\xd1\xe0\xd2\xd3\xe1\ +\xd3\xd4\xe3\xd5\xd6\xe4\xd7\xd7\xe5\xd8\xd9\xe5\xd9\xd9\xe6\xda\ +\xda\xe7\xda\xdb\xe8\xdc\xdc\xe9\xdd\xdd\xeb\xdf\xdf\xec\xdf\xe0\ +\xed\xe1\xe1\xed\xe1\xe0\xee\xe2\xe0\xee\xe0\xdf\xeb\xde\xdd\xeb\ +\xdd\xdd\xea\xdc\xdd\xeb\xdd\xde\xec\xdf\xe0\xec\xdf\xe1\xec\xdf\ +\xe2\xeb\xdf\xe1\xea\xde\xe0\xe8\xdd\xe0\xe7\xdc\xde\xe4\xda\xde\ +\xe2\xd9\xdd\xe1\xd8\xde\xdf\xd8\xdd\xdc\xd6\xdb\xda\xd4\xda\xd7\ +\xd0\xd7\xd2\xcb\xd4\xcc\xc7\xd0\xc9\xc5\xce\xc7\xc2\xcd\xc5\xc1\ +\xcc\xc5\xc1\xcc\xc8\xc3\xcd\xcb\xc6\xcf\xcd\xc8\xd1\xd0\xcb\xd4\ +\xd3\xce\xd7\xd7\xd3\xda\xde\xd7\xde\xe1\xda\xe1\xe5\xdf\xe4\xe7\ +\xe0\xe5\xea\xe3\xe8\xea\xe3\xe8\xea\xe4\xe8\xe9\xe1\xe4\xdf\xd8\ +\xdc\xcd\xc4\xcb\xbf\xb3\xbd\xbc\xb2\xbb\xbc\xb1\xbb\xbc\xb1\xbb\ +\xbc\xb1\xbb\xbc\xb1\xbb\xba\xaf\xb9\xba\xaf\xb9\xba\xaf\xb9\xb9\ +\xae\xb8\xb7\xad\xb8\xb7\xad\xb7\xb6\xad\xb7\xb5\xab\xb7\xb3\xab\ +\xb6\xb4\xad\xb8\xb4\xac\xb7\xb0\xa8\xb7\xb3\xab\xb9\xb4\xad\xbb\ +\xaa\xa6\xb7\x98\x96\xaf\xa6\xa3\xb8\xa8\xa4\xbb\xa3\xa0\xb9\x9b\ +\x99\xb6\x94\x92\xb4\x91\x8f\xb3\x8b\x87\xb1\x81\x7d\xae\x77\x70\ +\xa8\x92\x8d\xb1\xb9\xb4\xbf\xa7\xa3\xb4\x84\x86\xaa\x75\x77\xa5\ +\x44\x4a\x7e\x31\x3d\x72\x2e\x3d\x72\x2c\x3d\x73\x2c\x42\x75\x2a\ +\x43\x72\x23\x42\x6d\x1f\x43\x69\x20\x46\x67\x24\x4b\x66\x2b\x51\ +\x67\x31\x58\x68\x3b\x62\x6e\x53\x70\x7b\x69\x7a\x84\x6f\x7b\x85\ +\x71\x7c\x86\x6e\x7a\x84\x6b\x78\x84\x64\x75\x83\x5e\x72\x82\x5b\ +\x72\x83\x56\x6f\x81\x4e\x6c\x7f\x4a\x6c\x80\x49\x6d\x84\x47\x6d\ +\x88\x48\x6e\x8c\x4e\x72\x90\x50\x73\x92\x51\x73\x97\x53\x76\x9d\ +\x5a\x75\xa0\x5e\x77\xa2\x60\x79\xa1\x6a\x7f\xa4\x75\x83\xa6\x7d\ +\x87\xaa\x86\x8d\xac\x8c\x90\xac\x96\x95\xae\x9a\x97\xaf\x94\x90\ +\xaa\x87\x85\xa4\x7d\x7d\xa0\x7f\x80\xa2\x70\x76\x9a\x64\x6d\x92\ +\x67\x70\x93\x6e\x76\x96\x77\x7c\x9a\x80\x82\x9e\x89\x87\xa1\x92\ +\x8f\xa5\x00\x00\x00\xed\xdf\xdf\xec\xe0\xde\xec\xdf\xdd\xea\xdc\ +\xda\xe9\xda\xd8\xe8\xd9\xd7\xe8\xd7\xd5\xe6\xd6\xd3\xe6\xd5\xd2\ +\xe5\xd4\xd1\xe3\xd3\xd0\xe4\xd3\xd0\xe3\xd2\xd0\xe2\xd1\xd0\xe1\ +\xd1\xd0\xe0\xd1\xd2\xe1\xd3\xd4\xe2\xd4\xd5\xe2\xd4\xd5\xe4\xd6\ +\xd7\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\xdb\xe8\xdc\xdc\xe8\xdc\xdc\ +\xe8\xdc\xdc\xea\xdd\xdd\xec\xde\xdf\xed\xe0\xdf\xee\xe2\xe0\xf0\ +\xe4\xe2\xf0\xe3\xe1\xef\xe2\xe0\xee\xe1\xdf\xed\xdf\xde\xec\xdf\ +\xde\xed\xe0\xe0\xee\xe1\xe1\xee\xe2\xe1\xee\xe2\xe2\xee\xe2\xe2\ +\xed\xe0\xe2\xeb\xdf\xe1\xe9\xde\xe0\xe7\xdd\xe0\xe5\xdc\xdf\xe4\ +\xdb\xdf\xe2\xd9\xdd\xe0\xd8\xdd\xdd\xd6\xdb\xd9\xd3\xd8\xd4\xcd\ +\xd3\xcd\xc8\xd1\xca\xc5\xce\xc7\xc3\xcc\xc5\xc2\xcb\xc7\xc1\xca\ +\xc7\xc2\xcd\xca\xc4\xce\xcc\xc7\xd0\xcf\xca\xd3\xd5\xcf\xd7\xda\ +\xd3\xda\xde\xd6\xdd\xe2\xdb\xe0\xe6\xdf\xe4\xe9\xe2\xe6\xeb\xe3\ +\xe6\xec\xe4\xe6\xec\xe4\xe7\xe6\xdd\xe1\xd6\xcd\xd4\xc3\xba\xc1\ +\xbe\xb4\xbf\xbe\xb4\xbe\xbd\xb3\xbd\xbe\xb3\xbd\xbe\xb3\xbd\xbd\ +\xb2\xbc\xbd\xb2\xbc\xbc\xb1\xba\xbc\xb1\xbb\xbb\xb0\xba\xba\xaf\ +\xb9\xb9\xae\xb8\xb8\xae\xb8\xb7\xae\xb8\xaf\xa5\xb2\xac\xa4\xb0\ +\xb3\xab\xb6\xb5\xac\xb8\xb5\xac\xb8\xb5\xac\xb9\xb0\xa9\xb7\xa7\ +\xa2\xb6\xb4\xae\xbf\xb5\xb1\xc2\xab\xa8\xbd\x9b\x98\xb5\x96\x92\ +\xb4\x93\x8f\xb5\x8a\x86\xb1\x81\x7c\xaf\x78\x72\xa9\xa1\x9c\xb6\ +\xb1\xad\xba\x81\x87\xa0\x62\x75\x9a\x6f\x77\xa6\x54\x59\x92\x49\ +\x50\x8a\x3b\x44\x7f\x34\x40\x7b\x2e\x3f\x78\x2f\x43\x78\x2e\x45\ +\x76\x28\x44\x70\x26\x47\x6d\x28\x4a\x6d\x2c\x51\x6d\x34\x5c\x71\ +\x3e\x69\x7a\x50\x77\x87\x51\x75\x86\x49\x6c\x80\x3f\x65\x7c\x3e\ +\x64\x7f\x45\x69\x89\x4e\x71\x95\x50\x73\x97\x57\x77\x9a\x5d\x7e\ +\xa7\x65\x83\xaf\x6f\x89\xb5\x77\x8f\xba\x7f\x92\xbf\x84\x94\xbe\ +\x87\x95\xbc\x88\x94\xb8\x86\x92\xb5\x7d\x88\xb0\x6b\x77\xa2\x60\ +\x70\x9b\x63\x72\x99\x78\x81\xa3\x90\x92\xaa\x9f\x9c\xaf\xa1\x9c\ +\xaf\xa0\x9a\xae\x9a\x95\xaa\x92\x8e\xa6\x85\x83\xa0\x87\x86\xa4\ +\x92\x90\xab\x9a\x96\xaf\x93\x91\xac\x87\x88\xa6\x7d\x81\xa1\x7f\ +\x82\xa1\x86\x87\xa3\x8c\x8c\xa4\x93\x90\xa6\x98\x93\xa7\x00\x00\ +\x00\xed\xe2\xe2\xed\xe1\xe2\xed\xe0\xe0\xea\xdc\xdd\xe9\xdb\xda\ +\xe9\xda\xd9\xe8\xd9\xd7\xe7\xd7\xd5\xe6\xd7\xd4\xe6\xd6\xd4\xe5\ +\xd4\xd3\xe4\xd4\xd2\xe3\xd4\xd2\xe3\xd4\xd3\xe2\xd3\xd4\xe2\xd4\ +\xd5\xe3\xd6\xd7\xe4\xd7\xd8\xe5\xd8\xd9\xe6\xd9\xd9\xe8\xdb\xdc\ +\xe9\xdc\xdc\xe9\xdd\xdd\xe9\xdd\xdd\xe9\xdd\xdd\xea\xdd\xde\xeb\ +\xdd\xde\xec\xdf\xdf\xee\xe1\xdf\xef\xe4\xe1\xf1\xe5\xe3\xf1\xe5\ +\xe2\xf0\xe4\xe2\xf0\xe3\xe1\xef\xe3\xe0\xee\xe2\xdf\xef\xe2\xe0\ +\xf0\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe4\xf0\xe4\xe4\xef\xe3\xe3\xee\ +\xe2\xe3\xec\xe0\xe2\xea\xdf\xe1\xe9\xdd\xe0\xe7\xdd\xdf\xe5\xdc\ +\xdf\xe3\xda\xdd\xdf\xd7\xdb\xdb\xd3\xd8\xd6\xce\xd4\xd0\xc9\xd0\ +\xcc\xc6\xce\xc8\xc2\xcb\xc6\xc1\xca\xc7\xc2\xcb\xc9\xc4\xcd\xcb\ +\xc5\xcf\xce\xc8\xd1\xd2\xca\xd2\xd6\xcf\xd6\xda\xd2\xd9\xdf\xd7\ +\xdc\xe4\xdc\xe0\xe8\xe0\xe3\xeb\xe3\xe5\xec\xe4\xe7\xed\xe4\xe7\ +\xec\xe2\xe5\xd9\xd1\xd6\xc7\xbe\xc6\xc1\xb8\xc1\xc0\xb7\xc1\xc0\ +\xb7\xc0\xbf\xb6\xbf\xbe\xb5\xbf\xbe\xb5\xbf\xbe\xb5\xbf\xbe\xb4\ +\xbe\xbd\xb4\xbc\xbd\xb3\xbc\xbc\xb2\xbb\xbb\xb1\xbb\xba\xb0\xbb\ +\xb9\xb0\xba\xb8\xaf\xb9\xa2\x9c\xae\x9e\x9a\xad\xb5\xae\xba\xb8\ +\xb0\xbb\xb3\xab\xb8\xb1\xaa\xb8\xb4\xad\xbc\xb5\xae\xbd\xb7\xb1\ +\xc0\xbb\xb4\xc3\xb6\xb0\xc1\x8d\x8a\xac\x88\x85\xae\x91\x8f\xb6\ +\x81\x7e\xaf\x80\x7c\xb0\x83\x7d\xb1\xad\xa7\xb9\x9c\x9a\xaf\x61\ +\x72\x93\x5a\x72\x98\x7e\x87\xb5\x7a\x7b\xb5\x6e\x6b\xad\x67\x63\ +\xa9\x56\x54\x9a\x49\x4e\x8f\x46\x4d\x8c\x4a\x52\x8e\x47\x53\x8a\ +\x4c\x5a\x8f\x55\x65\x97\x64\x78\xa0\x6c\x85\xa6\x75\x95\xb2\x8b\ +\xa7\xc4\x90\xa8\xc9\x91\xa6\xcb\x88\x9c\xc7\x8c\x9d\xc7\x97\xa3\ +\xcd\x9a\xa4\xca\x9c\xa4\xc6\x9d\xa2\xc5\xa3\xa6\xc6\xa5\xa7\xc4\ +\xa4\xa5\xc1\xa3\xa4\xbe\xa1\xa2\xbb\x9f\xa1\xb9\x9d\x9e\xb5\x98\ +\x9b\xb1\x8f\x93\xad\x78\x7d\x9e\x57\x61\x85\x43\x56\x78\x45\x59\ +\x79\x66\x6f\x8d\x85\x86\xa0\x98\x95\xa9\x95\x90\xa4\x89\x83\x9c\ +\x78\x77\x93\x6e\x72\x92\x77\x7a\x9a\x93\x92\xac\xa7\xa4\xb7\xb2\ +\xac\xbb\xaf\xa9\xba\xa5\xa1\xb4\x9e\x9b\xb1\x99\x97\xad\x98\x96\ +\xab\x98\x96\xaa\x9d\x99\xab\xa0\x9b\xad\x00\x00\x00\xee\xe3\xe5\ +\xed\xe2\xe4\xed\xe1\xe2\xeb\xde\xdf\xe9\xdc\xdc\xe9\xdb\xdc\xe7\ +\xd9\xda\xe7\xd9\xd9\xe6\xd8\xd7\xe6\xd8\xd6\xe5\xd6\xd6\xe4\xd5\ +\xd5\xe3\xd5\xd5\xe3\xd5\xd6\xe4\xd6\xd7\xe4\xd7\xd8\xe5\xd8\xda\ +\xe6\xd9\xdb\xe7\xdb\xdc\xe8\xdb\xdc\xe9\xdd\xdd\xeb\xdf\xdf\xeb\ +\xdf\xdf\xeb\xdf\xdf\xeb\xdf\xdf\xeb\xdf\xdf\xec\xdf\xdf\xed\xe0\ +\xdf\xee\xe1\xe0\xef\xe4\xe1\xf1\xe5\xe2\xf1\xe6\xe2\xf1\xe6\xe2\ +\xf1\xe5\xe1\xf0\xe4\xe0\xf0\xe4\xe0\xf1\xe5\xe1\xf1\xe5\xe2\xf2\ +\xe6\xe3\xf1\xe6\xe4\xf1\xe8\xe5\xf0\xe7\xe5\xf0\xe6\xe4\xee\xe3\ +\xe4\xee\xe2\xe3\xeb\xdf\xe1\xea\xdf\xe1\xe9\xde\xe0\xe6\xdc\xdf\ +\xe2\xd9\xdc\xdd\xd4\xd8\xd8\xd0\xd4\xd3\xcb\xd1\xcd\xc6\xcd\xc9\ +\xc3\xcb\xc8\xc3\xcc\xc9\xc4\xcd\xcd\xc6\xcf\xcf\xc8\xd0\xd2\xcb\ +\xd1\xd4\xcc\xd3\xd9\xd0\xd5\xdd\xd4\xd8\xe2\xd7\xda\xe6\xdc\xdf\ +\xea\xe0\xe2\xeb\xe2\xe5\xee\xe5\xe7\xef\xe7\xe8\xea\xe0\xe3\xd2\ +\xc9\xcf\xc0\xb8\xc1\xc0\xb7\xc0\xc1\xb7\xc1\xc1\xb8\xc0\xc0\xb8\ +\xc1\xc0\xb7\xc1\xbf\xb7\xc0\xbf\xb7\xc1\xc0\xb7\xc1\xc0\xb8\xbf\ +\xbf\xb7\xbe\xbf\xb6\xbe\xbf\xb6\xbf\xbd\xb5\xbf\xbd\xb4\xbe\xbc\ +\xb4\xbe\xb6\xb0\xbc\xb4\xae\xbb\xa4\xa0\xb1\xae\xa9\xb7\xa7\xa5\ +\xb6\xa3\xa2\xb6\xb2\xaf\xbf\xb2\xad\xbf\xae\xaa\xbe\xaf\xab\xbf\ +\xac\xa7\xbf\x98\x96\xb6\x94\x92\xb8\x99\x96\xbc\x91\x8d\xb9\x8a\ +\x84\xb7\x92\x8c\xb5\xa6\xa1\xb6\x82\x85\xa4\x53\x6a\x8c\x58\x70\ +\x96\x75\x7b\xb1\x80\x7b\xbc\x8c\x81\xc4\x7d\x73\xbc\x69\x60\xad\ +\x5f\x59\xa4\x59\x56\x9e\x5e\x5d\xa2\x63\x63\xa5\x6e\x6d\xac\x80\ +\x80\xb5\x99\x9a\xc1\xb1\xb4\xcf\xb8\xc1\xd8\xbb\xc6\xdd\xbe\xc5\ +\xdc\xbe\xbf\xd8\xb7\xb7\xce\xb3\xb1\xc7\xb3\xaf\xc4\xb1\xad\xc0\ +\xb0\xac\xbe\xaf\xaa\xbc\xac\xa7\xb9\xa4\x9e\xb1\x9c\x97\xab\x9b\ +\x97\xa9\x99\x97\xa9\x97\x95\xa8\x92\x93\xa7\x8d\x8f\xa5\x84\x88\ +\xa1\x6b\x72\x93\x4a\x5a\x7f\x37\x50\x73\x36\x50\x73\x4c\x5c\x7d\ +\x6a\x6f\x8f\x76\x75\x93\x70\x6f\x8d\x5e\x61\x84\x54\x5b\x80\x65\ +\x6d\x91\x89\x8b\xa7\xa6\xa3\xb6\xb5\xb0\xbd\xbb\xb4\xbf\xba\xb3\ +\xbf\xb6\xaf\xbc\xae\xa9\xb7\xa7\xa3\xb2\x9f\x9d\xac\x99\x98\xa8\ +\x97\x97\xa6\x92\x95\xa3\x00\x00\x00\xee\xe3\xe5\xed\xe3\xe4\xec\ +\xe1\xe3\xea\xdf\xe0\xe9\xdd\xde\xe8\xdd\xdd\xe9\xdc\xdb\xe7\xda\ +\xdb\xe6\xd9\xd9\xe5\xd8\xd8\xe5\xd8\xd9\xe4\xd7\xd8\xe4\xd7\xd8\ +\xe4\xd9\xd9\xe4\xd8\xda\xe5\xd8\xda\xe5\xd9\xdb\xe7\xdb\xdd\xe8\ +\xdc\xde\xe9\xdd\xdf\xeb\xdf\xe0\xec\xe0\xe1\xec\xdf\xe1\xed\xe0\ +\xe1\xed\xe0\xe1\xed\xe1\xe1\xed\xe1\xe1\xef\xe2\xe1\xef\xe3\xe1\ +\xf1\xe5\xe2\xf3\xe8\xe4\xf2\xe7\xe3\xf2\xe7\xe3\xf2\xe7\xe3\xf2\ +\xe6\xe2\xf2\xe6\xe2\xf2\xe7\xe3\xf3\xe8\xe4\xf4\xe9\xe5\xf3\xe9\ +\xe5\xf2\xe9\xe7\xf3\xea\xe7\xf2\xea\xe7\xf0\xe7\xe7\xf0\xe6\xe5\ +\xee\xe3\xe4\xec\xe1\xe3\xeb\xe0\xe2\xe9\xde\xe0\xe5\xda\xdc\xe2\ +\xd7\xd9\xdb\xd1\xd4\xd4\xcc\xd1\xd0\xc8\xce\xcd\xc6\xcd\xcc\xc5\ +\xcd\xcd\xc6\xcd\xd0\xc8\xd0\xd3\xcb\xd1\xd5\xcc\xd2\xd8\xce\xd2\ +\xdc\xd1\xd4\xe0\xd5\xd7\xe3\xd8\xda\xe8\xdc\xde\xec\xe1\xe3\xed\ +\xe4\xe5\xef\xe7\xe8\xf0\xe8\xe8\xec\xe2\xe3\xd2\xc9\xcf\xc1\xb9\ +\xc1\xc2\xb9\xc2\xc1\xb8\xc2\xc1\xb9\xc2\xc0\xb8\xc1\xc0\xb9\xc0\ +\xc0\xb8\xc2\xbf\xb7\xc2\xbf\xb8\xc1\xc1\xb9\xc1\xc1\xba\xc0\xc2\ +\xb9\xc0\xc0\xb9\xc0\xc0\xb9\xc1\xc0\xb8\xc2\xc1\xb9\xc3\xc1\xba\ +\xc4\xbd\xb8\xc2\xa4\xa3\xb5\xad\xab\xbb\xb7\xb5\xc3\xb5\xb3\xc3\ +\xa9\xa8\xbc\xad\xab\xbf\xb0\xae\xc2\xae\xac\xc2\xaf\xac\xc3\xaa\ +\xa7\xc2\xa7\xa3\xc1\xa2\x9f\xc0\x9c\x97\xbf\x92\x8c\xbb\x9c\x96\ +\xb8\x91\x91\xad\x67\x79\x97\x53\x6d\x8e\x5f\x73\x9b\x8b\x8b\xc2\ +\x95\x8f\xc9\x91\x84\xc7\x81\x73\xc0\x6a\x60\xb1\x5f\x58\xa9\x63\ +\x5d\xae\x6c\x67\xb7\x75\x70\xb9\x84\x7f\xbf\x90\x8c\xc4\xb1\xaf\ +\xd2\xc6\xc6\xdb\xbf\xc4\xd5\xba\xbc\xcc\xb9\xb4\xc3\xb7\xb0\xbd\ +\xb5\xae\xbc\xb4\xae\xbb\xb3\xad\xbb\xb3\xab\xbb\xb1\xaa\xb9\xad\ +\xa7\xb6\xa1\x9b\xac\x89\x83\x9b\x77\x71\x8b\x76\x71\x89\x77\x73\ +\x8c\x75\x72\x8d\x72\x73\x8f\x6d\x73\x90\x65\x6d\x8f\x57\x67\x8b\ +\x3d\x57\x7b\x2f\x4e\x71\x30\x4c\x6f\x35\x4d\x70\x48\x54\x79\x50\ +\x58\x7d\x4d\x55\x7b\x48\x50\x78\x55\x60\x84\x7a\x80\x9d\x9b\x9c\ +\xae\xad\xaa\xb7\xb3\xae\xb9\xb1\xad\xb7\xae\xaa\xb3\xa5\xa5\xae\ +\x9b\x9e\xa8\x87\x94\x9e\x75\x8b\x95\x6a\x86\x90\x62\x84\x8d\x5a\ +\x82\x8b\x00\x00\x00\xec\xe3\xe6\xeb\xe3\xe5\xeb\xe1\xe3\xea\xdf\ +\xe2\xe9\xdd\xdf\xe8\xdd\xde\xe7\xdc\xdd\xe7\xda\xdc\xe6\xda\xdc\ +\xe5\xd9\xdb\xe5\xd8\xdb\xe4\xd9\xdb\xe4\xd8\xda\xe4\xd7\xda\xe4\ +\xd7\xd9\xe4\xd9\xdb\xe6\xdb\xdd\xe7\xdc\xde\xe8\xdd\xdf\xe9\xde\ +\xe0\xeb\xe0\xe2\xec\xe1\xe3\xec\xe1\xe3\xee\xe2\xe4\xee\xe1\xe3\ +\xef\xe4\xe4\xf0\xe4\xe4\xf0\xe5\xe4\xf2\xe6\xe4\xf3\xe8\xe4\xf3\ +\xe8\xe4\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe5\xf4\xe9\xe4\xf4\xea\ +\xe6\xf5\xea\xe6\xf4\xeb\xe7\xf4\xeb\xe7\xf4\xeb\xe7\xf3\xec\xe8\ +\xf3\xec\xe9\xf3\xec\xe9\xf2\xea\xe8\xf1\xe9\xe8\xf0\xe6\xe6\xef\ +\xe4\xe5\xee\xe4\xe4\xeb\xe0\xe2\xe8\xdc\xde\xe2\xd7\xd9\xdd\xd1\ +\xd3\xd8\xce\xd1\xd4\xcc\xd0\xd2\xca\xcf\xd2\xca\xd0\xd2\xca\xd0\ +\xd3\xcb\xd1\xd7\xcd\xd2\xd9\xcf\xd2\xdb\xd0\xd3\xde\xd2\xd4\xe2\ +\xd5\xd7\xe5\xd8\xda\xea\xde\xdf\xed\xe2\xe3\xf0\xe7\xe7\xf1\xe9\ +\xe9\xf1\xe9\xe9\xef\xe7\xe6\xdf\xd2\xd5\xc7\xbe\xc6\xc2\xba\xc4\ +\xc1\xb9\xc3\xc1\xb9\xc3\xc2\xb9\xc3\xc2\xb9\xc3\xc2\xba\xc3\xc1\ +\xb9\xc2\xc1\xb9\xc2\xc1\xb9\xc3\xc2\xba\xc2\xc2\xba\xc2\xc2\xbb\ +\xc2\xc2\xba\xc3\xc2\xba\xc4\xc3\xbc\xc6\xc2\xbb\xc4\xbf\xba\xc4\ +\xc1\xbe\xc7\xc4\xc0\xc9\xc7\xc2\xcb\xc5\xc1\xca\xbe\xbb\xc7\xc0\ +\xbd\xc8\xc3\xbf\xcb\xc3\xbf\xcb\xc1\xbc\xca\xb6\xb3\xc7\xad\xa9\ +\xc5\xa5\xa0\xc2\x9a\x94\xbf\x93\x8c\xbb\x8f\x8f\xb2\x6a\x7c\x9a\ +\x5a\x78\x93\x5e\x77\x96\x76\x7c\xa6\x8e\x8c\xbb\x8d\x85\xba\x86\ +\x7b\xb6\x7f\x74\xb5\x76\x6c\xb5\x7d\x74\xbc\x8a\x81\xc6\x98\x91\ +\xcf\x9f\x97\xd0\xa5\x9f\xd0\xb1\xac\xd2\xc5\xc0\xd6\xcc\xc7\xd6\ +\xca\xc3\xcd\xc6\xbc\xc5\xbd\xb4\xbd\xb8\xaf\xba\xb7\xaf\xba\xb5\ +\xae\xbb\xb4\xad\xba\xb2\xab\xb7\xb0\xa9\xb6\xab\xa5\xb4\x98\x93\ +\xa7\x72\x73\x90\x4e\x51\x71\x47\x48\x69\x47\x49\x6a\x47\x4b\x6e\ +\x45\x4f\x74\x46\x56\x7b\x47\x5d\x82\x44\x61\x84\x3d\x5e\x7f\x35\ +\x57\x78\x35\x55\x76\x39\x54\x75\x40\x54\x77\x47\x57\x7a\x4a\x5a\ +\x7c\x4c\x60\x7f\x57\x6e\x88\x70\x82\x97\x87\x92\xa1\x8a\x96\xa0\ +\x83\x94\x9d\x7b\x90\x9a\x70\x8b\x95\x65\x87\x91\x5b\x82\x8e\x53\ +\x81\x8d\x4f\x81\x8c\x52\x83\x8f\x5a\x87\x94\x64\x8c\x99\x00\x00\ +\x00\xeb\xe4\xe7\xeb\xe2\xe6\xea\xe2\xe5\xe9\xdf\xe2\xe8\xde\xe1\ +\xe7\xde\xe0\xe6\xdb\xde\xe6\xdb\xdd\xe6\xda\xdd\xe5\xda\xdd\xe3\ +\xd9\xdc\xe4\xd9\xdb\xe3\xd8\xdb\xe3\xd7\xda\xe3\xd8\xda\xe4\xd9\ +\xdc\xe4\xda\xdc\xe6\xdc\xdf\xe7\xdd\xe0\xe9\xde\xe1\xeb\xe0\xe3\ +\xec\xe1\xe3\xed\xe2\xe4\xed\xe2\xe4\xee\xe2\xe4\xef\xe5\xe5\xef\ +\xe5\xe5\xf0\xe6\xe4\xf1\xe7\xe4\xf2\xe8\xe5\xf3\xe9\xe5\xf4\xea\ +\xe6\xf5\xea\xe6\xf5\xeb\xe7\xf5\xeb\xe7\xf4\xeb\xe7\xf5\xec\xe8\ +\xf5\xec\xe8\xf4\xec\xe8\xf4\xee\xe9\xf4\xee\xe9\xf4\xed\xe9\xf3\ +\xec\xe9\xf2\xeb\xe8\xf1\xea\xe8\xf0\xe9\xe8\xef\xe7\xe7\xef\xe6\ +\xe6\xec\xe1\xe1\xe9\xdd\xdd\xe4\xd7\xd8\xde\xd2\xd3\xda\xce\xd1\ +\xd8\xcc\xcf\xd7\xcc\xcf\xd6\xcd\xd0\xd6\xcd\xd1\xd8\xce\xd2\xda\ +\xcf\xd2\xdc\xd0\xd2\xdf\xd2\xd3\xe1\xd3\xd5\xe3\xd6\xd7\xe7\xd9\ +\xda\xeb\xde\xde\xef\xe4\xe3\xf1\xe9\xe8\xf2\xea\xe8\xf2\xeb\xe9\ +\xf2\xeb\xe8\xed\xe3\xe2\xdd\xd1\xd3\xcc\xc5\xcb\xc7\xc1\xc9\xc4\ +\xbd\xc6\xc2\xbb\xc4\xc2\xba\xc4\xc3\xba\xc3\xc2\xbb\xc3\xc2\xbb\ +\xc2\xc1\xb9\xc4\xc2\xba\xc3\xc1\xba\xc3\xc3\xbb\xc3\xc3\xbb\xc5\ +\xc4\xbc\xc6\xc2\xbd\xc6\xb5\xb3\xbf\x98\x9b\xb1\xb6\xb3\xc1\xc4\ +\xc0\xca\xc5\xc0\xca\xc5\xc0\xca\xc5\xc0\xca\xc5\xc0\xcb\xc3\xbe\ +\xca\xc2\xbd\xca\xbf\xbb\xca\xba\xb5\xc9\xb4\xb1\xc9\xb3\xaf\xca\ +\xb5\xb1\xce\xb2\xae\xc8\xa3\xa1\xb9\x88\x90\xaf\x77\x87\xa9\x6b\ +\x7a\x9c\x61\x65\x8f\x5c\x5e\x89\x5b\x5d\x88\x54\x5a\x85\x4f\x58\ +\x82\x61\x62\x93\x85\x80\xac\xa2\x9c\xbc\xbc\xb4\xc9\xc8\xbd\xce\ +\xce\xc3\xcf\xd0\xc4\xcc\xd1\xc5\xcb\xd0\xc4\xc8\xcf\xc3\xc6\xca\ +\xbc\xbf\xbf\xb3\xb9\xb6\xad\xb7\xb4\xad\xb8\xb4\xad\xb9\xb3\xac\ +\xb9\xb0\xaa\xb7\xaf\xa9\xb6\xac\xa7\xb4\x9f\x9d\xae\x84\x85\x9e\ +\x5e\x66\x86\x46\x52\x76\x41\x4f\x73\x41\x54\x76\x41\x5a\x7c\x42\ +\x5e\x7f\x46\x67\x84\x47\x6e\x88\x44\x6f\x87\x40\x6c\x83\x41\x6b\ +\x81\x42\x6a\x80\x43\x69\x80\x46\x6b\x83\x46\x6e\x84\x47\x70\x86\ +\x4a\x74\x88\x52\x79\x8b\x56\x7d\x8e\x54\x7d\x8c\x52\x7d\x8d\x54\ +\x7f\x8f\x5d\x84\x96\x69\x8c\x9d\x73\x92\xa2\x80\x97\xa8\x8a\x9e\ +\xad\x95\xa3\xb1\xa0\xa8\xb6\xa7\xac\xb8\x00\x00\x00\xea\xe4\xe9\ +\xea\xe2\xe7\xe9\xe2\xe6\xe8\xdf\xe4\xe7\xdf\xe3\xe7\xde\xe1\xe6\ +\xdc\xe0\xe5\xdc\xdf\xe5\xdc\xde\xe3\xda\xde\xe3\xd9\xdc\xe3\xd9\ +\xdc\xe3\xd8\xdb\xe2\xd8\xdb\xe2\xd8\xdb\xe2\xd9\xdc\xe3\xda\xde\ +\xe5\xdc\xe0\xe7\xde\xe0\xe7\xde\xe1\xe9\xe0\xe3\xeb\xe1\xe4\xed\ +\xe2\xe4\xee\xe3\xe5\xef\xe4\xe5\xf0\xe6\xe6\xf0\xe6\xe6\xf0\xe7\ +\xe6\xf1\xe8\xe5\xf1\xe8\xe6\xf2\xe9\xe5\xf2\xea\xe6\xf4\xea\xe6\ +\xf5\xeb\xe6\xf4\xeb\xe6\xf4\xeb\xe7\xf6\xed\xe9\xf4\xed\xe8\xf4\ +\xee\xe9\xf4\xee\xe9\xf3\xed\xe8\xf4\xec\xe8\xf4\xeb\xe8\xf2\xe9\ +\xe7\xf1\xe9\xe6\xf1\xe8\xe6\xf0\xe7\xe6\xee\xe4\xe4\xec\xe0\xe1\ +\xe9\xdd\xdd\xe4\xd8\xd8\xdf\xd3\xd3\xdd\xd0\xd1\xda\xcd\xcf\xda\ +\xcd\xd0\xd9\xcd\xd0\xd9\xcd\xd1\xdb\xcf\xd1\xdd\xd1\xd3\xdf\xd1\ +\xd3\xe1\xd3\xd4\xe2\xd4\xd5\xe6\xd7\xd7\xe9\xdc\xda\xed\xe0\xde\ +\xf0\xe6\xe3\xf2\xea\xe7\xf2\xec\xe9\xf2\xec\xe9\xf2\xec\xe9\xf2\ +\xec\xe9\xee\xe3\xe0\xe0\xd4\xd5\xd2\xca\xce\xcb\xc5\xcb\xc2\xba\ +\xc4\xc2\xba\xc3\xc4\xbc\xc5\xc4\xbb\xc5\xc2\xbb\xc3\xc2\xbb\xc4\ +\xc2\xbb\xc4\xc2\xba\xc3\xc2\xbb\xc4\xc3\xbb\xc5\xc3\xbc\xc6\xc3\ +\xbe\xc7\xbc\xb9\xc4\xa6\xa9\xbd\xb8\xb7\xc4\xc5\xc1\xcb\xc5\xc1\ +\xcb\xc6\xc1\xcc\xc7\xc2\xcd\xc7\xc3\xce\xc7\xc2\xcf\xc7\xc2\xd1\ +\xc8\xc3\xd2\xc9\xc4\xd3\xcc\xc7\xd5\xce\xca\xd9\xcf\xcb\xda\xbe\ +\xb8\xc8\xad\xa9\xbc\xa7\xa3\xbf\x89\x85\xb5\x66\x68\x97\x42\x4a\ +\x76\x38\x44\x70\x3e\x4e\x76\x3d\x4f\x76\x3b\x4d\x73\x51\x5b\x7f\ +\x78\x79\x95\xa2\x9c\xad\xbc\xb1\xb8\xc6\xb9\xbd\xc3\xb5\xb9\xb5\ +\xa8\xaf\xaa\x9e\xa7\xa2\x99\xa3\x9f\x96\xa0\x9c\x96\x9f\x98\x93\ +\x9d\x95\x93\x9d\x9c\x9a\xa6\xa7\xa3\xaf\xac\xa6\xb3\xad\xa8\xb4\ +\xad\xa6\xb4\xab\xa7\xb3\xa7\xa3\xb1\x99\x99\xab\x81\x89\x9f\x65\ +\x77\x93\x57\x70\x8b\x51\x6f\x88\x4c\x71\x88\x48\x71\x87\x46\x73\ +\x87\x46\x74\x88\x43\x73\x87\x41\x71\x85\x40\x71\x86\x42\x71\x85\ +\x43\x72\x87\x47\x75\x8c\x49\x77\x8f\x4e\x79\x91\x51\x7b\x92\x55\ +\x7b\x92\x55\x7b\x90\x54\x7a\x8d\x51\x79\x8a\x5c\x7d\x8e\x7b\x8f\ +\xa0\x9b\xa1\xb1\xaa\xac\xb8\xb1\xb0\xbb\xb7\xb3\xbe\xba\xb5\xc0\ +\xbe\xb7\xc2\xbe\xb6\xc1\x00\x00\x00\xea\xe3\xea\xea\xe3\xe9\xe9\ +\xe2\xe7\xe7\xe1\xe6\xe6\xe0\xe5\xe6\xdf\xe4\xe5\xde\xe3\xe4\xdd\ +\xe2\xe5\xdc\xe1\xe3\xdb\xe0\xe2\xda\xdf\xe2\xd8\xde\xe1\xd9\xde\ +\xe1\xd8\xde\xe1\xd8\xdd\xe2\xd9\xde\xe3\xdb\xe0\xe5\xdd\xe2\xe6\ +\xde\xe2\xe7\xdf\xe3\xe9\xe1\xe4\xea\xe2\xe5\xeb\xe2\xe5\xed\xe4\ +\xe6\xee\xe5\xe7\xef\xe7\xe7\xf0\xe7\xe7\xf2\xe8\xe7\xf2\xe9\xe7\ +\xf2\xe9\xe6\xf3\xea\xe5\xf3\xea\xe6\xf5\xea\xe6\xf5\xe9\xe6\xf5\ +\xea\xe6\xf4\xeb\xe7\xf5\xec\xe8\xf5\xee\xe9\xf4\xee\xe9\xf4\xed\ +\xe9\xf5\xec\xe8\xf4\xeb\xe7\xf4\xeb\xe6\xf2\xe9\xe6\xf1\xe8\xe5\ +\xf0\xe6\xe4\xef\xe5\xe2\xef\xe3\xe0\xeb\xdf\xde\xe9\xdb\xdc\xe4\ +\xd7\xd8\xe1\xd3\xd4\xde\xd0\xd1\xdc\xce\xcf\xdb\xcd\xce\xdb\xcd\ +\xce\xdb\xcf\xcf\xdc\xcf\xd1\xdf\xd2\xd2\xe1\xd3\xd3\xe2\xd4\xd4\ +\xe5\xd7\xd5\xe8\xd9\xd7\xeb\xdc\xda\xee\xe1\xdf\xf1\xe6\xe4\xf3\ +\xec\xe8\xf3\xed\xe8\xf3\xee\xe9\xf3\xee\xeb\xf2\xec\xe9\xeb\xde\ +\xdc\xd7\xca\xcb\xca\xc0\xc6\xc8\xc1\xc7\xc4\xbe\xc6\xbe\xb8\xc1\ +\xc2\xba\xc4\xc5\xbd\xc7\xc4\xbc\xc6\xc4\xbc\xc5\xc3\xbb\xc5\xc3\ +\xbb\xc5\xc3\xbb\xc5\xc4\xbc\xc6\xc6\xbd\xc7\xc6\xbf\xc8\xc7\xc1\ +\xca\xc8\xc2\xcc\xc9\xc3\xcd\xca\xc5\xce\xcc\xc7\xcf\xce\xc9\xd2\ +\xd0\xcb\xd3\xd2\xcd\xd5\xd3\xcf\xd7\xd4\xcf\xd8\xd5\xcf\xd9\xd5\ +\xd0\xda\xd7\xd1\xdc\xd9\xd2\xde\xce\xc8\xd3\xb5\xb0\xbf\xac\xaa\ +\xbf\xa3\x9c\xc1\x8d\x84\xb7\x6e\x6d\x99\x46\x4d\x7a\x33\x42\x6e\ +\x34\x48\x71\x35\x4b\x72\x34\x4b\x71\x3e\x50\x76\x59\x61\x83\x79\ +\x77\x92\x8d\x83\x98\x8c\x84\x99\x72\x70\x8a\x5b\x62\x81\x52\x5f\ +\x7d\x4e\x5e\x78\x4d\x60\x74\x4c\x61\x71\x4d\x63\x70\x53\x69\x73\ +\x66\x77\x81\x7b\x85\x90\x8b\x8f\x9a\x91\x94\x9e\x90\x94\x9e\x8d\ +\x92\x9d\x8a\x90\x9c\x80\x8b\x9a\x72\x82\x95\x5f\x79\x90\x53\x74\ +\x8b\x4c\x72\x88\x46\x71\x87\x44\x73\x87\x45\x74\x8a\x45\x74\x8a\ +\x45\x74\x8b\x48\x75\x8d\x4e\x77\x92\x53\x78\x95\x54\x77\x96\x54\ +\x76\x94\x56\x79\x94\x59\x7a\x95\x56\x77\x8f\x53\x72\x88\x4f\x6c\ +\x7f\x4a\x69\x77\x44\x65\x71\x4e\x6a\x77\x74\x82\x90\x98\x9c\xa7\ +\xac\xab\xb5\xb6\xb2\xbb\xb9\xb3\xbc\xbb\xb5\xbf\xbd\xb5\xbf\xbd\ +\xb5\xbf\x00\x00\x00\xe9\xe4\xea\xe9\xe3\xea\xe8\xe2\xe9\xe8\xe1\ +\xe7\xe6\xe0\xe6\xe6\xe0\xe5\xe6\xdf\xe4\xe5\xde\xe3\xe4\xdd\xe2\ +\xe3\xdc\xe1\xe1\xda\xdf\xe1\xda\xdf\xe1\xd9\xde\xe0\xd9\xdd\xe1\ +\xd9\xde\xe2\xda\xdf\xe3\xdb\xe1\xe4\xdd\xe2\xe5\xde\xe3\xe6\xdf\ +\xe4\xe8\xe1\xe5\xea\xe2\xe5\xeb\xe2\xe5\xed\xe4\xe6\xee\xe6\xe7\ +\xef\xe7\xe7\xf1\xe8\xe8\xf2\xe8\xe8\xf3\xea\xe7\xf3\xea\xe7\xf3\ +\xe9\xe6\xf3\xea\xe5\xf4\xea\xe6\xf4\xe9\xe5\xf5\xea\xe6\xf4\xea\ +\xe6\xf3\xea\xe6\xf4\xeb\xe7\xf4\xec\xe8\xf4\xec\xe8\xf4\xeb\xe7\ +\xf4\xeb\xe7\xf3\xea\xe6\xf2\xe9\xe6\xf1\xe7\xe5\xf1\xe5\xe3\xf0\ +\xe4\xe2\xee\xe2\xe0\xec\xdf\xdd\xe8\xdb\xda\xe5\xd7\xd7\xe1\xd3\ +\xd4\xdf\xd1\xd1\xde\xcf\xcf\xdc\xce\xce\xdc\xce\xce\xdc\xce\xce\ +\xde\xcf\xd0\xe0\xd2\xd2\xe3\xd4\xd3\xe5\xd6\xd4\xe7\xd7\xd5\xea\ +\xda\xd8\xec\xdd\xdb\xef\xe3\xdf\xf2\xe7\xe3\xf4\xeb\xe7\xf4\xed\ +\xe8\xf4\xee\xe9\xf4\xef\xea\xf0\xe6\xe2\xde\xce\xce\xc8\xba\xc0\ +\xc1\xb6\xbd\xc2\xb9\xc0\xc4\xbd\xc4\xbf\xb8\xc2\xc0\xb9\xc3\xc6\ +\xbe\xc7\xc5\xbd\xc7\xc6\xbe\xc8\xc4\xbc\xc6\xc4\xbc\xc6\xc4\xbc\ +\xc6\xc5\xbd\xc7\xc6\xbf\xc9\xc8\xbf\xca\xc9\xc1\xcb\xcb\xc3\xcd\ +\xcc\xc4\xce\xcc\xc7\xd0\xcf\xca\xd3\xd2\xcd\xd5\xd5\xd0\xd7\xd7\ +\xd3\xd9\xd9\xd4\xdb\xda\xd6\xdd\xda\xd5\xde\xda\xd6\xdf\xd8\xd2\ +\xdc\xce\xc8\xd2\xbe\xb7\xc3\xb4\xb0\xc0\xb7\xb4\xcb\xa9\xa3\xc7\ +\x99\x94\xb8\x7f\x7f\xa1\x58\x5c\x87\x37\x46\x73\x32\x47\x70\x30\ +\x47\x70\x32\x4a\x71\x35\x4a\x73\x39\x4a\x74\x41\x4b\x77\x45\x4b\ +\x78\x3b\x48\x73\x37\x4a\x72\x38\x4d\x73\x36\x4f\x70\x37\x50\x6b\ +\x36\x50\x67\x32\x4f\x60\x2c\x4f\x5c\x2c\x53\x5d\x34\x5a\x63\x43\ +\x64\x6e\x4e\x6a\x76\x54\x6e\x7a\x53\x6e\x7c\x51\x6e\x7d\x50\x6f\ +\x80\x4f\x70\x83\x4d\x71\x85\x4b\x72\x89\x4a\x72\x8b\x4c\x75\x8e\ +\x53\x79\x93\x59\x7c\x98\x5a\x7b\x9a\x58\x7a\x99\x57\x77\x98\x59\ +\x75\x98\x5b\x75\x98\x57\x72\x95\x50\x6b\x8e\x4a\x67\x89\x4a\x68\ +\x88\x4b\x6a\x86\x48\x67\x7f\x41\x60\x75\x3a\x5b\x6b\x35\x59\x65\ +\x32\x59\x64\x36\x5c\x68\x4f\x69\x77\x74\x81\x8e\x8e\x92\x9c\x9b\ +\x9b\xa5\xa2\x9f\xaa\xa5\xa1\xab\xa4\xa1\xab\xa2\x9f\xa9\x00\x00\ +\x00\xe9\xe5\xeb\xe8\xe4\xea\xe8\xe3\xe9\xe7\xe1\xe7\xe7\xe0\xe6\ +\xe6\xdf\xe6\xe6\xdf\xe5\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe1\xe1\ +\xda\xe1\xe1\xda\xe0\xe1\xda\xdf\xe0\xd9\xde\xe2\xdb\xe0\xe2\xdb\ +\xe0\xe3\xdc\xe1\xe4\xdd\xe2\xe5\xde\xe3\xe6\xdf\xe4\xe8\xe1\xe6\ +\xe8\xe2\xe6\xeb\xe2\xe6\xed\xe4\xe7\xed\xe5\xe6\xee\xe6\xe7\xf0\ +\xe7\xe7\xf1\xe9\xe9\xf2\xea\xe8\xf4\xeb\xe8\xf2\xe9\xe6\xf3\xe9\ +\xe5\xf3\xe9\xe5\xf5\xea\xe6\xf4\xe9\xe5\xf4\xea\xe6\xf4\xeb\xe7\ +\xf3\xea\xe6\xf3\xea\xe6\xf4\xea\xe6\xf3\xea\xe6\xf3\xea\xe5\xf2\ +\xe9\xe6\xf1\xe8\xe5\xf1\xe8\xe5\xf1\xe7\xe4\xef\xe4\xe2\xee\xe2\ +\xe0\xeb\xde\xdc\xe8\xdb\xd9\xe4\xd7\xd5\xe2\xd4\xd2\xe0\xd2\xd0\ +\xdf\xd0\xce\xde\xcf\xcd\xdd\xce\xcd\xdd\xce\xcd\xdf\xd0\xce\xe0\ +\xd1\xcf\xe4\xd3\xd2\xe6\xd6\xd3\xe8\xd7\xd5\xeb\xda\xd7\xed\xde\ +\xdb\xf0\xe4\xe0\xf4\xe9\xe3\xf4\xeb\xe5\xf4\xed\xe7\xf4\xee\xe8\ +\xf5\xee\xe8\xec\xdd\xda\xd2\xc3\xc6\xc2\xb5\xbd\xc0\xb5\xbd\xc0\ +\xb5\xbd\xc0\xb7\xc1\xbd\xb6\xc0\xbd\xb7\xc2\xc4\xbe\xc7\xc6\xbf\ +\xc7\xc6\xbe\xc8\xc6\xbe\xc8\xc6\xbe\xc8\xc6\xbe\xc8\xc5\xc0\xc9\ +\xc6\xc1\xca\xc9\xc1\xcb\xcb\xc3\xcd\xcd\xc5\xcf\xcd\xc7\xd0\xd0\ +\xcb\xd2\xd3\xcf\xd5\xd7\xd3\xd9\xd9\xd5\xdb\xdb\xd7\xdd\xdc\xd8\ +\xde\xdd\xd8\xdf\xdc\xd8\xdf\xd6\xcf\xd8\xc7\xc1\xcb\xbb\xb4\xc1\ +\xb8\xb2\xc0\xc2\xbf\xce\xbc\xb8\xd0\xad\xa8\xc8\x9d\x9b\xb6\x88\ +\x89\xa4\x6b\x6d\x94\x47\x51\x80\x33\x46\x72\x2e\x44\x6e\x30\x47\ +\x70\x34\x47\x73\x35\x46\x73\x31\x40\x70\x2e\x3d\x6d\x2f\x3f\x6e\ +\x33\x45\x70\x33\x49\x6f\x31\x49\x6c\x31\x4a\x66\x30\x4a\x61\x2c\ +\x4a\x5b\x29\x4c\x59\x28\x4f\x5a\x2a\x55\x60\x2e\x59\x67\x37\x5e\ +\x6e\x3b\x61\x73\x40\x63\x78\x48\x69\x80\x4e\x6e\x89\x59\x75\x92\ +\x66\x7d\x9b\x6e\x83\xa0\x75\x88\xa4\x7b\x8c\xa8\x7f\x8d\xa9\x76\ +\x85\xa5\x64\x79\x9e\x59\x6e\x96\x52\x69\x93\x51\x67\x92\x51\x64\ +\x90\x4d\x60\x8c\x47\x5d\x86\x43\x5d\x84\x43\x60\x83\x44\x63\x82\ +\x43\x62\x7d\x3f\x5f\x77\x3b\x5b\x6f\x39\x5b\x6c\x37\x5b\x6b\x3a\ +\x5d\x6f\x3f\x60\x72\x4b\x65\x78\x5a\x6f\x80\x66\x76\x86\x6c\x79\ +\x8a\x6e\x7a\x8c\x6c\x79\x8d\x6a\x76\x8b\x00\x00\x00\xe9\xe5\xeb\ +\xe9\xe5\xeb\xe8\xe4\xea\xe5\xe1\xe7\xe5\xe0\xe6\xe6\xe0\xe7\xe5\ +\xdf\xe6\xe4\xdd\xe4\xe3\xdc\xe3\xe2\xdb\xe2\xe0\xd9\xe0\xe0\xd9\ +\xdf\xe0\xd9\xe0\xe2\xdb\xe0\xe1\xda\xe0\xe2\xdb\xe0\xe3\xdc\xe2\ +\xe5\xde\xe3\xe6\xdf\xe4\xe6\xdf\xe4\xe8\xe1\xe6\xe9\xe2\xe7\xeb\ +\xe2\xe6\xed\xe4\xe7\xed\xe5\xe6\xee\xe6\xe7\xf0\xe8\xe8\xf1\xe9\ +\xe9\xf1\xea\xe8\xf3\xea\xe7\xf2\xe9\xe6\xf3\xe8\xe5\xf3\xe8\xe4\ +\xf3\xe8\xe4\xf5\xea\xe6\xf4\xe9\xe5\xf3\xe9\xe5\xf2\xe9\xe7\xf2\ +\xea\xe6\xf2\xe9\xe5\xf3\xea\xe6\xf3\xea\xe6\xf3\xea\xe7\xf3\xea\ +\xe7\xf2\xe9\xe6\xf1\xe8\xe5\xf1\xe6\xe4\xee\xe2\xe0\xeb\xde\xdc\ +\xe8\xdb\xd9\xe5\xd8\xd6\xe2\xd4\xd2\xe2\xd3\xd1\xdf\xd0\xce\xe0\ +\xcd\xcc\xdf\xce\xcb\xdf\xce\xcc\xe0\xcf\xcd\xe1\xd0\xcf\xe4\xd3\ +\xd0\xe6\xd5\xd2\xe8\xd7\xd4\xec\xdb\xd7\xef\xdf\xda\xf1\xe5\xdf\ +\xf3\xe9\xe2\xf6\xec\xe5\xf6\xee\xe7\xf6\xef\xe8\xf5\xed\xe6\xe7\ +\xd6\xd3\xcb\xbd\xc2\xbf\xb4\xbc\xbe\xb3\xbb\xbe\xb3\xbb\xc2\xb9\ +\xc2\xc3\xbc\xc6\xbc\xb6\xc1\xbd\xb9\xc4\xc5\xbe\xc8\xc7\xbf\xc8\ +\xc8\xc0\xca\xc9\xc1\xcb\xc9\xc2\xcc\xc9\xc3\xcc\xcb\xc4\xcd\xcd\ +\xc5\xcf\xcf\xc7\xd1\xd0\xc8\xd1\xd2\xcc\xd3\xd4\xd0\xd6\xd7\xd3\ +\xd9\xd9\xd5\xdb\xdc\xd7\xdd\xdc\xd8\xde\xdd\xd9\xdf\xdb\xd7\xdd\ +\xd2\xcd\xd3\xc3\xbb\xc6\xb9\xb2\xbf\xba\xb3\xc0\xc5\xc1\xce\xc8\ +\xc4\xd4\xb7\xb3\xd0\xae\xaa\xc5\x9c\x9a\xb0\x8d\x8e\xa4\x72\x76\ +\x99\x4e\x57\x84\x36\x45\x72\x2d\x40\x6c\x2e\x41\x6d\x30\x42\x6f\ +\x31\x41\x71\x2e\x3c\x6d\x2a\x38\x6a\x2d\x3d\x6d\x30\x42\x6e\x30\ +\x44\x6d\x30\x45\x69\x31\x48\x66\x32\x49\x62\x30\x4b\x5f\x2d\x4c\ +\x5e\x30\x53\x64\x37\x5d\x72\x44\x66\x81\x4f\x6b\x8b\x5a\x71\x93\ +\x69\x7b\x9b\x78\x83\xa3\x84\x8c\xa8\x8e\x94\xad\x96\x9a\xb1\x9b\ +\x9d\xb2\x9c\x9e\xb1\x9b\x9e\xb1\x91\x97\xad\x7a\x83\xa4\x5d\x6d\ +\x99\x50\x62\x92\x4d\x61\x91\x4d\x61\x91\x4f\x5f\x8f\x4d\x5d\x8c\ +\x4d\x5c\x8b\x50\x60\x8b\x51\x65\x8c\x51\x69\x8b\x4f\x69\x88\x4b\ +\x66\x82\x49\x63\x7d\x49\x63\x7d\x4b\x64\x80\x50\x67\x84\x54\x6a\ +\x85\x57\x6d\x86\x57\x6c\x84\x57\x6c\x84\x59\x6c\x88\x5d\x6e\x8b\ +\x63\x73\x8f\x6e\x7a\x95\x00\x00\x00\xe9\xe5\xeb\xe9\xe5\xeb\xe7\ +\xe3\xe9\xe5\xe1\xe7\xe4\xe0\xe6\xe3\xdf\xe5\xe4\xe0\xe6\xe4\xde\ +\xe4\xe4\xdd\xe4\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe1\xe1\xda\xe1\ +\xe2\xda\xe1\xe2\xdb\xe1\xe2\xda\xe2\xe3\xdb\xe3\xe4\xdd\xe3\xe5\ +\xde\xe3\xe6\xdf\xe4\xe9\xe2\xe7\xe9\xe2\xe7\xea\xe2\xe7\xed\xe4\ +\xe6\xed\xe4\xe6\xee\xe6\xe7\xef\xe7\xe7\xf1\xe9\xe9\xf2\xe9\xe8\ +\xf2\xe9\xe6\xf2\xe9\xe6\xf2\xe7\xe5\xf2\xe7\xe4\xf2\xe7\xe3\xf3\ +\xe7\xe4\xf3\xe8\xe5\xf3\xe8\xe5\xf3\xe9\xe6\xf2\xe9\xe6\xf2\xe9\ +\xe6\xf3\xea\xe6\xf2\xe9\xe6\xf3\xea\xe6\xf2\xe9\xe6\xf1\xe8\xe5\ +\xf1\xe8\xe5\xf1\xe7\xe4\xee\xe2\xe0\xeb\xde\xdc\xe8\xdb\xd9\xe4\ +\xd7\xd5\xe2\xd4\xd2\xe1\xd2\xd0\xe0\xd0\xce\xe0\xce\xcc\xe0\xce\ +\xcb\xdf\xce\xcb\xe0\xcf\xcc\xe2\xd1\xce\xe5\xd2\xcf\xe6\xd4\xd0\ +\xe9\xd6\xd3\xec\xda\xd5\xef\xe0\xda\xf1\xe5\xdf\xf4\xe9\xe3\xf5\ +\xed\xe6\xf6\xef\xe8\xf6\xf0\xe9\xf4\xe9\xe3\xe2\xd1\xcf\xc7\xba\ +\xc0\xbf\xb4\xbc\xbd\xb2\xba\xbd\xb2\xbb\xc1\xb9\xc0\xc6\xbf\xc7\ +\xc2\xbc\xc5\xbe\xb9\xc4\xc2\xbd\xc7\xc6\xbf\xc8\xc8\xc0\xca\xc9\ +\xc1\xcb\xcb\xc3\xcd\xcc\xc5\xce\xcd\xc6\xcf\xce\xc8\xd0\xd0\xc9\ +\xd1\xd1\xcc\xd2\xd4\xcf\xd6\xd8\xd4\xda\xda\xd6\xdc\xda\xd6\xdc\ +\xdc\xd8\xde\xdc\xd8\xde\xd7\xd1\xd8\xcb\xc3\xcd\xbf\xb8\xc3\xb9\ +\xb2\xc0\xb9\xb2\xc0\xbe\xb9\xc7\xcb\xc7\xd7\xbd\xb8\xd2\xad\xa7\ +\xc5\xa5\xa2\xb6\x9b\x99\xab\x8b\x8a\xa2\x6c\x6d\x93\x4a\x50\x7e\ +\x35\x43\x71\x2f\x3f\x6d\x2d\x3e\x6c\x30\x3f\x6f\x31\x3e\x71\x2e\ +\x3a\x6e\x2e\x3a\x6d\x2f\x3d\x6f\x33\x43\x71\x36\x47\x73\x39\x4a\ +\x72\x3d\x4e\x70\x3f\x51\x70\x40\x54\x71\x42\x59\x75\x49\x63\x80\ +\x57\x70\x91\x6a\x7c\x9f\x7f\x8a\xaa\x8f\x94\xb0\x9c\x9d\xb3\xa5\ +\xa4\xb5\xa7\xa5\xb5\xa9\xa7\xb5\xaa\xa8\xb5\xaa\xa7\xb5\xa7\xa6\ +\xb4\xa2\xa0\xb1\x8d\x92\xa9\x70\x7c\x9c\x58\x6a\x95\x52\x66\x96\ +\x53\x67\x98\x54\x65\x97\x54\x61\x94\x53\x5d\x8f\x53\x5b\x8c\x5c\ +\x63\x91\x6f\x76\x9d\x7b\x82\xa4\x78\x81\xa1\x74\x7d\x9d\x72\x7b\ +\x9a\x74\x7c\x9b\x77\x7e\x9d\x7e\x84\xa2\x85\x89\xa5\x8a\x8c\xa6\ +\x8a\x8c\xa5\x8b\x8d\xa6\x8e\x90\xa8\x94\x94\xac\x9a\x99\xae\xa2\ +\x9e\xb1\x00\x00\x00\xea\xe6\xec\xe9\xe5\xeb\xe7\xe3\xe9\xe5\xe2\ +\xe8\xe4\xe0\xe6\xe3\xdf\xe5\xe2\xde\xe4\xe4\xdd\xe4\xe2\xdc\xe3\ +\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe0\xe0\xd9\xe0\xe1\xd9\xe1\xe1\ +\xda\xe1\xe1\xda\xe1\xe2\xdb\xe2\xe4\xdd\xe4\xe4\xdd\xe4\xe6\xdf\ +\xe4\xe8\xe1\xe6\xea\xe2\xe8\xeb\xe2\xe6\xed\xe4\xe7\xed\xe4\xe7\ +\xef\xe6\xe7\xf0\xe7\xe7\xf2\xe8\xe8\xf2\xe8\xe8\xf1\xe8\xe6\xf1\ +\xe8\xe5\xf2\xe6\xe4\xf2\xe6\xe4\xf1\xe5\xe3\xf1\xe5\xe3\xf1\xe5\ +\xe3\xf2\xe6\xe4\xf2\xe7\xe4\xf2\xe7\xe5\xf2\xe7\xe5\xf2\xe7\xe4\ +\xf2\xe8\xe5\xf2\xe9\xe6\xf1\xe8\xe5\xf1\xe8\xe5\xf1\xe7\xe5\xf0\ +\xe5\xe3\xee\xe2\xe0\xeb\xde\xdc\xe8\xdb\xd9\xe5\xd8\xd6\xe1\xd3\ +\xd1\xe1\xd2\xd0\xe0\xd0\xce\xe0\xce\xcb\xdf\xce\xca\xe0\xcd\xcb\ +\xe1\xcf\xcb\xe3\xcf\xcb\xe5\xd2\xcd\xe6\xd3\xce\xea\xd6\xd1\xed\ +\xda\xd5\xef\xe1\xda\xf2\xe6\xdf\xf5\xeb\xe3\xf5\xed\xe5\xf5\xf0\ +\xe8\xf6\xf1\xea\xf2\xe6\xdf\xdd\xcc\xcb\xc4\xb8\xbe\xbf\xb5\xbc\ +\xbe\xb3\xbb\xbd\xb3\xbb\xbf\xb5\xbd\xc5\xbd\xc4\xc6\xbf\xc7\xc1\ +\xbb\xc5\xc2\xbc\xc6\xc4\xbf\xc9\xc8\xc1\xcb\xca\xc2\xcc\xcc\xc5\ +\xce\xce\xc6\xd0\xcf\xc8\xd0\xd0\xc9\xd3\xd2\xcd\xd2\xd4\xd0\xd6\ +\xd7\xd3\xd9\xd9\xd6\xdc\xda\xd7\xdd\xdc\xd8\xde\xdb\xd6\xdd\xd1\ +\xcb\xd1\xc3\xbc\xc6\xbc\xb5\xc2\xba\xb3\xc0\xba\xb4\xc1\xb8\xb2\ +\xc1\xc2\xbf\xcf\xc8\xc6\xd9\xb9\xb4\xcc\xab\xa4\xb9\xa0\x9c\xad\ +\x93\x90\xa5\x78\x75\x96\x54\x55\x82\x3c\x44\x74\x35\x43\x71\x32\ +\x41\x6f\x31\x40\x6f\x34\x40\x73\x37\x41\x77\x39\x3e\x77\x39\x3f\ +\x77\x3a\x42\x78\x41\x4a\x7c\x46\x50\x80\x4b\x53\x82\x4f\x58\x82\ +\x54\x5e\x84\x58\x62\x89\x5f\x6d\x91\x6d\x7a\x9d\x80\x8a\xa9\x95\ +\x98\xb2\xa4\xa4\xb6\xad\xaa\xb8\xb0\xac\xb8\xb1\xac\xb8\xb0\xab\ +\xb7\xae\xaa\xb6\xad\xa9\xb6\xac\xa9\xb5\xa9\xa5\xb4\x9a\x9b\xac\ +\x7e\x89\x9f\x5e\x73\x94\x51\x69\x92\x54\x69\x98\x5b\x6d\x9e\x5d\ +\x69\x9d\x58\x61\x96\x54\x5a\x8e\x4f\x54\x87\x63\x64\x91\x88\x87\ +\xa6\x9f\x9b\xb2\xa1\x9e\xb2\x9f\x9b\xb1\x9f\x9b\xb0\x9e\x9b\xb0\ +\xa1\x9c\xb1\xa4\x9f\xb3\xa6\xa1\xb3\xa8\xa3\xb3\xa9\xa3\xb2\xad\ +\xa6\xb4\xb1\xaa\xb7\xb4\xac\xb9\xb6\xae\xba\xb7\xae\xb9\x00\x00\ +\x00\xea\xe6\xec\xe9\xe5\xeb\xe7\xe3\xe9\xe5\xe0\xe6\xe4\xde\xe5\ +\xe2\xde\xe4\xe0\xdd\xe3\xe3\xdb\xe2\xe3\xdc\xe3\xe2\xdb\xe2\xe0\ +\xd9\xe0\xdf\xd8\xdf\xdf\xd7\xdf\xe1\xda\xe1\xe2\xdb\xe2\xe1\xda\ +\xe1\xe2\xdb\xe2\xe4\xdd\xe4\xe4\xdd\xe4\xe6\xdf\xe4\xe9\xe2\xe7\ +\xe9\xe3\xe8\xeb\xe2\xe6\xed\xe4\xe6\xed\xe3\xe5\xee\xe3\xe5\xef\ +\xe5\xe6\xf1\xe7\xe6\xf0\xe6\xe6\xf0\xe7\xe7\xf1\xe5\xe5\xf1\xe5\ +\xe5\xf1\xe5\xe3\xef\xe3\xe1\xef\xe3\xe1\xef\xe3\xe2\xef\xe3\xe3\ +\xf1\xe5\xe3\xf0\xe4\xe2\xf0\xe4\xe2\xf1\xe6\xe4\xf0\xe5\xe3\xf1\ +\xe6\xe3\xf0\xe6\xe3\xef\xe7\xe3\xf1\xe6\xe4\xf1\xe5\xe3\xed\xe1\ +\xdf\xea\xdd\xdb\xe7\xda\xd8\xe4\xd7\xd5\xe2\xd4\xd1\xe0\xd1\xcf\ +\xe0\xcf\xcd\xdf\xce\xcb\xe0\xcd\xcb\xe1\xcd\xc9\xe1\xce\xc9\xe3\ +\xcf\xca\xe4\xd0\xcb\xe7\xd3\xce\xe9\xd6\xd1\xed\xdb\xd5\xf0\xe2\ +\xdb\xf3\xe7\xdf\xf5\xec\xe3\xf7\xee\xe5\xf6\xf1\xe9\xf6\xf1\xe9\ +\xf1\xe2\xdc\xd9\xc9\xc9\xc3\xb7\xbe\xc0\xb5\xbd\xbe\xb3\xbb\xbe\ +\xb4\xbc\xbe\xb3\xbb\xc0\xb7\xbe\xc3\xbb\xc3\xc1\xb9\xc4\xc0\xba\ +\xc4\xc3\xbe\xc8\xc7\xc2\xcb\xc9\xc4\xcd\xcd\xc5\xcf\xce\xc6\xd0\ +\xd0\xc8\xd1\xd3\xcb\xd4\xd4\xcd\xd6\xd6\xd2\xd8\xda\xd3\xda\xdd\ +\xd6\xdd\xdc\xd7\xdc\xd5\xce\xd5\xc8\xc2\xcb\xbe\xb8\xc3\xbc\xb5\ +\xc1\xbb\xb4\xc1\xbf\xba\xc6\xbd\xb8\xc6\xbc\xb9\xc8\xc3\xc3\xd3\ +\xbf\xbf\xd1\xad\xa8\xba\xa1\x9b\xad\x99\x93\xa7\x80\x7c\x9b\x5e\ +\x5d\x87\x3e\x43\x76\x36\x41\x71\x34\x41\x71\x31\x40\x6f\x33\x41\ +\x72\x3c\x46\x7b\x48\x4b\x85\x55\x52\x8d\x67\x61\x94\x6d\x66\x97\ +\x66\x64\x96\x68\x69\x98\x6e\x6f\x9b\x75\x77\x9f\x7a\x7d\xa2\x80\ +\x83\xa5\x8a\x8d\xaa\x96\x98\xb0\xa2\xa1\xb4\xad\xab\xb9\xb4\xae\ +\xbb\xb4\xaf\xba\xb4\xae\xb9\xb2\xac\xb8\xb1\xab\xb8\xb0\xab\xb7\ +\xae\xa9\xb5\xad\xa9\xb5\xa3\xa1\xb0\x8a\x90\xa3\x69\x7b\x97\x52\ +\x6c\x90\x56\x6e\x97\x71\x7d\xa8\x82\x87\xaf\x84\x83\xad\x70\x70\ +\xa2\x56\x59\x8e\x49\x4c\x82\x61\x60\x8f\x92\x8d\xa9\xad\xa7\xb7\ +\xb4\xac\xba\xb2\xaa\xb8\xb3\xaa\xb8\xb2\xa9\xb7\xb2\xaa\xb8\xb1\ +\xa9\xb7\xb0\xa8\xb6\xaf\xa7\xb4\xb1\xa8\xb5\xb4\xac\xb8\xb8\xaf\ +\xba\xbb\xb2\xbc\xba\xb2\xbb\xba\xb2\xb9\x00\x00\x00\xeb\xe6\xec\ +\xeb\xe3\xeb\xe8\xe1\xe9\xe6\xdf\xe6\xe3\xdd\xe4\xe2\xdb\xe2\xe2\ +\xdc\xe2\xe1\xdb\xe2\xe1\xda\xe1\xe0\xdb\xe2\xe0\xd9\xe1\xdf\xd7\ +\xe1\xdf\xd7\xe0\xe0\xd8\xe0\xe1\xda\xe1\xe2\xdb\xe2\xe3\xdc\xe3\ +\xe4\xdd\xe4\xe5\xdd\xe4\xe6\xdf\xe4\xe8\xe1\xe6\xe9\xe2\xe6\xeb\ +\xe2\xe5\xec\xe2\xe5\xed\xe2\xe5\xee\xe3\xe5\xef\xe4\xe6\xef\xe5\ +\xe6\xef\xe6\xe6\xef\xe5\xe5\xf0\xe6\xe5\xf0\xe5\xe5\xef\xe3\xe4\ +\xee\xe2\xe3\xee\xe2\xe2\xee\xe2\xe2\xef\xe3\xe3\xee\xe2\xe2\xee\ +\xe2\xe3\xee\xe2\xe2\xef\xe3\xe1\xef\xe3\xe2\xf0\xe4\xe2\xf0\xe4\ +\xe2\xf0\xe4\xe2\xf0\xe3\xe1\xee\xe2\xe0\xec\xdf\xdd\xe9\xdc\xda\ +\xe6\xd8\xd7\xe3\xd6\xd4\xe1\xd3\xd1\xdf\xd0\xce\xdf\xce\xcc\xdf\ +\xce\xcb\xdf\xcd\xc9\xe1\xcc\xc7\xe1\xcd\xc8\xe3\xcf\xc9\xe5\xd1\ +\xcb\xe8\xd4\xce\xeb\xd8\xd1\xef\xdd\xd7\xf2\xe4\xdc\xf4\xe9\xe1\ +\xf5\xec\xe3\xf7\xef\xe6\xf6\xf1\xe8\xf6\xf1\xe9\xf2\xe6\xde\xdd\ +\xcd\xcc\xc5\xb9\xbe\xc1\xb6\xbe\xc0\xb5\xbd\xbf\xb5\xbd\xbf\xb5\ +\xbd\xc0\xb5\xbd\xc1\xb7\xbf\xc1\xba\xc3\xc3\xbb\xc5\xc5\xbf\xc9\ +\xc7\xc2\xcb\xca\xc6\xce\xce\xc6\xd0\xd0\xc9\xd2\xd2\xca\xd3\xd4\ +\xcc\xd5\xd6\xd0\xd8\xda\xd3\xda\xdb\xd4\xda\xd6\xd0\xd6\xcd\xc5\ +\xcc\xc1\xba\xc5\xbc\xb7\xc2\xbc\xb6\xc1\xbb\xb4\xc1\xc1\xba\xc7\ +\xc6\xc3\xcd\xbf\xbc\xca\xc4\xc6\xd4\xc0\xc3\xd3\xad\xab\xbc\xa2\ +\x9c\xae\x9d\x97\xab\x8c\x86\xa2\x6c\x68\x93\x4b\x4e\x80\x3d\x46\ +\x78\x38\x43\x74\x36\x43\x74\x37\x44\x75\x3b\x47\x7b\x49\x50\x89\ +\x6a\x68\x9c\xa4\x95\xb0\xc2\xae\xb9\xb5\xa4\xb4\x9c\x94\xae\x96\ +\x92\xaf\x9c\x99\xb2\xa1\x9e\xb4\xa4\xa1\xb5\xa8\xa4\xb6\xab\xa7\ +\xb7\xb0\xab\xb9\xb3\xae\xba\xb5\xaf\xba\xb5\xaf\xba\xb4\xae\xb9\ +\xb3\xad\xb8\xb3\xac\xb8\xb1\xaa\xb7\xb0\xaa\xb6\xad\xa8\xb5\xa6\ +\xa2\xb1\x92\x94\xa7\x73\x7f\x9c\x58\x71\x93\x5c\x74\x99\x7f\x89\ +\xab\x9b\x9c\xb6\xaa\xa6\xbc\xa6\xa0\xb9\x8f\x8a\xad\x6a\x67\x99\ +\x4c\x4d\x85\x61\x5e\x91\x95\x8e\xab\xb1\xa9\xb8\xb8\xaf\xbc\xb7\ +\xae\xba\xb6\xac\xb9\xb5\xac\xb8\xb4\xab\xb7\xb3\xaa\xb7\xb1\xa8\ +\xb5\xb1\xa8\xb5\xb3\xa9\xb6\xb7\xad\xb8\xb9\xaf\xb9\xbb\xb2\xbb\ +\xbc\xb2\xb9\xbb\xb2\xba\x00\x00\x00\xec\xe5\xec\xea\xe3\xea\xe8\ +\xe1\xe8\xe5\xde\xe5\xe2\xdb\xe2\xe2\xdb\xe2\xe1\xda\xe1\xe1\xda\ +\xe1\xe1\xda\xe1\xe1\xda\xe1\xe0\xd9\xe1\xdf\xd7\xe1\xde\xd6\xe0\ +\xdf\xd8\xe2\xe0\xda\xe2\xe2\xdc\xe3\xe3\xdd\xe4\xe4\xdd\xe4\xe5\ +\xde\xe4\xe6\xdf\xe4\xe8\xe1\xe6\xea\xe1\xe7\xeb\xe1\xe5\xeb\xe2\ +\xe5\xec\xe2\xe4\xed\xe2\xe4\xee\xe3\xe5\xef\xe4\xe6\xef\xe5\xe6\ +\xf0\xe5\xe6\xef\xe5\xe5\xf0\xe4\xe4\xef\xe3\xe3\xee\xe2\xe2\xed\ +\xe1\xe1\xed\xe2\xe1\xed\xe1\xe2\xed\xe2\xe1\xed\xe1\xe1\xed\xe1\ +\xe1\xed\xe1\xe1\xed\xe1\xe1\xee\xe2\xe1\xee\xe2\xe2\xee\xe2\xe1\ +\xee\xe2\xe1\xec\xe0\xe0\xea\xdd\xdd\xe7\xd9\xda\xe3\xd5\xd6\xe2\ +\xd4\xd4\xdf\xd2\xd0\xdd\xce\xcc\xdd\xcd\xcb\xde\xcd\xca\xdf\xcc\ +\xc8\xe0\xcc\xc7\xe1\xcd\xc8\xe4\xcf\xc9\xe6\xd1\xcb\xe8\xd4\xce\ +\xeb\xd8\xd1\xf0\xde\xd8\xf2\xe6\xde\xf4\xea\xe1\xf5\xec\xe3\xf6\ +\xee\xe5\xf6\xf1\xe8\xf6\xf1\xea\xf5\xed\xe6\xec\xdc\xd8\xd7\xc8\ +\xc9\xc9\xbc\xc2\xc2\xb8\xbf\xc2\xb7\xbe\xc2\xb7\xbe\xc1\xb6\xbe\ +\xc1\xb6\xbe\xc3\xb9\xc1\xc5\xbd\xc6\xc7\xc1\xca\xc9\xc3\xcc\xcc\ +\xc6\xcf\xcf\xc8\xd0\xd2\xcb\xd2\xd4\xcd\xd4\xd6\xd0\xd7\xd7\xd1\ +\xd8\xd4\xcd\xd5\xcb\xc6\xcd\xc3\xbd\xc7\xbf\xb9\xc4\xbe\xb8\xc3\ +\xbd\xb7\xc2\xbc\xb7\xc3\xc7\xc3\xce\xd3\xcf\xd7\xc9\xc4\xce\xc1\ +\xbf\xcc\xbb\xba\xc9\xaf\xac\xbc\xa5\x9e\xb0\xa1\x9b\xad\x96\x8f\ +\xa8\x7a\x73\x9a\x58\x56\x8a\x45\x4b\x7f\x40\x47\x7b\x40\x48\x7c\ +\x40\x49\x7e\x41\x4c\x83\x45\x50\x88\x5c\x62\x97\xa5\x98\xb1\xd5\ +\xc4\xc6\xd4\xc4\xc5\xc1\xb4\xbc\xad\xa4\xb6\xab\xa6\xb8\xb0\xac\ +\xbb\xb2\xae\xbb\xb4\xad\xbb\xb4\xae\xbb\xb5\xaf\xba\xb5\xaf\xba\ +\xb5\xaf\xba\xb4\xae\xb9\xb4\xae\xb9\xb3\xad\xb8\xb3\xad\xb7\xb2\ +\xab\xb7\xb1\xaa\xb7\xae\xa8\xb6\xa5\xa0\xb0\x93\x91\xa7\x75\x7e\ +\x9c\x5e\x70\x97\x63\x76\x9c\x84\x8c\xac\xa2\xa2\xb7\xb3\xae\xbd\ +\xba\xb3\xc0\xb6\xae\xbc\xa3\x9b\xb3\x80\x7a\xa3\x5b\x57\x90\x65\ +\x5f\x94\x97\x8f\xac\xb1\xa9\xb8\xb8\xb0\xbb\xb7\xae\xba\xb6\xac\ +\xb8\xb5\xaa\xb7\xb5\xaa\xb7\xb3\xa9\xb6\xb3\xa9\xb5\xb2\xa8\xb6\ +\xb4\xaa\xb7\xb8\xae\xb8\xba\xaf\xb9\xbb\xb0\xba\xbb\xb1\xb9\xbb\ +\xb1\xb9\x00\x00\x00\xeb\xe4\xeb\xea\xe3\xea\xe7\xe0\xe7\xe4\xdd\ +\xe4\xe2\xdb\xe2\xe1\xda\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe1\xda\xe1\ +\xe1\xda\xe1\xdf\xd9\xe0\xdf\xd8\xe1\xde\xd8\xe1\xde\xd9\xe2\xe0\ +\xda\xe3\xe2\xdd\xe3\xe4\xde\xe5\xe5\xde\xe5\xe6\xdf\xe6\xe7\xe0\ +\xe5\xe8\xe1\xe6\xe9\xe1\xe5\xea\xe1\xe4\xea\xe1\xe4\xed\xe2\xe5\ +\xed\xe2\xe4\xed\xe2\xe4\xee\xe3\xe5\xef\xe4\xe6\xef\xe4\xe6\xef\ +\xe4\xe4\xf0\xe4\xe4\xef\xe3\xe3\xed\xe1\xe1\xed\xe2\xe2\xee\xe1\ +\xe2\xee\xe1\xe3\xec\xe0\xe1\xec\xe0\xe1\xec\xdf\xe1\xed\xe1\xe0\ +\xed\xe1\xe1\xed\xe1\xe1\xed\xe1\xe1\xed\xe1\xe1\xec\xe0\xe0\xeb\ +\xdf\xdf\xe8\xdc\xdc\xe4\xd7\xd8\xe2\xd4\xd5\xe0\xd2\xd2\xde\xd0\ +\xcf\xdc\xcd\xcb\xdd\xcc\xc9\xdd\xcc\xc9\xdf\xcb\xc6\xdf\xcb\xc6\ +\xe1\xce\xc7\xe5\xcf\xc9\xe6\xd1\xcb\xe8\xd4\xcd\xeb\xd8\xd1\xf0\ +\xde\xd7\xf3\xe6\xde\xf4\xe9\xe1\xf5\xec\xe3\xf7\xef\xe6\xf6\xf0\ +\xe7\xf7\xf2\xe9\xf7\xf2\xe9\xf5\xed\xe5\xef\xe1\xdb\xe5\xd5\xd3\ +\xd8\xc8\xca\xca\xbe\xc3\xc3\xb9\xbf\xc3\xb8\xbf\xc3\xb8\xbf\xc3\ +\xb9\xc0\xc4\xbb\xc2\xc7\xc1\xc8\xcc\xc5\xcc\xce\xc7\xce\xd1\xca\ +\xd1\xd3\xcc\xd3\xd5\xd0\xd7\xd6\xd2\xd9\xd4\xd0\xd7\xcf\xc9\xd3\ +\xc9\xc5\xce\xc5\xc0\xcb\xc3\xbe\xc9\xc1\xbc\xc8\xc5\xc1\xcd\xd4\ +\xd1\xd9\xda\xd7\xdc\xce\xc7\xce\xc1\xba\xc4\xb8\xb2\xbe\xae\xa7\ +\xb7\xa9\xa1\xb1\xa7\x9f\xb0\x9f\x97\xac\x84\x7c\x9f\x61\x5d\x8f\ +\x4a\x4c\x83\x44\x49\x81\x47\x4c\x83\x4e\x52\x89\x54\x58\x91\x51\ +\x58\x92\x53\x5b\x95\x6d\x71\xa1\xb7\xab\xba\xcb\xbe\xc2\xc8\xbb\ +\xc0\xb5\xac\xb9\xaf\xa9\xb9\xb2\xad\xbc\xb4\xae\xbc\xb5\xaf\xbb\ +\xb4\xad\xba\xb4\xae\xb9\xb3\xad\xb8\xb3\xad\xb8\xb2\xac\xb7\xb2\ +\xac\xb7\xb3\xad\xb8\xb2\xac\xb7\xb2\xac\xb7\xb3\xab\xb8\xb0\xaa\ +\xb7\xa7\xa1\xb1\x91\x8d\xa5\x74\x77\x9b\x61\x6e\x97\x6d\x79\xa2\ +\x8b\x90\xae\xa3\xa2\xb7\xb2\xad\xbc\xb8\xb1\xbe\xb9\xb1\xbd\xb7\ +\xae\xbb\xab\xa2\xb6\x8f\x86\xa9\x6a\x62\x99\x6d\x65\x9b\x98\x8f\ +\xad\xb1\xa8\xb7\xb7\xae\xba\xb7\xad\xb9\xb6\xac\xb8\xb6\xac\xb9\ +\xb3\xa9\xb6\xb4\xaa\xb7\xb3\xa9\xb6\xb3\xa9\xb5\xb5\xab\xb7\xb8\ +\xae\xb8\xb9\xae\xb8\xba\xaf\xb9\xbb\xb1\xb8\xbb\xb1\xb8\x00\x00\ +\x00\xe9\xe2\xe9\xe8\xe1\xe8\xe7\xdf\xe7\xe5\xde\xe3\xe2\xdb\xe1\ +\xe1\xda\xe1\xe2\xdb\xe2\xe0\xd9\xe0\xe0\xd9\xe0\xe0\xd9\xdf\xdf\ +\xd7\xe1\xe0\xd8\xe1\xde\xd8\xe1\xe1\xda\xe3\xe0\xdb\xe3\xe3\xdd\ +\xe3\xe3\xdc\xe3\xe4\xdd\xe4\xe6\xdf\xe4\xe7\xe0\xe5\xe8\xdf\xe4\ +\xea\xe0\xe4\xe9\xe0\xe3\xea\xe1\xe4\xeb\xe1\xe4\xec\xe1\xe5\xee\ +\xe3\xe5\xed\xe2\xe5\xee\xe3\xe5\xef\xe4\xe6\xee\xe3\xe5\xee\xe3\ +\xe3\xee\xe2\xe2\xed\xe1\xe1\xee\xe1\xe2\xed\xe0\xe2\xeb\xdf\xe1\ +\xec\xdf\xe1\xea\xde\xe0\xe9\xde\xe0\xea\xdf\xe1\xeb\xdf\xe0\xeb\ +\xdf\xe0\xeb\xdf\xe0\xeb\xdf\xdf\xeb\xdf\xe0\xe9\xdd\xdd\xe6\xda\ +\xda\xe3\xd5\xd6\xe0\xd2\xd3\xdf\xd1\xd2\xde\xd0\xce\xdc\xcc\xca\ +\xdb\xca\xc8\xdc\xca\xc7\xde\xcb\xc7\xdf\xcb\xc6\xe2\xcd\xc7\xe4\ +\xce\xc8\xe7\xd1\xcb\xe9\xd4\xce\xeb\xd8\xd1\xf0\xde\xd8\xf2\xe5\ +\xdd\xf4\xe9\xe1\xf6\xec\xe3\xf6\xed\xe4\xf6\xf0\xe7\xf6\xf1\xe8\ +\xf7\xf2\xe8\xf7\xf1\xea\xf7\xf0\xe8\xf5\xeb\xe3\xf0\xe2\xdc\xe5\ +\xd5\xd3\xd6\xc8\xca\xcc\xbf\xc3\xc7\xbc\xc1\xc4\xba\xc0\xc2\xb7\ +\xbf\xc3\xba\xc1\xc9\xc1\xc8\xcf\xc9\xd0\xd1\xcc\xd4\xd6\xd2\xd9\ +\xda\xd7\xde\xdd\xdb\xe1\xdc\xda\xe0\xdb\xd8\xdf\xdb\xd8\xe0\xd9\ +\xd7\xdf\xda\xd7\xdf\xdd\xd9\xe0\xdd\xd9\xdf\xd7\xd0\xd6\xce\xc6\ +\xcd\xc2\xb9\xc3\xb6\xac\xb8\xb0\xa7\xb4\xae\xa4\xb4\xad\xa3\xb3\ +\xa7\x9e\xb0\x91\x8a\xa4\x6b\x68\x94\x4d\x51\x86\x4e\x53\x89\x5a\ +\x5e\x91\x6a\x6c\x9b\x77\x78\xa2\x7a\x7b\xa5\x72\x75\xa3\x65\x6b\ +\x9e\x73\x77\xa5\xa2\x9e\xb5\xb5\xac\xbc\xb8\xaf\xbc\xb5\xad\xbd\ +\xb7\xb0\xbe\xb7\xb0\xbd\xb5\xae\xbc\xb3\xac\xb9\xb1\xaa\xb7\xb1\ +\xaa\xb6\xb1\xaa\xb6\xb1\xaa\xb5\xb0\xa9\xb5\xb1\xab\xb6\xb1\xab\ +\xb6\xb2\xab\xb6\xb1\xab\xb7\xb1\xab\xb7\xac\xa5\xb5\x98\x92\xab\ +\x7c\x7a\xa1\x6a\x6f\x9b\x75\x7c\xa4\x92\x94\xb1\xa7\xa4\xb7\xb1\ +\xad\xba\xb5\xae\xbb\xb6\xae\xbb\xb6\xac\xba\xb4\xaa\xba\xae\xa4\ +\xb6\x97\x8c\xac\x77\x6b\xa0\x7b\x70\xa3\x9c\x94\xaf\xb1\xa8\xb7\ +\xb5\xab\xb7\xb5\xab\xb7\xb5\xab\xb9\xb6\xac\xb9\xb4\xaa\xb7\xb4\ +\xaa\xb7\xb4\xaa\xb7\xb5\xab\xb7\xb6\xac\xb8\xb8\xae\xb9\xba\xaf\ +\xb9\xba\xb0\xba\xbb\xb0\xb9\xbc\xb1\xb9\x00\x00\x00\xe8\xe1\xe8\ +\xe6\xdf\xe7\xe6\xde\xe4\xe5\xde\xe3\xe2\xdb\xe0\xe1\xda\xe1\xe2\ +\xda\xe1\xe0\xd9\xe0\xe0\xd9\xe0\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd8\ +\xdf\xdf\xd9\xe0\xe0\xd9\xe1\xe1\xda\xe1\xe3\xdc\xe3\xe4\xdd\xe4\ +\xe5\xdd\xe3\xe6\xde\xe4\xe7\xdf\xe4\xe9\xdf\xe3\xe9\xdf\xe2\xea\ +\xe0\xe3\xec\xe1\xe4\xeb\xe1\xe4\xec\xe1\xe4\xed\xe2\xe5\xee\xe3\ +\xe5\xee\xe3\xe5\xee\xe3\xe5\xef\xe3\xe4\xef\xe3\xe3\xee\xe2\xe2\ +\xee\xe1\xe2\xed\xe1\xe2\xed\xe0\xe2\xeb\xe0\xe1\xea\xde\xe0\xea\ +\xdf\xe1\xea\xdf\xe1\xea\xdf\xe1\xe9\xde\xe0\xe9\xdf\xe1\xe9\xde\ +\xe1\xea\xdf\xe0\xea\xdd\xdf\xe7\xdc\xdc\xe4\xd8\xd8\xe1\xd4\xd5\ +\xdf\xd1\xd1\xde\xd0\xd1\xdd\xcf\xcd\xda\xcb\xc9\xda\xc8\xc7\xdb\ +\xc9\xc6\xdd\xca\xc5\xdd\xc9\xc4\xe1\xcb\xc5\xe3\xcd\xc7\xe5\xd0\ +\xca\xe8\xd4\xce\xeb\xd8\xd2\xef\xde\xd7\xf2\xe3\xdb\xf4\xe8\xe0\ +\xf6\xec\xe3\xf6\xed\xe4\xf6\xef\xe6\xf6\xf1\xe8\xf7\xf1\xe8\xf6\ +\xf2\xe9\xf7\xf1\xe9\xf7\xf2\xe9\xf6\xf1\xe8\xf4\xeb\xe3\xf0\xe2\ +\xdc\xe8\xd9\xd5\xe0\xd0\xcf\xd8\xc9\xca\xcd\xc0\xc4\xc2\xb7\xbf\ +\xcc\xc5\xce\xdb\xd7\xdf\xdf\xdc\xe2\xdb\xd8\xde\xda\xd6\xdc\xdc\ +\xd9\xe0\xde\xdb\xe1\xdf\xdc\xe1\xe0\xdd\xe2\xe1\xdd\xe1\xdf\xda\ +\xde\xd7\xd0\xd4\xce\xc7\xce\xcd\xc6\xcd\xc4\xbc\xc4\xb7\xad\xb9\ +\xb2\xa8\xb5\xb1\xa8\xb5\xb1\xa8\xb5\xae\xa4\xb4\x9a\x92\xa9\x74\ +\x72\x98\x57\x5c\x8c\x5b\x62\x92\x71\x75\x9f\x87\x87\xa8\x95\x93\ +\xad\x99\x98\xaf\x9a\x99\xaf\x8c\x8d\xab\x74\x76\xa2\x7c\x7f\xa7\ +\x9b\x9a\xb3\xb1\xab\xbc\xb7\xaf\xbf\xb9\xb2\xc0\xba\xb2\xc0\xb7\ +\xb0\xbd\xb2\xab\xba\xb0\xa9\xb7\xaf\xa8\xb5\xaf\xa8\xb5\xaf\xa8\ +\xb4\xaf\xa9\xb5\xb0\xa9\xb5\xb0\xaa\xb6\xb1\xab\xb6\xb2\xab\xb7\ +\xb2\xac\xb8\xb1\xab\xb8\xa9\xa3\xb5\x9b\x96\xb0\x8f\x8c\xac\x90\ +\x8d\xad\x9c\x9a\xb4\xa9\xa5\xb7\xb2\xac\xba\xb4\xac\xbb\xb3\xab\ +\xb9\xb3\xa9\xb9\xb4\xaa\xb9\xb3\xa9\xb9\xb0\xa5\xb6\x9c\x91\xaf\ +\x83\x77\xa6\x8d\x83\xaa\xa5\x9c\xb3\xb3\xa9\xb7\xb4\xaa\xb6\xb4\ +\xaa\xb6\xb5\xab\xb7\xb5\xab\xb8\xb4\xaa\xb7\xb5\xab\xb8\xb5\xab\ +\xb7\xb6\xac\xb8\xb7\xae\xb9\xb9\xb0\xba\xba\xb1\xbb\xba\xb1\xba\ +\xba\xb1\xb9\xba\xb1\xb9\x00\x00\x00\xe7\xe0\xe7\xe6\xdf\xe6\xe6\ +\xde\xe5\xe4\xdd\xe2\xe3\xdc\xe1\xe2\xdb\xe1\xe2\xd9\xe0\xe0\xda\ +\xe1\xe0\xd9\xe0\xe1\xda\xe1\xe0\xd9\xe0\xdf\xd8\xdf\xdf\xd8\xdf\ +\xdf\xd8\xdf\xe0\xd9\xe0\xe1\xda\xe2\xe3\xdc\xe2\xe3\xdc\xe2\xe5\ +\xdd\xe2\xe7\xde\xe3\xe8\xdf\xe2\xea\xe0\xe3\xea\xdf\xe2\xec\xe1\ +\xe3\xec\xe1\xe4\xed\xe2\xe5\xec\xe1\xe4\xed\xe2\xe4\xed\xe2\xe5\ +\xee\xe3\xe5\xef\xe4\xe3\xef\xe3\xe3\xee\xe2\xe2\xed\xe1\xe1\xec\ +\xe1\xe1\xed\xe1\xe1\xec\xdf\xe1\xea\xde\xe0\xea\xdf\xe1\xea\xdf\ +\xe1\xe9\xde\xe0\xea\xdf\xe1\xea\xde\xe1\xea\xdf\xe1\xe9\xde\xe0\ +\xe6\xdc\xdd\xe6\xda\xdb\xe2\xd6\xd6\xdf\xd2\xd3\xdd\xcf\xd0\xdd\ +\xcf\xce\xdb\xcd\xcb\xda\xc9\xc8\xd8\xc6\xc5\xd9\xc7\xc4\xda\xc7\ +\xc2\xdc\xc8\xc2\xdf\xc9\xc3\xe2\xcc\xc6\xe5\xcf\xc9\xe8\xd2\xcc\ +\xeb\xd8\xd1\xef\xdd\xd6\xf2\xe2\xdb\xf3\xe7\xde\xf5\xea\xe2\xf6\ +\xee\xe5\xf7\xf0\xe7\xf6\xf0\xe7\xf6\xf1\xe8\xf7\xf2\xe9\xf7\xf2\ +\xe9\xf7\xf2\xe9\xf7\xf1\xe9\xf7\xf0\xe9\xf6\xf0\xe7\xf5\xee\xe5\ +\xf4\xea\xe2\xf0\xe3\xdd\xe6\xd6\xd4\xdb\xd2\xd6\xe4\xe0\xe5\xe6\ +\xe1\xe5\xdc\xd6\xdc\xd1\xcb\xd1\xd8\xd4\xda\xde\xdb\xe0\xdd\xd8\ +\xde\xda\xd4\xd9\xd6\xcf\xd5\xcc\xc4\xcd\xc8\xc0\xc8\xc6\xbd\xc6\ +\xc6\xbd\xc5\xc2\xb9\xc0\xb9\xae\xb9\xb4\xaa\xb6\xb6\xac\xb8\xbd\ +\xb1\xbb\xc0\xb4\xbd\xae\xa1\xb3\x85\x7e\xa0\x69\x68\x95\x70\x74\ +\x9c\x86\x86\xa6\x99\x95\xad\xa3\x9e\xb1\xa6\xa2\xb2\xa6\xa3\xb2\ +\xa5\xa3\xb3\x97\x95\xad\x7e\x7e\xa3\x8b\x8b\xab\xad\xa8\xbb\xbe\ +\xb5\xc1\xc3\xb9\xc2\xc8\xbd\xc5\xc3\xb7\xc0\xb5\xad\xbb\xae\xa7\ +\xb6\xad\xa7\xb5\xae\xa7\xb4\xaf\xa8\xb4\xae\xa8\xb5\xaf\xa8\xb4\ +\xaf\xa8\xb5\xb0\xaa\xb5\xb1\xab\xb5\xb1\xaa\xb7\xb2\xab\xb7\xb3\ +\xac\xb9\xb1\xab\xba\xad\xa7\xba\xa9\xa4\xb7\xac\xa7\xb8\xaf\xa9\ +\xb8\xb3\xab\xb9\xb3\xab\xb8\xb3\xaa\xb8\xb3\xa9\xb8\xb3\xa9\xb9\ +\xb4\xab\xb8\xb5\xab\xba\xb0\xa6\xb7\xa1\x95\xb2\x9c\x92\xb4\xa5\ +\x9c\xb6\xb0\xa7\xb8\xb8\xad\xb9\xb6\xab\xb7\xb5\xab\xb7\xb5\xab\ +\xb7\xb4\xaa\xb8\xb5\xab\xb7\xb6\xac\xb8\xb6\xac\xb8\xb7\xad\xb8\ +\xb9\xaf\xb9\xba\xb1\xbb\xbb\xb1\xbc\xbc\xb2\xb9\xbc\xb1\xb9\xba\ +\xb1\xb9\x00\x00\x00\xe7\xe0\xe7\xe7\xdf\xe6\xe6\xdf\xe4\xe5\xde\ +\xe3\xe3\xdc\xe1\xe2\xda\xe1\xe2\xdb\xe1\xe0\xd9\xe1\xe1\xda\xe1\ +\xe1\xda\xe1\xe0\xd8\xdf\xdf\xd8\xdf\xde\xd7\xde\xdd\xd5\xdc\xde\ +\xd6\xdd\xdf\xd8\xde\xe1\xda\xdf\xe3\xdb\xe0\xe5\xdb\xe0\xe6\xdd\ +\xe1\xe9\xdf\xe2\xeb\xe0\xe2\xea\xdf\xe2\xeb\xe0\xe2\xec\xe1\xe3\ +\xeb\xe0\xe3\xec\xe1\xe3\xed\xe2\xe4\xef\xe3\xe5\xef\xe2\xe4\xf0\ +\xe4\xe3\xf0\xe4\xe4\xef\xe2\xe3\xef\xe0\xe1\xed\xe1\xe0\xed\xe0\ +\xe1\xec\xe1\xe0\xec\xdf\xe1\xeb\xdf\xe1\xea\xdf\xe1\xe9\xdf\xe1\ +\xe9\xde\xe0\xe9\xde\xe0\xe8\xdd\xdf\xe8\xdd\xdf\xe5\xda\xdc\xe4\ +\xd7\xd9\xe0\xd4\xd4\xdd\xd0\xd1\xdc\xce\xcf\xda\xcc\xcd\xd9\xca\ +\xc9\xd8\xc7\xc6\xd7\xc5\xc3\xd8\xc6\xc3\xd8\xc5\xc0\xda\xc5\xc0\ +\xdd\xc8\xc2\xe0\xca\xc4\xe3\xce\xc8\xe7\xd2\xcc\xea\xd7\xd0\xee\ +\xdc\xd5\xf1\xe1\xda\xf3\xe6\xdd\xf4\xe9\xe1\xf6\xec\xe3\xf6\xef\ +\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf6\xf1\xe8\xf6\xf1\xe8\xf6\xf1\xe8\ +\xf6\xf1\xe8\xf5\xf0\xe7\xf6\xf1\xe7\xf6\xf0\xe7\xf6\xf0\xe7\xf5\ +\xed\xe5\xec\xe2\xe1\xe8\xe2\xe5\xde\xd8\xdc\xd0\xc8\xce\xc5\xbd\ +\xc7\xca\xc4\xce\xd3\xcf\xd6\xd2\xcd\xd5\xcf\xc9\xd2\xd1\xcb\xd4\ +\xce\xc6\xce\xc4\xbb\xc5\xc2\xb8\xc1\xc0\xb5\xbf\xbf\xb3\xbc\xbd\ +\xb1\xbb\xbd\xb1\xba\xc4\xb7\xbe\xd3\xc3\xc5\xde\xcb\xc9\xd4\xc3\ +\xc3\xb7\xa7\xb4\x93\x8a\xa6\x8f\x89\xa6\x9b\x95\xac\xa4\x9e\xb0\ +\xa9\xa2\xb2\xa9\xa4\xb3\xa9\xa4\xb3\xa9\xa4\xb3\xaa\xa6\xb5\x9b\ +\x98\xad\x84\x84\xa5\x9f\x9a\xb2\xcb\xbf\xc4\xdc\xcd\xcc\xdf\xcc\ +\xcb\xd6\xc4\xc5\xc4\xb6\xbe\xb2\xa9\xb7\xaa\xa4\xb4\xac\xa5\xb4\ +\xad\xa6\xb3\xae\xa7\xb4\xae\xa7\xb4\xae\xa7\xb4\xaf\xa8\xb5\xb0\ +\xa9\xb5\xb1\xaa\xb7\xb2\xab\xb8\xb4\xad\xba\xb6\xaf\xbc\xb7\xb0\ +\xbd\xb6\xaf\xbd\xb5\xae\xbb\xb4\xad\xb9\xb4\xac\xb9\xb4\xab\xb8\ +\xb5\xac\xb9\xb5\xac\xb9\xb6\xac\xb9\xb6\xac\xb9\xb6\xad\xba\xb7\ +\xad\xba\xb4\xaa\xba\xb5\xab\xbe\xba\xb4\xc6\xbe\xb8\xc7\xc0\xb8\ +\xc3\xbd\xb2\xbc\xb9\xaf\xba\xb8\xad\xb9\xb6\xab\xb7\xb5\xab\xb7\ +\xb6\xab\xb8\xb6\xac\xb8\xb8\xae\xb9\xb9\xb0\xba\xbb\xb0\xba\xba\ +\xb2\xbb\xbc\xb2\xbb\xbc\xb2\xbb\xbb\xb2\xb9\xb9\xb1\xb8\x00\x00\ +\x00\xe7\xe1\xe7\xe8\xe1\xe6\xe7\xe0\xe5\xe6\xdf\xe4\xe4\xdd\xe2\ +\xe3\xdb\xe2\xe3\xda\xe2\xe3\xdb\xe2\xe2\xdb\xe1\xe2\xda\xe0\xe0\ +\xd9\xdf\xe0\xd8\xde\xde\xd6\xdc\xdc\xd4\xdb\xdc\xd4\xdb\xdd\xd5\ +\xdb\xe0\xd8\xdd\xe3\xd9\xde\xe5\xdb\xdf\xe7\xdd\xe0\xe9\xde\xe1\ +\xeb\xe0\xe2\xeb\xdf\xe1\xec\xe0\xe2\xec\xe0\xe2\xec\xe0\xe2\xec\ +\xe0\xe2\xee\xe1\xe3\xee\xe2\xe3\xf0\xe4\xe4\xef\xe3\xe3\xef\xe4\ +\xe4\xef\xe1\xe1\xef\xe1\xe1\xee\xe1\xe0\xee\xe0\xe1\xed\xe0\xe0\ +\xec\xe0\xe1\xec\xe0\xe1\xeb\xe0\xe2\xea\xdf\xe0\xea\xde\xe0\xe9\ +\xdd\xdf\xe8\xdd\xe0\xe7\xdc\xde\xe6\xda\xdb\xe3\xd6\xd7\xdf\xd3\ +\xd3\xdd\xd0\xd1\xdc\xce\xcf\xda\xcc\xcc\xd9\xca\xc9\xd7\xc8\xc6\ +\xd8\xc6\xc4\xd7\xc5\xc3\xd8\xc5\xc0\xd8\xc4\xbf\xdb\xc7\xc1\xdf\ +\xc9\xc3\xe2\xcd\xc7\xe7\xd1\xcb\xea\xd7\xd0\xee\xdb\xd4\xf1\xe0\ +\xd9\xf2\xe4\xdd\xf4\xe7\xdf\xf5\xeb\xe2\xf7\xee\xe6\xf7\xf0\xe7\ +\xf7\xf1\xe8\xf8\xf0\xe7\xf7\xf0\xe7\xf6\xf0\xe7\xf6\xf0\xe7\xf7\ +\xf1\xe8\xf8\xf1\xe8\xf7\xef\xe6\xf7\xef\xe6\xf2\xe8\xe3\xe5\xdd\ +\xe0\xd8\xd2\xd7\xca\xc2\xca\xc7\xc0\xca\xcf\xc9\xd2\xd1\xcc\xd3\ +\xce\xc8\xd1\xd5\xcf\xd8\xd8\xd4\xda\xd6\xd1\xd7\xce\xc4\xca\xc9\ +\xbd\xc4\xcb\xbd\xc3\xcf\xc1\xc4\xd2\xc3\xc6\xd5\xc5\xc6\xdc\xca\ +\xc9\xe5\xd3\xcf\xeb\xd9\xd3\xe8\xd4\xce\xd7\xc3\xc2\xb9\xaa\xb5\ +\xa9\x9e\xb0\xaa\xa0\xb1\xab\xa2\xb2\xab\xa3\xb2\xab\xa4\xb2\xac\ +\xa5\xb4\xaa\xa4\xb3\xac\xa6\xb4\xad\xa8\xb6\x9d\x99\xae\x8a\x86\ +\xa7\xae\xa5\xb8\xda\xcb\xca\xe3\xd1\xcd\xdc\xc9\xc7\xcb\xba\xbe\ +\xb9\xac\xb9\xab\xa3\xb5\xa9\xa3\xb4\xab\xa4\xb3\xad\xa6\xb3\xad\ +\xa6\xb3\xad\xa6\xb3\xae\xa7\xb4\xae\xa7\xb4\xb0\xa8\xb6\xb1\xaa\ +\xb7\xb2\xab\xb8\xb5\xae\xbb\xb8\xb0\xbd\xb8\xb1\xbd\xb7\xaf\xbc\ +\xb5\xad\xba\xb5\xac\xb9\xb5\xac\xb9\xb5\xac\xb9\xb6\xad\xb9\xb7\ +\xad\xba\xb8\xae\xbb\xb8\xaf\xbc\xb9\xaf\xbc\xb8\xaf\xbc\xbe\xb5\ +\xc2\xc5\xbe\xcc\xcf\xc9\xd4\xd3\xcb\xd3\xce\xc5\xcd\xc3\xb9\xc2\ +\xbd\xb2\xbc\xba\xaf\xba\xb9\xad\xba\xb6\xac\xb8\xb6\xac\xb8\xb8\ +\xae\xb9\xb9\xaf\xb9\xba\xb1\xbb\xba\xb1\xbb\xbb\xb1\xbb\xbc\xb1\ +\xbb\xbb\xb2\xb9\xbb\xb1\xb8\xb9\xb1\xb8\x00\x00\x00\xe7\xe1\xe7\ +\xe8\xe1\xe6\xe8\xe1\xe6\xe6\xdf\xe4\xe4\xdd\xe2\xe4\xdd\xe2\xe3\ +\xdc\xe2\xe4\xdc\xe1\xe3\xdc\xe1\xe2\xda\xdf\xe1\xd9\xde\xe0\xd7\ +\xdd\xdf\xd6\xdc\xdd\xd4\xda\xdc\xd3\xd9\xdd\xd3\xd9\xe0\xd6\xdc\ +\xe2\xd9\xdc\xe5\xdb\xde\xe7\xdc\xdf\xe9\xde\xe0\xeb\xdf\xe1\xec\ +\xdf\xe1\xed\xdf\xe2\xec\xe0\xe2\xec\xdf\xe2\xed\xe1\xe2\xee\xe1\ +\xe2\xee\xe2\xe2\xef\xe3\xe3\xef\xe3\xe3\xef\xe3\xe1\xef\xe2\xe0\ +\xee\xe1\xdf\xee\xe1\xdf\xee\xe1\xe0\xee\xe0\xe1\xed\xe0\xe0\xec\ +\xe0\xe1\xed\xe0\xe2\xec\xdf\xe0\xeb\xdf\xe0\xea\xde\xdf\xe9\xdd\ +\xdf\xe8\xdb\xdc\xe5\xd9\xd9\xe3\xd7\xd7\xdf\xd3\xd3\xdf\xd1\xd2\ +\xdc\xce\xcf\xdb\xcd\xcd\xdb\xcb\xca\xd8\xc8\xc6\xd8\xc6\xc4\xd6\ +\xc4\xc2\xd7\xc3\xc0\xd7\xc4\xbf\xd9\xc5\xbf\xdd\xc8\xc2\xe1\xcb\ +\xc5\xe5\xd1\xca\xe9\xd6\xcf\xed\xda\xd3\xf1\xdf\xd8\xf2\xe3\xdc\ +\xf2\xe6\xde\xf4\xe9\xe1\xf6\xec\xe4\xf7\xef\xe6\xf7\xf0\xe7\xf8\ +\xf1\xe8\xf7\xf0\xe7\xf8\xf0\xe7\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xf0\ +\xe7\xf7\xf0\xe7\xf6\xee\xe5\xed\xe3\xe0\xd9\xd3\xd8\xd0\xc8\xcf\ +\xcd\xc6\xce\xd3\xcc\xd4\xd3\xce\xd4\xce\xc7\xd1\xd3\xce\xd7\xd8\ +\xd4\xda\xdb\xd5\xd9\xe2\xd5\xd5\xe2\xd1\xcf\xe5\xd2\xd0\xe8\xd6\ +\xd2\xec\xd9\xd4\xed\xdc\xd6\xee\xdf\xd7\xf0\xe0\xd9\xf2\xe4\xdb\ +\xf0\xe0\xd8\xe2\xcd\xc9\xc7\xb5\xba\xb3\xa6\xb3\xb0\xa5\xb2\xaf\ +\xa5\xb3\xad\xa3\xb3\xac\xa3\xb2\xab\xa3\xb2\xac\xa5\xb4\xad\xa6\ +\xb4\xad\xa6\xb3\xaf\xa8\xb5\x9f\x99\xb0\x91\x8c\xac\xb3\xaa\xbb\ +\xd5\xc8\xc9\xd4\xc5\xc6\xc4\xb5\xbc\xb3\xa9\xb7\xac\xa5\xb6\xa9\ +\xa3\xb6\xa7\xa1\xb3\xa8\xa3\xb3\xac\xa5\xb3\xad\xa6\xb3\xae\xa7\ +\xb4\xad\xa7\xb4\xae\xa7\xb4\xaf\xa8\xb5\xb1\xaa\xb7\xb3\xac\xb9\ +\xb5\xad\xba\xb8\xaf\xbc\xb8\xaf\xbb\xb7\xaf\xba\xb6\xad\xb9\xb6\ +\xae\xba\xb7\xad\xba\xb8\xae\xba\xb9\xaf\xbb\xba\xb0\xbc\xba\xb1\ +\xbd\xba\xb2\xbd\xba\xb1\xbd\xbb\xb1\xbe\xc5\xbd\xca\xcf\xc9\xd3\ +\xd8\xd3\xda\xda\xd3\xd9\xd1\xca\xd1\xc7\xbf\xc7\xbf\xb6\xc0\xbc\ +\xb1\xbd\xb9\xae\xba\xb8\xae\xba\xb8\xae\xba\xb9\xae\xba\xba\xb0\ +\xba\xbb\xb1\xbb\xbb\xb0\xba\xba\xb0\xba\xbb\xb0\xba\xba\xb0\xb9\ +\xb9\xaf\xb9\xb9\xb1\xb9\x00\x00\x00\xe8\xe1\xe6\xe9\xe2\xe7\xe8\ +\xe1\xe6\xe6\xdf\xe4\xe5\xde\xe3\xe4\xdd\xe2\xe4\xdd\xe2\xe4\xdd\ +\xe2\xe4\xdb\xe1\xe3\xda\xdf\xe2\xd8\xdd\xe1\xd7\xdb\xe0\xd5\xda\ +\xdd\xd3\xd9\xdd\xd2\xd8\xdd\xd2\xd8\xe0\xd4\xd9\xe2\xd8\xdb\xe5\ +\xda\xdc\xe6\xdb\xdd\xe9\xdd\xdf\xeb\xdd\xdf\xeb\xde\xe0\xeb\xdf\ +\xe0\xeb\xde\xe0\xeb\xdf\xdf\xeb\xdf\xdf\xed\xe1\xe1\xed\xe1\xe1\ +\xee\xe2\xe2\xef\xe3\xe2\xef\xe3\xe1\xef\xe2\xe0\xef\xe2\xe0\xef\ +\xe2\xe0\xef\xe2\xe0\xef\xe2\xdf\xee\xe2\xe1\xee\xe1\xe1\xed\xe1\ +\xe1\xeb\xdf\xdf\xeb\xdf\xdf\xea\xde\xde\xe9\xdd\xdd\xe7\xdb\xdb\ +\xe5\xd9\xd9\xe3\xd6\xd7\xe1\xd3\xd4\xe0\xd2\xd3\xde\xd0\xd1\xdc\ +\xcd\xce\xd9\xcb\xc8\xd9\xc7\xc6\xd6\xc4\xc3\xd5\xc3\xc2\xd5\xc3\ +\xc0\xd5\xc1\xbf\xd7\xc3\xbe\xdb\xc6\xc1\xdf\xca\xc4\xe4\xcf\xc8\ +\xe7\xd4\xcd\xed\xda\xd3\xf0\xdf\xd8\xf1\xe1\xda\xf2\xe5\xdd\xf3\ +\xe8\xe0\xf6\xeb\xe3\xf7\xee\xe5\xf8\xef\xe6\xf6\xef\xe6\xf7\xef\ +\xe6\xf7\xef\xe6\xf7\xf0\xe7\xf7\xf0\xe7\xf7\xef\xe6\xf7\xef\xe5\ +\xf5\xec\xe4\xe5\xdb\xdc\xd6\xcf\xd5\xd1\xca\xd1\xd2\xca\xd1\xd1\ +\xcb\xd1\xd0\xca\xd3\xd5\xd0\xd7\xd5\xd1\xd7\xd2\xcc\xd2\xe2\xd6\ +\xd6\xf1\xe3\xdb\xf2\xe5\xdd\xf3\xe6\xdd\xf3\xe8\xde\xf4\xe9\xdf\ +\xf5\xe9\xdf\xf3\xe8\xdd\xf4\xe8\xde\xf2\xe6\xdc\xef\xde\xd6\xdb\ +\xc6\xc3\xbb\xac\xb5\xb1\xa6\xb3\xaf\xa6\xb2\xaf\xa5\xb2\xad\xa5\ +\xb4\xac\xa4\xb3\xab\xa3\xb2\xac\xa5\xb4\xad\xa6\xb3\xae\xa7\xb4\ +\xb1\xaa\xb7\xa5\x9f\xb3\xa1\x99\xb3\xba\xb2\xc0\xce\xc4\xc8\xc3\ +\xb8\xc1\xb4\xab\xb9\xae\xa8\xb8\xac\xa7\xb7\xa9\xa3\xb6\xa8\xa2\ +\xb4\xa9\xa3\xb4\xac\xa5\xb5\xac\xa5\xb5\xad\xa6\xb3\xae\xa6\xb4\ +\xaf\xa8\xb5\xb1\xaa\xb7\xb2\xaa\xb9\xb5\xac\xba\xb6\xad\xbb\xb8\ +\xb0\xbb\xb8\xb0\xbb\xb7\xaf\xba\xb9\xb1\xbc\xb9\xb0\xbc\xba\xb1\ +\xbc\xbc\xb2\xbe\xbc\xb2\xbe\xbd\xb3\xbf\xbd\xb3\xbf\xbc\xb3\xbf\ +\xbd\xb4\xc0\xc4\xbb\xc7\xcd\xc5\xcf\xd4\xcd\xd5\xd9\xd2\xd7\xd7\ +\xd0\xd5\xd2\xca\xd1\xca\xc2\xcb\xc4\xbb\xc5\xc0\xb7\xc2\xbc\xb4\ +\xbf\xbb\xb1\xbd\xb9\xaf\xbb\xba\xaf\xbb\xbb\xaf\xba\xba\xae\xb9\ +\xba\xaf\xba\xb7\xae\xb9\xb8\xae\xb8\xb8\xad\xb7\xb8\xae\xb8\xb8\ +\xaf\xb9\x00\x00\x00\xe9\xe2\xe7\xe9\xe2\xe7\xe8\xe1\xe6\xe7\xe0\ +\xe5\xe5\xde\xe3\xe4\xde\xe3\xe5\xde\xe3\xe5\xdd\xe2\xe4\xdb\xe1\ +\xe3\xda\xdf\xe2\xd9\xdc\xe2\xd7\xda\xe1\xd6\xd9\xdf\xd4\xd7\xde\ +\xd4\xd7\xdf\xd4\xd7\xe1\xd5\xd8\xe2\xd7\xda\xe4\xd9\xdb\xe7\xda\ +\xdc\xe7\xda\xdc\xe9\xdd\xdf\xea\xdd\xdf\xea\xde\xde\xea\xde\xde\ +\xea\xde\xde\xeb\xdf\xe0\xed\xdf\xe0\xee\xe2\xe2\xf0\xe4\xe2\xf0\ +\xe4\xe2\xf0\xe4\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\xe1\xf0\xe3\ +\xe1\xf0\xe3\xe1\xef\xe2\xe0\xef\xe1\xe0\xee\xe0\xe0\xec\xdf\xe0\ +\xec\xde\xdf\xeb\xdd\xdd\xe9\xdc\xdc\xe8\xda\xdb\xe6\xd8\xd9\xe4\ +\xd7\xd7\xe2\xd4\xd4\xe0\xd2\xd2\xde\xd0\xce\xdc\xcd\xca\xd8\xc8\ +\xc7\xd6\xc6\xc4\xd4\xc4\xc2\xd3\xc2\xc1\xd4\xc2\xc1\xd5\xc3\xc0\ +\xd7\xc3\xbf\xd9\xc6\xc1\xde\xcb\xc5\xe3\xcf\xc9\xe7\xd5\xce\xec\ +\xd9\xd2\xee\xdc\xd5\xf1\xe0\xd9\xf2\xe3\xdc\xf3\xe7\xdf\xf5\xea\ +\xe2\xf6\xec\xe4\xf7\xee\xe5\xf8\xf0\xe6\xf9\xf0\xe7\xf8\xef\xe6\ +\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe5\xf8\xee\xe6\xf3\xe8\xe2\xe1\ +\xd9\xdb\xd5\xcf\xd5\xce\xc7\xcd\xcd\xc6\xce\xd1\xcb\xd2\xd5\xcf\ +\xd6\xd5\xd0\xd6\xd1\xc9\xd0\xd2\xca\xd0\xeb\xdd\xd8\xf4\xe9\xdf\ +\xf4\xea\xe0\xf4\xea\xe0\xf3\xea\xe0\xf4\xe9\xdf\xf4\xe8\xde\xf4\ +\xe8\xde\xf4\xe8\xde\xf2\xe6\xdc\xed\xdb\xd3\xd5\xc0\xbf\xb6\xa9\ +\xb4\xb1\xa6\xb3\xaf\xa5\xb3\xae\xa5\xb3\xae\xa4\xb4\xac\xa4\xb3\ +\xab\xa4\xb4\xad\xa6\xb3\xae\xa7\xb4\xaf\xa8\xb5\xb3\xac\xb9\xae\ +\xa7\xb8\xb2\xab\xbc\xc2\xbb\xc6\xc9\xc1\xc9\xc0\xb7\xc2\xb5\xad\ +\xbc\xb1\xab\xba\xad\xa7\xb9\xab\xa5\xb8\xaa\xa4\xb7\xaa\xa4\xb5\ +\xaa\xa3\xb4\xab\xa4\xb4\xad\xa5\xb5\xaf\xa7\xb6\xb2\xa8\xb8\xb4\ +\xab\xb9\xb6\xad\xba\xb8\xaf\xbb\xb8\xb0\xbc\xba\xb1\xbc\xb9\xb1\ +\xbc\xba\xb1\xbc\xbb\xb2\xbd\xbd\xb4\xbe\xbe\xb4\xbf\xbe\xb5\xc0\ +\xbe\xb4\xc0\xbf\xb5\xc1\xc2\xb7\xc2\xc6\xbc\xc6\xcb\xc2\xcc\xcf\ +\xc7\xcf\xd3\xcb\xd3\xd7\xcf\xd5\xd5\xce\xd3\xd1\xca\xcf\xce\xc6\ +\xcd\xca\xc3\xcb\xc8\xc1\xca\xc7\xbf\xc9\xc4\xbc\xc6\xbf\xb7\xc1\ +\xbc\xb2\xbd\xba\xaf\xbb\xb9\xad\xb9\xb8\xad\xb9\xb8\xad\xb9\xb7\ +\xad\xb9\xb6\xac\xb6\xb6\xac\xb7\xb5\xac\xb6\xb5\xac\xb7\x00\x00\ +\x00\xea\xe3\xe8\xea\xe2\xe7\xe9\xe1\xe6\xe8\xe0\xe5\xe7\xdf\xe3\ +\xe6\xdd\xe3\xe6\xdf\xe4\xe6\xdd\xe1\xe5\xdc\xe0\xe3\xda\xdd\xe3\ +\xd8\xdb\xe2\xd7\xda\xe1\xd6\xd9\xdf\xd4\xd7\xdf\xd3\xd6\xdf\xd4\ +\xd7\xe0\xd5\xd8\xe1\xd6\xd9\xe3\xd7\xda\xe6\xd9\xdb\xe6\xd9\xdb\ +\xe7\xdb\xdc\xe9\xdc\xdd\xeb\xdc\xde\xea\xdc\xdd\xea\xdd\xde\xeb\ +\xde\xdf\xed\xdf\xe0\xee\xe1\xe1\xef\xe3\xe3\xf0\xe4\xe3\xf1\xe5\ +\xe3\xf0\xe4\xe2\xf1\xe4\xe2\xef\xe3\xe1\xef\xe3\xe1\xef\xe3\xe1\ +\xf0\xe3\xe1\xef\xe3\xe1\xee\xe1\xdf\xed\xe0\xde\xec\xdf\xdd\xec\ +\xde\xdc\xea\xdc\xdb\xe8\xdb\xd9\xe6\xd8\xd7\xe4\xd7\xd5\xe2\xd4\ +\xd2\xe0\xd2\xd0\xdd\xce\xcc\xda\xcb\xc9\xd6\xc7\xc5\xd3\xc4\xc4\ +\xd2\xc2\xc3\xd1\xc1\xc2\xd2\xc2\xc1\xd5\xc3\xc2\xd7\xc4\xc2\xda\ +\xc7\xc3\xdf\xcc\xc7\xe3\xd0\xcb\xe7\xd4\xcf\xeb\xd7\xd2\xee\xdb\ +\xd5\xf0\xdf\xd8\xf2\xe2\xdb\xf4\xe7\xdf\xf5\xe9\xe1\xf5\xeb\xe2\ +\xf7\xed\xe4\xf8\xef\xe6\xf8\xef\xe6\xf8\xef\xe6\xf7\xee\xe6\xf7\ +\xee\xe5\xf7\xee\xe5\xf7\xee\xe5\xef\xe4\xe0\xdc\xd5\xd8\xcc\xc5\ +\xcb\xc9\xc2\xc9\xd1\xcb\xd2\xd4\xd0\xd6\xd5\xd0\xd5\xd1\xcb\xd2\ +\xcc\xc5\xcd\xda\xcf\xd1\xf1\xe3\xdb\xf4\xea\xe0\xf3\xe9\xdf\xf4\ +\xea\xe0\xf4\xea\xe0\xf4\xea\xe0\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\ +\xde\xf3\xe7\xdc\xe9\xd6\xcf\xcd\xba\xbd\xb3\xa8\xb5\xb0\xa6\xb3\ +\xaf\xa5\xb4\xaf\xa4\xb4\xae\xa5\xb4\xac\xa4\xb4\xac\xa5\xb4\xad\ +\xa6\xb3\xaf\xa7\xb4\xb1\xaa\xb6\xb3\xac\xb9\xb5\xae\xbb\xbc\xb5\ +\xc1\xc9\xc1\xc9\xca\xc2\xcb\xc2\xba\xc5\xb9\xb2\xbf\xb4\xae\xbd\ +\xb1\xab\xbb\xaf\xa9\xba\xad\xa7\xb8\xaa\xa4\xb6\xa9\xa1\xb5\xab\ +\xa2\xb5\xaf\xa6\xb7\xb3\xa9\xb9\xb5\xab\xba\xb7\xad\xbb\xb8\xaf\ +\xbb\xb9\xb1\xbc\xba\xb1\xbc\xba\xb1\xbc\xbb\xb3\xbd\xbd\xb5\xbe\ +\xbe\xb6\xc0\xbf\xb7\xc1\xc0\xb7\xc1\xbf\xb5\xc1\xc1\xb7\xc2\xcc\ +\xc0\xc8\xd3\xc7\xcc\xd6\xca\xcf\xd7\xcc\xd1\xd8\xce\xd3\xd9\xd0\ +\xd4\xd6\xcd\xd2\xd1\xc7\xcc\xcb\xc3\xc9\xc8\xc0\xc8\xc6\xbe\xc7\ +\xc4\xbc\xc6\xc4\xbc\xc5\xc3\xbb\xc5\xc1\xba\xc3\xbe\xb5\xbf\xba\ +\xb0\xbb\xb8\xad\xb9\xb8\xad\xb9\xb6\xac\xb8\xb5\xab\xb6\xb4\xaa\ +\xb6\xb3\xa9\xb5\xb3\xa9\xb5\xb2\xa9\xb4\x00\x00\x00\xea\xe3\xe8\ +\xea\xe2\xe6\xeb\xe2\xe5\xe9\xe0\xe3\xe8\xdf\xe3\xe7\xde\xe3\xe7\ +\xde\xe2\xe7\xde\xe1\xe6\xdc\xdf\xe6\xdb\xde\xe3\xd8\xdb\xe2\xd7\ +\xda\xe2\xd6\xd8\xe1\xd4\xd6\xdf\xd2\xd5\xde\xd3\xd6\xdf\xd5\xd8\ +\xe1\xd5\xd8\xe3\xd6\xd8\xe4\xd7\xd9\xe5\xd8\xda\xe6\xd8\xda\xe8\ +\xda\xdb\xea\xdc\xdd\xe9\xdb\xdc\xea\xdc\xdd\xec\xde\xdf\xec\xde\ +\xdf\xee\xe0\xe1\xee\xe2\xe1\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe5\xe3\ +\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe2\xf0\xe4\xe3\xf1\ +\xe4\xe1\xf0\xe4\xe0\xee\xe2\xdf\xed\xdf\xdd\xed\xde\xdc\xeb\xdc\ +\xda\xea\xdb\xd9\xe7\xd8\xd6\xe5\xd6\xd4\xe2\xd3\xd1\xdf\xd0\xce\ +\xdd\xce\xcc\xd9\xca\xc8\xd6\xc7\xc6\xd2\xc3\xc3\xd0\xc0\xc1\xcf\ +\xc0\xc1\xd0\xc1\xc2\xd4\xc4\xc4\xd6\xc6\xc5\xd9\xc8\xc6\xde\xcc\ +\xc9\xe4\xd1\xcd\xe7\xd4\xcf\xea\xd7\xd2\xee\xdb\xd6\xef\xde\xd8\ +\xf1\xe2\xdb\xf3\xe6\xde\xf4\xe8\xe0\xf5\xea\xe2\xf6\xeb\xe3\xf7\ +\xed\xe4\xf6\xee\xe4\xf7\xee\xe5\xf7\xee\xe5\xf6\xed\xe5\xf7\xee\ +\xe4\xf7\xed\xe4\xec\xe2\xde\xd6\xd0\xd4\xca\xc2\xc9\xcf\xc9\xcf\ +\xd3\xce\xd4\xd3\xce\xd4\xcf\xc8\xcf\xca\xc3\xcb\xd4\xca\xce\xeb\ +\xdc\xd7\xf5\xe9\xdf\xf5\xea\xe0\xf3\xea\xe0\xf5\xe9\xdf\xf5\xe9\ +\xdf\xf4\xe8\xde\xf5\xe9\xdf\xf4\xe8\xde\xf4\xe8\xde\xf3\xe5\xdc\ +\xe8\xd4\xcd\xc9\xb7\xbb\xb2\xa8\xb6\xb0\xa7\xb5\xaf\xa5\xb5\xae\ +\xa4\xb4\xae\xa5\xb4\xad\xa6\xb4\xac\xa5\xb4\xae\xa7\xb4\xb0\xa9\ +\xb5\xb3\xaa\xb7\xb3\xab\xb8\xb5\xaf\xbb\xc0\xb8\xc3\xca\xc3\xcb\ +\xcb\xc4\xcb\xc6\xbd\xc8\xc0\xb7\xc3\xc1\xb7\xc1\xc2\xb7\xc1\xb9\ +\xb0\xbe\xb2\xaa\xbb\xad\xa6\xb7\xad\xa3\xb7\xaf\xa7\xb9\xb6\xac\ +\xbb\xb8\xaf\xbc\xba\xb0\xbd\xba\xb0\xbd\xba\xb1\xbd\xbb\xb2\xbd\ +\xbc\xb3\xbd\xbd\xb4\xbe\xbe\xb5\xbf\xbf\xb7\xc1\xbf\xb7\xc1\xc0\ +\xb8\xc2\xbf\xb6\xc1\xc3\xb8\xc3\xd2\xc5\xca\xda\xcc\xcf\xde\xd0\ +\xd3\xdf\xd3\xd4\xe1\xd5\xd6\xde\xd2\xd4\xd8\xcd\xd0\xd2\xc7\xca\ +\xcb\xc1\xc6\xc7\xbc\xc4\xc3\xba\xc2\xc0\xb8\xc1\xbf\xb6\xc0\xbf\ +\xb6\xc0\xbd\xb4\xbe\xbc\xb3\xbd\xbb\xb3\xbd\xb9\xb0\xba\xb7\xad\ +\xb9\xb5\xab\xb7\xb4\xaa\xb6\xb2\xa8\xb5\xb2\xa8\xb5\xb0\xa6\xb3\ +\xae\xa5\xb3\xad\xa5\xb2\x00\x00\x00\xed\xe4\xe7\xed\xe4\xe7\xec\ +\xe3\xe6\xeb\xe1\xe4\xe9\xdf\xe2\xe9\xe0\xe3\xe9\xe0\xe3\xe8\xdf\ +\xe2\xe7\xde\xe0\xe6\xdb\xde\xe5\xda\xdc\xe4\xd8\xda\xe3\xd6\xd8\ +\xe1\xd4\xd6\xe0\xd3\xd6\xdf\xd2\xd6\xe0\xd2\xd6\xe1\xd4\xd6\xe2\ +\xd5\xd7\xe3\xd6\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xd9\xda\xe8\xda\ +\xdb\xe9\xdb\xdc\xea\xdc\xdd\xea\xdc\xdd\xec\xde\xdf\xed\xdf\xe0\ +\xee\xe2\xe0\xf0\xe3\xe1\xf0\xe4\xe2\xf1\xe4\xe3\xf1\xe5\xe3\xf1\ +\xe5\xe3\xf1\xe5\xe3\xf1\xe6\xe3\xf2\xe7\xe3\xf1\xe6\xe2\xf1\xe5\ +\xe1\xf0\xe3\xdf\xef\xe1\xde\xed\xde\xdb\xea\xdb\xd9\xe9\xda\xd8\ +\xe7\xd7\xd5\xe5\xd5\xd2\xe1\xd1\xd0\xde\xce\xcc\xda\xcb\xc9\xd8\ +\xc9\xc7\xd6\xc6\xc6\xd1\xc2\xc3\xce\xc0\xc3\xce\xc0\xc2\xcf\xc1\ +\xc2\xd2\xc4\xc6\xd6\xc8\xc7\xdb\xcb\xc9\xde\xce\xcc\xe3\xd2\xcf\ +\xe7\xd6\xd3\xea\xd8\xd3\xec\xda\xd5\xee\xde\xd8\xf1\xe2\xdb\xf2\ +\xe6\xdd\xf4\xe7\xdf\xf4\xe9\xe1\xf5\xea\xe2\xf7\xec\xe3\xf7\xec\ +\xe4\xf6\xed\xe4\xf6\xed\xe4\xf7\xed\xe3\xf7\xed\xe3\xf7\xec\xe3\ +\xe9\xde\xdb\xd0\xc8\xce\xcb\xc3\xca\xd0\xc9\xd0\xd2\xcc\xd3\xcf\ +\xc8\xcf\xce\xc6\xcd\xd8\xce\xd0\xeb\xdd\xd8\xf4\xe8\xde\xf5\xe9\ +\xdf\xf5\xe9\xdf\xf6\xe9\xdf\xf4\xe9\xdf\xf4\xe9\xdf\xf5\xe9\xdf\ +\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\xde\xf3\xe6\xdc\xe8\xd4\xcd\xc8\ +\xb5\xba\xb1\xa5\xb4\xb0\xa6\xb6\xb0\xa6\xb6\xb0\xa6\xb6\xaf\xa5\ +\xb5\xad\xa6\xb5\xae\xa7\xb5\xb0\xa9\xb6\xb2\xaa\xb7\xb3\xaa\xb7\ +\xb2\xaa\xb7\xb4\xad\xb9\xc0\xb8\xc2\xca\xc2\xcb\xcc\xc6\xcd\xc8\ +\xc0\xc9\xc9\xbe\xc6\xd1\xc3\xc7\xd4\xc5\xc6\xc8\xbc\xc2\xb7\xaf\ +\xbd\xb1\xa9\xba\xb4\xab\xbb\xb7\xae\xbd\xbc\xb3\xbf\xbe\xb4\xbf\ +\xbd\xb4\xbf\xbd\xb3\xbf\xbd\xb3\xbf\xbe\xb5\xbf\xbf\xb6\xc0\xbf\ +\xb6\xc0\xc0\xb8\xc2\xc0\xb8\xc2\xbf\xb7\xc2\xbf\xb7\xc2\xc6\xbc\ +\xc5\xd6\xc9\xcc\xdf\xd1\xd2\xe4\xd6\xd7\xe7\xd9\xda\xe5\xd7\xd8\ +\xe1\xd4\xd5\xdc\xcf\xd1\xd5\xc8\xca\xcc\xc1\xc5\xc6\xbb\xc2\xc2\ +\xb8\xbf\xbd\xb4\xbd\xbb\xb2\xbb\xbb\xb1\xbb\xba\xb0\xba\xba\xaf\ +\xb9\xb9\xae\xb8\xb9\xae\xb8\xb9\xae\xb8\xb6\xac\xb7\xb4\xaa\xb6\ +\xb3\xa9\xb6\xb1\xa8\xb5\xae\xa5\xb3\xad\xa4\xb4\xab\xa2\xb2\xa8\ +\xa1\xb0\x00\x00\x00\xee\xe5\xe8\xed\xe4\xe7\xec\xe2\xe6\xed\xe2\ +\xe5\xeb\xe1\xe3\xea\xe0\xe3\xea\xe0\xe3\xe9\xdf\xe2\xe9\xde\xe0\ +\xe7\xdc\xde\xe7\xda\xdc\xe6\xd9\xdb\xe3\xd6\xd8\xe1\xd4\xd6\xe0\ +\xd3\xd5\xdf\xd2\xd4\xdf\xd1\xd4\xe0\xd3\xd5\xe0\xd3\xd5\xe2\xd5\ +\xd7\xe4\xd6\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe6\xd8\xd9\xe7\xd9\xda\ +\xe9\xdb\xdc\xea\xdc\xdd\xeb\xdd\xde\xec\xde\xdf\xed\xe1\xdf\xef\ +\xe3\xe1\xf0\xe4\xe2\xf0\xe4\xe2\xf1\xe5\xe3\xf1\xe5\xe3\xf1\xe6\ +\xe3\xf1\xe6\xe2\xf2\xe7\xe3\xf2\xe7\xe3\xf1\xe6\xe2\xf1\xe5\xe1\ +\xef\xe2\xde\xed\xdd\xda\xec\xdb\xd8\xea\xd9\xd6\xe8\xd7\xd4\xe5\ +\xd4\xd2\xe2\xd1\xcf\xdf\xcd\xcc\xda\xcb\xc9\xd8\xc9\xc7\xd5\xc6\ +\xc7\xd2\xc3\xc5\xce\xc1\xc3\xcd\xbf\xc2\xcd\xc1\xc3\xd1\xc4\xc6\ +\xd6\xc9\xca\xda\xcc\xcd\xdf\xd0\xce\xe4\xd4\xd1\xe7\xd7\xd4\xea\ +\xd9\xd6\xec\xdc\xd8\xee\xde\xd9\xf0\xe2\xdb\xf3\xe5\xde\xf3\xe7\ +\xe0\xf4\xe9\xe1\xf5\xea\xe2\xf6\xec\xe4\xf7\xec\xe3\xf7\xec\xe3\ +\xf7\xec\xe3\xf6\xec\xe2\xf6\xec\xe2\xf6\xec\xe2\xf2\xe6\xdf\xe4\ +\xd8\xd7\xd9\xd0\xd3\xd8\xd0\xd3\xd9\xd0\xd3\xda\xd0\xd3\xe3\xd6\ +\xd5\xf0\xe2\xdc\xf4\xe9\xdf\xf5\xe9\xdf\xf5\xe9\xdf\xf5\xe9\xdf\ +\xf5\xe9\xdf\xf4\xe9\xdf\xf5\xe9\xdf\xf5\xe8\xde\xf5\xe9\xdf\xf4\ +\xe8\xde\xf4\xe8\xde\xf4\xe6\xdc\xea\xd6\xcf\xca\xb7\xbb\xaf\xa2\ +\xb3\xae\xa3\xb4\xb0\xa6\xb5\xb1\xa7\xb7\xb0\xa7\xb7\xae\xa7\xb6\ +\xb0\xa8\xb5\xb3\xaa\xb7\xb3\xaa\xb7\xb2\xaa\xb7\xb1\xa9\xb7\xb2\ +\xab\xb8\xbe\xb6\xc1\xc9\xc2\xca\xcc\xc5\xcc\xca\xc2\xcb\xcb\xc0\ +\xc7\xd4\xc6\xc9\xd1\xc2\xc5\xc9\xbc\xc2\xb9\xaf\xbc\xb6\xad\xbc\ +\xbb\xb2\xbf\xbf\xb6\xc1\xc1\xb7\xc2\xc1\xb8\xc2\xbf\xb7\xc0\xbf\ +\xb6\xc0\xbf\xb7\xc0\xc0\xb7\xc1\xc1\xb9\xc1\xc2\xb9\xc3\xc1\xb8\ +\xc2\xbf\xb8\xc2\xbf\xb6\xc1\xca\xbf\xc6\xda\xcc\xce\xe3\xd5\xd4\ +\xe9\xdb\xd9\xeb\xde\xdb\xe9\xda\xd9\xe5\xd6\xd5\xdf\xd1\xd1\xd9\ +\xcb\xcd\xd1\xc4\xc6\xc9\xbc\xc1\xc1\xb6\xbe\xbd\xb2\xbb\xba\xb0\ +\xba\xb9\xaf\xb9\xba\xaf\xb9\xb9\xae\xb8\xba\xaf\xb9\xb9\xae\xb8\ +\xb9\xae\xb8\xb8\xae\xb8\xb6\xad\xb8\xb4\xaa\xb6\xb2\xa9\xb5\xb0\ +\xa7\xb4\xae\xa5\xb3\xaa\xa4\xb3\xa7\xa0\xb1\xa3\x9f\xaf\x00\x00\ +\x00\xee\xe6\xe8\xed\xe5\xe7\xee\xe4\xe6\xed\xe2\xe5\xec\xe1\xe3\ +\xeb\xe0\xe3\xea\xe0\xe2\xea\xdf\xe1\xe9\xde\xe0\xe8\xdc\xde\xe7\ +\xda\xdc\xe6\xd9\xdb\xe4\xd7\xd9\xe2\xd5\xd7\xe0\xd3\xd5\xdf\xd2\ +\xd4\xde\xd1\xd3\xdf\xd2\xd4\xe0\xd3\xd5\xe1\xd3\xd5\xe2\xd4\xd5\ +\xe4\xd6\xd7\xe5\xd7\xd8\xe5\xd7\xd8\xe6\xd8\xd9\xe7\xd9\xda\xe9\ +\xdb\xdc\xea\xdc\xdd\xec\xde\xde\xec\xdf\xde\xef\xe2\xe0\xef\xe3\ +\xe1\xf0\xe4\xe2\xf1\xe4\xe3\xf1\xe5\xe3\xf1\xe6\xe2\xf2\xe7\xe3\ +\xf3\xe8\xe4\xf2\xe7\xe4\xf2\xe7\xe2\xf1\xe6\xe0\xf0\xe4\xde\xee\ +\xde\xdb\xeb\xda\xd7\xea\xd9\xd6\xe8\xd7\xd4\xe5\xd4\xd1\xe2\xd1\ +\xce\xdf\xcd\xcc\xdb\xcb\xc9\xd7\xc8\xc7\xd5\xc6\xc7\xd3\xc5\xc6\ +\xd0\xc3\xc5\xcd\xc1\xc4\xcd\xc2\xc5\xd1\xc5\xc8\xd6\xca\xcb\xda\ +\xce\xcf\xde\xd1\xd2\xe3\xd5\xd4\xe7\xd8\xd6\xe9\xda\xd7\xec\xdd\ +\xda\xee\xdf\xdc\xf0\xe3\xdf\xf2\xe5\xdf\xf3\xe7\xe0\xf4\xe9\xe1\ +\xf5\xea\xe2\xf6\xeb\xe3\xf6\xeb\xe3\xf6\xec\xe2\xf6\xec\xe2\xf6\ +\xec\xe1\xf6\xec\xe2\xf5\xeb\xe1\xf5\xeb\xe1\xf4\xe9\xe0\xf2\xe6\ +\xde\xf1\xe4\xdd\xf1\xe5\xdd\xf2\xe6\xde\xf4\xe9\xdf\xf5\xe9\xe0\ +\xf5\xe9\xdf\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\xde\xf4\xe8\xde\xf5\ +\xe8\xde\xf5\xe8\xde\xf5\xe9\xdf\xf5\xe9\xdf\xf4\xe8\xde\xf3\xe8\ +\xdd\xf3\xe6\xdd\xed\xdb\xd3\xd2\xbe\xbf\xae\xa1\xb1\xa9\x9e\xb2\ +\xac\xa1\xb3\xae\xa4\xb5\xb1\xa7\xb7\xb1\xa8\xb6\xb2\xa9\xb6\xb3\ +\xab\xb8\xb2\xab\xb8\xb0\xaa\xb8\xb0\xaa\xb8\xb2\xaa\xb8\xbc\xb4\ +\xbf\xc7\xbf\xc9\xcc\xc4\xcc\xcb\xc3\xcd\xc9\xc0\xc9\xc9\xbf\xc7\ +\xc7\xbb\xc3\xbe\xb3\xbe\xb8\xaf\xbb\xbb\xb2\xbf\xc1\xb9\xc3\xc3\ +\xbb\xc4\xc4\xbc\xc3\xc2\xb9\xc3\xc1\xb8\xc2\xc0\xb7\xc1\xc2\xba\ +\xc1\xc3\xbb\xc2\xc2\xba\xc3\xc2\xb9\xc3\xc0\xb8\xc2\xc0\xb7\xc1\ +\xcd\xc1\xc7\xde\xcf\xd0\xe7\xd7\xd6\xec\xdf\xdb\xee\xe1\xdd\xec\ +\xdd\xda\xe9\xd9\xd7\xe4\xd4\xd2\xdf\xcf\xcf\xd8\xc8\xca\xd0\xc2\ +\xc4\xc7\xb9\xbf\xbe\xb3\xbb\xbb\xb0\xb9\xb9\xae\xb8\xba\xae\xb8\ +\xb9\xaf\xb9\xb9\xae\xb8\xb8\xae\xb8\xb8\xae\xb8\xb7\xae\xb7\xb7\ +\xad\xb8\xb6\xac\xb7\xb4\xaa\xb6\xb2\xaa\xb5\xb0\xa7\xb4\xac\xa5\ +\xb3\xa8\xa2\xb1\xa4\x9f\xb0\x9f\x9c\xae\x00\x00\x00\ +\x00\x02\xa0\xde\ +\x42\ +\x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ +\x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ +\x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x35\x56\x65\x69\x8f\xa2\x7c\x9f\xb9\x77\x96\ +\xb7\x64\x7f\xa3\x36\x4c\x6b\x0b\x1c\x34\x14\x27\x3e\x41\x60\x7a\ +\x6a\x96\xb2\x75\x9d\xbe\x67\x89\xaa\x35\x4b\x68\x12\x20\x39\x22\ +\x33\x4c\x56\x70\x8c\x67\x84\xa3\x59\x76\x94\x39\x50\x6c\x1f\x33\ +\x47\x12\x28\x38\x32\x4d\x61\x5a\x7e\x97\x7c\xa4\xbd\x85\xae\xc7\ +\x8b\xb3\xcc\x8c\xb2\xcf\x87\xaf\xcf\x7f\xae\xcf\x77\xa8\xcc\x73\ +\xa1\xc4\x69\x98\xb8\x5a\x84\xa1\x44\x61\x7a\x3b\x51\x65\x54\x67\ +\x79\x80\x96\xad\x87\xa0\xbc\x70\x8a\xa4\x42\x55\x6e\x0d\x1e\x33\ +\x1e\x35\x49\x62\x82\x98\x83\xa3\xc0\x7c\x98\xb9\x5b\x78\x96\x37\ +\x55\x6d\x4e\x6b\x80\x70\x90\xa6\x71\x90\xab\x70\x8e\xae\x7d\x9f\ +\xc3\x82\xaa\xcd\x80\xa6\xc9\x7c\xa3\xc0\x76\xa2\xba\x7e\xab\xc3\ +\x83\xac\xc6\x86\xad\xca\x80\xa6\xbe\x77\x9e\xb4\x7c\x9e\xb6\x86\ +\xa1\xc2\x88\xa4\xc8\x8c\xa9\xcd\x8c\xab\xce\x89\xad\xcb\x8f\xb0\ +\xd0\x94\xb1\xd1\x8e\xad\xcf\x8c\xab\xce\x81\x9c\xc2\x70\x89\xab\ +\x65\x7f\x9c\x6a\x86\x9e\x7d\x9a\xb1\x8c\xaa\xc6\x8b\xac\xcf\x8a\ +\xaf\xd3\x88\xaf\xd3\x84\xb0\xd0\x7c\xa3\xc2\x63\x82\x9f\x2b\x45\ +\x60\x34\x4f\x6a\x7e\x9a\xb7\x8d\xae\xd0\x89\xb2\xd4\x89\xaf\xce\ +\x91\xad\xcf\x95\xab\xcf\x97\xac\xcf\x91\xaa\xcc\x90\xa9\xcb\x8d\ +\xa4\xc7\x88\xa2\xc3\x83\xa4\xc1\x86\xa7\xc5\x87\xa5\xc8\x86\xa5\ +\xc9\x88\xa5\xc7\x8d\xa7\xc4\x8f\xa7\xc2\x89\xa7\xc1\x83\xa4\xc3\ +\x84\xa0\xc5\x8b\xa1\xc9\x8a\xa1\xc7\x8c\xa1\xcb\x81\x9f\xc7\x7b\ +\x9e\xc3\x85\xa3\xc9\x8c\xa4\xcc\x90\xa5\xcf\x8e\xa4\xd1\x8b\xa7\ +\xd2\x87\xa7\xcd\x89\xa8\xcb\x8c\xaa\xcc\x8c\xad\xcf\x8b\xab\xcf\ +\x8c\xa8\xcc\x87\xa4\xc7\x84\xa5\xc8\x83\xa7\xc8\x80\xa8\xc6\x85\ +\xab\xc7\x87\xab\xc8\x88\xa8\xca\x8a\xa4\xcc\x88\xa4\xcc\x80\xa1\ +\xc8\x85\xa5\xcc\x8d\xa7\xcc\x8c\xa4\xc8\x89\xa3\xc1\x87\xa1\xbe\ +\x87\x9f\xc3\x88\xa0\xc5\x88\x9e\xc7\x87\x9c\xc3\x85\x9c\xc0\x87\ +\xa0\xc3\x8d\xa3\xbc\x8d\x9a\xa4\x65\x70\x70\x34\x44\x45\x1d\x28\ +\x29\x21\x2f\x30\x1b\x24\x2a\x1b\x2c\x33\x26\x42\x4d\x11\x21\x2a\ +\x14\x1a\x1d\x10\x16\x19\x13\x1b\x21\x21\x36\x42\x1c\x33\x44\x2d\ +\x49\x61\x29\x45\x52\x1e\x2c\x37\x1c\x27\x28\x16\x23\x1f\x00\x00\ +\x00\x22\x40\x4e\x49\x6a\x7b\x72\x91\xaa\x7c\x9b\xbc\x74\x91\xb3\ +\x5b\x75\x94\x3f\x54\x73\x26\x3c\x5b\x46\x66\x86\x69\x90\xb1\x77\ +\xa1\xc1\x6e\x94\xb4\x4c\x68\x85\x18\x2a\x42\x12\x24\x39\x3e\x58\ +\x6e\x69\x86\xa1\x60\x7d\x99\x46\x60\x77\x16\x2d\x3e\x0a\x21\x31\ +\x35\x50\x63\x69\x8b\xa4\x7f\xa3\xbe\x84\xac\xc5\x87\xb0\xc9\x85\ +\xb0\xcc\x82\xaf\xcd\x7c\xab\xcb\x74\xa4\xc6\x6b\x9a\xbd\x5f\x8d\ +\xab\x45\x6d\x87\x2d\x49\x64\x30\x49\x61\x3f\x55\x6c\x4d\x61\x7b\ +\x6a\x81\x9c\x5e\x78\x90\x32\x45\x5e\x0a\x17\x30\x1f\x32\x48\x4e\ +\x69\x7e\x6e\x8a\xa5\x6d\x85\xa3\x50\x67\x83\x26\x3d\x55\x2c\x43\ +\x5a\x44\x5f\x75\x46\x62\x7b\x41\x5c\x79\x54\x73\x92\x75\x9b\xbc\ +\x76\x9d\xbe\x68\x8c\xa9\x57\x7e\x93\x5c\x85\x98\x6d\x97\xab\x71\ +\x9b\xaf\x66\x8d\xa0\x58\x79\x8c\x56\x71\x8a\x5d\x77\x97\x6d\x8a\ +\xab\x7f\x9e\xbe\x85\xa6\xc8\x86\xaa\xca\x8c\xae\xd0\x8f\xaf\xd3\ +\x8b\xad\xd1\x87\xa8\xcd\x78\x94\xb6\x54\x6c\x88\x37\x50\x6a\x3c\ +\x57\x73\x50\x6b\x88\x66\x83\x9f\x7f\xa1\xbf\x7f\xa8\xc7\x81\xad\ +\xcb\x83\xb0\xcd\x7d\xa5\xc3\x6a\x88\xa5\x3a\x50\x6e\x2c\x45\x61\ +\x75\x92\xad\x89\xaa\xca\x84\xac\xcb\x87\xad\xcc\x90\xaf\xd0\x92\ +\xac\xd0\x90\xab\xce\x8b\xab\xcb\x89\xa7\xc9\x88\xa4\xc6\x84\xa2\ +\xc4\x80\xa3\xc0\x81\xa4\xc1\x82\xa3\xc5\x85\xa5\xc9\x88\xa7\xc9\ +\x8b\xa8\xc4\x89\xaa\xc0\x84\xa8\xc0\x7f\xa5\xc2\x84\xa3\xc7\x8b\ +\xa5\xcb\x8f\xa7\xcd\x8c\xa7\xcc\x81\xa3\xc7\x7e\xa4\xc8\x84\xa6\ +\xcb\x8b\xa6\xcd\x8b\xa5\xce\x88\xa5\xcc\x83\xa7\xca\x83\xa6\xc8\ +\x86\xa7\xc9\x87\xa9\xc9\x85\xab\xca\x83\xa7\xcb\x85\xa5\xcb\x82\ +\xa3\xc7\x81\xa4\xc6\x81\xa5\xc7\x7d\xa5\xc5\x7d\xa9\xc5\x83\xaa\ +\xc8\x87\xa6\xca\x8c\xa4\xce\x88\xa3\xcb\x81\xa1\xc8\x84\xa5\xcc\ +\x89\xa5\xca\x88\xa2\xc5\x86\xa2\xbf\x84\xa1\xbd\x84\xa0\xc0\x86\ +\xa1\xc3\x85\x9f\xc5\x83\x9d\xc3\x9d\xb0\xca\x6e\x7b\x7e\x6c\x77\ +\x7a\x3a\x47\x4a\x24\x2e\x32\x1e\x26\x2a\x18\x24\x29\x15\x1f\x26\ +\x20\x34\x39\x16\x2f\x38\x0f\x1f\x29\x1a\x29\x31\x11\x1c\x25\x14\ +\x29\x36\x1d\x2f\x41\x1e\x2f\x43\x35\x4c\x64\x28\x44\x5a\x19\x25\ +\x2c\x19\x29\x26\x17\x16\x17\x20\x20\x1e\x00\x00\x00\x20\x35\x44\ +\x37\x51\x62\x53\x6d\x85\x74\x92\xb0\x7a\x9a\xbc\x73\x91\xb1\x67\ +\x86\xa8\x5c\x7b\xa0\x61\x81\xa9\x71\x97\xbc\x7a\xa3\xc6\x75\x9e\ +\xbc\x63\x83\xa1\x3b\x53\x6c\x13\x28\x3b\x2b\x42\x58\x5e\x7b\x96\ +\x6b\x89\xa4\x4c\x65\x7c\x17\x2e\x3d\x0f\x25\x32\x30\x48\x5c\x58\ +\x76\x8d\x7b\x9c\xb6\x80\xa6\xbf\x82\xad\xc8\x7f\xae\xcc\x79\xa8\ +\xc8\x79\xa7\xc7\x6e\x9e\xc0\x5f\x8c\xaf\x45\x6c\x8c\x2d\x4d\x67\ +\x1e\x37\x51\x33\x4e\x69\x4e\x67\x83\x48\x5a\x79\x41\x55\x70\x38\ +\x4e\x63\x1f\x31\x45\x12\x20\x38\x34\x45\x5e\x4b\x61\x7b\x47\x5e\ +\x79\x47\x5b\x78\x38\x4a\x67\x20\x30\x4d\x24\x35\x52\x2c\x42\x5d\ +\x26\x3d\x58\x1a\x31\x4d\x26\x40\x5d\x43\x62\x83\x58\x78\x98\x4a\ +\x66\x81\x30\x49\x5c\x39\x57\x67\x43\x68\x79\x43\x6b\x79\x3a\x5b\ +\x69\x29\x43\x53\x35\x4b\x61\x45\x5b\x79\x41\x5a\x78\x4a\x65\x81\ +\x6e\x8e\xaa\x83\xa9\xc7\x88\xae\xce\x8b\xaf\xd1\x8a\xac\xcf\x85\ +\xa7\xc8\x69\x87\xa0\x35\x4c\x5f\x1b\x31\x44\x38\x50\x6c\x45\x5d\ +\x7d\x3e\x56\x72\x53\x71\x8b\x74\x9b\xb5\x80\xac\xc7\x82\xad\xc8\ +\x81\xa7\xc4\x74\x8f\xad\x47\x5a\x79\x23\x38\x54\x68\x80\x9c\x8b\ +\xa9\xc8\x88\xae\xcc\x8a\xb1\xcd\x8d\xb2\xcf\x89\xaa\xcb\x85\xa7\ +\xca\x7e\xa6\xc6\x80\xa5\xc8\x81\xa1\xc6\x7d\x9e\xc0\x7b\xa0\xbd\ +\x7d\x9f\xbf\x83\xa3\xc6\x87\xa7\xcb\x8b\xa9\xcb\x8b\xac\xc7\x86\ +\xab\xc3\x80\xa9\xc0\x7d\xa5\xc1\x84\xa7\xc8\x8e\xab\xce\x90\xac\ +\xcf\x8c\xaa\xce\x85\xa7\xcb\x83\xa8\xcc\x85\xa8\xcc\x88\xa8\xce\ +\x86\xa6\xcd\x81\xa5\xca\x80\xa7\xc6\x80\xa7\xc2\x88\xaa\xc7\x86\ +\xaa\xc9\x80\xa9\xc8\x80\xa8\xcc\x84\xa5\xcd\x82\xa4\xcb\x83\xa4\ +\xca\x83\xa3\xc9\x81\xa4\xc7\x7e\xa5\xc6\x80\xa6\xc8\x85\xa2\xc8\ +\x89\xa2\xc9\x87\xa3\xc9\x81\xa1\xc7\x80\xa1\xc8\x82\xa2\xc7\x84\ +\xa2\xc3\x82\xa0\xbe\x81\xa1\xbc\x81\xa1\xbd\x80\x9e\xbe\x81\x9f\ +\xc3\x85\xa4\xc8\x79\x89\x90\x20\x23\x2c\x24\x34\x3a\x28\x31\x33\ +\x1d\x26\x29\x18\x21\x21\x12\x17\x19\x15\x1c\x23\x0e\x1d\x21\x16\ +\x27\x28\x21\x36\x43\x2b\x45\x5a\x1f\x3a\x4d\x1c\x33\x48\x29\x3d\ +\x4e\x3b\x57\x65\x1f\x36\x3c\x17\x21\x20\x22\x29\x26\x1c\x26\x25\ +\x17\x16\x14\x20\x20\x1a\x00\x00\x00\x1b\x28\x37\x2e\x3f\x51\x47\ +\x5d\x74\x6e\x88\xa6\x7f\x9e\xbf\x7e\xa0\xc2\x7c\x9e\xc3\x79\x9d\ +\xc4\x78\x9e\xc5\x79\xa1\xc6\x7e\xa4\xc7\x7f\xa2\xc3\x77\x96\xb7\ +\x61\x7d\x9a\x46\x5e\x79\x44\x5b\x78\x62\x7b\x9f\x74\x8d\xaf\x54\ +\x68\x7f\x1a\x2b\x39\x16\x2a\x36\x38\x4e\x5f\x41\x5a\x71\x5f\x7f\ +\x96\x7a\xa0\xb8\x80\xa8\xc6\x7e\xaa\xcb\x75\xa3\xc4\x73\x9f\xc3\ +\x6c\x98\xbf\x5e\x8a\xaf\x47\x6c\x8e\x28\x45\x62\x1f\x33\x4f\x3c\ +\x55\x71\x63\x7f\x9e\x68\x7f\xa1\x4c\x60\x7e\x23\x36\x50\x15\x28\ +\x3f\x2e\x42\x58\x52\x6b\x85\x61\x7c\x9a\x55\x70\x8e\x48\x61\x80\ +\x3b\x52\x73\x32\x48\x68\x3e\x55\x76\x4c\x65\x86\x4b\x64\x85\x43\ +\x58\x7a\x40\x54\x78\x40\x55\x7c\x34\x4a\x6d\x24\x36\x52\x19\x27\ +\x3c\x30\x41\x55\x4a\x65\x79\x45\x63\x76\x22\x3b\x4e\x16\x29\x3c\ +\x33\x47\x5a\x59\x6f\x88\x4b\x5e\x7a\x2f\x41\x5b\x3b\x55\x6d\x5e\ +\x7f\x9a\x7a\x9f\xba\x85\xaa\xc5\x83\xa8\xc3\x7a\x9d\xb6\x52\x6e\ +\x81\x1c\x32\x41\x0e\x21\x30\x2b\x40\x54\x3a\x4e\x67\x2a\x3a\x53\ +\x3c\x55\x6d\x6c\x8d\xaa\x82\xa9\xc7\x87\xad\xcc\x85\xa8\xc8\x7d\ +\x96\xb7\x56\x65\x85\x22\x2f\x4a\x52\x62\x80\x88\xa1\xc1\x8b\xad\ +\xcb\x88\xaf\xca\x87\xaf\xca\x83\xa6\xc2\x7a\x9b\xbb\x76\x9a\xba\ +\x76\x9b\xbb\x77\x9b\xbc\x6e\x8f\xb0\x6b\x8c\xaa\x76\x96\xb4\x84\ +\xa1\xc2\x88\xa5\xc7\x89\xa9\xc9\x86\xaa\xc6\x81\xa7\xc2\x7e\xa4\ +\xc0\x7e\xa2\xc1\x83\xa5\xc6\x8a\xa8\xca\x8b\xaa\xcc\x88\xaa\xc9\ +\x84\xa7\xc8\x85\xa8\xc9\x84\xa8\xc9\x80\xa5\xc8\x82\xa3\xca\x83\ +\xa3\xc8\x84\xa6\xc5\x85\xa8\xc2\x8c\xab\xca\x88\xa9\xcc\x84\xa9\ +\xcb\x82\xa6\xcc\x85\xa3\xcd\x83\xa1\xcb\x86\xa3\xca\x89\xa4\xcb\ +\x87\xa3\xc8\x83\x9f\xc6\x7e\x9c\xc3\x7d\x9c\xc0\x80\x9c\xbe\x83\ +\xa0\xc2\x83\xa2\xc7\x7f\xa0\xc7\x81\xa1\xc6\x81\xa0\xc3\x81\xa1\ +\xc3\x7f\xa0\xbe\x7d\x9e\xbe\x7f\x9e\xc1\x7d\x9e\xc1\x93\xa1\xb6\ +\x31\x30\x35\x1a\x22\x21\x1e\x2b\x2d\x19\x24\x25\x0f\x16\x15\x0e\ +\x19\x12\x15\x13\x14\x04\x07\x03\x0e\x12\x18\x22\x32\x41\x23\x3d\ +\x51\x29\x3e\x5b\x38\x50\x68\x4d\x6b\x84\x16\x20\x29\x1b\x27\x27\ +\x14\x1e\x1a\x17\x1b\x13\x23\x23\x1f\x20\x26\x24\x1b\x1a\x15\x1c\ +\x21\x1d\x00\x00\x00\x13\x1e\x30\x23\x31\x46\x4e\x63\x7c\x79\x93\ +\xb1\x87\xa7\xc7\x86\xa8\xcc\x86\xa6\xcf\x84\xa8\xd1\x80\xa8\xce\ +\x80\xa7\xcd\x82\xa8\xcb\x85\xa9\xcb\x86\xa6\xc9\x7a\x9a\xbb\x6d\ +\x8a\xac\x6c\x87\xac\x7c\x95\xbd\x7f\x95\xba\x5c\x6c\x84\x1f\x2e\ +\x3b\x1a\x2a\x36\x3c\x52\x64\x47\x5e\x78\x43\x5e\x78\x6e\x8d\xa9\ +\x7c\xa4\xc3\x7c\xa8\xca\x74\xa1\xc6\x73\x9b\xc5\x72\x9b\xc6\x6b\ +\x95\xbc\x60\x89\xaa\x55\x77\x97\x46\x61\x7f\x4a\x66\x85\x67\x88\ +\xa9\x76\x95\xb7\x66\x81\x9f\x42\x5b\x7a\x31\x4a\x66\x4f\x6a\x86\ +\x6c\x8d\xaa\x73\x96\xb5\x6b\x90\xb1\x61\x86\xa8\x5a\x7e\xa2\x54\ +\x76\x99\x5c\x7f\xa0\x6a\x89\xab\x70\x8c\xae\x6c\x85\xaa\x6a\x81\ +\xaa\x66\x79\xa6\x58\x6c\x94\x38\x4b\x6c\x1f\x30\x4a\x2c\x3f\x59\ +\x4f\x69\x84\x5f\x7b\x98\x4e\x69\x85\x2a\x41\x5c\x1e\x36\x4c\x36\ +\x4e\x65\x37\x4a\x62\x1c\x2c\x44\x29\x3e\x57\x3a\x55\x70\x47\x66\ +\x7f\x5e\x7f\x95\x6a\x8a\xa0\x58\x76\x8b\x31\x4a\x5d\x15\x26\x38\ +\x09\x17\x26\x0f\x1f\x2c\x22\x31\x42\x2a\x3b\x4e\x4f\x66\x82\x75\ +\x92\xb4\x83\xa5\xca\x89\xac\xd0\x8b\xab\xce\x82\x9b\xbf\x64\x76\ +\x99\x2a\x37\x56\x3d\x4d\x6a\x7a\x92\xaf\x85\xa8\xc5\x83\xab\xc5\ +\x7e\xa7\xc0\x77\x98\xb0\x66\x81\x9e\x5c\x7a\x96\x68\x8b\xa4\x68\ +\x8d\xa6\x58\x76\x92\x43\x5e\x77\x5a\x72\x8b\x72\x8e\xa9\x7c\x9b\ +\xb6\x7c\xa0\xb8\x77\x9d\xb6\x76\x9a\xb3\x76\x9b\xb6\x7b\x9b\xba\ +\x7e\x9c\xbb\x7f\x9d\xbb\x7d\x9e\xbb\x7e\xa3\xbf\x7e\xa2\xc0\x81\ +\xa6\xc3\x7d\xa1\xbf\x76\x9b\xba\x79\x9c\xbf\x81\xa0\xc3\x87\xa4\ +\xc5\x89\xa8\xc7\x8b\xaa\xcd\x88\xa9\xce\x84\xa6\xca\x85\xa5\xca\ +\x86\xa2\xc9\x88\xa2\xcb\x86\xa2\xc9\x85\xa0\xc8\x86\x9f\xc6\x81\ +\x98\xbe\x6e\x87\xac\x67\x84\xa7\x6e\x8c\xad\x79\x95\xb9\x83\x9d\ +\xc4\x83\x9f\xc6\x80\x9f\xc3\x80\x9e\xc4\x7e\xa0\xc4\x7d\xa0\xbf\ +\x81\xa0\xc2\x7c\x9d\xc2\x8b\xa9\xc7\xbd\xc7\xd1\xa9\xab\xb3\x53\ +\x50\x51\x0c\x0f\x0c\x08\x0c\x0e\x0c\x0e\x0f\x16\x22\x20\x20\x27\ +\x28\x15\x20\x27\x24\x3a\x4c\x26\x3e\x59\x33\x4a\x65\x55\x79\x93\ +\x67\x95\xac\x39\x5e\x6d\x1e\x26\x29\x19\x24\x22\x12\x17\x11\x0d\ +\x0f\x0c\x1a\x1e\x1b\x22\x30\x2a\x1b\x1c\x16\x16\x18\x11\x00\x00\ +\x00\x24\x35\x49\x33\x48\x60\x5f\x78\x96\x87\xa3\xc5\x8d\xad\xd0\ +\x8a\xae\xd2\x8a\xaf\xd3\x84\xaa\xd0\x81\xaa\xcf\x7d\xa8\xc9\x82\ +\xaa\xcb\x84\xaa\xcb\x87\xac\xcf\x80\xa8\xcb\x7b\xa3\xc5\x81\xa4\ +\xc7\x8a\xaa\xcd\x82\x9e\xbf\x64\x7d\x95\x29\x3b\x4d\x11\x21\x32\ +\x32\x47\x5b\x47\x5c\x76\x47\x5b\x79\x60\x7a\x9a\x7d\xa2\xc2\x7d\ +\xa8\xca\x76\xa4\xc7\x75\x9f\xc7\x76\x9d\xca\x77\x9e\xc9\x77\x9e\ +\xc4\x6e\x97\xb8\x67\x8d\xae\x68\x8d\xaf\x6f\x98\xba\x79\xa1\xc1\ +\x75\x98\xb9\x62\x83\xa6\x5c\x7d\xa1\x6b\x8a\xad\x79\x9b\xbc\x7a\ +\x9f\xc1\x76\x9f\xc1\x71\x9a\xbe\x6f\x96\xbc\x6a\x93\xb6\x6e\x96\ +\xb9\x78\x9b\xbd\x79\x9b\xbe\x78\x99\xbd\x79\x97\xbf\x79\x92\xbd\ +\x73\x8b\xb4\x64\x7e\xa3\x54\x6c\x8f\x4c\x66\x89\x56\x76\x97\x66\ +\x8a\xaa\x66\x88\xac\x57\x75\x95\x3b\x57\x72\x27\x3f\x59\x23\x38\ +\x52\x24\x3a\x54\x41\x5a\x76\x54\x6e\x8d\x50\x6a\x87\x3c\x58\x71\ +\x36\x50\x66\x2c\x43\x56\x18\x2a\x3c\x22\x31\x46\x2a\x3a\x4d\x0d\ +\x1b\x29\x22\x33\x40\x45\x5b\x6d\x64\x7f\x9a\x7a\x99\xbc\x81\xa4\ +\xca\x85\xa8\xce\x87\xa6\xcc\x85\xa0\xc8\x71\x8b\xb1\x4d\x65\x84\ +\x41\x5b\x76\x6b\x8a\xa6\x79\xa1\xbd\x75\x9f\xb8\x68\x90\xa6\x58\ +\x74\x8c\x40\x54\x6d\x2c\x42\x57\x34\x50\x62\x49\x68\x7b\x46\x5d\ +\x71\x22\x31\x45\x2a\x3a\x4f\x40\x59\x6f\x5d\x7f\x93\x5d\x83\x94\ +\x4c\x6f\x7f\x4e\x6d\x80\x5e\x7f\x95\x6b\x8b\xa6\x72\x8f\xac\x62\ +\x7e\x99\x59\x77\x91\x63\x86\xa0\x70\x95\xaf\x72\x97\xb0\x64\x87\ +\x9f\x54\x77\x90\x5e\x80\x9a\x72\x91\xaf\x81\x9d\xbe\x83\xa2\xc4\ +\x84\xa5\xca\x83\xa5\xc9\x7f\xa2\xc4\x80\xa2\xc4\x83\xa2\xc8\x81\ +\xa2\xc9\x80\xa1\xc7\x7d\x9e\xc1\x7b\x98\xbb\x6f\x86\xa7\x4e\x63\ +\x80\x3d\x58\x72\x4e\x6c\x89\x68\x86\xa5\x79\x92\xb6\x80\x9a\xbf\ +\x80\x9d\xc0\x7d\x9c\xc0\x7c\x9e\xc2\x7f\x9f\xc1\x7f\x9e\xbf\x73\ +\x94\xb6\xa1\xb0\xbf\x99\xa4\xa7\x8e\x99\x9b\x71\x7f\x7d\x12\x17\ +\x16\x15\x22\x1c\x10\x21\x1f\x13\x1b\x24\x14\x23\x32\x12\x29\x3f\ +\x25\x3b\x52\x41\x63\x7f\x4b\x6a\x85\x50\x7c\x91\x25\x40\x4d\x17\ +\x21\x23\x1a\x1b\x1a\x1a\x1d\x1f\x1b\x1d\x1d\x0e\x0c\x0b\x1d\x1d\ +\x18\x24\x28\x23\x1c\x1e\x19\x1a\x13\x0d\x00\x00\x00\x5a\x79\x94\ +\x5e\x7c\x9b\x73\x94\xb7\x88\xa8\xcf\x8b\xaf\xd3\x8a\xb1\xd4\x87\ +\xac\xd0\x82\xa5\xc9\x78\x9f\xc1\x76\xa2\xc0\x7c\xa8\xc6\x83\xad\ +\xcc\x83\xad\xce\x7e\xab\xce\x7f\xad\xce\x85\xae\xce\x8a\xb0\xd0\ +\x7e\xa4\xc3\x63\x86\xa2\x40\x5a\x73\x13\x26\x3e\x1b\x2d\x46\x2f\ +\x44\x5d\x43\x57\x75\x5c\x78\x96\x77\x9c\xbc\x7c\xa5\xc7\x78\xa3\ +\xc6\x76\xa1\xc6\x76\xa1\xc9\x7b\xa2\xcd\x7c\xa1\xcc\x79\xa1\xc7\ +\x76\x9d\xc1\x79\xa0\xc3\x7c\xa5\xc6\x7b\xa7\xc7\x7a\xa1\xc3\x76\ +\x9b\xbf\x70\x94\xba\x77\x97\xbb\x7f\xa0\xc3\x7e\xa4\xc6\x7a\xa3\ +\xc5\x7b\xa2\xc6\x79\xa0\xc5\x75\x9e\xc1\x76\x9d\xbf\x7d\xa2\xc3\ +\x81\xa3\xc8\x81\xa3\xc9\x7c\x9d\xc4\x7a\x9a\xc1\x78\x97\xbe\x72\ +\x91\xb9\x6d\x8b\xb2\x6a\x88\xaf\x6a\x8d\xb3\x6d\x93\xb9\x71\x94\ +\xb8\x6e\x91\xb4\x64\x84\xa3\x53\x6e\x8c\x48\x61\x81\x52\x70\x91\ +\x65\x84\xa8\x75\x93\xb6\x73\x8f\xb1\x61\x7e\x9d\x47\x5f\x7b\x20\ +\x32\x48\x10\x20\x33\x2f\x41\x55\x50\x66\x79\x37\x4a\x5b\x1b\x2e\ +\x3d\x4a\x63\x75\x6b\x89\xa4\x79\x9c\xbe\x81\xa2\xca\x81\xa1\xc9\ +\x80\xa0\xca\x7d\x9e\xc7\x79\x9b\xc1\x6a\x8c\xae\x60\x7f\x9f\x6e\ +\x92\xae\x74\x9e\xbb\x6f\x9a\xb4\x5e\x80\x97\x3c\x51\x67\x1f\x2d\ +\x42\x10\x20\x35\x1f\x37\x4a\x2a\x44\x59\x29\x3c\x51\x17\x22\x36\ +\x1c\x28\x3d\x34\x4b\x60\x33\x50\x64\x2e\x4c\x5b\x1d\x36\x43\x1c\ +\x31\x40\x31\x48\x5d\x4a\x65\x7d\x59\x71\x8a\x42\x57\x6f\x29\x41\ +\x57\x39\x55\x6c\x4a\x68\x81\x56\x74\x89\x46\x61\x72\x2a\x43\x55\ +\x42\x5d\x71\x59\x76\x8d\x68\x82\xa0\x78\x92\xb4\x7e\x9c\xbf\x7f\ +\xa0\xc2\x83\xa1\xc4\x81\x9f\xc3\x80\xa0\xc7\x7e\xa2\xc7\x79\x9f\ +\xc0\x70\x95\xb3\x6c\x8b\xa7\x57\x6c\x84\x2c\x3d\x51\x23\x39\x4e\ +\x3e\x58\x74\x41\x5b\x7a\x5a\x71\x93\x73\x89\xac\x74\x8d\xae\x73\ +\x90\xb0\x76\x95\xb5\x7d\x98\xb8\x7d\x93\xb4\x7c\x90\xa7\x90\x99\ +\x9d\x7e\x86\x89\x56\x61\x63\x17\x20\x21\x03\x07\x06\x04\x0c\x0c\ +\x12\x1d\x29\x20\x35\x44\x29\x3f\x54\x38\x56\x6d\x42\x64\x7b\x29\ +\x45\x60\x30\x49\x5f\x1a\x29\x2c\x1e\x28\x29\x1d\x21\x1d\x16\x19\ +\x1a\x1d\x21\x21\x1e\x1c\x1b\x15\x0f\x0d\x1a\x17\x17\x26\x27\x23\ +\x1e\x19\x1c\x11\x0e\x0d\x00\x00\x00\x78\xa1\xc0\x79\xa2\xc2\x81\ +\xa8\xcb\x87\xae\xd4\x86\xb0\xd3\x85\xaf\xd2\x7f\xa2\xc6\x6d\x89\ +\xad\x58\x77\x99\x5a\x7f\x9f\x73\x9c\xbb\x7f\xab\xc8\x82\xaf\xcb\ +\x81\xaf\xcf\x80\xae\xce\x84\xb0\xcf\x86\xb0\xd0\x81\xad\xcb\x74\ +\x9d\xb9\x60\x81\x9d\x42\x5c\x7a\x2e\x44\x65\x37\x4d\x6e\x50\x6a\ +\x8b\x66\x89\xa9\x77\x9f\xc2\x75\xa2\xc5\x76\xa1\xc5\x73\xa1\xc3\ +\x72\xa3\xc5\x77\xa5\xca\x7b\xa5\xca\x7d\xa5\xcb\x7f\xa4\xc6\x83\ +\xa6\xc9\x84\xa8\xcc\x82\xa9\xcc\x81\xa7\xcb\x7e\xa2\xc9\x7a\x9d\ +\xc4\x7b\x9c\xc1\x80\xa3\xc6\x82\xa7\xcb\x7f\xa2\xc7\x7f\xa2\xc6\ +\x7d\xa3\xc6\x7b\xa3\xc4\x7a\xa4\xc3\x7c\xa5\xc3\x81\xa5\xc7\x83\ +\xa5\xc9\x7e\xa1\xc6\x79\x9f\xc2\x78\x9d\xc1\x76\x99\xbf\x77\x96\ +\xbc\x77\x93\xbc\x73\x96\xbc\x74\x9b\xbf\x79\x9e\xc1\x79\x9f\xc0\ +\x74\x9b\xb9\x6e\x90\xae\x6e\x8c\xb1\x74\x93\xbb\x7b\x9d\xc4\x80\ +\xa1\xc5\x80\xa0\xc4\x79\x9a\xbc\x6d\x8a\xa9\x54\x68\x82\x25\x37\ +\x4c\x1f\x37\x4b\x4d\x69\x7e\x5d\x75\x8d\x2b\x3d\x53\x2c\x42\x55\ +\x62\x80\x97\x75\x98\xb7\x80\xa1\xc9\x7f\xa0\xca\x7c\x9e\xc8\x78\ +\x9e\xc6\x77\x9f\xc5\x76\x9b\xc0\x76\x97\xbc\x76\x98\xbc\x77\x9d\ +\xbf\x72\x99\xb7\x6d\x8b\xa7\x5b\x70\x8b\x4a\x5b\x74\x3c\x51\x6b\ +\x3e\x58\x74\x46\x62\x81\x3b\x50\x6f\x22\x30\x4b\x24\x33\x48\x4a\ +\x5f\x74\x4f\x67\x7f\x32\x47\x5d\x11\x24\x34\x0d\x1c\x2e\x28\x37\ +\x51\x37\x4b\x67\x34\x46\x61\x25\x33\x4b\x1b\x29\x41\x38\x4a\x65\ +\x44\x58\x77\x37\x4c\x64\x24\x37\x47\x15\x27\x35\x3c\x53\x65\x57\ +\x73\x8d\x58\x73\x93\x58\x72\x96\x6b\x88\xab\x78\x98\xba\x81\x9f\ +\xc2\x82\xa1\xc5\x7c\x9e\xc4\x7b\xa0\xc2\x72\x97\xb5\x5d\x7d\x96\ +\x40\x5a\x70\x2f\x41\x52\x10\x1f\x2c\x2b\x3e\x50\x53\x6c\x86\x56\ +\x70\x8e\x47\x5c\x7c\x4a\x5b\x7c\x5e\x70\x8d\x55\x6b\x86\x56\x6f\ +\x8a\x6a\x7d\x9b\x7b\x88\xa4\x8d\x95\x99\x69\x72\x74\x44\x4b\x4c\ +\x30\x33\x33\x1c\x1e\x1b\x09\x0d\x0c\x05\x0d\x0f\x0f\x1c\x27\x21\ +\x35\x43\x26\x40\x53\x22\x3e\x4e\x1f\x34\x44\x18\x26\x26\x16\x1e\ +\x1c\x15\x19\x15\x17\x14\x15\x12\x12\x12\x1b\x1b\x18\x19\x19\x15\ +\x19\x16\x0e\x19\x17\x14\x15\x14\x12\x1f\x26\x24\x25\x29\x2d\x18\ +\x20\x1d\x00\x00\x00\x7f\xb1\xce\x82\xb1\xd1\x88\xb2\xd4\x88\xb1\ +\xd5\x83\xb0\xd3\x80\xab\xcf\x77\x98\xbe\x5d\x74\x9b\x3a\x54\x77\ +\x4c\x6b\x8c\x6d\x91\xb0\x82\xa8\xc4\x8a\xb0\xcd\x89\xb1\xd2\x87\ +\xb0\xd2\x87\xb1\xd0\x85\xb3\xd2\x85\xb3\xd0\x80\xab\xc8\x78\xa0\ +\xbe\x6b\x8d\xae\x61\x7d\xa4\x5f\x7b\xa2\x69\x8a\xaf\x78\xa0\xc3\ +\x79\xa3\xcb\x74\xa2\xc8\x71\x9f\xc3\x6e\xa0\xc0\x6e\xa3\xc1\x72\ +\xa4\xc4\x7a\xa7\xca\x7f\xa7\xcc\x82\xa7\xc8\x84\xa6\xc8\x82\xa7\ +\xca\x80\xa6\xc9\x80\xa6\xca\x81\xa5\xcc\x7e\xa0\xc7\x7d\xa0\xc3\ +\x7f\xa6\xc7\x81\xa8\xcb\x80\xa4\xc5\x81\xa5\xc4\x82\xa8\xc7\x7f\ +\xaa\xc7\x7c\xaa\xc3\x7f\xaa\xc3\x82\xa7\xc5\x83\xa6\xc5\x82\xa5\ +\xc3\x80\xa4\xc3\x7d\xa0\xc1\x7f\x9d\xc3\x7f\x9a\xc2\x7f\x98\xc1\ +\x7a\x99\xc0\x78\xa0\xc1\x7b\xa4\xc3\x7b\xa5\xc3\x79\xa1\xc1\x7a\ +\xa0\xc1\x7c\x9f\xc4\x7f\xa1\xc8\x86\xa6\xcd\x88\xa7\xcb\x85\xa4\ +\xc9\x81\xa3\xc7\x7e\x9d\xbf\x74\x8f\xaf\x5b\x73\x90\x3c\x5a\x75\ +\x51\x70\x8e\x6e\x86\xa7\x4f\x5e\x7c\x1c\x2d\x44\x46\x60\x75\x71\ +\x94\xaf\x7d\xa1\xc4\x7f\xa2\xc9\x7a\x9f\xc6\x7b\xa2\xc6\x7d\xa2\ +\xc7\x7d\xa0\xc5\x7f\x9b\xc3\x7e\x9c\xc6\x7d\xa0\xc6\x7f\xa0\xc2\ +\x7c\x9a\xb8\x75\x91\xad\x6e\x89\xa3\x66\x82\xa0\x66\x85\xa7\x69\ +\x86\xab\x67\x7e\xa5\x5b\x6f\x92\x52\x65\x80\x5e\x76\x8f\x66\x80\ +\x9d\x5a\x73\x91\x41\x58\x71\x36\x49\x63\x48\x5a\x7b\x57\x6c\x8e\ +\x4c\x5f\x7f\x33\x42\x5f\x31\x3e\x5b\x54\x63\x84\x66\x77\x9b\x58\ +\x68\x87\x3b\x49\x5e\x20\x2f\x42\x33\x48\x5f\x5d\x7b\x99\x62\x81\ +\xa5\x4f\x6c\x91\x42\x60\x81\x61\x82\xa0\x78\x98\xb8\x7d\x9c\xbf\ +\x7b\x9c\xc1\x7a\x9c\xbf\x75\x94\xb2\x62\x78\x94\x36\x46\x5f\x18\ +\x26\x3b\x11\x1e\x30\x38\x4d\x60\x65\x80\x9a\x71\x8d\xab\x64\x7d\ +\x9f\x4a\x5b\x7c\x39\x46\x62\x45\x56\x6f\x3a\x4f\x69\x58\x65\x7d\ +\x78\x81\x88\x4a\x50\x53\x3a\x43\x44\x2f\x38\x39\x20\x26\x26\x1c\ +\x22\x1e\x17\x22\x1f\x0e\x0e\x12\x26\x36\x3e\x18\x27\x33\x13\x1f\ +\x23\x0e\x15\x17\x13\x18\x18\x13\x15\x16\x15\x17\x15\x1c\x1e\x1a\ +\x17\x1b\x17\x17\x1a\x17\x1f\x1e\x19\x1b\x19\x15\x1c\x20\x1d\x18\ +\x17\x19\x0e\x10\x09\x20\x24\x1f\x22\x2c\x2f\x21\x2c\x2b\x00\x00\ +\x00\x78\xac\xcc\x80\xad\xd2\x89\xae\xd5\x87\xaf\xd2\x82\xac\xd0\ +\x7e\xa5\xcb\x77\x98\xc1\x64\x7c\xa8\x4d\x66\x8d\x5f\x7d\xa1\x7a\ +\x99\xba\x8c\xab\xc9\x93\xb2\xd3\x90\xb2\xd6\x8a\xb0\xd4\x88\xb1\ +\xd1\x85\xb2\xd0\x88\xb5\xd3\x86\xb4\xd2\x81\xae\xcb\x82\xaa\xc9\ +\x7d\xa1\xc4\x7b\x9f\xc3\x7e\xa5\xc7\x82\xa8\xcd\x7e\xa6\xcf\x77\ +\xa0\xcb\x71\x9d\xc2\x70\x9d\xbe\x6e\x9f\xbd\x72\xa2\xc4\x7a\xa6\ +\xcc\x80\xa8\xcf\x82\xa6\xcb\x7f\xa4\xc8\x7b\xa4\xc6\x7b\xa6\xc5\ +\x7f\xa8\xc7\x80\xa4\xc9\x7e\xa0\xc6\x7c\xa3\xc3\x7e\xaa\xc9\x82\ +\xab\xcb\x85\xaa\xca\x86\xab\xc8\x8b\xb0\xca\x8a\xaf\xcb\x8a\xaf\ +\xcb\x87\xad\xc8\x84\xaa\xc8\x85\xaa\xc8\x89\xaa\xc7\x89\xa8\xc7\ +\x89\xa6\xc8\x88\xa1\xc8\x85\x9e\xc7\x82\x9d\xc6\x7e\x9e\xc5\x7e\ +\xa5\xc6\x80\xaa\xc6\x7d\xa7\xc4\x7e\xa5\xc6\x80\xa7\xca\x81\xa7\ +\xcb\x84\xa6\xcd\x88\xa6\xca\x8c\xa7\xc9\x8a\xa7\xc8\x88\xa7\xcb\ +\x86\xa4\xc8\x83\xa1\xc4\x78\x98\xba\x6c\x8f\xb0\x6e\x8e\xb1\x7d\ +\x93\xba\x67\x74\x95\x27\x33\x4b\x30\x46\x58\x71\x8e\xa6\x83\xa1\ +\xc2\x81\xa4\xc9\x7d\xa4\xc9\x7f\xa5\xc9\x83\xa4\xc9\x82\xa3\xc5\ +\x83\xa1\xc6\x80\xa0\xc9\x82\xa4\xc8\x85\xa5\xc5\x86\xa3\xc1\x81\ +\x9e\xbc\x7f\x9d\xba\x7b\x98\xb8\x76\x97\xb8\x74\x95\xb8\x7b\x95\ +\xbc\x79\x91\xb6\x74\x8e\xad\x73\x8f\xae\x77\x95\xb6\x70\x8f\xb2\ +\x6b\x88\xaa\x67\x80\xa4\x6e\x85\xaa\x74\x8d\xb2\x6b\x84\xa8\x5d\ +\x73\x94\x5c\x6f\x90\x6a\x7c\xa1\x76\x8a\xb1\x74\x88\xab\x66\x76\ +\x94\x4e\x5c\x79\x3d\x4f\x6f\x5b\x74\x98\x6c\x8b\xaf\x60\x7f\xa1\ +\x3f\x5b\x7a\x38\x53\x6e\x68\x86\xa1\x79\x99\xb7\x7b\x9a\xbb\x7c\ +\x9a\xbd\x79\x94\xb9\x72\x85\xa9\x5c\x6c\x8f\x43\x52\x73\x34\x45\ +\x63\x4d\x63\x80\x6b\x88\xa4\x79\x99\xb9\x78\x95\xb6\x65\x7b\x9a\ +\x40\x4f\x6d\x34\x45\x60\x5f\x71\x85\x69\x74\x76\x3d\x48\x48\x30\ +\x38\x3c\x29\x33\x37\x24\x2c\x30\x1a\x1f\x1d\x15\x1c\x1d\x17\x1a\ +\x1f\x27\x32\x32\x27\x34\x34\x17\x1d\x1f\x19\x1c\x1a\x16\x17\x18\ +\x19\x1e\x1d\x1f\x24\x24\x1e\x20\x1c\x1d\x1a\x19\x1c\x22\x1c\x1c\ +\x1d\x1b\x22\x22\x20\x22\x22\x24\x21\x20\x1f\x1d\x1c\x1d\x12\x10\ +\x0a\x1d\x21\x1d\x29\x34\x33\x1e\x21\x21\x00\x00\x00\x69\x99\xc3\ +\x70\x98\xc6\x79\x9c\xc9\x79\xa0\xca\x7a\xa0\xca\x79\x9b\xc8\x75\ +\x94\xc4\x6a\x89\xb7\x67\x87\xb2\x74\x96\xbd\x82\xa3\xca\x8e\xac\ +\xd1\x90\xae\xd4\x8a\xae\xd4\x84\xad\xd2\x81\xad\xd0\x84\xaf\xd0\ +\x83\xb0\xd2\x83\xb2\xd3\x82\xb1\xd1\x85\xb1\xd1\x85\xad\xcf\x83\ +\xac\xcc\x86\xad\xce\x84\xa9\xce\x81\xa6\xcc\x7c\xa0\xc9\x7a\x9e\ +\xc6\x76\x9d\xc2\x74\x9f\xc2\x75\xa2\xc5\x78\xa4\xc8\x7c\xa6\xcb\ +\x7f\xa5\xcb\x78\x9f\xc4\x76\xa2\xc3\x7a\xa7\xc6\x7f\xa7\xc8\x81\ +\xa4\xc9\x80\xa1\xc8\x7e\xa7\xc7\x7f\xad\xcc\x84\xaf\xcf\x89\xaf\ +\xd1\x8c\xb2\xcf\x8f\xb2\xce\x90\xb2\xd1\x91\xaf\xd0\x8d\xaf\xcf\ +\x88\xb0\xcf\x87\xaf\xce\x8d\xb0\xcf\x91\xaf\xd1\x8f\xab\xcf\x8b\ +\xa7\xce\x86\xa4\xcd\x85\xa5\xce\x84\xa7\xcd\x82\xa8\xc9\x85\xab\ +\xc8\x83\xa9\xc9\x82\xa8\xcc\x82\xa9\xcd\x85\xab\xce\x87\xa9\xcb\ +\x88\xa5\xc8\x8a\xa5\xc7\x89\xa6\xc6\x87\xa6\xca\x87\xa5\xca\x84\ +\xa7\xc9\x83\xa7\xc9\x82\xa7\xc9\x82\xa4\xc6\x8b\xa2\xc6\x73\x83\ +\xa1\x2f\x39\x4f\x2f\x3f\x52\x79\x8f\xa8\x89\xa3\xc4\x86\xa7\xcb\ +\x81\xaa\xcc\x81\xaa\xcd\x83\xa7\xce\x81\xa4\xc7\x82\xa5\xc7\x83\ +\xa6\xc9\x86\xaa\xc9\x89\xaa\xc6\x88\xa8\xc5\x85\xa5\xc5\x84\xa6\ +\xc4\x81\xa3\xc0\x78\x9e\xbb\x77\x9d\xbb\x7d\x9e\xbf\x7f\x9e\xbf\ +\x7f\x9e\xbd\x81\xa0\xbf\x7d\x9f\xbf\x7c\x9e\xc1\x7c\x9d\xc5\x7d\ +\x99\xc1\x7e\x9a\xc1\x7e\x9b\xc1\x77\x98\xbc\x75\x92\xb7\x77\x8d\ +\xb4\x79\x8e\xb7\x7c\x95\xbd\x78\x93\xb9\x75\x8c\xb1\x6e\x80\xa4\ +\x63\x77\x9a\x66\x80\xa3\x6c\x8a\xab\x67\x85\xa2\x4e\x66\x83\x2b\ +\x41\x5b\x45\x61\x7b\x6e\x91\xae\x73\x95\xb7\x76\x97\xbc\x78\x94\ +\xbd\x75\x8c\xb6\x72\x85\xaf\x68\x7e\xa5\x5e\x77\x9c\x64\x80\xa2\ +\x70\x8e\xb2\x77\x9a\xbd\x79\x9a\xbb\x73\x8f\xad\x5b\x6f\x8e\x5e\ +\x6c\x7b\x4e\x56\x59\x35\x3f\x41\x2c\x37\x3b\x2b\x2f\x33\x23\x2d\ +\x2e\x21\x2e\x2e\x17\x20\x24\x1b\x28\x2a\x1e\x2d\x31\x18\x27\x27\ +\x14\x1a\x15\x15\x15\x16\x15\x15\x10\x19\x1c\x1a\x14\x19\x17\x17\ +\x19\x19\x17\x16\x17\x1a\x18\x14\x1d\x1f\x19\x16\x17\x13\x17\x12\ +\x12\x18\x1b\x18\x18\x1c\x18\x1b\x1e\x1c\x14\x13\x0f\x22\x23\x1d\ +\x21\x2e\x31\x1d\x1f\x1d\x00\x00\x00\x5e\x8b\xbb\x62\x8a\xbb\x68\ +\x89\xbd\x6b\x8e\xc2\x6a\x8d\xc2\x68\x89\xc0\x63\x84\xbb\x60\x85\ +\xb8\x64\x8a\xbc\x6c\x92\xc1\x72\x97\xc5\x79\x9c\xca\x7f\x9f\xcc\ +\x7d\xa0\xcd\x76\x9f\xcc\x75\x9f\xcc\x77\xa1\xcc\x7a\xa6\xd0\x7d\ +\xaa\xd3\x7d\xac\xd1\x81\xae\xd2\x87\xb0\xd5\x89\xae\xd4\x85\xab\ +\xce\x82\xa8\xcb\x7e\xa3\xc8\x78\x9f\xc5\x74\x9c\xc3\x75\x9d\xc4\ +\x78\xa0\xc6\x7a\xa2\xc6\x7a\xa3\xc5\x7c\xa8\xc6\x7c\xa4\xc5\x7b\ +\xa2\xc2\x7d\xa7\xc8\x7f\xa9\xcb\x82\xa8\xcd\x82\xa5\xcb\x7e\xa3\ +\xc6\x7f\xa9\xc8\x80\xac\xcb\x85\xaf\xcf\x8b\xb1\xd4\x8b\xb1\xd3\ +\x8b\xb1\xd0\x8d\xb2\xd1\x8f\xb0\xd3\x8c\xb2\xd4\x88\xb4\xd3\x84\ +\xb2\xd1\x89\xb1\xd1\x90\xb1\xd4\x91\xaf\xd6\x8d\xac\xd5\x8b\xab\ +\xd4\x88\xac\xd3\x89\xaf\xd5\x85\xad\xce\x85\xab\xcb\x85\xaa\xcc\ +\x81\xa8\xce\x7f\xaa\xce\x83\xac\xcc\x82\xa4\xc5\x7b\x98\xb9\x7b\ +\x97\xb7\x81\x9d\xbd\x81\x9f\xc2\x81\xa4\xc7\x7f\xa7\xc9\x82\xac\ +\xcd\x87\xb0\xd0\x89\xae\xce\x89\xa5\xc6\x71\x86\xa1\x2c\x3b\x50\ +\x33\x46\x5b\x77\x91\xad\x8d\xaa\xcc\x8b\xac\xd0\x85\xad\xd0\x81\ +\xad\xcf\x7f\xab\xd0\x80\xa8\xcb\x82\xab\xcb\x82\xad\xcb\x85\xaf\ +\xc9\x87\xad\xc9\x85\xa9\xc7\x84\xa6\xc6\x80\xa1\xc2\x7c\x9f\xbb\ +\x77\x9d\xb9\x72\x9c\xb7\x7a\xa0\xbd\x80\xa2\xc0\x82\xa4\xc1\x81\ +\xa5\xc1\x82\xa6\xc1\x86\xa7\xc7\x83\xa4\xcb\x82\xa2\xca\x80\xa1\ +\xc8\x80\xa3\xc8\x7c\xa0\xc4\x79\x9a\xc0\x7a\x97\xbc\x7b\x94\xbb\ +\x7c\x98\xc0\x7a\x9a\xc1\x79\x94\xbb\x75\x8e\xb2\x70\x89\xab\x6f\ +\x8b\xa8\x64\x82\x9b\x53\x6e\x85\x4c\x65\x7c\x38\x50\x67\x2d\x4a\ +\x62\x5f\x82\x9e\x6f\x92\xb5\x77\x97\xbe\x75\x95\xbc\x76\x92\xb9\ +\x78\x91\xb9\x74\x8f\xb7\x6a\x8c\xb0\x68\x8b\xad\x70\x8f\xb6\x76\ +\x96\xbb\x77\x97\xb8\x7b\x8f\xa4\x5a\x62\x6a\x2b\x37\x38\x2d\x37\ +\x38\x2e\x34\x38\x25\x2d\x2c\x1f\x25\x28\x1c\x29\x2e\x12\x20\x1f\ +\x2f\x46\x48\x1c\x2a\x2b\x0d\x17\x13\x16\x18\x1a\x1d\x1b\x1b\x1c\ +\x21\x20\x19\x18\x12\x20\x25\x25\x18\x20\x23\x19\x17\x19\x1d\x1d\ +\x18\x1c\x18\x16\x19\x18\x11\x20\x1f\x1a\x18\x18\x13\x21\x26\x22\ +\x18\x1f\x1b\x16\x1b\x15\x13\x15\x13\x1e\x1f\x1b\x26\x2f\x32\x21\ +\x2b\x2c\x00\x00\x00\x6d\x98\xc4\x6e\x94\xc3\x6f\x92\xc4\x6f\x94\ +\xc8\x6c\x91\xc9\x6a\x8d\xc7\x67\x8a\xc4\x63\x8a\xc0\x69\x91\xc4\ +\x6e\x95\xc7\x6d\x94\xc3\x68\x93\xbd\x6b\x91\xbe\x70\x90\xc3\x6b\ +\x8d\xc3\x65\x8c\xc1\x68\x90\xc4\x69\x90\xc6\x6a\x95\xc9\x6c\x9a\ +\xca\x73\x9e\xcb\x7d\xa2\xcf\x7f\xa1\xcf\x7c\x9f\xca\x7a\xa0\xc8\ +\x76\x9e\xc5\x6f\x99\xc0\x6c\x97\xc1\x71\x9a\xc5\x78\x9e\xc6\x7c\ +\x9f\xc3\x7d\xa1\xc1\x7b\xa2\xbf\x7a\xa0\xbf\x78\x9e\xbf\x7a\xa2\ +\xc5\x7f\xa7\xcc\x82\xa8\xd1\x7f\xa4\xcb\x7c\xa5\xc7\x7e\xa8\xc7\ +\x81\xac\xce\x85\xad\xd0\x87\xaf\xd3\x8a\xaf\xd3\x8a\xb0\xd1\x8c\ +\xb1\xd3\x8f\xb1\xd7\x8c\xb3\xd6\x86\xb2\xd3\x83\xb2\xd3\x86\xb2\ +\xd2\x8a\xb0\xd2\x8a\xae\xd2\x8d\xb0\xd6\x8d\xb0\xd9\x89\xb1\xd6\ +\x86\xb1\xd6\x86\xb0\xd1\x88\xae\xd1\x83\xaa\xcd\x7d\xa7\xcb\x7c\ +\xa9\xca\x7a\xa5\xc6\x72\x98\xb8\x5b\x78\x97\x54\x6c\x8a\x6a\x83\ +\xa1\x7c\x98\xb7\x7e\xa0\xc2\x80\xa9\xc9\x7f\xac\xcd\x81\xad\xcd\ +\x87\xaf\xcd\x84\xa5\xc0\x62\x7c\x91\x25\x3b\x4e\x3c\x57\x6c\x78\ +\x97\xb5\x8d\xaf\xd1\x8f\xb0\xd4\x8b\xb1\xd4\x87\xae\xd1\x85\xad\ +\xd0\x84\xac\xcf\x86\xad\xcf\x88\xb0\xcf\x83\xac\xca\x84\xaa\xca\ +\x7f\xa4\xc6\x78\x9c\xbb\x70\x92\xac\x64\x83\x9e\x63\x84\xa0\x68\ +\x8b\xa7\x70\x92\xae\x7c\x9d\xba\x7e\x9e\xbf\x80\xa3\xc2\x86\xa9\ +\xc6\x88\xac\xca\x89\xab\xce\x86\xa8\xce\x83\xa5\xcb\x81\xa2\xc9\ +\x7e\xa0\xc6\x79\x9d\xc1\x78\x99\xbd\x7d\x99\xbe\x81\x9e\xc3\x7f\ +\x9f\xc3\x79\x99\xbe\x73\x93\xb6\x71\x92\xb0\x67\x84\x9e\x47\x5f\ +\x74\x30\x46\x58\x3e\x55\x68\x40\x5a\x6e\x27\x45\x58\x5a\x7e\x96\ +\x75\x98\xb9\x7a\x98\xbd\x78\x94\xb9\x76\x95\xb9\x78\x96\xbd\x78\ +\x98\xbf\x6e\x93\xb4\x6c\x91\xb1\x71\x90\xb2\x88\x9c\xb5\x5f\x69\ +\x6e\x36\x3d\x42\x2c\x38\x37\x22\x29\x2b\x25\x28\x30\x1f\x31\x2e\ +\x18\x27\x26\x29\x35\x3a\x1e\x2d\x2e\x1a\x25\x24\x19\x22\x1e\x1c\ +\x1e\x21\x14\x1b\x15\x20\x22\x26\x16\x1c\x1a\x1b\x1e\x17\x18\x1c\ +\x19\x1a\x1b\x17\x18\x1b\x12\x1c\x19\x19\x1a\x1c\x1c\x16\x19\x16\ +\x16\x17\x15\x22\x21\x20\x1a\x1e\x16\x1e\x20\x1c\x1d\x1f\x19\x1b\ +\x21\x1d\x1e\x27\x28\x17\x19\x12\x23\x2a\x2a\x1f\x22\x20\x00\x00\ +\x00\x7f\xa6\xd0\x7e\xa3\xce\x7e\xa3\xd0\x79\xa3\xd1\x75\xa1\xd2\ +\x76\x9d\xd0\x76\x9b\xce\x73\x9b\xcd\x74\xa0\xcf\x78\xa3\xd1\x76\ +\xa3\xca\x73\xa2\xc4\x74\x9e\xc4\x78\x9a\xc8\x74\x96\xc9\x70\x95\ +\xc7\x6f\x95\xc8\x6b\x92\xc8\x67\x8f\xc8\x65\x8f\xc5\x67\x90\xc3\ +\x6f\x95\xc6\x73\x95\xc8\x70\x93\xc5\x6c\x92\xc3\x65\x8c\xbb\x60\ +\x88\xb6\x60\x89\xb9\x67\x8e\xbe\x6c\x90\xbf\x73\x94\xbf\x74\x95\ +\xbc\x71\x93\xb9\x72\x91\xbc\x70\x93\xc0\x72\x98\xc3\x75\x9d\xc8\ +\x79\xa2\xcd\x7a\xa4\xca\x77\xa3\xc5\x7b\xa5\xc7\x7d\xa8\xcd\x7f\ +\xaa\xcf\x81\xab\xd1\x86\xad\xd1\x8b\xad\xd1\x8d\xae\xd1\x8c\xac\ +\xd3\x89\xac\xd2\x84\xac\xd0\x7e\xab\xce\x7e\xab\xcd\x83\xae\xcf\ +\x84\xad\xd0\x84\xad\xd4\x86\xaf\xd7\x88\xb1\xd7\x87\xb0\xd3\x86\ +\xaf\xd1\x84\xad\xcf\x81\xaa\xcc\x78\xa5\xc8\x74\xa3\xc4\x71\x9f\ +\xc2\x66\x8d\xb2\x54\x6e\x92\x35\x47\x68\x3a\x4a\x69\x5e\x75\x90\ +\x79\x99\xb4\x82\xa9\xc6\x7f\xaa\xcd\x7e\xa9\xcc\x81\xa8\xc8\x79\ +\x9b\xb7\x4f\x6e\x82\x1f\x3c\x4f\x48\x69\x7f\x7e\xa2\xc0\x8a\xb0\ +\xd1\x8b\xb0\xd3\x89\xaf\xd2\x89\xae\xd2\x88\xac\xd0\x8a\xad\xd3\ +\x8f\xae\xd4\x8f\xae\xd3\x86\xab\xcd\x81\xa7\xc9\x7b\x9d\xc1\x66\ +\x85\xa2\x4a\x65\x7a\x32\x4b\x61\x35\x51\x6b\x43\x5f\x7a\x49\x64\ +\x7d\x63\x7f\x99\x79\x99\xb7\x80\xa2\xc0\x87\xab\xc7\x89\xae\xcc\ +\x88\xad\xce\x86\xa8\xcc\x85\xa6\xcb\x83\xa4\xcb\x7f\xa3\xc9\x79\ +\x9f\xc4\x79\x9e\xc0\x7c\x9e\xc1\x83\xa3\xc6\x83\xa2\xc5\x7a\x9d\ +\xbf\x76\x9a\xbb\x72\x95\xb2\x5e\x79\x91\x2b\x3c\x50\x16\x24\x36\ +\x3b\x4c\x5f\x42\x59\x6b\x28\x42\x55\x61\x81\x99\x7e\x9d\xbe\x7d\ +\x98\xbe\x7a\x96\xbb\x77\x99\xbb\x78\x9c\xc1\x78\x9d\xc3\x75\x98\ +\xbb\x79\x9a\xb8\x6f\x82\x8d\x46\x4e\x52\x32\x3e\x40\x2c\x30\x31\ +\x24\x28\x27\x22\x2a\x29\x1d\x25\x25\x1e\x2b\x2e\x1b\x2d\x2e\x27\ +\x34\x34\x1e\x2b\x29\x1a\x1d\x18\x19\x1c\x18\x19\x1d\x1a\x20\x21\ +\x1b\x1b\x1e\x1a\x14\x16\x13\x17\x1e\x19\x1b\x22\x20\x14\x15\x13\ +\x1b\x19\x19\x1b\x1d\x1c\x22\x23\x1f\x1c\x1e\x1e\x20\x20\x1c\x21\ +\x25\x1a\x21\x23\x1d\x25\x28\x22\x1c\x21\x1e\x1c\x1e\x14\x20\x1c\ +\x15\x11\x0e\x0d\x23\x26\x23\x21\x23\x1f\x00\x00\x00\x8a\xac\xd4\ +\x88\xa9\xd2\x84\xa9\xd2\x7c\xa9\xd2\x78\xa7\xd3\x7a\xa4\xd1\x7d\ +\xa2\xd0\x79\xa2\xd0\x79\xa8\xd1\x7a\xac\xd1\x7b\xaf\xcd\x7c\xaf\ +\xc8\x80\xaf\xcc\x84\xac\xd0\x7d\xa6\xcf\x7a\xa5\xcd\x78\xa4\xcd\ +\x79\xa3\xd2\x76\x9e\xd1\x74\x9d\xce\x73\x9d\xca\x73\x9e\xc9\x77\ +\x9b\xcc\x72\x97\xcb\x6d\x93\xc7\x67\x8b\xbd\x60\x83\xb5\x61\x84\ +\xb6\x65\x88\xba\x69\x8c\xbe\x68\x87\xb9\x69\x87\xb7\x66\x84\xb5\ +\x68\x84\xba\x68\x88\xbf\x65\x8a\xbf\x65\x8e\xc1\x69\x93\xc3\x6c\ +\x97\xc2\x6d\x99\xbf\x6f\x9b\xc2\x71\x9b\xc7\x72\x9b\xc9\x72\x9b\ +\xca\x77\x9e\xc9\x7d\x9d\xc8\x7b\x99\xc6\x7c\x99\xca\x7b\x9b\xca\ +\x79\x9f\xc9\x75\xa1\xc7\x75\xa1\xc6\x79\xa2\xc7\x75\x9f\xc9\x75\ +\xa1\xcd\x7a\xa3\xcf\x81\xa5\xcf\x82\xa3\xcd\x82\xa5\xce\x7d\xa3\ +\xca\x78\x9f\xc8\x6f\x98\xc4\x6c\x95\xc1\x68\x92\xbe\x66\x8a\xb7\ +\x5f\x77\xa3\x45\x52\x7a\x26\x2e\x4f\x26\x36\x4f\x4b\x64\x7c\x70\ +\x92\xad\x7b\xa1\xc1\x7d\xa3\xc4\x76\x99\xbb\x64\x85\xa5\x33\x56\ +\x6c\x20\x45\x57\x57\x7d\x96\x82\xa7\xc6\x8a\xae\xd0\x88\xae\xd2\ +\x85\xaf\xd2\x88\xb0\xd4\x8a\xae\xd3\x8c\xad\xd3\x8f\xae\xd4\x8c\ +\xad\xd2\x84\xab\xcd\x82\xa8\xc9\x79\x98\xb9\x56\x70\x8b\x25\x3a\ +\x50\x1f\x37\x4c\x38\x56\x6f\x49\x68\x81\x41\x5c\x73\x2f\x4b\x5e\ +\x5b\x7a\x8e\x82\xa2\xbb\x87\xa8\xc5\x87\xad\xca\x83\xab\xcb\x84\ +\xa7\xca\x82\xa4\xc9\x81\xa3\xca\x7c\xa2\xc9\x78\xa1\xc6\x7c\xa2\ +\xc8\x7f\xa1\xc6\x83\xa2\xc6\x83\xa1\xc5\x7e\x9f\xc5\x7d\x9f\xc4\ +\x75\x96\xb7\x5f\x78\x91\x1f\x2f\x41\x08\x14\x23\x2a\x39\x4b\x38\ +\x4a\x5d\x32\x47\x5f\x6c\x86\xa3\x88\xa4\xc5\x83\x9e\xc3\x7e\x9a\ +\xbf\x7a\x9c\xbf\x78\xa0\xc3\x7e\xa4\xc7\x7c\x93\xaa\x52\x5d\x60\ +\x36\x3d\x40\x2d\x37\x3b\x22\x2d\x2d\x20\x23\x23\x1f\x25\x2a\x1a\ +\x23\x22\x13\x1a\x1e\x1b\x26\x25\x1e\x27\x28\x1f\x20\x1f\x20\x20\ +\x1f\x1d\x1d\x1e\x1f\x2a\x29\x1c\x1c\x18\x21\x26\x26\x1d\x1d\x1b\ +\x1c\x1c\x18\x20\x24\x1f\x1c\x24\x27\x16\x16\x13\x1d\x25\x1f\x19\ +\x16\x14\x1d\x1b\x17\x16\x1f\x18\x1b\x16\x10\x21\x22\x23\x22\x20\ +\x22\x1c\x20\x1e\x1a\x1f\x19\x24\x23\x1e\x1d\x20\x1c\x12\x10\x0e\ +\x23\x28\x25\x27\x2b\x26\x00\x00\x00\x89\xa9\xd2\x8a\xaa\xd3\x84\ +\xaa\xd2\x7a\xa6\xcc\x70\x9c\xc3\x6e\x96\xbe\x72\x97\xc0\x74\x9e\ +\xc8\x75\xa5\xcc\x78\xad\xce\x7c\xb1\xcd\x80\xb2\xca\x87\xb4\xce\ +\x8a\xb1\xd0\x83\xaa\xcc\x7c\xa8\xcb\x79\xaa\xcd\x7f\xad\xd3\x7f\ +\xab\xd3\x7e\xa9\xd3\x7e\xaa\xd1\x7d\xaa\xd0\x82\xa9\xd1\x7f\xa4\ +\xd0\x7a\xa1\xcf\x77\x9b\xc8\x75\x95\xc1\x73\x97\xc2\x71\x99\xc3\ +\x70\x99\xc4\x74\x98\xc6\x77\x97\xc6\x78\x96\xc7\x75\x91\xc5\x75\ +\x94\xc8\x6d\x90\xc5\x66\x8e\xc2\x67\x8f\xc1\x67\x8e\xbc\x6a\x92\ +\xbd\x6d\x94\xc1\x70\x93\xc4\x6c\x90\xc4\x6b\x8f\xc4\x6d\x91\xc3\ +\x6d\x90\xc1\x6a\x8d\xc1\x66\x89\xbf\x67\x8b\xbe\x69\x90\xbe\x6d\ +\x98\xc2\x70\x99\xc2\x71\x95\xc0\x6e\x93\xc3\x68\x92\xc4\x6d\x93\ +\xc3\x76\x95\xc5\x74\x92\xc3\x73\x93\xc4\x70\x93\xc2\x71\x92\xc4\ +\x6c\x8d\xc3\x65\x88\xbd\x63\x86\xbb\x62\x82\xb6\x5e\x78\xa9\x4e\ +\x5d\x8c\x2f\x38\x5f\x14\x1f\x3d\x14\x26\x42\x30\x49\x64\x51\x6e\ +\x8a\x5b\x78\x94\x57\x74\x91\x43\x5f\x7c\x1e\x3c\x57\x29\x4f\x69\ +\x5a\x83\xa4\x77\x9e\xc4\x84\xa6\xcf\x84\xa7\xd0\x7e\xa9\xd0\x81\ +\xab\xd3\x86\xad\xd3\x8a\xab\xd1\x8a\xab\xcf\x83\xab\xcd\x7f\xab\ +\xcc\x80\xa9\xca\x79\x98\xba\x55\x6e\x8d\x2b\x40\x5d\x42\x5b\x77\ +\x62\x84\xa0\x6b\x8f\xa9\x5e\x7d\x92\x2e\x49\x58\x2b\x48\x56\x70\ +\x8f\xa6\x87\xa8\xc6\x86\xaa\xcb\x83\xa9\xcc\x82\xa6\xcb\x7f\xa0\ +\xc7\x7d\xa0\xc7\x78\x9f\xc5\x78\xa1\xc6\x80\xa6\xcc\x84\xa6\xcc\ +\x86\xa4\xc9\x84\xa2\xc8\x80\xa1\xc9\x80\xa1\xc8\x7b\x9c\xbf\x68\ +\x85\xa1\x35\x4b\x5f\x06\x15\x27\x13\x22\x36\x1f\x31\x48\x3e\x53\ +\x71\x77\x93\xb4\x86\xa5\xc6\x81\xa0\xc3\x80\x9d\xc2\x8e\xa7\xc3\ +\x79\x93\xa6\x5c\x62\x6a\x35\x39\x3b\x32\x37\x35\x2a\x34\x35\x22\ +\x29\x28\x1e\x26\x22\x1c\x24\x22\x21\x2b\x2f\x1f\x2d\x2d\x1b\x27\ +\x27\x27\x2e\x2f\x24\x27\x26\x1a\x1e\x1e\x23\x29\x28\x1b\x1e\x18\ +\x23\x23\x1d\x1c\x1f\x18\x16\x17\x14\x1b\x1e\x1a\x18\x19\x18\x20\ +\x1f\x1f\x21\x2a\x29\x24\x28\x2a\x1b\x20\x1f\x1c\x1c\x1a\x22\x25\ +\x25\x1b\x1e\x1c\x20\x1f\x1d\x25\x25\x22\x22\x24\x22\x1c\x23\x1c\ +\x25\x30\x2a\x25\x2d\x31\x21\x23\x28\x1a\x1e\x1d\x19\x1b\x18\x29\ +\x2b\x28\x00\x00\x00\x89\xa9\xd2\x86\xa6\xcf\x80\xa6\xcc\x6c\x93\ +\xb6\x53\x75\x97\x4a\x68\x8a\x51\x74\x98\x5e\x87\xad\x6b\x9b\xbd\ +\x75\xa7\xc8\x7d\xae\xcd\x86\xb2\xd1\x8a\xb1\xcf\x84\xa6\xc5\x71\ +\x92\xb2\x6a\x90\xb2\x6e\x9d\xc0\x78\xa9\xca\x7f\xad\xcf\x7f\xaa\ +\xcf\x81\xad\xd0\x7e\xab\xca\x83\xaf\xcc\x86\xb0\xcf\x83\xb0\xd2\ +\x85\xae\xd1\x84\xa9\xcc\x80\xa5\xc7\x7f\xa7\xc8\x7d\xa8\xc9\x7f\ +\xaa\xce\x86\xad\xd4\x89\xaa\xd3\x87\xa8\xd1\x85\xa8\xd0\x7d\xa4\ +\xcd\x77\xa1\xcb\x76\x9c\xc8\x72\x97\xc0\x74\x98\xc1\x79\x9d\xc9\ +\x7c\x9d\xca\x7b\x9c\xca\x77\x98\xc8\x75\x97\xc4\x75\x99\xc6\x71\ +\x98\xc9\x6b\x93\xc5\x6b\x94\xc2\x6b\x94\xc0\x6d\x94\xc0\x75\x9b\ +\xc4\x76\x9b\xc2\x73\x97\xc3\x6f\x96\xc6\x6f\x94\xc1\x71\x93\xbf\ +\x6e\x90\xbf\x6c\x8e\xc0\x6e\x91\xc4\x71\x93\xc6\x70\x91\xc7\x6d\ +\x8e\xc6\x6a\x8c\xc3\x67\x89\xbc\x63\x81\xb0\x58\x6e\x9c\x45\x54\ +\x7f\x32\x40\x64\x27\x39\x5a\x1b\x30\x50\x1a\x2f\x4e\x1f\x35\x51\ +\x1c\x34\x4e\x1b\x33\x4e\x12\x2c\x4c\x27\x47\x6c\x49\x6f\x9c\x5e\ +\x84\xb3\x6d\x8e\xbf\x70\x92\xc3\x70\x99\xc9\x75\x9f\xcd\x7c\xa4\ +\xcd\x82\xa4\xca\x82\xa6\xca\x7b\xa5\xcd\x79\xa4\xcd\x7d\xa4\xcd\ +\x78\x9b\xc1\x63\x81\xa7\x53\x71\x94\x5e\x81\xa3\x75\x9b\xb9\x79\ +\x9e\xb9\x6d\x8d\xa4\x47\x61\x72\x18\x30\x41\x4c\x68\x80\x79\x9c\ +\xbc\x82\xa8\xcb\x7d\xa5\xc9\x7b\xa0\xc5\x79\x9c\xc2\x76\x9a\xc0\ +\x74\x9a\xc1\x77\x9e\xc5\x7e\xa4\xca\x84\xa7\xc9\x83\xa5\xca\x84\ +\xa4\xce\x83\xa3\xcf\x81\xa2\xca\x7e\x9f\xc6\x73\x94\xb4\x58\x75\ +\x90\x2b\x41\x5b\x16\x26\x42\x1f\x32\x52\x52\x6b\x8f\x84\xa0\xc0\ +\x92\xa6\xb3\x7c\x8d\x97\x7d\x84\x8a\x4e\x54\x58\x34\x40\x43\x34\ +\x38\x39\x25\x2b\x2c\x23\x27\x28\x26\x2a\x2f\x1c\x28\x27\x1a\x22\ +\x22\x1d\x26\x28\x1d\x28\x26\x18\x25\x20\x19\x1e\x1a\x1d\x21\x1c\ +\x1e\x24\x1e\x16\x18\x13\x20\x26\x21\x1a\x1f\x1c\x1e\x22\x1e\x19\ +\x1d\x1a\x19\x19\x17\x20\x24\x20\x1d\x20\x1b\x1c\x18\x16\x1b\x1a\ +\x1b\x18\x1e\x19\x18\x1e\x1c\x1b\x1c\x1c\x1e\x1f\x1d\x21\x1e\x19\ +\x23\x25\x21\x1d\x25\x24\x1f\x23\x1c\x1c\x17\x15\x22\x27\x23\x20\ +\x20\x1f\x22\x2a\x27\x20\x28\x25\x1a\x1c\x17\x29\x2e\x2a\x00\x00\ +\x00\x86\xaa\xd2\x86\xa6\xcf\x7e\x9e\xc3\x57\x75\x94\x28\x40\x59\ +\x24\x3c\x56\x37\x56\x74\x3e\x63\x85\x4d\x77\x96\x68\x97\xb4\x7b\ +\xaa\xc9\x88\xb2\xd5\x83\xa5\xc6\x68\x84\xa2\x42\x5d\x78\x43\x63\ +\x82\x57\x81\xa6\x6c\x9a\xbd\x7d\xa9\xcb\x7c\xa7\xc9\x71\x9a\xba\ +\x68\x92\xaa\x73\x9d\xb2\x81\xad\xc3\x83\xb0\xc9\x81\xab\xc6\x77\ +\x9d\xb9\x76\x97\xb3\x7f\xa1\xbc\x84\xab\xc8\x84\xad\xcf\x88\xb1\ +\xd4\x88\xaf\xd2\x89\xaf\xd0\x8b\xb1\xce\x86\xaf\xcd\x82\xad\xcd\ +\x80\xa5\xc7\x7e\xa0\xc2\x7b\xa1\xc0\x7f\xa7\xc7\x83\xa9\xcb\x84\ +\xa6\xca\x83\xa4\xc8\x7f\xa1\xc2\x80\xa5\xc7\x7f\xa5\xcd\x7d\xa2\ +\xce\x75\x9f\xc6\x69\x95\xb9\x67\x8e\xb4\x71\x97\xba\x7a\xa4\xc1\ +\x82\xaa\xcc\x7d\xa6\xcd\x7d\xa3\xcb\x7a\xa2\xc7\x75\x9e\xc6\x76\ +\x9d\xca\x74\x9c\xca\x79\xa1\xcd\x7a\xa1\xca\x77\xa1\xcb\x77\xa3\ +\xcc\x76\xa0\xc8\x74\x9c\xc3\x70\x94\xba\x6c\x8a\xaf\x68\x82\xa7\ +\x60\x79\x9a\x58\x70\x93\x48\x5f\x82\x39\x52\x6f\x36\x4f\x68\x37\ +\x50\x6e\x3d\x58\x7d\x49\x64\x91\x58\x76\xaa\x64\x83\xb8\x69\x88\ +\xbe\x67\x8a\xc0\x62\x8a\xc0\x67\x8d\xc3\x70\x94\xc4\x76\x98\xc4\ +\x73\x96\xc3\x6f\x95\xc4\x71\x98\xc6\x73\x96\xc5\x71\x93\xc0\x6b\ +\x90\xb9\x62\x89\xaf\x63\x8b\xb0\x6d\x91\xb4\x6f\x91\xae\x5f\x7e\ +\x94\x3d\x55\x67\x13\x27\x3a\x30\x48\x63\x63\x82\xa6\x73\x98\xbd\ +\x77\x9d\xc2\x71\x97\xbe\x6e\x90\xb7\x6f\x91\xb7\x6f\x95\xbb\x70\ +\x99\xc0\x77\xa0\xc5\x7e\xa5\xc9\x7d\xa2\xc7\x7d\xa1\xc9\x7f\xa2\ +\xcd\x7d\x9f\xc7\x7e\x9f\xc6\x76\x9c\xbc\x6a\x8f\xad\x5d\x7c\x9c\ +\x49\x62\x86\x58\x6e\x91\x79\x8b\x9c\x7d\x89\x89\x27\x32\x34\x35\ +\x40\x40\x2c\x2f\x3a\x36\x3d\x3e\x2e\x36\x33\x24\x2b\x2b\x1d\x24\ +\x23\x16\x1b\x1d\x1d\x21\x24\x1b\x21\x22\x21\x2d\x2c\x15\x19\x19\ +\x1b\x24\x1f\x22\x27\x24\x15\x1d\x15\x1c\x20\x22\x1f\x29\x26\x16\ +\x1b\x1b\x1f\x28\x2e\x1c\x1d\x1a\x1e\x1f\x18\x16\x18\x15\x1c\x21\ +\x1e\x18\x1d\x1f\x16\x18\x17\x1e\x1f\x19\x1e\x21\x20\x20\x21\x21\ +\x1b\x1f\x1a\x1a\x1c\x19\x22\x25\x23\x14\x14\x12\x26\x29\x29\x22\ +\x26\x27\x24\x20\x1b\x23\x25\x22\x24\x24\x20\x1f\x1f\x20\x1f\x20\ +\x1f\x1e\x29\x2a\x19\x1a\x1a\x28\x2a\x24\x00\x00\x00\x85\xaa\xd2\ +\x87\xa7\xd1\x7c\x96\xba\x4a\x5f\x79\x15\x27\x3a\x1e\x35\x48\x3c\ +\x5a\x76\x44\x65\x85\x3a\x5b\x77\x47\x6c\x84\x71\x99\xb5\x83\xaa\ +\xca\x7a\x9a\xb9\x47\x5f\x7a\x1c\x32\x4a\x38\x55\x70\x5a\x81\xa2\ +\x72\x99\xbd\x7b\xa3\xc5\x71\x96\xb5\x4e\x6d\x86\x38\x56\x68\x46\ +\x67\x78\x5d\x82\x93\x6c\x92\xa5\x69\x8f\xa3\x53\x72\x88\x43\x5e\ +\x75\x53\x6f\x87\x70\x90\xa9\x82\xa4\xc1\x82\xa6\xc7\x73\x96\xb6\ +\x65\x8a\xa4\x72\x99\xb0\x7c\xa6\xbe\x7b\xa0\xbc\x6d\x8c\xaa\x65\ +\x80\x9c\x62\x81\x9b\x70\x94\xad\x7f\xa5\xc0\x7a\x9e\xbd\x6f\x8e\ +\xad\x61\x7e\x99\x75\x94\xae\x87\xa8\xc8\x85\xa6\xcb\x73\x98\xba\ +\x59\x7f\x9c\x42\x64\x81\x52\x77\x90\x75\x9f\xb6\x85\xb0\xcc\x83\ +\xb0\xd0\x80\xa9\xca\x77\x9f\xbc\x72\x9a\xb9\x79\xa2\xc5\x78\xa5\ +\xca\x7a\xa9\xc9\x7e\xa9\xca\x7b\xa7\xc8\x7d\xa9\xcb\x7d\xa8\xcb\ +\x7f\xa9\xcc\x80\xa8\xca\x83\xa5\xc6\x86\xa3\xc3\x85\xa1\xc0\x82\ +\x9b\xbd\x7b\x94\xb7\x72\x8e\xac\x70\x8f\xab\x71\x8e\xad\x72\x8f\ +\xb3\x73\x92\xbb\x79\x97\xc5\x7c\x9a\xc8\x7a\x9a\xc7\x73\x97\xc5\ +\x6d\x95\xc6\x70\x95\xc8\x75\x97\xc7\x75\x97\xc6\x74\x97\xc9\x71\ +\x95\xc7\x70\x91\xc4\x6f\x8d\xc1\x6c\x8a\xbb\x6a\x8c\xba\x63\x87\ +\xb2\x62\x83\xaf\x63\x7f\xa8\x54\x6f\x8e\x3c\x54\x6b\x20\x32\x44\ +\x09\x18\x2c\x1c\x2e\x4b\x3f\x57\x7e\x54\x70\x9b\x5c\x7d\xa9\x5e\ +\x80\xac\x5f\x80\xa8\x60\x82\xa8\x63\x89\xb1\x64\x8c\xb5\x6b\x93\ +\xbc\x6f\x96\xc0\x70\x93\xbe\x73\x98\xc1\x73\x98\xc3\x75\x98\xc4\ +\x74\x99\xc1\x6e\x97\xbc\x6a\x93\xb7\x68\x8e\xb1\x65\x85\xac\x94\ +\x9e\xae\x70\x7d\x7c\x21\x27\x2b\x17\x1e\x20\x29\x30\x38\x30\x3c\ +\x3e\x28\x30\x32\x25\x2a\x2b\x27\x32\x36\x13\x1a\x1c\x1a\x26\x25\ +\x16\x1f\x1d\x28\x36\x37\x1d\x26\x25\x1d\x1b\x1c\x20\x25\x23\x21\ +\x22\x21\x1a\x20\x20\x1e\x24\x22\x1c\x22\x1f\x1c\x1c\x18\x20\x28\ +\x28\x1a\x1d\x19\x1c\x20\x1e\x1a\x1c\x1a\x1f\x22\x21\x1d\x1e\x1c\ +\x1d\x1d\x1b\x24\x25\x25\x1e\x20\x21\x20\x22\x20\x19\x1b\x17\x16\ +\x1d\x18\x21\x28\x25\x14\x14\x11\x23\x21\x19\x1d\x1b\x15\x1d\x20\ +\x1c\x1c\x1e\x1a\x21\x1c\x19\x19\x1d\x18\x21\x22\x22\x19\x23\x23\ +\x15\x15\x14\x22\x2a\x27\x00\x00\x00\x84\xab\xd4\x85\xa8\xd0\x79\ +\x95\xb6\x4a\x5e\x75\x0e\x1e\x2f\x1a\x2f\x42\x41\x5e\x77\x45\x62\ +\x7e\x2c\x46\x5f\x31\x4e\x63\x65\x8a\xa2\x80\xa6\xc1\x67\x84\xa0\ +\x2e\x42\x59\x14\x26\x3a\x41\x5b\x72\x6b\x8e\xab\x7e\xa4\xc5\x81\ +\xa4\xc6\x67\x86\xa2\x2d\x45\x59\x0f\x24\x33\x2e\x48\x57\x4f\x6e\ +\x7e\x4c\x6d\x7e\x3f\x5a\x6c\x2b\x3f\x52\x1d\x2e\x42\x30\x4a\x5e\ +\x42\x5f\x76\x54\x72\x8c\x66\x81\x9e\x4e\x69\x84\x31\x4f\x64\x3d\ +\x5d\x70\x51\x72\x89\x56\x71\x8d\x3e\x55\x72\x30\x47\x63\x31\x4a\ +\x64\x3d\x56\x6f\x55\x72\x8c\x60\x7f\x9b\x4c\x68\x80\x2e\x47\x5b\ +\x36\x50\x64\x5f\x7d\x95\x7b\x99\xb7\x6b\x8a\xa6\x43\x62\x75\x21\ +\x3d\x50\x39\x58\x6d\x4d\x72\x89\x6f\x98\xb3\x7d\xa9\xc7\x74\xa0\ +\xbb\x64\x8d\xa5\x4a\x6f\x87\x53\x7a\x95\x6e\x9c\xb7\x7a\xaa\xc3\ +\x7f\xa8\xc5\x7c\xa1\xc2\x73\x97\xb8\x6f\x91\xb3\x75\x98\xbb\x83\ +\xa6\xc8\x8b\xa9\xcc\x91\xab\xcd\x8f\xa9\xcb\x92\xaa\xcc\x90\xaa\ +\xc8\x86\xa7\xc2\x84\xa8\xc1\x89\xa7\xc5\x86\xa6\xc7\x83\xa6\xcb\ +\x85\xa7\xd0\x87\xa8\xcc\x85\xa8\xc9\x82\xa5\xca\x7c\xa2\xcb\x7a\ +\xa1\xcd\x7a\xa3\xcc\x7c\xa3\xcf\x7f\xa3\xd2\x7d\xa1\xd0\x77\x9c\ +\xc9\x75\x97\xc4\x70\x91\xbc\x71\x91\xbc\x6f\x8f\xbb\x6f\x8a\xb8\ +\x68\x80\xae\x56\x6e\x91\x3c\x4f\x68\x19\x28\x3d\x11\x20\x38\x23\ +\x35\x56\x39\x4e\x79\x47\x5f\x90\x4f\x6d\x9e\x55\x73\xa3\x58\x76\ +\xa2\x61\x7d\xa7\x63\x86\xaf\x64\x88\xb4\x64\x8b\xb9\x67\x8d\xbd\ +\x66\x8a\xb9\x66\x8b\xb6\x6c\x8f\xbb\x6b\x8d\xbd\x6b\x8d\xbe\x6a\ +\x8e\xbd\x65\x8e\xb9\x62\x8c\xb4\x7f\x96\xab\x6c\x77\x77\x3c\x45\ +\x47\x21\x2c\x32\x2e\x38\x3a\x32\x3b\x3c\x28\x30\x30\x23\x2d\x30\ +\x20\x27\x2b\x23\x30\x32\x1d\x26\x24\x1b\x1f\x1d\x22\x2d\x33\x20\ +\x23\x22\x20\x24\x1f\x20\x23\x25\x1c\x20\x21\x1d\x28\x2a\x1e\x26\ +\x26\x24\x27\x20\x1e\x28\x22\x20\x23\x24\x13\x17\x16\x1d\x25\x29\ +\x1c\x25\x25\x1a\x1e\x1d\x21\x21\x1d\x21\x22\x1e\x1b\x1f\x1e\x1e\ +\x22\x1f\x1c\x1d\x1c\x1c\x1d\x1a\x1d\x21\x1d\x1f\x23\x1f\x20\x25\ +\x25\x1d\x1b\x18\x1f\x22\x22\x1b\x1a\x16\x23\x26\x25\x1f\x23\x1e\ +\x1e\x18\x15\x1d\x1e\x1a\x1e\x25\x24\x1c\x21\x26\x17\x18\x1b\x1d\ +\x1d\x17\x00\x00\x00\x7c\xaa\xcf\x7d\xa9\xcc\x75\x9a\xba\x4f\x69\ +\x80\x10\x21\x33\x0f\x22\x33\x2b\x44\x56\x29\x44\x58\x18\x2f\x44\ +\x36\x4f\x66\x68\x8c\xa5\x7c\xa1\xbc\x59\x74\x90\x23\x34\x49\x09\ +\x1a\x29\x2f\x48\x57\x64\x85\x9b\x82\xa7\xc3\x83\xa7\xc4\x71\x8e\ +\xab\x3d\x52\x67\x0a\x1b\x2a\x1c\x31\x3d\x46\x60\x6f\x4a\x64\x75\ +\x2c\x3e\x51\x14\x1f\x31\x16\x24\x38\x3f\x59\x6f\x5d\x7a\x94\x5d\ +\x79\x95\x46\x5e\x7a\x2b\x42\x59\x17\x2e\x40\x30\x4d\x5d\x3f\x5b\ +\x6f\x31\x46\x5f\x20\x33\x4e\x2b\x45\x5f\x42\x5e\x7a\x4b\x63\x80\ +\x3d\x56\x72\x34\x51\x6a\x28\x43\x59\x18\x2d\x42\x28\x3f\x53\x36\ +\x52\x67\x45\x61\x79\x4d\x68\x7c\x2f\x48\x56\x18\x31\x3f\x3f\x5e\ +\x72\x50\x72\x8b\x4b\x6e\x8b\x56\x7c\x9a\x61\x89\xa4\x4f\x74\x8c\ +\x24\x40\x59\x2d\x4b\x66\x42\x69\x86\x62\x8b\xa7\x74\x98\xb5\x6f\ +\x8b\xac\x51\x69\x89\x3b\x54\x72\x4d\x67\x88\x6b\x86\xa9\x85\xa0\ +\xc3\x8e\xa8\xcb\x93\xac\xcd\x94\xad\xce\x92\xaf\xcb\x88\xae\xc4\ +\x82\xa7\xbf\x7f\x9c\xb8\x84\xa2\xc0\x84\xa9\xc9\x84\xab\xcf\x83\ +\xa8\xc8\x79\x9f\xb9\x74\x98\xb3\x76\x9a\xbb\x77\x9d\xc1\x77\xa3\ +\xc7\x7a\xa7\xcb\x81\xaa\xcf\x7e\xa8\xcc\x77\xa2\xc2\x72\x97\xb5\ +\x6b\x8c\xa9\x71\x93\xb2\x7c\x9c\xc3\x83\xa0\xca\x81\x9d\xc6\x77\ +\x92\xb5\x69\x80\x99\x54\x6a\x7f\x4e\x66\x80\x59\x75\x97\x65\x81\ +\xab\x68\x85\xb3\x67\x86\xb6\x66\x84\xb3\x6a\x89\xb3\x74\x91\xb8\ +\x79\x94\xbc\x75\x93\xbb\x6e\x92\xba\x68\x90\xb9\x65\x90\xb7\x69\ +\x91\xb8\x6c\x91\xb9\x6c\x8f\xba\x70\x90\xc0\x73\x92\xc2\x6d\x91\ +\xbf\x83\x97\xae\x5a\x65\x66\x30\x38\x3c\x29\x34\x37\x2d\x34\x35\ +\x2a\x3a\x3c\x25\x2c\x2d\x20\x2e\x31\x14\x19\x1c\x22\x2b\x2e\x26\ +\x30\x2e\x22\x24\x2b\x1c\x22\x20\x21\x29\x28\x19\x1a\x1e\x1f\x26\ +\x20\x22\x29\x2d\x23\x29\x26\x1f\x27\x22\x18\x17\x13\x20\x23\x1c\ +\x1b\x1f\x1b\x21\x24\x25\x1a\x19\x1a\x1c\x26\x27\x1f\x24\x22\x19\ +\x1b\x18\x23\x25\x23\x24\x23\x25\x1e\x27\x26\x1b\x22\x1d\x1b\x1a\ +\x1b\x1f\x21\x22\x18\x1d\x1a\x24\x29\x28\x21\x2f\x32\x1c\x24\x20\ +\x2e\x36\x3b\x21\x24\x23\x2a\x31\x2b\x20\x20\x1e\x1d\x1e\x1a\x23\ +\x29\x27\x24\x2e\x31\x26\x31\x35\x1d\x25\x29\x21\x23\x23\x00\x00\ +\x00\x77\xaa\xcc\x79\xa8\xc9\x74\x9d\xbe\x58\x75\x91\x1c\x2c\x41\ +\x04\x10\x1e\x10\x21\x2e\x15\x28\x39\x1e\x32\x49\x4b\x66\x81\x72\ +\x99\xb6\x76\x9e\xbd\x61\x7f\x9f\x2a\x3d\x56\x07\x16\x26\x19\x30\ +\x3c\x35\x53\x66\x57\x78\x93\x79\x9a\xb7\x7e\x9c\xb9\x64\x7c\x96\ +\x2f\x43\x55\x10\x24\x31\x24\x39\x45\x30\x46\x56\x2c\x3c\x4f\x1d\ +\x2a\x3f\x20\x30\x47\x48\x63\x7c\x72\x92\xad\x7d\x9d\xb8\x67\x84\ +\xa0\x41\x59\x73\x24\x3b\x53\x3a\x57\x6b\x5b\x7a\x91\x59\x71\x8c\ +\x3e\x56\x71\x42\x64\x7c\x61\x87\xa1\x70\x91\xae\x65\x84\xa0\x52\ +\x70\x89\x3b\x56\x70\x39\x52\x6c\x4c\x68\x7f\x56\x74\x89\x4d\x69\ +\x80\x3a\x52\x68\x29\x3f\x52\x25\x40\x51\x47\x69\x7f\x63\x89\xa2\ +\x66\x84\xa5\x57\x74\x99\x43\x63\x84\x31\x4e\x6b\x18\x2e\x4b\x28\ +\x42\x60\x4a\x6b\x8d\x4e\x71\x94\x53\x71\x92\x50\x66\x82\x2b\x3d\ +\x54\x1f\x32\x48\x3f\x57\x72\x60\x7a\x9c\x77\x93\xb6\x89\xa6\xc7\ +\x92\xae\xcc\x92\xb0\xcc\x8d\xaf\xc8\x7d\xa0\xb6\x65\x85\x9d\x5d\ +\x73\x92\x64\x7d\x9e\x74\x96\xb6\x7e\xa1\xc6\x7f\xa4\xc3\x6b\x8e\ +\xa7\x45\x65\x79\x50\x6d\x86\x57\x76\x97\x62\x85\xa7\x71\x99\xb8\ +\x79\xa0\xbd\x77\x9f\xba\x6b\x91\xaa\x51\x6f\x89\x45\x61\x7a\x5d\ +\x7b\x98\x74\x92\xb5\x83\xa1\xc5\x80\x9f\xc3\x7a\x99\xb8\x6a\x86\ +\x9e\x66\x83\x9a\x71\x93\xad\x7b\x9f\xc0\x82\xa5\xca\x7d\x9d\xc5\ +\x72\x93\xbb\x6a\x8a\xb3\x73\x8f\xb6\x7e\x97\xbc\x80\x9a\xbc\x76\ +\x91\xb2\x68\x89\xa9\x63\x8a\xa9\x64\x8e\xac\x69\x90\xb0\x6f\x95\ +\xb5\x75\x99\xbb\x79\x9a\xc0\x88\xa3\xc4\x71\x82\x8b\x3b\x47\x49\ +\x2b\x36\x3d\x2e\x39\x3f\x2c\x36\x37\x26\x2e\x2e\x23\x27\x2a\x1f\ +\x29\x28\x21\x29\x2a\x22\x29\x2d\x21\x2d\x2d\x18\x1e\x19\x25\x2b\ +\x32\x24\x27\x28\x1b\x23\x24\x1a\x1a\x1a\x1f\x26\x2a\x18\x1f\x22\ +\x1d\x21\x1f\x20\x26\x22\x1d\x19\x15\x1e\x22\x1c\x1c\x1c\x1a\x19\ +\x1d\x17\x19\x22\x1e\x1d\x23\x24\x1c\x1f\x1d\x1f\x1d\x1a\x21\x24\ +\x1d\x25\x24\x1f\x20\x1c\x1b\x24\x2a\x2c\x1e\x20\x20\x1f\x22\x1e\ +\x1c\x1a\x16\x2b\x2e\x30\x1e\x28\x25\x1d\x21\x1a\x21\x25\x25\x1c\ +\x1a\x1b\x1a\x1d\x1b\x1c\x28\x29\x1b\x23\x1f\x28\x2f\x2f\x23\x27\ +\x24\x23\x26\x26\x22\x25\x24\x19\x19\x1a\x00\x00\x00\x7a\xa9\xcc\ +\x78\xa5\xc6\x74\x9c\xbf\x62\x81\xa1\x33\x46\x5e\x03\x0b\x1b\x0a\ +\x15\x25\x17\x27\x3a\x2d\x43\x5c\x58\x75\x93\x74\x99\xbc\x78\x9e\ +\xc2\x6e\x8d\xb1\x40\x56\x73\x0b\x1d\x31\x1f\x39\x47\x44\x65\x78\ +\x45\x65\x7f\x4c\x6a\x86\x70\x8f\xab\x78\x95\xb0\x5f\x77\x90\x38\ +\x4d\x62\x22\x36\x4b\x37\x4d\x62\x48\x5e\x76\x4f\x62\x7d\x45\x5b\ +\x79\x53\x70\x8e\x76\x99\xb5\x89\xae\xca\x83\xa5\xc2\x6b\x89\xa8\ +\x53\x6f\x8d\x55\x74\x91\x6e\x91\xb0\x78\x96\xb6\x6e\x8c\xa9\x68\ +\x8e\xaa\x76\xa0\xbd\x85\xaa\xcb\x83\xa5\xc4\x7c\x9b\xbb\x6d\x8e\ +\xaf\x6e\x8f\xae\x77\x99\xb3\x7c\x9d\xb4\x77\x95\xaf\x67\x81\x9e\ +\x56\x6d\x8a\x4e\x6a\x86\x5a\x7d\x99\x71\x95\xb3\x79\x9b\xbd\x74\ +\x94\xba\x66\x83\xa8\x4c\x66\x88\x31\x47\x67\x3a\x53\x73\x61\x81\ +\xa4\x68\x8a\xb1\x5f\x7d\xa2\x46\x5c\x79\x29\x3b\x50\x26\x3a\x4c\ +\x53\x6f\x86\x6f\x90\xb0\x7c\x9e\xc1\x88\xa5\xc9\x90\xad\xcf\x8e\ +\xaf\xcc\x82\xa4\xbe\x62\x80\x99\x40\x57\x72\x47\x5b\x7c\x55\x6e\ +\x93\x5e\x7f\xa4\x77\x97\xbe\x82\xa1\xc4\x6a\x87\xa2\x2c\x42\x57\ +\x1c\x30\x46\x2e\x47\x63\x47\x63\x83\x5d\x7a\x9a\x66\x86\xa1\x6f\ +\x8f\xa8\x59\x75\x8f\x2b\x40\x5c\x29\x3f\x5a\x4e\x68\x88\x57\x70\ +\x94\x63\x7d\xa1\x6a\x89\xac\x6a\x8a\xa8\x55\x6e\x88\x3c\x57\x6e\ +\x53\x73\x8c\x77\x9c\xba\x81\xa6\xc8\x7f\x9f\xc3\x6d\x88\xaf\x55\ +\x6d\x96\x55\x6e\x92\x6d\x87\xa8\x76\x8f\xad\x60\x7a\x97\x41\x5e\ +\x77\x43\x63\x7c\x53\x75\x8e\x52\x72\x8c\x58\x7a\x93\x79\x99\xae\ +\x7c\x8f\x98\x41\x49\x4f\x24\x2e\x34\x2f\x38\x40\x34\x38\x3c\x26\ +\x2f\x2d\x20\x2c\x2b\x1f\x2c\x2f\x20\x27\x2c\x25\x2c\x2d\x29\x2c\ +\x2a\x2c\x33\x38\x27\x33\x36\x16\x1b\x19\x22\x26\x24\x23\x29\x28\ +\x1d\x23\x23\x1c\x1d\x18\x25\x28\x2a\x1e\x1f\x1d\x1e\x1e\x1c\x1e\ +\x1f\x1e\x1b\x1f\x1f\x1e\x20\x20\x17\x1a\x14\x1c\x20\x1c\x1d\x27\ +\x25\x20\x28\x27\x1f\x25\x21\x23\x27\x25\x22\x1f\x1c\x1e\x20\x1f\ +\x21\x1f\x21\x1a\x1e\x19\x21\x21\x1c\x1c\x1c\x1a\x19\x17\x10\x24\ +\x27\x23\x1d\x22\x24\x1c\x25\x21\x19\x1f\x20\x19\x1f\x1e\x1b\x20\ +\x22\x20\x26\x24\x1e\x20\x1e\x29\x2b\x2a\x20\x21\x21\x1f\x1d\x1a\ +\x20\x28\x23\x18\x1b\x16\x00\x00\x00\x7b\xa6\xcd\x7a\xa2\xc8\x75\ +\x9c\xc1\x6c\x8e\xb1\x49\x5f\x7d\x10\x1c\x33\x0a\x15\x2b\x28\x3a\ +\x52\x40\x5b\x77\x52\x6f\x92\x60\x81\xa7\x74\x97\xbd\x72\x90\xb6\ +\x50\x68\x87\x13\x27\x3b\x1f\x3a\x48\x5e\x82\x92\x6a\x90\xa8\x48\ +\x6c\x88\x45\x65\x82\x71\x91\xae\x76\x95\xb2\x69\x85\xa3\x5e\x77\ +\x97\x68\x80\xa2\x75\x90\xb2\x77\x95\xb7\x72\x91\xb5\x72\x95\xb8\ +\x7c\xa3\xc3\x88\xaf\xcd\x85\xab\xcc\x7a\x9f\xc3\x6d\x94\xb4\x6c\ +\x93\xb3\x79\xa2\xc2\x82\xa6\xc4\x81\xa6\xc3\x80\xa7\xc5\x82\xad\ +\xce\x8a\xb0\xd3\x8d\xae\xd1\x8d\xac\xd0\x85\xa9\xcc\x85\xaa\xcb\ +\x8a\xac\xc9\x8e\xad\xc9\x89\xa7\xc7\x86\xa4\xc5\x7d\x99\xbb\x78\ +\x96\xb8\x76\x98\xbb\x7f\xa2\xc5\x85\xa6\xcd\x84\xa7\xcc\x80\xa2\ +\xc3\x71\x92\xb1\x64\x80\xa2\x64\x80\xa3\x73\x92\xb5\x7a\x9c\xc2\ +\x79\x9a\xbf\x6a\x85\xa4\x56\x6c\x86\x52\x69\x82\x65\x84\x9f\x78\ +\x9e\xbf\x81\xa7\xcb\x89\xaa\xcf\x8b\xab\xd0\x85\xa8\xc8\x73\x96\ +\xb3\x44\x60\x7c\x27\x3b\x58\x4b\x62\x84\x62\x80\xa6\x6d\x8c\xb5\ +\x7d\x9b\xc2\x86\xa2\xc6\x75\x8e\xaa\x3b\x4c\x61\x0b\x1b\x2f\x2a\ +\x41\x5d\x58\x71\x93\x69\x83\xa5\x6b\x86\xa4\x5d\x78\x92\x3f\x56\ +\x71\x17\x27\x46\x21\x34\x50\x5b\x73\x93\x66\x7e\xa3\x51\x68\x90\ +\x41\x5d\x83\x4f\x6a\x8c\x47\x5c\x76\x21\x35\x4b\x1d\x38\x4f\x44\ +\x66\x83\x6c\x90\xb1\x7b\x96\xba\x68\x7c\xa1\x3d\x4f\x75\x36\x4d\ +\x6e\x49\x65\x84\x60\x7c\x9b\x56\x70\x8d\x26\x3e\x58\x11\x2a\x40\ +\x24\x3f\x53\x56\x6c\x7c\x70\x81\x87\x4d\x5a\x5b\x23\x31\x31\x2b\ +\x32\x35\x2b\x32\x35\x30\x36\x3a\x25\x2b\x2f\x1d\x27\x2d\x1d\x29\ +\x2c\x24\x33\x35\x22\x28\x27\x1d\x1b\x19\x2a\x2a\x29\x29\x2c\x30\ +\x20\x26\x2b\x19\x18\x16\x26\x2c\x28\x21\x25\x21\x1c\x1d\x17\x1f\ +\x21\x1e\x16\x16\x17\x15\x1a\x15\x1c\x26\x29\x1c\x1e\x1d\x1e\x1c\ +\x19\x22\x21\x21\x1c\x1a\x19\x20\x28\x28\x18\x20\x20\x1e\x1d\x19\ +\x1c\x1e\x19\x1f\x21\x1e\x1b\x20\x1b\x20\x1c\x1d\x23\x25\x24\x22\ +\x26\x27\x1d\x20\x1c\x25\x23\x1e\x1c\x1a\x12\x28\x32\x29\x25\x2e\ +\x33\x22\x2c\x2b\x1b\x27\x28\x20\x1e\x20\x22\x20\x21\x1d\x1e\x1e\ +\x1b\x1e\x16\x1f\x26\x25\x21\x1d\x18\x25\x22\x1f\x22\x24\x22\x1e\ +\x24\x21\x00\x00\x00\x7d\xa4\xd0\x7d\xa1\xca\x75\x99\xc0\x70\x93\ +\xb8\x5f\x79\x9d\x26\x37\x55\x0a\x19\x32\x34\x48\x61\x5f\x7b\x9b\ +\x5c\x7a\xa0\x44\x5f\x87\x51\x6e\x93\x6d\x8b\xae\x5f\x77\x97\x25\ +\x37\x4c\x13\x29\x34\x4b\x6a\x78\x7d\xa2\xb8\x61\x85\xa1\x39\x59\ +\x75\x54\x76\x8e\x7b\xa0\xbb\x7c\x9d\xbe\x82\xa0\xc3\x8c\xa7\xcb\ +\x8b\xa9\xcd\x89\xaa\xce\x87\xa9\xcc\x84\xa9\xcc\x82\xab\xcb\x87\ +\xad\xcd\x84\xa9\xcd\x7a\xa3\xc8\x73\xa0\xbf\x77\xa3\xbe\x77\xa3\ +\xbc\x76\x9d\xb4\x7b\x9b\xb6\x7e\xa1\xbf\x7e\xa6\xc4\x85\xaa\xca\ +\x8e\xad\xcf\x91\xae\xd1\x91\xae\xd4\x8f\xae\xd5\x8e\xb0\xd3\x91\ +\xb1\xd2\x8d\xac\xcf\x8c\xab\xcd\x89\xac\xcb\x86\xa9\xca\x85\xa7\ +\xcc\x88\xa8\xcf\x8d\xac\xd3\x90\xae\xd2\x8a\xad\xcb\x83\xa9\xc5\ +\x7b\xa1\xc1\x7e\x9f\xc4\x84\xa5\xca\x89\xa8\xcc\x8b\xa8\xca\x86\ +\xa1\xc1\x7d\x98\xb6\x7a\x97\xb5\x7c\x9d\xbe\x81\xa7\xc9\x82\xa8\ +\xcb\x85\xa8\xcd\x87\xa8\xcf\x7e\xa4\xc6\x72\x97\xb7\x4e\x6a\x89\ +\x19\x30\x4c\x37\x51\x6e\x69\x88\xab\x79\x96\xbc\x7d\x9f\xc3\x84\ +\xa4\xc5\x7e\x97\xb0\x47\x57\x69\x09\x16\x29\x1f\x32\x4a\x53\x6b\ +\x8b\x7a\x95\xb6\x81\x9c\xbb\x74\x8e\xac\x54\x6b\x89\x28\x3a\x57\ +\x1d\x30\x4a\x55\x6d\x8a\x79\x92\xb4\x73\x8a\xb2\x55\x6b\x94\x33\ +\x48\x6b\x2a\x3b\x57\x1d\x2d\x45\x25\x3a\x56\x32\x50\x72\x40\x5f\ +\x84\x57\x6e\x92\x5a\x69\x8b\x38\x48\x69\x46\x5b\x7b\x55\x70\x90\ +\x47\x61\x85\x46\x5c\x7f\x28\x3a\x59\x0c\x20\x39\x56\x65\x70\x58\ +\x68\x6a\x23\x2e\x2f\x27\x2f\x30\x29\x38\x37\x2b\x35\x33\x2c\x34\ +\x37\x23\x2c\x2d\x23\x2b\x30\x21\x2a\x2a\x21\x25\x21\x1e\x1f\x21\ +\x26\x27\x28\x19\x1e\x1b\x24\x29\x22\x2b\x2e\x2c\x21\x24\x23\x18\ +\x1a\x18\x25\x28\x27\x26\x2d\x2e\x22\x24\x1d\x23\x24\x26\x1a\x23\ +\x22\x1e\x21\x23\x1d\x21\x21\x1c\x1d\x1d\x1a\x1b\x1c\x28\x2a\x2a\ +\x20\x21\x1f\x23\x24\x22\x19\x1e\x1e\x23\x2c\x33\x1e\x24\x24\x1e\ +\x24\x24\x23\x26\x23\x20\x26\x25\x20\x22\x24\x20\x27\x23\x1e\x21\ +\x1e\x1f\x22\x21\x1e\x1b\x18\x1e\x26\x21\x23\x2b\x2e\x26\x32\x31\ +\x1d\x24\x21\x1f\x21\x22\x24\x23\x21\x1d\x1f\x1e\x27\x26\x25\x1f\ +\x28\x25\x1d\x1a\x19\x1e\x1e\x1d\x1f\x1f\x22\x1e\x29\x28\x00\x00\ +\x00\x82\xa7\xd5\x7f\xa3\xcd\x7c\x9f\xc7\x75\x9c\xc3\x69\x8b\xb2\ +\x3d\x55\x77\x09\x17\x34\x22\x35\x52\x62\x81\xa0\x6e\x91\xb7\x53\ +\x73\x99\x38\x57\x79\x52\x70\x8e\x6b\x84\xa1\x45\x58\x6d\x11\x22\ +\x30\x2b\x43\x50\x69\x8a\x9d\x6e\x91\xab\x40\x60\x78\x3f\x5e\x76\ +\x73\x95\xb2\x7f\xa1\xc5\x89\xab\xce\x90\xb0\xd1\x90\xb0\xd1\x8f\ +\xb0\xd1\x8e\xad\xcf\x8c\xaf\xd1\x8b\xb0\xd0\x8b\xad\xce\x87\xaa\ +\xcd\x7f\xa9\xcb\x75\xa6\xc0\x72\xa0\xb7\x5f\x87\x9d\x51\x71\x89\ +\x58\x71\x8d\x61\x79\x97\x70\x8f\xaa\x81\xa2\xbf\x8c\xaa\xc8\x91\ +\xae\xcf\x8d\xa8\xce\x8d\xa8\xd1\x8e\xae\xd5\x8d\xaf\xd2\x8c\xaf\ +\xd0\x8d\xaf\xce\x89\xae\xca\x8a\xae\xcc\x8b\xad\xcf\x8e\xae\xd2\ +\x93\xb1\xd6\x94\xb2\xd4\x8d\xb2\xcd\x85\xb0\xc9\x82\xae\xcc\x83\ +\xae\xce\x89\xaf\xd2\x92\xb1\xd4\x96\xaf\xd3\x93\xac\xce\x8f\xab\ +\xcc\x8a\xaa\xcc\x83\xa7\xc9\x7f\xa5\xc8\x80\xa3\xc7\x84\xa3\xc9\ +\x83\xa3\xca\x7b\x9f\xc1\x76\x9c\xbc\x64\x84\xa4\x39\x53\x72\x19\ +\x32\x4f\x3f\x5d\x7b\x6d\x8c\xab\x76\x9a\xb9\x7c\xa0\xbe\x7b\x97\ +\xaf\x4a\x5b\x6d\x07\x11\x20\x10\x1e\x32\x3b\x51\x6b\x57\x73\x8f\ +\x74\x91\xaf\x81\x9d\xbb\x7a\x96\xb2\x5f\x78\x93\x43\x59\x73\x56\ +\x70\x8b\x7a\x96\xb7\x86\x9f\xc6\x7a\x91\xb9\x5a\x70\x94\x3d\x50\ +\x6f\x38\x4e\x6a\x4e\x6b\x89\x58\x7c\x9f\x5a\x7c\xa1\x52\x6d\x94\ +\x4a\x5f\x83\x3e\x51\x75\x56\x6c\x8e\x6f\x88\xaa\x64\x7a\xa0\x4c\ +\x5d\x85\x44\x54\x72\x5e\x6a\x74\x37\x46\x45\x31\x3a\x3d\x32\x39\ +\x3a\x2e\x37\x38\x29\x2e\x32\x20\x28\x28\x24\x29\x29\x21\x2c\x2b\ +\x22\x2a\x2b\x22\x23\x22\x24\x24\x1f\x28\x2c\x2a\x21\x23\x25\x1f\ +\x22\x1e\x19\x1a\x18\x27\x2a\x26\x27\x28\x28\x1b\x1a\x15\x25\x1f\ +\x22\x23\x28\x27\x21\x20\x25\x1f\x26\x27\x18\x1d\x18\x1d\x24\x21\ +\x1d\x1f\x20\x1b\x1e\x1f\x1b\x1d\x18\x20\x22\x22\x1e\x1e\x1f\x27\ +\x29\x28\x1f\x22\x1c\x1e\x29\x23\x1f\x26\x28\x23\x25\x20\x21\x22\ +\x22\x1c\x20\x1d\x29\x2a\x30\x24\x24\x20\x20\x25\x21\x1c\x22\x1e\ +\x1f\x27\x26\x1c\x28\x29\x21\x22\x22\x22\x23\x1e\x20\x20\x1d\x1c\ +\x1f\x1a\x1b\x1c\x19\x21\x1f\x1f\x24\x24\x26\x21\x29\x27\x20\x24\ +\x20\x1e\x25\x1f\x1f\x24\x1b\x22\x2a\x28\x00\x00\x00\x7e\xa8\xd3\ +\x80\xa7\xd0\x82\xa7\xd0\x78\xa4\xcd\x6a\x99\xbf\x4c\x71\x93\x1b\ +\x30\x4c\x0e\x1f\x3b\x48\x65\x81\x73\x9c\xbb\x6a\x91\xb2\x4b\x6d\ +\x8c\x36\x52\x6e\x5c\x75\x8f\x68\x7d\x94\x36\x48\x5b\x15\x29\x39\ +\x37\x53\x64\x5b\x7b\x90\x39\x59\x6f\x37\x57\x70\x6a\x8b\xac\x86\ +\xa9\xcb\x8a\xaf\xcf\x8d\xb1\xd0\x8f\xb1\xce\x92\xb3\xcf\x95\xb3\ +\xd3\x8d\xb0\xd2\x8f\xb0\xd3\x8e\xb0\xd2\x87\xa9\xcd\x82\xa7\xca\ +\x7a\xa5\xc0\x66\x8f\xa5\x40\x60\x77\x39\x50\x6c\x51\x63\x83\x50\ +\x61\x7f\x4d\x65\x7f\x7f\x9c\xb8\x8b\xa9\xc8\x8c\xab\xcb\x88\xa8\ +\xcb\x87\xa6\xcd\x87\xa7\xce\x8a\xab\xce\x8b\xaf\xcf\x89\xad\xcd\ +\x88\xad\xc9\x8a\xae\xc9\x8d\xb0\xce\x8e\xb1\xd0\x90\xb2\xd3\x8f\ +\xb2\xd1\x89\xb0\xca\x84\xaf\xc7\x83\xaf\xc8\x86\xb2\xce\x8d\xb4\ +\xd4\x92\xb3\xd7\x98\xb2\xd7\x97\xb1\xd4\x92\xb2\xd2\x8b\xaf\xd0\ +\x84\xaa\xcb\x7f\xa5\xc8\x83\xa3\xc7\x85\xa1\xc6\x84\xa0\xc6\x7d\ +\xa0\xc2\x77\x9f\xbf\x70\x96\xb6\x61\x7f\xa1\x3e\x58\x7a\x24\x3d\ +\x5d\x3a\x57\x72\x5a\x7d\x98\x6e\x92\xaf\x6d\x8d\xa7\x47\x5c\x70\ +\x0a\x16\x24\x08\x14\x24\x39\x4d\x60\x5d\x7a\x91\x50\x6f\x8a\x68\ +\x89\xa5\x7e\xa0\xba\x7d\x9b\xb6\x74\x8e\xaa\x74\x92\xae\x7c\x9d\ +\xbb\x82\xa2\xc7\x7f\x9b\xc3\x76\x90\xb6\x66\x81\xa2\x60\x82\xa0\ +\x67\x91\xae\x6b\x99\xb8\x69\x95\xb4\x67\x8e\xb1\x60\x81\xa3\x5c\ +\x78\x9b\x69\x83\xa6\x7b\x95\xb8\x7f\x94\xb3\x78\x85\x94\x49\x5a\ +\x5b\x29\x35\x36\x2e\x3b\x3b\x2a\x32\x34\x2a\x36\x37\x24\x2c\x2f\ +\x1c\x25\x27\x25\x2f\x2e\x2b\x2d\x2b\x27\x30\x32\x22\x29\x26\x23\ +\x26\x22\x23\x28\x22\x24\x29\x2a\x23\x23\x22\x1f\x21\x20\x18\x18\ +\x1a\x2b\x2d\x2a\x22\x23\x24\x1c\x1b\x16\x1d\x1c\x1c\x23\x29\x2b\ +\x23\x30\x32\x22\x2d\x31\x19\x19\x18\x21\x27\x23\x21\x29\x24\x22\ +\x27\x24\x1c\x1e\x1b\x25\x2a\x29\x1d\x24\x28\x1d\x23\x23\x24\x33\ +\x32\x1d\x30\x2e\x1b\x1c\x1c\x24\x28\x24\x20\x26\x23\x1f\x26\x28\ +\x22\x26\x29\x1b\x24\x24\x16\x1b\x18\x22\x21\x1d\x22\x2a\x2a\x24\ +\x31\x32\x1a\x1c\x1c\x29\x2d\x29\x1e\x21\x1b\x22\x24\x20\x22\x20\ +\x1d\x1d\x23\x1e\x22\x27\x25\x1c\x20\x1d\x20\x22\x1c\x22\x25\x27\ +\x22\x25\x22\x1b\x1f\x1a\x00\x00\x00\x75\x9f\xcb\x7b\xa1\xce\x7e\ +\xa3\xd0\x76\xa5\xcf\x66\x9b\xc1\x56\x83\xa6\x36\x51\x6f\x0b\x1f\ +\x35\x21\x3d\x50\x5a\x82\x98\x74\x9c\xb8\x60\x82\xa4\x34\x4e\x6b\ +\x3c\x51\x6b\x69\x82\x9a\x5e\x77\x90\x28\x40\x55\x10\x27\x3a\x28\ +\x43\x56\x26\x46\x5b\x38\x59\x74\x6c\x8e\xb0\x85\xa9\xcc\x87\xaf\ +\xd0\x89\xb2\xd2\x8d\xb3\xd0\x92\xb7\xd1\x93\xb7\xd3\x8e\xb2\xd3\ +\x8e\xaf\xd2\x89\xab\xd0\x86\xa6\xce\x82\xa3\xc8\x7b\x9e\xbb\x53\ +\x72\x8a\x28\x3d\x56\x3d\x4f\x6d\x65\x76\x99\x5b\x6d\x8d\x36\x4b\ +\x64\x62\x7e\x96\x8c\xad\xc8\x86\xaa\xc7\x84\xa8\xc7\x84\xa6\xc9\ +\x83\xa5\xca\x87\xa9\xc9\x87\xae\xca\x83\xac\xc9\x85\xab\xc8\x8a\ +\xad\xcb\x8f\xb2\xd0\x8d\xb2\xd0\x8d\xb2\xd2\x8b\xaf\xce\x87\xac\ +\xca\x85\xab\xc8\x88\xae\xc9\x8d\xb2\xcd\x90\xb5\xd2\x92\xb5\xd7\ +\x94\xb3\xd6\x94\xb3\xd2\x8f\xb2\xcf\x89\xb0\xd0\x82\xab\xcc\x80\ +\xa8\xca\x80\xa4\xc7\x80\xa1\xc4\x7f\x9f\xc3\x7e\xa1\xc4\x7c\xa2\ +\xc4\x7a\xa0\xc3\x76\x97\xbe\x6a\x86\xae\x52\x6b\x8f\x2f\x48\x66\ +\x27\x42\x5c\x47\x66\x82\x57\x75\x91\x3a\x51\x67\x10\x1f\x31\x0e\ +\x1d\x2f\x26\x3a\x4e\x66\x83\x9a\x60\x82\x9d\x40\x64\x80\x67\x8b\ +\xa6\x81\xa5\xbf\x84\xa1\xbf\x83\xa4\xc1\x82\xa6\xc4\x7b\x9e\xc2\ +\x7a\x9a\xc2\x7a\x99\xc2\x75\x98\xbc\x74\x9b\xba\x73\xa1\xbe\x71\ +\xa1\xbd\x71\xa1\xbb\x73\xa0\xbe\x74\x9a\xbd\x79\x99\xbd\x7e\x9b\ +\xbf\x8d\x9e\xac\x53\x60\x65\x32\x39\x3b\x2e\x38\x36\x27\x2e\x30\ +\x29\x2b\x2b\x23\x27\x29\x22\x2b\x29\x1d\x27\x2a\x20\x2b\x2b\x25\ +\x21\x21\x22\x21\x1e\x1f\x25\x22\x1b\x21\x20\x23\x27\x20\x21\x2a\ +\x2d\x20\x2d\x32\x1e\x26\x25\x1e\x26\x24\x0f\x14\x13\x27\x2a\x25\ +\x22\x26\x24\x15\x1c\x1b\x11\x14\x13\x21\x2b\x29\x21\x27\x2c\x21\ +\x29\x2a\x21\x23\x1f\x24\x26\x23\x1c\x1f\x21\x21\x23\x1f\x27\x27\ +\x25\x22\x26\x26\x25\x2d\x31\x27\x2c\x2d\x2b\x36\x34\x27\x22\x22\ +\x1f\x22\x22\x1c\x20\x1e\x1d\x25\x21\x1e\x28\x28\x23\x2c\x2b\x1c\ +\x23\x26\x1a\x1d\x1a\x20\x21\x20\x1f\x2a\x28\x25\x2d\x33\x1a\x1c\ +\x12\x1f\x22\x22\x21\x28\x26\x1f\x1d\x1a\x20\x1f\x22\x1e\x29\x22\ +\x1f\x1e\x1c\x21\x29\x27\x1e\x20\x1c\x22\x29\x23\x1d\x1e\x1d\x1c\ +\x20\x18\x00\x00\x00\x66\x8d\xbe\x6a\x8f\xc1\x72\x95\xc8\x69\x95\ +\xc5\x5e\x91\xbd\x58\x86\xaf\x49\x67\x8a\x24\x39\x54\x0a\x21\x34\ +\x2c\x4c\x5e\x5b\x80\x97\x5d\x7e\x9a\x3c\x54\x72\x27\x3b\x56\x51\ +\x69\x85\x64\x81\xa0\x47\x65\x82\x1a\x34\x4e\x11\x28\x43\x1e\x3c\ +\x58\x47\x6a\x8a\x6e\x93\xb9\x7e\xa2\xcb\x83\xa9\xd2\x88\xaf\xd4\ +\x8d\xb2\xd4\x8f\xb5\xd3\x90\xb6\xd6\x8c\xb1\xd3\x88\xab\xce\x85\ +\xa5\xce\x82\xa0\xcd\x84\xa0\xcb\x7a\x96\xbd\x59\x72\x92\x2e\x42\ +\x5e\x48\x5d\x7b\x6f\x87\xa7\x63\x79\x96\x33\x4a\x60\x3e\x57\x6f\ +\x7e\x9c\xb8\x83\xa8\xc6\x7f\xa5\xc6\x80\xa5\xc5\x84\xa8\xc7\x84\ +\xab\xc8\x80\xaf\xc6\x7f\xae\xc6\x85\xad\xc9\x8b\xaf\xd0\x8d\xb3\ +\xd5\x8c\xb4\xd3\x8a\xb2\xd1\x8b\xae\xcf\x8a\xad\xce\x87\xab\xcc\ +\x86\xad\xcb\x8e\xb3\xcf\x90\xb4\xd2\x8e\xb4\xd3\x8c\xb2\xd3\x8e\ +\xb2\xd2\x8b\xb1\xd0\x87\xae\xcd\x82\xa9\xc9\x82\xa9\xc9\x7d\xa6\ +\xc6\x7a\xa1\xc1\x7d\xa3\xc5\x7e\xa5\xc8\x81\xa7\xcb\x81\xa6\xcc\ +\x81\xa3\xcc\x7f\xa1\xc6\x77\x97\xb9\x5b\x78\x98\x38\x50\x6f\x25\ +\x3d\x5c\x33\x4b\x68\x30\x45\x5c\x15\x2a\x3e\x28\x3e\x53\x1f\x36\ +\x4e\x5b\x79\x93\x70\x94\xb1\x4b\x6f\x8f\x41\x65\x83\x7a\x9e\xba\ +\x82\xa4\xc2\x80\xa3\xc1\x78\x9c\xbb\x70\x91\xb6\x73\x94\xbd\x78\ +\x9c\xc3\x76\x9e\xc3\x75\x9f\xc1\x72\xa0\xc0\x72\xa2\xc0\x71\xa2\ +\xbd\x75\xa1\xc2\x7b\xa1\xc7\x81\x9f\xc1\x6e\x7f\x89\x30\x3c\x43\ +\x36\x3a\x41\x35\x3d\x3d\x28\x2f\x2d\x1f\x26\x26\x2a\x33\x35\x20\ +\x2e\x2b\x1c\x22\x22\x2a\x37\x39\x20\x23\x26\x21\x2b\x28\x25\x24\ +\x25\x26\x29\x26\x20\x1c\x19\x21\x22\x26\x20\x22\x26\x22\x28\x29\ +\x21\x29\x2b\x27\x31\x35\x12\x14\x12\x22\x25\x21\x1f\x25\x23\x17\ +\x20\x1f\x14\x18\x14\x27\x2f\x2e\x23\x27\x2c\x21\x23\x1f\x20\x22\ +\x1c\x2a\x2c\x2c\x1e\x20\x23\x1e\x1f\x1f\x22\x24\x21\x1b\x1c\x15\ +\x20\x21\x20\x1e\x20\x1d\x27\x28\x28\x1f\x1e\x20\x1e\x21\x1f\x20\ +\x24\x20\x22\x24\x24\x1a\x20\x1a\x20\x20\x23\x1d\x24\x23\x1e\x24\ +\x1f\x20\x29\x2e\x1f\x2b\x2a\x24\x26\x27\x1e\x23\x1c\x20\x22\x1e\ +\x24\x27\x23\x21\x23\x25\x18\x21\x1f\x1c\x1f\x1b\x21\x20\x1e\x1e\ +\x21\x20\x26\x27\x22\x1e\x1f\x1a\x1e\x22\x1f\x1f\x1e\x16\x00\x00\ +\x00\x65\x8e\xbd\x6b\x92\xc2\x71\x97\xc8\x6b\x93\xc7\x61\x8d\xbe\ +\x5d\x85\xb5\x54\x76\xa0\x3d\x57\x7a\x16\x2c\x45\x0b\x22\x34\x26\ +\x42\x53\x3f\x5c\x70\x31\x49\x62\x18\x2c\x47\x39\x50\x6f\x4b\x69\ +\x8d\x41\x62\x89\x34\x52\x7b\x2a\x43\x6d\x3a\x56\x80\x4f\x74\x9d\ +\x68\x8d\xb9\x70\x94\xc4\x76\x99\xca\x81\xa5\xd1\x86\xaa\xd2\x87\ +\xad\xd0\x86\xac\xd0\x83\xa9\xce\x7a\x9d\xc7\x79\x98\xc8\x77\x94\ +\xc9\x79\x98\xcc\x78\x96\xc6\x6b\x87\xb0\x56\x71\x94\x5a\x75\x96\ +\x67\x84\xa2\x59\x70\x8b\x2d\x40\x55\x25\x39\x53\x5e\x7a\x99\x78\ +\x9b\xbf\x7a\xa0\xc5\x7d\xa3\xc8\x7f\xa5\xc8\x80\xaa\xc9\x7d\xad\ +\xc7\x7e\xad\xc7\x87\xae\xcb\x8d\xaf\xd5\x89\xaf\xd6\x87\xb2\xd3\ +\x86\xb2\xd0\x88\xaf\xd1\x88\xac\xd2\x81\xaa\xcc\x83\xae\xcd\x8a\ +\xb1\xd0\x8a\xb1\xcf\x87\xaf\xce\x86\xae\xcf\x86\xae\xd0\x86\xad\ +\xce\x85\xaa\xcc\x83\xa8\xc9\x7f\xa4\xc5\x7c\xa4\xc4\x79\xa2\xc3\ +\x7f\xa5\xc9\x80\xa8\xcb\x82\xaa\xce\x86\xab\xd1\x83\xa9\xcd\x84\ +\xa9\xcb\x80\xa6\xc5\x78\x9c\xbd\x6a\x88\xab\x56\x70\x91\x39\x51\ +\x6e\x28\x40\x58\x2b\x46\x5c\x46\x65\x7e\x35\x52\x6d\x45\x65\x82\ +\x79\x9d\xbb\x5e\x82\xa4\x36\x59\x7a\x67\x8b\xa9\x7e\xa4\xc0\x72\ +\x96\xb3\x60\x81\xa2\x59\x7a\x9c\x63\x86\xac\x70\x9a\xbf\x73\xa1\ +\xc2\x76\xa0\xc3\x73\x9f\xc1\x70\xa1\xc0\x71\xa2\xc0\x89\xa9\xbe\ +\x75\x88\x95\x42\x4c\x4c\x2d\x36\x38\x31\x37\x36\x2a\x30\x2d\x23\ +\x2f\x30\x25\x30\x2f\x17\x20\x1e\x26\x30\x33\x1e\x26\x26\x26\x2b\ +\x28\x24\x21\x23\x21\x23\x1c\x2a\x29\x27\x20\x26\x21\x1f\x20\x19\ +\x20\x20\x20\x26\x2a\x2f\x23\x23\x21\x29\x23\x24\x22\x27\x29\x22\ +\x29\x27\x15\x15\x12\x26\x25\x23\x27\x28\x27\x1b\x20\x1f\x14\x15\ +\x12\x2e\x30\x35\x2c\x29\x28\x26\x2b\x29\x1c\x1f\x17\x1b\x23\x1c\ +\x1c\x22\x20\x23\x26\x24\x27\x28\x26\x23\x21\x20\x25\x2a\x26\x1e\ +\x22\x21\x22\x27\x29\x20\x21\x1f\x1f\x22\x25\x1a\x1d\x1a\x1d\x1d\ +\x1a\x24\x27\x26\x25\x2a\x27\x22\x26\x23\x25\x28\x24\x20\x25\x24\ +\x25\x35\x39\x23\x29\x26\x22\x22\x1e\x22\x22\x1d\x21\x21\x1c\x1c\ +\x1f\x1c\x1b\x1d\x1b\x1e\x21\x1b\x24\x2a\x29\x1a\x1e\x1b\x21\x27\ +\x26\x22\x28\x24\x20\x22\x1f\x23\x27\x23\x00\x00\x00\x6f\x9e\xc2\ +\x75\xa1\xc8\x79\xa2\xcc\x7a\xa1\xcf\x76\x9d\xcd\x70\x98\xc4\x6d\ +\x92\xba\x62\x83\xa8\x4e\x69\x87\x1e\x33\x48\x0a\x1b\x2c\x1b\x2e\ +\x3e\x25\x3a\x4d\x17\x2d\x48\x3a\x52\x74\x50\x6a\x92\x52\x71\x9d\ +\x53\x71\xa0\x57\x71\xa2\x5a\x78\xaa\x60\x83\xb2\x68\x8c\xbc\x6e\ +\x90\xc2\x6e\x91\xc3\x73\x96\xc7\x7a\x9a\xc8\x7a\x9e\xc7\x77\x9d\ +\xc5\x70\x97\xc2\x66\x8c\xbb\x64\x85\xbb\x67\x84\xbd\x6a\x8a\xc0\ +\x6d\x8c\xbf\x6c\x8a\xb9\x66\x82\xac\x63\x7e\xa4\x5a\x73\x96\x3e\ +\x51\x6d\x1f\x2e\x46\x1a\x2b\x48\x3d\x55\x79\x5f\x7b\xa8\x68\x8a\ +\xba\x68\x8f\xbf\x6e\x94\xc0\x77\x9c\xc7\x78\xa1\xc8\x7d\xa3\xc9\ +\x80\xa0\xca\x83\xa1\xcf\x7e\xa2\xd0\x7c\xa6\xcd\x81\xa6\xce\x85\ +\xa5\xd1\x81\xa1\xce\x7c\xa1\xc9\x80\xa7\xcc\x86\xac\xd0\x85\xab\ +\xce\x82\xac\xcc\x7e\xa9\xc8\x7b\xa8\xc8\x7d\xa6\xca\x81\xa7\xcd\ +\x83\xa4\xcc\x80\xa3\xc8\x7c\xa0\xc5\x79\x9d\xc3\x7f\xa3\xca\x83\ +\xa8\xce\x85\xaa\xd0\x88\xaa\xd1\x89\xab\xd0\x89\xab\xce\x85\xab\ +\xcb\x84\xaa\xcd\x83\xa7\xcb\x82\xa1\xc4\x71\x90\xae\x5d\x7e\x97\ +\x56\x7a\x92\x65\x88\xa4\x56\x76\x92\x31\x4e\x6b\x74\x94\xb1\x6b\ +\x8c\xad\x38\x5a\x79\x58\x7d\x99\x7d\xa1\xbd\x6f\x90\xad\x51\x6f\ +\x8c\x48\x67\x89\x58\x7c\x9e\x6f\x99\xbb\x75\xa4\xc4\x75\xa1\xc0\ +\x77\x9f\xc1\x87\xa7\xc0\x6b\x7f\x8a\x38\x45\x4a\x37\x3f\x44\x30\ +\x38\x37\x29\x30\x30\x26\x2d\x2f\x24\x30\x31\x1d\x23\x22\x23\x27\ +\x27\x1e\x22\x22\x1d\x1f\x22\x21\x25\x29\x23\x24\x23\x23\x24\x23\ +\x1c\x1e\x1d\x1f\x23\x23\x22\x24\x21\x20\x22\x1f\x22\x26\x27\x25\ +\x2a\x26\x23\x26\x1e\x23\x26\x24\x24\x2a\x2e\x21\x25\x22\x18\x1d\ +\x1d\x21\x20\x20\x27\x2b\x26\x1f\x21\x1d\x18\x13\x11\x25\x2a\x28\ +\x2b\x2f\x2a\x22\x28\x24\x1c\x20\x1c\x20\x26\x25\x21\x24\x26\x1f\ +\x1f\x1e\x23\x29\x2a\x1b\x1b\x18\x25\x2c\x2c\x1e\x25\x28\x20\x23\ +\x24\x1d\x1d\x1d\x23\x29\x29\x1c\x1e\x1b\x1b\x21\x1b\x21\x25\x25\ +\x19\x20\x21\x1d\x25\x22\x1d\x22\x1f\x22\x20\x1a\x24\x2b\x29\x22\ +\x27\x27\x1c\x1e\x1d\x1c\x1f\x1a\x1e\x20\x1a\x23\x20\x1d\x23\x22\ +\x1f\x1c\x1f\x1e\x20\x27\x22\x1d\x1e\x1b\x1e\x22\x22\x21\x24\x1d\ +\x25\x2b\x2a\x1f\x24\x24\x00\x00\x00\x78\xa9\xc7\x7a\xa9\xc9\x7f\ +\xad\xcf\x84\xac\xd3\x87\xac\xd6\x83\xa9\xcf\x84\xaa\xcd\x82\xa7\ +\xc9\x78\x98\xb9\x5f\x77\x94\x2b\x3a\x53\x12\x1f\x33\x18\x28\x3e\ +\x2b\x40\x5c\x52\x6d\x8f\x6b\x89\xaf\x70\x90\xb9\x78\x95\xbf\x7d\ +\x98\xc4\x7c\x9b\xc7\x7c\x9f\xc8\x7c\xa0\xc9\x7a\x9d\xc8\x78\x9c\ +\xc9\x7a\x9e\xcc\x7d\xa2\xcc\x7d\xa4\xcb\x78\xa1\xc8\x71\x9b\xc3\ +\x6b\x95\xc1\x69\x8e\xbf\x6e\x8e\xc0\x73\x91\xc1\x75\x94\xc2\x74\ +\x94\xc1\x70\x8f\xba\x6c\x8c\xb3\x66\x82\xa5\x56\x6c\x8b\x46\x57\ +\x77\x46\x5a\x7f\x57\x6f\x97\x67\x82\xaf\x6d\x8b\xbf\x6e\x8c\xc3\ +\x6f\x8e\xc3\x7a\x98\xca\x7c\x9e\xcd\x7b\x9f\xcd\x7e\x9c\xcd\x7e\ +\x9b\xcd\x7e\x9c\xd0\x7c\x9c\xcc\x7b\x99\xc9\x7e\x98\xcb\x78\x94\ +\xc6\x73\x92\xc2\x77\x99\xc7\x7c\x9b\xc9\x7b\x9c\xc9\x77\x9d\xc5\ +\x74\x9b\xc3\x73\x9b\xc2\x74\x9a\xc4\x74\x97\xc5\x77\x97\xc7\x76\ +\x95\xc2\x71\x90\xbd\x70\x8f\xbc\x77\x96\xc3\x7b\x9a\xc6\x7c\x9f\ +\xc8\x7e\xa2\xca\x7f\xa4\xca\x81\xa5\xcb\x83\xa7\xcc\x85\xa8\xcc\ +\x84\xa8\xcc\x82\xa7\xcb\x7f\xa6\xc6\x76\xa0\xbb\x72\x9e\xb8\x75\ +\x9d\xb9\x64\x84\xa0\x2d\x48\x63\x56\x71\x8e\x6d\x8b\xa8\x38\x57\ +\x72\x49\x6a\x85\x7a\x9d\xb8\x7b\x9a\xb8\x6c\x8b\xa9\x65\x86\xa8\ +\x6c\x8e\xb1\x77\x9e\xbe\x77\xa3\xc0\x8f\xaa\xb9\x83\x8d\x92\x42\ +\x51\x53\x3a\x45\x48\x31\x39\x37\x27\x2e\x2f\x27\x30\x33\x22\x2a\ +\x29\x24\x30\x34\x23\x2e\x2e\x23\x29\x28\x25\x25\x24\x2a\x28\x2a\ +\x22\x23\x1f\x2a\x32\x31\x27\x2a\x2b\x1f\x23\x1f\x19\x21\x1e\x22\ +\x29\x29\x1f\x22\x21\x24\x2b\x2c\x1e\x1f\x1c\x1f\x24\x1d\x1c\x21\ +\x16\x21\x25\x23\x25\x2b\x2e\x20\x25\x22\x1d\x19\x16\x1d\x21\x1e\ +\x2e\x2e\x2e\x25\x24\x20\x17\x16\x12\x1e\x23\x1f\x2c\x30\x30\x24\ +\x2d\x2f\x1f\x23\x22\x1e\x20\x20\x20\x25\x24\x19\x20\x21\x1b\x21\ +\x23\x1d\x21\x1f\x21\x28\x29\x20\x25\x29\x23\x27\x29\x23\x23\x27\ +\x1a\x1b\x1b\x1d\x21\x1b\x18\x21\x1c\x21\x25\x1d\x23\x2b\x27\x22\ +\x24\x20\x20\x22\x24\x22\x25\x24\x1a\x21\x1f\x22\x25\x26\x20\x24\ +\x22\x18\x1a\x19\x1f\x24\x1a\x20\x22\x1d\x1e\x1d\x1d\x22\x28\x29\ +\x1b\x1f\x1a\x1f\x24\x20\x1e\x1f\x1b\x22\x25\x28\x23\x24\x27\x27\ +\x2e\x30\x00\x00\x00\x80\xb0\xce\x7f\xae\xcd\x81\xaf\xd0\x81\xad\ +\xd2\x85\xae\xd4\x8a\xb0\xd4\x8b\xb1\xd3\x8a\xb0\xcf\x88\xab\xcc\ +\x82\xa0\xc2\x6b\x81\xa2\x44\x55\x72\x33\x45\x63\x4b\x65\x83\x6e\ +\x8f\xaf\x7f\xa2\xc4\x86\xa9\xcd\x8c\xad\xcf\x8f\xae\xd2\x8c\xaf\ +\xd0\x8a\xb0\xcf\x89\xaf\xcf\x86\xac\xcd\x83\xa8\xcc\x87\xab\xd3\ +\x85\xae\xd3\x81\xae\xd0\x7e\xa9\xcb\x7c\xa7\xca\x75\xa2\xc7\x75\ +\xa0\xc5\x7a\x9f\xc4\x7f\xa2\xc6\x80\xa2\xc7\x81\xa1\xc7\x7c\x9e\ +\xc4\x78\x9d\xc1\x79\x9b\xbe\x76\x94\xb7\x74\x8f\xb4\x75\x90\xb8\ +\x7e\x9b\xc0\x84\xa3\xc8\x85\xa5\xd1\x83\xa1\xd2\x83\xa3\xd2\x85\ +\xa6\xd5\x84\xa8\xd5\x80\xa6\xd1\x83\xa4\xd0\x85\xa5\xd2\x86\xa6\ +\xd3\x8a\xa7\xd6\x89\xa4\xd4\x86\xa1\xd4\x80\x9d\xcf\x7a\x98\xca\ +\x7a\x99\xcb\x7f\x9d\xcd\x7f\x9f\xcd\x79\x9c\xc6\x74\x97\xc3\x71\ +\x94\xc0\x71\x96\xc3\x6f\x94\xc3\x6d\x8d\xc0\x6a\x8a\xba\x67\x86\ +\xb5\x68\x87\xb6\x68\x89\xb8\x69\x8b\xbb\x69\x8f\xbe\x6c\x92\xbf\ +\x70\x95\xc0\x71\x95\xc2\x75\x96\xc3\x7a\x9a\xc5\x7a\x9c\xc7\x78\ +\x9d\xc7\x73\x9d\xc3\x6d\x9c\xbc\x68\x98\xb7\x6b\x96\xb7\x5f\x7e\ +\x9f\x2e\x45\x62\x31\x47\x64\x55\x6e\x8b\x29\x44\x5e\x2e\x4a\x65\ +\x63\x84\xa5\x73\x94\xb9\x77\x99\xbf\x72\x96\xbf\x72\x99\xbf\x7d\ +\xa2\xc3\x7b\x92\xa1\x49\x53\x57\x34\x3a\x3e\x2e\x37\x36\x28\x2d\ +\x2f\x27\x2e\x2f\x25\x2e\x33\x22\x2e\x2c\x1d\x27\x27\x23\x2a\x2a\ +\x1e\x20\x20\x25\x22\x26\x24\x25\x22\x22\x22\x21\x22\x22\x1f\x20\ +\x23\x1f\x21\x26\x27\x26\x29\x2d\x1d\x1c\x1c\x28\x2c\x2b\x1f\x28\ +\x26\x25\x2a\x28\x1c\x1f\x17\x1f\x26\x22\x23\x27\x25\x1a\x25\x27\ +\x1f\x26\x20\x1e\x26\x27\x1c\x21\x19\x13\x14\x10\x2c\x31\x2e\x27\ +\x29\x23\x1c\x1b\x16\x16\x1a\x13\x2c\x37\x32\x22\x29\x29\x21\x23\ +\x23\x1f\x2b\x29\x1e\x25\x26\x1e\x20\x21\x1a\x22\x1f\x1d\x22\x20\ +\x22\x28\x28\x20\x1f\x1d\x23\x28\x22\x27\x2b\x2f\x1e\x1b\x17\x24\ +\x22\x22\x20\x21\x21\x1b\x1d\x1f\x1d\x1c\x18\x1f\x24\x21\x20\x27\ +\x25\x25\x2e\x2c\x28\x2c\x2a\x25\x2c\x2d\x20\x25\x1e\x1c\x21\x1f\ +\x22\x24\x27\x1e\x23\x21\x25\x26\x22\x26\x24\x24\x1e\x1f\x1b\x25\ +\x25\x22\x21\x26\x26\x2b\x33\x3a\x20\x24\x22\x1f\x20\x1b\x00\x00\ +\x00\x7a\xab\xc4\x7c\xac\xc9\x7f\xaf\xcd\x81\xad\xd0\x83\xad\xd0\ +\x8a\xb0\xd3\x8d\xb5\xd5\x89\xb3\xce\x85\xae\xc9\x89\xaf\xcd\x82\ +\xa4\xc6\x73\x90\xb4\x68\x83\xa5\x71\x93\xb2\x80\xa6\xc5\x85\xac\ +\xcd\x8a\xb1\xd3\x8d\xb4\xd0\x8e\xb4\xd1\x8f\xb6\xd1\x8c\xb4\xce\ +\x8b\xb3\xcd\x86\xb1\xcb\x87\xaf\xd0\x8d\xb0\xd3\x88\xaf\xce\x83\ +\xaf\xcd\x83\xac\xcb\x7f\xa9\xc9\x7c\xa7\xc7\x7c\xa7\xc6\x7d\xa6\ +\xc4\x80\xaa\xc6\x87\xad\xcb\x89\xab\xca\x86\xa9\xca\x84\xa9\xcc\ +\x84\xa9\xcb\x89\xaa\xd0\x8a\xa9\xd0\x87\xa7\xcd\x8e\xae\xcf\x94\ +\xb2\xd2\x93\xb3\xd3\x8d\xb0\xd3\x88\xb1\xd6\x87\xb1\xd7\x85\xaf\ +\xd6\x84\xad\xd2\x87\xad\xd2\x88\xaf\xd4\x8c\xb0\xd5\x8f\xb1\xd7\ +\x90\xaf\xd7\x8e\xac\xd8\x89\xab\xd8\x86\xaa\xd6\x85\xa9\xd3\x87\ +\xa8\xd2\x88\xa8\xd1\x83\xa5\xcb\x80\xa1\xcb\x7d\x9e\xca\x7a\xa0\ +\xc9\x78\x9e\xc8\x74\x9a\xc4\x6f\x95\xbf\x70\x96\xc0\x70\x95\xbf\ +\x6b\x92\xbd\x6a\x92\xc1\x6a\x92\xc5\x6b\x93\xc3\x6e\x94\xc0\x75\ +\x95\xc5\x7b\x99\xc9\x7b\x99\xc7\x7c\x9a\xc8\x78\x9b\xc7\x72\x9c\ +\xc4\x67\x96\xba\x63\x94\xb8\x64\x8d\xb5\x5b\x78\xa1\x34\x49\x6b\ +\x1c\x2f\x4d\x37\x49\x64\x17\x2a\x43\x1b\x2e\x4c\x4e\x69\x8f\x5e\ +\x7c\xa9\x69\x8a\xba\x6f\x92\xc0\x7b\x96\xb0\x5f\x6d\x71\x38\x47\ +\x4b\x32\x3b\x3c\x2a\x2e\x2d\x27\x2d\x2e\x28\x2e\x2e\x27\x2e\x32\ +\x24\x2f\x30\x21\x25\x23\x20\x26\x21\x24\x2a\x25\x20\x2c\x28\x26\ +\x26\x25\x24\x28\x23\x21\x22\x20\x24\x26\x23\x23\x2a\x2c\x1e\x28\ +\x26\x20\x28\x29\x1a\x21\x1b\x23\x22\x26\x1c\x23\x21\x25\x2a\x29\ +\x23\x24\x24\x20\x26\x25\x1f\x27\x28\x21\x20\x21\x20\x25\x1f\x22\ +\x28\x26\x18\x1f\x18\x18\x18\x13\x31\x37\x35\x2c\x30\x2c\x2c\x2d\ +\x2f\x14\x17\x11\x23\x28\x27\x24\x2e\x31\x23\x27\x28\x1f\x28\x28\ +\x20\x23\x20\x23\x2b\x28\x24\x23\x24\x1b\x21\x1c\x25\x24\x24\x18\ +\x1d\x1a\x20\x1e\x1c\x22\x21\x26\x1c\x1e\x20\x23\x24\x22\x1c\x20\ +\x1a\x24\x22\x1b\x19\x22\x1e\x1e\x28\x29\x28\x32\x34\x2b\x33\x36\ +\x22\x29\x26\x23\x21\x1e\x25\x29\x28\x21\x27\x22\x25\x27\x25\x1c\ +\x24\x1f\x1f\x22\x1a\x1d\x1e\x16\x20\x24\x24\x18\x1d\x1b\x1d\x27\ +\x29\x26\x27\x2a\x27\x30\x32\x26\x2d\x2d\x00\x00\x00\x63\x90\xa8\ +\x6d\x99\xb5\x7f\xab\xc8\x84\xaf\xcc\x84\xac\xcc\x88\xaf\xce\x83\ +\xae\xc8\x7d\xa8\xbf\x82\xae\xc5\x86\xb2\xcc\x87\xaf\xcf\x80\xa3\ +\xc5\x74\x95\xb5\x74\x9a\xb8\x88\xae\xcd\x8d\xb4\xd2\x8c\xb2\xd1\ +\x88\xb0\xca\x84\xad\xc6\x82\xab\xc4\x7e\xa4\xbc\x7d\xa5\xba\x7e\ +\xaa\xc2\x86\xb3\xcc\x8b\xb2\xcd\x8b\xb2\xcb\x85\xae\xc8\x82\xa9\ +\xc6\x80\xa5\xc5\x78\xa0\xbc\x77\xa2\xbd\x7b\xa6\xc1\x82\xac\xc9\ +\x8a\xaf\xcf\x93\xb2\xd1\x90\xb0\xcf\x8b\xae\xcf\x8e\xb1\xd2\x90\ +\xb3\xd6\x8f\xb3\xd7\x8e\xb2\xd3\x91\xb6\xd3\x97\xb8\xd3\x97\xb6\ +\xd2\x92\xb6\xd2\x8a\xb4\xd4\x84\xb2\xd3\x82\xb1\xd2\x82\xaf\xd0\ +\x84\xae\xd0\x88\xb2\xd2\x8d\xb5\xd5\x94\xb7\xd8\x93\xb5\xd9\x8f\ +\xb4\xd7\x8b\xb3\xd7\x87\xb4\xd6\x8a\xb2\xd6\x8b\xaf\xd3\x8b\xad\ +\xd3\x89\xaa\xd1\x87\xa7\xd0\x87\xa8\xd0\x84\xa9\xcd\x80\xa7\xcb\ +\x7b\xa2\xc6\x77\xa2\xc5\x79\xa6\xca\x7b\xa6\xca\x7b\xa4\xca\x78\ +\xa2\xcc\x77\xa2\xcf\x75\xa2\xcc\x76\xa0\xc8\x80\xa3\xcd\x85\xa6\ +\xcf\x85\xa8\xce\x86\xa8\xcd\x85\xa7\xcc\x7e\xa6\xc8\x78\xa4\xc6\ +\x77\xa1\xc7\x77\x9c\xc7\x6d\x8d\xb7\x4a\x63\x86\x1c\x2f\x4b\x2d\ +\x3d\x56\x19\x28\x42\x1d\x2e\x4d\x5b\x72\x9a\x71\x8b\xb8\x81\x93\ +\xae\x60\x71\x71\x39\x46\x47\x35\x3e\x3d\x29\x35\x36\x25\x2b\x2e\ +\x2b\x2e\x2d\x22\x2c\x2f\x1f\x28\x2a\x23\x2b\x27\x1e\x24\x22\x21\ +\x24\x22\x21\x25\x25\x23\x28\x26\x21\x28\x1f\x21\x24\x24\x27\x27\ +\x29\x23\x24\x24\x1e\x1f\x1f\x27\x31\x32\x22\x2b\x2b\x1e\x22\x20\ +\x1f\x21\x20\x27\x2f\x30\x25\x2b\x28\x1f\x23\x1d\x21\x21\x22\x21\ +\x27\x21\x28\x2e\x28\x20\x25\x1e\x1d\x1f\x1d\x21\x27\x27\x1a\x21\ +\x1d\x15\x19\x16\x26\x29\x29\x29\x2d\x2b\x20\x25\x28\x13\x16\x13\ +\x26\x2c\x29\x27\x36\x3d\x1b\x2a\x29\x1e\x23\x1c\x1e\x21\x20\x1c\ +\x1f\x1c\x26\x23\x23\x1f\x24\x24\x26\x2a\x22\x1c\x1f\x1b\x20\x22\ +\x1d\x20\x20\x1e\x1a\x22\x1c\x1f\x2a\x2d\x1c\x1d\x1d\x1c\x20\x1e\ +\x1d\x20\x1e\x1c\x22\x22\x20\x20\x1c\x21\x21\x1c\x1f\x22\x20\x24\ +\x25\x21\x20\x25\x23\x19\x21\x1e\x25\x2b\x27\x2d\x2e\x2e\x23\x25\ +\x20\x22\x24\x24\x24\x2d\x2f\x1f\x27\x28\x21\x25\x23\x21\x25\x23\ +\x1d\x28\x28\x1f\x2a\x2a\x00\x00\x00\x3b\x5c\x78\x52\x75\x95\x68\ +\x8d\xaa\x75\x9c\xb5\x7e\xa4\xbf\x7a\xa1\xbb\x6b\x93\xa9\x5a\x7f\ +\x92\x68\x8e\xa3\x80\xa9\xc1\x81\xa7\xc5\x6b\x8b\xa8\x44\x62\x7c\ +\x53\x76\x91\x74\x9a\xb8\x7d\xa1\xc1\x7d\xa0\xbf\x7c\xa0\xbb\x6c\ +\x91\xaa\x58\x7b\x93\x50\x6e\x85\x58\x79\x8d\x5d\x84\x9a\x67\x92\ +\xa5\x7e\xa8\xbb\x8a\xb0\xc6\x86\xab\xc6\x81\xa1\xc0\x72\x90\xb0\ +\x5c\x7b\x97\x61\x84\x9e\x76\x9d\xb8\x7f\xa6\xc5\x87\xa8\xca\x92\ +\xaf\xce\x91\xaf\xd0\x8d\xae\xce\x8c\xaf\xce\x8a\xaf\xce\x89\xb2\ +\xd2\x8d\xb4\xd3\x8d\xb4\xd2\x90\xb5\xd1\x92\xb3\xd0\x8f\xb1\xce\ +\x8b\xb1\xcf\x88\xb2\xd0\x83\xb0\xd0\x80\xae\xd1\x80\xae\xd0\x84\ +\xb3\xd1\x8c\xb8\xd3\x92\xb6\xd4\x93\xb2\xd3\x90\xb2\xd1\x8d\xb4\ +\xd2\x8d\xb7\xd6\x91\xb7\xd8\x92\xb4\xd8\x8d\xaf\xd6\x86\xab\xd2\ +\x83\xa5\xcd\x84\xa6\xcc\x84\xa7\xca\x7f\xa3\xc6\x7b\xa1\xc4\x78\ +\xa4\xc5\x7b\xa9\xca\x80\xab\xcd\x84\xab\xcc\x81\xaa\xce\x7b\xaa\ +\xcf\x77\xaa\xcc\x7a\xa9\xca\x85\xad\xcf\x8d\xb1\xd4\x8f\xb5\xd5\ +\x8c\xb0\xcf\x8d\xaf\xcd\x8b\xae\xcc\x88\xae\xcd\x89\xae\xd2\x89\ +\xac\xd3\x83\xa5\xca\x68\x85\xa5\x2b\x3f\x5b\x26\x36\x4e\x24\x35\ +\x4f\x2c\x41\x60\x79\x8e\xaa\x74\x82\x89\x3d\x4a\x4a\x33\x3b\x3c\ +\x29\x32\x35\x29\x30\x2c\x24\x31\x32\x22\x27\x27\x21\x29\x27\x2b\ +\x31\x30\x28\x2c\x2d\x24\x30\x30\x23\x32\x30\x20\x28\x25\x26\x2b\ +\x2a\x25\x2c\x2c\x26\x2b\x2b\x20\x26\x24\x22\x21\x21\x24\x25\x23\ +\x1b\x22\x1f\x1e\x1d\x1c\x23\x25\x24\x1e\x23\x24\x1d\x21\x28\x22\ +\x23\x27\x1f\x26\x23\x25\x27\x28\x27\x2b\x27\x22\x23\x1f\x21\x27\ +\x20\x1f\x21\x1e\x23\x29\x25\x26\x2d\x32\x21\x27\x29\x1a\x1d\x1f\ +\x1e\x1f\x20\x2a\x2f\x2a\x24\x2a\x28\x18\x19\x12\x20\x21\x21\x29\ +\x32\x36\x21\x26\x27\x1e\x1f\x1d\x1f\x28\x29\x21\x23\x21\x23\x27\ +\x25\x21\x22\x21\x21\x26\x20\x1d\x1b\x17\x23\x23\x21\x21\x22\x1e\ +\x20\x27\x24\x21\x2f\x2c\x1c\x22\x21\x1e\x23\x20\x24\x2d\x31\x20\ +\x29\x2a\x20\x2a\x2c\x1e\x1d\x1d\x1e\x1e\x1d\x1d\x20\x21\x21\x28\ +\x26\x18\x1e\x18\x1c\x20\x1c\x1f\x21\x1d\x22\x1e\x1f\x20\x25\x1e\ +\x20\x2b\x26\x1a\x21\x1c\x27\x29\x2b\x25\x2d\x2d\x25\x28\x25\x20\ +\x27\x24\x00\x00\x00\x2e\x46\x63\x4c\x68\x88\x47\x66\x83\x42\x64\ +\x7b\x54\x79\x8f\x5e\x83\x99\x4a\x6a\x7c\x2b\x46\x56\x47\x64\x75\ +\x66\x86\x9f\x6f\x8d\xa8\x50\x69\x80\x24\x3c\x4f\x43\x62\x79\x67\ +\x89\xa9\x5f\x7f\xa4\x44\x60\x80\x42\x5f\x78\x3c\x57\x6d\x23\x3a\ +\x51\x35\x49\x62\x5b\x72\x8d\x5d\x79\x92\x43\x60\x74\x43\x60\x71\ +\x6c\x8b\x9d\x81\xa0\xbb\x78\x93\xb3\x5b\x73\x90\x2b\x43\x59\x42\ +\x5e\x71\x6f\x91\xa9\x6b\x8d\xab\x6a\x89\xa8\x77\x95\xb2\x7b\x9a\ +\xb7\x71\x92\xae\x67\x89\xa4\x66\x8a\xa6\x74\x98\xb5\x8d\xb0\xcd\ +\x8e\xb2\xcd\x88\xaf\xc7\x81\xa6\xbe\x82\xa0\xbd\x82\xa1\xc1\x83\ +\xa6\xc6\x81\xa7\xc9\x81\xa9\xce\x82\xad\xd1\x83\xb2\xd1\x88\xb3\ +\xce\x8b\xac\xca\x81\x9e\xba\x7d\x9d\xb4\x89\xad\xc5\x90\xb3\xd2\ +\x97\xb5\xd8\x91\xae\xd1\x7d\x9e\xc1\x72\x97\xb9\x74\x99\xba\x79\ +\x9c\xbd\x7f\x9f\xbf\x7c\x9b\xbc\x6e\x8e\xaf\x6b\x93\xb0\x79\xa5\ +\xc2\x82\xaa\xc9\x86\xa9\xcb\x84\xa9\xcb\x7d\xa8\xca\x78\xa8\xc7\ +\x7d\xad\xc9\x8b\xb1\xcf\x90\xb4\xd2\x8d\xb1\xcd\x8a\xac\xca\x8d\ +\xad\xcc\x92\xb0\xd0\x90\xb1\xd2\x8f\xb1\xd3\x8e\xb1\xd4\x8b\xae\ +\xcf\x79\x96\xb6\x43\x58\x76\x1e\x2f\x4b\x33\x47\x5e\x56\x68\x73\ +\x45\x50\x53\x2e\x3b\x3a\x2d\x37\x37\x28\x32\x2f\x24\x2f\x33\x21\ +\x2f\x2c\x1f\x2b\x2a\x29\x2e\x2c\x22\x28\x22\x23\x23\x21\x25\x29\ +\x27\x20\x25\x24\x24\x27\x25\x22\x23\x23\x22\x25\x26\x25\x22\x1b\ +\x29\x2e\x2f\x25\x2d\x29\x21\x28\x25\x20\x26\x2a\x1d\x20\x1e\x23\ +\x23\x20\x1f\x23\x29\x24\x28\x2d\x20\x20\x24\x28\x27\x29\x21\x20\ +\x1e\x20\x24\x21\x23\x23\x20\x1b\x20\x1a\x23\x28\x24\x24\x27\x2a\ +\x24\x26\x22\x26\x26\x24\x1f\x23\x21\x21\x25\x24\x16\x14\x17\x31\ +\x2f\x32\x24\x29\x2b\x1d\x20\x19\x1c\x1e\x1a\x2a\x2e\x2f\x23\x27\ +\x23\x1d\x23\x23\x1b\x22\x24\x21\x24\x2a\x20\x23\x23\x1e\x2c\x32\ +\x1a\x23\x1f\x19\x1c\x17\x1c\x20\x1b\x1c\x1f\x1d\x1d\x20\x1f\x20\ +\x1c\x1a\x1d\x22\x1b\x22\x26\x25\x22\x27\x24\x23\x26\x23\x23\x2b\ +\x29\x22\x1f\x22\x1f\x25\x23\x18\x20\x18\x1f\x22\x1f\x28\x2f\x30\ +\x1e\x21\x1d\x24\x28\x24\x24\x2d\x31\x21\x22\x20\x1f\x25\x25\x23\ +\x2e\x31\x1d\x1e\x20\x1f\x22\x1c\x20\x22\x1e\x23\x27\x22\x00\x00\ +\x00\x31\x4a\x62\x58\x77\x95\x56\x7a\x97\x3e\x64\x7d\x31\x55\x6e\ +\x2e\x50\x66\x26\x3f\x54\x1d\x34\x46\x4a\x67\x7a\x67\x87\x9f\x5c\ +\x7b\x96\x32\x4d\x64\x1e\x35\x4a\x47\x63\x7c\x6e\x8d\xaf\x6b\x88\ +\xaf\x51\x6c\x90\x38\x52\x6f\x1b\x31\x47\x0b\x1b\x2f\x32\x42\x5a\ +\x71\x86\xa2\x6c\x84\x9f\x43\x56\x6d\x24\x39\x4a\x29\x40\x54\x4b\ +\x64\x7f\x5a\x70\x8f\x4f\x62\x79\x1f\x31\x41\x32\x49\x57\x74\x91\ +\xa7\x73\x92\xb0\x65\x85\xa1\x56\x75\x8f\x4a\x67\x7e\x39\x57\x6b\ +\x2b\x49\x5e\x3e\x5d\x76\x54\x71\x8c\x61\x7c\x9a\x70\x8f\xa7\x6b\ +\x8e\xa2\x57\x77\x8c\x50\x6b\x84\x5c\x77\x94\x6c\x8a\xac\x77\x95\ +\xb8\x80\x9e\xc4\x83\xa6\xc9\x86\xaf\xce\x87\xaf\xcb\x81\xa0\xbe\ +\x64\x7b\x98\x4c\x66\x7d\x75\x93\xad\x8f\xab\xcb\x90\xa9\xcb\x77\ +\x92\xaf\x52\x6f\x89\x49\x69\x83\x4f\x71\x8d\x5e\x83\x9d\x6d\x8e\ +\xa9\x6d\x8b\xa5\x49\x65\x7e\x40\x62\x78\x68\x8f\xa7\x80\xa4\xc1\ +\x85\xa4\xc3\x7f\x9f\xbf\x72\x95\xb2\x71\x98\xb1\x79\xa3\xbb\x86\ +\xab\xc4\x84\xa4\xbc\x70\x8f\xa5\x71\x94\xae\x82\xa5\xc4\x8f\xb1\ +\xd0\x94\xb3\xd5\x93\xb4\xd7\x91\xb4\xd6\x8d\xaf\xce\x89\xa7\xc4\ +\x70\x81\x91\x6c\x79\x7e\x4b\x58\x5d\x36\x40\x44\x2a\x36\x36\x2a\ +\x2e\x33\x2e\x34\x3a\x3e\x4a\x50\x26\x31\x37\x29\x2b\x2a\x1f\x22\ +\x20\x21\x28\x28\x23\x2f\x2c\x20\x22\x21\x26\x31\x32\x1e\x26\x28\ +\x22\x25\x27\x22\x2a\x27\x20\x25\x22\x2a\x29\x25\x26\x2d\x2c\x22\ +\x26\x26\x27\x2e\x31\x22\x2d\x30\x25\x2a\x2e\x22\x30\x33\x22\x28\ +\x2b\x1f\x20\x1c\x28\x2d\x2a\x25\x26\x26\x29\x29\x26\x23\x25\x25\ +\x22\x24\x21\x1d\x25\x24\x1c\x23\x1d\x26\x2a\x26\x1b\x22\x20\x1e\ +\x23\x20\x24\x2c\x30\x23\x2a\x2f\x0f\x11\x0f\x2d\x29\x28\x27\x2a\ +\x27\x1e\x24\x21\x17\x19\x15\x2b\x2c\x30\x22\x27\x27\x22\x21\x20\ +\x1b\x20\x19\x21\x2b\x2d\x22\x2c\x2e\x21\x24\x24\x1d\x28\x27\x1c\ +\x1e\x1c\x28\x25\x23\x23\x27\x29\x1d\x24\x22\x1d\x22\x1f\x21\x27\ +\x24\x22\x25\x22\x1f\x1c\x1a\x1f\x20\x1d\x1b\x1f\x19\x22\x25\x20\ +\x21\x20\x1d\x20\x23\x25\x1e\x2b\x2f\x1e\x26\x26\x20\x26\x23\x2c\ +\x2c\x31\x1a\x23\x24\x1f\x29\x27\x22\x28\x26\x26\x2f\x32\x23\x26\ +\x28\x23\x20\x20\x18\x18\x17\x20\x23\x20\x00\x00\x00\x3d\x5b\x73\ +\x60\x85\xa2\x6e\x9a\xba\x67\x94\xb2\x5c\x84\xa0\x4d\x6e\x8a\x37\ +\x51\x6d\x3a\x56\x6e\x60\x84\x9b\x74\x9b\xb4\x6a\x90\xab\x4e\x71\ +\x8b\x3e\x5d\x78\x51\x6d\x8c\x72\x92\xb3\x7d\x9d\xc0\x76\x96\xbb\ +\x61\x80\xa1\x3b\x53\x6b\x0d\x1c\x2f\x1e\x30\x42\x4a\x64\x7a\x5c\ +\x76\x8f\x3b\x4e\x68\x23\x34\x4c\x27\x3b\x55\x3c\x53\x71\x4b\x60\ +\x7f\x41\x52\x6a\x26\x37\x48\x2b\x40\x4e\x6e\x89\xa0\x88\xa9\xc6\ +\x7a\xa1\xbb\x6d\x92\xa9\x50\x6f\x82\x25\x3f\x4f\x10\x29\x39\x3f\ +\x5b\x71\x67\x83\x9f\x6c\x88\xa4\x55\x72\x8c\x3a\x5a\x6d\x23\x3f\ +\x4f\x1f\x38\x4a\x41\x5d\x75\x5f\x7d\x9c\x64\x7f\xa3\x62\x7a\x9f\ +\x78\x95\xb7\x84\xa9\xc6\x82\xa8\xc2\x7b\x98\xb3\x5a\x6d\x89\x28\ +\x3a\x54\x55\x6a\x87\x7e\x97\xb6\x81\x99\xb6\x57\x6e\x86\x2d\x48\ +\x5e\x49\x67\x80\x4f\x71\x8e\x40\x65\x7f\x47\x68\x81\x57\x72\x88\ +\x2c\x40\x53\x1c\x31\x45\x4d\x69\x80\x6f\x8e\xa7\x77\x94\xb0\x6b\ +\x89\xa4\x4f\x6b\x83\x43\x5f\x74\x61\x82\x95\x7b\x9a\xae\x66\x81\ +\x91\x38\x51\x61\x4a\x6c\x81\x72\x9b\xb5\x89\xb0\xcf\x93\xb5\xd6\ +\x96\xb5\xd8\x93\xb5\xd6\x8f\xb2\xce\x8f\x9e\xa5\x30\x3a\x3f\x3f\ +\x46\x48\x2f\x39\x3f\x27\x2f\x31\x25\x30\x30\x23\x2f\x2f\x26\x33\ +\x34\x31\x3c\x37\x25\x2a\x29\x26\x28\x25\x28\x2a\x2b\x27\x27\x26\ +\x21\x27\x28\x21\x26\x27\x29\x2b\x30\x23\x2d\x2d\x2c\x2b\x30\x25\ +\x24\x24\x22\x21\x1c\x21\x29\x25\x25\x2a\x27\x26\x24\x20\x20\x24\ +\x26\x23\x23\x27\x1e\x23\x25\x23\x28\x2a\x21\x24\x28\x24\x24\x23\ +\x2a\x32\x32\x1d\x1e\x1e\x25\x29\x25\x1f\x22\x1f\x22\x28\x23\x20\ +\x25\x24\x23\x1f\x1e\x25\x25\x21\x1e\x22\x1e\x21\x22\x20\x24\x2c\ +\x2e\x23\x26\x2a\x17\x16\x12\x28\x2b\x27\x22\x25\x26\x1c\x23\x25\ +\x1b\x1c\x1b\x24\x29\x2a\x23\x2d\x2d\x22\x29\x26\x1d\x25\x1f\x29\ +\x33\x37\x1f\x21\x1f\x22\x22\x1e\x21\x26\x21\x1f\x21\x23\x24\x33\ +\x36\x22\x27\x28\x19\x1e\x1d\x1e\x2a\x28\x1c\x1c\x20\x22\x28\x2c\ +\x20\x24\x26\x1c\x23\x21\x1f\x1e\x1d\x20\x21\x1e\x24\x31\x2e\x24\ +\x2b\x2b\x2a\x38\x3c\x24\x31\x2d\x20\x24\x21\x22\x2e\x2b\x14\x1c\ +\x18\x1c\x21\x1f\x1a\x1b\x17\x20\x23\x1f\x19\x1e\x1a\x1a\x1c\x1e\ +\x26\x28\x25\x1b\x24\x19\x00\x00\x00\x6b\x8c\xa8\x73\x9c\xbb\x7e\ +\xad\xcd\x7c\xac\xcb\x77\xa6\xc5\x70\x98\xb9\x69\x89\xab\x6e\x8e\ +\xae\x7a\xa0\xbd\x7c\xa7\xc4\x75\xa4\xc2\x6a\x98\xb6\x65\x8d\xb0\ +\x6c\x8f\xb5\x77\x9d\xbf\x80\xa6\xc9\x82\xaa\xcf\x79\xa0\xc2\x5c\ +\x79\x94\x1c\x2d\x40\x16\x25\x35\x39\x51\x63\x42\x5d\x73\x54\x68\ +\x83\x53\x67\x83\x61\x79\x96\x72\x8d\xac\x75\x8f\xb1\x67\x80\x9e\ +\x52\x68\x81\x48\x5f\x75\x67\x85\x9d\x8c\xb1\xcd\x87\xb2\xcb\x7d\ +\xa5\xba\x67\x85\x98\x33\x48\x56\x0a\x1b\x28\x3c\x55\x67\x78\x98\ +\xb0\x84\xa5\xc3\x76\x95\xb4\x4f\x6c\x84\x1a\x32\x42\x10\x25\x33\ +\x3b\x55\x68\x6a\x88\xa7\x6f\x8d\xaf\x65\x7e\xa2\x59\x73\x94\x6d\ +\x89\xa6\x71\x8f\xaa\x6f\x89\xa1\x51\x61\x7a\x1d\x2b\x44\x2b\x3d\ +\x59\x4e\x64\x80\x62\x76\x91\x3d\x4f\x65\x31\x48\x5e\x62\x81\x9e\ +\x6e\x95\xb4\x5c\x82\xa1\x43\x62\x7f\x34\x47\x62\x1e\x28\x3d\x0f\ +\x1a\x2e\x30\x46\x5c\x45\x61\x78\x4d\x6d\x83\x45\x63\x7a\x29\x40\ +\x57\x21\x34\x48\x3b\x52\x62\x57\x70\x7d\x40\x55\x60\x17\x2b\x3c\ +\x45\x65\x79\x72\x9b\xb4\x84\xad\xcb\x8f\xb5\xd5\x93\xb4\xd6\x96\ +\xb2\xcd\x73\x83\x86\x35\x49\x48\x32\x3d\x3e\x28\x33\x33\x26\x2f\ +\x35\x25\x27\x2a\x2a\x30\x32\x23\x2d\x2f\x25\x2c\x31\x20\x2c\x2a\ +\x26\x2f\x27\x24\x2a\x27\x24\x29\x24\x23\x24\x20\x2c\x33\x31\x24\ +\x25\x23\x27\x2d\x2e\x22\x2b\x2b\x1f\x24\x20\x1e\x22\x1c\x1e\x27\ +\x20\x24\x2d\x2b\x22\x22\x28\x2a\x2e\x2b\x22\x28\x29\x25\x2d\x32\ +\x1c\x29\x2b\x2c\x35\x37\x23\x2a\x30\x1e\x1f\x1e\x28\x2e\x2b\x1f\ +\x23\x20\x2b\x31\x2e\x1f\x22\x1e\x25\x28\x21\x22\x22\x1a\x28\x2a\ +\x27\x25\x27\x23\x21\x27\x22\x2a\x32\x30\x1d\x23\x21\x1c\x23\x29\ +\x1d\x24\x24\x1d\x1d\x1a\x27\x2b\x27\x22\x25\x28\x1b\x1c\x1e\x1f\ +\x27\x26\x25\x2d\x2d\x22\x24\x23\x22\x20\x24\x22\x20\x1f\x20\x24\ +\x26\x1e\x21\x1e\x20\x23\x21\x21\x27\x29\x1e\x25\x22\x21\x25\x25\ +\x23\x2b\x2c\x1d\x29\x2e\x1a\x21\x25\x20\x28\x2c\x25\x2e\x34\x17\ +\x1d\x1b\x25\x27\x28\x22\x2a\x2d\x1b\x24\x29\x20\x23\x29\x24\x26\ +\x27\x18\x1e\x19\x1d\x23\x22\x1d\x1d\x1f\x21\x25\x26\x20\x25\x23\ +\x20\x21\x21\x28\x27\x27\x21\x24\x1f\x1a\x1b\x19\x1f\x1d\x1b\x28\ +\x25\x24\x00\x00\x00\x87\xab\xca\x83\xac\xcd\x83\xb2\xd2\x83\xb1\ +\xd2\x81\xae\xd1\x7c\xa9\xce\x7e\xa3\xc9\x83\xa4\xca\x85\xa9\xcb\ +\x80\xa8\xcb\x79\xa7\xc8\x76\xa6\xc8\x75\xa3\xc8\x79\xa4\xc9\x7c\ +\xa7\xca\x83\xab\xd0\x85\xb0\xd6\x81\xac\xd0\x72\x93\xb1\x36\x4b\ +\x5f\x1b\x2c\x3b\x4c\x63\x76\x4c\x62\x7c\x52\x67\x83\x73\x8d\xa6\ +\x82\xa3\xbb\x8c\xb1\xcb\x8d\xb3\xd0\x86\xaa\xca\x7a\x9b\xba\x75\ +\x94\xb1\x7c\x9f\xbc\x8d\xb2\xcf\x8c\xb2\xcf\x84\xac\xc3\x75\x93\ +\xa9\x41\x53\x64\x09\x15\x23\x2d\x3f\x51\x5b\x75\x8b\x85\xa5\xc1\ +\x88\xaa\xca\x78\x96\xb5\x4c\x65\x7c\x1b\x2f\x42\x32\x48\x5f\x6a\ +\x89\xa7\x78\x99\xbc\x6d\x87\xab\x45\x57\x79\x34\x46\x64\x41\x54\ +\x6f\x43\x57\x70\x38\x4b\x65\x2b\x40\x5a\x38\x50\x6b\x3c\x55\x71\ +\x35\x4c\x68\x29\x3e\x57\x2c\x45\x5e\x65\x87\xa6\x80\xab\xcd\x7c\ +\xa4\xc7\x6b\x8b\xae\x45\x58\x77\x1c\x26\x3c\x0c\x18\x2c\x3e\x58\ +\x6e\x5a\x7d\x95\x56\x7c\x94\x4b\x6f\x87\x39\x52\x6e\x37\x49\x63\ +\x3f\x54\x68\x3a\x52\x62\x2c\x41\x54\x1f\x35\x4e\x4e\x6b\x87\x7e\ +\xa3\xbe\x87\xb0\xcc\x9a\xb9\xce\x85\x97\xa2\x51\x5b\x60\x3a\x43\ +\x4b\x30\x3c\x41\x34\x41\x3e\x23\x2f\x2f\x2b\x30\x34\x20\x27\x28\ +\x24\x2c\x2a\x30\x3a\x3a\x2b\x2d\x29\x22\x21\x1b\x2c\x32\x2e\x28\ +\x31\x32\x23\x26\x24\x25\x28\x27\x24\x24\x23\x26\x25\x25\x28\x2d\ +\x2d\x25\x33\x35\x20\x23\x22\x21\x28\x22\x2a\x35\x36\x25\x2e\x2e\ +\x27\x2a\x27\x26\x2a\x28\x2f\x37\x38\x21\x29\x2e\x21\x27\x2d\x2c\ +\x38\x38\x27\x2a\x2a\x22\x21\x21\x29\x2b\x2d\x24\x28\x29\x1f\x1e\ +\x1e\x22\x23\x21\x26\x28\x27\x1d\x1e\x1f\x24\x29\x27\x26\x27\x2a\ +\x1f\x20\x20\x21\x25\x22\x22\x26\x27\x25\x2a\x2f\x1a\x1e\x21\x1c\ +\x1f\x1f\x2f\x2d\x2f\x20\x26\x25\x1c\x1c\x1b\x1f\x23\x24\x2a\x35\ +\x37\x2c\x37\x36\x29\x2e\x2c\x21\x23\x21\x21\x28\x29\x1f\x23\x1d\ +\x25\x28\x27\x25\x2c\x2d\x29\x37\x37\x1f\x1f\x1a\x24\x27\x24\x1f\ +\x26\x25\x22\x2d\x2c\x17\x1e\x1a\x20\x24\x26\x21\x28\x24\x1f\x24\ +\x25\x20\x24\x25\x25\x33\x36\x20\x24\x26\x1d\x22\x21\x1e\x29\x27\ +\x1e\x21\x1f\x23\x2e\x2f\x23\x29\x2b\x2d\x31\x34\x22\x22\x22\x27\ +\x25\x26\x21\x21\x1f\x1f\x1a\x15\x23\x21\x1f\x28\x26\x27\x00\x00\ +\x00\x8b\xaf\xd1\x86\xb1\xd2\x82\xb1\xd1\x82\xb0\xd2\x82\xaf\xd3\ +\x7d\xab\xd0\x7c\xa5\xcb\x7e\xa1\xc7\x7f\xa1\xc4\x7a\xa0\xc2\x79\ +\xa2\xc5\x7a\xa7\xcb\x7c\xab\xd0\x7d\xab\xcf\x84\xaf\xd2\x85\xaf\ +\xd3\x85\xaf\xd6\x81\xad\xd1\x79\xa1\xc0\x50\x6e\x82\x1d\x36\x44\ +\x53\x6f\x7f\x69\x83\x9b\x3f\x57\x70\x5f\x7e\x91\x84\xab\xbe\x8a\ +\xb6\xcc\x8f\xba\xd4\x88\xb4\xd3\x83\xaf\xce\x80\xab\xca\x81\xac\ +\xcb\x8b\xb2\xd2\x8d\xb1\xcf\x87\xad\xc8\x84\xa1\xbb\x51\x61\x76\ +\x0a\x15\x25\x29\x38\x49\x39\x4e\x63\x67\x82\x9b\x8c\xad\xca\x88\ +\xaa\xca\x7c\x99\xb8\x5b\x71\x8f\x4d\x66\x85\x6c\x8e\xaf\x7f\x9f\ +\xc1\x6a\x81\xa5\x31\x40\x61\x14\x22\x3f\x18\x28\x41\x37\x4b\x64\ +\x4e\x69\x84\x5c\x7d\x99\x68\x8e\xa8\x6c\x8e\xac\x5e\x7b\x9a\x47\ +\x61\x80\x45\x5f\x7e\x6d\x8f\xaf\x86\xad\xcf\x8a\xaf\xd3\x81\xa2\ +\xc8\x6f\x88\xa9\x3d\x4c\x67\x12\x23\x37\x44\x64\x77\x70\x9c\xb2\ +\x6f\xa0\xb7\x6c\x9c\xb3\x68\x8f\xab\x6d\x8b\xa6\x6f\x88\xa3\x65\ +\x7e\x99\x52\x6c\x8a\x4f\x6b\x8d\x6a\x8b\xaa\x8e\xaf\xc6\x83\x93\ +\x99\x4f\x5b\x5e\x3d\x44\x4f\x37\x42\x43\x35\x3d\x44\x2a\x36\x3a\ +\x1f\x2b\x29\x22\x32\x31\x1d\x25\x25\x22\x27\x28\x22\x23\x22\x2c\ +\x2f\x31\x24\x27\x20\x23\x1d\x17\x29\x2b\x2a\x2a\x2f\x2f\x2b\x2d\ +\x30\x1e\x21\x1c\x2c\x28\x2a\x27\x26\x22\x24\x25\x23\x1e\x29\x27\ +\x22\x27\x26\x25\x2d\x28\x1e\x25\x21\x1f\x1e\x1e\x20\x24\x1f\x24\ +\x22\x22\x26\x2e\x31\x23\x25\x25\x23\x20\x1c\x2a\x27\x25\x26\x28\ +\x28\x25\x27\x24\x27\x2a\x28\x23\x28\x23\x22\x23\x22\x29\x2b\x27\ +\x26\x2a\x2a\x2c\x34\x37\x25\x30\x2b\x23\x2c\x2b\x27\x2d\x2d\x26\ +\x2b\x2c\x20\x22\x20\x20\x27\x27\x19\x1c\x1a\x1b\x17\x15\x2c\x2c\ +\x2b\x20\x28\x24\x1e\x26\x20\x19\x1d\x1a\x24\x2a\x2a\x23\x2f\x32\ +\x21\x2f\x31\x1e\x24\x22\x1c\x1d\x1c\x21\x23\x1e\x1e\x23\x20\x21\ +\x21\x1d\x21\x25\x1d\x26\x27\x26\x31\x36\x30\x28\x2b\x24\x1e\x20\ +\x1a\x1a\x1e\x18\x1c\x1f\x23\x1d\x23\x21\x23\x22\x21\x25\x2d\x2b\ +\x21\x27\x24\x1c\x1f\x1d\x27\x2a\x24\x23\x26\x24\x1e\x22\x1c\x11\ +\x17\x16\x1c\x1d\x1c\x1e\x22\x1b\x19\x1b\x14\x20\x24\x22\x1b\x1e\ +\x1c\x20\x1e\x1b\x25\x24\x20\x26\x26\x24\x00\x00\x00\x88\xae\xcd\ +\x85\xae\xcf\x80\xaf\xcf\x7f\xaf\xd0\x7f\xae\xcd\x7b\xaa\xca\x78\ +\xa4\xc6\x77\x9e\xc1\x77\x9d\xbf\x78\x9e\xc0\x7b\xa2\xc4\x7a\xa8\ +\xca\x78\xaa\xcc\x7b\xac\xcb\x80\xae\xca\x7e\xaa\xc8\x7e\xa8\xcc\ +\x7a\xa6\xcb\x76\xa3\xc2\x60\x87\x9c\x24\x45\x52\x38\x57\x64\x6c\ +\x8a\x9c\x44\x62\x72\x3f\x61\x6e\x7b\xa5\xb5\x89\xb7\xcd\x8b\xba\ +\xd4\x85\xb4\xd3\x7f\xae\xcc\x7a\xad\xc7\x7f\xad\xcc\x87\xb1\xd0\ +\x8c\xb2\xcf\x8a\xb0\xcc\x8b\xa8\xc5\x5b\x71\x86\x0f\x1e\x2c\x29\ +\x39\x47\x3d\x50\x63\x40\x5a\x71\x7f\xa0\xbb\x8b\xaf\xcd\x89\xac\ +\xce\x83\xa2\xc6\x7b\x9c\xbe\x80\xa6\xc6\x84\xa4\xc4\x60\x76\x96\ +\x27\x34\x55\x25\x33\x4f\x25\x38\x4f\x3d\x56\x6f\x6d\x90\xab\x7f\ +\xa9\xc7\x86\xb4\xcf\x86\xb2\xcd\x80\xa7\xc7\x7a\x9c\xbd\x78\x98\ +\xb9\x84\xa6\xc7\x8c\xb0\xd1\x8f\xb2\xd4\x8b\xae\xcf\x84\xa3\xc2\ +\x61\x78\x91\x1c\x30\x42\x3b\x5c\x6a\x7a\xa5\xba\x7a\xad\xc4\x73\ +\xab\xc3\x73\xa6\xc2\x80\xa6\xc3\x82\xa1\xbe\x83\xa0\xc2\x7d\x9b\ +\xc1\x83\xa2\xc3\x87\x9e\xab\x5e\x6f\x6e\x3b\x45\x47\x36\x3f\x45\ +\x33\x40\x45\x2a\x35\x38\x2b\x30\x36\x29\x33\x36\x24\x34\x37\x23\ +\x2a\x2b\x24\x29\x25\x28\x2c\x26\x22\x1e\x1c\x2f\x35\x36\x29\x30\ +\x30\x1e\x20\x1d\x2c\x30\x31\x2b\x38\x39\x26\x2f\x2f\x28\x2b\x2d\ +\x2e\x32\x34\x2b\x30\x31\x25\x29\x27\x25\x2c\x2a\x21\x28\x29\x22\ +\x26\x27\x22\x24\x23\x25\x26\x23\x2c\x29\x29\x21\x23\x1d\x27\x37\ +\x3b\x2a\x35\x3d\x1e\x26\x23\x2a\x30\x2e\x23\x27\x25\x21\x24\x25\ +\x28\x29\x2c\x27\x2b\x2b\x25\x32\x33\x21\x2b\x29\x20\x21\x1d\x28\ +\x30\x32\x21\x2a\x29\x22\x23\x1e\x22\x21\x20\x23\x1e\x20\x1f\x21\ +\x1d\x1e\x20\x22\x22\x24\x20\x15\x17\x10\x26\x29\x28\x2a\x2e\x2d\ +\x20\x27\x27\x17\x17\x16\x27\x2e\x2c\x2a\x30\x33\x22\x28\x29\x1e\ +\x23\x25\x1c\x21\x21\x23\x28\x23\x20\x26\x21\x1c\x24\x23\x1c\x20\ +\x1f\x1f\x1e\x1e\x1c\x1f\x1a\x1e\x1a\x16\x1f\x23\x23\x22\x26\x29\ +\x23\x2e\x2c\x1a\x1e\x1b\x1a\x1f\x1d\x1b\x21\x1e\x1f\x26\x23\x1e\ +\x20\x1f\x1e\x1e\x20\x20\x20\x1d\x1e\x1c\x19\x1c\x1e\x1d\x21\x23\ +\x24\x1d\x22\x1d\x1b\x19\x15\x1d\x1e\x1e\x1d\x1f\x1e\x1d\x1e\x1e\ +\x24\x21\x21\x24\x25\x23\x00\x00\x00\x80\xab\xc8\x81\xaa\xcc\x7e\ +\xab\xd0\x78\xac\xce\x75\xa9\xca\x73\xa6\xc5\x70\xa3\xc3\x71\x9f\ +\xc2\x75\xa1\xc6\x78\xa3\xc5\x79\xa6\xc7\x76\xa9\xca\x72\xaa\xca\ +\x6f\xa6\xc1\x6b\x9d\xb4\x68\x94\xae\x6a\x94\xb4\x69\x95\xb8\x6d\ +\x98\xba\x66\x8d\xa9\x3f\x5f\x72\x1d\x3a\x48\x49\x66\x75\x3a\x58\ +\x66\x27\x4a\x56\x6f\x9a\xa9\x89\xba\xd1\x84\xb6\xd2\x7f\xb2\xd0\ +\x77\xa9\xc3\x6e\xa2\xb8\x72\xa3\xbb\x7d\xa8\xc3\x86\xae\xca\x88\ +\xae\xca\x89\xac\xc6\x64\x81\x95\x1b\x30\x3e\x1c\x2c\x3b\x28\x3c\ +\x4f\x2d\x4a\x61\x71\x95\xb0\x89\xb2\xd1\x84\xb0\xd2\x86\xac\xd2\ +\x8a\xae\xd0\x88\xad\xcf\x84\xa1\xc3\x53\x66\x85\x1e\x2d\x48\x3d\ +\x50\x68\x3d\x55\x6d\x36\x53\x6c\x73\x98\xb5\x8b\xb3\xd3\x8b\xb8\ +\xd7\x84\xb4\xd2\x85\xb3\xd1\x88\xb1\xd1\x8c\xaf\xcf\x8e\xb2\xd3\ +\x8f\xb4\xd6\x8d\xb2\xd3\x8a\xaf\xcf\x88\xad\xcb\x70\x8d\xa5\x26\ +\x3d\x4c\x2c\x48\x54\x79\x9e\xb4\x80\xaf\xcb\x79\xae\xcb\x7c\xaf\ +\xce\x81\xae\xcd\x84\xaa\xc8\x89\xa8\xca\x8f\x9f\xae\x69\x71\x76\ +\x44\x49\x51\x3a\x48\x4a\x31\x3e\x3f\x30\x3a\x3e\x2b\x33\x36\x2f\ +\x34\x33\x2e\x39\x41\x2f\x38\x3b\x24\x30\x33\x21\x27\x26\x25\x24\ +\x22\x25\x27\x27\x1a\x1d\x1b\x36\x34\x39\x26\x2a\x29\x1d\x24\x23\ +\x2d\x33\x2f\x2f\x3a\x3e\x26\x2e\x2c\x22\x2c\x2a\x1f\x27\x28\x28\ +\x28\x29\x23\x25\x1f\x24\x2b\x2a\x27\x2b\x2e\x2a\x28\x26\x1f\x20\ +\x1e\x25\x29\x26\x23\x27\x23\x1e\x25\x21\x27\x2d\x2e\x25\x29\x2f\ +\x20\x22\x23\x26\x2e\x31\x26\x33\x38\x1f\x24\x22\x24\x26\x21\x25\ +\x2c\x2b\x24\x2e\x30\x26\x29\x27\x26\x29\x26\x26\x2c\x2a\x24\x2f\ +\x2c\x28\x27\x28\x25\x27\x25\x26\x2a\x24\x24\x27\x21\x1f\x21\x20\ +\x1f\x20\x1e\x17\x19\x13\x24\x25\x24\x29\x2a\x29\x21\x21\x1e\x1b\ +\x14\x13\x30\x34\x36\x23\x24\x23\x28\x2c\x2a\x25\x28\x25\x25\x29\ +\x27\x1f\x22\x20\x27\x2b\x2b\x20\x27\x20\x1f\x21\x25\x25\x29\x26\ +\x1f\x20\x1b\x1a\x1d\x19\x1d\x25\x22\x28\x2c\x2b\x21\x25\x28\x21\ +\x26\x2a\x1d\x28\x29\x1f\x23\x25\x23\x2b\x27\x23\x23\x24\x1a\x21\ +\x1c\x22\x25\x22\x1d\x22\x1d\x20\x25\x22\x1e\x23\x1e\x24\x21\x1f\ +\x23\x26\x28\x2b\x25\x24\x23\x2a\x21\x1b\x21\x1d\x1f\x1c\x18\x1d\ +\x1e\x13\x00\x00\x00\x79\xa7\xc4\x7b\xa7\xca\x7a\xaa\xcf\x75\xa9\ +\xce\x73\xa6\xcc\x71\xa5\xc9\x6e\xa5\xc7\x70\xa5\xc8\x70\xa3\xc8\ +\x75\xa2\xc8\x76\xa4\xca\x73\xa6\xca\x69\xa0\xc2\x5b\x8d\xa9\x47\ +\x73\x8a\x41\x69\x83\x3f\x68\x87\x48\x6f\x91\x51\x77\x99\x5a\x7e\ +\x99\x50\x6e\x82\x21\x39\x49\x1b\x2f\x3f\x1c\x32\x41\x1a\x37\x46\ +\x66\x8d\xa0\x89\xb7\xd0\x83\xb2\xd1\x7b\xab\xca\x69\x99\xb4\x54\ +\x80\x95\x50\x76\x89\x64\x88\x9f\x77\x9d\xb8\x81\xa9\xc6\x7f\xaa\ +\xc4\x6c\x91\xa8\x33\x4d\x61\x0f\x20\x32\x15\x28\x3d\x37\x57\x71\ +\x77\x9e\xbc\x87\xb2\xd4\x7f\xac\xd1\x7f\xa9\xce\x84\xaa\xcd\x82\ +\xa8\xc9\x77\x95\xb7\x3d\x50\x6c\x13\x22\x38\x4b\x60\x74\x49\x62\ +\x78\x31\x51\x69\x72\x99\xb4\x8c\xb4\xd2\x8c\xb4\xd3\x84\xb1\xd0\ +\x86\xb1\xd1\x8d\xb5\xd4\x92\xb6\xd6\x8f\xb6\xd7\x8e\xb5\xda\x8c\ +\xb1\xd5\x88\xae\xd0\x84\xaa\xcc\x74\x95\xb0\x29\x41\x52\x1c\x36\ +\x43\x6e\x91\xa9\x7f\xaa\xcb\x7d\xac\xcc\x85\xb2\xd1\x87\xb1\xd0\ +\x8e\xad\xc4\x73\x7f\x80\x3c\x49\x4c\x3e\x4a\x4f\x3a\x47\x48\x32\ +\x41\x42\x2d\x37\x39\x26\x2f\x30\x2b\x35\x37\x2b\x3b\x3c\x28\x2e\ +\x2d\x2c\x37\x39\x29\x35\x36\x24\x23\x1f\x28\x2f\x29\x21\x29\x28\ +\x1c\x1b\x18\x33\x38\x31\x29\x30\x26\x20\x24\x21\x27\x2f\x2b\x2d\ +\x33\x37\x26\x2f\x30\x2a\x36\x38\x28\x2e\x28\x2b\x2c\x2c\x20\x25\ +\x26\x21\x24\x21\x24\x2c\x28\x21\x22\x1e\x25\x25\x25\x2b\x31\x31\ +\x29\x30\x30\x20\x2c\x27\x28\x37\x35\x26\x39\x3c\x28\x2a\x2b\x27\ +\x2d\x30\x2b\x32\x32\x25\x2c\x27\x28\x2c\x2c\x2d\x34\x34\x24\x2f\ +\x2c\x1f\x21\x1e\x25\x2a\x27\x23\x2c\x2d\x24\x22\x23\x21\x26\x24\ +\x23\x25\x22\x21\x21\x1e\x24\x26\x21\x22\x27\x22\x1f\x21\x1b\x12\ +\x16\x0f\x23\x2d\x29\x29\x2b\x28\x23\x26\x26\x18\x14\x14\x2c\x34\ +\x37\x2b\x2c\x2a\x28\x26\x23\x22\x24\x26\x1a\x1d\x1d\x1d\x24\x1e\ +\x22\x27\x24\x1e\x23\x1f\x22\x29\x25\x1e\x1e\x1b\x1e\x21\x19\x1a\ +\x1d\x1a\x1c\x20\x1c\x22\x27\x28\x1d\x27\x2c\x21\x31\x35\x24\x2a\ +\x28\x21\x25\x24\x22\x1d\x1c\x24\x26\x22\x22\x22\x20\x23\x23\x20\ +\x25\x28\x25\x22\x27\x22\x1e\x24\x23\x23\x24\x21\x1f\x22\x1f\x24\ +\x26\x26\x22\x23\x1f\x1e\x1c\x16\x24\x24\x24\x1f\x1c\x19\x00\x00\ +\x00\x6f\x9b\xbf\x70\x9c\xc3\x74\xa1\xcc\x6e\x9f\xca\x72\x9e\xcb\ +\x70\x9c\xca\x6d\x9e\xc9\x6a\x9e\xc8\x6b\x9d\xc7\x6f\x9c\xc6\x70\ +\x9e\xc9\x6b\x9a\xc4\x61\x8a\xb0\x3f\x60\x81\x20\x40\x5c\x35\x57\ +\x78\x42\x66\x8b\x4a\x6c\x93\x4b\x69\x8d\x42\x60\x7b\x3b\x56\x67\ +\x26\x3a\x47\x08\x16\x21\x03\x0f\x1b\x16\x2d\x3d\x61\x84\x9a\x87\ +\xaf\xcb\x83\xad\xcd\x7b\xa8\xc7\x61\x8c\xac\x37\x5d\x76\x26\x46\ +\x5b\x37\x55\x6f\x5c\x7d\x9f\x7a\xa2\xc3\x7b\xa8\xc6\x72\x9a\xb7\ +\x59\x76\x93\x31\x46\x62\x31\x47\x63\x59\x79\x97\x84\xaa\xca\x89\ +\xad\xd1\x84\xac\xd0\x81\xa9\xcd\x7b\xa1\xc6\x75\x9a\xbf\x65\x84\ +\xa4\x2d\x43\x5a\x0a\x18\x29\x3c\x4c\x5d\x38\x4d\x62\x3d\x59\x72\ +\x77\x9d\xb9\x89\xb1\xd1\x8a\xb0\xd1\x88\xb0\xd2\x8d\xb3\xd6\x92\ +\xb5\xd6\x93\xb6\xd6\x91\xb4\xd6\x8f\xb2\xd7\x8c\xad\xd4\x84\xa8\ +\xcf\x81\xa4\xc9\x70\x8c\xab\x27\x3a\x4e\x12\x28\x39\x62\x83\x9e\ +\x7a\xa3\xc6\x85\xaa\xcd\x94\xb0\xc8\x74\x8b\x95\x47\x55\x58\x3a\ +\x45\x49\x3e\x46\x4a\x34\x40\x40\x2a\x34\x36\x2d\x34\x33\x25\x2c\ +\x2d\x26\x2f\x32\x26\x2e\x32\x22\x2b\x24\x2c\x31\x2e\x2d\x3b\x3b\ +\x2e\x3a\x37\x2a\x2a\x2b\x2d\x32\x35\x27\x2f\x36\x1c\x1f\x1c\x2a\ +\x2f\x2a\x2c\x2f\x2c\x24\x28\x1e\x22\x24\x24\x2e\x33\x31\x24\x29\ +\x26\x2b\x2d\x2b\x28\x2f\x34\x27\x31\x32\x22\x21\x22\x29\x30\x2f\ +\x28\x2e\x31\x21\x27\x23\x27\x2a\x2d\x29\x28\x28\x1f\x26\x25\x25\ +\x26\x24\x27\x2e\x32\x20\x25\x26\x23\x22\x26\x25\x2c\x2c\x1f\x20\ +\x23\x25\x2c\x2e\x27\x2b\x2d\x26\x29\x2d\x25\x29\x26\x1e\x23\x23\ +\x28\x2f\x2f\x23\x2b\x29\x26\x2e\x31\x2b\x2c\x2c\x2a\x29\x25\x2c\ +\x26\x22\x20\x24\x1b\x24\x22\x20\x25\x27\x23\x15\x16\x10\x21\x28\ +\x28\x25\x2d\x2b\x23\x27\x22\x15\x19\x16\x2d\x35\x30\x2e\x31\x31\ +\x29\x27\x2d\x27\x29\x2a\x1e\x24\x26\x1b\x1a\x1c\x1a\x1d\x1b\x24\ +\x26\x20\x21\x23\x1d\x20\x22\x23\x1d\x1f\x1b\x1c\x23\x26\x22\x2e\ +\x31\x1c\x21\x1d\x21\x23\x22\x20\x25\x23\x25\x28\x29\x28\x2d\x31\ +\x23\x1c\x1c\x1c\x1b\x18\x27\x2a\x2a\x27\x28\x23\x24\x26\x21\x21\ +\x24\x20\x1d\x24\x23\x1c\x1e\x1c\x21\x20\x1c\x22\x29\x25\x22\x25\ +\x1e\x23\x25\x20\x1c\x20\x1c\x23\x24\x1d\x00\x00\x00\x66\x91\xbf\ +\x60\x8d\xbd\x63\x91\xc3\x61\x8f\xc2\x65\x8c\xc2\x62\x8a\xbf\x62\ +\x8b\xbe\x60\x8d\xbd\x62\x8e\xbc\x65\x8e\xbd\x62\x8b\xbc\x5d\x85\ +\xb4\x4b\x6a\x94\x25\x39\x5d\x12\x27\x47\x35\x52\x79\x4e\x72\x9e\ +\x53\x75\xa5\x52\x6e\x9b\x44\x5e\x80\x2d\x45\x59\x0e\x1d\x2a\x02\ +\x06\x11\x01\x04\x12\x1f\x31\x45\x63\x84\x9e\x7a\xa5\xc2\x80\xa9\ +\xca\x80\xa7\xcd\x6f\x97\xbf\x5e\x84\xa7\x54\x76\x96\x57\x7a\x9c\ +\x66\x8a\xb1\x78\x9c\xc3\x7d\xa3\xc8\x7f\xa1\xc7\x75\x96\xbc\x64\ +\x84\xa8\x65\x85\xa7\x7b\x9e\xbf\x89\xad\xce\x8d\xad\xd0\x8b\xad\ +\xce\x81\xa8\xca\x79\xa2\xc4\x75\x9a\xbf\x65\x87\xa8\x39\x52\x6c\ +\x11\x1e\x33\x1e\x2a\x3d\x2e\x3d\x56\x5a\x72\x90\x84\xa6\xc6\x88\ +\xae\xd0\x87\xad\xd0\x84\xad\xd0\x88\xb1\xd4\x8d\xb2\xd4\x8f\xb2\ +\xd3\x92\xb3\xd4\x8f\xb0\xd5\x89\xab\xd1\x7f\xa4\xc9\x7c\x9f\xc1\ +\x66\x7e\x9b\x1d\x2d\x42\x11\x25\x37\x5a\x7b\x95\x7d\xa0\xbe\x74\ +\x88\x90\x41\x53\x53\x3a\x44\x4d\x43\x4b\x4d\x39\x40\x47\x31\x3c\ +\x41\x2c\x36\x3b\x2c\x34\x38\x2e\x37\x3c\x1d\x28\x24\x2b\x34\x37\ +\x2b\x33\x33\x2b\x35\x2f\x2f\x35\x33\x27\x34\x39\x2e\x30\x32\x2a\ +\x2b\x28\x2b\x31\x2d\x25\x2b\x28\x1e\x23\x21\x2a\x2c\x27\x30\x39\ +\x34\x1d\x2d\x2c\x27\x2c\x2a\x39\x3a\x39\x26\x31\x30\x2d\x31\x2f\ +\x26\x2c\x2d\x29\x34\x35\x24\x2a\x27\x22\x27\x22\x22\x23\x22\x25\ +\x29\x25\x24\x29\x22\x2b\x2b\x28\x20\x28\x27\x30\x32\x3a\x29\x2c\ +\x2f\x20\x26\x27\x21\x22\x27\x26\x31\x30\x2b\x31\x30\x2a\x2d\x2d\ +\x2d\x37\x36\x26\x2d\x2d\x26\x2d\x2b\x1e\x23\x20\x21\x28\x24\x1f\ +\x2a\x25\x20\x24\x22\x25\x25\x20\x20\x1e\x19\x23\x21\x1d\x20\x25\ +\x21\x20\x1f\x1d\x26\x21\x22\x1e\x1c\x1a\x1a\x1a\x17\x30\x30\x2d\ +\x26\x26\x24\x1b\x1a\x17\x1b\x21\x1e\x29\x2b\x2a\x29\x2a\x2e\x21\ +\x29\x27\x1f\x23\x20\x23\x2b\x2a\x21\x28\x25\x21\x28\x28\x1a\x21\ +\x20\x1c\x21\x20\x1b\x20\x1d\x22\x27\x2a\x1f\x23\x23\x1e\x21\x1e\ +\x1e\x1f\x1b\x24\x26\x26\x24\x27\x23\x23\x25\x21\x1e\x1a\x1a\x21\ +\x21\x20\x21\x22\x1e\x20\x2b\x24\x22\x2c\x2c\x21\x24\x22\x1d\x20\ +\x19\x1d\x21\x21\x1b\x1e\x19\x1c\x18\x18\x22\x25\x24\x25\x2b\x2c\ +\x22\x25\x25\x26\x25\x20\x00\x00\x00\x67\x99\xc6\x63\x98\xc4\x66\ +\x98\xc9\x68\x97\xcb\x67\x94\xc8\x67\x92\xc5\x67\x91\xc3\x68\x92\ +\xc1\x68\x91\xbe\x67\x8f\xbd\x63\x8c\xbd\x5b\x82\xb4\x4e\x6b\x99\ +\x2d\x3f\x64\x0c\x1b\x3d\x2d\x47\x6f\x4d\x72\xa1\x53\x77\xad\x4f\ +\x6f\xa3\x41\x5f\x8a\x2a\x42\x61\x0a\x17\x2b\x01\x04\x15\x04\x0d\ +\x21\x28\x3f\x5a\x5e\x80\xa2\x6c\x96\xbb\x75\x9d\xc6\x79\x9c\xca\ +\x74\x97\xc7\x6b\x90\xbd\x68\x8f\xb9\x67\x91\xbb\x6e\x96\xc1\x77\ +\x9a\xc7\x7f\x9e\xcb\x85\xa4\xd0\x82\xa6\xcf\x79\xa4\xc8\x7f\xa8\ +\xca\x85\xac\xce\x86\xad\xcf\x89\xae\xd0\x86\xac\xcd\x7f\xab\xc9\ +\x7c\xa9\xc6\x7d\xa4\xc4\x74\x98\xb9\x5d\x79\x99\x3c\x4e\x6b\x36\ +\x47\x60\x4c\x64\x7e\x78\x96\xb4\x89\xac\xcc\x87\xad\xce\x81\xa9\ +\xcb\x82\xaa\xcd\x86\xaf\xd1\x87\xb0\xd0\x8b\xb3\xd0\x8c\xb3\xd2\ +\x8b\xb2\xd4\x85\xaf\xd0\x7c\xa9\xc9\x77\x9d\xbc\x5d\x75\x92\x14\ +\x20\x36\x21\x30\x43\x71\x85\x92\x4f\x5e\x63\x38\x44\x4b\x38\x44\ +\x49\x35\x3f\x41\x2e\x3d\x3d\x2a\x39\x39\x2f\x3a\x3c\x33\x3f\x41\ +\x29\x30\x35\x25\x2d\x2c\x22\x28\x27\x27\x2d\x31\x2a\x27\x23\x28\ +\x26\x29\x2f\x36\x35\x2c\x32\x31\x31\x32\x38\x27\x2b\x30\x2d\x31\ +\x33\x21\x24\x22\x27\x2a\x2b\x34\x3b\x39\x2d\x30\x30\x26\x2e\x31\ +\x23\x24\x21\x39\x39\x38\x2f\x36\x39\x28\x2f\x2c\x23\x2b\x26\x27\ +\x32\x31\x22\x27\x26\x26\x2c\x2a\x23\x27\x25\x2b\x34\x33\x28\x30\ +\x30\x2c\x30\x33\x26\x2d\x28\x2b\x35\x32\x28\x30\x2f\x28\x33\x37\ +\x27\x2c\x2c\x28\x2b\x29\x25\x28\x27\x24\x25\x24\x24\x24\x25\x2a\ +\x2e\x2c\x26\x31\x32\x1e\x27\x23\x22\x29\x27\x1c\x25\x20\x24\x29\ +\x25\x2c\x2a\x28\x26\x24\x25\x2d\x2a\x24\x2b\x2e\x29\x24\x23\x20\ +\x1e\x24\x1e\x1b\x20\x1a\x19\x1c\x18\x2f\x30\x30\x27\x27\x22\x1c\ +\x1c\x1c\x1c\x22\x23\x26\x32\x2f\x25\x29\x28\x22\x22\x22\x1f\x26\ +\x21\x21\x2b\x2a\x20\x26\x27\x1a\x23\x21\x22\x20\x1e\x21\x24\x24\ +\x22\x25\x1d\x1e\x25\x21\x19\x1d\x17\x1f\x23\x20\x1d\x1d\x1c\x1e\ +\x22\x22\x20\x26\x23\x21\x29\x29\x21\x24\x26\x1d\x23\x22\x27\x29\ +\x2b\x1b\x1f\x1a\x22\x24\x20\x1e\x21\x1f\x23\x28\x25\x20\x22\x1f\ +\x1e\x20\x21\x1f\x21\x1d\x27\x2e\x2d\x23\x25\x23\x24\x29\x28\x24\ +\x21\x20\x00\x00\x00\x70\xa8\xca\x6c\xa6\xca\x70\xa6\xd0\x74\xa5\ +\xd3\x73\xa4\xd0\x76\xa7\xd1\x78\xa5\xd0\x7a\xa3\xce\x7a\xa2\xc9\ +\x7a\xa2\xca\x72\x9e\xc8\x6a\x98\xc4\x66\x8a\xb3\x53\x6b\x91\x20\ +\x34\x54\x1b\x37\x59\x53\x78\xa0\x63\x8c\xba\x65\x8d\xbc\x5b\x82\ +\xad\x48\x67\x8b\x1c\x2f\x49\x03\x0f\x25\x17\x2e\x46\x47\x68\x89\ +\x5d\x88\xb0\x65\x91\xbd\x6a\x91\xc1\x71\x91\xc5\x6d\x8d\xc3\x69\ +\x8d\xbe\x68\x90\xbc\x6a\x95\xc0\x6c\x98\xc3\x6f\x99\xc4\x78\x9c\ +\xc8\x81\xa4\xcf\x83\xae\xd2\x81\xaf\xd1\x84\xb0\xd2\x85\xaf\xd1\ +\x85\xaf\xd0\x87\xb0\xd0\x84\xb2\xcf\x82\xb2\xcc\x80\xb0\xc8\x80\ +\xad\xc8\x82\xa9\xca\x7d\x9e\xc1\x73\x91\xb2\x6b\x8d\xa9\x77\x9e\ +\xb8\x85\xad\xc7\x8a\xb0\xcc\x87\xac\xcb\x82\xab\xcb\x82\xaa\xcd\ +\x86\xae\xd1\x86\xb0\xd0\x88\xb5\xd2\x89\xb6\xd4\x87\xb5\xd6\x80\ +\xb2\xd1\x7d\xae\xcd\x79\xa3\xc2\x6e\x86\x9d\x63\x70\x79\x58\x65\ +\x67\x3a\x4c\x4c\x36\x43\x46\x37\x43\x4a\x31\x36\x3d\x2f\x36\x3d\ +\x27\x32\x34\x2f\x36\x33\x2a\x33\x35\x24\x2a\x2a\x25\x2b\x2d\x24\ +\x26\x27\x27\x2b\x29\x2e\x34\x35\x32\x30\x31\x37\x37\x39\x29\x2e\ +\x2b\x26\x2e\x2a\x29\x31\x34\x23\x28\x2a\x2d\x31\x2f\x2a\x2e\x2d\ +\x2d\x39\x38\x18\x17\x19\x33\x35\x31\x2a\x30\x2c\x1e\x24\x24\x30\ +\x35\x35\x2d\x36\x38\x2b\x2f\x2f\x25\x2e\x2a\x2c\x2e\x2b\x2f\x34\ +\x33\x2c\x30\x2b\x27\x30\x29\x25\x25\x21\x27\x2c\x27\x26\x27\x24\ +\x2b\x2d\x2e\x28\x2f\x2a\x2d\x30\x31\x2a\x36\x30\x23\x24\x24\x27\ +\x27\x28\x26\x25\x2a\x24\x28\x1e\x22\x20\x1d\x27\x2d\x2f\x1d\x24\ +\x2a\x21\x2c\x2f\x22\x2b\x2c\x22\x26\x1f\x2c\x2a\x29\x24\x25\x26\ +\x20\x1e\x1a\x28\x26\x24\x20\x20\x1d\x1f\x24\x1e\x1f\x21\x1e\x1c\ +\x1e\x1a\x17\x14\x0c\x2a\x30\x2e\x25\x29\x26\x1c\x24\x1d\x23\x24\ +\x24\x29\x2e\x2d\x29\x2e\x2d\x20\x28\x26\x28\x2f\x2f\x24\x30\x30\ +\x1e\x24\x23\x1c\x20\x22\x1d\x1f\x1e\x1f\x27\x21\x20\x24\x1c\x20\ +\x20\x1c\x20\x23\x1f\x23\x28\x22\x1d\x1d\x1c\x2b\x31\x2d\x26\x2c\ +\x2e\x26\x22\x24\x21\x25\x26\x20\x26\x22\x24\x29\x29\x1a\x21\x1f\ +\x1f\x1f\x1d\x1f\x23\x1f\x23\x28\x28\x20\x22\x1c\x1b\x1e\x1d\x1f\ +\x20\x21\x29\x2a\x23\x2b\x2a\x2a\x29\x29\x2a\x25\x24\x23\x00\x00\ +\x00\x79\xb0\xcc\x75\xad\xcc\x78\xad\xcf\x7e\xae\xd2\x7d\xad\xd0\ +\x7f\xb0\xd3\x82\xaf\xd3\x82\xad\xd1\x85\xad\xd0\x86\xad\xd1\x82\ +\xae\xd2\x7d\xaa\xcf\x74\xa1\xc4\x68\x8e\xae\x48\x69\x85\x1a\x39\ +\x56\x2f\x52\x72\x6b\x92\xb7\x76\xa5\xc8\x75\xa3\xca\x64\x8b\xad\ +\x2f\x46\x60\x0a\x1d\x30\x33\x4f\x67\x69\x93\xb1\x6e\xa0\xc6\x71\ +\xa0\xcc\x75\x9d\xcc\x77\x99\xcb\x75\x97\xc7\x77\x9b\xc7\x77\xa0\ +\xc7\x79\xa6\xca\x7b\xa8\xcc\x7c\xaa\xce\x83\xad\xd0\x86\xb1\xd4\ +\x86\xb5\xd5\x83\xb4\xd3\x81\xb3\xd1\x81\xb1\xd0\x80\xb0\xce\x84\ +\xb3\xce\x86\xb5\xd0\x86\xb6\xce\x83\xb4\xcc\x83\xb3\xcb\x84\xb1\ +\xd0\x89\xaf\xd0\x85\xab\xcb\x82\xae\xc9\x83\xb2\xcb\x86\xb4\xcc\ +\x8a\xb3\xcc\x8d\xb3\xcf\x89\xb1\xcf\x8b\xb2\xd5\x8b\xb2\xd7\x8b\ +\xb3\xd7\x88\xb5\xd5\x87\xb6\xd6\x89\xb5\xd6\x84\xb3\xd3\x83\xb2\ +\xd1\x91\xae\xc1\x62\x75\x77\x3a\x49\x4e\x3a\x49\x50\x3b\x4a\x4d\ +\x33\x3e\x41\x33\x38\x3d\x29\x34\x35\x28\x32\x33\x2f\x3a\x3a\x27\ +\x30\x2d\x25\x28\x26\x2e\x35\x33\x29\x2f\x2f\x29\x30\x32\x2a\x2e\ +\x2e\x2d\x35\x2e\x2c\x2e\x2d\x2d\x2d\x2a\x25\x22\x22\x2d\x3a\x3c\ +\x2e\x40\x45\x28\x2d\x2d\x2c\x34\x30\x23\x27\x26\x29\x2f\x2f\x26\ +\x26\x23\x30\x39\x36\x29\x32\x32\x22\x29\x25\x2f\x30\x36\x37\x44\ +\x46\x32\x37\x38\x2d\x31\x2d\x28\x30\x2d\x26\x2b\x29\x25\x2b\x28\ +\x2b\x34\x36\x21\x23\x23\x2e\x33\x39\x2f\x33\x2f\x32\x35\x33\x25\ +\x23\x26\x27\x2f\x34\x24\x2e\x30\x25\x23\x23\x2b\x32\x2d\x23\x25\ +\x22\x24\x25\x25\x23\x26\x23\x24\x26\x28\x25\x2f\x2e\x26\x29\x2a\ +\x25\x26\x27\x21\x22\x1d\x23\x24\x1f\x20\x25\x1f\x2a\x26\x1e\x27\ +\x2a\x25\x21\x26\x1f\x1f\x22\x22\x20\x2b\x25\x1d\x26\x22\x15\x19\ +\x16\x32\x3a\x38\x27\x29\x28\x22\x21\x1c\x19\x20\x18\x27\x2b\x30\ +\x22\x2d\x30\x1d\x28\x23\x24\x2c\x2b\x22\x27\x21\x1f\x22\x21\x23\ +\x26\x24\x22\x24\x22\x1a\x1c\x1a\x1a\x1d\x1d\x28\x2a\x25\x20\x25\ +\x21\x24\x2e\x2e\x21\x25\x23\x20\x2a\x28\x23\x29\x28\x27\x27\x23\ +\x21\x22\x21\x1b\x1a\x1a\x24\x22\x1e\x21\x21\x20\x21\x25\x28\x1c\ +\x20\x1d\x21\x24\x21\x25\x20\x1e\x24\x28\x26\x24\x22\x22\x1f\x1b\ +\x14\x24\x22\x21\x20\x20\x1b\x24\x2a\x28\x00\x00\x00\x78\xaa\xc2\ +\x74\xa6\xc1\x77\xa5\xc2\x81\xaa\xc7\x81\xad\xc9\x7d\xac\xc9\x7c\ +\xaa\xc6\x7b\xa5\xc1\x7e\xa7\xc5\x84\xab\xc9\x84\xaf\xcc\x81\xb0\ +\xcf\x79\xaa\xc9\x73\xa1\xc0\x61\x8c\xa7\x44\x68\x85\x22\x42\x62\ +\x3b\x60\x7d\x71\xa1\xbb\x78\xa7\xc3\x6c\x93\xae\x2f\x49\x5d\x0f\ +\x23\x35\x48\x67\x7d\x7b\xa6\xc2\x7e\xae\xcf\x7f\xac\xd2\x7d\xa8\ +\xce\x7d\xa5\xcd\x7c\xa5\xcc\x80\xa8\xcc\x7f\xac\xcc\x81\xb0\xd0\ +\x84\xb3\xd1\x87\xb3\xd0\x8b\xb8\xd6\x8a\xb8\xd7\x86\xb9\xd6\x7f\ +\xb7\xd1\x79\xb3\xcd\x7b\xb1\xcb\x84\xb4\xce\x85\xb6\xce\x88\xb7\ +\xd0\x8d\xb7\xd3\x89\xb4\xd1\x84\xb3\xcf\x84\xb4\xd1\x88\xb4\xd3\ +\x87\xb3\xd2\x86\xb5\xd2\x87\xb7\xd1\x8b\xb8\xd0\x90\xb8\xd1\x8f\ +\xb6\xd0\x90\xb6\xd5\x8f\xb6\xd8\x8d\xb5\xd9\x8c\xb4\xd7\x89\xb5\ +\xd6\x89\xb8\xd8\x8f\xb7\xd7\x92\xaf\xc5\x7e\x8e\x95\x40\x4f\x54\ +\x2f\x3c\x40\x3b\x44\x48\x37\x45\x48\x2e\x39\x37\x2b\x38\x3d\x25\ +\x30\x31\x2a\x3a\x38\x2a\x32\x30\x27\x2d\x2f\x24\x28\x25\x31\x37\ +\x37\x2c\x2c\x29\x34\x3f\x45\x25\x2d\x2f\x29\x2e\x2d\x2a\x2c\x2c\ +\x27\x2a\x2d\x2c\x2f\x31\x26\x2b\x2c\x2e\x3f\x47\x1d\x26\x27\x24\ +\x2c\x2a\x2d\x33\x33\x2f\x37\x3b\x32\x3f\x45\x2b\x2d\x2c\x30\x34\ +\x38\x34\x38\x34\x27\x2e\x29\x38\x34\x33\x37\x41\x41\x27\x31\x2f\ +\x2c\x31\x2c\x2e\x35\x34\x2a\x2e\x31\x28\x2d\x2c\x34\x3a\x3f\x2f\ +\x34\x35\x2b\x32\x2b\x2a\x31\x2c\x2c\x30\x2c\x32\x33\x33\x2c\x33\ +\x33\x26\x29\x2d\x27\x30\x2d\x24\x22\x24\x1f\x27\x26\x29\x2a\x2b\ +\x24\x2c\x2d\x21\x28\x26\x29\x2c\x2a\x28\x2d\x31\x28\x38\x3c\x26\ +\x2e\x33\x20\x23\x23\x1d\x1e\x1c\x28\x25\x21\x2b\x29\x27\x2a\x2d\ +\x2b\x25\x2b\x25\x20\x25\x1d\x23\x24\x22\x19\x18\x16\x27\x2c\x2b\ +\x28\x2b\x2b\x1d\x22\x1d\x19\x1e\x1c\x2a\x36\x3b\x22\x31\x30\x25\ +\x24\x22\x1e\x21\x19\x24\x26\x1e\x24\x28\x20\x22\x26\x20\x1e\x22\ +\x21\x24\x24\x22\x23\x25\x24\x18\x19\x16\x29\x29\x27\x24\x2a\x26\ +\x1f\x27\x26\x1f\x27\x27\x22\x21\x20\x27\x29\x29\x1f\x1d\x1b\x24\ +\x23\x22\x22\x23\x21\x20\x23\x1d\x25\x2a\x21\x22\x21\x1c\x1d\x1e\ +\x18\x21\x21\x1c\x26\x28\x25\x2b\x24\x22\x25\x26\x25\x22\x22\x1c\ +\x24\x27\x1d\x22\x28\x1e\x00\x00\x00\x62\x8c\xa1\x50\x79\x91\x58\ +\x7f\x99\x67\x89\xa3\x6c\x94\xac\x66\x90\xa8\x56\x7d\x94\x4c\x70\ +\x84\x4e\x72\x88\x5a\x7f\x96\x65\x8d\xa6\x71\x9c\xb6\x69\x96\xb0\ +\x61\x8a\xa6\x62\x89\xa8\x5e\x83\xa2\x45\x69\x85\x2c\x4e\x67\x43\ +\x6a\x7d\x66\x8d\x9f\x53\x74\x86\x1c\x35\x44\x17\x2c\x3c\x5e\x7c\ +\x93\x84\xab\xc8\x80\xaa\xc9\x77\x9e\xbc\x71\x99\xb5\x7a\xa4\xc3\ +\x82\xab\xcb\x86\xb0\xcf\x83\xb2\xd0\x82\xb3\xd0\x85\xb5\xcf\x88\ +\xb7\xcf\x8b\xba\xd5\x8c\xba\xd9\x86\xba\xd6\x7b\xb5\xcc\x79\xb3\ +\xca\x7f\xb3\xc9\x88\xb3\xcf\x88\xb2\xcf\x88\xb5\xd2\x8c\xb5\xd5\ +\x8c\xb2\xd4\x84\xae\xcf\x84\xb0\xd1\x85\xb3\xd4\x85\xb3\xd5\x85\ +\xb3\xd3\x8b\xb6\xd3\x8c\xb8\xd1\x90\xb8\xd1\x90\xb7\xd4\x90\xb7\ +\xd8\x91\xb6\xd9\x8e\xb4\xd7\x87\xb3\xd2\x8a\xb6\xd3\x94\xa7\xb2\ +\x77\x85\x8a\x44\x53\x55\x2e\x3c\x3e\x39\x40\x47\x33\x3f\x3e\x33\ +\x3f\x3f\x2f\x3d\x3f\x2a\x38\x39\x26\x33\x37\x27\x2f\x35\x2f\x34\ +\x30\x30\x32\x33\x2f\x34\x34\x31\x32\x34\x2a\x2f\x2c\x2b\x2f\x30\ +\x28\x30\x2d\x29\x2e\x2d\x2b\x34\x30\x2d\x2e\x30\x24\x28\x25\x29\ +\x28\x23\x2b\x31\x30\x2b\x3b\x3f\x25\x2b\x31\x2d\x3c\x47\x2d\x36\ +\x3b\x26\x2c\x2f\x25\x2c\x2f\x1b\x1e\x1d\x2e\x2f\x30\x32\x3a\x3b\ +\x27\x26\x25\x30\x2d\x2f\x33\x3c\x3f\x2c\x2f\x2f\x2c\x38\x35\x2c\ +\x30\x30\x2d\x35\x32\x39\x37\x33\x31\x2d\x32\x24\x26\x24\x28\x31\ +\x2c\x24\x23\x21\x26\x2a\x29\x20\x20\x1d\x29\x2a\x2a\x25\x29\x2c\ +\x29\x33\x38\x23\x30\x2e\x24\x2d\x2c\x28\x31\x29\x20\x24\x21\x23\ +\x23\x21\x2b\x2b\x2c\x28\x2b\x2e\x2e\x39\x3d\x26\x31\x39\x24\x25\ +\x27\x27\x28\x24\x2b\x2d\x28\x24\x22\x1e\x22\x27\x21\x24\x29\x26\ +\x24\x2c\x2c\x22\x22\x23\x19\x17\x14\x25\x30\x2a\x27\x2d\x2b\x20\ +\x26\x28\x19\x1a\x17\x20\x27\x27\x21\x29\x24\x25\x2d\x2c\x21\x27\ +\x24\x21\x26\x24\x1d\x1e\x1b\x22\x25\x20\x1b\x22\x21\x26\x29\x25\ +\x24\x21\x20\x21\x1f\x19\x1a\x1c\x15\x25\x2d\x2b\x2c\x32\x32\x26\ +\x29\x25\x23\x21\x1b\x2b\x2c\x26\x1f\x1f\x18\x28\x25\x23\x26\x25\ +\x27\x21\x1f\x18\x29\x27\x2b\x22\x25\x24\x22\x22\x21\x19\x1b\x17\ +\x1a\x1a\x16\x2b\x2a\x28\x28\x24\x29\x21\x26\x21\x1d\x1b\x1d\x25\ +\x28\x21\x00\x00\x00\x37\x58\x69\x22\x43\x56\x43\x67\x80\x57\x7a\ +\x98\x51\x78\x96\x3d\x62\x7e\x1d\x3c\x51\x09\x21\x31\x0b\x24\x36\ +\x20\x3e\x53\x36\x5a\x72\x42\x69\x80\x3a\x5c\x6f\x31\x4e\x65\x44\ +\x61\x7d\x55\x76\x91\x4c\x70\x89\x40\x5f\x75\x2a\x43\x54\x29\x43\ +\x50\x22\x39\x46\x09\x1a\x25\x1d\x31\x43\x5f\x7b\x94\x7f\xa3\xc0\ +\x74\x99\xb5\x52\x73\x8b\x3c\x5e\x74\x63\x86\x9e\x84\xa8\xc4\x85\ +\xad\xc9\x81\xad\xc8\x78\xa8\xc0\x77\xa5\xbb\x81\xb1\xc8\x85\xb4\ +\xcf\x85\xb3\xd3\x7f\xad\xca\x73\xa4\xbd\x77\xa9\xc1\x80\xaf\xca\ +\x86\xb0\xcc\x85\xad\xcb\x7c\xa6\xc4\x7c\xa3\xc2\x85\xab\xcb\x84\ +\xad\xce\x7f\xad\xcd\x82\xb1\xd3\x85\xb2\xd6\x84\xb2\xd4\x85\xb4\ +\xd1\x8a\xb6\xd1\x91\xb9\xd5\x90\xb5\xd6\x8d\xb2\xd5\x8b\xae\xd1\ +\x82\xa8\xc6\x85\xa9\xbd\x84\x93\x94\x53\x5f\x65\x41\x4b\x52\x3a\ +\x41\x48\x30\x3c\x40\x31\x3c\x3f\x28\x32\x32\x29\x39\x34\x29\x35\ +\x3d\x2e\x37\x3b\x2b\x38\x3f\x26\x2e\x2d\x29\x2d\x2e\x2e\x31\x34\ +\x2f\x2f\x2c\x2d\x35\x34\x30\x35\x33\x34\x38\x3a\x29\x2d\x2b\x2d\ +\x36\x37\x26\x2e\x26\x25\x24\x25\x2c\x34\x37\x2f\x33\x35\x2e\x34\ +\x32\x28\x2f\x2d\x2b\x31\x32\x2e\x3b\x3f\x2c\x38\x39\x2a\x2e\x32\ +\x2a\x34\x38\x20\x25\x21\x26\x29\x26\x31\x38\x38\x2a\x2d\x2d\x25\ +\x26\x1f\x39\x3e\x3b\x30\x36\x39\x29\x35\x36\x25\x2c\x2f\x2d\x34\ +\x31\x2b\x2e\x31\x2f\x32\x30\x29\x2f\x2c\x2a\x2d\x2e\x2b\x2d\x2e\ +\x2d\x34\x34\x23\x24\x1f\x2a\x34\x37\x26\x2f\x2d\x29\x2c\x2b\x1e\ +\x28\x24\x22\x29\x27\x24\x2e\x2d\x24\x25\x25\x27\x27\x1f\x28\x28\ +\x25\x27\x29\x27\x29\x2c\x2a\x2a\x37\x37\x22\x24\x1d\x22\x2a\x28\ +\x1e\x28\x28\x21\x23\x20\x1d\x21\x1e\x1d\x22\x1f\x21\x1e\x22\x20\ +\x24\x22\x1d\x22\x24\x29\x32\x33\x26\x27\x29\x1f\x21\x1f\x17\x1c\ +\x14\x28\x2e\x2e\x25\x30\x2e\x22\x29\x27\x23\x26\x22\x1c\x1f\x1c\ +\x21\x22\x22\x1e\x21\x21\x1d\x23\x23\x1e\x25\x25\x1f\x1e\x1d\x1f\ +\x27\x22\x21\x23\x23\x1f\x1e\x1e\x1d\x1f\x1d\x24\x24\x22\x1e\x20\ +\x1c\x1c\x1d\x18\x1e\x22\x1c\x23\x27\x22\x22\x26\x21\x25\x25\x24\ +\x28\x2b\x29\x26\x27\x20\x22\x1b\x1a\x26\x26\x25\x22\x20\x1c\x25\ +\x23\x22\x26\x2c\x27\x23\x2b\x29\x1b\x1f\x1e\x2a\x29\x26\x00\x00\ +\x00\x17\x33\x41\x14\x30\x41\x46\x67\x80\x69\x8e\xaf\x6b\x94\xb5\ +\x53\x7a\x99\x28\x47\x5f\x06\x18\x2d\x0a\x1d\x30\x33\x4e\x64\x4f\ +\x76\x8f\x41\x69\x81\x1a\x37\x4c\x12\x26\x38\x39\x4e\x62\x60\x7c\ +\x94\x56\x77\x8d\x3b\x57\x69\x19\x2d\x3b\x07\x16\x20\x02\x0d\x16\ +\x01\x09\x15\x16\x29\x3b\x39\x53\x6b\x5f\x7e\x99\x5a\x79\x91\x2c\ +\x47\x5b\x14\x2d\x3f\x33\x4f\x64\x64\x83\x9a\x7d\x9f\xb5\x75\x98\ +\xab\x5b\x7d\x8f\x4d\x70\x81\x5f\x87\x9b\x75\xa1\xb9\x79\xa2\xbf\ +\x65\x89\xa6\x4c\x70\x8c\x55\x7b\x98\x75\x9d\xb9\x7c\xa5\xbe\x6e\ +\x96\xaf\x52\x7a\x94\x4b\x6e\x89\x63\x87\xa4\x80\xa7\xc6\x84\xb1\ +\xd0\x83\xb1\xd3\x85\xb3\xd5\x82\xb0\xd1\x84\xb3\xd2\x89\xb7\xd4\ +\x8f\xb8\xd6\x8c\xb5\xd5\x92\xb6\xd2\x98\xb0\xc3\x84\x93\x9c\x54\ +\x63\x6a\x3b\x4a\x4f\x40\x46\x4c\x39\x40\x44\x32\x40\x43\x30\x3d\ +\x42\x30\x3c\x42\x2a\x37\x3c\x30\x3c\x39\x2b\x32\x2d\x2b\x2c\x2f\ +\x25\x28\x29\x27\x28\x28\x32\x3b\x3f\x29\x2d\x2a\x37\x3b\x37\x2b\ +\x31\x32\x27\x2b\x27\x2f\x32\x30\x24\x2c\x2a\x28\x2e\x2d\x26\x2a\ +\x2b\x29\x31\x34\x25\x2b\x2b\x27\x2b\x28\x2b\x2f\x31\x27\x30\x2a\ +\x2a\x2f\x33\x2b\x39\x3f\x29\x32\x37\x2b\x3c\x42\x29\x30\x34\x26\ +\x2c\x2d\x27\x26\x24\x35\x37\x32\x27\x2b\x2a\x26\x24\x22\x35\x3d\ +\x3d\x36\x42\x48\x27\x31\x38\x29\x32\x33\x2b\x31\x30\x30\x32\x30\ +\x31\x31\x2f\x2c\x2e\x2e\x2d\x37\x34\x27\x2b\x28\x27\x29\x29\x30\ +\x32\x33\x2d\x34\x37\x25\x2b\x2b\x28\x28\x22\x2b\x31\x33\x2a\x2b\ +\x2d\x28\x2e\x2c\x24\x28\x27\x28\x27\x24\x22\x2a\x28\x1d\x1d\x18\ +\x21\x24\x1e\x1f\x24\x21\x20\x25\x23\x23\x26\x23\x25\x2b\x2d\x23\ +\x25\x23\x2b\x29\x27\x26\x2b\x2c\x1e\x24\x24\x1f\x29\x29\x1b\x1c\ +\x1d\x25\x2a\x23\x27\x2b\x2a\x21\x23\x26\x1c\x1d\x17\x2b\x2b\x29\ +\x29\x31\x2d\x23\x23\x23\x20\x21\x1e\x25\x26\x23\x21\x25\x21\x1f\ +\x25\x24\x1e\x24\x23\x20\x26\x20\x23\x24\x22\x24\x24\x23\x22\x24\ +\x21\x2c\x32\x33\x20\x23\x25\x26\x2f\x2b\x22\x22\x1f\x21\x21\x20\ +\x17\x1c\x18\x23\x22\x25\x20\x1f\x1d\x1f\x22\x1e\x1b\x1c\x17\x22\ +\x20\x19\x2a\x27\x26\x29\x25\x21\x29\x2b\x29\x1d\x1c\x1c\x20\x23\ +\x1d\x20\x22\x23\x1f\x21\x1e\x25\x2a\x33\x00\x00\x00\x13\x2c\x3b\ +\x17\x2e\x40\x40\x5d\x78\x5c\x7e\xa0\x78\xa1\xc2\x76\xa0\xc0\x5a\ +\x7d\x9b\x30\x47\x64\x19\x2e\x47\x41\x61\x78\x68\x95\xae\x64\x90\ +\xab\x47\x65\x81\x16\x27\x3f\x28\x3a\x4d\x62\x7e\x92\x71\x92\xa9\ +\x53\x6f\x82\x1c\x2c\x3b\x01\x08\x13\x00\x03\x0e\x05\x0d\x1b\x1e\ +\x2f\x42\x36\x51\x67\x36\x54\x6d\x2e\x4a\x60\x1a\x31\x45\x18\x2d\ +\x42\x2f\x4a\x61\x39\x58\x6f\x45\x63\x73\x44\x5f\x6c\x2e\x43\x53\ +\x26\x3b\x4d\x38\x55\x68\x44\x66\x7e\x51\x72\x8c\x47\x62\x77\x29\ +\x43\x5b\x3f\x5c\x79\x4d\x6c\x88\x54\x77\x8e\x44\x67\x7c\x24\x43\ +\x5b\x35\x50\x6c\x4d\x6a\x89\x55\x76\x97\x6c\x96\xb6\x7d\xaa\xcc\ +\x84\xae\xd0\x83\xaf\xd0\x83\xb2\xd0\x8a\xb4\xd4\x90\xb7\xd7\xa2\ +\xb4\xbd\x6a\x75\x79\x5d\x70\x73\x41\x4d\x54\x3d\x49\x4f\x3a\x45\ +\x4a\x31\x3d\x42\x2e\x37\x3c\x25\x33\x35\x36\x44\x4e\x2a\x38\x39\ +\x2b\x34\x30\x27\x2f\x28\x2a\x2a\x29\x2b\x2e\x2f\x2c\x32\x33\x27\ +\x2e\x2f\x31\x3a\x36\x27\x29\x21\x34\x35\x31\x2a\x2c\x32\x27\x2a\ +\x2b\x29\x33\x34\x27\x35\x36\x27\x2c\x31\x28\x2f\x2f\x24\x2c\x29\ +\x2a\x30\x29\x30\x34\x34\x32\x34\x36\x2c\x30\x32\x26\x30\x31\x2f\ +\x34\x34\x2b\x33\x39\x29\x32\x31\x2a\x33\x32\x24\x31\x31\x1d\x1f\ +\x1c\x31\x39\x35\x24\x30\x2e\x24\x28\x29\x2f\x34\x35\x2d\x37\x3c\ +\x2a\x31\x2c\x29\x2c\x2c\x26\x2e\x2e\x2c\x32\x32\x26\x29\x29\x22\ +\x2a\x29\x27\x2d\x2a\x24\x28\x27\x2b\x2f\x2d\x24\x2a\x26\x29\x2f\ +\x2a\x21\x2a\x25\x29\x2e\x31\x26\x2d\x2a\x21\x26\x23\x23\x22\x20\ +\x2d\x33\x31\x26\x29\x28\x1f\x26\x20\x21\x24\x1f\x21\x24\x20\x23\ +\x32\x34\x21\x27\x2c\x1d\x1e\x17\x1f\x22\x21\x27\x29\x29\x27\x2e\ +\x2e\x22\x2a\x2f\x22\x2a\x2d\x1c\x1d\x1b\x16\x1a\x12\x29\x2d\x29\ +\x2e\x2c\x2d\x20\x23\x20\x19\x20\x1d\x2e\x2e\x2e\x29\x2d\x2b\x28\ +\x2c\x2a\x26\x2c\x2b\x1d\x1a\x16\x25\x28\x2b\x23\x2c\x28\x1c\x1b\ +\x16\x27\x27\x22\x27\x28\x26\x23\x22\x20\x20\x28\x24\x21\x25\x28\ +\x29\x2d\x28\x22\x2a\x24\x1e\x1f\x19\x22\x22\x21\x21\x24\x1d\x27\ +\x24\x21\x25\x27\x27\x1e\x22\x1c\x1c\x17\x0f\x2a\x29\x24\x25\x29\ +\x26\x27\x28\x29\x29\x27\x29\x23\x22\x1c\x20\x1c\x1c\x25\x27\x23\ +\x20\x23\x21\x20\x28\x2a\x00\x00\x00\x14\x2d\x3e\x20\x39\x4f\x4e\ +\x6b\x8a\x4a\x6b\x8d\x5f\x82\xa3\x7f\xa6\xc7\x7f\xa3\xc5\x6d\x8a\ +\xad\x53\x6f\x90\x60\x84\xa3\x74\xa3\xc1\x76\xa3\xc2\x6c\x8d\xae\ +\x4b\x61\x80\x2a\x41\x5a\x51\x70\x88\x7d\xa1\xbb\x6f\x8d\xa3\x31\ +\x44\x53\x02\x08\x12\x02\x07\x12\x06\x10\x1d\x21\x32\x42\x4b\x67\ +\x7d\x66\x88\xa1\x60\x7f\x98\x57\x72\x8c\x59\x76\x92\x64\x84\xa2\ +\x63\x86\xa1\x5a\x7b\x8e\x49\x62\x74\x34\x47\x5e\x34\x45\x5f\x50\ +\x69\x84\x59\x77\x95\x46\x65\x81\x2d\x48\x5f\x26\x3e\x54\x42\x5d\ +\x78\x61\x7e\x9a\x52\x6f\x8b\x39\x54\x6f\x26\x40\x5f\x48\x63\x84\ +\x6c\x8a\xad\x6c\x8d\xb0\x61\x89\xaa\x62\x8d\xb0\x79\xa0\xc4\x84\ +\xac\xcd\x85\xb1\xd2\x91\xb9\xd7\x95\xa8\xb1\x67\x78\x7b\x3c\x48\ +\x4d\x36\x47\x49\x38\x47\x4b\x38\x48\x4b\x2b\x36\x3c\x2b\x38\x3f\ +\x34\x42\x45\x30\x3f\x3f\x28\x33\x33\x28\x34\x32\x23\x29\x28\x2f\ +\x34\x32\x2d\x33\x30\x2a\x2a\x27\x36\x3a\x3c\x2a\x2d\x2d\x2f\x34\ +\x36\x29\x2e\x2c\x2f\x34\x36\x25\x29\x2b\x29\x32\x36\x32\x3c\x45\ +\x28\x32\x35\x30\x35\x36\x2c\x32\x31\x28\x31\x31\x2a\x2e\x2d\x2b\ +\x31\x2d\x2e\x2d\x2e\x30\x39\x3f\x23\x2c\x2a\x2e\x3a\x3d\x2a\x36\ +\x39\x29\x30\x2d\x2b\x30\x33\x22\x2a\x2b\x1a\x1a\x16\x31\x36\x32\ +\x2d\x34\x34\x23\x27\x2a\x2d\x34\x31\x36\x3d\x40\x2e\x2c\x2b\x2a\ +\x31\x36\x25\x2e\x2e\x24\x2a\x2a\x27\x2a\x25\x22\x26\x28\x2b\x2d\ +\x2d\x26\x2a\x29\x1f\x28\x22\x29\x2f\x2d\x2a\x30\x30\x2c\x33\x36\ +\x26\x31\x2f\x26\x27\x27\x26\x28\x23\x20\x24\x1e\x25\x2e\x2d\x23\ +\x29\x22\x2a\x2c\x2c\x26\x29\x24\x29\x2a\x2a\x2c\x30\x30\x23\x28\ +\x28\x25\x2a\x2b\x1c\x22\x22\x20\x21\x1f\x27\x28\x25\x26\x2b\x2e\ +\x26\x2a\x2e\x25\x25\x21\x14\x15\x15\x27\x2d\x2b\x2c\x30\x2f\x1d\ +\x22\x1d\x1c\x1d\x20\x28\x2d\x2d\x26\x2f\x2e\x2a\x33\x33\x20\x20\ +\x1d\x20\x22\x19\x21\x24\x21\x23\x25\x20\x23\x20\x1f\x26\x24\x23\ +\x1c\x1c\x17\x26\x27\x24\x22\x26\x23\x24\x24\x23\x28\x25\x22\x29\ +\x2b\x28\x24\x26\x22\x29\x29\x26\x20\x1f\x1c\x21\x22\x1f\x26\x28\ +\x29\x20\x1d\x1a\x1f\x1d\x1b\x20\x20\x1e\x20\x22\x1a\x22\x20\x1b\ +\x23\x25\x20\x1e\x1f\x23\x1e\x25\x22\x25\x2c\x2e\x23\x2e\x2d\x26\ +\x2c\x2f\x00\x00\x00\x17\x2f\x40\x24\x3d\x55\x5d\x7e\x9c\x4a\x6c\ +\x8b\x39\x5b\x79\x77\x9d\xbd\x84\xab\xce\x82\xa9\xcd\x7f\xa3\xc9\ +\x80\xa7\xca\x7f\xad\xcd\x7d\xab\xcb\x7f\xa7\xc9\x79\x98\xba\x63\ +\x84\xa4\x6c\x90\xad\x81\xa6\xc3\x80\xa0\xb9\x43\x58\x69\x05\x11\ +\x1b\x10\x18\x23\x13\x1c\x29\x1b\x28\x38\x57\x71\x84\x81\xa4\xba\ +\x87\xac\xc7\x85\xaa\xc6\x83\xa8\xc6\x84\xa9\xcb\x83\xa9\xc9\x80\ +\xa4\xbf\x78\x97\xb2\x6f\x8b\xaa\x6b\x87\xa7\x79\x97\xb9\x7a\x9d\ +\xbe\x70\x96\xb5\x5e\x80\x9b\x4c\x6a\x84\x54\x73\x8f\x72\x91\xb1\ +\x7a\x97\xb6\x70\x8a\xa9\x58\x73\x94\x61\x81\xa4\x7e\xa2\xc5\x84\ +\xa7\xc8\x7d\xa2\xc1\x6f\x95\xb7\x63\x88\xad\x69\x90\xb1\x86\xab\ +\xc3\x70\x87\x8d\x43\x57\x5e\x3d\x4e\x53\x3b\x4b\x4e\x2e\x3c\x43\ +\x2b\x37\x3c\x2b\x38\x3e\x30\x3a\x42\x2f\x3c\x3f\x2c\x30\x34\x2e\ +\x38\x39\x2f\x32\x31\x2e\x37\x35\x27\x2c\x2a\x2b\x31\x2c\x25\x31\ +\x26\x27\x30\x2a\x2b\x35\x35\x2b\x38\x32\x2b\x33\x32\x26\x2e\x2f\ +\x2d\x36\x33\x33\x43\x47\x25\x2d\x2d\x2b\x37\x35\x29\x2e\x2d\x2a\ +\x2d\x2e\x28\x2e\x2e\x26\x2a\x26\x2d\x30\x2d\x29\x31\x30\x25\x29\ +\x2b\x31\x30\x32\x26\x30\x2e\x2e\x3d\x40\x23\x2e\x2b\x2d\x32\x34\ +\x27\x32\x33\x21\x2d\x28\x1f\x1f\x1a\x33\x37\x33\x29\x2f\x2d\x26\ +\x2d\x2b\x2c\x2e\x25\x30\x36\x35\x35\x38\x3a\x29\x33\x3a\x29\x35\ +\x36\x23\x26\x27\x2a\x2f\x30\x26\x2b\x2c\x28\x2b\x2d\x27\x2e\x2a\ +\x24\x27\x21\x23\x28\x25\x2d\x2f\x2e\x2d\x2b\x2d\x24\x28\x26\x22\ +\x27\x22\x27\x27\x28\x25\x2c\x27\x23\x25\x23\x22\x21\x1e\x21\x21\ +\x22\x21\x20\x22\x28\x29\x2a\x23\x23\x1f\x26\x2a\x2c\x21\x27\x29\ +\x29\x30\x2e\x23\x27\x2b\x21\x26\x20\x25\x2c\x2a\x23\x27\x25\x26\ +\x27\x28\x17\x15\x13\x2a\x2f\x2c\x29\x2f\x2f\x1f\x20\x21\x1d\x1e\ +\x1d\x2c\x2f\x32\x22\x29\x2c\x25\x25\x21\x28\x2c\x28\x28\x28\x2b\ +\x20\x1f\x1d\x1d\x1b\x17\x27\x2e\x29\x22\x24\x27\x17\x17\x12\x29\ +\x27\x25\x2a\x2b\x23\x28\x28\x24\x23\x25\x1f\x25\x24\x21\x28\x2e\ +\x29\x27\x25\x23\x23\x23\x1c\x24\x25\x23\x28\x29\x28\x2a\x27\x26\ +\x28\x27\x23\x24\x28\x27\x19\x1c\x1a\x1d\x1d\x1a\x21\x26\x26\x20\ +\x2b\x2b\x28\x2e\x2e\x26\x2a\x27\x25\x22\x22\x25\x28\x26\x00\x00\ +\x00\x1b\x2e\x3f\x15\x2a\x3f\x52\x6f\x86\x52\x71\x88\x2e\x4d\x66\ +\x70\x93\xb1\x85\xaf\xd1\x83\xaf\xd2\x88\xaf\xd3\x89\xae\xd1\x83\ +\xae\xd0\x82\xb0\xce\x86\xb1\xd1\x85\xaf\xd0\x84\xae\xcd\x86\xad\ +\xcd\x89\xae\xce\x84\xa6\xc4\x5b\x73\x8c\x10\x1e\x30\x1b\x25\x34\ +\x2f\x38\x49\x24\x2f\x44\x60\x76\x8b\x92\xb2\xc9\x94\xb9\xd4\x8f\ +\xb8\xd3\x8a\xb1\xcf\x88\xb1\xd1\x8c\xb5\xd5\x8d\xb3\xd4\x8d\xaf\ +\xd1\x8a\xac\xce\x88\xab\xcc\x87\xac\xcd\x88\xaf\xd1\x87\xb0\xd0\ +\x84\xaa\xc8\x7b\x9f\xbc\x78\x9b\xba\x85\xa8\xc9\x8c\xad\xcb\x90\ +\xad\xca\x86\xa3\xc3\x81\xa4\xc7\x88\xaf\xd2\x8f\xb3\xd4\x8c\xb0\ +\xcf\x89\xab\xc8\x84\x9f\xb6\x6e\x84\x8f\x53\x61\x68\x40\x49\x50\ +\x42\x4b\x53\x3a\x47\x4f\x33\x3f\x47\x28\x36\x40\x29\x3a\x3a\x2c\ +\x37\x3a\x2d\x37\x38\x2d\x31\x31\x27\x27\x28\x30\x38\x37\x2c\x36\ +\x35\x30\x38\x39\x2c\x32\x34\x2e\x31\x31\x27\x2c\x25\x2e\x32\x32\ +\x31\x44\x45\x27\x36\x35\x27\x35\x36\x2c\x34\x35\x2a\x32\x33\x29\ +\x37\x40\x25\x2c\x2b\x2f\x39\x37\x25\x24\x24\x2f\x38\x3c\x2a\x34\ +\x34\x2b\x2f\x2c\x2d\x30\x31\x30\x34\x34\x29\x28\x28\x2f\x35\x33\ +\x24\x2e\x30\x31\x3d\x40\x2b\x2e\x2e\x26\x2e\x2e\x2b\x33\x35\x28\ +\x2e\x2c\x20\x26\x1f\x25\x2b\x2d\x30\x38\x3a\x30\x37\x3d\x25\x25\ +\x29\x34\x3f\x40\x29\x2e\x2d\x23\x2a\x26\x26\x30\x32\x2d\x3b\x42\ +\x27\x31\x33\x2b\x33\x32\x2a\x2f\x2f\x2c\x30\x2b\x24\x2b\x27\x24\ +\x25\x23\x2c\x2f\x2e\x29\x30\x2e\x2e\x34\x2f\x26\x2b\x29\x28\x2b\ +\x2a\x20\x25\x23\x23\x24\x22\x2e\x30\x2c\x25\x28\x27\x20\x22\x1e\ +\x24\x25\x25\x26\x2c\x2a\x2b\x34\x31\x2c\x30\x31\x25\x2b\x2a\x28\ +\x25\x26\x27\x27\x25\x23\x29\x27\x24\x25\x25\x22\x25\x20\x1a\x13\ +\x13\x2c\x30\x2d\x27\x2c\x2a\x18\x1c\x1a\x1c\x20\x1e\x2e\x36\x38\ +\x24\x25\x25\x24\x23\x23\x20\x23\x23\x23\x21\x1d\x1d\x21\x1d\x25\ +\x2a\x24\x25\x2b\x27\x22\x1e\x1c\x1f\x20\x1f\x1d\x1e\x17\x1a\x18\ +\x15\x22\x24\x20\x17\x15\x12\x27\x27\x24\x24\x27\x23\x1e\x1d\x1e\ +\x1f\x21\x1e\x1a\x16\x10\x26\x26\x25\x26\x2b\x29\x28\x2a\x27\x1e\ +\x23\x1f\x1e\x29\x2d\x26\x2e\x30\x23\x2b\x2e\x24\x27\x29\x26\x23\ +\x27\x22\x22\x1e\x1f\x21\x1c\x24\x24\x25\x00\x00\x00\x1b\x2d\x3d\ +\x09\x19\x29\x27\x3c\x4c\x35\x4d\x5e\x36\x51\x67\x72\x96\xb3\x89\ +\xb1\xd3\x8a\xb2\xd5\x88\xad\xce\x83\xa9\xc9\x7e\xa6\xc5\x80\xab\ +\xc8\x86\xb3\xd2\x89\xb7\xd8\x8c\xba\xda\x8c\xb8\xd8\x88\xb0\xd4\ +\x86\xaa\xcf\x6e\x89\xaa\x21\x30\x4a\x13\x1d\x2f\x27\x31\x44\x28\ +\x37\x4c\x5f\x78\x90\x93\xb4\xce\x98\xbe\xdc\x93\xbb\xd9\x8c\xb4\ +\xd4\x8a\xb4\xd6\x90\xb9\xdc\x92\xb8\xda\x95\xb8\xd8\x95\xb6\xd7\ +\x90\xb4\xd5\x88\xb1\xd4\x88\xb3\xd7\x8d\xb7\xd7\x8e\xb5\xd5\x8d\ +\xb3\xd4\x8b\xb3\xd4\x8f\xb5\xd5\x93\xb6\xd3\x98\xb6\xd3\x96\xb4\ +\xd4\x91\xb2\xd6\x90\xb6\xda\x8f\xb6\xd9\x98\xb7\xd0\x8f\xa1\xa5\ +\x56\x6b\x6c\x3e\x50\x55\x2b\x3b\x40\x3c\x44\x4b\x39\x4b\x52\x34\ +\x45\x49\x2c\x3c\x42\x25\x30\x2c\x20\x2e\x2e\x27\x28\x27\x39\x44\ +\x49\x2e\x37\x38\x24\x24\x21\x34\x3c\x3e\x30\x3e\x3e\x2f\x38\x3a\ +\x29\x30\x30\x2a\x30\x30\x2b\x35\x31\x2b\x34\x36\x2c\x35\x35\x37\ +\x3f\x46\x2b\x3c\x3c\x30\x3b\x3d\x30\x37\x3e\x34\x3e\x47\x34\x3f\ +\x3e\x2a\x2b\x26\x26\x29\x28\x2a\x2d\x34\x27\x31\x31\x2e\x35\x34\ +\x2a\x2d\x2b\x2d\x30\x30\x26\x2a\x29\x28\x30\x32\x2a\x36\x3c\x2d\ +\x3d\x3d\x3b\x4e\x53\x27\x35\x3b\x24\x29\x29\x28\x2e\x2b\x23\x31\ +\x32\x24\x27\x24\x2c\x39\x3b\x29\x34\x33\x23\x26\x22\x34\x3c\x40\ +\x2f\x37\x3a\x2a\x33\x33\x2c\x36\x3c\x2a\x2e\x2e\x29\x2e\x2c\x22\ +\x2a\x24\x22\x27\x21\x29\x2d\x2a\x2b\x2d\x29\x2a\x30\x28\x27\x2a\ +\x26\x24\x28\x25\x23\x25\x27\x26\x2e\x2e\x26\x2a\x28\x23\x25\x24\ +\x28\x29\x2b\x27\x2f\x27\x27\x2c\x2a\x27\x2a\x2b\x1c\x24\x24\x1c\ +\x1e\x1f\x25\x28\x25\x27\x2e\x2f\x29\x30\x31\x23\x25\x26\x31\x32\ +\x34\x27\x2a\x2c\x25\x2a\x29\x21\x22\x1f\x17\x14\x14\x2d\x30\x2c\ +\x2a\x31\x33\x18\x1f\x1d\x21\x21\x1c\x31\x31\x32\x27\x2a\x2c\x28\ +\x2f\x33\x23\x2b\x2f\x1d\x1f\x1b\x26\x24\x23\x1f\x1c\x1c\x26\x25\ +\x20\x29\x27\x20\x28\x2c\x23\x25\x22\x1c\x24\x27\x24\x22\x27\x23\ +\x1e\x21\x1e\x28\x29\x2a\x24\x23\x22\x21\x22\x21\x1e\x1b\x18\x23\ +\x24\x22\x22\x23\x21\x23\x24\x1f\x22\x29\x27\x23\x2a\x2d\x24\x32\ +\x31\x23\x2b\x2d\x25\x28\x2a\x29\x21\x24\x22\x1d\x1b\x25\x24\x21\ +\x2b\x2a\x28\x29\x29\x26\x00\x00\x00\x57\x6b\x82\x24\x33\x45\x0b\ +\x1a\x2a\x1c\x2f\x40\x44\x63\x7a\x79\xa1\xc0\x86\xb0\xd2\x87\xae\ +\xd1\x84\xa9\xc8\x75\x9a\xb7\x6a\x91\xac\x71\x99\xb5\x83\xab\xcc\ +\x8d\xb9\xdb\x8b\xb8\xda\x88\xb6\xd7\x85\xb2\xd6\x83\xab\xd1\x75\ +\x95\xb9\x41\x52\x71\x0f\x18\x2f\x16\x23\x36\x2d\x45\x58\x69\x8b\ +\xa1\x8f\xb6\xd1\x95\xbd\xdd\x92\xba\xdc\x8e\xb8\xda\x89\xb7\xd9\ +\x8c\xb9\xdc\x91\xbb\xdc\x96\xbc\xda\x98\xba\xdb\x90\xb6\xd9\x88\ +\xb1\xd8\x86\xb2\xd8\x8a\xb5\xd8\x8e\xb7\xd8\x8d\xb7\xd8\x8d\xb8\ +\xd9\x93\xbb\xdc\x99\xbb\xdc\x98\xb8\xd9\x96\xb6\xd8\x95\xb6\xda\ +\x96\xb9\xd9\x93\xab\xbc\x67\x76\x7c\x40\x53\x5a\x3e\x4b\x4f\x40\ +\x49\x50\x38\x44\x46\x35\x41\x47\x35\x40\x47\x31\x3d\x44\x30\x41\ +\x47\x30\x40\x45\x24\x31\x32\x23\x29\x26\x38\x44\x4d\x2f\x3b\x3e\ +\x22\x23\x21\x36\x3b\x3f\x32\x38\x3a\x2a\x2e\x2f\x25\x2d\x2c\x2e\ +\x39\x3b\x2c\x38\x3e\x25\x2a\x28\x2e\x39\x39\x2d\x31\x35\x2d\x34\ +\x33\x2c\x32\x31\x28\x2f\x2b\x2d\x35\x39\x32\x3d\x42\x2c\x32\x31\ +\x2a\x2c\x2e\x32\x37\x3c\x29\x30\x30\x2c\x2f\x30\x28\x32\x31\x27\ +\x31\x31\x29\x32\x2e\x2e\x3d\x3f\x2a\x32\x35\x29\x2f\x31\x29\x35\ +\x3a\x29\x2e\x31\x29\x2e\x2f\x2d\x37\x3e\x27\x36\x39\x26\x28\x25\ +\x30\x39\x3f\x25\x32\x33\x1d\x22\x1e\x2e\x3b\x41\x2d\x32\x31\x2a\ +\x2e\x2c\x27\x2b\x2d\x28\x2d\x2a\x25\x28\x22\x2a\x2d\x2c\x20\x27\ +\x26\x24\x23\x22\x29\x2c\x2b\x2b\x2d\x2c\x28\x2d\x2e\x23\x26\x26\ +\x22\x29\x2b\x29\x30\x30\x24\x30\x2c\x24\x2a\x25\x26\x2c\x27\x2a\ +\x32\x2c\x2a\x2e\x2a\x28\x29\x2b\x28\x27\x22\x27\x2e\x2b\x27\x2c\ +\x2a\x27\x2e\x2d\x27\x25\x25\x27\x27\x27\x2a\x2d\x2d\x29\x37\x35\ +\x24\x24\x23\x23\x24\x23\x13\x16\x15\x2b\x2f\x29\x29\x2f\x30\x1e\ +\x1f\x1f\x1c\x1e\x17\x2a\x34\x32\x2d\x32\x32\x24\x2c\x2f\x27\x29\ +\x24\x27\x2e\x28\x25\x28\x25\x1f\x1c\x15\x1d\x18\x15\x24\x28\x24\ +\x26\x27\x29\x24\x28\x26\x20\x24\x22\x21\x1b\x19\x25\x2c\x2c\x23\ +\x25\x26\x2a\x2b\x28\x21\x19\x16\x24\x25\x21\x25\x28\x28\x1f\x20\ +\x21\x1e\x2b\x2c\x26\x32\x36\x28\x31\x37\x23\x27\x2b\x23\x26\x26\ +\x1f\x1f\x1f\x29\x21\x1c\x26\x1e\x17\x2c\x23\x1f\x2f\x2a\x29\x2a\ +\x2c\x27\x00\x00\x00\x82\x9e\xbc\x5f\x75\x8d\x20\x34\x47\x26\x3b\ +\x50\x5e\x7f\x99\x7f\xa7\xc9\x82\xab\xcf\x86\xad\xce\x7e\xa5\xc2\ +\x65\x8a\xa2\x46\x69\x83\x5a\x7e\x9a\x80\xa4\xc4\x8d\xb5\xd4\x86\ +\xb1\xd3\x84\xae\xd3\x83\xaf\xd4\x84\xaf\xd1\x79\x9d\xbe\x5d\x77\ +\x96\x35\x46\x61\x32\x46\x5e\x58\x76\x8d\x7d\xa5\xbd\x8b\xb3\xcf\ +\x92\xb7\xd9\x93\xb9\xdc\x91\xb9\xdc\x8a\xb7\xd9\x87\xb7\xd8\x88\ +\xb9\xd8\x8e\xba\xd9\x94\xba\xdd\x90\xb7\xdd\x8c\xb3\xda\x87\xb2\ +\xd6\x86\xb4\xd6\x88\xb5\xd4\x8e\xb7\xd7\x90\xbb\xda\x93\xbc\xdc\ +\x96\xbb\xdd\x96\xb9\xdb\x92\xb5\xd6\x9b\xb0\xc2\x6d\x7b\x81\x47\ +\x56\x5a\x3f\x4a\x51\x3d\x4a\x52\x3d\x48\x4f\x34\x45\x4b\x2a\x3a\ +\x40\x2d\x3b\x43\x2e\x3d\x3f\x2d\x36\x33\x27\x2e\x2d\x2a\x31\x33\ +\x25\x31\x35\x22\x2f\x2b\x39\x46\x4e\x33\x3c\x3f\x25\x25\x24\x2d\ +\x35\x3a\x33\x3b\x3e\x2e\x34\x34\x2c\x32\x34\x31\x3d\x45\x2c\x34\ +\x38\x2f\x35\x34\x2d\x39\x3f\x26\x2c\x2d\x2e\x38\x37\x2f\x35\x30\ +\x2c\x2e\x2e\x30\x37\x37\x26\x2d\x2b\x2b\x2f\x2e\x2a\x32\x2f\x26\ +\x29\x29\x2d\x2f\x2f\x31\x38\x31\x25\x31\x30\x25\x2a\x23\x27\x31\ +\x30\x2c\x34\x37\x2d\x3d\x3e\x30\x40\x46\x2c\x36\x38\x2b\x32\x33\ +\x27\x2d\x33\x24\x30\x30\x23\x2c\x28\x1f\x1f\x1a\x2e\x37\x36\x23\ +\x2b\x2f\x1a\x20\x1c\x2f\x36\x38\x29\x35\x37\x23\x2b\x2e\x2c\x30\ +\x32\x2c\x35\x38\x29\x2d\x27\x28\x27\x26\x30\x2c\x2d\x2b\x2c\x29\ +\x2a\x2f\x28\x25\x2d\x2a\x28\x26\x24\x2f\x34\x38\x27\x30\x34\x27\ +\x2e\x30\x20\x28\x28\x24\x29\x28\x25\x2c\x2a\x21\x24\x22\x27\x2f\ +\x2d\x2a\x28\x29\x29\x2b\x2c\x26\x2d\x29\x27\x2b\x25\x27\x29\x28\ +\x24\x29\x28\x2c\x26\x23\x26\x2a\x28\x26\x2b\x30\x26\x2f\x31\x26\ +\x2d\x2f\x14\x14\x14\x2c\x2e\x2c\x2d\x2c\x2b\x1c\x1f\x1f\x1e\x1f\ +\x1d\x2c\x34\x31\x2d\x32\x33\x25\x2c\x2b\x2a\x2a\x23\x33\x2d\x2d\ +\x27\x25\x20\x27\x25\x1e\x28\x28\x25\x29\x2d\x30\x27\x2f\x31\x27\ +\x28\x2a\x20\x20\x1d\x1d\x1b\x1a\x2d\x37\x34\x23\x22\x21\x24\x26\ +\x23\x27\x2c\x2b\x24\x2a\x2c\x28\x32\x34\x27\x2d\x31\x21\x29\x2d\ +\x28\x2e\x2e\x28\x27\x27\x25\x22\x1e\x22\x25\x23\x24\x23\x1e\x2c\ +\x24\x1f\x2d\x2b\x24\x30\x32\x2f\x33\x33\x33\x2c\x30\x2f\x00\x00\ +\x00\x8b\xae\xcd\x80\x9f\xbb\x59\x73\x8e\x2e\x47\x60\x63\x84\xa0\ +\x7e\xa6\xc6\x82\xad\xcf\x84\xaf\xcf\x7e\xaa\xc6\x6d\x95\xb0\x5f\ +\x82\xa2\x6a\x8d\xaf\x82\xa7\xc7\x87\xb0\xcf\x7f\xae\xce\x7b\xa8\ +\xcd\x82\xac\xd1\x83\xad\xd0\x7b\xa6\xc6\x71\x96\xb6\x64\x83\xa5\ +\x6b\x89\xab\x7d\xa1\xbe\x86\xae\xc7\x8c\xb1\xce\x92\xb5\xd7\x93\ +\xb8\xda\x8f\xb6\xd8\x87\xb5\xd5\x80\xb3\xd5\x7f\xb5\xd3\x81\xb3\ +\xd3\x87\xb4\xd7\x8a\xb3\xd8\x89\xb0\xd5\x86\xb1\xd5\x85\xb4\xd4\ +\x89\xb6\xd3\x90\xb9\xd4\x91\xb8\xd4\x96\xba\xd8\x95\xba\xda\x94\ +\xb8\xd5\x81\x99\xa1\x48\x5c\x5e\x3e\x4a\x52\x3c\x4a\x4d\x3f\x46\ +\x4e\x31\x3c\x40\x2e\x3c\x3c\x2f\x38\x41\x37\x42\x4b\x2a\x2f\x32\ +\x31\x36\x35\x35\x3d\x41\x2d\x32\x31\x33\x3a\x3a\x2b\x39\x3b\x1e\ +\x26\x27\x38\x3b\x3e\x32\x3a\x3e\x26\x29\x24\x35\x3c\x46\x32\x40\ +\x40\x29\x2f\x2b\x2e\x2f\x32\x2c\x37\x3c\x2a\x30\x32\x33\x37\x3b\ +\x2c\x3b\x3e\x2e\x35\x36\x32\x37\x3a\x32\x3f\x46\x28\x35\x35\x30\ +\x38\x3c\x30\x35\x34\x2e\x32\x31\x29\x35\x31\x2a\x2d\x2f\x2d\x34\ +\x36\x24\x31\x31\x29\x2b\x2d\x2d\x30\x30\x30\x35\x37\x34\x3b\x40\ +\x28\x33\x35\x2a\x32\x30\x2d\x33\x32\x28\x32\x32\x25\x32\x34\x2c\ +\x3c\x42\x27\x2d\x31\x1f\x1d\x1e\x33\x39\x3b\x2d\x36\x39\x22\x22\ +\x1e\x32\x3c\x3f\x2d\x38\x3d\x27\x2d\x2e\x24\x26\x23\x22\x28\x28\ +\x2c\x32\x33\x28\x2a\x23\x32\x33\x32\x33\x35\x33\x2f\x33\x31\x30\ +\x36\x32\x23\x28\x24\x28\x2a\x2b\x28\x33\x39\x28\x33\x3a\x28\x2e\ +\x38\x2e\x31\x30\x22\x29\x26\x29\x2e\x2e\x24\x2a\x27\x26\x2d\x2d\ +\x26\x2c\x2b\x23\x2b\x25\x29\x2d\x2a\x2a\x31\x2f\x25\x2a\x29\x20\ +\x20\x1c\x22\x29\x29\x22\x29\x28\x25\x2a\x27\x26\x26\x28\x15\x14\ +\x14\x27\x2c\x2d\x25\x2c\x28\x1b\x1f\x18\x26\x2c\x2e\x32\x3a\x41\ +\x2a\x2d\x2d\x26\x23\x22\x27\x24\x23\x24\x29\x20\x21\x22\x1f\x22\ +\x26\x24\x23\x29\x29\x21\x23\x21\x28\x27\x24\x2e\x2c\x27\x22\x24\ +\x1e\x23\x21\x1e\x1e\x1d\x1b\x1f\x20\x1f\x26\x2d\x30\x27\x2c\x2e\ +\x25\x2f\x31\x23\x2f\x31\x23\x26\x2c\x22\x28\x2a\x27\x26\x27\x23\ +\x27\x23\x2a\x29\x28\x2f\x2f\x2a\x2f\x28\x27\x33\x2e\x29\x34\x37\ +\x32\x33\x3c\x3a\x30\x36\x35\x31\x37\x35\x00\x00\x00\x88\xb2\xd1\ +\x89\xb0\xcf\x7d\x9c\xbd\x42\x5e\x7a\x47\x67\x84\x7b\xa6\xc2\x82\ +\xb0\xcd\x87\xb3\xd3\x80\xac\xcd\x79\xa4\xc3\x77\x9d\xbf\x7c\xa3\ +\xc5\x83\xab\xcc\x83\xae\xce\x7d\xac\xce\x7b\xa7\xcc\x83\xa9\xd0\ +\x83\xac\xd2\x7d\xa9\xcc\x77\xa4\xc5\x7c\xa6\xc8\x80\xa9\xcd\x84\ +\xac\xcc\x87\xaf\xce\x8c\xb1\xd2\x8f\xb5\xd7\x8f\xb8\xd9\x8d\xb7\ +\xd7\x85\xb3\xd5\x7c\xb1\xd2\x79\xb0\xcf\x7b\xb0\xcd\x80\xaf\xd0\ +\x87\xb1\xd4\x88\xaf\xd1\x8a\xb1\xd4\x88\xb4\xd3\x8b\xb7\xd1\x8d\ +\xb8\xd0\x8e\xb7\xd3\x9d\xbd\xd6\x89\xa1\xaf\x53\x66\x66\x43\x4b\ +\x4e\x43\x4e\x51\x39\x49\x4e\x3a\x47\x4f\x35\x41\x45\x32\x3e\x40\ +\x35\x3f\x3e\x2d\x38\x3e\x31\x3a\x3c\x30\x31\x32\x35\x3c\x3b\x39\ +\x3e\x44\x33\x3c\x38\x2f\x35\x35\x2d\x39\x3e\x1a\x22\x21\x2e\x33\ +\x36\x2f\x37\x3a\x28\x28\x24\x31\x3a\x3e\x2c\x3b\x3a\x2d\x38\x39\ +\x2c\x36\x3a\x2a\x36\x39\x32\x3d\x39\x3a\x3e\x40\x2d\x33\x34\x2b\ +\x30\x33\x2b\x33\x32\x2b\x36\x39\x2b\x2f\x2f\x2d\x31\x32\x2c\x31\ +\x30\x2b\x2d\x2d\x2a\x2d\x2e\x2e\x31\x31\x2c\x36\x3b\x29\x2d\x31\ +\x2b\x30\x2f\x2b\x30\x30\x2e\x36\x32\x2a\x30\x2e\x22\x2c\x26\x2f\ +\x39\x38\x33\x37\x35\x2b\x34\x34\x26\x2d\x2d\x2d\x3e\x3b\x29\x2f\ +\x32\x20\x23\x1f\x31\x3d\x3e\x29\x37\x38\x20\x23\x21\x2e\x37\x3b\ +\x29\x30\x32\x30\x36\x37\x2b\x2b\x2a\x20\x25\x20\x2a\x31\x2f\x23\ +\x29\x29\x26\x2d\x2e\x24\x21\x22\x22\x25\x25\x26\x2d\x2b\x20\x22\ +\x1d\x20\x27\x28\x25\x2c\x29\x22\x2c\x25\x29\x2c\x29\x2f\x30\x2b\ +\x2f\x32\x30\x28\x29\x25\x2c\x2e\x2c\x1f\x27\x29\x25\x28\x23\x32\ +\x35\x36\x2d\x34\x33\x2c\x33\x36\x22\x28\x28\x2f\x2d\x2e\x26\x29\ +\x26\x25\x2c\x2d\x2a\x30\x37\x25\x2a\x29\x11\x13\x11\x26\x29\x28\ +\x27\x2f\x29\x23\x21\x1a\x1c\x1f\x1d\x2e\x3d\x3e\x27\x28\x25\x2a\ +\x28\x29\x28\x25\x26\x25\x23\x1c\x2c\x2f\x2b\x21\x25\x21\x20\x23\ +\x19\x22\x23\x1c\x21\x25\x1f\x23\x23\x25\x25\x2c\x28\x24\x28\x2a\ +\x25\x28\x2c\x30\x38\x3d\x25\x2a\x2e\x27\x2c\x2b\x25\x2b\x2f\x24\ +\x2b\x2e\x26\x2d\x2e\x2e\x35\x2f\x2a\x25\x23\x2a\x2b\x24\x2c\x2e\ +\x2d\x2f\x29\x25\x30\x2f\x2b\x31\x36\x30\x30\x37\x2f\x34\x39\x35\ +\x2d\x31\x32\x28\x34\x33\x00\x00\x00\x88\xb5\xd4\x87\xb2\xd2\x86\ +\xab\xcc\x59\x78\x95\x2b\x4a\x64\x6b\x91\xa9\x87\xaf\xce\x89\xb1\ +\xd4\x84\xac\xd1\x83\xaa\xcd\x82\xaa\xcb\x81\xac\xcd\x82\xac\xce\ +\x85\xab\xce\x84\xab\xd0\x83\xa9\xcf\x88\xaa\xd5\x86\xac\xd6\x7f\ +\xac\xcf\x7d\xad\xcc\x7f\xad\xcb\x83\xae\xce\x88\xaf\xd1\x8a\xb1\ +\xd2\x8c\xb3\xd4\x8d\xb6\xd7\x8d\xb5\xd4\x8e\xb4\xd3\x86\xb2\xd1\ +\x7b\xb0\xd0\x77\xaf\xcd\x7a\xad\xcb\x7f\xaf\xce\x86\xaf\xcf\x88\ +\xae\xce\x8c\xb0\xd0\x8c\xb3\xd2\x8b\xb4\xce\x95\xba\xcf\x91\xa4\ +\xa8\x5a\x6c\x6e\x42\x4f\x50\x43\x4c\x4e\x36\x41\x3b\x3a\x45\x49\ +\x32\x40\x43\x37\x43\x42\x34\x3e\x3e\x31\x38\x39\x34\x3a\x3d\x36\ +\x3b\x41\x32\x39\x38\x33\x36\x38\x37\x44\x48\x2b\x31\x2d\x31\x36\ +\x3b\x30\x41\x42\x2b\x33\x36\x29\x2a\x2b\x31\x37\x39\x2d\x38\x3a\ +\x28\x32\x30\x2d\x34\x34\x36\x41\x46\x37\x43\x41\x2e\x37\x38\x2c\ +\x33\x36\x2d\x31\x32\x2a\x35\x38\x26\x2b\x29\x37\x40\x44\x2e\x38\ +\x39\x29\x33\x35\x2d\x34\x32\x31\x34\x34\x2f\x34\x35\x2e\x38\x3a\ +\x2c\x31\x32\x2c\x30\x2d\x27\x2b\x29\x2d\x34\x32\x2d\x31\x2e\x26\ +\x2e\x2b\x29\x31\x2e\x2a\x35\x39\x28\x34\x38\x2b\x30\x31\x2b\x37\ +\x34\x2e\x39\x39\x25\x2e\x2d\x22\x2b\x2a\x23\x30\x33\x20\x23\x22\ +\x33\x3a\x3d\x2a\x34\x35\x27\x1f\x1e\x29\x2e\x2e\x28\x2e\x2a\x28\ +\x2e\x29\x28\x26\x24\x25\x29\x27\x1d\x24\x24\x27\x33\x39\x1f\x27\ +\x24\x27\x2b\x27\x26\x2a\x2c\x23\x2d\x2e\x27\x31\x33\x28\x2c\x29\ +\x28\x2c\x2b\x28\x27\x25\x26\x26\x23\x2f\x33\x2f\x30\x39\x3a\x2b\ +\x2b\x2b\x28\x2a\x24\x2f\x30\x31\x25\x30\x31\x25\x27\x2a\x2e\x35\ +\x3b\x28\x2b\x2e\x26\x2a\x25\x28\x2e\x2f\x2b\x2d\x2b\x28\x32\x34\ +\x27\x28\x2c\x28\x29\x29\x18\x16\x13\x2b\x2b\x26\x2e\x2f\x2c\x20\ +\x20\x1f\x14\x17\x13\x29\x30\x32\x28\x29\x25\x27\x29\x22\x24\x23\ +\x1e\x22\x22\x21\x2c\x32\x2d\x26\x2a\x26\x25\x26\x24\x1f\x25\x1c\ +\x1d\x20\x19\x1b\x20\x20\x26\x32\x32\x27\x33\x36\x1d\x24\x22\x2b\ +\x2d\x30\x26\x29\x26\x24\x27\x2a\x24\x27\x28\x25\x22\x1e\x2e\x34\ +\x33\x2e\x2d\x28\x31\x32\x30\x34\x3f\x40\x30\x38\x3b\x31\x34\x31\ +\x32\x31\x2f\x31\x31\x2d\x30\x37\x34\x26\x31\x2f\x22\x2b\x2c\x2b\ +\x30\x2f\x00\x00\x00\x84\xb3\xd1\x83\xb2\xd1\x83\xaf\xcc\x65\x8a\ +\xa4\x25\x42\x5a\x4e\x6e\x86\x88\xaa\xcb\x8a\xae\xd5\x88\xae\xd4\ +\x86\xad\xce\x84\xae\xce\x81\xaf\xd0\x80\xad\xd0\x81\xab\xce\x84\ +\xa9\xce\x85\xa9\xd0\x89\xae\xd5\x85\xb0\xd4\x80\xb0\xd0\x83\xb3\ +\xcd\x86\xb3\xcd\x89\xb0\xcf\x8e\xb2\xd3\x8f\xb3\xd5\x8d\xb7\xd7\ +\x8a\xb8\xd6\x8c\xb7\xd2\x91\xb5\xd2\x8a\xb2\xd0\x7e\xaf\xcf\x79\ +\xaf\xcd\x7b\xad\xcd\x80\xae\xce\x86\xaf\xcf\x8a\xb0\xce\x8e\xaf\ +\xcf\x96\xb6\xd4\x90\xab\xbb\x66\x7b\x7e\x45\x4f\x5c\x3f\x4c\x4f\ +\x3e\x49\x4d\x36\x45\x48\x31\x47\x47\x24\x3a\x32\x30\x3e\x3f\x29\ +\x2f\x2e\x39\x39\x39\x34\x3c\x39\x2e\x33\x2e\x31\x38\x36\x3c\x42\ +\x44\x39\x40\x49\x34\x42\x49\x3c\x44\x4c\x2a\x35\x38\x31\x3a\x3b\ +\x2e\x35\x38\x24\x29\x28\x31\x36\x35\x34\x3c\x3d\x26\x2d\x2b\x2a\ +\x2f\x2f\x32\x3d\x39\x2b\x3d\x3d\x30\x3c\x3f\x35\x43\x47\x31\x39\ +\x37\x31\x3d\x3b\x2f\x2e\x32\x2e\x2f\x34\x2d\x38\x3c\x2f\x32\x2f\ +\x2e\x34\x35\x31\x3b\x3e\x2f\x31\x34\x34\x37\x35\x2f\x34\x33\x2e\ +\x31\x2c\x2e\x35\x33\x31\x36\x36\x28\x2d\x2a\x29\x2c\x2d\x2d\x32\ +\x36\x2b\x37\x36\x26\x29\x26\x2b\x30\x2b\x2a\x2d\x2b\x2d\x36\x34\ +\x2a\x32\x2f\x24\x29\x2a\x27\x30\x31\x24\x24\x23\x3b\x42\x46\x2f\ +\x3c\x40\x1c\x21\x1d\x30\x34\x36\x2b\x3a\x37\x25\x2c\x25\x2f\x34\ +\x3a\x29\x2f\x32\x28\x27\x29\x24\x2f\x34\x23\x2a\x2a\x23\x24\x27\ +\x29\x2d\x2c\x29\x2c\x2a\x2c\x2e\x32\x24\x25\x27\x24\x28\x26\x2f\ +\x32\x32\x2a\x2d\x2a\x2c\x35\x30\x2a\x2e\x2b\x2a\x29\x25\x2e\x31\ +\x2a\x2a\x2b\x2a\x22\x24\x21\x23\x28\x23\x27\x25\x28\x28\x2b\x29\ +\x2c\x33\x31\x29\x27\x28\x2a\x2d\x2d\x2f\x34\x33\x22\x29\x21\x1f\ +\x25\x20\x18\x18\x16\x24\x30\x2c\x2e\x31\x2f\x26\x24\x1f\x1b\x17\ +\x13\x2a\x28\x28\x2a\x2e\x2a\x27\x30\x2b\x26\x2c\x29\x1d\x1d\x1a\ +\x24\x27\x21\x27\x2c\x2a\x26\x29\x2c\x23\x27\x22\x25\x2a\x2b\x27\ +\x2a\x2e\x24\x2d\x2d\x23\x2a\x2c\x23\x29\x28\x2a\x2e\x2c\x25\x2d\ +\x28\x28\x2d\x2b\x2a\x28\x25\x28\x25\x1e\x30\x27\x21\x34\x30\x2a\ +\x3a\x37\x37\x32\x35\x30\x32\x32\x34\x2f\x38\x36\x33\x33\x33\x2c\ +\x34\x30\x25\x2d\x2d\x25\x28\x28\x2a\x38\x36\x2e\x35\x32\x00\x00\ +\x00\x7c\xab\xc9\x80\xb1\xcb\x83\xb3\xcc\x6f\x98\xaf\x25\x43\x5a\ +\x35\x51\x6b\x80\xa0\xc1\x8b\xae\xd4\x87\xaf\xd2\x84\xb0\xcf\x83\ +\xb0\xce\x82\xb0\xd2\x82\xaf\xd4\x7f\xad\xcf\x7e\xa9\xcb\x7c\xa8\ +\xcb\x7f\xac\xcd\x80\xb1\xcd\x82\xb5\xcc\x84\xb3\xcb\x8c\xb5\xce\ +\x91\xb5\xd4\x92\xb5\xd8\x92\xb7\xd9\x8d\xba\xd8\x8a\xba\xd6\x8e\ +\xb9\xd3\x94\xb9\xd4\x92\xb7\xd5\x89\xb4\xd3\x84\xb3\xd2\x85\xb2\ +\xd5\x87\xb1\xd6\x8c\xb3\xd5\x93\xb3\xd3\x96\xaa\xb7\x75\x83\x87\ +\x4a\x5b\x5d\x3f\x4a\x50\x3f\x44\x48\x39\x44\x48\x36\x40\x47\x32\ +\x40\x49\x33\x41\x46\x35\x43\x46\x3a\x41\x43\x38\x35\x38\x3c\x47\ +\x41\x38\x43\x43\x32\x36\x38\x33\x3d\x37\x2f\x35\x30\x39\x3f\x42\ +\x30\x3a\x3b\x2b\x34\x35\x2e\x3b\x3c\x32\x3f\x47\x27\x2b\x2a\x29\ +\x34\x38\x29\x30\x33\x35\x3c\x3c\x2f\x3b\x38\x22\x23\x23\x35\x3f\ +\x45\x35\x41\x43\x30\x37\x3e\x34\x40\x43\x2c\x36\x34\x2e\x39\x3e\ +\x28\x2e\x2f\x2f\x30\x32\x25\x2e\x2d\x2c\x31\x2f\x36\x3b\x38\x30\ +\x33\x33\x31\x3a\x3d\x2e\x35\x36\x31\x38\x36\x32\x3b\x3a\x2a\x32\ +\x2f\x2a\x2c\x2d\x20\x2a\x2e\x2b\x34\x34\x28\x31\x34\x29\x35\x35\ +\x27\x30\x2a\x2a\x33\x32\x26\x2b\x25\x28\x2e\x2b\x2d\x38\x38\x2e\ +\x39\x39\x28\x31\x30\x22\x26\x29\x31\x37\x35\x27\x33\x33\x21\x23\ +\x22\x29\x30\x31\x29\x35\x32\x2b\x35\x33\x28\x2e\x2d\x23\x2f\x2d\ +\x25\x2d\x2e\x27\x28\x2a\x23\x29\x23\x25\x23\x23\x28\x2e\x2a\x24\ +\x2b\x29\x24\x29\x22\x2b\x29\x2c\x38\x3b\x3e\x30\x35\x38\x27\x2d\ +\x29\x27\x25\x22\x27\x2a\x2a\x28\x29\x26\x28\x28\x23\x2b\x33\x32\ +\x2a\x2f\x2b\x26\x24\x26\x22\x20\x1f\x28\x2b\x2a\x20\x22\x22\x27\ +\x2a\x25\x2b\x2c\x26\x21\x27\x22\x24\x2a\x28\x25\x2d\x28\x19\x18\ +\x13\x23\x28\x26\x2a\x2c\x2d\x25\x24\x24\x1a\x19\x15\x2e\x2f\x2d\ +\x28\x31\x2e\x27\x2a\x23\x24\x23\x23\x25\x2a\x23\x1c\x22\x1c\x20\ +\x2b\x29\x24\x2a\x2e\x22\x28\x29\x23\x29\x2a\x27\x2a\x2a\x24\x29\ +\x24\x24\x28\x2a\x25\x29\x26\x27\x2f\x2a\x2c\x32\x30\x35\x31\x2d\ +\x2e\x30\x2c\x2e\x2e\x2c\x28\x2e\x26\x2e\x2a\x28\x32\x33\x2e\x30\ +\x2d\x32\x2f\x30\x33\x2b\x2f\x32\x25\x2e\x2c\x23\x2d\x2c\x23\x2a\ +\x29\x27\x2b\x2b\x2c\x30\x2d\x30\x39\x3c\x00\x00\x00\x69\x93\xae\ +\x7b\xab\xc2\x81\xb3\xca\x76\xa0\xb6\x2b\x4a\x60\x2a\x46\x61\x7a\ +\x9d\xbc\x8c\xb0\xd2\x8a\xb0\xd3\x85\xb1\xcf\x82\xb1\xce\x85\xb1\ +\xd4\x84\xaf\xd3\x80\xac\xce\x7c\xa7\xc6\x79\xa8\xc6\x7b\xac\xc6\ +\x80\xb3\xca\x84\xb6\xcc\x8b\xb5\xcf\x90\xb4\xd4\x92\xb4\xd6\x8f\ +\xb6\xd9\x8f\xb9\xdb\x8f\xb9\xd9\x8b\xb6\xd4\x8c\xb5\xd2\x92\xb7\ +\xd3\x93\xb6\xd6\x90\xb4\xd6\x90\xb3\xd6\x8e\xb4\xd6\x8e\xb3\xd7\ +\x97\xb6\xd3\x83\x95\x97\x45\x58\x5c\x3c\x4a\x4f\x3d\x4a\x4f\x3a\ +\x4b\x4e\x34\x41\x48\x32\x41\x49\x33\x42\x48\x2c\x3a\x3d\x31\x3d\ +\x3e\x32\x3b\x35\x35\x3d\x3d\x3a\x3d\x3d\x3d\x43\x43\x39\x41\x3e\ +\x38\x3f\x3d\x3e\x42\x3f\x31\x36\x33\x2b\x2f\x2c\x34\x42\x42\x2c\ +\x3c\x44\x2d\x37\x3c\x37\x44\x46\x2e\x32\x2e\x2c\x39\x35\x2a\x30\ +\x31\x3c\x42\x41\x31\x3b\x3e\x27\x2e\x32\x3e\x48\x53\x37\x47\x4a\ +\x28\x31\x30\x3c\x45\x4e\x38\x4c\x50\x35\x44\x49\x2a\x2d\x2d\x32\ +\x36\x34\x2d\x36\x38\x29\x33\x32\x32\x37\x38\x34\x3b\x3d\x2d\x30\ +\x30\x2b\x30\x2e\x26\x2a\x29\x2e\x2f\x34\x29\x2f\x30\x2a\x31\x32\ +\x29\x34\x36\x33\x46\x4f\x2c\x32\x30\x29\x2b\x2b\x36\x39\x3b\x2c\ +\x33\x32\x35\x37\x38\x26\x2c\x2b\x30\x3b\x3d\x29\x31\x2e\x2b\x31\ +\x35\x1c\x1f\x21\x30\x35\x35\x2a\x38\x37\x23\x27\x28\x29\x2b\x2b\ +\x2f\x3b\x3b\x2b\x34\x34\x25\x2a\x2d\x2a\x2c\x2b\x2d\x2b\x2e\x27\ +\x2f\x32\x2a\x32\x31\x25\x2b\x27\x2c\x34\x33\x2d\x2c\x2c\x25\x2b\ +\x26\x2c\x2c\x2b\x25\x29\x27\x2d\x2e\x2c\x2c\x2c\x2c\x28\x2f\x30\ +\x25\x27\x26\x30\x2f\x30\x2a\x30\x2f\x25\x27\x24\x2d\x31\x2e\x2b\ +\x30\x2e\x2d\x34\x30\x2b\x30\x31\x20\x20\x1a\x2a\x28\x24\x2a\x30\ +\x2e\x2c\x34\x34\x2a\x32\x34\x28\x2b\x2b\x18\x19\x14\x1c\x1c\x1b\ +\x2b\x2f\x2f\x25\x26\x26\x1c\x19\x17\x27\x29\x24\x28\x2e\x2b\x1d\ +\x1c\x18\x2d\x2c\x31\x26\x2b\x2c\x22\x25\x25\x29\x2b\x29\x27\x2c\ +\x2e\x2a\x2f\x30\x23\x2e\x30\x23\x26\x27\x29\x2c\x2a\x26\x29\x2b\ +\x29\x2b\x2a\x2b\x28\x25\x2e\x2a\x28\x2e\x2d\x26\x37\x36\x2f\x2e\ +\x32\x2b\x2f\x33\x32\x31\x30\x2e\x2e\x34\x32\x2e\x34\x32\x28\x2f\ +\x2d\x23\x26\x27\x28\x28\x24\x27\x29\x26\x2b\x30\x2d\x2d\x30\x2e\ +\x31\x3b\x38\x30\x35\x34\x00\x00\x00\x48\x65\x7c\x75\x9b\xb2\x83\ +\xb1\xc6\x7a\xa1\xb7\x2e\x4c\x60\x2b\x49\x61\x7d\xa3\xbf\x88\xb2\ +\xd1\x8b\xb4\xd3\x8a\xb2\xd2\x87\xaf\xd1\x89\xb1\xd3\x82\xac\xd1\ +\x7b\xa6\xc7\x79\xa0\xc0\x76\xa0\xbc\x7a\xa7\xc0\x7f\xaf\xc7\x87\ +\xb3\xcb\x8c\xb2\xd1\x90\xb3\xd7\x8c\xb3\xd6\x88\xb4\xd6\x8a\xb8\ +\xd8\x85\xaf\xce\x7f\xa5\xc4\x83\xae\xc9\x8e\xb5\xd3\x8f\xb3\xd1\ +\x8d\xae\xcf\x8e\xb0\xce\x90\xb3\xcd\x87\xa0\xaf\x59\x67\x6b\x3e\ +\x4e\x50\x3c\x49\x50\x3c\x49\x4c\x36\x44\x4d\x34\x41\x48\x3e\x52\ +\x5b\x2e\x3e\x42\x2e\x34\x38\x43\x4b\x4f\x38\x3d\x40\x31\x38\x3b\ +\x2b\x30\x2a\x3c\x3e\x43\x3c\x3e\x3e\x36\x3d\x39\x32\x36\x3a\x34\ +\x3a\x38\x30\x3e\x3f\x2b\x2c\x25\x32\x3d\x3b\x33\x3f\x46\x2f\x32\ +\x34\x3b\x4c\x56\x33\x45\x44\x2c\x3a\x3f\x22\x2a\x27\x3e\x42\x46\ +\x31\x3e\x42\x22\x27\x27\x39\x43\x47\x35\x3c\x3a\x33\x36\x39\x35\ +\x43\x47\x2a\x38\x38\x20\x2c\x31\x2f\x34\x39\x2a\x38\x39\x26\x33\ +\x35\x2a\x36\x33\x34\x3e\x3e\x31\x34\x33\x34\x3d\x46\x2c\x33\x30\ +\x2f\x2f\x31\x2f\x3a\x39\x35\x3d\x3e\x2c\x30\x2c\x27\x2b\x27\x27\ +\x32\x35\x28\x29\x27\x2d\x2d\x2f\x2b\x32\x32\x34\x40\x44\x2c\x38\ +\x37\x2c\x2e\x2a\x24\x2d\x2c\x31\x3b\x3d\x2c\x39\x3f\x18\x1f\x1c\ +\x33\x35\x36\x2c\x32\x34\x20\x24\x20\x2c\x33\x33\x32\x37\x35\x28\ +\x2b\x2d\x23\x27\x25\x24\x2a\x26\x25\x25\x22\x29\x2e\x2c\x2b\x30\ +\x31\x28\x2b\x30\x2b\x36\x2f\x2a\x2b\x2b\x2c\x37\x37\x29\x2c\x2d\ +\x27\x2f\x2f\x2c\x2f\x30\x2d\x39\x3b\x29\x31\x34\x2a\x2a\x26\x33\ +\x32\x2f\x2d\x32\x31\x2c\x31\x2e\x32\x36\x39\x2a\x2a\x25\x2e\x32\ +\x2d\x25\x25\x24\x24\x23\x1c\x2e\x2a\x2b\x2a\x2d\x2a\x2b\x32\x34\ +\x27\x2d\x2b\x26\x2e\x2d\x16\x19\x10\x1f\x24\x23\x27\x30\x2b\x27\ +\x2b\x28\x17\x19\x11\x26\x25\x28\x2a\x2d\x2c\x21\x2b\x27\x2a\x34\ +\x38\x28\x2f\x30\x27\x2e\x2e\x26\x26\x27\x28\x27\x2a\x23\x25\x24\ +\x23\x25\x23\x23\x22\x22\x2b\x29\x29\x2b\x28\x2a\x2c\x2b\x27\x30\ +\x2f\x2a\x33\x31\x2f\x34\x2e\x2b\x38\x33\x2f\x2c\x35\x36\x2b\x38\ +\x39\x28\x2d\x2e\x2c\x30\x33\x2a\x33\x35\x27\x2f\x2f\x29\x32\x2d\ +\x2c\x32\x2f\x2a\x34\x2f\x35\x37\x37\x39\x40\x3c\x33\x34\x33\x35\ +\x3c\x37\x00\x00\x00\x29\x3c\x51\x61\x7d\x93\x84\xa6\xbd\x77\x96\ +\xb0\x31\x4b\x64\x30\x4e\x65\x7f\xa7\xbf\x86\xb4\xce\x89\xb3\xd2\ +\x8d\xb3\xd3\x89\xae\xd0\x86\xab\xcd\x7b\xa6\xc7\x6d\x97\xb4\x5c\ +\x80\x9b\x5c\x80\x98\x72\x97\xb0\x7f\xa6\xc1\x89\xad\xcb\x8f\xae\ +\xd1\x8c\xab\xd0\x89\xac\xce\x88\xaf\xce\x84\xab\xc8\x66\x89\xa3\ +\x48\x6b\x82\x64\x8c\xa2\x86\xad\xc8\x93\xb1\xca\x99\xaf\xc0\x8b\ +\x9f\xa9\x6c\x7d\x88\x3a\x4f\x55\x38\x47\x4c\x38\x45\x4a\x2c\x3c\ +\x44\x35\x45\x44\x34\x42\x4c\x2a\x3b\x44\x2d\x3c\x3c\x2e\x31\x2c\ +\x34\x3c\x3c\x42\x4c\x4d\x3f\x49\x47\x36\x41\x3f\x38\x3d\x3b\x41\ +\x44\x46\x38\x46\x45\x37\x3b\x3b\x3a\x39\x3a\x30\x39\x36\x2c\x39\ +\x35\x2f\x38\x38\x34\x3f\x42\x40\x51\x5f\x41\x59\x66\x3e\x54\x63\ +\x33\x3c\x41\x32\x3d\x3f\x1e\x27\x28\x38\x3f\x42\x34\x44\x50\x34\ +\x3a\x42\x3c\x3d\x3e\x3a\x40\x42\x2d\x3d\x3c\x39\x48\x4f\x37\x42\ +\x43\x2e\x35\x35\x33\x37\x35\x2d\x35\x34\x2f\x30\x33\x2c\x35\x2f\ +\x30\x31\x30\x2e\x36\x33\x25\x2f\x2e\x26\x2c\x28\x2c\x32\x2f\x26\ +\x2e\x30\x26\x2c\x2b\x2e\x33\x31\x29\x37\x3c\x2f\x3a\x3d\x2b\x30\ +\x2f\x2f\x2f\x29\x32\x37\x36\x2d\x35\x32\x35\x3c\x3c\x29\x32\x30\ +\x2c\x33\x2f\x2c\x36\x38\x25\x2e\x2d\x1f\x25\x21\x34\x36\x34\x2f\ +\x31\x33\x23\x23\x25\x2b\x31\x2f\x2b\x33\x31\x20\x27\x26\x29\x34\ +\x36\x2c\x2b\x2e\x25\x26\x28\x23\x28\x25\x2b\x2e\x31\x23\x24\x23\ +\x2b\x32\x31\x2d\x32\x33\x30\x31\x2d\x2c\x34\x33\x2d\x2a\x28\x27\ +\x2c\x29\x2c\x36\x34\x2a\x2e\x2a\x2c\x28\x27\x23\x2a\x29\x24\x26\ +\x23\x24\x29\x29\x23\x25\x26\x27\x27\x24\x30\x34\x31\x2b\x27\x29\ +\x2d\x30\x2d\x25\x2d\x2a\x23\x24\x1f\x2c\x32\x2e\x2a\x26\x23\x28\ +\x27\x28\x1a\x22\x1e\x1c\x23\x25\x2a\x2f\x2d\x22\x27\x21\x12\x14\ +\x10\x23\x29\x2b\x29\x30\x36\x29\x2d\x31\x2a\x2f\x2e\x23\x27\x29\ +\x23\x26\x28\x22\x2a\x23\x27\x31\x2f\x26\x29\x26\x2c\x2d\x25\x29\ +\x26\x22\x2a\x29\x25\x30\x2f\x2d\x2e\x33\x32\x2e\x30\x32\x33\x33\ +\x2f\x2e\x31\x30\x2c\x31\x30\x2b\x31\x2f\x27\x2d\x2a\x25\x2b\x2a\ +\x23\x27\x27\x2b\x31\x31\x2a\x32\x31\x2d\x39\x3d\x2b\x33\x34\x2a\ +\x28\x27\x33\x33\x2e\x38\x3a\x37\x36\x38\x36\x37\x3c\x3c\x00\x00\ +\x00\x2b\x3c\x56\x34\x4c\x66\x57\x73\x8c\x5e\x78\x94\x29\x44\x5f\ +\x3c\x5d\x73\x82\xac\xc2\x8a\xb5\xd0\x8c\xb5\xd4\x8d\xb4\xd5\x88\ +\xae\xd0\x81\xa5\xc5\x73\x98\xb2\x57\x75\x8b\x2c\x46\x5a\x3a\x58\ +\x6a\x5c\x7f\x96\x64\x87\xa2\x76\x96\xb4\x82\x9c\xbf\x75\x8c\xaf\ +\x69\x82\xa1\x7b\x98\xb2\x7a\x97\xaf\x45\x5e\x72\x1a\x35\x45\x3c\ +\x5d\x6e\x89\xa7\xb8\x92\xa3\xa8\x5c\x71\x74\x46\x56\x57\x3d\x4e\ +\x57\x34\x46\x4a\x3a\x4c\x51\x25\x31\x35\x30\x40\x45\x2b\x3c\x43\ +\x2e\x41\x49\x31\x43\x48\x31\x36\x33\x37\x3a\x39\x3c\x40\x41\x45\ +\x4d\x51\x35\x3b\x3a\x39\x46\x41\x31\x39\x3d\x43\x4c\x4d\x30\x3c\ +\x38\x34\x37\x35\x31\x36\x3d\x2f\x37\x38\x2e\x35\x33\x2f\x3d\x3f\ +\x36\x3e\x42\x40\x54\x6e\x45\x67\x7e\x33\x46\x4c\x30\x38\x37\x2e\ +\x37\x3a\x20\x22\x20\x3f\x3d\x3f\x39\x46\x4f\x28\x35\x3d\x36\x35\ +\x39\x3d\x3f\x43\x2d\x37\x39\x2d\x3b\x39\x28\x31\x2f\x34\x36\x38\ +\x34\x37\x33\x2b\x32\x2d\x3a\x3e\x3f\x2c\x38\x34\x2c\x2f\x2f\x32\ +\x34\x34\x2a\x30\x31\x29\x2c\x2b\x2b\x38\x37\x30\x3a\x3d\x29\x34\ +\x35\x27\x2c\x2c\x30\x37\x3d\x26\x2d\x2f\x2b\x2e\x2c\x2e\x31\x30\ +\x24\x27\x27\x29\x30\x30\x29\x2c\x2c\x27\x2c\x2a\x2e\x3a\x35\x28\ +\x2f\x2d\x28\x36\x39\x1b\x2a\x2a\x30\x38\x36\x29\x3a\x39\x21\x26\ +\x23\x2f\x35\x37\x26\x2f\x2d\x2d\x37\x3a\x2d\x30\x36\x2b\x31\x34\ +\x29\x33\x38\x26\x2e\x2c\x28\x2d\x2f\x26\x28\x2b\x27\x2a\x28\x2a\ +\x31\x31\x20\x1e\x1d\x2e\x32\x2c\x2e\x32\x35\x27\x2f\x28\x26\x2b\ +\x26\x2f\x32\x2f\x28\x2e\x2d\x2e\x34\x31\x31\x3d\x3e\x2c\x2f\x2b\ +\x28\x2b\x2a\x1e\x1a\x18\x1f\x24\x21\x2c\x2d\x2c\x2c\x2f\x28\x25\ +\x23\x20\x23\x20\x1c\x22\x1f\x1c\x1e\x29\x22\x22\x25\x23\x1e\x1e\ +\x1e\x1d\x20\x26\x2b\x2e\x2d\x21\x25\x23\x20\x27\x27\x23\x2c\x31\ +\x21\x2a\x29\x23\x25\x26\x26\x28\x26\x23\x26\x26\x28\x25\x27\x26\ +\x27\x23\x24\x29\x27\x2b\x2d\x2e\x2a\x2e\x2a\x29\x2e\x2a\x2e\x2d\ +\x2c\x2e\x30\x31\x2b\x2f\x2c\x2a\x2e\x2a\x2b\x2f\x2b\x29\x2c\x2b\ +\x27\x2e\x2b\x29\x29\x28\x2b\x2c\x29\x25\x28\x27\x2e\x32\x30\x2c\ +\x38\x38\x31\x38\x37\x36\x3b\x39\x31\x39\x35\x39\x3b\x38\x34\x38\ +\x34\x36\x3b\x39\x38\x3f\x3b\x38\x3e\x40\x00\x00\x00\x68\x87\xa7\ +\x56\x74\x93\x3e\x5e\x7a\x33\x52\x6d\x25\x45\x60\x4a\x6e\x86\x82\ +\xac\xc3\x8c\xb7\xd2\x8a\xb6\xd6\x89\xb5\xd7\x82\xaa\xcd\x70\x94\ +\xb1\x57\x75\x8a\x34\x46\x57\x10\x23\x34\x38\x56\x67\x65\x8f\xa4\ +\x67\x8f\xac\x5f\x7c\x9d\x68\x7e\xa1\x6a\x7e\x9d\x4c\x63\x7d\x42\ +\x5d\x74\x47\x5e\x78\x2d\x40\x58\x1b\x32\x43\x79\x8a\x92\x64\x76\ +\x79\x49\x58\x65\x3b\x4a\x52\x3b\x4c\x52\x33\x44\x49\x26\x34\x39\ +\x32\x3c\x41\x35\x3d\x48\x2e\x3f\x42\x2f\x3a\x40\x2c\x33\x34\x3c\ +\x4c\x53\x3f\x51\x58\x3a\x44\x45\x45\x49\x4b\x56\x60\x61\x4e\x59\ +\x58\x34\x42\x3b\x2c\x30\x30\x33\x41\x40\x34\x38\x39\x3c\x40\x3f\ +\x36\x44\x4a\x30\x37\x37\x35\x3b\x3d\x37\x3c\x40\x34\x3a\x39\x39\ +\x4a\x5c\x57\x7d\x9c\x2f\x41\x4e\x4d\x64\x7b\x33\x44\x45\x27\x2a\ +\x28\x39\x3d\x3e\x38\x40\x41\x2a\x35\x36\x30\x32\x37\x35\x3c\x3a\ +\x32\x3a\x3b\x33\x38\x36\x2d\x3b\x39\x29\x32\x32\x2a\x32\x35\x30\ +\x34\x34\x2f\x33\x38\x2d\x39\x3c\x30\x39\x38\x2b\x31\x2f\x2d\x30\ +\x2d\x2f\x36\x34\x27\x2d\x2a\x29\x31\x35\x2f\x34\x33\x2a\x32\x36\ +\x2d\x30\x35\x2a\x31\x2d\x32\x39\x3a\x35\x3e\x3e\x2c\x33\x32\x26\ +\x2d\x2e\x2f\x34\x3a\x28\x31\x38\x26\x2d\x2e\x22\x2c\x2a\x2f\x39\ +\x39\x1d\x1e\x1f\x32\x35\x34\x2b\x35\x35\x23\x2a\x2a\x30\x34\x35\ +\x2a\x33\x35\x2c\x34\x3a\x26\x2c\x25\x2a\x2b\x2c\x28\x30\x2e\x27\ +\x36\x35\x22\x2e\x2d\x2b\x33\x34\x26\x28\x25\x2c\x30\x2d\x2d\x31\ +\x36\x2e\x32\x2c\x2a\x31\x2f\x25\x2d\x2d\x26\x28\x27\x25\x2a\x28\ +\x20\x21\x1c\x2e\x2c\x29\x34\x35\x35\x2a\x2f\x2f\x2c\x2b\x2c\x2f\ +\x2e\x33\x22\x25\x24\x29\x29\x25\x29\x26\x1e\x2d\x2f\x2a\x2a\x2a\ +\x24\x29\x28\x2b\x26\x26\x28\x1e\x24\x20\x1b\x1e\x1c\x17\x1d\x22\ +\x27\x2f\x33\x26\x2f\x31\x23\x2d\x26\x24\x29\x2a\x22\x25\x25\x22\ +\x21\x20\x28\x27\x22\x2b\x25\x22\x29\x23\x22\x2b\x26\x24\x2c\x2b\ +\x28\x2a\x2c\x28\x2d\x33\x2f\x2a\x2e\x2e\x30\x33\x32\x31\x33\x31\ +\x2c\x2d\x25\x2b\x2e\x29\x26\x32\x32\x21\x29\x24\x24\x29\x23\x27\ +\x2f\x30\x2d\x32\x30\x28\x26\x23\x2a\x2f\x2d\x29\x34\x34\x32\x36\ +\x35\x33\x35\x32\x2e\x30\x2e\x37\x3d\x38\x37\x3e\x3b\x43\x43\x42\ +\x39\x3d\x3a\x30\x32\x33\x00\x00\x00\x80\xac\xcc\x7c\xa4\xc4\x69\ +\x91\xb0\x51\x78\x97\x46\x6d\x8c\x64\x8c\xa9\x86\xb1\xc9\x8c\xba\ +\xd4\x84\xb6\xd2\x82\xb2\xd1\x7d\xa8\xc7\x66\x8b\xa8\x3c\x58\x6f\ +\x16\x27\x3c\x10\x22\x36\x4b\x6f\x84\x75\xa7\xbf\x79\xa6\xc6\x72\ +\x94\xb9\x5b\x73\x9a\x5b\x72\x92\x69\x85\x9e\x5b\x7a\x94\x48\x65\ +\x84\x46\x5d\x77\x7f\x91\x94\x50\x66\x69\x38\x4e\x57\x45\x55\x62\ +\x3c\x4a\x50\x36\x42\x4b\x2d\x39\x3d\x26\x33\x37\x2e\x3c\x42\x2f\ +\x38\x3a\x30\x36\x34\x37\x39\x37\x32\x36\x31\x37\x3e\x3e\x38\x3f\ +\x43\x50\x5d\x5c\x4a\x56\x58\x35\x3f\x45\x40\x4d\x4b\x3a\x44\x46\ +\x37\x3e\x44\x38\x4a\x4f\x35\x3e\x3a\x34\x36\x38\x36\x42\x43\x2c\ +\x36\x38\x2d\x35\x32\x31\x3a\x3f\x39\x3c\x42\x30\x3a\x44\x49\x6c\ +\x89\x4f\x7c\x97\x37\x4f\x5e\x2c\x36\x35\x23\x2f\x2d\x33\x39\x38\ +\x33\x3d\x3b\x28\x32\x2f\x2d\x2e\x2f\x38\x42\x43\x3c\x48\x4d\x31\ +\x35\x3a\x34\x3b\x38\x34\x37\x34\x2d\x39\x36\x2f\x35\x3a\x2f\x37\ +\x37\x2d\x31\x34\x31\x35\x34\x32\x38\x36\x27\x2f\x2c\x31\x38\x39\ +\x2f\x33\x30\x2e\x36\x34\x38\x45\x47\x29\x31\x30\x35\x3a\x37\x27\ +\x2b\x27\x32\x2f\x32\x2e\x37\x30\x2c\x30\x30\x2e\x34\x38\x26\x2e\ +\x2f\x28\x31\x33\x25\x31\x30\x26\x2c\x2c\x23\x2e\x2f\x1a\x1c\x1c\ +\x30\x35\x34\x29\x32\x35\x21\x21\x22\x31\x3b\x3d\x36\x43\x46\x2b\ +\x2e\x2f\x29\x37\x35\x27\x2c\x26\x34\x3f\x44\x29\x37\x36\x21\x26\ +\x2a\x27\x2c\x2a\x26\x2e\x2d\x2f\x32\x31\x2e\x32\x31\x28\x24\x1f\ +\x3a\x3b\x3d\x2f\x36\x3a\x32\x33\x31\x24\x2f\x2f\x21\x23\x1e\x1f\ +\x1e\x18\x2a\x2f\x2d\x2a\x2c\x24\x27\x2b\x25\x30\x30\x2f\x2f\x2c\ +\x2a\x2f\x33\x2e\x2a\x28\x26\x2f\x2d\x2d\x29\x29\x27\x20\x28\x27\ +\x1e\x26\x22\x15\x21\x22\x33\x3d\x48\x2e\x36\x3e\x2c\x31\x33\x27\ +\x2a\x2b\x23\x27\x24\x24\x25\x1f\x27\x22\x23\x27\x21\x1f\x28\x23\ +\x1e\x2c\x27\x21\x2c\x28\x28\x30\x30\x2f\x2c\x32\x34\x2f\x34\x34\ +\x2a\x2f\x2c\x2a\x2a\x28\x2c\x32\x29\x2f\x31\x32\x27\x2a\x25\x24\ +\x2d\x2a\x26\x2e\x2d\x27\x2a\x25\x29\x2b\x2c\x30\x32\x33\x38\x3e\ +\x38\x2f\x36\x34\x2d\x2f\x37\x2e\x37\x3b\x35\x36\x37\x30\x2d\x31\ +\x35\x3e\x3f\x41\x42\x44\x32\x35\x33\x31\x35\x32\x37\x38\x36\x38\ +\x3b\x3e\x00\x00\x00\x7f\xae\xcd\x7b\xa8\xc5\x6d\x99\xb8\x65\x91\ +\xb0\x6a\x97\xb8\x7b\xa8\xc8\x8b\xb9\xd4\x85\xb8\xcf\x7e\xb6\xcd\ +\x75\xae\xc8\x75\xa9\xc7\x6d\x97\xb7\x57\x76\x95\x38\x4e\x6c\x2f\ +\x47\x64\x60\x86\xa1\x76\xa8\xc5\x81\xb0\xcf\x7e\xa3\xc7\x63\x80\ +\xa4\x44\x5d\x7b\x56\x73\x88\x86\xa6\xba\x81\x99\xa7\x5e\x74\x77\ +\x3d\x51\x58\x42\x4f\x58\x39\x48\x52\x39\x3f\x48\x35\x46\x4a\x33\ +\x42\x44\x2c\x39\x39\x30\x3f\x3d\x32\x38\x37\x32\x34\x35\x35\x39\ +\x39\x3b\x3b\x3b\x35\x3c\x3c\x3e\x4a\x4a\x36\x3e\x3f\x33\x46\x48\ +\x37\x3c\x3e\x36\x3d\x41\x2e\x32\x30\x3d\x45\x4c\x56\x7e\x9c\x4a\ +\x63\x6e\x38\x3f\x41\x2d\x33\x35\x3f\x49\x53\x36\x40\x41\x34\x3c\ +\x3c\x2f\x32\x3b\x35\x30\x35\x31\x32\x3a\x47\x63\x84\x53\x78\x98\ +\x4e\x78\x93\x33\x3d\x45\x32\x41\x44\x2c\x32\x35\x35\x3c\x3c\x2f\ +\x36\x37\x2f\x31\x33\x33\x42\x44\x34\x44\x4a\x2d\x33\x35\x32\x38\ +\x39\x2e\x34\x32\x2b\x37\x33\x2e\x34\x39\x2b\x36\x3d\x2c\x34\x38\ +\x2f\x32\x32\x36\x3c\x3a\x2f\x33\x30\x2d\x34\x32\x2e\x33\x34\x2a\ +\x32\x30\x27\x31\x31\x2d\x35\x33\x29\x2e\x30\x35\x3e\x3b\x27\x27\ +\x27\x30\x33\x32\x2e\x3e\x41\x35\x38\x3b\x25\x2e\x2f\x2b\x31\x2f\ +\x21\x27\x27\x2f\x35\x39\x27\x2b\x2d\x1a\x1b\x19\x32\x3b\x3a\x28\ +\x30\x2f\x27\x25\x22\x31\x31\x30\x2f\x32\x30\x2c\x30\x30\x26\x29\ +\x27\x24\x2b\x27\x29\x2d\x2c\x27\x2b\x2d\x2f\x2e\x2b\x2f\x32\x2e\ +\x23\x2a\x28\x2b\x34\x34\x31\x34\x33\x24\x21\x1c\x32\x31\x30\x30\ +\x31\x31\x2e\x33\x35\x2e\x30\x34\x24\x2a\x27\x29\x29\x26\x1f\x1b\ +\x18\x2b\x2a\x28\x21\x22\x23\x2d\x2e\x2a\x27\x2a\x28\x19\x1a\x1e\ +\x28\x2c\x2c\x24\x28\x29\x22\x2c\x32\x22\x2b\x34\x28\x32\x36\x21\ +\x2d\x30\x2e\x39\x3c\x25\x2b\x29\x2a\x2f\x2e\x27\x29\x27\x24\x23\ +\x20\x2d\x2a\x27\x2a\x2a\x28\x2a\x2f\x2d\x2c\x30\x2f\x32\x35\x31\ +\x28\x32\x2f\x2e\x31\x30\x2d\x30\x2d\x28\x32\x2e\x26\x2a\x2a\x2e\ +\x2e\x2e\x2e\x2e\x2c\x27\x2d\x2a\x29\x2d\x29\x21\x2d\x28\x27\x2a\ +\x29\x23\x29\x24\x28\x2d\x2c\x2c\x2c\x2c\x31\x2e\x2d\x2a\x2e\x28\ +\x2c\x32\x30\x29\x2f\x2b\x35\x3b\x36\x36\x39\x3b\x33\x3b\x39\x37\ +\x39\x3a\x3b\x40\x45\x37\x45\x45\x2f\x36\x33\x2c\x2d\x2c\x00\x00\ +\x00\x68\x96\xb1\x64\x8e\xa9\x60\x8a\xa8\x4a\x72\x92\x6c\x96\xb5\ +\x80\xad\xcd\x87\xb7\xd3\x84\xb8\xcf\x7b\xb6\xcc\x71\xb2\xc8\x73\ +\xad\xc7\x77\xa5\xc4\x75\x9a\xbd\x64\x84\xa9\x60\x83\xa4\x75\xa1\ +\xc0\x79\xaa\xc7\x7c\xa9\xc6\x6f\x93\xb0\x4e\x6b\x84\x65\x76\x85\ +\x71\x82\x88\x6d\x80\x84\x43\x51\x58\x41\x4c\x54\x3e\x49\x4d\x3c\ +\x47\x4f\x36\x49\x54\x2f\x3a\x3c\x3f\x49\x4f\x32\x38\x3a\x31\x35\ +\x34\x33\x3c\x3c\x34\x2f\x2e\x3b\x3e\x3e\x39\x3e\x39\x34\x34\x2f\ +\x38\x3e\x3c\x3c\x40\x3d\x35\x3a\x3d\x3a\x49\x4d\x3d\x47\x49\x37\ +\x43\x46\x4f\x6a\x7c\x52\x7c\x9c\x56\x8d\xb4\x4a\x66\x75\x33\x3c\ +\x3c\x34\x3e\x43\x2e\x37\x35\x30\x35\x2f\x3c\x46\x49\x3c\x40\x3f\ +\x33\x36\x30\x2f\x37\x39\x45\x64\x82\x41\x64\x7d\x3d\x56\x68\x2f\ +\x38\x38\x2f\x3c\x3c\x2a\x30\x33\x37\x40\x45\x2e\x32\x38\x2b\x2f\ +\x32\x3d\x42\x43\x2e\x3b\x3c\x31\x36\x36\x2a\x30\x2c\x2e\x34\x32\ +\x31\x3c\x3d\x33\x3b\x3d\x33\x3b\x3d\x2f\x3b\x41\x2d\x30\x2e\x33\ +\x37\x38\x2f\x34\x31\x2a\x2f\x2b\x28\x31\x31\x27\x33\x37\x27\x2f\ +\x30\x2d\x37\x38\x2c\x36\x3a\x2b\x38\x3e\x28\x37\x3c\x2a\x38\x3c\ +\x23\x28\x28\x32\x38\x3b\x2d\x34\x38\x2e\x35\x35\x28\x2a\x2c\x28\ +\x2e\x29\x25\x25\x24\x20\x25\x21\x32\x3a\x3a\x2a\x31\x32\x28\x23\ +\x25\x2f\x35\x37\x28\x2f\x30\x2c\x33\x35\x24\x26\x26\x2f\x34\x35\ +\x29\x2b\x2c\x25\x25\x25\x2a\x30\x2b\x27\x2a\x27\x2b\x2f\x2c\x22\ +\x25\x24\x2d\x2e\x2b\x30\x31\x33\x28\x2a\x23\x2a\x2f\x2d\x2f\x2d\ +\x2b\x2a\x28\x28\x23\x26\x23\x24\x23\x1b\x2b\x2d\x2b\x2c\x2a\x29\ +\x20\x24\x20\x25\x2f\x2b\x20\x26\x27\x1c\x22\x2a\x21\x29\x30\x24\ +\x2c\x30\x25\x35\x3a\x30\x3f\x45\x2d\x38\x3f\x25\x30\x32\x25\x27\ +\x24\x28\x29\x22\x28\x29\x28\x28\x2c\x27\x28\x29\x28\x2c\x33\x2f\ +\x30\x34\x32\x33\x36\x2e\x33\x38\x37\x31\x33\x33\x2e\x37\x2f\x2f\ +\x31\x29\x2c\x2f\x2a\x24\x28\x27\x22\x28\x24\x2b\x30\x29\x24\x27\ +\x28\x2b\x33\x33\x2b\x32\x34\x2a\x2f\x31\x32\x38\x38\x27\x2d\x28\ +\x27\x2b\x27\x29\x2b\x29\x2f\x30\x29\x2b\x2e\x2a\x2a\x31\x2d\x2b\ +\x30\x2c\x2f\x35\x33\x2f\x34\x30\x34\x39\x3c\x3b\x44\x44\x3b\x4a\ +\x4a\x37\x3a\x38\x2b\x32\x34\x2f\x37\x34\x00\x00\x00\x3f\x65\x7c\ +\x35\x56\x6e\x65\x86\xa1\x33\x54\x6e\x5d\x7f\x9b\x82\xac\xc9\x87\ +\xb4\xd1\x84\xb5\xcd\x7f\xb7\xcd\x77\xb3\xc9\x7a\xaf\xcb\x7f\xac\ +\xce\x80\xa7\xcc\x7a\xa4\xc8\x7a\xa5\xc5\x81\xae\xcb\x7e\xab\xc7\ +\x75\x9e\xb6\x59\x78\x8c\x74\x85\x8e\x51\x63\x66\x45\x56\x5c\x47\ +\x54\x5d\x41\x4b\x51\x44\x4d\x55\x2e\x38\x3a\x3d\x44\x49\x31\x42\ +\x3f\x34\x36\x37\x3d\x43\x42\x39\x43\x41\x2e\x34\x2e\x3c\x40\x3e\ +\x36\x37\x36\x36\x3a\x3d\x40\x44\x43\x3c\x42\x3c\x35\x3a\x36\x53\ +\x62\x76\x38\x46\x4f\x37\x41\x44\x4a\x5c\x6d\x54\x81\x9f\x59\x8f\ +\xae\x44\x5e\x72\x2f\x43\x53\x4e\x6f\x86\x35\x3d\x3a\x37\x40\x3e\ +\x34\x3e\x42\x2f\x3c\x3b\x30\x35\x33\x33\x36\x33\x31\x39\x38\x36\ +\x40\x41\x2f\x3d\x4d\x56\x84\xa1\x45\x6d\x87\x2c\x39\x3d\x2d\x39\ +\x3a\x2a\x2b\x2d\x39\x42\x41\x2d\x3a\x43\x2a\x31\x32\x35\x3f\x43\ +\x30\x36\x36\x2b\x2e\x2c\x26\x30\x31\x2a\x2e\x32\x35\x40\x3e\x2c\ +\x30\x31\x29\x33\x3a\x31\x43\x43\x2d\x30\x2b\x35\x39\x37\x30\x35\ +\x34\x30\x37\x38\x30\x35\x34\x28\x2c\x2d\x32\x3a\x42\x28\x30\x30\ +\x31\x3b\x3d\x2a\x39\x40\x2e\x3c\x41\x22\x30\x35\x27\x2b\x2e\x2a\ +\x32\x36\x2a\x2c\x2f\x2a\x30\x30\x2c\x39\x3b\x2b\x31\x33\x20\x26\ +\x28\x25\x2a\x2c\x35\x39\x3b\x22\x2b\x24\x28\x2f\x2c\x2f\x3e\x44\ +\x23\x2b\x34\x2a\x2d\x2c\x2f\x31\x2f\x2c\x33\x35\x29\x34\x37\x27\ +\x2c\x2e\x25\x26\x25\x2b\x2f\x34\x2a\x2b\x29\x20\x27\x26\x32\x34\ +\x2c\x30\x2b\x29\x30\x2e\x2d\x2c\x2f\x2e\x2d\x2f\x30\x2e\x31\x2e\ +\x23\x21\x1b\x2b\x26\x27\x2b\x30\x2d\x25\x2a\x24\x1c\x1e\x1b\x1b\ +\x28\x26\x18\x20\x22\x29\x37\x37\x28\x2b\x2e\x27\x2d\x2e\x25\x2c\ +\x30\x29\x2a\x2c\x2a\x29\x2b\x28\x26\x27\x2c\x2b\x28\x2c\x2c\x28\ +\x2b\x27\x28\x28\x2f\x2d\x2e\x31\x33\x33\x34\x33\x37\x37\x32\x35\ +\x36\x35\x2f\x30\x32\x29\x29\x28\x2e\x30\x2e\x29\x2f\x2b\x2d\x32\ +\x34\x27\x2b\x2f\x27\x2c\x2a\x2b\x2f\x2f\x29\x2b\x28\x2b\x2a\x28\ +\x30\x34\x2f\x33\x36\x32\x30\x30\x2c\x31\x32\x2d\x31\x35\x31\x34\ +\x3d\x39\x36\x3b\x36\x32\x35\x38\x2f\x30\x35\x30\x34\x34\x33\x34\ +\x34\x35\x3b\x3c\x37\x40\x3e\x32\x37\x37\x2f\x2e\x2f\x3f\x46\x42\ +\x3a\x3d\x39\x39\x40\x40\x00\x00\x00\x30\x4d\x63\x1d\x39\x4c\x65\ +\x84\x9a\x2e\x4c\x62\x4f\x6c\x84\x86\xaa\xc6\x89\xb3\xcf\x87\xb5\ +\xcd\x82\xb4\xcb\x82\xb3\xcd\x83\xb1\xce\x85\xb0\xd2\x83\xb0\xd2\ +\x81\xb0\xd0\x82\xb1\xce\x84\xb1\xce\x89\xb1\xca\x88\xa1\xaf\x6d\ +\x7b\x81\x4c\x5a\x64\x44\x51\x5b\x43\x51\x57\x3c\x49\x4b\x39\x40\ +\x45\x37\x45\x49\x2d\x33\x2f\x3e\x44\x45\x3a\x41\x40\x34\x39\x39\ +\x38\x3c\x3b\x33\x3c\x3b\x36\x33\x33\x34\x3c\x39\x3a\x3b\x3f\x35\ +\x34\x33\x2e\x33\x31\x33\x35\x34\x31\x37\x3a\x49\x6b\x8b\x50\x72\ +\x86\x58\x84\xa3\x59\x92\xb5\x4e\x7c\x96\x34\x45\x4d\x31\x3b\x3c\ +\x30\x38\x37\x49\x62\x7c\x2e\x35\x36\x2f\x38\x33\x38\x44\x43\x2f\ +\x3b\x35\x3f\x43\x41\x40\x42\x42\x37\x39\x3a\x34\x39\x37\x43\x5f\ +\x77\x35\x53\x63\x56\x85\xa3\x39\x47\x4b\x29\x39\x36\x26\x27\x2b\ +\x32\x3a\x3d\x2d\x36\x3e\x2a\x2e\x30\x3d\x49\x4e\x31\x3a\x3c\x2c\ +\x39\x39\x2c\x36\x3b\x2d\x39\x40\x26\x2e\x33\x32\x38\x39\x2f\x32\ +\x31\x2c\x2f\x30\x2b\x32\x32\x25\x2e\x28\x30\x36\x34\x2c\x35\x2e\ +\x29\x2f\x2e\x2e\x39\x36\x2b\x34\x31\x2a\x37\x37\x20\x27\x23\x2b\ +\x30\x34\x2e\x33\x39\x2c\x38\x3b\x29\x31\x33\x26\x29\x2b\x2d\x35\ +\x36\x31\x36\x37\x2d\x3a\x38\x2a\x36\x35\x1c\x1d\x1e\x25\x2e\x29\ +\x31\x3a\x39\x21\x2c\x2a\x28\x30\x31\x30\x40\x43\x27\x32\x36\x21\ +\x2b\x2c\x2d\x30\x32\x31\x31\x3a\x31\x30\x33\x29\x2f\x2f\x31\x34\ +\x33\x2f\x32\x33\x21\x27\x25\x27\x2c\x2a\x2b\x30\x31\x2c\x2e\x2a\ +\x2c\x28\x2b\x2c\x28\x29\x29\x25\x26\x24\x24\x1d\x26\x27\x22\x26\ +\x26\x2a\x23\x2b\x28\x20\x25\x24\x1e\x21\x29\x23\x2b\x2c\x29\x2e\ +\x34\x24\x28\x2c\x20\x29\x2b\x27\x29\x2b\x2c\x2b\x2a\x2c\x2c\x29\ +\x2b\x27\x26\x2b\x27\x24\x2a\x27\x24\x2b\x2f\x2b\x32\x34\x2b\x36\ +\x32\x30\x36\x38\x34\x34\x39\x37\x33\x37\x36\x29\x2e\x2e\x2d\x30\ +\x32\x2d\x32\x2c\x2c\x2d\x2e\x2c\x2c\x2f\x2e\x3c\x3b\x2a\x30\x30\ +\x2d\x28\x26\x27\x2a\x29\x26\x29\x26\x2b\x2d\x28\x2e\x31\x2a\x29\ +\x2f\x27\x2b\x34\x30\x50\x57\x59\x32\x35\x32\x2e\x32\x2e\x2e\x2c\ +\x29\x31\x36\x32\x36\x38\x3c\x33\x38\x3a\x36\x3f\x43\x2e\x32\x2f\ +\x2c\x2c\x29\x28\x29\x25\x2e\x33\x34\x3b\x41\x40\x35\x33\x37\x2f\ +\x36\x34\x00\x00\x00\x37\x4f\x68\x1a\x35\x47\x68\x89\x9b\x3d\x5d\ +\x70\x4d\x6c\x83\x88\xab\xc9\x8b\xb5\xd2\x8a\xb5\xd1\x88\xb2\xcf\ +\x88\xb2\xd1\x87\xb3\xd4\x87\xb3\xd6\x85\xb3\xd6\x85\xb4\xd5\x80\ +\xb4\xd1\x8b\xb0\xc1\x76\x86\x8e\x48\x5b\x64\x3f\x52\x5d\x38\x47\ +\x4b\x39\x43\x47\x33\x42\x4a\x32\x3f\x43\x33\x37\x3c\x3b\x43\x41\ +\x29\x2a\x27\x42\x46\x48\x43\x4c\x4f\x30\x3d\x3a\x36\x3a\x3d\x35\ +\x3d\x3d\x27\x2b\x2a\x3a\x43\x41\x34\x3b\x37\x34\x35\x34\x35\x3c\ +\x3a\x33\x3c\x36\x35\x41\x3e\x3b\x4e\x6b\x6c\xac\xd3\x52\x84\x9d\ +\x2e\x40\x4c\x47\x5d\x71\x37\x43\x47\x36\x40\x44\x31\x39\x38\x42\ +\x59\x71\x32\x3d\x3f\x2d\x31\x2d\x38\x39\x3f\x2f\x36\x3b\x32\x38\ +\x39\x2f\x3c\x3d\x34\x39\x38\x33\x39\x39\x37\x47\x53\x4a\x75\x99\ +\x3a\x5b\x70\x3d\x56\x63\x2f\x36\x37\x26\x2a\x2b\x39\x43\x43\x32\ +\x3b\x36\x1f\x20\x20\x37\x41\x41\x31\x38\x3a\x31\x35\x36\x2b\x35\ +\x38\x2f\x3e\x44\x2e\x33\x35\x2a\x2e\x2d\x30\x35\x38\x32\x3e\x43\ +\x25\x33\x30\x26\x28\x25\x2d\x33\x33\x2f\x3a\x3a\x26\x2e\x32\x2a\ +\x31\x33\x30\x3a\x3b\x2e\x2f\x35\x2e\x34\x35\x43\x4c\x4f\x2f\x38\ +\x38\x2b\x31\x36\x2a\x38\x37\x29\x2d\x2e\x2a\x2f\x2f\x2c\x33\x34\ +\x30\x38\x3e\x23\x26\x26\x1e\x1f\x1a\x2c\x30\x31\x2c\x39\x39\x24\ +\x35\x39\x2b\x3b\x3e\x29\x36\x38\x2e\x32\x33\x29\x2d\x31\x24\x25\ +\x22\x2a\x30\x31\x2e\x36\x3a\x2d\x32\x39\x2d\x32\x36\x2b\x2a\x2c\ +\x29\x27\x27\x2a\x32\x31\x2e\x2f\x2e\x2e\x33\x33\x29\x2d\x2d\x23\ +\x20\x1d\x34\x36\x30\x26\x26\x22\x21\x28\x28\x1b\x1f\x20\x25\x31\ +\x35\x29\x34\x34\x30\x3b\x3c\x27\x2e\x2e\x1c\x27\x2a\x1d\x25\x26\ +\x26\x26\x2a\x28\x2a\x2a\x27\x28\x27\x2e\x29\x29\x32\x2d\x31\x33\ +\x36\x37\x2b\x2c\x2f\x30\x37\x2d\x35\x34\x2f\x39\x38\x2e\x34\x35\ +\x33\x2e\x36\x34\x24\x24\x27\x2d\x2b\x2a\x2b\x31\x30\x28\x2c\x26\ +\x2a\x2f\x31\x29\x30\x31\x28\x31\x31\x2f\x2c\x2f\x25\x25\x21\x25\ +\x2c\x2a\x2b\x31\x30\x34\x37\x33\x30\x31\x32\x2f\x34\x34\x2e\x2f\ +\x31\x30\x38\x32\x2e\x37\x34\x32\x35\x35\x30\x35\x3a\x2b\x2d\x2e\ +\x2a\x2b\x2e\x2d\x31\x2c\x2b\x2e\x2b\x2e\x2d\x2b\x2f\x33\x36\x38\ +\x3a\x37\x35\x3a\x3f\x36\x40\x39\x39\x3e\x3a\x31\x32\x31\x00\x00\ +\x00\x4c\x6b\x86\x29\x4c\x5f\x69\x92\xa4\x5b\x84\x99\x5f\x84\xa0\ +\x82\xab\xcb\x89\xb7\xd6\x8a\xb7\xd5\x88\xb4\xd3\x86\xb1\xd3\x90\ +\xb7\xd2\x93\xb7\xd3\x9c\xb8\xcb\x8f\xa9\xb7\x6f\x83\x89\x47\x58\ +\x5e\x3a\x4e\x55\x38\x48\x4b\x3a\x4b\x56\x41\x50\x57\x25\x33\x37\ +\x2b\x39\x3e\x2c\x31\x32\x36\x35\x33\x38\x44\x45\x27\x2d\x23\x3b\ +\x40\x3d\x3a\x3f\x40\x38\x41\x43\x38\x41\x43\x28\x2d\x2d\x33\x3a\ +\x37\x32\x37\x38\x37\x3b\x37\x28\x2c\x2a\x39\x41\x44\x2f\x33\x35\ +\x47\x60\x6f\x2f\x3e\x51\x41\x68\x7d\x38\x44\x46\x36\x3f\x41\x43\ +\x5c\x6b\x36\x3e\x43\x3a\x43\x44\x40\x58\x6a\x4f\x7d\x90\x33\x39\ +\x36\x3a\x40\x41\x36\x3f\x3d\x33\x39\x38\x37\x45\x46\x2f\x38\x3b\ +\x32\x3c\x3c\x30\x36\x34\x3a\x4b\x5f\x45\x6c\x84\x41\x5b\x6f\x2d\ +\x40\x42\x2d\x35\x35\x29\x27\x26\x37\x44\x40\x28\x36\x37\x25\x27\ +\x28\x3c\x40\x44\x39\x40\x41\x36\x3d\x3f\x2d\x34\x39\x30\x39\x37\ +\x2e\x34\x2d\x31\x3d\x3c\x31\x3b\x3b\x2f\x3a\x3e\x2f\x37\x37\x2e\ +\x34\x31\x26\x2a\x28\x36\x3a\x3c\x2c\x33\x36\x2b\x2e\x31\x28\x2a\ +\x2b\x32\x37\x3b\x2d\x35\x36\x30\x36\x34\x2a\x32\x2f\x2a\x30\x2b\ +\x2d\x33\x36\x2d\x31\x30\x2d\x2f\x2d\x27\x2f\x28\x2a\x32\x30\x22\ +\x30\x31\x1b\x1f\x21\x29\x2e\x2b\x2b\x3f\x43\x2f\x3d\x3e\x26\x2d\ +\x2c\x30\x3d\x3b\x30\x39\x3d\x27\x2c\x33\x28\x25\x24\x27\x24\x26\ +\x38\x3d\x3e\x31\x32\x34\x37\x40\x3a\x26\x28\x21\x2b\x2f\x2c\x29\ +\x2e\x31\x24\x23\x22\x27\x2a\x23\x2f\x31\x2f\x2f\x2c\x25\x29\x2d\ +\x28\x25\x27\x2b\x29\x33\x35\x26\x32\x30\x28\x30\x33\x30\x30\x33\ +\x29\x30\x30\x22\x27\x26\x27\x28\x28\x28\x28\x28\x26\x27\x1f\x2d\ +\x29\x22\x2d\x31\x2d\x36\x34\x34\x33\x33\x32\x35\x3e\x3d\x34\x32\ +\x32\x31\x36\x33\x31\x35\x2e\x2e\x35\x2f\x28\x2c\x2c\x25\x2a\x25\ +\x25\x2a\x26\x28\x2f\x29\x26\x2d\x2a\x2b\x2d\x2b\x28\x2c\x2b\x28\ +\x2e\x25\x2a\x2d\x25\x2b\x2f\x2b\x29\x2f\x2e\x34\x38\x37\x2f\x35\ +\x35\x34\x39\x39\x38\x3b\x38\x34\x3d\x35\x30\x38\x34\x31\x35\x38\ +\x31\x3a\x3c\x39\x3e\x3a\x31\x37\x32\x2e\x35\x30\x35\x3b\x3c\x35\ +\x3c\x39\x30\x36\x36\x33\x36\x37\x2f\x35\x34\x32\x3b\x38\x39\x43\ +\x45\x37\x3f\x3f\x37\x40\x3f\x2e\x38\x33\x00\x00\x00\x6a\x90\xb0\ +\x57\x80\x9b\x6e\x9b\xb4\x74\xa1\xbd\x7a\xa7\xc5\x84\xb3\xd3\x89\ +\xb8\xd8\x89\xb8\xd8\x8c\xb8\xd8\x9d\xb8\xc5\x4f\x62\x63\x5d\x6e\ +\x71\x68\x78\x79\x49\x5a\x63\x3c\x4f\x59\x41\x52\x5d\x3b\x48\x4a\ +\x3f\x4a\x53\x32\x40\x47\x37\x44\x4e\x2a\x37\x3c\x32\x3d\x46\x25\ +\x2f\x31\x35\x35\x38\x3a\x45\x43\x2b\x2d\x23\x3e\x45\x46\x3e\x46\ +\x49\x38\x45\x41\x32\x38\x35\x31\x38\x3b\x30\x3d\x3e\x29\x31\x33\ +\x31\x38\x38\x33\x38\x37\x38\x41\x3e\x2e\x36\x3b\x55\x83\xa0\x2c\ +\x35\x41\x46\x60\x6d\x39\x46\x4b\x2c\x36\x42\x5a\x85\xa9\x48\x5f\ +\x6f\x52\x7a\x92\x71\xaa\xce\x41\x53\x5c\x3a\x3d\x40\x3e\x47\x48\ +\x37\x3d\x3c\x32\x31\x33\x34\x41\x47\x3b\x41\x45\x45\x52\x5f\x48\ +\x62\x6f\x2f\x3b\x47\x43\x64\x81\x51\x80\xa2\x36\x4d\x53\x2f\x39\ +\x34\x24\x25\x28\x2f\x41\x44\x2f\x3c\x3c\x29\x2a\x2b\x3c\x3e\x3f\ +\x35\x38\x35\x2b\x33\x30\x25\x32\x31\x28\x2c\x29\x34\x37\x35\x2e\ +\x37\x38\x2d\x36\x31\x32\x35\x37\x2a\x37\x36\x29\x31\x30\x2c\x31\ +\x2d\x28\x2d\x2b\x33\x3d\x3e\x2f\x36\x35\x2f\x34\x32\x2a\x2b\x28\ +\x26\x2f\x2e\x29\x30\x2b\x27\x2a\x26\x2b\x31\x2f\x28\x2d\x2d\x31\ +\x2f\x33\x25\x2c\x30\x31\x36\x38\x32\x37\x37\x2a\x2f\x2c\x21\x26\ +\x29\x2b\x33\x31\x33\x3f\x46\x23\x2e\x2f\x20\x22\x21\x37\x3f\x43\ +\x2f\x3b\x3e\x28\x2d\x2c\x2e\x2f\x2f\x29\x28\x29\x21\x1f\x1e\x25\ +\x2a\x28\x23\x27\x27\x28\x29\x25\x30\x34\x30\x1c\x1a\x1a\x30\x2e\ +\x31\x25\x24\x21\x23\x25\x23\x29\x28\x29\x24\x29\x29\x28\x33\x38\ +\x2c\x33\x34\x28\x2d\x2a\x29\x2b\x27\x28\x30\x31\x26\x2e\x2f\x27\ +\x2b\x2c\x26\x29\x27\x27\x27\x24\x29\x22\x1f\x30\x2e\x28\x2c\x2f\ +\x2a\x2a\x2e\x2a\x31\x36\x34\x38\x3b\x38\x2d\x31\x31\x31\x35\x36\ +\x28\x32\x2d\x25\x29\x29\x29\x2a\x26\x26\x2a\x25\x2d\x29\x28\x27\ +\x27\x27\x28\x28\x2a\x24\x27\x28\x2d\x2f\x28\x2c\x2d\x25\x2a\x2e\ +\x2e\x2c\x30\x30\x30\x33\x34\x33\x33\x35\x2e\x30\x31\x2d\x33\x30\ +\x2d\x34\x30\x2a\x30\x2f\x30\x3a\x37\x35\x36\x3b\x33\x35\x35\x32\ +\x37\x33\x2c\x2d\x2c\x2f\x38\x35\x30\x3b\x3a\x35\x39\x37\x34\x3d\ +\x41\x38\x40\x41\x33\x3d\x3a\x39\x41\x44\x36\x3c\x3d\x2b\x32\x30\ +\x35\x3e\x3e\x3e\x49\x4a\x00\x00\x00\x7d\xa7\xc7\x75\xa3\xc2\x76\ +\xa6\xc6\x7a\xa9\xca\x7f\xaf\xcf\x83\xb4\xd3\x86\xb6\xd5\x8c\xb8\ +\xd3\x8d\xa6\xaf\x31\x46\x45\x2a\x37\x3b\x2d\x3a\x3d\x3f\x4b\x50\ +\x3d\x48\x51\x3a\x46\x4b\x42\x4e\x56\x36\x44\x45\x38\x44\x50\x35\ +\x3e\x41\x37\x46\x46\x36\x44\x4a\x33\x46\x46\x2c\x34\x33\x33\x33\ +\x37\x3e\x49\x48\x29\x2f\x2a\x41\x42\x44\x43\x4c\x4c\x36\x3e\x3d\ +\x3e\x45\x48\x40\x49\x4f\x2d\x41\x46\x2d\x37\x39\x2c\x2f\x31\x3a\ +\x49\x50\x51\x72\x88\x5e\x99\xba\x57\x92\xb0\x2f\x34\x3e\x4e\x7b\ +\x9c\x44\x5b\x6c\x5e\x8f\xab\x46\x69\x89\x6a\xac\xd5\x6f\xb2\xd5\ +\x4b\x7b\x8d\x36\x3c\x3e\x3c\x42\x42\x38\x3e\x3b\x3b\x3b\x3c\x39\ +\x39\x3a\x36\x40\x46\x47\x5c\x6f\x40\x61\x79\x4b\x6c\x87\x33\x43\ +\x52\x45\x68\x7f\x48\x6a\x80\x38\x47\x4b\x27\x35\x38\x21\x2e\x30\ +\x36\x3b\x3a\x2f\x35\x33\x22\x23\x1e\x38\x41\x3f\x2f\x39\x3a\x2c\ +\x3a\x3a\x28\x3a\x3a\x2a\x36\x35\x2b\x32\x34\x27\x2b\x2c\x38\x3d\ +\x37\x32\x38\x33\x31\x3a\x38\x27\x2f\x2f\x29\x30\x2f\x27\x2d\x2a\ +\x26\x30\x2b\x2c\x31\x32\x30\x39\x3d\x32\x34\x34\x29\x2e\x2d\x31\ +\x34\x33\x31\x37\x35\x2a\x2e\x2b\x2b\x2d\x2b\x32\x39\x37\x29\x2c\ +\x2e\x2a\x2c\x2e\x29\x2e\x2a\x2d\x2f\x2f\x1c\x1d\x18\x2f\x30\x32\ +\x2e\x38\x3c\x28\x37\x33\x17\x1b\x18\x33\x36\x38\x2c\x31\x2e\x2e\ +\x33\x33\x2e\x2f\x31\x2c\x2f\x30\x23\x24\x23\x2a\x32\x2c\x2c\x2f\ +\x2c\x24\x29\x21\x2a\x33\x2c\x26\x2a\x2a\x27\x2f\x2d\x23\x2d\x2c\ +\x26\x30\x32\x2a\x31\x31\x24\x2e\x2e\x26\x30\x33\x28\x2b\x2d\x28\ +\x2c\x30\x20\x27\x22\x2a\x2c\x2e\x2d\x2e\x2f\x30\x32\x2e\x32\x31\ +\x2d\x33\x31\x2b\x32\x33\x30\x33\x36\x36\x2d\x30\x2e\x2f\x36\x35\ +\x31\x35\x34\x2e\x33\x31\x29\x31\x2f\x28\x32\x36\x27\x30\x30\x24\ +\x2b\x28\x26\x2a\x27\x28\x28\x28\x2c\x2d\x2d\x29\x2a\x2c\x2c\x2d\ +\x2c\x2d\x30\x2b\x32\x38\x37\x2d\x2f\x2b\x29\x2d\x2e\x32\x31\x31\ +\x30\x31\x2b\x2e\x2b\x25\x2a\x2e\x2b\x27\x2c\x27\x29\x2f\x2b\x2a\ +\x2e\x28\x24\x28\x28\x31\x2e\x2d\x31\x30\x30\x2d\x2e\x2e\x2a\x2d\ +\x2d\x33\x37\x35\x2c\x2c\x2b\x2a\x2b\x28\x2c\x29\x2c\x2d\x30\x32\ +\x2f\x33\x2f\x34\x39\x3c\x2a\x2a\x2c\x32\x39\x35\x34\x3b\x39\x37\ +\x42\x43\x00\x00\x00\x82\xad\xcd\x7c\xac\xcb\x77\xa8\xcb\x7c\xa9\ +\xcf\x81\xae\xd2\x8e\xb7\xd5\x91\xb1\xbe\x75\x84\x8c\x50\x60\x66\ +\x0f\x1b\x13\x22\x29\x2f\x2d\x3e\x47\x40\x4f\x57\x39\x4c\x58\x39\ +\x49\x53\x37\x4a\x52\x3b\x4c\x53\x35\x3e\x43\x39\x39\x3a\x3e\x40\ +\x43\x36\x3e\x42\x32\x39\x37\x2d\x37\x34\x35\x36\x36\x42\x49\x4b\ +\x2c\x2f\x2f\x38\x38\x3c\x40\x49\x4a\x32\x39\x36\x29\x2b\x2a\x33\ +\x3b\x3d\x33\x39\x3d\x3a\x4a\x51\x4d\x71\x8a\x6e\xae\xd0\x70\xb0\ +\xd4\x4e\x85\xa0\x5c\x8b\xa8\x35\x3b\x3e\x4b\x77\x9c\x66\xa9\xd2\ +\x51\x8d\xa4\x2e\x38\x3e\x39\x52\x61\x3f\x63\x75\x29\x36\x36\x38\ +\x42\x43\x30\x3c\x39\x34\x39\x3b\x31\x36\x37\x34\x39\x35\x36\x3d\ +\x39\x46\x62\x7d\x5e\x8e\xaf\x44\x66\x7d\x28\x3a\x3e\x41\x64\x7f\ +\x35\x51\x68\x3f\x60\x6f\x2c\x37\x41\x20\x27\x29\x37\x42\x3f\x30\ +\x32\x31\x28\x24\x22\x38\x47\x4e\x31\x3e\x47\x2d\x36\x36\x2c\x31\ +\x35\x2e\x32\x30\x28\x31\x2e\x27\x32\x30\x26\x2d\x31\x24\x2d\x2c\ +\x2b\x33\x2c\x32\x39\x38\x2f\x30\x2d\x2d\x36\x35\x2d\x30\x31\x2e\ +\x34\x38\x2c\x34\x34\x2e\x38\x36\x2e\x33\x30\x2f\x34\x3a\x2d\x31\ +\x34\x21\x29\x26\x2d\x30\x2b\x32\x3a\x39\x29\x2c\x29\x32\x35\x35\ +\x2f\x37\x3a\x23\x28\x28\x1c\x19\x1c\x2d\x30\x2f\x32\x39\x41\x25\ +\x34\x38\x19\x1a\x19\x2d\x2b\x2d\x26\x26\x25\x2d\x32\x30\x2d\x2d\ +\x2b\x29\x2d\x28\x2c\x2e\x2a\x29\x2c\x2b\x32\x39\x39\x24\x2a\x24\ +\x27\x2e\x2a\x1f\x25\x28\x24\x32\x35\x25\x2f\x35\x2b\x2e\x37\x2b\ +\x33\x33\x2a\x2f\x2d\x27\x2b\x2c\x24\x27\x27\x24\x28\x29\x28\x28\ +\x24\x2c\x2b\x29\x2e\x30\x2e\x36\x37\x39\x36\x36\x32\x35\x36\x32\ +\x30\x37\x36\x30\x36\x32\x2c\x34\x2f\x26\x2b\x2d\x28\x2a\x2a\x2a\ +\x2a\x2a\x21\x29\x26\x22\x27\x24\x26\x29\x22\x23\x26\x1f\x28\x28\ +\x25\x27\x24\x22\x28\x2d\x2a\x28\x2c\x25\x2b\x2e\x2e\x2c\x31\x2f\ +\x32\x39\x37\x34\x39\x35\x31\x37\x32\x2d\x31\x30\x2c\x29\x2a\x27\ +\x2d\x27\x2b\x2e\x2e\x2b\x32\x30\x39\x41\x42\x32\x3b\x3a\x35\x3f\ +\x3f\x40\x46\x47\x34\x3d\x39\x33\x3b\x39\x35\x40\x41\x39\x3c\x3a\ +\x32\x38\x37\x37\x3b\x3c\x38\x3e\x41\x30\x3c\x3a\x36\x3e\x3c\x3a\ +\x42\x41\x30\x39\x36\x35\x3f\x3f\x36\x44\x48\x34\x45\x40\x00\x00\ +\x00\x88\xb3\xcf\x7f\xad\xcb\x98\xbb\xd5\x94\xb6\xd6\x98\xb4\xcc\ +\x8b\xa3\xa9\x57\x6b\x76\x58\x63\x6f\x23\x31\x32\x25\x25\x2a\x2d\ +\x33\x36\x36\x38\x3d\x3b\x45\x48\x3a\x4b\x55\x3e\x53\x5e\x3c\x49\ +\x50\x3b\x42\x45\x32\x35\x3a\x3b\x43\x46\x3b\x44\x45\x3a\x48\x4e\ +\x34\x38\x3b\x2f\x37\x34\x2c\x2c\x31\x3c\x4a\x4d\x28\x37\x32\x35\ +\x36\x31\x3c\x4c\x4a\x2c\x39\x35\x43\x51\x67\x52\x70\x80\x64\x8a\ +\xa3\x75\xb8\xd7\x6f\xb1\xd3\x48\x7d\x95\x37\x4d\x54\x34\x39\x3b\ +\x32\x3a\x3f\x32\x3b\x42\x2b\x35\x3c\x41\x5f\x74\x3d\x49\x4f\x40\ +\x45\x47\x3d\x40\x3c\x39\x42\x44\x3c\x43\x42\x34\x43\x4c\x3c\x4f\ +\x54\x38\x3e\x40\x30\x38\x38\x37\x3b\x3a\x2d\x32\x30\x4b\x6c\x89\ +\x32\x4e\x64\x2b\x3e\x43\x37\x3e\x4a\x45\x65\x77\x4e\x78\x91\x30\ +\x3d\x41\x2f\x39\x3b\x22\x24\x25\x37\x3f\x44\x2b\x33\x36\x22\x28\ +\x27\x32\x3e\x3d\x2e\x3b\x40\x28\x2b\x30\x2e\x30\x30\x2d\x30\x2d\ +\x2b\x35\x30\x2d\x35\x36\x31\x38\x3b\x2a\x32\x31\x32\x39\x3b\x31\ +\x32\x33\x2d\x30\x2c\x30\x32\x34\x28\x2f\x34\x2a\x2f\x2f\x2e\x2d\ +\x2d\x2e\x35\x37\x29\x2e\x28\x2a\x31\x30\x2f\x34\x32\x2d\x2f\x2d\ +\x30\x3a\x36\x2b\x2c\x2b\x2d\x30\x30\x2f\x36\x35\x29\x31\x30\x2d\ +\x32\x31\x1e\x1e\x1b\x2f\x31\x2f\x2e\x39\x3a\x24\x32\x37\x23\x21\ +\x22\x2e\x2c\x2a\x2f\x33\x36\x29\x2f\x2d\x18\x19\x17\x21\x27\x24\ +\x2e\x32\x31\x2a\x27\x29\x21\x25\x26\x2c\x36\x3d\x1f\x28\x2d\x25\ +\x30\x32\x26\x2d\x2f\x30\x38\x36\x2f\x33\x34\x28\x2c\x2f\x25\x32\ +\x31\x25\x23\x26\x22\x23\x1c\x24\x23\x1c\x2f\x2b\x29\x35\x34\x32\ +\x30\x33\x2d\x37\x33\x34\x34\x35\x33\x34\x36\x33\x2a\x34\x33\x2b\ +\x35\x39\x22\x27\x23\x23\x28\x24\x26\x2a\x27\x26\x2b\x28\x29\x2e\ +\x2d\x25\x25\x21\x26\x26\x21\x2c\x2f\x2a\x27\x2b\x27\x24\x28\x26\ +\x26\x25\x22\x24\x29\x26\x26\x29\x25\x27\x2d\x28\x2d\x2b\x2b\x27\ +\x27\x23\x2b\x30\x29\x30\x35\x33\x2a\x34\x34\x30\x38\x39\x2d\x37\ +\x3d\x31\x3c\x3c\x2d\x33\x33\x26\x2a\x2b\x2e\x34\x31\x30\x35\x37\ +\x2a\x31\x2b\x33\x3a\x39\x36\x3a\x39\x2d\x2e\x31\x31\x32\x32\x36\ +\x42\x41\x38\x42\x3e\x3c\x47\x4a\x37\x40\x40\x30\x36\x37\x38\x3b\ +\x3d\x3b\x46\x4c\x3e\x4a\x4d\x39\x43\x45\x00\x00\x00\x86\xb3\xd0\ +\xcd\xd6\xda\xa2\xba\xc9\x67\x85\x8a\x2b\x38\x37\x50\x62\x6a\x4a\ +\x5f\x6b\x4a\x5c\x64\x1c\x25\x27\x31\x35\x3b\x3f\x4f\x53\x3b\x40\ +\x43\x3b\x4b\x50\x38\x46\x4f\x45\x52\x62\x3e\x4b\x50\x2d\x2f\x35\ +\x41\x43\x44\x38\x41\x4b\x3b\x40\x49\x3e\x4a\x4b\x31\x36\x35\x32\ +\x39\x37\x2e\x2c\x2f\x39\x43\x48\x30\x3f\x41\x2e\x31\x31\x3c\x46\ +\x47\x38\x4e\x51\x3a\x49\x61\x78\xc1\xe4\x7a\xc1\xe0\x4b\x84\x99\ +\x3f\x6b\x80\x37\x40\x3a\x33\x35\x3a\x31\x3c\x3e\x3e\x47\x51\x33\ +\x42\x41\x33\x3a\x3b\x35\x3b\x39\x39\x3d\x3d\x30\x3b\x39\x38\x3f\ +\x3e\x35\x3b\x39\x3d\x4c\x58\x61\x8f\xac\x43\x60\x69\x35\x3d\x3d\ +\x48\x65\x74\x35\x40\x42\x2f\x39\x34\x33\x3e\x48\x3e\x60\x74\x47\ +\x75\x8d\x30\x3e\x42\x41\x60\x7a\x43\x63\x7a\x3b\x48\x4e\x2f\x39\ +\x35\x22\x2a\x28\x33\x3d\x3e\x2b\x3e\x47\x21\x29\x29\x36\x42\x43\ +\x34\x35\x39\x2b\x33\x2f\x2e\x30\x30\x34\x36\x35\x29\x2f\x28\x39\ +\x39\x3e\x29\x2e\x2c\x2e\x32\x2e\x2a\x2e\x2d\x29\x2e\x2a\x2d\x33\ +\x34\x30\x37\x35\x2f\x32\x38\x35\x3e\x41\x26\x29\x28\x2f\x36\x38\ +\x2a\x35\x34\x22\x2b\x23\x2b\x30\x2b\x2b\x31\x2e\x2d\x38\x36\x28\ +\x2c\x29\x30\x34\x33\x30\x32\x2f\x2c\x2d\x28\x2c\x2f\x2a\x20\x22\ +\x20\x2c\x2f\x2b\x2c\x36\x36\x28\x2a\x27\x28\x27\x25\x31\x33\x30\ +\x34\x3a\x39\x26\x29\x27\x20\x1d\x1f\x24\x27\x27\x23\x27\x2a\x21\ +\x29\x27\x22\x2b\x2d\x2a\x35\x38\x2d\x34\x36\x36\x45\x47\x25\x30\ +\x33\x28\x30\x2d\x2f\x2e\x31\x28\x2c\x2d\x24\x24\x23\x2a\x25\x1f\ +\x2a\x22\x20\x28\x27\x24\x33\x32\x2e\x30\x34\x34\x33\x34\x31\x2f\ +\x37\x37\x30\x36\x36\x29\x34\x31\x23\x32\x3a\x2b\x33\x34\x2a\x2b\ +\x24\x28\x2c\x2c\x29\x2c\x2a\x29\x28\x26\x2a\x2e\x2a\x28\x2e\x29\ +\x2d\x2d\x2d\x2a\x2e\x30\x28\x2d\x2a\x2f\x36\x35\x2d\x33\x34\x2b\ +\x31\x2c\x2b\x31\x31\x35\x3b\x3b\x33\x2f\x33\x31\x37\x34\x30\x33\ +\x34\x2e\x34\x31\x30\x37\x36\x3b\x41\x40\x36\x3d\x3c\x35\x3c\x3e\ +\x31\x38\x3a\x34\x3e\x3d\x36\x37\x39\x2f\x2d\x2d\x38\x3f\x3e\x31\ +\x37\x38\x32\x34\x35\x30\x3b\x3a\x35\x3b\x3a\x3c\x4a\x48\x36\x38\ +\x3b\x30\x36\x35\x30\x2d\x2e\x2e\x31\x32\x32\x3c\x3d\x2f\x34\x36\ +\x29\x2d\x2b\x2f\x33\x35\x00\x00\x00\xa2\xc0\xd3\xa4\xba\xc1\x66\ +\x85\x8b\x4f\x63\x6d\x45\x56\x5d\x3f\x4c\x56\x47\x59\x5d\x37\x45\ +\x44\x2e\x3b\x40\x3c\x47\x47\x3f\x45\x46\x3a\x42\x43\x33\x3b\x3e\ +\x3f\x47\x4b\x3c\x48\x47\x3e\x40\x41\x39\x3c\x36\x47\x50\x53\x3b\ +\x48\x4e\x31\x35\x38\x38\x40\x3c\x37\x3f\x47\x29\x36\x33\x29\x29\ +\x29\x42\x47\x4a\x30\x38\x39\x31\x30\x33\x43\x4d\x53\x36\x48\x4a\ +\x2f\x3c\x4b\x5e\x97\xb4\x31\x43\x4d\x2b\x38\x3d\x49\x6a\x85\x36\ +\x3f\x3f\x39\x40\x40\x32\x3d\x40\x54\x77\x92\x33\x44\x45\x37\x3d\ +\x3e\x32\x3b\x3c\x3f\x43\x44\x35\x3f\x3c\x39\x46\x4c\x54\x72\x8c\ +\x77\xb6\xda\x6d\xb2\xd6\x47\x69\x73\x32\x39\x36\x3e\x5d\x77\x2e\ +\x36\x39\x2e\x35\x37\x51\x7e\xa3\x4c\x89\xa5\x39\x5f\x77\x3b\x46\ +\x57\x63\x97\xb3\x41\x67\x87\x3f\x61\x6f\x2a\x2f\x2d\x21\x23\x25\ +\x35\x3f\x43\x2a\x31\x2f\x20\x25\x24\x36\x3e\x3d\x2f\x37\x35\x2a\ +\x33\x34\x29\x36\x35\x2d\x31\x30\x2c\x30\x30\x2f\x31\x31\x2e\x3a\ +\x37\x2e\x38\x34\x2a\x2f\x31\x2f\x39\x3d\x34\x37\x3c\x2d\x36\x35\ +\x24\x2b\x2d\x34\x38\x3e\x31\x40\x45\x23\x35\x35\x2a\x32\x32\x2a\ +\x2f\x2b\x32\x39\x36\x35\x3b\x38\x29\x2e\x2b\x2d\x31\x30\x29\x2c\ +\x2c\x2a\x2c\x2c\x28\x28\x28\x35\x38\x37\x22\x21\x23\x2e\x2f\x2e\ +\x30\x37\x37\x26\x26\x28\x1f\x25\x21\x2d\x2e\x2d\x26\x27\x26\x25\ +\x28\x25\x26\x27\x27\x1f\x25\x23\x2a\x30\x35\x27\x35\x3a\x2e\x3a\ +\x42\x28\x30\x36\x38\x45\x4b\x29\x36\x39\x28\x2f\x36\x2c\x37\x3a\ +\x33\x37\x35\x2c\x2c\x29\x2d\x2a\x29\x29\x28\x20\x29\x2b\x29\x33\ +\x31\x30\x2f\x32\x2d\x33\x30\x32\x2f\x32\x34\x2b\x36\x38\x26\x31\ +\x32\x27\x2e\x30\x26\x2e\x30\x25\x2b\x2a\x26\x2d\x27\x26\x2b\x26\ +\x27\x2a\x27\x29\x2b\x24\x24\x28\x28\x25\x24\x23\x28\x2e\x2a\x32\ +\x33\x30\x2e\x35\x31\x2a\x2e\x32\x31\x35\x35\x2c\x31\x2e\x2b\x32\ +\x2f\x2d\x31\x2d\x34\x34\x34\x31\x36\x33\x34\x37\x34\x2f\x37\x38\ +\x35\x3f\x3e\x33\x3c\x37\x31\x35\x37\x35\x3c\x3c\x36\x40\x3e\x38\ +\x41\x40\x3f\x44\x45\x37\x3c\x3f\x35\x40\x42\x3b\x40\x46\x40\x4c\ +\x4f\x36\x3b\x39\x32\x3e\x37\x2d\x31\x31\x30\x35\x33\x3c\x41\x46\ +\x3a\x43\x43\x36\x40\x43\x39\x40\x49\x38\x40\x45\x38\x3f\x3f\x3c\ +\x4a\x52\x00\x00\x00\x73\x90\x9e\x85\xa5\xbb\x5c\x7d\x8d\x49\x66\ +\x74\x34\x48\x51\x29\x2c\x2d\x3c\x49\x50\x3f\x4a\x54\x3b\x4a\x51\ +\x3f\x4d\x52\x41\x49\x49\x3c\x46\x49\x34\x38\x37\x40\x46\x4a\x3a\ +\x3e\x3d\x40\x44\x40\x31\x37\x35\x3f\x43\x43\x46\x4a\x4b\x41\x45\ +\x47\x36\x41\x3d\x3d\x49\x48\x2d\x38\x34\x28\x24\x23\x40\x44\x48\ +\x32\x3c\x3c\x29\x30\x2e\x3f\x49\x48\x3e\x4d\x4c\x32\x3f\x44\x36\ +\x4a\x57\x38\x43\x49\x35\x3e\x41\x48\x6e\x82\x32\x3c\x41\x43\x58\ +\x69\x69\x9c\xbc\x6b\xaf\xd2\x37\x4c\x53\x3d\x43\x46\x34\x3d\x3a\ +\x31\x39\x44\x68\x99\xba\x79\xb7\xd9\x66\xa5\xc2\x46\x69\x7d\x2c\ +\x3f\x45\x34\x47\x4f\x34\x38\x38\x54\x77\x99\x34\x3a\x3a\x34\x37\ +\x36\x4c\x64\x82\x40\x56\x6f\x47\x68\x78\x3a\x40\x4a\x3c\x52\x60\ +\x4c\x6a\x7d\x33\x45\x4d\x28\x33\x34\x20\x25\x24\x36\x41\x3e\x2e\ +\x32\x31\x28\x2f\x2e\x31\x3f\x41\x32\x3e\x42\x2d\x35\x32\x26\x2c\ +\x29\x2f\x37\x39\x30\x33\x33\x2b\x2d\x2f\x33\x3b\x3d\x2f\x3b\x3e\ +\x27\x2b\x2b\x2b\x35\x38\x2c\x30\x35\x29\x37\x37\x23\x31\x31\x2d\ +\x31\x34\x2b\x35\x35\x24\x29\x24\x2b\x32\x2e\x24\x2b\x2c\x2b\x29\ +\x2a\x32\x33\x38\x36\x33\x37\x2e\x39\x37\x30\x39\x36\x2e\x31\x2e\ +\x27\x27\x25\x2c\x2c\x2e\x1d\x21\x23\x2d\x31\x30\x2e\x36\x37\x26\ +\x27\x2a\x25\x25\x27\x28\x31\x2e\x22\x2f\x30\x1c\x28\x28\x19\x1d\ +\x1f\x2e\x3f\x41\x31\x3f\x44\x34\x44\x48\x2e\x37\x3d\x29\x31\x38\ +\x2f\x33\x38\x38\x3a\x41\x3c\x42\x44\x52\x5a\x5f\x58\x5e\x63\x39\ +\x3f\x3e\x38\x36\x33\x2e\x32\x2d\x33\x34\x2f\x34\x35\x34\x27\x2a\ +\x2b\x26\x2a\x27\x2b\x2f\x30\x25\x29\x29\x25\x2c\x2a\x2a\x31\x32\ +\x26\x2a\x27\x28\x2b\x26\x27\x29\x25\x2c\x33\x2d\x2d\x33\x33\x2f\ +\x32\x32\x2c\x30\x2c\x2b\x33\x32\x2e\x37\x35\x34\x33\x34\x2d\x36\ +\x35\x32\x35\x33\x27\x2d\x29\x2b\x31\x2a\x28\x2c\x27\x31\x31\x2d\ +\x2e\x2d\x2a\x2b\x2d\x28\x2f\x33\x30\x35\x3a\x3a\x2f\x35\x34\x29\ +\x2c\x28\x28\x29\x28\x2b\x2e\x2b\x2c\x2c\x29\x2f\x34\x31\x27\x2a\ +\x29\x27\x29\x27\x2d\x2d\x29\x2a\x2b\x2b\x2b\x31\x30\x36\x3b\x3e\ +\x3b\x46\x48\x35\x3e\x3e\x3d\x50\x53\x3a\x45\x46\x3b\x41\x43\x46\ +\x4d\x4d\x41\x52\x51\x3b\x46\x49\x38\x41\x42\x43\x4e\x51\x00\x00\ +\x00\x6d\x94\xa9\x70\x93\xa6\x5a\x75\x82\x33\x4c\x51\x3c\x4d\x5c\ +\x24\x2b\x30\x3d\x40\x49\x45\x50\x5a\x39\x44\x44\x3c\x4c\x54\x41\ +\x49\x49\x3b\x46\x49\x2d\x34\x2f\x46\x49\x4e\x48\x4c\x4f\x49\x56\ +\x58\x3b\x43\x47\x2f\x32\x37\x33\x3b\x36\x31\x3a\x37\x34\x40\x3d\ +\x39\x3e\x43\x30\x34\x32\x29\x28\x25\x3e\x4a\x4a\x31\x3d\x3c\x2f\ +\x2d\x32\x40\x45\x46\x35\x3e\x41\x30\x3a\x3a\x2f\x39\x39\x33\x3d\ +\x3c\x2f\x3c\x3a\x4f\x78\x94\x6f\xa6\xc5\x6f\xb7\xd7\x55\x8a\xa5\ +\x3f\x5f\x73\x37\x49\x4f\x36\x38\x38\x36\x38\x37\x2c\x31\x3a\x67\ +\xa2\xcc\x39\x5f\x72\x2b\x3c\x3e\x2e\x39\x38\x32\x3e\x3d\x33\x38\ +\x36\x33\x39\x39\x48\x6a\x8a\x2f\x39\x38\x33\x3b\x3f\x3d\x58\x6b\ +\x25\x30\x3d\x43\x59\x66\x37\x46\x59\x45\x71\x86\x45\x67\x80\x4b\ +\x6c\x7c\x2e\x30\x2c\x24\x28\x2a\x35\x44\x44\x27\x34\x39\x2c\x30\ +\x2f\x33\x39\x38\x35\x3b\x3d\x34\x3c\x3e\x2a\x32\x30\x2a\x2e\x2e\ +\x36\x40\x3c\x27\x2c\x2c\x33\x32\x34\x2e\x37\x39\x28\x2e\x31\x32\ +\x3d\x44\x30\x3a\x41\x2f\x39\x3c\x2a\x2f\x31\x35\x3b\x3b\x2a\x2d\ +\x29\x32\x3b\x3a\x2b\x35\x31\x2b\x2c\x2b\x29\x29\x29\x32\x34\x2f\ +\x2f\x2d\x2e\x35\x37\x37\x39\x3b\x39\x30\x33\x30\x2c\x38\x37\x2a\ +\x3a\x3b\x1d\x20\x23\x2c\x2f\x32\x30\x34\x3a\x1f\x2c\x2d\x1b\x25\ +\x25\x1b\x1f\x29\x2d\x45\x46\x26\x35\x37\x2e\x37\x3b\x27\x34\x3c\ +\x35\x44\x4b\x2a\x39\x39\x2c\x30\x2b\x2d\x2c\x30\x34\x32\x34\x3f\ +\x46\x49\x40\x45\x4a\x73\x7c\x7c\x53\x5d\x5f\x3f\x44\x44\x32\x3c\ +\x3d\x2f\x35\x34\x2d\x36\x35\x2a\x31\x34\x22\x27\x24\x2a\x29\x2c\ +\x2b\x2e\x2d\x2a\x32\x2a\x26\x2d\x26\x27\x28\x28\x2a\x2b\x27\x23\ +\x26\x23\x23\x28\x26\x25\x2a\x27\x25\x2b\x29\x26\x2e\x2c\x27\x2d\ +\x26\x2e\x30\x2d\x2c\x31\x31\x2c\x2f\x2d\x2d\x34\x32\x34\x38\x35\ +\x34\x38\x35\x30\x38\x36\x34\x3b\x39\x37\x3a\x39\x2d\x38\x33\x34\ +\x38\x3a\x2f\x32\x32\x30\x36\x35\x2e\x2f\x30\x2d\x32\x30\x32\x35\ +\x34\x35\x3b\x3b\x2f\x35\x33\x3b\x3c\x3a\x3b\x43\x43\x3c\x43\x46\ +\x33\x38\x36\x36\x3f\x44\x35\x3a\x38\x33\x3c\x3b\x32\x31\x33\x35\ +\x39\x40\x35\x39\x37\x2d\x2e\x2b\x3e\x41\x42\x4b\x51\x54\x39\x42\ +\x45\x36\x3e\x3f\x2f\x32\x2e\x2a\x33\x30\x00\x00\x00\x41\x5d\x70\ +\x7f\x98\xac\x7e\xa3\xb9\x5f\x7e\x8b\x32\x47\x48\x21\x2c\x30\x3a\ +\x4b\x54\x44\x4f\x57\x38\x4a\x4e\x37\x42\x43\x36\x39\x36\x44\x49\ +\x4d\x3c\x40\x42\x3d\x41\x44\x44\x4b\x4f\x44\x4d\x4e\x40\x44\x43\ +\x3e\x45\x48\x36\x39\x37\x40\x49\x4d\x38\x40\x41\x3a\x45\x47\x39\ +\x41\x45\x27\x2a\x25\x40\x44\x46\x3e\x47\x45\x28\x2b\x29\x40\x47\ +\x4b\x30\x3b\x3f\x25\x29\x32\x45\x60\x78\x4e\x70\x86\x6b\xa3\xc6\ +\x76\xbf\xe2\x5c\x9d\xb6\x36\x4d\x55\x36\x3d\x3d\x36\x45\x3c\x38\ +\x3f\x3c\x37\x39\x36\x33\x3d\x43\x3f\x4f\x57\x3e\x60\x71\x3b\x40\ +\x44\x32\x3f\x48\x2e\x3c\x3a\x2d\x3c\x3e\x3a\x4e\x56\x39\x44\x49\ +\x4b\x70\x8b\x34\x3c\x3c\x36\x42\x44\x48\x5c\x6e\x61\x95\xaf\x3b\ +\x64\x74\x38\x4a\x61\x64\x9d\xba\x50\x79\x8e\x35\x4c\x57\x29\x35\ +\x39\x23\x29\x2d\x2f\x36\x3f\x2b\x35\x3d\x2a\x33\x31\x34\x44\x46\ +\x2e\x34\x33\x30\x38\x36\x2a\x30\x31\x2b\x37\x36\x2b\x35\x36\x29\ +\x37\x35\x35\x3e\x40\x30\x43\x4a\x28\x2f\x2f\x31\x3f\x3e\x2d\x35\ +\x34\x29\x31\x2d\x2b\x32\x31\x23\x28\x24\x2e\x31\x2e\x33\x3a\x38\ +\x2d\x33\x32\x28\x2d\x29\x26\x27\x23\x27\x25\x24\x2c\x2e\x2d\x27\ +\x26\x23\x2f\x2b\x2a\x35\x39\x3a\x29\x2e\x2a\x29\x3a\x35\x1c\x23\ +\x29\x2e\x2f\x32\x30\x3e\x3d\x23\x2d\x33\x28\x31\x36\x3f\x51\x59\ +\x2b\x37\x3e\x25\x2b\x2c\x28\x2e\x2c\x25\x31\x36\x2c\x34\x37\x2d\ +\x30\x2b\x38\x34\x33\x34\x33\x34\x41\x42\x44\x3a\x43\x42\x4e\x55\ +\x57\x43\x49\x4a\x33\x38\x37\x2d\x31\x32\x2a\x32\x35\x31\x40\x42\ +\x2b\x3a\x3b\x24\x2b\x2a\x29\x2f\x2e\x2c\x2f\x31\x2e\x2f\x33\x2e\ +\x2e\x2c\x2a\x2e\x29\x24\x29\x28\x28\x29\x23\x29\x2f\x2e\x29\x2f\ +\x2a\x29\x2c\x2e\x29\x31\x2d\x23\x2f\x2b\x29\x31\x2e\x2c\x31\x2c\ +\x2a\x30\x31\x2a\x2d\x2c\x2f\x33\x2e\x2a\x2b\x27\x37\x3a\x39\x32\ +\x3b\x3e\x2f\x32\x34\x30\x31\x2f\x33\x3a\x38\x31\x37\x36\x31\x35\ +\x35\x2c\x32\x30\x2c\x2f\x2f\x37\x3a\x3a\x39\x3e\x41\x3c\x41\x40\ +\x3a\x42\x3f\x3c\x40\x40\x2e\x2e\x2c\x31\x33\x35\x37\x3d\x3c\x3c\ +\x45\x47\x3b\x48\x49\x3a\x3f\x42\x3e\x47\x4b\x3f\x49\x48\x36\x37\ +\x36\x3b\x40\x41\x45\x4e\x51\x48\x56\x5c\x46\x51\x53\x37\x3b\x3c\ +\x3e\x47\x48\x42\x4d\x4c\x00\x00\x00\x6d\x84\x9a\x93\xb6\xc8\x75\ +\x97\xa7\x64\x87\x94\x38\x4d\x53\x1f\x2d\x32\x39\x4c\x51\x3b\x46\ +\x4c\x38\x42\x43\x41\x4a\x4f\x39\x3f\x40\x3d\x40\x42\x45\x50\x55\ +\x42\x55\x59\x37\x3e\x44\x39\x43\x46\x37\x3c\x3a\x2f\x36\x38\x3a\ +\x40\x3f\x3b\x45\x43\x33\x39\x37\x38\x3d\x3c\x3e\x46\x48\x2a\x29\ +\x26\x3c\x3d\x40\x45\x49\x4a\x2a\x31\x32\x38\x38\x3e\x35\x45\x47\ +\x29\x35\x37\x5a\x87\xb1\x69\xb3\xd9\x5a\x93\xb2\x41\x5c\x68\x37\ +\x3d\x44\x3d\x4a\x44\x36\x3a\x3b\x37\x3f\x3d\x32\x37\x32\x38\x3d\ +\x41\x33\x3c\x39\x30\x37\x31\x35\x3c\x3a\x3d\x46\x4a\x34\x42\x45\ +\x34\x41\x4b\x58\x88\xa5\x44\x60\x6e\x34\x3d\x3e\x45\x68\x8b\x35\ +\x3f\x40\x2d\x31\x34\x4f\x6f\x88\x1f\x37\x3f\x3d\x5f\x69\x2e\x3c\ +\x49\x3f\x66\x84\x43\x74\x90\x31\x46\x55\x2d\x39\x38\x27\x31\x2e\ +\x30\x3c\x3b\x2c\x2d\x2e\x2f\x36\x3a\x33\x3b\x3b\x34\x37\x39\x2c\ +\x34\x37\x33\x38\x3f\x32\x3a\x3e\x2f\x35\x37\x33\x3e\x3c\x32\x3b\ +\x3c\x35\x3d\x3e\x28\x2a\x25\x30\x37\x30\x32\x35\x33\x32\x3f\x3e\ +\x2f\x33\x37\x28\x34\x35\x24\x2c\x2c\x33\x3d\x3f\x26\x29\x23\x2b\ +\x30\x31\x31\x37\x38\x2c\x2e\x2b\x21\x23\x1e\x30\x3a\x3b\x2e\x36\ +\x33\x1d\x21\x1d\x2a\x31\x32\x2e\x3b\x40\x28\x2f\x2e\x20\x27\x27\ +\x30\x40\x42\x39\x49\x4f\x33\x42\x43\x2a\x30\x35\x23\x2e\x33\x25\ +\x22\x21\x26\x26\x2a\x2d\x35\x35\x2a\x2d\x2e\x37\x39\x3b\x43\x44\ +\x46\x44\x4f\x4e\x3e\x41\x47\x3a\x41\x3e\x2f\x37\x36\x33\x38\x32\ +\x2f\x33\x32\x29\x2b\x2b\x2a\x34\x35\x2a\x32\x32\x29\x30\x2d\x2d\ +\x31\x2d\x2a\x30\x2e\x2b\x26\x25\x24\x23\x21\x25\x24\x1e\x26\x29\ +\x24\x2c\x30\x32\x30\x33\x33\x2a\x31\x32\x27\x2d\x2c\x31\x32\x31\ +\x34\x35\x34\x33\x42\x3f\x36\x3f\x3d\x32\x3b\x3c\x33\x3e\x40\x37\ +\x3c\x41\x34\x3a\x37\x39\x40\x41\x30\x3d\x3b\x34\x38\x3b\x37\x3b\ +\x3c\x37\x3d\x3d\x35\x3a\x38\x33\x37\x33\x31\x33\x33\x32\x34\x32\ +\x31\x38\x37\x30\x3a\x39\x2c\x2e\x2e\x37\x38\x36\x35\x38\x38\x2f\ +\x33\x31\x36\x3e\x3c\x37\x40\x40\x32\x3b\x3c\x3c\x44\x47\x36\x3c\ +\x38\x2e\x31\x30\x2d\x34\x34\x30\x35\x31\x36\x3b\x3e\x45\x51\x53\ +\x3d\x4a\x4d\x3d\x45\x46\x29\x2e\x2a\x2f\x33\x36\x32\x3c\x40\x38\ +\x3d\x3e\x00\x00\x00\x72\x8d\xa0\x90\xb2\xc7\x79\x9c\xb3\x78\x98\ +\xab\x41\x57\x5f\x32\x3d\x44\x2b\x37\x40\x3c\x4f\x53\x35\x3d\x42\ +\x3f\x48\x47\x35\x41\x46\x40\x41\x48\x43\x48\x4b\x40\x4a\x49\x39\ +\x46\x45\x3a\x45\x4c\x3c\x43\x48\x32\x3c\x37\x40\x41\x43\x39\x3f\ +\x3e\x38\x3e\x3c\x29\x2e\x2b\x38\x39\x3a\x2b\x31\x27\x38\x3c\x3f\ +\x38\x41\x42\x28\x31\x34\x33\x38\x38\x43\x4b\x50\x38\x44\x44\x4a\ +\x75\x93\x34\x4f\x5c\x36\x3e\x3f\x34\x3a\x36\x2f\x36\x34\x37\x4a\ +\x4b\x44\x59\x60\x3b\x42\x46\x38\x40\x3c\x32\x37\x36\x36\x36\x39\ +\x37\x45\x51\x32\x46\x4f\x32\x42\x4e\x55\x81\x9b\x59\x9a\xbf\x49\ +\x7b\x9a\x3b\x5a\x6b\x28\x35\x34\x4f\x73\x8f\x2d\x3a\x3f\x31\x39\ +\x3a\x33\x36\x39\x41\x54\x64\x36\x58\x65\x39\x52\x62\x3f\x68\x85\ +\x58\x8c\xa8\x33\x48\x4f\x28\x2b\x29\x2d\x35\x36\x34\x3d\x39\x26\ +\x27\x24\x35\x39\x3f\x38\x43\x4a\x33\x3b\x3c\x33\x3e\x3c\x2d\x32\ +\x33\x35\x39\x3d\x2a\x33\x32\x26\x2b\x2a\x2d\x3b\x3a\x2a\x31\x33\ +\x32\x39\x3c\x2c\x31\x2f\x27\x2b\x2a\x33\x37\x39\x35\x3a\x3c\x2d\ +\x35\x32\x2a\x2c\x29\x35\x39\x3a\x2b\x2d\x2a\x30\x33\x2f\x39\x3d\ +\x3c\x25\x2b\x27\x30\x32\x36\x28\x2e\x2e\x31\x35\x32\x27\x2c\x2b\ +\x20\x2a\x2b\x27\x34\x37\x2e\x40\x46\x31\x41\x48\x3d\x4b\x51\x39\ +\x47\x4e\x2f\x39\x3c\x28\x31\x36\x2a\x32\x32\x2d\x30\x2f\x37\x39\ +\x38\x39\x39\x3d\x3e\x3d\x41\x3d\x47\x48\x4a\x54\x56\x39\x41\x3d\ +\x36\x34\x32\x2f\x32\x2e\x2d\x2d\x2a\x2a\x2f\x33\x29\x30\x33\x2d\ +\x35\x38\x2d\x36\x37\x31\x34\x34\x2e\x34\x33\x2b\x2c\x2d\x25\x25\ +\x21\x25\x2b\x2a\x2e\x30\x2f\x29\x2e\x2e\x2f\x37\x37\x31\x31\x30\ +\x31\x32\x32\x35\x38\x37\x2f\x36\x36\x2c\x31\x2f\x2b\x2d\x2a\x2e\ +\x34\x31\x2b\x2f\x2c\x32\x35\x31\x30\x35\x33\x34\x3b\x38\x2c\x2d\ +\x2b\x2a\x2e\x2f\x27\x2b\x24\x2b\x31\x30\x2d\x2c\x2e\x28\x2c\x28\ +\x2a\x2c\x2c\x30\x30\x2d\x31\x36\x32\x2f\x37\x2f\x2e\x3a\x3c\x34\ +\x3d\x3a\x34\x3b\x3a\x35\x3a\x3c\x2f\x31\x31\x2a\x2e\x2c\x2d\x31\ +\x34\x36\x3b\x39\x2b\x2d\x2b\x30\x35\x36\x31\x37\x35\x31\x3a\x35\ +\x31\x3c\x3b\x35\x3d\x3a\x2a\x2b\x2f\x31\x35\x3a\x30\x39\x39\x2c\ +\x2e\x2f\x34\x40\x3e\x3c\x44\x46\x39\x46\x4a\x3d\x47\x4a\x00\x00\ +\x00\x45\x5f\x6b\x93\xaf\xcd\xa1\xc4\xd9\x84\xa9\xbc\x3d\x54\x5b\ +\x2e\x42\x48\x26\x2b\x28\x2f\x38\x39\x3d\x43\x47\x3e\x48\x4a\x3e\ +\x40\x43\x36\x39\x37\x4b\x4d\x50\x44\x4e\x4d\x44\x48\x4d\x3c\x46\ +\x46\x36\x41\x41\x2e\x36\x35\x44\x4a\x50\x48\x4a\x4a\x40\x48\x43\ +\x38\x40\x41\x30\x38\x38\x29\x33\x30\x2c\x2f\x2f\x3a\x44\x49\x2b\ +\x34\x31\x30\x37\x35\x34\x40\x3c\x3a\x43\x42\x35\x4c\x58\x31\x36\ +\x36\x34\x41\x3f\x30\x36\x3c\x33\x4f\x62\x6f\xae\xd5\x68\xaf\xd0\ +\x61\x97\xae\x2e\x3c\x41\x31\x38\x3b\x34\x35\x35\x34\x3d\x52\x69\ +\xa9\xd2\x67\xa6\xc8\x56\x95\xb6\x36\x55\x5e\x35\x40\x49\x44\x57\ +\x63\x32\x35\x3b\x4b\x6d\x8f\x2b\x39\x47\x2c\x36\x3a\x35\x3f\x4b\ +\x5b\x7b\x99\x35\x5b\x67\x2f\x45\x50\x3d\x65\x7c\x32\x4c\x68\x2e\ +\x37\x39\x1f\x25\x21\x33\x36\x39\x2e\x39\x38\x22\x27\x24\x36\x43\ +\x45\x30\x3b\x3a\x2e\x38\x40\x25\x2d\x2d\x31\x33\x39\x37\x39\x3b\ +\x2e\x3b\x3e\x36\x44\x4a\x34\x3b\x40\x31\x3c\x3d\x2c\x2f\x2f\x2f\ +\x2f\x32\x2e\x2e\x30\x3c\x40\x41\x33\x3e\x39\x34\x3d\x39\x2d\x2d\ +\x2f\x2f\x2c\x2e\x34\x34\x30\x2b\x2d\x2b\x41\x47\x45\x35\x3a\x38\ +\x37\x3c\x3a\x25\x2d\x2a\x2a\x3c\x3a\x1f\x26\x28\x32\x41\x48\x2f\ +\x3c\x42\x38\x4a\x53\x37\x4a\x50\x32\x45\x4c\x38\x48\x52\x33\x39\ +\x3d\x3d\x42\x43\x37\x3a\x38\x35\x36\x30\x3d\x3f\x3a\x42\x45\x3f\ +\x38\x3b\x3e\x35\x36\x37\x2f\x36\x34\x2b\x2d\x29\x2d\x30\x2d\x2a\ +\x2f\x2d\x29\x2c\x2d\x26\x2d\x2e\x28\x28\x25\x27\x2c\x28\x29\x30\ +\x2d\x2b\x36\x34\x27\x2a\x2a\x2b\x2e\x2a\x26\x29\x24\x28\x2b\x26\ +\x22\x26\x25\x35\x3b\x3b\x33\x38\x39\x30\x33\x32\x2e\x32\x2f\x29\ +\x2e\x29\x28\x2c\x2d\x2b\x31\x30\x34\x3f\x3c\x35\x38\x3d\x30\x32\ +\x32\x34\x36\x3a\x36\x39\x3b\x2d\x34\x31\x2e\x35\x32\x35\x3b\x3d\ +\x3b\x43\x43\x35\x3e\x3a\x2d\x30\x2f\x32\x38\x39\x32\x3b\x35\x37\ +\x3f\x3d\x37\x42\x41\x37\x3f\x40\x2e\x35\x37\x31\x35\x32\x31\x39\ +\x38\x31\x36\x3a\x33\x3c\x3c\x32\x41\x40\x3e\x43\x44\x35\x3a\x38\ +\x3d\x42\x40\x41\x47\x48\x38\x3c\x3f\x3b\x42\x45\x37\x43\x46\x37\ +\x43\x42\x3c\x48\x4d\x40\x47\x49\x32\x3a\x38\x4b\x53\x54\x47\x53\ +\x52\x3f\x47\x4a\x3f\x4a\x4a\x48\x53\x51\x00\x00\x00\x87\xa4\xb6\ +\xac\xd6\xec\x91\xc0\xdc\x57\x7e\x8c\x46\x62\x6d\x30\x3e\x44\x26\ +\x2e\x2e\x2b\x34\x36\x3b\x45\x45\x42\x44\x4a\x44\x4a\x4d\x40\x44\ +\x46\x47\x4b\x4e\x3a\x49\x49\x3e\x3d\x3e\x50\x5a\x63\x44\x4a\x46\ +\x3d\x43\x3e\x3c\x41\x42\x38\x3e\x3c\x35\x38\x37\x3e\x46\x45\x2c\ +\x3c\x3b\x2d\x33\x31\x2f\x2e\x34\x42\x4b\x47\x2f\x34\x2c\x38\x37\ +\x34\x3c\x45\x45\x32\x3b\x3d\x36\x3e\x40\x37\x3c\x3d\x33\x38\x37\ +\x39\x4b\x5b\x60\x9f\xc0\x3d\x6a\x7a\x35\x4f\x60\x5b\x96\xbb\x38\ +\x48\x53\x32\x37\x37\x31\x39\x39\x2c\x37\x45\x4e\x8a\xab\x2c\x4a\ +\x5b\x45\x69\x84\x3b\x47\x4a\x38\x46\x54\x44\x64\x79\x31\x3c\x43\ +\x41\x63\x7c\x34\x3d\x46\x25\x2e\x34\x51\x78\x9b\x3d\x5e\x72\x30\ +\x33\x37\x49\x68\x88\x2e\x42\x51\x43\x5c\x74\x2f\x36\x35\x24\x21\ +\x23\x3b\x40\x3f\x2d\x35\x35\x27\x2a\x2d\x39\x45\x48\x30\x3c\x40\ +\x2e\x36\x40\x33\x3d\x41\x31\x3c\x41\x34\x3f\x3f\x2f\x3a\x39\x32\ +\x3f\x43\x26\x2d\x2c\x32\x33\x33\x38\x3c\x3b\x24\x29\x28\x2e\x32\ +\x32\x2e\x31\x2e\x32\x38\x39\x26\x27\x28\x35\x37\x37\x2a\x2b\x2c\ +\x25\x25\x24\x27\x2a\x26\x2c\x2d\x2e\x27\x2d\x2a\x22\x2a\x26\x25\ +\x2d\x2f\x2f\x3e\x44\x36\x44\x4e\x2e\x3d\x43\x2e\x3a\x3e\x31\x3e\ +\x44\x36\x45\x4a\x29\x38\x3d\x33\x3d\x44\x54\x5d\x5e\x47\x50\x50\ +\x3e\x3d\x3a\x3a\x3b\x38\x34\x37\x33\x39\x39\x37\x36\x3b\x3c\x2f\ +\x33\x36\x2b\x2e\x29\x2d\x32\x2e\x26\x2c\x2b\x2f\x2f\x31\x2b\x30\ +\x2e\x2f\x2d\x2b\x2a\x2b\x2a\x29\x2e\x2a\x26\x2e\x29\x28\x2d\x29\ +\x26\x2a\x23\x27\x2e\x2a\x28\x2f\x2d\x30\x35\x35\x37\x3b\x3d\x2c\ +\x31\x2e\x32\x30\x2f\x2c\x33\x30\x30\x35\x34\x2c\x34\x35\x2d\x37\ +\x34\x31\x36\x37\x28\x32\x2b\x27\x2d\x28\x2d\x35\x38\x2d\x2f\x2e\ +\x2a\x2b\x2d\x28\x2f\x2c\x33\x3c\x3a\x32\x3a\x38\x2a\x29\x2b\x2a\ +\x2f\x2e\x2d\x34\x30\x33\x37\x35\x39\x3a\x36\x39\x3f\x3e\x33\x39\ +\x39\x32\x36\x38\x36\x44\x42\x35\x3f\x3b\x33\x36\x36\x31\x39\x34\ +\x37\x3d\x3b\x40\x46\x46\x33\x39\x3a\x34\x34\x34\x33\x38\x37\x31\ +\x38\x36\x39\x3e\x40\x31\x33\x35\x32\x36\x39\x39\x3e\x3f\x35\x3b\ +\x3d\x40\x4a\x4e\x35\x3f\x3a\x3a\x47\x45\x38\x3c\x43\x3e\x49\x4d\ +\x36\x43\x46\x30\x36\x3b\x00\x00\x00\x66\x8d\xa7\x9a\xc4\xe0\xd0\ +\xe7\xf6\xa1\xc1\xc5\x34\x42\x45\x2c\x37\x3b\x24\x27\x22\x31\x35\ +\x38\x30\x33\x31\x41\x41\x3f\x3e\x43\x46\x37\x42\x42\x43\x47\x4a\ +\x3f\x45\x49\x3e\x47\x48\x39\x3f\x43\x3a\x44\x46\x34\x43\x46\x40\ +\x4d\x4e\x3c\x4a\x4b\x31\x35\x36\x39\x41\x41\x2d\x36\x38\x30\x38\ +\x38\x29\x31\x33\x3e\x44\x47\x2a\x34\x2f\x33\x36\x39\x37\x3e\x44\ +\x31\x3a\x3a\x32\x3c\x3c\x33\x35\x3a\x31\x36\x33\x4d\x75\x8a\x2f\ +\x43\x49\x33\x38\x39\x31\x35\x35\x45\x67\x87\x33\x48\x50\x32\x3d\ +\x40\x30\x38\x3b\x36\x3d\x48\x43\x62\x6f\x33\x40\x45\x4d\x76\x90\ +\x3b\x4c\x59\x63\x97\xb8\x38\x53\x61\x30\x39\x3f\x58\x7b\x94\x2e\ +\x37\x3c\x2a\x33\x40\x3e\x60\x73\x33\x40\x3f\x2e\x34\x38\x4b\x76\ +\x94\x39\x5f\x78\x3b\x58\x62\x2b\x36\x2d\x22\x25\x27\x3e\x44\x45\ +\x2b\x2e\x2e\x2b\x2d\x2f\x3d\x43\x47\x2e\x32\x32\x32\x3a\x3d\x2f\ +\x43\x48\x2d\x38\x3e\x24\x2d\x2f\x36\x3d\x3f\x38\x3d\x44\x2d\x35\ +\x32\x29\x2d\x2b\x26\x2c\x2a\x34\x3a\x38\x3a\x3a\x3a\x38\x3b\x39\ +\x33\x3c\x3b\x30\x35\x33\x3a\x40\x3d\x38\x3b\x3b\x29\x26\x23\x2e\ +\x31\x31\x26\x2e\x2f\x27\x2e\x36\x30\x3e\x3f\x2f\x37\x3a\x39\x45\ +\x42\x39\x46\x4a\x3b\x51\x5a\x29\x3a\x3e\x21\x30\x35\x18\x1e\x23\ +\x22\x2c\x2c\x49\x54\x5b\x64\x6d\x6a\x57\x5f\x5f\x38\x40\x40\x35\ +\x3a\x3c\x33\x33\x35\x31\x2f\x30\x2e\x2c\x2c\x2e\x31\x2e\x2e\x3b\ +\x3c\x35\x43\x45\x2e\x33\x33\x2c\x2e\x2b\x26\x2d\x2b\x29\x2b\x29\ +\x25\x29\x26\x26\x2a\x26\x27\x31\x2a\x2c\x30\x2d\x2e\x33\x2d\x2f\ +\x33\x30\x33\x3a\x35\x2e\x38\x37\x2f\x33\x33\x33\x32\x30\x31\x35\ +\x36\x28\x30\x2d\x31\x38\x36\x39\x40\x45\x33\x3b\x40\x39\x3f\x42\ +\x30\x37\x31\x34\x3f\x3b\x31\x39\x3a\x3c\x3e\x44\x37\x45\x47\x31\ +\x3e\x3c\x2a\x35\x34\x30\x33\x34\x30\x35\x34\x2d\x35\x32\x31\x36\ +\x35\x33\x37\x39\x2d\x30\x2d\x33\x37\x35\x2b\x32\x2c\x2b\x30\x2c\ +\x29\x33\x30\x2f\x2d\x2e\x2c\x2e\x2b\x2e\x34\x36\x33\x39\x39\x2b\ +\x2d\x2a\x2c\x31\x2e\x2e\x37\x38\x33\x3c\x3e\x29\x34\x33\x33\x3a\ +\x38\x3e\x48\x50\x48\x52\x53\x3b\x42\x40\x43\x4b\x4b\x33\x38\x39\ +\x38\x41\x42\x3b\x3f\x45\x2f\x3f\x42\x33\x40\x43\x3b\x48\x48\x42\ +\x50\x52\x00\x00\x00\x94\xa9\xbb\xdc\xf0\xf9\xdb\xf1\xf9\xc8\xe4\ +\xe9\x48\x60\x68\x33\x41\x48\x26\x30\x30\x2f\x3b\x43\x2e\x39\x36\ +\x2e\x2d\x31\x42\x49\x55\x3e\x4e\x51\x42\x4b\x4d\x43\x4b\x47\x41\ +\x46\x48\x34\x3b\x39\x3f\x4d\x55\x3e\x49\x4d\x39\x47\x4a\x2e\x38\ +\x39\x36\x3d\x40\x3e\x47\x47\x36\x42\x3c\x34\x3b\x3c\x2a\x31\x31\ +\x3d\x45\x4a\x2b\x36\x36\x35\x39\x3d\x34\x3e\x40\x30\x3e\x40\x30\ +\x36\x3b\x36\x35\x3b\x3a\x49\x57\x3c\x5a\x6a\x31\x3c\x3d\x36\x3a\ +\x3c\x29\x30\x33\x56\x7d\x9d\x29\x36\x38\x32\x3b\x3b\x34\x3f\x40\ +\x36\x3d\x50\x47\x6c\x7d\x51\x74\x8a\x50\x87\xad\x54\x99\xc3\x40\ +\x69\x7f\x31\x3a\x3e\x2d\x2d\x38\x4c\x70\x85\x33\x3e\x41\x28\x37\ +\x38\x2d\x36\x38\x36\x3f\x3c\x32\x3b\x42\x40\x60\x79\x46\x69\x81\ +\x36\x4a\x52\x21\x2a\x25\x27\x28\x2d\x3a\x43\x41\x25\x28\x25\x2c\ +\x34\x36\x3b\x44\x45\x37\x40\x3f\x2b\x34\x33\x30\x39\x3b\x3a\x41\ +\x42\x2b\x2e\x2a\x2c\x37\x36\x29\x2c\x2b\x36\x3c\x3c\x34\x3a\x3c\ +\x29\x2c\x29\x29\x2c\x2c\x2b\x2f\x2e\x2e\x33\x30\x30\x35\x34\x2b\ +\x2d\x2e\x2a\x28\x2b\x2f\x30\x2f\x29\x36\x36\x27\x2d\x32\x2d\x37\ +\x39\x33\x39\x3c\x37\x3d\x41\x35\x38\x3f\x3a\x3e\x44\x3a\x48\x4e\ +\x39\x48\x4e\x3b\x43\x44\x20\x28\x2a\x3d\x46\x4d\x31\x46\x4a\x3d\ +\x4f\x52\x3f\x46\x48\x34\x3b\x3a\x35\x3c\x3a\x32\x35\x31\x2c\x2f\ +\x31\x2f\x2f\x34\x2a\x2c\x2d\x2c\x2c\x2a\x2b\x33\x31\x2a\x31\x30\ +\x29\x2b\x29\x29\x29\x26\x28\x2b\x27\x2d\x29\x29\x27\x28\x27\x24\ +\x29\x24\x25\x24\x24\x2c\x2d\x2b\x2b\x2c\x2a\x27\x2b\x27\x25\x2c\ +\x2a\x2a\x2c\x2c\x2c\x2f\x2d\x25\x2e\x2b\x26\x2a\x2c\x2d\x30\x30\ +\x34\x38\x37\x2f\x32\x33\x31\x37\x34\x33\x35\x33\x3c\x40\x46\x36\ +\x42\x42\x36\x40\x44\x3a\x42\x43\x36\x3d\x40\x2f\x34\x38\x2e\x33\ +\x33\x33\x34\x38\x36\x3d\x42\x37\x3c\x3b\x3a\x45\x43\x39\x44\x43\ +\x38\x3d\x3f\x2c\x34\x35\x36\x3d\x3e\x3a\x42\x41\x38\x44\x44\x3a\ +\x3e\x3d\x3a\x40\x43\x3c\x47\x44\x2d\x32\x2d\x32\x36\x39\x39\x40\ +\x40\x36\x39\x3d\x36\x3d\x40\x3a\x41\x44\x34\x3b\x37\x38\x3f\x42\ +\x36\x36\x3b\x2f\x2e\x30\x3c\x3e\x42\x35\x3a\x38\x35\x42\x44\x38\ +\x3e\x43\x3f\x46\x48\x47\x4e\x53\x43\x4e\x52\x44\x4e\x54\x00\x00\ +\x00\xa5\xb6\xbf\xda\xf0\xf7\xdb\xf1\xf9\xd6\xef\xf7\x9b\xc2\xc7\ +\x39\x47\x4a\x2e\x35\x32\x2d\x33\x34\x2c\x31\x31\x39\x3e\x40\x38\ +\x3e\x42\x3d\x48\x4c\x3b\x47\x45\x39\x48\x4a\x35\x46\x46\x2c\x2f\ +\x31\x36\x3d\x37\x34\x39\x37\x39\x47\x4e\x40\x4b\x4a\x3c\x3f\x3e\ +\x38\x3f\x41\x3a\x43\x43\x2a\x34\x38\x32\x34\x39\x3b\x45\x48\x2a\ +\x33\x34\x30\x3b\x39\x34\x3d\x3d\x32\x38\x39\x2b\x30\x2c\x34\x3d\ +\x3d\x3c\x58\x72\x35\x47\x4e\x37\x3e\x3f\x2d\x39\x3f\x2e\x43\x53\ +\x51\x82\x9d\x2f\x42\x40\x2f\x35\x35\x31\x3c\x3c\x2f\x3a\x47\x5c\ +\xa7\xcf\x4d\x83\xa2\x2f\x3c\x45\x36\x51\x61\x2c\x32\x36\x35\x37\ +\x3b\x29\x34\x37\x31\x38\x3e\x3b\x3e\x40\x31\x33\x34\x32\x35\x37\ +\x32\x3a\x39\x37\x41\x50\x44\x69\x83\x55\x85\x9f\x2c\x3a\x3c\x26\ +\x27\x21\x2c\x2c\x2e\x37\x43\x46\x27\x2b\x28\x34\x37\x3a\x3c\x42\ +\x43\x32\x39\x3c\x2c\x35\x34\x2a\x2d\x31\x31\x38\x3d\x33\x45\x4e\ +\x26\x32\x35\x2d\x32\x39\x2a\x32\x33\x32\x3a\x3f\x27\x2c\x2e\x2f\ +\x34\x37\x2b\x2f\x2b\x2d\x35\x34\x2b\x2e\x2d\x25\x27\x2a\x24\x28\ +\x2b\x31\x39\x3b\x2c\x3c\x40\x35\x41\x43\x31\x35\x37\x36\x34\x38\ +\x3d\x44\x45\x36\x3e\x43\x42\x51\x5a\x3a\x4a\x4f\x41\x4f\x52\x47\ +\x52\x54\x34\x44\x4e\x35\x4b\x55\x3e\x53\x5b\x3b\x43\x48\x31\x37\ +\x34\x30\x30\x32\x2c\x31\x31\x2d\x34\x34\x26\x2d\x2d\x2d\x31\x31\ +\x27\x2b\x29\x26\x27\x24\x2b\x2a\x26\x22\x28\x25\x29\x2b\x27\x2d\ +\x30\x2c\x27\x2e\x2c\x26\x27\x29\x2b\x29\x2c\x24\x2c\x27\x2b\x33\ +\x31\x2e\x32\x2e\x28\x2d\x2b\x2d\x33\x31\x32\x37\x37\x31\x39\x35\ +\x34\x3e\x3c\x31\x39\x3b\x31\x36\x37\x33\x39\x3a\x2e\x39\x32\x2e\ +\x31\x30\x2e\x33\x32\x29\x2e\x2d\x2a\x32\x34\x2a\x31\x30\x32\x3d\ +\x3d\x2f\x38\x31\x2f\x36\x30\x31\x3c\x3e\x36\x39\x38\x38\x43\x48\ +\x39\x4b\x4d\x33\x3c\x3c\x38\x3b\x3e\x30\x2f\x31\x29\x2d\x2a\x34\ +\x32\x36\x31\x36\x37\x39\x3e\x40\x2f\x36\x35\x2d\x34\x2f\x31\x37\ +\x39\x32\x3a\x39\x39\x47\x49\x3b\x4e\x50\x36\x3d\x3d\x40\x4a\x49\ +\x40\x4e\x4f\x37\x3e\x3d\x3a\x47\x44\x3f\x48\x47\x35\x3b\x3e\x46\ +\x50\x52\x3d\x47\x4e\x39\x45\x47\x3a\x47\x49\x35\x41\x41\x3d\x48\ +\x4d\x39\x3f\x40\x31\x35\x32\x27\x30\x2b\x00\x00\x00\xa4\xb8\xc2\ +\xd8\xf0\xf8\xd7\xef\xf7\xd3\xec\xf6\xa2\xc0\xc5\x2b\x37\x39\x34\ +\x3d\x3b\x34\x3c\x3d\x24\x2a\x25\x2d\x30\x32\x37\x40\x46\x2f\x33\ +\x35\x3d\x44\x48\x3b\x47\x4d\x34\x3c\x39\x37\x3b\x3e\x3d\x43\x43\ +\x3b\x42\x42\x34\x37\x30\x3b\x3c\x3e\x37\x3d\x3b\x39\x3d\x3e\x34\ +\x40\x41\x2f\x37\x37\x2f\x33\x34\x32\x40\x46\x24\x2d\x2e\x35\x3d\ +\x42\x36\x44\x45\x30\x37\x37\x36\x3d\x39\x2e\x37\x33\x43\x60\x82\ +\x46\x6b\x79\x3f\x55\x63\x56\x83\x9c\x67\xa7\xcb\x30\x46\x4b\x32\ +\x42\x48\x29\x39\x37\x2a\x33\x36\x31\x3d\x3d\x31\x3e\x4b\x2e\x37\ +\x3a\x31\x3f\x3e\x2c\x3d\x42\x3e\x5f\x68\x31\x42\x40\x34\x3c\x3d\ +\x30\x37\x3a\x33\x36\x33\x31\x39\x39\x35\x40\x3c\x34\x3d\x39\x45\ +\x5a\x70\x45\x6d\x86\x43\x67\x74\x37\x40\x43\x23\x25\x21\x2f\x34\ +\x32\x36\x40\x3f\x26\x2b\x25\x37\x38\x39\x39\x4b\x4e\x38\x46\x4d\ +\x30\x31\x31\x31\x3d\x42\x31\x3d\x40\x2a\x40\x45\x2b\x36\x3e\x26\ +\x26\x29\x33\x3d\x42\x2e\x2f\x2d\x2d\x37\x37\x32\x31\x35\x36\x3e\ +\x40\x31\x3b\x3c\x24\x2d\x2f\x29\x32\x33\x2c\x32\x35\x2b\x35\x35\ +\x2f\x35\x3e\x37\x3e\x3e\x35\x38\x37\x34\x38\x36\x31\x3c\x3f\x33\ +\x3d\x46\x3e\x4c\x55\x52\x5b\x63\x45\x51\x55\x3e\x48\x4c\x3e\x4b\ +\x4f\x3e\x49\x4d\x32\x39\x3b\x2d\x30\x2e\x2d\x39\x34\x30\x3b\x3a\ +\x2c\x2f\x2f\x22\x28\x26\x2b\x32\x31\x31\x32\x31\x2d\x2f\x2b\x29\ +\x2d\x29\x28\x2b\x22\x2d\x30\x2e\x2e\x2e\x29\x2b\x27\x23\x2a\x2c\ +\x2a\x2f\x30\x30\x2f\x34\x30\x30\x30\x2e\x30\x34\x2e\x2e\x32\x2f\ +\x30\x31\x2f\x2a\x33\x2e\x35\x3b\x3d\x39\x3d\x38\x33\x3c\x38\x30\ +\x34\x30\x38\x40\x3f\x38\x3e\x3f\x36\x3e\x38\x38\x41\x44\x36\x40\ +\x45\x3c\x41\x44\x3c\x46\x4e\x38\x43\x41\x27\x29\x26\x29\x2d\x2a\ +\x2d\x31\x2e\x28\x2d\x30\x2a\x36\x3c\x33\x3f\x45\x34\x39\x3c\x31\ +\x35\x36\x37\x3b\x3b\x37\x42\x3f\x35\x41\x40\x39\x45\x45\x38\x49\ +\x49\x35\x3b\x3c\x2b\x31\x31\x34\x42\x43\x3a\x44\x47\x3c\x42\x41\ +\x2f\x35\x34\x2c\x2d\x2f\x35\x3b\x3b\x3d\x49\x48\x41\x4c\x4a\x42\ +\x46\x46\x43\x4c\x50\x30\x33\x35\x35\x41\x43\x3c\x3e\x47\x36\x40\ +\x47\x42\x51\x56\x3a\x4b\x4f\x3f\x50\x52\x38\x3f\x3e\x3a\x42\x43\ +\x34\x41\x46\x40\x4d\x50\x00\x00\x00\xae\xc5\xd2\xd6\xef\xf7\xdf\ +\xf3\xfb\xd7\xf1\xf8\x5b\x76\x79\x34\x38\x39\x36\x3c\x3c\x29\x2d\ +\x2b\x27\x28\x23\x33\x3b\x3d\x31\x3a\x3e\x31\x40\x47\x31\x42\x49\ +\x30\x3e\x41\x2e\x39\x3b\x2f\x2d\x30\x37\x46\x48\x39\x4b\x4f\x31\ +\x38\x38\x46\x4c\x4b\x38\x3e\x3a\x3c\x41\x43\x32\x3d\x45\x2b\x33\ +\x32\x2f\x33\x36\x35\x3b\x40\x26\x2c\x2e\x3c\x42\x42\x34\x3d\x3d\ +\x35\x3b\x3d\x39\x3e\x3f\x2e\x36\x36\x33\x48\x62\x66\xac\xd2\x6f\ +\xbd\xde\x69\xb1\xd0\x28\x4a\x54\x2d\x38\x3a\x31\x37\x3c\x34\x3e\ +\x42\x34\x3e\x3c\x2d\x39\x3d\x31\x3b\x41\x33\x3d\x48\x3e\x57\x6e\ +\x50\x80\xa4\x3e\x69\x7d\x3e\x4a\x49\x37\x3c\x3c\x35\x3c\x3e\x2c\ +\x33\x30\x39\x3b\x3d\x3e\x44\x42\x34\x3e\x3b\x3a\x51\x60\x53\x82\ +\xa0\x40\x68\x85\x35\x3d\x40\x1e\x20\x1c\x3a\x41\x3d\x36\x3e\x3c\ +\x21\x27\x21\x31\x39\x34\x2f\x35\x36\x38\x3c\x3e\x38\x48\x4c\x2b\ +\x37\x3d\x33\x3c\x41\x2b\x38\x40\x24\x2c\x2b\x31\x3c\x39\x2c\x2a\ +\x29\x34\x37\x40\x2e\x38\x3d\x25\x33\x30\x27\x32\x33\x27\x34\x38\ +\x2b\x3b\x40\x31\x38\x3f\x2e\x3a\x40\x2c\x36\x39\x2e\x37\x36\x35\ +\x3a\x3c\x2e\x34\x37\x30\x38\x39\x39\x41\x47\x44\x4d\x50\x57\x5f\ +\x5e\x4d\x53\x54\x3b\x4b\x50\x33\x3e\x42\x30\x39\x3a\x2d\x30\x2e\ +\x2a\x2f\x2d\x29\x2d\x2d\x2c\x2e\x2f\x2c\x2e\x2d\x2b\x33\x2e\x2c\ +\x30\x2e\x32\x36\x35\x2a\x2d\x29\x24\x24\x23\x2b\x31\x2e\x2f\x35\ +\x32\x2c\x35\x30\x33\x36\x30\x2e\x31\x2c\x2d\x32\x31\x2e\x33\x31\ +\x30\x34\x33\x2a\x2d\x2a\x27\x2c\x2b\x33\x41\x40\x2d\x36\x32\x28\ +\x31\x31\x2a\x2d\x2b\x30\x36\x36\x38\x3a\x3a\x34\x3c\x3b\x2b\x2b\ +\x2b\x29\x2c\x24\x2a\x2e\x2d\x33\x35\x37\x3a\x3f\x3c\x2f\x2c\x2e\ +\x2c\x2d\x2e\x36\x36\x37\x34\x38\x3d\x31\x36\x39\x34\x3d\x42\x38\ +\x41\x43\x35\x41\x43\x34\x3f\x46\x27\x31\x30\x29\x2e\x2a\x30\x33\ +\x31\x28\x2d\x2b\x2b\x32\x32\x37\x3e\x3d\x30\x33\x34\x2a\x2e\x2e\ +\x2f\x39\x3a\x31\x35\x38\x34\x3b\x3b\x31\x34\x36\x31\x33\x36\x37\ +\x3c\x3f\x38\x43\x48\x34\x3f\x40\x32\x34\x32\x34\x3a\x39\x26\x2a\ +\x29\x35\x3a\x3b\x36\x43\x46\x39\x46\x49\x3a\x47\x4a\x31\x3f\x43\ +\x35\x41\x42\x2d\x36\x35\x3b\x42\x43\x41\x4c\x4e\x34\x38\x3b\x41\ +\x48\x48\x00\x00\x00\xc2\xda\xe8\xe4\xf6\xfb\xd7\xef\xf5\xc9\xe5\ +\xec\x5f\x7b\x84\x39\x47\x4c\x36\x42\x43\x2f\x40\x44\x37\x3c\x40\ +\x35\x39\x3a\x35\x3a\x3d\x33\x3e\x43\x37\x42\x47\x2d\x39\x3a\x2f\ +\x39\x3b\x36\x3f\x44\x33\x3c\x39\x30\x39\x3a\x2f\x36\x38\x38\x3d\ +\x3f\x36\x42\x3f\x33\x37\x34\x36\x41\x44\x23\x2b\x2a\x3a\x3d\x3c\ +\x3b\x46\x47\x27\x2e\x2d\x3e\x48\x4f\x31\x38\x39\x31\x31\x32\x35\ +\x39\x3a\x35\x3a\x3d\x2b\x34\x37\x38\x54\x6e\x41\x63\x7f\x2c\x4d\ +\x54\x26\x33\x38\x3d\x4c\x5b\x3b\x3f\x42\x2f\x39\x3b\x27\x34\x30\ +\x45\x67\x7e\x46\x5d\x72\x58\x8f\xb0\x4e\x83\xa1\x35\x53\x67\x41\ +\x54\x60\x32\x38\x38\x3d\x46\x44\x33\x37\x33\x39\x3b\x3b\x30\x2f\ +\x2c\x33\x37\x35\x2e\x38\x36\x3d\x5e\x7a\x42\x63\x7b\x49\x70\x82\ +\x33\x3d\x3b\x1f\x22\x23\x33\x3c\x3a\x33\x3e\x3f\x1f\x2b\x26\x38\ +\x3b\x3c\x36\x3e\x3b\x33\x37\x37\x2c\x35\x3a\x2f\x39\x41\x32\x36\ +\x36\x30\x39\x3d\x21\x27\x25\x30\x36\x35\x3c\x44\x44\x2f\x34\x36\ +\x23\x2e\x2c\x2a\x36\x3b\x38\x51\x59\x30\x3c\x42\x30\x36\x32\x32\ +\x35\x33\x31\x37\x3b\x2f\x32\x37\x32\x35\x3a\x36\x40\x40\x43\x4a\ +\x4e\x3b\x45\x43\x40\x47\x50\x56\x5a\x5e\x4c\x55\x56\x34\x3e\x41\ +\x31\x31\x32\x26\x2b\x29\x2b\x2d\x2d\x2c\x3a\x38\x2c\x33\x2e\x29\ +\x31\x33\x2f\x2e\x2f\x27\x28\x24\x2b\x27\x27\x26\x29\x23\x2e\x33\ +\x2a\x2c\x30\x2f\x24\x2e\x2a\x29\x2b\x26\x28\x28\x23\x28\x2e\x29\ +\x29\x29\x27\x29\x31\x2b\x31\x37\x36\x33\x39\x39\x32\x38\x34\x34\ +\x3b\x3d\x31\x3a\x39\x39\x43\x3e\x30\x38\x36\x30\x36\x36\x33\x37\ +\x39\x39\x40\x3a\x2f\x31\x2c\x31\x31\x31\x2e\x35\x37\x2f\x3b\x37\ +\x2b\x2f\x28\x32\x38\x36\x34\x38\x37\x2f\x31\x2f\x33\x39\x35\x37\ +\x3f\x3b\x3a\x41\x43\x3a\x44\x42\x35\x43\x41\x33\x39\x3b\x39\x42\ +\x44\x36\x3e\x3f\x32\x3c\x3f\x37\x43\x4b\x2f\x38\x33\x31\x40\x3b\ +\x38\x3e\x3f\x3c\x48\x4a\x38\x42\x45\x3a\x42\x47\x3c\x4a\x4b\x3a\ +\x48\x46\x2c\x30\x33\x2b\x35\x32\x35\x3d\x41\x3e\x4b\x4c\x3d\x48\ +\x49\x34\x36\x39\x39\x41\x3f\x3a\x41\x44\x37\x41\x44\x3f\x4a\x4b\ +\x34\x43\x46\x2c\x33\x36\x2f\x37\x3a\x35\x3a\x3b\x38\x42\x42\x41\ +\x49\x47\x33\x3a\x3b\x32\x35\x34\x40\x47\x4a\x41\x49\x4f\x00\x00\ +\x00\xc3\xe0\xed\xdc\xf1\xf7\xde\xf2\xfa\xdb\xf4\xfa\x74\x92\x9d\ +\x4b\x61\x6d\x38\x47\x4c\x31\x45\x47\x30\x36\x39\x36\x40\x41\x2b\ +\x37\x39\x2b\x32\x36\x30\x3e\x40\x38\x3c\x3d\x38\x3f\x3d\x3b\x47\ +\x4b\x34\x41\x43\x2f\x3a\x3f\x36\x3b\x39\x34\x3f\x3d\x34\x43\x47\ +\x2f\x36\x36\x35\x3e\x3b\x28\x30\x2b\x43\x4c\x4d\x36\x41\x3d\x2a\ +\x2e\x2e\x3a\x49\x4a\x31\x3a\x3a\x2f\x32\x34\x37\x35\x3c\x2c\x2d\ +\x30\x2d\x38\x38\x32\x3c\x41\x26\x2c\x2d\x35\x43\x4e\x47\x6a\x7e\ +\x5e\x91\xad\x2d\x36\x37\x33\x38\x3d\x28\x2b\x2c\x4b\x70\x96\x4c\ +\x80\x9e\x35\x51\x5f\x35\x40\x45\x3f\x59\x67\x37\x44\x4b\x32\x3e\ +\x3a\x38\x40\x41\x32\x3c\x39\x38\x3f\x38\x34\x3e\x3a\x3d\x41\x44\ +\x2f\x36\x3a\x4b\x6d\x86\x35\x47\x58\x33\x3c\x40\x32\x3d\x3e\x21\ +\x25\x24\x33\x3e\x3a\x2e\x3d\x3c\x1f\x20\x1d\x38\x3a\x3b\x3e\x45\ +\x4c\x2f\x3e\x45\x29\x36\x35\x30\x30\x30\x32\x33\x37\x2c\x34\x35\ +\x28\x30\x2c\x29\x33\x32\x32\x46\x4b\x38\x46\x49\x2f\x3a\x40\x37\ +\x4d\x51\x3b\x4c\x53\x32\x3e\x3f\x2d\x32\x34\x39\x3b\x3b\x32\x3a\ +\x3c\x37\x3f\x43\x47\x49\x4d\x4d\x52\x55\x57\x5a\x5a\x3a\x42\x40\ +\x3c\x45\x4a\x34\x38\x3b\x30\x35\x33\x2a\x30\x2d\x28\x2c\x27\x2b\ +\x2b\x2a\x2a\x2b\x2a\x25\x2b\x2b\x2e\x31\x2f\x32\x3a\x41\x2e\x31\ +\x2e\x27\x29\x25\x24\x25\x21\x26\x2a\x29\x28\x2c\x28\x30\x36\x31\ +\x2f\x36\x36\x32\x37\x32\x32\x36\x35\x33\x33\x34\x2e\x36\x35\x2e\ +\x32\x30\x26\x2c\x28\x27\x29\x26\x2d\x2c\x24\x2c\x2b\x2e\x2b\x30\ +\x30\x2f\x37\x31\x36\x3e\x3c\x34\x38\x34\x38\x3f\x3e\x37\x3f\x3e\ +\x3b\x3c\x3b\x36\x3d\x3b\x28\x30\x31\x2c\x2f\x30\x32\x3d\x3f\x36\ +\x40\x45\x31\x3e\x39\x31\x34\x36\x30\x34\x34\x2a\x35\x33\x29\x34\ +\x34\x29\x2d\x26\x30\x32\x33\x25\x2c\x2a\x2a\x2e\x2b\x32\x35\x34\ +\x34\x40\x41\x36\x41\x45\x37\x3a\x3c\x33\x3b\x3e\x36\x36\x3c\x2d\ +\x2d\x2e\x2b\x30\x35\x33\x39\x3f\x2f\x36\x33\x30\x35\x37\x34\x3f\ +\x42\x36\x42\x40\x40\x44\x4d\x3a\x45\x4b\x2f\x30\x31\x38\x3f\x40\ +\x42\x4f\x51\x43\x4d\x4e\x42\x4c\x4e\x38\x44\x44\x43\x4e\x54\x3e\ +\x4b\x4d\x3b\x44\x4c\x39\x3f\x3f\x3e\x49\x48\x35\x3e\x3e\x36\x41\ +\x43\x40\x46\x46\x34\x3c\x3e\x2c\x36\x32\x00\x00\x00\xc6\xe2\xef\ +\xde\xf4\xfa\xdf\xf5\xfb\xdb\xf3\xf9\x8b\xa9\xad\x42\x49\x50\x43\ +\x52\x5a\x39\x44\x4c\x36\x3d\x39\x38\x3e\x40\x2b\x32\x32\x32\x38\ +\x3b\x3c\x47\x4d\x39\x41\x47\x32\x3c\x3f\x32\x3e\x41\x35\x41\x4a\ +\x33\x45\x4e\x34\x45\x4b\x2e\x38\x3b\x3b\x44\x46\x3b\x49\x48\x31\ +\x3a\x33\x2e\x2a\x2e\x46\x4b\x4d\x31\x39\x37\x31\x34\x37\x37\x42\ +\x47\x2d\x36\x36\x39\x40\x48\x31\x36\x36\x30\x38\x3c\x2c\x3c\x45\ +\x36\x49\x56\x51\x80\x99\x5f\x9c\xc2\x50\x80\x9f\x44\x6c\x86\x38\ +\x40\x3f\x3a\x43\x4b\x34\x3e\x4e\x45\x5d\x6f\x30\x3b\x3d\x34\x3d\ +\x3f\x42\x4c\x57\x55\x7f\x9c\x35\x42\x44\x34\x3c\x3b\x31\x3a\x38\ +\x2d\x36\x32\x33\x3d\x3b\x37\x39\x3a\x3f\x43\x3f\x35\x37\x34\x32\ +\x39\x3c\x30\x36\x39\x36\x3a\x3d\x29\x37\x35\x1d\x23\x1e\x35\x3e\ +\x3f\x33\x3b\x3a\x21\x22\x1e\x30\x34\x34\x3e\x42\x44\x2c\x38\x39\ +\x28\x34\x33\x30\x32\x35\x33\x39\x39\x27\x30\x2e\x28\x37\x3a\x1f\ +\x29\x2e\x3b\x4b\x59\x48\x59\x64\x37\x49\x51\x36\x47\x4c\x36\x3f\ +\x40\x37\x3b\x3d\x3a\x41\x3f\x40\x3f\x43\x3b\x41\x46\x48\x51\x54\ +\x4a\x50\x4d\x4e\x54\x56\x4c\x48\x46\x3a\x3c\x3c\x36\x38\x33\x35\ +\x3c\x3f\x2e\x37\x37\x26\x27\x26\x26\x24\x23\x26\x2b\x2b\x2e\x32\ +\x30\x27\x28\x24\x2f\x2f\x2a\x30\x32\x32\x2c\x31\x2f\x2c\x33\x2f\ +\x29\x2f\x2e\x2d\x31\x2f\x2d\x2f\x2e\x29\x2f\x2d\x2f\x2e\x2c\x38\ +\x39\x35\x2d\x2e\x2e\x31\x37\x38\x31\x35\x34\x32\x33\x37\x2e\x37\ +\x35\x2f\x39\x37\x34\x3b\x3b\x31\x34\x37\x2a\x30\x2d\x2b\x2e\x2b\ +\x27\x2a\x26\x2e\x32\x31\x30\x33\x31\x2c\x34\x30\x2b\x30\x2e\x27\ +\x2e\x2d\x2e\x30\x38\x39\x43\x45\x2e\x30\x36\x32\x39\x38\x32\x38\ +\x34\x3f\x4c\x4a\x36\x3d\x3d\x2e\x38\x34\x34\x42\x44\x3c\x41\x48\ +\x35\x3c\x3d\x33\x3d\x44\x37\x48\x45\x38\x41\x43\x39\x46\x46\x2d\ +\x33\x34\x2e\x38\x39\x30\x3d\x3c\x31\x39\x39\x37\x40\x40\x3c\x42\ +\x48\x34\x38\x3c\x35\x40\x3e\x34\x3a\x38\x39\x43\x46\x39\x47\x4a\ +\x38\x3e\x40\x32\x35\x35\x40\x4a\x4a\x39\x43\x46\x38\x42\x47\x3d\ +\x44\x47\x41\x49\x4b\x3a\x46\x4b\x3c\x49\x4a\x3a\x42\x44\x3f\x49\ +\x4d\x3d\x47\x4b\x33\x36\x3a\x2e\x37\x38\x31\x42\x46\x30\x3e\x39\ +\x31\x3b\x39\x38\x40\x43\x00\x00\x00\xc6\xe1\xf0\xdd\xf3\xf9\xd9\ +\xee\xf8\xd7\xef\xf6\xa0\xc1\xc8\x4d\x62\x6b\x37\x42\x48\x37\x3e\ +\x3e\x35\x3e\x3f\x34\x3c\x3b\x2a\x31\x2f\x36\x3d\x43\x33\x40\x44\ +\x32\x40\x49\x32\x3f\x46\x30\x3f\x40\x33\x3d\x42\x33\x40\x3f\x38\ +\x40\x44\x32\x39\x3a\x36\x44\x42\x35\x3f\x3f\x30\x39\x39\x2b\x2d\ +\x30\x3d\x49\x4a\x2c\x34\x2f\x33\x32\x36\x33\x46\x4a\x31\x39\x37\ +\x2a\x31\x32\x29\x31\x2a\x2c\x32\x38\x63\x9a\xc5\x65\x9f\xc6\x49\ +\x74\x8c\x32\x40\x4a\x2c\x39\x3e\x3a\x52\x63\x3a\x3e\x3b\x37\x3f\ +\x42\x3a\x46\x49\x3d\x45\x49\x3d\x44\x45\x33\x3a\x3e\x34\x3f\x45\ +\x3c\x4e\x5d\x3a\x46\x4c\x37\x3f\x40\x3f\x46\x49\x38\x42\x42\x32\ +\x31\x32\x2d\x33\x35\x32\x36\x36\x39\x3d\x3f\x3b\x41\x41\x35\x3d\ +\x3f\x34\x3b\x39\x2c\x30\x2e\x1a\x1c\x19\x37\x3d\x43\x30\x38\x39\ +\x22\x25\x25\x2e\x36\x3a\x30\x3e\x42\x25\x2d\x2c\x29\x32\x32\x1e\ +\x25\x26\x28\x37\x37\x2a\x35\x39\x28\x3e\x44\x2a\x34\x3e\x3d\x53\ +\x60\x33\x4a\x5b\x34\x45\x4c\x3d\x49\x45\x33\x3b\x3b\x2e\x36\x3b\ +\x39\x3c\x3b\x3f\x46\x49\x4b\x51\x52\x50\x54\x54\x47\x4f\x4a\x3e\ +\x47\x44\x33\x35\x35\x30\x31\x33\x2c\x2b\x2f\x31\x3c\x3e\x2c\x35\ +\x39\x27\x2b\x2b\x2a\x2b\x2b\x30\x30\x2e\x2b\x2d\x30\x28\x2c\x29\ +\x26\x28\x2b\x27\x28\x28\x2c\x2e\x2b\x29\x2b\x2d\x32\x35\x30\x38\ +\x40\x3d\x36\x39\x38\x30\x39\x3b\x2e\x35\x36\x31\x31\x2e\x30\x33\ +\x30\x35\x3a\x39\x38\x3c\x3c\x38\x3e\x3d\x3f\x41\x42\x34\x3a\x3b\ +\x2f\x32\x32\x34\x39\x37\x31\x3a\x33\x2e\x39\x37\x30\x36\x36\x2a\ +\x34\x31\x32\x38\x3c\x35\x3b\x3b\x33\x3a\x3a\x31\x38\x3b\x2f\x38\ +\x39\x35\x3a\x41\x38\x46\x47\x33\x3a\x3b\x2e\x31\x2f\x30\x38\x34\ +\x35\x3c\x3d\x39\x40\x42\x3c\x49\x44\x2e\x34\x36\x36\x3b\x3f\x37\ +\x41\x46\x34\x41\x40\x33\x3a\x37\x33\x3c\x40\x39\x3d\x41\x3a\x44\ +\x49\x36\x3f\x42\x36\x3c\x3e\x3b\x45\x48\x35\x34\x37\x35\x42\x4d\ +\x32\x3f\x42\x2f\x2f\x36\x30\x37\x37\x2e\x37\x33\x30\x35\x36\x37\ +\x3d\x40\x36\x3b\x3b\x3e\x3f\x47\x43\x4d\x4f\x3d\x46\x46\x2e\x37\ +\x36\x33\x3f\x40\x37\x41\x48\x35\x39\x3e\x3c\x45\x47\x32\x37\x39\ +\x3b\x47\x4e\x40\x4c\x48\x44\x55\x55\x37\x41\x43\x42\x4e\x53\x3b\ +\x4a\x4e\x00\x00\x00\xcc\xe5\xf0\xc9\xea\xf6\xb9\xdd\xee\xca\xe5\ +\xef\xc6\xe2\xe8\x5e\x78\x80\x3a\x45\x4b\x3a\x49\x4f\x3d\x48\x4a\ +\x32\x39\x36\x35\x3d\x3f\x35\x3f\x45\x2f\x3c\x40\x2e\x3c\x40\x30\ +\x39\x3f\x34\x41\x45\x35\x41\x47\x2e\x38\x3c\x35\x38\x3c\x34\x42\ +\x44\x31\x3c\x44\x2f\x3a\x41\x2a\x36\x38\x2a\x31\x32\x39\x46\x48\ +\x2c\x33\x34\x2e\x35\x38\x34\x41\x46\x2d\x38\x3f\x24\x2e\x2d\x2f\ +\x37\x3a\x2d\x3b\x4b\x48\x6c\x86\x2a\x38\x3d\x3a\x3d\x42\x3a\x3f\ +\x41\x37\x4b\x5c\x3b\x51\x5a\x33\x40\x3d\x32\x3e\x43\x31\x35\x37\ +\x3b\x43\x42\x35\x3e\x3b\x33\x38\x3d\x44\x5f\x6e\x4a\x71\x8b\x3a\ +\x44\x47\x31\x3a\x39\x2e\x39\x36\x33\x3a\x38\x36\x40\x38\x35\x38\ +\x3b\x2b\x34\x30\x32\x3b\x3b\x2e\x30\x31\x36\x43\x44\x36\x3c\x40\ +\x24\x31\x30\x1c\x1e\x19\x39\x3c\x3e\x32\x3a\x3a\x26\x22\x22\x37\ +\x3e\x3f\x32\x3f\x3f\x2f\x3d\x41\x21\x30\x35\x2b\x37\x3b\x32\x3b\ +\x3c\x32\x3b\x3e\x2d\x40\x47\x26\x38\x3b\x2f\x41\x4b\x3a\x51\x5d\ +\x42\x4c\x50\x33\x3c\x3c\x35\x3f\x41\x3d\x46\x48\x43\x4a\x4c\x51\ +\x57\x57\x42\x4b\x4a\x3f\x4a\x49\x36\x3b\x3a\x30\x35\x36\x2a\x2d\ +\x2b\x2e\x31\x2e\x2a\x30\x33\x2e\x35\x38\x2c\x2f\x2f\x2c\x2e\x2a\ +\x28\x31\x2c\x28\x2b\x26\x25\x2a\x27\x2c\x2f\x31\x2c\x32\x31\x2b\ +\x2d\x2a\x32\x2f\x2d\x33\x36\x38\x2b\x2d\x2d\x2a\x29\x28\x30\x32\ +\x2f\x31\x34\x32\x2d\x32\x32\x33\x37\x39\x2d\x32\x32\x2f\x37\x35\ +\x2b\x32\x30\x2b\x2b\x28\x2d\x30\x2f\x30\x38\x3a\x36\x3d\x3b\x34\ +\x38\x35\x35\x3c\x3a\x34\x3f\x43\x2c\x36\x39\x2a\x37\x36\x2c\x32\ +\x30\x2f\x36\x31\x2a\x2a\x2c\x2f\x31\x32\x2e\x34\x38\x30\x3b\x37\ +\x2b\x31\x31\x31\x33\x33\x2a\x2f\x2c\x2d\x33\x31\x2f\x35\x34\x34\ +\x37\x36\x38\x38\x35\x2e\x33\x30\x2c\x38\x37\x32\x41\x41\x39\x40\ +\x3e\x31\x37\x38\x36\x41\x45\x3b\x46\x49\x37\x3d\x3f\x31\x39\x38\ +\x3d\x46\x47\x31\x3a\x3a\x33\x3a\x35\x35\x43\x49\x3d\x48\x4b\x3b\ +\x48\x50\x39\x43\x4c\x35\x3c\x3c\x48\x4f\x4c\x39\x47\x47\x38\x45\ +\x46\x3c\x42\x4e\x3e\x40\x45\x32\x31\x30\x37\x41\x46\x43\x4d\x55\ +\x3a\x44\x48\x41\x4e\x4c\x3e\x4b\x4c\x42\x4d\x54\x44\x51\x56\x39\ +\x41\x42\x36\x3f\x42\x43\x4c\x54\x33\x3f\x3f\x32\x36\x39\x00\x00\ +\x00\xb4\xd9\xed\xbf\xe1\xf2\xc7\xe6\xf6\xc0\xe0\xef\xce\xeb\xf5\ +\x78\x95\x9f\x37\x3f\x41\x34\x41\x42\x37\x3d\x3d\x31\x3f\x45\x37\ +\x3d\x40\x39\x45\x4d\x2e\x3e\x3c\x33\x3b\x40\x2b\x3a\x3d\x36\x3f\ +\x47\x31\x3c\x3b\x37\x43\x48\x32\x41\x45\x31\x3f\x41\x2e\x40\x47\ +\x2a\x35\x3a\x2d\x3a\x3c\x2a\x30\x32\x32\x3e\x3f\x28\x33\x34\x2a\ +\x31\x35\x2e\x36\x39\x2d\x31\x31\x2b\x34\x36\x24\x28\x28\x37\x3e\ +\x4b\x2d\x3a\x3a\x39\x3c\x40\x3b\x38\x3e\x38\x49\x51\x3d\x4e\x5c\ +\x32\x39\x39\x3e\x45\x47\x33\x39\x41\x35\x39\x3f\x38\x46\x4b\x44\ +\x63\x76\x61\x9a\xba\x4b\x76\x9b\x3d\x58\x66\x38\x3b\x3d\x32\x39\ +\x3a\x31\x33\x32\x3b\x3f\x40\x36\x3d\x3e\x28\x2b\x2a\x3b\x45\x42\ +\x31\x37\x34\x28\x2b\x2b\x36\x3a\x3d\x39\x42\x44\x28\x2d\x2a\x20\ +\x22\x20\x3b\x3e\x41\x34\x3a\x3a\x21\x27\x24\x31\x3f\x40\x24\x37\ +\x37\x26\x2f\x30\x28\x34\x37\x31\x42\x44\x31\x38\x3b\x33\x3a\x3d\ +\x2d\x3b\x41\x3e\x4c\x53\x30\x3f\x46\x35\x46\x4f\x37\x46\x48\x41\ +\x4b\x4f\x55\x5a\x5c\x4a\x51\x52\x4b\x4a\x4c\x3f\x45\x43\x36\x35\ +\x36\x33\x38\x39\x2c\x30\x2b\x26\x2b\x29\x28\x2b\x29\x2c\x30\x34\ +\x2f\x34\x34\x2f\x3b\x3c\x2a\x2e\x2e\x2d\x30\x30\x33\x39\x3a\x32\ +\x36\x34\x31\x35\x36\x29\x2b\x29\x2b\x29\x26\x2a\x2c\x29\x28\x2c\ +\x2a\x2d\x28\x2a\x2d\x2f\x30\x2d\x31\x31\x32\x37\x38\x30\x35\x34\ +\x2e\x38\x33\x33\x3a\x3d\x31\x39\x40\x36\x3c\x3f\x2b\x30\x2d\x2d\ +\x38\x3a\x2d\x35\x36\x26\x2f\x2c\x35\x37\x37\x36\x39\x38\x33\x38\ +\x39\x3a\x3f\x3f\x3a\x46\x43\x3d\x44\x41\x37\x3a\x3a\x2f\x33\x32\ +\x30\x33\x37\x2e\x3a\x3a\x34\x41\x45\x2c\x37\x33\x33\x39\x35\x33\ +\x38\x38\x34\x3c\x3a\x35\x39\x3c\x34\x38\x3c\x34\x3e\x3a\x2b\x30\ +\x2a\x33\x36\x38\x35\x41\x43\x30\x3c\x3d\x31\x39\x38\x35\x3f\x3e\ +\x32\x3b\x3a\x39\x44\x42\x39\x43\x41\x35\x3e\x3f\x2c\x35\x37\x38\ +\x3b\x3e\x35\x3d\x3b\x38\x40\x47\x2c\x34\x33\x2d\x34\x36\x38\x44\ +\x48\x35\x41\x43\x2d\x30\x32\x30\x39\x41\x30\x39\x3c\x38\x41\x40\ +\x3b\x41\x3f\x40\x46\x4c\x3c\x4a\x53\x3f\x4f\x50\x3d\x41\x3e\x37\ +\x45\x48\x36\x3d\x3c\x39\x42\x45\x32\x38\x3e\x33\x3f\x43\x36\x44\ +\x44\x2e\x32\x31\x32\x36\x36\x37\x41\x44\x00\x00\x00\xba\xdb\xee\ +\xc1\xe2\xf0\xc6\xe4\xf3\xcf\xe9\xf5\xd9\xf0\xf9\x6d\x83\x8e\x40\ +\x4a\x53\x31\x3f\x46\x32\x3c\x3b\x32\x35\x3a\x31\x3b\x3c\x30\x37\ +\x38\x2b\x32\x32\x37\x39\x41\x30\x38\x3b\x36\x3e\x40\x36\x40\x47\ +\x31\x3f\x43\x31\x40\x44\x2c\x35\x3b\x30\x3c\x3c\x2c\x32\x39\x23\ +\x31\x2f\x28\x2e\x31\x2e\x3b\x3c\x21\x29\x29\x30\x33\x37\x29\x30\ +\x32\x2d\x37\x36\x2f\x33\x30\x3d\x43\x44\x39\x41\x49\x3f\x44\x45\ +\x3b\x42\x43\x32\x33\x37\x35\x3b\x3c\x43\x52\x62\x38\x3b\x40\x3a\ +\x41\x42\x2b\x34\x35\x56\x7a\x9c\x5c\x8c\xad\x56\x95\xb6\x3e\x55\ +\x61\x36\x42\x4d\x30\x47\x4f\x2c\x31\x33\x39\x3a\x40\x38\x42\x41\ +\x2b\x31\x31\x2d\x35\x32\x33\x33\x32\x30\x39\x38\x2f\x3a\x39\x2b\ +\x39\x38\x26\x2b\x29\x2a\x2f\x2e\x2b\x2f\x2e\x25\x25\x24\x39\x3f\ +\x40\x2c\x38\x36\x2b\x36\x37\x28\x3a\x43\x1e\x30\x35\x25\x38\x3f\ +\x2a\x35\x37\x2e\x36\x3d\x34\x3a\x3a\x2f\x39\x43\x34\x3f\x47\x38\ +\x46\x4d\x3c\x4c\x54\x44\x51\x5a\x45\x4f\x4e\x49\x4e\x55\x49\x4d\ +\x50\x3d\x41\x40\x3b\x42\x3d\x36\x36\x33\x35\x34\x34\x33\x36\x35\ +\x29\x2d\x29\x2e\x33\x34\x2d\x31\x2b\x29\x2f\x28\x2f\x31\x31\x2c\ +\x31\x2f\x2e\x32\x2d\x28\x2c\x28\x26\x2d\x2d\x26\x2b\x27\x30\x2e\ +\x2d\x35\x35\x31\x30\x34\x35\x33\x3a\x35\x2d\x37\x35\x2b\x38\x37\ +\x33\x39\x3a\x34\x34\x34\x33\x39\x39\x33\x3d\x3f\x37\x3f\x42\x39\ +\x40\x3d\x32\x39\x3d\x3b\x3d\x3f\x36\x40\x3f\x38\x3f\x41\x3b\x44\ +\x43\x34\x3b\x3b\x2f\x35\x33\x32\x34\x31\x2e\x31\x33\x27\x26\x28\ +\x29\x2c\x2d\x28\x2b\x28\x35\x3b\x38\x38\x3c\x3c\x3b\x41\x48\x36\ +\x43\x41\x3c\x46\x45\x3c\x45\x47\x37\x3d\x42\x35\x3b\x3d\x40\x44\ +\x49\x3f\x43\x46\x3e\x48\x48\x33\x3a\x3a\x33\x3a\x3e\x3f\x47\x48\ +\x36\x3f\x41\x32\x38\x3e\x33\x3b\x3d\x3a\x43\x43\x3f\x48\x4c\x49\ +\x57\x57\x33\x37\x37\x33\x38\x36\x3d\x44\x48\x37\x46\x47\x3b\x45\ +\x46\x3c\x42\x44\x3a\x45\x46\x37\x4b\x47\x38\x46\x47\x35\x42\x44\ +\x3f\x4a\x4d\x38\x3e\x40\x40\x4b\x53\x3d\x46\x4a\x3c\x47\x4a\x41\ +\x4a\x4c\x46\x54\x58\x41\x49\x4d\x3b\x42\x3e\x3b\x4f\x4d\x47\x51\ +\x55\x41\x4c\x51\x40\x4d\x4f\x45\x50\x54\x3d\x4b\x4d\x45\x52\x56\ +\x45\x54\x57\x3f\x4c\x50\x00\x00\x00\xb4\xd7\xea\xda\xf1\xf9\xda\ +\xf0\xf9\xc7\xe5\xf2\xc7\xe4\xf1\x61\x7d\x86\x3a\x3f\x46\x37\x42\ +\x43\x36\x3d\x39\x2f\x31\x32\x38\x43\x43\x2a\x2f\x2e\x33\x39\x37\ +\x30\x33\x34\x34\x3f\x3f\x32\x38\x38\x33\x42\x44\x30\x3c\x3f\x2b\ +\x37\x39\x2e\x39\x37\x2f\x38\x3f\x26\x2f\x30\x1f\x25\x24\x2b\x34\ +\x35\x26\x2d\x2f\x23\x26\x26\x32\x37\x3b\x3f\x44\x45\x34\x34\x34\ +\x2a\x32\x32\x33\x3c\x41\x56\x80\x9f\x44\x59\x5f\x3d\x43\x43\x35\ +\x41\x3f\x34\x44\x52\x49\x65\x7c\x36\x38\x38\x3d\x45\x44\x33\x41\ +\x50\x51\x7d\xa0\x30\x47\x59\x47\x6c\x7f\x3c\x44\x42\x3f\x58\x71\ +\x29\x3b\x44\x29\x2b\x2a\x30\x35\x35\x33\x39\x39\x34\x3d\x3f\x2a\ +\x34\x32\x33\x3a\x3a\x2c\x2f\x2e\x32\x3b\x39\x2b\x33\x33\x32\x39\ +\x36\x30\x35\x32\x24\x2a\x29\x22\x29\x27\x28\x37\x37\x24\x32\x37\ +\x2d\x39\x39\x2b\x3a\x3f\x2b\x3a\x45\x2e\x40\x45\x30\x3a\x3c\x3a\ +\x44\x48\x32\x3a\x3f\x48\x4b\x54\x47\x4a\x50\x55\x5d\x63\x4a\x52\ +\x58\x47\x56\x56\x49\x50\x4b\x3a\x41\x3b\x34\x33\x35\x2f\x33\x33\ +\x2e\x32\x2f\x2f\x31\x2f\x34\x36\x36\x29\x2d\x27\x32\x31\x2a\x26\ +\x2c\x27\x28\x2c\x2a\x26\x28\x23\x22\x27\x23\x22\x24\x20\x2a\x2e\ +\x29\x31\x33\x31\x2f\x35\x34\x30\x30\x31\x31\x2f\x30\x2d\x2e\x2e\ +\x2e\x34\x32\x2d\x32\x33\x2e\x37\x38\x30\x35\x37\x2d\x33\x34\x2b\ +\x2d\x2e\x31\x36\x35\x2e\x36\x34\x31\x34\x37\x2f\x35\x30\x31\x37\ +\x39\x2f\x33\x33\x36\x3e\x3b\x39\x3d\x3d\x37\x3e\x3c\x37\x41\x3c\ +\x35\x3c\x3a\x36\x3c\x41\x3d\x45\x45\x3a\x42\x42\x35\x39\x3b\x34\ +\x3c\x3f\x33\x39\x3c\x33\x3a\x3c\x32\x3a\x3f\x30\x33\x35\x2f\x37\ +\x3a\x2c\x31\x31\x2e\x31\x35\x38\x41\x44\x3a\x46\x46\x34\x40\x3c\ +\x2c\x2c\x2b\x2f\x38\x35\x30\x3b\x3e\x33\x35\x35\x31\x34\x34\x37\ +\x3f\x41\x32\x38\x38\x35\x3d\x41\x3c\x42\x42\x30\x36\x34\x33\x35\ +\x34\x33\x38\x3d\x30\x35\x3c\x35\x3b\x38\x34\x3e\x3a\x30\x33\x30\ +\x2f\x37\x36\x28\x36\x33\x2f\x3b\x3f\x36\x47\x4b\x34\x36\x38\x32\ +\x39\x3b\x31\x39\x3c\x32\x38\x37\x3a\x42\x41\x3e\x45\x45\x35\x39\ +\x3d\x34\x3b\x3c\x37\x3f\x42\x3b\x42\x45\x33\x3c\x3b\x3a\x43\x45\ +\x38\x42\x45\x2e\x33\x33\x3a\x3e\x46\x38\x41\x40\x2d\x31\x31\x32\ +\x3a\x3b\x00\x00\x00\xce\xe6\xf2\xd4\xf0\xf6\xa6\xc7\xd8\x9e\xbf\ +\xd2\xcb\xe7\xf1\x6c\x8a\x92\x36\x41\x41\x31\x34\x34\x34\x3d\x3f\ +\x2b\x30\x30\x32\x32\x32\x2d\x39\x38\x35\x36\x3a\x37\x3c\x41\x2d\ +\x36\x37\x2d\x39\x3c\x2a\x30\x34\x2b\x34\x3a\x2f\x39\x40\x23\x32\ +\x32\x28\x2e\x30\x24\x2b\x2c\x1c\x21\x23\x26\x33\x34\x1f\x26\x29\ +\x24\x2b\x2a\x34\x3e\x3f\x30\x36\x35\x33\x3e\x3f\x2d\x32\x2e\x2e\ +\x36\x49\x5c\x98\xbe\x5a\x95\xb7\x5a\x8a\xa4\x51\x81\x9d\x5e\x92\ +\xb5\x35\x4f\x58\x32\x3c\x40\x38\x42\x45\x3c\x52\x6a\x33\x43\x4d\ +\x39\x50\x5f\x45\x5d\x70\x34\x41\x49\x4f\x7c\x98\x2a\x33\x35\x3c\ +\x42\x41\x37\x3d\x3f\x35\x36\x35\x39\x40\x3f\x37\x3e\x3e\x32\x36\ +\x35\x21\x23\x24\x35\x42\x46\x2c\x38\x3a\x2f\x35\x34\x2d\x35\x34\ +\x2a\x35\x3a\x31\x3e\x44\x2e\x3f\x46\x33\x46\x4c\x30\x3c\x44\x36\ +\x40\x45\x2f\x32\x38\x2f\x3a\x3e\x38\x40\x42\x36\x40\x41\x55\x59\ +\x5f\x60\x69\x68\x5c\x63\x66\x51\x58\x5c\x52\x5a\x5a\x3e\x48\x49\ +\x31\x39\x38\x35\x35\x37\x2c\x30\x2e\x26\x2c\x2c\x2b\x2d\x2b\x30\ +\x38\x30\x2c\x2f\x2c\x28\x28\x23\x2e\x2e\x30\x26\x2b\x2b\x2d\x2c\ +\x2c\x2d\x33\x2d\x2f\x39\x34\x2c\x34\x33\x2e\x2f\x30\x2f\x33\x31\ +\x2d\x32\x32\x2f\x32\x2e\x30\x34\x35\x32\x35\x37\x32\x38\x3c\x35\ +\x39\x41\x35\x34\x3a\x30\x32\x34\x30\x34\x34\x2e\x36\x37\x2f\x39\ +\x39\x2b\x2c\x2d\x2b\x33\x38\x2e\x29\x2e\x2f\x2d\x30\x2b\x30\x30\ +\x30\x33\x38\x38\x3c\x38\x2a\x37\x35\x29\x2f\x2e\x2d\x33\x32\x40\ +\x44\x46\x3d\x47\x46\x3a\x41\x41\x3b\x46\x44\x37\x40\x3b\x38\x43\ +\x45\x3c\x44\x47\x34\x3d\x3c\x35\x38\x39\x32\x39\x3d\x36\x40\x43\ +\x35\x3d\x45\x32\x38\x3c\x35\x3d\x3e\x32\x36\x33\x2c\x31\x31\x3a\ +\x42\x44\x39\x44\x48\x3a\x40\x42\x3f\x47\x45\x38\x43\x42\x36\x3f\ +\x3d\x30\x37\x34\x34\x35\x34\x33\x3e\x3e\x33\x37\x3b\x39\x46\x46\ +\x3e\x4a\x4c\x3e\x46\x49\x32\x37\x3c\x38\x40\x43\x3f\x49\x4d\x3f\ +\x48\x49\x3b\x4d\x50\x38\x46\x47\x3f\x49\x4a\x44\x51\x56\x3c\x47\ +\x48\x37\x40\x3f\x38\x46\x45\x3d\x48\x48\x49\x58\x5a\x3f\x49\x48\ +\x37\x42\x44\x3c\x47\x4a\x49\x53\x5a\x43\x50\x4e\x39\x40\x3d\x41\ +\x4d\x4c\x44\x50\x53\x3f\x43\x4d\x3a\x41\x42\x42\x54\x5b\x00\x00\ +\x00\xc3\xe1\xf0\xb4\xd9\xde\x3f\x4a\x55\x61\x6d\x79\x59\x65\x6d\ +\x53\x65\x6c\x39\x47\x4a\x2e\x33\x34\x30\x33\x34\x2d\x32\x2e\x35\ +\x37\x37\x2c\x2f\x2d\x31\x32\x34\x30\x36\x35\x2f\x37\x38\x2f\x2b\ +\x2e\x2a\x28\x29\x32\x36\x3a\x25\x2f\x2c\x27\x31\x2e\x25\x2b\x2f\ +\x26\x2d\x31\x1f\x25\x27\x34\x3d\x3e\x26\x2e\x2e\x29\x32\x31\x27\ +\x35\x38\x35\x38\x3e\x33\x37\x38\x30\x38\x36\x39\x45\x55\x37\x4f\ +\x5f\x32\x4b\x62\x41\x6a\x8b\x37\x50\x62\x2d\x39\x40\x2d\x36\x34\ +\x34\x3c\x3e\x36\x3f\x3f\x43\x5f\x79\x39\x47\x4b\x31\x39\x3b\x32\ +\x3b\x39\x40\x52\x60\x33\x3b\x3f\x2c\x35\x32\x2e\x36\x38\x31\x3b\ +\x36\x34\x36\x37\x3c\x43\x42\x37\x3e\x39\x3a\x3b\x3b\x2c\x32\x35\ +\x24\x2e\x2c\x1e\x29\x2d\x2f\x3c\x3f\x28\x33\x3c\x39\x49\x4e\x30\ +\x42\x47\x30\x40\x44\x35\x42\x4d\x36\x3c\x43\x33\x3f\x42\x39\x3f\ +\x41\x45\x50\x54\x41\x4f\x50\x52\x5b\x5a\x6b\x71\x72\x59\x60\x64\ +\x45\x4d\x4b\x43\x4b\x48\x45\x45\x48\x31\x36\x37\x30\x31\x2c\x28\ +\x2d\x2a\x26\x2c\x29\x2d\x34\x32\x30\x3b\x3c\x31\x3b\x3d\x30\x33\ +\x32\x2c\x32\x32\x33\x38\x35\x2c\x33\x2e\x30\x30\x30\x2c\x2e\x2b\ +\x2c\x2d\x2a\x2f\x35\x34\x33\x3c\x3a\x31\x36\x35\x30\x34\x32\x2f\ +\x2f\x2f\x34\x39\x3b\x3b\x3e\x41\x3d\x3f\x40\x37\x43\x41\x34\x3b\ +\x3a\x34\x39\x3b\x36\x38\x3a\x36\x39\x3d\x37\x3b\x3b\x32\x3b\x3e\ +\x37\x3c\x3f\x32\x37\x33\x2e\x38\x39\x32\x39\x3b\x37\x3a\x41\x39\ +\x3e\x3b\x34\x39\x3c\x32\x3e\x3d\x34\x3b\x41\x31\x37\x36\x33\x35\ +\x36\x2c\x2e\x31\x28\x2b\x2a\x31\x34\x33\x2e\x33\x38\x32\x35\x35\ +\x30\x36\x33\x3b\x41\x41\x34\x40\x44\x2e\x37\x35\x30\x38\x37\x36\ +\x44\x47\x37\x3c\x3f\x2f\x34\x37\x32\x3e\x3c\x33\x3e\x41\x32\x3a\ +\x38\x3e\x41\x45\x34\x3d\x41\x33\x40\x41\x37\x3d\x40\x36\x42\x44\ +\x3a\x49\x49\x41\x4a\x50\x3d\x49\x49\x3a\x3f\x43\x2e\x36\x37\x2f\ +\x35\x38\x34\x3b\x37\x3a\x42\x46\x3f\x4a\x47\x37\x3c\x3e\x2d\x34\ +\x30\x34\x3d\x41\x39\x42\x46\x39\x40\x46\x36\x3d\x3e\x3f\x4c\x4e\ +\x39\x48\x45\x37\x45\x45\x34\x3b\x3a\x38\x42\x42\x41\x4c\x52\x42\ +\x52\x54\x50\x57\x5d\x3e\x42\x45\x36\x3f\x40\x3d\x4b\x4d\x3f\x49\ +\x4a\x33\x3c\x3b\x3a\x45\x4b\x30\x3f\x3c\x00\x00\x00\xc1\xe1\xf0\ +\x8f\xac\xb4\x4b\x55\x5b\x60\x6b\x6b\x5e\x66\x6b\x6d\x74\x79\x4d\ +\x56\x52\x28\x2d\x32\x2e\x31\x35\x22\x29\x29\x2a\x28\x29\x2b\x32\ +\x34\x26\x2e\x2d\x28\x29\x2c\x32\x30\x2f\x26\x2f\x2c\x2a\x2b\x2c\ +\x28\x2e\x2e\x22\x2a\x28\x26\x30\x2d\x25\x30\x2f\x24\x28\x26\x2d\ +\x33\x35\x3b\x43\x43\x21\x28\x25\x2b\x33\x34\x2d\x33\x34\x2c\x31\ +\x33\x2d\x33\x35\x30\x36\x37\x33\x3d\x3a\x32\x3a\x41\x47\x6d\x84\ +\x32\x42\x42\x3c\x44\x48\x39\x3c\x3f\x31\x3c\x3e\x29\x32\x31\x33\ +\x39\x3e\x47\x6d\x91\x53\x80\x94\x44\x4d\x50\x37\x41\x3d\x2e\x30\ +\x2c\x3b\x45\x43\x32\x3b\x3b\x2d\x2e\x30\x35\x37\x37\x2d\x30\x2f\ +\x2b\x31\x35\x29\x2e\x2f\x2b\x36\x35\x1b\x2b\x2f\x14\x1e\x21\x28\ +\x35\x3e\x29\x36\x40\x2e\x41\x47\x33\x3e\x45\x35\x39\x3d\x32\x42\ +\x48\x39\x47\x4e\x40\x4a\x4f\x3b\x4b\x49\x51\x5c\x61\x47\x50\x52\ +\x54\x55\x5b\x4f\x55\x55\x57\x5e\x63\x50\x55\x57\x3d\x3f\x42\x34\ +\x3a\x39\x33\x36\x35\x2f\x33\x31\x2c\x33\x2e\x34\x3b\x3e\x2a\x30\ +\x32\x2e\x33\x36\x2f\x36\x3a\x2c\x38\x38\x30\x36\x30\x2f\x39\x31\ +\x30\x32\x32\x28\x2b\x28\x2f\x30\x2f\x31\x38\x35\x31\x37\x36\x2d\ +\x37\x37\x2d\x32\x34\x33\x39\x37\x32\x37\x34\x2f\x34\x34\x2f\x36\ +\x34\x29\x31\x28\x2b\x31\x30\x29\x29\x2b\x2f\x2e\x2c\x2b\x2f\x30\ +\x2c\x31\x31\x33\x3a\x42\x34\x3b\x3a\x37\x43\x46\x3d\x44\x43\x38\ +\x41\x40\x31\x40\x40\x30\x40\x41\x34\x3c\x3c\x3e\x42\x40\x36\x3d\ +\x3c\x3b\x43\x45\x35\x39\x3c\x3b\x41\x41\x36\x3d\x3b\x3c\x42\x49\ +\x33\x41\x40\x38\x48\x49\x3c\x42\x47\x31\x36\x34\x31\x3a\x3a\x34\ +\x3a\x38\x2f\x34\x36\x2f\x3c\x41\x39\x42\x48\x34\x3a\x3d\x29\x31\ +\x2f\x31\x37\x3a\x40\x47\x4b\x3c\x41\x44\x33\x38\x3b\x2e\x36\x36\ +\x36\x3b\x39\x3b\x3d\x3e\x43\x4e\x54\x40\x4e\x51\x3a\x46\x49\x36\ +\x3f\x42\x2c\x33\x34\x36\x3d\x38\x3a\x44\x40\x38\x42\x41\x3d\x48\ +\x4a\x42\x4a\x4d\x3a\x3e\x3c\x38\x3f\x3c\x3b\x46\x47\x3e\x48\x4d\ +\x35\x40\x45\x2c\x32\x30\x39\x40\x42\x35\x3e\x41\x40\x48\x49\x40\ +\x4f\x57\x35\x42\x4a\x35\x40\x46\x3e\x48\x51\x39\x48\x4b\x31\x35\ +\x37\x2a\x34\x2f\x39\x48\x47\x31\x3a\x3b\x33\x3c\x3b\x3c\x4a\x4a\ +\x34\x3f\x40\x32\x3c\x40\x00\x00\x00\xc3\xe2\xf0\xa0\xbe\xc2\x51\ +\x55\x5c\x57\x60\x64\x42\x48\x4f\x61\x6b\x72\x66\x70\x71\x2b\x3a\ +\x3d\x20\x2d\x2c\x1d\x23\x22\x26\x28\x2c\x26\x2b\x2c\x2a\x2c\x2a\ +\x2a\x2a\x2a\x2f\x30\x31\x2b\x36\x2e\x28\x30\x2d\x2b\x2d\x2d\x31\ +\x36\x36\x35\x39\x38\x29\x2e\x2d\x20\x20\x1e\x39\x3b\x3e\x31\x36\ +\x37\x25\x29\x27\x35\x3f\x41\x31\x3d\x3d\x29\x35\x32\x30\x37\x37\ +\x2d\x38\x35\x37\x53\x65\x3c\x58\x6c\x2f\x3b\x3e\x36\x3f\x42\x3b\ +\x3d\x3f\x39\x3f\x3f\x2f\x38\x39\x2c\x33\x30\x36\x3e\x40\x35\x42\ +\x49\x2f\x2f\x33\x35\x3a\x3f\x35\x3b\x3b\x39\x3c\x3d\x3c\x45\x43\ +\x2c\x31\x2e\x37\x3d\x39\x2d\x34\x35\x2f\x39\x3c\x20\x35\x36\x1e\ +\x27\x27\x29\x39\x3a\x31\x3a\x3e\x2e\x3b\x39\x31\x3b\x43\x33\x3a\ +\x3f\x34\x40\x44\x3e\x45\x4b\x37\x42\x48\x46\x51\x58\x3c\x48\x51\ +\x4a\x53\x58\x5a\x65\x6a\x48\x53\x5b\x46\x4b\x48\x48\x4a\x48\x4d\ +\x50\x4f\x42\x4b\x4d\x36\x3a\x37\x32\x39\x35\x33\x3a\x36\x2e\x35\ +\x34\x46\x4d\x50\x32\x38\x3c\x2c\x37\x37\x2b\x2d\x2f\x31\x39\x37\ +\x27\x2e\x2e\x3b\x44\x4a\x31\x34\x33\x2a\x2d\x2d\x2e\x35\x31\x2e\ +\x38\x34\x2f\x35\x34\x2e\x31\x32\x2e\x34\x35\x33\x38\x37\x30\x36\ +\x34\x35\x3d\x3b\x33\x37\x39\x3a\x3f\x40\x32\x34\x33\x33\x35\x39\ +\x2f\x34\x39\x32\x37\x3d\x3c\x46\x43\x35\x38\x40\x2d\x32\x34\x2d\ +\x31\x2f\x2d\x2e\x2c\x31\x35\x31\x2a\x2e\x30\x32\x37\x37\x36\x3c\ +\x3b\x33\x3f\x42\x33\x3b\x3d\x36\x3c\x3a\x2f\x37\x35\x32\x34\x34\ +\x39\x3c\x43\x30\x36\x35\x3c\x43\x44\x38\x42\x42\x3c\x49\x47\x39\ +\x45\x43\x2c\x35\x35\x41\x46\x46\x36\x3c\x40\x38\x3e\x3e\x38\x46\ +\x45\x3b\x43\x47\x33\x3d\x39\x36\x37\x30\x37\x3e\x3e\x34\x3e\x40\ +\x2f\x38\x34\x33\x34\x37\x3a\x40\x46\x3c\x4d\x4c\x39\x44\x44\x39\ +\x43\x43\x33\x36\x3c\x35\x3c\x3d\x2d\x34\x33\x31\x3f\x3f\x3a\x45\ +\x44\x3d\x47\x4b\x3c\x44\x44\x3f\x47\x4b\x44\x51\x51\x38\x40\x41\ +\x35\x3c\x39\x3e\x48\x4a\x3d\x4b\x4d\x39\x42\x42\x30\x3c\x3e\x3d\ +\x43\x48\x3c\x4a\x50\x3d\x4a\x4a\x37\x3f\x40\x3a\x43\x46\x38\x46\ +\x4a\x44\x54\x5a\x3e\x51\x57\x2f\x3c\x41\x31\x3e\x47\x36\x41\x43\ +\x41\x4b\x4e\x3d\x50\x50\x44\x52\x54\x46\x50\x53\x38\x42\x43\x45\ +\x4c\x52\x00\x00\x00\xc1\xe1\xed\x6a\x94\xa4\x3c\x4f\x5d\x45\x4e\ +\x5a\x3c\x46\x4a\x53\x5b\x61\x66\x6a\x74\x38\x47\x48\x22\x2c\x31\ +\x1a\x21\x21\x23\x23\x25\x27\x2f\x32\x27\x29\x27\x27\x2b\x2d\x28\ +\x2a\x2a\x29\x30\x2e\x30\x34\x36\x29\x2e\x2a\x2f\x33\x31\x2d\x30\ +\x31\x2c\x2f\x2e\x1d\x23\x26\x33\x3a\x3a\x28\x32\x2f\x2b\x2d\x2b\ +\x30\x35\x34\x32\x38\x35\x37\x40\x41\x28\x32\x2c\x27\x2f\x34\x4c\ +\x7d\x9c\x34\x3c\x44\x36\x40\x40\x31\x36\x35\x38\x41\x45\x3d\x45\ +\x45\x32\x3b\x35\x33\x37\x36\x36\x3f\x3b\x31\x39\x3a\x38\x41\x44\ +\x32\x38\x36\x38\x36\x38\x33\x37\x35\x2d\x31\x31\x3a\x42\x45\x2d\ +\x34\x37\x19\x29\x2e\x28\x36\x37\x27\x31\x35\x2b\x37\x37\x2f\x35\ +\x37\x3b\x40\x47\x2e\x3e\x42\x38\x42\x40\x33\x3e\x40\x3f\x48\x4c\ +\x42\x49\x51\x4b\x5e\x63\x5e\x69\x74\x67\x72\x77\x67\x71\x77\x5b\ +\x65\x67\x47\x4d\x4c\x45\x43\x41\x44\x48\x47\x39\x3f\x3c\x3a\x3e\ +\x3c\x38\x3d\x40\x37\x3c\x3b\x3a\x3f\x3b\x30\x35\x34\x2c\x32\x34\ +\x2c\x34\x34\x2c\x32\x33\x35\x34\x33\x30\x37\x37\x33\x3d\x3c\x37\ +\x42\x42\x33\x3b\x38\x33\x3c\x3a\x32\x3c\x3a\x31\x38\x32\x3d\x47\ +\x46\x39\x41\x41\x36\x3f\x3f\x31\x36\x38\x34\x36\x37\x30\x31\x32\ +\x2a\x30\x2e\x2a\x2d\x29\x30\x35\x33\x31\x36\x36\x37\x3d\x3f\x35\ +\x3e\x3c\x2d\x3a\x34\x37\x3f\x42\x34\x3c\x3e\x35\x3c\x3e\x38\x3b\ +\x3e\x38\x3c\x3b\x30\x37\x38\x2e\x34\x35\x2e\x34\x34\x2a\x32\x31\ +\x30\x3a\x3c\x31\x33\x36\x2f\x34\x36\x36\x40\x41\x34\x3a\x3b\x2a\ +\x29\x2c\x2f\x34\x33\x31\x34\x33\x31\x31\x32\x38\x3a\x3b\x34\x3e\ +\x40\x33\x3f\x3d\x32\x30\x2e\x2f\x37\x32\x32\x34\x35\x32\x37\x32\ +\x39\x42\x42\x3a\x43\x42\x3a\x40\x40\x3b\x43\x45\x3e\x48\x45\x3c\ +\x42\x48\x3f\x4b\x4f\x3c\x49\x4a\x30\x3f\x43\x35\x42\x46\x35\x43\ +\x45\x3c\x42\x46\x3c\x46\x47\x3c\x45\x46\x3b\x44\x43\x42\x4c\x4d\ +\x46\x51\x51\x36\x41\x43\x31\x3b\x3f\x32\x3b\x3b\x36\x3c\x3f\x32\ +\x3e\x3d\x32\x36\x37\x32\x3d\x3a\x34\x42\x41\x3b\x41\x45\x34\x40\ +\x41\x3b\x41\x44\x3c\x4a\x4a\x3c\x47\x46\x33\x39\x3a\x3c\x49\x4a\ +\x36\x3f\x41\x3c\x47\x4a\x3e\x4a\x4d\x3f\x4f\x57\x34\x3f\x42\x39\ +\x47\x47\x3b\x43\x49\x34\x39\x3d\x31\x39\x3c\x33\x39\x3d\x00\x00\ +\x00\x92\xb6\xcf\x54\x80\xa3\x43\x68\x8f\x1b\x29\x3b\x2c\x36\x3f\ +\x43\x49\x51\x57\x61\x64\x42\x51\x4d\x21\x2e\x32\x1c\x20\x1e\x2d\ +\x2d\x2f\x21\x26\x24\x25\x29\x29\x21\x28\x28\x20\x24\x25\x2d\x32\ +\x32\x2e\x32\x32\x2e\x37\x34\x21\x24\x20\x2f\x30\x30\x21\x25\x26\ +\x22\x26\x2d\x2d\x36\x33\x21\x25\x26\x2f\x34\x3c\x31\x3a\x3a\x32\ +\x3c\x3f\x2b\x35\x3a\x2c\x35\x37\x35\x43\x53\x32\x46\x4f\x3a\x3f\ +\x45\x31\x3d\x3f\x39\x40\x40\x30\x3a\x3a\x34\x38\x39\x36\x3e\x3e\ +\x30\x3a\x39\x38\x3e\x3f\x32\x39\x39\x33\x3a\x39\x31\x35\x35\x3e\ +\x3f\x41\x32\x31\x31\x2b\x32\x37\x2b\x3d\x42\x13\x24\x27\x1c\x2b\ +\x2e\x22\x2f\x32\x35\x3f\x41\x36\x40\x45\x40\x47\x4b\x38\x3c\x3d\ +\x4b\x55\x5c\x32\x3b\x42\x4d\x53\x59\x57\x5b\x60\x5f\x6d\x6a\x65\ +\x72\x77\x59\x64\x6b\x54\x60\x61\x4c\x54\x50\x45\x4a\x47\x41\x43\ +\x41\x39\x3d\x38\x34\x3b\x39\x35\x3a\x37\x32\x37\x36\x3c\x42\x3f\ +\x39\x43\x3e\x38\x3e\x3e\x30\x34\x38\x2f\x32\x2d\x33\x35\x39\x3a\ +\x3e\x3f\x2d\x2f\x2b\x2e\x30\x2f\x2b\x2f\x2f\x36\x3e\x3d\x38\x3d\ +\x3e\x32\x32\x2f\x2d\x2e\x2e\x2b\x30\x2c\x28\x2d\x28\x24\x29\x27\ +\x2e\x30\x2e\x26\x30\x2d\x2f\x36\x38\x3a\x3e\x3b\x34\x3e\x3c\x38\ +\x43\x47\x35\x3d\x3c\x3e\x43\x46\x32\x39\x41\x2f\x32\x35\x32\x35\ +\x33\x3f\x4a\x4d\x2e\x39\x37\x2d\x31\x30\x2a\x34\x38\x2e\x39\x38\ +\x34\x3c\x3f\x36\x3d\x40\x3c\x43\x43\x36\x3b\x39\x34\x3a\x3b\x3c\ +\x3f\x44\x37\x3b\x40\x33\x3f\x3f\x33\x39\x3b\x39\x3f\x3f\x35\x3b\ +\x3a\x2d\x33\x32\x33\x37\x37\x32\x39\x3a\x35\x40\x40\x38\x43\x42\ +\x2f\x35\x3a\x38\x3e\x3e\x36\x3c\x3c\x32\x38\x37\x36\x3e\x41\x39\ +\x41\x47\x3d\x46\x45\x3f\x48\x4c\x36\x39\x3c\x37\x39\x3b\x36\x3c\ +\x3e\x3e\x4b\x54\x38\x46\x46\x38\x3b\x40\x41\x4f\x57\x49\x51\x58\ +\x35\x3c\x3a\x37\x3e\x3e\x37\x40\x40\x36\x3f\x3f\x3b\x3e\x3e\x3b\ +\x46\x47\x3f\x50\x58\x36\x40\x41\x40\x50\x4f\x3f\x47\x4d\x38\x47\ +\x48\x3c\x4e\x53\x3d\x46\x46\x37\x43\x41\x3c\x45\x46\x33\x37\x34\ +\x2d\x31\x31\x36\x41\x3d\x39\x46\x48\x3f\x4c\x52\x3b\x42\x42\x40\ +\x49\x4e\x3d\x48\x4a\x36\x3c\x41\x38\x43\x44\x36\x41\x40\x35\x41\ +\x41\x3e\x4b\x52\x40\x50\x53\x3b\x4a\x50\x00\x00\x00\x87\xb2\xcf\ +\x6e\xa1\xc4\x40\x73\x9e\x1e\x39\x5b\x19\x29\x34\x2d\x30\x3d\x49\ +\x52\x58\x43\x51\x4d\x29\x3a\x3d\x23\x29\x2a\x1f\x1f\x24\x20\x20\ +\x24\x18\x1b\x19\x24\x24\x21\x26\x27\x25\x1d\x1c\x20\x2d\x2f\x2b\ +\x2d\x32\x2f\x29\x33\x31\x1e\x27\x28\x1e\x21\x21\x34\x37\x3b\x35\ +\x3c\x3a\x27\x28\x2a\x3b\x41\x3f\x2c\x34\x34\x32\x34\x39\x2f\x39\ +\x3c\x34\x39\x3b\x2e\x2c\x2d\x3a\x44\x4a\x2e\x36\x36\x39\x43\x47\ +\x3d\x45\x49\x30\x3a\x38\x37\x3b\x3c\x24\x2a\x25\x36\x3a\x3f\x38\ +\x3a\x3d\x32\x38\x39\x23\x29\x2c\x1f\x28\x26\x2b\x38\x37\x32\x40\ +\x45\x1c\x27\x2d\x43\x4f\x54\x2e\x36\x3c\x37\x48\x44\x27\x2d\x35\ +\x37\x45\x4f\x3e\x49\x4f\x3e\x44\x49\x34\x41\x44\x45\x4d\x55\x43\ +\x4b\x56\x6a\x70\x77\x69\x70\x73\x6e\x72\x78\x63\x6b\x6c\x4c\x54\ +\x51\x40\x43\x41\x46\x48\x46\x39\x43\x43\x35\x44\x45\x34\x39\x3d\ +\x31\x35\x39\x33\x39\x3b\x3b\x39\x37\x3a\x3e\x3e\x3a\x40\x42\x3c\ +\x44\x45\x3a\x3c\x3d\x32\x3c\x39\x2c\x2f\x2b\x2c\x2f\x2d\x35\x38\ +\x36\x31\x37\x35\x30\x34\x32\x31\x33\x31\x2b\x2d\x2e\x30\x35\x32\ +\x34\x39\x3c\x30\x3b\x39\x31\x38\x38\x31\x38\x36\x32\x3c\x39\x2e\ +\x3c\x3c\x36\x3c\x3f\x36\x3b\x38\x35\x3a\x37\x34\x37\x39\x30\x31\ +\x30\x30\x35\x36\x3d\x3e\x40\x3a\x3c\x3e\x31\x3a\x39\x37\x43\x49\ +\x35\x38\x3a\x39\x42\x48\x39\x3f\x40\x30\x36\x38\x2e\x35\x37\x26\ +\x2d\x2c\x28\x2b\x2c\x2e\x34\x3a\x30\x34\x38\x35\x38\x3f\x34\x3c\ +\x40\x30\x3f\x3f\x2d\x3a\x36\x2c\x2f\x2b\x2e\x2f\x2f\x32\x39\x3d\ +\x31\x3c\x40\x3a\x45\x45\x3e\x49\x49\x33\x3d\x3c\x32\x36\x31\x2d\ +\x31\x2f\x2f\x37\x37\x37\x3c\x3d\x36\x3e\x3d\x30\x38\x38\x30\x39\ +\x34\x30\x35\x33\x31\x37\x3b\x37\x38\x3b\x3b\x47\x49\x38\x42\x45\ +\x33\x3d\x3b\x3c\x47\x48\x38\x40\x44\x35\x3c\x3c\x38\x45\x49\x41\ +\x4c\x49\x43\x4f\x53\x42\x51\x53\x34\x3c\x38\x32\x38\x39\x33\x3d\ +\x3f\x3b\x45\x46\x2f\x34\x32\x30\x38\x35\x35\x3c\x3f\x33\x3b\x3f\ +\x3a\x46\x44\x36\x40\x41\x37\x3e\x40\x44\x54\x57\x40\x4c\x4a\x3f\ +\x54\x56\x43\x49\x4d\x33\x3d\x3d\x34\x38\x3c\x3b\x42\x49\x42\x4c\ +\x4e\x45\x4e\x54\x38\x3e\x3e\x32\x3f\x3b\x3f\x48\x51\x3f\x4c\x53\ +\x45\x53\x5b\x40\x48\x4a\x00\x00\x00\x85\xae\xcd\x9a\xc7\xe3\x86\ +\xb8\xdd\x73\xa5\xcb\x3f\x69\x7f\x2c\x45\x5a\x1f\x2b\x38\x35\x3f\ +\x44\x27\x2e\x35\x22\x2c\x30\x1e\x22\x21\x17\x1b\x1b\x1d\x1e\x1e\ +\x1d\x1c\x1d\x1a\x25\x24\x19\x1a\x1d\x1e\x24\x20\x1d\x25\x24\x1e\ +\x23\x29\x1b\x23\x24\x23\x24\x29\x40\x48\x49\x2f\x34\x32\x30\x31\ +\x33\x36\x3f\x41\x24\x31\x37\x29\x30\x32\x33\x34\x37\x2b\x2b\x2d\ +\x31\x30\x2f\x37\x3e\x3c\x33\x39\x3f\x32\x3b\x3c\x37\x41\x42\x33\ +\x3a\x3d\x2c\x30\x2f\x2f\x32\x30\x2e\x2f\x33\x2b\x3c\x3b\x23\x34\ +\x33\x0a\x14\x13\x24\x35\x3a\x32\x43\x4b\x2c\x37\x37\x1e\x22\x2a\ +\x36\x3a\x43\x32\x3b\x3f\x38\x42\x47\x50\x59\x5d\x36\x46\x49\x32\ +\x3d\x3f\x42\x4c\x53\x3d\x4a\x56\x4b\x58\x63\x5e\x6a\x70\x60\x6c\ +\x78\x60\x6c\x71\x52\x58\x5a\x4e\x52\x4f\x43\x47\x47\x34\x3e\x3f\ +\x2c\x39\x3c\x30\x38\x3d\x31\x38\x3d\x2f\x39\x37\x3d\x40\x42\x34\ +\x3c\x3a\x35\x36\x36\x3b\x3d\x42\x3a\x3c\x38\x34\x35\x36\x37\x40\ +\x42\x41\x48\x49\x3b\x43\x41\x38\x3f\x3b\x35\x3a\x39\x39\x3c\x3b\ +\x3b\x3d\x42\x34\x39\x39\x31\x3b\x3a\x37\x3a\x3b\x37\x3f\x43\x38\ +\x3d\x3f\x3b\x44\x44\x3c\x46\x49\x39\x43\x43\x38\x41\x41\x33\x3a\ +\x3a\x30\x33\x34\x2d\x33\x32\x2b\x30\x2e\x32\x37\x34\x35\x36\x35\ +\x2d\x2f\x2d\x2b\x2c\x2a\x2d\x33\x32\x32\x38\x39\x37\x3d\x3d\x37\ +\x3c\x3d\x33\x39\x35\x30\x33\x35\x35\x37\x38\x32\x3a\x39\x34\x3b\ +\x3c\x34\x3c\x3f\x33\x3a\x36\x36\x3c\x41\x39\x45\x46\x3b\x42\x42\ +\x33\x39\x39\x33\x3a\x38\x3b\x40\x40\x36\x43\x41\x34\x3a\x3c\x2e\ +\x30\x2e\x2f\x36\x37\x2e\x33\x31\x38\x3c\x3e\x3a\x43\x46\x39\x41\ +\x49\x38\x46\x48\x39\x46\x46\x33\x3a\x3c\x35\x3f\x40\x38\x43\x47\ +\x3c\x46\x4a\x3a\x44\x44\x40\x48\x48\x38\x41\x44\x42\x4c\x4e\x39\ +\x41\x3f\x40\x49\x4a\x3f\x47\x45\x41\x50\x51\x3a\x45\x45\x38\x43\ +\x48\x3c\x4a\x4b\x3a\x47\x4a\x3d\x47\x4b\x41\x4e\x54\x3b\x46\x46\ +\x3c\x45\x44\x3e\x48\x48\x3f\x45\x47\x3f\x4d\x53\x3a\x41\x44\x37\ +\x40\x40\x3e\x4b\x4a\x39\x42\x45\x2e\x3a\x3a\x32\x3a\x3a\x32\x33\ +\x3b\x3b\x4c\x4a\x3b\x48\x4a\x3f\x4a\x52\x38\x41\x43\x28\x2f\x32\ +\x31\x37\x38\x2e\x37\x3a\x34\x3d\x3f\x3a\x44\x47\x38\x3f\x41\x2f\ +\x36\x35\x00\x00\x00\x9b\xc5\xdd\xbc\xe2\xf5\xb6\xdc\xed\xb4\xdc\ +\xee\x97\xc9\xdf\x83\xb7\xd6\x58\x82\xa8\x2a\x4a\x68\x21\x33\x40\ +\x18\x1b\x21\x1c\x1f\x27\x19\x23\x23\x1d\x20\x20\x19\x1a\x17\x1c\ +\x23\x1f\x16\x16\x18\x19\x1c\x1e\x1e\x25\x28\x1e\x24\x23\x17\x19\ +\x18\x27\x2b\x2c\x32\x38\x38\x23\x25\x22\x2c\x2e\x31\x2b\x35\x3a\ +\x27\x35\x39\x25\x26\x26\x2d\x31\x30\x36\x3d\x3a\x2f\x35\x36\x31\ +\x39\x37\x3a\x3f\x44\x2a\x2e\x2b\x2f\x34\x39\x2f\x35\x37\x2c\x32\ +\x36\x30\x3a\x3b\x23\x33\x36\x1f\x32\x33\x10\x1a\x1a\x0a\x12\x0f\ +\x1c\x2c\x2d\x2f\x3a\x41\x2c\x34\x2e\x31\x32\x39\x36\x3c\x3b\x41\ +\x4b\x4d\x39\x49\x4c\x3c\x43\x46\x34\x3d\x43\x40\x4d\x56\x53\x5f\ +\x6e\x6d\x75\x7d\x5f\x69\x6a\x62\x67\x6d\x56\x5f\x60\x45\x4a\x4a\ +\x3d\x42\x41\x34\x3a\x3a\x33\x37\x38\x2f\x39\x3d\x32\x35\x35\x2b\ +\x32\x31\x2c\x32\x31\x32\x32\x33\x38\x41\x44\x36\x3a\x38\x33\x35\ +\x33\x35\x3b\x3d\x3c\x42\x3b\x3e\x43\x45\x36\x3c\x3b\x31\x35\x35\ +\x30\x37\x36\x2d\x33\x31\x2b\x2e\x30\x37\x3a\x3e\x3b\x3d\x3f\x44\ +\x4b\x4a\x3c\x48\x49\x45\x4a\x48\x43\x4b\x4d\x3d\x40\x44\x2e\x33\ +\x31\x30\x37\x33\x36\x3a\x3d\x3a\x41\x3e\x3b\x44\x43\x33\x39\x3b\ +\x35\x3d\x3c\x37\x3f\x40\x3d\x42\x45\x3b\x3e\x41\x3a\x46\x41\x37\ +\x41\x3f\x35\x3a\x3b\x32\x35\x35\x3a\x3f\x41\x2f\x33\x34\x2d\x38\ +\x37\x31\x3a\x3e\x35\x37\x3b\x34\x3d\x38\x36\x3b\x3e\x33\x3b\x3b\ +\x2a\x30\x2d\x35\x3b\x39\x32\x33\x36\x2e\x33\x2b\x34\x3c\x3f\x32\ +\x3c\x3a\x33\x3c\x38\x30\x32\x33\x38\x42\x40\x3d\x44\x44\x36\x40\ +\x3d\x3c\x44\x4b\x3d\x44\x46\x40\x44\x4a\x34\x3d\x3b\x2c\x30\x31\ +\x34\x3a\x38\x35\x3b\x3d\x3a\x4b\x4d\x39\x49\x4a\x3a\x44\x43\x30\ +\x38\x34\x30\x38\x3a\x38\x40\x40\x33\x3e\x3c\x34\x3e\x3b\x3a\x44\ +\x49\x42\x49\x50\x39\x45\x47\x3b\x4b\x50\x3f\x4c\x51\x43\x4e\x52\ +\x3d\x4a\x4b\x39\x48\x4c\x3b\x45\x47\x35\x3f\x41\x30\x3c\x3e\x3f\ +\x49\x4a\x3d\x43\x46\x31\x3b\x39\x2c\x34\x33\x34\x41\x45\x35\x40\ +\x42\x37\x42\x43\x3b\x49\x47\x38\x46\x47\x39\x45\x4c\x36\x45\x4b\ +\x3b\x4a\x4c\x37\x47\x48\x3b\x43\x43\x43\x54\x59\x3e\x49\x50\x42\ +\x55\x58\x41\x4b\x50\x33\x38\x3d\x41\x4d\x50\x3c\x4d\x51\x00\x00\ +\x00\xaa\xd1\xe9\xb5\xde\xf3\xc8\xe8\xf6\xcd\xe8\xf4\xc2\xe5\xf4\ +\xa2\xd1\xe8\x90\xc3\xe0\x6b\xa1\xc0\x3f\x67\x8e\x1a\x37\x47\x15\ +\x1c\x20\x1d\x21\x22\x21\x28\x2a\x1a\x1e\x1d\x18\x21\x1f\x1f\x1f\ +\x20\x1b\x1d\x1f\x15\x19\x1b\x22\x24\x25\x20\x1f\x20\x2d\x30\x36\ +\x22\x2b\x2a\x1e\x22\x1f\x25\x2f\x2d\x28\x33\x36\x28\x32\x37\x2d\ +\x36\x39\x28\x2c\x2e\x30\x36\x37\x38\x3d\x3b\x30\x33\x2e\x2a\x38\ +\x36\x23\x34\x38\x1e\x28\x29\x1e\x2b\x2e\x2d\x42\x49\x2a\x39\x41\ +\x1e\x29\x2a\x0f\x14\x14\x0b\x14\x15\x20\x2a\x2c\x2f\x35\x37\x39\ +\x3f\x40\x38\x43\x45\x49\x4e\x4f\x36\x46\x47\x4b\x54\x57\x4d\x56\ +\x60\x32\x3c\x3f\x41\x51\x58\x54\x5e\x68\x5e\x65\x6c\x62\x6a\x6c\ +\x56\x5f\x5d\x43\x48\x47\x3f\x4a\x4a\x35\x3f\x42\x32\x35\x34\x2d\ +\x32\x2f\x2c\x2e\x2b\x2e\x33\x30\x30\x31\x31\x2d\x35\x32\x2e\x38\ +\x38\x31\x37\x36\x31\x32\x31\x30\x32\x32\x34\x39\x37\x30\x36\x33\ +\x2e\x2d\x2a\x33\x37\x34\x39\x3f\x41\x35\x44\x42\x3d\x49\x49\x3d\ +\x43\x47\x3c\x47\x42\x37\x3f\x3c\x30\x36\x36\x30\x35\x37\x2e\x35\ +\x31\x31\x34\x35\x35\x37\x38\x43\x44\x46\x34\x38\x3d\x37\x43\x44\ +\x2c\x32\x2d\x2e\x38\x34\x2d\x32\x32\x34\x3b\x3c\x33\x37\x36\x2f\ +\x37\x37\x2e\x32\x31\x2d\x33\x2c\x2d\x2f\x2c\x33\x38\x39\x36\x3b\ +\x39\x3b\x44\x46\x3b\x44\x3f\x35\x38\x35\x32\x3d\x46\x3a\x43\x4b\ +\x3f\x4a\x49\x30\x36\x35\x38\x3f\x41\x38\x41\x44\x35\x43\x44\x34\ +\x3e\x3c\x2c\x2e\x2f\x36\x3b\x3e\x41\x48\x4f\x3f\x4e\x51\x3b\x48\ +\x47\x36\x41\x41\x3c\x4b\x4b\x3d\x47\x44\x3c\x45\x48\x32\x3b\x3c\ +\x39\x3f\x43\x37\x44\x42\x39\x41\x3c\x3d\x4a\x49\x3c\x43\x45\x38\ +\x47\x47\x3f\x48\x4b\x41\x4c\x4c\x40\x48\x47\x3b\x44\x46\x38\x42\ +\x48\x3b\x4b\x54\x40\x4d\x54\x3a\x47\x4a\x41\x4d\x52\x3c\x47\x4c\ +\x35\x40\x44\x40\x51\x55\x38\x3e\x3d\x34\x3e\x40\x33\x40\x43\x3a\ +\x48\x4c\x35\x3f\x39\x2f\x35\x35\x37\x45\x49\x36\x41\x44\x36\x3d\ +\x3f\x3a\x47\x4b\x40\x4c\x51\x3e\x55\x55\x39\x4a\x4a\x2e\x38\x3c\ +\x3b\x4c\x52\x39\x4b\x50\x3c\x46\x48\x32\x38\x3b\x2f\x38\x39\x2d\ +\x34\x31\x3a\x43\x41\x39\x44\x49\x3b\x45\x48\x42\x4e\x55\x3c\x44\ +\x43\x46\x53\x5c\x42\x49\x4f\x3f\x46\x4e\x00\x00\x00\xaa\xd7\xed\ +\xa5\xd4\xec\xcd\xe9\xf7\xdb\xf1\xfa\xd0\xee\xf8\xc3\xe5\xf3\xb7\ +\xdc\xed\xa1\xcc\xe1\x75\xa3\xc7\x71\xa0\xc2\x4d\x77\x90\x1f\x2e\ +\x43\x1b\x25\x32\x1e\x2c\x37\x10\x1e\x24\x18\x1d\x23\x1e\x24\x28\ +\x13\x1a\x1b\x1c\x16\x1a\x2d\x34\x35\x29\x2f\x30\x1c\x20\x1e\x28\ +\x31\x31\x23\x30\x36\x30\x38\x41\x26\x34\x37\x22\x29\x2e\x21\x2c\ +\x31\x2b\x38\x40\x21\x2e\x33\x25\x37\x38\x28\x37\x3d\x25\x36\x43\ +\x1f\x31\x3a\x38\x52\x6b\x21\x3a\x43\x07\x10\x0c\x0b\x0b\x0c\x18\ +\x26\x39\x2b\x3d\x52\x2e\x3f\x46\x33\x3e\x44\x37\x3c\x40\x59\x60\ +\x61\x57\x61\x65\x46\x4f\x56\x4e\x55\x53\x57\x5c\x5c\x4c\x53\x56\ +\x41\x4e\x5a\x58\x67\x6d\x49\x55\x59\x41\x4a\x4e\x3e\x48\x49\x39\ +\x47\x4a\x2c\x35\x36\x31\x3c\x3e\x2d\x31\x36\x30\x39\x3b\x33\x38\ +\x37\x32\x38\x39\x2e\x2d\x2d\x38\x3e\x3a\x35\x3b\x36\x30\x37\x31\ +\x31\x34\x30\x38\x35\x37\x35\x3a\x36\x34\x39\x37\x37\x3e\x3f\x35\ +\x38\x39\x31\x37\x3a\x36\x40\x45\x34\x39\x3b\x3c\x45\x44\x3a\x42\ +\x3e\x3b\x41\x40\x3b\x45\x3f\x3c\x45\x45\x41\x47\x49\x3e\x42\x42\ +\x30\x37\x32\x30\x33\x33\x2f\x33\x36\x34\x3f\x3c\x36\x3c\x41\x3b\ +\x46\x47\x37\x3d\x3c\x35\x40\x43\x36\x3d\x3d\x3b\x43\x42\x3a\x40\ +\x3f\x3b\x43\x42\x38\x3c\x40\x33\x3d\x40\x39\x3c\x3c\x39\x38\x39\ +\x2c\x31\x2f\x34\x39\x3a\x36\x3d\x43\x2c\x34\x34\x30\x35\x33\x2f\ +\x38\x35\x33\x34\x37\x2f\x32\x35\x31\x3b\x3d\x33\x3b\x34\x37\x40\ +\x3f\x3b\x45\x43\x36\x39\x3a\x31\x38\x37\x37\x41\x3e\x34\x39\x38\ +\x39\x3e\x41\x3f\x42\x46\x36\x3e\x3c\x37\x3a\x3f\x3a\x43\x45\x38\ +\x3c\x40\x3f\x4b\x4b\x35\x3f\x3f\x3d\x45\x46\x38\x42\x3f\x36\x39\ +\x39\x36\x40\x44\x32\x3a\x3a\x2e\x39\x37\x3a\x49\x4e\x3a\x48\x4e\ +\x36\x40\x3e\x34\x3d\x3e\x37\x44\x42\x3f\x4c\x52\x4a\x5c\x66\x3a\ +\x4e\x54\x42\x4c\x4d\x42\x53\x5a\x3c\x46\x48\x3f\x4e\x4e\x3b\x45\ +\x42\x3c\x4b\x4d\x40\x4e\x50\x41\x4c\x4f\x34\x3d\x3e\x39\x3f\x40\ +\x3a\x4b\x4d\x34\x3e\x3d\x32\x3a\x3d\x37\x3d\x45\x3d\x45\x4f\x39\ +\x45\x49\x32\x3d\x41\x3b\x49\x4c\x3f\x4e\x55\x3f\x4b\x49\x42\x53\ +\x5b\x3c\x47\x4e\x37\x40\x43\x33\x3e\x43\x33\x33\x33\x37\x3f\x42\ +\x3b\x45\x49\x47\x51\x54\x00\x00\x00\xa7\xd5\xec\xb3\xdb\xf0\xd1\ +\xec\xf8\xd6\xed\xf9\xd5\xef\xf8\xc6\xe5\xf4\xb4\xdc\xef\xb1\xd9\ +\xed\x7d\xab\xc9\x73\x96\xb9\x8a\xb6\xd1\x5e\x8b\xaf\x3f\x5c\x7c\ +\x2a\x3d\x4e\x0c\x17\x20\x13\x1c\x26\x16\x23\x26\x1b\x20\x20\x22\ +\x27\x29\x25\x26\x2e\x23\x28\x2c\x26\x31\x34\x2e\x40\x51\x3e\x52\ +\x64\x37\x56\x63\x28\x3f\x4e\x2b\x3b\x44\x23\x32\x39\x29\x3e\x4d\ +\x2c\x40\x54\x33\x4b\x5c\x49\x69\x87\x60\x8f\xad\x5d\x89\xa3\x27\ +\x44\x5a\x36\x56\x68\x3f\x5f\x76\x3f\x5f\x70\x41\x5d\x6e\x36\x46\ +\x50\x47\x51\x5b\x48\x52\x5b\x52\x5d\x5c\x54\x5d\x5b\x62\x65\x6c\ +\x5c\x67\x68\x57\x61\x63\x59\x63\x6b\x58\x5d\x61\x46\x4f\x58\x41\ +\x4e\x57\x41\x49\x46\x34\x3c\x38\x2b\x32\x34\x33\x3e\x40\x31\x3d\ +\x3f\x2e\x38\x36\x30\x36\x37\x36\x3d\x3f\x2f\x34\x32\x30\x32\x34\ +\x2b\x2f\x2a\x27\x2f\x2a\x2a\x30\x2d\x35\x36\x32\x33\x3b\x36\x3a\ +\x3e\x3f\x2d\x33\x30\x2e\x37\x32\x31\x3a\x3a\x39\x3d\x42\x3b\x3e\ +\x42\x3b\x46\x50\x35\x41\x43\x38\x3c\x3e\x33\x35\x34\x29\x30\x2f\ +\x2f\x32\x33\x33\x36\x34\x3b\x3f\x3b\x30\x33\x30\x35\x39\x3a\x3c\ +\x42\x41\x3c\x43\x47\x3c\x43\x44\x38\x40\x41\x35\x3a\x39\x40\x44\ +\x47\x39\x3f\x40\x31\x34\x35\x2b\x2e\x2a\x2b\x33\x35\x3b\x47\x4a\ +\x38\x41\x44\x3e\x43\x48\x41\x48\x47\x2e\x32\x31\x3a\x3b\x3e\x34\ +\x40\x45\x39\x43\x45\x36\x3e\x3d\x37\x3f\x3f\x3b\x42\x41\x40\x44\ +\x45\x3c\x44\x42\x41\x4f\x56\x34\x3b\x3e\x3a\x39\x3c\x31\x34\x32\ +\x40\x46\x47\x3c\x40\x42\x38\x40\x42\x3f\x46\x42\x3a\x40\x43\x3b\ +\x3f\x40\x42\x4d\x50\x3d\x4a\x4a\x3a\x44\x46\x3b\x47\x48\x39\x41\ +\x43\x30\x38\x3b\x34\x3e\x41\x34\x3b\x40\x35\x3f\x44\x35\x41\x41\ +\x3d\x48\x4f\x3d\x4c\x52\x3c\x4c\x55\x3f\x4b\x4e\x33\x39\x3d\x35\ +\x47\x4c\x34\x3f\x40\x37\x4a\x4b\x3b\x42\x45\x30\x38\x3b\x32\x39\ +\x3b\x2f\x33\x36\x33\x3c\x3f\x39\x44\x42\x3c\x44\x44\x3b\x41\x47\ +\x3f\x49\x48\x39\x3d\x40\x31\x39\x39\x3d\x48\x4f\x36\x40\x44\x3b\ +\x44\x48\x36\x45\x48\x3e\x4c\x4e\x43\x4f\x54\x47\x51\x58\x3b\x43\ +\x45\x47\x4d\x50\x3a\x49\x49\x40\x4c\x4d\x38\x46\x48\x3d\x4c\x4f\ +\x41\x4e\x51\x38\x45\x46\x42\x4f\x53\x43\x54\x5a\x40\x4c\x4f\x35\ +\x3f\x40\x00\x00\x00\xb4\xd9\xee\xd4\xee\xf9\xd4\xed\xf7\xc9\xe9\ +\xf6\xb7\xd7\xe8\x79\xa1\xcb\x83\xb2\xda\xa6\xc8\xe6\xb2\xdb\xea\ +\x58\x87\xb1\x52\x7a\xb6\x7b\xae\xd6\x6d\x9e\xc6\x73\xa1\xcc\x69\ +\xa1\xbe\x39\x4e\x5a\x3a\x51\x61\x41\x5b\x6d\x40\x60\x75\x2f\x3f\ +\x4f\x36\x4a\x61\x4e\x6f\x94\x5b\x82\xab\x57\x88\xb3\x53\x85\xb3\ +\x5f\x8f\xb0\x58\x76\x94\x64\x8c\xa9\x72\x9d\xbd\x85\xab\xca\x8b\ +\xb8\xce\x83\xae\xca\x7c\xa7\xc0\x5d\x85\x98\x5e\x82\x9b\x6e\x98\ +\xb4\x51\x72\x86\x3c\x51\x65\x37\x46\x4d\x3f\x49\x50\x4b\x57\x5b\ +\x53\x57\x5c\x72\x7e\x83\x4f\x5c\x5b\x5c\x62\x6b\x5a\x64\x66\x4a\ +\x56\x5f\x52\x59\x5d\x42\x4a\x4e\x38\x3f\x42\x32\x3b\x3e\x30\x3c\ +\x40\x2f\x36\x38\x2d\x32\x30\x2f\x3b\x42\x32\x3a\x3b\x35\x35\x3a\ +\x30\x35\x32\x2e\x2d\x2c\x2f\x34\x34\x34\x3b\x3b\x33\x37\x35\x33\ +\x3c\x38\x39\x45\x44\x31\x3b\x36\x30\x36\x2e\x34\x3b\x39\x3f\x43\ +\x46\x3a\x47\x45\x3d\x48\x48\x3b\x41\x45\x3c\x48\x48\x3c\x44\x4b\ +\x33\x3d\x3e\x30\x34\x3a\x37\x3f\x44\x3a\x45\x46\x3b\x42\x44\x3b\ +\x43\x46\x37\x3c\x3d\x38\x3a\x3c\x35\x3a\x3d\x31\x37\x34\x33\x36\ +\x36\x31\x35\x36\x35\x39\x38\x39\x36\x36\x38\x46\x47\x36\x3d\x3c\ +\x32\x3c\x3c\x31\x3c\x3d\x3b\x46\x4a\x37\x3e\x40\x31\x36\x38\x2b\ +\x31\x31\x2b\x31\x33\x34\x39\x38\x34\x3b\x3b\x37\x43\x47\x36\x3e\ +\x3d\x2e\x36\x34\x30\x38\x39\x33\x3e\x3f\x37\x41\x40\x33\x3a\x3a\ +\x31\x35\x33\x35\x37\x3b\x37\x3b\x3b\x36\x40\x40\x3d\x46\x45\x38\ +\x41\x42\x34\x38\x36\x3b\x3c\x3a\x33\x3e\x39\x3c\x44\x43\x3b\x40\ +\x44\x43\x4a\x49\x3f\x48\x4b\x41\x48\x4c\x3d\x44\x45\x34\x43\x42\ +\x38\x41\x3f\x3b\x46\x4b\x44\x52\x56\x3c\x48\x46\x33\x41\x3f\x37\ +\x3f\x44\x38\x46\x4d\x2f\x38\x39\x3b\x45\x51\x3d\x49\x56\x41\x4c\ +\x50\x3f\x45\x4a\x3a\x47\x4d\x37\x47\x4d\x34\x40\x40\x3f\x4e\x54\ +\x39\x49\x4b\x3c\x4c\x4b\x31\x3a\x3a\x34\x3c\x3b\x36\x3a\x39\x30\ +\x38\x35\x34\x43\x45\x39\x46\x46\x31\x37\x39\x3a\x4b\x51\x3d\x4b\ +\x52\x31\x3c\x42\x2d\x35\x34\x31\x36\x3a\x2d\x35\x36\x32\x3d\x3e\ +\x41\x4c\x50\x38\x45\x48\x39\x45\x4a\x48\x57\x62\x44\x58\x61\x36\ +\x43\x47\x36\x40\x3f\x37\x3e\x46\x38\x3c\x3c\x43\x4e\x52\x00\x00\ +\x00\xc0\xdf\xf2\xd1\xee\xf9\xca\xe8\xf5\xa0\xca\xe2\x71\x9f\xce\ +\x71\x9c\xcf\x88\xb7\xdd\x6e\x97\xc9\xae\xd6\xee\x9f\xd0\xe4\x44\ +\x73\xab\x70\xa7\xd2\x7c\xb3\xd8\x6f\xa5\xd0\x6e\xa8\xd3\x7a\xab\ +\xcf\x68\x9f\xc3\x64\x95\xbc\x7a\xad\xd5\x78\xa9\xcb\x6e\x98\xba\ +\x7a\xa6\xc9\x7f\xad\xcd\x74\xa5\xc4\x79\xa8\xc8\xa0\xc9\xe2\x90\ +\xbe\xd9\x87\xb8\xd2\x94\xbf\xd9\x82\xaf\xcb\x82\xae\xca\x99\xbc\ +\xd5\x8d\xb7\xcf\x7f\xaf\xcb\x6b\x91\xa9\x39\x55\x60\x34\x46\x4f\ +\x2c\x39\x40\x3c\x3e\x46\x5a\x60\x68\x62\x69\x6b\x53\x5e\x5d\x5b\ +\x62\x67\x46\x4f\x53\x57\x5a\x5b\x59\x5e\x5c\x45\x48\x47\x37\x3d\ +\x3e\x34\x3b\x3a\x30\x31\x33\x31\x38\x39\x2d\x38\x3b\x30\x33\x36\ +\x2d\x38\x38\x2e\x38\x37\x36\x3d\x3c\x33\x37\x35\x31\x38\x37\x35\ +\x3b\x38\x2e\x32\x30\x31\x34\x34\x3a\x44\x47\x3e\x48\x4a\x34\x34\ +\x33\x30\x39\x38\x34\x36\x35\x34\x38\x36\x33\x3d\x3c\x35\x3b\x37\ +\x2c\x30\x2d\x31\x37\x3b\x2f\x39\x3c\x2d\x3b\x39\x30\x39\x36\x39\ +\x41\x44\x33\x39\x3b\x37\x3c\x3e\x35\x3b\x3c\x3b\x46\x43\x43\x4d\ +\x4b\x48\x4e\x4e\x37\x40\x40\x3b\x42\x43\x3a\x46\x48\x39\x41\x42\ +\x39\x44\x42\x39\x41\x3e\x36\x3c\x3b\x31\x39\x39\x38\x46\x45\x3c\ +\x47\x48\x31\x36\x35\x33\x3e\x3f\x38\x42\x46\x44\x57\x54\x3b\x43\ +\x45\x38\x46\x4b\x3a\x3d\x3e\x38\x45\x48\x2f\x36\x38\x39\x40\x3f\ +\x3a\x47\x4b\x3b\x4a\x4a\x3e\x43\x42\x38\x46\x47\x3a\x49\x48\x3c\ +\x46\x46\x39\x44\x46\x3e\x46\x48\x39\x44\x44\x33\x38\x35\x3f\x46\ +\x44\x39\x47\x47\x35\x3d\x37\x3f\x47\x47\x40\x48\x49\x37\x38\x37\ +\x3f\x41\x41\x3c\x3d\x41\x32\x35\x37\x35\x3f\x3b\x35\x42\x44\x3c\ +\x44\x49\x39\x3d\x3f\x37\x3e\x3e\x34\x39\x3d\x43\x55\x5f\x36\x47\ +\x52\x37\x46\x46\x38\x49\x4e\x39\x44\x49\x30\x38\x3b\x32\x37\x37\ +\x2a\x35\x39\x39\x48\x4d\x35\x3e\x3c\x3f\x4f\x50\x3c\x4b\x4e\x34\ +\x3c\x3d\x3c\x47\x4c\x40\x44\x4e\x3c\x46\x49\x3c\x49\x4c\x3e\x4a\ +\x4e\x43\x4f\x54\x41\x4f\x57\x37\x45\x48\x33\x3c\x38\x39\x47\x4d\ +\x41\x4c\x51\x41\x4b\x49\x40\x49\x4c\x43\x53\x5c\x3e\x48\x4c\x31\ +\x38\x36\x38\x42\x48\x3b\x44\x46\x33\x3d\x3e\x38\x43\x49\x3f\x51\ +\x51\x46\x54\x58\x40\x50\x54\x37\x40\x44\x00\x00\x00\xb8\xdb\xf0\ +\xbd\xdf\xf2\xad\xd8\xef\x6a\x9f\xcf\x68\x9a\xd0\x6e\x9a\xce\x79\ +\xae\xdb\x4e\x85\xbd\x75\xa8\xd7\x8e\xc9\xe5\x5e\x98\xc6\x86\xbe\ +\xe2\x9c\xcd\xeb\x87\xbc\xe0\x82\xbd\xdc\x79\xae\xd1\x6c\x9c\xbd\ +\x6d\x96\xbc\x78\xa1\xc5\x9e\xc4\xdd\xab\xd0\xe3\xa0\xcb\xe2\x9d\ +\xc7\xdd\xaa\xd7\xe9\x80\xb3\xd2\x91\xc2\xdc\x84\xb8\xd7\x7e\xab\ +\xc7\x8a\xba\xd3\x9c\xc7\xdc\xa2\xca\xe0\x82\xad\xc8\x7d\xa6\xc1\ +\x53\x72\x80\x36\x42\x49\x31\x43\x49\x39\x43\x4d\x3c\x51\x56\x4a\ +\x57\x61\x59\x60\x62\x63\x6a\x70\x4c\x5e\x62\x48\x56\x62\x4c\x4f\ +\x52\x47\x4f\x51\x41\x47\x4a\x39\x3e\x40\x33\x3a\x3c\x35\x40\x41\ +\x2f\x35\x3a\x2d\x3a\x3a\x30\x30\x36\x30\x3c\x3c\x2c\x3a\x3a\x33\ +\x3a\x39\x2b\x32\x2d\x32\x35\x33\x30\x34\x35\x31\x38\x35\x34\x39\ +\x3b\x37\x41\x3e\x33\x3c\x39\x33\x3a\x3d\x35\x3d\x3d\x36\x3d\x3b\ +\x37\x3b\x3c\x3a\x44\x4c\x39\x41\x41\x2f\x40\x41\x36\x43\x45\x38\ +\x46\x4b\x30\x3d\x3c\x40\x4d\x52\x3c\x4c\x51\x3a\x47\x49\x39\x3d\ +\x3b\x3b\x44\x41\x38\x41\x43\x34\x3b\x3a\x3d\x43\x3f\x36\x3e\x3c\ +\x3a\x4a\x4c\x45\x51\x5d\x3f\x45\x49\x31\x37\x36\x30\x3c\x3d\x35\ +\x3a\x39\x36\x3f\x3c\x37\x40\x41\x30\x3b\x40\x38\x45\x46\x30\x36\ +\x36\x37\x3b\x35\x3a\x44\x4c\x3f\x49\x4c\x38\x3d\x3d\x35\x3d\x40\ +\x3c\x4b\x4e\x3a\x4b\x4b\x3e\x47\x4a\x3d\x48\x4c\x33\x39\x39\x35\ +\x3b\x3e\x32\x39\x3b\x3b\x49\x4c\x43\x4d\x49\x36\x3f\x3e\x37\x3b\ +\x3a\x36\x3c\x3d\x32\x36\x39\x37\x3c\x41\x37\x3c\x40\x3c\x48\x4d\ +\x39\x45\x45\x35\x3a\x3e\x39\x3d\x41\x39\x44\x47\x34\x36\x37\x38\ +\x40\x45\x41\x4b\x4e\x3b\x42\x42\x3c\x49\x4f\x3b\x44\x46\x3a\x46\ +\x49\x42\x4c\x51\x3f\x4b\x4d\x39\x46\x49\x41\x4a\x54\x3f\x46\x4a\ +\x3e\x47\x49\x34\x3c\x41\x39\x49\x4b\x3f\x46\x4d\x3e\x4a\x51\x3c\ +\x46\x4c\x31\x38\x38\x34\x3b\x3f\x33\x3e\x3a\x38\x43\x44\x3e\x48\ +\x4e\x48\x4d\x56\x42\x4c\x52\x34\x40\x41\x41\x4e\x50\x3e\x4c\x4e\ +\x38\x42\x43\x37\x3e\x3f\x41\x4e\x53\x41\x4d\x58\x3b\x44\x46\x43\ +\x53\x58\x3a\x42\x43\x3e\x4a\x4d\x36\x3d\x3b\x3a\x4a\x52\x3b\x4a\ +\x4e\x37\x46\x45\x3c\x48\x4c\x36\x43\x47\x40\x50\x51\x36\x3d\x3f\ +\x2f\x34\x31\x34\x3e\x42\x00\x00\x00\x6d\x99\xc5\x6a\x96\xc4\x6e\ +\xa0\xd2\x69\x98\xcd\x58\x89\xc0\x63\x8d\xc6\x5f\x98\xc9\x46\x76\ +\xb1\x44\x7c\xad\x52\x78\xb6\xa1\xcd\xec\x8e\xbb\xd8\x99\xca\xe9\ +\x73\x9a\xb7\xa4\xcc\xe3\x92\xbc\xd4\x77\xa3\xc5\x96\xbb\xd8\xb2\ +\xd1\xe8\xb1\xd6\xe8\xb0\xd4\xe6\xb6\xd5\xe9\x98\xc4\xdd\x8a\xbe\ +\xdb\x82\xb4\xd3\x85\xae\xcb\x84\xb1\xce\x94\xc2\xd9\x8c\xb9\xd7\ +\x8a\xb7\xd3\x86\xb3\xc7\x39\x54\x69\x27\x34\x40\x39\x47\x4c\x40\ +\x4a\x4f\x53\x5d\x67\x5b\x68\x71\x3e\x4c\x56\x52\x62\x6a\x59\x63\ +\x6a\x71\x7e\x80\x3e\x47\x4a\x38\x43\x41\x35\x37\x39\x33\x37\x36\ +\x2e\x37\x36\x32\x44\x4d\x2d\x40\x42\x2b\x2f\x32\x2a\x30\x2f\x28\ +\x32\x35\x2e\x30\x2e\x2a\x2e\x2e\x34\x35\x39\x35\x3a\x39\x35\x39\ +\x36\x33\x39\x37\x37\x36\x34\x34\x3f\x3d\x36\x3d\x41\x3c\x42\x44\ +\x37\x44\x43\x34\x45\x46\x35\x3d\x3b\x37\x3f\x41\x3e\x46\x4c\x39\ +\x48\x4b\x40\x4e\x53\x39\x4b\x52\x39\x45\x44\x39\x3d\x40\x38\x42\ +\x44\x38\x44\x44\x3c\x43\x42\x3c\x41\x40\x35\x3b\x39\x3d\x43\x44\ +\x3b\x43\x46\x2d\x35\x2e\x32\x37\x35\x37\x35\x39\x36\x38\x38\x2e\ +\x2e\x2f\x37\x3b\x3e\x3e\x43\x46\x33\x3b\x37\x32\x35\x30\x30\x30\ +\x33\x32\x35\x32\x32\x3d\x3b\x3a\x42\x42\x3f\x44\x43\x37\x43\x42\ +\x3d\x47\x46\x38\x40\x3f\x37\x40\x3f\x37\x41\x40\x38\x46\x4c\x36\ +\x40\x42\x33\x3a\x38\x3e\x43\x43\x40\x4a\x4f\x33\x3d\x3c\x3d\x40\ +\x44\x45\x4f\x4e\x3a\x43\x42\x38\x3e\x3b\x38\x40\x3c\x3b\x46\x45\ +\x46\x51\x56\x42\x52\x52\x3b\x45\x46\x43\x4c\x50\x42\x48\x4e\x35\ +\x40\x42\x3c\x4b\x4c\x3e\x46\x42\x40\x44\x48\x41\x4b\x4f\x3e\x4f\ +\x4c\x42\x4e\x51\x3c\x49\x4a\x39\x44\x49\x3b\x3f\x46\x31\x39\x3e\ +\x39\x45\x47\x44\x49\x50\x39\x40\x41\x32\x3d\x40\x3c\x48\x4e\x40\ +\x4c\x4f\x36\x48\x45\x3f\x44\x4a\x38\x3d\x3e\x38\x44\x41\x38\x47\ +\x4d\x33\x44\x44\x33\x34\x36\x34\x40\x3f\x39\x3f\x40\x3f\x43\x45\ +\x3a\x39\x3c\x37\x42\x3f\x3c\x4b\x4e\x34\x40\x42\x34\x3b\x3c\x3b\ +\x40\x46\x40\x4c\x53\x3c\x48\x4c\x45\x4e\x52\x34\x3c\x41\x3f\x45\ +\x46\x39\x44\x45\x3c\x45\x4a\x43\x50\x54\x41\x50\x51\x49\x5a\x5e\ +\x40\x4c\x4d\x3e\x4f\x59\x30\x3d\x41\x43\x54\x59\x45\x51\x54\x3d\ +\x4b\x4f\x00\x00\x00\x7d\xac\xd7\x7a\xa9\xd1\x58\x88\xbc\x57\x82\ +\xb9\x58\x86\xb7\x62\x8d\xc2\x53\x81\xaf\x36\x55\x90\x4c\x73\xa5\ +\x2e\x48\x87\x5a\x84\xbf\x7b\xa5\xd2\xb1\xd8\xee\xb1\xd7\xec\xb2\ +\xd4\xe7\xb9\xd9\xeb\xb4\xd8\xeb\x9f\xcb\xe2\xb4\xd6\xeb\xb9\xdf\ +\xef\x9e\xcc\xe2\x98\xc8\xe4\x9f\xcb\xe2\x77\xa2\xbf\x80\xa7\xc5\ +\xa5\xc9\xdf\x9a\xc2\xda\x91\xba\xd1\x85\xb0\xcd\x85\xb3\xd1\x51\ +\x71\x80\x35\x43\x4f\x3e\x49\x54\x45\x53\x58\x5c\x62\x6a\x56\x61\ +\x67\x78\x87\x89\x3e\x4e\x5d\x50\x57\x61\x4f\x58\x5f\x43\x51\x5c\ +\x3b\x48\x4b\x31\x38\x3a\x32\x37\x37\x3d\x42\x47\x32\x3c\x3f\x2e\ +\x38\x3b\x30\x38\x36\x2d\x31\x30\x2d\x33\x35\x2e\x31\x2e\x36\x38\ +\x35\x38\x3a\x3a\x39\x37\x36\x31\x35\x33\x33\x33\x33\x38\x42\x46\ +\x33\x3f\x3d\x3a\x45\x47\x35\x43\x40\x35\x35\x39\x32\x34\x33\x31\ +\x34\x36\x41\x4b\x4a\x39\x42\x40\x35\x3a\x37\x3b\x44\x48\x43\x4b\ +\x52\x32\x32\x30\x35\x35\x36\x37\x3d\x3a\x30\x35\x38\x38\x3d\x3d\ +\x36\x39\x37\x3a\x3e\x3e\x3e\x42\x46\x42\x45\x4a\x3c\x3f\x3d\x3b\ +\x44\x40\x3d\x45\x44\x3f\x43\x44\x36\x40\x43\x39\x41\x41\x3b\x42\ +\x43\x38\x40\x40\x37\x3d\x3c\x3b\x44\x47\x3e\x46\x49\x37\x3d\x41\ +\x39\x44\x46\x31\x37\x36\x39\x3c\x3e\x3b\x3e\x43\x35\x3c\x3a\x35\ +\x3a\x3b\x3b\x44\x49\x41\x47\x4c\x3e\x49\x4e\x3a\x43\x45\x36\x3e\ +\x3e\x3c\x45\x4e\x3b\x44\x4a\x41\x4b\x50\x3e\x45\x42\x2e\x37\x35\ +\x37\x38\x3a\x3e\x4b\x4f\x45\x4c\x54\x4b\x59\x5f\x3f\x4b\x4e\x38\ +\x3f\x40\x37\x3d\x3a\x2c\x33\x30\x34\x38\x36\x3a\x4a\x4a\x3c\x4c\ +\x4a\x33\x34\x35\x31\x39\x41\x39\x44\x46\x38\x40\x3d\x2e\x31\x30\ +\x33\x39\x3a\x32\x3a\x3b\x3a\x41\x45\x40\x49\x4e\x38\x42\x41\x3a\ +\x3e\x41\x3a\x3f\x45\x4b\x58\x5c\x52\x5b\x5d\x3a\x43\x46\x3e\x49\ +\x4b\x3d\x48\x48\x3b\x41\x49\x3b\x41\x41\x3d\x43\x4c\x39\x40\x3f\ +\x3d\x4c\x4f\x44\x51\x56\x48\x54\x58\x3a\x40\x3f\x3b\x44\x48\x41\ +\x4d\x54\x41\x4d\x53\x4c\x61\x67\x4f\x61\x67\x44\x52\x57\x4a\x56\ +\x5b\x4d\x5e\x63\x38\x44\x41\x40\x4d\x51\x3d\x40\x43\x3c\x40\x46\ +\x3a\x41\x46\x42\x4d\x53\x47\x55\x52\x3b\x44\x49\x35\x3c\x3c\x36\ +\x43\x45\x47\x55\x5d\x48\x56\x5d\x3e\x47\x4a\x38\x47\x4a\x00\x00\ +\x00\x83\xb0\xdc\x76\xa7\xd3\x3f\x6a\xa5\x56\x7b\xb1\x54\x7c\xb0\ +\x57\x85\xb6\x52\x6b\xa2\x4e\x7b\xb3\x4d\x7a\xab\x4a\x6b\xab\x56\ +\x8a\xc3\x47\x6f\xae\xa9\xce\xec\xc1\xe1\xf2\xc2\xe2\xf0\xba\xdc\ +\xeb\xbc\xdf\xef\xbb\xdd\xed\xa9\xd4\xe8\xa8\xd2\xe7\xa9\xd3\xe9\ +\x91\xb9\xd2\x90\xb3\xcf\xa9\xd0\xe4\xb3\xd6\xe7\x9d\xc5\xd8\x99\ +\xc1\xd8\x8c\xb8\xcd\x66\x86\x9d\x45\x5f\x6e\x38\x48\x4d\x3a\x3e\ +\x45\x59\x5d\x62\x58\x5e\x65\x55\x62\x6f\x58\x68\x73\x4b\x5e\x64\ +\x3d\x53\x5e\x3e\x4b\x51\x3d\x46\x47\x3b\x43\x4a\x31\x3c\x42\x31\ +\x37\x3b\x31\x3d\x40\x2b\x31\x35\x2e\x3a\x3b\x2f\x33\x33\x2e\x33\ +\x33\x2f\x33\x33\x2d\x31\x31\x33\x35\x35\x30\x37\x34\x2e\x2f\x2d\ +\x2f\x31\x32\x37\x3b\x3d\x36\x39\x39\x31\x31\x33\x36\x36\x34\x32\ +\x36\x32\x33\x36\x38\x31\x37\x34\x39\x3a\x3c\x3a\x42\x46\x3e\x52\ +\x57\x3e\x51\x50\x32\x3a\x3c\x32\x38\x3c\x3a\x42\x42\x41\x46\x44\ +\x41\x47\x48\x36\x3a\x37\x39\x44\x47\x3c\x42\x46\x3a\x3f\x40\x3a\ +\x46\x48\x3e\x45\x45\x3e\x48\x44\x3d\x3f\x3d\x3b\x42\x41\x37\x39\ +\x3a\x3c\x3f\x42\x38\x3f\x42\x39\x41\x3e\x34\x3b\x3a\x3a\x43\x49\ +\x3b\x42\x43\x2f\x38\x35\x37\x39\x3c\x3d\x42\x45\x33\x38\x38\x36\ +\x3a\x36\x3f\x41\x45\x38\x3e\x44\x3c\x42\x46\x37\x41\x46\x38\x40\ +\x3f\x35\x40\x45\x34\x3e\x40\x39\x44\x4a\x31\x3c\x3b\x39\x46\x46\ +\x40\x44\x48\x45\x4e\x51\x3b\x43\x44\x3e\x49\x50\x3a\x49\x4f\x3a\ +\x43\x48\x43\x4a\x52\x3a\x41\x46\x32\x37\x3e\x38\x3d\x3f\x37\x3e\ +\x3d\x40\x47\x47\x3d\x49\x48\x42\x4c\x54\x40\x45\x4b\x42\x46\x47\ +\x46\x50\x51\x42\x49\x4c\x33\x40\x3f\x38\x48\x4c\x3c\x46\x4d\x42\ +\x4b\x55\x46\x54\x57\x43\x4e\x4d\x3c\x44\x46\x3f\x47\x48\x34\x3d\ +\x42\x31\x3e\x3b\x31\x3a\x3e\x39\x47\x47\x39\x43\x4c\x34\x3f\x3f\ +\x38\x43\x3f\x3f\x4b\x4e\x46\x4e\x53\x41\x4d\x52\x46\x55\x5b\x3f\ +\x4c\x51\x35\x3f\x42\x39\x47\x4c\x4a\x5a\x63\x3f\x49\x4c\x3d\x45\ +\x4a\x46\x54\x5a\x3a\x43\x43\x33\x3b\x3f\x33\x41\x44\x3e\x47\x4c\ +\x36\x3e\x40\x40\x46\x47\x41\x44\x49\x3e\x4f\x53\x44\x4d\x52\x40\ +\x4f\x57\x41\x46\x4c\x35\x3a\x3c\x3d\x4f\x56\x38\x46\x47\x40\x4c\ +\x50\x3c\x46\x49\x35\x3f\x41\x39\x42\x42\x00\x00\x00\x7e\xa9\xd2\ +\x7a\xa1\xcf\x6b\x96\xc5\x4b\x74\xa5\x5a\x83\xb7\x4d\x73\xa4\x56\ +\x84\xba\x44\x79\xb4\x51\x7e\xba\x57\x91\xca\x56\x87\xc1\x63\x8f\ +\xc7\xc4\xe7\xf6\xbe\xdf\xee\xc4\xe5\xf3\xc9\xe7\xf6\xb1\xda\xeb\ +\xa7\xd4\xea\xb6\xdb\xef\xb3\xd7\xec\xaf\xd6\xe8\xb8\xd8\xea\xaf\ +\xd5\xe8\xa2\xca\xdf\xa4\xcc\xe1\x6a\x8a\xa3\x49\x67\x77\x2c\x3e\ +\x48\x34\x40\x45\x45\x57\x5c\x44\x53\x60\x4c\x54\x61\x57\x64\x6b\ +\x6b\x72\x7c\x80\x91\x93\x49\x52\x58\x44\x52\x56\x3f\x4b\x51\x39\ +\x3b\x3b\x33\x39\x36\x2c\x2e\x2f\x2a\x32\x33\x2a\x34\x3b\x32\x37\ +\x3f\x2f\x3a\x3c\x29\x2f\x2b\x2d\x2f\x2d\x30\x32\x31\x35\x34\x32\ +\x2d\x35\x39\x2e\x31\x31\x2f\x35\x31\x34\x3b\x37\x35\x35\x35\x33\ +\x33\x33\x33\x33\x33\x37\x3e\x40\x39\x3c\x3d\x3c\x41\x41\x3b\x42\ +\x43\x39\x48\x48\x39\x41\x40\x33\x3f\x3e\x3c\x49\x4d\x3e\x46\x49\ +\x3b\x42\x44\x37\x41\x3e\x34\x41\x3d\x38\x3d\x3c\x35\x38\x37\x3c\ +\x45\x47\x3a\x4a\x4b\x37\x45\x43\x33\x36\x33\x31\x36\x35\x39\x40\ +\x40\x2d\x31\x2d\x34\x38\x38\x2f\x35\x36\x35\x3e\x3d\x36\x3f\x3d\ +\x46\x50\x4f\x3f\x48\x48\x34\x3b\x3a\x33\x33\x3c\x35\x36\x36\x3b\ +\x41\x44\x3e\x49\x4c\x3b\x43\x47\x3b\x46\x46\x3f\x48\x45\x3d\x45\ +\x44\x3d\x46\x49\x3c\x41\x48\x3c\x41\x43\x39\x40\x3e\x3f\x49\x4d\ +\x40\x4a\x51\x41\x4d\x59\x3e\x48\x4b\x40\x4b\x48\x3c\x43\x45\x3a\ +\x3d\x40\x33\x39\x39\x39\x42\x44\x40\x45\x4c\x44\x4d\x50\x3a\x41\ +\x42\x39\x3f\x3d\x38\x43\x43\x3a\x47\x4c\x3d\x4b\x4e\x3d\x4a\x4c\ +\x3a\x45\x48\x39\x39\x3b\x32\x36\x36\x34\x3d\x3c\x31\x36\x33\x33\ +\x39\x3d\x37\x42\x46\x39\x41\x44\x3c\x40\x40\x35\x3f\x40\x31\x3a\ +\x39\x37\x3f\x3f\x34\x35\x38\x32\x3e\x40\x37\x45\x47\x3d\x47\x45\ +\x39\x44\x45\x43\x53\x52\x40\x4f\x50\x40\x46\x4a\x44\x4a\x4a\x37\ +\x3e\x40\x36\x41\x43\x39\x48\x49\x44\x4d\x4e\x40\x4a\x49\x46\x53\ +\x5b\x3d\x46\x47\x3d\x47\x4d\x44\x4a\x4e\x41\x49\x4f\x43\x4b\x4a\ +\x3a\x45\x4a\x47\x57\x63\x4c\x5e\x65\x49\x5d\x62\x40\x50\x50\x54\ +\x60\x63\x51\x60\x67\x41\x50\x56\x37\x43\x48\x44\x4d\x54\x3f\x44\ +\x4b\x45\x52\x59\x41\x4a\x51\x41\x4c\x51\x42\x50\x52\x3e\x49\x4c\ +\x3b\x43\x49\x43\x51\x55\x00\x00\x00\x84\xaa\xd5\x75\xa3\xce\x6f\ +\x9a\xbf\x61\x8b\xb8\x5e\x89\xbd\x5f\x83\xae\x67\x96\xcc\x44\x7b\ +\xb5\x47\x7a\xb8\x5d\x95\xcc\x4a\x79\xbb\x87\xb2\xdc\xbd\xe1\xf2\ +\xbe\xe3\xf3\xb2\xd6\xeb\xba\xdf\xf3\x97\xcd\xe9\x73\xaa\xd0\xa6\ +\xc9\xe4\xbf\xe2\xf0\xb8\xdc\xeb\xb0\xd7\xe5\xac\xd4\xe8\x87\xb2\ +\xcb\x46\x65\x77\x2a\x44\x4d\x36\x42\x4d\x3b\x47\x4a\x3c\x42\x42\ +\x50\x55\x63\x65\x74\x7b\x64\x71\x7d\x55\x69\x70\x51\x5f\x69\x4a\ +\x5d\x69\x43\x44\x45\x3b\x45\x49\x37\x41\x45\x33\x43\x49\x3e\x53\ +\x59\x38\x47\x48\x34\x42\x46\x2e\x36\x39\x2d\x2e\x2c\x2d\x36\x34\ +\x32\x3f\x3e\x32\x36\x31\x30\x35\x34\x2f\x35\x35\x33\x3b\x3a\x35\ +\x3c\x3e\x39\x42\x40\x38\x3f\x3b\x35\x3d\x39\x38\x3f\x43\x38\x41\ +\x42\x37\x44\x49\x33\x37\x35\x35\x37\x35\x38\x39\x3c\x33\x37\x37\ +\x3a\x3e\x43\x3b\x45\x48\x37\x3d\x3b\x31\x36\x33\x36\x3c\x38\x35\ +\x42\x40\x36\x3e\x3f\x34\x3a\x37\x34\x3d\x3e\x34\x3b\x40\x38\x42\ +\x40\x38\x3e\x39\x3d\x3e\x3f\x39\x3e\x41\x3a\x44\x43\x34\x3e\x3e\ +\x3a\x43\x4a\x46\x4b\x50\x3e\x4a\x4c\x38\x40\x3e\x33\x36\x36\x2d\ +\x30\x31\x30\x39\x3c\x3a\x44\x49\x33\x39\x3a\x34\x3b\x39\x44\x4c\ +\x4e\x3f\x49\x48\x35\x3c\x3c\x33\x38\x37\x33\x3a\x39\x34\x3b\x3c\ +\x4c\x53\x5c\x41\x46\x4c\x42\x46\x49\x44\x54\x57\x45\x4f\x52\x3c\ +\x46\x4b\x3b\x45\x49\x38\x3e\x3d\x34\x39\x36\x3c\x45\x48\x4d\x54\ +\x5a\x47\x4b\x4a\x35\x3d\x3f\x36\x35\x35\x37\x3e\x42\x35\x3f\x3e\ +\x37\x42\x44\x39\x47\x4a\x47\x51\x59\x37\x43\x44\x36\x3c\x3f\x4c\ +\x58\x5e\x48\x59\x60\x41\x4b\x50\x42\x49\x4a\x3e\x4c\x50\x42\x50\ +\x53\x43\x4e\x51\x37\x3a\x3c\x3b\x40\x42\x41\x4e\x53\x49\x54\x59\ +\x42\x4c\x4d\x3e\x49\x4e\x38\x3f\x3e\x35\x41\x3f\x37\x3c\x3e\x36\ +\x40\x44\x31\x33\x32\x33\x36\x38\x36\x3a\x3f\x3e\x51\x53\x43\x52\ +\x55\x3d\x49\x4a\x35\x3e\x40\x33\x3a\x3c\x31\x3a\x3e\x40\x48\x46\ +\x3f\x4c\x51\x3f\x4a\x4b\x34\x3b\x3d\x35\x3d\x39\x3f\x4c\x4f\x3d\ +\x41\x48\x42\x4d\x50\x40\x4b\x4b\x41\x4f\x55\x42\x4c\x51\x37\x43\ +\x49\x3f\x46\x48\x46\x52\x59\x43\x4a\x50\x4a\x55\x5b\x44\x4a\x4c\ +\x3c\x44\x48\x36\x45\x4c\x3f\x47\x49\x3a\x3d\x44\x41\x4f\x53\x3a\ +\x43\x47\x00\x00\x00\x75\x9f\xc7\x7a\xaa\xd4\x8f\xc6\xe6\x4f\x87\ +\xc1\x59\x80\xb5\x50\x74\xae\x5e\x89\xb6\x4b\x70\xab\x6d\x9f\xce\ +\x91\xc0\xe1\xb1\xd9\xf0\xaf\xd9\xef\xa5\xd1\xea\xa7\xd5\xec\x96\ +\xc9\xe5\x83\xbd\xe0\x8a\xbf\xe4\xb4\xdc\xf0\xbd\xdc\xef\xb4\xd9\ +\xea\xb2\xd6\xe9\xaf\xd8\xea\x58\x7e\x92\x30\x46\x59\x37\x45\x54\ +\x45\x50\x55\x52\x5a\x5e\x51\x5e\x5f\x59\x5e\x69\x70\x7c\x83\x93\ +\x9c\xa4\x65\x74\x73\x48\x50\x54\x41\x4b\x52\x3d\x48\x50\x33\x39\ +\x38\x3a\x43\x4b\x38\x45\x4b\x2b\x36\x37\x2d\x39\x39\x32\x38\x3b\ +\x3b\x46\x4d\x33\x40\x3f\x32\x3a\x36\x2f\x31\x2e\x2c\x2f\x2f\x2c\ +\x33\x30\x2c\x33\x2d\x36\x3b\x3b\x2e\x31\x30\x33\x39\x3a\x33\x36\ +\x36\x32\x34\x32\x32\x36\x33\x35\x3a\x3b\x31\x3d\x39\x30\x39\x39\ +\x39\x3d\x3d\x38\x43\x44\x3c\x4a\x4e\x3b\x47\x4a\x36\x42\x43\x33\ +\x38\x39\x37\x3d\x3b\x3e\x46\x47\x3f\x46\x49\x34\x3d\x3d\x30\x36\ +\x31\x3c\x49\x49\x34\x43\x40\x34\x3b\x36\x31\x34\x31\x33\x39\x39\ +\x3f\x48\x4b\x39\x46\x4a\x37\x43\x3d\x32\x3b\x3a\x38\x3e\x3e\x3f\ +\x42\x45\x3a\x41\x40\x30\x36\x38\x35\x3a\x3b\x3e\x46\x4a\x3b\x45\ +\x48\x38\x45\x49\x41\x4a\x4b\x43\x4e\x4c\x3e\x4e\x4f\x3b\x44\x40\ +\x3d\x46\x42\x39\x48\x49\x3d\x4d\x50\x45\x55\x57\x3a\x3f\x3f\x34\ +\x39\x3a\x31\x3a\x3c\x31\x3a\x36\x38\x40\x43\x3e\x4c\x4f\x2d\x36\ +\x35\x34\x41\x43\x38\x44\x48\x37\x44\x42\x34\x3b\x3c\x31\x35\x35\ +\x3a\x40\x3f\x40\x49\x4b\x38\x42\x42\x34\x3f\x3e\x36\x3d\x3d\x31\ +\x36\x37\x36\x3c\x3c\x38\x3a\x39\x37\x41\x43\x3b\x4e\x54\x35\x42\ +\x43\x35\x3c\x3d\x32\x39\x37\x3d\x48\x49\x43\x4d\x4c\x38\x3d\x3c\ +\x3a\x43\x43\x3f\x4a\x4e\x3b\x47\x4b\x33\x3b\x3d\x2d\x31\x35\x32\ +\x35\x39\x41\x49\x4d\x42\x4c\x4a\x3e\x46\x45\x34\x3f\x43\x44\x4f\ +\x54\x43\x4f\x52\x3e\x4b\x4f\x3e\x4a\x51\x38\x42\x45\x38\x46\x48\ +\x37\x3f\x3d\x37\x41\x43\x39\x49\x4d\x44\x4f\x53\x39\x3e\x43\x35\ +\x3a\x40\x41\x4a\x4e\x3f\x4e\x4d\x39\x49\x4c\x3b\x4d\x53\x3a\x4c\ +\x4e\x34\x3d\x3f\x3d\x4f\x51\x34\x3d\x42\x3e\x4d\x5a\x43\x50\x57\ +\x3e\x4b\x4c\x42\x4f\x53\x43\x50\x55\x37\x40\x41\x41\x44\x4d\x3a\ +\x44\x4f\x37\x3e\x43\x46\x53\x58\x3e\x47\x4f\x38\x43\x47\x00\x00\ +\x00\x7d\xac\xd4\x86\xbc\xde\x6a\x95\xbe\x6c\x9f\xca\x64\x92\xc6\ +\x61\x86\xba\x65\x8b\xb3\x49\x71\xaa\x72\xa4\xd1\x80\xb8\xdc\x81\ +\xbd\xde\x86\xc5\xe6\x52\x85\xb5\x59\x95\xc7\x72\xae\xda\xa3\xd3\ +\xec\xab\xd8\xec\xa0\xcd\xe1\xaa\xd3\xe6\xb7\xdd\xee\xa4\xcb\xdc\ +\x60\x81\x9b\x3d\x50\x60\x3b\x50\x5a\x49\x54\x5e\x55\x64\x6c\x5c\ +\x66\x6f\x67\x76\x7a\x79\x88\x8a\x8b\x96\x9a\x66\x78\x7e\x44\x51\ +\x50\x39\x41\x41\x37\x39\x3c\x2e\x31\x32\x31\x39\x3c\x3c\x4a\x4e\ +\x2e\x38\x33\x31\x34\x37\x36\x40\x48\x39\x42\x48\x29\x32\x32\x2f\ +\x2e\x31\x33\x37\x34\x35\x37\x3c\x35\x3b\x3b\x36\x3e\x3f\x3d\x46\ +\x45\x3d\x45\x47\x38\x42\x44\x36\x43\x48\x3a\x44\x44\x39\x41\x42\ +\x34\x3e\x3f\x31\x3a\x39\x34\x3c\x3e\x3a\x3f\x40\x40\x46\x44\x39\ +\x42\x3e\x3a\x42\x46\x35\x3c\x3d\x3b\x44\x46\x37\x3f\x3d\x38\x3c\ +\x3e\x37\x3b\x3a\x3e\x3d\x40\x3b\x42\x43\x3a\x44\x41\x3b\x3c\x3f\ +\x37\x40\x43\x3b\x44\x44\x33\x3e\x3f\x39\x45\x47\x2e\x37\x36\x34\ +\x42\x43\x2e\x38\x39\x33\x41\x41\x34\x40\x43\x35\x42\x48\x32\x36\ +\x35\x38\x47\x48\x34\x37\x37\x35\x3c\x3e\x3e\x44\x45\x40\x4a\x4e\ +\x3d\x42\x45\x3c\x3f\x46\x3a\x44\x44\x3a\x40\x3f\x3b\x3c\x3d\x44\ +\x50\x52\x45\x57\x57\x48\x51\x59\x47\x51\x52\x3d\x47\x49\x4e\x54\ +\x5b\x47\x51\x50\x4c\x5c\x5a\x47\x4e\x4e\x41\x49\x45\x42\x4e\x4e\ +\x42\x4f\x56\x38\x43\x47\x40\x49\x4e\x44\x4d\x51\x41\x4b\x49\x3c\ +\x43\x45\x38\x47\x48\x41\x47\x48\x3b\x3f\x3f\x3d\x46\x48\x35\x40\ +\x40\x40\x46\x4a\x3e\x4a\x4f\x3b\x44\x44\x37\x44\x44\x34\x3a\x3e\ +\x36\x41\x3f\x32\x3b\x3a\x3b\x44\x45\x3c\x42\x40\x40\x49\x4b\x3f\ +\x49\x4f\x36\x40\x43\x39\x40\x40\x3f\x47\x49\x40\x4f\x52\x40\x4a\ +\x52\x38\x41\x43\x3b\x43\x42\x36\x42\x44\x3d\x46\x4a\x36\x42\x3f\ +\x36\x41\x43\x33\x38\x3d\x32\x34\x34\x2a\x39\x38\x38\x40\x42\x40\ +\x49\x4e\x47\x50\x59\x3a\x45\x49\x3d\x48\x4b\x43\x51\x50\x3e\x47\ +\x48\x36\x3f\x3f\x43\x4c\x4f\x44\x51\x59\x34\x3e\x41\x3e\x4b\x52\ +\x40\x4e\x4f\x3c\x4e\x51\x39\x51\x57\x37\x41\x43\x42\x4d\x51\x41\ +\x4f\x58\x44\x4e\x59\x3d\x46\x4a\x3d\x49\x4d\x42\x4c\x52\x4c\x56\ +\x5e\x49\x53\x53\x49\x51\x53\x46\x54\x5a\x00\x00\x00\x86\xbf\xe3\ +\x83\xb9\xd9\x71\x9c\xc9\xa3\xce\xe7\x56\x75\x92\x41\x5d\x87\x59\ +\x79\xa8\x60\x99\xc5\x70\xa7\xd0\x67\x96\xbe\x67\x9d\xc6\x65\x99\ +\xc0\x2c\x55\x86\x48\x75\xa8\x85\xab\xd2\x9c\xc6\xe1\xa9\xd3\xe8\ +\xac\xd9\xec\x96\xc2\xda\x62\x88\xa0\x45\x65\x7b\x32\x49\x54\x3f\ +\x4f\x59\x45\x56\x65\x77\x84\x8d\x7e\x91\x97\x72\x87\x8c\x67\x6e\ +\x74\x72\x7a\x82\x67\x76\x78\x38\x46\x46\x32\x38\x34\x38\x3e\x43\ +\x30\x34\x32\x30\x3f\x3a\x2b\x31\x33\x30\x37\x3a\x2f\x3a\x36\x39\ +\x43\x42\x35\x3c\x3e\x37\x39\x38\x32\x38\x3b\x3a\x46\x4a\x46\x58\ +\x5d\x34\x3a\x3f\x34\x43\x44\x2e\x37\x39\x35\x3d\x42\x33\x3d\x3c\ +\x30\x33\x30\x34\x3a\x3b\x3b\x43\x46\x39\x44\x4b\x36\x42\x45\x3d\ +\x4c\x54\x33\x3d\x3d\x31\x39\x3a\x34\x36\x39\x39\x3f\x42\x35\x38\ +\x39\x35\x3a\x39\x3a\x3d\x3e\x37\x40\x45\x3a\x42\x45\x39\x42\x42\ +\x38\x40\x43\x36\x3a\x3d\x37\x3a\x3d\x40\x43\x44\x3f\x44\x44\x3a\ +\x41\x3b\x34\x38\x39\x38\x3c\x3e\x38\x41\x41\x39\x40\x41\x3f\x49\ +\x4e\x3e\x49\x4b\x3a\x41\x40\x43\x4c\x52\x3f\x47\x46\x40\x4c\x4d\ +\x37\x3c\x3c\x3b\x41\x42\x41\x4c\x4e\x34\x3a\x3c\x35\x3c\x42\x3e\ +\x49\x4e\x42\x4e\x4b\x38\x3e\x3e\x38\x42\x43\x3e\x45\x4b\x40\x49\ +\x49\x3c\x45\x47\x34\x3a\x36\x36\x3d\x3d\x3a\x3f\x3f\x40\x4b\x4b\ +\x34\x3f\x3e\x38\x40\x44\x38\x3d\x3f\x34\x38\x36\x37\x3c\x41\x40\ +\x49\x4a\x47\x56\x55\x3a\x47\x44\x3c\x44\x42\x38\x40\x45\x44\x4f\ +\x52\x2f\x39\x34\x3a\x41\x43\x36\x3e\x3e\x39\x3f\x40\x39\x3e\x42\ +\x32\x3c\x3d\x3e\x4c\x4b\x37\x46\x44\x37\x45\x44\x40\x4b\x4d\x3b\ +\x46\x4a\x35\x40\x44\x33\x3d\x39\x37\x42\x45\x3d\x47\x47\x3b\x43\ +\x40\x44\x4c\x4f\x3a\x3f\x3e\x30\x38\x37\x2f\x35\x3a\x35\x3d\x3d\ +\x39\x47\x48\x2f\x38\x37\x31\x38\x35\x38\x3f\x43\x39\x44\x47\x3c\ +\x46\x4d\x3f\x4d\x56\x37\x42\x44\x3f\x4f\x56\x37\x3e\x41\x39\x41\ +\x44\x32\x35\x38\x3a\x45\x45\x38\x42\x40\x37\x3e\x3d\x42\x4c\x4d\ +\x3d\x41\x42\x32\x38\x33\x34\x3e\x3e\x3c\x47\x4b\x34\x41\x43\x36\ +\x46\x4b\x38\x43\x47\x3e\x47\x46\x3c\x46\x47\x3c\x48\x4e\x38\x40\ +\x40\x37\x42\x40\x42\x4e\x53\x3f\x4d\x59\x43\x43\x4e\x31\x3b\x38\ +\x3a\x43\x48\x33\x3d\x42\x00\x00\x00\xa0\xcf\xea\xb0\xd8\xef\x83\ +\xb4\xd6\x67\x92\xb4\x4f\x5c\x6e\x4b\x68\x7d\x4e\x6e\x98\x60\x8e\ +\xbf\x69\x96\xc7\x6f\xa2\xc6\x5b\x82\xa3\x54\x7a\x96\x1f\x3f\x63\ +\x4a\x6b\x94\x81\xac\xcf\xa0\xcc\xe4\xa1\xcd\xe3\x61\x80\x93\x40\ +\x56\x69\x46\x57\x68\x4b\x5d\x6f\x51\x64\x69\x5e\x6b\x79\x5f\x70\ +\x7d\x76\x81\x8c\x7b\x8d\x92\x4b\x57\x5e\x61\x69\x71\x41\x44\x42\ +\x39\x3e\x41\x31\x34\x36\x37\x3c\x3f\x32\x3a\x3b\x31\x34\x32\x3a\ +\x44\x48\x32\x3f\x41\x38\x41\x46\x31\x3b\x38\x34\x38\x3a\x2f\x33\ +\x33\x30\x2f\x2f\x2f\x31\x31\x38\x42\x41\x36\x42\x43\x3c\x3c\x3b\ +\x39\x48\x49\x38\x43\x45\x41\x4c\x56\x43\x57\x5d\x3d\x4a\x49\x36\ +\x42\x47\x3c\x4e\x58\x39\x4e\x52\x3a\x4e\x57\x39\x4d\x53\x3a\x3c\ +\x3e\x49\x53\x5a\x49\x52\x55\x3d\x46\x47\x35\x38\x38\x3d\x41\x44\ +\x40\x47\x48\x3c\x43\x4a\x39\x42\x43\x38\x46\x44\x36\x3e\x45\x37\ +\x41\x42\x30\x39\x36\x3d\x45\x4a\x37\x3f\x3f\x3b\x42\x44\x39\x3f\ +\x3f\x3b\x42\x40\x38\x3b\x40\x34\x41\x3e\x35\x43\x42\x3f\x4a\x4b\ +\x33\x3d\x38\x32\x3b\x3c\x32\x38\x37\x38\x38\x3a\x42\x44\x47\x46\ +\x55\x59\x3f\x47\x48\x44\x54\x57\x44\x53\x5f\x44\x4e\x55\x4e\x5e\ +\x67\x3f\x56\x5a\x3d\x4a\x4e\x48\x4f\x54\x40\x4b\x4b\x35\x3d\x3f\ +\x44\x4d\x4d\x47\x4d\x4d\x45\x51\x53\x40\x4c\x52\x48\x57\x5a\x3f\ +\x42\x46\x41\x48\x49\x4c\x51\x54\x3e\x47\x4a\x34\x3d\x3b\x2f\x35\ +\x31\x38\x47\x4c\x3a\x48\x49\x3c\x46\x4b\x36\x39\x3a\x47\x4d\x4f\ +\x48\x54\x56\x42\x4e\x52\x3a\x47\x48\x39\x42\x44\x40\x4b\x51\x31\ +\x3a\x3d\x32\x37\x37\x38\x45\x45\x3a\x3f\x42\x31\x3b\x3c\x36\x3d\ +\x43\x3a\x41\x46\x42\x49\x4d\x37\x3b\x3a\x3b\x42\x42\x3c\x47\x48\ +\x39\x40\x3f\x32\x38\x38\x3b\x43\x49\x3f\x50\x54\x41\x4d\x4e\x3d\ +\x4b\x49\x40\x4d\x55\x3e\x4a\x51\x3d\x50\x5c\x33\x44\x4a\x38\x41\ +\x48\x35\x3d\x3f\x39\x46\x4a\x3e\x54\x5a\x37\x41\x41\x39\x48\x4b\ +\x43\x50\x4f\x39\x44\x45\x43\x50\x54\x3b\x4b\x50\x3b\x48\x49\x31\ +\x3e\x40\x39\x48\x4a\x3c\x4a\x4d\x3c\x49\x4f\x3b\x45\x4b\x34\x41\ +\x46\x3c\x43\x48\x34\x40\x46\x34\x3a\x3b\x3c\x40\x45\x3e\x4a\x4b\ +\x3a\x4a\x50\x46\x56\x59\x3f\x41\x41\x3e\x4a\x4a\x3a\x4b\x49\x37\ +\x43\x42\x00\x00\x00\x89\xb2\xd2\x89\xaf\xd5\x72\xa0\xc9\x6e\x99\ +\xbf\x50\x64\x72\x51\x6e\x90\x56\x79\x99\x43\x60\x89\x71\x9e\xcc\ +\x6a\x9b\xc1\x4f\x6f\x92\x51\x6b\x94\x79\xa3\xc8\x88\xbb\xdb\x90\ +\xba\xda\x5f\x87\x9d\x55\x76\x90\x44\x5c\x6a\x44\x53\x60\x66\x75\ +\x84\x73\x83\x88\x61\x75\x7a\x55\x63\x74\x66\x70\x77\x69\x75\x7a\ +\x49\x50\x56\x4e\x55\x56\x40\x4d\x53\x3b\x43\x41\x36\x3c\x3b\x30\ +\x34\x31\x2f\x30\x31\x32\x32\x30\x31\x37\x33\x2d\x36\x36\x33\x39\ +\x36\x3a\x43\x43\x2e\x34\x31\x32\x37\x33\x34\x3a\x3a\x33\x3a\x37\ +\x3e\x49\x4a\x47\x52\x53\x35\x3f\x3c\x35\x3b\x39\x36\x3d\x41\x34\ +\x3c\x3e\x39\x3c\x3f\x3d\x4b\x50\x32\x3a\x44\x2d\x39\x3d\x36\x4a\ +\x4f\x34\x41\x47\x36\x43\x44\x35\x3c\x3b\x35\x3a\x41\x32\x37\x37\ +\x31\x36\x3b\x39\x42\x46\x39\x44\x45\x36\x3b\x3d\x34\x3a\x34\x3b\ +\x3f\x44\x3d\x40\x43\x32\x38\x35\x34\x3a\x38\x3b\x45\x47\x3f\x47\ +\x49\x40\x4a\x51\x37\x44\x4a\x37\x3a\x3c\x33\x3a\x3b\x38\x3b\x3c\ +\x31\x36\x34\x34\x3b\x3c\x3c\x47\x4e\x3a\x49\x4d\x3c\x48\x44\x46\ +\x4d\x52\x3d\x44\x45\x38\x3d\x3d\x38\x3f\x3f\x3a\x44\x4a\x38\x44\ +\x46\x39\x4b\x4f\x3f\x4f\x4f\x38\x43\x41\x3d\x49\x47\x43\x4b\x49\ +\x3a\x3f\x40\x37\x3c\x3f\x43\x4d\x4d\x4b\x57\x57\x3d\x49\x49\x41\ +\x4b\x4f\x38\x45\x41\x3b\x42\x44\x37\x40\x41\x3f\x47\x4a\x3c\x47\ +\x49\x3e\x46\x46\x3b\x3d\x41\x45\x4e\x52\x46\x53\x55\x49\x54\x58\ +\x42\x4b\x53\x3b\x41\x43\x41\x47\x4c\x3d\x51\x51\x44\x4d\x51\x3e\ +\x44\x4d\x2f\x34\x35\x36\x3b\x3f\x36\x3a\x3b\x38\x43\x48\x41\x50\ +\x58\x40\x47\x4d\x38\x3f\x3e\x3a\x44\x47\x3d\x46\x49\x39\x3d\x42\ +\x35\x3a\x3d\x40\x42\x47\x35\x39\x3a\x2a\x31\x2f\x36\x3e\x3f\x4b\ +\x56\x59\x4b\x59\x5e\x3e\x4d\x56\x31\x3c\x3d\x31\x37\x34\x2e\x37\ +\x3a\x35\x3f\x44\x38\x43\x42\x3a\x44\x44\x3d\x4a\x4e\x37\x41\x48\ +\x3e\x4a\x4f\x32\x40\x43\x31\x43\x46\x3b\x46\x55\x39\x44\x48\x32\ +\x3c\x3c\x35\x3a\x3a\x32\x3c\x3d\x2f\x38\x38\x32\x43\x45\x3c\x4c\ +\x53\x35\x39\x3d\x2e\x36\x33\x34\x3c\x3e\x34\x3d\x3c\x31\x38\x37\ +\x31\x43\x46\x35\x40\x3e\x3f\x46\x50\x37\x43\x42\x36\x40\x43\x30\ +\x38\x35\x36\x3f\x3e\x3b\x48\x4c\x41\x51\x56\x37\x4b\x50\x00\x00\ +\x00\x6b\x8f\xb8\x78\xa1\xcc\x62\x85\xb2\x62\x85\xb9\x65\x8a\xaf\ +\x61\x8f\xbb\x50\x79\x9c\x4f\x6c\x96\x54\x75\x9e\x46\x66\x86\x5d\ +\x82\xa6\x5c\x81\xaa\x35\x53\x87\x62\x86\xa7\x58\x7e\x94\x5d\x74\ +\x89\x58\x6f\x7c\x53\x65\x7a\x63\x79\x84\x7c\x84\x90\x6c\x79\x80\ +\x55\x69\x75\x4e\x60\x6e\x52\x5b\x68\x4c\x60\x6a\x3c\x42\x44\x40\ +\x48\x4c\x32\x3b\x39\x3a\x45\x47\x37\x40\x45\x34\x42\x47\x2e\x36\ +\x37\x3a\x43\x43\x36\x3c\x42\x3a\x44\x46\x36\x46\x48\x34\x37\x32\ +\x2e\x38\x34\x36\x3e\x3c\x3b\x3e\x42\x3d\x43\x44\x3e\x47\x45\x3d\ +\x43\x3f\x37\x3b\x3b\x32\x3a\x39\x37\x48\x4d\x42\x55\x5b\x3b\x4b\ +\x54\x49\x5c\x69\x3d\x4b\x54\x3a\x4f\x55\x3d\x4f\x54\x37\x3e\x40\ +\x3c\x43\x45\x39\x42\x46\x3d\x50\x56\x3c\x46\x4a\x3b\x4c\x4f\x39\ +\x44\x4b\x38\x3e\x3e\x36\x3c\x3e\x3c\x46\x45\x3f\x43\x44\x3c\x42\ +\x42\x33\x3e\x3d\x3a\x42\x42\x3c\x42\x41\x31\x3d\x3b\x36\x40\x3f\ +\x38\x3d\x3f\x3e\x43\x48\x3b\x45\x46\x37\x3c\x3d\x38\x3e\x40\x32\ +\x42\x42\x3f\x4c\x51\x39\x41\x41\x38\x40\x3f\x39\x3f\x44\x40\x51\ +\x56\x3e\x4e\x51\x46\x52\x57\x44\x4a\x51\x37\x42\x45\x3d\x46\x45\ +\x35\x39\x3d\x3a\x42\x45\x3c\x45\x45\x33\x37\x36\x36\x3b\x3d\x46\ +\x49\x4e\x45\x51\x52\x43\x51\x55\x4b\x51\x56\x48\x4e\x54\x44\x4d\ +\x4a\x3a\x41\x44\x3e\x4b\x4a\x42\x4e\x54\x49\x55\x58\x48\x54\x5a\ +\x45\x4f\x53\x3f\x46\x4a\x38\x43\x42\x37\x3d\x3d\x38\x3c\x3d\x36\ +\x42\x41\x3a\x46\x44\x44\x51\x53\x36\x3e\x41\x36\x40\x44\x35\x3c\ +\x40\x36\x3f\x42\x36\x44\x45\x3e\x53\x5e\x3c\x4b\x51\x39\x3d\x3f\ +\x3a\x40\x3e\x36\x43\x42\x2d\x37\x34\x39\x41\x45\x40\x50\x53\x43\ +\x4c\x52\x42\x48\x48\x40\x49\x4e\x45\x51\x56\x3a\x41\x44\x41\x4e\ +\x56\x39\x45\x45\x38\x3f\x3f\x3e\x4f\x56\x40\x4b\x52\x39\x41\x46\ +\x39\x44\x47\x33\x38\x39\x32\x39\x39\x36\x42\x44\x36\x43\x4a\x35\ +\x3f\x44\x3a\x4d\x50\x3e\x4a\x54\x34\x3f\x40\x35\x40\x43\x3b\x4d\ +\x53\x3b\x4c\x57\x30\x3c\x3e\x39\x49\x49\x30\x39\x3b\x3a\x45\x45\ +\x3b\x48\x4b\x34\x3a\x3d\x39\x3f\x3f\x38\x49\x4a\x32\x3f\x41\x39\ +\x46\x48\x3b\x44\x47\x40\x4f\x50\x3f\x4d\x4e\x38\x41\x43\x41\x4c\ +\x4f\x43\x52\x5c\x38\x43\x44\x3b\x48\x4a\x00\x00\x00\x74\x9c\xba\ +\x83\xb5\xd2\x4d\x76\x9a\x60\x87\xb9\x6b\x9a\xc7\x6b\x9f\xc6\x5d\ +\x85\xab\x76\x9c\xb9\x48\x6b\x88\x56\x79\xa1\x8d\xb7\xd8\x55\x79\ +\x9a\x48\x64\x7f\x4b\x5f\x74\x58\x76\x85\x5c\x76\x86\x55\x69\x75\ +\x64\x6f\x7e\x6e\x7b\x83\x6b\x7a\x82\x54\x60\x6d\x60\x66\x6d\x4c\ +\x5a\x62\x44\x4e\x52\x40\x4b\x4d\x36\x3d\x3d\x3c\x3a\x3c\x2e\x37\ +\x38\x36\x3b\x3e\x34\x3a\x3e\x30\x37\x38\x2f\x3e\x3b\x31\x3d\x39\ +\x31\x37\x35\x32\x3c\x39\x34\x3e\x3c\x36\x45\x44\x37\x46\x48\x38\ +\x3b\x38\x38\x40\x43\x32\x3a\x3a\x32\x3c\x42\x2e\x37\x3d\x3a\x4f\ +\x51\x37\x47\x4d\x40\x4a\x56\x3b\x43\x4b\x3c\x47\x4c\x3c\x4a\x51\ +\x41\x4a\x4c\x39\x43\x49\x31\x3f\x42\x33\x3f\x3c\x3d\x42\x41\x3e\ +\x4c\x4c\x38\x46\x4a\x3a\x40\x42\x33\x3b\x3e\x35\x45\x47\x40\x52\ +\x58\x33\x40\x40\x37\x39\x3b\x3f\x45\x49\x35\x3c\x3a\x34\x39\x38\ +\x36\x3d\x3c\x38\x41\x40\x35\x3f\x40\x39\x45\x42\x39\x40\x42\x37\ +\x34\x34\x2f\x3a\x39\x41\x4f\x51\x3f\x49\x47\x44\x4e\x56\x42\x47\ +\x4e\x3c\x41\x42\x37\x43\x43\x40\x4a\x4b\x3c\x47\x48\x4c\x5c\x62\ +\x3f\x4b\x4c\x38\x41\x40\x3e\x48\x4f\x44\x4f\x53\x4d\x57\x5a\x42\ +\x4b\x4d\x43\x4a\x47\x43\x4b\x48\x46\x54\x53\x3e\x48\x48\x3c\x44\ +\x44\x42\x48\x44\x47\x4f\x53\x36\x41\x40\x42\x4d\x4b\x44\x51\x5a\ +\x44\x4b\x4e\x42\x50\x57\x3f\x46\x49\x36\x3b\x38\x32\x36\x31\x37\ +\x3f\x3d\x35\x45\x45\x3e\x4d\x4d\x3e\x4d\x4c\x38\x41\x3f\x31\x3a\ +\x3c\x39\x42\x47\x3d\x4b\x4b\x3c\x44\x43\x3f\x4a\x4d\x47\x58\x5d\ +\x3f\x49\x4b\x3c\x46\x4a\x32\x3d\x3d\x33\x36\x36\x30\x38\x3a\x39\ +\x3e\x43\x43\x4c\x50\x46\x52\x53\x42\x4a\x4e\x30\x36\x37\x2e\x30\ +\x30\x33\x3b\x3a\x2f\x33\x35\x39\x3d\x3f\x38\x43\x44\x2c\x33\x34\ +\x33\x40\x3c\x38\x43\x43\x3a\x48\x4d\x41\x4a\x4f\x3d\x43\x45\x31\ +\x3c\x3c\x43\x4d\x51\x38\x47\x4a\x3e\x46\x49\x3c\x49\x4c\x34\x43\ +\x47\x2e\x34\x38\x2f\x41\x46\x3a\x45\x4c\x3a\x47\x4e\x38\x43\x45\ +\x34\x41\x43\x37\x43\x44\x38\x40\x42\x3d\x47\x4c\x35\x42\x43\x31\ +\x40\x3b\x39\x4e\x51\x3b\x47\x4a\x38\x44\x45\x37\x40\x43\x38\x3c\ +\x3e\x35\x44\x45\x31\x37\x39\x3c\x4c\x50\x44\x50\x58\x43\x53\x5b\ +\x35\x43\x43\x3a\x46\x49\x00\x00\x00\x79\x9b\xb8\x81\xa8\xcc\x87\ +\xba\xdd\x79\xa6\xd5\x72\x9d\xc5\x57\x82\xb1\x61\x8a\xb5\x66\x87\ +\xb0\x7f\xae\xcc\x46\x6c\x91\x44\x61\x87\x55\x71\x88\x4b\x60\x6d\ +\x5a\x73\x85\x5e\x7c\x8c\x53\x6a\x78\x4d\x60\x71\x56\x64\x6e\x5c\ +\x66\x72\x4a\x59\x66\x5c\x66\x70\x4d\x55\x58\x3f\x46\x43\x38\x3b\ +\x3a\x3b\x46\x45\x37\x3e\x43\x36\x3e\x45\x33\x40\x44\x36\x3c\x3f\ +\x31\x32\x30\x31\x32\x2f\x3b\x41\x43\x3c\x3e\x3d\x32\x3b\x3b\x30\ +\x38\x38\x36\x39\x3b\x41\x4b\x4e\x47\x55\x5a\x41\x47\x48\x3b\x45\ +\x48\x39\x41\x49\x43\x47\x4e\x3f\x4e\x53\x3f\x4d\x50\x36\x3f\x43\ +\x3f\x44\x49\x40\x46\x47\x36\x39\x38\x2f\x34\x30\x30\x36\x34\x2c\ +\x32\x32\x2d\x30\x30\x2b\x32\x34\x31\x35\x37\x2b\x31\x33\x2b\x31\ +\x31\x33\x39\x3d\x36\x43\x43\x34\x45\x46\x3b\x4a\x4c\x36\x43\x44\ +\x3a\x46\x49\x39\x42\x49\x34\x3a\x39\x2d\x32\x31\x32\x35\x34\x34\ +\x38\x37\x33\x3b\x3d\x31\x3a\x3a\x42\x47\x44\x39\x41\x44\x42\x4b\ +\x4f\x39\x47\x4a\x34\x40\x42\x33\x3d\x3c\x2e\x3a\x37\x3b\x47\x45\ +\x3d\x48\x47\x39\x40\x3e\x37\x3e\x3e\x3e\x46\x46\x42\x45\x4a\x35\ +\x3f\x3d\x46\x50\x53\x46\x50\x52\x3d\x46\x48\x3e\x45\x43\x49\x4b\ +\x4e\x4b\x4f\x53\x44\x4e\x52\x3e\x46\x48\x40\x43\x49\x3c\x40\x44\ +\x3a\x3f\x42\x4a\x59\x5f\x39\x42\x46\x3b\x41\x43\x35\x3d\x3a\x34\ +\x44\x41\x3c\x45\x49\x3c\x49\x46\x45\x4c\x4d\x3e\x42\x48\x3c\x47\ +\x49\x3f\x49\x4e\x39\x47\x47\x42\x4c\x53\x43\x51\x57\x48\x54\x59\ +\x3f\x49\x49\x42\x47\x49\x41\x4a\x51\x43\x49\x50\x39\x42\x4b\x35\ +\x44\x46\x31\x3b\x3c\x3d\x49\x49\x3a\x48\x4b\x3c\x43\x49\x36\x3c\ +\x3f\x35\x3d\x42\x32\x3d\x38\x38\x48\x47\x3b\x4b\x4c\x44\x52\x57\ +\x3d\x48\x4a\x3c\x4d\x4d\x36\x39\x39\x36\x3d\x3f\x3b\x43\x41\x39\ +\x43\x43\x3a\x45\x45\x35\x3e\x3f\x32\x38\x39\x39\x40\x42\x3b\x47\ +\x51\x38\x46\x4f\x3a\x3e\x42\x39\x43\x46\x32\x38\x3a\x3f\x4b\x53\ +\x3a\x4b\x57\x3b\x46\x4b\x36\x3d\x42\x31\x3a\x3c\x38\x44\x48\x38\ +\x44\x47\x36\x3c\x3a\x30\x3a\x3b\x31\x3a\x38\x3b\x42\x4c\x34\x3e\ +\x44\x30\x37\x38\x32\x3c\x3e\x3c\x4e\x54\x41\x55\x5e\x3e\x49\x4b\ +\x3a\x45\x42\x3e\x49\x4b\x45\x53\x53\x46\x50\x51\x47\x4d\x51\x42\ +\x4b\x50\x00\x00\x00\x92\xb5\xcf\xbc\xdd\xf0\x91\xbd\xdc\x73\x9d\ +\xc5\x8d\xb7\xd6\x95\xc3\xdc\x4d\x76\xa1\x48\x6f\x93\x42\x5c\x7b\ +\x34\x4e\x64\x52\x71\x88\x47\x5d\x6e\x55\x66\x71\x54\x6c\x7c\x57\ +\x6f\x7e\x72\x7e\x8a\x50\x66\x70\x59\x69\x74\x4c\x57\x6b\x4b\x56\ +\x5a\x4b\x4f\x50\x45\x4a\x50\x34\x40\x41\x33\x34\x34\x34\x40\x44\ +\x35\x42\x46\x2d\x34\x34\x3a\x42\x47\x32\x3e\x3e\x3a\x3d\x3f\x32\ +\x3b\x32\x33\x2f\x32\x33\x38\x31\x30\x39\x35\x36\x46\x46\x3a\x4b\ +\x4a\x3f\x47\x4a\x35\x39\x36\x36\x3b\x39\x3a\x3f\x46\x3f\x46\x48\ +\x3b\x40\x3f\x3f\x45\x43\x3f\x47\x44\x3a\x41\x42\x3e\x42\x45\x36\ +\x41\x3f\x41\x44\x4a\x40\x45\x48\x39\x47\x46\x3e\x43\x41\x3b\x43\ +\x47\x40\x44\x4a\x3e\x49\x48\x3e\x44\x46\x3c\x44\x45\x34\x3b\x3c\ +\x33\x3a\x3e\x34\x3b\x3b\x2e\x34\x36\x2f\x33\x32\x34\x44\x47\x31\ +\x3f\x3e\x39\x41\x41\x3f\x51\x58\x36\x45\x41\x3c\x43\x43\x3f\x42\ +\x46\x44\x4d\x53\x47\x55\x59\x41\x43\x46\x3c\x42\x43\x39\x42\x43\ +\x3f\x4b\x4f\x43\x51\x59\x3c\x49\x48\x47\x56\x59\x47\x55\x5b\x46\ +\x4b\x4b\x48\x52\x53\x45\x4d\x50\x3b\x41\x3d\x43\x4a\x4d\x3e\x4b\ +\x53\x35\x3f\x3f\x39\x45\x44\x3f\x4e\x4f\x41\x4c\x4e\x3c\x40\x46\ +\x38\x41\x40\x3b\x44\x47\x42\x4d\x4f\x44\x4d\x52\x43\x52\x57\x40\ +\x51\x54\x44\x4d\x4e\x42\x47\x4f\x3e\x43\x46\x42\x4e\x52\x42\x4d\ +\x55\x46\x56\x5d\x3d\x44\x49\x3e\x45\x4c\x35\x3c\x3b\x33\x31\x33\ +\x32\x3b\x36\x31\x3b\x3c\x42\x4c\x4f\x3e\x49\x4a\x3e\x4a\x4f\x3d\ +\x44\x4a\x3b\x45\x4a\x3b\x4a\x49\x3e\x50\x52\x36\x3e\x41\x3b\x48\ +\x4a\x40\x44\x47\x3b\x49\x4c\x3c\x42\x3f\x3e\x48\x4c\x32\x3b\x3f\ +\x36\x45\x48\x39\x45\x49\x3b\x4c\x50\x3c\x42\x46\x33\x35\x3c\x38\ +\x40\x49\x39\x43\x47\x3f\x4b\x4f\x43\x4c\x4d\x37\x40\x46\x30\x39\ +\x38\x2e\x35\x34\x34\x3f\x3f\x3e\x49\x4c\x39\x46\x48\x30\x34\x3c\ +\x36\x3b\x41\x35\x45\x48\x3e\x4a\x4a\x3f\x4e\x54\x39\x42\x48\x2d\ +\x34\x36\x36\x40\x3d\x3a\x44\x47\x39\x48\x4c\x31\x3e\x40\x38\x45\ +\x47\x41\x4a\x4f\x38\x48\x4f\x34\x3d\x40\x31\x3c\x3c\x3f\x4a\x4c\ +\x3d\x49\x4b\x3e\x4d\x50\x34\x3f\x41\x39\x42\x43\x3b\x49\x48\x38\ +\x3e\x3f\x37\x3f\x42\x40\x49\x4c\x35\x37\x3d\x33\x38\x37\x00\x00\ +\x00\x87\xac\xca\x90\xb3\xd4\xa7\xcc\xe5\xb5\xd8\xee\x9d\xca\xe4\ +\x69\x97\xba\x4e\x75\x91\x4d\x72\x8c\x5d\x75\x8b\x4e\x5d\x69\x4b\ +\x5c\x6d\x52\x67\x75\x57\x69\x7a\x6b\x79\x85\x58\x68\x74\x58\x62\ +\x70\x54\x63\x71\x54\x5f\x70\x48\x54\x60\x4a\x55\x5c\x47\x54\x56\ +\x3d\x45\x4f\x44\x58\x65\x39\x4a\x51\x32\x3a\x3b\x37\x3c\x42\x31\ +\x39\x3b\x3b\x40\x44\x34\x38\x30\x35\x37\x38\x39\x3c\x3c\x40\x43\ +\x46\x41\x46\x44\x3f\x46\x48\x48\x4e\x53\x42\x48\x4b\x47\x4f\x53\ +\x3c\x44\x44\x3d\x42\x41\x38\x41\x42\x38\x3a\x38\x37\x3b\x37\x31\ +\x38\x39\x3d\x4a\x4b\x39\x47\x49\x37\x42\x44\x3e\x42\x46\x4b\x5c\ +\x6b\x3d\x4e\x54\x39\x44\x45\x3f\x47\x49\x3b\x43\x43\x36\x3a\x3a\ +\x31\x39\x36\x34\x3c\x37\x3f\x45\x48\x3d\x42\x46\x37\x3f\x43\x36\ +\x3f\x3d\x37\x3d\x3e\x39\x3c\x41\x3a\x43\x4a\x2f\x3a\x3c\x2f\x37\ +\x34\x2c\x32\x33\x32\x38\x3a\x34\x3d\x41\x32\x39\x38\x31\x38\x3c\ +\x36\x44\x49\x3b\x47\x4e\x3e\x49\x48\x35\x3e\x3e\x3c\x48\x4d\x33\ +\x3f\x3f\x3a\x40\x40\x47\x4a\x4f\x35\x3c\x3d\x3c\x44\x46\x3c\x43\ +\x44\x3f\x4b\x4a\x40\x4e\x4f\x43\x4c\x4f\x41\x4a\x4e\x48\x54\x59\ +\x48\x4f\x51\x39\x40\x40\x44\x4f\x56\x47\x52\x57\x4c\x58\x63\x3c\ +\x45\x4b\x38\x45\x4f\x3f\x4f\x4d\x3f\x4d\x51\x33\x3f\x42\x33\x3b\ +\x3c\x3b\x41\x45\x3b\x47\x47\x41\x4e\x51\x3a\x43\x46\x31\x39\x38\ +\x2a\x2f\x31\x39\x3f\x47\x45\x4e\x50\x46\x50\x50\x3c\x45\x45\x43\ +\x4f\x59\x3c\x4e\x5a\x3b\x49\x49\x34\x42\x40\x33\x45\x45\x31\x3f\ +\x46\x32\x3d\x48\x36\x41\x46\x3b\x43\x46\x42\x50\x56\x40\x4c\x52\ +\x31\x38\x38\x30\x3b\x3f\x3f\x47\x4c\x3b\x41\x45\x3d\x4a\x4e\x44\ +\x4f\x53\x38\x45\x46\x32\x3b\x36\x3a\x46\x4b\x33\x43\x47\x2e\x38\ +\x3a\x34\x3d\x3c\x32\x37\x36\x3d\x43\x44\x40\x49\x4b\x3a\x47\x49\ +\x3c\x4b\x4d\x37\x3f\x42\x35\x3f\x3c\x3d\x49\x4f\x37\x41\x45\x44\ +\x56\x5e\x3e\x42\x46\x38\x3b\x3e\x31\x38\x35\x38\x47\x4a\x32\x40\ +\x40\x37\x45\x4a\x37\x4b\x50\x3b\x47\x4d\x41\x4a\x4e\x3b\x43\x44\ +\x31\x3e\x42\x33\x3c\x40\x32\x3b\x40\x2f\x3b\x3c\x35\x3d\x42\x32\ +\x35\x37\x33\x42\x43\x3b\x42\x47\x33\x37\x37\x39\x3c\x3e\x42\x4c\ +\x4f\x3c\x47\x4b\x35\x41\x44\x47\x57\x5d\x00\x00\x00\xa3\xc5\xe1\ +\xbc\xdd\xf0\xb9\xdc\xee\x9e\xc7\xda\x7f\xa7\xc1\x3d\x53\x67\x46\ +\x61\x75\x46\x5f\x76\x5e\x7b\x8e\x6d\x80\x90\x73\x81\x8b\x52\x63\ +\x72\x56\x6b\x7b\x68\x75\x81\x59\x69\x78\x54\x58\x60\x4c\x57\x5d\ +\x3b\x48\x51\x48\x4d\x54\x43\x52\x5c\x4b\x5d\x68\x36\x42\x49\x33\ +\x3d\x40\x37\x3d\x41\x37\x41\x43\x40\x4e\x4f\x35\x3c\x39\x39\x3b\ +\x3a\x3a\x3f\x3f\x3e\x41\x3f\x38\x3c\x3d\x35\x3a\x3b\x39\x3b\x3c\ +\x34\x37\x39\x35\x3a\x36\x33\x3a\x39\x36\x3a\x3c\x34\x39\x37\x3b\ +\x3d\x3e\x3a\x3f\x3c\x3b\x42\x3f\x3b\x42\x40\x37\x3b\x3d\x37\x3f\ +\x42\x39\x43\x46\x35\x3c\x3e\x42\x43\x50\x38\x46\x5b\x4c\x60\x76\ +\x35\x3f\x3e\x31\x38\x39\x3a\x3d\x3c\x3f\x49\x4a\x36\x41\x3a\x36\ +\x3b\x39\x2d\x32\x30\x32\x34\x32\x30\x32\x34\x31\x3d\x3a\x35\x3c\ +\x3d\x3c\x3f\x41\x3c\x43\x47\x3c\x47\x47\x3a\x3f\x41\x39\x45\x48\ +\x38\x4d\x52\x37\x42\x44\x3d\x47\x4b\x36\x45\x49\x37\x46\x4b\x3d\ +\x47\x4d\x3b\x3f\x44\x3e\x47\x45\x46\x50\x56\x41\x50\x4e\x41\x4a\ +\x4f\x37\x42\x44\x3a\x3f\x44\x3a\x40\x40\x3e\x45\x46\x3c\x3f\x41\ +\x30\x38\x38\x33\x38\x39\x39\x43\x45\x37\x42\x3d\x39\x42\x46\x3a\ +\x45\x44\x40\x4b\x4b\x42\x4f\x56\x3d\x4a\x53\x3d\x47\x49\x51\x58\ +\x5f\x49\x54\x63\x3c\x46\x46\x4c\x5b\x63\x43\x53\x57\x42\x53\x58\ +\x41\x4d\x54\x41\x49\x52\x3a\x3f\x41\x3f\x45\x4a\x42\x4c\x51\x3e\ +\x48\x4d\x36\x3c\x41\x30\x3a\x3d\x36\x42\x45\x3d\x48\x4c\x38\x40\ +\x42\x3a\x3f\x41\x46\x50\x57\x40\x50\x55\x40\x51\x5a\x3f\x4b\x51\ +\x3b\x52\x58\x43\x4d\x54\x40\x46\x4a\x2d\x35\x35\x3d\x46\x45\x3b\ +\x43\x44\x34\x3c\x3c\x34\x42\x43\x3b\x44\x42\x31\x34\x33\x29\x31\ +\x2f\x2f\x33\x36\x38\x44\x49\x43\x53\x59\x39\x46\x4d\x36\x3c\x41\ +\x3c\x44\x4b\x3e\x49\x4f\x38\x3e\x3b\x35\x3e\x3d\x34\x41\x42\x3b\ +\x42\x44\x40\x50\x53\x39\x49\x45\x33\x42\x42\x30\x3b\x38\x35\x40\ +\x45\x3c\x4d\x53\x42\x53\x57\x3f\x4a\x50\x3f\x49\x4b\x3b\x4a\x4e\ +\x30\x38\x38\x3b\x3d\x44\x30\x34\x34\x30\x35\x36\x34\x3e\x3d\x43\ +\x56\x5e\x3f\x51\x5a\x3c\x4f\x52\x41\x47\x51\x39\x3f\x3f\x33\x3d\ +\x40\x38\x3d\x3d\x41\x4d\x50\x45\x50\x50\x44\x4d\x4f\x3f\x43\x48\ +\x42\x4d\x53\x46\x54\x57\x00\x00\x00\xb0\xd7\xea\xae\xd2\xe4\x9a\ +\xbd\xd2\x76\x9d\xb3\x51\x73\x85\x51\x64\x79\x5d\x76\x89\x54\x6f\ +\x82\x64\x83\x92\x59\x6f\x7e\x57\x68\x75\x5e\x70\x7a\x4e\x64\x6e\ +\x5b\x6e\x7b\x4e\x56\x5c\x3f\x4a\x4d\x4a\x55\x5b\x3f\x4d\x54\x48\ +\x58\x5d\x3a\x45\x51\x37\x3e\x45\x3c\x3e\x43\x3f\x49\x4c\x32\x39\ +\x36\x38\x42\x42\x3c\x46\x4d\x42\x48\x50\x39\x40\x3d\x37\x40\x43\ +\x3d\x45\x47\x3d\x45\x44\x3d\x44\x45\x3a\x43\x47\x41\x4a\x4b\x3e\ +\x44\x46\x3f\x46\x45\x3d\x45\x4a\x38\x3e\x3c\x36\x3a\x3a\x3d\x3e\ +\x43\x3f\x42\x47\x34\x3d\x3c\x39\x44\x49\x37\x42\x44\x37\x45\x49\ +\x3f\x4c\x57\x45\x5a\x6c\x37\x45\x58\x45\x5c\x72\x51\x6c\x86\x48\ +\x5a\x62\x3b\x46\x46\x44\x4d\x52\x3c\x43\x43\x35\x3c\x3c\x3f\x47\ +\x4b\x41\x48\x46\x40\x48\x49\x3e\x49\x47\x34\x3a\x37\x34\x38\x35\ +\x39\x41\x42\x3a\x41\x41\x33\x3b\x39\x36\x3e\x42\x38\x3f\x3c\x3a\ +\x41\x43\x44\x50\x54\x40\x48\x4d\x47\x52\x5b\x3c\x42\x41\x3e\x47\ +\x47\x35\x41\x43\x39\x41\x42\x2f\x3a\x3b\x37\x3e\x3c\x41\x49\x4d\ +\x42\x50\x58\x49\x55\x5a\x40\x4a\x4f\x42\x48\x4b\x46\x4e\x52\x47\ +\x53\x53\x41\x4f\x51\x44\x54\x5a\x41\x48\x4b\x45\x4c\x51\x42\x4e\ +\x4f\x3e\x4a\x4f\x38\x42\x44\x31\x38\x3c\x38\x3f\x46\x3c\x43\x4c\ +\x33\x41\x41\x3b\x3f\x42\x40\x45\x46\x4a\x5a\x60\x44\x56\x5a\x43\ +\x55\x56\x37\x42\x45\x3b\x48\x4c\x3f\x4e\x50\x3f\x4d\x56\x35\x3a\ +\x38\x46\x58\x61\x38\x47\x4d\x38\x47\x4e\x3d\x46\x47\x31\x3a\x3a\ +\x30\x3b\x39\x33\x3d\x3a\x35\x3f\x3e\x3c\x47\x48\x3f\x4d\x57\x2f\ +\x38\x3b\x2e\x39\x3a\x38\x40\x42\x38\x47\x48\x47\x54\x55\x3d\x4e\ +\x4e\x3d\x48\x4d\x39\x43\x44\x43\x50\x53\x3a\x44\x47\x36\x41\x42\ +\x38\x42\x42\x36\x40\x3f\x34\x3d\x41\x41\x47\x4a\x3b\x40\x46\x46\ +\x52\x58\x48\x57\x5c\x3f\x4d\x54\x41\x51\x55\x44\x53\x59\x3c\x49\ +\x50\x3a\x45\x4b\x3d\x53\x58\x40\x4a\x52\x34\x3e\x43\x39\x42\x46\ +\x40\x4b\x50\x37\x41\x48\x40\x4d\x4f\x3d\x4d\x50\x44\x4e\x55\x3c\ +\x46\x4e\x3b\x44\x43\x44\x53\x56\x3e\x4b\x4d\x34\x3b\x3f\x3d\x49\ +\x50\x3f\x4e\x53\x38\x3b\x3f\x37\x3d\x40\x41\x49\x4f\x3d\x44\x48\ +\x40\x4e\x54\x3c\x44\x46\x2e\x38\x35\x39\x40\x3f\x38\x40\x3f\x30\ +\x35\x36\x00\x00\x00\x9e\xc4\xda\xa1\xc4\xd8\x8b\xb2\xc5\x57\x77\ +\x91\x50\x6d\x7e\x4e\x66\x77\x5d\x78\x8a\x56\x71\x84\x53\x6a\x78\ +\x41\x53\x62\x3d\x4a\x4e\x4b\x59\x64\x60\x76\x84\x4c\x61\x6b\x47\ +\x50\x58\x48\x5e\x6a\x43\x5a\x69\x43\x5b\x60\x3c\x4d\x54\x3a\x44\ +\x48\x36\x3b\x40\x36\x41\x44\x32\x39\x34\x33\x36\x39\x33\x37\x37\ +\x37\x3b\x3a\x37\x3c\x3d\x36\x39\x39\x3b\x42\x40\x3a\x42\x43\x39\ +\x40\x42\x39\x40\x3e\x46\x49\x4e\x42\x47\x48\x44\x4a\x4b\x3d\x42\ +\x45\x3d\x45\x47\x48\x4d\x50\x46\x49\x4c\x38\x40\x3f\x33\x3b\x3d\ +\x35\x40\x43\x3d\x45\x4b\x3d\x45\x4c\x41\x4d\x5c\x3b\x4a\x59\x3a\ +\x46\x50\x3f\x45\x4c\x41\x4b\x55\x40\x4d\x57\x47\x5e\x6d\x43\x5b\ +\x67\x36\x47\x44\x35\x3e\x3f\x34\x3c\x3b\x38\x3d\x41\x32\x3d\x3b\ +\x32\x36\x37\x31\x33\x33\x33\x3b\x3c\x3f\x43\x4a\x3e\x4a\x49\x38\ +\x40\x42\x33\x37\x38\x35\x3a\x3c\x33\x38\x37\x36\x3c\x3e\x38\x3e\ +\x3e\x33\x38\x38\x30\x39\x38\x2f\x35\x36\x39\x40\x3b\x3a\x45\x48\ +\x4a\x56\x5d\x40\x4c\x4c\x47\x54\x55\x45\x53\x56\x3e\x49\x49\x33\ +\x3a\x3d\x39\x43\x48\x3a\x46\x44\x3d\x42\x44\x3a\x3f\x3f\x3e\x49\ +\x4b\x3a\x47\x49\x30\x39\x3b\x36\x42\x44\x33\x3c\x3f\x37\x3e\x42\ +\x3b\x45\x48\x42\x57\x5a\x44\x53\x55\x33\x3e\x3b\x3e\x44\x46\x3f\ +\x4c\x4f\x3d\x47\x4b\x3a\x3c\x3c\x35\x43\x46\x2f\x32\x32\x3a\x40\ +\x41\x42\x4c\x4e\x3f\x4c\x50\x30\x3a\x3d\x3e\x46\x4d\x46\x5a\x5d\ +\x47\x55\x5e\x46\x53\x58\x33\x40\x43\x35\x49\x4b\x3f\x4b\x52\x3f\ +\x48\x4a\x32\x39\x3e\x39\x46\x44\x38\x3f\x41\x3e\x48\x4f\x41\x52\ +\x58\x43\x50\x55\x3a\x48\x48\x41\x4b\x50\x37\x44\x46\x32\x3d\x3d\ +\x36\x40\x3d\x3a\x45\x4a\x38\x4c\x51\x3b\x43\x46\x41\x45\x49\x42\ +\x4c\x50\x37\x3f\x42\x38\x41\x41\x39\x40\x44\x3d\x4c\x4f\x3f\x4a\ +\x51\x33\x3c\x43\x33\x3a\x41\x3b\x46\x4d\x3a\x3e\x44\x36\x45\x47\ +\x39\x42\x4a\x40\x52\x5b\x46\x57\x5d\x3c\x4b\x50\x3e\x49\x4b\x33\ +\x3c\x42\x2c\x35\x33\x3b\x44\x48\x36\x3f\x41\x2d\x34\x31\x35\x3c\ +\x3b\x38\x40\x41\x37\x39\x3a\x3a\x3d\x42\x32\x3e\x41\x30\x35\x33\ +\x32\x3a\x3c\x3d\x45\x4a\x3d\x4a\x50\x3c\x49\x4c\x3c\x44\x4a\x37\ +\x3f\x45\x3a\x45\x48\x3b\x43\x49\x36\x42\x46\x33\x3d\x45\x00\x00\ +\x00\x9d\xc3\xdd\x95\xbd\xd3\x5e\x86\xa1\x58\x74\x8f\x50\x6c\x83\ +\x4f\x66\x7a\x52\x6b\x80\x60\x7d\x92\x5b\x73\x81\x35\x46\x51\x4f\ +\x60\x70\x4f\x5e\x6b\x42\x57\x65\x3c\x4e\x5a\x4e\x5b\x6c\x39\x4a\ +\x51\x3d\x47\x4d\x3c\x45\x48\x3a\x3e\x43\x3f\x45\x4b\x3f\x4e\x4f\ +\x3e\x46\x46\x3c\x44\x43\x3d\x3f\x41\x40\x47\x4e\x3d\x4b\x4a\x3b\ +\x49\x4b\x44\x52\x57\x45\x52\x56\x43\x4b\x4d\x45\x4d\x4f\x3c\x45\ +\x45\x3a\x42\x43\x3a\x48\x48\x3c\x47\x48\x3e\x43\x43\x44\x45\x48\ +\x38\x3f\x3e\x36\x38\x3b\x35\x3f\x3f\x3a\x46\x46\x36\x43\x44\x3e\ +\x4f\x5a\x40\x4f\x66\x3b\x3f\x51\x3c\x46\x4c\x3a\x45\x49\x3c\x42\ +\x49\x3b\x48\x50\x3a\x44\x4d\x3b\x46\x4f\x47\x5c\x6e\x49\x5f\x72\ +\x4a\x5d\x66\x44\x51\x56\x45\x4c\x51\x43\x4b\x4b\x3c\x42\x41\x3e\ +\x46\x48\x3a\x42\x42\x37\x3c\x3c\x34\x3a\x38\x3a\x3d\x3e\x37\x41\ +\x40\x3e\x49\x4a\x3f\x42\x42\x3f\x46\x45\x33\x39\x35\x40\x43\x46\ +\x41\x4b\x4a\x41\x49\x4c\x44\x51\x58\x48\x52\x54\x43\x4c\x48\x3d\ +\x48\x46\x39\x42\x46\x37\x3e\x47\x3b\x44\x46\x3b\x49\x51\x3a\x47\ +\x4e\x36\x3c\x37\x3b\x45\x45\x43\x4d\x51\x33\x3d\x3a\x2c\x37\x33\ +\x42\x4b\x53\x3c\x48\x4b\x4b\x50\x51\x3c\x3e\x40\x40\x47\x4d\x40\ +\x47\x4a\x44\x43\x48\x43\x48\x47\x3e\x47\x48\x40\x47\x4b\x3f\x47\ +\x4b\x41\x46\x48\x39\x41\x42\x3e\x43\x44\x34\x43\x40\x2e\x37\x39\ +\x34\x3d\x41\x37\x48\x46\x3b\x46\x45\x34\x3c\x40\x2f\x38\x39\x32\ +\x3b\x3d\x34\x40\x44\x3d\x49\x53\x3c\x43\x46\x2f\x39\x38\x37\x40\ +\x42\x39\x44\x45\x3e\x40\x43\x3f\x40\x44\x3f\x4e\x55\x32\x3b\x3d\ +\x2c\x32\x33\x2b\x33\x31\x35\x3f\x43\x31\x39\x3b\x2d\x39\x36\x39\ +\x48\x4c\x3e\x4c\x52\x39\x40\x3f\x41\x4e\x54\x40\x45\x4c\x3f\x4c\ +\x4e\x47\x59\x5f\x40\x4b\x4f\x44\x53\x59\x3c\x4a\x4d\x37\x40\x3f\ +\x3e\x50\x56\x35\x3f\x44\x2c\x36\x37\x37\x43\x43\x30\x39\x36\x37\ +\x40\x44\x31\x39\x38\x33\x3c\x3d\x32\x37\x38\x2e\x3a\x38\x3d\x4b\ +\x52\x45\x4e\x54\x39\x42\x43\x3d\x4c\x51\x4f\x5a\x60\x36\x41\x41\ +\x35\x42\x42\x43\x55\x5c\x45\x54\x5c\x3c\x4c\x50\x48\x59\x62\x3d\ +\x4b\x52\x40\x4e\x54\x41\x4f\x56\x37\x3e\x3d\x37\x40\x43\x3c\x46\ +\x47\x2e\x3c\x3a\x3b\x4d\x51\x3e\x4e\x50\x00\x00\x00\x89\xaf\xd0\ +\x61\x85\xa4\x51\x74\x95\x56\x79\x8e\x57\x73\x84\x58\x73\x89\x57\ +\x76\x89\x5f\x75\x82\x47\x5b\x67\x46\x59\x66\x55\x69\x79\x54\x67\ +\x74\x3d\x4f\x55\x36\x3e\x46\x3f\x4a\x54\x3b\x43\x45\x38\x44\x48\ +\x33\x3e\x40\x3d\x47\x4d\x3a\x44\x46\x35\x3e\x3c\x34\x3a\x39\x36\ +\x36\x39\x47\x4b\x51\x46\x4f\x59\x41\x46\x46\x3f\x45\x4d\x3d\x46\ +\x48\x3f\x4c\x4c\x47\x4d\x4f\x3f\x47\x4b\x39\x41\x42\x37\x3f\x46\ +\x3c\x47\x49\x3a\x3f\x43\x38\x3c\x3d\x36\x36\x3a\x3e\x44\x4b\x42\ +\x4c\x53\x40\x4b\x50\x4b\x57\x6a\x43\x5c\x6f\x3c\x49\x55\x3d\x43\ +\x47\x41\x46\x4d\x41\x49\x50\x3a\x41\x48\x3b\x48\x4d\x3f\x4b\x4a\ +\x3c\x46\x48\x3f\x45\x48\x3f\x4e\x57\x48\x55\x6b\x47\x64\x7a\x4a\ +\x5e\x72\x45\x53\x57\x3d\x44\x45\x3d\x3f\x41\x37\x40\x44\x33\x39\ +\x39\x36\x36\x3b\x3a\x40\x44\x32\x37\x36\x39\x42\x43\x3a\x3f\x43\ +\x36\x3e\x3c\x34\x3d\x38\x3d\x45\x49\x44\x48\x4e\x3b\x41\x44\x3d\ +\x41\x40\x3a\x41\x45\x3c\x44\x45\x32\x36\x3a\x34\x3e\x3c\x3b\x48\ +\x4c\x34\x3d\x41\x31\x3a\x3b\x38\x40\x43\x3a\x44\x40\x3f\x49\x46\ +\x3e\x48\x4c\x35\x41\x43\x3c\x46\x47\x3e\x4a\x4f\x41\x56\x5a\x43\ +\x4d\x4f\x3a\x42\x41\x37\x42\x42\x3d\x43\x42\x31\x37\x35\x30\x32\ +\x35\x34\x36\x37\x34\x39\x36\x39\x43\x42\x45\x4f\x56\x35\x42\x42\ +\x36\x3c\x38\x3d\x43\x46\x39\x46\x44\x42\x4f\x55\x3e\x4b\x50\x3c\ +\x4b\x4e\x30\x41\x42\x3f\x54\x60\x3f\x4f\x58\x39\x46\x4b\x3d\x4a\ +\x4d\x3a\x44\x49\x35\x3d\x42\x3c\x4a\x51\x3d\x46\x50\x37\x42\x45\ +\x36\x40\x3c\x30\x3b\x3f\x2f\x37\x3c\x38\x47\x4e\x38\x3e\x3e\x38\ +\x48\x49\x3d\x4b\x51\x3c\x43\x46\x3e\x4a\x4a\x38\x47\x4d\x34\x3e\ +\x3d\x36\x45\x44\x44\x4e\x52\x37\x44\x49\x3c\x43\x4c\x36\x3f\x43\ +\x2e\x36\x32\x2c\x37\x35\x34\x41\x3d\x38\x48\x49\x2d\x36\x33\x3f\ +\x4e\x52\x42\x50\x57\x3c\x46\x47\x46\x53\x55\x40\x4b\x52\x3d\x48\ +\x4c\x45\x4e\x56\x3a\x45\x47\x40\x4f\x56\x47\x54\x5e\x35\x41\x43\ +\x2f\x3b\x3e\x3e\x47\x4c\x37\x3b\x41\x30\x38\x3c\x34\x3e\x40\x38\ +\x43\x48\x35\x3b\x3d\x38\x47\x4a\x37\x3e\x42\x35\x3c\x3d\x34\x3d\ +\x40\x34\x3a\x3b\x31\x38\x38\x3c\x49\x51\x35\x40\x45\x3b\x47\x43\ +\x3f\x4d\x51\x39\x45\x44\x00\x00\x00\x50\x73\x91\x47\x63\x82\x5a\ +\x7c\x90\x5f\x78\x8a\x5c\x74\x84\x50\x69\x7a\x5c\x72\x85\x4b\x59\ +\x62\x4b\x56\x59\x55\x67\x72\x54\x67\x73\x4c\x5a\x6f\x4a\x59\x60\ +\x3f\x44\x4b\x35\x40\x3e\x35\x3d\x3b\x35\x3f\x45\x37\x3d\x3b\x3c\ +\x3e\x3e\x35\x3b\x38\x3f\x44\x40\x45\x4d\x53\x3e\x42\x42\x4b\x53\ +\x56\x45\x4e\x52\x40\x48\x4a\x3c\x45\x44\x3d\x44\x48\x3c\x3e\x41\ +\x3a\x40\x3a\x41\x4a\x48\x43\x48\x4a\x45\x4e\x52\x3c\x45\x45\x3a\ +\x40\x41\x40\x49\x4e\x42\x4b\x53\x4a\x5c\x68\x4e\x6a\x7e\x4e\x6c\ +\x83\x47\x66\x7f\x3e\x44\x51\x3d\x48\x4e\x3f\x46\x4c\x3c\x41\x44\ +\x41\x48\x4b\x43\x4a\x4f\x3c\x46\x48\x3f\x46\x47\x41\x46\x46\x3f\ +\x46\x48\x3b\x46\x49\x41\x4d\x57\x40\x51\x5f\x44\x55\x6b\x4e\x68\ +\x81\x4d\x62\x76\x3d\x51\x56\x34\x3e\x41\x3e\x46\x48\x34\x3e\x40\ +\x33\x3b\x3c\x3e\x49\x47\x3b\x4b\x44\x38\x42\x40\x40\x49\x49\x3b\ +\x41\x41\x37\x42\x42\x3f\x48\x4b\x34\x3b\x3c\x3f\x4b\x4a\x36\x3e\ +\x41\x35\x42\x40\x3e\x49\x4f\x3c\x4b\x4d\x3c\x45\x47\x48\x58\x60\ +\x47\x52\x5b\x3e\x48\x49\x3b\x40\x3f\x43\x4b\x53\x42\x4e\x51\x38\ +\x3f\x40\x3f\x48\x4b\x39\x48\x4e\x42\x52\x56\x35\x40\x3e\x3c\x4a\ +\x4c\x3a\x44\x46\x37\x44\x49\x3f\x46\x49\x41\x4c\x55\x40\x4e\x52\ +\x3a\x40\x42\x38\x46\x4a\x30\x38\x3b\x2e\x37\x37\x43\x4e\x4d\x45\ +\x50\x5b\x41\x4d\x4c\x38\x42\x41\x34\x3b\x3a\x36\x3d\x3c\x3c\x46\ +\x4b\x46\x52\x5f\x45\x55\x5b\x42\x49\x51\x3f\x4f\x57\x46\x56\x5f\ +\x3a\x48\x4d\x31\x3a\x35\x29\x34\x32\x33\x39\x39\x37\x3f\x44\x34\ +\x43\x46\x36\x3e\x43\x34\x41\x46\x34\x3b\x3e\x32\x3d\x3e\x33\x3a\ +\x3c\x2b\x38\x37\x2e\x32\x35\x2e\x36\x35\x30\x3a\x3a\x3d\x4c\x51\ +\x3f\x4b\x4a\x32\x38\x3e\x35\x44\x47\x2e\x36\x37\x32\x3e\x40\x3f\ +\x53\x5a\x41\x55\x5a\x3f\x49\x4c\x3a\x45\x4a\x40\x4b\x50\x38\x44\ +\x45\x38\x43\x43\x37\x3e\x45\x33\x3b\x40\x3d\x43\x44\x31\x3c\x3c\ +\x38\x43\x46\x37\x45\x43\x31\x39\x3b\x3b\x46\x51\x3b\x4d\x56\x36\ +\x43\x4a\x3c\x4c\x4c\x42\x4d\x4c\x4c\x5d\x67\x43\x50\x55\x40\x49\ +\x4c\x45\x4f\x55\x35\x3e\x3f\x42\x52\x5c\x42\x4e\x56\x3c\x45\x49\ +\x3a\x48\x48\x36\x45\x41\x2e\x3a\x38\x3c\x4b\x4e\x37\x45\x44\x34\ +\x41\x3f\x00\x00\x00\x45\x5e\x79\x4c\x63\x7a\x56\x74\x8a\x5d\x71\ +\x83\x4a\x64\x75\x55\x6f\x82\x53\x6c\x79\x42\x51\x5e\x45\x55\x5e\ +\x4d\x5f\x6c\x4b\x5a\x68\x3c\x4d\x53\x3a\x40\x46\x3e\x44\x4a\x42\ +\x4c\x50\x3b\x46\x47\x3e\x4b\x4c\x41\x46\x46\x3c\x42\x43\x3c\x41\ +\x43\x42\x4a\x4b\x44\x4f\x54\x3c\x44\x42\x42\x47\x49\x42\x47\x4c\ +\x49\x4f\x55\x47\x4f\x52\x3f\x44\x44\x44\x4a\x4b\x47\x4d\x51\x40\ +\x47\x45\x38\x39\x3b\x37\x3f\x3f\x3f\x48\x49\x41\x4a\x4d\x41\x50\ +\x61\x55\x73\x92\x5d\x8d\xac\x50\x79\x94\x49\x5f\x6e\x47\x50\x5e\ +\x41\x4e\x56\x42\x4a\x4d\x42\x4e\x50\x48\x4d\x52\x42\x49\x51\x42\ +\x47\x4f\x48\x4c\x4f\x43\x49\x4f\x43\x4b\x4f\x44\x4d\x53\x40\x49\ +\x4a\x3b\x48\x4c\x3d\x47\x4f\x3e\x49\x53\x41\x47\x55\x51\x69\x83\ +\x4e\x71\x8e\x3c\x4e\x61\x43\x4e\x5d\x3b\x48\x51\x42\x4d\x50\x3c\ +\x44\x44\x39\x46\x49\x36\x42\x3e\x38\x43\x44\x3f\x45\x41\x3e\x48\ +\x45\x36\x41\x41\x38\x44\x45\x3e\x47\x49\x3f\x49\x48\x3c\x46\x43\ +\x36\x42\x42\x32\x39\x38\x36\x3e\x40\x38\x46\x4b\x35\x43\x4a\x39\ +\x44\x4b\x3c\x43\x45\x43\x51\x5a\x2f\x39\x38\x2f\x37\x38\x3b\x47\ +\x4a\x37\x47\x49\x31\x38\x3c\x38\x40\x44\x38\x46\x4a\x39\x47\x48\ +\x35\x47\x4f\x38\x42\x4c\x3a\x43\x4a\x35\x40\x40\x37\x3c\x3f\x3c\ +\x3c\x41\x3d\x46\x4a\x3b\x49\x4d\x4b\x56\x5a\x3d\x41\x46\x36\x37\ +\x3e\x3c\x45\x45\x3b\x47\x45\x3b\x44\x49\x3b\x45\x46\x39\x47\x46\ +\x38\x3e\x43\x35\x3d\x39\x37\x3f\x42\x37\x3f\x3f\x34\x36\x39\x3d\ +\x48\x4b\x3b\x4f\x53\x3d\x4a\x4e\x42\x50\x5b\x48\x53\x5c\x35\x42\ +\x3e\x3b\x4c\x4b\x3c\x4a\x4c\x3b\x46\x4b\x31\x37\x3c\x38\x42\x4b\ +\x38\x40\x42\x41\x4b\x50\x42\x4c\x52\x3f\x46\x49\x30\x36\x37\x3a\ +\x41\x3f\x3b\x4e\x52\x40\x4c\x53\x3c\x4d\x53\x36\x40\x46\x30\x3e\ +\x3d\x3b\x48\x49\x3f\x4a\x4f\x3c\x4c\x4e\x39\x42\x44\x39\x48\x4e\ +\x45\x55\x5e\x54\x65\x68\x3b\x44\x44\x42\x4d\x53\x40\x4d\x54\x57\ +\x63\x67\x42\x50\x5e\x43\x4e\x5b\x3d\x46\x4b\x45\x55\x5e\x45\x4c\ +\x52\x37\x3f\x46\x3a\x46\x4c\x31\x38\x39\x35\x3f\x3f\x2f\x3a\x37\ +\x3b\x47\x4b\x3a\x46\x4d\x33\x3c\x3e\x37\x40\x45\x43\x4e\x4e\x41\ +\x4d\x4d\x43\x4f\x53\x40\x46\x4b\x3d\x44\x43\x52\x62\x6a\x00\x00\ +\x00\x42\x53\x6e\x38\x4d\x5a\x52\x6c\x7d\x58\x70\x81\x59\x75\x87\ +\x5d\x7a\x91\x53\x65\x73\x47\x54\x61\x42\x4f\x5a\x3d\x47\x4e\x3b\ +\x42\x46\x3b\x48\x4d\x39\x45\x4a\x47\x56\x62\x40\x4f\x53\x3c\x45\ +\x45\x37\x3f\x3e\x45\x4a\x4e\x3d\x46\x46\x3f\x4f\x53\x3c\x47\x4d\ +\x39\x40\x42\x3c\x3d\x3e\x44\x47\x49\x3b\x40\x40\x3a\x3d\x3e\x39\ +\x41\x40\x3c\x46\x43\x37\x3d\x40\x3a\x3d\x3b\x43\x4b\x4f\x44\x4a\ +\x49\x30\x3d\x36\x36\x3b\x38\x36\x3e\x41\x3d\x44\x44\x39\x41\x49\ +\x40\x56\x68\x51\x73\x8c\x53\x6b\x87\x4c\x5b\x68\x45\x54\x5e\x45\ +\x51\x54\x49\x50\x5b\x4c\x56\x5b\x46\x49\x4f\x42\x49\x4f\x42\x4b\ +\x4c\x47\x4c\x53\x3f\x48\x4d\x41\x46\x4b\x42\x4c\x50\x3f\x49\x58\ +\x42\x4b\x53\x40\x50\x56\x3f\x4e\x60\x36\x3a\x49\x30\x38\x3d\x3f\ +\x49\x51\x35\x41\x42\x39\x3f\x40\x44\x49\x4f\x35\x3a\x3b\x33\x3e\ +\x3b\x3c\x41\x41\x3b\x4c\x4d\x47\x5b\x61\x41\x4e\x4f\x41\x4a\x4c\ +\x3c\x45\x45\x38\x44\x47\x36\x3f\x3e\x44\x46\x49\x3b\x40\x3f\x42\ +\x52\x57\x38\x47\x49\x3b\x49\x4c\x3a\x4a\x4e\x3b\x46\x4a\x3f\x4a\ +\x4b\x4a\x54\x5e\x41\x4f\x50\x45\x54\x56\x3b\x45\x4c\x39\x3d\x3f\ +\x44\x4c\x4e\x48\x54\x5a\x47\x53\x5a\x47\x4a\x53\x48\x52\x5f\x40\ +\x4c\x51\x3d\x48\x4e\x35\x3d\x3e\x3c\x4d\x51\x46\x54\x5c\x3a\x49\ +\x4e\x3d\x49\x48\x32\x39\x35\x35\x3b\x3c\x41\x47\x48\x40\x46\x4b\ +\x44\x4d\x55\x42\x4b\x53\x49\x52\x5a\x43\x4a\x50\x40\x47\x49\x40\ +\x48\x4d\x3b\x42\x46\x36\x42\x42\x45\x4e\x52\x38\x43\x44\x36\x40\ +\x44\x39\x3c\x3e\x32\x3b\x3e\x30\x39\x3b\x2d\x34\x32\x3e\x4b\x4c\ +\x40\x4e\x52\x32\x38\x39\x48\x53\x57\x40\x47\x4c\x40\x47\x4b\x35\ +\x40\x41\x34\x3a\x3f\x2f\x33\x35\x3d\x42\x4a\x3e\x4d\x54\x3d\x49\ +\x4a\x30\x35\x33\x2a\x38\x35\x34\x41\x3f\x43\x50\x55\x3c\x48\x4e\ +\x36\x42\x41\x32\x38\x3d\x3d\x4a\x51\x3e\x4e\x50\x43\x49\x53\x42\ +\x49\x4a\x43\x50\x54\x3f\x4b\x4f\x3c\x46\x45\x3f\x49\x50\x30\x3a\ +\x40\x35\x40\x43\x3f\x47\x4e\x3e\x4b\x50\x38\x3f\x3d\x32\x38\x37\ +\x38\x45\x47\x3c\x4d\x51\x3a\x47\x4a\x3a\x49\x49\x3e\x50\x53\x3c\ +\x4c\x52\x3d\x45\x45\x44\x4f\x50\x3f\x48\x4c\x33\x37\x39\x34\x3a\ +\x37\x32\x3a\x38\x44\x4c\x4e\x47\x51\x53\x00\x00\x00\x4b\x5b\x6a\ +\x2f\x3a\x41\x32\x39\x47\x4a\x62\x70\x3f\x60\x71\x4e\x64\x75\x3d\ +\x4c\x54\x3d\x4b\x4f\x3a\x42\x45\x38\x46\x4a\x3c\x4c\x51\x3d\x53\ +\x5a\x43\x55\x59\x3f\x3f\x40\x38\x3e\x3b\x3d\x42\x44\x4c\x56\x55\ +\x4a\x4f\x54\x40\x4b\x4a\x40\x4a\x4f\x42\x4c\x4f\x4b\x5c\x62\x41\ +\x4b\x4c\x3a\x41\x45\x40\x4a\x49\x44\x4a\x46\x3f\x45\x44\x39\x42\ +\x3e\x38\x3e\x3d\x3b\x41\x42\x3d\x44\x47\x45\x4f\x4d\x48\x50\x4f\ +\x43\x4c\x4b\x40\x4c\x50\x48\x4d\x4f\x44\x4f\x53\x49\x51\x51\x43\ +\x4d\x52\x41\x4c\x5a\x43\x52\x5b\x49\x55\x60\x48\x50\x58\x47\x51\ +\x53\x48\x51\x57\x48\x4e\x56\x49\x50\x57\x46\x4a\x51\x41\x49\x4e\ +\x3f\x48\x4b\x47\x4b\x50\x40\x48\x4f\x42\x4b\x53\x3e\x4a\x5d\x3c\ +\x46\x56\x32\x3a\x3e\x40\x49\x4a\x37\x42\x44\x39\x43\x48\x39\x43\ +\x45\x35\x40\x43\x38\x3f\x43\x3d\x44\x4c\x3f\x47\x4a\x3d\x4a\x46\ +\x39\x46\x45\x3b\x49\x4d\x31\x3c\x3f\x3f\x45\x42\x3e\x48\x4a\x42\ +\x48\x4d\x43\x4d\x4a\x43\x49\x49\x42\x47\x49\x39\x46\x49\x39\x43\ +\x49\x3b\x47\x4a\x36\x3f\x45\x3c\x46\x4b\x3c\x46\x49\x3b\x46\x48\ +\x37\x42\x3e\x3d\x46\x43\x3f\x48\x4b\x40\x4e\x55\x3f\x47\x4d\x3a\ +\x41\x46\x3d\x40\x40\x3a\x42\x43\x30\x3d\x3b\x30\x3e\x3f\x33\x3d\ +\x3d\x3e\x4e\x52\x3d\x4e\x52\x39\x4e\x53\x35\x3d\x43\x2f\x3a\x38\ +\x3d\x43\x46\x41\x48\x50\x3c\x44\x46\x37\x40\x3e\x3a\x41\x46\x3c\ +\x46\x47\x34\x39\x3b\x32\x3e\x40\x34\x3b\x3b\x35\x3d\x3c\x39\x3e\ +\x41\x3d\x43\x47\x37\x3f\x3f\x35\x3c\x39\x42\x49\x50\x40\x4e\x51\ +\x38\x46\x48\x39\x3f\x40\x33\x41\x41\x2c\x36\x38\x35\x3e\x3f\x35\ +\x3b\x3f\x3d\x45\x42\x31\x33\x34\x33\x3b\x3b\x30\x3a\x38\x34\x3d\ +\x3e\x3a\x44\x46\x3b\x41\x49\x39\x43\x45\x34\x3a\x3e\x37\x46\x4a\ +\x44\x4e\x55\x40\x4c\x52\x37\x3b\x3e\x3d\x40\x41\x39\x43\x42\x3c\ +\x46\x48\x34\x3d\x3e\x3d\x44\x47\x36\x38\x3b\x34\x3e\x3e\x45\x52\ +\x52\x3b\x49\x4c\x30\x37\x3c\x37\x3e\x40\x3e\x49\x4b\x36\x44\x41\ +\x3f\x47\x4c\x37\x3f\x47\x3f\x46\x4c\x3f\x4f\x54\x3e\x4e\x53\x36\ +\x40\x41\x34\x39\x41\x36\x3d\x3e\x39\x40\x41\x32\x3b\x3a\x42\x4d\ +\x52\x3a\x3f\x45\x39\x43\x44\x43\x4e\x56\x48\x54\x54\x42\x4f\x52\ +\x3b\x42\x47\x32\x42\x3f\x00\x00\x00\x47\x5e\x74\x36\x3f\x4b\x46\ +\x4f\x54\x41\x57\x69\x35\x4f\x62\x3f\x56\x6b\x3a\x4c\x53\x30\x3d\ +\x3c\x39\x44\x46\x36\x43\x44\x3b\x4b\x52\x3a\x4e\x56\x3c\x48\x4e\ +\x42\x48\x4a\x40\x4b\x4e\x50\x5b\x5e\x51\x5e\x5e\x3b\x3f\x3b\x46\ +\x46\x4a\x3d\x46\x49\x3d\x47\x47\x45\x4a\x4d\x41\x49\x47\x43\x47\ +\x45\x41\x46\x48\x3f\x45\x44\x3b\x3d\x3b\x39\x44\x41\x42\x4c\x4f\ +\x4c\x52\x56\x3c\x42\x43\x35\x3d\x3a\x34\x35\x32\x34\x37\x35\x3d\ +\x42\x43\x43\x4b\x4b\x38\x43\x44\x39\x41\x40\x3a\x40\x3e\x39\x40\ +\x43\x3e\x46\x47\x3b\x49\x55\x48\x58\x67\x4e\x5b\x68\x4c\x54\x61\ +\x4e\x4e\x5a\x46\x51\x5c\x42\x4b\x54\x3f\x4b\x56\x42\x4d\x50\x4a\ +\x52\x62\x44\x51\x6c\x35\x3c\x46\x34\x45\x43\x3a\x50\x5a\x42\x5c\ +\x66\x47\x63\x6d\x49\x6b\x7a\x44\x5f\x67\x45\x61\x6e\x3a\x4b\x4f\ +\x40\x4c\x52\x3d\x45\x4a\x3c\x41\x43\x34\x3c\x3e\x37\x3e\x41\x3e\ +\x48\x49\x38\x42\x40\x3f\x48\x4a\x3a\x45\x45\x38\x40\x40\x3b\x43\ +\x48\x3e\x48\x49\x3d\x43\x48\x3d\x45\x47\x41\x4c\x4a\x45\x52\x55\ +\x3d\x47\x4c\x37\x41\x43\x37\x44\x43\x3a\x42\x43\x38\x3e\x3d\x38\ +\x48\x45\x3a\x41\x45\x37\x40\x3f\x34\x3b\x3e\x33\x3c\x3c\x42\x4b\ +\x4e\x43\x49\x4f\x45\x50\x56\x3e\x49\x49\x37\x40\x40\x39\x47\x49\ +\x3c\x4b\x54\x3e\x4e\x50\x3c\x44\x47\x42\x4e\x55\x42\x54\x54\x3d\ +\x49\x4a\x3e\x4c\x4c\x37\x45\x48\x31\x41\x41\x35\x3e\x3d\x40\x48\ +\x4f\x38\x42\x44\x3e\x48\x4e\x3a\x4b\x4b\x41\x47\x49\x42\x4f\x55\ +\x3e\x4c\x4f\x35\x44\x41\x31\x37\x34\x35\x39\x3b\x34\x3c\x3a\x34\ +\x3d\x3f\x31\x3a\x3b\x2f\x36\x38\x37\x43\x45\x3a\x45\x4e\x33\x3c\ +\x3e\x38\x40\x3f\x3f\x49\x4f\x3e\x4c\x4f\x3b\x49\x51\x35\x3f\x48\ +\x4b\x52\x54\x34\x38\x3b\x36\x44\x43\x36\x47\x49\x3f\x49\x4b\x3c\ +\x43\x43\x32\x37\x35\x34\x3a\x3c\x3b\x42\x48\x3c\x46\x4a\x42\x4e\ +\x52\x46\x4d\x55\x41\x47\x49\x3b\x40\x42\x43\x4b\x4d\x36\x3f\x3f\ +\x32\x3f\x3e\x3d\x48\x4b\x4d\x59\x60\x3a\x48\x4a\x34\x3f\x42\x34\ +\x40\x42\x41\x52\x57\x39\x46\x47\x37\x3f\x43\x3c\x47\x4f\x3e\x4c\ +\x53\x41\x4f\x52\x43\x50\x59\x36\x43\x44\x37\x41\x41\x2f\x38\x3b\ +\x3f\x49\x4d\x43\x4f\x52\x3a\x44\x45\x3c\x45\x44\x3e\x4d\x53\x37\ +\x44\x45\x00\x00\x00\x51\x64\x75\x61\x6e\x76\x86\x9c\xa4\x78\x97\ +\x9c\x23\x35\x3f\x3b\x4f\x63\x33\x48\x4e\x40\x52\x5a\x3f\x52\x60\ +\x37\x4b\x4c\x3f\x49\x46\x47\x50\x52\x40\x4b\x50\x43\x4f\x50\x43\ +\x47\x44\x44\x50\x4f\x4c\x54\x56\x54\x61\x62\x43\x4e\x4f\x3e\x45\ +\x47\x42\x4c\x49\x42\x4f\x4a\x3f\x46\x44\x3d\x42\x3d\x3b\x3d\x3d\ +\x49\x4b\x4a\x40\x4c\x48\x46\x51\x56\x3f\x47\x49\x3e\x44\x46\x3c\ +\x40\x40\x4b\x50\x54\x44\x4d\x4e\x45\x4f\x51\x4c\x55\x58\x40\x4a\ +\x4c\x3b\x42\x44\x38\x3d\x3e\x40\x49\x4e\x41\x4e\x4e\x40\x4c\x48\ +\x3c\x47\x44\x3d\x48\x53\x41\x56\x67\x4a\x57\x65\x46\x51\x5c\x46\ +\x51\x59\x44\x4c\x58\x41\x4d\x5d\x3d\x45\x5a\x3b\x42\x54\x38\x41\ +\x48\x3c\x46\x44\x49\x69\x82\x58\x89\xaf\x3f\x63\x7a\x39\x4e\x5f\ +\x39\x4e\x60\x42\x56\x65\x5c\x87\xa8\x49\x74\x8f\x3b\x46\x4c\x36\ +\x3f\x3b\x3b\x43\x41\x38\x41\x42\x2f\x39\x37\x34\x3d\x3e\x41\x4b\ +\x4b\x40\x49\x47\x3d\x47\x48\x36\x42\x40\x3a\x45\x44\x3a\x3c\x3f\ +\x34\x38\x37\x3c\x42\x3f\x42\x4b\x4c\x3f\x4a\x49\x37\x40\x41\x41\ +\x4a\x4c\x3c\x43\x46\x38\x3e\x3e\x39\x48\x45\x47\x58\x5a\x44\x51\ +\x57\x3b\x43\x42\x40\x49\x4a\x44\x51\x54\x46\x55\x56\x45\x4d\x51\ +\x40\x4a\x4e\x3d\x46\x4b\x3e\x4b\x52\x3b\x48\x4d\x3f\x49\x54\x3d\ +\x43\x48\x34\x3e\x43\x35\x3f\x42\x37\x43\x43\x36\x44\x42\x36\x42\ +\x43\x37\x3f\x42\x3c\x49\x49\x42\x4f\x52\x37\x44\x4a\x3e\x46\x49\ +\x3a\x42\x45\x3e\x47\x51\x2f\x38\x3d\x2f\x3b\x40\x3e\x44\x42\x31\ +\x34\x34\x2d\x38\x39\x2d\x37\x3b\x39\x43\x48\x3e\x4e\x54\x44\x4f\ +\x52\x3a\x47\x4b\x2d\x39\x3a\x2e\x34\x35\x37\x41\x41\x3b\x4d\x4f\ +\x3a\x45\x4b\x2d\x35\x33\x2e\x3b\x3d\x3d\x48\x4b\x3b\x44\x42\x2f\ +\x39\x38\x3d\x45\x47\x41\x4d\x4d\x3e\x4c\x50\x3a\x40\x3f\x39\x49\ +\x4a\x43\x4c\x53\x3b\x47\x48\x34\x3e\x3a\x34\x42\x43\x3a\x44\x4d\ +\x32\x38\x37\x3a\x43\x41\x3e\x4a\x50\x33\x3d\x39\x35\x40\x3f\x38\ +\x44\x41\x3b\x40\x42\x3b\x41\x44\x3e\x45\x48\x45\x4f\x57\x44\x51\ +\x56\x32\x36\x38\x30\x36\x32\x3d\x43\x47\x33\x40\x43\x3d\x43\x45\ +\x31\x37\x38\x32\x3f\x3b\x3f\x48\x4c\x3e\x4d\x51\x37\x46\x43\x3e\ +\x46\x46\x4a\x5b\x5e\x40\x4e\x51\x3b\x49\x45\x44\x52\x52\x00\x00\ +\x00\xa8\xc4\xd7\xc2\xde\xed\xab\xca\xdc\xb7\xda\xe9\x8a\xac\xb9\ +\x65\x7d\x8c\x78\x8f\x9d\x51\x70\x83\x55\x72\x85\x4b\x61\x69\x42\ +\x4a\x49\x47\x4d\x51\x49\x54\x57\x48\x55\x57\x42\x4b\x48\x3f\x47\ +\x47\x4e\x54\x59\x4d\x56\x57\x41\x46\x47\x41\x46\x45\x42\x47\x49\ +\x41\x47\x44\x42\x44\x44\x44\x4c\x47\x41\x4a\x4c\x42\x49\x4b\x3b\ +\x49\x49\x3c\x43\x3b\x3b\x46\x44\x3c\x43\x41\x3a\x3c\x41\x3e\x48\ +\x46\x3d\x49\x4b\x46\x4d\x53\x41\x46\x49\x45\x4e\x50\x43\x46\x45\ +\x41\x4a\x4a\x47\x4e\x55\x43\x48\x4c\x3d\x41\x44\x3a\x44\x47\x40\ +\x48\x4b\x39\x42\x43\x38\x48\x4f\x47\x55\x6a\x3c\x48\x5a\x39\x4a\ +\x62\x38\x3d\x4f\x38\x42\x45\x44\x44\x46\x41\x45\x49\x43\x50\x58\ +\x57\x8e\xb6\x3f\x59\x6a\x3a\x44\x48\x40\x4a\x49\x3f\x4a\x4e\x3b\ +\x48\x4e\x43\x65\x7f\x48\x7b\xa5\x34\x49\x4f\x39\x43\x47\x45\x66\ +\x7b\x35\x47\x54\x34\x3e\x3d\x36\x3b\x3e\x37\x3b\x41\x37\x3d\x3b\ +\x3c\x43\x44\x3f\x42\x48\x3a\x3e\x41\x37\x41\x44\x3a\x48\x4c\x40\ +\x4e\x51\x3e\x49\x4b\x3a\x42\x41\x35\x40\x3f\x31\x3a\x37\x37\x3d\ +\x3e\x3f\x46\x49\x36\x45\x46\x3a\x40\x3f\x39\x41\x43\x35\x41\x40\ +\x3b\x49\x4a\x3a\x48\x4b\x3d\x44\x44\x31\x3a\x3a\x2a\x38\x36\x31\ +\x3c\x3d\x38\x42\x47\x3e\x4c\x4c\x3a\x3f\x3c\x39\x43\x4a\x40\x4e\ +\x52\x3f\x4d\x54\x44\x50\x56\x3f\x4c\x50\x35\x42\x41\x3b\x3e\x42\ +\x38\x40\x47\x35\x42\x45\x35\x3d\x3f\x39\x41\x42\x33\x40\x3d\x2c\ +\x36\x37\x3d\x45\x48\x3f\x48\x4c\x57\x5f\x62\x4f\x53\x56\x3b\x4b\ +\x4c\x3e\x4d\x53\x3d\x45\x44\x36\x3f\x3e\x2e\x37\x38\x39\x3d\x41\ +\x45\x53\x5a\x43\x4f\x51\x40\x4f\x52\x38\x41\x44\x39\x49\x4b\x3f\ +\x49\x4d\x4b\x58\x60\x56\x61\x67\x43\x4c\x4f\x40\x50\x55\x49\x55\ +\x56\x3d\x45\x44\x3b\x41\x45\x3b\x42\x43\x3e\x4e\x52\x38\x40\x42\ +\x33\x35\x31\x45\x50\x51\x47\x52\x57\x43\x4a\x4f\x3c\x3f\x44\x35\ +\x41\x40\x30\x38\x39\x38\x42\x4c\x35\x4c\x4e\x42\x4e\x55\x42\x4f\ +\x54\x34\x3e\x3a\x35\x40\x41\x33\x3f\x42\x31\x33\x35\x37\x3d\x3f\ +\x3f\x4e\x4d\x3d\x4b\x48\x3b\x4c\x4e\x33\x3f\x3d\x30\x3f\x41\x3f\ +\x4b\x53\x3d\x4a\x4f\x39\x40\x41\x3c\x4a\x49\x41\x44\x46\x35\x3f\ +\x41\x32\x3e\x3c\x3d\x49\x4d\x38\x45\x45\x00\x00\x00\x9c\xb8\xcb\ +\xaf\xc9\xd9\xba\xda\xea\xc0\xde\xed\xc2\xde\xeb\xc5\xe1\xed\xbf\ +\xdd\xe4\xa6\xbf\xcc\x93\xaf\xbb\x80\x9c\xa8\x5d\x73\x7c\x59\x6d\ +\x71\x4d\x5a\x5d\x3c\x42\x42\x3e\x44\x43\x42\x48\x48\x4f\x51\x51\ +\x4c\x52\x56\x44\x4f\x4d\x41\x4d\x4a\x41\x42\x44\x44\x47\x48\x3e\ +\x43\x42\x38\x3f\x3e\x36\x3d\x3c\x39\x43\x3f\x41\x4b\x4c\x41\x46\ +\x47\x3f\x46\x45\x43\x46\x49\x39\x47\x44\x40\x47\x49\x3e\x46\x46\ +\x3c\x41\x43\x3c\x42\x42\x34\x3c\x3a\x36\x3d\x40\x41\x4a\x4e\x3e\ +\x43\x45\x43\x48\x48\x41\x49\x4e\x3d\x44\x44\x3b\x42\x43\x40\x47\ +\x48\x40\x46\x45\x35\x43\x47\x39\x49\x61\x3b\x3f\x4c\x3b\x43\x44\ +\x3d\x40\x41\x3a\x42\x41\x3b\x41\x3f\x36\x40\x40\x59\x84\xa8\x51\ +\x7c\x92\x40\x59\x64\x46\x5f\x6a\x4b\x6e\x83\x54\x88\xaa\x4c\x7e\ +\xa4\x41\x5e\x70\x3e\x50\x57\x4a\x6e\x86\x49\x79\x9b\x39\x5c\x7d\ +\x41\x66\x81\x42\x55\x62\x3e\x4b\x55\x39\x40\x3f\x3b\x44\x43\x36\ +\x3f\x43\x3a\x42\x40\x3a\x43\x3f\x39\x44\x46\x3b\x49\x48\x34\x40\ +\x3a\x35\x3e\x3d\x39\x44\x42\x41\x4c\x4f\x3d\x48\x48\x41\x4b\x4f\ +\x39\x40\x47\x38\x44\x46\x3d\x45\x4a\x32\x3b\x3d\x32\x43\x3f\x3c\ +\x44\x47\x33\x3e\x3d\x35\x40\x42\x3d\x4d\x53\x3c\x48\x4f\x3d\x49\ +\x4e\x3b\x46\x4a\x3c\x47\x49\x39\x45\x48\x33\x43\x46\x37\x42\x46\ +\x33\x39\x3b\x2f\x35\x33\x36\x3c\x41\x35\x3d\x42\x41\x4b\x4d\x46\ +\x54\x59\x3e\x4a\x4e\x3d\x44\x49\x3e\x4b\x4f\x3e\x4c\x51\x3a\x3f\ +\x48\x35\x3d\x3b\x46\x4f\x51\x33\x38\x39\x32\x3a\x3e\x34\x3b\x3d\ +\x3d\x44\x42\x38\x41\x3e\x3d\x4d\x50\x3b\x47\x49\x40\x4d\x50\x37\ +\x3e\x40\x33\x38\x3d\x44\x4e\x55\x3d\x4d\x4d\x3c\x3c\x41\x3a\x42\ +\x43\x35\x36\x38\x39\x41\x46\x3f\x4a\x4d\x3e\x47\x47\x32\x39\x37\ +\x3f\x47\x49\x3c\x41\x47\x34\x3f\x43\x3b\x3d\x3f\x41\x4c\x52\x3f\ +\x51\x54\x3e\x45\x4d\x36\x3d\x3f\x3a\x44\x46\x3a\x43\x45\x3e\x50\ +\x58\x3f\x54\x5a\x3a\x45\x46\x2e\x33\x36\x2f\x3a\x3d\x3a\x42\x45\ +\x43\x51\x54\x38\x40\x45\x42\x49\x4d\x3f\x4d\x54\x3f\x48\x4c\x3a\ +\x44\x43\x35\x3d\x3f\x3b\x46\x4c\x3a\x49\x4f\x33\x38\x3b\x39\x45\ +\x45\x3f\x4a\x4f\x41\x4b\x51\x42\x47\x4b\x42\x55\x58\x43\x4e\x50\ +\x46\x50\x57\x43\x51\x56\x00\x00\x00\x97\xb2\xc5\xbd\xdc\xe9\xc1\ +\xde\xec\xc8\xe2\xf0\xcc\xe3\xef\xce\xe3\xef\xd1\xe8\xf2\xcb\xe5\ +\xf2\xce\xe7\xf2\xcd\xe8\xf2\xcb\xe7\xf3\xc1\xe0\xea\xa2\xbd\xc7\ +\x8d\xa8\xb0\x66\x7b\x81\x48\x57\x54\x3c\x42\x43\x4d\x55\x58\x40\ +\x41\x42\x45\x46\x4b\x43\x4a\x4c\x49\x4b\x4f\x43\x4d\x50\x41\x4b\ +\x4c\x44\x4a\x4d\x43\x49\x47\x39\x40\x41\x42\x44\x48\x3e\x47\x44\ +\x42\x49\x4a\x3f\x43\x47\x3b\x46\x47\x40\x47\x49\x37\x3f\x39\x40\ +\x46\x45\x42\x4a\x4e\x45\x4c\x50\x42\x45\x49\x42\x4b\x4e\x3c\x40\ +\x42\x42\x44\x48\x43\x4e\x4f\x38\x40\x3d\x40\x45\x4a\x3a\x40\x41\ +\x37\x3d\x3b\x30\x38\x43\x39\x40\x41\x45\x4e\x4d\x3b\x41\x41\x37\ +\x42\x40\x38\x40\x3d\x3c\x49\x47\x37\x43\x49\x3a\x4d\x57\x3c\x4c\ +\x58\x3e\x52\x68\x3c\x51\x5c\x32\x4a\x53\x38\x4f\x59\x5b\x82\x9b\ +\x5c\x8e\xb2\x48\x6f\x8a\x3b\x4d\x57\x3e\x47\x4c\x39\x4b\x62\x51\ +\x82\xa8\x45\x7d\x9e\x39\x53\x5c\x41\x4c\x4e\x3f\x4b\x47\x3a\x47\ +\x49\x44\x4a\x4b\x33\x3c\x37\x34\x3f\x3f\x40\x45\x47\x3b\x41\x40\ +\x3b\x3d\x40\x3a\x43\x41\x3f\x48\x4a\x3c\x45\x48\x3b\x43\x45\x3a\ +\x44\x46\x3b\x45\x47\x3f\x46\x46\x3d\x47\x4d\x3d\x46\x45\x34\x45\ +\x45\x32\x3c\x3e\x31\x3e\x3e\x3c\x44\x46\x3c\x48\x49\x31\x3c\x3c\ +\x3a\x3e\x40\x3b\x41\x40\x41\x4d\x50\x35\x3d\x43\x3c\x49\x4d\x3e\ +\x4c\x4e\x40\x4d\x51\x4a\x59\x58\x40\x4f\x4f\x33\x42\x3f\x37\x40\ +\x43\x41\x49\x4b\x39\x43\x47\x31\x3a\x39\x31\x34\x34\x2f\x37\x39\ +\x2f\x3c\x3d\x38\x3f\x44\x3b\x4b\x4b\x3b\x44\x45\x38\x45\x48\x3e\ +\x43\x49\x34\x42\x41\x3d\x48\x4c\x36\x3f\x43\x34\x3c\x40\x44\x55\ +\x5d\x4c\x5e\x66\x44\x55\x59\x42\x46\x45\x3f\x4c\x52\x3d\x45\x45\ +\x43\x49\x53\x38\x40\x44\x40\x45\x47\x43\x4b\x4e\x3f\x45\x4a\x40\ +\x4a\x4f\x42\x4c\x51\x35\x41\x41\x38\x3d\x3d\x35\x3c\x40\x3a\x3f\ +\x44\x3b\x47\x4b\x40\x47\x4d\x42\x4e\x53\x3c\x47\x4a\x30\x39\x3b\ +\x34\x3d\x3b\x46\x51\x56\x39\x48\x4b\x41\x4f\x54\x37\x42\x44\x2a\ +\x32\x31\x37\x40\x42\x3f\x46\x4c\x35\x3f\x3f\x39\x41\x42\x42\x4e\ +\x50\x3f\x45\x49\x37\x37\x3b\x3d\x45\x46\x41\x47\x4e\x40\x4b\x50\ +\x40\x4b\x4d\x49\x51\x5c\x3b\x47\x46\x41\x4c\x4f\x3d\x4b\x52\x34\ +\x43\x4a\x00\x00\x00\xaf\xcc\xdb\xbf\xdb\xe8\xc7\xe3\xf1\xce\xe7\ +\xf2\xcd\xe9\xf3\xd4\xe9\xf3\xd3\xe9\xf3\xd3\xe9\xf3\xd1\xe9\xf4\ +\xd5\xea\xf5\xd3\xea\xf5\xcf\xe9\xf5\xce\xe7\xf1\xca\xe4\xf0\xba\ +\xd8\xe2\x97\xba\xc2\x60\x77\x7c\x4c\x51\x56\x4a\x50\x51\x42\x4a\ +\x49\x45\x49\x4a\x3f\x48\x43\x3c\x45\x43\x48\x4c\x52\x40\x48\x46\ +\x40\x4e\x4b\x48\x4d\x50\x43\x4f\x4c\x43\x52\x56\x42\x4a\x4a\x41\ +\x40\x43\x43\x4e\x51\x40\x4f\x4c\x42\x4b\x4d\x40\x47\x4a\x40\x4c\ +\x4e\x3d\x45\x43\x39\x3e\x3e\x3e\x45\x4c\x38\x3e\x40\x39\x3e\x42\ +\x3a\x43\x46\x41\x48\x48\x3f\x45\x4a\x43\x49\x49\x3e\x4c\x4f\x3b\ +\x49\x48\x3f\x49\x47\x3c\x42\x43\x40\x47\x46\x37\x43\x42\x37\x42\ +\x42\x41\x47\x46\x32\x37\x34\x36\x3e\x3b\x3a\x3e\x3e\x3a\x42\x45\ +\x41\x4c\x54\x4b\x6e\x87\x54\x87\xae\x4c\x7f\x9c\x35\x49\x54\x36\ +\x3d\x41\x41\x4d\x5a\x42\x64\x7e\x40\x5e\x7e\x3b\x5b\x72\x40\x5b\ +\x72\x3f\x59\x6b\x38\x45\x4b\x33\x3b\x38\x37\x40\x42\x3c\x42\x47\ +\x3d\x42\x44\x35\x40\x3f\x38\x43\x40\x39\x43\x42\x37\x43\x40\x33\ +\x3d\x3e\x36\x3b\x3c\x33\x3e\x40\x2c\x32\x2f\x34\x3f\x41\x37\x3c\ +\x3e\x38\x41\x40\x38\x41\x3f\x39\x46\x4a\x36\x3f\x3e\x3e\x46\x48\ +\x37\x41\x42\x37\x3d\x3f\x37\x3d\x40\x3d\x50\x57\x3d\x4c\x56\x3d\ +\x47\x49\x42\x50\x58\x38\x3f\x40\x47\x51\x58\x41\x4f\x4e\x36\x3b\ +\x3f\x34\x40\x45\x33\x40\x43\x34\x3f\x47\x2f\x38\x3a\x2f\x38\x3a\ +\x37\x42\x41\x34\x3b\x3b\x3e\x4e\x54\x42\x52\x56\x44\x4d\x55\x40\ +\x4e\x52\x36\x41\x3e\x30\x39\x36\x36\x41\x43\x3b\x44\x47\x37\x43\ +\x44\x38\x45\x46\x38\x45\x45\x34\x40\x41\x38\x41\x44\x3b\x47\x49\ +\x34\x42\x4c\x2f\x37\x35\x3e\x40\x45\x45\x52\x59\x47\x55\x5c\x3d\ +\x43\x46\x38\x3e\x41\x3b\x41\x40\x3c\x47\x48\x44\x50\x57\x43\x4a\ +\x4d\x3c\x44\x42\x43\x4e\x4f\x45\x4e\x56\x3f\x44\x48\x3d\x48\x4a\ +\x3b\x44\x48\x39\x43\x42\x2f\x38\x35\x39\x3f\x41\x3b\x46\x4c\x3b\ +\x47\x4d\x3c\x4c\x4c\x3b\x41\x43\x32\x36\x35\x43\x48\x4c\x45\x51\ +\x55\x45\x50\x50\x3c\x43\x44\x40\x4b\x4f\x3c\x42\x46\x35\x3d\x3b\ +\x45\x51\x52\x44\x4f\x54\x3d\x49\x4c\x3b\x47\x47\x3a\x42\x49\x3d\ +\x45\x47\x3b\x47\x49\x3b\x46\x45\x3c\x4d\x51\x45\x52\x5d\x00\x00\ +\x00\xb3\xd0\xe0\xbe\xd7\xe3\xc9\xe1\xea\xca\xe4\xed\xce\xe6\xf0\ +\xd0\xe8\xf1\xd1\xe9\xf3\xd7\xec\xf4\xd2\xeb\xf5\xd2\xeb\xf5\xd2\ +\xeb\xf5\xd2\xeb\xf6\xd0\xea\xf5\xd0\xe9\xf4\xce\xe9\xf4\xcc\xe9\ +\xf3\xb7\xd6\xdf\x72\x89\x91\x50\x59\x60\x44\x4c\x4e\x3f\x43\x3e\ +\x3e\x40\x42\x40\x43\x43\x39\x40\x40\x45\x48\x4c\x48\x4f\x54\x46\ +\x4f\x53\x3f\x46\x49\x3f\x44\x45\x3c\x43\x46\x3f\x44\x44\x43\x4d\ +\x4d\x44\x4a\x4c\x42\x49\x48\x3f\x43\x43\x3f\x41\x3f\x40\x45\x44\ +\x46\x45\x4d\x49\x4d\x56\x47\x4e\x51\x45\x4b\x50\x38\x3d\x3e\x3a\ +\x3e\x3f\x37\x3f\x40\x3b\x48\x48\x3d\x48\x4c\x39\x41\x3e\x3e\x42\ +\x43\x42\x48\x4e\x41\x4b\x4c\x35\x40\x3f\x38\x3e\x3d\x38\x41\x40\ +\x39\x43\x3f\x37\x3e\x43\x36\x3f\x40\x37\x3a\x3d\x36\x3f\x43\x38\ +\x3e\x42\x36\x40\x48\x45\x59\x6b\x3d\x45\x47\x38\x40\x40\x41\x53\ +\x69\x48\x6e\x94\x3e\x53\x65\x3b\x45\x47\x39\x45\x4c\x41\x46\x46\ +\x3a\x40\x44\x4c\x68\x7d\x4f\x7b\x98\x42\x5a\x68\x3d\x43\x46\x3d\ +\x44\x48\x3c\x48\x4a\x35\x3c\x44\x40\x4a\x4b\x41\x4c\x52\x42\x53\ +\x57\x39\x4a\x4b\x46\x54\x54\x43\x4b\x50\x41\x41\x46\x41\x48\x4a\ +\x3e\x45\x45\x37\x41\x49\x3c\x46\x47\x36\x3c\x3f\x3a\x3f\x42\x37\ +\x41\x41\x39\x42\x42\x3d\x48\x48\x38\x3e\x40\x33\x3c\x3e\x31\x34\ +\x35\x3f\x44\x44\x34\x3e\x42\x34\x3d\x3c\x33\x39\x39\x38\x48\x4d\ +\x43\x4f\x53\x3f\x4f\x54\x36\x43\x41\x40\x4e\x54\x44\x4a\x4d\x40\ +\x49\x52\x40\x4a\x50\x39\x46\x48\x37\x41\x42\x33\x3e\x3d\x3a\x43\ +\x3e\x3b\x48\x47\x38\x48\x4b\x35\x3a\x40\x3d\x48\x51\x42\x50\x56\ +\x3e\x4a\x54\x3f\x4a\x55\x42\x51\x5e\x3e\x48\x4a\x3f\x48\x46\x40\ +\x4e\x50\x3d\x4d\x50\x3f\x48\x4e\x3a\x3c\x44\x34\x36\x36\x2c\x36\ +\x38\x3e\x4b\x4f\x43\x50\x58\x44\x52\x56\x3a\x41\x40\x3e\x45\x50\ +\x43\x4a\x52\x37\x3e\x40\x3a\x3f\x45\x34\x3c\x3b\x39\x3f\x3f\x3b\ +\x43\x48\x40\x4a\x4e\x44\x4f\x55\x40\x4a\x4e\x3e\x49\x4d\x40\x4e\ +\x4c\x41\x4e\x4e\x36\x3d\x3e\x3e\x4b\x4c\x3e\x4d\x4d\x39\x43\x46\ +\x39\x43\x44\x32\x3e\x3d\x3c\x44\x47\x45\x4e\x52\x42\x51\x53\x3a\ +\x45\x49\x3a\x41\x48\x33\x3f\x3e\x39\x4b\x4d\x45\x51\x5b\x3a\x42\ +\x46\x39\x49\x4e\x45\x54\x5a\x3c\x48\x4c\x00\x00\x00\xb1\xd1\xe0\ +\xba\xd0\xdd\xc6\xdf\xea\xce\xe6\xef\xd1\xe6\xf0\xd2\xe9\xf4\xd4\ +\xe9\xf5\xd3\xeb\xf5\xd5\xed\xf6\xd4\xed\xf6\xd6\xed\xf5\xd6\xec\ +\xf6\xd5\xed\xf7\xd4\xec\xf6\xd1\xeb\xf5\xd4\xec\xf6\xd5\xeb\xf6\ +\xce\xea\xf4\x96\xb4\xbc\x73\x8e\x97\x59\x6b\x71\x45\x52\x51\x40\ +\x4b\x48\x43\x49\x48\x43\x4b\x4b\x47\x51\x53\x3d\x42\x45\x3a\x3e\ +\x3f\x3e\x44\x44\x45\x50\x53\x45\x4b\x4e\x45\x52\x55\x3e\x42\x41\ +\x39\x3e\x3a\x3f\x45\x47\x41\x45\x49\x48\x4b\x51\x43\x4b\x4a\x37\ +\x3b\x3c\x3b\x3b\x3c\x43\x46\x49\x43\x4a\x4a\x48\x4e\x55\x42\x48\ +\x4e\x3c\x45\x45\x3a\x45\x48\x40\x42\x45\x3a\x43\x43\x35\x3e\x40\ +\x3d\x44\x42\x37\x40\x42\x39\x43\x47\x36\x3e\x41\x35\x3d\x3d\x37\ +\x3b\x3f\x38\x3f\x40\x40\x45\x44\x3f\x47\x47\x35\x3f\x3e\x38\x3d\ +\x40\x36\x40\x45\x39\x44\x45\x39\x3f\x44\x48\x5a\x6a\x41\x57\x66\ +\x45\x59\x68\x4c\x6a\x7d\x49\x6a\x7d\x4c\x65\x79\x53\x78\x94\x46\ +\x6e\x92\x3e\x5d\x74\x41\x57\x64\x3b\x48\x4a\x40\x4e\x4b\x35\x42\ +\x41\x36\x44\x48\x3f\x49\x4c\x39\x3f\x42\x3b\x45\x46\x53\x76\x93\ +\x31\x41\x4c\x3b\x48\x4c\x37\x44\x3f\x2f\x36\x30\x31\x34\x38\x36\ +\x3d\x3e\x36\x40\x40\x2b\x36\x37\x38\x3e\x3f\x3d\x47\x50\x42\x4b\ +\x51\x40\x48\x4d\x3a\x40\x43\x38\x46\x47\x41\x4b\x50\x43\x4f\x57\ +\x38\x43\x44\x39\x48\x4b\x3c\x46\x48\x43\x4b\x51\x3d\x47\x4a\x32\ +\x3a\x3a\x31\x3c\x3b\x37\x3f\x42\x39\x3d\x3c\x3c\x47\x48\x3a\x45\ +\x47\x43\x50\x55\x34\x40\x3c\x32\x3f\x3f\x37\x40\x49\x37\x42\x47\ +\x37\x45\x45\x42\x4b\x54\x45\x55\x5c\x37\x41\x45\x32\x39\x3f\x38\ +\x40\x48\x2e\x3b\x37\x2f\x35\x33\x31\x3e\x3f\x43\x51\x56\x3b\x49\ +\x50\x36\x42\x48\x37\x3f\x40\x45\x4f\x57\x35\x44\x43\x3b\x4d\x58\ +\x3d\x4c\x57\x31\x39\x3e\x2e\x31\x35\x3c\x48\x50\x3d\x4d\x51\x39\ +\x47\x49\x30\x3a\x38\x38\x49\x4b\x45\x4e\x54\x42\x47\x4c\x31\x3b\ +\x37\x33\x37\x39\x2f\x32\x31\x38\x3c\x3e\x41\x4f\x4d\x48\x50\x55\ +\x72\x7b\x83\x57\x63\x6c\x4f\x60\x67\x44\x4f\x54\x39\x43\x3d\x3b\ +\x4c\x50\x3d\x4e\x4d\x3f\x4c\x4f\x3b\x44\x49\x36\x42\x47\x34\x42\ +\x43\x35\x41\x45\x3a\x47\x4c\x3b\x46\x4b\x39\x40\x42\x42\x50\x56\ +\x3d\x49\x4e\x3e\x4c\x4b\x00\x00\x00\x9c\xba\xcf\xbe\xd7\xe4\xcc\ +\xe3\xef\xce\xe6\xf1\xcc\xe5\xf0\xd0\xe9\xf2\xd5\xea\xf4\xd4\xec\ +\xf4\xd8\xee\xf6\xd5\xec\xf6\xd8\xed\xf5\xd8\xed\xf6\xd6\xec\xf6\ +\xd6\xed\xf7\xd6\xed\xf6\xd3\xec\xf7\xd4\xec\xf6\xd3\xed\xf5\xd3\ +\xea\xf4\xcf\xea\xf1\xa5\xc6\xcc\x63\x7d\x80\x42\x56\x58\x3d\x4f\ +\x4f\x3b\x43\x43\x40\x44\x4a\x45\x4b\x4b\x43\x47\x45\x4b\x54\x58\ +\x44\x4c\x53\x40\x47\x47\x43\x4e\x4e\x47\x49\x50\x43\x49\x4c\x3e\ +\x45\x45\x38\x3e\x42\x35\x3a\x38\x40\x43\x44\x3e\x3d\x43\x35\x3d\ +\x3d\x38\x3f\x3c\x38\x3d\x3e\x3f\x4b\x4c\x40\x45\x44\x3f\x4a\x49\ +\x31\x3e\x3e\x41\x44\x41\x38\x3e\x3d\x35\x3c\x3a\x3e\x44\x48\x38\ +\x43\x47\x32\x3d\x3b\x32\x3d\x3e\x34\x42\x3f\x33\x3c\x38\x33\x38\ +\x3a\x36\x3a\x39\x3b\x47\x49\x38\x3d\x3e\x38\x3f\x42\x39\x46\x47\ +\x34\x3c\x3a\x33\x3c\x3f\x37\x3e\x44\x42\x56\x64\x49\x6c\x86\x35\ +\x49\x5c\x38\x4c\x5a\x39\x4e\x5b\x49\x78\x98\x35\x3e\x42\x33\x3e\ +\x3e\x36\x3b\x3a\x33\x3c\x41\x34\x3c\x39\x3b\x45\x4a\x40\x4f\x55\ +\x3f\x4b\x52\x42\x55\x5f\x49\x6e\x86\x53\x80\xa9\x49\x66\x80\x3c\ +\x43\x4a\x3a\x44\x46\x42\x50\x54\x3f\x4e\x52\x43\x4e\x52\x3b\x41\ +\x43\x34\x43\x3f\x34\x40\x3d\x3e\x48\x4a\x36\x3d\x39\x34\x3c\x3c\ +\x2f\x37\x36\x35\x3b\x41\x38\x3c\x3e\x38\x3d\x48\x31\x39\x38\x2e\ +\x35\x36\x3b\x43\x47\x3d\x42\x43\x30\x38\x3a\x3e\x45\x4c\x3e\x51\ +\x56\x38\x48\x4c\x37\x42\x40\x3e\x53\x56\x40\x4e\x53\x3d\x43\x46\ +\x38\x3c\x3c\x36\x46\x46\x37\x41\x42\x33\x3a\x3e\x33\x3b\x38\x39\ +\x3f\x42\x31\x3b\x38\x2f\x34\x34\x39\x42\x43\x38\x49\x51\x43\x4c\ +\x4f\x48\x52\x56\x3b\x46\x49\x39\x3f\x44\x39\x42\x42\x3d\x42\x46\ +\x41\x4c\x52\x45\x51\x56\x3d\x4a\x4c\x3c\x4c\x56\x39\x45\x48\x38\ +\x42\x44\x3e\x50\x55\x45\x56\x61\x3c\x49\x51\x3a\x44\x45\x3c\x42\ +\x48\x41\x53\x5a\x38\x44\x48\x35\x3b\x3f\x3b\x48\x49\x44\x4d\x55\ +\x3f\x4b\x4c\x47\x4c\x54\x46\x4e\x58\x3a\x43\x45\x56\x60\x68\x42\ +\x4b\x4c\x3b\x43\x49\x33\x3b\x3a\x30\x39\x37\x3a\x45\x49\x3b\x47\ +\x49\x3b\x44\x46\x3e\x46\x45\x43\x50\x56\x40\x51\x56\x40\x4d\x4e\ +\x3d\x48\x46\x43\x4d\x52\x3c\x4c\x50\x36\x41\x40\x37\x3f\x3d\x3c\ +\x43\x48\x00\x00\x00\x9d\xc4\xdc\xc0\xd9\xe6\xc8\xdf\xe8\xcb\xe4\ +\xf0\xcb\xe5\xf2\xd1\xe9\xf3\xcf\xe9\xf2\xd0\xe8\xf2\xd4\xea\xf4\ +\xd5\xea\xf3\xd8\xed\xf5\xd5\xed\xf5\xd4\xeb\xf4\xd6\xec\xf6\xd5\ +\xee\xf6\xd3\xec\xf6\xd2\xec\xf6\xd5\xec\xf5\xd5\xed\xf5\xd5\xef\ +\xf6\xd3\xed\xf5\xd0\xe9\xf3\xa5\xc6\xcf\x89\xa4\xac\x6e\x86\x8c\ +\x61\x6f\x75\x3f\x4e\x51\x40\x4b\x4f\x3a\x44\x43\x37\x3e\x3f\x34\ +\x3b\x3c\x3a\x42\x3f\x38\x43\x3f\x3d\x42\x3e\x41\x47\x4e\x3f\x46\ +\x49\x3b\x42\x43\x49\x4a\x4e\x40\x48\x49\x42\x4c\x4c\x43\x4d\x50\ +\x45\x4e\x4f\x4d\x5a\x5d\x48\x4f\x52\x40\x4f\x52\x3a\x46\x46\x3d\ +\x43\x46\x41\x44\x44\x3a\x44\x44\x34\x41\x40\x36\x3d\x43\x34\x3e\ +\x3d\x30\x3b\x3b\x35\x3c\x40\x33\x3c\x3e\x36\x40\x3b\x36\x3a\x3b\ +\x30\x38\x39\x33\x36\x36\x2a\x33\x2f\x35\x3a\x38\x38\x40\x43\x39\ +\x3c\x44\x34\x42\x46\x34\x3c\x40\x36\x42\x45\x3c\x43\x47\x41\x4f\ +\x5c\x52\x78\x98\x41\x67\x81\x34\x42\x45\x3c\x47\x46\x3c\x46\x44\ +\x3a\x45\x42\x3b\x4c\x4e\x3f\x50\x53\x43\x55\x5e\x4b\x64\x77\x4e\ +\x6e\x8e\x41\x5c\x74\x3a\x4e\x66\x48\x64\x80\x58\x79\x93\x3e\x51\ +\x5b\x3e\x48\x4d\x3e\x46\x4c\x38\x41\x3d\x3c\x45\x48\x3b\x48\x48\ +\x32\x3e\x44\x34\x3d\x43\x34\x3c\x3c\x37\x3f\x41\x38\x47\x4b\x45\ +\x4f\x57\x46\x51\x54\x3f\x40\x46\x3d\x43\x47\x43\x4c\x4c\x42\x4d\ +\x4a\x39\x41\x3f\x3f\x48\x47\x3f\x4a\x4f\x39\x46\x48\x30\x3e\x42\ +\x35\x3b\x41\x3a\x43\x4b\x38\x3f\x42\x30\x3a\x39\x3e\x46\x4b\x3b\ +\x4e\x54\x46\x57\x65\x3f\x4b\x51\x45\x4f\x53\x3a\x42\x45\x36\x40\ +\x44\x44\x4f\x5a\x45\x57\x58\x3c\x46\x49\x34\x37\x3b\x36\x39\x3d\ +\x3e\x44\x48\x3e\x4d\x4d\x37\x3a\x3c\x33\x37\x3c\x3b\x45\x49\x34\ +\x3e\x3f\x29\x33\x2f\x2d\x39\x38\x34\x43\x44\x3a\x48\x4c\x43\x50\ +\x55\x3d\x46\x4d\x41\x4d\x54\x35\x41\x42\x35\x42\x42\x3b\x44\x43\ +\x37\x43\x44\x44\x4e\x52\x4a\x55\x5b\x3d\x4c\x4d\x3a\x47\x45\x39\ +\x43\x46\x3d\x43\x44\x46\x54\x54\x3b\x44\x42\x34\x3e\x3c\x37\x46\ +\x47\x39\x44\x43\x42\x4d\x51\x3d\x4a\x4c\x39\x45\x44\x3c\x47\x4b\ +\x3f\x4d\x4f\x3c\x48\x4c\x39\x41\x42\x3f\x50\x51\x37\x3b\x3c\x33\ +\x3e\x41\x36\x45\x45\x42\x48\x4c\x44\x51\x55\x36\x4e\x55\x00\x00\ +\x00\x8b\xb9\xdb\x88\xb8\xd7\x92\xbf\xdb\xb6\xd2\xe4\xca\xe2\xec\ +\xc5\xe1\xed\xc4\xe1\xe9\xca\xe2\xec\xcd\xe4\xef\xd1\xe5\xef\xd9\ +\xed\xf4\xd7\xee\xf6\xd9\xed\xf6\xd8\xef\xf7\xd6\xee\xf6\xd7\xed\ +\xf7\xd8\xef\xf7\xd9\xed\xf7\xd7\xee\xf7\xd4\xed\xf6\xd5\xee\xf6\ +\xd2\xeb\xf4\xcc\xe8\xf2\xcc\xe7\xf3\xd0\xea\xf6\xce\xeb\xf6\xcc\ +\xeb\xf4\xae\xcd\xd7\xac\xcd\xd3\x7c\x94\x9b\x60\x7c\x7f\x4a\x5f\ +\x67\x48\x59\x60\x40\x47\x46\x40\x48\x4c\x42\x50\x4f\x3c\x42\x43\ +\x3e\x45\x45\x41\x49\x48\x41\x48\x49\x3c\x4c\x4b\x40\x48\x4b\x43\ +\x46\x49\x3c\x43\x47\x3d\x44\x49\x3a\x40\x3e\x3e\x44\x44\x41\x45\ +\x48\x36\x42\x41\x36\x41\x3f\x35\x3d\x3a\x37\x40\x42\x39\x41\x43\ +\x32\x36\x38\x36\x3a\x3f\x2f\x37\x36\x30\x3b\x38\x35\x3a\x3f\x35\ +\x3d\x3f\x39\x3f\x43\x35\x3f\x41\x33\x3c\x3a\x36\x39\x3f\x36\x3a\ +\x39\x34\x3f\x3e\x39\x44\x45\x3e\x4a\x48\x35\x3b\x40\x36\x43\x4f\ +\x36\x52\x63\x39\x48\x52\x3e\x4b\x4f\x36\x44\x47\x39\x46\x4c\x49\ +\x69\x76\x4f\x71\x89\x49\x59\x6f\x3c\x53\x64\x41\x5d\x70\x48\x63\ +\x7e\x3b\x48\x57\x47\x61\x73\x3e\x55\x6b\x47\x63\x7c\x4d\x6a\x7a\ +\x3d\x46\x4d\x38\x3e\x42\x31\x3d\x3d\x3b\x4a\x4c\x36\x44\x47\x40\ +\x4d\x53\x3d\x44\x42\x3b\x46\x44\x3b\x41\x48\x4c\x52\x54\x3b\x47\ +\x45\x3d\x3f\x40\x3d\x48\x46\x3e\x4b\x4f\x37\x35\x38\x39\x3e\x41\ +\x3f\x43\x4a\x35\x3e\x43\x39\x47\x46\x44\x53\x5b\x3e\x53\x56\x38\ +\x3d\x3f\x34\x40\x44\x31\x3b\x3e\x37\x40\x45\x3d\x46\x4d\x39\x40\ +\x43\x32\x36\x36\x34\x35\x36\x30\x39\x38\x2e\x34\x39\x35\x39\x40\ +\x37\x3b\x42\x2d\x34\x36\x3f\x46\x48\x42\x4d\x52\x36\x3c\x35\x35\ +\x37\x37\x34\x3c\x3b\x34\x43\x46\x3f\x4a\x50\x3f\x49\x4d\x3e\x4c\ +\x50\x39\x45\x4b\x37\x41\x46\x36\x3c\x41\x2e\x3a\x3a\x35\x41\x44\ +\x36\x43\x46\x34\x40\x41\x3e\x4b\x53\x40\x51\x5a\x3d\x4a\x50\x40\ +\x4e\x54\x43\x4c\x52\x3b\x44\x44\x37\x41\x3f\x3a\x44\x47\x3d\x48\ +\x48\x3d\x47\x47\x3f\x46\x48\x43\x4c\x50\x3d\x50\x57\x46\x50\x55\ +\x45\x4e\x54\x40\x48\x4d\x42\x4c\x4c\x3b\x44\x4a\x36\x3f\x46\x3d\ +\x48\x4d\x40\x4b\x52\x3c\x45\x4c\x3f\x4a\x4f\x43\x4e\x53\x3c\x46\ +\x4c\x34\x3e\x3f\x35\x40\x42\x37\x42\x3c\x00\x00\x00\x8f\xb9\xda\ +\x8a\xb8\xd8\x8a\xba\xda\x8b\xba\xda\x93\xbd\xd9\xb0\xcd\xde\xc5\ +\xdd\xe5\xc7\xdd\xe8\xc4\xdd\xe9\xcb\xe2\xee\xd5\xea\xf4\xd5\xea\ +\xf5\xd3\xea\xf5\xd7\xed\xf6\xd9\xed\xf7\xd6\xee\xf7\xd4\xed\xf7\ +\xd6\xef\xf6\xd7\xec\xf7\xd4\xed\xf7\xd2\xec\xf6\xd7\xed\xf6\xd1\ +\xeb\xf6\xd1\xeb\xf6\xd3\xec\xf6\xd3\xed\xf6\xd6\xed\xf7\xd1\xeb\ +\xf5\xd4\xed\xf7\xd3\xec\xf6\xcf\xec\xf5\xc3\xde\xe7\x9b\xba\xc1\ +\x56\x71\x7d\x51\x63\x69\x4b\x59\x5d\x3d\x45\x49\x43\x45\x4c\x4b\ +\x4f\x57\x44\x4a\x4c\x3b\x42\x44\x3d\x42\x41\x41\x49\x47\x3c\x46\ +\x4a\x3b\x44\x43\x3a\x43\x44\x3d\x45\x44\x3f\x45\x48\x38\x43\x47\ +\x37\x41\x40\x3e\x46\x49\x35\x3d\x3f\x3b\x3f\x40\x33\x3a\x3c\x2f\ +\x3b\x3f\x34\x3b\x37\x2e\x38\x39\x32\x35\x3b\x35\x38\x39\x32\x35\ +\x38\x33\x36\x35\x36\x3a\x3b\x31\x39\x39\x2e\x37\x36\x30\x3a\x3d\ +\x36\x42\x43\x39\x47\x45\x3b\x4a\x4d\x40\x45\x46\x36\x43\x40\x3d\ +\x44\x4a\x3a\x44\x50\x42\x54\x5f\x54\x76\x90\x47\x67\x85\x41\x58\ +\x6d\x46\x57\x67\x49\x5a\x6f\x3e\x54\x60\x3f\x4e\x57\x47\x5d\x6f\ +\x49\x60\x75\x41\x53\x65\x46\x5c\x70\x3e\x58\x71\x4d\x6a\x81\x47\ +\x58\x66\x47\x55\x5c\x43\x51\x52\x3c\x4c\x4f\x3a\x46\x49\x39\x3d\ +\x3b\x3a\x3e\x3a\x3e\x45\x47\x32\x3a\x3a\x38\x42\x41\x37\x3f\x42\ +\x38\x48\x48\x37\x3d\x40\x3c\x42\x45\x4a\x55\x58\x41\x4b\x53\x37\ +\x42\x49\x3a\x46\x49\x3a\x43\x43\x32\x3a\x3a\x39\x42\x46\x3e\x4a\ +\x54\x38\x45\x48\x3f\x46\x4f\x39\x42\x44\x36\x3b\x3e\x34\x41\x42\ +\x3e\x44\x48\x37\x44\x45\x3f\x4d\x56\x47\x4e\x58\x3c\x42\x45\x44\ +\x4c\x52\x49\x52\x56\x3c\x40\x42\x34\x3b\x38\x40\x47\x4c\x36\x42\ +\x43\x38\x43\x43\x3b\x49\x4c\x39\x40\x42\x32\x36\x39\x31\x39\x3b\ +\x3e\x49\x4d\x3c\x46\x47\x3c\x50\x51\x39\x44\x3f\x34\x41\x43\x46\ +\x52\x5c\x3f\x4e\x58\x43\x4d\x53\x37\x41\x45\x3d\x46\x4a\x3b\x43\ +\x3c\x43\x51\x51\x42\x4b\x4b\x42\x52\x56\x3b\x44\x48\x36\x3e\x3f\ +\x44\x4e\x52\x3d\x45\x47\x33\x3a\x39\x35\x3e\x41\x37\x44\x47\x37\ +\x3d\x3d\x36\x40\x43\x40\x4c\x50\x3c\x49\x4a\x3d\x4c\x4f\x39\x47\ +\x4c\x3a\x41\x43\x31\x38\x3d\x33\x3c\x3f\x36\x3d\x3c\x40\x48\x4a\ +\x40\x4b\x4d\x3f\x4b\x4d\x00\x00\x00\x93\xba\xdb\x8c\xb7\xd8\x8a\ +\xb6\xd6\x89\xb7\xd6\x8c\xb6\xd6\x8c\xb4\xd4\x8d\xb6\xd5\xa0\xc3\ +\xde\xae\xcb\xe1\xbe\xd8\xe6\xce\xe5\xf0\xd2\xe8\xf2\xd7\xed\xf5\ +\xd4\xeb\xf4\xd7\xed\xf6\xd8\xee\xf6\xd5\xee\xf7\xd4\xee\xf6\xd3\ +\xec\xf7\xd1\xea\xf6\xd1\xeb\xf6\xd7\xef\xf6\xd5\xee\xf7\xd8\xee\ +\xf7\xd9\xef\xf7\xd7\xee\xf7\xd6\xed\xf6\xd4\xee\xf6\xd3\xec\xf6\ +\xd5\xec\xf5\xd2\xec\xf5\xd2\xe9\xf4\xd1\xea\xf5\xb9\xd9\xe4\x84\ +\xa6\xb5\x5c\x78\x87\x44\x56\x5a\x43\x4e\x51\x3d\x46\x45\x3c\x44\ +\x46\x43\x4b\x4d\x40\x4a\x49\x43\x48\x4c\x3b\x44\x49\x38\x43\x47\ +\x43\x53\x57\x37\x45\x46\x3a\x43\x46\x35\x43\x44\x35\x40\x42\x39\ +\x40\x41\x36\x39\x3e\x3d\x40\x41\x37\x3f\x42\x32\x3e\x3b\x30\x38\ +\x37\x32\x37\x37\x31\x35\x35\x3b\x41\x41\x3b\x3e\x41\x34\x3f\x3f\ +\x32\x3b\x3b\x36\x3c\x3e\x34\x3b\x3d\x30\x37\x33\x34\x3a\x3c\x35\ +\x43\x44\x46\x51\x58\x49\x5c\x67\x3d\x54\x5b\x46\x68\x7b\x4d\x76\ +\x93\x45\x62\x7a\x41\x59\x70\x49\x64\x7a\x4d\x6c\x83\x3e\x4d\x5c\ +\x3b\x47\x4b\x4b\x64\x7d\x4c\x65\x7a\x54\x6d\x7f\x51\x70\x8b\x4d\ +\x65\x7b\x3c\x4c\x5b\x46\x5a\x6e\x42\x5a\x68\x4a\x62\x7d\x53\x78\ +\x94\x47\x61\x72\x40\x4e\x52\x43\x52\x57\x3f\x47\x4b\x38\x3e\x3e\ +\x36\x3f\x40\x36\x40\x41\x45\x4e\x51\x38\x3f\x41\x37\x40\x47\x37\ +\x3f\x42\x2e\x36\x37\x2b\x38\x37\x32\x36\x3b\x36\x38\x3b\x35\x42\ +\x41\x34\x3d\x3c\x45\x4e\x50\x43\x51\x55\x37\x41\x41\x34\x40\x3f\ +\x2f\x39\x3a\x38\x45\x45\x32\x39\x38\x33\x3e\x3e\x33\x38\x39\x3f\ +\x46\x49\x3c\x42\x48\x35\x3b\x3e\x2c\x34\x37\x2c\x35\x33\x2e\x3a\ +\x37\x33\x36\x3a\x39\x42\x47\x3b\x43\x47\x3a\x41\x44\x3f\x4b\x52\ +\x35\x3e\x47\x34\x3b\x3d\x39\x40\x46\x3c\x4b\x4d\x3d\x46\x50\x33\ +\x38\x39\x37\x41\x3e\x38\x42\x43\x37\x40\x47\x3b\x46\x4a\x38\x40\ +\x43\x37\x3e\x46\x3b\x4b\x4e\x36\x40\x40\x33\x3f\x3f\x37\x44\x48\ +\x32\x41\x3f\x32\x39\x38\x32\x39\x37\x36\x43\x41\x3d\x47\x4d\x3b\ +\x42\x45\x3b\x49\x4e\x44\x50\x54\x40\x50\x55\x3d\x40\x46\x3b\x43\ +\x43\x3e\x45\x4a\x33\x3a\x3c\x39\x45\x44\x3f\x45\x4b\x37\x3f\x3b\ +\x40\x49\x4e\x3a\x4a\x4c\x3c\x44\x47\x3d\x49\x4b\x3d\x4b\x4f\x36\ +\x43\x41\x00\x00\x00\x96\xbc\xdc\x87\xb1\xd4\x76\xa2\xc5\x79\xa5\ +\xc5\x7d\xa4\xc5\x87\xad\xcd\x90\xb6\xd5\x97\xbb\xdc\x9a\xbb\xdd\ +\x94\xb5\xd6\x9b\xb9\xd4\xba\xd1\xdd\xd3\xe7\xf1\xc9\xe2\xed\xd2\ +\xea\xf4\xd7\xec\xf5\xd5\xec\xf6\xce\xeb\xf5\xcf\xea\xf6\xcf\xea\ +\xf6\xd4\xec\xf6\xd7\xee\xf7\xd6\xee\xf7\xd8\xee\xf6\xda\xef\xf6\ +\xd7\xed\xf6\xd5\xeb\xf6\xd5\xed\xf5\xd3\xed\xf6\xd2\xed\xf4\xd4\ +\xed\xf5\xd2\xea\xf4\xd0\xe9\xf5\xce\xe8\xf3\xcb\xe6\xf2\xa4\xc8\ +\xd2\x7c\xa6\xb7\x6b\x87\x96\x56\x72\x7c\x42\x54\x57\x3d\x4a\x4a\ +\x34\x3e\x3f\x3b\x47\x4a\x3d\x42\x47\x39\x41\x45\x36\x40\x40\x35\ +\x3f\x39\x34\x3e\x3f\x38\x3f\x3b\x36\x39\x37\x35\x3c\x3e\x31\x35\ +\x36\x31\x35\x36\x2f\x37\x3c\x32\x39\x3d\x30\x3a\x3d\x30\x38\x39\ +\x2d\x37\x34\x2c\x32\x2f\x32\x3a\x38\x2f\x36\x33\x2f\x37\x37\x33\ +\x38\x3e\x30\x38\x35\x30\x3a\x38\x30\x37\x36\x32\x3d\x3d\x3f\x54\ +\x69\x3f\x5b\x74\x49\x72\x98\x4f\x7c\x9e\x3d\x58\x6c\x43\x62\x7c\ +\x44\x5f\x78\x38\x4b\x5e\x3e\x51\x5e\x42\x5c\x6f\x3f\x53\x62\x45\ +\x5d\x75\x49\x61\x73\x47\x60\x78\x4b\x61\x7a\x4d\x67\x82\x40\x4e\ +\x55\x49\x62\x6d\x4f\x6f\x89\x4c\x5d\x71\x42\x61\x76\x4b\x6c\x8c\ +\x4a\x66\x86\x3a\x51\x66\x45\x60\x6e\x3f\x45\x4a\x41\x4b\x56\x37\ +\x42\x43\x2f\x35\x33\x2e\x32\x34\x31\x40\x45\x2f\x3f\x3e\x37\x42\ +\x40\x39\x45\x43\x38\x44\x42\x37\x3f\x44\x37\x42\x43\x31\x37\x37\ +\x40\x4a\x51\x3d\x45\x47\x3c\x3e\x42\x3a\x3e\x3c\x46\x59\x5c\x3c\ +\x4f\x51\x3d\x41\x40\x40\x48\x50\x39\x44\x45\x42\x48\x48\x3a\x41\ +\x40\x32\x3e\x3f\x39\x48\x46\x43\x4f\x4d\x3d\x4a\x49\x41\x4a\x54\ +\x39\x44\x48\x32\x39\x37\x32\x3b\x3e\x3b\x41\x47\x41\x4d\x51\x3a\ +\x49\x4c\x35\x3a\x41\x38\x3f\x44\x37\x43\x47\x43\x51\x54\x47\x51\ +\x5a\x3f\x46\x53\x40\x4d\x63\x3e\x4d\x55\x3b\x48\x4a\x3d\x4b\x4e\ +\x43\x50\x5a\x3d\x46\x4c\x3f\x54\x5d\x47\x55\x5e\x3e\x50\x51\x3a\ +\x45\x49\x40\x4a\x50\x43\x52\x57\x48\x4b\x54\x3e\x42\x44\x3b\x48\ +\x4c\x41\x4b\x4f\x3c\x46\x47\x3d\x44\x43\x3e\x4b\x49\x3e\x49\x4e\ +\x40\x4a\x4e\x3a\x44\x4d\x36\x3d\x3c\x38\x41\x43\x36\x40\x42\x3f\ +\x4b\x4d\x44\x4f\x56\x46\x53\x5b\x39\x42\x43\x38\x47\x49\x00\x00\ +\x00\x97\xc0\xe0\x8c\xba\xdc\x80\xb1\xd4\x77\xa8\xc8\x6b\x97\xb7\ +\x61\x8a\xaa\x66\x8d\xad\x6d\x90\xb2\x69\x89\xac\x59\x78\x99\x4c\ +\x6c\x8d\x46\x6a\x8a\x90\xb1\xca\xbf\xd9\xe7\xd2\xe9\xf0\xcf\xe8\ +\xf3\xd2\xeb\xf5\xcf\xeb\xf6\xd1\xec\xf7\xd5\xed\xf7\xd8\xee\xf7\ +\xd3\xed\xf5\xd9\xee\xf7\xdc\xee\xf6\xdb\xef\xf6\xd9\xef\xf6\xd6\ +\xed\xf6\xd5\xec\xf6\xd0\xea\xf3\xd1\xeb\xf5\xd0\xea\xf4\xd4\xec\ +\xf5\xcf\xe9\xf5\xcd\xe7\xf3\xca\xe5\xf2\xc3\xe3\xef\xaf\xd9\xea\ +\x8d\xb6\xc8\x67\x82\x90\x66\x89\x9a\x60\x7d\x8b\x66\x83\x92\x53\ +\x6a\x72\x45\x56\x5c\x45\x54\x59\x3c\x4b\x4d\x34\x3f\x3f\x33\x3d\ +\x3d\x3c\x41\x43\x37\x3c\x41\x35\x3e\x45\x36\x39\x3c\x36\x3d\x4d\ +\x33\x3b\x4c\x2c\x36\x37\x2f\x36\x34\x2b\x33\x35\x29\x29\x2e\x2b\ +\x2f\x32\x27\x2e\x2f\x25\x29\x2e\x2d\x31\x37\x27\x2e\x2f\x39\x42\ +\x43\x34\x3d\x3e\x2c\x33\x35\x33\x3e\x41\x31\x35\x39\x34\x43\x46\ +\x35\x3f\x48\x38\x4f\x5a\x4e\x76\x93\x4d\x6b\x86\x40\x61\x77\x38\ +\x4f\x5f\x47\x64\x79\x47\x5b\x69\x42\x58\x67\x52\x70\x8a\x42\x4f\ +\x57\x48\x5b\x6a\x4c\x59\x62\x4a\x5a\x66\x44\x56\x62\x49\x64\x79\ +\x4f\x75\x8f\x49\x6d\x8d\x3d\x5b\x79\x34\x45\x51\x31\x3d\x40\x33\ +\x3d\x3d\x3c\x41\x45\x39\x40\x45\x3b\x44\x46\x31\x36\x35\x32\x32\ +\x34\x35\x3d\x3d\x40\x46\x4a\x3c\x49\x4d\x40\x4b\x4f\x41\x4c\x4f\ +\x3d\x46\x44\x3f\x49\x4d\x3c\x45\x4a\x41\x48\x4e\x46\x54\x59\x37\ +\x42\x40\x36\x3d\x3e\x36\x41\x3d\x31\x3a\x37\x37\x40\x43\x34\x38\ +\x3a\x36\x3e\x40\x2c\x36\x36\x31\x3e\x42\x3c\x45\x4a\x41\x4d\x54\ +\x3a\x46\x4a\x2e\x37\x38\x2d\x31\x32\x2e\x38\x39\x31\x37\x40\x34\ +\x37\x3c\x41\x4e\x52\x44\x50\x55\x3f\x49\x47\x3e\x43\x47\x40\x4a\ +\x4d\x3d\x49\x4d\x3a\x45\x46\x35\x44\x46\x3c\x43\x47\x38\x40\x45\ +\x3b\x45\x4d\x38\x3f\x40\x37\x44\x42\x3e\x4f\x57\x3a\x48\x4d\x41\ +\x4a\x4f\x42\x4a\x52\x42\x4a\x51\x3a\x43\x44\x3d\x46\x49\x3e\x4c\ +\x52\x42\x4d\x53\x38\x3f\x3f\x3c\x46\x4b\x43\x4a\x51\x3d\x44\x46\ +\x32\x3f\x39\x35\x42\x3f\x38\x42\x47\x3c\x49\x4b\x39\x41\x42\x36\ +\x3c\x3d\x3d\x48\x49\x40\x4b\x53\x3e\x49\x51\x3c\x47\x48\x3d\x44\ +\x44\x34\x3e\x3f\x42\x4d\x51\x46\x55\x5f\x00\x00\x00\x99\xc5\xe5\ +\x92\xc1\xe2\x88\xbd\xdd\x87\xbb\xda\x85\xb4\xd5\x86\xaf\xd2\x8b\ +\xb2\xd2\x8d\xb2\xd2\x89\xad\xcf\x80\xa4\xc6\x7a\x9e\xbf\x89\xb0\ +\xd0\x93\xbe\xd8\x94\xc0\xd8\x9e\xc3\xdf\xbd\xd7\xe9\xd0\xe7\xf1\ +\xcf\xe9\xf4\xd0\xea\xf5\xd3\xeb\xf5\xd5\xed\xf6\xd7\xeb\xf7\xd6\ +\xeb\xf6\xd5\xea\xf4\xd8\xed\xf6\xd8\xee\xf6\xd7\xed\xf6\xd6\xec\ +\xf5\xd2\xec\xf4\xd3\xeb\xf4\xd0\xe9\xf1\xd0\xe7\xf2\xcd\xe8\xf1\ +\xcd\xe7\xf2\xca\xe5\xf1\xc9\xe4\xf1\xc7\xe3\xf1\xc0\xe1\xf1\xb0\ +\xda\xe9\x77\xa1\xbc\x77\xa2\xb4\x8f\xb3\xd1\x7f\xac\xc2\x64\x7f\ +\x91\x67\x91\xa4\x5b\x75\x86\x57\x75\x7f\x54\x67\x6f\x3c\x4b\x4e\ +\x39\x44\x42\x2d\x36\x36\x33\x38\x3b\x2d\x33\x34\x2e\x36\x35\x29\ +\x2d\x2e\x22\x29\x2a\x29\x2d\x2f\x35\x39\x39\x2d\x2f\x34\x29\x2b\ +\x2b\x27\x2d\x33\x2e\x36\x34\x2a\x2e\x2d\x33\x36\x35\x2a\x31\x32\ +\x2b\x34\x35\x2b\x32\x33\x30\x35\x36\x34\x39\x3b\x3d\x41\x42\x31\ +\x39\x3a\x34\x41\x44\x3a\x49\x59\x46\x66\x7f\x40\x5b\x6b\x44\x56\ +\x6f\x43\x54\x69\x46\x5b\x6b\x45\x58\x68\x44\x54\x5c\x4e\x67\x7e\ +\x46\x58\x6a\x47\x61\x75\x46\x61\x7a\x40\x5c\x6d\x36\x4a\x62\x31\ +\x3e\x46\x4a\x68\x7f\x3c\x5c\x6e\x3a\x48\x4a\x38\x41\x44\x31\x37\ +\x38\x38\x39\x3c\x34\x37\x38\x3c\x43\x44\x3b\x46\x46\x3a\x47\x45\ +\x43\x4b\x4e\x41\x4b\x4b\x37\x3e\x3d\x33\x38\x37\x31\x35\x38\x2b\ +\x38\x38\x36\x41\x40\x36\x3e\x3d\x37\x39\x37\x36\x43\x40\x3d\x49\ +\x4d\x43\x4d\x4b\x45\x4f\x54\x42\x4e\x53\x38\x3f\x42\x38\x42\x44\ +\x3c\x4d\x51\x40\x48\x4f\x38\x48\x47\x3a\x47\x4e\x37\x39\x3d\x38\ +\x41\x41\x3e\x49\x50\x3f\x4c\x4f\x3e\x44\x48\x3f\x47\x4c\x3e\x4b\ +\x4c\x36\x3b\x3a\x37\x3e\x3d\x36\x3d\x40\x38\x44\x43\x37\x48\x4c\ +\x47\x54\x59\x3e\x44\x4b\x33\x3a\x3a\x3b\x49\x4d\x3d\x42\x48\x33\ +\x3e\x3d\x36\x48\x4d\x34\x3c\x3f\x31\x3e\x3d\x35\x46\x48\x38\x43\ +\x43\x3c\x42\x45\x32\x3c\x3a\x3b\x41\x46\x34\x40\x40\x3c\x44\x48\ +\x39\x43\x3e\x3e\x4a\x4d\x3c\x45\x49\x37\x42\x40\x41\x52\x53\x41\ +\x50\x57\x44\x4e\x55\x3c\x43\x47\x37\x3e\x40\x37\x42\x49\x3b\x4d\ +\x51\x38\x43\x43\x3e\x47\x4b\x40\x4e\x53\x36\x3f\x3c\x38\x3e\x3f\ +\x3f\x3f\x46\x35\x46\x47\x00\x00\x00\x99\xc8\xe6\x99\xc7\xe7\x94\ +\xc3\xe1\x91\xc0\xdf\x90\xbe\xdd\x93\xbd\xdc\x98\xbf\xdb\x95\xbf\ +\xda\x8f\xbc\xdb\x8e\xb9\xdb\x8e\xba\xdc\x91\xbd\xdd\x8f\xbc\xd9\ +\x96\xc0\xda\x9c\xc2\xdf\x9c\xc2\xe1\x9e\xc1\xdc\x9f\xbc\xcc\xcd\ +\xdf\xea\xcf\xe8\xf2\xd0\xea\xf4\xd0\xe9\xf5\xcf\xe9\xf5\xcd\xe7\ +\xf3\xd1\xea\xf3\xd3\xeb\xf5\xd4\xec\xf4\xce\xe9\xf0\xd4\xea\xf4\ +\xd2\xe9\xf4\xd0\xe9\xf2\xd2\xea\xf4\xcf\xea\xf3\xcf\xe8\xf3\xcc\ +\xe7\xf2\xcc\xe7\xf3\xca\xe6\xf2\xc8\xe6\xf2\xc2\xe4\xf2\x9e\xd7\ +\xed\xad\xd9\xeb\xad\xd5\xe9\x99\xc5\xd9\x89\xbb\xd9\x87\xbc\xdb\ +\x6e\x9c\xbb\x64\x94\xb7\x67\x8c\xa1\x4c\x63\x7a\x47\x5e\x6d\x2d\ +\x3f\x44\x30\x38\x3b\x2a\x33\x35\x34\x38\x3a\x2f\x37\x38\x2b\x32\ +\x30\x30\x35\x36\x26\x2d\x2b\x23\x2a\x2c\x2f\x38\x33\x2d\x31\x33\ +\x2c\x34\x36\x1f\x25\x24\x2a\x34\x36\x35\x3b\x39\x2d\x30\x34\x2e\ +\x31\x38\x2a\x33\x33\x37\x3d\x41\x29\x36\x3b\x31\x3b\x40\x32\x37\ +\x3b\x2f\x39\x3b\x38\x43\x49\x48\x5f\x78\x4d\x6e\x8a\x46\x60\x71\ +\x53\x61\x77\x53\x66\x7b\x4f\x64\x77\x4d\x5d\x70\x4b\x65\x7e\x44\ +\x62\x7f\x34\x44\x55\x3e\x48\x4a\x48\x5c\x6a\x51\x76\x92\x57\x8c\ +\xb6\x42\x6e\x91\x3f\x5b\x6d\x38\x45\x49\x38\x3f\x40\x37\x44\x49\ +\x3d\x44\x46\x40\x4a\x53\x45\x50\x57\x3c\x45\x47\x3c\x40\x44\x31\ +\x3e\x3f\x38\x3b\x3f\x3a\x40\x3f\x45\x4d\x57\x3d\x4b\x53\x3f\x4e\ +\x4f\x39\x40\x41\x41\x4a\x47\x3f\x4a\x4e\x3a\x43\x48\x46\x4a\x4e\ +\x3b\x41\x41\x37\x42\x3f\x34\x3e\x41\x37\x45\x41\x3a\x41\x46\x36\ +\x42\x47\x37\x3f\x40\x37\x3d\x3e\x41\x4a\x4f\x45\x4f\x55\x40\x47\ +\x4d\x36\x3c\x3f\x33\x39\x3b\x41\x47\x4f\x36\x43\x46\x33\x3c\x3d\ +\x35\x42\x44\x35\x43\x47\x3b\x47\x4c\x3c\x4b\x4d\x41\x48\x4e\x44\ +\x52\x55\x40\x52\x58\x3e\x4b\x50\x40\x44\x48\x3e\x45\x4b\x3f\x44\ +\x4a\x38\x44\x45\x4d\x5c\x5f\x48\x4d\x56\x42\x50\x55\x46\x50\x51\ +\x3d\x48\x46\x40\x4b\x4e\x43\x52\x55\x43\x50\x57\x3f\x47\x50\x33\ +\x43\x43\x37\x43\x46\x3a\x42\x41\x3c\x3f\x47\x36\x3b\x3c\x36\x3d\ +\x41\x38\x41\x42\x3e\x4d\x51\x3c\x42\x44\x3b\x47\x45\x39\x40\x42\ +\x3d\x43\x46\x37\x42\x43\x37\x47\x45\x45\x4e\x4e\x46\x52\x57\x4c\ +\x5c\x62\x00\x00\x00\x99\xc8\xe6\x9b\xc5\xe5\x9a\xc3\xe2\x96\xc2\ +\xdf\x96\xc2\xe0\x97\xc2\xdb\x97\xc2\xda\x91\xc0\xd8\x8d\xbd\xd9\ +\x90\xbe\xdf\x91\xc0\xe0\x93\xc1\xe1\x91\xbe\xde\x97\xbf\xdf\x9b\ +\xc2\xe2\x99\xc1\xe2\x89\xb2\xd1\x43\x69\x81\x6b\x8d\xa3\xa9\xc5\ +\xd9\xc7\xdf\xe9\xd4\xe7\xf1\xcd\xe6\xf1\xc9\xe3\xf0\xce\xe6\xf1\ +\xd0\xe9\xf4\xd3\xea\xf3\xce\xe8\xf1\xcf\xe8\xf2\xd0\xe7\xf2\xce\ +\xe6\xf1\xcf\xe6\xf3\xcd\xe8\xf2\xce\xe7\xf2\xcb\xe6\xf1\xcd\xe8\ +\xf3\xc9\xe4\xf1\xc8\xe4\xf1\xb0\xdf\xf1\x97\xd5\xed\xbb\xdf\xef\ +\xb8\xde\xed\xb1\xd9\xee\xb7\xdd\xf0\xbc\xe0\xf3\xb1\xdb\xee\x96\ +\xc5\xdd\x75\xa6\xc8\x4b\x71\x89\x42\x52\x61\x4d\x65\x6e\x32\x42\ +\x3f\x25\x2e\x2f\x32\x34\x34\x25\x28\x29\x29\x2f\x32\x2a\x2d\x2d\ +\x27\x2d\x2b\x21\x28\x29\x24\x2c\x2c\x22\x25\x23\x21\x23\x20\x26\ +\x28\x27\x2b\x30\x35\x26\x2a\x2c\x22\x28\x28\x25\x2b\x2e\x23\x2d\ +\x2b\x29\x34\x2f\x2a\x30\x35\x2c\x34\x30\x2d\x34\x32\x2e\x33\x33\ +\x35\x41\x44\x3e\x4a\x4f\x39\x40\x4b\x40\x53\x6b\x42\x5d\x73\x47\ +\x56\x68\x4a\x6a\x87\x45\x58\x77\x35\x4d\x5c\x41\x58\x65\x49\x67\ +\x7b\x50\x82\xa0\x51\x7d\x9e\x41\x63\x7d\x2e\x3c\x49\x3f\x4e\x57\ +\x39\x49\x4a\x50\x77\x8d\x3e\x59\x69\x38\x49\x4c\x3e\x48\x4a\x35\ +\x3f\x40\x32\x3b\x39\x36\x3d\x3f\x2f\x38\x36\x33\x3f\x40\x37\x42\ +\x3f\x42\x4d\x4e\x45\x52\x5c\x3d\x48\x49\x30\x38\x39\x2f\x36\x32\ +\x38\x3e\x3e\x33\x3e\x3e\x34\x47\x46\x2e\x39\x37\x36\x3c\x3e\x41\ +\x46\x4b\x3c\x3c\x43\x3e\x48\x4e\x37\x40\x3e\x30\x3a\x3a\x35\x3d\ +\x3d\x3d\x48\x4d\x46\x52\x53\x4a\x54\x56\x45\x52\x59\x38\x45\x44\ +\x47\x53\x55\x49\x55\x5c\x39\x41\x40\x41\x4a\x4b\x42\x4d\x55\x3a\ +\x47\x48\x46\x50\x56\x47\x55\x55\x4a\x58\x57\x36\x3c\x3d\x35\x3c\ +\x40\x40\x46\x4a\x3f\x46\x48\x3e\x4b\x4d\x46\x51\x5a\x3b\x4a\x50\ +\x3f\x47\x4a\x3e\x46\x46\x3b\x47\x4c\x3e\x49\x49\x3e\x48\x4e\x34\ +\x3e\x3f\x33\x3c\x3d\x35\x3e\x43\x3d\x44\x48\x40\x4d\x52\x3b\x44\ +\x4a\x38\x3c\x3f\x3b\x45\x47\x3b\x4a\x49\x3a\x45\x4b\x37\x41\x43\ +\x37\x3d\x48\x3b\x42\x41\x3a\x44\x44\x41\x4a\x4d\x40\x42\x48\x3e\ +\x46\x49\x34\x44\x41\x35\x3c\x3b\x3d\x48\x4a\x42\x4b\x4f\x00\x00\ +\x00\x96\xc2\xe1\x94\xbb\xda\x98\xbd\xda\x92\xbd\xd7\x93\xbf\xd8\ +\x96\xc0\xd9\x97\xc1\xd9\x91\xbf\xd7\x8f\xbf\xd8\x8d\xbc\xd9\x8e\ +\xbd\xd9\x8e\xbd\xd9\x91\xc0\xda\x92\xc0\xdb\x97\xc3\xe1\x95\xc0\ +\xe1\x7f\xab\xca\x49\x74\x8b\x65\x8b\xa1\x8e\xb2\xce\x8f\xb3\xd4\ +\x84\xa3\xbe\x74\x89\x99\xc0\xd8\xe4\xcc\xe7\xf0\xcc\xe8\xf2\xcd\ +\xe5\xf1\xca\xe6\xee\xc9\xe4\xf0\xcb\xe5\xf1\xcc\xe6\xf2\xca\xe5\ +\xf1\xca\xe6\xf1\xca\xe5\xf1\xca\xe6\xf0\xc9\xe4\xf0\xcb\xe6\xf1\ +\xc7\xe7\xf1\xb4\xe2\xf3\xba\xdf\xf0\xca\xe4\xf1\xc9\xe5\xf0\xc1\ +\xe0\xef\xb7\xdd\xf0\xb7\xda\xee\xb1\xdc\xf0\xae\xd8\xf0\x8b\xbe\ +\xdb\x64\x97\xb6\x60\x84\xa1\x47\x5d\x6b\x4b\x62\x70\x3c\x4f\x54\ +\x2f\x33\x2f\x2e\x34\x39\x2e\x2f\x31\x25\x2b\x29\x22\x26\x26\x1a\ +\x1f\x1c\x29\x2d\x2e\x26\x2b\x2b\x2f\x31\x33\x23\x27\x2a\x24\x28\ +\x2d\x21\x26\x2a\x20\x28\x25\x23\x2a\x2a\x2b\x33\x37\x2a\x2c\x2e\ +\x26\x2f\x2b\x27\x2e\x2a\x25\x2c\x28\x27\x30\x32\x2a\x37\x39\x2a\ +\x37\x36\x32\x3f\x46\x34\x42\x46\x38\x4a\x60\x4f\x7c\xa0\x38\x4c\ +\x5f\x39\x41\x43\x37\x48\x48\x38\x4a\x59\x4e\x81\xa6\x3c\x60\x78\ +\x31\x3d\x41\x44\x4d\x54\x45\x55\x5c\x51\x69\x7d\x55\x81\xa2\x4d\ +\x7e\xa4\x3d\x5c\x73\x58\x7a\x96\x49\x69\x76\x39\x40\x41\x3a\x41\ +\x46\x3d\x40\x43\x41\x4e\x55\x3e\x4c\x52\x3a\x42\x44\x38\x3f\x3c\ +\x34\x3e\x3c\x37\x40\x3b\x3a\x46\x47\x43\x48\x50\x45\x52\x57\x3e\ +\x4a\x4b\x46\x54\x5f\x3a\x43\x48\x40\x46\x4d\x36\x43\x4c\x35\x3e\ +\x41\x38\x41\x40\x32\x3c\x39\x42\x4b\x51\x42\x50\x52\x3e\x47\x48\ +\x3e\x4a\x4c\x3b\x44\x49\x30\x3d\x3d\x3c\x48\x48\x44\x4b\x4e\x43\ +\x4b\x4f\x39\x49\x4a\x43\x51\x59\x41\x4b\x4e\x3a\x42\x42\x3b\x44\ +\x49\x3b\x41\x44\x3e\x44\x4a\x4a\x54\x59\x40\x4e\x54\x3e\x48\x4b\ +\x3c\x47\x4b\x41\x4e\x50\x3e\x48\x4b\x35\x42\x40\x3e\x47\x46\x3d\ +\x45\x4a\x39\x40\x3e\x30\x3f\x40\x36\x46\x46\x36\x44\x47\x3c\x4b\ +\x54\x39\x43\x4a\x38\x3d\x41\x3f\x4b\x4d\x3c\x42\x41\x37\x42\x41\ +\x3b\x3f\x44\x3b\x48\x4b\x39\x41\x41\x36\x41\x40\x38\x46\x47\x3c\ +\x49\x46\x32\x39\x3a\x3b\x43\x42\x3b\x45\x45\x33\x3d\x40\x37\x47\ +\x48\x43\x4a\x4e\x43\x49\x4e\x35\x3d\x39\x00\x00\x00\x87\xb0\xd2\ +\x6f\x94\xb3\x84\xa9\xc4\x83\xae\xc6\x81\xa9\xc2\x6f\x95\xac\x6c\ +\x93\xa8\x7b\xa2\xba\x84\xac\xc4\x81\xa9\xc2\x89\xb0\xcc\x8e\xb8\ +\xd1\x8d\xb9\xcd\x8a\xb6\xc6\x89\xb5\xc7\x8a\xb8\xd0\x85\xb6\xd0\ +\x7d\xac\xc4\x56\x7d\x96\x52\x74\x94\x7b\x9c\xbf\x6b\x87\xa4\x18\ +\x2f\x45\x46\x60\x74\xa2\xc1\xd7\xc8\xe1\xed\xc7\xe0\xed\xc7\xe4\ +\xef\xc8\xe3\xf0\xc7\xe4\xf0\xc9\xe5\xf1\xca\xe5\xf1\xc8\xe5\xf0\ +\xc8\xe2\xee\xc7\xe1\xee\xc3\xe3\xef\xc5\xe2\xf0\xc5\xe3\xf0\xc8\ +\xe3\xf1\xca\xe4\xf0\xcb\xe4\xf0\xc8\xe1\xee\xc1\xdf\xec\xc2\xde\ +\xeb\xbe\xdb\xea\xb0\xd9\xea\xa5\xd3\xeb\xa4\xd1\xeb\x96\xc7\xdd\ +\x41\x5c\x63\x40\x5b\x62\x4d\x68\x79\x4e\x67\x78\x4b\x65\x74\x33\ +\x43\x45\x1e\x21\x20\x21\x25\x28\x26\x29\x27\x1f\x27\x26\x1a\x1c\ +\x19\x21\x25\x26\x18\x1f\x20\x22\x26\x29\x21\x27\x27\x1f\x29\x22\ +\x23\x23\x23\x19\x1b\x1c\x1f\x1d\x1f\x21\x20\x21\x22\x27\x27\x22\ +\x24\x20\x21\x27\x24\x2a\x2c\x2f\x27\x2e\x31\x23\x2c\x2c\x29\x32\ +\x36\x39\x42\x45\x35\x3b\x43\x45\x61\x78\x31\x38\x3c\x33\x41\x3f\ +\x37\x45\x43\x37\x3f\x3f\x3a\x4a\x52\x3c\x4d\x5a\x48\x6a\x7e\x49\ +\x70\x87\x4c\x7d\xa3\x4f\x70\x95\x4b\x72\x99\x3a\x52\x5c\x3d\x4b\ +\x53\x3e\x4e\x59\x4d\x79\xa1\x3d\x57\x6d\x3b\x43\x47\x40\x4a\x4f\ +\x42\x4f\x4c\x35\x43\x46\x33\x3a\x39\x43\x4a\x4f\x3d\x4e\x4d\x3a\ +\x40\x41\x40\x4b\x4d\x3f\x48\x49\x3e\x43\x46\x3a\x45\x45\x3d\x3e\ +\x45\x31\x3c\x3f\x35\x3c\x44\x31\x3d\x3a\x37\x41\x43\x38\x46\x45\ +\x3b\x44\x48\x3d\x47\x4e\x43\x4d\x4c\x3b\x41\x44\x41\x50\x52\x40\ +\x4d\x52\x3e\x46\x4a\x44\x51\x5a\x49\x4e\x58\x47\x50\x57\x3e\x49\ +\x47\x3a\x46\x4b\x3a\x41\x46\x3f\x48\x48\x36\x3f\x41\x3f\x46\x48\ +\x3b\x48\x48\x3d\x4e\x50\x45\x51\x57\x3a\x42\x41\x3a\x48\x47\x3f\ +\x4d\x52\x3f\x41\x49\x37\x40\x42\x44\x4e\x59\x4d\x57\x61\x46\x4f\ +\x53\x47\x4b\x55\x3b\x42\x46\x35\x3c\x3a\x37\x40\x44\x34\x3d\x3d\ +\x30\x39\x36\x38\x3f\x42\x38\x43\x46\x38\x42\x40\x37\x45\x49\x3e\ +\x4c\x4f\x3b\x45\x46\x3f\x4b\x49\x3a\x44\x48\x38\x42\x40\x3f\x49\ +\x4d\x41\x4c\x52\x3e\x46\x4a\x45\x52\x58\x3f\x48\x4d\x3a\x42\x47\ +\x34\x3e\x3f\x35\x3f\x40\x00\x00\x00\x62\x8b\xaf\x4e\x73\x93\x80\ +\xa5\xc0\x74\x9a\xb4\x4f\x74\x8a\x16\x38\x4c\x48\x6c\x81\x61\x86\ +\x9e\x4d\x6f\x89\x41\x61\x7b\x52\x76\x91\x5f\x86\x9e\x59\x80\x91\ +\x3d\x61\x6b\x3c\x61\x6c\x67\x90\xa0\x84\xb4\xc9\x7f\xae\xc8\x7f\ +\xa5\xc6\x81\xa1\xc5\x7b\x99\xba\x51\x6a\x82\x0a\x1e\x31\x3b\x58\ +\x6f\x88\xb0\xcc\x8a\xb7\xd5\x97\xbc\xd8\xb1\xd0\xe2\xc9\xe2\xec\ +\xc2\xdf\xeb\xc8\xe3\xf1\xcb\xe5\xf1\xca\xe5\xf1\xc2\xde\xec\xc4\ +\xe0\xef\xc0\xdd\xeb\xc4\xe0\xef\xc3\xe2\xed\xc9\xe4\xf0\xc8\xe3\ +\xef\xc9\xe2\xee\xc2\xdd\xeb\xbe\xd8\xe8\xba\xd8\xe5\xb9\xd4\xe1\ +\xb7\xd2\xe2\xb8\xdb\xed\xb1\xd8\xeb\x95\xc8\xe0\x90\xbd\xda\x91\ +\xc1\xdb\x5e\x89\xa3\x87\xad\xcf\x7a\xa1\xbb\x43\x68\x7d\x36\x4d\ +\x56\x2f\x3a\x3a\x2d\x3b\x3b\x2c\x38\x33\x1a\x23\x1e\x21\x29\x25\ +\x23\x26\x23\x1f\x26\x27\x23\x27\x26\x21\x27\x25\x1f\x23\x26\x1e\ +\x21\x21\x1b\x21\x1e\x1f\x27\x24\x29\x30\x2e\x1d\x23\x1e\x1e\x26\ +\x20\x19\x1d\x21\x1f\x24\x20\x22\x2a\x29\x27\x2a\x2d\x37\x3b\x3e\ +\x36\x3b\x39\x37\x3f\x40\x38\x3e\x3f\x41\x49\x4d\x36\x42\x40\x37\ +\x3d\x3b\x38\x3f\x43\x38\x39\x3d\x39\x48\x56\x48\x69\x87\x4f\x7d\ +\x9e\x3b\x4c\x4e\x40\x52\x61\x4c\x71\x93\x40\x62\x7e\x3d\x63\x81\ +\x3e\x6c\x96\x3b\x56\x6b\x38\x42\x4b\x50\x6b\x7f\x39\x4c\x54\x32\ +\x3c\x3f\x39\x48\x4a\x40\x4f\x4d\x3e\x4a\x4d\x36\x3f\x3b\x3f\x4a\ +\x49\x3e\x43\x46\x36\x3c\x3c\x2f\x34\x35\x38\x43\x48\x3f\x50\x52\ +\x44\x4f\x51\x3c\x45\x4a\x3e\x45\x47\x3a\x44\x43\x3d\x49\x4b\x3c\ +\x44\x46\x34\x39\x3b\x3f\x4b\x4e\x46\x52\x5b\x3f\x49\x47\x41\x49\ +\x4b\x3b\x49\x4e\x35\x3e\x3b\x36\x40\x41\x40\x4d\x4f\x3b\x4a\x4d\ +\x35\x39\x38\x37\x42\x44\x41\x4b\x4f\x40\x49\x50\x3b\x44\x45\x4a\ +\x55\x5e\x3e\x48\x4d\x3e\x46\x4a\x40\x49\x4c\x37\x3c\x41\x33\x3b\ +\x3a\x31\x3e\x3d\x38\x41\x45\x35\x3e\x3d\x34\x3b\x3e\x3e\x45\x49\ +\x39\x43\x45\x41\x48\x49\x3d\x4e\x57\x38\x41\x43\x40\x47\x4c\x3e\ +\x4b\x53\x3f\x49\x50\x3a\x3d\x3e\x30\x3d\x3f\x37\x43\x45\x39\x43\ +\x45\x36\x3d\x3f\x30\x3a\x34\x39\x44\x44\x38\x45\x46\x32\x3c\x3c\ +\x39\x42\x43\x33\x3e\x3f\x38\x3d\x3e\x3c\x43\x45\x42\x4a\x4f\x3e\ +\x47\x48\x00\x00\x00\x56\x80\xa4\x3a\x5f\x80\x7a\x9f\xbb\x89\xb2\ +\xcb\x6a\x90\xa9\x1e\x42\x5a\x58\x7d\x99\x6f\x94\xb4\x47\x66\x84\ +\x24\x40\x5b\x62\x84\xa0\x76\x9c\xb6\x5f\x84\x99\x2c\x4a\x59\x16\ +\x30\x3e\x4b\x6a\x7c\x80\xa6\xbe\x83\xac\xca\x70\x95\xba\x6b\x8d\ +\xb1\x78\x95\xaf\x35\x4b\x5c\x07\x1c\x2b\x66\x86\x9a\x89\xb3\xcd\ +\x84\xb0\xcd\x77\x9f\xbc\x6f\x93\xb1\x86\xab\xc6\xa9\xc7\xdb\xb6\ +\xce\xdb\xc6\xdf\xeb\xc5\xe0\xee\xc0\xdf\xeb\xbf\xdd\xea\xbd\xdc\ +\xe6\xc2\xdf\xed\xc6\xe0\xee\xc5\xdf\xed\xc2\xdf\xec\xc3\xde\xea\ +\xc3\xde\xeb\xbe\xda\xe7\xb5\xd5\xe4\xb6\xd5\xe5\xbb\xd5\xe4\xb2\ +\xd2\xe1\xb5\xd2\xe4\xb4\xd2\xe2\xb2\xcf\xe2\xa5\xcb\xe2\x93\xc3\ +\xde\x88\xb7\xd7\x5d\x92\xbc\x53\x8a\xbb\x4c\x81\xad\x35\x58\x6d\ +\x32\x4c\x5e\x3c\x5d\x75\x35\x55\x64\x30\x44\x4b\x29\x3d\x3e\x31\ +\x3e\x42\x2e\x3b\x39\x2c\x3d\x3c\x20\x29\x28\x1b\x25\x23\x23\x2d\ +\x29\x26\x30\x2b\x2e\x38\x34\x40\x45\x46\x3a\x3f\x3e\x30\x39\x38\ +\x23\x2f\x2f\x29\x2e\x2c\x29\x2f\x30\x30\x32\x30\x32\x37\x35\x34\ +\x3d\x3b\x3a\x43\x46\x3e\x43\x49\x3b\x45\x49\x45\x4e\x56\x45\x4e\ +\x55\x44\x46\x4b\x41\x4b\x4e\x45\x57\x5c\x39\x4f\x5f\x4b\x6d\x83\ +\x43\x60\x7a\x45\x61\x79\x3b\x48\x54\x38\x4b\x50\x38\x4a\x52\x3b\ +\x50\x58\x40\x5b\x6d\x4a\x7e\xaa\x4c\x76\x9d\x46\x61\x73\x40\x4a\ +\x50\x39\x44\x45\x34\x3a\x3c\x36\x3c\x3b\x3e\x4b\x4f\x3a\x46\x44\ +\x3f\x48\x47\x42\x4a\x4b\x3f\x4d\x51\x3e\x4b\x52\x3b\x45\x47\x35\ +\x43\x4a\x42\x4b\x52\x44\x51\x56\x44\x50\x56\x41\x4a\x4a\x38\x3e\ +\x42\x3f\x44\x48\x37\x3d\x43\x33\x3e\x3d\x35\x44\x43\x3b\x45\x4f\ +\x3b\x45\x4a\x41\x50\x4e\x3e\x49\x50\x32\x39\x3f\x39\x3f\x40\x4c\ +\x56\x5e\x44\x4f\x54\x3b\x4a\x49\x45\x4e\x50\x3b\x48\x49\x35\x3e\ +\x3e\x3b\x40\x40\x31\x3b\x3a\x3b\x40\x45\x47\x55\x56\x3c\x46\x4b\ +\x3b\x46\x46\x3e\x49\x4a\x42\x4f\x53\x35\x41\x42\x39\x43\x44\x3c\ +\x4b\x49\x37\x41\x46\x36\x41\x3f\x3b\x4a\x4f\x3e\x4c\x4f\x3a\x45\ +\x48\x3f\x48\x4a\x3d\x4a\x4f\x3d\x46\x51\x3c\x4b\x4d\x43\x4a\x51\ +\x46\x4a\x52\x3e\x46\x4a\x40\x4e\x4d\x3e\x4d\x4c\x46\x53\x58\x3f\ +\x4c\x54\x49\x52\x57\x3a\x43\x44\x3f\x47\x49\x3d\x44\x47\x00\x00\ +\x00\x87\xaf\xd1\x6c\x91\xb4\x5b\x83\xa3\x83\xac\xcc\x83\xaf\xca\ +\x5d\x84\xa5\x5c\x82\xa7\x69\x8d\xb6\x3c\x5a\x81\x3a\x56\x77\x2f\ +\x51\x6d\x62\x87\xa3\x81\xa6\xc2\x7a\x9b\xb5\x47\x63\x7b\x1b\x39\ +\x51\x42\x65\x7f\x80\xa8\xc6\x8e\xb7\xd7\x80\xa6\xc3\x56\x73\x86\ +\x10\x24\x31\x1b\x32\x42\x81\xa2\xb9\x8d\xb3\xcf\x93\xb9\xd8\x8c\ +\xb2\xd2\x66\x8a\xa8\x40\x65\x7f\x7e\x9e\xb8\x4d\x68\x7e\x41\x53\ +\x63\x91\xa5\xae\xb1\xcb\xdb\xbd\xdd\xed\xc5\xe0\xee\xc5\xe0\xee\ +\xc2\xdf\xec\xc1\xdf\xeb\xc1\xde\xec\xbd\xdc\xea\xbf\xdb\xe9\xb9\ +\xd7\xe7\xb8\xd7\xe6\xbb\xd8\xe7\xb5\xd5\xe3\xae\xcc\xdd\xb0\xca\ +\xdd\xbb\xd3\xe2\xb3\xcf\xdf\xa7\xc8\xde\xa3\xc7\xdd\x88\xb8\xd6\ +\x67\x9f\xc6\x54\x91\xbd\x48\x81\xac\x49\x7e\xa8\x4c\x81\xa5\x55\ +\x89\xaf\x4e\x83\xa9\x3e\x6c\x88\x55\x8c\xac\x52\x7f\x97\x4b\x70\ +\x89\x53\x7a\x96\x4f\x7a\x95\x42\x63\x77\x42\x60\x6d\x3d\x51\x5f\ +\x45\x5d\x67\x47\x5b\x64\x8f\xa1\xa8\x5b\x6b\x73\x36\x4c\x53\x29\ +\x35\x35\x19\x1b\x19\x28\x2a\x2e\x37\x3c\x40\x35\x3f\x3e\x3d\x46\ +\x4c\x3a\x46\x45\x39\x41\x3e\x36\x42\x3e\x39\x3f\x40\x36\x3c\x3d\ +\x32\x3b\x3c\x39\x41\x46\x3d\x47\x48\x3a\x4f\x53\x3c\x43\x49\x3b\ +\x42\x44\x3c\x47\x4b\x39\x50\x58\x44\x67\x85\x43\x75\x99\x3a\x5b\ +\x7d\x33\x43\x50\x38\x47\x4f\x41\x65\x85\x51\x7b\x9b\x42\x5c\x66\ +\x41\x49\x4d\x3e\x49\x4a\x45\x4d\x52\x3a\x44\x49\x38\x42\x42\x40\ +\x48\x4a\x3d\x4b\x4c\x38\x43\x43\x32\x42\x43\x40\x4c\x4e\x3b\x46\ +\x4a\x3a\x41\x46\x3d\x44\x47\x37\x3f\x43\x38\x44\x46\x45\x4a\x4f\ +\x3e\x49\x4c\x37\x45\x47\x34\x44\x41\x3c\x46\x4d\x3d\x4b\x4a\x48\ +\x4f\x52\x40\x47\x49\x3e\x49\x49\x3e\x4c\x4e\x44\x49\x51\x3d\x40\ +\x43\x3e\x46\x4a\x3c\x3e\x45\x41\x48\x4a\x38\x44\x46\x3b\x3f\x41\ +\x41\x4b\x4e\x40\x48\x49\x34\x3f\x3d\x3a\x48\x4a\x3e\x51\x56\x3f\ +\x49\x4c\x34\x3c\x3a\x34\x3c\x3a\x38\x45\x49\x3e\x4b\x50\x46\x56\ +\x61\x3d\x4d\x50\x39\x4a\x4a\x39\x44\x48\x39\x45\x48\x3c\x45\x4a\ +\x3e\x4c\x50\x3e\x48\x52\x37\x3b\x3a\x32\x3a\x38\x3b\x41\x46\x39\ +\x45\x45\x43\x51\x52\x3b\x44\x4a\x38\x3e\x42\x3c\x42\x4a\x3a\x42\ +\x42\x3c\x49\x4b\x45\x52\x59\x47\x55\x58\x00\x00\x00\x90\xb8\xd8\ +\x89\xb4\xd4\x83\xb0\xd0\x85\xb3\xd3\x86\xb5\xd4\x80\xac\xcf\x79\ +\xa1\xc9\x70\x95\xbf\x5f\x82\xa9\x67\x8c\xae\x68\x8d\xac\x59\x7d\ +\x9c\x77\x9b\xbb\x8a\xad\xcc\x8f\xb2\xd0\x7d\xa2\xc1\x68\x8e\xad\ +\x7d\xa6\xc5\x8c\xb7\xd4\x8e\xb4\xcc\x6c\x88\x9a\x0d\x21\x2e\x2f\ +\x49\x5b\x6c\x8d\xa7\x8b\xae\xcb\x99\xba\xdb\x96\xbb\xdb\x80\xa7\ +\xc4\x2c\x4e\x69\x57\x74\x8d\x57\x6d\x83\x0d\x1e\x2c\x0a\x1b\x2b\ +\x65\x7b\x8e\xa6\xbc\xcb\xaf\xc7\xd8\xbd\xd9\xec\xc0\xdc\xea\xc0\ +\xdb\xe9\xbb\xd7\xe6\xbb\xda\xe7\xbd\xdb\xea\xbf\xda\xe9\xbc\xd9\ +\xe7\xb6\xd8\xe7\xb4\xd4\xe4\xad\xce\xdf\xad\xce\xde\xb1\xd3\xe1\ +\xac\xcb\xde\x99\xc5\xd5\x97\xbc\xd3\x87\xb7\xd1\x51\x89\xae\x42\ +\x7c\xa4\x27\x49\x65\x42\x78\xa0\x3a\x68\x8c\x2b\x4d\x69\x4b\x7c\ +\xa9\x55\x8d\xb0\x5d\x8f\xb3\x51\x7d\xa0\x54\x7e\xa2\x51\x80\xa4\ +\x4f\x7c\xa1\x4b\x76\x9b\x5f\x85\xa7\x4f\x74\x90\x4b\x6c\x83\x35\ +\x4f\x63\x42\x56\x5d\x30\x49\x55\x2d\x3d\x47\x28\x3f\x42\x1c\x2b\ +\x26\x18\x20\x1b\x36\x38\x3b\x3b\x42\x46\x3b\x42\x45\x31\x3d\x3d\ +\x38\x41\x44\x3e\x47\x4b\x3a\x43\x43\x3b\x45\x44\x3c\x46\x4a\x3e\ +\x47\x48\x32\x3a\x39\x32\x37\x38\x34\x3b\x37\x34\x40\x42\x4a\x6c\ +\x85\x52\x8a\xb1\x40\x6b\x8c\x3c\x51\x61\x3a\x43\x48\x48\x56\x5e\ +\x49\x63\x7a\x49\x6a\x87\x48\x6a\x8e\x46\x69\x8c\x4c\x65\x77\x40\ +\x54\x5c\x36\x44\x42\x36\x39\x3b\x3d\x48\x48\x41\x4b\x4f\x40\x4c\ +\x52\x3b\x47\x49\x3b\x49\x4c\x38\x42\x46\x3b\x44\x4b\x41\x49\x50\ +\x34\x3c\x3a\x3d\x47\x4b\x3d\x4a\x4e\x3f\x48\x50\x34\x3f\x43\x3f\ +\x46\x47\x42\x4a\x4d\x42\x4b\x4b\x40\x49\x50\x3d\x42\x47\x41\x48\ +\x52\x46\x4d\x53\x3c\x44\x44\x3f\x49\x46\x38\x3f\x42\x39\x45\x46\ +\x3c\x4a\x4e\x38\x41\x44\x39\x43\x43\x3f\x47\x50\x3e\x4a\x4c\x37\ +\x3e\x3d\x3f\x49\x46\x43\x55\x5a\x41\x4a\x50\x3a\x40\x43\x36\x42\ +\x41\x3f\x4b\x4e\x40\x4e\x52\x45\x58\x61\x3b\x46\x4d\x39\x3f\x3f\ +\x3b\x45\x41\x40\x46\x4e\x38\x42\x44\x34\x3c\x44\x36\x3c\x3f\x34\ +\x3d\x3d\x3c\x45\x45\x43\x50\x55\x46\x50\x52\x43\x4d\x51\x3a\x4a\ +\x49\x45\x4e\x51\x45\x4e\x54\x3f\x4c\x52\x41\x4e\x57\x3f\x4a\x55\ +\x3b\x41\x47\x3a\x42\x43\x00\x00\x00\x92\xbc\xdd\x8c\xbb\xdb\x87\ +\xb8\xd8\x8a\xb9\xd8\x86\xb4\xd4\x86\xb5\xd5\x86\xb3\xd5\x87\xb2\ +\xd3\x82\xaf\xcd\x80\xaf\xcb\x82\xac\xcb\x86\xab\xcb\x8a\xae\xcf\ +\x8d\xb4\xd6\x8b\xb6\xd7\x8a\xb7\xd8\x8b\xb5\xd6\x8b\xb7\xd7\x8a\ +\xb9\xd5\x91\xb8\xd0\x7c\x98\xaa\x0e\x22\x31\x49\x66\x7a\x5f\x82\ +\x9e\x5f\x82\xa3\x8c\xaf\xd1\x90\xb7\xd8\x86\xb1\xce\x4b\x6f\x8b\ +\x32\x52\x6c\x7a\x96\xac\x2c\x3f\x4f\x0b\x1c\x2b\x76\x93\xa9\x8d\ +\xaf\xd0\x9b\xbe\xdc\x9c\xb8\xc8\x8e\x9f\xae\xa5\xbe\xd4\xb1\xcd\ +\xe1\xb7\xd6\xe5\xba\xd8\xe7\xbb\xd9\xe8\xbc\xd8\xe8\xb6\xd5\xe6\ +\xb6\xd5\xe5\xb2\xd1\xe5\xac\xcc\xe1\xa3\xc6\xdb\x9f\xc0\xd8\x99\ +\xbf\xd2\x92\xb6\xcd\x93\xb6\xce\x82\xac\xc5\x72\x9e\xba\x67\x8d\ +\xa6\x75\xa4\xc0\x63\x94\xb1\x52\x88\xa6\x50\x83\xa8\x46\x7a\x9e\ +\x4e\x7e\xa4\x51\x7d\xa4\x52\x79\xa3\x4a\x74\x9a\x3a\x61\x89\x44\ +\x69\x8c\x4b\x75\x98\x3c\x5d\x83\x3e\x60\x7c\x3d\x64\x83\x1f\x3c\ +\x59\x21\x3e\x56\x16\x25\x2c\x2b\x3e\x47\x32\x42\x47\x2e\x3c\x3e\ +\x3a\x44\x4a\x4b\x58\x5f\x43\x53\x55\x3a\x41\x45\x34\x3c\x44\x35\ +\x3c\x42\x3b\x46\x47\x3a\x43\x40\x3d\x45\x47\x3e\x43\x44\x3d\x46\ +\x45\x40\x4c\x4f\x3a\x41\x44\x3f\x47\x4b\x3e\x4a\x51\x46\x5b\x6d\ +\x40\x55\x67\x3d\x45\x48\x3a\x41\x42\x41\x53\x66\x45\x68\x95\x37\ +\x4b\x53\x44\x51\x54\x4b\x67\x79\x55\x81\xa2\x56\x85\xab\x4e\x6e\ +\x89\x41\x52\x57\x41\x51\x54\x3d\x47\x4a\x34\x3e\x40\x35\x3f\x45\ +\x41\x4b\x4a\x37\x42\x45\x3d\x4b\x4e\x3d\x4c\x52\x37\x45\x49\x43\ +\x4f\x54\x3f\x49\x4f\x3e\x49\x4a\x3c\x47\x4a\x39\x47\x44\x34\x3d\ +\x3a\x3c\x45\x43\x3b\x40\x43\x34\x42\x46\x3d\x4b\x50\x3c\x43\x44\ +\x3f\x44\x44\x3d\x48\x49\x45\x4c\x52\x3d\x43\x4c\x3a\x45\x48\x38\ +\x41\x44\x3b\x43\x47\x3b\x44\x44\x3b\x47\x41\x3c\x47\x48\x3f\x48\ +\x49\x35\x41\x40\x37\x44\x41\x43\x48\x4c\x3e\x51\x58\x3e\x53\x5a\ +\x3b\x4c\x51\x35\x3d\x42\x35\x3e\x3e\x40\x4a\x4d\x40\x4b\x4e\x3e\ +\x4e\x51\x42\x4e\x52\x3d\x3f\x44\x43\x4c\x4e\x43\x4f\x4f\x40\x4a\ +\x4a\x3f\x48\x4c\x3c\x46\x49\x44\x4e\x4f\x40\x4b\x51\x42\x4c\x50\ +\x3e\x46\x4a\x3a\x40\x43\x38\x41\x44\x3e\x44\x48\x43\x4c\x4c\x4e\ +\x58\x5d\x00\x00\x00\x8e\xb9\xd9\x8c\xbc\xdc\x89\xb8\xda\x87\xb4\ +\xd7\x83\xb3\xd5\x7f\xb4\xd2\x84\xb7\xd4\x87\xb7\xd5\x83\xb6\xcf\ +\x86\xb8\xd0\x8d\xb8\xd3\x91\xb6\xd5\x91\xb6\xd7\x8e\xb8\xd9\x89\ +\xb8\xd7\x86\xb5\xd5\x89\xb5\xd5\x89\xb5\xd4\x86\xb6\xd3\x8a\xb5\ +\xcf\x82\x9f\xb4\x14\x2b\x3b\x45\x66\x79\x81\xa6\xc1\x69\x8d\xae\ +\x51\x75\x96\x7e\xa8\xc6\x88\xb3\xce\x7a\x9e\xbb\x2e\x4e\x68\x77\ +\x95\xab\x3b\x51\x61\x08\x1a\x29\x75\x94\xa7\x92\xb9\xd6\x93\xbd\ +\xe0\x92\xbe\xe0\x99\xc0\xda\x84\x9e\xa8\x76\x8a\x95\xa5\xbc\xd5\ +\xb1\xd0\xe3\xb1\xd2\xe3\xb1\xd3\xe4\xb7\xd5\xe6\xb3\xd2\xe0\xa7\ +\xcb\xdd\x9f\xc2\xd9\xa2\xc4\xd7\x9c\xc1\xd6\x95\xb9\xd0\x8f\xb4\ +\xcc\x8e\xb3\xcd\x8e\xb5\xcc\x85\xab\xc7\x87\xac\xc8\x7e\xa5\xc3\ +\x74\x9c\xbc\x61\x91\xaf\x55\x85\xa7\x4b\x7f\xa4\x4d\x7d\xa3\x4c\ +\x7d\xa2\x3e\x6a\x96\x35\x5e\x8b\x27\x4e\x75\x2d\x53\x7d\x41\x68\ +\x90\x3d\x5d\x80\x3b\x5a\x7a\x3b\x5e\x80\x15\x2f\x3e\x1c\x25\x2d\ +\x20\x2d\x38\x2b\x34\x37\x38\x44\x44\x3d\x46\x48\x40\x4c\x4c\x33\ +\x3e\x45\x39\x45\x48\x3e\x47\x46\x41\x47\x4d\x3c\x4a\x4b\x37\x3e\ +\x3f\x34\x3c\x39\x32\x3a\x34\x33\x3b\x3b\x38\x41\x43\x3b\x40\x46\ +\x36\x40\x3f\x3a\x44\x46\x3c\x47\x47\x38\x40\x43\x30\x37\x38\x38\ +\x3c\x3b\x37\x42\x43\x39\x4d\x54\x41\x58\x64\x47\x64\x73\x4f\x73\ +\x93\x51\x74\x95\x3c\x53\x67\x39\x4a\x53\x36\x47\x52\x52\x75\x91\ +\x48\x66\x72\x39\x4b\x4c\x3b\x43\x45\x3c\x44\x47\x37\x46\x3f\x34\ +\x40\x3e\x37\x41\x45\x34\x3d\x40\x33\x3e\x42\x36\x39\x3b\x2e\x3a\ +\x36\x31\x3a\x38\x36\x3d\x40\x3b\x44\x45\x44\x4b\x4d\x43\x4b\x4e\ +\x3e\x4a\x4d\x3f\x48\x4d\x3d\x46\x4a\x3a\x41\x47\x3a\x44\x46\x3e\ +\x44\x4d\x36\x3e\x3c\x3b\x41\x40\x38\x3e\x3e\x3f\x4a\x4b\x41\x4e\ +\x52\x4a\x51\x56\x3b\x49\x46\x47\x53\x54\x40\x48\x4e\x3d\x49\x47\ +\x43\x4f\x53\x3f\x48\x50\x47\x55\x5c\x3d\x46\x52\x37\x42\x43\x3e\ +\x4b\x4d\x45\x52\x55\x3f\x4c\x4c\x3d\x4e\x51\x3b\x48\x4a\x3f\x49\ +\x4f\x3e\x45\x48\x45\x52\x55\x47\x51\x58\x47\x4e\x57\x44\x48\x4e\ +\x47\x54\x5e\x41\x54\x54\x41\x4f\x53\x3b\x49\x4a\x44\x51\x54\x4e\ +\x55\x5a\x4c\x54\x5a\x43\x4a\x4c\x3e\x4a\x49\x47\x50\x54\x00\x00\ +\x00\x90\xb9\xd8\x8b\xb8\xd7\x84\xb3\xd3\x81\xaf\xd3\x82\xb1\xd6\ +\x7c\xaf\xd3\x7f\xb3\xd3\x87\xb9\xd6\x87\xbb\xd4\x87\xbb\xd2\x91\ +\xbc\xd7\x95\xbc\xdc\x90\xba\xda\x8a\xb6\xd7\x87\xb5\xd6\x89\xb6\ +\xd7\x8e\xb6\xd6\x8a\xb2\xd0\x86\xb3\xd2\x87\xb2\xcf\x8d\xac\xc4\ +\x2b\x44\x56\x37\x59\x6b\x87\xae\xc9\x85\xac\xce\x46\x6b\x8d\x52\ +\x79\x97\x8a\xb2\xce\x81\xa2\xbe\x31\x4f\x67\x5c\x76\x89\x54\x6a\ +\x78\x04\x17\x24\x67\x87\x9a\x95\xbb\xd8\x93\xbd\xdd\x96\xc2\xe2\ +\x91\xbf\xe0\x8a\xbb\xde\x95\xbf\xd5\x78\x91\x99\x6e\x80\x95\x9b\ +\xbc\xd5\xa8\xc8\xdc\xae\xce\xdf\xa4\xc8\xdb\xa1\xc1\xda\x9c\xc2\ +\xd8\x97\xbd\xd5\x96\xbb\xd4\x90\xb7\xcf\x87\xb3\xc9\x8e\xb0\xcb\ +\x8b\xac\xc7\x80\xa7\xc1\x72\x9c\xb5\x63\x8f\xac\x5b\x85\xa6\x5f\ +\x84\xa4\x5a\x7e\x9d\x56\x80\xa2\x5e\x8b\xab\x64\x91\xaf\x4e\x7d\ +\xa5\x27\x53\x7e\x2a\x4d\x7b\x2d\x55\x78\x33\x54\x79\x31\x51\x71\ +\x3a\x53\x6b\x31\x47\x5d\x2a\x3d\x43\x16\x1f\x23\x1a\x21\x24\x23\ +\x2f\x33\x4c\x5b\x64\x3c\x4d\x4d\x48\x57\x5a\x42\x4d\x4d\x47\x54\ +\x57\x38\x3c\x3d\x34\x3e\x3e\x35\x3a\x3b\x39\x3e\x3e\x3c\x41\x47\ +\x39\x42\x46\x3c\x42\x4a\x38\x40\x43\x2f\x38\x38\x33\x3b\x38\x3b\ +\x40\x42\x39\x44\x48\x35\x3c\x3a\x3a\x44\x45\x40\x45\x4a\x3f\x49\ +\x4e\x49\x64\x78\x58\x85\xa6\x51\x7c\x9b\x35\x48\x53\x3e\x53\x68\ +\x4c\x75\x92\x46\x5d\x73\x4b\x68\x7f\x4b\x6e\x89\x4d\x75\x97\x4a\ +\x6c\x85\x38\x48\x4f\x3d\x4a\x4c\x3d\x4b\x4e\x39\x48\x44\x36\x41\ +\x42\x3f\x48\x4d\x40\x47\x4d\x3d\x45\x46\x41\x4d\x50\x47\x53\x54\ +\x43\x4c\x52\x3a\x40\x44\x38\x44\x41\x38\x43\x44\x35\x41\x3e\x38\ +\x3c\x3c\x32\x40\x40\x37\x40\x45\x3f\x4e\x57\x3b\x45\x4d\x37\x41\ +\x41\x3e\x4a\x51\x43\x53\x56\x39\x43\x48\x36\x43\x4a\x3a\x40\x45\ +\x39\x3e\x43\x35\x40\x3a\x3a\x42\x41\x3b\x48\x4f\x40\x44\x44\x3c\ +\x45\x4e\x3a\x47\x4b\x30\x3c\x3c\x41\x49\x4e\x3e\x47\x4b\x37\x46\ +\x4b\x3f\x4a\x4d\x48\x54\x5a\x51\x56\x63\x46\x51\x5c\x43\x4d\x57\ +\x4a\x54\x57\x3c\x44\x47\x3c\x48\x4b\x41\x4b\x4e\x3a\x46\x47\x3b\ +\x45\x46\x3c\x46\x46\x40\x52\x55\x40\x4d\x4e\x4a\x4f\x54\x40\x45\ +\x4c\x3f\x47\x45\x43\x4c\x49\x4d\x54\x57\x00\x00\x00\x95\xc0\xda\ +\x8c\xbb\xd7\x7e\xb4\xd1\x7d\xb0\xd0\x82\xb0\xd5\x80\xaf\xd5\x84\ +\xb3\xd3\x89\xb9\xd5\x88\xbc\xd5\x8a\xbf\xd6\x8e\xbb\xd7\x93\xbe\ +\xdc\x8f\xbb\xdc\x89\xb7\xdb\x88\xb5\xd9\x8b\xb9\xd9\x8e\xb8\xd4\ +\x8c\xb4\xcf\x85\xb1\xcf\x8c\xb5\xd3\x8f\xb1\xcc\x5b\x79\x90\x1f\ +\x41\x56\x7a\xa2\xbb\x87\xb0\xd2\x6a\x90\xb3\x2f\x56\x76\x7c\xa2\ +\xc0\x86\xa8\xc5\x50\x6a\x82\x30\x47\x59\x5d\x71\x80\x03\x13\x21\ +\x5a\x7a\x8c\x90\xba\xd3\x8e\xbc\xd9\x91\xbe\xdc\x8e\xbd\xdd\x8a\ +\xba\xdd\x88\xb8\xdc\x85\xb9\xda\x93\xb8\xcb\x75\x8b\x91\x64\x78\ +\x8d\x95\xb4\xcb\x9b\xc0\xd4\x9b\xbc\xd1\x98\xbb\xd1\x93\xb9\xd0\ +\x8e\xb4\xcf\x8c\xb5\xcd\x85\xae\xc9\x84\xac\xc7\x7b\xa3\xbb\x69\ +\x91\xae\x66\x93\xaf\x5c\x8b\xa6\x61\x85\xa4\x54\x80\x9d\x51\x7a\ +\x9b\x50\x76\x99\x54\x7c\x9f\x58\x85\xa8\x42\x76\x9e\x37\x64\x90\ +\x37\x5b\x83\x46\x65\x86\x43\x5f\x7c\x2c\x3c\x4d\x20\x2a\x30\x2b\ +\x3d\x3c\x2e\x3e\x3d\x36\x46\x46\x38\x49\x4a\x46\x4d\x50\x4b\x55\ +\x58\x49\x55\x5a\x46\x4e\x57\x49\x50\x56\x53\x5d\x68\x58\x5f\x62\ +\x45\x4f\x51\x41\x4d\x4c\x3a\x42\x41\x37\x42\x42\x3e\x44\x45\x37\ +\x44\x42\x34\x3c\x3d\x3b\x3e\x3e\x3e\x45\x46\x36\x40\x3f\x33\x39\ +\x39\x30\x3a\x3e\x37\x3f\x43\x34\x3d\x3e\x31\x3b\x3e\x33\x3e\x42\ +\x32\x41\x45\x44\x66\x81\x4f\x7e\x93\x46\x66\x7b\x40\x52\x63\x40\ +\x57\x65\x4e\x77\x9b\x3b\x51\x5c\x3e\x4b\x4b\x37\x3c\x3c\x36\x41\ +\x40\x3f\x48\x46\x37\x40\x42\x32\x39\x39\x36\x3d\x3e\x38\x3d\x3f\ +\x37\x3c\x3f\x3a\x46\x46\x40\x49\x4c\x3f\x46\x4b\x33\x38\x3b\x30\ +\x37\x35\x38\x43\x3f\x3f\x4c\x55\x41\x4a\x4d\x41\x4b\x52\x3e\x45\ +\x4a\x3a\x47\x4a\x38\x41\x42\x2f\x3c\x3b\x3c\x4c\x51\x46\x50\x53\ +\x41\x4e\x50\x3c\x4b\x4d\x40\x48\x4b\x40\x4c\x4f\x49\x51\x59\x45\ +\x4d\x55\x40\x4a\x4f\x39\x45\x4e\x3d\x45\x4c\x3c\x45\x46\x43\x4b\ +\x54\x40\x4c\x50\x40\x4a\x4d\x43\x4b\x4d\x45\x51\x50\x43\x4b\x52\ +\x41\x4b\x4d\x3f\x4c\x4b\x41\x47\x48\x40\x43\x44\x3b\x44\x44\x40\ +\x47\x50\x4c\x5c\x61\x4d\x52\x5c\x43\x4d\x54\x44\x4f\x4f\x40\x4d\ +\x50\x39\x4b\x4e\x43\x4e\x4e\x3e\x4b\x4c\x46\x53\x53\x50\x5a\x61\ +\x4a\x54\x59\x43\x4d\x51\x00\x00\x00\x93\xc0\xdd\x89\xbb\xd8\x7e\ +\xb6\xd1\x7e\xb4\xd2\x80\xb1\xd5\x81\xae\xd4\x86\xb4\xd4\x8a\xbb\ +\xd6\x8a\xbb\xd6\x89\xbb\xd6\x8e\xbd\xd9\x90\xbd\xdd\x8b\xba\xdb\ +\x8a\xb7\xdc\x88\xb4\xdb\x87\xb8\xd9\x89\xb8\xd5\x8a\xb7\xd2\x89\ +\xba\xd4\x8a\xbb\xd5\x8e\xb7\xd3\x89\xac\xc8\x4c\x6f\x8a\x4b\x70\ +\x8c\x7f\xa6\xc7\x75\x9c\xbc\x31\x57\x77\x69\x8e\xb0\x8a\xad\xce\ +\x6f\x8b\xa6\x1e\x32\x46\x52\x65\x73\x03\x13\x21\x54\x74\x85\x8d\ +\xba\xd0\x8c\xbb\xd6\x8e\xbb\xd9\x8f\xb9\xd9\x90\xb8\xda\x8f\xb6\ +\xdc\x8b\xb7\xdc\x87\xb5\xda\x8d\xb5\xd9\x94\xb0\xbc\x68\x77\x7f\ +\x61\x74\x87\x82\xa2\xbd\x93\xb4\xce\x96\xbc\xd2\x8f\xb5\xce\x8c\ +\xb1\xcd\x7b\xa1\xc0\x72\x9b\xba\x6b\x97\xb5\x64\x8c\xac\x62\x8e\ +\xad\x5e\x89\xa8\x61\x87\xa7\x52\x7e\x9d\x4b\x78\x98\x4a\x74\x94\ +\x3d\x64\x84\x48\x6a\x92\x52\x7d\x9e\x4e\x70\x8b\x37\x50\x65\x23\ +\x33\x41\x1e\x2b\x32\x30\x3d\x45\x3e\x52\x57\x40\x50\x54\x44\x4d\ +\x53\x3e\x4c\x4f\x48\x55\x55\x42\x48\x4b\x36\x3e\x3e\x38\x39\x38\ +\x38\x42\x3f\x40\x47\x49\x40\x40\x45\x3f\x45\x45\x33\x39\x39\x3a\ +\x45\x46\x44\x46\x49\x3e\x49\x45\x3a\x41\x3e\x39\x43\x43\x3b\x44\ +\x43\x3b\x45\x46\x39\x42\x44\x37\x42\x45\x3d\x40\x44\x3a\x41\x43\ +\x3c\x4a\x4e\x3d\x45\x44\x3d\x46\x44\x3c\x44\x47\x3e\x49\x49\x3d\ +\x48\x4a\x3d\x4e\x58\x34\x48\x54\x36\x3e\x45\x3b\x45\x4b\x3c\x47\ +\x4e\x3b\x46\x50\x3b\x46\x46\x38\x3d\x3f\x39\x47\x4b\x3d\x4a\x49\ +\x36\x3d\x40\x3a\x42\x3f\x3e\x4c\x50\x38\x40\x3f\x3f\x47\x48\x48\ +\x54\x57\x41\x4f\x53\x3b\x46\x42\x3a\x3f\x41\x40\x4b\x4f\x41\x4c\ +\x4d\x41\x4a\x4d\x3a\x3f\x41\x39\x3f\x3c\x39\x45\x46\x40\x4b\x51\ +\x3e\x4b\x4f\x46\x53\x59\x45\x4f\x56\x3a\x48\x4a\x31\x3c\x38\x32\ +\x3e\x39\x3d\x4a\x4b\x42\x4e\x4d\x3f\x48\x4d\x32\x41\x41\x3a\x45\ +\x45\x3e\x46\x49\x44\x50\x55\x43\x4d\x56\x3f\x47\x4b\x3b\x46\x4a\ +\x36\x41\x3f\x3b\x42\x43\x40\x48\x48\x41\x49\x4d\x4a\x54\x59\x47\ +\x52\x55\x36\x43\x43\x3d\x40\x41\x3b\x46\x46\x3f\x51\x53\x41\x4c\ +\x4f\x3b\x44\x42\x35\x3c\x3e\x39\x45\x44\x44\x4d\x53\x44\x56\x58\ +\x48\x53\x59\x49\x56\x5b\x43\x51\x51\x41\x4d\x53\x49\x4c\x52\x47\ +\x4f\x53\x00\x00\x00\x86\xbc\xdb\x82\xb9\xd9\x7e\xb8\xd7\x81\xb8\ +\xd8\x81\xb1\xd5\x83\xb0\xd5\x89\xb8\xd9\x8c\xbc\xdb\x8f\xbd\xdd\ +\x8d\xbb\xdb\x8f\xbc\xdc\x8e\xbd\xdd\x8b\xba\xdb\x8a\xb7\xda\x8a\ +\xb6\xdb\x88\xb8\xda\x89\xba\xd9\x86\xbb\xd8\x83\xbb\xd6\x88\xc0\ +\xd9\x8d\xbd\xd8\x90\xba\xd8\x8b\xb4\xd1\x66\x90\xad\x55\x7e\x9e\ +\x53\x7d\x9a\x52\x7c\x9a\x80\xaa\xca\x8a\xb2\xd2\x83\xa4\xbe\x23\ +\x3a\x4b\x38\x49\x56\x05\x17\x23\x58\x77\x87\x8f\xbb\xd1\x90\xbe\ +\xda\x90\xb9\xd8\x8e\xb5\xd6\x91\xb5\xd8\x95\xb9\xdf\x92\xbc\xe1\ +\x8e\xbc\xdd\x8c\xbb\xd9\x8f\xbb\xd9\x90\xb9\xda\x93\xb6\xbf\x68\ +\x80\x82\x6b\x7d\x93\x8d\xb0\xcd\x91\xb4\xcb\x84\xa9\xc4\x71\x97\ +\xb1\x67\x92\xac\x5f\x89\xa9\x63\x8c\xac\x5f\x88\xa8\x5f\x89\xaa\ +\x5a\x86\xa4\x53\x7d\x9c\x55\x7a\x99\x4b\x6d\x87\x39\x54\x6b\x2e\ +\x44\x55\x1a\x2a\x34\x1e\x28\x30\x49\x57\x5c\x4d\x5a\x5e\x4b\x56\ +\x56\x47\x4d\x53\x44\x4d\x50\x3f\x47\x4c\x3e\x47\x48\x3c\x3f\x41\ +\x37\x3d\x3a\x32\x38\x38\x39\x40\x3d\x3f\x47\x45\x3b\x43\x44\x35\ +\x3c\x3c\x36\x3c\x3b\x40\x47\x4c\x40\x4b\x4f\x43\x4d\x4d\x3a\x3d\ +\x3c\x3a\x3a\x3e\x36\x3c\x3c\x31\x3f\x3f\x3a\x43\x44\x36\x42\x45\ +\x39\x3c\x3f\x34\x3d\x3d\x3f\x44\x48\x3f\x43\x46\x39\x40\x43\x35\ +\x40\x43\x38\x3c\x3d\x3d\x45\x4a\x43\x4b\x49\x35\x3d\x3d\x35\x3e\ +\x42\x3a\x47\x4a\x3c\x4a\x4e\x3f\x46\x44\x40\x42\x48\x3b\x45\x44\ +\x3c\x3f\x41\x37\x45\x43\x36\x44\x45\x33\x3d\x43\x3b\x45\x45\x43\ +\x4f\x53\x3d\x4b\x4c\x46\x50\x52\x3c\x42\x43\x32\x3b\x38\x37\x3f\ +\x3e\x38\x40\x40\x3b\x46\x46\x3e\x4c\x4d\x3d\x47\x48\x3a\x40\x43\ +\x3f\x42\x47\x42\x4f\x52\x46\x54\x59\x44\x51\x58\x35\x3e\x40\x38\ +\x40\x40\x3a\x43\x44\x3e\x45\x47\x3c\x46\x45\x40\x51\x56\x45\x4d\ +\x53\x43\x4e\x50\x3b\x45\x43\x49\x50\x54\x41\x4f\x56\x3a\x47\x47\ +\x3b\x42\x41\x39\x46\x46\x3f\x47\x4b\x3b\x46\x48\x3f\x4b\x51\x3f\ +\x49\x4b\x39\x45\x44\x39\x45\x42\x3b\x43\x46\x39\x42\x41\x3f\x4a\ +\x49\x46\x4c\x51\x47\x52\x58\x44\x4b\x53\x3e\x47\x45\x40\x48\x49\ +\x46\x51\x59\x41\x4d\x4e\x41\x4d\x4c\x41\x4c\x4c\x38\x40\x44\x3e\ +\x46\x4b\x44\x4f\x50\x45\x52\x53\x46\x50\x55\x45\x51\x55\x00\x00\ +\x00\x83\xb8\xda\x81\xb6\xd9\x80\xb7\xd8\x82\xb7\xd7\x87\xb6\xd8\ +\x89\xb4\xd9\x8e\xbc\xdf\x8e\xbf\xe1\x92\xbf\xe1\x92\xbc\xdf\x90\ +\xbb\xdd\x8e\xbc\xdd\x8e\xbd\xdd\x8c\xb8\xdc\x90\xb7\xdc\x8e\xb8\ +\xdb\x8e\xbb\xdb\x8d\xbf\xdd\x8a\xc0\xdd\x8a\xc0\xda\x90\xc2\xdc\ +\x92\xc0\xdb\x93\xbe\xdb\x8f\xbc\xd9\x84\xb0\xcd\x7a\xa8\xc3\x8e\ +\xbb\xd9\x91\xbe\xdc\x92\xbd\xda\x92\xb6\xce\x54\x6d\x7f\x1a\x2b\ +\x3a\x0a\x1e\x2c\x61\x80\x91\x97\xbe\xd6\x99\xc1\xe1\x99\xbe\xdf\ +\x97\xbc\xdb\x94\xba\xda\x99\xbd\xe0\x96\xbf\xe2\x92\xc0\xdf\x91\ +\xc1\xdd\x92\xbe\xdc\x96\xbd\xdf\x91\xbb\xdd\x95\xbe\xdf\xa1\xc2\ +\xd4\x83\xa0\xa9\x61\x7a\x8a\x72\x8e\xb1\x75\x99\xb7\x63\x8b\xa9\ +\x61\x8a\xa9\x67\x8c\xaa\x66\x8b\xac\x57\x7c\x9a\x44\x5e\x79\x37\ +\x46\x58\x1f\x2e\x37\x1b\x28\x2c\x1d\x22\x24\x21\x2b\x2a\x2d\x3d\ +\x43\x38\x48\x4b\x5c\x64\x6d\x5e\x66\x6f\x46\x4c\x4e\x40\x43\x4b\ +\x3f\x44\x46\x3c\x3e\x3f\x34\x3b\x38\x36\x3b\x3a\x35\x3b\x33\x3d\ +\x43\x44\x3b\x44\x46\x31\x3c\x36\x31\x3d\x3a\x3f\x3e\x43\x3b\x43\ +\x42\x3b\x48\x48\x35\x42\x3f\x3d\x43\x42\x40\x45\x47\x42\x4d\x4d\ +\x3d\x4c\x51\x3a\x42\x4a\x33\x3d\x3b\x38\x3e\x3e\x3e\x49\x49\x3d\ +\x41\x44\x39\x42\x3f\x3a\x3f\x3f\x38\x3d\x3f\x31\x38\x38\x36\x3d\ +\x3d\x3b\x43\x45\x3b\x45\x44\x3c\x43\x45\x43\x49\x4f\x3f\x4b\x4d\ +\x43\x4c\x4f\x42\x4e\x4d\x3b\x41\x46\x3a\x42\x45\x34\x41\x3f\x3c\ +\x49\x4c\x44\x4a\x49\x3e\x47\x4c\x41\x47\x4c\x3d\x42\x44\x36\x3b\ +\x3c\x35\x3f\x3d\x3f\x46\x4b\x4a\x4f\x53\x45\x51\x56\x3e\x45\x47\ +\x45\x4c\x50\x3c\x4a\x4c\x3f\x44\x48\x3f\x48\x4a\x3f\x4c\x4a\x3d\ +\x46\x4a\x39\x3e\x40\x30\x3e\x3e\x34\x3f\x40\x40\x4a\x4e\x3d\x46\ +\x49\x39\x45\x44\x3b\x44\x44\x3d\x46\x47\x38\x45\x45\x38\x42\x42\ +\x39\x44\x42\x3e\x47\x47\x3b\x45\x44\x40\x4a\x47\x40\x47\x48\x3e\ +\x46\x49\x35\x3f\x43\x3f\x44\x48\x3e\x44\x48\x44\x4d\x50\x42\x4f\ +\x52\x44\x4d\x53\x44\x4d\x56\x3e\x48\x4a\x40\x4b\x4f\x4a\x51\x56\ +\x3f\x48\x49\x3b\x44\x43\x43\x4b\x4f\x43\x48\x49\x41\x4b\x51\x4c\ +\x52\x58\x49\x52\x5b\x45\x49\x4f\x43\x4e\x54\x45\x51\x59\x47\x52\ +\x55\x41\x4c\x4c\x3f\x49\x4c\x3e\x47\x48\x00\x00\x00\x85\xb4\xd7\ +\x82\xb1\xd5\x80\xb3\xd4\x7e\xb5\xd2\x87\xb8\xd7\x8e\xbb\xdd\x90\ +\xbe\xe0\x8e\xbf\xe0\x8f\xbe\xdf\x92\xbe\xdf\x94\xbd\xde\x90\xbc\ +\xdd\x8f\xbc\xde\x8e\xb8\xdd\x90\xb6\xdb\x8f\xb5\xd9\x94\xbc\xde\ +\x96\xc1\xe0\x93\xbd\xdc\x8e\xb9\xd5\x90\xc0\xd9\x93\xc3\xde\x93\ +\xc3\xe0\x94\xc1\xdf\x93\xc0\xde\x93\xc1\xdf\x95\xc4\xe2\x96\xc5\ +\xe0\x98\xc3\xdd\x9a\xc0\xda\x8a\xa9\xc0\x35\x50\x64\x2e\x4b\x61\ +\x7e\xa2\xb7\x98\xbf\xd8\x9e\xc4\xe3\xa1\xc4\xe4\x9e\xc2\xe2\x9a\ +\xc1\xe1\x9b\xc1\xe2\x9b\xc2\xe3\x97\xc2\xe1\x98\xc6\xe3\x98\xc3\ +\xe5\x9c\xc1\xe6\x9a\xbe\xe2\x99\xbd\xdf\x95\xbb\xdd\x8f\xbb\xdd\ +\x92\xbd\xd2\x7f\x98\x9e\x5e\x73\x88\x67\x8e\xaf\x65\x8b\xae\x5d\ +\x7e\xa1\x37\x53\x66\x27\x3c\x41\x24\x2f\x33\x21\x2d\x2f\x17\x23\ +\x24\x17\x1f\x1c\x1f\x2c\x30\x36\x43\x48\x3b\x4a\x4f\x3a\x4a\x49\ +\x4b\x56\x5b\x49\x50\x51\x40\x43\x46\x39\x41\x44\x34\x39\x39\x31\ +\x36\x32\x39\x3d\x3d\x37\x42\x46\x3c\x45\x44\x3b\x44\x45\x39\x3a\ +\x3d\x36\x3d\x3c\x34\x3c\x39\x31\x39\x37\x33\x3b\x3b\x33\x3f\x3f\ +\x34\x47\x49\x36\x42\x40\x38\x46\x44\x36\x3d\x3c\x38\x3e\x3f\x3a\ +\x40\x40\x3e\x46\x45\x40\x4b\x4a\x37\x46\x45\x34\x3c\x37\x36\x3b\ +\x3a\x38\x42\x41\x3c\x43\x43\x42\x4b\x50\x43\x4f\x4f\x3c\x44\x46\ +\x3a\x44\x41\x39\x43\x40\x38\x45\x42\x34\x40\x3d\x31\x3c\x38\x34\ +\x3d\x3c\x31\x3b\x3b\x49\x56\x5d\x49\x53\x57\x3f\x47\x4a\x3b\x44\ +\x47\x35\x3d\x3a\x3d\x44\x48\x39\x40\x40\x3e\x49\x4d\x48\x54\x56\ +\x46\x52\x53\x4a\x56\x5a\x3e\x4b\x48\x36\x40\x3c\x36\x3b\x3b\x39\ +\x40\x3f\x3c\x42\x45\x3c\x48\x4a\x35\x43\x46\x3a\x3e\x3e\x3f\x46\ +\x4a\x3a\x4c\x4f\x41\x4a\x53\x3c\x41\x46\x32\x3a\x3a\x36\x3d\x3f\ +\x31\x3b\x3b\x38\x40\x40\x3f\x49\x4b\x3b\x47\x4c\x42\x4c\x50\x3d\ +\x49\x4b\x38\x47\x47\x37\x41\x46\x3a\x41\x3f\x3f\x4b\x4c\x40\x4d\ +\x4e\x43\x4a\x4f\x48\x4f\x55\x41\x4c\x53\x39\x48\x49\x38\x45\x44\ +\x3a\x42\x45\x3b\x3e\x44\x3a\x46\x48\x3c\x47\x46\x39\x42\x40\x41\ +\x4c\x4f\x40\x47\x48\x3c\x48\x49\x3e\x49\x4d\x3f\x45\x46\x37\x3e\ +\x3d\x36\x3e\x3f\x3d\x47\x4b\x3e\x46\x4a\x3b\x43\x42\x35\x3f\x3c\ +\x3a\x48\x4b\x41\x4d\x4b\x00\x00\x00\x7f\xaf\xd0\x81\xaf\xd3\x82\ +\xb1\xd1\x83\xb7\xd4\x87\xbc\xd7\x8b\xbe\xdb\x8b\xbf\xdc\x8c\xc0\ +\xde\x90\xc1\xe0\x91\xbe\xde\x92\xbc\xdd\x90\xba\xdb\x8a\xb9\xdb\ +\x89\xb8\xdb\x88\xb7\xda\x8a\xb8\xd9\x90\xbc\xdc\x99\xc0\xdf\x8f\ +\xb4\xcf\x6d\x92\xab\x8d\xb6\xce\x96\xc4\xe0\x93\xc2\xe1\x95\xc3\ +\xe2\x98\xc5\xe4\x97\xc6\xe4\x98\xc7\xe6\x97\xc4\xe0\x96\xc2\xde\ +\x96\xc1\xdd\x91\xbb\xd7\x87\xb2\xcc\x83\xad\xc9\x94\xbe\xdb\x98\ +\xc2\xdc\x9c\xc4\xe3\x9e\xc3\xe6\x9c\xc2\xe5\x99\xc1\xe4\x9b\xc1\ +\xe2\x9e\xc2\xe4\x9a\xc3\xe3\x95\xc3\xe3\x97\xc5\xe8\x99\xc3\xe8\ +\x97\xc0\xe3\x94\xbc\xde\x91\xbb\xdc\x98\xc1\xde\xaf\xcf\xe4\xb0\ +\xcc\xdf\x7d\x9c\xb3\x4d\x6c\x89\x2c\x3e\x4f\x28\x38\x3d\x29\x32\ +\x39\x28\x36\x36\x2c\x36\x37\x1c\x28\x2a\x1c\x29\x2c\x35\x42\x43\ +\x39\x43\x44\x3f\x45\x49\x44\x4b\x4f\x45\x52\x58\x3d\x46\x46\x38\ +\x3f\x3f\x41\x4a\x4d\x3d\x42\x45\x3b\x47\x46\x3f\x48\x4d\x3f\x49\ +\x4a\x38\x46\x46\x37\x41\x3c\x36\x34\x31\x37\x3b\x39\x42\x49\x4a\ +\x36\x3f\x3b\x3c\x45\x46\x40\x47\x50\x3e\x4a\x4f\x3f\x47\x46\x38\ +\x41\x43\x36\x45\x49\x3e\x4c\x4d\x41\x4a\x49\x3e\x48\x48\x38\x3f\ +\x42\x3e\x42\x49\x35\x41\x3e\x39\x45\x42\x41\x4c\x4f\x40\x4b\x4d\ +\x3c\x44\x46\x3b\x43\x43\x36\x43\x40\x34\x3f\x3d\x3b\x42\x42\x37\ +\x3f\x3f\x39\x43\x45\x39\x45\x4c\x41\x4d\x51\x3f\x47\x4b\x40\x4d\ +\x54\x36\x44\x49\x35\x3e\x41\x39\x45\x46\x3a\x44\x47\x3b\x44\x49\ +\x40\x48\x4d\x3c\x46\x4a\x3c\x41\x4b\x3b\x45\x43\x3b\x42\x43\x39\ +\x45\x44\x39\x41\x41\x3e\x46\x4a\x44\x4f\x52\x47\x4e\x55\x3c\x43\ +\x41\x34\x3b\x38\x3b\x3e\x44\x3c\x42\x45\x3f\x47\x47\x3c\x47\x48\ +\x3d\x40\x47\x3f\x43\x48\x43\x4e\x55\x43\x4c\x50\x40\x47\x4a\x45\ +\x4c\x4f\x3a\x44\x48\x36\x40\x41\x3b\x47\x45\x38\x46\x49\x36\x41\ +\x3e\x3c\x43\x46\x44\x4f\x51\x41\x49\x4b\x34\x3b\x3e\x37\x42\x43\ +\x3a\x44\x46\x36\x43\x47\x39\x41\x43\x40\x4c\x4d\x45\x4c\x50\x42\ +\x4e\x53\x3c\x45\x47\x39\x47\x46\x3e\x4a\x48\x41\x4d\x4c\x40\x47\ +\x4b\x48\x4f\x56\x4b\x4e\x56\x3c\x46\x43\x41\x48\x47\x47\x54\x59\ +\x44\x4d\x4e\x40\x45\x46\x3d\x46\x45\x3c\x46\x48\x3c\x48\x4a\x3b\ +\x45\x48\x00\x00\x00\x7a\xae\xcd\x7d\xad\xcf\x85\xb4\xd5\x8a\xb9\ +\xd6\x86\xbc\xd4\x85\xbf\xd6\x86\xc0\xd7\x8b\xc2\xdb\x8f\xc0\xdd\ +\x90\xbe\xdd\x91\xbc\xdb\x91\xbb\xdd\x89\xb9\xda\x84\xbc\xd9\x85\ +\xbf\xd9\x88\xbf\xd9\x8d\xc0\xdb\x95\xc3\xe0\x96\xbb\xd6\x5a\x79\ +\x93\x59\x78\x93\x9a\xc0\xdb\x95\xc0\xdc\x96\xc2\xde\x99\xc4\xe1\ +\x9c\xc7\xe5\x9e\xc8\xe7\x9b\xc5\xe1\x99\xc3\xe0\x95\xc1\xe0\x92\ +\xc1\xdf\x8e\xc1\xde\x90\xc1\xe1\x95\xc1\xe1\x97\xc2\xe1\x9a\xc3\ +\xe3\x9a\xc3\xe5\x95\xbd\xe1\x96\xbc\xe1\x98\xbd\xde\x9b\xc0\xdf\ +\x97\xc3\xe1\x97\xc6\xe6\x95\xc3\xe5\x92\xc2\xe4\x96\xc5\xe3\xa5\ +\xc7\xe2\x9c\xb9\xd2\x8e\xa5\xb9\x56\x67\x7c\x33\x4b\x5a\x30\x44\ +\x4f\x40\x4c\x55\x51\x65\x6b\x3d\x4c\x51\x2d\x39\x3f\x23\x2d\x33\ +\x25\x36\x38\x2c\x40\x43\x36\x46\x4b\x46\x50\x55\x3c\x3f\x42\x36\ +\x3d\x3b\x3d\x46\x49\x3a\x4a\x49\x3d\x47\x47\x37\x3f\x42\x38\x45\ +\x40\x36\x41\x41\x3a\x43\x48\x3a\x42\x42\x32\x3c\x38\x38\x3b\x3b\ +\x30\x38\x37\x3b\x40\x3f\x38\x42\x43\x35\x3d\x41\x37\x41\x3e\x39\ +\x41\x44\x39\x40\x43\x33\x3d\x3d\x38\x40\x40\x3f\x45\x4b\x3a\x40\ +\x44\x33\x3d\x42\x32\x3b\x3f\x3b\x3e\x40\x3a\x47\x49\x3b\x47\x4d\ +\x34\x42\x43\x38\x4a\x4b\x3e\x46\x4b\x35\x3d\x3c\x35\x3c\x44\x38\ +\x3e\x3a\x39\x45\x42\x43\x4a\x4d\x3a\x47\x47\x3e\x49\x4b\x3e\x4c\ +\x4e\x3d\x49\x4c\x39\x41\x46\x38\x43\x46\x30\x3a\x39\x37\x3f\x40\ +\x3c\x48\x4a\x38\x3c\x3c\x36\x41\x43\x3d\x4b\x4f\x40\x49\x4a\x36\ +\x47\x48\x3d\x46\x46\x3c\x47\x46\x3e\x46\x47\x3b\x42\x47\x39\x45\ +\x44\x3f\x4d\x4d\x44\x48\x4a\x3f\x45\x4e\x39\x41\x3d\x43\x4c\x52\ +\x47\x53\x58\x3d\x4d\x4e\x3e\x49\x4b\x39\x44\x44\x37\x45\x45\x39\ +\x45\x47\x39\x43\x44\x3a\x41\x41\x38\x3e\x45\x3f\x42\x46\x3c\x43\ +\x42\x3b\x43\x47\x36\x42\x43\x34\x3f\x3c\x3d\x40\x45\x3d\x41\x4a\ +\x3a\x43\x44\x39\x40\x3e\x3c\x45\x4c\x42\x4e\x53\x40\x4a\x4f\x41\ +\x4f\x58\x40\x4e\x50\x41\x4d\x4c\x40\x46\x48\x38\x40\x3f\x37\x40\ +\x3f\x3f\x4c\x52\x43\x4d\x4d\x3d\x48\x47\x3b\x44\x46\x39\x45\x48\ +\x35\x40\x41\x33\x3c\x3a\x38\x44\x47\x39\x44\x47\x3b\x44\x40\x3a\ +\x40\x3e\x36\x3c\x3c\x3b\x41\x44\x3c\x43\x4c\x40\x4b\x49\x00\x00\ +\x00\x83\xb2\xcf\x7e\xb0\xd2\x84\xb1\xd2\x8c\xb6\xd3\x8b\xbb\xd4\ +\x88\xbf\xd5\x8d\xc4\xda\x90\xc2\xdb\x90\xbf\xd8\x8b\xb8\xd3\x8c\ +\xb8\xd2\x90\xbc\xd9\x8c\xbd\xdb\x86\xbf\xd8\x87\xbf\xd7\x85\xba\ +\xd1\x8d\xc1\xdb\x91\xc3\xde\x99\xc0\xdd\x87\xa4\xbf\x27\x43\x5b\ +\x8a\xaa\xc2\x9c\xc2\xdb\x9b\xc4\xdd\x9a\xc5\xe1\x99\xc4\xe1\x9c\ +\xc6\xe3\xa1\xc8\xe4\x9b\xc4\xde\x99\xc2\xdc\x94\xc2\xdb\x91\xc1\ +\xdd\x95\xc2\xe3\x9a\xc0\xe5\x9b\xc2\xe5\x95\xc0\xe3\x93\xc0\xe1\ +\x93\xc1\xe1\x95\xbe\xdf\x97\xbe\xdc\x97\xc0\xdc\x92\xc1\xdd\x97\ +\xc3\xe2\x9d\xc5\xe5\xa6\xc3\xdb\x8b\xa5\xb4\x5b\x74\x87\x37\x51\ +\x5e\x42\x57\x63\x56\x6b\x7b\x5b\x6d\x74\x6a\x78\x7e\x5d\x68\x72\ +\x51\x5f\x63\x44\x58\x5b\x4b\x5f\x6b\x4b\x5b\x60\x42\x4b\x50\x46\ +\x4c\x51\x4a\x4e\x53\x46\x4f\x55\x3d\x4c\x4e\x3b\x45\x44\x3d\x48\ +\x4f\x3e\x46\x49\x3e\x49\x4c\x3d\x44\x4a\x47\x53\x5a\x3e\x46\x47\ +\x3b\x44\x43\x39\x46\x46\x3e\x46\x4d\x38\x43\x45\x3a\x46\x44\x41\ +\x45\x48\x40\x41\x43\x3a\x41\x41\x3b\x41\x42\x35\x40\x40\x39\x42\ +\x47\x3a\x49\x4d\x3e\x49\x4c\x3c\x40\x40\x36\x3b\x3b\x35\x42\x45\ +\x35\x40\x3d\x37\x44\x43\x38\x42\x43\x34\x3c\x39\x38\x3f\x42\x35\ +\x3e\x3d\x39\x3e\x42\x3a\x48\x48\x44\x51\x52\x3f\x4a\x4b\x3b\x44\ +\x49\x39\x40\x3e\x33\x3d\x3e\x38\x46\x49\x44\x48\x4d\x43\x49\x4b\ +\x44\x47\x4c\x3d\x46\x47\x37\x4b\x4e\x36\x43\x46\x34\x43\x44\x3f\ +\x43\x44\x43\x49\x50\x39\x48\x45\x38\x41\x3f\x35\x40\x41\x3b\x40\ +\x42\x39\x3f\x3d\x3c\x43\x45\x3f\x45\x49\x3c\x48\x4b\x48\x4f\x54\ +\x41\x4c\x4f\x3d\x47\x44\x3c\x46\x4b\x3e\x48\x50\x38\x40\x40\x32\ +\x3f\x3d\x39\x3c\x43\x37\x43\x42\x3a\x44\x4b\x42\x4a\x50\x41\x4c\ +\x4e\x3f\x49\x4d\x3c\x48\x4b\x44\x4a\x4f\x3a\x42\x41\x38\x43\x40\ +\x39\x45\x49\x3d\x49\x49\x42\x4a\x4b\x42\x4d\x4e\x3f\x49\x4b\x3d\ +\x48\x48\x45\x48\x4d\x3d\x45\x46\x3b\x45\x45\x37\x46\x47\x35\x3d\ +\x41\x37\x3d\x3c\x38\x42\x41\x37\x42\x42\x3d\x4a\x4f\x43\x50\x5a\ +\x40\x4b\x50\x37\x41\x44\x3b\x42\x49\x3e\x4c\x4f\x42\x4c\x51\x3f\ +\x46\x4d\x3f\x46\x4c\x3a\x47\x4a\x38\x3c\x3d\x37\x41\x42\x3e\x48\ +\x4a\x41\x4a\x4d\x3b\x42\x46\x39\x45\x41\x00\x00\x00\x3c\x63\x7a\ +\x5f\x89\xa7\x79\xa1\xc0\x7c\x9e\xb6\x6a\x8f\xa3\x74\x9c\xb1\x82\ +\xac\xc3\x8a\xb0\xc6\x80\xa4\xb7\x7d\xa4\xb6\x89\xb4\xc7\x8d\xbc\ +\xd4\x8b\xbd\xd5\x85\xb5\xcd\x74\xa0\xb7\x82\xaf\xc8\x91\xc4\xdb\ +\x8f\xc3\xdd\x95\xc0\xde\x9b\xbc\xd8\x36\x52\x68\x46\x64\x76\x9d\ +\xc0\xd5\x9a\xc4\xdc\x97\xc5\xe1\x98\xc5\xe1\x9a\xc6\xe0\xa0\xc6\ +\xe2\x9b\xc3\xdd\x9a\xc2\xdb\x97\xc1\xda\x92\xbc\xdb\x95\xbc\xe0\ +\x9a\xbd\xe4\x9a\xc0\xe6\x92\xbf\xe2\x91\xc1\xe0\x8e\xbf\xde\x8f\ +\xbd\xda\x92\xbb\xd7\x96\xc0\xd9\x97\xc0\xdb\x98\xb2\xc4\x66\x75\ +\x7f\x3c\x4d\x5a\x35\x45\x55\x49\x5b\x67\x48\x58\x67\x6b\x83\x90\ +\x68\x86\x96\x85\x9a\xa3\x6e\x85\x8d\x5b\x6e\x7a\x4e\x5f\x67\x3e\ +\x4c\x50\x41\x50\x5b\x3f\x46\x4f\x39\x3f\x40\x3b\x40\x3f\x3b\x3f\ +\x3e\x3e\x45\x4c\x42\x4b\x50\x33\x3b\x3e\x35\x40\x42\x34\x3f\x3f\ +\x3c\x47\x52\x3c\x44\x48\x3e\x41\x45\x37\x43\x43\x3f\x4e\x4c\x3c\ +\x48\x4c\x3d\x42\x43\x3a\x45\x42\x3b\x44\x41\x38\x3f\x3b\x32\x3c\ +\x3c\x3c\x3f\x3b\x34\x3c\x3d\x39\x3f\x41\x3c\x49\x49\x3f\x47\x48\ +\x39\x42\x3f\x35\x39\x38\x39\x46\x4d\x3e\x4a\x53\x3c\x45\x44\x3c\ +\x46\x48\x38\x40\x3f\x3f\x49\x47\x3e\x4c\x4e\x3f\x48\x4d\x35\x43\ +\x46\x39\x46\x47\x42\x4e\x4f\x3f\x4a\x4f\x3b\x46\x46\x3d\x43\x48\ +\x3f\x45\x49\x3e\x46\x4b\x42\x43\x45\x3c\x42\x44\x3c\x46\x44\x3c\ +\x46\x48\x36\x42\x46\x39\x45\x45\x3f\x4a\x4f\x40\x4c\x4f\x3a\x40\ +\x42\x3f\x47\x4c\x43\x4f\x52\x3e\x44\x49\x3e\x48\x4a\x40\x4b\x4f\ +\x40\x46\x4a\x3e\x4b\x4d\x3e\x49\x49\x3a\x46\x46\x3b\x45\x48\x46\ +\x4e\x55\x45\x54\x55\x40\x48\x44\x3d\x47\x49\x44\x4e\x52\x40\x4b\ +\x4a\x40\x4d\x4f\x41\x4c\x50\x40\x47\x48\x39\x46\x46\x3a\x40\x40\ +\x3f\x48\x47\x3b\x44\x48\x36\x3e\x41\x41\x4a\x50\x40\x48\x4c\x3a\ +\x40\x40\x3b\x41\x42\x39\x40\x42\x41\x45\x4b\x3b\x44\x43\x36\x3e\ +\x3c\x3d\x44\x43\x48\x56\x5a\x42\x50\x54\x3a\x43\x45\x39\x46\x4b\ +\x41\x4b\x50\x3a\x47\x49\x38\x42\x42\x3c\x43\x47\x37\x41\x41\x3e\ +\x4a\x52\x40\x4a\x4e\x3c\x4b\x4c\x3d\x45\x40\x34\x3d\x3e\x35\x41\ +\x3f\x3d\x4b\x4c\x3e\x47\x47\x3d\x46\x47\x3d\x47\x44\x38\x3d\x41\ +\x3e\x48\x48\x3d\x48\x49\x00\x00\x00\x68\x87\x99\x77\x9d\xb6\x53\ +\x75\x90\x1f\x3c\x51\x16\x2e\x42\x42\x5e\x72\x4e\x6c\x84\x2d\x47\ +\x5c\x12\x28\x38\x13\x2c\x3b\x2f\x51\x63\x5b\x84\x9a\x65\x8a\xa1\ +\x2b\x4b\x61\x35\x52\x6b\x87\xaa\xc5\x95\xc1\xda\x92\xc1\xde\x93\ +\xc0\xde\x98\xbe\xd9\x6e\x8d\xa0\x13\x2e\x3e\x8a\xab\xbc\x97\xc0\ +\xd4\x95\xc3\xdd\x97\xc4\xde\x9d\xc6\xdf\x9d\xc3\xdf\x96\xbd\xda\ +\x95\xba\xd6\x98\xba\xd4\x99\xba\xd6\x9b\xbc\xde\x9a\xbb\xe2\x96\ +\xbb\xe0\x8f\xbb\xda\x8c\xbc\xd8\x8b\xb8\xd5\x8d\xb5\xd2\x91\xb5\ +\xcf\x94\xb9\xd2\x91\xa8\xb1\x2c\x3b\x40\x25\x2a\x2e\x1e\x22\x29\ +\x1e\x25\x26\x3e\x43\x51\xa5\xb7\xc0\xb1\xcc\xdd\xb0\xcc\xdb\xa9\ +\xc9\xe0\xae\xcd\xe1\xa8\xc3\xd0\x80\x9e\xa0\x4b\x63\x6e\x43\x53\ +\x58\x46\x50\x59\x46\x55\x5d\x43\x4d\x53\x3d\x44\x44\x3d\x44\x49\ +\x38\x3e\x3c\x3a\x40\x42\x38\x41\x41\x34\x3f\x3f\x39\x46\x4b\x39\ +\x41\x45\x37\x3b\x40\x39\x48\x4c\x45\x4c\x55\x3d\x48\x4e\x37\x3e\ +\x3b\x38\x43\x45\x3b\x46\x49\x3d\x42\x42\x38\x3d\x3b\x39\x3f\x3e\ +\x3a\x43\x46\x39\x46\x47\x33\x3d\x39\x37\x40\x42\x39\x46\x4a\x3a\ +\x49\x49\x3b\x47\x48\x39\x40\x41\x3b\x45\x46\x38\x44\x46\x38\x40\ +\x42\x3e\x47\x48\x39\x44\x43\x36\x42\x45\x34\x44\x42\x37\x44\x42\ +\x3e\x4a\x4c\x37\x3f\x40\x3b\x46\x46\x41\x4a\x4b\x3c\x45\x47\x42\ +\x45\x46\x3d\x42\x48\x35\x3f\x3b\x3c\x45\x4a\x3d\x49\x49\x39\x40\ +\x41\x35\x3e\x3d\x39\x42\x44\x3b\x41\x42\x3d\x44\x45\x41\x4a\x4d\ +\x39\x3f\x44\x34\x3d\x40\x3f\x4b\x4f\x3e\x4a\x4e\x3e\x45\x45\x3f\ +\x47\x4b\x3a\x43\x46\x33\x3a\x3d\x33\x3d\x3e\x37\x3f\x41\x3b\x41\ +\x45\x37\x3d\x3f\x42\x47\x4a\x43\x4a\x50\x3e\x4a\x4a\x3b\x46\x4c\ +\x40\x46\x4a\x3f\x44\x49\x3d\x46\x4c\x3d\x48\x49\x42\x43\x44\x39\ +\x42\x40\x36\x44\x43\x3b\x40\x42\x40\x43\x46\x3d\x46\x4a\x3a\x48\ +\x48\x3c\x49\x4b\x3d\x42\x43\x3f\x45\x45\x3c\x45\x46\x3b\x40\x40\ +\x3a\x41\x3f\x37\x3f\x3d\x38\x3f\x3c\x3e\x46\x4b\x3b\x45\x43\x38\ +\x43\x44\x3a\x47\x4a\x41\x4a\x50\x3d\x4b\x4f\x3e\x44\x4b\x3e\x45\ +\x41\x3b\x42\x45\x39\x3b\x41\x3e\x49\x4d\x3c\x49\x4a\x3d\x42\x44\ +\x37\x3e\x3c\x42\x49\x53\x40\x4c\x51\x41\x4d\x50\x4c\x58\x5a\x4c\ +\x57\x5f\x00\x00\x00\x30\x51\x66\x79\xa2\xba\x82\xab\xc6\x51\x73\ +\x8d\x25\x41\x59\x3a\x56\x6f\x7c\x9a\xb5\x6e\x88\x9f\x1d\x30\x40\ +\x14\x26\x36\x4d\x6b\x7f\x81\xa3\xbb\x49\x67\x7e\x12\x29\x40\x59\ +\x72\x8e\x99\xb7\xd7\x93\xbc\xda\x94\xc1\xdf\x94\xc1\xdf\x98\xc1\ +\xda\x91\xb1\xc4\x1c\x36\x43\x4c\x69\x76\x95\xbd\xce\x93\xc2\xd9\ +\x95\xc4\xde\x98\xc4\xde\x94\xbe\xd9\x8d\xb4\xce\x65\x86\x9d\x3f\ +\x5c\x70\x4d\x6a\x82\x6f\x8a\xa9\x87\xa3\xc4\x7e\x9c\xb9\x7a\x9d\ +\xb6\x7f\xa6\xbc\x7f\xa2\xbc\x6d\x8c\xa5\x60\x7a\x91\x6e\x8b\xa3\ +\x8b\xa7\xbc\x36\x48\x4e\x2a\x36\x3c\x1d\x21\x21\x20\x2a\x2c\x33\ +\x36\x48\x9b\xbc\xd3\x89\xac\xc8\x60\x7c\x98\x74\x92\xae\x96\xb6\ +\xd5\x9a\xb8\xd9\x9c\xba\xd4\xa4\xbf\xc8\x7c\x98\x9b\x50\x66\x6e\ +\x4c\x5d\x67\x3e\x4f\x55\x41\x50\x5a\x3e\x49\x4c\x37\x40\x44\x3c\ +\x3e\x43\x42\x47\x49\x3c\x42\x3e\x36\x3e\x3f\x2c\x36\x36\x2d\x2a\ +\x2d\x3e\x46\x50\x3b\x46\x48\x3d\x48\x4e\x3e\x47\x47\x3b\x49\x4f\ +\x3a\x4a\x51\x3b\x47\x49\x40\x49\x4c\x41\x4c\x51\x3e\x4c\x55\x36\ +\x43\x44\x39\x42\x40\x37\x43\x45\x37\x42\x44\x35\x41\x41\x31\x38\ +\x39\x32\x3b\x3a\x37\x43\x45\x3d\x49\x47\x3b\x43\x40\x37\x43\x44\ +\x3c\x46\x4a\x3a\x46\x4b\x3c\x44\x46\x39\x47\x47\x37\x41\x45\x39\ +\x41\x44\x39\x3e\x3f\x3a\x3d\x3d\x33\x39\x37\x3b\x3e\x3a\x39\x3b\ +\x3f\x38\x40\x42\x3a\x41\x48\x42\x4e\x52\x35\x42\x42\x3d\x40\x44\ +\x3e\x49\x50\x3c\x45\x45\x40\x4a\x4f\x3b\x43\x47\x41\x47\x4b\x41\ +\x4b\x4e\x40\x48\x4c\x37\x3e\x41\x38\x3c\x38\x38\x44\x45\x3e\x4a\ +\x4e\x41\x4b\x50\x48\x53\x5c\x3d\x47\x4a\x3d\x43\x47\x3e\x4a\x4e\ +\x42\x4d\x4f\x3b\x45\x45\x3c\x3f\x3f\x3a\x3f\x46\x3c\x41\x45\x3a\ +\x3e\x40\x3d\x41\x41\x3b\x41\x41\x3f\x47\x4a\x42\x4a\x47\x42\x4d\ +\x4d\x41\x47\x4d\x3c\x41\x40\x43\x49\x4e\x3e\x45\x48\x3d\x46\x46\ +\x3d\x43\x46\x40\x46\x47\x39\x3d\x3c\x40\x44\x4a\x3e\x49\x4e\x42\ +\x48\x4c\x3d\x48\x4a\x3f\x46\x4b\x36\x3d\x44\x40\x45\x48\x42\x4b\ +\x54\x3b\x40\x44\x2e\x40\x3a\x34\x3e\x3d\x37\x3f\x3f\x36\x44\x3d\ +\x3c\x46\x48\x3b\x40\x40\x31\x38\x3c\x34\x40\x3e\x40\x4b\x4e\x47\ +\x52\x59\x41\x4b\x4d\x4a\x50\x55\x4c\x52\x55\x46\x51\x53\x00\x00\ +\x00\x7a\xa8\xc3\x8c\xbc\xd8\x8f\xc1\xdf\x89\xb6\xd4\x83\xab\xc9\ +\x86\xab\xca\x88\xae\xce\x89\xae\xcb\x62\x82\x99\x28\x47\x5c\x58\ +\x7c\x96\x8a\xb0\xcd\x87\xa9\xc5\x59\x79\x96\x76\x96\xb6\x95\xbb\ +\xdd\x93\xc0\xe0\x94\xc1\xe1\x97\xc2\xe2\x99\xc1\xde\x94\xb6\xcc\ +\x43\x5d\x6f\x20\x3b\x4c\x84\xab\xc0\x8f\xc1\xd8\x8e\xc2\xdc\x8e\ +\xc2\xdc\x8b\xbd\xd7\x81\xad\xc4\x3d\x5d\x70\x2e\x48\x58\x6d\x86\ +\x9c\x5e\x77\x91\x36\x4c\x66\x24\x39\x4e\x27\x42\x56\x47\x65\x7d\ +\x45\x5f\x79\x27\x3c\x53\x10\x26\x39\x3e\x5a\x71\x5f\x7c\x9b\x74\ +\x8c\x94\x28\x40\x40\x20\x27\x2d\x25\x34\x39\x3c\x45\x4c\x96\xb5\ +\xcf\x75\x91\xad\x1e\x30\x4b\x2a\x3e\x59\x85\x9b\xba\x89\xa0\xb9\ +\x4e\x68\x7c\x3e\x60\x74\x66\x8d\xa2\x8c\xa9\xac\x61\x76\x73\x6d\ +\x7e\x79\x28\x36\x37\x3e\x47\x47\x2c\x37\x3b\x36\x41\x44\x2b\x36\ +\x39\x25\x23\x1f\x27\x28\x25\x28\x2d\x2c\x2c\x33\x30\x36\x3a\x3f\ +\x30\x3d\x3b\x3b\x3d\x3d\x38\x3e\x40\x3b\x47\x4d\x38\x46\x49\x3b\ +\x4b\x4c\x3d\x48\x51\x37\x42\x43\x3a\x43\x46\x3a\x3f\x41\x37\x3c\ +\x3c\x35\x3d\x3e\x39\x3f\x3e\x31\x39\x37\x34\x38\x3e\x3c\x45\x49\ +\x38\x48\x49\x3f\x4b\x4b\x3b\x46\x4a\x3c\x46\x4a\x3a\x43\x46\x36\ +\x40\x42\x3d\x44\x44\x3c\x45\x47\x3e\x41\x44\x3a\x44\x45\x3c\x41\ +\x46\x3f\x4c\x51\x3d\x4b\x4b\x3e\x48\x49\x3f\x45\x46\x3b\x45\x43\ +\x3d\x42\x3d\x35\x40\x3f\x33\x3b\x39\x32\x3d\x39\x34\x3d\x3e\x34\ +\x3e\x3b\x39\x44\x41\x36\x3d\x3d\x38\x43\x41\x39\x41\x41\x3a\x41\ +\x40\x3e\x44\x47\x3f\x45\x47\x42\x4d\x55\x3c\x47\x46\x36\x42\x3f\ +\x38\x3f\x41\x38\x3f\x40\x3f\x46\x4c\x3a\x47\x48\x38\x43\x42\x36\ +\x3e\x41\x3b\x47\x4a\x3c\x47\x4b\x3b\x42\x42\x42\x48\x4d\x47\x4e\ +\x50\x41\x4a\x4c\x41\x47\x4c\x3b\x3f\x3f\x3a\x41\x41\x37\x3f\x41\ +\x37\x43\x41\x40\x43\x46\x3c\x40\x41\x36\x3b\x38\x33\x3b\x3b\x35\ +\x3d\x3e\x36\x3d\x3c\x3e\x46\x49\x45\x4f\x54\x3d\x45\x49\x3a\x42\ +\x43\x3d\x43\x44\x3d\x4a\x51\x3a\x43\x46\x38\x3f\x3f\x36\x39\x3b\ +\x38\x42\x45\x3a\x46\x4c\x3b\x43\x46\x40\x44\x4c\x3b\x42\x44\x3c\ +\x45\x45\x3d\x46\x4b\x40\x4f\x58\x41\x4d\x53\x43\x4e\x4f\x47\x52\ +\x53\x48\x53\x57\x3f\x4a\x4c\x3a\x43\x43\x00\x00\x00\x85\xb7\xd6\ +\x89\xbd\xdb\x89\xbd\xdb\x8e\xbf\xde\x8e\xbc\xdc\x92\xbe\xdf\x93\ +\xc0\xe1\x89\xb6\xd8\x84\xb0\xd0\x78\xa3\xc1\x81\xae\xcf\x84\xb1\ +\xd3\x85\xb3\xd3\x89\xb4\xd6\x8f\xbc\xde\x8c\xbb\xdd\x8c\xbe\xdf\ +\x8d\xc0\xe1\x95\xc2\xe3\x96\xbf\xdf\x90\xb5\xd3\x76\x95\xb1\x31\ +\x52\x6b\x67\x91\xa9\x8f\xc3\xdc\x8a\xc0\xdd\x89\xc0\xdd\x86\xbb\ +\xd6\x7e\xac\xc5\x6d\x90\xa5\x2f\x4a\x5a\x61\x79\x8c\x6e\x89\x9e\ +\x35\x4f\x63\x13\x29\x3c\x3a\x56\x69\x77\x97\xb0\x78\x93\xae\x32\ +\x48\x5d\x0d\x26\x38\x4c\x6f\x86\x7d\x9e\xbb\x63\x77\x95\x47\x56\ +\x62\x5b\x6a\x65\x5d\x6c\x6e\x76\x96\xa3\x66\x8c\xa5\x54\x71\x90\ +\x20\x34\x54\x31\x44\x63\x62\x77\x96\x4a\x60\x76\x15\x30\x40\x59\ +\x7c\x8f\x7c\xa7\xc1\x8d\xbb\xd9\x9e\xc8\xe0\xa0\xca\xdd\x9c\xbe\ +\xc2\xac\xc9\xd1\x7a\x96\x92\x2d\x36\x38\xae\xc0\xbf\x3e\x4b\x40\ +\x19\x1d\x16\x1c\x1f\x18\x2b\x35\x37\x3b\x48\x50\x31\x40\x41\x33\ +\x3a\x3a\x39\x43\x47\x3a\x48\x4c\x37\x41\x48\x3a\x47\x4b\x38\x41\ +\x3e\x3c\x41\x41\x37\x44\x46\x3a\x40\x40\x3c\x44\x46\x3b\x48\x4a\ +\x3c\x47\x44\x3d\x46\x4f\x38\x44\x4c\x3b\x46\x43\x33\x42\x42\x37\ +\x3a\x38\x36\x41\x40\x35\x3e\x40\x38\x3e\x40\x37\x3c\x41\x37\x3f\ +\x40\x3c\x41\x41\x3b\x44\x42\x39\x3d\x3c\x3e\x43\x45\x3e\x45\x48\ +\x39\x44\x45\x3e\x45\x4a\x41\x4a\x48\x39\x3f\x3c\x3a\x41\x41\x3b\ +\x46\x45\x3c\x46\x47\x43\x4c\x4f\x40\x4a\x4b\x3d\x48\x46\x49\x4f\ +\x54\x48\x4c\x53\x3e\x4a\x4d\x35\x44\x45\x3b\x43\x44\x42\x48\x4d\ +\x38\x40\x43\x39\x3e\x44\x40\x4a\x49\x42\x49\x4c\x3c\x43\x48\x3b\ +\x48\x4b\x40\x4c\x4e\x3a\x41\x40\x3b\x42\x44\x3e\x46\x4a\x43\x47\ +\x4e\x3e\x43\x48\x3b\x43\x46\x3d\x45\x4a\x40\x45\x48\x3a\x42\x43\ +\x3a\x41\x44\x3e\x47\x4c\x3a\x45\x43\x40\x4b\x4d\x3d\x46\x49\x45\ +\x48\x4e\x3f\x49\x4b\x3e\x45\x45\x3f\x49\x4b\x45\x4b\x51\x3e\x42\ +\x47\x35\x3b\x37\x37\x3c\x3c\x38\x38\x3b\x33\x37\x38\x38\x3d\x42\ +\x38\x45\x49\x3d\x41\x40\x3a\x43\x47\x3a\x47\x4a\x3d\x49\x4f\x41\ +\x48\x4a\x37\x41\x41\x39\x3f\x3f\x3b\x47\x47\x3f\x49\x4f\x42\x4f\ +\x53\x43\x50\x51\x4a\x53\x57\x4c\x52\x5b\x44\x49\x4e\x3a\x43\x40\ +\x3e\x46\x43\x3b\x46\x45\x00\x00\x00\x8a\xb5\xd6\x8e\xbd\xdb\x8d\ +\xbe\xdd\x91\xc0\xdf\x8f\xbd\xdd\x91\xbf\xdf\x92\xc0\xdf\x8c\xba\ +\xdc\x89\xb6\xdb\x8a\xb6\xda\x8c\xbb\xe0\x87\xb9\xdb\x86\xb9\xd9\ +\x8f\xbf\xdf\x94\xc2\xe4\x8c\xbd\xdd\x86\xbb\xdc\x87\xbd\xde\x8f\ +\xbf\xe0\x92\xbb\xde\x8c\xb5\xd8\x83\xae\xcf\x76\xa3\xc1\x7d\xae\ +\xc8\x8f\xc0\xda\x8e\xc2\xe0\x88\xbe\xdd\x86\xb9\xd7\x81\xaf\xcf\ +\x7d\xa3\xbf\x60\x81\x96\x2b\x49\x5c\x4e\x70\x83\x6e\x92\xa8\x53\ +\x76\x8e\x30\x53\x6c\x51\x77\x91\x82\xa5\xbc\x4e\x6a\x7e\x1e\x3c\ +\x4f\x76\x9c\xb4\x78\x98\xb3\x35\x4a\x61\x0e\x20\x35\x79\x92\xa9\ +\x75\x98\xaf\x44\x6b\x7f\x75\x9b\xb3\x88\xab\xcb\x68\x87\xaa\x7d\ +\x9b\xbb\x89\xab\xc8\x76\x99\xb2\x43\x66\x7b\x60\x87\x9e\x8e\xb6\ +\xd2\x97\xbf\xdf\x97\xbf\xdf\x96\xc1\xde\x90\xbf\xd9\x88\xb1\xcd\ +\x7f\x9c\xb4\x48\x55\x4e\x6d\x6f\x7e\x49\x54\x52\x36\x3e\x37\x25\ +\x2d\x20\x2a\x39\x3b\x32\x3e\x3c\x33\x38\x32\x3b\x41\x43\x3c\x45\ +\x48\x40\x4b\x50\x3c\x43\x42\x3a\x44\x47\x3c\x44\x44\x33\x40\x3f\ +\x40\x47\x4f\x3e\x4a\x4f\x38\x46\x49\x2f\x3c\x3c\x32\x3c\x3c\x34\ +\x41\x3d\x3a\x43\x46\x37\x3e\x3e\x39\x44\x42\x3c\x42\x40\x3a\x45\ +\x48\x3b\x48\x4a\x39\x43\x47\x39\x40\x41\x3c\x45\x47\x3f\x43\x43\ +\x3b\x3e\x3f\x37\x39\x3c\x39\x42\x3f\x3e\x44\x46\x3b\x42\x42\x34\ +\x39\x3e\x34\x36\x36\x36\x3a\x3b\x38\x42\x48\x3a\x42\x44\x38\x3d\ +\x3d\x3b\x3e\x45\x3b\x3d\x3f\x3c\x3e\x3f\x35\x3a\x41\x35\x3b\x38\ +\x32\x3a\x39\x31\x3d\x3c\x39\x3e\x43\x3c\x3f\x41\x3d\x46\x44\x47\ +\x4e\x51\x42\x4b\x4b\x38\x3d\x3c\x35\x44\x40\x3a\x43\x45\x3a\x43\ +\x43\x3d\x47\x47\x3e\x48\x4b\x3b\x44\x4b\x3d\x41\x48\x39\x3f\x46\ +\x3c\x4a\x4c\x3b\x44\x46\x3c\x4c\x4c\x3b\x45\x44\x3b\x42\x45\x44\ +\x45\x4b\x3c\x41\x47\x3f\x44\x4a\x38\x42\x41\x38\x3d\x3c\x3b\x3e\ +\x43\x3d\x41\x46\x3a\x41\x42\x35\x3b\x38\x39\x3c\x39\x42\x47\x49\ +\x3f\x4b\x4a\x4a\x51\x55\x3e\x45\x4b\x39\x40\x44\x37\x43\x44\x3b\ +\x45\x44\x39\x41\x3f\x39\x3f\x44\x35\x39\x3d\x33\x39\x3c\x3b\x3d\ +\x41\x44\x4a\x4e\x42\x4d\x50\x3e\x4c\x4c\x42\x51\x56\x45\x52\x55\ +\x42\x48\x49\x37\x3c\x3f\x38\x3e\x41\x3d\x49\x4f\x3e\x47\x46\x43\ +\x50\x50\x00\x00\x00\x91\xb5\xd6\x93\xba\xdb\x92\xbf\xde\x90\xbf\ +\xde\x8f\xbe\xdd\x8f\xbe\xdd\x90\xbe\xde\x8b\xb9\xdd\x88\xb5\xdb\ +\x8b\xb7\xdb\x8f\xba\xdc\x91\xbf\xdf\x91\xc0\xe0\x94\xc2\xe3\x92\ +\xc1\xe1\x8a\xbb\xd9\x82\xb9\xd8\x83\xbc\xdb\x8b\xbb\xdc\x8d\xb8\ +\xd8\x86\xb4\xd4\x80\xb4\xd2\x7d\xb4\xd3\x85\xb9\xd7\x8e\xc2\xdd\ +\x8e\xc1\xdd\x87\xbd\xd9\x82\xb7\xd5\x80\xb1\xd3\x7c\xaa\xcb\x7f\ +\xa9\xc7\x7c\xa7\xc0\x82\xad\xc5\x7e\xa9\xc6\x7a\xa6\xc6\x7b\xa8\ +\xc8\x6f\x9c\xb9\x78\xa2\xbc\x7b\x9f\xb6\x2a\x4a\x61\x83\xa4\xc0\ +\x7e\x9b\xb5\x42\x57\x6c\x13\x27\x38\x81\xa0\xb4\x85\xab\xc0\x58\ +\x7e\x8f\x4d\x70\x87\x8b\xb0\xce\x97\xbe\xdf\x91\xbc\xdb\x8c\xb8\ +\xd4\x87\xb6\xce\x82\xb0\xc9\x88\xb5\xd0\x94\xbb\xda\x98\xbe\xe0\ +\x9a\xc0\xe3\x97\xc0\xe1\x8f\xbe\xdd\x85\xb2\xd1\x59\x7a\x95\x5c\ +\x72\x76\x5f\x74\x6d\x63\x71\x6d\xa8\xc3\xd3\xac\xc6\xd7\x93\xac\ +\xb1\x43\x58\x5f\x32\x3e\x3b\x39\x3d\x3c\x3d\x47\x48\x34\x40\x3f\ +\x36\x3c\x3b\x38\x3f\x40\x39\x3c\x3b\x34\x38\x3d\x39\x40\x45\x35\ +\x3e\x44\x3d\x48\x4d\x38\x44\x48\x3a\x4b\x4e\x49\x57\x58\x3d\x48\ +\x4b\x3b\x45\x4b\x39\x41\x48\x37\x3a\x39\x35\x3b\x38\x33\x37\x37\ +\x35\x3d\x3c\x36\x38\x37\x33\x39\x3a\x38\x39\x3e\x37\x3b\x3d\x37\ +\x42\x42\x36\x3f\x3c\x36\x3d\x38\x35\x3f\x3d\x34\x3e\x42\x32\x3e\ +\x3f\x3e\x4a\x4f\x39\x43\x49\x37\x42\x43\x39\x42\x41\x37\x42\x44\ +\x34\x39\x35\x34\x3b\x3b\x3a\x42\x41\x39\x45\x46\x40\x48\x4d\x40\ +\x4c\x4d\x3f\x45\x49\x38\x3e\x3e\x33\x3c\x3e\x3d\x3e\x43\x35\x3d\ +\x3c\x3c\x45\x42\x40\x49\x4e\x40\x4c\x4c\x49\x50\x55\x3d\x47\x46\ +\x32\x3b\x3c\x36\x3b\x40\x3a\x43\x44\x3d\x4a\x4b\x3f\x4c\x4e\x3b\ +\x42\x4a\x40\x43\x49\x35\x3d\x3a\x31\x39\x3b\x30\x3d\x3e\x36\x41\ +\x43\x34\x3f\x3f\x38\x40\x40\x3c\x41\x41\x38\x3a\x3a\x2f\x35\x33\ +\x34\x3a\x3c\x39\x3e\x3e\x36\x3f\x40\x3d\x41\x4a\x38\x3f\x41\x41\ +\x45\x4c\x3c\x46\x48\x41\x4a\x52\x3e\x4a\x4a\x38\x3e\x3d\x32\x3d\ +\x39\x37\x3e\x3d\x3a\x45\x45\x43\x4d\x54\x42\x4d\x55\x43\x4d\x4f\ +\x45\x4c\x51\x45\x4e\x50\x3e\x45\x49\x41\x40\x44\x39\x3c\x3b\x41\ +\x47\x4a\x46\x4e\x54\x43\x50\x4f\x44\x4c\x4e\x47\x55\x5d\x00\x00\ +\x00\x92\xb5\xd9\x90\xb7\xd8\x8e\xbd\xd9\x8c\xbb\xd7\x87\xb6\xd5\ +\x8b\xba\xd9\x8c\xbb\xda\x89\xb7\xd9\x85\xb2\xd7\x89\xb4\xd7\x8d\ +\xb6\xd7\x8f\xbb\xdc\x92\xbe\xdd\x95\xc1\xe0\x91\xbd\xdd\x8a\xba\ +\xd6\x7f\xb7\xd1\x85\xba\xd7\x8c\xba\xd9\x8b\xb7\xd6\x85\xb6\xd4\ +\x83\xb8\xd6\x81\xba\xd9\x80\xb8\xd6\x86\xbc\xda\x8a\xbd\xda\x89\ +\xbd\xd8\x82\xb9\xd6\x83\xb8\xd8\x82\xb2\xd4\x7f\xb4\xd2\x82\xb8\ +\xd4\x8a\xb9\xd5\x85\xb4\xd3\x80\xaf\xcf\x81\xaf\xd1\x85\xb3\xd5\ +\x8a\xb7\xd8\x8f\xb6\xd4\x5f\x7f\x9d\x59\x75\x96\x85\x9d\xba\x52\ +\x66\x7a\x11\x29\x39\x69\x88\x9c\x79\x9c\xb0\x38\x5a\x6b\x3f\x62\ +\x78\x92\xb9\xd5\x98\xc3\xe0\x90\xbc\xd9\x8c\xb8\xd4\x8a\xb8\xd3\ +\x8a\xb8\xd5\x8c\xbb\xd9\x90\xbc\xda\x94\xbb\xdd\x97\xbd\xe0\x90\ +\xbc\xdf\x86\xba\xd8\x7f\xb4\xd3\x83\xb0\xcf\x80\xa6\xbf\x68\x8c\ +\xa1\x76\x99\xae\x9c\xba\xcf\x93\xa3\xa9\x79\x92\xa0\x6b\x8a\x9e\ +\x43\x5e\x65\x2f\x39\x38\x33\x36\x38\x3a\x41\x41\x3a\x3d\x3f\x35\ +\x3a\x38\x30\x37\x37\x35\x3c\x3f\x35\x46\x4a\x37\x42\x46\x39\x47\ +\x45\x3c\x48\x46\x3b\x46\x49\x3a\x46\x4b\x3a\x3f\x3e\x38\x43\x3d\ +\x38\x43\x48\x3f\x46\x48\x40\x47\x48\x3c\x45\x42\x34\x37\x38\x30\ +\x37\x3a\x36\x41\x43\x38\x41\x44\x3e\x46\x4a\x42\x49\x4d\x3b\x42\ +\x43\x41\x46\x4b\x42\x4b\x4d\x41\x48\x4d\x3d\x43\x47\x3e\x4b\x4e\ +\x3f\x44\x47\x3d\x46\x45\x40\x44\x4a\x3b\x4a\x4b\x3e\x49\x48\x47\ +\x4f\x5a\x3b\x47\x48\x3a\x42\x44\x39\x46\x46\x41\x48\x49\x39\x40\ +\x44\x3c\x42\x47\x3b\x47\x4d\x3b\x45\x41\x3d\x3e\x43\x38\x43\x3e\ +\x3e\x44\x45\x35\x3f\x40\x35\x3a\x3a\x33\x37\x37\x32\x3e\x3e\x3d\ +\x45\x49\x40\x48\x4c\x38\x3e\x3a\x33\x3c\x3a\x3b\x43\x43\x3a\x45\ +\x45\x3f\x46\x45\x41\x47\x4b\x40\x49\x4e\x3a\x41\x46\x3a\x40\x44\ +\x3a\x42\x43\x3e\x44\x42\x3e\x42\x44\x3a\x45\x46\x42\x4a\x4e\x3e\ +\x44\x47\x44\x46\x4c\x3a\x45\x47\x3c\x47\x4d\x3a\x42\x44\x3c\x3e\ +\x45\x3a\x3f\x41\x35\x3b\x3f\x35\x3f\x41\x3a\x47\x47\x3d\x49\x4b\ +\x46\x4c\x54\x44\x4c\x53\x43\x47\x4c\x3f\x46\x47\x3f\x45\x49\x3d\ +\x43\x40\x3c\x46\x47\x43\x4f\x56\x3d\x49\x4a\x43\x4b\x4a\x48\x4f\ +\x53\x4b\x56\x5c\x4f\x58\x61\x52\x5c\x63\x00\x00\x00\x8f\xb8\xdc\ +\x8c\xb7\xd7\x8d\xbb\xd7\x8a\xba\xd5\x84\xb4\xd3\x86\xb6\xd4\x89\ +\xb8\xd5\x8a\xb5\xd5\x8a\xb2\xd6\x8d\xb5\xd5\x89\xb4\xd5\x8b\xb9\ +\xd7\x91\xbd\xd9\x93\xc0\xdc\x8f\xbd\xdb\x8a\xb8\xd7\x83\xb8\xd2\ +\x87\xb9\xd5\x8b\xb9\xd8\x85\xb6\xd4\x80\xb6\xd2\x80\xb9\xd6\x7f\ +\xb8\xd7\x7d\xb4\xd3\x81\xb6\xd6\x86\xb9\xd9\x87\xba\xda\x85\xb7\ +\xd8\x82\xb6\xd5\x83\xb6\xd5\x83\xba\xd8\x85\xbb\xda\x8b\xbd\xdc\ +\x8c\xba\xda\x87\xb5\xd6\x87\xb5\xd7\x88\xb6\xd9\x8a\xb8\xdb\x8c\ +\xb6\xd9\x8b\xaf\xd2\x63\x83\xa6\x46\x61\x82\x37\x4f\x68\x19\x34\ +\x49\x3b\x5b\x72\x49\x6a\x84\x39\x5c\x75\x7a\x9e\xb9\x8e\xb5\xd4\ +\x90\xbc\xda\x8f\xbc\xda\x91\xba\xd8\x90\xbb\xd9\x8c\xba\xda\x8b\ +\xbb\xda\x8c\xbb\xd9\x90\xbb\xda\x92\xba\xdc\x8d\xba\xda\x84\xb9\ +\xd9\x7d\xb6\xd7\x80\xb6\xd6\x86\xb6\xd5\x8a\xb8\xd3\x92\xb8\xcf\ +\x94\xb0\xc8\xa8\xbd\xc5\x88\xb0\xc3\x79\xa4\xb7\x5c\x7c\x8b\x45\ +\x5f\x6e\x2c\x3a\x3a\x2f\x37\x36\x35\x39\x37\x3b\x44\x47\x34\x45\ +\x47\x36\x3f\x46\x36\x42\x43\x35\x3d\x44\x38\x41\x42\x36\x3c\x3d\ +\x37\x46\x48\x38\x42\x41\x3b\x49\x51\x43\x4d\x57\x45\x50\x5a\x3e\ +\x47\x4b\x3c\x41\x44\x39\x40\x41\x38\x40\x43\x3e\x44\x48\x3f\x47\ +\x4d\x3d\x42\x41\x39\x41\x3d\x36\x40\x3d\x39\x3d\x39\x3a\x41\x43\ +\x3b\x43\x48\x3a\x40\x3e\x39\x40\x3f\x3e\x45\x4a\x40\x4d\x51\x3f\ +\x4b\x4c\x3b\x42\x47\x40\x48\x4b\x3b\x42\x46\x3b\x41\x46\x39\x42\ +\x45\x3a\x48\x4b\x3f\x4a\x4c\x39\x47\x45\x3f\x48\x47\x40\x4c\x52\ +\x40\x4b\x4e\x3f\x49\x4a\x3e\x49\x4b\x3e\x4d\x50\x40\x47\x4b\x36\ +\x3f\x41\x38\x41\x42\x3b\x4a\x4d\x3d\x48\x4c\x44\x48\x4d\x3a\x40\ +\x44\x3c\x42\x44\x45\x4b\x51\x43\x45\x4b\x39\x40\x41\x3b\x46\x4a\ +\x37\x42\x43\x3d\x42\x44\x36\x3e\x3d\x35\x41\x41\x3d\x46\x48\x43\ +\x47\x48\x3c\x44\x41\x3f\x48\x4a\x3b\x3f\x42\x39\x3f\x3a\x39\x3f\ +\x3b\x3c\x47\x4b\x3e\x45\x4a\x36\x42\x41\x3c\x40\x41\x34\x3e\x3e\ +\x3f\x45\x48\x41\x4a\x4f\x47\x4e\x55\x43\x4d\x54\x42\x4e\x51\x41\ +\x48\x4e\x3a\x3f\x41\x35\x3b\x3a\x3b\x3d\x3f\x3e\x49\x4a\x42\x48\ +\x4b\x45\x51\x54\x48\x53\x56\x4c\x59\x5c\x4f\x58\x64\x4c\x56\x5c\ +\x4f\x58\x62\x53\x59\x5d\x00\x00\x00\x8d\xba\xde\x8b\xb6\xd8\x91\ +\xba\xda\x8a\xb7\xd7\x88\xb5\xd5\x8b\xb6\xd8\x8c\xb7\xd8\x8e\xb3\ +\xd5\x91\xb4\xd9\x95\xb9\xdd\x8e\xba\xdd\x89\xba\xd8\x8e\xbe\xd9\ +\x90\xbf\xdb\x8f\xbd\xdd\x8b\xb9\xda\x89\xb9\xd7\x8b\xb9\xd5\x8a\ +\xba\xd5\x83\xb7\xd3\x7b\xb3\xd2\x7e\xb6\xd6\x80\xb6\xd5\x82\xb3\ +\xd3\x84\xb4\xd4\x85\xb5\xd7\x83\xb5\xd8\x82\xb1\xd5\x85\xb4\xd6\ +\x88\xb7\xd7\x87\xb9\xd9\x88\xba\xdb\x8b\xb8\xda\x8d\xb7\xd8\x8b\ +\xb6\xd8\x88\xb6\xd7\x89\xb8\xd8\x8a\xb7\xda\x8a\xb6\xdb\x87\xb1\ +\xd6\x84\xad\xcf\x7c\xa0\xc0\x6b\x8d\xaa\x6d\x8f\xaa\x79\x9e\xba\ +\x76\x9e\xbd\x7e\xa5\xc8\x87\xad\xd0\x8e\xb5\xd7\x8a\xb6\xd5\x88\ +\xb8\xd6\x8a\xb8\xd7\x8a\xb9\xda\x89\xb7\xd8\x88\xb6\xd7\x89\xb7\ +\xd8\x8b\xb8\xd8\x8e\xb8\xd7\x8c\xb7\xd7\x84\xb6\xd5\x80\xb8\xd6\ +\x82\xbb\xd8\x8b\xbf\xdd\x94\xc1\xdf\x99\xbf\xd6\x7b\x94\xab\x98\ +\xaa\xb1\x8f\xaa\xbe\x88\xab\xbf\x6b\x8b\x9b\x7e\xa2\xb4\x50\x6d\ +\x75\x30\x42\x42\x28\x31\x2d\x32\x34\x35\x3c\x44\x49\x36\x41\x43\ +\x33\x43\x42\x35\x43\x48\x33\x3e\x3f\x37\x41\x45\x3c\x49\x51\x38\ +\x43\x48\x3c\x47\x49\x34\x40\x47\x36\x3f\x41\x34\x3b\x3c\x3a\x44\ +\x45\x3c\x4b\x4c\x35\x40\x43\x38\x43\x3e\x3a\x3a\x3e\x38\x3b\x3a\ +\x33\x3d\x3b\x3b\x41\x48\x3b\x43\x48\x3a\x43\x46\x34\x3d\x3c\x36\ +\x3e\x3d\x37\x42\x42\x3f\x44\x43\x39\x40\x47\x35\x3c\x3f\x36\x40\ +\x3e\x39\x43\x44\x38\x3c\x3e\x3c\x44\x46\x3e\x46\x4b\x43\x54\x52\ +\x41\x49\x4a\x39\x43\x45\x41\x46\x4c\x3f\x45\x48\x3e\x41\x42\x34\ +\x3a\x37\x36\x3c\x3e\x34\x3f\x3e\x35\x3c\x3d\x3a\x44\x49\x40\x47\ +\x4c\x3d\x44\x4a\x3c\x42\x46\x34\x3f\x3f\x37\x42\x3e\x39\x43\x45\ +\x41\x44\x4a\x3b\x40\x49\x3f\x49\x4a\x41\x4b\x49\x41\x46\x4a\x3e\ +\x48\x49\x3f\x4c\x4e\x43\x4d\x4f\x42\x4b\x4b\x3d\x43\x46\x3b\x3e\ +\x41\x38\x3e\x41\x36\x42\x42\x37\x42\x41\x38\x3e\x3f\x37\x3b\x3a\ +\x39\x3d\x43\x40\x47\x4d\x43\x4c\x51\x3c\x4b\x52\x46\x4b\x4e\x41\ +\x4a\x4f\x41\x49\x4e\x40\x47\x49\x38\x40\x3e\x35\x3b\x3d\x34\x40\ +\x3f\x3b\x49\x4f\x45\x50\x54\x47\x4f\x54\x46\x54\x5b\x4c\x58\x5f\ +\x4d\x5a\x61\x4d\x58\x5a\x4c\x57\x5f\x50\x59\x5f\x4e\x56\x5d\x4d\ +\x57\x5f\x00\x00\x00\x8b\xb8\xdc\x86\xb1\xd6\x86\xb2\xd4\x8a\xb7\ +\xd7\x8e\xb9\xd9\x8e\xb6\xd9\x8c\xb3\xd7\x94\xb7\xdd\x96\xb8\xdf\ +\x99\xc0\xe3\x92\xbe\xdf\x88\xbb\xd8\x8a\xbe\xda\x8e\xbd\xdc\x8c\ +\xba\xdb\x8a\xb7\xd9\x8d\xba\xdb\x8f\xbb\xd9\x8d\xba\xd6\x8a\xb9\ +\xd6\x88\xb9\xd9\x85\xb7\xd9\x86\xb7\xd7\x87\xb6\xd5\x87\xb7\xd5\ +\x87\xb7\xd5\x82\xb5\xd7\x84\xb5\xd8\x8a\xb9\xd9\x8a\xba\xd9\x8c\ +\xba\xda\x8c\xb8\xd9\x8f\xb8\xd9\x94\xbb\xda\x8d\xb8\xd7\x8a\xb9\ +\xd8\x8d\xbb\xd9\x8f\xb8\xd9\x8d\xb5\xdb\x87\xb2\xd7\x84\xb1\xd4\ +\x88\xb2\xd2\x8a\xb1\xd0\x86\xaf\xcd\x83\xb0\xd0\x7d\xac\xce\x7b\ +\xa8\xcd\x83\xae\xd2\x89\xb2\xd4\x88\xb2\xd2\x84\xb0\xcf\x83\xb0\ +\xd0\x84\xb2\xd5\x83\xb2\xd2\x84\xb2\xd2\x88\xb5\xd6\x8b\xba\xd9\ +\x8a\xb8\xd6\x88\xb3\xd3\x81\xb1\xd0\x82\xb7\xd2\x87\xbf\xd8\x91\ +\xc1\xdd\x97\xc2\xdc\x98\xc1\xd6\x84\xa1\xba\x37\x4f\x66\x9a\xb1\ +\xba\xab\xc3\xcb\x82\xa3\xaf\x8c\xae\xc8\x8e\xb8\xcc\x56\x78\x80\ +\x3f\x5f\x66\x2f\x3f\x43\x32\x3e\x41\x3b\x46\x46\x3a\x4d\x56\x37\ +\x45\x45\x3f\x44\x49\x3b\x46\x4d\x3b\x47\x49\x36\x41\x45\x3a\x44\ +\x4a\x34\x46\x4a\x36\x49\x4c\x39\x46\x4a\x3d\x4a\x4d\x3d\x4b\x49\ +\x3c\x45\x49\x39\x43\x3f\x3b\x42\x41\x3f\x4a\x49\x39\x43\x41\x3d\ +\x49\x4c\x38\x41\x42\x36\x3d\x38\x33\x39\x36\x3b\x42\x43\x3b\x46\ +\x48\x3a\x42\x43\x38\x3a\x3e\x3a\x45\x49\x41\x4c\x4b\x37\x42\x40\ +\x38\x43\x44\x3e\x43\x47\x39\x42\x44\x3b\x44\x49\x41\x48\x4b\x38\ +\x41\x42\x3b\x43\x42\x39\x3b\x3b\x39\x3e\x40\x3e\x44\x49\x3e\x45\ +\x4b\x41\x4b\x4e\x3c\x45\x4c\x40\x4e\x52\x3a\x43\x43\x3b\x44\x42\ +\x3d\x4a\x4c\x39\x45\x45\x3d\x47\x47\x36\x41\x3f\x3d\x42\x44\x3b\ +\x40\x43\x3e\x40\x49\x3f\x46\x46\x39\x3a\x38\x37\x3e\x40\x3b\x3f\ +\x40\x34\x3b\x3d\x30\x38\x36\x31\x38\x37\x36\x39\x37\x38\x40\x44\ +\x3c\x43\x4a\x3a\x43\x42\x38\x42\x45\x3d\x4d\x52\x3f\x49\x4d\x44\ +\x50\x51\x41\x4a\x4c\x46\x50\x54\x41\x4d\x4d\x44\x49\x4e\x3b\x44\ +\x46\x39\x42\x42\x39\x3f\x43\x3b\x44\x46\x3d\x49\x49\x43\x4a\x4d\ +\x44\x4d\x50\x41\x4d\x50\x4b\x56\x5c\x4e\x55\x5e\x4d\x56\x5a\x4e\ +\x5d\x64\x4c\x5d\x62\x4b\x56\x5d\x4d\x56\x5b\x4c\x56\x60\x00\x00\ +\x00\x8b\xb7\xdc\x81\xb1\xd5\x7f\xb2\xd1\x84\xb5\xd3\x8b\xb9\xd7\ +\x8c\xb7\xd7\x94\xb8\xdd\x95\xb6\xe0\x92\xb9\xdf\x98\xc0\xe2\x92\ +\xbf\xdf\x8d\xbf\xdc\x90\xbf\xe0\x92\xc0\xe0\x8e\xb9\xda\x8d\xb8\ +\xd9\x8b\xb8\xd9\x8c\xba\xd9\x90\xbb\xd8\x94\xbe\xdb\x92\xbf\xde\ +\x8a\xbb\xdc\x8c\xbd\xdf\x8e\xbd\xde\x8e\xbd\xda\x8f\xbe\xd9\x88\ +\xba\xd6\x88\xb8\xd9\x88\xbb\xdb\x89\xbd\xdb\x8e\xbc\xda\x94\xbb\ +\xdb\x99\xc0\xdd\x96\xc2\xda\x90\xbf\xd9\x8e\xbf\xda\x8f\xbd\xda\ +\x8d\xb5\xd8\x84\xac\xd6\x89\xb0\xdd\x8a\xb5\xde\x8c\xb5\xdc\x86\ +\xae\xd2\x81\xad\xd1\x7e\xad\xd2\x7d\xae\xd2\x7c\xac\xd0\x82\xaf\ +\xd4\x82\xaf\xd3\x82\xaa\xce\x87\xac\xd0\x84\xab\xd2\x86\xaf\xd7\ +\x86\xb0\xd3\x88\xb2\xd4\x8d\xb4\xd8\x8c\xb7\xd8\x86\xb4\xd3\x83\ +\xad\xcf\x83\xae\xcd\x83\xb3\xd0\x88\xb9\xd6\x8d\xbb\xd8\x92\xbe\ +\xd8\x93\xbd\xd5\x8d\xb1\xcc\x64\x80\x9c\x4f\x6a\x82\x96\xa7\xb8\ +\x9f\xb7\xc3\x93\xb0\xb9\x9b\xbf\xd3\x96\xc1\xd8\x8e\xb1\xc9\x78\ +\x9b\xaa\x5d\x7e\x8b\x4b\x67\x73\x34\x43\x45\x37\x40\x40\x40\x4a\ +\x59\x44\x53\x5c\x3c\x4a\x4e\x3f\x4d\x57\x3c\x4a\x50\x43\x4d\x55\ +\x38\x44\x48\x37\x3e\x3f\x37\x3f\x3c\x35\x3d\x40\x38\x42\x46\x33\ +\x3c\x38\x3d\x41\x45\x3f\x49\x4a\x38\x40\x40\x35\x3e\x3f\x39\x3e\ +\x3a\x39\x42\x43\x3e\x47\x4b\x3e\x46\x45\x3e\x41\x43\x38\x40\x40\ +\x3d\x46\x4d\x42\x4b\x51\x43\x4e\x4b\x3b\x40\x42\x3e\x42\x46\x3b\ +\x3f\x40\x38\x42\x45\x3f\x49\x49\x40\x46\x4e\x3b\x43\x48\x3a\x40\ +\x41\x37\x41\x44\x37\x45\x44\x38\x40\x43\x33\x37\x37\x37\x3a\x3b\ +\x3c\x41\x45\x3c\x42\x43\x3d\x44\x43\x3f\x48\x4e\x38\x41\x43\x38\ +\x3c\x3b\x30\x38\x38\x2f\x36\x38\x2f\x35\x38\x31\x39\x35\x33\x3a\ +\x39\x31\x39\x36\x36\x38\x38\x31\x39\x39\x31\x37\x35\x30\x3a\x3a\ +\x33\x3c\x3f\x33\x42\x41\x37\x3c\x3b\x31\x36\x35\x2c\x34\x32\x30\ +\x3a\x39\x39\x40\x44\x38\x43\x4a\x3a\x47\x4a\x3e\x47\x4a\x3d\x47\ +\x4b\x41\x49\x4d\x39\x3f\x43\x37\x3c\x3c\x3c\x44\x46\x3f\x47\x50\ +\x3e\x4b\x4d\x41\x48\x4a\x44\x51\x56\x44\x4a\x50\x47\x50\x57\x49\ +\x57\x60\x4e\x5c\x64\x49\x5b\x5f\x50\x5d\x67\x4f\x5c\x62\x51\x5a\ +\x62\x4a\x54\x5c\x48\x5a\x5f\x4a\x5a\x5f\x00\x00\x00\x8c\xb6\xd9\ +\x80\xb4\xd5\x7e\xb6\xd5\x80\xb4\xd3\x87\xb6\xd5\x8c\xb9\xd8\x95\ +\xbc\xe0\x99\xbc\xe6\x94\xbc\xe2\x93\xc0\xe1\x90\xc0\xdf\x8b\xbf\ +\xdd\x91\xc0\xe3\x92\xbd\xe2\x8e\xba\xdf\x8e\xbd\xdd\x8c\xba\xdc\ +\x8d\xbc\xdd\x91\xc0\xde\x92\xc1\xe0\x8f\xbf\xdd\x8a\xbf\xdd\x8e\ +\xc0\xe0\x92\xc1\xe0\x97\xc3\xe0\x93\xc3\xdb\x8f\xbe\xd9\x88\xb9\ +\xd8\x81\xb8\xd7\x86\xbd\xdb\x8e\xbf\xdd\x94\xbf\xde\x98\xc3\xdd\ +\x95\xc3\xde\x91\xc4\xde\x91\xc3\xde\x93\xbe\xdd\x82\xaa\xd3\x53\ +\x7b\xb0\x47\x6f\xaa\x4a\x72\xad\x4e\x74\xac\x57\x7d\xb2\x5c\x83\ +\xba\x5d\x84\xba\x63\x8b\xbd\x67\x91\xbf\x62\x8f\xbf\x61\x8c\xc0\ +\x66\x8e\xc1\x6b\x91\xbf\x66\x8a\xba\x65\x88\xb8\x6b\x8e\xba\x73\ +\x95\xbd\x75\x96\xc2\x76\x9e\xc6\x7b\xa3\xca\x7e\xa1\xcb\x80\xa4\ +\xcc\x7e\xa6\xd0\x7d\xa8\xd1\x85\xb1\xd8\x8b\xb7\xde\x8d\xb6\xde\ +\x8e\xb1\xdb\x88\xa6\xd1\x8f\xaa\xcc\x74\x8d\x90\x53\x64\x72\xa3\ +\xbc\xd4\xb0\xcc\xdc\xa2\xc2\xce\x89\xa2\xbb\x94\xb8\xcc\x8e\xb3\ +\xcc\x7a\x9c\xb4\x57\x77\x82\x3d\x4f\x59\x36\x3b\x3e\x3b\x43\x46\ +\x41\x4d\x52\x40\x54\x58\x3a\x44\x48\x32\x3d\x3c\x37\x43\x44\x3e\ +\x43\x45\x37\x42\x49\x3d\x43\x49\x39\x4b\x51\x39\x47\x48\x39\x40\ +\x43\x33\x3a\x39\x33\x3c\x3c\x3a\x43\x47\x3d\x43\x48\x3c\x43\x4d\ +\x3c\x41\x49\x36\x3f\x40\x3d\x40\x42\x40\x45\x47\x42\x4a\x4e\x41\ +\x46\x4c\x39\x3d\x41\x37\x40\x3f\x3c\x42\x45\x3b\x40\x49\x36\x3d\ +\x3e\x3c\x3e\x43\x3a\x3c\x3d\x30\x38\x35\x33\x3d\x3e\x38\x46\x48\ +\x42\x4d\x51\x3c\x44\x4a\x3e\x48\x4c\x40\x4c\x51\x42\x49\x4f\x3b\ +\x41\x46\x37\x42\x46\x3a\x41\x46\x3f\x4b\x4e\x3e\x47\x43\x38\x45\ +\x45\x41\x47\x4b\x3e\x4a\x4e\x3f\x49\x50\x3b\x43\x44\x3c\x41\x40\ +\x3b\x44\x46\x40\x4b\x4b\x41\x49\x4c\x3e\x48\x4d\x43\x48\x52\x41\ +\x4c\x54\x3b\x46\x46\x3b\x45\x48\x40\x48\x4d\x40\x4e\x5a\x3c\x4a\ +\x53\x3b\x43\x47\x39\x45\x4b\x37\x3f\x41\x32\x3e\x3c\x3a\x40\x43\ +\x3a\x44\x45\x40\x47\x48\x3f\x45\x46\x44\x47\x4c\x41\x4d\x52\x43\ +\x50\x55\x42\x4e\x51\x44\x4e\x4e\x48\x55\x5b\x4c\x56\x60\x47\x50\ +\x57\x4a\x53\x5b\x4f\x57\x5e\x4f\x56\x57\x49\x57\x5d\x4b\x5a\x64\ +\x52\x5d\x6a\x54\x5e\x67\x00\x00\x00\x8c\xb2\xd4\x84\xb1\xd3\x81\ +\xb4\xd5\x82\xb3\xd3\x89\xba\xd7\x8d\xbb\xd7\x96\xbf\xdf\x9b\xc0\ +\xe4\x96\xbf\xe0\x90\xbd\xdb\x8c\xbe\xdb\x89\xbd\xdd\x8e\xbe\xe2\ +\x8e\xbb\xe0\x8a\xbc\xde\x88\xbd\xdd\x89\xbc\xdc\x8d\xbf\xdf\x8d\ +\xbe\xde\x90\xc0\xe0\x8f\xbe\xdd\x90\xc0\xdb\x95\xc1\xdd\x9c\xc3\ +\xe0\x9c\xc5\xe1\x96\xc3\xdd\x91\xc2\xda\x7f\xb1\xcd\x7a\xb2\xd1\ +\x82\xba\xda\x8e\xbe\xde\x94\xc2\xe0\x98\xc3\xdf\x96\xc4\xe0\x93\ +\xc4\xde\x93\xc3\xe0\x91\xbe\xdd\x81\xad\xd4\x61\x8e\xc1\x47\x74\ +\xae\x43\x6f\xab\x4a\x70\xad\x45\x67\xa6\x3d\x60\xa0\x37\x59\x9b\ +\x32\x53\x91\x2d\x51\x8b\x2e\x54\x91\x30\x58\x99\x2f\x58\x94\x2c\ +\x53\x8a\x2d\x4f\x84\x2c\x48\x7b\x2d\x45\x73\x2e\x46\x73\x2f\x4a\ +\x78\x35\x54\x82\x3c\x5b\x8b\x3f\x5d\x90\x41\x64\x97\x4e\x75\xac\ +\x52\x79\xb3\x55\x7d\xb6\x58\x7f\xba\x54\x77\xb6\x55\x72\xb5\x53\ +\x6d\xae\x4e\x6c\xaa\x6e\x8e\xb9\x69\x87\x92\x5e\x72\x83\x9c\xb1\ +\xce\x89\xa9\xd4\x95\xa9\xb3\x8b\xaa\xc4\x91\xb7\xd0\x91\xb9\xd1\ +\x91\xb6\xcb\x70\x94\xa5\x48\x64\x68\x33\x3e\x44\x39\x3f\x40\x3f\ +\x4a\x54\x34\x41\x46\x39\x47\x4c\x37\x46\x4b\x35\x3a\x3c\x38\x40\ +\x42\x39\x40\x46\x31\x3c\x3b\x37\x3f\x3f\x3e\x41\x46\x36\x40\x40\ +\x36\x3c\x3c\x34\x39\x39\x34\x39\x38\x39\x43\x47\x38\x3f\x3f\x3c\ +\x46\x43\x3f\x49\x4d\x3f\x4b\x4e\x3b\x3f\x45\x3b\x3d\x40\x3e\x43\ +\x46\x47\x50\x54\x3a\x41\x3d\x39\x3d\x3e\x37\x45\x46\x43\x4a\x4b\ +\x3e\x47\x49\x3f\x4a\x4d\x3d\x47\x45\x35\x3f\x3f\x36\x3a\x3b\x3b\ +\x3f\x3f\x40\x43\x47\x39\x41\x43\x33\x3f\x3f\x35\x41\x3e\x3c\x45\ +\x42\x39\x42\x47\x38\x42\x46\x3b\x3f\x41\x36\x40\x41\x3c\x3e\x44\ +\x37\x41\x3d\x33\x3e\x3d\x35\x3e\x3d\x38\x3d\x3f\x39\x3c\x3e\x37\ +\x3d\x41\x34\x3f\x40\x37\x41\x40\x3c\x42\x47\x3d\x42\x47\x40\x46\ +\x48\x41\x4d\x52\x46\x50\x55\x4d\x55\x5e\x48\x53\x5a\x47\x4e\x51\ +\x3b\x46\x4b\x38\x44\x47\x3b\x45\x46\x3d\x48\x50\x3e\x48\x4e\x3e\ +\x42\x44\x40\x48\x4a\x45\x4f\x51\x47\x52\x5a\x48\x53\x5b\x46\x55\ +\x57\x4d\x59\x5d\x4c\x58\x61\x4e\x52\x5b\x49\x53\x58\x4d\x5a\x5e\ +\x51\x5b\x62\x4c\x54\x5c\x50\x5c\x68\x56\x62\x6d\x5f\x69\x75\x6a\ +\x7d\x83\x00\x00\x00\x72\x96\xb7\x87\xae\xd0\x88\xb4\xd5\x86\xb6\ +\xd5\x8a\xbd\xda\x8f\xc1\xdb\x91\xbf\xdb\x92\xba\xd8\x90\xb9\xd6\ +\x8e\xbd\xd8\x89\xbe\xd9\x8c\xbf\xdd\x8f\xbd\xdf\x8b\xba\xdd\x85\ +\xbb\xdb\x86\xbe\xdc\x88\xbe\xdb\x8b\xc0\xdc\x8d\xbf\xdd\x8e\xbe\ +\xdc\x8b\xb8\xd4\x8e\xb5\xcd\x99\xb9\xd1\x9e\xbc\xd6\x9c\xc0\xdb\ +\x93\xbf\xd8\x90\xc2\xd9\x87\xbb\xd7\x77\xaf\xd0\x7c\xb3\xd8\x8a\ +\xbe\xe0\x91\xc2\xe1\x92\xc2\xdf\x92\xc1\xdf\x92\xc0\xdf\x91\xc0\ +\xe0\x8a\xba\xda\x84\xb7\xda\x7c\xb0\xd7\x7b\xb0\xdb\x7e\xae\xdb\ +\x7e\xa5\xd6\x7a\x9f\xd4\x77\x9d\xd4\x77\x9c\xd6\x6d\x96\xcd\x64\ +\x90\xc4\x5e\x8c\xc0\x5f\x8d\xc5\x5f\x8c\xc1\x57\x80\xb2\x3f\x61\ +\x90\x1e\x35\x5f\x12\x26\x4b\x11\x27\x4c\x11\x2a\x50\x1c\x36\x5e\ +\x3a\x54\x7f\x49\x6a\x95\x45\x6d\x9b\x42\x6d\xa3\x3e\x68\xa2\x39\ +\x61\x9d\x36\x5e\xa0\x38\x5c\xa5\x3e\x5d\xa8\x41\x5d\xa6\x3c\x5c\ +\xa2\x39\x5f\xa1\x3f\x65\xa4\x79\x98\xb5\x86\x9f\xa2\x8b\x99\xb2\ +\x8c\xa1\xab\x47\x59\x68\x6b\x83\x9d\x94\xba\xd2\x9c\xc4\xdb\x97\ +\xbd\xd5\x7a\xa4\xb9\x3b\x55\x66\x3b\x4e\x55\x55\x6f\x75\x6c\x87\ +\x90\x5b\x76\x7b\x34\x46\x48\x31\x3a\x37\x30\x39\x38\x33\x3a\x3f\ +\x36\x44\x4b\x3c\x48\x4f\x2f\x38\x3e\x31\x34\x32\x2d\x33\x32\x33\ +\x3a\x3b\x3f\x4b\x4e\x3c\x4c\x50\x3b\x42\x42\x3b\x42\x40\x3c\x3d\ +\x41\x35\x38\x3b\x34\x3a\x3f\x35\x38\x3e\x36\x3a\x3d\x36\x3b\x3c\ +\x34\x3b\x40\x36\x40\x3e\x38\x40\x43\x3d\x44\x4b\x38\x42\x42\x38\ +\x41\x41\x3d\x47\x46\x38\x40\x43\x3e\x48\x48\x41\x4c\x4e\x3f\x46\ +\x46\x3d\x48\x46\x41\x4d\x55\x44\x4f\x54\x47\x4f\x52\x40\x48\x4b\ +\x41\x49\x4a\x3f\x44\x46\x40\x4a\x4d\x41\x4f\x50\x3e\x46\x47\x40\ +\x48\x4a\x43\x4f\x54\x3f\x4d\x4d\x3f\x48\x4d\x3f\x46\x4a\x3c\x4b\ +\x4e\x3d\x4b\x4e\x42\x4c\x4f\x41\x4c\x4e\x41\x4f\x53\x46\x53\x59\ +\x4a\x4f\x55\x48\x4a\x51\x3a\x44\x48\x3d\x45\x46\x3d\x4c\x4a\x41\ +\x4c\x54\x44\x4d\x52\x40\x49\x54\x3f\x49\x4e\x39\x45\x47\x41\x4b\ +\x4d\x41\x4d\x52\x3e\x47\x4a\x41\x4e\x4c\x44\x53\x57\x48\x55\x58\ +\x51\x59\x67\x56\x5e\x68\x55\x5c\x65\x55\x5f\x66\x53\x5b\x64\x59\ +\x64\x6d\x57\x69\x75\x68\x7c\x83\x9e\xb8\xb7\xb2\xcc\xd7\x00\x00\ +\x00\x36\x5b\x75\x7a\x9f\xba\x8e\xb7\xd6\x8f\xbe\xdc\x8b\xbf\xdd\ +\x8b\xba\xd4\x85\xaf\xc5\x7a\xa1\xb7\x7f\xaa\xc1\x86\xb5\xcd\x89\ +\xba\xd2\x8e\xba\xd5\x8f\xba\xd6\x8b\xba\xd8\x88\xbb\xda\x89\xbe\ +\xd7\x8d\xbf\xd7\x8e\xbf\xd9\x8f\xc0\xde\x8b\xba\xd9\x69\x94\xaf\ +\x2e\x50\x67\x32\x4f\x67\x50\x6b\x84\x77\x97\xb0\x8d\xb7\xd0\x8d\ +\xbe\xd8\x89\xbe\xdd\x82\xb9\xde\x82\xb8\xe0\x85\xba\xde\x88\xbd\ +\xdf\x88\xbc\xdc\x8c\xbd\xde\x8e\xbc\xdd\x8c\xba\xde\x84\xb6\xdb\ +\x81\xb9\xdb\x85\xbd\xdd\x86\xbc\xdb\x89\xb9\xd9\x86\xb1\xd4\x81\ +\xad\xd3\x82\xaf\xd9\x84\xb1\xdc\x83\xb6\xdc\x80\xb7\xdb\x7f\xb7\ +\xdc\x81\xb8\xde\x84\xb7\xdd\x7f\xab\xd1\x6a\x8d\xaf\x1b\x36\x53\ +\x3a\x55\x70\x60\x7b\x9b\x58\x74\x96\x35\x51\x72\x18\x33\x50\x3a\ +\x59\x73\x6b\x92\xb2\x76\xa2\xca\x7d\xa9\xd5\x7e\xa7\xd7\x78\xa2\ +\xd8\x6f\x9c\xd6\x74\x9d\xd5\x71\x96\xd0\x64\x8c\xc5\x5b\x85\xbd\ +\x5c\x84\xb9\x5c\x83\xb8\x77\x9b\xc7\xba\xd3\xdb\xa6\xc5\xce\x4c\ +\x6c\x71\x68\x85\x98\x8b\xad\xca\x98\xbe\xd8\x95\xb8\xd0\x98\xbe\ +\xd6\x8d\xb4\xc8\x8f\xb7\xca\x97\xbe\xd9\xa9\xcd\xe5\xaa\xcc\xe2\ +\x86\xae\xba\x73\x95\x9f\x3b\x50\x53\x32\x41\x42\x2f\x3f\x42\x2f\ +\x35\x34\x29\x30\x32\x30\x3c\x3b\x32\x43\x46\x32\x3b\x3c\x39\x3e\ +\x43\x3d\x3e\x41\x34\x39\x3c\x35\x3b\x40\x3b\x43\x43\x37\x3f\x39\ +\x3d\x48\x4a\x43\x4a\x4d\x3a\x41\x44\x35\x3e\x40\x3c\x42\x48\x36\ +\x42\x40\x35\x46\x47\x3b\x49\x4b\x3a\x44\x47\x3c\x45\x46\x40\x49\ +\x52\x3e\x49\x52\x41\x4a\x4d\x3d\x46\x49\x42\x4c\x52\x4c\x57\x5f\ +\x42\x48\x4d\x3c\x42\x45\x39\x44\x42\x3f\x48\x4b\x3c\x45\x44\x42\ +\x46\x46\x43\x4b\x4f\x42\x4c\x50\x3c\x40\x41\x33\x3a\x3e\x3e\x41\ +\x46\x37\x40\x40\x3f\x42\x49\x44\x4d\x51\x42\x4e\x51\x3f\x4a\x50\ +\x49\x54\x56\x55\x5c\x63\x4a\x51\x55\x45\x4b\x4d\x3c\x43\x43\x3f\ +\x41\x43\x43\x49\x4b\x48\x53\x5c\x3f\x4d\x4f\x3f\x46\x4b\x3d\x4b\ +\x4a\x46\x52\x5a\x4c\x55\x5a\x47\x59\x5e\x4c\x59\x63\x4a\x54\x60\ +\x47\x54\x5a\x51\x5d\x65\x4b\x56\x57\x47\x51\x58\x4a\x53\x58\x4a\ +\x54\x5a\x51\x5f\x62\x5c\x66\x72\x60\x6c\x75\x75\x8c\x90\xa2\xba\ +\xb8\xb6\xca\xd3\x9e\xb7\xd0\x85\xa4\xc5\x00\x00\x00\x48\x6c\x83\ +\x50\x72\x89\x8c\xb1\xcd\x8e\xba\xda\x8f\xbd\xdd\x7a\xa2\xbd\x28\ +\x48\x5f\x1d\x3c\x51\x35\x58\x70\x40\x66\x80\x59\x7f\x96\x4d\x6d\ +\x83\x44\x67\x7d\x4c\x77\x90\x65\x93\xae\x81\xac\xc6\x90\xb9\xd3\ +\x92\xba\xd8\x8f\xba\xda\x82\xaf\xd0\x5c\x89\xa5\x26\x4c\x64\x6e\ +\x8c\xa6\x6b\x83\x9e\x2d\x49\x60\x63\x8b\xa2\x8d\xbe\xdb\x8c\xc0\ +\xe3\x88\xc0\xe4\x83\xb8\xde\x83\xb7\xda\x85\xb7\xd8\x85\xb5\xd6\ +\x86\xb4\xd6\x8d\xb8\xda\x8c\xb7\xdd\x86\xb7\xdc\x83\xbb\xdd\x83\ +\xba\xd9\x85\xb9\xd4\x88\xb8\xd3\x8a\xb8\xd5\x87\xb7\xd7\x83\xb6\ +\xd7\x84\xb6\xd9\x85\xba\xd9\x88\xbd\xdc\x8a\xbe\xde\x8f\xc2\xe3\ +\x90\xc1\xe3\x92\xbd\xde\x8c\xaf\xcb\x35\x55\x6c\x57\x78\x8e\x8a\ +\xac\xc8\x91\xb4\xd4\x88\xa6\xc3\x57\x6f\x87\x13\x2b\x3d\x5b\x7b\ +\x91\x8d\xb3\xd2\x94\xbe\xe0\x92\xbd\xe1\x8e\xba\xe1\x8a\xbb\xdf\ +\x8a\xbb\xdd\x8c\xb9\xdf\x8b\xb8\xdf\x89\xb6\xdd\x88\xb5\xd8\x89\ +\xb2\xd8\x87\xb2\xd9\x8b\xb3\xdb\xc0\xd5\xe1\xb2\xcd\xde\xb1\xd2\ +\xe0\x9f\xc1\xcf\x88\xac\xba\x76\x98\xa3\x93\xb4\xc9\x9f\xbe\xd5\ +\x99\xbe\xd5\x93\xbc\xda\x94\xc0\xda\x99\xc2\xd7\x92\xb7\xd1\x84\ +\xa5\xbd\x56\x75\x86\x47\x63\x75\x43\x61\x76\x4b\x64\x6e\x3f\x52\ +\x5b\x3d\x4b\x56\x3e\x48\x50\x36\x41\x46\x3b\x44\x42\x39\x3c\x3d\ +\x36\x3e\x3d\x3d\x4a\x4b\x3e\x46\x48\x3d\x41\x43\x3d\x44\x48\x39\ +\x40\x42\x3a\x41\x3f\x3b\x4a\x4b\x45\x4c\x54\x43\x4a\x4d\x3e\x4c\ +\x50\x43\x48\x47\x3e\x45\x49\x3c\x49\x4a\x41\x47\x50\x47\x4e\x5b\ +\x45\x4c\x51\x46\x4b\x50\x44\x4e\x4f\x3d\x44\x42\x3b\x42\x44\x43\ +\x50\x4f\x43\x4c\x4f\x45\x4e\x54\x3c\x43\x47\x3d\x43\x48\x36\x3c\ +\x3b\x3c\x44\x46\x3c\x41\x40\x37\x3c\x40\x3f\x47\x47\x3d\x49\x48\ +\x3c\x46\x46\x41\x49\x4a\x48\x4d\x53\x46\x55\x5e\x4a\x52\x5a\x4a\ +\x4f\x51\x41\x4a\x4d\x3f\x47\x48\x3e\x48\x4c\x40\x47\x4c\x40\x47\ +\x4b\x40\x46\x4a\x3f\x4c\x49\x45\x50\x5a\x47\x50\x56\x43\x51\x4e\ +\x42\x52\x51\x46\x56\x5e\x4e\x5c\x64\x51\x59\x63\x49\x56\x5a\x4b\ +\x58\x59\x4b\x57\x5c\x54\x5f\x68\x4f\x5c\x66\x59\x65\x6e\x5b\x72\ +\x7c\x6c\x85\x89\xa1\xbb\xb9\xb2\xcb\xda\xa0\xb7\xd3\x99\xad\xce\ +\x90\xa5\xc7\x85\x9f\xc2\x00\x00\x00\x7d\xa5\xbc\x37\x5b\x72\x67\ +\x8c\xa9\x8b\xb6\xd6\x8b\xb5\xd7\x77\x9c\xbb\x2a\x48\x67\x24\x3d\ +\x59\x5e\x7b\x96\x64\x84\x9f\x2f\x4c\x64\x0e\x26\x3b\x14\x31\x44\ +\x4c\x72\x89\x63\x89\xa6\x4e\x72\x90\x47\x69\x86\x63\x82\x9f\x80\ +\xa0\xbd\x7d\xa2\xc1\x73\x9d\xb8\x4b\x72\x8b\x38\x58\x72\x62\x79\ +\x95\x1e\x39\x52\x62\x89\xa2\x8c\xbb\xdb\x91\xc1\xe5\x85\xbc\xe0\ +\x7e\xb7\xda\x7c\xb0\xd1\x7a\xa5\xc3\x6b\x91\xb0\x71\x95\xb3\x85\ +\xa8\xc7\x8d\xb0\xd2\x87\xae\xd0\x81\xad\xcc\x7e\xa9\xc4\x7e\xa9\ +\xc2\x86\xae\xc8\x8a\xb3\xcd\x88\xb5\xd2\x8a\xb9\xd6\x89\xb7\xd7\ +\x8e\xbc\xdc\x90\xbc\xdb\x96\xbd\xdc\x96\xbd\xdc\x96\xbf\xdf\x99\ +\xbf\xdc\x99\xba\xd2\x78\x97\xa8\x28\x4b\x5c\x78\x9e\xb4\x97\xbd\ +\xd6\x90\xb0\xc6\x52\x67\x7b\x0c\x1e\x30\x5c\x76\x8e\x9e\xbe\xdc\ +\x9c\xc2\xe2\x99\xc2\xe3\x93\xc0\xe0\x8f\xbe\xdc\x8c\xbc\xd8\x8e\ +\xbd\xdd\x8d\xbb\xdd\x90\xbf\xde\x91\xc0\xde\x91\xbf\xdd\x8f\xbd\ +\xdb\x8b\xb7\xd7\x95\xbb\xd7\x8d\xa7\xaa\x9e\xb7\xcb\xc5\xdf\xf1\ +\xc2\xdf\xee\xbc\xda\xea\xb1\xd4\xe4\xa3\xc5\xd7\xa0\xc7\xd8\x9a\ +\xc3\xd7\x9d\xc5\xde\x99\xc1\xd6\x80\xa8\xbd\x6b\x95\xa9\x6a\x92\ +\xb0\x56\x7e\x99\x3c\x56\x6e\x3e\x56\x62\x4d\x63\x77\x42\x52\x5c\ +\x3c\x3e\x45\x36\x3a\x3d\x31\x3f\x3e\x38\x3f\x3d\x35\x41\x40\x35\ +\x3f\x40\x36\x3f\x3f\x37\x3c\x3b\x31\x3b\x35\x37\x40\x3e\x3c\x42\ +\x3f\x37\x44\x44\x39\x41\x3e\x36\x40\x3f\x36\x42\x3f\x3d\x44\x46\ +\x44\x4c\x4c\x3f\x4a\x49\x3c\x42\x42\x36\x3d\x40\x3c\x44\x45\x40\ +\x47\x46\x42\x47\x4c\x3e\x46\x45\x42\x49\x4c\x46\x4b\x53\x3d\x4a\ +\x53\x36\x3f\x43\x34\x3c\x37\x33\x3b\x3b\x38\x41\x45\x3f\x43\x4a\ +\x3c\x44\x46\x3b\x41\x48\x3b\x49\x4e\x3e\x48\x49\x44\x4c\x50\x46\ +\x4f\x50\x4b\x53\x57\x40\x48\x4a\x3b\x42\x3b\x36\x44\x40\x42\x4a\ +\x4a\x40\x49\x4b\x49\x4f\x51\x45\x4f\x52\x41\x4c\x4c\x43\x50\x55\ +\x47\x53\x5c\x46\x54\x58\x4e\x55\x5c\x4f\x5d\x64\x53\x5d\x65\x51\ +\x5a\x5f\x53\x5e\x61\x51\x5b\x62\x49\x59\x60\x54\x5f\x68\x57\x60\ +\x6d\x58\x69\x70\x58\x67\x6b\x6a\x7e\x86\xa2\xbb\xbc\xbe\xd5\xde\ +\x98\xb4\xd1\x91\xb0\xcf\x93\xae\xcf\x95\xaa\xcd\x92\xa4\xc9\x8f\ +\xa4\xc9\x00\x00\x00\x84\xb3\xd0\x81\xab\xc7\x7e\xa9\xc8\x89\xb8\ +\xd8\x8c\xb8\xda\x8a\xb1\xd5\x76\x99\xbd\x43\x62\x82\x20\x41\x5c\ +\x3d\x5f\x79\x59\x78\x93\x42\x5d\x77\x2f\x50\x65\x31\x58\x6f\x64\ +\x8b\xa6\x80\xa6\xc3\x76\x99\xb7\x4a\x65\x80\x21\x39\x51\x2e\x49\ +\x61\x3c\x5a\x74\x42\x61\x7e\x20\x3f\x5a\x19\x32\x4d\x3d\x58\x75\ +\x86\xab\xc8\x91\xbc\xdb\x91\xbe\xe0\x85\xba\xde\x7c\xb6\xd9\x7a\ +\xad\xce\x53\x79\x93\x13\x30\x48\x1b\x34\x50\x29\x44\x61\x36\x51\ +\x70\x47\x62\x7f\x32\x4b\x61\x1d\x33\x49\x26\x3d\x55\x3a\x56\x71\ +\x56\x74\x8c\x74\x96\xab\x8f\xb5\xce\x8f\xb8\xd6\x90\xb6\xd6\x8c\ +\xae\xca\x7c\x9b\xb3\x87\xa8\xbe\x93\xb7\xcd\x97\xb6\xcc\x99\xb4\ +\xc7\x97\xb2\xc4\x85\xa2\xba\x57\x7d\x93\x90\xb7\xcb\x85\xa4\xb5\ +\x2a\x40\x4e\x09\x1d\x30\x76\x90\xaa\x9b\xbb\xd9\x95\xbb\xd8\x96\ +\xbf\xd8\x96\xbe\xda\x98\xc1\xde\x96\xc1\xdf\x94\xc2\xe1\x97\xc5\ +\xe3\x97\xc2\xdf\x96\xc1\xde\x93\xc1\xde\x90\xbe\xdd\x8e\xbb\xd9\ +\x8d\xb7\xd9\x8b\xb6\xd7\x95\xb6\xbe\x7d\x97\xa3\xb5\xcb\xe3\xca\ +\xe3\xf2\xc7\xe1\xf0\xbd\xdc\xe9\xb7\xd6\xe6\xb3\xd2\xe2\xa6\xc8\ +\xdc\x92\xb5\xcb\x8f\xb4\xcf\x8c\xad\xca\x6f\x90\xb0\x55\x72\x8d\ +\x33\x48\x4e\x39\x49\x50\x36\x48\x52\x37\x48\x4e\x36\x3f\x44\x39\ +\x45\x48\x38\x42\x42\x39\x40\x44\x37\x3e\x40\x30\x3b\x38\x3b\x41\ +\x46\x3d\x40\x41\x36\x48\x48\x3d\x48\x47\x39\x43\x45\x3d\x48\x4b\ +\x3d\x44\x4a\x38\x44\x47\x3b\x49\x4d\x3a\x43\x48\x3e\x43\x45\x34\ +\x3e\x3d\x3d\x41\x43\x40\x48\x4b\x41\x4c\x4e\x3c\x45\x42\x3c\x41\ +\x3f\x36\x39\x37\x35\x3a\x38\x2f\x36\x34\x32\x37\x3a\x36\x3a\x39\ +\x33\x3c\x3d\x39\x42\x3f\x41\x44\x48\x3f\x45\x44\x3a\x44\x43\x3e\ +\x4b\x4e\x4b\x4f\x55\x45\x53\x57\x4d\x50\x58\x40\x43\x47\x3c\x43\ +\x3e\x39\x44\x40\x3e\x47\x44\x3f\x48\x49\x42\x4e\x50\x44\x4c\x4b\ +\x3f\x4a\x4e\x44\x4d\x50\x4b\x51\x56\x4d\x56\x61\x47\x52\x5a\x49\ +\x50\x57\x4e\x56\x5f\x51\x5b\x61\x52\x5c\x64\x4e\x58\x5d\x4f\x53\ +\x5b\x4e\x5e\x62\x52\x60\x69\x56\x65\x6b\x61\x74\x7c\x73\x8b\x93\ +\xa1\xb7\xb8\xb9\xd1\xda\x93\xb6\xcf\x8a\xaf\xcb\x8c\xaf\xc9\x8b\ +\xac\xc9\x8e\xab\xc9\x8f\xa6\xc8\x91\xa2\xc9\x94\xa6\xca\x00\x00\ +\x00\x87\xb7\xd8\x8b\xb7\xd9\x8a\xb8\xd8\x8e\xbd\xdd\x8c\xba\xdb\ +\x8a\xb6\xd8\x89\xb2\xd6\x81\xac\xcc\x72\x9e\xbb\x6e\x97\xb4\x86\ +\xaa\xcb\x90\xb0\xd2\x86\xac\xc8\x76\xa3\xbd\x5c\x89\xa4\x7b\xa7\ +\xc4\x7f\xa4\xc3\x3c\x58\x72\x36\x4c\x61\x52\x69\x82\x2e\x49\x66\ +\x68\x86\xa5\x76\x97\xb4\x48\x66\x82\x4e\x69\x86\x8b\xac\xca\x91\ +\xba\xda\x8f\xbd\xdc\x86\xbb\xdb\x83\xbb\xdd\x7e\xae\xd1\x5c\x80\ +\x9c\x11\x2d\x45\x3e\x55\x6f\x4a\x63\x81\x6b\x86\xa3\x6c\x83\x9e\ +\x21\x33\x46\x15\x25\x37\x5e\x73\x8b\x7f\x9a\xb5\x48\x61\x76\x18\ +\x31\x41\x54\x72\x85\x8a\xab\xc6\x89\xa7\xc4\x40\x5a\x70\x18\x2f\ +\x42\x49\x65\x76\x48\x63\x73\x3b\x50\x5f\x29\x3c\x4c\x34\x4a\x5f\ +\x52\x6f\x87\x7a\x9d\xb4\x89\xac\xbe\x5c\x73\x81\x08\x17\x21\x1a\ +\x2c\x3d\x89\xa3\xbd\x93\xb1\xcc\x6e\x8c\xa2\x68\x87\x99\x8c\xac\ +\xc3\x97\xb9\xd5\x93\xb7\xd6\x8f\xb8\xd5\x91\xbc\xd8\x95\xbc\xd8\ +\x96\xba\xd6\x95\xba\xd5\x8f\xbb\xd6\x94\xbe\xdc\x8f\xb5\xd7\x82\ +\xa9\xca\x80\xaa\xc9\x8e\xb4\xc9\x82\x9c\xa1\x94\xaf\xc9\xc3\xda\ +\xef\xc8\xe2\xf0\xc3\xe0\xee\xbc\xdd\xed\xba\xda\xeb\xa5\xcd\xde\ +\x9a\xc3\xd7\x8e\xb6\xcd\x52\x71\x81\x46\x5c\x71\x3a\x48\x4c\x3c\ +\x3e\x43\x3a\x3d\x3f\x33\x3f\x42\x3a\x49\x4f\x39\x44\x4a\x36\x3e\ +\x3b\x35\x3c\x3c\x33\x3e\x41\x36\x43\x46\x38\x3f\x43\x3d\x43\x44\ +\x40\x46\x4c\x41\x48\x4c\x42\x48\x4c\x46\x4f\x56\x41\x42\x46\x3a\ +\x3e\x41\x37\x3c\x3d\x36\x3d\x40\x35\x3c\x3c\x35\x3e\x3d\x3a\x42\ +\x44\x3b\x44\x44\x36\x3e\x3b\x39\x39\x3a\x37\x3d\x3c\x39\x3e\x41\ +\x39\x3e\x3d\x39\x42\x3e\x3b\x46\x4b\x41\x46\x4d\x41\x4c\x4d\x41\ +\x49\x4e\x40\x4b\x4d\x44\x4e\x52\x4c\x58\x5e\x4f\x58\x5b\x4c\x4e\ +\x55\x41\x46\x4b\x37\x41\x3c\x36\x42\x3e\x3f\x44\x41\x3f\x48\x48\ +\x40\x47\x49\x43\x4e\x54\x46\x50\x56\x45\x4e\x51\x46\x50\x54\x43\ +\x4a\x50\x47\x50\x54\x4b\x54\x5c\x47\x4f\x53\x48\x55\x57\x4e\x58\ +\x5d\x54\x53\x5d\x50\x57\x5f\x4f\x5c\x60\x54\x60\x5e\x5b\x68\x77\ +\x5d\x73\x7b\x72\x8c\x91\x9d\xbb\xbd\xb3\xcc\xd7\x90\xb1\xce\x8b\ +\xaa\xcb\x8e\xae\xcb\x8c\xaf\xca\x8a\xab\xc7\x89\xa8\xc5\x8e\xa8\ +\xc4\x90\xa2\xc4\x8e\xa0\xc5\x92\xa7\xcd\x00\x00\x00\x89\xb7\xd9\ +\x8d\xb7\xdc\x8f\xba\xdd\x8f\xbc\xdd\x8b\xba\xda\x8a\xb9\xd9\x88\ +\xb7\xd4\x86\xb5\xd4\x87\xb6\xd6\x8e\xb7\xdb\x92\xb9\xde\x90\xb5\ +\xd8\x85\xb0\xd0\x81\xb0\xce\x81\xb0\xcd\x8a\xb2\xd3\x87\xac\xcd\ +\x4f\x6c\x89\x34\x4c\x66\x89\xa4\xc0\x6b\x88\xaa\x49\x6b\x90\x79\ +\xa1\xc1\x83\xa8\xc7\x65\x88\xa4\x62\x85\xa2\x8a\xb6\xd3\x89\xba\ +\xd8\x87\xbb\xdb\x85\xb8\xdc\x7f\xae\xd4\x7e\xa5\xc9\x6b\x8a\xaa\ +\x32\x4f\x6c\x2f\x4f\x6c\x54\x76\x96\x6f\x8d\xac\x49\x62\x7b\x1d\ +\x34\x4a\x2d\x4a\x62\x65\x87\xa2\x26\x46\x5b\x09\x26\x37\x36\x55\ +\x69\x8f\xae\xc9\x80\x9c\xb6\x23\x37\x4d\x24\x38\x48\x78\x8c\x9d\ +\x5c\x71\x82\x11\x24\x36\x18\x2d\x40\x6f\x89\x9f\x83\xa1\xbd\x76\ +\x97\xb2\x52\x6d\x81\x1c\x2c\x39\x01\x0c\x15\x1f\x31\x40\x69\x7f\ +\x9a\x90\xa7\xc3\x53\x69\x7d\x14\x2b\x39\x2c\x47\x58\x66\x83\x9b\ +\x59\x76\x90\x53\x74\x8d\x79\x9e\xb7\x84\xa6\xbf\x76\x91\xa9\x59\ +\x75\x89\x77\x9b\xb1\x86\xb1\xca\x80\xa5\xc2\x61\x7e\x99\x35\x51\ +\x67\x64\x86\x9d\x85\xac\xc5\xa1\xbc\xc2\x83\x9f\xb2\xae\xc7\xe1\ +\xc4\xde\xf0\xbf\xdf\xf0\xc2\xdf\xed\xb9\xda\xea\xb5\xd5\xe7\x9c\ +\xc2\xd4\x4c\x65\x6f\x37\x47\x52\x3a\x4a\x4e\x3a\x43\x43\x3a\x3f\ +\x3b\x36\x3b\x3c\x3a\x45\x44\x3c\x43\x42\x37\x3e\x3d\x39\x40\x46\ +\x39\x45\x4a\x38\x45\x4c\x3f\x43\x49\x3b\x43\x47\x3c\x46\x49\x3c\ +\x45\x47\x3b\x43\x45\x39\x42\x43\x37\x3c\x38\x38\x41\x40\x3b\x48\ +\x4e\x3a\x48\x4e\x3c\x45\x46\x3e\x49\x4e\x3e\x48\x4b\x38\x3e\x3d\ +\x31\x3c\x3a\x38\x43\x44\x3b\x44\x44\x3f\x47\x4a\x3a\x46\x4a\x3d\ +\x48\x48\x3f\x4b\x4e\x3f\x4a\x4c\x41\x49\x4f\x43\x4e\x50\x44\x4e\ +\x53\x49\x53\x59\x46\x4c\x52\x44\x42\x47\x3d\x46\x45\x3d\x48\x4a\ +\x41\x49\x49\x55\x5a\x62\x48\x52\x57\x45\x4b\x4d\x48\x51\x57\x4b\ +\x4f\x56\x43\x4f\x4f\x45\x4e\x50\x46\x53\x58\x49\x57\x5b\x58\x62\ +\x6b\x51\x58\x61\x4c\x53\x59\x50\x5a\x64\x4d\x55\x61\x50\x59\x5e\ +\x56\x64\x67\x58\x67\x70\x60\x71\x79\x6d\x87\x89\x8f\xab\xad\xbf\ +\xd5\xd8\x8a\xa8\xc3\x7f\xa4\xc4\x87\xaa\xcb\x8e\xab\xcd\x92\xac\ +\xcd\x8d\xab\xcb\x86\xa7\xc6\x86\xa5\xc6\x8c\xa4\xc5\x8d\xa1\xc5\ +\x8c\xa2\xc6\x91\xac\xd0\x00\x00\x00\x82\xb0\xd2\x89\xb2\xd8\x91\ +\xb7\xda\x8f\xb8\xd8\x89\xb7\xd6\x85\xb4\xd4\x82\xb0\xcd\x85\xb3\ +\xd2\x87\xb4\xd8\x8b\xb7\xdc\x89\xb3\xda\x89\xb2\xd8\x81\xaf\xd2\ +\x7d\xad\xcc\x86\xb0\xd1\x92\xb5\xda\x8d\xad\xd6\x7b\x9d\xc0\x49\ +\x68\x8a\x3d\x5e\x80\x5e\x83\xa8\x48\x6f\x94\x7d\xa8\xc7\x82\xac\ +\xc9\x7c\xa4\xbe\x31\x5a\x73\x79\xaa\xc2\x7f\xb5\xd2\x83\xb9\xda\ +\x81\xb6\xda\x7e\xb2\xd7\x83\xae\xd7\x80\xa5\xcb\x7c\xa1\xc3\x7a\ +\xa1\xc1\x7e\xa8\xcb\x80\xaa\xcd\x7f\xa6\xc6\x75\x9b\xb7\x69\x91\ +\xac\x7a\xa6\xc1\x6d\x9a\xb6\x6c\x96\xb0\x86\xac\xc8\x90\xb2\xce\ +\x94\xb1\xcb\x78\x90\xa7\x2d\x44\x58\x23\x3b\x4d\x2c\x47\x5a\x44\ +\x62\x79\x4a\x69\x83\x40\x60\x79\x74\x97\xb3\x86\xaa\xc4\x6c\x87\ +\x9c\x14\x24\x31\x05\x13\x1d\x28\x40\x50\x60\x7b\x92\x6a\x85\x9e\ +\x46\x61\x74\x1d\x36\x45\x29\x44\x56\x37\x55\x6b\x2b\x48\x60\x16\ +\x36\x4c\x27\x4a\x5f\x51\x6f\x84\x3d\x54\x66\x16\x2d\x3d\x22\x40\ +\x53\x43\x6a\x7f\x6e\x91\xa9\x49\x61\x76\x15\x28\x39\x2c\x47\x58\ +\x76\x97\xad\x81\xa0\xb9\x70\x86\x96\x7e\x99\xa1\x94\xaf\xca\xbf\ +\xd9\xee\xc4\xde\xf0\xc3\xdf\xef\xbd\xdb\xec\xb3\xd7\xe7\x7e\x9d\ +\xab\x47\x5d\x6c\x3f\x56\x5c\x3a\x47\x48\x38\x46\x48\x3e\x44\x44\ +\x35\x3a\x3a\x37\x3d\x3c\x38\x42\x44\x3a\x42\x47\x3d\x42\x46\x37\ +\x3e\x3f\x3b\x42\x40\x3b\x42\x3d\x38\x3e\x3e\x39\x40\x41\x3d\x44\ +\x4b\x38\x3f\x41\x3e\x41\x42\x3e\x42\x45\x3d\x45\x47\x38\x44\x46\ +\x3e\x48\x4c\x3d\x46\x4f\x3c\x44\x42\x3d\x49\x4b\x3d\x4c\x53\x43\ +\x51\x5a\x41\x4e\x54\x40\x4c\x55\x41\x50\x52\x40\x4f\x52\x41\x4a\ +\x4c\x42\x4f\x50\x4a\x53\x56\x49\x52\x58\x42\x4c\x4e\x3a\x41\x4a\ +\x3a\x3a\x3e\x3b\x3f\x40\x43\x4b\x51\x4e\x59\x60\x4c\x52\x56\x4e\ +\x54\x5a\x47\x53\x57\x4c\x4f\x57\x44\x4b\x4c\x40\x4a\x45\x47\x4f\ +\x53\x4a\x51\x5a\x4a\x57\x5e\x48\x53\x5c\x49\x51\x58\x4f\x56\x5f\ +\x4e\x58\x62\x52\x5c\x65\x58\x63\x70\x5e\x6a\x74\x66\x72\x79\x76\ +\x89\x8f\xa7\xc2\xc2\x94\xad\xbd\x76\x93\xae\x76\x96\xb2\x7c\x9f\ +\xbb\x82\xa8\xc3\x88\xab\xc8\x90\xab\xca\x8e\xa8\xc9\x88\xa6\xc7\ +\x81\xa2\xc4\x87\xa5\xc6\x8a\xa2\xc5\x89\xa0\xc4\x8a\xa4\xc7\x8d\ +\xac\xcd\x00\x00\x00\x85\xad\xd1\x8a\xb0\xd4\x92\xb7\xd6\x94\xba\ +\xd7\x8d\xb6\xd5\x83\xaf\xd0\x86\xaf\xd0\x85\xb2\xd1\x81\xb1\xd2\ +\x7f\xaf\xd4\x7f\xad\xd3\x80\xad\xd3\x7c\xac\xd0\x7d\xae\xcf\x87\ +\xb0\xd1\x8f\xb1\xd6\x8d\xb0\xda\x86\xae\xd5\x7e\xa9\xce\x6d\x9a\ +\xbe\x64\x91\xb5\x73\xa0\xc0\x81\xa8\xc6\x7e\xa1\xba\x5d\x7e\x95\ +\x2e\x55\x6b\x5b\x8a\xa2\x7d\xb0\xce\x80\xb6\xd7\x7d\xb7\xd8\x7a\ +\xb2\xd5\x7e\xad\xd6\x80\xa9\xd2\x81\xaa\xcf\x80\xae\xd2\x7e\xaf\ +\xd3\x7a\xac\xcf\x7d\xac\xcd\x7c\xab\xcb\x7a\xaa\xca\x7f\xb1\xd0\ +\x7d\xb2\xd2\x82\xb5\xd5\x88\xb6\xd6\x92\xb8\xd5\x91\xb2\xcb\x8c\ +\xab\xc6\x88\xa8\xc2\x77\x99\xb1\x7e\xa2\xba\x8c\xb1\xcc\x8a\xae\ +\xcb\x80\xa4\xc2\x71\x93\xb4\x85\xa9\xc7\x74\x90\xa8\x1c\x31\x3f\ +\x24\x38\x45\x6c\x88\x98\x42\x5f\x75\x5c\x79\x92\x76\x94\xac\x74\ +\x91\xa8\x87\xa5\xbe\x94\xb5\xd0\x95\xb5\xd1\x8b\xac\xc9\x7c\xa2\ +\xbc\x5d\x80\x98\x38\x56\x6b\x17\x34\x47\x35\x57\x6d\x6e\x92\xab\ +\x4a\x6b\x85\x2d\x47\x60\x15\x2d\x44\x35\x53\x69\x54\x76\x8d\x50\ +\x6e\x86\x27\x3e\x55\x24\x3e\x53\x84\xa1\xa2\x5b\x70\x83\xa8\xc1\ +\xe1\xbe\xdd\xef\xc1\xde\xef\xbe\xdf\xef\xba\xdb\xe9\x73\x97\xa2\ +\x4e\x6c\x7b\x3f\x4c\x54\x3c\x44\x49\x3a\x46\x46\x34\x42\x45\x37\ +\x3f\x3f\x3d\x3c\x40\x3a\x3e\x41\x37\x3b\x3e\x34\x3b\x3f\x3a\x47\ +\x4b\x3b\x45\x40\x3a\x45\x42\x3f\x42\x48\x3a\x41\x44\x3c\x43\x47\ +\x3f\x44\x44\x38\x3d\x3c\x36\x3b\x3b\x3c\x43\x44\x41\x44\x4c\x3b\ +\x44\x46\x40\x4e\x52\x3e\x4c\x55\x40\x4c\x57\x40\x4c\x53\x3d\x4b\ +\x4f\x42\x50\x56\x43\x4f\x52\x40\x4e\x4f\x3f\x47\x4c\x48\x4e\x4f\ +\x4d\x4f\x55\x43\x45\x48\x35\x3c\x38\x33\x3c\x3c\x3d\x43\x44\x41\ +\x48\x4a\x43\x4a\x4c\x43\x43\x4a\x46\x4b\x4e\x4a\x54\x5a\x4a\x54\ +\x5b\x4a\x56\x5d\x50\x57\x5d\x51\x5a\x64\x50\x59\x60\x4c\x5a\x62\ +\x4d\x59\x60\x4b\x57\x60\x4d\x5b\x64\x50\x59\x63\x56\x60\x6a\x61\ +\x69\x6f\x68\x75\x7f\x73\x87\x8b\xa8\xbf\xbd\xb0\xca\xd6\x95\xb3\ +\xd1\x77\x9f\xc3\x7b\xa0\xbf\x84\xa4\xc0\x87\xa6\xc0\x85\xa6\xc1\ +\x89\xa9\xc3\x8c\xac\xc8\x88\xa8\xc7\x85\xa4\xc6\x83\xa1\xc4\x88\ +\xa3\xc5\x8a\xa3\xc3\x8a\xa3\xc3\x8f\xa8\xca\x92\xac\xce\x00\x00\ +\x00\x8f\xb5\xd6\x90\xb7\xd7\x92\xba\xd7\x92\xba\xd7\x8d\xb8\xd7\ +\x87\xb2\xd6\x87\xb1\xd5\x87\xb5\xd5\x82\xb5\xd3\x7c\xb1\xd2\x7c\ +\xb0\xd3\x7d\xaf\xd2\x80\xae\xd1\x82\xb0\xd1\x84\xaf\xd0\x87\xb2\ +\xd5\x86\xb2\xd9\x84\xb3\xdb\x7d\xae\xd2\x79\xac\xcf\x7e\xae\xcf\ +\x83\xb1\xcf\x7a\x9f\xbb\x44\x5d\x76\x2c\x42\x57\x24\x41\x55\x5a\ +\x7f\x98\x81\xab\xcc\x83\xb2\xd4\x7e\xb5\xd5\x77\xad\xcf\x79\xa8\ +\xd0\x7e\xaa\xd3\x83\xb1\xd6\x82\xb5\xd9\x80\xb5\xd7\x7d\xb2\xd2\ +\x82\xb2\xd2\x83\xb1\xd3\x82\xaf\xd1\x83\xb2\xd5\x85\xb6\xd8\x85\ +\xb6\xd8\x86\xb4\xd6\x8a\xb4\xcf\x8d\xb1\xcb\x88\xab\xc8\x81\xa9\ +\xc8\x81\xab\xc8\x8f\xb5\xd0\x91\xb7\xd3\x8c\xb2\xcf\x87\xaa\xca\ +\x87\xa7\xca\x88\xab\xcc\x88\xa5\xc2\x2d\x42\x56\x21\x36\x44\x4f\ +\x65\x77\x32\x4a\x62\x32\x4e\x68\x31\x4f\x6b\x5a\x77\x94\x8d\xaa\ +\xc9\x99\xba\xd9\x97\xb9\xdb\x95\xb8\xdd\x8f\xb4\xd8\x86\xae\xce\ +\x83\xaa\xc7\x7b\xa5\xc1\x6e\x9b\xba\x7f\xa7\xc8\x8b\xb1\xd0\x89\ +\xac\xca\x7b\xa1\xbf\x80\xaa\xc8\x82\xac\xc8\x77\x9d\xb9\x4e\x6e\ +\x87\x35\x57\x6d\x53\x80\x94\x7b\x93\x91\x4a\x62\x66\x7c\x8e\xae\ +\xb7\xd0\xec\xc0\xde\xf0\xbe\xde\xef\xb3\xd5\xe5\x67\x8d\x98\x49\ +\x61\x6c\x43\x52\x5b\x3c\x4f\x5a\x36\x45\x4c\x36\x41\x47\x34\x41\ +\x3e\x3d\x3e\x3f\x38\x3c\x3f\x3e\x40\x46\x3d\x44\x43\x3b\x3f\x3d\ +\x3f\x42\x42\x38\x3b\x3b\x36\x3d\x3b\x3b\x3f\x41\x40\x41\x41\x3a\ +\x41\x41\x41\x47\x4d\x45\x4e\x51\x3d\x44\x46\x3c\x46\x44\x40\x4b\ +\x4e\x3e\x4a\x4f\x3f\x4a\x4f\x42\x4b\x4d\x3d\x4a\x48\x3f\x4e\x50\ +\x43\x50\x52\x48\x4d\x56\x44\x4e\x53\x40\x46\x46\x3b\x40\x40\x3e\ +\x45\x45\x3b\x44\x45\x40\x4a\x4f\x41\x4e\x4e\x46\x54\x54\x46\x50\ +\x54\x42\x49\x4c\x48\x4f\x55\x48\x50\x57\x49\x50\x58\x45\x52\x51\ +\x48\x50\x52\x4e\x56\x5c\x4f\x5d\x66\x59\x6d\x78\x5a\x67\x74\x50\ +\x5b\x61\x51\x60\x68\x5c\x67\x75\x67\x76\x7e\x7a\x8e\x8b\xac\xc3\ +\xc0\xac\xc7\xd4\x92\xb4\xce\x8a\xaf\xcb\x8c\xb1\xcf\x89\xb2\xcd\ +\x8b\xb0\xca\x8e\xac\xc7\x8c\xa8\xc4\x86\xa5\xc3\x86\xa8\xc5\x87\ +\xac\xc8\x84\xa8\xc5\x84\xa4\xc2\x85\xa1\xc0\x86\xa2\xbf\x87\xa4\ +\xbe\x88\xa4\xc0\x92\xab\xcc\x9b\xaf\xd2\x00\x00\x00\x96\xbe\xde\ +\x8f\xbc\xd9\x8d\xbb\xd8\x8e\xbc\xd9\x8e\xbc\xdc\x8a\xb7\xda\x8a\ +\xb6\xdc\x8b\xb8\xd9\x88\xb8\xd7\x81\xb1\xd5\x80\xb3\xd5\x7f\xb6\ +\xd4\x84\xb5\xd3\x88\xb7\xd7\x88\xb7\xd7\x85\xb6\xd7\x86\xb7\xdc\ +\x83\xb6\xdb\x7f\xb4\xd5\x7e\xb2\xd1\x84\xb4\xd4\x84\xb4\xd3\x70\ +\x98\xb5\x25\x40\x5b\x26\x3b\x56\x23\x41\x56\x6e\x94\xac\x80\xa9\ +\xc9\x80\xaa\xcd\x70\xa0\xc2\x73\xa5\xc8\x76\xa3\xc8\x7e\xab\xd2\ +\x81\xb4\xd9\x7d\xb6\xd6\x7d\xb6\xd6\x7f\xb6\xd5\x83\xb4\xd4\x86\ +\xb2\xd5\x89\xb0\xd6\x8a\xb3\xd8\x86\xb2\xd7\x83\xb0\xd4\x81\xb0\ +\xd0\x85\xb2\xcd\x8a\xb3\xcc\x87\xaf\xcd\x80\xac\xcd\x80\xad\xcf\ +\x8d\xb5\xd5\x8d\xb4\xd4\x8a\xb1\xd1\x81\xa9\xc9\x80\xa7\xc7\x86\ +\xaa\xce\x82\xa2\xc3\x5c\x75\x8e\x0a\x1d\x2f\x14\x25\x38\x46\x5b\ +\x75\x68\x84\xa2\x45\x64\x84\x62\x80\xa1\x55\x6f\x91\x78\x96\xb4\ +\x8f\xb2\xd2\x92\xb7\xdc\x8e\xb5\xdc\x8d\xb6\xd8\x8a\xb7\xd6\x87\ +\xb6\xd7\x88\xb7\xdb\x8a\xb7\xdb\x8c\xb5\xd7\x87\xb4\xd3\x83\xb1\ +\xd3\x82\xb0\xd2\x84\xb3\xd2\x81\xb0\xce\x86\xb1\xce\x86\xb3\xcd\ +\x7f\xb2\xcb\x8c\xbc\xd4\x9c\xc5\xd6\x7b\x9c\x99\x55\x6b\x75\xa2\ +\xb7\xd2\xbc\xdc\xec\xbe\xde\xee\xbc\xda\xeb\x97\xbc\xc4\x71\x99\ +\x9f\x69\x89\x97\x33\x48\x4f\x30\x3d\x3b\x37\x3d\x43\x42\x44\x44\ +\x39\x3c\x3b\x3c\x42\x42\x3c\x41\x41\x3b\x43\x3f\x3b\x3f\x41\x3d\ +\x42\x43\x37\x42\x42\x3f\x44\x46\x3d\x41\x43\x34\x3f\x3f\x3e\x43\ +\x49\x3d\x44\x46\x3c\x43\x48\x3f\x47\x4a\x48\x48\x4d\x3f\x4a\x4c\ +\x3e\x49\x4c\x43\x4d\x4f\x46\x4e\x4e\x3c\x4c\x4a\x43\x4f\x4f\x44\ +\x4c\x4c\x38\x3f\x40\x3a\x43\x3f\x3e\x4c\x50\x44\x4d\x54\x44\x4c\ +\x51\x41\x4d\x52\x43\x4e\x4f\x4a\x50\x5a\x45\x4e\x55\x49\x4d\x52\ +\x47\x4d\x57\x45\x4e\x51\x46\x4f\x51\x48\x52\x56\x4b\x50\x57\x46\ +\x53\x56\x46\x57\x62\x4a\x61\x6e\x50\x60\x6c\x57\x61\x68\x5e\x72\ +\x79\x7a\x8f\x96\xaa\xc1\xbf\xa7\xc0\xc7\x7e\x9f\xb4\x79\x9f\xb6\ +\x83\xa9\xbc\x88\xac\xbf\x88\xac\xc3\x88\xae\xc6\x8e\xb0\xc9\x8f\ +\xad\xc6\x8c\xaa\xc6\x82\xa7\xc4\x7f\xa8\xc6\x84\xab\xc5\x83\xa5\ +\xbe\x7e\x9b\xb3\x68\x81\x9c\x78\x95\xaf\x80\x9f\xba\x89\xa4\xc0\ +\x95\xae\xcd\x9c\xb1\xd3\x00\x00\x00\x91\xbd\xdd\x8f\xbe\xdc\x8e\ +\xbe\xda\x91\xc0\xdb\x91\xbf\xde\x8d\xb9\xde\x90\xbb\xe2\x92\xbd\ +\xe1\x8b\xb9\xdb\x86\xb3\xd8\x85\xb6\xd7\x86\xb9\xd4\x8a\xbc\xd6\ +\x88\xba\xd8\x87\xba\xd8\x8a\xbc\xdc\x8a\xbc\xde\x86\xbb\xdc\x83\ +\xba\xd8\x83\xb7\xd5\x85\xb8\xd6\x87\xb8\xd8\x85\xb2\xd2\x69\x8f\ +\xaf\x4c\x6f\x8e\x61\x89\xa6\x79\xa7\xc2\x7c\xa9\xc9\x7e\xaa\xcc\ +\x5f\x8c\xae\x46\x72\x93\x75\x9e\xbf\x7e\xaa\xcc\x7f\xb1\xd3\x7e\ +\xb6\xd6\x81\xb8\xd8\x85\xba\xdb\x87\xb7\xd8\x8b\xb6\xd9\x90\xb7\ +\xdb\x90\xb9\xdd\x8f\xb9\xdb\x8c\xb6\xd8\x8b\xb7\xd7\x89\xb5\xd1\ +\x8b\xb7\xd2\x89\xb5\xd2\x85\xb3\xd4\x87\xb6\xd6\x8b\xb9\xd8\x8d\ +\xb7\xd6\x8a\xb3\xd3\x83\xac\xcc\x83\xad\xcb\x85\xaf\xd0\x7d\xa5\ +\xc7\x77\x98\xb5\x2b\x44\x59\x09\x1d\x30\x5c\x76\x8e\x66\x85\xa2\ +\x4a\x6c\x8c\x78\x9a\xb8\x7c\x99\xb6\x3c\x57\x72\x68\x86\x9f\x8f\ +\xb3\xd2\x8d\xb5\xd8\x89\xb5\xd5\x89\xb9\xd7\x8a\xbd\xdc\x86\xb8\ +\xda\x87\xb5\xd7\x8d\xb6\xd6\x8f\xb6\xd6\x8b\xb7\xd7\x86\xb2\xd4\ +\x84\xb0\xd1\x84\xb1\xd2\x84\xb4\xd3\x83\xb2\xd1\x80\xb2\xd1\x82\ +\xb4\xd3\x81\xb3\xd3\x79\xb0\xcd\x95\xbf\xce\xb8\xcf\xd2\xc7\xdc\ +\xe9\xc3\xdf\xed\xc4\xde\xef\xbd\xdd\xee\xb8\xda\xea\xa6\xc6\xd6\ +\x58\x75\x7a\x3f\x51\x4f\x3b\x48\x48\x3f\x45\x43\x3d\x44\x41\x3c\ +\x41\x3f\x3d\x41\x41\x3b\x44\x3f\x40\x44\x48\x3f\x47\x44\x37\x44\ +\x45\x3f\x47\x46\x3b\x41\x40\x3b\x44\x4a\x3e\x47\x47\x3a\x42\x3f\ +\x3c\x41\x42\x3c\x41\x44\x3d\x45\x46\x42\x47\x43\x40\x45\x46\x44\ +\x4b\x4e\x48\x4d\x52\x42\x49\x4e\x3e\x41\x3f\x3b\x3f\x3c\x3b\x43\ +\x45\x41\x48\x4c\x44\x4a\x4f\x3e\x4a\x48\x46\x4f\x53\x44\x4e\x54\ +\x48\x51\x57\x47\x52\x56\x46\x51\x58\x42\x4c\x4c\x42\x4c\x4e\x45\ +\x4c\x52\x48\x55\x5b\x49\x51\x57\x4b\x4f\x55\x4b\x55\x59\x4e\x59\ +\x5c\x5a\x5f\x6b\x63\x6f\x7c\x73\x85\x8b\xa5\xbd\xb9\x8f\xa4\xad\ +\x69\x80\x8f\x2f\x48\x57\x37\x51\x5f\x50\x6d\x79\x50\x6d\x76\x5f\ +\x7b\x87\x70\x8d\x9c\x7c\x9b\xac\x79\x94\xa6\x6b\x86\x98\x72\x91\ +\xa5\x86\xae\xc4\x86\xaf\xc7\x88\xab\xc4\x83\x9d\xb4\x5d\x71\x82\ +\x2c\x41\x52\x52\x70\x85\x74\x97\xaf\x88\xa7\xc1\x93\xaf\xcb\x99\ +\xb2\xd3\x00\x00\x00\x90\xbc\xde\x90\xbe\xdf\x92\xc0\xdf\x8f\xbf\ +\xda\x8d\xbd\xd8\x8c\xb9\xda\x8f\xba\xdf\x91\xbc\xde\x8d\xb8\xda\ +\x82\xaf\xd2\x7a\xac\xc8\x80\xb6\xce\x86\xbb\xd5\x86\xbc\xd9\x88\ +\xbf\xdc\x88\xbb\xdb\x8e\xbd\xde\x8a\xbd\xdc\x85\xbd\xd9\x85\xbd\ +\xd8\x88\xbd\xdb\x86\xba\xd8\x85\xb6\xd5\x80\xaf\xcf\x7d\xac\xcd\ +\x7b\xae\xcf\x76\xab\xcd\x79\xae\xcf\x7e\xaf\xd1\x7f\xad\xce\x55\ +\x7f\x9f\x30\x56\x73\x70\x97\xb3\x83\xb1\xcd\x86\xb6\xd5\x88\xb9\ +\xda\x88\xbc\xdd\x88\xbd\xdc\x8a\xbb\xdb\x90\xbc\xdf\x8e\xbc\xdf\ +\x8e\xbd\xdd\x90\xbc\xdc\x92\xb9\xd9\x94\xbd\xd8\x92\xbe\xd7\x90\ +\xbc\xd9\x90\xba\xda\x8f\xbc\xdc\x8c\xbb\xda\x8d\xb9\xd9\x90\xb8\ +\xd9\x8d\xb5\xd4\x8a\xb3\xd0\x87\xb3\xd4\x7e\xad\xce\x7b\xa7\xc7\ +\x6a\x8c\xa7\x1a\x38\x4f\x34\x52\x6c\x42\x65\x82\x56\x7b\x9c\x85\ +\xaa\xca\x85\xa5\xc2\x5f\x7a\x90\x20\x3a\x4c\x85\xa6\xbd\x8d\xb3\ +\xd0\x8a\xb6\xd4\x8b\xba\xda\x82\xb7\xd6\x7e\xb3\xd2\x80\xb2\xd0\ +\x87\xb4\xd2\x8d\xb5\xd4\x8d\xb5\xd6\x89\xb2\xd4\x83\xac\xcc\x87\ +\xae\xd0\x85\xb0\xd1\x81\xaf\xd0\x7f\xaf\xcf\x82\xb0\xd2\x80\xae\ +\xcf\x7a\xb0\xcd\x79\xb1\xcf\x80\xaf\xd1\x88\xad\xd3\xa1\xbe\xda\ +\xc2\xda\xe8\xc6\xe0\xee\xbe\xdc\xee\xb8\xdb\xeb\xb0\xd0\xe2\x68\ +\x86\x92\x58\x77\x84\x42\x4d\x52\x37\x41\x3f\x37\x3b\x3b\x3c\x3e\ +\x42\x3b\x42\x42\x3d\x40\x41\x3f\x42\x42\x41\x47\x46\x3c\x45\x44\ +\x3f\x47\x47\x46\x47\x4c\x43\x44\x46\x3d\x43\x40\x3f\x44\x43\x44\ +\x49\x48\x45\x4c\x4b\x42\x4a\x48\x41\x46\x4b\x42\x43\x48\x3d\x43\ +\x42\x3e\x3f\x41\x3b\x44\x45\x41\x4e\x51\x47\x50\x5a\x45\x4a\x4c\ +\x43\x4b\x4f\x45\x4d\x53\x42\x4c\x53\x43\x4f\x52\x47\x52\x55\x46\ +\x54\x58\x46\x55\x5a\x47\x51\x55\x4a\x52\x55\x4e\x59\x61\x4f\x56\ +\x5f\x48\x56\x5b\x52\x60\x65\x5e\x69\x74\x61\x6d\x71\x72\x87\x89\ +\xa8\xc0\xbd\x93\xa2\xa7\x2e\x38\x45\x0c\x1c\x2c\x17\x29\x38\x08\ +\x18\x25\x04\x12\x1d\x05\x13\x1c\x03\x13\x1a\x08\x1b\x22\x0f\x23\ +\x2d\x16\x2a\x36\x24\x36\x40\x18\x2b\x35\x2a\x46\x52\x6b\x90\x9d\ +\x86\xad\xbe\x85\xa6\xbb\x7a\x92\xa5\x3c\x4d\x59\x10\x25\x2e\x36\ +\x55\x65\x6b\x91\xa7\x8b\xad\xc9\x93\xb0\xcf\x99\xb5\xd4\x00\x00\ +\x00\x8b\xb9\xdb\x8c\xb9\xdc\x91\xbd\xdf\x8e\xbc\xd8\x89\xb6\xd3\ +\x89\xb6\xd5\x8f\xbd\xdd\x8f\xbd\xdb\x8b\xb6\xd5\x7b\xa4\xc2\x49\ +\x75\x8b\x7b\xac\xc0\x82\xba\xd1\x86\xbf\xdb\x89\xc0\xde\x87\xbf\ +\xdd\x8b\xbc\xdb\x8a\xbb\xd9\x88\xbd\xda\x87\xbc\xda\x8e\xbf\xde\ +\x8d\xbd\xdc\x88\xb9\xd7\x8a\xb9\xd9\x8c\xb9\xdc\x83\xb4\xd7\x7c\ +\xb4\xd5\x7b\xb3\xd4\x7c\xb2\xd3\x83\xb3\xd4\x82\xad\xcd\x4c\x72\ +\x90\x2b\x51\x6a\x79\xa3\xbb\x90\xbb\xd8\x8f\xbd\xdc\x8a\xbe\xdd\ +\x87\xc1\xde\x87\xbd\xdb\x8b\xbe\xde\x8b\xbe\xe0\x90\xc0\xe1\x96\ +\xc3\xe3\x96\xbf\xde\x99\xbf\xdd\x9a\xc0\xdd\x95\xbd\xda\x93\xb8\ +\xd9\x93\xbb\xdc\x92\xbe\xdd\x94\xbf\xde\x99\xbf\xe0\x97\xbd\xdc\ +\x98\xbe\xda\x92\xbd\xdb\x8a\xb8\xd7\x82\xaf\xcf\x7c\xa5\xc4\x5e\ +\x83\x9f\x17\x3b\x55\x60\x84\xa1\x85\xad\xcd\x89\xb5\xd4\x89\xb2\ +\xce\x7f\xa1\xb7\x23\x3d\x4e\x4e\x6c\x7c\x95\xb8\xd0\x91\xb9\xd9\ +\x8c\xba\xdb\x85\xb8\xd8\x80\xb7\xd5\x7f\xb5\xd2\x84\xb4\xd3\x84\ +\xb3\xd2\x83\xb1\xd4\x82\xae\xd3\x84\xac\xd0\x8b\xae\xd1\x8c\xb1\ +\xd2\x87\xb1\xd0\x81\xb1\xd0\x80\xaf\xcf\x80\xad\xcd\x7b\xae\xcc\ +\x7c\xaf\xce\x80\xab\xcc\x85\xa9\xcc\x84\xa8\xc8\x88\xb1\xcf\x9d\ +\xc1\xdb\xc9\xe0\xed\xbd\xdc\xec\xb3\xd4\xe8\x9d\xc5\xd8\xa3\xc8\ +\xdb\x72\x99\xa2\x50\x6b\x72\x37\x49\x47\x38\x3f\x44\x36\x43\x3f\ +\x3c\x49\x46\x3e\x45\x47\x40\x42\x47\x39\x41\x42\x40\x41\x42\x43\ +\x46\x47\x3c\x3f\x42\x3a\x41\x41\x3d\x41\x43\x3d\x42\x41\x3e\x40\ +\x42\x38\x41\x3c\x36\x3e\x3f\x3c\x45\x41\x3f\x49\x49\x43\x4d\x4c\ +\x43\x4b\x4c\x42\x48\x4d\x47\x53\x5a\x46\x4f\x4f\x45\x54\x57\x44\ +\x4f\x53\x43\x4d\x56\x46\x50\x57\x47\x51\x52\x48\x58\x5c\x49\x56\ +\x5d\x50\x58\x5d\x4f\x59\x61\x57\x5c\x66\x52\x5c\x62\x5b\x62\x69\ +\x64\x6e\x75\x6b\x7c\x81\x90\xa3\xa2\xb5\xce\xd5\x6e\x87\xa0\x2d\ +\x3d\x57\x0a\x17\x2b\x17\x28\x3b\x39\x50\x66\x2f\x45\x5b\x1c\x2f\ +\x43\x0c\x1c\x2a\x08\x19\x23\x11\x24\x2f\x1f\x34\x40\x07\x19\x25\ +\x04\x10\x1c\x02\x0f\x19\x05\x1b\x25\x1e\x3f\x49\x59\x7c\x89\x70\ +\x90\xa0\x67\x81\x8f\x22\x37\x40\x06\x1b\x25\x30\x4c\x5c\x79\x9b\ +\xb3\x90\xb2\xd1\x94\xb3\xd5\x99\xb8\xda\x00\x00\x00\x84\xb4\xd2\ +\x83\xb0\xcf\x8c\xb6\xd6\x8a\xb4\xd3\x87\xb2\xd2\x8c\xb6\xd4\x92\ +\xbf\xdd\x92\xbe\xdd\x91\xb8\xd8\x8b\xae\xca\x34\x57\x6a\x4d\x76\ +\x86\x83\xb4\xcb\x89\xbd\xda\x89\xbd\xdd\x87\xbd\xdd\x88\xbc\xdd\ +\x87\xba\xd8\x8a\xbb\xd9\x8d\xbc\xdd\x8f\xbb\xe0\x8f\xbd\xdf\x8e\ +\xbc\xdd\x8c\xb7\xdb\x8e\xb5\xdc\x87\xb3\xd7\x80\xb3\xd4\x7f\xb4\ +\xd5\x81\xb5\xd6\x88\xb9\xda\x8e\xbb\xdd\x89\xb1\xd3\x40\x65\x82\ +\x43\x69\x82\x89\xb0\xcc\x94\xc1\xde\x8a\xbf\xdc\x86\xbf\xdb\x84\ +\xbc\xd7\x86\xbd\xdb\x8a\xc0\xe0\x90\xc1\xe3\x96\xc4\xe4\x96\xc0\ +\xdf\x9d\xc3\xe2\x9b\xbf\xdd\x91\xb6\xd4\x8b\xb0\xd2\x95\xbd\xde\ +\x96\xc4\xe1\x94\xc3\xde\x98\xc4\xdf\x99\xc0\xdd\x9b\xc0\xdf\x96\ +\xbd\xdd\x91\xbc\xdb\x86\xb4\xd2\x7c\xab\xc9\x7c\xa8\xc5\x44\x6c\ +\x86\x42\x69\x85\x87\xb4\xce\x8b\xba\xd6\x8b\xba\xd6\x80\xab\xc3\ +\x45\x64\x74\x1f\x3a\x46\x8a\xa9\xbd\x91\xbb\xd6\x8a\xbb\xda\x8b\ +\xbc\xdc\x8a\xbc\xdb\x87\xbb\xd9\x84\xba\xd5\x82\xb5\xd1\x82\xb5\ +\xd5\x82\xb3\xd6\x84\xb2\xd3\x8e\xb3\xd4\x92\xb5\xd6\x90\xb5\xd3\ +\x87\xb5\xd0\x84\xb3\xd1\x84\xb3\xd1\x83\xb2\xd1\x80\xaf\xce\x83\ +\xae\xcf\x83\xa9\xcb\x81\xa9\xc9\x80\xad\xca\x85\xb0\xcf\x85\xac\ +\xce\xaf\xca\xde\xc3\xdd\xea\xb4\xd6\xea\xb6\xd8\xe8\xb3\xd4\xe7\ +\x93\xb9\xca\x56\x74\x80\x3a\x43\x48\x36\x3c\x3f\x39\x43\x49\x3d\ +\x43\x46\x3b\x40\x3e\x39\x40\x3e\x3d\x41\x41\x35\x40\x42\x35\x44\ +\x49\x3a\x42\x3e\x3e\x42\x3c\x3d\x45\x41\x3f\x48\x46\x41\x4b\x4d\ +\x42\x4a\x4f\x42\x4d\x54\x4a\x54\x57\x46\x54\x59\x45\x4a\x4d\x45\ +\x4f\x52\x4d\x54\x56\x45\x4d\x52\x44\x4d\x4d\x46\x4f\x52\x4a\x53\ +\x56\x4b\x53\x54\x4f\x55\x59\x48\x57\x58\x4e\x59\x5d\x56\x5e\x65\ +\x51\x5a\x60\x54\x5e\x66\x5c\x67\x6e\x6c\x7e\x84\x99\xb0\xb1\xc0\ +\xd3\xd8\xa9\xc5\xd7\x90\xaf\xcd\x72\x8f\xb2\x4f\x62\x82\x0e\x1f\ +\x36\x24\x3c\x51\x77\x96\xb1\x84\xa4\xc0\x7d\x99\xb2\x6e\x87\x9b\ +\x42\x5b\x6c\x3b\x57\x69\x5b\x79\x8b\x51\x6b\x7f\x2d\x42\x57\x1e\ +\x34\x48\x27\x42\x56\x2b\x49\x5b\x25\x44\x56\x1e\x3a\x4c\x1f\x36\ +\x46\x0d\x22\x2b\x09\x1e\x28\x40\x58\x69\x87\xa4\xbc\x94\xb1\xd2\ +\x96\xb5\xd7\x95\xb7\xd7\x00\x00\x00\x7e\xa8\xbe\x86\xac\xc3\x91\ +\xb6\xd2\x8c\xb4\xd3\x87\xb1\xcf\x88\xaf\xcb\x8d\xb2\xd0\x89\xb1\ +\xd1\x90\xb8\xd9\x8e\xb6\xd0\x6b\x90\xa3\x18\x3a\x4c\x76\x9b\xb1\ +\x8b\xb7\xd4\x8b\xbb\xdc\x8a\xbd\xde\x87\xbc\xdd\x8a\xba\xdc\x8e\ +\xba\xdd\x92\xba\xdd\x90\xb7\xd9\x8a\xb3\xd4\x86\xb5\xd5\x89\xb4\ +\xda\x8f\xb5\xdc\x87\xae\xd0\x83\xaf\xce\x81\xb0\xce\x87\xb7\xd8\ +\x90\xbd\xde\x94\xbe\xdf\x92\xba\xda\x87\xac\xc9\x31\x56\x70\x63\ +\x88\xa2\x8d\xb8\xd1\x8d\xbf\xda\x87\xbe\xdb\x82\xba\xd6\x88\xbe\ +\xdb\x8b\xc1\xe0\x90\xc0\xe1\x95\xc0\xe0\x9c\xc3\xe2\x9f\xc4\xe1\ +\x9b\xc0\xdd\x96\xbd\xda\x95\xbd\xde\x95\xc0\xdf\x93\xc2\xde\x92\ +\xc7\xde\x91\xc5\xdc\x93\xc1\xda\x93\xbd\xda\x91\xba\xda\x8e\xb8\ +\xd7\x86\xb7\xd2\x7c\xb1\xca\x76\xab\xc4\x75\xa6\xc0\x46\x75\x8e\ +\x5c\x8e\xa5\x88\xb9\xd2\x8b\xba\xd7\x86\xb1\xca\x57\x75\x86\x0d\ +\x25\x31\x72\x93\xa4\x88\xb7\xcf\x8c\xbf\xdb\x91\xc0\xde\x90\xbf\ +\xdd\x8b\xbc\xda\x87\xbd\xd8\x8a\xbb\xd8\x83\xb5\xd4\x81\xb4\xd5\ +\x88\xb7\xd7\x92\xba\xda\x97\xbb\xdb\x91\xb9\xd8\x8a\xb9\xd5\x88\ +\xb8\xd5\x88\xb7\xd6\x88\xb7\xd6\x86\xb5\xd4\x87\xb4\xd6\x87\xb1\ +\xd4\x87\xaf\xd2\x86\xb1\xd2\x82\xad\xce\x87\xad\xcf\x80\xa6\xc7\ +\x8a\xae\xce\xba\xd3\xe4\xbf\xdb\xea\xbb\xda\xec\xb4\xd5\xe6\xa8\ +\xca\xda\x95\xb6\xc4\x58\x71\x77\x3e\x4b\x51\x37\x47\x47\x37\x40\ +\x41\x3f\x44\x45\x39\x45\x42\x36\x3e\x3e\x3d\x46\x4b\x3a\x41\x44\ +\x40\x44\x43\x41\x4c\x4b\x43\x4d\x4d\x46\x51\x55\x45\x50\x52\x42\ +\x49\x4e\x42\x4b\x4b\x43\x4c\x4d\x49\x4f\x4f\x4d\x51\x59\x4a\x4f\ +\x54\x4b\x52\x57\x48\x54\x51\x49\x54\x56\x4e\x58\x5d\x4c\x57\x5a\ +\x53\x59\x5c\x52\x5b\x5c\x55\x5b\x65\x56\x5f\x6a\x5e\x68\x70\x67\ +\x75\x7a\x93\xa9\xa7\xad\xc8\xd1\x6d\x8e\xa6\x34\x59\x74\x7e\xa3\ +\xc0\x88\xaa\xcb\x82\xa0\xc0\x67\x7c\x98\x16\x27\x3a\x1a\x34\x44\ +\x7c\x9e\xb6\x86\xaa\xc5\x88\xaa\xc4\x8b\xa9\xc2\x86\xa8\xbd\x88\ +\xac\xc2\x89\xaf\xc5\x87\xac\xc4\x84\xa6\xc1\x83\xa1\xbf\x82\xa4\ +\xbf\x82\xa8\xbf\x81\xa3\xb8\x6b\x89\xa0\x48\x63\x77\x20\x37\x43\ +\x16\x2a\x35\x64\x7c\x8f\x8c\xa9\xc3\x93\xb2\xd0\x93\xb5\xd2\x94\ +\xb7\xd3\x00\x00\x00\x2c\x49\x5b\x25\x40\x54\x4f\x6e\x86\x68\x8d\ +\xa9\x7c\xa0\xbb\x4c\x6c\x84\x3e\x5d\x76\x73\x99\xb5\x8d\xba\xd7\ +\x8b\xb8\xd3\x8d\xb5\xcc\x28\x49\x5d\x47\x68\x7d\x90\xb7\xd3\x92\ +\xbd\xde\x90\xbf\xe1\x89\xb9\xdb\x8a\xb5\xd6\x89\xac\xcd\x7c\x9b\ +\xba\x5c\x79\x93\x54\x75\x8d\x7e\xa7\xc1\x83\xaf\xce\x8b\xb0\xd2\ +\x8b\xaa\xc8\x85\xa6\xbf\x86\xab\xc3\x8b\xb3\xcf\x90\xb5\xd2\x96\ +\xb8\xd6\x91\xb3\xd0\x8a\xae\xca\x77\x9c\xb7\x27\x4c\x64\x66\x8c\ +\xa3\x87\xb1\xc9\x8d\xbc\xd5\x88\xbc\xd5\x8c\xbf\xdb\x8f\xc1\xe1\ +\x94\xc4\xe3\x96\xbf\xde\x9b\xbd\xd9\x9b\xbd\xd7\x9b\xbf\xd9\x98\ +\xbf\xda\x91\xbd\xd8\x8f\xbf\xdb\x8e\xc0\xdb\x8d\xc1\xda\x8f\xc3\ +\xd8\x8d\xbf\xd4\x8a\xb9\xd2\x83\xb1\xcc\x81\xac\xc7\x82\xb2\xca\ +\x78\xae\xc4\x75\xad\xc3\x76\xaf\xc7\x7e\xb4\xcb\x5a\x8d\xa3\x5c\ +\x8e\xa5\x84\xb1\xcb\x87\xaf\xc8\x63\x7f\x91\x06\x1c\x2a\x61\x84\ +\x95\x86\xb6\xcc\x90\xc0\xda\x95\xbf\xdd\x93\xc1\xdf\x8d\xbe\xdd\ +\x89\xbc\xdb\x8b\xba\xd9\x89\xb7\xd9\x89\xb7\xd9\x92\xbc\xdd\x96\ +\xbb\xdd\x96\xbb\xdd\x91\xbc\xdc\x8c\xbc\xda\x89\xbb\xd9\x8c\xbb\ +\xdb\x89\xb8\xd7\x89\xb8\xd9\x8a\xb8\xda\x8c\xb8\xda\x90\xb7\xda\ +\x8f\xb6\xd9\x8b\xb1\xd7\x87\xad\xd0\x83\xaa\xcc\x7e\xa8\xcd\x7d\ +\xa9\xcf\x98\xbe\xd8\xc5\xdc\xe8\xbd\xd7\xe7\xb7\xd3\xe7\xb1\xd4\ +\xe8\xaa\xcc\xdd\x6f\x90\x97\x46\x61\x6c\x43\x58\x5e\x43\x4b\x51\ +\x40\x47\x45\x3d\x43\x41\x45\x46\x4b\x3c\x41\x43\x42\x48\x4d\x44\ +\x4c\x4c\x45\x4e\x55\x44\x4f\x59\x41\x4f\x54\x44\x4e\x55\x45\x4e\ +\x56\x46\x52\x57\x49\x4f\x53\x46\x52\x55\x47\x56\x57\x4e\x5e\x63\ +\x50\x5b\x60\x4f\x58\x60\x4e\x5a\x5f\x4f\x5c\x5e\x54\x5c\x60\x58\ +\x61\x65\x5e\x68\x71\x66\x77\x7b\x83\x98\x99\xba\xd1\xd0\x93\xb2\ +\xc7\x78\x9c\xbc\x67\x85\xa7\x29\x47\x64\x67\x8a\xa4\x8c\xb0\xca\ +\x87\xa8\xc2\x75\x91\xa6\x27\x3a\x4a\x17\x2f\x3e\x75\x96\xa9\x83\ +\xa8\xc2\x87\xab\xc5\x8d\xad\xc8\x8c\xae\xc7\x8f\xb0\xc8\x8f\xb3\ +\xc9\x8c\xb4\xca\x87\xac\xc6\x84\xa5\xc1\x83\xa5\xc2\x85\xa9\xc4\ +\x85\xa9\xc3\x81\xa5\xbf\x73\x95\xab\x4b\x66\x75\x25\x3e\x4a\x75\ +\x92\xa5\x8c\xae\xc8\x8e\xb1\xcb\x90\xb4\xce\x93\xb8\xd2\x00\x00\ +\x00\x2d\x47\x5c\x17\x32\x46\x51\x70\x86\x70\x95\xaf\x56\x77\x8f\ +\x0e\x29\x3c\x22\x3f\x54\x7c\xa2\xbb\x90\xbe\xd9\x91\xc0\xdb\x8e\ +\xb8\xd3\x59\x7d\x93\x1c\x3e\x4f\x7f\xa7\xbd\x92\xbd\xda\x95\xbf\ +\xe2\x8f\xba\xdd\x65\x8a\xab\x34\x50\x70\x22\x3b\x54\x0a\x1f\x33\ +\x0c\x24\x36\x39\x5b\x6f\x81\xa6\xc1\x89\xa9\xc5\x5f\x78\x8f\x1a\ +\x30\x43\x2f\x4c\x60\x56\x78\x8f\x6e\x8c\xa2\x64\x7b\x90\x48\x61\ +\x76\x52\x74\x8e\x71\x99\xb5\x6d\x97\xad\x21\x46\x56\x56\x76\x88\ +\x68\x8b\x9e\x73\x9c\xb2\x84\xb1\xcb\x8b\xba\xd6\x8f\xbe\xd9\x8d\ +\xb6\xce\x7b\x9b\xb0\x8c\xaa\xbd\x93\xb1\xc6\x94\xb4\xc9\x90\xb7\ +\xca\x8d\xbd\xd2\x90\xc3\xda\x8f\xbf\xd6\x8f\xbd\xd1\x8d\xb9\xce\ +\x8b\xb5\xcc\x81\xa6\xbe\x7a\x9d\xb3\x77\x9f\xb5\x78\xa5\xbc\x79\ +\xab\xc2\x80\xb3\xcd\x85\xb8\xd2\x8b\xbb\xd2\x6c\x98\xb1\x6c\x96\ +\xaf\x7e\xa0\xbe\x64\x7c\x93\x08\x1a\x2c\x5b\x7b\x8c\x8b\xb4\xcb\ +\x97\xbf\xdb\x9a\xc0\xe0\x95\xc2\xdf\x8f\xbf\xdb\x88\xb9\xd5\x8c\ +\xb9\xd9\x90\xb8\xdb\x93\xbb\xde\x99\xbf\xe0\x99\xbd\xdf\x93\xbb\ +\xdd\x8d\xba\xdc\x8a\xbc\xdc\x8a\xba\xdc\x92\xbf\xe1\x90\xbe\xe0\ +\x8c\xba\xdc\x8d\xba\xda\x90\xb9\xda\x95\xb9\xdb\x92\xb6\xd9\x8f\ +\xb4\xda\x8b\xb0\xd4\x87\xae\xd1\x82\xaf\xd2\x7e\xaf\xd2\x84\xb4\ +\xd5\x90\xb7\xd5\xaa\xc8\xde\xc1\xdb\xe6\xbb\xdb\xea\xb1\xd5\xe9\ +\xaf\xd5\xe6\xa3\xca\xd7\x67\x8d\x98\x4c\x61\x6d\x3f\x4f\x53\x3e\ +\x46\x46\x3e\x44\x48\x39\x3e\x3e\x3f\x42\x45\x41\x45\x46\x41\x4c\ +\x4f\x42\x49\x54\x3f\x49\x4a\x47\x5c\x60\x48\x5c\x66\x58\x71\x77\ +\x70\x8d\x95\x66\x84\x86\x65\x7d\x81\x68\x84\x91\x65\x80\x8b\x66\ +\x76\x7d\x5b\x6e\x6f\x70\x84\x84\x7d\x8c\x8d\x8e\x9f\x9d\xb4\xc2\ +\xc0\xa5\xb9\xbb\x9a\xb0\xb8\x55\x76\x90\x7c\x9d\xbd\x7d\x9c\xc0\ +\x74\x91\xb7\x42\x5e\x7f\x3f\x5d\x77\x81\xa4\xba\x7f\xa3\xba\x77\ +\x96\xac\x3e\x52\x66\x15\x2a\x3c\x63\x7e\x91\x84\xa3\xbf\x84\xa4\ +\xc4\x84\xa7\xc4\x89\xab\xc5\x8f\xae\xc9\x8e\xad\xc6\x8e\xae\xc6\ +\x90\xad\xc8\x8f\xaa\xc8\x8f\xac\xc7\x8e\xab\xc7\x89\xa8\xc4\x7f\ +\xa1\xbd\x7a\x9c\xb1\x61\x7f\x8e\x24\x41\x4e\x73\x95\xa7\x8c\xb1\ +\xca\x8e\xb3\xcd\x92\xb5\xcf\x94\xb5\xd2\x00\x00\x00\x8d\xb1\xcb\ +\x76\x99\xb6\x69\x8e\xa8\x88\xae\xc8\x8c\xb2\xca\x6b\x8d\xa2\x3e\ +\x62\x79\x70\x9c\xb5\x8b\xbd\xd8\x8f\xc1\xde\x91\xbe\xdc\x80\xa9\ +\xc2\x4e\x77\x8c\x61\x8f\xa4\x90\xbf\xda\x91\xbf\xe0\x8f\xbd\xdf\ +\x87\xb4\xd5\x7c\xa5\xc3\x5e\x83\x9d\x40\x60\x76\x3b\x5d\x73\x5d\ +\x83\x9d\x6a\x91\xb0\x6e\x90\xae\x31\x4b\x62\x0b\x23\x34\x5e\x83\ +\x96\x8c\xb4\xca\x72\x93\xa9\x25\x3c\x4f\x16\x2d\x40\x59\x7b\x93\ +\x7d\xa8\xc3\x85\xb2\xcb\x63\x87\x99\x12\x2d\x3d\x10\x2a\x3b\x2f\ +\x51\x62\x52\x7c\x92\x61\x8e\xa8\x7c\xaa\xc7\x81\xa8\xc1\x40\x5d\ +\x6d\x19\x34\x3f\x54\x6f\x7b\x5a\x75\x83\x40\x61\x6f\x7d\xa3\xb4\ +\x8b\xb3\xc8\x77\x9a\xae\x56\x76\x88\x61\x83\x95\x74\x95\xaa\x59\ +\x74\x89\x28\x41\x55\x2e\x4a\x61\x4f\x73\x8b\x6a\x93\xac\x83\xb0\ +\xc9\x84\xb0\xc8\x88\xb0\xc7\x8e\xb4\xca\x81\xa7\xc0\x72\x91\xaf\ +\x56\x6a\x85\x0b\x1d\x30\x53\x72\x85\x8e\xb4\xcd\x99\xbd\xdc\x96\ +\xbb\xd9\x8e\xbb\xd6\x87\xb9\xcf\x8a\xbc\xd2\x8d\xb9\xd5\x93\xba\ +\xda\x93\xbd\xdd\x96\xc0\xdf\x95\xbd\xdb\x8e\xba\xd9\x8a\xb9\xd9\ +\x8a\xba\xdc\x8f\xbb\xdf\x95\xbe\xe1\x91\xbd\xdd\x8d\xbc\xdc\x8f\ +\xba\xda\x92\xbb\xdb\x92\xb8\xd8\x89\xac\xce\x78\x9f\xc1\x86\xad\ +\xd0\x87\xb0\xd2\x87\xb4\xd5\x85\xb4\xd4\x87\xb6\xd4\x8f\xb9\xd7\ +\x90\xb9\xd8\x87\xb6\xd5\x97\xc3\xdc\xb2\xd3\xe3\xc3\xdd\xe9\xb8\ +\xd9\xe9\xb0\xd3\xe5\x8b\xac\xb8\x64\x86\x94\x53\x68\x78\x41\x54\ +\x57\x3c\x4b\x4b\x3d\x49\x4a\x38\x43\x41\x4f\x5e\x63\x61\x7b\x7f\ +\x6b\x87\x8b\xa3\xc2\xcb\xb1\xca\xcd\xa7\xc2\xc7\xb9\xd2\xd8\xc0\ +\xd4\xde\xb7\xcf\xd4\xb7\xd2\xd4\xbd\xd7\xda\xb3\xcc\xd9\xa2\xc1\ +\xce\xbc\xd5\xde\xb5\xd1\xde\x8c\xb1\xcc\x70\x94\xb1\x6f\x90\xab\ +\x71\x92\xb0\x82\xa3\xc4\x81\xa3\xc5\x7d\xa0\xc3\x77\x99\xc0\x65\ +\x85\xa9\x28\x48\x63\x55\x79\x8e\x77\x9d\xb3\x74\x94\xae\x55\x6c\ +\x84\x13\x26\x3b\x42\x5b\x70\x7e\x9e\xba\x7f\xa3\xc3\x7d\xa5\xc5\ +\x83\xab\xca\x87\xaa\xc8\x8b\xaa\xc6\x90\xac\xc8\x95\xae\xcb\x91\ +\xac\xca\x90\xb0\xcc\x90\xad\xcb\x8d\xa9\xc6\x84\xa4\xc1\x7d\x9e\ +\xb6\x69\x88\x9b\x20\x3f\x4e\x69\x8c\xa0\x8c\xb2\xca\x8f\xb4\xce\ +\x93\xb4\xd2\x94\xb4\xd4\x00\x00\x00\x8b\xb4\xd6\x88\xb2\xd5\x88\ +\xb4\xd5\x8a\xb7\xd5\x89\xb6\xd2\x81\xad\xc7\x7e\xac\xc7\x7a\xae\ +\xca\x80\xb7\xd4\x85\xba\xda\x87\xb9\xda\x85\xb6\xd1\x7f\xb2\xcb\ +\x81\xb4\xcc\x8f\xbf\xda\x8b\xbd\xdc\x86\xba\xda\x85\xb8\xd8\x83\ +\xb5\xd2\x84\xb6\xd1\x88\xb7\xd3\x81\xb2\xd0\x80\xb5\xd5\x85\xb7\ +\xd9\x8c\xb8\xd8\x7e\xa9\xc4\x63\x8d\xa4\x6a\x99\xb3\x83\xb5\xd2\ +\x88\xb0\xcd\x85\xa5\xc0\x55\x73\x8d\x45\x67\x82\x72\x9b\xb8\x89\ +\xb4\xd1\x8c\xb1\xcb\x4d\x6b\x81\x11\x2b\x3e\x30\x4f\x60\x36\x5d\ +\x71\x79\xa3\xbe\x7c\xa9\xc9\x6c\x95\xb2\x40\x5f\x71\x16\x34\x3f\ +\x1c\x3d\x49\x25\x43\x53\x08\x26\x36\x3a\x5a\x6b\x7f\x9c\xb0\x58\ +\x70\x83\x08\x1c\x2d\x41\x5c\x6f\x4f\x6f\x82\x2b\x43\x57\x17\x2b\ +\x3f\x48\x5f\x76\x6a\x88\xa3\x6b\x8e\xa9\x56\x7b\x96\x3d\x63\x79\ +\x2f\x4f\x62\x19\x37\x4b\x24\x48\x60\x40\x5d\x79\x34\x47\x5d\x08\ +\x1c\x2b\x4f\x6c\x7f\x87\xa8\xc2\x91\xb0\xcd\x7f\xa0\xb9\x6d\x92\ +\xa7\x7a\xa7\xba\x82\xb1\xc4\x8b\xb5\xcb\x8f\xb5\xce\x8e\xb6\xd0\ +\x91\xba\xd3\x92\xb7\xd1\x8d\xb4\xcf\x8c\xb7\xd3\x8d\xb8\xd5\x91\ +\xb8\xd7\x8d\xb2\xcf\x8b\xb3\xcd\x8c\xb7\xd2\x91\xbb\xd9\x92\xbc\ +\xdb\x90\xb5\xd5\x7c\x9e\xbd\x3a\x5a\x79\x72\x94\xb3\x88\xb0\xd0\ +\x88\xb5\xd5\x8b\xb8\xd7\x8e\xb8\xd6\x95\xbb\xd9\x94\xb9\xdc\x8a\ +\xb6\xda\x86\xb8\xd7\x88\xb9\xd3\x8c\xbc\xd2\xa9\xce\xde\xc2\xdc\ +\xe8\xc5\xdd\xe7\xaf\xcb\xdb\x80\xa0\xac\x67\x86\x8e\x5a\x7c\x83\ +\x6a\x88\x95\x72\x90\xa1\x8d\xb3\xcc\x9d\xbf\xd3\xa7\xc6\xd4\xbf\ +\xd8\xe4\x8e\xb4\xce\xa3\xc1\xd8\xa1\xbe\xd6\x83\xaa\xc7\x81\xad\ +\xca\x86\xad\xcd\x86\xab\xc9\x82\xa8\xc7\x7a\xa3\xc2\x78\xa6\xc4\ +\x7c\xab\xcb\x7c\xaa\xca\x7d\xa4\xc5\x7f\xa3\xc4\x84\xa8\xcb\x85\ +\xab\xce\x82\xa8\xcc\x80\xa6\xc9\x7e\xa2\xc8\x7a\x9b\xbe\x56\x77\ +\x92\x22\x45\x5a\x61\x86\x9c\x74\x94\xae\x69\x81\x9a\x1a\x31\x44\ +\x26\x45\x57\x73\x9b\xb3\x7b\xa7\xc4\x7a\xa9\xc9\x7d\xa9\xc9\x80\ +\xa6\xc7\x86\xa8\xc5\x90\xae\xca\x92\xaf\xcb\x8e\xaf\xcb\x88\xac\ +\xcd\x8b\xad\xcb\x8c\xab\xc6\x83\xa6\xc0\x79\x9d\xb6\x69\x89\x9d\ +\x23\x3f\x52\x49\x68\x7d\x8d\xac\xc8\x94\xb4\xd2\x92\xb4\xd5\x90\ +\xb4\xd4\x00\x00\x00\x86\xb2\xd6\x85\xb3\xd6\x84\xb5\xd3\x84\xb7\ +\xd5\x86\xb7\xd8\x89\xb8\xd8\x7f\xb1\xcf\x7c\xb2\xd1\x80\xb9\xd5\ +\x83\xbc\xda\x85\xb9\xda\x85\xb8\xd7\x86\xbb\xd9\x8a\xbe\xdc\x90\ +\xc0\xdd\x8a\xbb\xd9\x88\xbc\xd9\x8c\xbe\xdb\x8d\xbe\xdc\x8b\xbd\ +\xdd\x87\xbb\xdb\x7d\xb6\xd8\x7b\xb3\xd7\x83\xb7\xda\x83\xba\xda\ +\x7c\xb7\xd6\x7c\xb7\xd5\x80\xb8\xd7\x85\xbb\xdb\x8b\xb8\xdb\x8f\ +\xb5\xd7\x91\xb6\xd6\x90\xb7\xd6\x8f\xb6\xd7\x96\xbc\xde\x95\xba\ +\xdb\x86\xa9\xc6\x25\x44\x5b\x4f\x71\x82\x62\x84\x9a\x2b\x50\x6b\ +\x71\x97\xb7\x87\xae\xca\x72\x97\xaf\x48\x6c\x80\x64\x8d\xa4\x7a\ +\xa4\xbf\x72\x9b\xb3\x7a\xa0\xb9\x6b\x8c\xa7\x4b\x67\x80\x13\x2f\ +\x41\x43\x65\x78\x77\xa0\xb4\x67\x8a\x9e\x25\x3e\x51\x3d\x56\x6c\ +\x81\x9f\xba\x88\xad\xcc\x8a\xb2\xce\x66\x8c\xa5\x23\x44\x59\x1b\ +\x3d\x53\x57\x7d\x98\x5d\x7e\x9a\x20\x36\x4a\x0b\x23\x33\x32\x51\ +\x64\x71\x8f\xab\x86\x9f\xbc\x50\x67\x7d\x19\x36\x46\x3e\x63\x74\ +\x6c\x92\xa5\x52\x74\x87\x2d\x4d\x5f\x3e\x5f\x73\x52\x73\x89\x60\ +\x7b\x92\x59\x75\x89\x63\x83\x97\x78\x99\xaf\x7a\x99\xb0\x58\x72\ +\x88\x46\x62\x79\x56\x7e\x96\x78\xa7\xc4\x8b\xb9\xd8\x8d\xb5\xd3\ +\x8a\xa9\xc4\x4c\x64\x7d\x36\x53\x6c\x88\xad\xca\x89\xb2\xd2\x8e\ +\xb6\xd5\x93\xba\xd6\x95\xb9\xda\x95\xba\xdf\x93\xba\xe0\x8b\xb8\ +\xd8\x82\xb5\xcf\x80\xb6\xcd\x7f\xb2\xcb\x85\xb0\xce\x88\xaf\xcc\ +\xac\xca\xd8\xac\xc9\xd8\xb6\xd1\xd8\xbb\xd4\xde\xb7\xcf\xdb\xb4\ +\xcd\xd4\xc1\xd8\xdc\xbe\xd9\xe1\xb0\xcc\xdb\x8d\xb4\xce\x8d\xb2\ +\xcc\x90\xb4\xcf\x8e\xb3\xcd\x82\xae\xc7\x80\xac\xc9\x84\xab\xcb\ +\x88\xaa\xcc\x82\xa5\xc6\x7f\xa6\xc4\x7d\xa6\xc4\x7f\xaa\xc9\x7f\ +\xaa\xc9\x87\xae\xce\x8c\xb0\xd2\x8d\xb4\xd5\x86\xb2\xd3\x84\xaf\ +\xd1\x82\xab\xce\x84\xab\xcd\x83\xa8\xc6\x7a\x9c\xb6\x4b\x6e\x85\ +\x2b\x50\x66\x6c\x8c\xa5\x70\x88\xa0\x2f\x45\x58\x1b\x3c\x4c\x6a\ +\x98\xae\x78\xa9\xc4\x79\xaa\xc7\x7c\xa8\xc8\x83\xa9\xc8\x8b\xae\ +\xcb\x91\xb1\xcc\x91\xb2\xcc\x8c\xaf\xcb\x85\xab\xc9\x86\xab\xc8\ +\x88\xa8\xc4\x82\xa5\xbf\x77\x9c\xb5\x69\x8c\xa0\x38\x54\x67\x29\ +\x46\x59\x7f\x9d\xb7\x95\xb2\xd3\x96\xb6\xd7\x94\xb5\xd6\x00\x00\ +\x00\x86\xb4\xd6\x86\xb5\xd4\x84\xb7\xd1\x87\xb8\xd7\x87\xb7\xda\ +\x8b\xb8\xdc\x87\xb8\xd9\x81\xb6\xd7\x84\xba\xd9\x88\xbd\xdc\x8a\ +\xba\xda\x8c\xba\xda\x90\xbc\xdd\x92\xbf\xdf\x8d\xbc\xdb\x88\xb9\ +\xd8\x8a\xba\xd9\x8a\xbb\xd7\x8b\xbb\xd9\x83\xb5\xd5\x7f\xb4\xd5\ +\x7e\xb3\xd6\x80\xb4\xd9\x82\xb5\xd9\x81\xb8\xda\x78\xb8\xd8\x77\ +\xb8\xd9\x7a\xb7\xd7\x86\xba\xdb\x89\xb6\xdb\x8d\xb8\xdd\x90\xbb\ +\xdf\x93\xbf\xe2\x97\xbd\xe1\x98\xbf\xe0\x8e\xba\xda\x85\xb3\xd2\ +\x62\x8a\xa5\x23\x45\x5c\x7f\xa0\xb9\x5a\x78\x98\x2a\x46\x64\x86\ +\xa6\xc2\x8e\xb4\xcf\x90\xba\xd5\x8b\xb8\xd7\x89\xb8\xd9\x89\xb8\ +\xd6\x8e\xba\xd9\x92\xba\xda\x91\xb7\xd4\x89\xb0\xc6\x78\xa5\xba\ +\x7d\xaf\xc4\x8c\xb6\xcc\x78\x9a\xae\x4f\x6f\x86\x57\x7c\x98\x88\ +\xb4\xd3\x8b\xb8\xd7\x86\xb1\xcd\x6a\x90\xae\x35\x5b\x7c\x57\x7f\ +\xa1\x7a\xa1\xc1\x65\x84\x9f\x41\x61\x78\x62\x86\x9e\x79\x9b\xb8\ +\x6f\x8a\xa7\x47\x61\x7a\x25\x42\x59\x22\x43\x59\x25\x49\x5d\x16\ +\x37\x49\x19\x3a\x4b\x5b\x7b\x90\x6d\x8b\xa2\x33\x4b\x61\x19\x2e\ +\x41\x41\x58\x68\x56\x71\x83\x40\x59\x6c\x1f\x30\x45\x29\x3f\x56\ +\x67\x8e\xa7\x7c\xae\xcb\x8b\xbb\xd9\x8e\xb9\xd5\x94\xb5\xd1\x6e\ +\x84\x9f\x1c\x35\x4d\x6c\x8e\xa9\x87\xb1\xce\x8a\xb4\xd1\x8e\xb6\ +\xd3\x92\xba\xdb\x92\xba\xde\x92\xba\xdd\x8b\xb6\xd6\x80\xb3\xcd\ +\x7c\xb1\xc8\x7c\xab\xc1\x7b\x9e\xb8\x7f\x9e\xb8\x83\xa5\xbe\x89\ +\xae\xc8\x8d\xb0\xce\x84\xa8\xc7\x7d\xa3\xc1\x7f\xaa\xc5\x83\xb2\ +\xcb\x80\xb0\xc7\x7f\xaa\xc3\x81\xa8\xc0\x85\xab\xc2\x8a\xb0\xc8\ +\x8c\xb3\xca\x85\xad\xc3\x7f\xa5\xc0\x82\xa6\xc4\x86\xa5\xc7\x85\ +\xa6\xc8\x81\xa6\xc4\x7f\xa5\xc1\x81\xa8\xc3\x82\xaa\xc6\x8d\xb2\ +\xd0\x91\xb4\xd4\x8f\xb7\xd6\x89\xb7\xd6\x85\xb4\xd4\x82\xaf\xd0\ +\x84\xb1\xd1\x82\xae\xc9\x7f\xa8\xc1\x7b\xa2\xbd\x56\x7b\x97\x32\ +\x53\x6f\x55\x6e\x8a\x3b\x52\x66\x18\x37\x4a\x60\x8c\xa5\x74\xa5\ +\xc1\x79\xa9\xc3\x7d\xa9\xc5\x86\xab\xc9\x8e\xae\xce\x90\xad\xcd\ +\x90\xb0\xce\x8d\xb0\xcc\x88\xad\xcb\x88\xad\xca\x85\xa9\xc3\x82\ +\xa6\xc0\x7a\x9f\xb9\x70\x93\xa9\x5e\x7c\x90\x24\x41\x56\x5f\x81\ +\x9a\x8f\xb0\xce\x97\xb5\xd6\x97\xb4\xd3\x00\x00\x00\x88\xba\xd8\ +\x87\xb7\xd5\x85\xb4\xcf\x8b\xb8\xd6\x8a\xb8\xd9\x88\xb8\xdd\x86\ +\xb7\xdc\x87\xb8\xdd\x8a\xbc\xdd\x8b\xbe\xdc\x8c\xbc\xda\x8d\xba\ +\xd9\x93\xba\xdb\x92\xbc\xdd\x89\xb7\xd9\x84\xb1\xd5\x84\xb2\xd4\ +\x86\xb5\xd4\x82\xb2\xd1\x7b\xaf\xd0\x75\xac\xcf\x7d\xb0\xd5\x85\ +\xb4\xdb\x85\xb5\xdc\x7f\xb4\xd8\x7c\xb4\xd7\x7b\xb4\xd6\x7d\xb4\ +\xd3\x85\xb6\xd6\x87\xb4\xd9\x87\xb4\xda\x85\xb3\xd8\x84\xaf\xd4\ +\x85\xa9\xce\x83\xa8\xc8\x83\xb0\xcd\x78\xab\xc8\x7e\xaa\xc8\x23\ +\x47\x63\x64\x82\x9f\x87\xa2\xc4\x26\x3c\x5c\x58\x72\x8d\x94\xb7\ +\xd5\x92\xbb\xd8\x92\xbe\xdc\x90\xbd\xdd\x8d\xbb\xdd\x8e\xb9\xdb\ +\x93\xbc\xdb\x95\xbb\xda\x94\xbb\xd6\x8e\xbd\xd8\x8b\xc0\xd9\x8c\ +\xbc\xd5\x8f\xb8\xd1\x8b\xb1\xcd\x83\xaf\xce\x85\xb4\xd4\x87\xb7\ +\xd7\x89\xb7\xd9\x87\xb1\xd6\x83\xaa\xd2\x7e\xa8\xce\x7a\xa8\xca\ +\x7d\xa8\xc8\x83\xad\xcb\x86\xae\xcd\x8e\xb3\xd3\x8e\xb1\xd1\x89\ +\xae\xcb\x84\xac\xca\x86\xb0\xcd\x82\xae\xca\x6f\x98\xb2\x4f\x75\ +\x90\x45\x6a\x85\x78\x9b\xb7\x76\x97\xb2\x37\x56\x6c\x24\x42\x53\ +\x60\x7e\x92\x7d\x98\xb0\x4a\x5f\x7b\x26\x41\x5c\x69\x91\xab\x8a\ +\xba\xd6\x92\xc1\xdf\x91\xbd\xdd\x93\xb7\xd5\x7e\x9b\xb7\x25\x3e\ +\x58\x4a\x68\x84\x87\xaf\xcb\x89\xb4\xcf\x8d\xb7\xd5\x8f\xbd\xdd\ +\x90\xbc\xdf\x91\xbb\xdd\x86\xb5\xd3\x78\xaa\xc1\x77\xa7\xbb\x73\ +\x9a\xb0\x5b\x78\x8b\x37\x4d\x61\x57\x71\x85\x83\xa2\xb9\x82\xa2\ +\xb9\x6b\x89\xa1\x62\x7f\x98\x74\x95\xad\x81\xa3\xbb\x7a\x9d\xb4\ +\x71\x91\xa6\x67\x85\x99\x6f\x90\xa5\x7e\xa3\xbc\x7f\xa1\xb6\x7e\ +\x9b\xae\x7a\x99\xad\x81\x9f\xba\x86\xa3\xc4\x85\xa6\xca\x83\xa7\ +\xc7\x7f\xa2\xbe\x81\xa3\xbc\x83\xa7\xc0\x8b\xac\xc8\x8d\xaf\xcb\ +\x90\xb4\xd0\x8d\xb6\xd2\x8a\xb5\xd4\x89\xb6\xd4\x85\xb5\xd2\x82\ +\xb3\xcc\x7f\xb1\xc8\x7d\xac\xc6\x7f\xaa\xc7\x73\x98\xb6\x42\x5f\ +\x7a\x23\x3c\x53\x27\x46\x5d\x5e\x86\xa3\x75\xa4\xc1\x79\xa6\xc3\ +\x80\xaa\xc5\x85\xac\xc9\x8b\xad\xcf\x90\xae\xcf\x92\xb2\xd0\x91\ +\xb3\xd1\x90\xb3\xd3\x8c\xb0\xcf\x89\xae\xc8\x83\xa8\xc2\x7c\xa0\ +\xba\x76\x97\xb2\x71\x93\xac\x41\x64\x7b\x37\x5d\x73\x85\xaa\xc4\ +\x92\xb2\xd1\x96\xb2\xd4\x00\x00\x00\x8b\xb7\xd5\x89\xb4\xd5\x8b\ +\xb2\xd3\x8b\xb3\xd3\x87\xb5\xd6\x83\xb5\xd8\x89\xb8\xde\x8d\xba\ +\xdf\x93\xbf\xe4\x8e\xbe\xde\x8e\xbd\xdc\x8e\xbb\xda\x8f\xb9\xd8\ +\x8d\xb6\xd9\x86\xb2\xd7\x82\xb1\xd6\x83\xb1\xd3\x83\xb3\xd2\x7a\ +\xae\xcc\x76\xab\xce\x76\xab\xd2\x7e\xb1\xd9\x85\xb2\xdb\x81\xb1\ +\xda\x7f\xb1\xd7\x81\xb1\xd5\x82\xb1\xd3\x85\xb1\xd3\x88\xb2\xd3\ +\x84\xb1\xd3\x81\xaf\xd3\x7d\xaa\xce\x72\x99\xbc\x54\x70\x92\x30\ +\x4c\x67\x36\x5c\x75\x5d\x8d\xa9\x7d\xac\xca\x4e\x72\x8f\x32\x50\ +\x6d\x87\xa5\xc5\x53\x6a\x89\x23\x39\x55\x87\xa8\xc2\x88\xb3\xcf\ +\x8a\xb9\xd5\x88\xb7\xd6\x87\xb5\xd7\x8c\xb6\xd9\x93\xb9\xdc\x93\ +\xb8\xda\x92\xb9\xda\x8c\xb9\xda\x88\xba\xdc\x88\xb8\xd7\x89\xb6\ +\xd1\x8b\xb4\xd1\x82\xaf\xcd\x7f\xb1\xd0\x81\xb4\xd5\x86\xb7\xda\ +\x89\xb5\xdc\x8a\xb3\xdb\x84\xb0\xd5\x7d\xb0\xd2\x7d\xb2\xd1\x82\ +\xb3\xd2\x89\xb5\xd5\x8f\xb6\xd6\x90\xb7\xd7\x8c\xb6\xd6\x8d\xb9\ +\xd8\x8d\xbb\xdc\x8a\xb9\xd9\x8b\xb8\xda\x8b\xb7\xd7\x90\xbc\xdb\ +\x8d\xb5\xd5\x87\xb1\xd0\x84\xad\xc8\x6d\x98\xae\x7c\xa7\xbe\x8a\ +\xb2\xcd\x88\xaf\xcb\x6f\x96\xb3\x73\xa1\xbd\x8d\xba\xd7\x92\xbe\ +\xdd\x8c\xba\xd9\x89\xb5\xd4\x83\xa9\xc7\x4a\x68\x85\x41\x63\x80\ +\x86\xb0\xcb\x8a\xb6\xd2\x8d\xba\xd8\x8d\xbc\xdc\x8d\xbb\xdd\x8b\ +\xb8\xdc\x7d\xad\xcb\x5b\x8a\xa2\x4b\x74\x8a\x51\x74\x87\x4d\x67\ +\x77\x1a\x31\x3e\x29\x42\x53\x3f\x5b\x70\x51\x6e\x83\x36\x4d\x63\ +\x15\x2b\x43\x2a\x45\x5d\x3b\x56\x6e\x2a\x42\x58\x15\x2a\x3e\x14\ +\x2d\x40\x32\x50\x67\x43\x65\x7e\x43\x62\x76\x2b\x42\x52\x1e\x35\ +\x46\x3a\x53\x6b\x51\x6c\x8e\x69\x88\xab\x6e\x8b\xaa\x51\x6b\x81\ +\x3d\x56\x68\x49\x64\x79\x60\x7d\x95\x7e\x9e\xb7\x8a\xae\xc7\x8d\ +\xb2\xcd\x8d\xb5\xd0\x8d\xb7\xd4\x87\xb5\xd4\x83\xb4\xcf\x84\xb4\ +\xce\x82\xb2\xca\x83\xae\xc7\x83\xab\xc6\x81\xa5\xbf\x75\x96\xb0\ +\x6e\x92\xac\x74\xa0\xbe\x75\xa3\xc2\x79\xa4\xc0\x83\xa9\xc3\x88\ +\xad\xc8\x8b\xad\xcd\x8e\xb0\xcf\x8e\xb3\xce\x90\xb4\xd0\x94\xb3\ +\xd5\x91\xb2\xd1\x87\xad\xc7\x82\xa7\xc1\x81\xa5\xc2\x82\xa2\xc3\ +\x7d\xa0\xbc\x62\x86\x9e\x2f\x55\x69\x72\x99\xaf\x8e\xb1\xcd\x93\ +\xb1\xd0\x00\x00\x00\x84\xa9\xcf\x86\xad\xd4\x83\xac\xd2\x81\xaa\ +\xcf\x80\xaf\xd3\x7f\xb2\xd6\x82\xb2\xd7\x89\xb5\xda\x8b\xb7\xdd\ +\x8c\xba\xdd\x8c\xbc\xdc\x8b\xb9\xda\x8e\xb9\xd9\x8c\xb6\xd9\x87\ +\xb4\xd8\x83\xb4\xd7\x86\xb5\xd6\x86\xb7\xd6\x7f\xb3\xd4\x7a\xad\ +\xd3\x7b\xac\xd6\x7e\xb1\xd8\x7e\xb0\xd7\x7d\xaf\xd6\x7f\xae\xd4\ +\x7f\xad\xd2\x84\xae\xd3\x87\xaf\xd1\x85\xad\xce\x81\xae\xce\x81\ +\xaf\xd0\x82\xaf\xd0\x6e\x94\xb5\x2c\x4a\x69\x32\x4f\x6a\x6a\x8f\ +\xab\x79\xaa\xc7\x7e\xb0\xce\x73\x9c\xb8\x1a\x39\x54\x6c\x8b\xa7\ +\x6f\x8a\xa8\x18\x2f\x4a\x66\x84\x9f\x81\xab\xc6\x81\xb1\xce\x80\ +\xae\xd2\x7f\xaf\xd2\x85\xb0\xd5\x8d\xb6\xda\x90\xb9\xdb\x8c\xb6\ +\xd9\x87\xb2\xd7\x85\xb3\xd9\x83\xb1\xd4\x82\xac\xcc\x72\x9a\xb3\ +\x64\x8e\xa4\x71\xa0\xba\x77\xaa\xc9\x7c\xb0\xd2\x83\xb3\xd6\x84\ +\xb1\xd5\x81\xb0\xd2\x78\xaf\xcd\x7b\xb2\xd0\x80\xb4\xd0\x87\xb3\ +\xd2\x8c\xb2\xd1\x91\xb5\xd4\x90\xb8\xd6\x8d\xb9\xd8\x87\xb7\xd7\ +\x85\xb8\xd6\x8a\xb8\xd8\x8c\xba\xd9\x89\xb7\xd6\x8b\xb7\xd7\x89\ +\xb6\xd5\x82\xb3\xd1\x7f\xb2\xcf\x85\xb6\xd2\x87\xb7\xd5\x86\xb5\ +\xd4\x84\xb5\xd3\x88\xb7\xd6\x88\xb7\xd5\x8d\xba\xd8\x8a\xb6\xd6\ +\x7d\xac\xcb\x7a\xa7\xc6\x79\xa1\xc0\x6d\x97\xb6\x84\xb2\xd0\x89\ +\xb9\xd6\x8d\xbb\xdb\x89\xb7\xd9\x88\xb7\xd8\x84\xb2\xd4\x82\xaf\ +\xce\x7f\xa9\xc6\x7e\xa4\xbe\x64\x84\x9b\x41\x5f\x71\x27\x45\x53\ +\x3f\x5f\x72\x7a\x9b\xb4\x7a\x98\xb2\x43\x5e\x77\x1d\x39\x51\x42\ +\x60\x78\x79\x94\xb0\x7c\x93\xb0\x53\x69\x82\x2b\x47\x5d\x56\x78\ +\x92\x7c\xa3\xbb\x6a\x8f\xa2\x2e\x4c\x5a\x1d\x39\x49\x65\x80\x97\ +\x7f\x9c\xbb\x7c\x99\xba\x4c\x64\x7e\x1e\x32\x42\x18\x2c\x39\x4f\ +\x6a\x7c\x61\x81\x98\x57\x78\x92\x56\x7b\x94\x7b\xa3\xb9\x89\xb2\ +\xc9\x8c\xb6\xcf\x89\xb6\xd3\x87\xb5\xd3\x88\xb5\xcf\x88\xb2\xcb\ +\x88\xae\xc8\x86\xad\xc6\x84\xaa\xc4\x7f\xa6\xbf\x7a\xa6\xbe\x75\ +\xa4\xbf\x75\xa3\xc0\x79\xa2\xbd\x80\xa5\xbe\x86\xa9\xc2\x89\xac\ +\xc9\x8b\xb1\xcd\x8a\xb4\xcd\x8d\xb4\xce\x95\xb3\xd1\x92\xb3\xd1\ +\x87\xad\xc8\x83\xaa\xc5\x85\xa8\xc8\x8a\xa8\xc8\x84\xa3\xc0\x6e\ +\x8d\xa5\x31\x4f\x61\x51\x72\x84\x90\xb1\xc9\x9a\xb7\xd3\x00\x00\ +\x00\x52\x71\xa2\x58\x79\xa8\x61\x87\xb3\x66\x91\xb9\x6a\x97\xc0\ +\x6e\x9e\xc7\x73\x9f\xc9\x74\x9d\xc8\x79\xa5\xd0\x81\xb1\xdb\x84\ +\xb6\xde\x8a\xb9\xe0\x8d\xb9\xde\x89\xb2\xd9\x88\xb4\xd9\x83\xb1\ +\xd4\x84\xb3\xd4\x86\xb6\xd7\x80\xb6\xd7\x7c\xb2\xd8\x7d\xaf\xd8\ +\x7f\xb0\xd4\x7e\xb2\xd4\x7c\xb2\xd4\x7e\xaf\xd4\x82\xb0\xd6\x85\ +\xb0\xd5\x86\xb0\xd1\x82\xaf\xcc\x82\xb1\xcd\x84\xb3\xd1\x84\xb1\ +\xd2\x7f\xab\xce\x84\xad\xcf\x82\xab\xcc\x7d\xaa\xc9\x7b\xaf\xcf\ +\x7f\xb4\xd4\x82\xae\xcb\x37\x5a\x74\x42\x62\x79\x7f\x9c\xb6\x2e\ +\x45\x5e\x3b\x57\x6e\x81\xa7\xc4\x83\xae\xcf\x80\xae\xd1\x7a\xab\ +\xcf\x7d\xad\xd0\x82\xb0\xd3\x89\xb6\xd8\x84\xb2\xd4\x85\xb0\xd4\ +\x83\xac\xd2\x84\xac\xd2\x7d\xa6\xc7\x4f\x77\x91\x0a\x2a\x3f\x37\ +\x63\x79\x6a\x9c\xba\x76\xac\xcc\x7c\xad\xcf\x7d\xaa\xcd\x7c\xaa\ +\xcb\x7c\xad\xcd\x7b\xad\xcb\x7f\xae\xcd\x83\xb0\xd0\x88\xb0\xce\ +\x8d\xb3\xcf\x89\xb3\xcd\x84\xb4\xce\x81\xb3\xd2\x7f\xb2\xd1\x86\ +\xb5\xd2\x89\xb7\xd2\x8b\xb8\xd7\x88\xb4\xd5\x85\xb3\xd4\x80\xb4\ +\xd4\x7d\xb3\xd2\x84\xb3\xd1\x88\xb2\xd1\x87\xb5\xd4\x86\xb7\xd6\ +\x85\xb5\xd4\x84\xb3\xd3\x88\xb4\xd4\x87\xb2\xd3\x78\xa6\xca\x76\ +\xa6\xc7\x83\xb2\xd1\x83\xb2\xd0\x84\xb4\xd2\x87\xb5\xd4\x89\xb3\ +\xd5\x85\xb2\xd4\x81\xb0\xd0\x82\xb0\xd0\x86\xaf\xcf\x89\xaf\xcf\ +\x88\xac\xca\x89\xab\xc6\x83\xa6\xbe\x7a\xa0\xb5\x73\x99\xb3\x82\ +\xa7\xc7\x86\xa9\xcb\x83\xaa\xc6\x7a\xa4\xbc\x62\x8a\xa2\x6b\x8e\ +\xa9\x84\xa3\xbe\x89\xa5\xc1\x82\xa4\xbd\x6e\x95\xaf\x7b\xa6\xbb\ +\x7e\xac\xbd\x78\xa3\xb5\x5e\x82\x96\x4c\x6c\x86\x68\x8a\xa5\x86\ +\xa8\xc3\x82\x9f\xb7\x51\x69\x7c\x17\x31\x3f\x2c\x4d\x5e\x70\x95\ +\xad\x84\xa9\xc4\x75\x9d\xb3\x49\x72\x83\x6f\x96\xa9\x8d\xb4\xcb\ +\x8d\xb6\xd2\x8a\xb5\xd4\x8a\xb5\xd0\x8a\xb1\xcb\x87\xa9\xc3\x81\ +\xa4\xbd\x73\x98\xb2\x5f\x86\x9f\x4a\x75\x8e\x43\x6b\x88\x46\x6f\ +\x8e\x4f\x76\x91\x5d\x81\x97\x70\x90\xa7\x86\xa6\xc2\x89\xad\xc8\ +\x89\xaf\xc7\x8f\xb2\xca\x92\xb1\xca\x8e\xb0\xca\x87\xad\xc9\x86\ +\xab\xc9\x8c\xab\xcc\x90\xac\xca\x8a\xa8\xc1\x7c\x99\xb1\x50\x6c\ +\x81\x38\x56\x68\x84\xa5\xb9\x99\xb7\xcf\x00\x00\x00\x6a\x86\xbf\ +\x7d\x98\xce\x8a\xab\xd9\x8a\xaf\xdb\x82\xaa\xd8\x76\xa1\xcf\x6b\ +\x92\xc0\x64\x89\xb8\x60\x88\xb8\x56\x84\xb4\x54\x84\xb4\x5c\x8b\ +\xb9\x62\x8e\xbb\x62\x8c\xb9\x65\x91\xbb\x69\x94\xbe\x76\xa0\xca\ +\x82\xad\xd7\x7c\xac\xd6\x75\xa7\xd3\x76\xa7\xd4\x7d\xac\xd4\x7e\ +\xaf\xd6\x7f\xb1\xda\x82\xaf\xdb\x84\xad\xd9\x84\xac\xd5\x7f\xa9\ +\xcd\x7d\xaa\xcb\x7c\xa9\xc9\x81\xad\xcf\x83\xb0\xd4\x87\xb5\xdd\ +\x86\xb5\xdc\x83\xb5\xd7\x82\xb1\xd2\x82\xb3\xd5\x84\xb5\xd9\x85\ +\xb2\xd3\x6c\x94\xb1\x20\x44\x5e\x71\x8f\xa8\x40\x56\x6c\x1d\x36\ +\x49\x76\x96\xaf\x87\xab\xca\x88\xb0\xd2\x7f\xac\xd0\x7d\xae\xd0\ +\x84\xb5\xd5\x8a\xb8\xd8\x85\xb3\xd5\x81\xad\xcf\x85\xab\xce\x89\ +\xac\xd1\x84\xaa\xce\x72\x99\xbb\x51\x78\x96\x49\x75\x92\x69\x98\ +\xb8\x78\xaa\xc8\x7d\xad\xcd\x7c\xa9\xca\x79\xa8\xc5\x7a\xa9\xc9\ +\x7e\xab\xcc\x81\xac\xce\x7e\xac\xcd\x7d\xae\xcb\x83\xb1\xcb\x7f\ +\xb0\xc8\x7f\xb0\xca\x80\xb0\xce\x81\xb1\xcf\x87\xb3\xcd\x8d\xb6\ +\xd1\x89\xb1\xd1\x84\xae\xd0\x85\xaf\xd4\x7f\xb0\xd2\x7d\xb0\xcf\ +\x7f\xad\xca\x83\xaa\xc9\x84\xaf\xcf\x81\xb0\xce\x81\xaf\xcf\x84\ +\xaf\xd1\x84\xb0\xd0\x85\xb1\xd2\x7e\xac\xcf\x7b\xad\xcd\x81\xb1\ +\xd0\x80\xaf\xce\x7f\xae\xcd\x81\xad\xce\x85\xa9\xce\x84\xa9\xd0\ +\x82\xab\xd0\x84\xae\xd1\x88\xaf\xd0\x8b\xb1\xd1\x8c\xb1\xd0\x88\ +\xae\xcd\x85\xab\xc9\x81\xa9\xc6\x85\xab\xcb\x88\xae\xce\x8a\xb1\ +\xd2\x87\xb4\xd2\x7e\xad\xc9\x7c\xa7\xc0\x7f\xa6\xbf\x88\xac\xc6\ +\x8d\xac\xc7\x8e\xb0\xcb\x8b\xb0\xc9\x88\xb2\xc8\x82\xb3\xc5\x81\ +\xb3\xc7\x83\xaf\xc7\x8a\xb0\xca\x89\xb0\xca\x8d\xb2\xcd\x8c\xad\ +\xca\x89\xa8\xc2\x78\x9a\xae\x5d\x83\x97\x78\xa1\xb9\x89\xaf\xca\ +\x84\xa8\xbe\x72\x93\xa4\x3d\x5f\x70\x7f\xa2\xb8\x8c\xb1\xcd\x89\ +\xb0\xd0\x89\xb1\xce\x89\xae\xca\x7f\xa0\xbb\x59\x7b\x96\x52\x78\ +\x92\x61\x8a\xa3\x70\x97\xb2\x7d\x9f\xbf\x7a\x9e\xbf\x72\x9b\xb6\ +\x6a\x91\xa9\x5d\x7f\x99\x53\x71\x8f\x60\x7f\x9c\x82\xa3\xbb\x8c\ +\xab\xbf\x8f\xae\xc3\x90\xb0\xc8\x8d\xae\xc9\x8f\xb0\xcc\x90\xb0\ +\xcd\x94\xb3\xce\x92\xaf\xca\x8a\xa5\xc0\x7c\x97\xb4\x5e\x7b\x95\ +\x7e\x9b\xb5\x96\xb4\xce\x00\x00\x00\x3f\x5a\x8d\x45\x5e\x8d\x51\ +\x6d\x98\x56\x77\xa1\x5f\x84\xaf\x62\x89\xb6\x67\x89\xb6\x70\x90\ +\xbf\x7f\xa3\xd4\x78\xa3\xd4\x74\xa3\xd4\x7a\xa9\xdb\x79\xa7\xda\ +\x73\x9f\xd1\x6e\x9a\xca\x6b\x95\xc6\x67\x8f\xc2\x61\x86\xba\x59\ +\x7f\xb5\x4d\x78\xad\x4a\x79\xad\x4f\x7f\xb0\x50\x81\xb3\x51\x7d\ +\xb1\x50\x77\xad\x5b\x7f\xb4\x5f\x85\xb6\x66\x8d\xba\x69\x8f\xb9\ +\x6b\x91\xbb\x73\x99\xc3\x7b\xa2\xcf\x7f\xa9\xd8\x7f\xab\xd6\x80\ +\xad\xd2\x84\xb0\xd5\x83\xae\xd8\x84\xae\xdc\x86\xb2\xdb\x83\xaf\ +\xd3\x4e\x77\x95\x33\x52\x6a\x30\x44\x57\x0f\x22\x32\x51\x6b\x7e\ +\x7f\x9d\xb5\x8e\xaf\xcb\x85\xad\xcd\x83\xb1\xd0\x8a\xb8\xd5\x8e\ +\xba\xd8\x8b\xb8\xd6\x88\xb6\xd2\x8c\xb5\xd4\x90\xb5\xd7\x90\xb3\ +\xd9\x82\xac\xd1\x78\xa6\xca\x76\xa5\xc8\x7d\xab\xcd\x82\xb0\xd2\ +\x83\xb2\xd3\x7e\xad\xcc\x7a\xaa\xc5\x7c\xab\xc9\x7c\xaa\xcc\x7f\ +\xad\xd1\x7b\xac\xce\x79\xb0\xcb\x7e\xb1\xcb\x7c\xad\xcb\x81\xb0\ +\xcf\x82\xb1\xd0\x86\xb3\xcf\x8f\xb7\xd1\x8e\xb3\xd0\x88\xaf\xcf\ +\x86\xab\xcf\x89\xac\xd4\x85\xad\xd4\x80\xad\xce\x80\xac\xcb\x7f\ +\xa9\xc7\x81\xaa\xc9\x7e\xab\xc9\x7f\xaa\xcb\x86\xac\xcf\x86\xaf\ +\xcf\x81\xad\xcb\x7b\xaa\xca\x7b\xaa\xca\x7d\xaa\xca\x7d\xaa\xcb\ +\x7d\xa8\xcc\x7a\xa1\xc5\x82\xa3\xca\x85\xa6\xcd\x84\xa5\xcd\x7d\ +\xa3\xc9\x80\xa8\xcb\x7f\xaa\xca\x82\xad\xcc\x7e\xac\xcb\x7c\xa8\ +\xc7\x78\x9f\xbf\x7c\xa1\xc0\x85\xa7\xc2\x87\xaa\xc6\x84\xaa\xca\ +\x80\xa8\xc4\x83\xaa\xc3\x84\xa9\xc2\x86\xaa\xc4\x8e\xad\xc8\x90\ +\xaf\xc9\x8b\xb0\xc9\x88\xb4\xc9\x87\xb7\xcc\x87\xb7\xcd\x8a\xb6\ +\xce\x8e\xb6\xd0\x8f\xb3\xd1\x90\xb4\xd3\x8c\xb0\xd2\x8b\xb1\xcf\ +\x8c\xb3\xcc\x8b\xb4\xcb\x8a\xb4\xcd\x89\xad\xc6\x84\xa3\xb9\x6d\ +\x88\x99\x3e\x5b\x6c\x4f\x73\x87\x89\xaf\xc9\x8b\xb2\xd1\x8d\xb2\ +\xd1\x8d\xb1\xcf\x88\xaa\xca\x82\xa8\xc4\x7c\xaa\xc3\x7a\xaa\xc1\ +\x84\xac\xc7\x8c\xab\xcc\x87\xa9\xca\x80\xab\xc8\x81\xaa\xc5\x7e\ +\xa3\xc1\x7f\x9f\xc0\x77\x92\xb3\x59\x76\x90\x6a\x86\x9c\x8a\xa6\ +\xb9\x93\xae\xc5\x93\xb0\xca\x93\xb1\xcc\x8d\xb0\xca\x8f\xb1\xcb\ +\x93\xb2\xd0\x97\xb0\xd1\x93\xac\xce\x8f\xa7\xca\x92\xab\xce\x99\ +\xb8\xd8\x00\x00\x00\x88\xa2\xc5\x71\x88\xa7\x6e\x8a\xa7\x7c\x9f\ +\xbe\x80\xa7\xcb\x78\xa0\xc7\x79\x9b\xc6\x70\x8f\xbd\x65\x89\xb9\ +\x59\x84\xb5\x4e\x7b\xac\x49\x76\xa7\x45\x71\xa3\x4d\x79\xaa\x51\ +\x7d\xaf\x54\x7f\xb2\x62\x89\xbc\x6b\x8f\xc5\x6c\x92\xc6\x69\x91\ +\xc4\x67\x95\xc7\x6e\xa0\xcf\x6d\x9f\xd1\x6e\x98\xce\x72\x95\xce\ +\x6a\x8c\xc8\x5e\x85\xbd\x54\x7b\xaf\x4d\x6f\xa2\x40\x60\x96\x39\ +\x5c\x92\x41\x67\x9d\x47\x6d\xa2\x4a\x6f\xa2\x48\x72\x9e\x4c\x79\ +\xa3\x4f\x7a\xaa\x51\x79\xae\x6f\x98\xca\x85\xb2\xda\x7e\xa6\xc7\ +\x3e\x59\x73\x0e\x21\x34\x0c\x1f\x30\x38\x4f\x63\x49\x62\x7a\x48\ +\x65\x7c\x82\xa5\xbd\x8e\xb7\xd1\x92\xbe\xd8\x96\xbe\xdc\x94\xbc\ +\xd9\x94\xbd\xd8\x94\xc0\xd9\x94\xbc\xdb\x91\xb8\xdb\x89\xb4\xd9\ +\x84\xb6\xda\x82\xb5\xd9\x89\xb6\xdb\x89\xb5\xd8\x86\xb5\xd6\x83\ +\xb1\xd2\x7e\xb0\xd1\x7f\xb1\xd2\x7e\xaf\xd1\x7b\xab\xd0\x7a\xae\ +\xd0\x7c\xb1\xce\x81\xb3\xcf\x7e\xad\xcd\x80\xad\xd1\x86\xb3\xd4\ +\x8e\xb8\xd2\x94\xb9\xd4\x8f\xb6\xd3\x89\xb0\xd0\x89\xae\xd2\x8f\ +\xb1\xd7\x89\xae\xd5\x83\xad\xd1\x80\xac\xcc\x84\xad\xcd\x86\xac\ +\xcd\x84\xaa\xca\x83\xac\xcc\x86\xad\xd0\x85\xae\xce\x83\xb0\xcd\ +\x80\xad\xcc\x7f\xab\xc9\x81\xad\xcd\x82\xa9\xcd\x83\xa9\xcf\x82\ +\xa7\xcd\x84\xa6\xcd\x86\xaa\xcd\x81\xa9\xcb\x7d\xa8\xc9\x7a\xa6\ +\xc5\x77\xa7\xc5\x79\xa8\xc8\x75\xa6\xc5\x71\xa2\xc0\x72\x9d\xba\ +\x71\x94\xad\x5f\x7d\x92\x4f\x6d\x84\x4a\x68\x85\x4e\x6f\x89\x60\ +\x82\x99\x7a\x9d\xb3\x83\xa4\xbd\x87\xa4\xbf\x86\xa4\xc0\x85\xac\ +\xc5\x80\xb0\xc5\x82\xb3\xc9\x89\xb7\xcf\x8d\xb9\xd1\x8e\xb5\xd0\ +\x91\xb5\xd4\x8f\xb2\xd4\x8d\xb3\xd5\x8e\xb3\xd1\x8d\xb5\xcf\x8c\ +\xb5\xce\x8a\xb3\xcc\x83\xa3\xbd\x5f\x78\x8e\x2a\x41\x54\x25\x42\ +\x55\x31\x55\x6b\x82\xab\xc5\x89\xb3\xd0\x8e\xb6\xd1\x91\xb6\xd1\ +\x8c\xb2\xd1\x89\xb3\xd3\x7e\xb1\xcb\x7d\xb1\xc8\x87\xb1\xcc\x8f\ +\xaf\xcf\x8e\xb0\xd0\x89\xb0\xd0\x8a\xaf\xcf\x87\xa9\xcb\x8a\xa5\ +\xcc\x8f\xa8\xcf\x8b\xa6\xc7\x65\x80\x9b\x52\x6c\x81\x88\xa0\xb6\ +\x8d\xa9\xc1\x8f\xac\xc7\x8d\xaf\xcb\x8d\xb2\xce\x93\xb3\xd2\x9a\ +\xb4\xd3\x9b\xb3\xd6\x9b\xb2\xd8\x9d\xb6\xdb\x9a\xba\xdd\x00\x00\ +\x00\x51\x68\x7e\x14\x28\x39\x39\x55\x64\x49\x6b\x7d\x4c\x6f\x85\ +\x81\xa4\xbe\x90\xb1\xd3\x93\xb4\xda\x93\xb8\xe0\x8c\xb7\xde\x86\ +\xaf\xd4\x83\xad\xd0\x87\xb1\xd7\x8b\xb5\xdd\x8b\xb3\xda\x81\xa9\ +\xcf\x76\xa0\xca\x6c\x98\xc4\x5e\x8b\xb7\x4e\x78\xa5\x4a\x75\x9f\ +\x51\x7e\xa7\x4a\x78\xa2\x4a\x72\xa2\x4f\x73\xa8\x48\x6f\xa6\x44\ +\x6c\x9f\x41\x65\x98\x3f\x5d\x91\x3b\x5c\x92\x40\x69\x9d\x63\x90\ +\xbe\x7a\xa5\xd1\x84\xac\xd7\x82\xad\xd6\x7f\xaf\xd5\x80\xad\xd8\ +\x82\xab\xda\x88\xb0\xdf\x8a\xb5\xde\x8b\xb3\xd5\x70\x8d\xaa\x17\ +\x2f\x43\x3a\x54\x69\x83\xa0\xba\x89\xa5\xc0\x4d\x66\x7e\x36\x53\ +\x66\x89\xae\xc3\x96\xc1\xd9\x9a\xc3\xdf\x98\xbf\xdd\x99\xc2\xdc\ +\x95\xc0\xda\x99\xbd\xdc\x93\xb8\xda\x91\xba\xde\x8e\xbb\xe0\x89\ +\xb9\xde\x85\xb8\xda\x84\xb6\xd8\x87\xb6\xd7\x8a\xb8\xdb\x89\xb6\ +\xdc\x83\xb5\xd8\x83\xb4\xd8\x85\xb3\xd7\x84\xb1\xd5\x82\xb2\xd2\ +\x80\xaf\xcf\x80\xaf\xcf\x82\xaf\xd3\x86\xb5\xd6\x8f\xba\xd6\x93\ +\xbc\xd7\x8d\xb7\xd5\x8a\xb4\xd5\x8d\xb6\xd7\x92\xb8\xdc\x8f\xb5\ +\xdb\x87\xb3\xd4\x8a\xb6\xd5\x8f\xb6\xd6\x90\xb3\xd4\x8c\xb3\xd1\ +\x88\xb1\xcf\x8b\xb1\xd0\x8a\xb3\xd2\x88\xb3\xd3\x87\xb0\xd0\x86\ +\xae\xce\x80\xab\xcb\x82\xae\xcc\x88\xaf\xd0\x8b\xb1\xd4\x89\xb2\ +\xd2\x8a\xb4\xd1\x84\xb2\xcd\x7f\xae\xc9\x7d\xaa\xc5\x7b\xa8\xc3\ +\x7d\xab\xc9\x7b\xa7\xc8\x76\xa1\xc1\x6f\x98\xb7\x54\x73\x8c\x22\ +\x3e\x50\x26\x45\x5b\x57\x76\x92\x61\x82\x9d\x55\x77\x91\x3f\x5f\ +\x76\x5c\x77\x90\x7c\x93\xaf\x71\x8d\xaa\x75\x9d\xb6\x7b\xae\xc2\ +\x7d\xb0\xc5\x84\xb2\xcb\x8a\xb4\xcf\x8b\xb1\xcf\x8f\xb0\xd2\x90\ +\xb1\xd3\x8b\xae\xcd\x8a\xae\xcb\x8a\xb0\xcc\x86\xb0\xc9\x88\xae\ +\xc9\x74\x91\xab\x36\x4b\x62\x2e\x42\x57\x38\x52\x69\x2a\x4c\x64\ +\x79\xa1\xbc\x8b\xb5\xcf\x90\xb9\xd2\x8f\xb8\xd0\x8a\xb5\xd1\x86\ +\xb4\xd3\x84\xb4\xd2\x87\xb4\xd1\x8b\xb3\xd2\x8b\xb0\xcd\x8d\xb1\ +\xcf\x8f\xb0\xd1\x8e\xad\xd0\x8a\xa9\xcd\x90\xa8\xd1\x93\xab\xd2\ +\x8e\xa9\xc9\x87\xa5\xbe\x61\x7b\x8f\x44\x5d\x6e\x86\xa0\xb3\x8c\ +\xa6\xc1\x91\xab\xca\x93\xb3\xd0\x99\xb8\xd6\x9c\xba\xd9\x9e\xb8\ +\xdc\x9c\xb5\xdc\x99\xb7\xda\x94\xb6\xd6\x00\x00\x00\x23\x38\x48\ +\x0e\x20\x2c\x5e\x77\x83\x78\x94\xa3\x39\x55\x64\x1a\x33\x45\x50\ +\x6b\x83\x7b\x9b\xb9\x8b\xb4\xd1\x8e\xb8\xd4\x7b\xa0\xbb\x42\x61\ +\x7a\x78\x99\xb3\x8b\xb0\xcc\x87\xaa\xc4\x64\x84\x9c\x7d\xa3\xbc\ +\x88\xb6\xd5\x86\xb4\xd4\x7e\xa6\xc3\x56\x75\x90\x38\x58\x73\x51\ +\x71\x8f\x76\x9a\xba\x86\xac\xd2\x83\xac\xd7\x80\xa8\xd1\x7d\x9f\ +\xc7\x79\x99\xc1\x7f\xa3\xcb\x83\xad\xd3\x8a\xb4\xd6\x8d\xb3\xd1\ +\x8d\xb1\xcd\x88\xb0\xcc\x88\xb5\xd1\x88\xb6\xd6\x8d\xb6\xda\x8f\ +\xb6\xdd\x8c\xb4\xd9\x8b\xb2\xd3\x80\xa1\xbe\x45\x62\x7a\x45\x62\ +\x7a\x86\xa5\xc3\x93\xaf\xce\x72\x8a\xa2\x1c\x33\x44\x69\x8a\x9a\ +\x95\xbe\xd4\x9a\xc5\xe1\x96\xc1\xdd\x95\xc0\xdb\x95\xbf\xda\x98\ +\xbe\xdc\x97\xbc\xde\x98\xbe\xe1\x92\xbb\xde\x8c\xb9\xdb\x84\xb7\ +\xd7\x83\xb6\xd6\x89\xb7\xd8\x8b\xb8\xd9\x8a\xb8\xdc\x88\xb6\xdb\ +\x86\xb4\xd7\x87\xb2\xd3\x88\xb1\xd2\x83\xb1\xd1\x7f\xae\xcd\x83\ +\xb1\xd0\x84\xb3\xd4\x89\xb8\xda\x8f\xbd\xdc\x91\xbe\xdb\x8e\xba\ +\xda\x8c\xb8\xd7\x8f\xbb\xd8\x92\xbc\xdb\x94\xbd\xde\x92\xbd\xdb\ +\x94\xbd\xda\x99\xbd\xdc\x97\xbc\xd9\x92\xb9\xd6\x93\xb9\xd5\x93\ +\xb8\xd3\x8e\xb6\xd4\x8d\xb6\xd6\x8b\xb1\xd3\x8a\xb1\xd0\x84\xb1\ +\xcb\x85\xb2\xca\x8f\xb6\xd2\x93\xb7\xd8\x92\xb9\xd7\x91\xbd\xd6\ +\x8a\xba\xd2\x88\xb9\xd2\x86\xb1\xd0\x87\xaf\xcf\x86\xaf\xcf\x86\ +\xac\xcd\x82\xa9\xc9\x77\xa0\xbe\x5b\x7f\x96\x37\x55\x6d\x54\x76\ +\x91\x6f\x94\xb3\x73\x99\xb7\x77\x9b\xb8\x6e\x8b\xa5\x44\x5b\x72\ +\x4e\x65\x7a\x70\x8e\xa5\x77\x9f\xb6\x7c\xad\xc2\x7f\xaf\xc5\x82\ +\xae\xc9\x86\xaf\xcb\x8e\xaf\xce\x92\xb1\xd2\x8e\xae\xcf\x88\xaa\ +\xcb\x85\xa8\xc8\x86\xa9\xca\x87\xab\xc9\x83\xa7\xc4\x66\x83\x9e\ +\x28\x41\x58\x27\x40\x53\x25\x41\x57\x3e\x61\x79\x7f\xa7\xc1\x8a\ +\xb3\xcc\x90\xb9\xd1\x8e\xb7\xcf\x89\xb4\xcf\x84\xb1\xce\x85\xaf\ +\xce\x8d\xb2\xd2\x90\xb1\xd3\x87\xac\xca\x88\xb0\xca\x89\xae\xca\ +\x8a\xaa\xcc\x8a\xaa\xcf\x8f\xa9\xd2\x94\xad\xd2\x92\xad\xca\x8d\ +\xaa\xc0\x81\x99\xb0\x46\x5e\x70\x47\x60\x71\x87\xa2\xb8\x94\xaf\ +\xca\x97\xb5\xd0\x98\xba\xd4\x9a\xbb\xd8\x9d\xba\xdc\x9a\xb6\xd9\ +\x95\xb6\xd5\x8f\xb4\xd1\x00\x00\x00\x2b\x41\x53\x08\x19\x29\x27\ +\x3c\x4b\x2d\x46\x57\x0b\x21\x30\x05\x18\x28\x0f\x24\x39\x25\x43\ +\x5b\x65\x8c\xa2\x8f\xb8\xcf\x8f\xb4\xcb\x47\x63\x78\x2a\x44\x58\ +\x6c\x8a\x9f\x83\xa1\xb4\x2c\x47\x55\x3a\x5a\x6a\x87\xad\xc4\x84\ +\xab\xc4\x59\x77\x8c\x1d\x32\x44\x4f\x64\x76\x73\x89\xa0\x33\x4d\ +\x63\x60\x80\x97\x76\x99\xb3\x5d\x7c\x96\x38\x57\x6e\x40\x61\x7b\ +\x55\x7a\x95\x74\x98\xb3\x7f\x9d\xb4\x53\x6e\x80\x2e\x4d\x5e\x46\ +\x6c\x7e\x67\x91\xa9\x8a\xb2\xcf\x90\xb8\xd9\x8d\xb6\xd7\x8d\xb3\ +\xd4\x83\xa6\xc4\x82\xa1\xbc\x8a\xa8\xc2\x68\x88\xa4\x55\x77\x97\ +\x8d\xad\xce\x80\x99\xb2\x0c\x26\x34\x3a\x5c\x69\x8b\xb4\xc9\x94\ +\xbe\xda\x95\xbb\xd7\x92\xb8\xd1\x93\xba\xd1\x94\xbd\xd9\x98\xbf\ +\xdf\x97\xba\xda\x93\xb4\xd3\x89\xaf\xce\x81\xaf\xcd\x85\xb4\xd4\ +\x89\xb7\xd7\x8d\xb8\xd8\x8d\xb7\xd9\x8a\xb4\xd7\x86\xaf\xcf\x82\ +\xa8\xc6\x7d\xa2\xbf\x7e\xa8\xc5\x7f\xae\xcc\x83\xb2\xcf\x8b\xb5\ +\xd5\x8f\xbc\xdc\x91\xc0\xde\x90\xbf\xdd\x8f\xbe\xdd\x8f\xbe\xdb\ +\x90\xbe\xd8\x95\xc0\xda\x97\xc0\xdd\x97\xbf\xde\x99\xc0\xdf\x9d\ +\xc2\xe1\x95\xbe\xdd\x99\xbe\xde\x97\xbb\xd9\x91\xb9\xd4\x8c\xb8\ +\xd3\x8b\xb4\xd4\x8c\xb4\xd4\x89\xb2\xcf\x87\xb2\xc9\x8c\xb5\xcb\ +\x93\xb8\xd3\x96\xb8\xd8\x97\xb9\xd8\x94\xbb\xd5\x8e\xb9\xd5\x8b\ +\xb8\xd8\x8b\xb6\xd9\x88\xb4\xd6\x85\xb3\xd2\x83\xb1\xcf\x85\xb1\ +\xce\x81\xb0\xc9\x76\xa6\xbb\x72\x9d\xb7\x68\x92\xaf\x70\x9b\xbb\ +\x77\xa2\xc2\x7d\xa3\xc2\x78\x97\xb3\x62\x78\x91\x2b\x43\x57\x5e\ +\x7f\x91\x84\xac\xbf\x86\xb2\xc7\x8a\xb3\xcb\x89\xaf\xcb\x84\xac\ +\xc8\x8f\xb0\xcf\x92\xb2\xd3\x8d\xaf\xcf\x83\xa8\xc7\x84\xa9\xca\ +\x85\xaa\xcc\x86\xab\xca\x85\xa9\xc6\x6e\x8f\xad\x4c\x69\x86\x2a\ +\x4a\x62\x39\x5c\x74\x6d\x92\xac\x7f\xa8\xc1\x86\xae\xc7\x8b\xb1\ +\xcb\x8c\xb1\xce\x87\xaf\xcd\x84\xad\xcc\x86\xad\xcc\x8e\xaf\xce\ +\x91\xaf\xd1\x8c\xae\xce\x84\xac\xc6\x85\xad\xc9\x86\xa9\xc8\x84\ +\xa6\xcb\x88\xa8\xcf\x8f\xad\xcf\x92\xaf\xca\x91\xad\xc6\x8c\xa3\ +\xbe\x6a\x7f\x98\x2b\x42\x55\x66\x84\x96\x94\xb5\xcc\x98\xb9\xd3\ +\x9b\xbc\xd5\x9d\xbb\xd7\xa0\xbb\xda\x9d\xb9\xd9\x91\xb5\xd3\x8c\ +\xb5\xd1\x00\x00\x00\x73\x8d\xa7\x13\x27\x3c\x34\x4d\x5e\x6b\x8c\ +\x9d\x33\x50\x62\x18\x30\x42\x56\x6e\x83\x77\x98\xae\x3d\x62\x7a\ +\x6e\x94\xae\x97\xbc\xd7\x7d\x9b\xb1\x1b\x35\x46\x58\x74\x84\x6a\ +\x89\x9a\x40\x5e\x6f\x2f\x4d\x61\x53\x72\x8b\x52\x71\x8b\x32\x4e\ +\x64\x17\x30\x42\x4c\x64\x76\x5a\x6f\x81\x1f\x34\x45\x20\x3a\x49\ +\x30\x4c\x5d\x19\x31\x42\x25\x3f\x4e\x6d\x8e\xa1\x83\xad\xc3\x7d\ +\xa2\xb8\x58\x70\x83\x17\x2c\x3a\x27\x44\x51\x75\x9b\xad\x76\x9f\ +\xb6\x63\x8c\xa8\x76\xa3\xc2\x8a\xb8\xd6\x87\xaf\xcd\x5b\x7b\x96\ +\x35\x53\x6a\x5b\x7c\x92\x82\xa5\xc0\x81\xa7\xc8\x85\xa7\xc8\x74\ +\x8e\xa7\x12\x2c\x3c\x32\x54\x65\x84\xac\xc4\x8e\xb4\xd0\x87\xa6\ +\xbe\x5b\x7a\x8c\x64\x87\x98\x82\xa9\xbf\x8b\xaf\xc9\x84\xa1\xba\ +\x66\x80\x98\x64\x83\x9e\x79\xa1\xbd\x83\xaf\xcc\x8a\xb5\xd3\x90\ +\xb7\xd7\x8e\xb3\xd6\x8a\xb1\xd3\x84\xae\xcb\x71\x97\xb2\x3a\x5f\ +\x76\x61\x8c\xa4\x7a\xaa\xc4\x84\xb2\xd1\x8b\xb8\xd5\x90\xbe\xdc\ +\x92\xc0\xdf\x93\xc1\xdf\x92\xbe\xdc\x91\xc0\xda\x93\xc3\xd9\x99\ +\xc6\xdd\x9a\xc4\xde\x93\xbd\xdb\x91\xbd\xdc\x94\xbe\xdd\x93\xbe\ +\xde\x95\xbd\xdc\x92\xbb\xd5\x88\xb6\xce\x87\xb8\xcf\x8b\xb9\xd3\ +\x8c\xb7\xd1\x88\xb3\xcc\x8a\xb4\xcb\x92\xb8\xd2\x95\xb9\xd7\x96\ +\xb9\xd9\x9c\xbb\xdb\x99\xbb\xd9\x94\xb9\xda\x91\xb9\xdc\x8c\xb7\ +\xdb\x87\xb6\xd7\x86\xb5\xd3\x82\xb6\xcf\x83\xb9\xd0\x85\xba\xcf\ +\x83\xb9\xce\x81\xb6\xce\x81\xb3\xce\x7f\xaf\xca\x7b\xaa\xc8\x79\ +\xa1\xbf\x70\x90\xab\x5d\x78\x8f\x2c\x49\x5c\x56\x7b\x8f\x8c\xb4\ +\xcb\x8f\xb8\xd0\x90\xb6\xcf\x8e\xb3\xcd\x8b\xb0\xcc\x92\xb5\xd2\ +\x92\xb5\xd2\x90\xb5\xd0\x88\xb0\xcc\x83\xac\xcd\x83\xae\xce\x85\ +\xad\xcc\x88\xad\xcb\x82\xa5\xc5\x7b\x9c\xbe\x6d\x91\xb0\x74\x9b\ +\xb7\x7f\xa4\xc0\x81\xa7\xc1\x86\xac\xc6\x87\xac\xc6\x88\xab\xc8\ +\x89\xad\xcb\x88\xae\xcd\x87\xae\xcb\x8c\xae\xcb\x8d\xae\xcf\x85\ +\xaa\xcc\x7f\xa9\xc6\x7e\xa7\xc6\x7f\xa5\xc7\x7d\xa2\xc7\x7e\xa4\ +\xc7\x84\xab\xca\x89\xb0\xca\x8c\xae\xc8\x8f\xa8\xc7\x7a\x8c\xad\ +\x36\x4b\x63\x3c\x5c\x6d\x8d\xb2\xc8\x97\xbd\xd5\x9b\xbc\xd7\x9f\ +\xbc\xd8\xa2\xbc\xd9\x9d\xb9\xd8\x93\xb7\xd5\x8c\xb5\xd2\x00\x00\ +\x00\x8c\xac\xca\x3b\x56\x6b\x2b\x4b\x5b\x83\xab\xbc\x87\xac\xc1\ +\x3b\x58\x6e\x44\x5f\x74\x8a\xad\xc5\x8a\xaf\xcb\x4a\x6e\x8c\x6e\ +\x93\xae\x91\xb2\xc8\x39\x56\x67\x4c\x6c\x7d\x93\xb6\xc9\x91\xb5\ +\xcd\x8b\xae\xca\x7d\x9f\xbc\x7d\x9e\xbd\x78\x9c\xb8\x6b\x8f\xa8\ +\x5b\x7b\x93\x48\x66\x7b\x3a\x5a\x6c\x51\x75\x86\x4e\x6d\x7e\x16\ +\x30\x3f\x25\x3f\x4b\x4a\x6e\x7e\x67\x95\xaa\x7f\xa5\xb8\x56\x6e\ +\x7e\x0c\x22\x30\x28\x47\x56\x45\x6c\x7f\x81\xac\xc2\x7d\xad\xc5\ +\x80\xb4\xcf\x84\xb5\xd0\x83\xaf\xcb\x6e\x92\xae\x37\x58\x71\x29\ +\x4c\x62\x5a\x7f\x97\x85\xab\xc9\x85\xa3\xc3\x51\x67\x80\x10\x2a\ +\x3d\x3a\x5e\x73\x6e\x99\xb4\x62\x8a\xa6\x48\x69\x7f\x1a\x39\x48\ +\x32\x53\x64\x55\x7b\x90\x5a\x7d\x95\x34\x50\x65\x1d\x38\x4a\x46\ +\x67\x7f\x56\x7e\x99\x63\x92\xae\x84\xb1\xce\x8a\xb2\xd3\x8a\xb2\ +\xd4\x83\xb0\xd1\x7d\xaf\xcd\x6f\x9b\xb8\x3a\x5d\x75\x2c\x53\x6b\ +\x71\x9d\xb9\x84\xb3\xd2\x8b\xba\xd9\x8e\xbc\xdc\x91\xbb\xdb\x93\ +\xbc\xdb\x92\xba\xd6\x95\xbe\xd5\x93\xbd\xd3\x96\xc1\xd6\x95\xbe\ +\xd7\x8b\xb6\xce\x83\xae\xc6\x89\xb2\xcb\x91\xb8\xd5\x92\xba\xd6\ +\x8a\xb6\xce\x81\xaf\xc5\x82\xb2\xc7\x87\xb5\xcc\x8a\xb3\xc9\x89\ +\xb0\xc6\x8b\xb2\xc5\x90\xb7\xce\x96\xbb\xd6\x9d\xbe\xdc\x9f\xbe\ +\xdc\x9b\xb9\xd8\x98\xba\xdb\x94\xba\xdd\x8d\xb9\xdc\x8b\xb9\xd9\ +\x8b\xba\xd7\x89\xbb\xd3\x83\xb8\xcf\x87\xbc\xd3\x86\xbc\xd3\x82\ +\xbb\xd1\x82\xb9\xd1\x85\xb4\xd1\x7d\xab\xc9\x6c\x95\xb1\x65\x87\ +\xa0\x57\x77\x8d\x2f\x53\x68\x67\x94\xad\x88\xb4\xcf\x91\xb8\xd2\ +\x93\xb7\xd2\x91\xb6\xd1\x90\xb5\xd1\x92\xb7\xd3\x93\xb8\xd4\x92\ +\xb8\xd3\x8e\xb6\xd2\x8b\xb5\xd2\x86\xb2\xcf\x86\xb0\xcf\x87\xae\ +\xce\x88\xab\xcc\x87\xa8\xca\x86\xaa\xca\x84\xab\xc7\x83\xa8\xc4\ +\x83\xa7\xc4\x83\xa8\xc5\x85\xab\xc7\x86\xac\xca\x89\xae\xcd\x89\ +\xb0\xcc\x89\xb1\xca\x86\xad\xc8\x83\xaa\xc8\x7c\xa5\xc4\x7b\xa8\ +\xc5\x7a\xa5\xc4\x7a\xa2\xc5\x7b\xa1\xc4\x7e\xa3\xc5\x7f\xa8\xc5\ +\x84\xaf\xc8\x89\xb0\xc9\x8d\xaa\xc8\x7c\x91\xb0\x37\x4b\x60\x2c\ +\x4a\x59\x86\xac\xbf\x99\xbb\xd5\x9c\xbb\xd8\x9d\xbc\xd9\x9d\xbb\ +\xd7\x99\xb6\xd4\x94\xb3\xd4\x8e\xb2\xd2\x00\x00\x00\x8b\xb1\xd1\ +\x76\x98\xaf\x20\x43\x52\x6c\x93\xa3\x84\xaa\xc0\x6e\x8d\xa2\x25\ +\x41\x55\x6b\x8e\xa7\x8c\xb2\xd2\x83\xa9\xc9\x3e\x63\x7f\x74\x99\ +\xb0\x5c\x7d\x8e\x24\x42\x54\x8a\xac\xc3\x95\xbb\xd7\x8f\xb9\xd8\ +\x8a\xb4\xd4\x87\xb0\xd0\x88\xb5\xd4\x86\xb6\xd4\x87\xb4\xd2\x87\ +\xb1\xce\x80\xb1\xc9\x7c\xb2\xc9\x78\xa7\xbe\x51\x74\x87\x15\x36\ +\x43\x6f\x98\xa7\x75\xa4\xb7\x54\x7a\x8a\x25\x3c\x49\x0b\x22\x2f\ +\x61\x7f\x90\x3f\x62\x74\x57\x7f\x94\x7f\xb0\xc7\x84\xba\xd4\x84\ +\xb5\xd2\x84\xb0\xcd\x80\xa9\xc8\x80\xa9\xc7\x6f\x96\xb1\x54\x7a\ +\x93\x65\x89\xa7\x6b\x8b\xa9\x2f\x4a\x64\x37\x55\x6c\x75\x9c\xb5\ +\x7d\xad\xc9\x80\xb0\xcc\x6b\x95\xae\x3d\x63\x78\x28\x50\x64\x6b\ +\x98\xaf\x89\xb4\xce\x69\x90\xa8\x2c\x53\x67\x3b\x65\x7f\x75\xa4\ +\xc3\x7e\xb0\xd0\x81\xb2\xd2\x87\xb3\xd4\x86\xb1\xd2\x85\xb5\xd5\ +\x80\xb2\xd1\x7a\xa5\xc2\x64\x87\x9f\x5c\x82\x99\x7a\xa7\xc2\x85\ +\xb4\xd3\x8c\xbb\xda\x8b\xb8\xd7\x81\xab\xca\x83\xa9\xc9\x8b\xaf\ +\xca\x68\x88\x9f\x47\x67\x7a\x6f\x91\xa6\x85\xaa\xbf\x6b\x8f\xa3\ +\x30\x55\x66\x4d\x70\x82\x86\xa9\xc2\x8d\xb2\xcf\x77\x9d\xb5\x5a\ +\x7e\x92\x6c\x93\xa6\x84\xac\xc2\x7e\xa1\xb8\x6f\x8e\x9f\x71\x90\ +\x9f\x82\xa6\xb8\x97\xbc\xd1\x9a\xbb\xd4\x9f\xbc\xd5\x9d\xb8\xd5\ +\x9b\xba\xd9\x96\xba\xda\x92\xba\xda\x93\xbb\xdb\x92\xba\xda\x8e\ +\xbb\xd7\x8c\xbc\xd8\x8b\xbc\xd7\x8a\xbd\xd4\x85\xbc\xd3\x87\xbc\ +\xd6\x88\xb8\xd6\x86\xb1\xd0\x80\xa8\xc7\x6a\x8f\xab\x51\x77\x92\ +\x62\x8e\xa8\x80\xb3\xd0\x86\xb8\xd7\x8d\xba\xd7\x94\xba\xd6\x94\ +\xb9\xd5\x93\xb8\xd4\x95\xba\xd6\x94\xba\xd3\x97\xbd\xd6\x90\xba\ +\xd3\x8b\xb7\xcf\x8a\xb7\xd0\x85\xb4\xce\x84\xb0\xcc\x89\xae\xcd\ +\x8d\xb1\xce\x8f\xb4\xd0\x8f\xb5\xce\x8b\xb0\xcb\x8c\xb0\xcf\x8b\ +\xb0\xd0\x88\xb2\xd0\x85\xb1\xcf\x85\xaf\xcf\x87\xaf\xcc\x85\xaf\ +\xc8\x84\xb0\xc8\x80\xab\xc6\x7d\xa7\xc4\x7d\xa4\xc4\x7a\xa3\xc4\ +\x7d\xa6\xc6\x7d\xa6\xc6\x82\xa8\xc7\x85\xac\xc8\x89\xb2\xcb\x8d\ +\xb3\xcc\x8a\xaa\xc4\x76\x8c\xa4\x2f\x42\x54\x26\x43\x52\x83\xa6\ +\xb9\x99\xb7\xd2\x9e\xb9\xd8\x9c\xbb\xd8\x98\xbb\xd7\x98\xb6\xd5\ +\x94\xb2\xd1\x8f\xb2\xce\x00\x00\x00\x8a\xb3\xd5\x8c\xb2\xcf\x64\ +\x89\xa1\x30\x54\x69\x6a\x89\x9f\x47\x63\x76\x26\x43\x56\x79\x9d\ +\xb5\x8d\xb6\xd1\x8b\xb4\xd0\x65\x8e\xa6\x31\x56\x6c\x69\x88\x9b\ +\x1c\x36\x4a\x75\x93\xab\x97\xbc\xd8\x92\xb9\xd7\x8f\xb7\xd1\x89\ +\xb5\xd2\x88\xb8\xd8\x80\xb6\xd4\x81\xb2\xd3\x82\xb0\xd2\x7d\xb0\ +\xd1\x76\xb2\xd0\x76\xaf\xca\x78\xa5\xbb\x42\x68\x7c\x32\x5b\x6e\ +\x6b\x96\xab\x51\x70\x84\x10\x25\x35\x18\x2e\x3e\x59\x72\x84\x3c\ +\x58\x6c\x34\x58\x6c\x7d\xad\xc4\x83\xb6\xd2\x81\xb1\xd0\x83\xb0\ +\xd1\x83\xb0\xd1\x81\xaf\xcf\x82\xae\xcc\x87\xb1\xce\x80\xa7\xc8\ +\x6b\x91\xb2\x52\x79\x95\x47\x6d\x88\x77\xa1\xbb\x85\xb4\xd0\x8a\ +\xbb\xd9\x88\xb6\xd4\x87\xb3\xcd\x80\xae\xc6\x79\xac\xc4\x83\xb8\ +\xd3\x81\xb6\xd1\x7e\xb3\xcd\x7e\xae\xce\x81\xb1\xd5\x83\xb6\xd8\ +\x83\xb7\xd8\x82\xb3\xd5\x88\xb3\xd8\x87\xb3\xd6\x88\xb1\xd1\x74\ +\x97\xb1\x15\x33\x49\x2c\x50\x64\x87\xb2\xcc\x89\xb8\xd6\x90\xbe\ +\xdd\x8e\xb8\xd6\x7e\xa8\xc5\x5e\x88\xa3\x66\x8b\xa5\x5a\x77\x8d\ +\x1d\x35\x4a\x23\x3f\x54\x46\x64\x7b\x3b\x58\x6a\x12\x30\x3c\x32\ +\x51\x60\x63\x86\x9d\x6e\x90\xad\x56\x73\x8c\x0f\x28\x3b\x28\x44\ +\x57\x60\x80\x97\x6c\x8c\xa0\x35\x51\x60\x21\x3e\x4a\x52\x73\x84\ +\x66\x86\x9b\x7a\x98\xaf\x75\x8e\xa1\x63\x7d\x93\x6f\x8e\xa7\x83\ +\xa7\xc2\x90\xb4\xd0\x91\xb6\xd2\x95\xb8\xd4\x93\xba\xda\x92\xbc\ +\xdc\x93\xbd\xdb\x8c\xbb\xd3\x88\xbb\xd1\x8a\xbc\xd3\x8d\xb9\xd2\ +\x8e\xb7\xd3\x8d\xb3\xcf\x87\xab\xca\x87\xae\xcd\x8b\xb5\xd4\x8b\ +\xba\xd8\x8c\xbc\xda\x8f\xbb\xd9\x90\xb9\xd5\x93\xb8\xd2\x97\xb7\ +\xd4\x96\xb8\xd2\x99\xbe\xd6\x94\xbc\xd2\x8f\xb9\xce\x8d\xb8\xcc\ +\x89\xb8\xcd\x84\xb5\xca\x85\xb5\xcc\x88\xb3\xcc\x8c\xb2\xcc\x91\ +\xb7\xcf\x95\xbb\xd2\x93\xb8\xd4\x94\xb7\xd6\x95\xb7\xd8\x90\xb6\ +\xd6\x89\xb2\xd2\x86\xae\xce\x85\xac\xcb\x81\xaa\xc8\x7f\xad\xc8\ +\x7c\xa9\xc4\x7c\xa3\xc2\x7b\x9e\xc0\x79\x9e\xbd\x7f\xa6\xc3\x81\ +\xac\xc5\x88\xb1\xc9\x8c\xb1\xcd\x91\xb4\xcf\x8f\xaf\xc9\x8a\xa5\ +\xbd\x6b\x80\x91\x29\x3c\x4c\x33\x50\x61\x83\xa5\xb9\x99\xb5\xd1\ +\x9b\xb4\xd5\x98\xb7\xd5\x94\xb7\xd4\x95\xb4\xd1\x94\xb3\xd0\x8f\ +\xb2\xcf\x00\x00\x00\x88\xb2\xd5\x87\xb2\xd3\x81\xad\xcd\x6b\x92\ +\xae\x31\x53\x6a\x20\x3f\x54\x5e\x80\x96\x85\xae\xc9\x85\xb4\xcf\ +\x85\xb4\xce\x7d\xa9\xc0\x2f\x53\x68\x42\x5a\x6e\x1a\x30\x42\x65\ +\x81\x96\x92\xb8\xd2\x90\xba\xd3\x8f\xb8\xd1\x8d\xb8\xd2\x88\xb7\ +\xd7\x81\xb3\xd5\x82\xb0\xd4\x80\xac\xd2\x7d\xaf\xd1\x7c\xb4\xd4\ +\x77\xb0\xce\x76\xa9\xc6\x77\xa5\xc2\x43\x6d\x87\x34\x59\x71\x35\ +\x51\x67\x2c\x41\x5a\x41\x56\x6f\x35\x4d\x63\x2e\x4a\x5e\x4d\x73\ +\x8a\x7f\xac\xc7\x7f\xaf\xcf\x7c\xad\xcd\x80\xaf\xcf\x7f\xb2\xd2\ +\x81\xb2\xd3\x83\xb2\xd3\x84\xb0\xd2\x88\xb2\xd5\x83\xaf\xd1\x77\ +\xa6\xc7\x76\xa5\xc4\x80\xac\xc9\x87\xb4\xd3\x8d\xba\xdc\x8e\xb9\ +\xda\x8c\xb4\xd4\x88\xb1\xd0\x81\xb1\xcf\x7d\xb2\xd1\x7e\xb7\xd4\ +\x7e\xb4\xd2\x86\xb2\xd1\x8a\xb0\xd2\x86\xb0\xd4\x81\xb2\xd5\x82\ +\xb3\xd8\x88\xb3\xd8\x8d\xb5\xd8\x90\xb4\xd2\x86\xa8\xc2\x6a\x89\ +\xa2\x71\x93\xab\x8d\xb6\xd1\x8e\xba\xd8\x93\xbe\xdc\x91\xbb\xd7\ +\x8c\xb7\xd3\x8d\xb9\xd4\x8b\xb4\xcd\x74\x97\xb1\x53\x75\x8d\x5e\ +\x81\x9a\x79\x9e\xb7\x75\x98\xaf\x4a\x6a\x7d\x56\x75\x86\x8c\xad\ +\xc4\x89\xaa\xc7\x67\x84\x9f\x34\x4e\x65\x5c\x76\x8e\x8b\xa8\xc3\ +\x7b\x9a\xb4\x3d\x5c\x71\x33\x54\x65\x7d\x9f\xb2\x8d\xac\xc2\x61\ +\x7e\x94\x25\x40\x51\x27\x45\x55\x58\x7c\x92\x6e\x94\xad\x70\x96\ +\xaf\x77\x9c\xb6\x8e\xb3\xcd\x92\xb6\xd4\x97\xbc\xda\x99\xbf\xd9\ +\x93\xbd\xd4\x8c\xba\xcf\x8d\xb7\xcd\x8e\xb4\xc7\x92\xb7\xca\x90\ +\xb4\xc8\x8f\xae\xc8\x91\xb2\xcb\x8c\xb0\xc9\x8f\xb4\xce\x90\xb9\ +\xd3\x8e\xb7\xd2\x91\xb7\xd1\x93\xb7\xd3\x96\xb7\xd4\x97\xb9\xd2\ +\x90\xb2\xc6\x8a\xaf\xbf\x8a\xb2\xc1\x88\xb3\xc4\x84\xb0\xc5\x7e\ +\xa9\xbc\x7c\xa5\xb7\x81\xa8\xbb\x82\xa4\xba\x8c\xb0\xc6\x90\xb9\ +\xcf\x92\xba\xd3\x91\xb3\xcc\x93\xaf\xc9\x94\xaf\xc9\x8b\xa9\xc6\ +\x8a\xaa\xc8\x89\xac\xca\x81\xaa\xc4\x7d\xaa\xc3\x7b\xa3\xbc\x7b\ +\x9d\xb7\x7c\x9a\xb5\x7c\x9b\xb6\x7c\xa0\xb6\x80\xa8\xba\x87\xad\ +\xc0\x8e\xb0\xc6\x93\xb1\xca\x95\xae\xc8\x88\x9e\xb4\x61\x74\x84\ +\x23\x3a\x47\x48\x68\x79\x8e\xaf\xc7\x9b\xb5\xd3\x99\xb4\xd5\x94\ +\xb4\xd2\x93\xb7\xd3\x92\xb1\xcf\x91\xae\xcc\x8f\xaf\xcc\x00\x00\ +\x00\x82\xae\xd1\x83\xb2\xd4\x81\xb4\xd8\x7e\xb1\xd1\x7c\xaa\xc7\ +\x74\x9c\xb7\x87\xb0\xcd\x84\xb2\xd1\x85\xb5\xd4\x88\xb5\xd4\x83\ +\xaf\xcb\x66\x87\x9f\x15\x2b\x3f\x0d\x22\x34\x52\x71\x82\x8e\xb9\ +\xd0\x8b\xbc\xd3\x8a\xb9\xd1\x89\xb5\xcf\x89\xb5\xd3\x84\xb3\xd6\ +\x82\xaf\xd5\x80\xad\xd2\x7c\xad\xce\x7c\xb1\xd0\x7a\xb0\xcf\x78\ +\xae\xce\x7a\xaa\xcd\x7f\xa8\xcc\x7e\xa0\xc0\x73\x91\xae\x7e\x97\ +\xb8\x85\x9d\xbf\x6a\x84\xa3\x51\x72\x8a\x7a\xa1\xbb\x7d\xa9\xc8\ +\x7d\xa9\xcc\x7c\xac\xcd\x7b\xac\xcb\x7b\xaf\xcf\x82\xb3\xd2\x84\ +\xb3\xd4\x84\xb0\xd4\x88\xb1\xd8\x83\xb0\xd5\x7a\xae\xcf\x7d\xaf\ +\xcf\x84\xb3\xd2\x87\xb4\xd4\x8c\xb6\xd7\x90\xb7\xd8\x90\xb5\xd6\ +\x8a\xb1\xd2\x83\xae\xd0\x7e\xae\xcd\x7b\xaf\xcd\x78\xa7\xc5\x59\ +\x7d\x97\x60\x7d\x97\x7f\x9f\xbb\x86\xab\xcc\x84\xac\xd0\x87\xaf\ +\xd4\x8c\xb2\xd4\x8f\xb2\xd3\x8e\xb2\xce\x90\xb2\xcd\x91\xb4\xcf\ +\x8f\xb7\xd6\x8e\xb9\xda\x91\xbc\xdc\x8f\xba\xd8\x90\xbc\xd9\x8c\ +\xb9\xd6\x8a\xb8\xd3\x86\xb2\xcc\x80\xad\xc7\x82\xaf\xcb\x82\xaf\ +\xcb\x82\xad\xca\x87\xac\xc8\x8c\xab\xc5\x97\xb6\xd2\x8f\xae\xd0\ +\x87\xa5\xc6\x86\xa2\xbf\x92\xac\xcb\x91\xae\xcd\x8e\xae\xce\x8c\ +\xac\xc8\x81\xa7\xbe\x7d\xa4\xba\x8e\xb0\xc7\x8d\xaa\xc1\x71\x91\ +\xa4\x3d\x61\x75\x4d\x77\x8e\x86\xb0\xca\x8f\xb8\xd1\x79\xa1\xba\ +\x65\x8c\xa8\x8a\xb0\xcd\x93\xb8\xd3\x9a\xbf\xd7\x95\xbc\xd3\x8f\ +\xb4\xca\x7f\xa0\xb3\x51\x70\x7d\x44\x67\x72\x54\x74\x84\x71\x8a\ +\x9c\x77\x90\x9e\x5e\x79\x86\x4c\x6b\x79\x4b\x6f\x82\x57\x7d\x94\ +\x7b\xa1\xb8\x8b\xb0\xc7\x8d\xb1\xc7\x8b\xac\xc2\x6a\x89\x9a\x36\ +\x56\x65\x3b\x5e\x6d\x64\x8c\x9c\x7f\xa4\xb9\x6c\x8e\xa2\x46\x62\ +\x72\x5a\x75\x85\x4a\x65\x79\x5e\x7c\x94\x88\xaf\xc8\x8c\xb3\xcd\ +\x81\xa1\xb9\x53\x6c\x7e\x46\x5c\x69\x47\x5e\x70\x4e\x6a\x81\x5a\ +\x7b\x95\x60\x87\xa0\x6a\x91\xa9\x63\x82\x98\x54\x6e\x81\x56\x6d\ +\x80\x5e\x75\x89\x55\x6e\x7d\x3f\x5a\x66\x3a\x54\x61\x46\x5e\x70\ +\x5f\x75\x8b\x7e\x92\xa8\x7c\x8f\xa3\x4d\x60\x70\x22\x3b\x49\x5e\ +\x7f\x92\x94\xb4\xce\x9c\xb7\xd7\x99\xb6\xd5\x94\xb6\xd1\x93\xb8\ +\xd2\x95\xb3\xd0\x97\xb0\xd1\x95\xaf\xd0\x00\x00\x00\x85\xb2\xd5\ +\x88\xb8\xda\x86\xbb\xdd\x82\xb9\xdc\x83\xb8\xd8\x89\xb8\xd9\x8e\ +\xb5\xd9\x8e\xb6\xdb\x8d\xb7\xdb\x93\xba\xe0\x91\xb6\xda\x81\xa0\ +\xbf\x31\x4c\x62\x0e\x28\x3a\x4d\x71\x84\x87\xb6\xcd\x87\xbc\xd5\ +\x86\xba\xd3\x88\xb6\xd3\x8b\xb8\xd5\x86\xb4\xd3\x82\xb0\xd4\x81\ +\xad\xd2\x7f\xad\xcf\x81\xb2\xd2\x7b\xaf\xcf\x7a\xae\xcf\x80\xaf\ +\xd2\x85\xb2\xd6\x88\xb0\xd2\x88\xaf\xcf\x87\xaa\xce\x89\xab\xcf\ +\x84\xa9\xcb\x83\xaa\xc9\x83\xad\xcb\x7e\xa9\xca\x7d\xa9\xcb\x7f\ +\xac\xcd\x80\xaf\xcd\x83\xb2\xd2\x85\xb1\xd3\x83\xb1\xd3\x81\xad\ +\xd2\x82\xac\xd4\x80\xae\xd4\x7c\xb0\xd0\x80\xb4\xd0\x83\xb3\xd1\ +\x7f\xae\xcd\x83\xb2\xd0\x87\xb4\xd0\x89\xb4\xd1\x8a\xb4\xd3\x85\ +\xae\xcf\x81\xad\xcd\x7c\xab\xcb\x6f\x9e\xbc\x3c\x65\x7e\x2a\x4d\ +\x64\x39\x59\x6e\x52\x70\x89\x88\xa9\xc5\x86\xad\xcd\x88\xaf\xd1\ +\x8d\xb3\xd5\x91\xb7\xd7\x91\xb7\xd4\x90\xb5\xd4\x8e\xb5\xd7\x88\ +\xb4\xd9\x87\xb5\xd7\x87\xb6\xd3\x8b\xb8\xd4\x8c\xb7\xd4\x85\xb5\ +\xd1\x84\xb5\xcf\x83\xb4\xd2\x81\xb0\xcd\x7d\xab\xc9\x7e\xab\xce\ +\x88\xaf\xd3\x90\xaf\xd1\x96\xb2\xd4\x91\xb0\xd2\x8c\xac\xcc\x8e\ +\xaa\xc6\x8e\xaa\xc3\x8c\xaa\xc5\x95\xb2\xce\x93\xb3\xce\x91\xb6\ +\xce\x90\xb6\xcf\x90\xb3\xce\x8d\xad\xc6\x8a\xac\xc4\x87\xac\xc6\ +\x7c\xa5\xc2\x88\xb2\xd0\x8a\xb5\xcf\x83\xaf\xc8\x63\x8f\xad\x62\ +\x8c\xad\x88\xae\xcb\x92\xb8\xd2\x95\xbc\xd5\x8a\xaf\xc5\x5d\x7c\ +\x8c\x1e\x3c\x46\x4c\x6e\x78\x6f\x8e\x9e\x59\x71\x80\x29\x3d\x47\ +\x11\x28\x30\x23\x41\x4a\x62\x87\x95\x7e\xa4\xb7\x6b\x90\xa4\x53\ +\x72\x85\x6d\x8c\x9f\x6b\x89\x9c\x37\x50\x63\x2c\x46\x59\x59\x79\ +\x8a\x4f\x72\x83\x4a\x6b\x7d\x5c\x77\x8c\x2d\x44\x56\x24\x3b\x4b\ +\x29\x42\x55\x44\x5e\x76\x80\xa1\xbb\x88\xa9\xc4\x7d\x99\xb1\x3d\ +\x53\x63\x13\x26\x2d\x20\x35\x40\x4d\x67\x7b\x76\x93\xac\x74\x97\ +\xad\x4f\x70\x85\x25\x3d\x50\x18\x2b\x39\x32\x45\x55\x3a\x4d\x5d\ +\x15\x29\x35\x06\x19\x21\x07\x19\x27\x15\x27\x3b\x2b\x3b\x52\x38\ +\x4a\x5f\x54\x68\x7d\x3d\x52\x65\x20\x3c\x4c\x70\x91\xa4\x96\xb8\ +\xd1\x9c\xb8\xd5\x94\xb3\xcf\x94\xb5\xd0\x95\xb7\xd2\x9a\xb5\xd5\ +\x99\xb1\xd5\x98\xb0\xd4\x00\x00\x00\x8d\xb8\xdf\x8b\xb6\xdb\x87\ +\xb5\xdc\x7f\xb2\xda\x84\xb2\xda\x89\xb2\xdb\x8f\xb3\xdd\x91\xb6\ +\xe0\x90\xb8\xe1\x96\xba\xe6\x98\xb8\xe4\x8c\xad\xd4\x6f\x90\xb0\ +\x39\x5c\x77\x65\x8c\xa7\x85\xb3\xcf\x8a\xbe\xda\x88\xbd\xd9\x86\ +\xb6\xd3\x87\xb3\xcf\x8a\xb4\xd2\x86\xb2\xd4\x88\xb1\xd6\x86\xaf\ +\xd3\x85\xb3\xd5\x7f\xb0\xd4\x7d\xad\xd2\x83\xb1\xd4\x85\xb5\xd5\ +\x86\xb5\xd7\x83\xb2\xd3\x7e\xae\xce\x7f\xb0\xcf\x82\xb2\xd1\x84\ +\xb1\xd0\x84\xb0\xcf\x82\xb0\xd0\x81\xb1\xd1\x82\xaf\xcf\x84\xae\ +\xd0\x83\xae\xd2\x84\xaf\xd4\x82\xb0\xd4\x7d\xb0\xd3\x7e\xb0\xd4\ +\x7f\xb0\xd5\x7d\xb0\xd0\x83\xb3\xd2\x7e\xaf\xce\x79\xab\xcc\x7d\ +\xb0\xcf\x80\xb1\xce\x84\xb3\xd0\x87\xb4\xd3\x89\xb3\xd2\x85\xb0\ +\xd0\x80\xac\xcf\x77\xa5\xc7\x6c\x9e\xbd\x64\x93\xad\x48\x6d\x84\ +\x29\x45\x58\x55\x71\x85\x8a\xab\xc6\x87\xad\xce\x8a\xb2\xd3\x8c\ +\xb5\xd5\x8b\xb5\xd3\x89\xb3\xd3\x87\xb2\xd5\x83\xae\xd5\x82\xb0\ +\xd4\x82\xb0\xcf\x83\xb1\xcf\x84\xb1\xd2\x81\xb1\xd1\x84\xb4\xd2\ +\x89\xb6\xd7\x87\xb1\xd3\x7d\xa9\xca\x7c\xaa\xcd\x83\xaa\xd2\x8b\ +\xab\xd3\x92\xb0\xd3\x8e\xae\xcc\x7d\x9b\xb6\x4e\x6a\x82\x34\x53\ +\x67\x38\x58\x6e\x56\x75\x8d\x77\x97\xaf\x8c\xb1\xc9\x8c\xb3\xcc\ +\x8c\xb3\xcd\x8a\xaf\xc8\x86\xaa\xc4\x80\xa8\xc2\x7f\xa7\xc5\x80\ +\xa6\xc4\x7c\xa3\xba\x6a\x95\xac\x68\x96\xb2\x58\x85\xa3\x71\x9d\ +\xb7\x87\xb3\xcb\x8d\xb8\xd2\x85\xae\xc6\x72\x94\xa7\x37\x58\x67\ +\x41\x63\x71\x59\x78\x8a\x71\x8c\x9f\x6b\x83\x94\x28\x44\x53\x17\ +\x39\x45\x47\x6f\x7d\x7a\xa2\xb3\x61\x81\x95\x32\x4c\x60\x28\x43\ +\x57\x3f\x5c\x73\x2c\x47\x61\x33\x4c\x66\x71\x8e\xa5\x8e\xac\xc2\ +\x80\x9f\xb4\x50\x6c\x82\x2c\x46\x5c\x47\x62\x76\x58\x74\x8b\x42\ +\x5b\x75\x5d\x79\x91\x6a\x89\xa3\x6b\x88\xa3\x4d\x62\x77\x10\x20\ +\x2c\x27\x39\x46\x4d\x65\x79\x48\x64\x7b\x72\x8f\xa7\x71\x8c\xa4\ +\x43\x59\x6b\x0d\x20\x2c\x26\x3a\x47\x63\x7b\x89\x4f\x69\x73\x19\ +\x31\x3c\x2c\x43\x55\x4d\x62\x7a\x57\x69\x83\x5c\x70\x88\x4d\x64\ +\x7c\x3f\x57\x6b\x20\x3c\x50\x71\x92\xa5\x8f\xb3\xca\x9a\xba\xd5\ +\x9a\xb8\xd2\x99\xb7\xd3\x9a\xb6\xd5\x9c\xb4\xd8\x9c\xb2\xd6\x98\ +\xb0\xd4\x00\x00\x00\x5d\x84\xb3\x5d\x83\xb2\x67\x8f\xbf\x6b\x95\ +\xc7\x6a\x94\xc4\x69\x91\xc2\x6a\x92\xc5\x6e\x98\xc9\x72\x9c\xcc\ +\x7b\xa3\xd1\x85\xa6\xd8\x86\xa5\xd7\x7b\x9f\xcc\x71\x98\xc0\x76\ +\x9f\xc6\x7d\xa9\xcf\x82\xb2\xd8\x83\xb4\xda\x83\xaf\xd6\x83\xab\ +\xd1\x84\xab\xd0\x85\xab\xd4\x8a\xad\xd8\x8c\xb0\xda\x8c\xb5\xdc\ +\x87\xb1\xdb\x85\xae\xd8\x80\xab\xd2\x7e\xae\xd3\x7b\xb0\xd5\x7c\ +\xb1\xd6\x79\xb0\xd1\x79\xb0\xd1\x7d\xb1\xd2\x82\xb0\xd1\x85\xb3\ +\xd4\x84\xb4\xd5\x85\xb5\xd5\x88\xb5\xd7\x88\xb1\xd9\x86\xae\xd8\ +\x83\xad\xd5\x7d\xaf\xd4\x78\xae\xd3\x78\xae\xd3\x7d\xb0\xd4\x7d\ +\xb0\xd2\x81\xb0\xd2\x7f\xae\xd2\x79\xac\xd1\x7a\xaf\xd2\x7c\xb0\ +\xd1\x81\xb4\xd3\x84\xb3\xd2\x83\xb1\xd1\x84\xb1\xd2\x84\xae\xd2\ +\x80\xac\xd1\x79\xaa\xcc\x78\xac\xcb\x73\x9e\xbb\x49\x69\x7f\x26\ +\x41\x52\x78\x95\xad\x8b\xae\xcd\x87\xae\xce\x8a\xb5\xd5\x89\xb5\ +\xd5\x85\xb0\xd3\x81\xad\xd3\x80\xab\xd2\x85\xb0\xd6\x84\xb0\xd2\ +\x80\xaf\xd1\x7e\xb0\xd3\x7c\xb0\xd3\x85\xb5\xd8\x87\xb4\xd9\x85\ +\xb1\xd6\x7c\xa9\xcc\x7a\xa8\xcb\x7c\xa7\xce\x82\xaa\xd0\x87\xac\ +\xcd\x85\xa8\xc1\x59\x77\x91\x24\x44\x5d\x47\x6c\x86\x77\x9c\xb9\ +\x7d\xa0\xbd\x5f\x81\x9e\x46\x6a\x85\x7e\xa5\xbe\x84\xb0\xc8\x81\ +\xac\xc4\x80\xaa\xc2\x7e\xaa\xc2\x77\xa2\xba\x6e\x90\xa8\x3d\x5d\ +\x6e\x37\x5e\x6e\x67\x92\xa7\x47\x6f\x88\x63\x8d\xa6\x89\xb6\xce\ +\x89\xb5\xd0\x84\xaf\xc7\x82\xa6\xc0\x7a\x9f\xb5\x5f\x84\x99\x4b\ +\x6c\x82\x62\x82\x97\x86\xa6\xbc\x84\xa7\xbd\x70\x97\xac\x70\x98\ +\xab\x85\xab\xc2\x74\x96\xae\x5b\x77\x8f\x64\x81\x9a\x76\x95\xb2\ +\x71\x90\xb0\x6b\x88\xa6\x5a\x77\x94\x7e\x9c\xb5\x96\xb4\xcc\x91\ +\xb0\xca\x7d\x97\xb7\x6b\x87\xa6\x83\x9f\xbd\x81\x9b\xb8\x69\x87\ +\xa0\x66\x8a\xa6\x6e\x91\xb0\x5a\x74\x8d\x1d\x2c\x3e\x14\x25\x32\ +\x51\x67\x78\x6e\x87\x9c\x3d\x58\x6e\x5f\x77\x8c\x53\x68\x76\x0d\ +\x22\x2b\x1b\x32\x3e\x2f\x4b\x58\x70\x8d\x98\x4e\x68\x76\x37\x54\ +\x66\x74\x8e\xa7\x91\xa5\xc1\x8a\x9c\xb8\x74\x8a\xa5\x5a\x72\x89\ +\x1e\x3b\x50\x56\x74\x89\x85\xa7\xbd\x95\xb7\xcd\x9c\xba\xd1\x9e\ +\xb9\xd4\x9d\xb6\xd5\x9c\xb5\xd6\x99\xb3\xd3\x98\xb1\xd2\x00\x00\ +\x00\x6c\x92\xc3\x6a\x8d\xbd\x6b\x90\xc2\x68\x92\xc1\x60\x8b\xb9\ +\x5a\x88\xb7\x5a\x89\xbb\x5b\x8a\xbd\x58\x86\xb9\x59\x83\xb5\x57\ +\x7b\xaf\x53\x73\xab\x4d\x70\xa7\x46\x6b\x9f\x43\x6b\x9b\x3e\x6a\ +\x99\x3d\x6a\x9b\x40\x6d\x9f\x49\x72\xa6\x50\x79\xaa\x54\x7e\xac\ +\x56\x7f\xaf\x5a\x81\xb4\x61\x86\xb8\x64\x89\xba\x6a\x8c\xc1\x6c\ +\x8c\xc2\x68\x8f\xc2\x62\x90\xc2\x63\x96\xc6\x64\x9a\xc5\x67\x9a\ +\xc4\x69\x9a\xc4\x6c\x9b\xc7\x75\x9e\xcd\x7b\xa6\xd1\x81\xae\xd6\ +\x84\xb2\xd7\x84\xaf\xd9\x82\xa9\xda\x80\xa6\xd8\x7b\xa5\xd3\x78\ +\xa7\xd1\x72\xa4\xcf\x75\xa7\xd0\x79\xa8\xd1\x75\xa6\xcd\x7a\xa7\ +\xce\x7a\xa7\xd0\x77\xa7\xd1\x7a\xa9\xcf\x7c\xac\xcf\x80\xb0\xd2\ +\x83\xb2\xd3\x84\xb2\xd6\x84\xb1\xd5\x87\xb0\xd7\x87\xaf\xd6\x81\ +\xad\xd3\x7f\xae\xd2\x7e\xab\xce\x76\x99\xb8\x42\x5f\x78\x56\x76\ +\x8d\x89\xae\xc8\x87\xb0\xcd\x89\xb2\xd3\x86\xb1\xd6\x81\xb0\xd5\ +\x83\xb0\xd5\x85\xb1\xd6\x8a\xb3\xd9\x8a\xb3\xd6\x80\xad\xd1\x7b\ +\xab\xcf\x80\xb0\xd3\x85\xb5\xd7\x86\xb4\xd6\x83\xb1\xd6\x7b\xab\ +\xcf\x7a\xaa\xce\x74\xa8\xcc\x78\xaa\xcd\x7f\xad\xcb\x7d\xa5\xc0\ +\x6c\x92\xae\x4a\x72\x93\x59\x86\xa7\x7b\xa5\xc7\x85\xad\xce\x7f\ +\xa4\xc3\x4e\x72\x8c\x43\x65\x7c\x82\xa8\xbf\x88\xaf\xc9\x86\xad\ +\xc8\x82\xa9\xc5\x7a\x9f\xbb\x5b\x79\x8e\x1d\x3a\x46\x4a\x6c\x7a\ +\x61\x85\x97\x35\x58\x6d\x6d\x93\xac\x84\xad\xc8\x84\xaf\xca\x85\ +\xad\xc7\x84\xab\xc7\x7d\xa6\xc0\x7c\xa6\xbf\x84\xa9\xc3\x88\xad\ +\xc6\x89\xaf\xc9\x8e\xb3\xce\x8d\xb2\xcc\x8f\xb1\xce\x8f\xb3\xd1\ +\x8c\xb0\xcc\x8c\xad\xc8\x8e\xac\xc9\x8f\xae\xcf\x8c\xac\xcd\x8b\ +\xad\xcb\x8e\xb1\xcf\x91\xb3\xcf\x98\xb5\xd1\x96\xb2\xcf\x95\xb0\ +\xd1\x96\xb2\xd4\x94\xb1\xcf\x91\xae\xca\x8c\xaa\xc9\x85\xab\xcb\ +\x7d\xa2\xc4\x72\x8e\xab\x3a\x49\x5d\x0e\x1b\x2a\x1a\x2b\x3c\x54\ +\x67\x79\x65\x78\x8b\x2d\x3f\x50\x44\x54\x61\x17\x2b\x36\x2f\x48\ +\x56\x49\x64\x74\x42\x5d\x6c\x85\xa0\xb0\x7c\x99\xac\x8d\xa8\xc0\ +\x99\xb0\xca\x91\xa3\xc0\x85\x97\xb4\x77\x8f\xa9\x2e\x49\x5f\x30\ +\x4e\x63\x53\x74\x89\x8e\xad\xc4\x9b\xb8\xcd\x9e\xb9\xd2\x9f\xb8\ +\xd5\x9d\xb5\xd3\x9a\xb4\xd4\x98\xb3\xd5\x00\x00\x00\x96\xbd\xe5\ +\x95\xbc\xe3\x91\xba\xe0\x8c\xb7\xdb\x8a\xb9\xdb\x85\xb6\xd9\x84\ +\xb6\xdc\x85\xb5\xe0\x86\xb5\xe0\x89\xb5\xdf\x84\xad\xd7\x81\xa5\ +\xd4\x7e\xa3\xd3\x7b\xa2\xd2\x79\xa4\xcf\x77\xa5\xcf\x70\xa2\xcd\ +\x6b\x9c\xc7\x6c\x9b\xc8\x72\xa0\xcd\x72\xa2\xcd\x6a\x9a\xc5\x69\ +\x97\xc3\x69\x95\xc2\x6b\x94\xc4\x6e\x94\xc7\x6c\x8e\xc3\x63\x87\ +\xbe\x5a\x82\xba\x56\x84\xb9\x57\x86\xb7\x50\x7f\xaf\x48\x74\xa5\ +\x41\x6b\x9e\x41\x69\xa0\x46\x72\xa6\x48\x78\xa7\x4c\x7c\xab\x4c\ +\x77\xab\x4c\x75\xad\x50\x77\xaf\x4d\x78\xa9\x49\x75\xa5\x4e\x78\ +\xa9\x53\x7c\xaf\x57\x81\xb2\x55\x80\xb1\x61\x8a\xbb\x68\x91\xc0\ +\x69\x93\xc2\x6f\x97\xc5\x73\x9d\xc7\x77\x9f\xc9\x7a\xa3\xcc\x80\ +\xab\xd5\x81\xac\xd8\x83\xaa\xd8\x85\xa8\xd7\x82\xab\xd7\x83\xb1\ +\xda\x81\xad\xd8\x86\xa9\xd2\x83\xa2\xc8\x83\xa6\xc7\x8e\xb3\xd3\ +\x8f\xb5\xd9\x8f\xb6\xdd\x87\xb2\xdc\x83\xb2\xda\x86\xb2\xd9\x8b\ +\xb3\xda\x8e\xb3\xda\x8a\xb2\xd6\x84\xae\xcf\x84\xae\xcf\x87\xb1\ +\xd2\x88\xb5\xd3\x84\xb2\xd2\x81\xb3\xd2\x7d\xb1\xd2\x7f\xaf\xd2\ +\x7a\xad\xd1\x79\xac\xd0\x7a\xab\xcb\x7f\xad\xca\x7b\xa9\xc6\x77\ +\xa7\xc6\x79\xa7\xc9\x80\xae\xd1\x82\xb0\xd1\x7f\xa9\xc8\x6d\x8f\ +\xaa\x2d\x4a\x5e\x55\x74\x88\x82\xa5\xbc\x8c\xae\xcb\x8d\xae\xd1\ +\x86\xa6\xc6\x6c\x8b\xa2\x2d\x4b\x5c\x44\x64\x76\x46\x67\x7e\x3e\ +\x60\x79\x83\xa8\xc4\x86\xac\xca\x88\xae\xcc\x88\xad\xcb\x83\xac\ +\xc8\x7f\xac\xc8\x7e\xa9\xc9\x86\xac\xcf\x8b\xb0\xcf\x8b\xb2\xcf\ +\x8f\xb3\xd3\x94\xb5\xd6\x99\xb6\xd7\x92\xb2\xd5\x8d\xb2\xd0\x8d\ +\xb2\xcc\x8b\xac\xc8\x8e\xac\xcc\x8b\xae\xca\x86\xad\xc8\x89\xb1\ +\xcb\x8e\xb1\xcd\x96\xb2\xd2\x96\xb3\xd3\x97\xb4\xd5\x95\xb5\xd5\ +\x9a\xb7\xd7\x99\xb6\xd4\x96\xb5\xd6\x8f\xb2\xd5\x89\xad\xd0\x7f\ +\x9b\xbb\x53\x63\x7c\x1a\x28\x3b\x45\x56\x6a\x2d\x3e\x53\x42\x52\ +\x65\x40\x4f\x5d\x19\x27\x30\x16\x28\x30\x31\x49\x58\x73\x8c\xa2\ +\x42\x59\x6e\x6f\x88\x9b\x94\xb0\xc3\x9e\xb9\xcf\x9a\xb3\xcd\x91\ +\xa7\xc5\x8d\xa4\xbf\x89\xa3\xbb\x4d\x68\x7e\x36\x53\x68\x4c\x68\ +\x81\x62\x7d\x97\x98\xb4\xcb\x9c\xb8\xd1\xa3\xbb\xd8\x9f\xb6\xd6\ +\x9a\xb3\xd6\x96\xb3\xd6\x00\x00\x00\x9b\xc4\xe7\x98\xc5\xe5\x95\ +\xc2\xe1\x94\xc4\xdf\x93\xc3\xdc\x92\xc2\xde\x94\xc1\xe2\x93\xbf\ +\xe2\x94\xc1\xe6\x94\xc2\xe5\x90\xbd\xde\x8c\xb6\xd8\x8c\xb4\xd8\ +\x88\xb4\xd8\x85\xb5\xd6\x7e\xb1\xd3\x7a\xaf\xd0\x7a\xaf\xd0\x7f\ +\xb4\xd6\x87\xbb\xdb\x8a\xbc\xdb\x88\xb8\xd8\x86\xb9\xd9\x88\xba\ +\xda\x89\xba\xdf\x8b\xba\xe3\x90\xba\xe5\x8e\xb8\xe4\x8c\xb4\xe1\ +\x87\xb1\xde\x82\xaf\xda\x7c\xae\xd5\x74\xa6\xcc\x72\x9f\xc9\x71\ +\x9d\xce\x6f\xa1\xd0\x71\xa5\xd2\x75\xa7\xd5\x75\xa5\xd5\x70\x9f\ +\xcf\x74\xa2\xd2\x6d\x9d\xc8\x65\x92\xbc\x60\x8a\xb9\x5d\x82\xb6\ +\x59\x7d\xb1\x4f\x76\xaa\x50\x79\xac\x50\x79\xab\x4b\x71\xa2\x4c\ +\x6e\x9c\x54\x75\xa4\x5a\x7c\xab\x58\x7d\xaa\x52\x7c\xab\x52\x7f\ +\xb0\x57\x80\xb4\x5e\x83\xb6\x5c\x84\xb7\x53\x7f\xb2\x53\x7c\xb1\ +\x5a\x81\xb5\x61\x84\xb5\x68\x8a\xba\x6d\x91\xbe\x6b\x91\xc0\x6f\ +\x98\xc9\x70\x99\xcd\x72\x9b\xce\x75\x9a\xcc\x7b\x9c\xcd\x7c\xa0\ +\xcf\x79\xa0\xca\x79\xa2\xca\x7c\xa7\xcc\x83\xab\xcf\x84\xab\xd0\ +\x80\xaa\xcc\x7d\xac\xcc\x81\xb0\xd2\x82\xaf\xd2\x80\xad\xd2\x7d\ +\xa9\xd0\x7e\xac\xd1\x81\xae\xcf\x82\xb0\xcf\x80\xaf\xcf\x83\xb0\ +\xd3\x85\xb3\xd6\x85\xb4\xd5\x84\xad\xcd\x7d\x9c\xbb\x44\x60\x79\ +\x34\x54\x67\x70\x95\xaa\x90\xb3\xd0\x91\xb2\xd7\x8e\xb1\xd5\x87\ +\xab\xc9\x6c\x90\xab\x47\x69\x87\x4b\x6e\x8d\x77\x9e\xbe\x84\xad\ +\xcd\x86\xad\xce\x89\xaf\xd1\x89\xb0\xcf\x84\xb1\xcc\x80\xb0\xcc\ +\x81\xaf\xd1\x8a\xb3\xd6\x8e\xb4\xd7\x8c\xb2\xd1\x8e\xb2\xd1\x95\ +\xb5\xd5\x99\xb7\xd8\x92\xb3\xd5\x88\xb2\xd0\x83\xb2\xca\x86\xae\ +\xca\x89\xad\xcc\x85\xaa\xc5\x7f\xa5\xbe\x7b\xa0\xb8\x7e\x9e\xb8\ +\x85\xa3\xc1\x89\xa9\xcb\x90\xb2\xd4\x92\xb5\xd6\x96\xb6\xd7\x98\ +\xb7\xda\x95\xb6\xdc\x93\xb4\xd7\x91\xb2\xd3\x87\xa1\xc3\x65\x78\ +\x93\x1d\x2e\x43\x56\x6c\x81\x5e\x75\x89\x22\x35\x45\x34\x42\x4e\ +\x13\x1f\x28\x0c\x1d\x25\x29\x42\x50\x76\x93\xa8\x60\x7a\x90\x51\ +\x69\x7e\x90\xa9\xbd\x9c\xb5\xcb\x95\xaf\xc9\x89\xa6\xc2\x8f\xb0\ +\xca\x8d\xae\xc5\x6a\x88\xa0\x33\x52\x6a\x62\x7e\x99\x4e\x69\x87\ +\x82\x9f\xba\x97\xb4\xd0\x9e\xb9\xda\x9d\xb7\xda\x9b\xb6\xda\x94\ +\xb2\xd5\x00\x00\x00\x9a\xc4\xe4\x96\xc5\xe3\x98\xc5\xe0\x99\xc6\ +\xdf\x96\xc4\xdd\x98\xc5\xe2\x9a\xc3\xe3\x9b\xc4\xe4\x96\xc4\xe5\ +\x91\xc4\xe4\x8e\xbf\xdd\x8e\xbb\xd8\x92\xb9\xd9\x94\xbf\xde\x92\ +\xbf\xde\x8c\xba\xda\x87\xb9\xd8\x87\xbd\xda\x89\xbf\xdb\x91\xc4\ +\xde\x94\xc4\xdf\x90\xc1\xdb\x8f\xc1\xd8\x8d\xc2\xdb\x8a\xc1\xde\ +\x8b\xc2\xe2\x8c\xbf\xdf\x8e\xbd\xde\x91\xbc\xdf\x90\xbc\xdf\x87\ +\xb9\xdb\x82\xba\xd7\x80\xb7\xd4\x80\xb0\xd1\x84\xb2\xd8\x7e\xb3\ +\xd9\x81\xb3\xd9\x87\xb4\xdd\x8a\xb8\xdf\x85\xba\xdb\x8a\xbb\xdc\ +\x83\xb6\xd6\x80\xb1\xd0\x78\xa7\xcc\x7a\xa5\xd0\x7b\xa5\xd0\x7b\ +\xa7\xd0\x79\xa9\xd2\x73\xa3\xcb\x63\x88\xaf\x33\x52\x76\x5b\x78\ +\x9e\x85\xa4\xcb\x88\xae\xd3\x81\xad\xd6\x7b\xa7\xd4\x79\xa5\xd3\ +\x77\xa0\xce\x71\x9b\xca\x6d\x95\xc8\x69\x90\xc4\x71\x97\xcb\x77\ +\x9b\xcc\x75\x97\xc8\x6c\x8f\xc0\x60\x86\xb7\x5b\x85\xb7\x56\x7f\ +\xb5\x53\x77\xaf\x50\x72\xa7\x4c\x71\xa2\x4a\x73\xa2\x4e\x77\xa6\ +\x54\x7d\xaa\x58\x83\xae\x5c\x83\xb1\x5d\x81\xb1\x58\x7e\xad\x58\ +\x83\xad\x5a\x86\xae\x5e\x8a\xb1\x5d\x87\xb2\x64\x8d\xbc\x6e\x96\ +\xc5\x6f\x9a\xc5\x6d\x97\xc0\x71\x99\xc4\x7d\xa2\xd0\x81\xa9\xd6\ +\x84\xaf\xda\x8a\xb1\xd9\x8a\xaa\xd2\x81\x9f\xc4\x7b\x9f\xc0\x8a\ +\xb1\xd1\x8e\xb2\xd8\x8f\xb3\xdc\x8a\xb3\xd9\x89\xb4\xd8\x85\xaf\ +\xd3\x83\xac\xd0\x81\xab\xd1\x80\xae\xd2\x80\xb1\xd2\x82\xaf\xd1\ +\x81\xaf\xcf\x7f\xae\xcc\x7e\xae\xcc\x7e\xae\xcd\x83\xb1\xd3\x8a\ +\xb4\xd4\x8f\xb3\xd5\x8f\xb2\xd2\x8e\xb3\xd0\x90\xb4\xd0\x93\xb7\ +\xd4\x8f\xb6\xd5\x87\xb5\xd1\x83\xb5\xcf\x81\xb0\xcf\x83\xae\xcf\ +\x80\xaa\xc6\x75\x9b\xb4\x55\x75\x8e\x3f\x5c\x73\x60\x7d\x97\x78\ +\x9a\xb7\x8b\xb0\xce\x8e\xb3\xd3\x90\xb3\xd4\x93\xb7\xda\x97\xba\ +\xde\x99\xba\xda\x92\xb5\xd2\x88\xa7\xc4\x69\x80\x9a\x1a\x30\x44\ +\x51\x6e\x80\x6f\x8d\x9f\x32\x48\x58\x19\x28\x35\x17\x26\x31\x0b\ +\x1f\x2a\x1a\x34\x44\x56\x73\x86\x62\x7c\x92\x49\x62\x77\x85\x9d\ +\xb0\x7d\x95\xa9\x76\x92\xa8\x83\xa5\xbf\x90\xb5\xcf\x8c\xb2\xcb\ +\x79\x9d\xb7\x3c\x5e\x79\x52\x71\x8e\x56\x75\x93\x60\x85\xa2\x8b\ +\xad\xcb\x98\xb6\xd7\x9a\xb5\xd8\x98\xb6\xd8\x95\xb4\xd4\x00\x00\ +\x00\x98\xbb\xd7\x99\xc0\xdd\x9b\xc0\xda\x97\xbd\xd4\x91\xba\xd1\ +\x92\xbe\xd7\x9a\xc1\xdb\x9a\xbe\xd8\x91\xb8\xd3\x8b\xb9\xd7\x8e\ +\xbd\xdc\x93\xbf\xde\x9a\xc1\xe1\x9e\xc1\xe1\x99\xbd\xd9\x94\xb9\ +\xd7\x8f\xbb\xd8\x8c\xbf\xd9\x8d\xc2\xdc\x92\xc3\xde\x92\xc1\xdc\ +\x93\xbf\xdc\x8d\xbb\xd8\x8c\xbc\xd7\x8c\xbf\xdd\x8a\xc1\xe0\x89\ +\xbf\xdd\x90\xc0\xdf\x8f\xbd\xda\x90\xbc\xdd\x8d\xbd\xdd\x87\xbd\ +\xd8\x87\xbd\xd7\x86\xb9\xd9\x89\xb9\xdd\x89\xbb\xdf\x8d\xbb\xde\ +\x90\xbb\xdf\x8e\xbc\xdd\x8c\xbe\xdb\x90\xc0\xdc\x8e\xc1\xda\x85\ +\xbc\xd5\x82\xb7\xd4\x88\xb8\xd9\x8a\xb9\xd8\x87\xb8\xd6\x81\xb7\ +\xd6\x83\xb4\xd4\x7b\xa0\xbc\x2b\x47\x60\x44\x62\x7a\x90\xb2\xce\ +\x94\xba\xd7\x92\xbd\xdf\x8e\xbb\xe0\x8b\xb8\xdb\x8a\xb4\xd7\x88\ +\xb2\xd7\x8f\xb7\xde\x92\xb8\xe1\x95\xb9\xdf\x97\xba\xe0\x95\xb9\ +\xdf\x94\xbb\xe0\x8e\xba\xde\x89\xb4\xd9\x88\xad\xd7\x87\xaa\xd7\ +\x84\xaa\xd6\x7f\xaa\xd2\x7c\xa9\xcf\x7f\xa8\xcf\x81\xab\xd3\x80\ +\xab\xd3\x7a\xa2\xce\x76\x9a\xc9\x6d\x92\xc3\x67\x91\xbc\x61\x8d\ +\xb5\x5a\x87\xaf\x55\x81\xad\x57\x81\xb1\x58\x81\xb2\x54\x7e\xae\ +\x51\x79\xa9\x51\x76\xaa\x54\x79\xaf\x55\x7d\xb4\x50\x7d\xb1\x4e\ +\x79\xaa\x51\x77\xa6\x55\x77\xa7\x56\x7c\xab\x5a\x80\xb1\x5f\x86\ +\xb8\x66\x8b\xbe\x66\x8f\xbe\x65\x91\xc1\x6c\x98\xc8\x72\x9e\xc9\ +\x75\xa1\xcd\x70\xa1\xcd\x6f\xa3\xca\x72\xa4\xca\x72\xa4\xc7\x6f\ +\xa3\xc5\x6f\xa3\xc4\x75\xa7\xca\x80\xae\xd1\x88\xb0\xd3\x8e\xb0\ +\xd5\x8c\xac\xd1\x89\xad\xcd\x8a\xb0\xd0\x8c\xb3\xd3\x8e\xb5\xd7\ +\x8e\xb8\xd9\x8b\xb9\xd8\x88\xb8\xd7\x87\xb6\xd6\x83\xb0\xce\x7d\ +\xa5\xc2\x5e\x7e\x9c\x42\x5e\x7b\x57\x76\x92\x81\xa2\xc0\x8a\xaf\ +\xcd\x8b\xaf\xd1\x90\xb3\xd5\x93\xb7\xd9\x99\xbb\xdd\x9d\xbb\xdb\ +\x95\xb9\xd5\x88\xaa\xc6\x69\x83\x9e\x1b\x35\x46\x49\x6a\x79\x7a\ +\x9b\xab\x3f\x57\x6a\x27\x39\x4d\x5b\x6c\x81\x53\x68\x7d\x35\x50\ +\x63\x30\x4e\x62\x43\x5f\x77\x61\x7c\x95\x78\x8e\xa5\x40\x54\x68\ +\x3c\x56\x6a\x70\x90\xa8\x8c\xb1\xca\x90\xb7\xd1\x82\xab\xc4\x5e\ +\x85\xa1\x37\x59\x78\x47\x6a\x87\x5b\x83\x9c\x8a\xaf\xcc\x98\xb4\ +\xd5\x9b\xb2\xd7\x9a\xb5\xd8\x95\xb3\xd6\x00\x00\x00\x7d\x95\xad\ +\x9b\xb6\xd3\x8d\xa7\xc1\x3d\x58\x6c\x3f\x5f\x74\x69\x8f\xa8\x84\ +\xa9\xc1\x7a\x98\xac\x47\x64\x78\x44\x67\x80\x67\x8f\xab\x8a\xb3\ +\xd2\x96\xba\xd9\x9a\xb6\xd4\x87\xa2\xbc\x71\x90\xaa\x77\x9c\xb8\ +\x83\xb1\xcc\x89\xbb\xd5\x8d\xbd\xd7\x8d\xbb\xd6\x92\xbb\xd9\x91\ +\xb6\xd7\x7d\xa4\xc4\x80\xac\xca\x87\xba\xd7\x89\xbc\xd9\x90\xbe\ +\xdd\x95\xbc\xdc\x8e\xb7\xd8\x8a\xb3\xd4\x8a\xb6\xd3\x89\xb8\xd4\ +\x86\xb5\xd4\x8a\xb8\xdc\x8d\xbb\xe0\x8f\xbc\xdf\x92\xbc\xe0\x8f\ +\xbe\xde\x8f\xbf\xde\x93\xc2\xdf\x94\xc4\xdc\x8d\xc2\xd9\x88\xbe\ +\xd5\x91\xc3\xdc\x90\xc1\xdb\x8e\xbf\xda\x8a\xbf\xdb\x8c\xbc\xd8\ +\x86\xac\xc4\x25\x43\x58\x29\x46\x5b\x89\xab\xc3\x99\xbf\xdc\x97\ +\xbf\xe3\x94\xbf\xe4\x95\xbf\xe0\x94\xba\xda\x95\xb9\xdb\x95\xbb\ +\xdb\x99\xbc\xdd\x9c\xbd\xdd\x9c\xbf\xdd\x98\xc0\xdc\x96\xc2\xde\ +\x93\xbe\xd9\x86\xab\xc6\x4b\x69\x89\x42\x64\x84\x58\x7f\xa3\x70\ +\x9a\xc0\x78\x9f\xbf\x8d\xaf\xce\x95\xba\xda\x93\xbd\xdf\x96\xbf\ +\xe2\x95\xba\xdf\x96\xbb\xe0\x8e\xb8\xdb\x89\xb6\xd6\x84\xb1\xd3\ +\x83\xaf\xd4\x83\xae\xd5\x85\xaf\xd5\x82\xad\xd5\x82\xaa\xd5\x7e\ +\xa7\xd1\x79\xa4\xd0\x73\xa1\xd0\x6f\xa0\xce\x6a\x9b\xc7\x63\x8e\ +\xbb\x5d\x84\xb2\x5e\x83\xb5\x5c\x82\xb7\x57\x7e\xb5\x51\x79\xae\ +\x4e\x76\xaa\x4b\x73\xa8\x4b\x74\xa9\x4e\x75\xa9\x4e\x75\xaa\x46\ +\x72\xa8\x3e\x6d\x9f\x3d\x6c\x9b\x3d\x6d\x99\x3c\x6e\x97\x42\x74\ +\x9d\x47\x78\xa1\x53\x81\xa9\x60\x87\xae\x66\x88\xb4\x62\x86\xb0\ +\x60\x89\xae\x6b\x96\xbb\x77\xa0\xca\x84\xa8\xd4\x89\xac\xd7\x8b\ +\xb2\xd9\x88\xb5\xd9\x89\xb6\xd8\x8a\xb5\xd5\x88\xad\xd2\x86\xa6\ +\xcf\x88\xa5\xce\x8e\xac\xd1\x8f\xb1\xd4\x92\xb5\xd8\x91\xb3\xd7\ +\x94\xb4\xd8\x97\xb7\xda\x9b\xb9\xdc\x9f\xbb\xdd\x97\xb6\xd4\x83\ +\xa2\xc2\x66\x7d\x9a\x1b\x32\x45\x3e\x5b\x6c\x82\xa1\xb2\x43\x5e\ +\x72\x38\x4f\x65\x84\x98\xb3\x92\xa8\xc4\x88\xa5\xbe\x7a\x99\xb2\ +\x7a\x96\xb3\x89\xa1\xc1\x6f\x83\xa1\x2f\x43\x5b\x21\x3a\x4f\x52\ +\x70\x89\x8d\xae\xc8\x97\xbb\xd5\x8e\xb6\xcf\x81\xa8\xc4\x67\x8a\ +\xaa\x5d\x7f\x9d\x7a\xa1\xbc\x8d\xb1\xd1\x9a\xb5\xd7\x9f\xb4\xd9\ +\x9d\xb5\xd9\x99\xb5\xd8\x00\x00\x00\x5d\x75\x8d\x7f\x99\xb6\x79\ +\x8f\xac\x25\x39\x53\x46\x63\x7b\x87\xac\xc5\x75\x9a\xb2\x41\x60\ +\x73\x1c\x35\x49\x4e\x6b\x80\x78\x9b\xb5\x74\x9a\xb8\x79\x9c\xb7\ +\x69\x83\x9a\x28\x42\x57\x46\x66\x7e\x64\x8a\xa5\x69\x93\xaf\x66\ +\x95\xae\x87\xb8\xd0\x89\xb8\xd0\x90\xb7\xd3\x8c\xb0\xd0\x66\x88\ +\xa7\x50\x75\x91\x89\xb2\xce\x8c\xb7\xd6\x92\xbb\xdb\x95\xba\xdc\ +\x8e\xb5\xd5\x86\xaa\xc6\x7d\x9f\xb7\x7e\xa0\xb8\x87\xaa\xc7\x91\ +\xb4\xd4\x90\xb5\xd7\x8f\xb7\xd9\x8c\xb8\xd9\x8f\xbb\xdb\x8d\xbb\ +\xd8\x8d\xb7\xd3\x8c\xb2\xcc\x8e\xb6\xcf\x8d\xba\xd2\x8e\xbd\xd2\ +\x90\xbc\xd2\x8e\xb9\xd0\x8c\xba\xd4\x8b\xba\xd6\x88\xaf\xca\x2e\ +\x4a\x63\x1c\x34\x4a\x70\x90\xa6\x9b\xc0\xdc\x9d\xc2\xe4\x97\xbe\ +\xe1\x96\xbb\xdb\x94\xb7\xd8\x93\xb6\xd8\x96\xba\xdb\x97\xb9\xd8\ +\x97\xbb\xd7\x97\xc0\xd9\x96\xc2\xda\x9a\xc4\xdd\x9a\xc1\xda\x82\ +\xa4\xbb\x2e\x4d\x63\x6a\x8c\xa5\x88\xad\xcd\x8b\xac\xd0\x7d\x98\ +\xb8\x53\x6e\x89\x76\x96\xb0\x8b\xb3\xd0\x97\xbf\xde\x9b\xc0\xde\ +\x99\xbc\xdd\x97\xbc\xdc\x95\xbf\xd9\x96\xbe\xda\x97\xbd\xde\x94\ +\xbc\xdc\x94\xbb\xdb\x96\xba\xdb\x94\xb9\xdc\x8f\xb9\xd9\x8c\xba\ +\xd7\x8a\xb9\xd7\x8a\xb9\xd9\x83\xb3\xd3\x83\xaf\xcf\x86\xab\xcf\ +\x8a\xad\xd5\x8a\xac\xd8\x89\xaf\xdb\x80\xab\xd6\x7f\xa8\xd3\x80\ +\xa7\xd2\x81\xa5\xce\x85\xa6\xd1\x80\xa0\xce\x74\x99\xc9\x69\x91\ +\xbf\x63\x8e\xb9\x5f\x8c\xb3\x59\x88\xaf\x5b\x89\xb3\x57\x85\xb1\ +\x53\x82\xab\x50\x7b\xa3\x4b\x73\x9a\x42\x6a\x94\x3d\x69\x92\x3b\ +\x68\x94\x3e\x69\x9a\x43\x69\x9b\x42\x63\x94\x47\x66\x97\x45\x6a\ +\x98\x4c\x74\x9e\x54\x7b\xa3\x5a\x7e\xab\x60\x7f\xb2\x63\x81\xb3\ +\x6b\x89\xb7\x70\x92\xbc\x71\x95\xbd\x7a\x9a\xc4\x85\x9f\xcb\x8b\ +\xa4\xd0\x8d\xa9\xd3\x8e\xad\xd4\x88\xaa\xcd\x7b\x9b\xbf\x62\x7c\ +\x99\x20\x35\x46\x34\x4b\x59\x75\x90\x9f\x44\x5f\x6f\x51\x6c\x7f\ +\x98\xb2\xca\x9c\xb7\xd2\x92\xb0\xcb\x97\xb5\xd2\x9b\xb7\xd6\x94\ +\xad\xcf\x82\x98\xb8\x55\x68\x86\x37\x4f\x6a\x65\x80\x9a\x93\xb1\ +\xcc\x9c\xbb\xd5\x97\xba\xd3\x92\xb5\xd0\x8a\xac\xcc\x8c\xac\xcd\ +\x90\xb1\xd0\x91\xb2\xd3\x99\xb4\xd7\x9f\xb5\xd8\x9c\xb4\xd6\x9b\ +\xb4\xd5\x00\x00\x00\x8e\xae\xca\x9b\xb9\xda\x92\xad\xd0\x71\x8c\ +\xaa\x58\x78\x95\x7c\xa3\xbe\x9a\xc2\xda\x91\xb4\xca\x4f\x6d\x82\ +\x2e\x4c\x60\x5d\x7e\x95\x85\xab\xc4\x8f\xb5\xcb\x51\x70\x82\x1e\ +\x3d\x4d\x6c\x92\xa7\x90\xb9\xd3\x92\xbe\xd9\x75\xa2\xbc\x50\x7d\ +\x97\x7f\xa9\xc4\x91\xb6\xd7\x93\xb5\xd8\x82\xa7\xc3\x3a\x5e\x77\ +\x71\x93\xac\x92\xb6\xd3\x95\xbd\xdb\x97\xbd\xdd\x8e\xb3\xd0\x77\ +\x95\xab\x38\x52\x62\x27\x42\x52\x46\x63\x7b\x6f\x8d\xaa\x8a\xaa\ +\xc9\x8c\xb1\xd1\x8a\xb3\xd3\x8b\xb2\xd0\x87\xac\xc7\x5c\x7e\x96\ +\x42\x5f\x78\x57\x75\x93\x6f\x93\xae\x74\x99\xaf\x6f\x90\xa2\x66\ +\x89\x9c\x72\x9d\xb5\x80\xb1\xcc\x84\xb0\xce\x43\x63\x7d\x14\x33\ +\x46\x53\x79\x8b\x94\xbc\xd4\x8f\xb7\xd2\x87\xad\xc8\x84\xa7\xc3\ +\x88\xab\xc8\x91\xb1\xd0\x93\xb6\xd5\x91\xb7\xd4\x8c\xb6\xd3\x8a\ +\xbb\xd4\x8d\xbe\xd8\x94\xbf\xdb\x94\xbe\xd7\x85\xac\xc1\x49\x6d\ +\x7f\x5f\x86\x98\x8f\xb4\xce\x94\xb2\xd1\x82\x98\xb5\x37\x4f\x65\ +\x3d\x5e\x73\x84\xac\xc5\x95\xba\xd7\x98\xbd\xd9\x97\xbb\xd9\x97\ +\xbc\xdb\x9b\xc0\xdc\x9d\xc2\xde\x9b\xc2\xe1\x9a\xc2\xe2\x99\xbf\ +\xde\x9a\xbd\xde\x9b\xbe\xdf\x99\xbf\xdc\x97\xc1\xd9\x96\xc0\xd8\ +\x96\xc0\xd9\x96\xc0\xd9\x91\xbc\xd5\x96\xbb\xd7\x99\xb9\xda\x97\ +\xb8\xdc\x93\xb7\xdb\x8c\xb6\xd9\x89\xb5\xd4\x8d\xb4\xd3\x94\xb7\ +\xd6\x97\xb7\xda\x96\xb5\xda\x8c\xb0\xd5\x81\xa8\xcb\x7d\xa9\xca\ +\x81\xab\xcb\x82\xab\xcb\x89\xaf\xd2\x89\xb0\xd5\x87\xaf\xd4\x85\ +\xac\xcf\x80\xa9\xca\x7a\xa7\xc7\x7e\xab\xce\x81\xab\xd4\x7f\xa9\ +\xd4\x7d\xa5\xd0\x7a\x9e\xc8\x75\x94\xc2\x6b\x8e\xbc\x64\x8d\xb8\ +\x61\x8c\xb4\x5e\x85\xb1\x5c\x7e\xae\x58\x76\xa7\x4f\x6e\x9e\x45\ +\x69\x96\x3e\x63\x91\x3a\x59\x8a\x40\x5a\x8f\x40\x5c\x91\x3e\x5f\ +\x8f\x3e\x64\x90\x44\x6b\x95\x41\x67\x8f\x38\x56\x75\x15\x2b\x3d\ +\x19\x2c\x39\x4c\x62\x6f\x38\x55\x60\x73\x93\xa3\x9a\xba\xd0\x9d\ +\xbc\xd6\x9c\xbb\xd6\x9c\xbb\xd7\xa0\xba\xda\x9a\xb3\xd2\x90\xa7\ +\xc6\x81\x99\xb7\x76\x92\xad\x88\xa5\xc0\x9a\xb8\xd1\x9a\xba\xd1\ +\x9a\xbb\xd3\x97\xba\xd6\x97\xb8\xd9\x99\xb6\xd7\x97\xb4\xd4\x95\ +\xb4\xd4\x99\xb6\xd7\x9b\xb3\xd6\x98\xb1\xd2\x98\xb2\xd0\x00\x00\ +\x00\x96\xc0\xdd\x9d\xc2\xe3\x9c\xbf\xe0\x99\xbc\xdd\x97\xbc\xdc\ +\x9c\xbf\xdd\xa6\xca\xe5\xa1\xc6\xde\x9e\xc1\xda\x95\xb7\xd0\x7d\ +\xa3\xbb\x85\xad\xc5\x94\xbd\xd2\x78\x9c\xb1\x30\x56\x6a\x5e\x89\ +\xa1\x92\xc0\xdb\x96\xc3\xdf\x8f\xbf\xd7\x7d\xa8\xc3\x40\x65\x84\ +\x80\xa5\xc7\x95\xb9\xd9\x92\xb7\xd3\x6d\x92\xa8\x3f\x63\x77\x8c\ +\xb0\xc9\x9b\xc2\xde\x9a\xc1\xdc\x8d\xb0\xc9\x4c\x67\x7a\x13\x2c\ +\x3b\x26\x41\x52\x76\x95\xae\x80\xa0\xc0\x68\x8d\xab\x66\x8c\xab\ +\x80\xa7\xc7\x86\xaa\xc8\x6a\x89\xa4\x1f\x3c\x52\x44\x61\x78\x79\ +\x97\xb3\x69\x86\xa2\x3b\x56\x6d\x1a\x35\x46\x2d\x4d\x5f\x63\x8e\ +\xa5\x7a\xad\xc8\x7f\xad\xca\x4e\x72\x8a\x1b\x3d\x51\x54\x7b\x90\ +\x8b\xb3\xc9\x77\x9c\xaf\x4a\x6b\x7c\x3c\x5d\x72\x50\x72\x8c\x66\ +\x88\xa4\x7d\xa3\xbd\x90\xb8\xd1\x89\xb6\xd1\x83\xb8\xd2\x83\xb8\ +\xd2\x8b\xb8\xd2\x89\xb1\xc9\x80\xa5\xbc\x72\x97\xaa\x4a\x74\x86\ +\x7c\xa2\xb9\x8e\xab\xc7\x72\x88\xa0\x17\x31\x45\x38\x5e\x71\x86\ +\xb0\xc6\x8e\xb1\xca\x8c\xae\xc7\x8e\xb3\xcd\x8f\xb5\xd0\x8e\xb4\ +\xce\x92\xba\xd4\x94\xbf\xdc\x96\xbf\xdf\x96\xbd\xde\x98\xbc\xdf\ +\x99\xbe\xe0\x9e\xc2\xe1\x9c\xbf\xde\x9c\xc0\xdd\x9e\xc1\xdc\x9d\ +\xc1\xdc\x9a\xc2\xdb\x99\xbf\xd9\x9d\xbd\xdd\x97\xb9\xdc\x8f\xb7\ +\xd9\x8a\xb8\xd7\x8b\xbb\xd7\x91\xbc\xd8\x99\xbf\xdb\x9c\xbf\xdf\ +\x98\xba\xdb\x8f\xb4\xd3\x86\xaf\xca\x83\xb0\xcb\x87\xb3\xce\x8b\ +\xb4\xcd\x8c\xb1\xcd\x90\xb3\xd3\x90\xb4\xd5\x90\xb5\xd2\x8c\xb3\ +\xcc\x84\xb0\xc7\x88\xb5\xcd\x8f\xb6\xd2\x8f\xb4\xd3\x8e\xb3\xd3\ +\x8c\xb0\xd0\x8c\xad\xd2\x88\xab\xd2\x88\xaf\xd5\x8b\xb6\xd9\x8e\ +\xb6\xdc\x91\xb5\xda\x91\xb2\xd8\x90\xb2\xd9\x89\xab\xd4\x84\xa5\ +\xd0\x7f\x9c\xc9\x79\x95\xc5\x74\x93\xc3\x6a\x90\xbd\x62\x8a\xb4\ +\x5d\x85\xae\x58\x80\xa7\x4e\x70\x90\x2d\x49\x5d\x17\x2f\x3f\x2d\ +\x48\x56\x45\x65\x74\x93\xb5\xc8\x99\xbc\xd4\x9f\xbd\xda\xa1\xbd\ +\xdb\xa1\xbb\xda\xa0\xba\xd9\x9b\xb4\xd1\x96\xad\xc9\x8a\xa2\xbe\ +\x86\xa3\xbe\x92\xb2\xcc\x98\xb9\xd0\x9a\xbb\xd1\x9a\xb9\xd2\x9a\ +\xba\xd6\x9b\xba\xdb\x9b\xb8\xd9\x9c\xb5\xd5\x9b\xb6\xd5\x9c\xb6\ +\xd8\x9c\xb4\xd8\x9b\xb4\xd6\x97\xb2\xd0\x00\x00\x00\x95\xc3\xdf\ +\x9d\xc4\xe5\x9f\xc4\xe3\xa1\xc4\xe5\xa3\xc8\xe7\xa8\xc9\xe7\xa9\ +\xc8\xe5\xa8\xc8\xe5\xa0\xc2\xe0\x9b\xc0\xdd\x9b\xbf\xde\x9b\xc0\ +\xe0\x9a\xc2\xdd\x95\xbc\xd7\x8a\xb2\xce\x8d\xb9\xd5\x97\xc0\xdd\ +\x97\xc3\xdf\x93\xc5\xdb\x8d\xbb\xd5\x77\x9e\xbb\x40\x67\x85\x91\ +\xb5\xd3\x99\xbe\xda\x95\xbc\xd3\x78\xa0\xb5\x8a\xb0\xc8\x9f\xc4\ +\xe0\xa1\xc5\xdf\x91\xb4\xcc\x6f\x91\xa6\x3d\x5f\x72\x22\x46\x5c\ +\x75\x9b\xb8\x92\xb5\xd7\x93\xb7\xd8\x7d\xa2\xc3\x64\x89\xab\x7d\ +\xa3\xc2\x76\x94\xb3\x3b\x58\x73\x41\x62\x7d\x5a\x7b\x96\x66\x81\ +\x9c\x3d\x54\x6e\x2f\x48\x5f\x3b\x5d\x73\x72\x9e\xb6\x7d\xae\xca\ +\x80\xaa\xc9\x59\x7b\x97\x21\x44\x5c\x71\x97\xae\x8d\xb1\xc7\x44\ +\x63\x77\x0b\x28\x39\x29\x48\x5d\x79\x9a\xb6\x82\xa7\xc3\x5b\x81\ +\x99\x6a\x90\xa8\x8e\xb8\xd2\x85\xb5\xd0\x81\xb3\xcb\x81\xac\xc1\ +\x5c\x7d\x92\x45\x64\x78\x65\x89\x9b\x77\xa1\xb3\x79\xa2\xb9\x82\ +\xa1\xb9\x46\x5a\x6e\x0f\x2c\x3d\x59\x80\x94\x8b\xb1\xc7\x70\x8e\ +\xa3\x54\x6e\x82\x6d\x89\x9c\x6d\x8a\x9e\x5f\x7f\x92\x7e\xa4\xb7\ +\x8a\xb3\xca\x8b\xb2\xcc\x8c\xb1\xce\x91\xb8\xd6\x9a\xbf\xdf\x9f\ +\xc0\xe0\xa0\xbe\xdf\x9f\xbd\xde\x9e\xbc\xdc\x97\xb8\xd4\x96\xb9\ +\xd3\x99\xbc\xd6\x9c\xbc\xd9\x95\xb9\xd7\x8e\xb7\xd5\x8a\xb7\xd5\ +\x8e\xbc\xd8\x95\xbf\xdb\x9a\xc1\xdd\x97\xbe\xdb\x92\xb7\xd4\x8d\ +\xb0\xce\x87\xad\xc8\x8a\xb3\xce\x8b\xb3\xd0\x8e\xb3\xcf\x8d\xb1\ +\xce\x91\xb4\xd2\x94\xb8\xd6\x93\xb8\xd3\x8e\xb5\xca\x8a\xb4\xc4\ +\x90\xb8\xcd\x98\xb8\xd3\x9c\xb9\xd5\x9b\xba\xd7\x9a\xba\xd9\x9a\ +\xb9\xdb\x99\xb8\xdc\x99\xba\xda\x9c\xbf\xdf\x96\xba\xdb\x96\xba\ +\xd8\x94\xb9\xd6\x95\xb9\xda\x92\xb4\xd8\x92\xb4\xd7\x90\xb0\xd2\ +\x8d\xaf\xd1\x8c\xaf\xd3\x8d\xb0\xd6\x8d\xb1\xd4\x8d\xb1\xd1\x8a\ +\xad\xcc\x7f\xa6\xc0\x6e\x95\xab\x51\x75\x87\x53\x74\x85\x81\xa2\ +\xb6\x98\xba\xd2\x9b\xbb\xd8\xa0\xbe\xdf\xa0\xbd\xdf\x9e\xbc\xdb\ +\x9a\xb9\xd6\x9b\xb7\xd4\x96\xae\xca\x8b\xa5\xc0\x90\xac\xc7\x95\ +\xb6\xcd\x95\xb9\xcf\x99\xb9\xd0\x9e\xba\xd4\x9f\xba\xd8\x9e\xbb\ +\xdc\x9e\xba\xd9\xa0\xbb\xd7\xa0\xb8\xd7\xa2\xba\xdb\xa0\xb8\xdc\ +\x9b\xb5\xd8\x96\xb4\xd6\x00\x00\x00\x96\xc0\xde\x9f\xc3\xe5\xa1\ +\xc4\xe5\xa2\xc5\xe5\xa1\xc7\xe5\xa4\xc9\xe5\xa8\xc8\xe5\xa5\xc4\ +\xe3\xa1\xc3\xe2\x9d\xc1\xe1\x99\xc0\xe2\x97\xbe\xe3\x94\xbe\xde\ +\x93\xbd\xdd\x94\xbe\xe1\x91\xbf\xdf\x94\xc0\xdd\x94\xc3\xdd\x93\ +\xc6\xdd\x92\xc2\xdd\x8d\xb8\xd4\x53\x7b\x96\x71\x93\xae\x9c\xbf\ +\xdb\x9d\xc3\xde\x97\xbf\xdb\x97\xbf\xdb\x9f\xc3\xe2\xa2\xc4\xdf\ +\x99\xbf\xd9\x89\xb5\xce\x81\xaf\xc7\x79\xa6\xc1\x80\xaa\xc9\x98\ +\xbc\xde\x97\xba\xdb\x90\xb3\xd2\x77\x9c\xbb\x5e\x82\xa0\x8d\xae\ +\xce\x7e\xa3\xc1\x62\x89\xa7\x58\x7f\x9b\x73\x92\xaf\x8f\xab\xca\ +\x8a\xa8\xc7\x80\xa3\xc2\x6b\x94\xb1\x7b\xa8\xc5\x88\xb1\xd0\x68\ +\x8d\xaa\x2d\x52\x6b\x88\xac\xc4\x93\xb7\xd2\x84\xa6\xc2\x5f\x84\ +\x9c\x63\x8b\xa6\x83\xab\xcc\x8c\xb2\xd4\x86\xa9\xc8\x44\x66\x81\ +\x6f\x95\xae\x88\xb2\xcc\x81\xab\xc4\x74\x9a\xb3\x3b\x5e\x73\x2c\ +\x4f\x61\x78\x9f\xb2\x7f\xa9\xbf\x7c\xa4\xbc\x76\x92\xa7\x24\x38\ +\x48\x15\x34\x43\x62\x8b\xa0\x81\xa5\xbf\x7a\x94\xac\x31\x47\x5a\ +\x22\x34\x48\x27\x3d\x4f\x25\x3f\x50\x48\x66\x77\x7a\x9a\xaf\x6d\ +\x8d\xa3\x5c\x7d\x95\x8b\xaf\xc8\x96\xbb\xd7\x99\xbc\xd9\x9a\xbb\ +\xda\x94\xb5\xd6\x94\xaf\xd0\x83\xa1\xba\x88\xa7\xbd\x90\xb2\xcb\ +\x93\xb3\xd0\x92\xb3\xce\x88\xaf\xc7\x89\xb2\xcb\x91\xba\xd5\x96\ +\xbc\xd7\x92\xb7\xd2\x8c\xb2\xcd\x88\xac\xc9\x86\xa7\xc4\x81\xa1\ +\xbb\x80\xa1\xbc\x86\xa8\xc4\x8d\xae\xcc\x8e\xaf\xcb\x8c\xb2\xc9\ +\x8d\xb4\xcc\x8f\xb5\xcd\x91\xb6\xca\x93\xb5\xc8\x96\xb5\xcd\x9a\ +\xb5\xd3\x9e\xb8\xd9\xa1\xbd\xde\x9b\xbc\xdb\x98\xb9\xd8\x9c\xba\ +\xda\xa3\xbf\xe1\xa4\xc1\xe2\x9c\xbd\xde\x96\xba\xd9\x94\xba\xd8\ +\x91\xba\xda\x90\xb7\xd8\x90\xb6\xd3\x8f\xb5\xd0\x90\xb7\xd2\x97\ +\xba\xda\x9a\xbc\xdf\x9b\xba\xdc\x99\xb9\xd5\x96\xb7\xd0\x8e\xb5\ +\xcd\x8a\xb3\xc9\x84\xac\xc3\x89\xae\xc5\x95\xb8\xd0\x97\xbb\xd7\ +\x97\xba\xd9\x98\xba\xdc\x96\xba\xd9\x92\xb8\xd6\x8f\xb6\xd4\x92\ +\xb3\xd2\x8f\xac\xc9\x89\xa5\xc0\x94\xb0\xcb\x97\xb6\xce\x99\xbb\ +\xd4\x96\xb7\xd2\x9b\xb7\xd7\x9d\xb9\xda\x9b\xba\xdb\x9e\xbc\xda\ +\x9e\xb9\xd6\x9e\xb7\xd8\x9e\xb7\xd9\x9e\xb8\xdc\x97\xb5\xd8\x8e\ +\xb0\xd5\x00\x00\x00\x9a\xc0\xe2\x9e\xc1\xe5\xa0\xc3\xe6\x9c\xc1\ +\xe2\x98\xc2\xdf\x9d\xc7\xe1\xa2\xc7\xe5\xa2\xc4\xe5\x9e\xc3\xe3\ +\x9a\xc3\xe3\x95\xc1\xe4\x91\xbd\xe2\x8f\xbd\xdf\x8d\xba\xdc\x8f\ +\xbb\xe0\x8e\xbb\xe0\x8f\xbd\xdd\x91\xc2\xda\x8f\xc1\xd9\x91\xc0\ +\xdc\x8e\xbb\xd7\x71\x9d\xb6\x4a\x6f\x87\x95\xb6\xd1\x97\xbc\xda\ +\x96\xbf\xdf\x96\xc1\xe2\x9b\xc2\xe4\x9e\xc2\xe3\x97\xc0\xe0\x8d\ +\xbc\xda\x87\xb9\xd6\x88\xb8\xd7\x8b\xb8\xd9\x95\xb9\xd7\x93\xb5\ +\xcf\x8c\xaf\xc6\x77\x9c\xb5\x51\x76\x8f\x6f\x95\xb0\x89\xb4\xd4\ +\x89\xb5\xd6\x8a\xb6\xd6\x90\xb8\xd8\x95\xb7\xda\x90\xb4\xd8\x8c\ +\xb4\xd7\x8b\xb5\xd5\x88\xb3\xd0\x8b\xb5\xd6\x7b\xa2\xbf\x27\x4d\ +\x65\x7f\xa7\xbe\x93\xbc\xd9\x88\xb3\xd4\x80\xb0\xd0\x83\xb6\xd7\ +\x83\xb4\xd7\x8b\xb5\xd8\x91\xb7\xd8\x68\x8b\xaa\x3e\x61\x7d\x81\ +\xa8\xc3\x8a\xb1\xcd\x7e\xa7\xc5\x5c\x87\xa2\x40\x6c\x82\x6d\x98\ +\xaf\x86\xb3\xcc\x87\xb1\xca\x6f\x8e\xa2\x15\x2c\x3a\x15\x36\x46\ +\x5c\x8a\xa1\x71\x9a\xb8\x63\x82\xa1\x3e\x58\x73\x46\x5e\x77\x6c\ +\x87\xa0\x71\x90\xa5\x6c\x8c\xa0\x5f\x7d\x95\x4b\x67\x81\x27\x46\ +\x5f\x68\x8f\xa6\x8f\xb8\xd0\x93\xbc\xd4\x8d\xb3\xd1\x82\xa6\xc7\ +\x78\x96\xb4\x46\x63\x78\x38\x5b\x6d\x6c\x93\xaa\x7a\x9f\xb9\x5a\ +\x7b\x92\x4c\x71\x83\x63\x8c\xa1\x79\xa3\xbc\x7f\xa3\xbd\x63\x85\ +\x9b\x59\x7e\x95\x75\x9a\xb4\x6f\x94\xaf\x5f\x80\x96\x44\x60\x74\ +\x61\x7f\x96\x85\xa3\xbd\x8c\xaa\xc3\x82\xa4\xb5\x76\x9c\xac\x83\ +\xa8\xba\x90\xb1\xc5\x94\xb0\xc5\x94\xb1\xc8\x97\xb5\xd1\x9c\xba\ +\xd9\x97\xb8\xd7\x8d\xb4\xce\x8b\xb4\xcd\x95\xb7\xd5\x9d\xb9\xd8\ +\x9b\xb8\xd6\x94\xb6\xd3\x8d\xb4\xd1\x8d\xb7\xd5\x8c\xb5\xd5\x90\ +\xb6\xd5\x8e\xb3\xce\x8c\xb4\xcc\x90\xb7\xd1\x95\xb8\xd8\x9a\xbc\ +\xe0\x97\xba\xdc\x98\xbb\xd7\x9a\xbb\xd4\x99\xba\xd6\x93\xb9\xd3\ +\x90\xb7\xd1\x93\xb9\xd3\x98\xbb\xd7\x94\xb9\xd6\x92\xb9\xd7\x90\ +\xb9\xd5\x8d\xb8\xd5\x8b\xb8\xd5\x8c\xb5\xd5\x8d\xb1\xd2\x87\xa8\ +\xc7\x86\xa9\xc2\x92\xb5\xcb\x97\xb8\xd3\x9a\xbb\xd7\x94\xb8\xd6\ +\x95\xb9\xda\x93\xb8\xd9\x92\xb7\xd7\x98\xba\xd8\x9a\xb8\xd7\x9c\ +\xb8\xd9\x9c\xb9\xda\x9d\xb9\xda\x97\xb7\xd9\x8c\xb1\xd3\x00\x00\ +\x00\x9d\xc1\xe2\x9d\xc0\xe3\x99\xc0\xe3\x94\xbe\xdd\x92\xbe\xdb\ +\x96\xc0\xdd\x9e\xc4\xe5\x9a\xc2\xe6\x95\xc0\xe4\x91\xbf\xe1\x8e\ +\xc0\xe0\x8b\xc0\xe0\x89\xbd\xde\x8d\xbb\xde\x8f\xba\xe1\x8d\xb9\ +\xdf\x8c\xba\xda\x8e\xc0\xd8\x90\xc1\xd9\x8f\xbb\xd8\x8b\xb9\xd3\ +\x7a\xab\xc0\x35\x5d\x73\x78\xa0\xb6\x8d\xb8\xd4\x8b\xba\xdc\x8e\ +\xbe\xe2\x93\xc0\xe4\x91\xbc\xe1\x92\xbc\xdf\x91\xbd\xde\x8b\xbb\ +\xdb\x89\xba\xda\x88\xb6\xd4\x88\xab\xc5\x66\x83\x97\x3e\x5c\x6e\ +\x36\x58\x6a\x2a\x51\x63\x63\x90\xa7\x88\xb9\xd8\x91\xc0\xe2\x91\ +\xbe\xdf\x8e\xbc\xd9\x8f\xb8\xd9\x8a\xb4\xd9\x8a\xb5\xdc\x8c\xb9\ +\xdd\x8c\xba\xdb\x8d\xb8\xd9\x85\xac\xcb\x2f\x56\x6c\x6c\x98\xae\ +\x89\xba\xd5\x83\xb5\xd8\x7e\xb2\xd6\x80\xb4\xd8\x84\xb5\xd8\x87\ +\xb0\xd0\x88\xb0\xcd\x7e\xa2\xc1\x35\x59\x7a\x67\x90\xad\x88\xb5\ +\xd3\x87\xb6\xd6\x86\xb5\xd4\x83\xb3\xcf\x84\xb2\xce\x87\xb7\xd4\ +\x84\xb4\xce\x72\x99\xad\x1b\x39\x48\x15\x3b\x4d\x53\x83\x9c\x65\ +\x96\xb5\x81\xa8\xc9\x80\xa3\xc4\x8a\xad\xcd\x90\xb6\xd4\x8f\xb9\ +\xd3\x8d\xb8\xd1\x8e\xb6\xd2\x88\xac\xca\x6b\x91\xaf\x65\x91\xac\ +\x85\xb5\xce\x8f\xbb\xd6\x87\xb2\xcf\x78\x9f\xc0\x60\x82\xa2\x30\ +\x53\x6b\x28\x51\x67\x57\x83\x9c\x65\x8e\xa8\x39\x5d\x72\x15\x3b\ +\x4c\x53\x7d\x90\x6f\x98\xb2\x72\x95\xb0\x3b\x5a\x71\x1b\x3d\x53\ +\x2a\x50\x69\x47\x6e\x86\x46\x67\x7b\x17\x35\x45\x32\x4f\x62\x76\ +\x96\xad\x86\xa3\xbb\x61\x7e\x90\x28\x49\x55\x31\x53\x5e\x43\x60\ +\x70\x4a\x64\x75\x4a\x68\x79\x5f\x7e\x93\x74\x95\xac\x73\x95\xab\ +\x68\x8f\xa4\x73\x9d\xb5\x86\xa9\xc3\x8d\xa9\xc2\x87\xa2\xbb\x82\ +\xa5\xba\x81\xa8\xbf\x85\xaf\xc8\x8a\xaf\xcd\x91\xaf\xce\x89\xa7\ +\xc1\x74\x98\xab\x7e\xa3\xb8\x91\xb4\xcf\x93\xb6\xd7\x93\xba\xdb\ +\x94\xbc\xd7\x99\xbb\xd5\x9a\xb8\xd3\x95\xb7\xd2\x93\xb6\xd1\x96\ +\xbb\xd7\x96\xb8\xd7\x95\xb8\xd7\x91\xb9\xd6\x8e\xb9\xd4\x8e\xbb\ +\xd8\x8f\xb7\xd8\x92\xb5\xd7\x90\xb1\xd0\x89\xab\xc6\x8a\xb0\xc8\ +\x91\xb7\xcf\x95\xb9\xd3\x96\xba\xd5\x94\xba\xd5\x92\xbc\xd7\x92\ +\xba\xd8\x93\xb9\xd7\x96\xba\xda\x9a\xba\xdb\x98\xb8\xdb\x99\xb8\ +\xdb\x9c\xb8\xd8\x97\xb5\xd5\x8f\xb1\xd2\x00\x00\x00\x99\xbf\xe0\ +\x98\xbf\xe0\x96\xc1\xe1\x93\xc3\xe0\x92\xc4\xdf\x93\xc2\xe1\x98\ +\xc4\xe6\x94\xc1\xe6\x8e\xbe\xe3\x8b\xbd\xe1\x89\xbe\xdf\x8a\xc0\ +\xe0\x8d\xbf\xe2\x8f\xbb\xe0\x92\xba\xde\x90\xb9\xdd\x8d\xba\xdb\ +\x8a\xbb\xd7\x91\xc0\xdd\x91\xbf\xdd\x8c\xbc\xd6\x83\xb1\xc8\x3e\ +\x66\x7b\x61\x8b\xa0\x87\xb7\xd0\x86\xbd\xda\x88\xc1\xe0\x8c\xc1\ +\xe2\x8b\xbd\xdf\x8d\xbb\xdc\x8e\xbd\xdd\x8b\xbd\xd9\x89\xbb\xd8\ +\x89\xb5\xd2\x75\x96\xae\x29\x42\x56\x39\x52\x66\x6d\x8c\x9e\x30\ +\x58\x67\x6c\x9d\xb1\x89\xbd\xda\x93\xc3\xe4\x92\xbf\xe0\x90\xc0\ +\xdd\x8d\xbc\xdc\x8a\xb9\xdc\x86\xb7\xde\x84\xb8\xdf\x87\xb8\xda\ +\x8c\xb9\xd8\x8c\xb5\xd0\x43\x6a\x83\x4e\x7b\x93\x84\xb7\xd1\x81\ +\xb7\xd7\x81\xb6\xd8\x81\xb3\xd6\x81\xad\xcc\x60\x82\x9b\x53\x78\ +\x8e\x66\x8d\xa8\x3f\x67\x86\x4e\x7b\x98\x81\xb4\xd1\x88\xbb\xd9\ +\x88\xb7\xd6\x8b\xb7\xd4\x88\xb7\xd4\x82\xb5\xd2\x84\xb9\xd4\x7e\ +\xad\xc6\x34\x5a\x6e\x1c\x45\x5a\x61\x91\xab\x5b\x8c\xab\x5f\x89\ +\xa8\x83\xab\xc9\x89\xb2\xd2\x8f\xbb\xda\x8c\xbb\xd9\x89\xb9\xd6\ +\x89\xb9\xd7\x89\xb7\xd3\x86\xb5\xd1\x87\xb7\xd1\x8a\xba\xd5\x8d\ +\xba\xd8\x89\xb6\xd5\x88\xb3\xd2\x82\xab\xca\x7d\xa4\xc2\x7a\xa5\ +\xc2\x82\xb1\xce\x86\xb0\xce\x75\x9c\xb6\x4d\x75\x8a\x63\x8b\xa2\ +\x85\xad\xc9\x7f\xa6\xc3\x64\x87\xa2\x4f\x76\x90\x5f\x87\xa4\x53\ +\x7a\x94\x34\x57\x6b\x26\x48\x59\x4c\x71\x87\x7a\xa0\xb8\x77\x97\ +\xb3\x44\x61\x78\x1b\x3b\x4a\x4c\x6d\x7a\x60\x82\x92\x31\x53\x64\ +\x29\x4a\x5c\x53\x77\x89\x47\x67\x7d\x2b\x4a\x5d\x24\x47\x5a\x47\ +\x6e\x85\x5b\x7d\x94\x4e\x68\x7a\x31\x4a\x5a\x35\x54\x64\x59\x7f\ +\x93\x6e\x93\xad\x7f\xa3\xbf\x8f\xac\xc9\x7d\x98\xb0\x43\x61\x71\ +\x4c\x6d\x7d\x85\xa8\xbf\x8e\xb0\xce\x8c\xaf\xcd\x89\xad\xc5\x8c\ +\xac\xc2\x91\xae\xc8\x92\xb2\xcc\x92\xb6\xd0\x96\xba\xd5\x97\xbc\ +\xd8\x93\xb9\xd6\x8f\xb9\xd5\x8f\xbb\xd9\x92\xbb\xda\x92\xb8\xd9\ +\x91\xb3\xd1\x91\xaf\xcb\x87\xa9\xc1\x8c\xb3\xcb\x91\xbb\xd1\x90\ +\xba\xd2\x91\xb8\xd4\x8f\xb7\xd1\x8d\xb9\xd0\x90\xba\xd4\x95\xba\ +\xd7\x94\xb8\xd7\x94\xb8\xd8\x95\xb9\xda\x98\xb9\xda\x9c\xb9\xd9\ +\x99\xb7\xd6\x94\xb3\xd5\x00\x00\x00\x90\xbf\xdc\x8b\xbc\xd8\x91\ +\xc1\xdc\x97\xc8\xe1\x97\xca\xe5\x95\xc6\xe4\x95\xc2\xe6\x96\xc4\ +\xe8\x91\xc0\xe4\x8b\xbd\xdf\x89\xbc\xdd\x8b\xbe\xe0\x8c\xbd\xe1\ +\x91\xbd\xe1\x97\xbd\xde\x94\xbc\xdd\x8d\xba\xdb\x8c\xbb\xdc\x90\ +\xbe\xe0\x92\xc1\xe1\x90\xbf\xde\x84\xb1\xca\x3f\x66\x7d\x63\x8d\ +\xa5\x83\xb3\xce\x85\xbc\xd8\x86\xbf\xd9\x8d\xc2\xdd\x8d\xc0\xdd\ +\x8d\xbe\xde\x8c\xbc\xda\x8b\xbe\xd7\x8d\xbf\xd7\x90\xb9\xd5\x76\ +\x97\xb0\x28\x42\x57\x44\x5d\x71\x46\x65\x76\x37\x61\x70\x84\xb4\ +\xca\x8f\xbf\xdc\x95\xc2\xe1\x97\xc1\xe1\x91\xc1\xde\x8a\xbe\xdc\ +\x88\xbb\xdc\x8a\xb9\xdf\x89\xba\xe0\x89\xba\xdb\x8c\xbc\xd8\x89\ +\xb6\xd0\x68\x91\xaa\x2e\x5a\x72\x7f\xb2\xc9\x87\xbb\xd7\x88\xba\ +\xd9\x8c\xbb\xd8\x80\xa5\xbd\x2c\x47\x5a\x25\x45\x56\x63\x8a\xa1\ +\x67\x94\xae\x6d\xa0\xba\x7f\xb9\xd3\x82\xb9\xd6\x85\xb4\xd0\x79\ +\xa0\xba\x63\x8d\xa6\x72\xa3\xbe\x81\xb7\xd5\x81\xb2\xd2\x5c\x83\ +\xa0\x17\x3c\x56\x64\x8f\xa7\x80\xae\xca\x60\x8b\xaa\x5f\x89\xa9\ +\x86\xaf\xcf\x8e\xb6\xd5\x8a\xb5\xd5\x80\xae\xce\x84\xb6\xd3\x8a\ +\xbb\xd6\x89\xba\xd5\x8b\xbd\xd4\x8e\xbd\xd7\x8d\xbb\xda\x89\xb8\ +\xd9\x8a\xb9\xd7\x8b\xb8\xd6\x8e\xb6\xd7\x92\xb9\xdb\x98\xbf\xe1\ +\x97\xbf\xe0\x8d\xb6\xd4\x86\xb1\xc9\x89\xb2\xcb\x8d\xb6\xd4\x8b\ +\xb4\xd2\x89\xb0\xcb\x86\xac\xca\x83\xaa\xcb\x7c\xa3\xc1\x76\x9b\ +\xb7\x71\x96\xb1\x7a\xa2\xbd\x85\xad\xc7\x88\xaf\xc8\x80\xa4\xbe\ +\x64\x87\x9e\x58\x7e\x92\x79\xa0\xb6\x77\x9c\xb6\x5f\x84\x9d\x6b\ +\x92\xa7\x80\xa3\xb8\x70\x8f\xa5\x46\x69\x82\x5c\x82\x9e\x7f\xa6\ +\xbe\x68\x87\x9a\x2f\x49\x5b\x3a\x58\x6c\x74\x98\xae\x7f\xa5\xbd\ +\x6f\x94\xae\x74\x95\xb1\x6a\x87\x9f\x38\x54\x64\x25\x43\x51\x65\ +\x86\x9b\x88\xa6\xc2\x7b\x97\xb1\x49\x65\x78\x3b\x57\x6a\x56\x73\ +\x8d\x7f\xa0\xba\x8f\xb1\xcb\x97\xb6\xd1\x96\xb9\xd5\x92\xb9\xd5\ +\x93\xbc\xd5\x96\xbe\xd9\x96\xbb\xd9\x96\xb8\xd6\x95\xb5\xd2\x8b\ +\xab\xc5\x89\xaa\xc3\x8d\xb1\xcd\x8f\xb8\xd2\x8d\xb9\xd1\x92\xb8\ +\xd7\x90\xb5\xd2\x91\xb7\xd3\x91\xb6\xd3\x94\xb7\xd5\x93\xb6\xd5\ +\x91\xb5\xd7\x8d\xb5\xd7\x8f\xb5\xd5\x91\xb4\xd1\x91\xb4\xd0\x90\ +\xb2\xd1\x00\x00\x00\x94\xc7\xdf\x8f\xc3\xdb\x92\xc3\xdd\x9b\xc6\ +\xe5\x9b\xc8\xe8\x98\xc7\xe7\x96\xc4\xe7\x97\xc4\xe7\x96\xc3\xe5\ +\x93\xc1\xe3\x8f\xbd\xdf\x91\xbd\xe1\x8e\xbd\xe0\x8f\xbc\xde\x92\ +\xbc\xdd\x90\xbc\xdc\x8d\xba\xdb\x8c\xba\xdb\x8e\xbd\xdf\x8f\xbe\ +\xdf\x89\xb7\xd6\x71\x99\xb7\x35\x5b\x78\x74\x9f\xbf\x88\xb7\xd8\ +\x8c\xbc\xd9\x8f\xbf\xd7\x8d\xbf\xd6\x8a\xbe\xd7\x8f\xc0\xdd\x90\ +\xbe\xdd\x8f\xc0\xd9\x8f\xc0\xd9\x8f\xbc\xd8\x8f\xb4\xd0\x77\x98\ +\xb1\x41\x63\x78\x4b\x72\x84\x7c\xaa\xbb\x89\xbb\xd2\x8f\xc0\xda\ +\x94\xc1\xdf\x94\xc0\xde\x8f\xbf\xdc\x8a\xbe\xdb\x8b\xbc\xdb\x90\ +\xbb\xdf\x8e\xbb\xde\x8f\xbe\xdd\x8d\xbd\xda\x88\xb4\xd2\x81\xa7\ +\xc5\x2e\x55\x6e\x6e\x98\xb0\x8d\xbc\xd7\x8d\xbe\xd9\x93\xbf\xd8\ +\x89\xa9\xbf\x32\x46\x59\x21\x3c\x4e\x81\xa6\xbc\x8c\xb9\xd6\x83\ +\xb9\xd6\x7a\xb9\xd7\x81\xbc\xdb\x83\xb2\xce\x3f\x66\x7f\x10\x3b\ +\x53\x61\x92\xae\x85\xb9\xd7\x81\xb1\xd3\x79\x9f\xc1\x2b\x4c\x67\ +\x46\x6a\x80\x8b\xb4\xcc\x8a\xb3\xd2\x60\x88\xa9\x70\x96\xb7\x8c\ +\xb2\xd1\x88\xb1\xd4\x81\xae\xd1\x85\xb5\xd4\x89\xb9\xd4\x8c\xbc\ +\xd8\x8d\xbb\xd6\x90\xbb\xd6\x8d\xbc\xda\x86\xb9\xda\x89\xb9\xd9\ +\x8d\xbb\xd9\x92\xba\xda\x95\xba\xdc\x97\xbb\xdd\x94\xb9\xdb\x8e\ +\xb7\xd6\x87\xb6\xd0\x87\xb7\xd3\x8b\xba\xd9\x8c\xba\xd8\x8f\xb8\ +\xd2\x93\xb5\xd5\x8f\xb2\xd7\x89\xad\xd0\x81\xa8\xca\x7f\xa7\xc7\ +\x83\xa9\xc9\x88\xaf\xcb\x88\xb0\xca\x85\xaf\xc9\x87\xae\xcc\x89\ +\xaf\xcc\x8b\xb2\xce\x8b\xb0\xcf\x89\xad\xca\x89\xb3\xc8\x90\xb5\ +\xcb\x8c\xac\xc9\x87\xa9\xc9\x83\xa8\xc8\x87\xaf\xcb\x80\xa4\xbd\ +\x6c\x8d\xa4\x4f\x73\x89\x6c\x92\xa9\x8f\xb4\xce\x91\xb3\xcf\x82\ +\xa4\xc4\x5f\x80\x9a\x35\x56\x69\x2b\x4b\x5c\x43\x66\x7a\x6f\x8d\ +\xa7\x66\x80\x99\x2b\x44\x57\x3a\x58\x6c\x5c\x7f\x99\x4d\x72\x8d\ +\x6e\x92\xae\x8c\xad\xcb\x92\xb5\xd1\x94\xb8\xd4\x96\xbc\xd6\x9c\ +\xbe\xd9\x9c\xb9\xd6\x97\xb4\xd0\x96\xb2\xcc\x8c\xa9\xc3\x8f\xab\ +\xc8\x90\xb0\xce\x91\xb6\xd4\x90\xb7\xd3\x94\xb7\xd6\x93\xb6\xd7\ +\x93\xb6\xd4\x93\xb7\xd4\x92\xb6\xd3\x93\xb4\xd5\x8f\xb1\xd4\x8d\ +\xb2\xd3\x8d\xb3\xd1\x8e\xb4\xcf\x8d\xb2\xcc\x8e\xae\xca\x00\x00\ +\x00\x9b\xca\xe2\x96\xc8\xdf\x97\xc4\xe0\x9e\xc4\xe7\x9c\xc5\xe7\ +\x98\xc5\xe6\x98\xc6\xe6\x96\xc6\xe4\x96\xc4\xe3\x95\xc3\xe5\x96\ +\xc1\xe4\x95\xbe\xe0\x8c\xba\xda\x83\xb7\xd6\x84\xb6\xd5\x85\xb5\ +\xd2\x88\xb7\xd4\x8c\xb8\xd7\x88\xb5\xd4\x84\xb2\xd1\x73\xa0\xbd\ +\x40\x68\x88\x57\x82\xa3\x8a\xb7\xdb\x8b\xb9\xdd\x8e\xb9\xda\x95\ +\xbd\xd9\x91\xbe\xd7\x8b\xbd\xd6\x90\xbe\xdb\x95\xbe\xe0\x95\xc1\ +\xe0\x94\xc1\xdf\x90\xbd\xde\x8e\xba\xda\x8b\xb7\xd6\x87\xb5\xcf\ +\x8c\xbc\xd3\x89\xbc\xd2\x89\xbc\xd4\x8e\xbf\xd8\x92\xbf\xdb\x90\ +\xbb\xd9\x90\xbb\xdb\x8e\xbb\xdc\x90\xbc\xdc\x93\xbf\xdf\x91\xc1\ +\xe0\x90\xc2\xdf\x8d\xbe\xdd\x8b\xb8\xd8\x8b\xb2\xd3\x5a\x7c\x9a\ +\x47\x69\x87\x86\xb1\xd0\x90\xc0\xdc\x9a\xc4\xdc\x99\xb7\xcd\x47\ +\x5b\x6f\x18\x33\x44\x7a\xa3\xb5\x8f\xbf\xda\x89\xbf\xde\x82\xbc\ +\xde\x83\xbc\xdc\x89\xb9\xd5\x6d\x9c\xb4\x53\x84\x9e\x77\xab\xc7\ +\x87\xba\xd7\x85\xb7\xd6\x84\xae\xcf\x5f\x82\x9e\x22\x43\x5a\x79\ +\x9e\xb4\x92\xb8\xd4\x81\xa8\xc9\x53\x7c\x9c\x73\xa0\xbf\x84\xb2\ +\xd5\x82\xb3\xd6\x82\xb4\xd3\x8b\xba\xd8\x8d\xb9\xd7\x8f\xb8\xd4\ +\x90\xb8\xd4\x8d\xba\xd8\x87\xba\xd9\x83\xb7\xd7\x89\xb8\xda\x8e\ +\xba\xdc\x91\xbb\xdc\x91\xb7\xd8\x94\xb7\xd8\x8f\xb5\xd6\x86\xb4\ +\xd3\x82\xb3\xd4\x82\xb6\xd7\x85\xb7\xd8\x8d\xba\xd7\x95\xba\xdb\ +\x91\xb6\xdb\x8c\xb4\xd7\x85\xb0\xd2\x84\xb1\xce\x85\xae\xcc\x86\ +\xad\xca\x80\xaa\xc8\x7d\xaa\xc7\x83\xad\xcd\x88\xaf\xcf\x88\xb0\ +\xcc\x8a\xb3\xce\x8b\xb4\xce\x8d\xb5\xcd\x90\xb6\xcf\x8f\xb3\xd0\ +\x91\xb2\xd4\x93\xb4\xd4\x91\xb6\xd3\x8f\xb4\xd0\x87\xac\xc6\x84\ +\xaa\xc3\x8b\xb1\xca\x96\xb9\xd6\x9b\xb9\xd9\x94\xb4\xd6\x90\xb3\ +\xd1\x8b\xb0\xca\x89\xaf\xc5\x83\xaa\xc1\x7d\xa0\xba\x68\x86\xa0\ +\x46\x64\x78\x53\x76\x8c\x76\x9c\xb6\x7c\xa2\xbf\x61\x88\xa5\x65\ +\x8a\xa8\x83\xa7\xc5\x8d\xb1\xce\x95\xb8\xd3\x9c\xbb\xd7\x9b\xb8\ +\xd6\x96\xb1\xce\x92\xac\xc7\x8f\xa9\xc1\x8f\xaa\xc4\x93\xb1\xcd\ +\x93\xb4\xd1\x95\xb7\xd4\x9a\xb8\xd9\x99\xb8\xd9\x93\xb7\xd3\x8d\ +\xb5\xce\x91\xb6\xd0\x95\xb4\xd5\x92\xb0\xd3\x8f\xb2\xd3\x8d\xb3\ +\xd0\x8b\xb1\xcd\x8d\xb1\xce\x8e\xae\xcd\x00\x00\x00\xa2\xca\xe5\ +\x99\xc8\xe1\x99\xc5\xe3\x9f\xc5\xe8\x9c\xc1\xe3\x99\xc1\xe2\x98\ +\xc4\xe2\x97\xc6\xe0\x95\xc4\xe0\x96\xc1\xe2\x99\xc0\xe3\x97\xbe\ +\xe1\x8d\xbb\xdb\x79\xad\xcc\x6e\xa2\xbf\x6d\xa0\xbb\x76\xa3\xc3\ +\x80\xa8\xc9\x76\x9e\xbc\x5a\x84\xa0\x34\x60\x7b\x59\x86\xa5\x8a\ +\xb8\xda\x8e\xbb\xe0\x8e\xbb\xdf\x8f\xbb\xdc\x93\xbc\xdc\x93\xbd\ +\xdc\x8f\xbf\xd7\x95\xbf\xdb\x99\xbe\xe2\x97\xbf\xe4\x96\xc1\xe2\ +\x92\xbf\xe0\x8f\xbe\xde\x8b\xbb\xdc\x90\xc0\xde\x92\xc3\xdc\x8d\ +\xc1\xd8\x8a\xbe\xd8\x8a\xbd\xd7\x90\xbd\xda\x95\xbd\xdc\x94\xba\ +\xdd\x93\xbc\xe0\x97\xc0\xe2\x95\xc3\xe3\x90\xc3\xe1\x8d\xc3\xe1\ +\x8c\xbe\xdd\x8a\xb9\xd9\x8b\xb6\xd7\x87\xab\xcc\x4c\x6c\x8e\x66\ +\x8d\xad\x8e\xbb\xd7\x9b\xc2\xdc\x9f\xbb\xd5\x5a\x6e\x83\x0f\x2a\ +\x38\x6a\x93\xa1\x8e\xc0\xd5\x8f\xbf\xdc\x8b\xbc\xdd\x8c\xbf\xde\ +\x8c\xbc\xda\x86\xb8\xd3\x82\xb7\xd3\x87\xbb\xd8\x8d\xbf\xd9\x8c\ +\xbd\xd8\x88\xb8\xd5\x7c\xa5\xc2\x39\x5f\x78\x45\x68\x80\x90\xb3\ +\xd0\x8c\xb1\xd2\x65\x92\xb1\x51\x80\x9f\x7e\xad\xcd\x80\xb2\xd3\ +\x81\xb4\xd3\x86\xb5\xd4\x8b\xb7\xd4\x90\xb7\xd3\x93\xb8\xd6\x8e\ +\xb7\xd8\x89\xb8\xd7\x85\xb6\xd6\x85\xb3\xd7\x89\xb7\xd9\x8e\xba\ +\xda\x92\xb8\xd7\x93\xb4\xd7\x8e\xb3\xd7\x87\xb0\xd4\x84\xb0\xd7\ +\x84\xb3\xd8\x87\xb6\xda\x8c\xb8\xd9\x92\xb9\xdb\x8f\xb7\xda\x8d\ +\xb8\xd8\x89\xb6\xd3\x87\xb4\xcf\x88\xb0\xce\x88\xad\xce\x81\xab\ +\xcb\x80\xab\xca\x84\xad\xce\x84\xad\xce\x85\xaf\xcc\x87\xb2\xcb\ +\x8b\xb4\xcd\x8f\xb5\xcd\x90\xb5\xd0\x91\xb5\xd3\x92\xb3\xd5\x95\ +\xb6\xd5\x93\xb7\xd5\x94\xb8\xd6\x91\xb6\xd2\x92\xb8\xd1\x90\xbb\ +\xd1\x95\xbc\xd7\x96\xb9\xd9\x94\xb6\xd7\x94\xb7\xd7\x92\xb8\xd4\ +\x8f\xb8\xd0\x8e\xb8\xd0\x8e\xb5\xd0\x8c\xae\xcb\x87\xa9\xc1\x84\ +\xa9\xc2\x89\xaf\xc9\x8b\xb2\xce\x87\xae\xcd\x77\x9c\xbd\x67\x8b\ +\xaa\x7e\xa3\xc0\x92\xb6\xd0\x97\xbb\xd6\x99\xb9\xd7\x95\xb3\xce\ +\x91\xae\xc5\x8d\xa8\xbf\x8d\xac\xc4\x90\xb1\xcc\x94\xb4\xd1\x97\ +\xb4\xd5\xa0\xb9\xdd\x9c\xb8\xdb\x93\xb6\xd5\x8c\xb5\xce\x8f\xb3\ +\xce\x96\xb3\xd3\x95\xb0\xd4\x91\xb2\xd4\x8b\xb2\xd1\x86\xae\xce\ +\x87\xae\xce\x88\xaa\xce\x00\x00\x00\xa5\xcb\xe8\x9d\xc8\xe5\x9c\ +\xc3\xe4\x9d\xc2\xe4\x99\xbd\xdf\x97\xbb\xdb\x9a\xbf\xdb\x9d\xc8\ +\xe0\x9a\xc5\xe0\x99\xc1\xe2\x9a\xc0\xe4\x99\xc1\xe5\x94\xbf\xe2\ +\x8c\xbd\xdc\x88\xb8\xd4\x80\xb3\xcd\x77\xa6\xc6\x71\x9d\xbf\x69\ +\x91\xb0\x67\x92\xab\x7e\xad\xc5\x91\xc1\xdc\x94\xc3\xe3\x94\xc2\ +\xe2\x94\xc1\xe1\x91\xbf\xdd\x93\xc0\xdf\x91\xbf\xde\x93\xc2\xdc\ +\x95\xc0\xdd\x9a\xc1\xe3\x99\xc4\xe7\x98\xc4\xe3\x94\xc3\xdf\x8f\ +\xbf\xde\x8c\xbe\xdc\x90\xbf\xde\x91\xc1\xdc\x8f\xc1\xd8\x8b\xbd\ +\xd6\x8a\xba\xd4\x92\xbd\xd9\x96\xbc\xdc\x97\xbc\xe0\x96\xc1\xe3\ +\x95\xc2\xe4\x90\xc0\xe1\x8e\xc0\xdf\x8b\xc0\xdf\x89\xbe\xdd\x8d\ +\xbd\xdd\x8e\xbb\xdc\x93\xba\xda\x89\xac\xcd\x48\x6e\x8c\x6a\x95\ +\xaf\x97\xbb\xd5\x9b\xb5\xcf\x61\x74\x87\x0d\x24\x30\x5a\x7f\x8c\ +\x96\xc1\xd5\x99\xc2\xdb\x94\xbf\xdc\x91\xc0\xdf\x8e\xbd\xdd\x8a\ +\xbb\xda\x8b\xbc\xda\x8c\xbc\xda\x8e\xbe\xdd\x8b\xbf\xdc\x84\xbb\ +\xd4\x7e\xae\xcc\x67\x8f\xae\x2e\x52\x6e\x72\x92\xb1\x8c\xae\xcf\ +\x7a\xa2\xc2\x4d\x77\x97\x6f\x9b\xba\x80\xaf\xce\x84\xb3\xd5\x83\ +\xb2\xd2\x84\xb1\xcf\x8c\xb3\xd2\x8f\xb4\xd3\x8c\xb2\xd5\x89\xb1\ +\xd6\x86\xaf\xd5\x86\xaf\xd5\x86\xb3\xd4\x8b\xb7\xd5\x8f\xb7\xd2\ +\x91\xb6\xd6\x8e\xb4\xd7\x87\xb1\xd6\x83\xb0\xd5\x85\xb3\xd8\x8c\ +\xb7\xda\x91\xb7\xd7\x93\xb7\xd8\x92\xb9\xd9\x91\xb9\xd6\x90\xbb\ +\xd3\x8f\xb9\xd3\x91\xb6\xd4\x8e\xb1\xd4\x88\xae\xcf\x86\xad\xca\ +\x86\xae\xc9\x88\xb1\xce\x8a\xb0\xcd\x8c\xb1\xcc\x8c\xb1\xcb\x8e\ +\xb4\xcc\x90\xb5\xcf\x92\xb7\xd4\x91\xb4\xd2\x91\xb4\xd1\x8e\xb3\ +\xcd\x8e\xb4\xcc\x8c\xb2\xca\x90\xb6\xcd\x90\xba\xd0\x8d\xbb\xd3\ +\x8f\xb8\xd4\x90\xb4\xd1\x91\xb5\xd3\x90\xb6\xd2\x8f\xb9\xd2\x91\ +\xbb\xd5\x93\xba\xd5\x95\xb7\xd4\x97\xb8\xd6\x93\xb8\xd6\x91\xb8\ +\xd6\x93\xb9\xd5\x94\xba\xd6\x90\xb4\xd2\x87\xab\xc9\x84\xa9\xc6\ +\x90\xb5\xd0\x94\xb9\xd4\x91\xb6\xd0\x8f\xb2\xcc\x8c\xac\xc3\x88\ +\xa8\xc1\x8b\xad\xc9\x91\xb4\xcf\x98\xb6\xd5\x9d\xb7\xda\x9d\xb7\ +\xdb\x9a\xb7\xda\x94\xb5\xd6\x8f\xb2\xd1\x90\xb3\xd2\x94\xb2\xd4\ +\x94\xaf\xd4\x91\xb1\xd3\x8a\xaf\xcf\x82\xac\xca\x80\xab\xca\x82\ +\xa8\xcb\x00\x00\x00\xa6\xcb\xeb\xa5\xca\xeb\xa3\xc6\xe7\x98\xbf\ +\xe1\x93\xbc\xdd\x95\xc0\xde\x9c\xc6\xe0\xa0\xcc\xe4\x9e\xca\xe3\ +\x99\xc3\xe3\x96\xc1\xe5\x99\xc2\xe7\x96\xc2\xe6\x92\xbf\xe0\x8f\ +\xbe\xd9\x8b\xbf\xd6\x8b\xc0\xdb\x92\xbf\xdf\x94\xbd\xdc\x93\xbf\ +\xd9\x98\xc8\xe1\x96\xc6\xe0\x9b\xc7\xe5\x9a\xc7\xe4\x96\xc5\xe2\ +\x91\xc2\xdf\x8f\xbf\xdc\x90\xbe\xdc\x93\xc2\xdf\x93\xc2\xde\x95\ +\xc2\xe3\x95\xc2\xe3\x98\xc5\xe4\x95\xc4\xdf\x92\xc2\xdf\x8d\xbe\ +\xdd\x8e\xbf\xdb\x91\xc3\xdb\x91\xc3\xda\x8e\xbf\xd9\x8f\xbd\xd9\ +\x92\xbc\xd9\x96\xbc\xdd\x97\xc0\xe3\x97\xc4\xe6\x92\xc3\xe5\x8f\ +\xc2\xe6\x8d\xbf\xe1\x8d\xbe\xe0\x88\xbe\xdd\x8b\xbf\xdf\x90\xbf\ +\xe0\x94\xbd\xde\x92\xbb\xd9\x83\xaf\xcb\x50\x7e\x98\x69\x90\xa8\ +\x92\xad\xc7\x64\x76\x8a\x0f\x25\x32\x59\x7b\x89\x95\xbc\xd2\x99\ +\xbf\xdb\x92\xbb\xda\x92\xc1\xe1\x90\xbf\xdf\x8e\xbd\xdc\x8f\xbd\ +\xdc\x8f\xbc\xdc\x8d\xbd\xdc\x86\xbe\xdc\x7d\xbb\xd6\x78\xaf\xcc\ +\x78\xa5\xc5\x61\x86\xa7\x41\x63\x82\x76\x97\xb7\x7b\x9f\xbd\x4c\ +\x6f\x8f\x66\x8e\xae\x80\xad\xcd\x84\xb1\xd3\x84\xae\xd1\x83\xaf\ +\xd0\x85\xaf\xd0\x87\xae\xd0\x86\xac\xd0\x88\xac\xd4\x85\xab\xd3\ +\x80\xab\xd0\x7e\xac\xcd\x82\xb3\xce\x87\xb5\xce\x8a\xb4\xd0\x89\ +\xb3\xd4\x82\xaf\xd4\x82\xb1\xd4\x83\xb5\xd4\x8d\xb9\xd8\x94\xb8\ +\xd5\x97\xba\xd7\x93\xba\xd6\x92\xbc\xd5\x92\xba\xd5\x95\xba\xd7\ +\x93\xb6\xd5\x90\xb2\xd3\x8f\xb3\xd2\x8c\xb0\xcd\x8a\xb0\xcd\x86\ +\xb0\xcd\x87\xb0\xcc\x89\xb1\xca\x84\xaf\xc8\x87\xb2\xca\x8b\xb2\ +\xcc\x8b\xb1\xcd\x8a\xb0\xcd\x84\xaa\xc5\x7d\xa2\xb6\x7b\x9e\xaf\ +\x84\xa7\xb9\x8b\xaf\xc3\x90\xb7\xcd\x8e\xb9\xd0\x8d\xb4\xd0\x8f\ +\xb3\xd0\x8f\xb3\xd1\x91\xb6\xd3\x90\xb8\xd4\x94\xba\xd6\x99\xbc\ +\xd8\x99\xbc\xd7\x9c\xbb\xda\x97\xba\xdc\x95\xba\xdb\x96\xbb\xd8\ +\x96\xba\xd6\x96\xbb\xd7\x91\xb7\xd5\x92\xb6\xd3\x93\xb8\xd4\x93\ +\xb8\xd4\x8e\xb4\xcf\x8c\xb0\xca\x86\xa7\xc0\x86\xaa\xc6\x8b\xb1\ +\xcf\x94\xb5\xd4\x9a\xb9\xd7\x98\xb7\xd7\x9a\xb7\xd8\x99\xb7\xda\ +\x96\xb4\xd8\x93\xb1\xd7\x90\xb0\xd6\x92\xb0\xd4\x8f\xb0\xd6\x8a\ +\xaf\xd5\x87\xb0\xd1\x80\xad\xc9\x7c\xa8\xc6\x7f\xa6\xc8\x00\x00\ +\x00\x9c\xc7\xe4\x9e\xc7\xe6\x9d\xc4\xe5\x95\xc2\xe3\x8f\xc0\xdf\ +\x98\xc6\xe4\x9d\xca\xe5\x9e\xcb\xe4\xa2\xcd\xe7\x9d\xc9\xe6\x94\ +\xc3\xe3\x94\xc4\xe3\x98\xc6\xe6\x95\xc4\xe2\x93\xc4\xdd\x91\xc5\ +\xdc\x92\xc6\xe0\x9c\xc8\xe8\x9f\xc7\xe8\x9d\xca\xe8\x99\xc6\xe5\ +\x97\xc5\xe2\x99\xc7\xe4\x9a\xc7\xe3\x97\xc8\xe2\x90\xc4\xdf\x93\ +\xc2\xe0\x97\xc1\xe1\x96\xc4\xe1\x94\xc5\xe0\x95\xc5\xe0\x94\xc4\ +\xdf\x96\xc5\xe0\x97\xc3\xe0\x94\xc3\xe2\x93\xc1\xdf\x95\xc3\xde\ +\x95\xc7\xde\x93\xc5\xdc\x95\xc6\xe0\x94\xc2\xde\x94\xc0\xde\x97\ +\xc0\xdf\x96\xc3\xe2\x94\xc6\xe5\x8f\xc4\xe3\x8e\xc3\xe4\x92\xc1\ +\xe4\x8d\xbe\xdf\x88\xbe\xdc\x8a\xc2\xdf\x8b\xbf\xde\x92\xc0\xdf\ +\x94\xbf\xde\x8e\xbc\xda\x8a\xb8\xd5\x75\x9f\xba\x5f\x82\x9d\x49\ +\x65\x7d\x1e\x3b\x4e\x67\x8d\xa0\x8d\xb9\xd1\x90\xbd\xda\x90\xbe\ +\xdd\x93\xc1\xe1\x93\xc2\xe2\x94\xc1\xe1\x94\xbe\xde\x96\xbf\xdf\ +\x8e\xbe\xde\x83\xbc\xdc\x7d\xbb\xda\x7b\xb2\xd2\x7c\xa9\xcc\x7b\ +\xa4\xc5\x62\x89\xa8\x44\x69\x87\x64\x86\xa4\x3f\x65\x82\x66\x91\ +\xb0\x7f\xae\xd0\x7e\xab\xcf\x7c\xa8\xcc\x7e\xac\xcf\x80\xae\xd0\ +\x81\xae\xcf\x83\xae\xd0\x87\xae\xd4\x86\xad\xd4\x7f\xac\xd1\x7b\ +\xa8\xcd\x78\xa9\xc8\x7f\xb0\xc9\x83\xb1\xcc\x84\xb1\xcf\x81\xae\ +\xd0\x82\xb1\xd1\x86\xb7\xd5\x8d\xb9\xd6\x91\xb6\xd1\x92\xb7\xd0\ +\x90\xb9\xd2\x8e\xbb\xd3\x95\xbd\xd7\x9a\xbc\xda\x97\xb9\xd9\x92\ +\xb6\xd6\x91\xb6\xd5\x8f\xb3\xd2\x8a\xb0\xd1\x8b\xb2\xd3\x8b\xb2\ +\xd1\x89\xb2\xce\x83\xb0\xcc\x85\xb2\xca\x87\xae\xc8\x87\xae\xc9\ +\x85\xac\xc8\x81\xa4\xbc\x67\x86\x98\x40\x5c\x6a\x64\x83\x94\x84\ +\xa6\xbb\x8f\xb4\xcc\x90\xb6\xd0\x8e\xb3\xcf\x8a\xae\xcb\x8c\xb1\ +\xcf\x8f\xb3\xd2\x91\xb6\xd4\x93\xb8\xd3\x96\xbb\xd3\x9b\xbd\xd7\ +\x9b\xbb\xd9\x98\xba\xdc\x96\xba\xdb\x95\xb9\xd6\x92\xb7\xd1\x90\ +\xb9\xd1\x92\xb9\xd2\x95\xba\xd3\x95\xb9\xd2\x94\xb8\xd2\x8d\xb2\ +\xcc\x8d\xae\xca\x87\xa8\xc8\x87\xac\xcd\x8c\xb2\xd3\x94\xb6\xd7\ +\x99\xba\xd7\x97\xba\xd6\x96\xb8\xd6\x94\xb6\xd7\x94\xb5\xda\x91\ +\xb1\xd8\x91\xb2\xd9\x91\xb1\xd8\x89\xae\xd4\x86\xaf\xd4\x83\xaf\ +\xd1\x80\xad\xcd\x80\xab\xcc\x85\xac\xcf\x00\x00\x00\x90\xc6\xde\ +\x94\xc4\xe0\x95\xc3\xe3\x92\xc1\xe3\x92\xc5\xe3\x96\xc7\xe4\x99\ +\xc9\xe6\x9b\xc9\xe6\x9b\xc7\xe4\x98\xc6\xe4\x90\xc3\xe1\x93\xc5\ +\xe1\x95\xc5\xe0\x94\xc5\xdd\x91\xc4\xda\x94\xc3\xdb\x99\xc4\xe2\ +\x9f\xc6\xe8\xa1\xc9\xe9\x9b\xc8\xe8\x97\xc4\xe6\x95\xc2\xe5\x99\ +\xc7\xe5\x9e\xc7\xe5\x98\xc6\xe4\x91\xc3\xe2\x93\xc1\xe1\x9c\xc3\ +\xe4\x99\xc4\xe2\x96\xc7\xdf\x93\xc6\xdb\x92\xc4\xd9\x93\xc3\xdc\ +\x97\xc3\xe1\x97\xc2\xe1\x9a\xc3\xe3\x9b\xc4\xe4\x9b\xc6\xe3\x9b\ +\xc7\xe2\x9c\xc7\xe3\x99\xc7\xe4\x96\xc4\xe2\x98\xc5\xe1\x98\xc7\ +\xe2\x94\xc4\xe1\x92\xc3\xe3\x90\xc0\xe0\x91\xc0\xe0\x8e\xbe\xdc\ +\x8d\xc0\xdb\x8c\xc3\xdc\x8a\xc2\xdd\x90\xc2\xe0\x95\xc1\xe0\x95\ +\xc2\xe0\x92\xc2\xde\x93\xc1\xdc\x8f\xb8\xd2\x72\x97\xb0\x65\x8d\ +\xa5\x84\xb2\xc9\x8c\xbd\xd7\x8e\xbe\xdb\x90\xc0\xdf\x95\xc2\xe2\ +\x95\xc0\xde\x92\xbe\xde\x97\xbf\xdf\x99\xbf\xde\x94\xc1\xe0\x8b\ +\xbf\xe0\x87\xbc\xdc\x87\xb7\xd8\x87\xb1\xd2\x85\xb1\xcd\x82\xaf\ +\xca\x68\x92\xad\x40\x69\x87\x45\x71\x8d\x75\xa5\xc2\x7e\xb0\xd2\ +\x7a\xac\xcf\x79\xab\xcd\x78\xac\xcc\x7d\xb0\xcf\x82\xb2\xd0\x84\ +\xb3\xd0\x88\xb4\xd4\x8b\xb1\xd6\x86\xae\xd3\x7c\xa8\xcc\x77\xa9\ +\xc9\x7d\xaf\xca\x80\xb1\xc9\x7e\xaf\xc9\x7c\xab\xcb\x81\xb0\xcf\ +\x85\xb4\xcf\x8d\xb8\xd0\x8e\xb7\xcf\x8a\xb4\xcd\x8b\xb7\xcf\x8d\ +\xb9\xd1\x92\xbc\xd5\x95\xba\xd7\x94\xb8\xd8\x90\xb9\xd6\x8f\xba\ +\xd4\x8c\xb6\xd2\x8b\xb1\xd2\x8b\xb1\xd4\x8d\xb3\xd5\x8d\xb3\xd4\ +\x89\xb1\xd0\x87\xb0\xc9\x87\xad\xc5\x87\xad\xc6\x89\xad\xca\x7f\ +\xa1\xbd\x61\x80\x97\x36\x52\x65\x4e\x6e\x82\x78\x9b\xb3\x8c\xb2\ +\xcb\x90\xb5\xcf\x8a\xaf\xca\x83\xab\xc7\x85\xb0\xcb\x87\xb1\xcb\ +\x8b\xb2\xcd\x8f\xb4\xcf\x94\xba\xd3\x95\xba\xd4\x97\xb9\xd6\x93\ +\xb7\xd4\x92\xb6\xd5\x91\xb4\xd5\x90\xb3\xd0\x8d\xb4\xcb\x91\xb7\ +\xcd\x95\xb7\xcd\x94\xb7\xcd\x91\xb6\xce\x8f\xb2\xcd\x8d\xad\xcc\ +\x87\xa8\xc9\x89\xae\xcf\x8d\xb3\xd1\x96\xb8\xd4\x9c\xba\xd5\x9a\ +\xbb\xd5\x97\xb9\xd6\x94\xb7\xd8\x95\xb7\xdb\x8f\xb2\xd6\x8d\xb0\ +\xd4\x8e\xb0\xd5\x8a\xaf\xd4\x85\xad\xd3\x86\xae\xd3\x86\xae\xd1\ +\x89\xaf\xd2\x8c\xb0\xd3\x00\x00\x00\x89\xc1\xdc\x8e\xc1\xde\x92\ +\xc1\xe0\x93\xc2\xe2\x95\xc4\xe2\x95\xc4\xe2\x93\xc2\xe2\x94\xc4\ +\xe3\x94\xc1\xe1\x92\xc1\xe1\x8d\xc1\xdf\x92\xc6\xe0\x95\xc7\xdf\ +\x94\xc4\xde\x94\xc3\xde\x94\xc1\xde\x96\xc1\xe1\x98\xc4\xe3\x99\ +\xc6\xe4\x98\xc6\xe6\x96\xc3\xe6\x92\xc0\xe4\x9c\xc4\xe7\x9f\xc3\ +\xe5\x9a\xc3\xe5\x94\xc3\xe4\x95\xc3\xe3\x9b\xc1\xe3\x99\xc1\xe1\ +\x95\xc2\xde\x91\xc3\xd9\x91\xc3\xd9\x91\xc2\xdb\x93\xc3\xdf\x94\ +\xc2\xe1\x96\xc1\xe2\x9a\xc3\xe4\x9a\xc2\xe3\x9c\xc4\xe4\x9d\xc4\ +\xe4\x9b\xc3\xe5\x96\xc5\xe5\x96\xc5\xe3\x96\xc5\xe3\x96\xc3\xe4\ +\x95\xc4\xe5\x90\xc0\xe0\x93\xc1\xe2\x91\xc0\xdf\x93\xc2\xde\x93\ +\xc6\xdf\x8d\xc5\xde\x92\xc5\xe0\x96\xc2\xe0\x95\xbf\xdd\x94\xc3\ +\xde\x96\xc3\xde\x98\xc1\xdc\x93\xbd\xd6\x8f\xbe\xd6\x92\xc2\xdd\ +\x95\xc3\xe2\x95\xc3\xe1\x94\xc2\xdd\x97\xc3\xe0\x95\xc0\xdf\x91\ +\xbd\xdd\x96\xbd\xde\x99\xc0\xdf\x9a\xc5\xe5\x96\xc5\xe4\x90\xc1\ +\xde\x8f\xbd\xdb\x8e\xba\xd6\x8c\xbc\xd4\x87\xbb\xd1\x83\xb2\xcd\ +\x79\xa6\xc6\x76\xa6\xc5\x81\xb3\xd0\x83\xb5\xd4\x7f\xb3\xd2\x7a\ +\xb2\xd0\x7d\xb3\xd1\x86\xb7\xd4\x8a\xb9\xd5\x8a\xbb\xd4\x8d\xb7\ +\xd6\x90\xb4\xd7\x8d\xb0\xd6\x85\xb0\xd3\x7d\xb1\xd1\x81\xb5\xd0\ +\x85\xb6\xcd\x82\xb3\xcd\x82\xb1\xd0\x87\xb5\xd3\x8d\xb8\xd3\x93\ +\xb9\xd3\x90\xb8\xd1\x89\xb8\xd1\x8d\xb9\xd2\x91\xb9\xd5\x95\xbb\ +\xd7\x94\xb9\xd6\x91\xb8\xd7\x91\xb9\xd6\x8f\xb8\xd2\x8d\xb7\xd1\ +\x8e\xb5\xd4\x8f\xb5\xd8\x8f\xb7\xd8\x8f\xb7\xd9\x8e\xb5\xd6\x8b\ +\xb2\xcf\x8b\xb1\xca\x8a\xb0\xc9\x89\xaf\xca\x84\xaa\xc8\x76\x9a\ +\xb8\x6c\x8d\xaa\x72\x95\xb0\x82\xa8\xc4\x8a\xb0\xcd\x8e\xb2\xcf\ +\x87\xac\xc9\x82\xae\xc9\x82\xb3\xc9\x81\xb1\xc8\x83\xaf\xc8\x8c\ +\xb3\xcd\x91\xb6\xd3\x8f\xb4\xd2\x8f\xb3\xd1\x90\xb4\xd2\x8e\xb1\ +\xd4\x8d\xaf\xd3\x8a\xab\xcd\x8b\xaf\xcb\x8d\xb1\xcb\x92\xb2\xcc\ +\x93\xb3\xcd\x8f\xb0\xcc\x93\xb1\xd1\x8d\xac\xcd\x8a\xac\xcc\x8d\ +\xb2\xcf\x90\xb5\xd2\x96\xb8\xd2\x9b\xb9\xd4\x9c\xbb\xd6\x9a\xb8\ +\xd8\x96\xb7\xd9\x90\xb4\xd6\x8c\xb4\xd4\x88\xb1\xd1\x8a\xb1\xd1\ +\x8b\xaf\xd1\x89\xae\xd3\x89\xae\xd3\x89\xae\xd0\x8b\xb0\xd2\x8f\ +\xb1\xd5\x00\x00\x00\x8d\xbe\xde\x90\xbf\xde\x92\xc1\xe0\x97\xc3\ +\xe4\x94\xbf\xdf\x92\xbd\xde\x90\xbf\xdf\x94\xc2\xe2\x92\xc1\xe0\ +\x8e\xc0\xde\x8d\xc1\xde\x8f\xc5\xde\x92\xc4\xdd\x93\xc2\xdf\x95\ +\xc3\xe1\x94\xc4\xe2\x8e\xc0\xdd\x8f\xc1\xde\x90\xc2\xe0\x92\xc3\ +\xe1\x92\xc1\xe3\x90\xbe\xe2\x9a\xc1\xe4\x9f\xc3\xe5\x9a\xc3\xe5\ +\x94\xc2\xe4\x94\xc1\xe3\x94\xbf\xe0\x95\xbf\xe1\x93\xbf\xde\x90\ +\xc2\xda\x8b\xc1\xd8\x89\xbe\xd7\x8c\xc1\xdb\x8d\xc1\xdd\x8f\xbf\ +\xde\x92\xbf\xe0\x94\xbe\xdf\x94\xbf\xe0\x94\xbf\xe1\x91\xbe\xe1\ +\x90\xc1\xe3\x8f\xc0\xe1\x91\xc0\xe0\x94\xc3\xe5\x93\xc5\xe6\x8e\ +\xc3\xe3\x92\xc0\xe0\x93\xc1\xe0\x93\xc1\xe0\x93\xc3\xe0\x8f\xc5\ +\xde\x92\xc4\xde\x95\xc1\xdd\x95\xbe\xdb\x95\xbf\xdc\x95\xbf\xdd\ +\x96\xc0\xde\x93\xc1\xdc\x91\xc3\xdb\x92\xc1\xe0\x98\xc4\xe4\x9e\ +\xc7\xe5\x9f\xc7\xe3\x9b\xc3\xe1\x99\xc1\xe0\x98\xc0\xe0\x9a\xc0\ +\xdf\x9c\xc2\xe0\x9a\xc6\xe2\x96\xc6\xe1\x91\xc2\xdc\x8c\xbf\xd9\ +\x8f\xbf\xda\x8f\xbf\xd7\x89\xbf\xd5\x88\xbb\xd5\x8a\xb9\xd8\x88\ +\xb8\xd6\x89\xb8\xd7\x8c\xbb\xda\x85\xb8\xd6\x7e\xb6\xd3\x82\xb6\ +\xd4\x8d\xba\xd8\x8f\xbb\xd6\x8c\xba\xd2\x90\xb9\xd4\x93\xb6\xd6\ +\x94\xb8\xd9\x8d\xb9\xd9\x84\xb9\xd6\x83\xb8\xd3\x88\xb9\xd0\x8a\ +\xb8\xd2\x8c\xb8\xd7\x91\xba\xd9\x95\xba\xd7\x99\xbc\xd6\x95\xbe\ +\xd6\x8f\xbd\xd6\x92\xbe\xd6\x9a\xbf\xdd\x9a\xbe\xdc\x98\xbe\xdb\ +\x94\xbb\xd9\x95\xba\xda\x94\xb9\xd7\x94\xba\xd6\x94\xb9\xd7\x92\ +\xb7\xd9\x8d\xb9\xd9\x8c\xb9\xda\x8d\xb9\xda\x8e\xb7\xd7\x8d\xb5\ +\xd1\x8c\xb8\xd0\x88\xb5\xd0\x86\xaf\xcf\x87\xad\xcf\x83\xa9\xc9\ +\x82\xa9\xc9\x86\xad\xcd\x89\xb1\xd1\x8b\xb1\xd1\x87\xb0\xcd\x83\ +\xb1\xca\x81\xb4\xc7\x7f\xb2\xc6\x83\xb1\xc9\x8c\xb1\xcc\x8f\xb2\ +\xcf\x8b\xb1\xd0\x8c\xb1\xcf\x8e\xb2\xd0\x8c\xae\xd3\x89\xaa\xd1\ +\x84\xa6\xcb\x86\xa8\xc8\x8a\xad\xcc\x8a\xaf\xcc\x8b\xad\xcb\x8e\ +\xac\xcb\x91\xae\xcd\x8e\xac\xcb\x8c\xae\xcd\x8f\xb4\xd0\x91\xb6\ +\xd1\x91\xb8\xd1\x93\xb8\xd2\x96\xb7\xd3\x98\xb7\xd7\x93\xb4\xd7\ +\x8e\xb3\xd5\x87\xb0\xd0\x86\xaf\xce\x89\xaf\xcf\x8b\xaf\xcd\x86\ +\xad\xcd\x86\xaf\xd0\x88\xb0\xd1\x8d\xb0\xd3\x8f\xae\xd2\x00\x00\ +\x00\x92\xbe\xdf\x95\xc0\xe0\x94\xbf\xe0\x98\xc1\xe3\x95\xbc\xe1\ +\x91\xbb\xde\x8f\xbc\xde\x92\xc0\xe0\x90\xbf\xde\x8e\xc1\xdc\x8c\ +\xc1\xdc\x8c\xc3\xda\x91\xc5\xdb\x95\xc6\xde\x95\xc3\xdf\x97\xc6\ +\xe3\x93\xc2\xe1\x8f\xc0\xde\x8f\xc1\xde\x8f\xc2\xde\x91\xc2\xe1\ +\x92\xbf\xe0\x97\xc0\xe0\x9a\xc3\xe2\x95\xc3\xe2\x8e\xbe\xe0\x8d\ +\xbe\xe0\x91\xbe\xe2\x93\xbf\xe4\x91\xbf\xe0\x8f\xc1\xd9\x8e\xc2\ +\xd9\x8e\xc1\xd8\x8b\xc1\xd8\x8d\xc2\xda\x8f\xc0\xdd\x90\xbe\xde\ +\x94\xbf\xe0\x92\xbd\xde\x8d\xbb\xdc\x8a\xbb\xdc\x8a\xbd\xde\x8b\ +\xbd\xde\x91\xbf\xe1\x93\xc0\xe3\x8e\xc0\xe1\x89\xbe\xde\x8b\xbf\ +\xdd\x8d\xbf\xdc\x8f\xbf\xde\x91\xc0\xdf\x92\xc1\xde\x91\xc0\xdb\ +\x8e\xbd\xd8\x8e\xba\xd6\x90\xbc\xd8\x8f\xbc\xdc\x90\xbd\xdd\x90\ +\xc0\xde\x8e\xbf\xd9\x8f\xbe\xde\x98\xc2\xe3\x9e\xc4\xe3\x9d\xc5\ +\xe0\x9d\xc3\xe0\x9d\xc1\xe0\x9e\xc1\xde\xa0\xc0\xde\x9b\xc0\xde\ +\x94\xbf\xdb\x91\xbf\xda\x8f\xbd\xd9\x89\xba\xd8\x8b\xbb\xd9\x90\ +\xbe\xda\x8f\xbf\xda\x8f\xbf\xda\x8f\xbc\xda\x8b\xb9\xd8\x8d\xb9\ +\xd8\x8e\xbb\xda\x89\xba\xd9\x7e\xb6\xd3\x85\xb8\xd7\x8f\xba\xd8\ +\x8f\xb8\xd4\x8f\xb9\xd2\x91\xba\xd2\x96\xbc\xd7\x97\xbd\xdc\x92\ +\xbb\xdb\x8a\xba\xd9\x88\xb8\xd3\x8f\xba\xd5\x94\xba\xd7\x92\xb9\ +\xd8\x95\xba\xda\x97\xbc\xd7\x9a\xbf\xd9\x96\xbc\xd9\x96\xc1\xdd\ +\x9a\xc1\xdd\x9d\xc1\xdf\x9c\xc0\xde\x9a\xc0\xdd\x94\xbd\xd9\x96\ +\xbb\xd9\x97\xba\xdb\x90\xb6\xd6\x92\xb7\xd8\x92\xb8\xd8\x91\xba\ +\xd9\x8e\xba\xd9\x90\xbc\xda\x91\xbc\xdb\x95\xbe\xdd\x90\xbd\xd8\ +\x8c\xb9\xd4\x8c\xb5\xd4\x90\xb4\xd4\x90\xb4\xd5\x91\xb4\xd4\x8f\ +\xb5\xd4\x8b\xb5\xd3\x8a\xb5\xd3\x88\xb4\xce\x89\xb5\xcb\x84\xb2\ +\xc6\x85\xb4\xc9\x87\xb0\xcb\x8d\xb1\xcd\x94\xb5\xd2\x93\xb6\xd4\ +\x8c\xb1\xcf\x8a\xb1\xcd\x88\xaf\xce\x86\xae\xcf\x83\xa7\xc9\x87\ +\xab\xc8\x8a\xaf\xca\x8a\xaf\xcb\x87\xa9\xca\x8b\xaa\xca\x8f\xab\ +\xc9\x90\xaa\xc8\x94\xb2\xd0\x91\xb5\xd1\x8e\xb7\xd1\x8a\xb7\xd0\ +\x8c\xb9\xd1\x8f\xb7\xd3\x92\xb6\xd6\x90\xb2\xd5\x8f\xb2\xd5\x89\ +\xb0\xcf\x8a\xae\xce\x89\xac\xcc\x88\xad\xce\x87\xb1\xd1\x83\xb1\ +\xd1\x87\xb0\xd0\x8b\xaf\xd1\x90\xaf\xd3\x00\x00\x00\x92\xbf\xdf\ +\x93\xc0\xe1\x93\xbf\xe2\x95\xbe\xe1\x97\xbe\xe2\x91\xbc\xdf\x8d\ +\xbb\xdd\x8f\xbd\xdf\x8f\xbe\xde\x8f\xc1\xdd\x8d\xc4\xdd\x8d\xc5\ +\xdb\x92\xc5\xdc\x94\xc6\xdf\x94\xc4\xe0\x98\xc6\xe3\x95\xc4\xe3\ +\x92\xc2\xe2\x8f\xc0\xe0\x90\xc2\xe1\x92\xc2\xe0\x94\xc2\xe1\x95\ +\xc1\xde\x93\xc2\xdf\x8f\xbf\xdf\x8d\xbf\xe1\x8e\xbf\xe1\x90\xbf\ +\xe1\x93\xc1\xe4\x94\xc2\xe4\x92\xc1\xdf\x95\xc2\xde\x95\xc1\xde\ +\x92\xc1\xdc\x94\xc2\xdd\x97\xc2\xe1\x9b\xc2\xe3\x9b\xc1\xe2\x95\ +\xbe\xdf\x8f\xbc\xdd\x8b\xbb\xdd\x8b\xbc\xdd\x8e\xbe\xdf\x92\xbf\ +\xdf\x93\xc0\xe0\x8d\xbe\xdd\x88\xbd\xda\x89\xbe\xd9\x89\xbd\xd9\ +\x8c\xbb\xdb\x93\xbf\xdf\x96\xc1\xe0\x93\xbf\xdd\x8c\xb8\xd8\x88\ +\xb7\xd4\x87\xb8\xd5\x89\xb9\xd7\x8a\xb9\xd9\x8a\xb9\xd8\x8a\xb9\ +\xd7\x8c\xba\xda\x90\xba\xdb\x93\xbc\xda\x94\xbe\xdb\x97\xbe\xde\ +\x9a\xbe\xdd\x9e\xc0\xdd\x9e\xbe\xdc\x96\xba\xd8\x92\xbb\xd6\x91\ +\xba\xd3\x91\xba\xd4\x8b\xb7\xd3\x8a\xb8\xd7\x8e\xb7\xd7\x8f\xb7\ +\xd7\x8f\xba\xd7\x8d\xb7\xd5\x8c\xb7\xd5\x89\xb5\xd3\x8b\xb7\xd5\ +\x88\xb6\xd5\x84\xb6\xd4\x86\xb6\xd6\x8c\xb7\xd6\x90\xb6\xd4\x91\ +\xb6\xd1\x93\xb7\xd1\x98\xbb\xd5\x98\xbd\xd9\x93\xb8\xd7\x8c\xb7\ +\xd9\x88\xb6\xd6\x8c\xb5\xd3\x94\xba\xda\x95\xba\xdb\x95\xbb\xdc\ +\x98\xbd\xd9\x99\xbd\xda\x98\xbf\xdd\x9d\xc2\xe1\x9e\xc2\xe1\x9f\ +\xc1\xe1\x9c\xc0\xdf\x9a\xc1\xdc\x96\xc1\xda\x98\xbf\xd9\x96\xba\ +\xd7\x91\xb9\xd6\x8d\xb9\xd6\x8f\xb9\xd6\x97\xbd\xd9\x99\xbe\xda\ +\x98\xc0\xdb\x98\xc0\xdc\x9a\xc0\xde\x94\xbe\xda\x90\xbb\xd6\x92\ +\xb8\xd7\x94\xb6\xd7\x97\xb6\xd7\x97\xb7\xd8\x96\xbb\xd7\x90\xbb\ +\xd3\x8c\xba\xd1\x8f\xb9\xd0\x8d\xb6\xcd\x8c\xb4\xcd\x89\xb1\xca\ +\x8a\xb0\xc9\x8c\xaf\xc8\x92\xb5\xce\x8f\xb4\xce\x8c\xb3\xcf\x88\ +\xb1\xcb\x86\xb1\xca\x83\xaf\xc8\x85\xb0\xc8\x87\xaf\xc7\x8d\xb2\ +\xcb\x91\xb3\xd0\x94\xb3\xd4\x94\xb0\xd1\x90\xaa\xcc\x90\xa9\xca\ +\x93\xaf\xcf\x92\xb4\xd2\x90\xb6\xd5\x8e\xb7\xd4\x8a\xb7\xd3\x8c\ +\xb6\xd3\x90\xb6\xd7\x8e\xb1\xd4\x8c\xae\xd3\x8d\xaf\xd1\x8c\xae\ +\xd1\x8b\xad\xd3\x8a\xad\xd2\x87\xaf\xd1\x83\xb0\xd0\x88\xb1\xd1\ +\x8b\xb0\xd1\x90\xaf\xd1\x00\x00\x00\x91\xbe\xdc\x90\xbf\xe0\x8f\ +\xbc\xde\x94\xbd\xde\x97\xbe\xde\x91\xbc\xdc\x8c\xba\xda\x8c\xba\ +\xdb\x90\xbe\xde\x92\xc3\xe0\x91\xc5\xdf\x90\xc2\xdb\x94\xc2\xdd\ +\x93\xc2\xe1\x93\xc3\xe4\x94\xc2\xe5\x92\xc1\xe3\x90\xc1\xe3\x8f\ +\xbe\xe0\x92\xc0\xe2\x92\xc0\xe0\x93\xc2\xe0\x92\xc1\xdc\x90\xc0\ +\xdd\x8d\xbf\xdd\x91\xc0\xe1\x93\xc2\xe1\x91\xc1\xe0\x95\xc4\xe3\ +\x94\xc2\xe4\x94\xc1\xe3\x99\xc2\xe5\x9a\xc1\xe5\x98\xc1\xe2\x9c\ +\xc3\xe2\x9e\xc3\xe3\x9e\xc2\xe4\x9e\xc1\xe4\x9e\xc2\xe4\x99\xc0\ +\xe2\x97\xbf\xe0\x94\xc0\xdf\x93\xc0\xe0\x95\xc1\xe1\x95\xc2\xe1\ +\x90\xc0\xdd\x8e\xc3\xdb\x8e\xc1\xd9\x90\xbf\xdd\x91\xba\xde\x96\ +\xbd\xe2\x97\xc0\xe1\x93\xbf\xdf\x8e\xbc\xde\x87\xb7\xd6\x82\xb8\ +\xd2\x86\xb8\xd3\x8a\xb9\xd9\x8b\xba\xd9\x8d\xbc\xdd\x8a\xba\xdb\ +\x89\xba\xda\x85\xb9\xd4\x88\xb9\xd6\x90\xbc\xdb\x97\xbc\xdb\x9a\ +\xbf\xdb\x98\xbd\xd9\x95\xba\xd7\x95\xb9\xd7\x95\xb7\xd5\x94\xb7\ +\xd7\x91\xb8\xd4\x8d\xb6\xd4\x8e\xb4\xd4\x8f\xb3\xd3\x8e\xb5\xd4\ +\x8b\xb3\xd4\x8b\xb5\xd6\x88\xb5\xd5\x88\xb4\xd5\x88\xb2\xd4\x86\ +\xb2\xd3\x86\xb4\xd4\x89\xb6\xd2\x8e\xb4\xd1\x8d\xb2\xcf\x90\xb5\ +\xcf\x92\xb6\xd0\x91\xb6\xd1\x8f\xb6\xd5\x89\xb4\xd8\x84\xb2\xd6\ +\x88\xb2\xd5\x8f\xb7\xda\x91\xb7\xda\x92\xb9\xdc\x94\xb8\xd8\x95\ +\xb9\xda\x97\xbd\xdf\x9c\xc0\xe2\xa0\xc0\xe3\x9f\xc2\xe3\x9c\xc1\ +\xdf\x96\xc1\xd8\x94\xc1\xd7\x93\xbd\xd5\x94\xbb\xd4\x95\xbd\xd6\ +\x90\xbd\xd7\x93\xbd\xd7\x9a\xbf\xd8\xa1\xc2\xda\xa1\xc7\xde\x9e\ +\xc4\xdd\x9d\xc2\xde\x97\xbf\xdc\x94\xbc\xd9\x96\xb9\xd9\x99\xb6\ +\xd9\x97\xb5\xd7\x97\xb7\xd6\x97\xba\xd5\x92\xbb\xd0\x8f\xbb\xce\ +\x92\xba\xd0\x92\xb7\xd2\x8f\xb4\xce\x8d\xb2\xcc\x8c\xb1\xc9\x8e\ +\xb3\xc8\x8f\xb4\xcb\x8c\xb2\xcc\x88\xb1\xcd\x85\xb0\xcc\x82\xae\ +\xc8\x83\xb1\xc9\x84\xb3\xc8\x8c\xb6\xcc\x90\xb5\xd0\x92\xb4\xd4\ +\x96\xb3\xd4\x99\xb1\xd3\x97\xab\xce\x91\xa9\xcc\x91\xaf\xcd\x8f\ +\xb1\xd1\x92\xb5\xd8\x92\xb6\xd8\x8d\xb4\xd5\x87\xb2\xd2\x8c\xb5\ +\xd5\x8b\xb1\xd2\x89\xad\xd1\x90\xb0\xd6\x90\xb1\xd8\x90\xb1\xd8\ +\x8f\xb1\xd7\x8d\xb1\xd2\x8b\xb1\xd1\x8e\xb2\xd3\x8c\xae\xd1\x8c\ +\xaa\xce\x00\x00\x00\x8d\xb8\xd9\x8d\xba\xdb\x90\xbb\xdb\x96\xbc\ +\xdd\x98\xbd\xdc\x90\xb9\xd8\x89\xb6\xd4\x8f\xb9\xd8\x92\xbc\xdd\ +\x91\xbf\xdf\x90\xc0\xde\x90\xbe\xdd\x94\xbe\xe0\x92\xbc\xe0\x8d\ +\xba\xe0\x8a\xbb\xdf\x89\xbc\xdd\x8d\xbd\xde\x8f\xbd\xde\x8f\xbc\ +\xde\x91\xbb\xdf\x8e\xbb\xdc\x8d\xbb\xdb\x8c\xbb\xdb\x8f\xbc\xde\ +\x93\xbf\xdf\x94\xc2\xdf\x8f\xc1\xde\x8f\xbf\xdf\x92\xc1\xe3\x93\ +\xc1\xe3\x93\xc0\xe4\x95\xc0\xe5\x97\xbf\xe2\x9a\xc1\xe1\x9c\xc2\ +\xe2\x9b\xc2\xe3\x9b\xc4\xe5\x9e\xc6\xe8\xa0\xc4\xe5\x9c\xc1\xdf\ +\x9a\xc2\xe0\x94\xc2\xdf\x90\xc2\xdf\x91\xc2\xe1\x92\xc1\xe0\x92\ +\xc3\xde\x91\xc1\xda\x92\xbe\xdd\x94\xba\xdf\x94\xbb\xe0\x91\xbe\ +\xdd\x8f\xbf\xdd\x91\xbf\xdf\x8d\xbc\xdb\x87\xbb\xd7\x85\xb9\xd2\ +\x8a\xba\xd6\x86\xb5\xd4\x8c\xbb\xda\x8b\xbe\xdc\x84\xbc\xdb\x7f\ +\xbc\xd8\x84\xbc\xd9\x90\xbe\xdd\x94\xbc\xdd\x9d\xc1\xe1\x9c\xc1\ +\xe2\x97\xbc\xdc\x9a\xbe\xdd\x95\xb9\xdb\x96\xbb\xdc\x92\xba\xd7\ +\x93\xba\xd8\x94\xb9\xda\x93\xb7\xda\x8f\xb7\xd7\x8c\xb7\xd7\x88\ +\xb5\xd7\x83\xb4\xd6\x82\xb2\xd5\x86\xb3\xd4\x89\xb2\xd2\x88\xb4\ +\xd4\x8a\xb4\xd3\x8b\xb3\xd0\x8b\xb3\xce\x8d\xb4\xcc\x8b\xb3\xcc\ +\x8b\xb1\xcf\x8b\xb1\xd3\x85\xaf\xd2\x84\xaf\xd3\x89\xb1\xd6\x8a\ +\xb1\xd3\x8e\xb4\xd6\x8d\xb5\xd5\x8f\xb4\xd6\x92\xb7\xd9\x94\xb9\ +\xdc\x9a\xbd\xdf\x9e\xc0\xe2\x9d\xc1\xe2\x9c\xc1\xde\x98\xbf\xd7\ +\x95\xbf\xd6\x93\xbc\xd5\x93\xba\xd5\x95\xbc\xd6\x96\xbf\xd8\x9a\ +\xc0\xd9\xa0\xc0\xd9\xa2\xc2\xda\x9f\xc5\xdc\x9d\xc6\xdd\x9e\xc4\ +\xe0\x9c\xc1\xe0\x98\xbe\xdf\x96\xba\xdc\x96\xb7\xd9\x94\xb6\xd8\ +\x98\xb7\xd7\x9c\xbb\xd5\x95\xbb\xd0\x8f\xb8\xce\x90\xb6\xd0\x91\ +\xb6\xd3\x91\xb5\xd1\x8f\xb5\xce\x92\xb6\xcc\x8e\xb5\xc9\x8d\xb1\ +\xc8\x8d\xb0\xcb\x8b\xb0\xcf\x85\xae\xcd\x86\xaf\xcd\x89\xb2\xcc\ +\x8b\xb5\xcc\x90\xb6\xd1\x92\xb6\xd3\x93\xb4\xd5\x99\xb4\xd6\x98\ +\xaf\xd2\x90\xa8\xc9\x8e\xab\xca\x8d\xb1\xcd\x8b\xb3\xd0\x90\xb5\ +\xd8\x91\xb4\xd9\x8c\xb1\xd7\x84\xaf\xd3\x85\xaf\xd0\x84\xaf\xcf\ +\x87\xaf\xd2\x8e\xb0\xd6\x92\xb1\xda\x92\xb2\xd9\x8f\xb1\xd6\x92\ +\xb3\xd4\x96\xb5\xd6\x95\xb3\xd6\x90\xaf\xd5\x8c\xad\xd5\x00\x00\ +\x00\x8c\xb6\xd9\x8d\xb5\xd9\x92\xb8\xdc\x97\xbd\xdd\x9a\xbc\xde\ +\x91\xb5\xd8\x8b\xb2\xd5\x8f\xb4\xd8\x8e\xb6\xd9\x8c\xba\xdc\x89\ +\xbb\xdc\x89\xb9\xda\x8e\xb9\xde\x90\xb9\xdf\x88\xb6\xdc\x84\xb6\ +\xda\x87\xb6\xd9\x8d\xba\xdb\x8c\xb9\xd8\x8a\xb7\xd8\x88\xb7\xd9\ +\x8a\xb9\xda\x89\xb7\xd8\x89\xb5\xd7\x90\xb7\xdd\x92\xbb\xdd\x8e\ +\xbc\xdc\x8c\xbe\xdb\x8b\xbb\xdc\x90\xbc\xde\x8e\xbc\xdc\x8d\xbf\ +\xe0\x90\xbe\xe2\x92\xbf\xe2\x93\xbf\xdf\x93\xbf\xde\x8f\xbe\xdd\ +\x8c\xc0\xdd\x91\xc3\xe1\x95\xc3\xe1\x97\xc0\xdd\x98\xc1\xdd\x93\ +\xc1\xdd\x8b\xbe\xdd\x88\xbc\xde\x8e\xbd\xe0\x90\xbe\xdf\x90\xbe\ +\xdc\x8e\xbb\xda\x8e\xb8\xdb\x8e\xba\xdd\x90\xbe\xdc\x91\xbf\xde\ +\x91\xbe\xdf\x90\xbf\xdf\x8d\xbc\xdb\x89\xb9\xd6\x88\xb7\xd7\x82\ +\xb2\xd3\x89\xb9\xd9\x8a\xbd\xdb\x86\xbc\xdd\x81\xbb\xdc\x88\xbc\ +\xdd\x90\xbe\xe0\x94\xbf\xe3\x99\xc2\xe6\x9b\xc4\xe7\x97\xc0\xe1\ +\x96\xbf\xe1\x93\xbf\xe2\x90\xbe\xde\x8f\xbc\xd9\x95\xc0\xdd\x96\ +\xbf\xdf\x94\xbd\xde\x8d\xba\xd7\x8a\xb9\xd5\x8c\xba\xd9\x88\xba\ +\xdb\x84\xb7\xd8\x87\xba\xd7\x8a\xbb\xd6\x89\xb9\xd5\x8d\xb7\xd6\ +\x91\xb6\xd7\x8f\xb5\xd3\x8d\xb6\xd1\x89\xb6\xd0\x87\xb4\xd3\x88\ +\xb2\xd5\x86\xaf\xd2\x89\xb0\xd2\x89\xaf\xd1\x8b\xb1\xd2\x8d\xb3\ +\xd2\x8a\xb4\xd1\x8b\xb5\xd3\x8d\xb7\xd6\x92\xb7\xd8\x97\xba\xdb\ +\x98\xbd\xdf\x9b\xc1\xe2\x9a\xbf\xdd\x9b\xc0\xdb\x99\xc0\xda\x97\ +\xbf\xd8\x95\xbc\xd8\x98\xbd\xda\x9a\xbf\xdb\x9d\xbe\xd8\xa1\xbe\ +\xd9\xa0\xbe\xda\x9f\xc3\xdf\x9c\xc6\xe0\x9b\xc5\xe2\x9c\xc4\xe3\ +\x9c\xc2\xe2\x97\xbd\xdc\x94\xb9\xd9\x94\xb8\xda\x99\xbb\xdb\x9b\ +\xbd\xd8\x97\xbb\xd4\x92\xb6\xd2\x8f\xb3\xd3\x92\xb6\xd8\x94\xb9\ +\xd5\x96\xba\xd4\x96\xb9\xd1\x8f\xb6\xcc\x8f\xb3\xcc\x90\xb0\xd0\ +\x8d\xb1\xd3\x87\xb0\xd0\x8a\xb2\xd1\x8c\xb2\xcf\x8f\xb4\xd0\x90\ +\xb3\xd0\x91\xb4\xd4\x99\xb7\xd8\x99\xb2\xd5\x92\xab\xce\x8b\xa7\ +\xc7\x8a\xad\xcb\x86\xb1\xc9\x85\xb3\xce\x8a\xb3\xd5\x8b\xb1\xd6\ +\x87\xae\xd5\x86\xad\xd3\x88\xae\xd3\x86\xb0\xd3\x88\xb1\xd4\x8b\ +\xb1\xd6\x8f\xb0\xd8\x91\xb1\xd9\x91\xb5\xd7\x94\xb6\xd9\x99\xb6\ +\xd9\x9b\xb4\xda\x93\xb0\xd8\x8e\xaf\xd7\x00\x00\x00\x8c\xb8\xda\ +\x8a\xb5\xd8\x90\xb9\xde\x95\xbc\xdf\x9a\xbd\xe1\x95\xb9\xdd\x8e\ +\xb5\xdc\x8e\xb4\xdb\x8c\xb5\xda\x89\xb8\xd9\x87\xb6\xd7\x84\xb5\ +\xd5\x8b\xb8\xdb\x8b\xb9\xdd\x87\xb7\xda\x84\xb6\xda\x87\xb4\xd9\ +\x8c\xb8\xd9\x89\xb6\xd6\x83\xb3\xd3\x82\xb5\xd3\x86\xb8\xd7\x87\ +\xb4\xd8\x85\xaf\xd5\x8b\xb2\xdb\x8f\xb7\xdc\x8c\xba\xda\x8c\xbb\ +\xda\x8d\xb8\xd8\x91\xb9\xda\x8d\xb9\xd7\x8f\xbe\xdd\x8f\xbc\xdf\ +\x8f\xbc\xe1\x8d\xbb\xde\x87\xb8\xd7\x82\xb6\xd5\x80\xb7\xd6\x87\ +\xbb\xd9\x8b\xbd\xd9\x8c\xba\xd6\x90\xba\xd8\x91\xbc\xdc\x8b\xb9\ +\xdc\x87\xb7\xdc\x8c\xb8\xdd\x8f\xb7\xdb\x8b\xb6\xd7\x86\xb5\xd5\ +\x89\xb7\xda\x8a\xb7\xda\x91\xbd\xdb\x90\xbd\xdc\x8c\xbb\xdb\x8c\ +\xbd\xdc\x8c\xbb\xdc\x87\xb5\xd6\x87\xb4\xd9\x89\xb7\xdd\x88\xb6\ +\xda\x8b\xb9\xdb\x89\xb8\xdb\x88\xb9\xdc\x8e\xbc\xde\x93\xbd\xe0\ +\x95\xbe\xe2\x95\xc1\xe5\x95\xc0\xe3\x92\xbe\xdf\x90\xbd\xdf\x92\ +\xbf\xe1\x91\xc0\xe0\x8d\xbd\xdb\x92\xc1\xdf\x96\xc0\xe0\x94\xc0\ +\xdf\x8e\xba\xd7\x8c\xba\xd5\x92\xbe\xda\x8c\xbd\xdc\x87\xbd\xdb\ +\x85\xbd\xd6\x8a\xc0\xd6\x8f\xbf\xd8\x91\xbc\xd9\x95\xb9\xd9\x94\ +\xb5\xd7\x91\xb7\xd8\x89\xb7\xd5\x87\xb6\xd6\x8a\xb7\xd7\x8a\xb5\ +\xd6\x8d\xb6\xd6\x8d\xb6\xd4\x8b\xb5\xd3\x8b\xb5\xd4\x8f\xb6\xd3\ +\x92\xba\xd4\x92\xbb\xd5\x97\xba\xda\x98\xb9\xd9\x97\xbc\xdb\x98\ +\xbd\xdf\x9e\xbf\xe1\x9d\xbf\xdf\x9b\xc0\xdd\x98\xbe\xdb\x99\xbd\ +\xdd\x98\xbc\xdc\x9e\xbe\xdf\xa0\xbf\xdd\xa1\xbe\xd9\xa2\xbf\xdd\ +\xa3\xc2\xe2\x9f\xc3\xe3\x9c\xc4\xe1\x9c\xc3\xe0\x9e\xc2\xdf\x9c\ +\xc1\xdd\x96\xbc\xdb\x95\xbc\xd9\x9b\xbf\xdc\x99\xbf\xd9\x97\xbb\ +\xd6\x97\xb8\xd7\x98\xb8\xdb\x97\xbb\xda\x99\xbb\xd7\x9d\xbb\xd6\ +\x9a\xb9\xd3\x91\xb5\xd0\x90\xb4\xd1\x91\xb1\xd4\x8f\xb2\xd2\x8c\ +\xb4\xd1\x8e\xb6\xd0\x8f\xb5\xd1\x91\xb5\xd3\x92\xb4\xd3\x95\xb5\ +\xd6\x99\xb5\xd5\x96\xb0\xcf\x90\xab\xca\x8a\xa9\xc8\x89\xad\xcd\ +\x86\xb0\xcc\x84\xb1\xce\x86\xb1\xd0\x86\xad\xd1\x84\xac\xd1\x88\ +\xad\xd2\x88\xab\xd1\x88\xae\xd1\x87\xb1\xd2\x86\xb1\xd3\x8c\xb0\ +\xd5\x91\xb0\xd7\x8d\xb3\xd6\x91\xb4\xd8\x98\xb5\xd9\x99\xb1\xd7\ +\x97\xb1\xd8\x92\xb2\xd7\x00\x00\x00\x8e\xba\xdb\x90\xbe\xde\x96\ +\xc2\xe2\x98\xc1\xe3\x96\xbd\xe0\x95\xbc\xdf\x8f\xb9\xdc\x8a\xb7\ +\xda\x89\xb7\xd8\x8d\xba\xd9\x8f\xba\xd6\x90\xbd\xda\x91\xbe\xde\ +\x8f\xbe\xde\x8d\xbc\xdc\x89\xbb\xda\x88\xba\xdb\x89\xb8\xd9\x87\ +\xb4\xd5\x88\xb7\xd8\x87\xba\xd7\x87\xba\xd8\x87\xb5\xd7\x87\xb2\ +\xd7\x8b\xb3\xda\x8a\xb8\xda\x8a\xb9\xd9\x86\xb4\xd4\x8a\xb3\xd4\ +\x8d\xb3\xd4\x91\xb8\xd5\x91\xba\xda\x8d\xb9\xdc\x8c\xb8\xdd\x8a\ +\xb8\xdc\x89\xb9\xd9\x82\xb5\xd6\x82\xb5\xd5\x87\xb6\xd4\x88\xb8\ +\xd3\x84\xb4\xd0\x88\xb5\xd5\x8b\xb4\xd7\x87\xb0\xd4\x86\xb0\xd5\ +\x8b\xb1\xd7\x88\xaf\xd5\x81\xae\xcf\x7f\xb0\xd1\x81\xb0\xd3\x82\ +\xaf\xd3\x86\xb2\xd3\x86\xb5\xd4\x84\xb8\xd6\x85\xba\xd9\x84\xb5\ +\xd6\x83\xb0\xd5\x82\xaf\xd4\x84\xb1\xd6\x86\xb0\xd7\x8b\xb2\xd8\ +\x87\xb3\xd7\x85\xb4\xd5\x87\xb4\xd5\x8d\xb6\xd7\x92\xbb\xdb\x93\ +\xbf\xde\x94\xbf\xdf\x92\xbb\xdd\x90\xb9\xdb\x91\xba\xdb\x8f\xbd\ +\xdd\x8c\xbb\xda\x8f\xbc\xdb\x94\xbc\xdc\x94\xbe\xdd\x8e\xbc\xd8\ +\x8d\xbb\xda\x90\xbc\xd8\x8b\xbb\xda\x86\xbc\xd9\x8c\xc0\xd9\x8f\ +\xbe\xd4\x92\xbd\xd6\x95\xbe\xd8\x96\xbb\xda\x97\xb9\xdb\x91\xb8\ +\xd9\x8b\xba\xd6\x88\xb9\xd3\x88\xb8\xd5\x8e\xba\xda\x8f\xb9\xd8\ +\x91\xbd\xd8\x91\xbb\xd7\x8e\xb7\xd4\x92\xb9\xd6\x98\xbc\xd7\x98\ +\xbd\xd7\x97\xba\xd8\x9c\xbb\xdb\x9a\xbc\xd8\x9a\xbe\xdc\x9c\xc0\ +\xde\x9d\xbd\xdd\x9c\xbd\xde\x9a\xba\xdb\x99\xb9\xdc\x9a\xbb\xe0\ +\xa1\xbf\xe1\xa1\xbd\xdc\xa2\xbe\xdb\xa3\xbc\xde\xa4\xbf\xe1\xa0\ +\xc1\xe0\x9c\xc1\xde\x9d\xc1\xde\xa1\xc2\xdf\x9f\xc2\xdf\x9b\xc0\ +\xde\x99\xbd\xdb\x9a\xbf\xdb\x98\xbf\xdb\x98\xbd\xd9\x9c\xbc\xdc\ +\x9e\xbc\xdf\x9f\xbe\xdf\x9d\xbb\xd8\xa0\xb8\xd8\x9b\xb6\xd7\x98\ +\xb7\xd7\x94\xb4\xd6\x95\xb3\xd6\x91\xb3\xd0\x8e\xb3\xcc\x8b\xb4\ +\xcc\x8a\xb4\xcd\x8b\xb3\xcd\x90\xb3\xcf\x91\xb3\xd1\x97\xb5\xd3\ +\x92\xb1\xcd\x8c\xac\xc7\x8b\xad\xca\x8c\xb0\xd0\x8a\xb1\xd1\x88\ +\xb0\xd0\x88\xaf\xd1\x85\xac\xce\x83\xae\xce\x84\xaf\xd1\x80\xab\ +\xce\x85\xae\xcf\x85\xaf\xcd\x83\xb0\xcd\x88\xb1\xd4\x91\xb3\xda\ +\x8d\xaf\xd3\x92\xb0\xd5\x96\xb0\xd4\x97\xaf\xd3\x9a\xb4\xd7\x94\ +\xb3\xd6\x00\x00\x00\x91\xbe\xde\x93\xc2\xe2\x97\xc5\xe4\x94\xc1\ +\xe0\x90\xbe\xdf\x8d\xbd\xdc\x8e\xbe\xdc\x8c\xbc\xdb\x8c\xbb\xd9\ +\x94\xbe\xdb\x9a\xc0\xde\x98\xc1\xe1\x96\xc3\xe2\x94\xc1\xe2\x95\ +\xc3\xe2\x90\xc2\xe0\x8a\xc0\xde\x8b\xbd\xdc\x90\xbb\xde\x92\xbd\ +\xe0\x93\xc0\xe0\x8a\xbc\xdb\x87\xb5\xd9\x85\xb0\xd6\x8a\xb3\xd9\ +\x8c\xb8\xdd\x88\xb5\xdb\x85\xb2\xd7\x82\xb2\xd5\x87\xb5\xd5\x8c\ +\xb6\xd5\x89\xb7\xd5\x84\xb6\xd3\x85\xb8\xd6\x8c\xbb\xdc\x8d\xbc\ +\xdc\x8d\xbc\xdb\x8d\xbc\xdb\x90\xbc\xdc\x8b\xba\xd9\x86\xb8\xd6\ +\x82\xb3\xd3\x83\xb2\xd3\x83\xb0\xd2\x88\xb0\xd4\x8c\xb1\xd7\x85\ +\xaf\xd3\x7e\xaf\xcd\x7e\xb0\xce\x7c\xad\xd1\x7a\xa8\xce\x7d\xab\ +\xcc\x82\xb1\xd0\x7d\xb2\xcf\x7d\xb4\xd2\x7d\xb1\xd3\x7f\xb0\xd3\ +\x7f\xae\xd0\x7f\xac\xd1\x81\xab\xd2\x85\xaf\xd4\x85\xb2\xd5\x7e\ +\xaf\xd0\x78\xaa\xca\x7e\xae\xce\x89\xb6\xd3\x8e\xba\xd7\x8b\xb8\ +\xd5\x89\xb4\xd2\x8c\xb4\xd5\x8e\xb5\xd5\x88\xb6\xd4\x86\xb6\xd2\ +\x86\xb3\xd3\x8c\xb6\xd7\x8a\xb9\xd7\x89\xba\xd4\x8c\xbb\xd6\x8f\ +\xbc\xda\x8b\xbc\xda\x89\xbd\xdb\x8e\xba\xd7\x92\xb8\xd2\x91\xb6\ +\xd2\x92\xb8\xd9\x93\xb6\xd8\x8d\xb3\xd5\x85\xb1\xcf\x81\xb2\xcc\ +\x82\xb4\xcd\x85\xb4\xd1\x89\xb7\xd4\x8a\xb7\xd4\x8c\xba\xd3\x8e\ +\xba\xd3\x8f\xb7\xd2\x92\xb7\xd2\x96\xb9\xd5\x97\xb9\xd7\x96\xb8\ +\xda\x9a\xba\xdd\x9a\xb9\xda\x9b\xbc\xdb\x9a\xbc\xda\x9c\xbc\xdc\ +\x9c\xbb\xdc\x99\xbb\xdc\x96\xb7\xd9\x94\xb6\xd9\x9d\xbb\xde\xa3\ +\xbe\xde\xa5\xbe\xdf\xa4\xbd\xdf\xa1\xbf\xdd\x9d\xbf\xdb\x9e\xc2\ +\xdf\x9d\xc0\xde\x9c\xc0\xde\x9b\xc0\xdd\x9b\xc0\xdc\x9b\xbf\xdd\ +\x97\xbb\xd9\x98\xbd\xd9\x99\xbd\xd9\x9d\xbd\xde\x9f\xbd\xe0\xa1\ +\xbe\xdf\xa3\xbd\xdc\xa3\xbb\xde\xa1\xba\xde\x9a\xb8\xdb\x9a\xb7\ +\xd9\x98\xb4\xd5\x8d\xae\xca\x89\xb0\xc6\x89\xb2\xc7\x86\xb2\xc8\ +\x85\xb4\xca\x85\xb1\xc9\x89\xb2\xcb\x8c\xb0\xca\x8b\xae\xc9\x87\ +\xad\xc8\x89\xaf\xcb\x8d\xb3\xd3\x89\xaf\xd1\x8b\xae\xd0\x88\xac\ +\xcf\x85\xad\xce\x81\xae\xcf\x7c\xaf\xcd\x7b\xaf\xcd\x7f\xae\xce\ +\x81\xb0\xcf\x84\xb2\xd1\x88\xb2\xd4\x8c\xb0\xd3\x90\xb0\xd4\x93\ +\xaf\xd2\x97\xb0\xd3\x99\xb1\xd4\x9a\xb5\xd8\x92\xb3\xd5\x00\x00\ +\x00\x8e\xbe\xde\x8c\xbf\xde\x8c\xc1\xdf\x87\xbd\xdc\x87\xbb\xdb\ +\x8a\xbe\xdb\x8b\xbf\xda\x8d\xbf\xda\x8f\xbf\xd9\x95\xc1\xde\x98\ +\xc2\xe2\x99\xc6\xe7\x95\xc6\xe6\x98\xc6\xe7\x97\xc4\xe6\x95\xc4\ +\xe4\x8f\xc3\xe1\x93\xc5\xe4\x95\xc2\xe3\x9c\xc4\xe6\x98\xc2\xe2\ +\x8e\xbe\xdf\x8b\xba\xdd\x87\xb6\xdc\x8c\xb8\xde\x8e\xba\xdf\x88\ +\xb6\xdc\x84\xb4\xd9\x7f\xb6\xd8\x88\xb9\xd8\x8d\xb8\xd8\x88\xb8\ +\xd5\x83\xb9\xd2\x84\xbb\xd2\x8e\xbe\xdb\x8f\xc0\xde\x90\xc2\xdf\ +\x95\xc2\xe2\x96\xc1\xe2\x90\xbe\xde\x89\xba\xd8\x88\xb9\xd7\x8a\ +\xb9\xd7\x8b\xb9\xd8\x8d\xb6\xd7\x90\xb6\xd9\x8b\xb5\xd6\x8a\xb8\ +\xd4\x8a\xb8\xd6\x82\xb3\xd4\x7d\xb0\xd2\x82\xb1\xd3\x84\xb3\xd3\ +\x84\xb6\xd4\x7b\xb2\xcf\x7a\xb2\xd1\x80\xb3\xd5\x81\xb0\xd2\x7f\ +\xad\xd0\x82\xb0\xd2\x83\xb2\xd4\x81\xb3\xd4\x7d\xb1\xd1\x77\xac\ +\xcb\x7c\xae\xce\x89\xb9\xd6\x8e\xbb\xd7\x8c\xb9\xd3\x8a\xb3\xd0\ +\x8a\xb1\xd1\x8b\xb3\xd4\x88\xb4\xd0\x85\xb5\xce\x87\xb5\xd2\x88\ +\xb4\xd6\x85\xb4\xd5\x83\xb3\xcf\x89\xb9\xd4\x8f\xbd\xdb\x90\xbe\ +\xde\x8c\xbb\xd9\x8e\xb7\xd3\x90\xb5\xcf\x8e\xb2\xcf\x8d\xb3\xd4\ +\x8d\xb2\xd5\x86\xae\xd0\x7c\xab\xc7\x7b\xad\xc5\x7c\xae\xc5\x82\ +\xaf\xc9\x87\xb0\xcc\x85\xb1\xcc\x87\xb7\xce\x8b\xb7\xcf\x8b\xb5\ +\xcd\x8c\xb4\xce\x8e\xb5\xd0\x8c\xb2\xd2\x8f\xb4\xd6\x93\xb7\xd8\ +\x94\xb7\xd3\x95\xb7\xd3\x97\xb9\xd8\x9a\xba\xdb\x9c\xbb\xdd\x9a\ +\xba\xdb\x96\xb7\xd8\x93\xb7\xd7\x97\xba\xda\x9d\xbb\xde\xa1\xbc\ +\xde\xa0\xbe\xdc\x9b\xbf\xd9\x97\xbf\xd8\x9a\xc1\xdc\x9c\xc0\xdf\ +\x9a\xbf\xdd\x9c\xc1\xdc\x9a\xbf\xd9\x98\xbd\xd9\x98\xba\xd8\x99\ +\xbc\xda\x98\xbc\xdb\x9d\xbd\xe0\x9f\xbd\xe0\x9f\xbd\xdd\xa0\xbc\ +\xdb\xa1\xbb\xde\xa1\xbb\xe1\x9d\xb9\xdf\x98\xb3\xd8\x93\xb1\xd2\ +\x8a\xac\xc8\x88\xaf\xc7\x8c\xb2\xce\x8c\xb4\xcd\x82\xb1\xc7\x7f\ +\xae\xc6\x80\xae\xc6\x83\xac\xc5\x85\xaa\xc5\x83\xa9\xc4\x86\xaf\ +\xca\x8c\xb3\xd3\x8b\xb2\xd3\x8b\xb1\xd2\x8a\xae\xd2\x86\xae\xcf\ +\x7e\xae\xcb\x7e\xb0\xcb\x7d\xb1\xcc\x82\xb4\xd2\x84\xb2\xd2\x87\ +\xb2\xd3\x8a\xb1\xd4\x8d\xb1\xd4\x90\xaf\xd1\x94\xaf\xd3\x95\xb0\ +\xd3\x95\xb1\xd4\x94\xb3\xd6\x8d\xb2\xd3\x00\x00\x00\x92\xc1\xe0\ +\x8e\xbf\xe0\x8a\xbf\xe0\x85\xba\xdb\x8a\xbb\xdc\x8b\xbb\xdb\x8c\ +\xbe\xdb\x8b\xbf\xda\x8f\xc2\xdd\x91\xc2\xe0\x8e\xbf\xdd\x91\xc2\ +\xe2\x93\xc4\xe5\x96\xc2\xe8\x94\xbf\xe7\x93\xc0\xe3\x95\xc5\xe3\ +\x9a\xc8\xe6\x9d\xc9\xe7\xa0\xc8\xe5\x9a\xc4\xe0\x91\xc0\xdc\x8d\ +\xbe\xdf\x8e\xbe\xe2\x90\xbf\xe2\x8f\xbc\xdf\x8a\xbb\xdd\x85\xb9\ +\xda\x80\xb8\xd6\x88\xbb\xd7\x8d\xb9\xd8\x8d\xb9\xd7\x8d\xbf\xd7\ +\x8e\xc1\xd8\x8d\xbf\xd8\x8e\xc2\xdf\x90\xc1\xe2\x98\xc2\xe5\x9d\ +\xc3\xe6\x98\xc0\xe1\x92\xbe\xdc\x91\xbf\xda\x92\xc0\xdb\x97\xc1\ +\xdf\x99\xbf\xdf\x98\xbf\xde\x9a\xc0\xdd\x97\xbe\xd9\x92\xbd\xdb\ +\x89\xb9\xda\x86\xb9\xda\x8b\xb9\xdd\x8c\xb9\xdb\x8b\xbc\xda\x85\ +\xba\xd8\x81\xb9\xd7\x84\xb8\xd9\x84\xb3\xd5\x85\xb2\xd4\x89\xb8\ +\xd7\x89\xbc\xda\x86\xba\xd7\x86\xb9\xd5\x84\xb5\xd3\x89\xb8\xd8\ +\x8e\xbc\xdc\x94\xbf\xdc\x92\xba\xd6\x90\xb5\xd3\x8e\xb3\xd4\x8d\ +\xb4\xd5\x8e\xb7\xd3\x8b\xb8\xd2\x8a\xb6\xd3\x8c\xb5\xd6\x89\xb2\ +\xd4\x8b\xb6\xd5\x8f\xbb\xd9\x94\xbe\xdc\x94\xbe\xdd\x92\xbe\xd8\ +\x91\xb9\xd2\x90\xb5\xd0\x92\xb7\xd3\x8e\xb4\xd4\x89\xb2\xd2\x83\ +\xaf\xce\x7d\xab\xc6\x7e\xae\xc6\x82\xb2\xc9\x86\xb1\xc9\x89\xb0\ +\xcb\x89\xb1\xcc\x86\xb3\xcb\x87\xb3\xcb\x86\xb1\xca\x87\xb2\xca\ +\x84\xae\xc9\x83\xae\xce\x84\xae\xcf\x8c\xb4\xd0\x91\xb6\xd0\x91\ +\xb4\xd0\x93\xb4\xd5\x98\xb7\xda\x99\xb8\xdb\x98\xb7\xd9\x99\xb7\ +\xd8\x94\xb7\xd5\x92\xb9\xd7\x96\xb9\xdb\x9b\xba\xdc\x9a\xbb\xd9\ +\x96\xbe\xd8\x90\xbd\xd4\x92\xbe\xd5\x97\xbe\xd9\x96\xbb\xd7\x95\ +\xbb\xd3\x94\xbb\xd1\x96\xbb\xd7\x96\xb8\xd7\x97\xba\xd8\x95\xba\ +\xd7\x9c\xbc\xdc\x9e\xb9\xdc\x9f\xba\xdb\x9d\xba\xda\xa0\xbb\xe0\ +\x9e\xba\xe0\x9a\xb9\xdc\x95\xb4\xd6\x8d\xae\xcb\x87\xad\xc7\x86\ +\xb0\xca\x87\xaf\xce\x86\xae\xcc\x81\xaf\xc7\x7e\xaf\xc6\x7e\xae\ +\xc7\x7e\xaa\xc3\x80\xa7\xbf\x81\xa5\xbe\x87\xac\xc9\x8a\xb0\xd0\ +\x88\xb1\xd0\x85\xb0\xd0\x87\xaf\xd2\x84\xad\xcd\x81\xac\xc8\x83\ +\xae\xcb\x85\xb3\xd2\x87\xb3\xd5\x8a\xb1\xd6\x8c\xb1\xd4\x8e\xb2\ +\xd2\x8e\xb1\xd2\x92\xb0\xd4\x93\xb0\xd4\x92\xb0\xd4\x8e\xb1\xd1\ +\x88\xb0\xcd\x89\xb2\xcf\x00\x00\x00\x99\xc2\xdf\x96\xbf\xe0\x91\ +\xbe\xdf\x8f\xbd\xdd\x91\xbd\xdd\x90\xbf\xdf\x8e\xbf\xdf\x8d\xc2\ +\xe2\x8d\xc1\xe0\x8e\xc2\xe0\x8c\xc0\xdd\x8e\xc0\xdf\x8f\xbe\xe0\ +\x8f\xbd\xe3\x8b\xba\xe1\x8d\xbb\xdf\x96\xc0\xe2\x9e\xc5\xe6\x9f\ +\xc8\xe7\x9b\xc5\xe0\x95\xc3\xdd\x90\xc1\xda\x8b\xc1\xde\x8a\xc0\ +\xe0\x8d\xbf\xe0\x8e\xbd\xdf\x89\xba\xdd\x84\xb8\xda\x82\xb7\xd7\ +\x89\xb8\xd7\x90\xb9\xd9\x95\xbd\xdc\x95\xc0\xde\x94\xc3\xde\x8f\ +\xc1\xda\x8a\xbf\xdc\x8d\xbe\xe1\x95\xbe\xe4\x9b\xbf\xe6\x99\xbf\ +\xe1\x96\xc0\xdf\x94\xc0\xdf\x95\xc2\xe0\x98\xc4\xe0\x9c\xc6\xe2\ +\x9d\xc4\xe1\x9d\xc2\xe1\x98\xc0\xde\x93\xbf\xe1\x8f\xbd\xe1\x8f\ +\xbc\xe1\x92\xbe\xe3\x92\xbf\xe2\x92\xc2\xe1\x91\xc4\xe1\x8c\xbf\ +\xdc\x8d\xbc\xdd\x8f\xbb\xdd\x90\xba\xdc\x92\xbe\xdb\x8f\xc0\xdb\ +\x8a\xc0\xd8\x87\xbe\xd6\x8b\xbd\xd7\x91\xbe\xdb\x92\xbd\xdd\x97\ +\xbe\xdc\x98\xbc\xd9\x9a\xb9\xd9\x97\xb8\xda\x95\xb7\xdb\x94\xb7\ +\xda\x92\xb9\xd9\x8f\xb6\xd7\x95\xba\xd9\x97\xba\xdb\x9a\xbc\xde\ +\x9b\xbe\xdf\x9c\xc1\xdf\x9c\xc2\xde\x9a\xc1\xdb\x99\xbf\xd9\x9a\ +\xbf\xda\x99\xbe\xd9\x93\xbd\xd7\x8c\xb9\xd5\x89\xb5\xd0\x89\xb3\ +\xcc\x85\xaf\xc9\x87\xb0\xcb\x86\xb1\xcc\x89\xb0\xcc\x8d\xb2\xce\ +\x8b\xb3\xce\x89\xb2\xcb\x86\xb2\xca\x84\xb1\xcb\x86\xb1\xcd\x86\ +\xb1\xd1\x86\xb2\xd2\x8b\xb6\xd1\x8d\xb4\xcf\x8d\xb1\xd0\x90\xb3\ +\xd5\x91\xb4\xd6\x91\xb5\xd4\x8f\xb2\xd1\x91\xb4\xd4\x94\xb7\xd5\ +\x90\xb8\xd6\x90\xb7\xd9\x94\xb7\xd9\x93\xb7\xd6\x90\xb7\xd2\x8c\ +\xb8\xd0\x90\xbb\xd2\x96\xbb\xd5\x95\xb8\xd3\x8f\xb4\xcd\x8f\xb7\ +\xcf\x91\xb7\xd2\x91\xb5\xd1\x93\xb7\xd2\x93\xb7\xd2\x99\xb7\xd5\ +\x9e\xb7\xd8\x9a\xb5\xd9\x97\xb4\xd8\x9c\xb7\xde\x9e\xb9\xdf\x97\ +\xb8\xda\x8f\xb2\xd1\x8c\xae\xcc\x89\xae\xcc\x87\xaf\xce\x85\xad\ +\xce\x83\xad\xcb\x81\xaf\xc7\x82\xaf\xc8\x82\xad\xc8\x7e\xa5\xc2\ +\x7c\x9e\xba\x87\xa5\xc1\x8c\xac\xcb\x88\xae\xcf\x80\xac\xcc\x81\ +\xb0\xd0\x82\xaf\xd1\x87\xae\xd1\x88\xaf\xcd\x8c\xb2\xd0\x8d\xb5\ +\xd7\x90\xb4\xdc\x93\xb4\xdb\x95\xb2\xd7\x98\xb4\xd8\x93\xb1\xd5\ +\x95\xb2\xd8\x95\xb2\xd8\x92\xb1\xd6\x92\xb3\xd4\x8f\xb3\xd1\x8e\ +\xb2\xd0\x00\x00\x00\x96\xc2\xde\x95\xbc\xdd\x93\xba\xdc\x92\xba\ +\xd8\x94\xbd\xdb\x93\xbf\xde\x91\xc0\xe2\x8e\xc1\xe3\x8c\xc0\xe2\ +\x8f\xc0\xe1\x8d\xbe\xde\x8c\xbe\xdf\x8d\xba\xdf\x87\xb9\xdd\x84\ +\xb7\xdc\x89\xb6\xdb\x92\xba\xdd\x9b\xc0\xe3\x9b\xc3\xe3\x95\xc1\ +\xdd\x90\xbe\xdb\x8d\xbf\xdc\x88\xbe\xdd\x89\xbe\xde\x8d\xbd\xe0\ +\x8d\xb9\xde\x8a\xb8\xde\x84\xb6\xdc\x80\xb3\xd7\x86\xb4\xd7\x8b\ +\xb5\xd6\x94\xbb\xda\x93\xbd\xdc\x91\xbf\xde\x8f\xbe\xdc\x8c\xbe\ +\xdd\x8b\xbb\xdf\x90\xbb\xe2\x97\xbe\xe4\x96\xc0\xe3\x91\xbf\xe0\ +\x92\xbf\xe0\x92\xbf\xe0\x92\xc2\xe0\x96\xc5\xe1\x96\xc3\xe2\x96\ +\xc0\xe1\x93\xc1\xe1\x91\xbe\xe2\x92\xbf\xe4\x94\xc0\xe5\x93\xc0\ +\xe5\x91\xbf\xe2\x91\xc1\xe1\x92\xc2\xe1\x91\xc0\xdf\x92\xc0\xe1\ +\x95\xc0\xe0\x94\xbe\xdc\x93\xbf\xdb\x8f\xbf\xdc\x89\xbf\xd8\x84\ +\xbf\xd4\x85\xbc\xd2\x8b\xba\xd4\x91\xba\xd9\x99\xbd\xdb\xa0\xbf\ +\xdc\x9e\xba\xda\x99\xb8\xdb\x93\xb4\xdb\x91\xb2\xd9\x91\xb3\xd8\ +\x96\xb8\xdc\x9e\xbd\xde\xa1\xc0\xe1\xa4\xc3\xe4\xa1\xc2\xe3\xa2\ +\xc6\xe4\xa0\xc5\xe0\x9f\xc3\xdf\xa0\xc3\xdf\xa4\xc4\xe1\xa0\xc4\ +\xe0\x9b\xc3\xdd\x96\xc0\xd9\x94\xbd\xd6\x8f\xb6\xcf\x8d\xb3\xcf\ +\x8c\xb3\xd2\x8b\xb2\xd4\x8d\xb2\xd3\x8d\xb0\xcf\x8f\xb4\xd1\x8d\ +\xb4\xcf\x8b\xb2\xce\x89\xb3\xd0\x8c\xb4\xd2\x8f\xb4\xd3\x8b\xb3\ +\xd2\x8a\xb4\xd0\x8b\xb5\xd2\x8e\xb4\xd4\x8f\xb4\xd4\x92\xb5\xd2\ +\x91\xb5\xd0\x90\xb5\xd0\x91\xb6\xd2\x95\xb9\xd6\x93\xb9\xd6\x92\ +\xb8\xd7\x94\xb6\xd6\x93\xb4\xd2\x91\xb6\xd0\x8f\xb6\xcf\x91\xb8\ +\xd1\x96\xb7\xd3\x98\xb5\xd1\x8f\xb3\xcd\x8b\xb4\xcd\x8d\xb5\xce\ +\x90\xb4\xcf\x92\xb2\xd0\x94\xb4\xd1\x98\xb7\xd4\x98\xb5\xd5\x90\ +\xb0\xd3\x8f\xb0\xd2\x97\xb3\xd5\x9a\xb7\xda\x95\xb6\xd7\x92\xb2\ +\xd1\x8c\xab\xcc\x87\xa9\xca\x86\xab\xcb\x87\xab\xcb\x84\xac\xc7\ +\x83\xae\xc6\x84\xad\xc8\x83\xa9\xc8\x7f\xa0\xc2\x7f\x9d\xbc\x89\ +\xa5\xc5\x8e\xae\xd0\x89\xaf\xd1\x84\xaf\xce\x83\xb0\xce\x85\xb0\ +\xd2\x8c\xb2\xd4\x8f\xb2\xd1\x93\xb4\xd4\x93\xb6\xd8\x93\xb5\xdb\ +\x94\xb4\xda\x99\xb3\xdb\x9a\xb2\xdb\x96\xb0\xd9\x98\xb3\xda\x96\ +\xb4\xd8\x98\xb5\xda\x99\xb5\xd9\x9b\xb5\xd8\x9a\xb4\xd6\x00\x00\ +\x00\x8c\xc0\xd9\x8e\xbd\xdb\x92\xbb\xdb\x94\xbb\xdb\x93\xbc\xdc\ +\x91\xbc\xdb\x8f\xbe\xdb\x8b\xbd\xde\x8a\xbc\xe0\x8c\xbd\xdd\x84\ +\xba\xd9\x88\xbb\xda\x8a\xb8\xdb\x85\xb9\xda\x82\xb7\xd8\x87\xb7\ +\xd8\x8d\xb8\xd9\x92\xbc\xdd\x96\xc1\xdf\x94\xc0\xda\x8f\xbe\xd8\ +\x8b\xbf\xda\x88\xbe\xdc\x8c\xbd\xe0\x90\xbb\xe2\x8d\xb9\xe0\x8b\ +\xbb\xe1\x84\xb9\xde\x82\xb4\xdb\x82\xb0\xd7\x87\xb3\xd6\x8e\xb7\ +\xd8\x8f\xbb\xda\x8e\xbd\xdb\x8f\xbd\xdd\x8d\xbb\xdd\x89\xba\xde\ +\x8d\xba\xe2\x90\xbb\xe1\x95\xc1\xe6\x94\xc0\xe3\x94\xbe\xe1\x94\ +\xbd\xdf\x91\xc0\xde\x91\xc1\xdf\x91\xbf\xe0\x90\xbd\xe1\x90\xbe\ +\xe0\x94\xc2\xe4\x97\xc4\xe5\x9a\xc4\xe5\x94\xc2\xe3\x8f\xbf\xe0\ +\x8d\xbf\xdf\x92\xc1\xe0\x92\xbf\xe1\x92\xc0\xe1\x91\xc0\xde\x8f\ +\xbe\xd9\x90\xbd\xd9\x90\xbc\xdb\x8b\xbb\xd8\x7f\xb4\xcd\x79\xad\ +\xc5\x7c\xac\xc4\x85\xaf\xc9\x91\xb5\xd0\x9a\xb8\xd4\x9a\xb7\xd7\ +\x98\xb7\xdb\x91\xb3\xd9\x8d\xae\xd5\x8c\xae\xd1\x93\xb6\xd6\x9b\ +\xbd\xdd\x9f\xc1\xe2\xa0\xc4\xe2\x9e\xc5\xe2\x9f\xc5\xe3\xa1\xc4\ +\xe1\xa0\xc1\xe0\xa3\xc3\xe2\xa1\xc3\xdf\x9f\xc1\xde\x9c\xc1\xdb\ +\x9c\xbe\xda\x9c\xbe\xd9\x96\xbb\xd5\x8f\xb6\xd2\x8b\xb5\xd3\x8d\ +\xb2\xd3\x91\xb1\xd4\x8f\xb0\xd4\x92\xb6\xd6\x92\xb6\xd4\x90\xb5\ +\xd3\x8f\xb5\xd5\x93\xb8\xd8\x90\xb6\xd3\x8c\xb6\xd2\x8a\xb5\xcf\ +\x90\xb8\xd5\x92\xb7\xd7\x8f\xb4\xd4\x96\xb8\xd6\x94\xb7\xd2\x92\ +\xb7\xd1\x95\xba\xd6\x97\xba\xd4\x97\xbc\xd6\x97\xba\xd7\x99\xb8\ +\xd5\x94\xb7\xcf\x91\xb8\xce\x93\xba\xd1\x96\xbb\xd6\x9b\xb9\xd6\ +\x9a\xb6\xd3\x93\xb6\xd0\x8c\xb4\xcd\x8f\xb4\xce\x93\xb3\xd2\x96\ +\xb4\xd5\x95\xb4\xd4\x94\xb4\xd2\x91\xb4\xd0\x8a\xb0\xd0\x8a\xad\ +\xcd\x8e\xac\xcb\x96\xb4\xd2\x94\xb6\xd3\x8f\xb2\xcd\x88\xab\xc9\ +\x80\xa7\xc4\x7e\xa8\xc3\x86\xac\xc9\x89\xad\xca\x87\xac\xc6\x86\ +\xac\xca\x84\xa8\xc7\x80\xa1\xc3\x83\xa0\xc1\x89\xa9\xca\x8c\xb0\ +\xd0\x8b\xb1\xd3\x88\xb1\xd1\x88\xb1\xd1\x89\xb1\xd1\x8d\xb1\xd2\ +\x94\xb4\xd5\x94\xb6\xd4\x91\xb5\xd3\x92\xb7\xd7\x91\xb5\xd5\x93\ +\xb3\xd8\x91\xb1\xd8\x93\xb0\xd7\x97\xb3\xd6\x98\xb7\xd8\x9a\xb7\ +\xd9\x9d\xb7\xdc\x99\xb2\xd8\x98\xb2\xd6\x00\x00\x00\x86\xbd\xd5\ +\x87\xbb\xd7\x8e\xbc\xdb\x8e\xb9\xda\x8e\xbc\xdb\x8d\xbb\xd9\x8c\ +\xbc\xd9\x89\xbc\xdb\x88\xbb\xdc\x87\xb8\xd8\x81\xb6\xd5\x86\xb9\ +\xd8\x89\xba\xdc\x87\xba\xda\x8b\xbc\xd9\x8c\xbb\xd7\x8e\xbc\xda\ +\x94\xbf\xe0\x97\xc0\xde\x92\xc0\xd9\x90\xc1\xd8\x89\xbe\xd6\x86\ +\xbc\xda\x8b\xbd\xe0\x8c\xbb\xe1\x8a\xb9\xdf\x87\xbb\xe1\x86\xbb\ +\xe0\x83\xb4\xdb\x84\xaf\xd7\x82\xaf\xd3\x83\xb2\xd3\x84\xb5\xd4\ +\x83\xb6\xd5\x87\xb9\xd8\x89\xbb\xdb\x85\xba\xdb\x85\xb8\xdb\x8a\ +\xbc\xe0\x8d\xbf\xe1\x8f\xbe\xdf\x93\xbb\xdd\x91\xb8\xd9\x8e\xbb\ +\xdb\x8d\xbb\xdb\x8e\xbb\xe0\x91\xbe\xe3\x91\xc0\xe1\x93\xc2\xe1\ +\x97\xc3\xe4\x98\xc3\xe4\x93\xc0\xe2\x91\xc0\xe0\x91\xc0\xdf\x94\ +\xc1\xdf\x96\xc1\xe3\x91\xbe\xe0\x8f\xbe\xdc\x8e\xbd\xd8\x8c\xbb\ +\xd6\x8a\xb6\xd5\x81\xa9\xc8\x6b\x97\xb2\x56\x86\xa0\x4c\x7c\x94\ +\x5e\x89\xa0\x77\x9c\xb4\x8d\xac\xc7\x8f\xb0\xcf\x92\xb5\xd8\x8f\ +\xb5\xd9\x8d\xb2\xd6\x8b\xb1\xd3\x8f\xb8\xd6\x93\xbc\xda\x98\xbf\ +\xdf\x96\xc1\xdc\x99\xc5\xe0\x9a\xc4\xdf\x9b\xc2\xde\x9a\xc0\xde\ +\x9a\xbf\xdc\x9a\xc0\xda\x99\xc0\xd9\x97\xbf\xd8\x98\xbe\xd9\x9a\ +\xbd\xd8\x97\xbd\xd8\x93\xbc\xd7\x8f\xbb\xda\x8e\xb7\xd3\x91\xb3\ +\xd5\x93\xb2\xd4\x91\xb5\xd6\x92\xb7\xd4\x92\xb8\xd6\x95\xbb\xd8\ +\x95\xbc\xd8\x91\xbc\xd4\x8c\xba\xd3\x90\xbb\xd6\x95\xbc\xd9\x94\ +\xb6\xda\x94\xb4\xd7\x93\xb6\xd6\x95\xb9\xd8\x94\xb9\xd5\x94\xbb\ +\xd5\x94\xbb\xd4\x99\xbe\xd9\x9b\xbd\xd9\x9a\xbc\xd8\x96\xbc\xd5\ +\x94\xbd\xd4\x95\xbd\xd6\x99\xbd\xdb\x96\xb9\xd7\x9a\xb8\xd7\x95\ +\xb8\xd2\x90\xb6\xce\x91\xb6\xd1\x97\xb7\xd9\x9b\xb7\xda\x9b\xb8\ +\xd8\x95\xb8\xd5\x8f\xb4\xcf\x8b\xb1\xd0\x88\xae\xcd\x8c\xb0\xcd\ +\x8e\xb2\xcc\x8e\xb3\xcd\x8b\xb1\xcd\x82\xab\xcb\x7a\xa8\xc4\x7c\ +\xab\xc5\x83\xac\xcb\x88\xab\xcb\x86\xab\xc7\x84\xab\xc6\x82\xa9\ +\xc5\x7e\xa3\xc2\x82\xa3\xc2\x88\xab\xc9\x88\xaf\xcf\x88\xb4\xd3\ +\x86\xb4\xd3\x86\xb3\xd1\x89\xb2\xd0\x8f\xb3\xd2\x91\xb4\xd2\x8d\ +\xb4\xd0\x8c\xb4\xd1\x8d\xb4\xd4\x8d\xb3\xd3\x8b\xb3\xd3\x8c\xb5\ +\xd6\x8f\xb4\xd7\x96\xb6\xd9\x99\xb8\xd9\x9d\xb9\xdb\x9d\xb9\xdb\ +\x94\xb3\xd7\x8f\xb0\xd5\x00\x00\x00\x8c\xc0\xd9\x8c\xbd\xda\x8d\ +\xbc\xdb\x8a\xb9\xd8\x89\xb9\xd6\x8c\xbc\xd7\x8d\xbe\xd9\x88\xba\ +\xda\x86\xb8\xdb\x81\xb3\xd4\x83\xb5\xd4\x86\xb8\xd7\x88\xb7\xd9\ +\x8a\xb8\xd8\x8a\xb9\xd5\x8c\xbd\xd5\x90\xbf\xdd\x95\xc0\xe0\x9a\ +\xc3\xe2\x97\xc1\xdf\x94\xc1\xdd\x8c\xbf\xda\x87\xbd\xdc\x87\xbc\ +\xdf\x86\xba\xdf\x86\xba\xdf\x83\xba\xdf\x82\xb7\xdc\x80\xb0\xd6\ +\x82\xac\xd2\x83\xaf\xd2\x7e\xaf\xd1\x7c\xb2\xd1\x7e\xb2\xd4\x85\ +\xb8\xd9\x85\xb9\xd9\x84\xba\xd7\x86\xb7\xd8\x87\xba\xdc\x88\xbc\ +\xdf\x86\xb8\xd6\x86\xae\xcc\x83\xa7\xc5\x7d\xa8\xc9\x7e\xaf\xd2\ +\x82\xb4\xd7\x8a\xb9\xdc\x8f\xbe\xdd\x92\xc1\xe0\x94\xc2\xe2\x93\ +\xc2\xe2\x90\xbe\xe0\x92\xbe\xdf\x94\xc0\xdf\x94\xc1\xe0\x94\xc0\ +\xe0\x95\xbf\xe2\x91\xbd\xde\x8f\xbd\xda\x8a\xba\xd6\x80\xad\xcc\ +\x64\x8c\xad\x4a\x74\x90\x64\x91\xac\x72\xa1\xbc\x6d\x9c\xb4\x62\ +\x86\xa1\x5f\x7d\x97\x7e\xa0\xbb\x8c\xb3\xd1\x8b\xb3\xd5\x8c\xb2\ +\xd3\x8b\xb6\xd5\x8a\xb9\xd7\x8e\xbe\xda\x8f\xbf\xda\x91\xbf\xd9\ +\x98\xc4\xdd\x95\xc3\xdb\x93\xc0\xda\x95\xc0\xdb\x96\xbf\xd9\x95\ +\xbd\xd8\x97\xbf\xdb\x93\xbe\xda\x93\xbc\xd7\x95\xb9\xd6\x96\xba\ +\xd8\x95\xba\xda\x92\xba\xda\x91\xb9\xd8\x92\xb6\xd5\x93\xb7\xd5\ +\x92\xb8\xd7\x91\xb9\xd8\x91\xbc\xd7\x95\xc0\xd8\x95\xc1\xd9\x95\ +\xc0\xd9\x95\xc0\xd9\x94\xbe\xd8\x96\xbc\xd9\x98\xb7\xdc\x94\xb6\ +\xda\x8f\xba\xd8\x8f\xbb\xd7\x93\xbb\xd8\x91\xbb\xd5\x92\xbd\xd5\ +\x99\xbf\xda\x9f\xc0\xdd\x9e\xc0\xdc\x99\xbe\xd9\x98\xbd\xda\x98\ +\xbe\xd8\x98\xbb\xd7\x98\xba\xd8\x98\xba\xd8\x99\xbe\xd9\x96\xbd\ +\xd7\x98\xbc\xda\x97\xba\xdc\x9d\xbb\xdf\x9d\xbb\xde\x97\xb9\xda\ +\x92\xb6\xd4\x8d\xb5\xd3\x89\xb3\xcf\x8c\xb2\xce\x8b\xaf\xca\x88\ +\xae\xc8\x83\xaf\xc8\x7d\xab\xc7\x7a\xab\xc5\x7d\xb0\xc6\x81\xaf\ +\xc9\x85\xad\xc8\x83\xac\xc5\x7e\xa8\xbf\x81\xab\xc4\x7f\xa7\xc2\ +\x84\xaa\xc4\x87\xb0\xca\x88\xb1\xd0\x88\xb3\xd2\x85\xb4\xd1\x80\ +\xb2\xcd\x81\xaf\xca\x8a\xb1\xca\x8d\xb3\xcf\x88\xb1\xcd\x8b\xb5\ +\xd2\x8f\xb6\xd6\x8c\xb3\xd0\x88\xb3\xce\x8a\xb6\xd1\x8d\xb6\xd4\ +\x91\xb8\xd6\x95\xb7\xd6\x9a\xb8\xd6\x9b\xb6\xd7\x95\xb4\xd8\x8b\ +\xaf\xd5\x00\x00\x00\x92\xc2\xdd\x8f\xbe\xdd\x8e\xbc\xda\x91\xbb\ +\xdb\x93\xbd\xdc\x90\xbf\xda\x8d\xbf\xd9\x8e\xbe\xdd\x8c\xbc\xdc\ +\x85\xb9\xd6\x87\xbb\xd6\x88\xb9\xd7\x85\xb4\xd4\x85\xb3\xd2\x87\ +\xb4\xd1\x88\xb6\xd2\x8c\xb9\xd2\x92\xbb\xd7\x93\xbc\xda\x93\xbc\ +\xdc\x90\xbc\xdc\x8c\xbb\xdc\x88\xbc\xdc\x86\xbc\xdd\x86\xbb\xdf\ +\x85\xb9\xe0\x82\xb7\xdc\x7b\xb2\xd7\x7f\xac\xd3\x84\xad\xd4\x81\ +\xae\xd0\x7a\xae\xcd\x7b\xb0\xcd\x83\xb4\xd3\x8b\xb8\xda\x8c\xbb\ +\xdb\x88\xb8\xd6\x88\xb8\xd7\x89\xb8\xda\x89\xb8\xda\x82\xb1\xcd\ +\x70\x98\xb2\x4c\x71\x8d\x41\x6e\x8e\x48\x7c\x9f\x5c\x91\xb4\x78\ +\xaa\xc8\x83\xb2\xcf\x8b\xbb\xda\x8f\xc0\xde\x93\xc1\xe2\x92\xbe\ +\xdf\x96\xbd\xdc\x96\xbe\xde\x95\xc2\xe2\x92\xc0\xe0\x95\xc0\xe2\ +\x94\xbe\xe0\x90\xbb\xda\x8c\xbc\xd8\x83\xaf\xcf\x68\x8f\xb2\x57\ +\x7f\x9c\x81\xad\xc5\x85\xb4\xcc\x83\xb2\xcb\x80\xa7\xc3\x69\x8a\ +\xa4\x44\x68\x7c\x7a\xa2\xb9\x8f\xb5\xd2\x8e\xb4\xd1\x8b\xb8\xd5\ +\x88\xb8\xd6\x88\xb9\xd4\x8d\xbd\xd6\x93\xbe\xd7\x97\xc0\xd8\x95\ +\xc2\xd9\x92\xc0\xd9\x96\xbf\xdc\x97\xbe\xda\x96\xbd\xda\x97\xbe\ +\xdd\x91\xbd\xdb\x91\xbd\xdb\x92\xb9\xd6\x9a\xb8\xd7\x9b\xba\xdb\ +\x96\xba\xdc\x95\xba\xdc\x93\xba\xda\x90\xba\xd7\x90\xbc\xd8\x91\ +\xbd\xdb\x92\xc0\xda\x94\xc0\xd9\x95\xc0\xda\x98\xc0\xde\x99\xc0\ +\xde\x99\xc1\xdc\x98\xbe\xdb\x99\xbb\xde\x96\xbb\xdd\x8e\xbe\xd9\ +\x8f\xbe\xd8\x94\xbb\xd7\x96\xbc\xd7\x95\xbe\xd7\x9a\xc1\xdc\xa1\ +\xc2\xe1\xa2\xc2\xe2\x9c\xc0\xdd\x99\xbd\xda\x99\xbe\xd8\x99\xbd\ +\xd9\x9a\xbd\xdc\x9b\xbd\xdb\x9a\xbf\xda\x99\xc0\xdc\x9b\xbf\xdc\ +\x99\xbb\xdd\x99\xba\xde\x9a\xbb\xe0\x99\xba\xdd\x95\xb7\xd7\x92\ +\xb8\xd3\x8b\xb7\xcf\x87\xb2\xcb\x8a\xaf\xcb\x88\xaf\xc9\x84\xb0\ +\xc8\x80\xad\xc5\x81\xb0\xc9\x81\xb3\xcb\x81\xb2\xca\x82\xaf\xc7\ +\x84\xaf\xc7\x85\xaf\xc6\x82\xaa\xc3\x80\xaa\xc2\x84\xaf\xc7\x87\ +\xb3\xcb\x88\xb2\xcf\x88\xb1\xd1\x84\xb2\xd0\x80\xb0\xcd\x7f\xad\ +\xc8\x88\xb0\xc9\x8d\xb2\xcd\x8b\xb2\xcf\x8c\xb4\xd3\x8c\xb3\xd1\ +\x89\xb3\xcd\x89\xb4\xcc\x90\xb6\xd0\x92\xb6\xd2\x8e\xb6\xd1\x92\ +\xb5\xd1\x96\xb4\xd0\x9b\xb3\xd4\x94\xb0\xd6\x89\xad\xd3\x00\x00\ +\x00\x91\xbe\xdd\x8b\xb9\xd9\x8c\xb8\xd6\x97\xbc\xdd\x99\xbe\xdf\ +\x96\xc0\xdd\x92\xc1\xdd\x94\xc2\xe0\x8f\xbe\xdd\x87\xbc\xd4\x8a\ +\xbc\xd4\x8b\xb8\xd6\x85\xb4\xd2\x80\xaf\xce\x7e\xab\xcb\x76\x9f\ +\xbd\x68\x8e\xa6\x71\x95\xa9\x85\xa9\xc1\x88\xb1\xcd\x8a\xb7\xd7\ +\x85\xb4\xd7\x85\xb5\xd8\x86\xb6\xda\x87\xb8\xde\x82\xb4\xdc\x7c\ +\xb2\xd6\x75\xae\xcf\x75\xa8\xcd\x7b\xab\xd0\x7c\xae\xd1\x7a\xb1\ +\xcf\x79\xaf\xcc\x84\xb2\xd1\x8e\xb6\xd6\x8e\xb7\xd7\x8a\xb7\xd8\ +\x86\xb7\xd8\x88\xb9\xd9\x85\xb5\xd3\x7e\xae\xc6\x4e\x78\x91\x60\ +\x8a\xa6\x71\xa2\xc2\x6d\xa2\xc4\x5b\x8d\xb0\x48\x78\x95\x65\x95\ +\xae\x7f\xb0\xcd\x8a\xbb\xdb\x91\xbf\xe1\x95\xbf\xe0\x98\xbf\xdf\ +\x97\xbf\xdf\x93\xc0\xe0\x92\xbf\xe0\x92\xbe\xdf\x91\xbb\xdf\x90\ +\xbd\xdd\x8d\xbc\xd9\x8b\xb7\xd6\x80\xa5\xc7\x61\x86\xa3\x85\xaf\ +\xc5\x8f\xba\xcf\x8d\xb9\xd0\x8b\xb3\xcc\x7e\xa3\xb8\x43\x67\x77\ +\x4b\x6e\x80\x90\xb4\xcc\x92\xba\xd6\x87\xb6\xd1\x7b\xad\xc6\x7b\ +\xad\xc4\x89\xb8\xcf\x97\xbf\xd8\x99\xbe\xda\x95\xbf\xd7\x92\xbd\ +\xd7\x96\xbc\xd9\x94\xbb\xd7\x94\xbb\xd8\x96\xbe\xdc\x96\xbe\xdd\ +\x93\xbe\xda\x93\xba\xd5\x9b\xb9\xd6\x9d\xb8\xd9\x9c\xbb\xde\x93\ +\xbb\xdc\x92\xbd\xdc\x90\xbc\xda\x91\xbd\xdc\x93\xbe\xdc\x99\xc1\ +\xde\x9d\xc0\xde\x99\xbe\xdd\x97\xbf\xdf\x94\xbe\xdf\x92\xbd\xdd\ +\x93\xbd\xd9\x9a\xc0\xdd\x97\xbe\xda\x91\xbe\xd8\x93\xbe\xd7\x97\ +\xba\xd4\x98\xba\xd6\x99\xbe\xd8\x9d\xc1\xdd\xa2\xc1\xe1\xa2\xc0\ +\xe1\x9e\xbf\xdb\x97\xbe\xd6\x98\xbd\xd7\x9a\xbe\xdb\x9c\xbe\xdf\ +\x9f\xbd\xdf\x9b\xbc\xdc\x9b\xbf\xdb\x9e\xbe\xdd\x9d\xbc\xde\x97\ +\xba\xdb\x98\xba\xdc\x98\xb9\xdc\x96\xb8\xd8\x91\xb7\xd2\x8b\xb6\ +\xce\x86\xb5\xcd\x88\xb1\xcc\x8b\xb0\xca\x8c\xb3\xcd\x8d\xb3\xce\ +\x8a\xb2\xcf\x89\xb4\xd2\x86\xb2\xce\x86\xb2\xca\x88\xb2\xca\x87\ +\xb0\xc8\x82\xaa\xc3\x7e\xa7\xc1\x87\xb2\xca\x89\xb6\xcd\x89\xb4\ +\xcf\x8d\xb4\xd4\x87\xb0\xd0\x84\xaf\xce\x86\xaf\xcc\x8b\xb1\xcd\ +\x8e\xb1\xcf\x8e\xb2\xd2\x8e\xb3\xd3\x90\xb3\xd2\x8d\xb4\xd2\x8e\ +\xb5\xd3\x92\xb5\xd3\x94\xb5\xd5\x91\xb4\xd4\x93\xb4\xd4\x98\xb6\ +\xd5\x98\xb5\xd5\x91\xb1\xd3\x8b\xb0\xd2\x00\x00\x00\x90\xb9\xd6\ +\x8b\xb7\xd4\x91\xb8\xd8\x9b\xbb\xda\x9c\xbd\xdb\x98\xc0\xd9\x98\ +\xc3\xdc\x99\xc2\xdd\x94\xbd\xd7\x8e\xb9\xcf\x8d\xb7\xce\x8d\xb4\ +\xce\x87\xb1\xce\x82\xae\xcc\x7c\xa3\xc2\x41\x63\x7f\x2d\x4b\x61\ +\x40\x5b\x6c\x3d\x59\x69\x6c\x91\xa5\x81\xad\xcc\x83\xb0\xd5\x84\ +\xaf\xd4\x82\xaa\xd0\x7e\xa7\xcd\x7b\xa9\xce\x73\xa8\xc7\x6d\xa5\ +\xc1\x6f\xa6\xc5\x73\xa7\xc9\x7c\xae\xcf\x7a\xad\xcb\x7c\xae\xcb\ +\x84\xb0\xcc\x8f\xb3\xd0\x8f\xb2\xce\x86\xb0\xce\x82\xb4\xd3\x84\ +\xb8\xd6\x86\xb8\xd3\x77\xa7\xc2\x4c\x77\x95\x5e\x8a\xaa\x76\xa6\ +\xc8\x78\xaa\xcc\x73\xa0\xc2\x50\x79\x93\x39\x60\x76\x70\x9a\xb4\ +\x8c\xb7\xd7\x92\xbe\xdf\x96\xbe\xdf\x98\xbc\xde\x97\xbc\xde\x95\ +\xbd\xdf\x96\xbd\xe0\x94\xbb\xdf\x91\xbb\xe0\x91\xbe\xdf\x92\xc0\ +\xdf\x92\xbb\xda\x91\xb5\xd5\x85\xaa\xc7\x7e\xa8\xbe\x90\xb9\xcc\ +\x96\xbd\xd2\x97\xbb\xd3\x8a\xac\xc2\x59\x78\x8a\x28\x49\x59\x7a\ +\x9e\xb4\x92\xbd\xd7\x8b\xbc\xd5\x71\xa5\xbb\x58\x89\xa1\x84\xb1\ +\xc9\x93\xbb\xd4\x94\xba\xd6\x91\xbb\xd6\x91\xbb\xd7\x93\xb9\xd5\ +\x93\xb8\xd4\x95\xbb\xd9\x97\xbc\xdb\x94\xba\xd8\x92\xba\xd4\x94\ +\xb9\xd4\x98\xb7\xd6\x9c\xba\xda\x9b\xbc\xdb\x96\xbb\xd9\x96\xbc\ +\xdb\x96\xbd\xdb\x96\xbd\xde\x9a\xbc\xde\x9e\xbf\xe1\xa0\xbe\xe0\ +\x9e\xbe\xdc\x97\xbd\xda\x94\xbe\xdd\x91\xbd\xdd\x8f\xbc\xd8\x94\ +\xbf\xd6\x97\xbf\xd7\x95\xbf\xd6\x95\xbb\xd5\x98\xba\xd4\x96\xb9\ +\xd2\x99\xbc\xd5\x9f\xbf\xdc\xa0\xbe\xde\xa0\xbf\xdd\x9d\xbe\xd9\ +\x9c\xbe\xda\x9a\xbe\xd9\xa0\xc0\xdf\xa0\xbd\xdf\x9e\xba\xdc\x9b\ +\xbb\xdc\x99\xbb\xd9\x9f\xbb\xdb\x9f\xba\xdd\x9b\xbb\xdd\x97\xba\ +\xdb\x93\xb6\xd6\x94\xb6\xd4\x8e\xb5\xce\x8a\xb6\xcc\x86\xb3\xcb\ +\x8a\xb1\xcb\x8c\xb0\xca\x8f\xb3\xce\x8f\xb4\xd0\x90\xb5\xd3\x90\ +\xb3\xd4\x90\xb3\xd2\x8d\xb2\xcb\x88\xb1\xc7\x86\xb0\xc7\x7e\xa5\ +\xc0\x83\xa7\xc5\x8b\xb1\xcd\x8d\xb5\xd0\x8c\xb3\xd1\x90\xb6\xd3\ +\x8f\xb4\xd1\x91\xb3\xd3\x93\xb5\xd4\x93\xb6\xd2\x92\xb5\xd0\x92\ +\xb4\xd1\x91\xb3\xd4\x94\xb4\xd5\x92\xb4\xd4\x92\xb6\xd6\x94\xb6\ +\xd7\x94\xb4\xd7\x93\xb4\xd5\x93\xb6\xd4\x94\xb8\xd4\x92\xb6\xd4\ +\x8f\xb4\xd3\x8c\xb1\xd0\x00\x00\x00\x80\xa6\xc0\x8c\xb2\xcb\x8c\ +\xb0\xca\x8b\xaa\xc4\x7c\x9b\xb1\x6c\x90\xa2\x6b\x92\xa7\x7f\xa3\ +\xbc\x81\xa0\xb8\x72\x91\xa4\x70\x93\xa6\x7b\xa1\xb8\x8b\xaf\xcc\ +\x8b\xad\xca\x80\x9e\xba\x4f\x69\x84\x28\x3f\x54\x49\x5d\x6e\x1e\ +\x34\x40\x3f\x61\x72\x7a\xa5\xc2\x88\xb4\xd6\x89\xae\xd0\x74\x95\ +\xb6\x68\x8b\xaa\x6f\x95\xb1\x67\x91\xa9\x5d\x8b\x9e\x6a\x9b\xb2\ +\x75\xa6\xc0\x74\x9f\xbb\x71\x9a\xb4\x77\xa2\xbc\x81\xa8\xc4\x88\ +\xab\xc3\x82\xa2\xb8\x7a\x9f\xb7\x7b\xa7\xc3\x80\xaf\xcc\x7f\xad\ +\xc7\x6e\x9a\xb4\x62\x8a\xa9\x5a\x82\xa3\x5f\x8b\xab\x74\x9e\xc1\ +\x74\x99\xb9\x46\x65\x7b\x2b\x48\x5a\x6f\x91\xa8\x8f\xb3\xd2\x92\ +\xb9\xd8\x93\xb8\xd8\x97\xba\xdc\x95\xb6\xd8\x92\xb4\xd7\x93\xb3\ +\xdb\x92\xb5\xdc\x92\xb8\xde\x8f\xba\xd9\x90\xbb\xd7\x94\xbb\xd5\ +\x9b\xbd\xd8\x94\xb9\xd4\x7b\xa6\xbd\x7e\xa8\xbe\x92\xb8\xcf\x97\ +\xbb\xd5\x91\xb0\xca\x61\x7d\x90\x19\x37\x48\x55\x79\x8d\x90\xbb\ +\xd4\x8f\xbd\xd8\x80\xb0\xc8\x59\x86\x9e\x6e\x98\xb1\x90\xb7\xd1\ +\x94\xb8\xd4\x92\xb9\xd7\x90\xb7\xd6\x93\xb8\xd3\x96\xb7\xd2\x96\ +\xb7\xd4\x95\xb6\xd3\x91\xb6\xd2\x91\xb7\xd2\x8f\xb4\xd2\x92\xb6\ +\xd4\x95\xb9\xd7\x98\xba\xd6\x9a\xbd\xd7\x9a\xbe\xd9\x99\xbc\xd8\ +\x9b\xbc\xdc\x9f\xbe\xe1\x9e\xbe\xe0\xa0\xbd\xdf\x9f\xbd\xdb\x9c\ +\xbe\xd9\x98\xbe\xdb\x92\xba\xda\x8e\xb9\xd5\x92\xbc\xd4\x92\xbb\ +\xd1\x92\xbc\xd1\x93\xb8\xd0\x93\xb6\xcf\x97\xbc\xd1\x9a\xbc\xd6\ +\x9e\xbc\xd9\x9f\xbe\xda\x99\xbd\xd6\x98\xbc\xd5\x9a\xbc\xd8\x9a\ +\xbd\xd9\xa0\xbd\xde\x9e\xbc\xdc\x96\xba\xd7\x93\xba\xd5\x93\xba\ +\xd5\x96\xb7\xd5\x9b\xb8\xd7\x9b\xba\xd9\x97\xba\xd7\x94\xb6\xd3\ +\x93\xb4\xd0\x90\xb3\xcb\x8b\xb4\xc8\x88\xb2\xc8\x8e\xb3\xcd\x93\ +\xb4\xcf\x94\xb5\xd2\x8f\xb6\xd1\x8e\xb3\xd0\x91\xb1\xd3\x96\xb3\ +\xd2\x94\xb2\xcd\x8f\xb1\xcc\x86\xad\xc8\x80\xa6\xc4\x86\xaa\xc8\ +\x8c\xb0\xce\x8f\xb2\xd1\x8d\xb2\xcf\x90\xb4\xce\x93\xb3\xd2\x98\ +\xb5\xd7\x98\xb6\xd5\x92\xb6\xcf\x8e\xb7\xce\x91\xb5\xcf\x90\xb2\ +\xd0\x91\xb1\xcf\x94\xb5\xd2\x91\xb4\xd1\x92\xb5\xd5\x96\xb7\xd6\ +\x95\xb7\xd3\x94\xb9\xd4\x91\xb9\xd3\x8d\xb8\xd4\x8c\xb3\xd2\x92\ +\xb4\xd5\x00\x00\x00\x68\x90\xa9\x75\x9b\xb2\x72\x98\xab\x4b\x6f\ +\x83\x27\x48\x59\x38\x5a\x6a\x66\x8d\xa1\x66\x88\xa1\x41\x5e\x75\ +\x1f\x3c\x4c\x3a\x5b\x6d\x63\x88\x9f\x61\x84\x9f\x61\x7d\x97\x65\ +\x7d\x93\x4f\x65\x7e\x2e\x44\x5c\x12\x26\x39\x1f\x3a\x48\x54\x7b\ +\x8f\x7e\xa7\xc7\x89\xb0\xd2\x7e\x9f\xbd\x4e\x6a\x82\x29\x46\x5b\ +\x43\x61\x75\x41\x60\x74\x25\x47\x58\x56\x81\x93\x73\x9e\xb1\x4b\ +\x73\x82\x20\x48\x58\x4f\x7a\x90\x75\x9e\xb6\x76\x9c\xb3\x57\x78\ +\x8a\x3c\x5f\x74\x53\x7d\x95\x67\x92\xab\x60\x88\x9f\x42\x69\x7e\ +\x4a\x70\x8a\x65\x8b\xa8\x6d\x95\xb5\x73\x97\xb8\x65\x82\x9f\x25\ +\x3e\x52\x2a\x46\x59\x6b\x8c\xa3\x7d\xa0\xbe\x7e\xa2\xc0\x88\xac\ +\xca\x91\xb4\xd2\x8b\xa9\xca\x82\x9c\xc2\x85\x9f\xc7\x8e\xac\xd1\ +\x90\xb1\xd2\x88\xac\xc7\x7e\xa4\xbd\x86\xaa\xc3\x95\xb6\xcf\x94\ +\xb8\xd2\x8b\xb2\xcb\x7a\xa1\xba\x86\xab\xc5\x8d\xb3\xcc\x8b\xaf\ +\xc5\x68\x85\x96\x13\x33\x40\x40\x64\x77\x8d\xb6\xd0\x92\xbb\xda\ +\x8b\xb2\xd1\x67\x8f\xaa\x4f\x78\x92\x8a\xb3\xcc\x8f\xb5\xd3\x90\ +\xb6\xd6\x90\xb4\xd7\x8f\xb4\xd3\x94\xb6\xd2\x94\xb6\xd2\x8e\xb3\ +\xcf\x8d\xb2\xcc\x8c\xb1\xcb\x8d\xb3\xcf\x8a\xb4\xcf\x8c\xb6\xd2\ +\x8f\xba\xd4\x91\xba\xd6\x93\xb9\xd6\x94\xb9\xd4\x99\xbb\xd7\x9b\ +\xbe\xdc\x99\xbe\xdb\x9a\xbd\xda\x9b\xbd\xd9\x9e\xbc\xd9\x9a\xbc\ +\xdb\x94\xb8\xd8\x8e\xb5\xd3\x8c\xb6\xcf\x8c\xb9\xce\x90\xbc\xd0\ +\x92\xba\xd2\x92\xb7\xd0\x97\xbb\xd1\x95\xb9\xd4\x9a\xbb\xd8\x99\ +\xbd\xd7\x96\xbf\xd3\x94\xbd\xd3\x93\xb9\xd5\x94\xb9\xd5\x96\xba\ +\xd6\x94\xba\xd6\x90\xbb\xd4\x8c\xba\xd2\x90\xbb\xd3\x94\xb9\xd6\ +\x97\xb8\xd7\x98\xb8\xd7\x96\xb9\xd7\x97\xb9\xd6\x94\xb4\xcf\x92\ +\xb3\xcb\x8d\xb3\xc9\x8f\xb4\xcd\x93\xb8\xd1\x94\xb5\xd1\x92\xb6\ +\xd2\x8c\xb5\xd1\x8d\xb3\xd3\x8d\xb0\xd3\x8f\xb0\xd0\x92\xae\xcc\ +\x91\xaf\xce\x89\xaa\xcd\x80\xa3\xc6\x84\xa9\xc8\x8a\xaf\xcb\x8c\ +\xac\xcd\x8b\xb0\xcd\x8f\xb2\xcf\x93\xb2\xd3\x96\xb2\xd5\x96\xb4\ +\xd2\x8e\xb6\xce\x89\xb7\xce\x8c\xb6\xd1\x91\xb3\xd0\x91\xb3\xcf\ +\x90\xb6\xd0\x8f\xb7\xd3\x93\xb7\xd3\x96\xb6\xd4\x96\xb8\xd5\x96\ +\xbb\xd6\x8e\xb6\xd3\x8a\xb5\xd4\x90\xb5\xd7\x91\xb4\xd6\x00\x00\ +\x00\x76\x9c\xb5\x5a\x7d\x93\x50\x73\x84\x74\x99\xad\x56\x7c\x91\ +\x31\x54\x68\x42\x68\x7d\x42\x69\x83\x2d\x53\x6e\x27\x4b\x63\x44\ +\x66\x7e\x78\x9d\xb6\x84\xa8\xc2\x55\x74\x8b\x25\x3f\x55\x3e\x58\ +\x70\x62\x7d\x98\x40\x5c\x75\x21\x42\x56\x64\x8c\xa3\x80\xab\xc9\ +\x7b\xa5\xc6\x62\x86\xa3\x37\x59\x70\x1f\x42\x55\x36\x5a\x6d\x40\ +\x61\x77\x38\x5c\x72\x58\x83\x98\x6a\x99\xab\x3e\x6a\x77\x12\x3d\ +\x4d\x5c\x8b\xa2\x79\xa3\xc1\x66\x8f\xaa\x2e\x52\x6b\x29\x4e\x67\ +\x56\x7f\x99\x61\x8a\xa3\x4a\x70\x88\x26\x4e\x61\x53\x7b\x90\x70\ +\x99\xb2\x71\x9a\xb5\x70\x91\xae\x4b\x65\x81\x17\x31\x47\x50\x6f\ +\x85\x7f\xa2\xbc\x76\x9b\xb9\x5c\x84\x9f\x5f\x85\x9f\x89\xac\xc5\ +\x80\x9a\xb7\x58\x6b\x8a\x53\x69\x88\x7f\x9a\xb7\x85\xa1\xba\x61\ +\x7e\x94\x46\x68\x7d\x54\x7a\x92\x73\x96\xaf\x86\xa6\xc1\x88\xa8\ +\xc0\x80\xa1\xb8\x82\xa4\xb9\x85\xab\xbe\x7f\xa4\xb5\x5d\x7d\x8c\ +\x11\x30\x41\x46\x68\x7d\x8e\xb2\xcc\x91\xb6\xd2\x87\xa7\xc8\x6a\ +\x88\xa8\x39\x5b\x78\x78\xa0\xb9\x89\xb1\xcb\x88\xab\xcb\x8a\xaa\ +\xca\x8c\xaf\xcd\x8d\xb3\xcd\x8b\xb1\xc9\x87\xaa\xc4\x86\xa8\xc2\ +\x87\xab\xc5\x89\xb0\xca\x89\xb3\xca\x87\xb3\xcc\x88\xb6\xd1\x86\ +\xb7\xd4\x88\xb7\xd2\x8d\xb7\xd0\x93\xb9\xd2\x94\xbc\xd6\x91\xbc\ +\xd5\x90\xbb\xd6\x93\xb9\xd5\x97\xb7\xd5\x94\xb6\xd8\x8e\xb4\xd5\ +\x88\xb2\xcf\x85\xb3\xcd\x8b\xb9\xcf\x93\xbd\xd3\x94\xbc\xd5\x95\ +\xbb\xd5\x95\xba\xd4\x93\xb8\xd3\x96\xba\xd8\x93\xba\xd6\x8f\xbb\ +\xd1\x90\xba\xd0\x92\xba\xd3\x91\xb9\xd2\x93\xbb\xd4\x90\xbc\xd5\ +\x8c\xba\xd5\x8c\xb8\xd2\x8e\xb8\xd2\x90\xb9\xd7\x93\xb9\xda\x93\ +\xb8\xd9\x95\xb9\xd8\x98\xbb\xd9\x97\xb9\xd6\x97\xb7\xd4\x94\xb8\ +\xd4\x93\xb7\xd3\x95\xb9\xd3\x95\xb9\xd3\x93\xb8\xd4\x8e\xb6\xd5\ +\x8c\xb5\xd5\x8d\xb3\xd6\x8b\xb1\xd2\x8a\xad\xcf\x8a\xab\xcd\x85\ +\xa5\xc9\x80\xa3\xc7\x82\xa9\xc9\x88\xae\xca\x88\xad\xc9\x86\xad\ +\xca\x8c\xb1\xd2\x92\xb3\xd5\x96\xb4\xd5\x94\xb5\xd4\x8c\xb4\xd1\ +\x88\xb6\xd2\x8a\xb5\xd1\x90\xb6\xd2\x91\xb5\xd1\x91\xb9\xd3\x91\ +\xba\xd3\x93\xb8\xd2\x99\xba\xd6\x99\xbb\xd8\x96\xb9\xd8\x90\xb6\ +\xd7\x8d\xb5\xd6\x8e\xb3\xd5\x8e\xb3\xd3\x00\x00\x00\x53\x72\x8a\ +\x39\x55\x6e\x3d\x5e\x73\x56\x7b\x90\x84\xab\xc3\x81\xa7\xc2\x60\ +\x8a\xa5\x63\x91\xb0\x74\xa2\xc2\x7a\xa2\xc0\x7a\x9e\xbd\x77\x9c\ +\xb8\x89\xae\xc9\x86\xab\xc3\x65\x88\x9f\x4a\x6c\x86\x6f\x93\xaf\ +\x86\xab\xc8\x56\x7b\x95\x3b\x61\x78\x7b\xa4\xbd\x86\xb2\xcd\x7e\ +\xaa\xc6\x6a\x95\xb0\x62\x91\xa8\x73\x9f\xb7\x7b\xa4\xc0\x7d\xa6\ +\xc4\x7e\xac\xc7\x75\xa8\xbf\x62\x97\xaa\x40\x74\x89\x66\x97\xb1\ +\x7f\xac\xcc\x7b\xa6\xc9\x68\x92\xb3\x4c\x75\x97\x5f\x8b\xa9\x7c\ +\xa7\xc2\x7f\xa5\xc3\x60\x87\xa1\x53\x7e\x94\x6f\x9c\xb3\x7e\xa7\ +\xc0\x73\x94\xb0\x31\x4b\x67\x23\x40\x5a\x67\x88\xa2\x83\xa8\xc4\ +\x82\xaa\xc8\x6f\x9b\xb7\x52\x7b\x95\x69\x8d\xa4\x7a\x94\xaa\x3d\ +\x4d\x62\x2e\x3f\x55\x68\x83\x97\x73\x92\xa5\x3b\x58\x6c\x42\x65\ +\x7b\x68\x92\xaa\x75\x9d\xb6\x72\x92\xac\x55\x73\x89\x38\x56\x67\ +\x35\x55\x63\x53\x73\x83\x56\x76\x87\x3d\x5b\x6d\x14\x34\x47\x54\ +\x76\x8e\x89\xaa\xc4\x78\x9b\xb5\x74\x93\xb0\x5f\x7c\x99\x2a\x49\ +\x62\x5f\x84\x9b\x84\xa9\xc2\x78\x98\xb2\x6f\x8b\xa4\x79\x98\xb1\ +\x85\xa8\xbe\x86\xa7\xbf\x79\x96\xb0\x65\x7e\x98\x74\x91\xab\x7f\ +\xa1\xba\x82\xa6\xbc\x7c\xa3\xba\x7d\xa8\xc3\x81\xb0\xcf\x83\xb4\ +\xd0\x88\xb4\xce\x8c\xb6\xcf\x8d\xb8\xd0\x8a\xb8\xd0\x8b\xb4\xce\ +\x8c\xaf\xcb\x8a\xab\xc7\x85\xaa\xc7\x85\xac\xcb\x86\xad\xca\x88\ +\xb0\xcb\x8e\xb5\xcf\x91\xb8\xd1\x8e\xb7\xd0\x8f\xb7\xd1\x91\xb5\ +\xd2\x8c\xb2\xd1\x8c\xb4\xd4\x89\xb5\xd2\x87\xb5\xcd\x8d\xb7\xcd\ +\x8f\xb8\xcf\x8c\xb7\xcf\x8f\xb9\xd2\x8f\xb9\xd1\x8c\xb4\xd1\x86\ +\xae\xc9\x80\xa9\xc3\x81\xae\xc8\x88\xb5\xd3\x8e\xb6\xd5\x94\xb9\ +\xd9\x9a\xbb\xdc\x99\xb9\xdb\x96\xb7\xd7\x95\xb5\xd6\x97\xb5\xd5\ +\x96\xb7\xd5\x92\xb7\xd3\x91\xb6\xd3\x8f\xb3\xd2\x8d\xb2\xd3\x8b\ +\xb1\xd2\x85\xaf\xcf\x81\xad\xcd\x7d\xa5\xc6\x7e\xa0\xc2\x81\xa5\ +\xc8\x85\xac\xcb\x89\xaf\xcb\x88\xae\xc9\x84\xaf\xc8\x87\xb0\xce\ +\x8c\xb2\xcf\x92\xb7\xd4\x91\xb6\xd6\x8d\xb8\xd7\x8a\xb8\xd6\x8c\ +\xb7\xd3\x8e\xb6\xd2\x90\xb6\xd2\x92\xbb\xd4\x92\xb9\xd3\x92\xb8\ +\xd1\x96\xbc\xd5\x97\xbb\xd7\x97\xba\xd9\x93\xb7\xd7\x91\xb5\xd7\ +\x8f\xb3\xd5\x8d\xb3\xd3\x00\x00\x00\x2f\x4c\x63\x59\x76\x91\x76\ +\x99\xb5\x4f\x77\x8e\x6d\x97\xaf\x84\xb0\xcd\x89\xb8\xd8\x82\xb6\ +\xd7\x89\xb9\xda\x91\xbc\xdc\x92\xba\xd8\x93\xbd\xd9\x95\xbf\xda\ +\x8f\xbd\xd6\x86\xb5\xce\x82\xad\xc7\x81\xaa\xc7\x8d\xb7\xd5\x8d\ +\xb5\xd2\x5b\x81\x9b\x48\x6f\x85\x82\xac\xc2\x82\xb2\xcd\x7e\xb1\ +\xd0\x80\xb4\xd1\x83\xb4\xcf\x85\xb4\xd1\x87\xb6\xd5\x86\xb7\xd5\ +\x7f\xb3\xd1\x7a\xb3\xce\x77\xb1\xcc\x79\xb0\xce\x7f\xb0\xd1\x7e\ +\xac\xd0\x7a\xa7\xcd\x76\xa3\xc8\x75\xa3\xc5\x81\xaf\xce\x8a\xb4\ +\xd4\x8d\xb3\xd4\x83\xaa\xc6\x73\x9f\xb9\x7a\xa4\xbd\x74\x98\xb4\ +\x31\x4e\x6b\x38\x57\x74\x6f\x94\xb1\x76\x9e\xbd\x80\xab\xcd\x7c\ +\xa9\xcb\x70\x9b\xba\x5b\x7f\x9a\x72\x8c\xa2\x4a\x5c\x6e\x27\x3c\ +\x4d\x70\x8e\xa2\x7c\x9f\xb5\x54\x79\x91\x38\x5f\x7a\x52\x80\x9b\ +\x7a\xa7\xc0\x8e\xb3\xcc\x75\x98\xaf\x39\x5f\x72\x41\x66\x77\x74\ +\x97\xaa\x79\x9a\xb0\x52\x72\x89\x31\x55\x6c\x66\x8c\xa8\x87\xac\ +\xc7\x72\x99\xb2\x5a\x82\x9d\x4e\x73\x8c\x2d\x50\x64\x45\x6a\x7b\ +\x80\xa5\xb7\x67\x87\x9a\x3c\x57\x69\x38\x54\x66\x6b\x8a\x9f\x7f\ +\x9c\xb5\x67\x80\x98\x25\x3c\x51\x41\x5a\x74\x65\x82\x9d\x63\x82\ +\x9a\x41\x61\x78\x60\x86\xa0\x7d\xa7\xc6\x86\xb2\xd0\x88\xb3\xce\ +\x88\xb6\xce\x86\xb4\xcc\x87\xb1\xc9\x83\xa2\xbb\x76\x93\xaa\x6b\ +\x8e\xa3\x71\x97\xb0\x79\x9e\xb8\x7f\xa3\xb9\x84\xa8\xbf\x88\xae\ +\xc6\x8b\xb0\xca\x86\xad\xc7\x82\xa8\xc3\x84\xa9\xc3\x7f\xa5\xc3\ +\x7a\xa5\xc2\x76\xa6\xbd\x79\xa9\xbd\x80\xac\xbf\x86\xaf\xc5\x88\ +\xb1\xc9\x8a\xb1\xca\x88\xaf\xc8\x83\xa9\xc3\x78\x9f\xb7\x60\x89\ +\x9f\x64\x90\xa5\x7c\xaa\xc2\x84\xaf\xcb\x90\xb4\xd4\x97\xb5\xd7\ +\x97\xb4\xd8\x93\xb2\xd5\x93\xb3\xd2\x97\xb5\xd2\x94\xb5\xd3\x8f\ +\xb3\xd1\x8d\xb2\xd0\x8d\xb2\xd1\x8b\xb0\xcf\x8a\xae\xcd\x85\xad\ +\xcc\x7d\xaa\xc9\x79\xa3\xc4\x79\x9c\xbe\x83\xa5\xc8\x88\xac\xcc\ +\x8d\xb1\xce\x8a\xb1\xcb\x83\xb0\xc8\x83\xb2\xca\x87\xb2\xcb\x8a\ +\xb5\xd0\x8f\xb7\xd7\x8d\xb8\xd7\x8c\xb7\xd5\x8d\xb5\xd2\x90\xb8\ +\xd2\x8e\xb9\xd3\x90\xbc\xd5\x93\xb9\xd4\x93\xb8\xd2\x94\xb9\xd3\ +\x93\xb8\xd2\x95\xb8\xd4\x93\xb7\xd4\x95\xb7\xd9\x93\xb5\xd8\x8f\ +\xb5\xd6\x00\x00\x00\x2d\x4d\x64\x6c\x8d\xaa\x8a\xaf\xce\x64\x8f\ +\xa8\x49\x78\x8f\x80\xaf\xca\x8e\xbd\xdc\x8b\xbe\xdc\x8c\xbd\xda\ +\x93\xc1\xdd\x90\xbf\xda\x8e\xbd\xd9\x90\xbf\xda\x90\xc0\xdc\x8c\ +\xbb\xd9\x8b\xba\xd8\x8a\xb8\xd6\x8a\xb8\xd8\x8c\xbb\xdd\x81\xaa\ +\xcc\x47\x6b\x86\x5c\x82\x98\x82\xaf\xca\x80\xb2\xd3\x83\xb8\xd7\ +\x85\xba\xd5\x87\xba\xd4\x8b\xbb\xd7\x8c\xbc\xdb\x8a\xbc\xda\x85\ +\xb8\xd7\x84\xb9\xd9\x82\xb9\xd9\x7e\xb4\xd3\x7f\xb1\xd1\x82\xae\ +\xd0\x80\xac\xce\x82\xb1\xd0\x89\xb8\xd6\x8e\xb8\xd7\x92\xb9\xd9\ +\x92\xb8\xd7\x8a\xb3\xd2\x86\xaf\xcd\x7e\xa3\xbf\x3f\x62\x79\x3c\ +\x60\x78\x77\x9e\xbb\x70\x97\xbb\x5f\x87\xad\x7b\xa3\xc8\x85\xac\ +\xcd\x6f\x93\xaf\x56\x74\x8a\x57\x6e\x80\x27\x41\x52\x77\x99\xad\ +\x90\xb7\xd1\x8a\xb2\xd1\x7e\xa6\xc6\x60\x8e\xac\x5c\x8c\xa6\x80\ +\xac\xc4\x89\xb3\xcc\x77\xa3\xbb\x58\x84\x9b\x5d\x89\x9e\x7f\xa6\ +\xbd\x7c\xa3\xbe\x6a\x95\xb0\x80\xac\xc7\x8a\xb3\xce\x84\xae\xca\ +\x7a\xa8\xc6\x6a\x96\xb2\x51\x7c\x90\x3a\x63\x72\x75\x9f\xae\x6e\ +\x95\xa6\x44\x64\x76\x1a\x35\x47\x4a\x69\x7d\x6f\x91\xa8\x5d\x7f\ +\x95\x2d\x4c\x60\x3b\x59\x71\x5f\x7d\x99\x54\x71\x8e\x20\x40\x5a\ +\x54\x78\x94\x7d\xa4\xc4\x83\xae\xcc\x86\xb2\xcd\x89\xb6\xcf\x8a\ +\xb3\xcc\x83\xa4\xbd\x61\x7c\x90\x2f\x49\x58\x2c\x4f\x5e\x39\x61\ +\x74\x42\x66\x79\x42\x64\x72\x4c\x6e\x7e\x60\x88\x9a\x6c\x92\xaa\ +\x6c\x90\xa9\x63\x82\x9b\x63\x81\x95\x66\x87\x9c\x62\x88\x9d\x60\ +\x89\x97\x62\x8a\x97\x6a\x95\xa4\x77\xa2\xb6\x7d\xa4\xbc\x84\xa4\ +\xbe\x7b\x9b\xb4\x76\x98\xae\x6f\x93\xa6\x56\x78\x89\x3a\x61\x71\ +\x6d\x98\xab\x78\xa4\xbe\x84\xaa\xcb\x8d\xab\xce\x8e\xaa\xcd\x8e\ +\xac\xcc\x90\xae\xcc\x93\xb1\xcd\x91\xb0\xd0\x8b\xac\xcf\x87\xac\ +\xcc\x88\xae\xcd\x87\xad\xcd\x88\xad\xcc\x83\xaa\xca\x7d\xa5\xc6\ +\x79\x9e\xc0\x78\x9c\xbe\x80\xa4\xc5\x87\xad\xcb\x8b\xad\xce\x8d\ +\xb2\xcf\x8a\xb3\xcf\x88\xb4\xcd\x88\xb3\xcd\x8b\xb4\xd2\x92\xb6\ +\xd9\x92\xb7\xd6\x91\xb6\xd1\x8f\xb5\xd0\x92\xb7\xd0\x90\xb9\xd2\ +\x91\xba\xd4\x95\xb9\xd4\x98\xba\xd4\x94\xb8\xd2\x91\xb6\xd0\x92\ +\xb7\xd1\x92\xb7\xd2\x94\xb5\xd6\x93\xb4\xd6\x8f\xb2\xd4\x00\x00\ +\x00\x40\x5e\x76\x56\x76\x8f\x76\x99\xb6\x49\x75\x8d\x60\x8f\xa7\ +\x8b\xbb\xd4\x93\xc1\xdd\x92\xc2\xdc\x90\xc1\xd9\x8c\xbf\xd6\x88\ +\xbd\xd5\x88\xb9\xd6\x88\xb7\xd6\x8c\xba\xd9\x8b\xb9\xd8\x8a\xb8\ +\xd7\x85\xb5\xd5\x82\xb6\xd5\x83\xb8\xda\x7f\xac\xd0\x5f\x83\xa3\ +\x40\x63\x7d\x77\xa0\xbc\x82\xb2\xd2\x87\xb8\xd7\x89\xba\xd8\x8e\ +\xbc\xd9\x8f\xbc\xd9\x8e\xbd\xdc\x91\xbf\xdd\x92\xbb\xdc\x8a\xb6\ +\xd8\x82\xb6\xd7\x80\xb8\xd5\x7c\xb2\xd0\x7f\xac\xca\x7b\xa2\xbf\ +\x7b\xa6\xc0\x84\xb1\xcc\x89\xb6\xd1\x90\xbb\xd8\x8f\xb8\xd7\x92\ +\xb8\xd8\x8c\xb2\xd2\x82\xa8\xc4\x58\x7c\x93\x2f\x55\x69\x70\x97\ +\xb3\x71\x99\xbe\x52\x7a\x9f\x71\x98\xbe\x8a\xb2\xd3\x7b\x9f\xba\ +\x49\x69\x7c\x55\x6e\x7e\x24\x3d\x4d\x71\x91\xa5\x99\xbe\xda\x96\ +\xbc\xdc\x93\xb9\xdb\x88\xb6\xd5\x84\xb4\xd2\x86\xb4\xce\x8a\xb7\ +\xd1\x86\xb4\xcf\x7f\xac\xc7\x7d\xa9\xc4\x8a\xb4\xcf\x8b\xb8\xd3\ +\x86\xb5\xd2\x87\xb6\xd4\x8b\xb5\xd2\x8a\xb3\xd0\x88\xb3\xd2\x82\ +\xad\xcb\x75\x9f\xb6\x4b\x78\x8a\x5b\x8c\x9b\x75\xa5\xb8\x63\x8a\ +\xa0\x2b\x4a\x5d\x3b\x5f\x6f\x73\x9d\xb2\x79\xa3\xbb\x72\x9b\xb2\ +\x76\x9e\xb6\x7c\xa1\xbd\x75\x99\xb9\x5b\x7f\x9e\x66\x8b\xab\x7f\ +\xa9\xcb\x82\xb0\xd0\x83\xb3\xd0\x89\xb6\xd1\x8b\xb3\xcc\x81\xa0\ +\xb9\x55\x71\x86\x1f\x3c\x4d\x29\x4c\x5c\x41\x69\x7b\x39\x60\x6e\ +\x22\x47\x52\x37\x5c\x69\x5b\x82\x94\x65\x8a\xa2\x50\x70\x89\x29\ +\x46\x5a\x2b\x45\x56\x3b\x57\x68\x2a\x48\x57\x20\x3f\x48\x31\x53\ +\x5b\x52\x78\x87\x64\x8e\xa1\x74\x98\xae\x7a\x96\xae\x64\x7e\x93\ +\x5c\x79\x8b\x6c\x8d\xa1\x5e\x7b\x8e\x31\x4e\x5f\x5d\x81\x93\x71\ +\x9b\xb4\x7f\xa4\xc5\x86\xa5\xc9\x87\xa5\xc7\x84\xa3\xc5\x87\xa7\ +\xc5\x8b\xaa\xc5\x8d\xab\xca\x86\xa8\xc7\x83\xa7\xc4\x83\xa7\xc3\ +\x85\xaa\xc5\x84\xac\xc7\x81\xa9\xc8\x7f\xa2\xc4\x77\x99\xbc\x73\ +\x9a\xba\x7b\xa6\xc5\x82\xac\xcc\x8a\xad\xd2\x8f\xb1\xd2\x90\xb3\ +\xd3\x91\xb6\xd3\x90\xb7\xd4\x94\xb6\xd9\x9a\xb6\xdc\x9b\xb5\xd6\ +\x9a\xb7\xd2\x98\xb6\xcd\x95\xb7\xce\x94\xb8\xd1\x95\xb8\xd4\x97\ +\xb8\xd3\x98\xb7\xd2\x96\xb5\xd0\x91\xb3\xcd\x92\xb5\xcf\x94\xb5\ +\xd1\x96\xb4\xd4\x94\xb3\xd4\x92\xb2\xd4\x00\x00\x00\x49\x65\x80\ +\x50\x6d\x85\x6f\x93\xad\x71\x9b\xb7\x89\xb6\xd3\x92\xc1\xdd\x93\ +\xc2\xde\x95\xc1\xde\x94\xc0\xdb\x90\xc0\xda\x8a\xb9\xd8\x7f\xaf\ +\xce\x79\xa8\xc5\x88\xb4\xd0\x8e\xb8\xd6\x8c\xba\xd6\x84\xb8\xd4\ +\x84\xbc\xda\x83\xba\xdb\x7d\xae\xcf\x66\x8f\xae\x3b\x62\x7e\x71\ +\x99\xb6\x88\xb4\xd3\x8e\xb9\xd8\x91\xba\xdd\x90\xbb\xdb\x8d\xbb\ +\xda\x8f\xbe\xdd\x91\xbf\xdd\x92\xbb\xdc\x8c\xb7\xda\x83\xb7\xd9\ +\x7f\xb8\xd8\x7a\xb6\xd3\x6a\xa1\xbc\x3a\x67\x7f\x4a\x72\x8b\x7a\ +\xa4\xbd\x89\xb5\xcf\x8f\xbb\xd8\x90\xb9\xd7\x92\xb7\xd6\x8f\xb4\ +\xd3\x86\xb0\xcc\x6f\x9e\xb7\x44\x73\x8a\x4e\x7c\x97\x64\x92\xb2\ +\x4b\x7b\x9b\x75\xa5\xc6\x87\xb4\xd5\x84\xaa\xc5\x4a\x68\x7b\x34\ +\x4c\x5b\x1e\x36\x44\x6d\x8b\x9e\x9d\xc0\xda\x9b\xbf\xde\x8a\xb2\ +\xd2\x7a\xa9\xc8\x7f\xad\xcc\x8b\xb6\xd2\x8d\xba\xd7\x8d\xbb\xd9\ +\x8c\xba\xda\x8f\xb9\xd9\x92\xbb\xdb\x91\xbe\xdc\x8c\xbb\xda\x8a\ +\xb9\xd9\x8e\xb8\xd7\x8a\xb3\xd3\x8a\xb3\xd3\x8b\xb3\xd2\x82\xaa\ +\xc5\x65\x91\xaa\x42\x75\x89\x71\xa5\xba\x6e\x99\xb2\x46\x67\x7b\ +\x2d\x4f\x5f\x76\x9d\xb2\x87\xb0\xcc\x86\xb2\xca\x88\xb3\xcb\x85\ +\xb2\xcb\x83\xaf\xce\x83\xaa\xcb\x83\xa8\xce\x83\xaf\xd3\x84\xb4\ +\xd3\x84\xb3\xd0\x88\xb5\xd0\x87\xb1\xce\x82\xab\xc6\x7b\xa1\xba\ +\x5f\x83\x9a\x39\x5a\x72\x2a\x51\x67\x35\x5e\x70\x36\x5f\x6e\x3b\ +\x64\x76\x5a\x83\x9a\x71\x99\xb6\x78\x9e\xba\x5b\x7d\x96\x37\x58\ +\x6e\x35\x57\x6c\x2b\x4a\x5d\x1d\x3c\x4b\x31\x52\x60\x5c\x84\x94\ +\x75\xa0\xb4\x7b\xa0\xb7\x76\x93\xab\x55\x6f\x85\x3f\x5d\x6f\x68\ +\x8a\xa1\x66\x85\x9f\x38\x54\x6c\x51\x71\x88\x7b\x9f\xb9\x85\xa8\ +\xc6\x88\xa8\xc9\x83\xa6\xc6\x80\xa4\xc6\x82\xa7\xc6\x86\xa8\xc5\ +\x85\xa8\xc3\x82\xa8\xc1\x80\xa5\xbf\x83\xa5\xc2\x85\xaa\xc4\x80\ +\xab\xc4\x7d\xa9\xc6\x7f\xa3\xc5\x7b\x9c\xbf\x7a\xa0\xc2\x7b\xaa\ +\xca\x7f\xae\xd0\x88\xb1\xd1\x90\xb4\xd2\x94\xb4\xd1\x94\xb6\xd2\ +\x93\xb4\xd5\x98\xb5\xd9\x9d\xb5\xda\x9c\xb5\xd6\x9c\xb7\xd2\x9b\ +\xb7\xcf\x99\xb6\xd1\x97\xb5\xd3\x99\xb7\xd5\x9a\xb8\xd3\x9c\xb8\ +\xd3\x96\xb3\xce\x91\xb1\xce\x93\xb3\xd0\x96\xb6\xd2\x94\xb4\xd2\ +\x95\xb4\xd5\x93\xb2\xd5\x00\x00\x00\x72\x8e\xae\x31\x4d\x66\x50\ +\x73\x89\x89\xb3\xcc\x94\xc0\xde\x97\xc6\xe4\x94\xc4\xe2\x95\xc2\ +\xe3\x9a\xc1\xe2\x93\xc0\xde\x87\xbb\xd7\x72\xa7\xc2\x59\x89\xa3\ +\x86\xaf\xc8\x92\xba\xd5\x8d\xbb\xd6\x86\xbc\xd8\x85\xbe\xda\x7f\ +\xb6\xd5\x75\xa3\xc3\x50\x77\x96\x48\x70\x8c\x82\xab\xc8\x8f\xbb\ +\xda\x92\xbc\xdf\x93\xbd\xe2\x8c\xbb\xdc\x86\xbb\xda\x89\xbd\xdc\ +\x8d\xbe\xde\x8e\xbc\xdd\x89\xb9\xdc\x80\xb5\xd9\x7f\xb9\xdc\x77\ +\xb8\xd6\x6d\xad\xc9\x60\x97\xb0\x73\xa1\xb9\x8e\xb6\xd0\x93\xba\ +\xd6\x8f\xba\xd8\x8e\xb9\xd9\x8f\xb5\xd7\x89\xb3\xd4\x83\xb4\xd2\ +\x79\xb0\xcd\x70\xa7\xc4\x5f\x94\xb2\x58\x8d\xab\x66\x9b\xb9\x7f\ +\xb5\xd3\x88\xb8\xd7\x89\xb0\xcb\x56\x72\x85\x26\x40\x4d\x1c\x3a\ +\x47\x6b\x8f\xa2\x9f\xc3\xdc\x9d\xc2\xde\x7d\xa7\xc4\x4b\x7a\x96\ +\x5c\x8b\xa5\x85\xaf\xcb\x8e\xbb\xd8\x8e\xbe\xdc\x8e\xbc\xdc\x92\ +\xbd\xdd\x92\xbe\xdb\x8d\xbe\xd9\x8b\xbd\xdb\x8b\xbb\xda\x90\xbb\ +\xdb\x8c\xb6\xd5\x89\xb5\xd3\x8c\xb5\xd5\x87\xb0\xd1\x77\xa3\xc2\ +\x4b\x7c\x95\x61\x91\xa8\x75\x9e\xb6\x56\x76\x8b\x25\x44\x54\x68\ +\x8a\x9f\x8a\xb0\xcb\x8d\xb6\xd1\x8e\xb9\xd4\x8b\xb9\xd5\x8c\xb8\ +\xd8\x8a\xb4\xd6\x8b\xb2\xd7\x8c\xb6\xd7\x86\xb5\xd1\x86\xb2\xcb\ +\x86\xb1\xcd\x86\xb4\xd0\x85\xb4\xd3\x84\xb2\xcf\x82\xaa\xc9\x7b\ +\x9e\xc0\x6b\x8f\xb0\x65\x90\xaa\x6a\x94\xad\x67\x90\xac\x6d\x95\ +\xb4\x74\x9c\xbf\x7f\xa6\xca\x7c\xa7\xc6\x71\x9e\xb9\x6e\x9a\xb3\ +\x6a\x94\xad\x63\x89\xa2\x5e\x83\x9b\x6f\x98\xb0\x7c\xa9\xc1\x86\ +\xaf\xc7\x82\xa4\xc0\x69\x89\xa5\x47\x6d\x84\x61\x8b\xa5\x72\x99\ +\xb8\x57\x7a\x9a\x5d\x80\x9d\x7f\xa4\xbf\x87\xad\xc6\x88\xac\xc8\ +\x84\xaa\xc7\x81\xa9\xc8\x81\xab\xc8\x84\xad\xc6\x83\xac\xc5\x81\ +\xa9\xc3\x85\xab\xc9\x87\xac\xca\x86\xab\xc6\x81\xaa\xc3\x80\xaa\ +\xc3\x81\xa6\xc2\x7f\xa3\xc0\x80\xaa\xc7\x7f\xaf\xce\x84\xb3\xd1\ +\x8c\xb7\xd3\x93\xb7\xd3\x94\xb6\xd3\x94\xb9\xd6\x95\xb8\xda\x9b\ +\xb7\xdb\x9c\xb4\xd7\x9b\xb6\xd6\x97\xb7\xd2\x97\xb6\xd2\x97\xb6\ +\xd3\x99\xb7\xd8\x98\xb7\xd6\x9b\xb9\xd4\x99\xb7\xd3\x94\xb3\xd1\ +\x91\xb2\xcf\x95\xb7\xd3\x95\xb7\xd5\x94\xb5\xd6\x94\xb7\xd8\x94\ +\xb7\xd9\x00\x00\x00\x90\xae\xd0\x4c\x66\x80\x21\x41\x53\x7b\xa1\ +\xb5\x98\xbf\xd9\x95\xc3\xdf\x91\xc1\xe0\x94\xc0\xe3\x9a\xc0\xe5\ +\x92\xbf\xe0\x85\xbd\xd7\x79\xb3\xcb\x59\x8c\xa4\x69\x92\xaa\x89\ +\xb1\xca\x89\xb7\xd2\x87\xb9\xd4\x84\xb6\xd0\x73\xa1\xbb\x55\x7c\ +\x99\x42\x69\x85\x74\xa1\xbc\x8a\xba\xd4\x8c\xbc\xdb\x90\xbd\xe2\ +\x8d\xbc\xe2\x86\xbc\xdf\x7f\xb9\xdb\x82\xbb\xdc\x89\xbd\xe0\x8a\ +\xbb\xdd\x84\xb9\xdb\x7f\xb5\xd8\x7e\xb5\xd8\x7c\xb9\xdb\x76\xb6\ +\xd7\x7d\xb6\xd5\x89\xb8\xd4\x96\xbc\xd9\x95\xbb\xdb\x8c\xb6\xda\ +\x86\xb3\xd6\x86\xb0\xd4\x87\xb3\xd6\x84\xb6\xd5\x7d\xb6\xd3\x7b\ +\xb6\xd3\x7a\xb3\xd1\x78\xaf\xcc\x83\xb7\xd1\x8a\xbc\xd8\x89\xb7\ +\xd5\x8c\xb1\xcd\x67\x82\x96\x22\x3d\x4a\x19\x3e\x48\x6c\x95\xa7\ +\x9d\xc4\xdc\x9c\xc2\xdd\x7f\xaa\xc4\x47\x76\x91\x58\x87\xa1\x80\ +\xad\xca\x8a\xb9\xd8\x8d\xbc\xdb\x8d\xbb\xdc\x8c\xba\xda\x8c\xbd\ +\xd7\x87\xbe\xd4\x86\xbc\xd7\x88\xbb\xd9\x8c\xbb\xda\x8e\xb8\xd8\ +\x8b\xb7\xd6\x88\xb4\xd6\x88\xb1\xd6\x7d\xa8\xca\x69\x97\xb4\x50\ +\x7a\x96\x68\x8c\xa8\x57\x75\x8d\x1b\x36\x48\x46\x65\x78\x67\x8c\ +\xa4\x77\x9f\xb8\x85\xb0\xc9\x8f\xb6\xd3\x93\xb5\xd6\x91\xb5\xd7\ +\x90\xb4\xd5\x8f\xb6\xd6\x8a\xb3\xce\x8a\xb0\xca\x89\xaf\xcd\x8a\ +\xb4\xd4\x87\xb6\xd6\x8b\xb7\xd7\x8c\xb4\xd6\x8a\xad\xd2\x82\xa8\ +\xca\x7e\xa8\xc8\x80\xa7\xc8\x80\xa3\xc5\x83\xa6\xc9\x89\xad\xd1\ +\x8a\xb1\xd4\x85\xb2\xd2\x81\xb0\xcf\x7f\xae\xca\x7e\xad\xc8\x7f\ +\xa9\xc7\x85\xaa\xca\x88\xac\xcc\x89\xae\xcc\x8a\xaf\xcc\x89\xae\ +\xcd\x80\xa5\xc6\x70\x99\xb6\x6f\x9d\xb9\x7c\xa6\xc6\x78\xa0\xc2\ +\x7c\xa0\xc0\x83\xa8\xc4\x89\xae\xc9\x8b\xb0\xca\x89\xaf\xca\x82\ +\xab\xc8\x7f\xaa\xc8\x80\xac\xc5\x82\xae\xc8\x87\xaf\xce\x89\xad\ +\xcf\x87\xaa\xcc\x87\xa9\xc9\x86\xaa\xc9\x87\xab\xc7\x85\xa9\xc2\ +\x7f\xa5\xbf\x83\xac\xc6\x84\xb1\xce\x8b\xb5\xd3\x8e\xb8\xd3\x92\ +\xb8\xd4\x91\xb7\xd5\x92\xb9\xda\x93\xb9\xdb\x98\xb7\xd9\x9b\xb5\ +\xd5\x96\xb5\xd1\x90\xb6\xcf\x8e\xb6\xd0\x93\xb8\xd6\x92\xb8\xd8\ +\x92\xb8\xd6\x98\xb9\xd4\x9a\xb8\xd7\x94\xb5\xd6\x92\xb5\xd3\x96\ +\xb8\xd6\x96\xb8\xda\x93\xb6\xd9\x91\xb5\xd8\x93\xb6\xd8\x00\x00\ +\x00\x93\xb5\xd5\x67\x82\x99\x19\x34\x44\x4d\x6d\x7d\x93\xb9\xd1\ +\x8e\xbb\xd6\x8b\xb9\xd9\x8e\xbc\xdf\x92\xbb\xe1\x8f\xbb\xdd\x84\ +\xba\xd6\x7d\xb8\xd0\x78\xae\xc6\x59\x83\x9e\x65\x8b\xa9\x76\xa1\ +\xbc\x6f\x9b\xb3\x5b\x87\x9e\x3f\x68\x81\x42\x69\x86\x74\x9f\xbe\ +\x83\xb7\xd3\x83\xb9\xd6\x86\xbb\xda\x8c\xbe\xdf\x8c\xbf\xe1\x85\ +\xbc\xde\x7e\xba\xdd\x80\xb9\xde\x87\xbb\xdf\x89\xb9\xde\x84\xb7\ +\xdc\x81\xb5\xd8\x80\xb3\xd7\x7e\xb6\xd9\x7c\xb9\xdc\x7f\xb8\xda\ +\x8b\xbb\xdb\x93\xbc\xdc\x8e\xb8\xd9\x83\xb0\xd5\x81\xae\xd4\x81\ +\xad\xd3\x85\xb2\xd6\x85\xb4\xd4\x82\xb4\xd3\x7d\xb6\xd3\x80\xb6\ +\xd4\x87\xb8\xd7\x8c\xba\xd7\x8c\xb9\xd8\x8d\xb7\xd7\x8d\xb1\xcf\ +\x73\x90\xa8\x29\x46\x55\x26\x4d\x5a\x71\x9e\xb1\x99\xc2\xdc\x95\ +\xc0\xd8\x88\xb6\xd0\x7c\xac\xc7\x7e\xaf\xc9\x86\xb4\xd1\x8b\xba\ +\xd8\x89\xb8\xd7\x8a\xb8\xd8\x88\xb8\xd5\x88\xbb\xd4\x86\xbc\xd4\ +\x8b\xbd\xdb\x8d\xbe\xdb\x8c\xbc\xda\x8f\xbb\xda\x8d\xb9\xd8\x89\ +\xb6\xd8\x87\xb1\xd4\x84\xaf\xcf\x7a\xa5\xc6\x69\x90\xb2\x4c\x6f\ +\x8e\x47\x66\x7f\x15\x33\x48\x30\x54\x69\x4d\x76\x8f\x5b\x88\xa2\ +\x60\x8b\xa4\x70\x93\xaf\x8e\xad\xcb\x91\xb3\xd2\x91\xb7\xd3\x91\ +\xb8\xd4\x90\xb6\xd1\x8f\xb4\xcf\x8e\xb4\xd3\x8a\xb6\xd5\x8b\xb6\ +\xd5\x8e\xb6\xd7\x91\xb5\xd7\x90\xb4\xd6\x8b\xb3\xd2\x8d\xb4\xd4\ +\x8d\xb1\xd1\x8f\xb2\xd3\x8e\xb3\xd3\x92\xb5\xd6\x92\xb7\xd9\x8f\ +\xb8\xd9\x8d\xb7\xd9\x8a\xb7\xd6\x87\xb6\xd1\x89\xb5\xd3\x90\xb6\ +\xd7\x93\xb6\xd8\x94\xb3\xd5\x90\xb3\xd1\x8c\xb4\xd0\x87\xb1\xcf\ +\x83\xb0\xcf\x83\xad\xcc\x89\xaf\xcf\x89\xad\xd1\x88\xac\xcf\x87\ +\xac\xca\x8a\xaf\xcb\x90\xb2\xce\x8b\xaf\xcd\x86\xab\xca\x7e\xa7\ +\xc7\x7e\xa9\xc7\x84\xac\xcb\x89\xae\xcf\x8a\xae\xcf\x87\xab\xcb\ +\x89\xab\xcb\x8a\xad\xcc\x89\xad\xc9\x86\xab\xc4\x87\xa9\xc4\x8b\ +\xaf\xcb\x8e\xb1\xd1\x91\xb5\xd5\x91\xb8\xd4\x90\xb9\xd5\x90\xb8\ +\xd6\x8f\xb9\xd9\x90\xb9\xd9\x94\xb8\xd7\x97\xb6\xd4\x94\xb8\xd2\ +\x8b\xb6\xce\x89\xb6\xcf\x8d\xb8\xd6\x8d\xb8\xd8\x8e\xb7\xd5\x95\ +\xba\xd4\x9a\xb8\xd8\x96\xb6\xd8\x96\xb7\xd5\x9a\xb8\xd7\x98\xb6\ +\xd9\x91\xb3\xd6\x90\xb4\xd6\x93\xb4\xd8\x00\x00\x00\x8f\xb1\xcd\ +\x73\x8c\xa2\x1b\x32\x40\x30\x4d\x5b\x81\xa7\xbe\x8b\xb6\xd4\x87\ +\xb4\xd4\x8c\xb8\xd9\x8f\xb5\xd8\x8c\xb2\xd4\x88\xb8\xd6\x82\xba\ +\xd6\x7e\xb6\xd1\x78\xa8\xc6\x68\x90\xb1\x5c\x84\xa3\x4c\x78\x92\ +\x4a\x7a\x92\x65\x95\xae\x77\xa5\xc4\x7f\xae\xd1\x83\xb9\xdb\x84\ +\xbb\xd9\x85\xba\xd9\x8c\xbc\xde\x8c\xbc\xdd\x84\xb9\xd9\x83\xbb\ +\xdd\x86\xbb\xdd\x8a\xba\xdd\x8a\xb6\xdc\x86\xb6\xde\x7f\xb3\xd8\ +\x7a\xaf\xd3\x78\xaf\xd2\x77\xae\xd3\x7b\xb3\xd5\x85\xb8\xd7\x89\ +\xb8\xd9\x80\xb2\xd4\x7c\xae\xd1\x7d\xaf\xd2\x7f\xb1\xd3\x82\xb2\ +\xd4\x82\xb1\xd0\x80\xaf\xce\x71\xa6\xc3\x78\xaa\xc9\x86\xb4\xd3\ +\x8a\xb5\xd5\x89\xb4\xd8\x8d\xb5\xda\x91\xb4\xd5\x82\x9f\xbe\x4e\ +\x6f\x88\x4a\x75\x8a\x80\xaf\xc7\x8f\xba\xd8\x8e\xbb\xd8\x8a\xb9\ +\xd7\x8a\xba\xd8\x8b\xba\xd6\x90\xbb\xd7\x8e\xba\xd6\x88\xb6\xd5\ +\x86\xb5\xd5\x87\xb6\xd5\x89\xb8\xd5\x8b\xbb\xd8\x8f\xbc\xdc\x92\ +\xbe\xdd\x90\xbd\xdc\x92\xbf\xdd\x8f\xbc\xdb\x8a\xb9\xda\x88\xb6\ +\xd8\x89\xb6\xd6\x84\xaf\xd0\x7c\xa7\xca\x69\x90\xb1\x42\x65\x7f\ +\x1f\x41\x58\x4f\x77\x91\x75\xa2\xc0\x81\xae\xcb\x7b\xa4\xbf\x59\ +\x7f\x97\x56\x7a\x8f\x86\xab\xc1\x8e\xb5\xce\x91\xb9\xd2\x92\xba\ +\xd5\x91\xba\xd4\x8d\xb7\xd2\x8b\xb8\xd3\x8d\xb8\xd4\x91\xb8\xd7\ +\x97\xba\xda\x94\xb8\xd7\x93\xb9\xd5\x95\xb9\xd7\x95\xb9\xd7\x95\ +\xba\xda\x94\xbc\xdd\x94\xbc\xdb\x96\xbb\xda\x96\xbd\xdc\x92\xbd\ +\xdc\x8f\xbb\xda\x8c\xba\xd6\x8b\xba\xd5\x90\xb9\xd8\x94\xb6\xd9\ +\x96\xb5\xd6\x93\xb5\xd4\x8c\xb7\xd0\x86\xb3\xcf\x86\xb1\xcf\x8b\ +\xb2\xd1\x90\xb3\xd3\x91\xb3\xd5\x8c\xb0\xd3\x8d\xb2\xd1\x8f\xb3\ +\xd0\x90\xb1\xcf\x8b\xad\xcd\x84\xaa\xca\x7e\xa6\xc6\x80\xa6\xc6\ +\x88\xab\xcc\x8b\xae\xcd\x8b\xaf\xcc\x89\xae\xcc\x8b\xb0\xcd\x8c\ +\xb1\xcd\x8a\xae\xc8\x87\xab\xc5\x8b\xac\xc8\x93\xb0\xd1\x95\xb3\ +\xd5\x91\xb5\xd3\x8f\xb9\xd2\x8f\xbb\xd4\x91\xb9\xd7\x93\xb9\xd9\ +\x92\xb8\xd8\x94\xb8\xd6\x92\xb6\xd3\x90\xb8\xd1\x8a\xb7\xd1\x87\ +\xb6\xd3\x87\xb4\xd4\x8c\xb4\xd4\x8d\xb2\xd1\x92\xb5\xd1\x99\xb8\ +\xd8\x99\xb7\xda\x96\xb6\xd7\x9b\xb7\xd7\x9c\xb7\xda\x96\xb5\xd7\ +\x93\xb3\xd4\x96\xb3\xd5\x00\x00\x00\x87\xa4\xbe\x6b\x81\x95\x1b\ +\x2e\x3c\x23\x41\x4f\x75\x9e\xb4\x88\xb5\xd1\x89\xb3\xce\x89\xb1\ +\xcb\x88\xab\xc5\x8d\xb2\xcd\x8b\xb7\xd4\x86\xb9\xd7\x7b\xb1\xcf\ +\x7a\xac\xca\x7c\xa8\xc7\x85\xad\xce\x7e\xab\xc8\x77\xa6\xc0\x7a\ +\xa9\xc5\x7c\xaa\xca\x81\xae\xd2\x88\xb6\xda\x82\xb3\xd3\x83\xb3\ +\xd3\x86\xb5\xd6\x89\xb7\xd9\x87\xb5\xd5\x86\xb6\xd6\x86\xb6\xd5\ +\x89\xb8\xd7\x8a\xb6\xd8\x89\xb5\xda\x83\xb4\xd6\x7d\xb1\xd2\x72\ +\xa6\xca\x70\xa5\xc7\x77\xab\xcc\x7f\xb0\xd0\x7f\xb0\xd1\x77\xad\ +\xce\x79\xae\xd1\x7c\xb1\xd2\x7b\xb0\xd1\x7c\xaf\xd0\x7f\xaf\xcd\ +\x77\xab\xc8\x62\x9a\xb7\x5c\x8e\xad\x7b\xa7\xc7\x84\xb0\xd2\x85\ +\xb3\xd5\x8f\xb9\xda\x94\xb8\xd8\x8f\xaf\xd0\x7c\xa2\xbf\x76\xa5\ +\xbd\x80\xae\xc9\x87\xb1\xd0\x8e\xb9\xd8\x8b\xb9\xd7\x8c\xb9\xd6\ +\x8f\xbb\xd5\x91\xba\xd3\x90\xb6\xd1\x88\xb1\xce\x81\xb1\xce\x87\ +\xb6\xd3\x8c\xb7\xd6\x8e\xb8\xd7\x90\xb8\xd8\x95\xbb\xdc\x93\xba\ +\xdb\x92\xbc\xdb\x8f\xbc\xdc\x8c\xba\xdb\x8c\xb8\xd9\x8b\xb6\xd5\ +\x87\xb3\xd4\x81\xaf\xd1\x7b\xa6\xc7\x6b\x91\xad\x40\x63\x7c\x60\ +\x82\xa1\x86\xaa\xcc\x8d\xb3\xd4\x88\xb0\xcc\x76\x9d\xb2\x4a\x6d\ +\x7e\x53\x75\x87\x89\xae\xc3\x92\xb7\xd1\x94\xba\xd6\x90\xbc\xd3\ +\x90\xbc\xd4\x91\xba\xd4\x91\xbb\xd9\x92\xbb\xdb\x95\xbb\xdc\x97\ +\xbc\xda\x97\xbc\xd7\x96\xbb\xd7\x98\xbd\xda\x99\xbe\xdd\x98\xbe\ +\xe0\x97\xbd\xdd\x9a\xbf\xda\x99\xc1\xdb\x93\xbf\xdb\x8f\xbb\xd8\ +\x90\xbc\xd9\x8d\xbb\xd7\x90\xb8\xd9\x95\xb8\xda\x96\xb5\xd8\x93\ +\xb4\xd6\x8d\xb3\xd3\x89\xb2\xd1\x8a\xaf\xce\x90\xb1\xd3\x92\xb4\ +\xd6\x91\xb6\xd8\x90\xb6\xd6\x92\xb7\xd4\x91\xb6\xd0\x8d\xb2\xcd\ +\x8b\xb0\xcc\x84\xab\xc6\x80\xa8\xc4\x86\xab\xc9\x8e\xae\xcf\x8d\ +\xae\xcd\x8b\xb0\xcb\x89\xb0\xcb\x87\xb0\xcb\x8b\xb1\xcd\x8a\xab\ +\xc6\x88\xa8\xc5\x8c\xac\xc9\x97\xb5\xd4\x9b\xb6\xd7\x93\xb6\xd3\ +\x8e\xb6\xd1\x8e\xb7\xd2\x93\xb7\xd7\x94\xb6\xd7\x94\xb8\xd7\x92\ +\xb8\xd3\x8e\xb7\xcf\x8c\xb7\xd0\x89\xb6\xd3\x86\xb3\xd5\x8a\xb1\ +\xd6\x8f\xb1\xd5\x93\xb2\xd2\x95\xb6\xd2\x97\xb6\xd6\x99\xb7\xda\ +\x98\xb7\xda\x97\xb5\xd7\x9c\xb6\xdc\x99\xb6\xdb\x96\xb5\xd4\x98\ +\xb6\xd3\x00\x00\x00\x54\x6f\x85\x47\x5a\x6c\x12\x26\x33\x29\x47\ +\x56\x74\x9d\xb2\x89\xb4\xcd\x7f\xa5\xbb\x58\x7b\x8a\x5f\x81\x90\ +\x8b\xae\xc4\x8c\xb6\xd2\x84\xb2\xcf\x68\x94\xad\x5b\x84\x9c\x6e\ +\x95\xae\x80\xa6\xc2\x7b\xa3\xbd\x69\x92\xa9\x6a\x93\xad\x73\x9d\ +\xbd\x7e\xa9\xcd\x7f\xa8\xca\x72\x9e\xbb\x76\xa5\xc3\x7e\xac\xcd\ +\x86\xae\xd1\x85\xac\xcc\x79\xa3\xbf\x75\xa5\xbd\x7e\xae\xc7\x83\ +\xb3\xd0\x86\xb4\xd0\x85\xaf\xcb\x7d\xa8\xc6\x70\xa2\xc1\x72\xa6\ +\xc3\x7e\xad\xc9\x84\xaf\xce\x80\xac\xce\x79\xa9\xc9\x7b\xad\xcc\ +\x79\xad\xcb\x78\xad\xca\x79\xac\xc7\x78\xac\xc6\x74\xaa\xc6\x68\ +\x9d\xbc\x4e\x7c\x9c\x66\x8e\xae\x7e\xa8\xc6\x83\xb1\xcf\x91\xb9\ +\xd9\x97\xb8\xd9\x91\xb0\xd2\x83\xa8\xc6\x70\x9c\xb2\x76\x9f\xb6\ +\x82\xa9\xc4\x88\xb2\xcd\x83\xaf\xc8\x85\xaf\xc8\x8b\xb2\xcb\x8f\ +\xb2\xcd\x8c\xad\xca\x85\xaa\xc6\x81\xad\xc7\x87\xb4\xce\x90\xb7\ +\xd3\x92\xb8\xd4\x90\xb6\xd5\x92\xb5\xd6\x92\xb7\xd5\x8f\xb6\xd5\ +\x8f\xb8\xd8\x8f\xb7\xd8\x8d\xb6\xd7\x8a\xb5\xd4\x83\xb1\xd1\x80\ +\xb0\xd0\x81\xaf\xce\x82\xa9\xc4\x72\x94\xb2\x5a\x78\x9b\x7b\x9a\ +\xbf\x8d\xb0\xd1\x91\xb5\xd2\x87\xab\xc4\x68\x89\x9d\x37\x55\x66\ +\x69\x88\x9d\x95\xb6\xd0\x96\xba\xd6\x94\xbd\xd6\x96\xbd\xd6\x95\ +\xbb\xd6\x92\xba\xd9\x92\xba\xdb\x93\xbc\xdc\x95\xbb\xd8\x95\xbe\ +\xd7\x97\xbf\xd8\x9c\xc1\xdd\x9b\xbf\xdd\x9b\xbf\xe0\x9a\xbd\xde\ +\x9b\xc0\xdc\x98\xc1\xda\x93\xbe\xd9\x8f\xbd\xd6\x8f\xbb\xd6\x8e\ +\xbb\xd9\x92\xba\xdb\x95\xb7\xd9\x97\xb5\xd6\x95\xb3\xd4\x91\xb2\ +\xd4\x8f\xb3\xd4\x94\xb4\xd6\x97\xb4\xd9\x94\xb7\xd9\x90\xb8\xd8\ +\x93\xba\xd9\x97\xba\xd8\x95\xb9\xd4\x91\xb5\xd2\x8d\xb2\xcc\x88\ +\xb0\xc9\x84\xaf\xca\x85\xae\xce\x8b\xaf\xd2\x8c\xb0\xcf\x89\xb0\ +\xca\x88\xb2\xcb\x8a\xb1\xcd\x89\xad\xcb\x8a\xa9\xc7\x89\xa8\xc3\ +\x8e\xaf\xca\x98\xb7\xd3\x9a\xb7\xd4\x96\xb7\xd4\x91\xb6\xd2\x95\ +\xb7\xd8\x99\xb9\xda\x94\xb8\xd7\x94\xb8\xd6\x90\xb6\xd2\x8c\xb6\ +\xcf\x8b\xb5\xce\x8e\xb6\xd3\x8f\xb5\xd7\x93\xb5\xdb\x93\xb3\xd7\ +\x94\xb4\xd5\x96\xb7\xd4\x96\xb7\xd7\x99\xb8\xd9\x98\xb6\xd9\x99\ +\xb6\xda\x97\xb5\xdc\x98\xb6\xdb\x93\xb6\xd4\x93\xb6\xd3\x00\x00\ +\x00\x56\x7a\x91\x26\x45\x58\x16\x33\x45\x24\x46\x5a\x49\x70\x87\ +\x6c\x90\xa8\x61\x81\x95\x27\x47\x55\x21\x44\x50\x70\x94\xaa\x84\ +\xab\xca\x7e\xa5\xc3\x59\x7a\x92\x2b\x4b\x5c\x4f\x71\x82\x65\x8a\ +\xa0\x5f\x83\x9b\x36\x5a\x6e\x33\x5a\x70\x4e\x7a\x98\x6d\x9a\xb9\ +\x59\x81\x9f\x31\x5a\x71\x50\x7e\x99\x71\x9e\xbf\x80\xa7\xc9\x7a\ +\x9f\xbb\x52\x78\x8c\x34\x5d\x6b\x64\x92\xa2\x7b\xaa\xbd\x80\xaa\ +\xbd\x65\x8b\x9d\x59\x7f\x96\x66\x94\xae\x70\x9f\xb7\x79\xa0\xb8\ +\x79\x9c\xb5\x77\x9d\xb8\x74\x9e\xba\x7c\xa7\xc2\x79\xa7\xc0\x72\ +\xa1\xb7\x72\xa0\xb7\x7b\xa9\xc3\x7d\xab\xca\x75\xa1\xc1\x59\x80\ +\x9f\x45\x68\x85\x7e\xa1\xbc\x8b\xb1\xcd\x92\xb6\xd4\x94\xb1\xd3\ +\x8d\xa7\xcb\x78\x94\xb4\x49\x69\x7f\x40\x63\x77\x65\x89\xa2\x75\ +\x9c\xb5\x69\x8f\xa5\x58\x7c\x8f\x62\x86\x9b\x6e\x91\xa9\x6e\x8c\ +\xa7\x66\x85\xa2\x70\x94\xad\x85\xa8\xc2\x8e\xaf\xc8\x8b\xac\xc4\ +\x89\xaa\xc3\x88\xa9\xc7\x86\xa9\xc5\x85\xaa\xc5\x85\xab\xc8\x86\ +\xad\xcb\x89\xaf\xce\x87\xb1\xd0\x82\xb2\xce\x82\xb1\xcd\x85\xb2\ +\xcd\x8d\xb3\xce\x86\xa7\xc7\x74\x93\xba\x67\x87\xae\x78\x9b\xbd\ +\x8a\xae\xcc\x8c\xaf\xcb\x7e\x9c\xb3\x43\x61\x72\x3b\x5b\x6d\x87\ +\xaa\xc1\x94\xba\xd5\x94\xbc\xd7\x98\xbd\xda\x9c\xbc\xdb\x98\xba\ +\xdb\x98\xbb\xdc\x96\xbc\xda\x95\xbc\xd8\x92\xbd\xd5\x97\xbf\xd9\ +\x9d\xc0\xdd\x9c\xbe\xdd\x9c\xbb\xdc\x99\xbb\xdb\x95\xb8\xd7\x94\ +\xb8\xd6\x96\xbb\xd6\x95\xbc\xd5\x93\xb9\xd5\x90\xb8\xd9\x94\xb8\ +\xda\x98\xb8\xd8\x98\xb5\xd3\x98\xb4\xd2\x98\xb4\xd3\x99\xb7\xd8\ +\x96\xb6\xda\x97\xb7\xdb\x94\xb6\xd9\x94\xb9\xd8\x97\xbb\xd8\x9b\ +\xb9\xd8\x99\xb8\xd6\x95\xb7\xd5\x8e\xb5\xd1\x88\xb2\xcf\x85\xb3\ +\xd2\x83\xb2\xd2\x87\xb1\xd3\x89\xb1\xd2\x88\xb0\xcd\x88\xae\xc9\ +\x89\xae\xca\x89\xa8\xc9\x8b\xa8\xc4\x8d\xaa\xc5\x93\xb1\xcc\x9a\ +\xb8\xd2\x9d\xb7\xd5\x9a\xb7\xd3\x97\xb8\xd6\x9a\xb9\xd7\x9a\xb8\ +\xd6\x98\xba\xd6\x95\xb9\xd7\x92\xb6\xd4\x91\xb6\xd0\x91\xb7\xd0\ +\x94\xb8\xd3\x93\xb7\xd7\x96\xb8\xdb\x93\xb5\xd9\x93\xb5\xd6\x94\ +\xb4\xd4\x95\xb4\xd5\x96\xb6\xd7\x9a\xb8\xdb\x99\xb7\xdc\x99\xb6\ +\xdb\x96\xb5\xd8\x94\xb7\xd5\x8e\xb6\xd2\x00\x00\x00\x7e\xad\xc6\ +\x75\xa4\xbb\x53\x80\x99\x50\x7e\x99\x5f\x8b\xa8\x5c\x84\x9f\x51\ +\x76\x8c\x3d\x62\x75\x4b\x72\x87\x74\x99\xb6\x7f\xa3\xc4\x73\x97\ +\xb7\x61\x81\x9c\x2c\x4c\x60\x40\x63\x77\x68\x90\xa7\x60\x87\xa1\ +\x49\x6f\x8a\x42\x6d\x87\x5b\x8c\xaa\x64\x97\xb4\x4e\x7f\x99\x23\ +\x52\x6b\x45\x74\x91\x6c\x98\xbc\x76\x9b\xbf\x6a\x8c\xa9\x35\x58\ +\x6a\x0f\x37\x41\x43\x70\x7c\x71\xa0\xae\x69\x93\xa1\x2b\x51\x5f\ +\x3e\x65\x78\x6d\x99\xb0\x64\x8e\xa5\x3e\x62\x75\x2e\x4f\x61\x37\ +\x5e\x71\x4b\x76\x8e\x5a\x84\x9c\x50\x77\x8e\x36\x5f\x72\x53\x7c\ +\x92\x80\xa8\xc2\x8a\xb0\xd1\x83\xa9\xcc\x6f\x93\xb3\x41\x62\x7e\ +\x6a\x8d\xa3\x89\xae\xc6\x92\xb6\xd1\x94\xb2\xd2\x86\x9f\xc2\x6c\ +\x83\xa5\x4b\x65\x80\x46\x62\x7d\x6b\x8a\xaa\x67\x88\xa7\x47\x6b\ +\x83\x32\x5a\x6b\x52\x7b\x8e\x5f\x85\x9d\x44\x64\x7e\x2a\x49\x63\ +\x3e\x5d\x77\x55\x73\x8d\x4a\x6b\x81\x39\x5a\x6e\x47\x68\x7c\x5f\ +\x80\x96\x67\x8a\x9e\x66\x8d\xa1\x6a\x8f\xa6\x73\x97\xb1\x7a\xa1\ +\xb9\x7e\xa8\xc0\x7e\xae\xc4\x7f\xb1\xc8\x84\xb4\xcb\x8c\xb4\xd0\ +\x89\xac\xcd\x7e\x9f\xc4\x71\x93\xb7\x6b\x8e\xae\x6f\x94\xb3\x7d\ +\xa2\xc0\x7d\x9b\xb5\x50\x6d\x80\x24\x42\x53\x67\x8b\x9d\x8e\xb3\ +\xcc\x94\xb8\xd6\x95\xb6\xd7\x98\xb5\xd5\x97\xb5\xd4\x96\xb7\xd2\ +\x91\xb5\xd0\x8e\xb4\xce\x8c\xb6\xce\x8d\xb5\xce\x96\xb8\xd4\x97\ +\xb5\xd6\x8e\xb1\xd0\x89\xad\xcc\x86\xab\xc7\x89\xab\xc6\x8c\xac\ +\xc6\x8e\xae\xc5\x8e\xaf\xc9\x8f\xb1\xd0\x94\xb3\xd6\x95\xb3\xd3\ +\x96\xb4\xcf\x98\xb5\xd0\x9a\xb7\xd3\x99\xb6\xd7\x95\xb5\xd8\x95\ +\xb6\xd6\x96\xb5\xd5\x96\xb7\xd4\x9a\xba\xd7\x9a\xb8\xd6\x9b\xb8\ +\xd9\x94\xb6\xd7\x8b\xb3\xd4\x86\xb2\xd3\x81\xb1\xd2\x7f\xb2\xd0\ +\x80\xaf\xcd\x82\xae\xcb\x84\xac\xc9\x87\xac\xc7\x88\xaa\xc6\x85\ +\xa6\xc3\x83\xa3\xbf\x89\xa8\xc4\x95\xb3\xcf\x98\xb5\xd2\x9b\xb7\ +\xd3\x9b\xb7\xd2\x99\xb8\xd4\x9a\xb8\xd3\x9d\xba\xd5\x98\xb7\xd4\ +\x94\xb6\xd6\x94\xb7\xd5\x95\xb5\xd1\x96\xb7\xd2\x94\xb8\xd4\x93\ +\xb8\xd8\x91\xb8\xd9\x90\xb8\xd9\x90\xb5\xd6\x93\xb5\xd5\x96\xb5\ +\xd5\x99\xb7\xd9\x99\xb6\xd9\x99\xb7\xda\x97\xb6\xd8\x95\xb7\xd7\ +\x91\xb6\xd1\x91\xb7\xd3\x00\x00\x00\x8d\xbe\xdd\x8a\xbc\xdb\x85\ +\xb8\xda\x80\xb7\xda\x86\xbb\xdb\x8b\xba\xd8\x89\xb5\xd2\x86\xb3\ +\xce\x85\xb2\xcf\x8c\xb3\xd4\x8a\xaf\xd1\x7f\xa5\xc5\x6d\x96\xb4\ +\x52\x7a\x98\x44\x6f\x8b\x68\x96\xb4\x76\xa3\xc5\x76\xa2\xc5\x6f\ +\xa1\xc2\x70\xa8\xc8\x73\xad\xcc\x6b\xa5\xc2\x61\x9c\xb6\x61\x9a\ +\xb9\x76\xa5\xcb\x80\xa9\xcd\x74\x9a\xb8\x57\x7f\x94\x4a\x77\x89\ +\x6c\x9c\xaf\x70\xa3\xb8\x63\x92\xa5\x3d\x6a\x7c\x42\x6d\x84\x70\ +\x9d\xb9\x78\xa6\xc0\x4f\x7c\x91\x19\x46\x55\x20\x52\x61\x51\x85\ +\x98\x69\x99\xb0\x52\x7c\x95\x24\x4e\x66\x54\x80\x9a\x83\xab\xca\ +\x90\xb6\xd7\x88\xb2\xd4\x7b\xa5\xc7\x5b\x85\xa1\x4e\x78\x91\x7d\ +\xa5\xbf\x8e\xb4\xce\x93\xb8\xd2\x95\xb4\xd3\x8e\xac\xcd\x7f\xa0\ +\xbf\x77\x9b\xbb\x83\xaa\xcc\x85\xab\xcd\x73\x9c\xb7\x5e\x8d\xa1\ +\x6f\xa1\xb5\x80\xac\xc5\x7c\xa2\xbd\x69\x8f\xa8\x68\x8e\xa7\x76\ +\x9c\xb6\x67\x91\xa8\x4b\x75\x8c\x4d\x76\x8a\x59\x81\x93\x3e\x66\ +\x75\x24\x4c\x5d\x27\x4f\x63\x45\x6c\x81\x5d\x86\x98\x6d\x99\xa9\ +\x78\xa7\xb9\x7d\xae\xc4\x84\xb2\xca\x87\xb2\xce\x88\xb0\xce\x82\ +\xa7\xc5\x73\x98\xb4\x62\x87\xa1\x5c\x82\xa0\x66\x8c\xab\x6a\x89\ +\xa5\x4d\x69\x7d\x1e\x3b\x4c\x50\x72\x82\x82\xa6\xbd\x8d\xb1\xcc\ +\x87\xa7\xc2\x80\x9e\xb7\x7f\xa0\xb7\x84\xa9\xbe\x7e\xa5\xbb\x7b\ +\x9f\xb8\x76\x9c\xb4\x7c\xa2\xbb\x83\xa6\xc3\x83\xa6\xc6\x7d\xa1\ +\xbf\x6d\x91\xad\x61\x83\x9c\x6d\x8b\xa0\x6b\x8a\x9c\x63\x80\x91\ +\x72\x90\xa5\x82\xa0\xba\x8a\xa9\xc7\x88\xac\xc9\x8d\xaf\xcd\x93\ +\xb4\xd2\x96\xb6\xd6\x95\xb3\xd5\x96\xb6\xd7\x95\xb4\xd3\x98\xb5\ +\xd5\x93\xb3\xd3\x93\xb7\xd4\x93\xb5\xd5\x94\xb4\xd6\x8f\xb4\xd5\ +\x88\xb4\xd4\x84\xb2\xd3\x81\xb0\xd0\x7b\xad\xcb\x7c\xac\xc8\x80\ +\xac\xc4\x84\xac\xc4\x87\xac\xc3\x86\xab\xc2\x81\xa6\xc0\x80\xa4\ +\xbe\x87\xab\xc5\x8f\xb2\xce\x92\xb5\xd1\x96\xb5\xd3\x96\xb6\xd4\ +\x94\xb7\xd4\x95\xb8\xd4\x9b\xbb\xd6\x98\xb7\xd4\x95\xb4\xd4\x97\ +\xb5\xd5\x93\xb3\xd1\x8f\xb4\xd1\x8f\xb7\xd5\x8e\xb8\xd7\x8c\xb9\ +\xd7\x8a\xb9\xd6\x8c\xb7\xd6\x90\xb7\xd5\x97\xb9\xd7\x99\xb7\xda\ +\x97\xb7\xda\x96\xb6\xd8\x94\xb5\xd7\x91\xb4\xd3\x90\xb5\xd0\x8f\ +\xb3\xcf\x00\x00\x00\x90\xbc\xe0\x92\xbd\xe1\x8e\xbf\xe2\x89\xbe\ +\xe0\x8b\xbf\xe0\x8d\xbe\xdc\x8d\xbc\xdb\x8d\xbc\xdb\x8b\xb9\xda\ +\x8f\xb8\xd9\x8b\xb7\xd5\x87\xb4\xd1\x7e\xad\xcb\x74\xa2\xc2\x70\ +\xa0\xc0\x7d\xaa\xcd\x80\xb0\xd4\x7e\xaf\xd2\x7c\xb0\xd2\x7a\xb2\ +\xd2\x7a\xb4\xd4\x76\xb4\xd4\x73\xb4\xd2\x78\xb4\xd3\x80\xb1\xd6\ +\x83\xae\xd3\x81\xac\xcd\x7e\xab\xc8\x7b\xab\xc7\x7c\xaf\xcb\x78\ +\xae\xcb\x77\xab\xc6\x71\xa2\xbc\x6f\x9d\xbb\x76\xa3\xc5\x78\xa9\ +\xc9\x68\xa1\xbb\x54\x8f\xa5\x46\x7d\x93\x56\x8b\xa4\x71\xa4\xc0\ +\x72\xa0\xc0\x66\x95\xb4\x67\x98\xb7\x80\xad\xcc\x8f\xb8\xd8\x89\ +\xb5\xd9\x81\xb1\xd5\x73\xa5\xc4\x67\x97\xb4\x75\xa1\xbf\x8a\xb1\ +\xcf\x90\xb6\xd2\x91\xb8\xd4\x92\xb9\xd5\x8f\xb7\xd2\x8e\xb8\xd6\ +\x8e\xbb\xdc\x8f\xbb\xdc\x88\xb7\xd3\x82\xb8\xcf\x83\xba\xd0\x8a\ +\xb9\xd3\x88\xb3\xcd\x87\xb3\xcc\x8c\xb7\xd0\x8f\xbd\xd6\x88\xb9\ +\xd3\x80\xb2\xcd\x7f\xad\xc7\x82\xad\xc2\x7b\xa4\xb7\x5e\x87\x9d\ +\x4f\x7a\x90\x64\x8f\xa3\x72\x9d\xae\x6c\x98\xab\x64\x93\xa6\x76\ +\xa5\xbc\x85\xb1\xc9\x87\xb4\xce\x87\xb3\xcd\x85\xac\xc6\x75\x9a\ +\xb6\x4d\x73\x8d\x5d\x83\x9f\x67\x8a\xa7\x5d\x7b\x94\x2f\x4b\x5d\ +\x20\x3c\x4c\x53\x73\x88\x7c\x9f\xb8\x81\xa4\xba\x6d\x8c\x9f\x50\ +\x72\x82\x4c\x75\x85\x58\x83\x94\x56\x7d\x92\x44\x6a\x7f\x40\x69\ +\x7c\x52\x7c\x92\x67\x8e\xab\x70\x95\xb2\x6e\x92\xab\x5c\x7b\x91\ +\x3b\x57\x69\x36\x51\x5f\x40\x5b\x6b\x2b\x45\x54\x3a\x55\x64\x5c\ +\x78\x8b\x6d\x8c\xa3\x74\x9a\xb3\x7e\xa4\xbf\x8a\xad\xcb\x91\xb1\ +\xd1\x91\xb3\xd3\x92\xb5\xd3\x92\xb4\xd1\x91\xb3\xd2\x90\xb4\xd3\ +\x8f\xb2\xd2\x92\xb2\xd3\x90\xb2\xd3\x8b\xb1\xd3\x8a\xb3\xd3\x86\ +\xb1\xce\x81\xad\xc8\x7e\xab\xc5\x82\xab\xc6\x85\xad\xc5\x87\xad\ +\xc3\x88\xad\xc4\x86\xab\xc2\x7f\xa3\xbc\x82\xa6\xbf\x8c\xae\xc9\ +\x92\xb3\xcd\x92\xb4\xd0\x92\xb6\xd2\x93\xb7\xd4\x91\xb7\xd4\x90\ +\xb9\xd6\x94\xb8\xd4\x93\xb7\xd3\x93\xb3\xd3\x94\xb3\xd5\x90\xb5\ +\xd5\x8d\xb7\xd2\x8a\xb9\xd2\x8c\xb8\xd3\x8c\xb9\xd4\x8c\xb9\xd5\ +\x8c\xb8\xd5\x93\xb9\xd8\x97\xb9\xd9\x97\xb6\xd9\x95\xb5\xd8\x92\ +\xb4\xd5\x90\xb3\xd3\x90\xb1\xd3\x8f\xb1\xd2\x91\xb0\xd3\x00\x00\ +\x00\x9a\xc0\xe3\x99\xc0\xe1\x96\xc2\xe1\x8e\xbf\xdd\x90\xbf\xdf\ +\x92\xbf\xdf\x94\xc1\xe1\x92\xbf\xe1\x8f\xbc\xde\x8d\xba\xda\x8a\ +\xba\xd5\x86\xb9\xd0\x85\xb7\xd2\x85\xb5\xd2\x83\xb3\xd1\x86\xb4\ +\xd4\x86\xb8\xd9\x81\xb7\xd7\x7f\xb5\xd6\x81\xb7\xd8\x7e\xb4\xd5\ +\x7e\xb9\xd8\x7f\xba\xd9\x85\xb9\xda\x89\xb4\xd8\x89\xb0\xd7\x88\ +\xb2\xd7\x87\xb4\xd6\x88\xb5\xd7\x80\xaf\xd1\x7d\xaf\xcf\x7e\xb1\ +\xce\x80\xb1\xce\x80\xad\xce\x84\xad\xd2\x7f\xae\xd2\x78\xaf\xce\ +\x72\xad\xc8\x6f\xa4\xc3\x76\xa5\xc8\x7f\xad\xd0\x82\xaf\xd3\x80\ +\xae\xd2\x7b\xae\xcd\x80\xb0\xcf\x89\xb3\xd5\x89\xb4\xd9\x86\xb4\ +\xd9\x7b\xac\xce\x77\xa8\xc8\x7f\xad\xcd\x88\xb1\xd1\x8b\xb7\xd3\ +\x8d\xb9\xd5\x91\xbb\xd4\x97\xbe\xd8\x9b\xc0\xde\x96\xc0\xe0\x90\ +\xbc\xdd\x8e\xbd\xdc\x8b\xc0\xdc\x89\xbd\xd8\x89\xb8\xd1\x89\xb6\ +\xce\x8b\xb7\xcf\x8d\xba\xd2\x91\xbd\xd7\x8e\xbb\xd8\x8e\xbd\xdc\ +\x91\xbd\xde\x98\xbe\xdb\x9c\xbe\xda\x97\xba\xd8\x95\xbb\xd8\x94\ +\xba\xd2\x89\xaf\xc5\x7b\xa2\xba\x5f\x87\x9f\x5b\x83\x9c\x7e\xa8\ +\xc1\x8a\xb6\xce\x8b\xb7\xd0\x88\xaf\xcd\x7d\xa2\xc0\x62\x88\xa5\ +\x5e\x84\xa1\x69\x8b\xa6\x51\x70\x87\x26\x46\x58\x3d\x5c\x72\x6c\ +\x8e\xa7\x71\x96\xaf\x67\x8d\xa1\x56\x78\x88\x3f\x61\x71\x43\x6d\ +\x7e\x58\x84\x9a\x51\x78\x8f\x3a\x62\x76\x47\x70\x82\x61\x8d\xa2\ +\x69\x93\xac\x62\x89\xa2\x5d\x81\x97\x51\x71\x82\x31\x4e\x5f\x28\ +\x46\x56\x34\x54\x68\x26\x46\x57\x17\x35\x44\x25\x3f\x51\x32\x4f\ +\x62\x44\x68\x7c\x5d\x82\x9c\x72\x93\xaf\x89\xa9\xc5\x8a\xae\xcb\ +\x8f\xb3\xd1\x8d\xb1\xcf\x8b\xaf\xcd\x8d\xb1\xcf\x90\xb0\xcf\x92\ +\xb0\xd1\x8c\xae\xd0\x8a\xb0\xd1\x8c\xb2\xcf\x88\xaf\xcb\x83\xaa\ +\xc6\x84\xaa\xc7\x88\xab\xca\x88\xac\xc9\x88\xae\xc8\x86\xaa\xc4\ +\x85\xa6\xc0\x83\xa2\xbc\x8b\xa9\xc3\x93\xaf\xcd\x98\xb3\xd1\x96\ +\xb3\xd2\x94\xb3\xd3\x91\xb5\xd2\x90\xb8\xd3\x8c\xb6\xd5\x8f\xb6\ +\xd6\x8c\xb1\xd2\x8e\xaf\xd2\x95\xb4\xd6\x94\xb6\xd8\x91\xb8\xd5\ +\x8f\xb8\xd1\x94\xb9\xd5\x92\xb7\xd3\x94\xb9\xd6\x96\xba\xd7\x98\ +\xb8\xd8\x97\xb7\xda\x99\xb6\xda\x99\xb6\xd9\x98\xb7\xd8\x92\xb4\ +\xd1\x94\xb1\xd3\x93\xaf\xd4\x93\xb1\xd7\x00\x00\x00\x9b\xc5\xe3\ +\x9a\xc4\xdf\x93\xc4\xdd\x8e\xc3\xdd\x90\xc2\xe0\x92\xc1\xe2\x94\ +\xc3\xe4\x91\xbf\xe1\x8d\xbb\xdd\x8b\xb9\xd9\x88\xb9\xd2\x87\xbb\ +\xd2\x84\xbb\xd6\x87\xb9\xd7\x87\xb5\xd6\x85\xb5\xd5\x84\xb8\xd8\ +\x83\xba\xd9\x82\xb8\xda\x83\xb7\xd7\x82\xb8\xd7\x83\xba\xd9\x83\ +\xba\xd9\x8d\xbb\xdd\x8e\xb7\xdc\x8c\xb4\xda\x8b\xb6\xdb\x8d\xb7\ +\xdc\x88\xb2\xd8\x82\xac\xd3\x7f\xad\xcf\x84\xb1\xd3\x85\xb2\xd3\ +\x87\xb0\xd2\x88\xb0\xd4\x88\xb4\xd8\x85\xb5\xd4\x81\xb3\xd2\x81\ +\xb2\xd5\x81\xb0\xd7\x84\xb1\xd9\x8b\xb4\xda\x8b\xb7\xd9\x84\xb6\ +\xd4\x7c\xb2\xcf\x81\xb2\xd0\x83\xb2\xd2\x85\xb3\xd4\x7e\xac\xce\ +\x7d\xab\xcc\x82\xb0\xcd\x88\xb4\xd0\x88\xb8\xd2\x8b\xb8\xd6\x92\ +\xb9\xd7\x9a\xbb\xda\x9d\xbd\xdf\x99\xbe\xe0\x91\xbb\xdc\x8f\xbb\ +\xdc\x8f\xbd\xdd\x90\xbd\xdd\x8b\xb7\xd2\x87\xb4\xce\x8b\xb5\xd1\ +\x8a\xb4\xce\x8b\xb3\xce\x8f\xb2\xd2\x8d\xb2\xd4\x92\xb8\xdb\x97\ +\xba\xdc\x9d\xbd\xde\xa0\xbf\xe0\x9b\xbc\xda\x8a\xaa\xc5\x78\x98\ +\xaf\x64\x85\x9e\x55\x78\x92\x44\x69\x84\x74\x9a\xb6\x8c\xb3\xcf\ +\x8e\xb6\xd5\x87\xb1\xd1\x84\xab\xcc\x7c\xa2\xc2\x74\x9a\xb9\x6a\ +\x90\xae\x5d\x84\x9e\x4b\x74\x8b\x6b\x90\xac\x80\xa5\xc3\x7f\xa7\ +\xc5\x7a\xa6\xbe\x77\x9e\xb4\x6c\x90\xa8\x6b\x95\xab\x79\xa3\xbb\ +\x7b\xa2\xba\x6f\x95\xac\x61\x89\x9f\x6e\x97\xad\x80\xa6\xc0\x86\ +\xab\xc5\x79\x9d\xb4\x62\x86\x99\x51\x76\x8b\x58\x7f\x98\x67\x92\ +\xac\x61\x8a\xa2\x4c\x70\x86\x35\x55\x6c\x3f\x62\x78\x60\x85\x9c\ +\x71\x94\xaf\x65\x86\xa0\x62\x85\x9d\x82\xa8\xc1\x86\xaf\xc8\x8b\ +\xb2\xcd\x8c\xb1\xcd\x8f\xb3\xcd\x90\xb1\xcd\x90\xaf\xd0\x8c\xaf\ +\xd1\x8b\xb2\xd1\x88\xb0\xcc\x88\xae\xcb\x83\xa9\xc9\x83\xa8\xc9\ +\x88\xaa\xcc\x87\xad\xcb\x82\xaa\xc6\x85\xa8\xc4\x83\xa3\xc0\x87\ +\xa4\xc0\x8e\xac\xc5\x95\xb2\xce\x96\xb4\xd4\x93\xb5\xd6\x92\xb6\ +\xd4\x92\xb6\xd4\x92\xb8\xd5\x8d\xb8\xd7\x89\xb4\xd4\x89\xae\xd2\ +\x8b\xab\xd2\x94\xb1\xd7\x97\xb6\xda\x96\xb7\xd8\x98\xb8\xd6\x98\ +\xb5\xd5\x97\xb4\xd2\x9a\xba\xd9\x99\xb9\xd9\x9a\xb6\xd8\x9b\xb5\ +\xd8\x99\xb3\xd7\x9a\xb4\xd7\x99\xb7\xd6\x96\xb7\xd3\x94\xb3\xd3\ +\x91\xaf\xd2\x8f\xb1\xd4\x00\x00\x00\x97\xc6\xe1\x95\xc4\xdf\x90\ +\xc4\xdc\x8d\xc4\xe0\x8d\xc2\xe2\x8f\xc0\xe2\x93\xc2\xe3\x92\xc2\ +\xe1\x8d\xbd\xdc\x8b\xba\xda\x88\xb7\xd3\x88\xb9\xd5\x85\xb9\xd9\ +\x88\xba\xdc\x8a\xb8\xdc\x86\xb6\xd9\x84\xb8\xd9\x83\xb6\xd8\x85\ +\xb5\xda\x88\xb7\xdb\x84\xb7\xd7\x82\xb8\xd9\x80\xb7\xd8\x89\xb8\ +\xda\x8c\xb9\xdd\x8a\xb6\xdb\x89\xb5\xda\x89\xb5\xda\x84\xae\xd5\ +\x86\xad\xd4\x88\xaf\xd5\x89\xaf\xd7\x88\xaf\xd5\x85\xad\xd2\x88\ +\xb5\xd7\x8a\xb7\xd9\x8b\xb8\xd9\x8b\xb9\xda\x85\xb4\xda\x82\xb3\ +\xdb\x89\xb5\xdd\x8d\xb6\xdc\x8e\xb9\xdb\x89\xbb\xd8\x82\xb9\xd3\ +\x80\xb3\xce\x84\xb3\xd1\x88\xb4\xd4\x87\xb3\xd6\x85\xb3\xd4\x88\ +\xb4\xd2\x8a\xb7\xd3\x8b\xbb\xd5\x8c\xb8\xd7\x92\xb8\xd8\x98\xbc\ +\xdb\x9b\xbc\xde\x98\xbb\xdd\x90\xb7\xd9\x8f\xb9\xd8\x92\xbc\xdb\ +\x8f\xba\xda\x88\xb8\xd5\x86\xb4\xd0\x88\xb0\xcf\x81\xa7\xc5\x7a\ +\x9b\xb7\x78\x93\xb1\x7c\x9a\xba\x82\xa5\xc7\x8c\xaf\xd0\x94\xb7\ +\xd7\x99\xbb\xdc\x92\xb6\xd4\x76\x9a\xb3\x4c\x6c\x81\x4e\x70\x85\ +\x56\x79\x93\x43\x68\x83\x75\x99\xb7\x8e\xb3\xd1\x8c\xb3\xd4\x86\ +\xb2\xd2\x84\xb0\xd1\x83\xac\xcd\x80\xa8\xcc\x7d\xa6\xc9\x79\xa4\ +\xc4\x78\xa1\xc0\x83\xa9\xc7\x8a\xb0\xcf\x88\xb2\xd1\x8a\xb4\xd2\ +\x8b\xb1\xcc\x85\xaa\xc5\x7b\xa3\xbd\x6f\x96\xad\x5e\x82\x98\x61\ +\x81\x98\x71\x94\xa9\x82\xa6\xbc\x8f\xaf\xcb\x92\xb5\xd1\x8d\xb3\ +\xcd\x82\xab\xc5\x7d\xa4\xc2\x79\xa4\xc4\x7a\xa9\xc6\x7a\xa7\xc3\ +\x78\xa1\xbf\x6e\x96\xb6\x70\x9c\xb9\x78\xa3\xbe\x7e\xa4\xc0\x71\ +\x96\xb0\x53\x77\x90\x5d\x82\x9a\x86\xac\xc5\x8c\xb1\xcb\x8d\xb4\ +\xcd\x90\xb4\xcc\x91\xb2\xcd\x8e\xb1\xcf\x8d\xb3\xd4\x8a\xb3\xd4\ +\x85\xb1\xcf\x84\xaf\xce\x82\xaa\xcb\x82\xa7\xcc\x82\xa8\xcd\x81\ +\xac\xcc\x7f\xab\xc6\x83\xa8\xc5\x87\xa7\xc8\x86\xa7\xc6\x90\xaf\ +\xcb\x95\xb2\xce\x94\xb4\xd3\x93\xb6\xd6\x93\xb8\xd6\x94\xb8\xd6\ +\x8f\xb7\xd5\x8c\xba\xd7\x8c\xb6\xd6\x8d\xb3\xd5\x93\xb4\xd7\x96\ +\xb3\xd9\x94\xb3\xd7\x97\xb5\xd7\x9a\xb6\xd8\x99\xb3\xd7\x97\xb3\ +\xd5\x99\xb8\xd9\x97\xb7\xd6\x99\xb6\xd4\x9a\xb4\xd2\x99\xb3\xd2\ +\x99\xb3\xd7\x98\xb4\xd6\x96\xb5\xd6\x93\xb2\xd4\x8d\xaf\xd1\x8a\ +\xaf\xd1\x00\x00\x00\x94\xc3\xe0\x93\xc1\xe0\x91\xc1\xdf\x90\xc2\ +\xe2\x8f\xc1\xe4\x8f\xc1\xe3\x8c\xc0\xdf\x8b\xc0\xdb\x88\xbc\xd8\ +\x88\xb8\xd7\x85\xb5\xd4\x86\xb5\xd8\x85\xb7\xd9\x89\xb8\xda\x8c\ +\xb9\xdb\x88\xb8\xd8\x83\xb6\xd7\x84\xb3\xd7\x89\xb5\xdc\x8a\xb7\ +\xdd\x83\xb6\xd7\x7e\xb4\xd4\x7d\xb5\xd5\x85\xb7\xd9\x8a\xb7\xda\ +\x89\xb4\xda\x8a\xb5\xda\x88\xb5\xda\x85\xb2\xd7\x84\xb0\xd5\x86\ +\xb2\xd7\x86\xb1\xd8\x82\xad\xd3\x80\xad\xcf\x85\xb4\xd6\x88\xb8\ +\xd9\x89\xba\xda\x88\xb5\xd9\x85\xb5\xdb\x82\xb5\xdd\x88\xb6\xdb\ +\x8f\xb9\xdd\x8d\xba\xdb\x8a\xbc\xd6\x85\xba\xd2\x85\xb7\xd0\x88\ +\xb7\xd3\x8c\xb7\xd7\x8e\xb8\xdc\x91\xb9\xdd\x92\xba\xd9\x91\xbe\ +\xd9\x90\xbd\xd7\x93\xbb\xd7\x94\xbc\xd9\x95\xbe\xdd\x95\xbc\xde\ +\x92\xba\xdb\x8d\xb6\xd6\x84\xb3\xcf\x8a\xb8\xd4\x8a\xb9\xd5\x87\ +\xb7\xd4\x85\xb3\xd2\x84\xab\xcb\x6d\x92\xae\x4a\x6b\x83\x3e\x5c\ +\x74\x4d\x6d\x8a\x61\x85\xa4\x6f\x94\xb2\x84\xa9\xc7\x90\xb4\xd3\ +\x8c\xb1\xcf\x71\x97\xb2\x49\x6d\x84\x58\x7f\x93\x5c\x81\x9a\x52\ +\x77\x92\x82\xa9\xc6\x8b\xb2\xd1\x8c\xb2\xd5\x89\xb2\xd5\x85\xb1\ +\xd1\x82\xae\xce\x86\xaf\xd3\x88\xb1\xd6\x89\xb0\xd3\x8b\xb1\xcf\ +\x8e\xb5\xcf\x8d\xb8\xd1\x8e\xb7\xd4\x93\xb7\xd7\x90\xb3\xd1\x87\ +\xad\xca\x79\xa1\xbc\x5f\x85\x9d\x40\x63\x7a\x4f\x6d\x85\x53\x70\ +\x85\x60\x7e\x92\x83\xa2\xbb\x8f\xb1\xcd\x8c\xb4\xd1\x87\xb1\xd0\ +\x88\xb0\xd1\x8a\xaf\xd1\x88\xb1\xd0\x86\xaf\xce\x81\xab\xcc\x7b\ +\xa9\xcb\x7a\xa8\xc8\x7e\xa9\xc7\x7e\xa5\xc3\x74\x99\xb4\x5d\x82\ +\x99\x42\x66\x7b\x77\x9b\xb1\x88\xae\xc6\x8c\xb2\xca\x91\xb5\xcc\ +\x93\xb4\xce\x8e\xb1\xcf\x8a\xb2\xd2\x86\xb4\xd3\x84\xb4\xd1\x82\ +\xb1\xd0\x82\xab\xcc\x84\xa8\xcc\x87\xab\xcf\x82\xad\xcc\x84\xad\ +\xcb\x87\xab\xca\x88\xa8\xc8\x88\xa9\xc8\x8f\xb0\xcd\x91\xb2\xcd\ +\x92\xb3\xcf\x93\xb4\xd1\x93\xb5\xd2\x94\xb7\xd4\x91\xb9\xd4\x8f\ +\xb9\xd7\x92\xb7\xd8\x96\xb7\xda\x97\xb6\xda\x99\xb5\xdc\x98\xb4\ +\xd9\x98\xb4\xd6\x98\xb5\xd6\x98\xb5\xd7\x95\xb5\xd7\x96\xb7\xd6\ +\x98\xb9\xd4\x96\xb5\xd0\x97\xb5\xcf\x96\xb2\xce\x99\xb4\xd6\x99\ +\xb2\xd5\x98\xb1\xd5\x95\xb1\xd5\x8d\xb0\xd2\x89\xb2\xd2\x00\x00\ +\x00\x8b\xb8\xd8\x87\xb7\xd8\x88\xb9\xda\x8a\xb8\xdb\x8a\xb8\xdc\ +\x8b\xbb\xdc\x86\xbe\xd8\x85\xbd\xd5\x82\xb8\xd5\x7b\xb0\xcc\x7c\ +\xb0\xcf\x7f\xb2\xd5\x80\xb3\xd4\x87\xb5\xd4\x8a\xb9\xd5\x84\xb7\ +\xd0\x7e\xb5\xd2\x7c\xb0\xd3\x82\xb3\xd8\x86\xb6\xda\x81\xb5\xd4\ +\x7f\xb5\xd3\x7e\xb4\xd3\x84\xb4\xd5\x89\xb3\xd7\x8a\xaf\xd5\x89\ +\xaf\xd4\x87\xb1\xd4\x87\xb4\xd5\x85\xb5\xd4\x81\xb3\xd1\x7e\xb1\ +\xd0\x7b\xae\xce\x7a\xac\xcc\x7f\xb2\xd3\x85\xb6\xd7\x87\xb6\xd9\ +\x88\xb4\xda\x86\xb4\xda\x84\xb2\xd8\x86\xb4\xd9\x8b\xb7\xd9\x8d\ +\xbb\xdb\x88\xbb\xd7\x81\xb8\xd1\x81\xb7\xd0\x87\xb8\xd4\x8c\xb9\ +\xd9\x93\xbe\xe0\x96\xbf\xe3\x93\xbd\xde\x90\xbf\xdd\x94\xbf\xdd\ +\x96\xbd\xd9\x94\xbf\xdb\x8e\xbb\xda\x8e\xb9\xdb\x8d\xb8\xd9\x88\ +\xb6\xd5\x78\xad\xc9\x78\xac\xc5\x81\xb1\xcc\x86\xb6\xd2\x87\xb6\ +\xd5\x86\xb0\xd0\x79\x9d\xbb\x55\x77\x90\x53\x7a\x91\x70\x97\xb3\ +\x74\x99\xb9\x5f\x81\xa0\x6d\x8f\xad\x88\xac\xca\x8b\xb0\xd2\x83\ +\xa8\xc8\x71\x97\xb2\x66\x8e\xa7\x62\x88\xa5\x75\x9c\xba\x85\xb1\ +\xce\x86\xb4\xd3\x87\xb1\xd3\x86\xae\xd0\x86\xb2\xd1\x85\xb2\xd1\ +\x89\xb3\xd4\x8c\xb4\xd7\x90\xb6\xd6\x93\xb8\xd2\x91\xb8\xd2\x8f\ +\xbb\xd3\x92\xba\xd6\x97\xb7\xd9\x93\xb3\xd5\x88\xae\xcd\x7e\xa9\ +\xc5\x76\x9f\xba\x6d\x91\xad\x6d\x8a\xa7\x67\x80\x99\x4d\x67\x7b\ +\x57\x75\x89\x86\xa8\xc1\x8b\xb1\xd0\x8a\xb3\xd3\x8e\xb5\xd6\x92\ +\xb3\xd5\x92\xb4\xd5\x8f\xb3\xd4\x86\xae\xcf\x7e\xaa\xcd\x80\xa8\ +\xcc\x82\xa7\xca\x82\xa7\xc5\x7a\x9f\xbb\x68\x8a\xa3\x46\x65\x7b\ +\x62\x80\x9a\x86\xa9\xc4\x8e\xb4\xcd\x8c\xb5\xca\x8d\xb6\xce\x8d\ +\xb5\xd2\x8a\xb4\xd4\x87\xb5\xd5\x85\xb3\xd3\x87\xb1\xd0\x87\xac\ +\xcc\x89\xac\xce\x8b\xaf\xd1\x89\xaf\xce\x8a\xaf\xcb\x8a\xad\xca\ +\x8b\xab\xc8\x8c\xae\xca\x8c\xb0\xcb\x8c\xb2\xce\x8b\xaf\xce\x90\ +\xb1\xd1\x98\xb5\xd3\x96\xb6\xd2\x93\xb8\xd2\x93\xb8\xd4\x95\xb5\ +\xd6\x99\xb6\xd6\x97\xb3\xd5\x98\xb3\xd7\x99\xb2\xd8\x9a\xb4\xda\ +\x96\xb4\xd7\x93\xb4\xd5\x93\xb4\xd4\x92\xb6\xd3\x94\xb8\xd2\x94\ +\xb6\xd0\x95\xb6\xd0\x98\xb6\xd3\x9a\xb4\xd8\x9b\xb2\xd9\x98\xb0\ +\xd8\x92\xaf\xd6\x8e\xb0\xd6\x8a\xb2\xd4\x00\x00\x00\x77\xa1\xbd\ +\x7b\xa9\xc7\x7e\xac\xcb\x7b\xa3\xc3\x78\x9f\xbd\x7f\xa9\xc6\x85\ +\xb4\xce\x85\xb5\xd1\x7c\xad\xc6\x6a\x9d\xb3\x6b\x9d\xb8\x76\xaa\ +\xca\x7c\xaf\xcc\x83\xb2\xca\x82\xaf\xc5\x7c\xad\xc3\x7d\xb1\xcc\ +\x7c\xb0\xd1\x7f\xb1\xd4\x83\xb2\xd4\x84\xb1\xce\x81\xad\xca\x81\ +\xaf\xca\x84\xae\xcc\x82\xa7\xc7\x7a\x9e\xbd\x7a\x9f\xbe\x80\xa6\ +\xc5\x84\xab\xc8\x7d\xa8\xc4\x77\xa8\xc0\x76\xab\xc4\x75\xaa\xc6\ +\x7c\xac\xc9\x81\xae\xcd\x83\xac\xcc\x85\xaa\xce\x86\xa9\xce\x84\ +\xac\xd1\x7f\xac\xd1\x82\xaf\xd4\x86\xb4\xd5\x8a\xb7\xd7\x88\xb5\ +\xd5\x7e\xb2\xcf\x7b\xb4\xcf\x83\xb7\xd0\x8b\xba\xd4\x90\xbc\xd9\ +\x90\xbd\xde\x8e\xbd\xdc\x8f\xbd\xdb\x95\xbc\xdd\x95\xba\xda\x91\ +\xbb\xd8\x8c\xb8\xd9\x8b\xb5\xd8\x8d\xb7\xda\x8a\xb8\xd8\x7a\xaf\ +\xcd\x66\x9b\xb5\x66\x94\xae\x81\xae\xc9\x8d\xb8\xd8\x8f\xb7\xd9\ +\x8a\xb1\xd2\x82\xa8\xc7\x7d\xa5\xc4\x83\xad\xcb\x86\xaa\xcb\x76\ +\x94\xb6\x5d\x7c\x9a\x84\xa8\xc5\x8e\xb4\xd3\x8e\xb5\xd5\x8a\xb1\ +\xd1\x84\xad\xcb\x84\xad\xcd\x88\xaf\xd1\x86\xb1\xd3\x86\xb5\xd5\ +\x87\xb4\xd3\x86\xb3\xd1\x84\xb2\xd1\x86\xb5\xd3\x8c\xb6\xd7\x8d\ +\xb5\xd7\x90\xb6\xd4\x94\xba\xd2\x92\xb8\xd1\x90\xbb\xd3\x93\xbc\ +\xd4\x97\xb8\xd7\x95\xb4\xd5\x93\xb4\xd5\x8a\xb0\xcf\x83\xaa\xc9\ +\x7d\xa0\xc1\x79\x97\xb6\x6b\x85\x9f\x54\x72\x85\x43\x61\x73\x73\ +\x92\xab\x89\xaf\xcd\x8d\xb7\xd8\x91\xb8\xd9\x96\xb8\xd9\x98\xb6\ +\xd9\x91\xb2\xd4\x89\xae\xd0\x84\xab\xce\x83\xa8\xcc\x89\xa9\xcd\ +\x88\xa8\xca\x80\xa1\xc0\x71\x90\xaa\x4c\x69\x81\x55\x72\x8d\x89\ +\xab\xc7\x90\xb7\xd2\x8c\xb9\xcf\x8a\xb9\xd2\x8c\xb7\xd5\x8d\xb6\ +\xd8\x89\xb7\xd8\x8a\xb4\xd4\x8c\xb1\xd1\x8b\xae\xcf\x8d\xb0\xd0\ +\x90\xb3\xd2\x90\xb4\xd1\x8d\xb2\xcd\x89\xae\xc8\x8d\xad\xca\x8f\ +\xb0\xcd\x8c\xb1\xce\x87\xaf\xcf\x88\xae\xcf\x91\xb2\xd5\x99\xb5\ +\xd8\x99\xb7\xd5\x94\xb6\xd0\x95\xb7\xd1\x96\xb6\xd3\x95\xb4\xd2\ +\x91\xb1\xce\x8f\xaf\xce\x91\xae\xcf\x94\xb2\xd6\x92\xb3\xd6\x93\ +\xb4\xd5\x93\xb4\xd4\x93\xb7\xd3\x94\xba\xd1\x97\xb9\xd2\x97\xb8\ +\xd2\x99\xb7\xd6\x9c\xb4\xdb\x99\xb1\xda\x93\xb0\xd7\x8e\xb0\xd6\ +\x8f\xb1\xd6\x8d\xb3\xd4\x00\x00\x00\x48\x70\x84\x63\x8e\xa6\x6f\ +\x99\xb5\x5b\x7e\x9b\x3b\x5c\x75\x62\x86\x9e\x77\x9e\xb9\x7a\xa0\ +\xbf\x6b\x90\xaa\x3f\x63\x76\x49\x70\x87\x71\x9e\xbc\x7b\xab\xc7\ +\x7e\xa6\xbe\x66\x8a\xa0\x66\x8f\xa5\x7b\xa6\xc1\x86\xb3\xd3\x86\ +\xb2\xd3\x8a\xb2\xd1\x88\xab\xc7\x74\x94\xad\x6b\x91\xa6\x79\xa0\ +\xb7\x73\x96\xad\x4e\x72\x87\x4d\x74\x8b\x63\x88\xa2\x6c\x91\xab\ +\x67\x8c\xa5\x61\x8a\xa2\x6a\x99\xb1\x72\xa2\xbf\x7a\xa7\xc3\x7b\ +\xa0\xba\x70\x8d\xa6\x6e\x87\xa2\x71\x8f\xac\x6f\x95\xb5\x75\xa1\ +\xc3\x7a\xa7\xcc\x83\xae\xd1\x7f\xa6\xc6\x72\x98\xb5\x73\xa0\xbc\ +\x78\xad\xc5\x7b\xaf\xc5\x85\xb1\xc7\x8a\xb4\xcc\x8a\xb7\xd3\x8c\ +\xba\xd4\x8c\xb7\xd0\x90\xb5\xd1\x90\xb3\xd1\x8e\xb4\xd1\x8b\xb2\ +\xd4\x8d\xb5\xd8\x91\xb9\xdc\x8e\xb8\xd9\x82\xb2\xd1\x6b\x9a\xb6\ +\x47\x72\x8a\x71\x99\xb2\x8f\xb6\xd3\x95\xba\xd9\x98\xbc\xdb\x9d\ +\xc0\xe1\x95\xbc\xdd\x90\xbb\xda\x93\xb9\xd9\x8b\xad\xcd\x75\x9b\ +\xb8\x84\xae\xc8\x8e\xb9\xd3\x91\xba\xd9\x91\xb9\xd9\x8e\xb7\xd7\ +\x8d\xb6\xd7\x8b\xb2\xd6\x89\xb0\xd5\x89\xb3\xd5\x88\xb2\xd2\x87\ +\xb3\xd0\x89\xb3\xd3\x8b\xb5\xd4\x8b\xb5\xd5\x8d\xb5\xd5\x92\xb8\ +\xd4\x93\xb9\xd2\x96\xba\xd2\x91\xb9\xd2\x93\xbc\xd4\x93\xba\xd3\ +\x94\xb8\xd3\x93\xb6\xd4\x8d\xb1\xd1\x82\xa8\xc8\x73\x97\xb6\x5d\ +\x7d\x99\x57\x75\x8d\x4f\x6d\x7f\x44\x62\x73\x6d\x8d\xa5\x8b\xaf\ +\xcc\x90\xba\xda\x93\xbd\xd9\x96\xb9\xd7\x98\xb7\xd9\x92\xb2\xd5\ +\x8b\xae\xd1\x85\xa9\xcb\x83\xa8\xc8\x8a\xaa\xcc\x8d\xaa\xcc\x83\ +\x9f\xbf\x75\x90\xab\x50\x6c\x84\x61\x80\x99\x8e\xb2\xcd\x91\xb7\ +\xd3\x8e\xb9\xd1\x8a\xb8\xd2\x8f\xb7\xd6\x90\xb5\xd8\x8c\xb6\xd5\ +\x8a\xb3\xd1\x8e\xb2\xd2\x8d\xb0\xd1\x8d\xb1\xd2\x91\xb3\xd4\x91\ +\xb3\xd2\x8f\xb4\xd0\x8c\xb0\xcd\x89\xae\xc9\x90\xb2\xce\x8f\xb4\ +\xd0\x8d\xb2\xd1\x90\xb1\xd1\x96\xb4\xd5\x97\xb5\xd8\x95\xb6\xd6\ +\x92\xb6\xd2\x8f\xb4\xce\x8f\xb5\xce\x8e\xb3\xcc\x8f\xaf\xca\x8c\ +\xac\xc8\x8f\xaf\xcd\x90\xb3\xd4\x91\xb4\xd5\x93\xb3\xd6\x93\xb4\ +\xd6\x95\xb7\xd4\x95\xb9\xd2\x95\xb7\xd1\x97\xb6\xd1\x97\xb2\xd3\ +\x9b\xb1\xd9\x99\xb1\xd9\x93\xb1\xd6\x90\xb3\xd6\x8f\xb2\xd5\x8e\ +\xb3\xd7\x00\x00\x00\x48\x74\x88\x64\x93\xa9\x6d\x9a\xb2\x4e\x73\ +\x90\x2e\x51\x6b\x61\x85\xa0\x77\x9e\xbd\x6f\x94\xb5\x47\x66\x83\ +\x1e\x38\x4c\x2b\x47\x5b\x71\x98\xb2\x7a\xa7\xc5\x6d\x92\xaf\x33\ +\x52\x6c\x4a\x6d\x86\x6c\x93\xb0\x78\xa0\xbf\x85\xa9\xc8\x86\xa5\ +\xc2\x77\x94\xae\x4c\x6b\x80\x37\x5d\x6f\x61\x88\x9d\x5e\x83\x97\ +\x1b\x40\x50\x3c\x66\x79\x5e\x88\xa0\x59\x80\x98\x41\x64\x7a\x45\ +\x69\x81\x63\x8b\xa6\x6a\x98\xb5\x72\x9d\xb8\x69\x89\x9f\x38\x50\ +\x60\x21\x3a\x49\x26\x48\x5a\x3e\x65\x7e\x66\x90\xb0\x75\x9f\xc3\ +\x7d\xa4\xc7\x66\x8b\xa9\x2b\x52\x69\x4d\x78\x90\x6e\x9e\xb5\x6a\ +\x97\xad\x5d\x84\x97\x67\x8b\xa0\x73\x9b\xb3\x79\x9f\xb3\x78\x9a\ +\xad\x79\x9a\xaf\x80\xa1\xbb\x84\xa5\xc4\x83\xa6\xc8\x83\xa9\xc9\ +\x87\xaf\xcf\x88\xb4\xd4\x86\xb3\xd4\x7b\xa4\xc3\x54\x7b\x95\x4b\ +\x73\x8c\x86\xac\xc8\x94\xb8\xd6\x9c\xbe\xdc\x9c\xbf\xde\x98\xbf\ +\xdf\x92\xbc\xdc\x95\xbb\xda\x90\xb7\xd3\x88\xb4\xce\x87\xb4\xd0\ +\x8d\xb7\xd3\x8e\xb7\xd4\x8b\xb3\xd3\x8c\xb5\xd5\x89\xb4\xd3\x8a\ +\xb0\xd5\x88\xad\xd2\x88\xae\xd2\x89\xb0\xd3\x8a\xb0\xd1\x8a\xb2\ +\xd2\x8a\xb2\xd2\x88\xb2\xd1\x8a\xb4\xd0\x8d\xb6\xcf\x91\xb8\xd1\ +\x95\xb9\xd3\x92\xba\xd3\x92\xbc\xd4\x91\xbd\xd3\x8f\xba\xd0\x90\ +\xb9\xd3\x8b\xb2\xd0\x7a\xa0\xbe\x57\x7c\x99\x58\x7b\x96\x64\x84\ +\x9e\x5b\x7a\x8e\x3c\x5a\x6c\x62\x81\x9a\x8d\xaf\xcc\x98\xbd\xdc\ +\x96\xbe\xd7\x94\xba\xd5\x93\xb4\xd4\x8e\xaf\xd0\x84\xab\xcb\x80\ +\xaa\xc9\x82\xa8\xc6\x88\xa7\xc9\x89\xa2\xc6\x7e\x98\xba\x66\x83\ +\xa1\x4d\x6f\x89\x79\x9f\xb8\x8f\xb5\xd2\x90\xb5\xd1\x89\xb2\xcb\ +\x86\xb0\xca\x8b\xb0\xcd\x8b\xb0\xcf\x88\xb0\xce\x88\xb1\xcd\x8b\ +\xb2\xd1\x89\xb2\xd1\x8b\xb4\xd4\x8c\xb3\xd3\x8f\xb4\xd4\x8b\xb2\ +\xce\x89\xb0\xcb\x88\xaf\xc9\x8d\xb2\xcc\x90\xb6\xd0\x91\xb7\xd2\ +\x94\xb5\xd3\x93\xb5\xd4\x8f\xb3\xd3\x90\xb6\xd5\x8d\xb4\xd0\x8b\ +\xb5\xcd\x89\xb2\xcb\x8f\xb4\xd0\x92\xb3\xcd\x94\xb2\xcc\x96\xb5\ +\xd2\x96\xb7\xd7\x94\xb8\xd8\x93\xb7\xd7\x93\xb5\xd7\x98\xb7\xd7\ +\x98\xb9\xd7\x94\xb5\xd4\x96\xb4\xd4\x96\xb0\xd2\x98\xb0\xd3\x97\ +\xb3\xd6\x94\xb3\xd7\x90\xb0\xd5\x8d\xb0\xd6\x90\xb0\xd9\x00\x00\ +\x00\x71\xa3\xbc\x6d\xa1\xb9\x7a\xab\xc6\x7a\xa7\xc6\x69\x92\xb0\ +\x5b\x85\xa2\x6e\x9b\xbc\x7b\xa5\xc9\x6a\x8c\xae\x34\x50\x68\x19\ +\x35\x48\x61\x88\x9f\x81\xb0\xce\x80\xa8\xcc\x5b\x7f\xa1\x52\x77\ +\x97\x6d\x91\xb2\x76\x97\xb4\x67\x85\x9e\x58\x73\x8a\x3f\x5e\x70\ +\x27\x4d\x60\x40\x6c\x81\x79\xa6\xbe\x74\x9d\xb4\x52\x7b\x90\x4d\ +\x78\x90\x6c\x99\xb4\x7d\xa5\xc2\x65\x88\xa7\x44\x66\x84\x51\x79\ +\x97\x6e\x9c\xba\x74\x9d\xb7\x5d\x7c\x90\x23\x3d\x49\x27\x45\x51\ +\x43\x68\x79\x44\x6d\x84\x5c\x85\xa1\x76\x9e\xbf\x7a\xa2\xc4\x66\ +\x8f\xab\x45\x70\x88\x5b\x88\xa0\x71\x9f\xb9\x62\x8d\xa6\x31\x58\ +\x6e\x43\x68\x7e\x5a\x7b\x92\x4c\x6a\x7d\x38\x53\x64\x43\x61\x74\ +\x60\x7e\x98\x6a\x84\xa2\x59\x75\x93\x53\x75\x8f\x67\x90\xa8\x7c\ +\xa8\xc5\x88\xb3\xd5\x82\xac\xcd\x6a\x92\xae\x3c\x64\x7d\x66\x8d\ +\xa7\x8d\xb2\xd1\x97\xb9\xd8\x9a\xbe\xdb\x95\xbc\xdb\x8d\xb5\xd5\ +\x85\xaa\xc6\x7c\xa0\xb9\x80\xa7\xc0\x83\xaa\xc6\x85\xa8\xc4\x7f\ +\xa2\xbf\x7e\xa4\xbf\x82\xa8\xc4\x82\xa9\xc5\x83\xa6\xc5\x83\xa5\ +\xc7\x86\xa7\xcd\x89\xa8\xce\x8a\xa9\xca\x88\xae\xc8\x85\xad\xc9\ +\x85\xaf\xc9\x85\xb0\xc6\x85\xaf\xc4\x8a\xb2\xca\x8b\xb1\xcd\x8c\ +\xb5\xcf\x8f\xba\xd1\x92\xbd\xd2\x8e\xbc\xd1\x8a\xb8\xd0\x8c\xb4\ +\xd3\x85\xa9\xc8\x69\x8d\xab\x5d\x81\xa0\x67\x8b\xa7\x5f\x7e\x95\ +\x36\x53\x68\x56\x75\x8d\x90\xb0\xce\x9b\xbc\xda\x97\xbb\xd4\x90\ +\xb5\xcf\x8b\xad\xcb\x7f\xa6\xc4\x78\xa3\xc1\x74\xa0\xbd\x79\x9f\ +\xba\x7d\x9a\xb9\x79\x94\xb7\x64\x81\xa6\x50\x73\x95\x72\x9b\xb8\ +\x84\xb2\xcc\x8a\xb4\xcd\x8c\xb0\xca\x87\xac\xc8\x7f\xa6\xc3\x79\ +\x9e\xb9\x72\x95\xad\x7f\xa4\xbf\x89\xae\xcc\x8a\xb1\xd3\x8c\xb4\ +\xd5\x8c\xb5\xd6\x90\xb6\xd6\x91\xb5\xd5\x8e\xb4\xcf\x87\xb0\xc9\ +\x87\xaf\xc8\x8b\xb3\xcc\x8c\xb5\xce\x8d\xb6\xcf\x8f\xb6\xd2\x8f\ +\xb6\xd3\x8c\xb3\xd3\x8e\xb3\xd3\x8e\xb2\xd1\x8d\xb3\xd1\x8e\xb3\ +\xd3\x91\xb4\xd3\x99\xb7\xd6\x99\xb6\xd5\x9b\xb8\xd6\x9a\xb9\xda\ +\x93\xb7\xd6\x93\xb5\xd4\x94\xb3\xd5\x97\xb3\xd6\x94\xb3\xd7\x92\ +\xb2\xd9\x96\xb3\xd7\x92\xaf\xcf\x92\xb0\xce\x93\xb3\xd4\x93\xb1\ +\xd5\x90\xae\xd3\x8b\xae\xd3\x8b\xb2\xd6\x00\x00\x00\x81\xb1\xd3\ +\x7d\xb1\xcf\x83\xb4\xd3\x83\xb1\xd3\x84\xb1\xd2\x7f\xac\xcc\x80\ +\xae\xd0\x85\xaf\xd5\x86\xa9\xce\x68\x88\xa4\x22\x44\x54\x43\x6b\ +\x7d\x88\xb2\xcf\x89\xb3\xd9\x87\xb1\xd6\x7d\xa5\xc8\x7a\x9c\xbc\ +\x74\x8e\xab\x4f\x67\x7e\x23\x3e\x51\x26\x48\x5a\x56\x80\x95\x81\ +\xac\xc8\x8e\xbb\xda\x92\xbe\xda\x90\xb8\xd4\x8b\xb4\xd2\x8c\xb5\ +\xd5\x8c\xb5\xd6\x8e\xb5\xd9\x86\xaa\xcd\x74\x9b\xbb\x7d\xa6\xc3\ +\x7f\xa6\xc2\x60\x83\x97\x20\x3f\x4b\x24\x43\x50\x5a\x80\x93\x66\ +\x8d\xa3\x57\x7a\x91\x5d\x7e\x97\x7e\xa3\xbe\x87\xaf\xcc\x88\xb3\ +\xcd\x8c\xb8\xd1\x8d\xb7\xd5\x80\xad\xc9\x68\x94\xae\x60\x8b\xa4\ +\x6e\x95\xab\x70\x91\xa5\x55\x71\x87\x48\x66\x7e\x68\x82\xa1\x76\ +\x90\xb0\x57\x75\x90\x3c\x5e\x74\x65\x8d\xa4\x83\xab\xc6\x8b\xb3\ +\xd3\x89\xb2\xd2\x7c\xa3\xc0\x56\x7f\x99\x49\x75\x8f\x7d\xa6\xc5\ +\x91\xb5\xd6\x99\xbe\xdb\x93\xbb\xd7\x87\xaf\xcb\x71\x95\xae\x44\ +\x66\x7a\x57\x7a\x92\x6c\x8c\xaa\x65\x81\x9e\x4e\x6b\x85\x53\x76\ +\x8e\x68\x8d\xa7\x6d\x8f\xa9\x65\x84\x9c\x69\x86\x9f\x72\x90\xae\ +\x78\x92\xb3\x75\x8e\xaa\x74\x95\xac\x7a\x9e\xb6\x79\x9b\xb4\x75\ +\x97\xaa\x74\x97\xa9\x7a\x9d\xb4\x7e\xa3\xbb\x85\xab\xc2\x8d\xb3\ +\xc9\x8f\xb7\xcd\x8f\xb9\xd0\x8f\xb6\xd2\x91\xb4\xd6\x8e\xaf\xd2\ +\x7f\xa1\xc3\x6b\x8e\xaf\x61\x82\x9f\x49\x66\x7c\x2b\x47\x59\x66\ +\x86\x9a\x93\xb4\xcd\x96\xb6\xd1\x8c\xae\xc8\x80\xa4\xbc\x73\x95\ +\xb0\x6d\x92\xad\x64\x8d\xa9\x60\x88\xa0\x5f\x7f\x94\x55\x72\x8a\ +\x57\x75\x95\x5a\x7c\x9f\x75\x9b\xb9\x7e\xaa\xc4\x7f\xab\xc5\x85\ +\xac\xc7\x8a\xaa\xc7\x8a\xa8\xc6\x7c\x9d\xba\x65\x85\x9d\x46\x64\ +\x77\x70\x92\xa7\x87\xac\xc8\x8c\xb2\xd2\x8f\xb5\xd6\x92\xb7\xd6\ +\x94\xb6\xd7\x93\xb6\xd3\x8f\xb4\xce\x8a\xaf\xc9\x89\xae\xcc\x8c\ +\xaf\xcd\x8e\xb3\xcd\x90\xb7\xd0\x92\xb6\xd2\x94\xb6\xd4\x95\xb3\ +\xd5\x94\xb1\xd2\x95\xb3\xd5\x93\xb5\xd6\x93\xb4\xd5\x98\xb7\xd6\ +\x9c\xb8\xd6\x98\xb6\xd4\x97\xb4\xd1\x95\xb4\xd1\x94\xb5\xd2\x92\ +\xb4\xcf\x95\xb3\xd1\x93\xb1\xd1\x90\xb1\xd3\x91\xb3\xd8\x94\xb4\ +\xd7\x92\xb2\xd3\x91\xb3\xd1\x8e\xb1\xd2\x91\xb1\xd4\x8f\xaf\xd2\ +\x88\xae\xd0\x84\xaf\xd0\x00\x00\x00\x86\xb6\xd9\x85\xb7\xd8\x87\ +\xb6\xd8\x86\xb4\xd6\x84\xb3\xd4\x81\xb2\xd2\x84\xb4\xd4\x89\xb4\ +\xd8\x8d\xb2\xd8\x7b\xa1\xc0\x39\x60\x74\x29\x50\x60\x7b\xa5\xbc\ +\x8c\xb9\xd9\x8a\xb7\xda\x8b\xb6\xd6\x85\xa8\xc5\x63\x7e\x96\x28\ +\x41\x54\x32\x51\x62\x54\x7b\x8f\x6f\x99\xb0\x91\xb8\xd5\x99\xc0\ +\xe0\x98\xc1\xe1\x95\xbd\xdc\x96\xbb\xda\x91\xb6\xd8\x8d\xb8\xda\ +\x8e\xbb\xdb\x97\xbf\xdf\x9b\xbf\xdd\x92\xb7\xd4\x81\xa7\xc2\x5a\ +\x81\x95\x1d\x3f\x49\x1c\x3d\x4b\x37\x5d\x73\x42\x66\x7e\x55\x72\ +\x88\x43\x60\x74\x51\x70\x87\x76\x99\xb3\x89\xb0\xca\x96\xbc\xd7\ +\x9a\xc1\xdf\x90\xbd\xd9\x83\xb4\xcd\x82\xb1\xc9\x89\xb2\xca\x8c\ +\xb1\xca\x86\xa7\xc3\x85\xa3\xc3\x8d\xa7\xc9\x93\xad\xce\x86\xa6\ +\xc2\x76\x9c\xb4\x7f\xa4\xbf\x8f\xb3\xd1\x94\xb8\xd9\x92\xb7\xd6\ +\x8d\xb1\xce\x7b\xa3\xbe\x64\x93\xb0\x74\xa2\xc2\x8d\xb7\xd6\x92\ +\xbb\xd6\x8d\xba\xd2\x84\xb1\xc9\x73\x9c\xb3\x48\x6f\x83\x61\x8a\ +\xa1\x69\x8f\xad\x58\x78\x95\x3d\x5d\x77\x4d\x74\x8b\x62\x8b\xa4\ +\x5a\x81\x99\x41\x64\x78\x48\x68\x7d\x55\x74\x8e\x4c\x69\x83\x39\ +\x55\x69\x3b\x5a\x6d\x53\x75\x8b\x4c\x6d\x84\x37\x55\x68\x40\x5f\ +\x71\x59\x7a\x8e\x6b\x8e\xa2\x6b\x92\xa5\x7d\xa4\xb7\x88\xae\xc5\ +\x8c\xb1\xcd\x8d\xb1\xd0\x8d\xb0\xd2\x8f\xb0\xd3\x85\xa8\xc9\x74\ +\x96\xb7\x55\x74\x8f\x25\x43\x56\x38\x57\x68\x7d\xa0\xb2\x90\xb4\ +\xc9\x89\xaa\xc3\x71\x93\xaa\x55\x76\x8a\x4d\x6c\x83\x5b\x7d\x94\ +\x5f\x84\x9c\x58\x7a\x8e\x3d\x59\x67\x2b\x48\x59\x4d\x70\x8a\x6e\ +\x91\xb0\x79\x9d\xb5\x6c\x92\xa4\x71\x99\xae\x7e\xa1\xbd\x82\x9f\ +\xbc\x78\x94\xae\x67\x83\x99\x55\x71\x82\x32\x4e\x5c\x5d\x7d\x8f\ +\x84\xa9\xc3\x8a\xb2\xcc\x90\xb5\xd1\x94\xb6\xd3\x97\xb6\xd5\x93\ +\xb5\xd3\x8f\xb4\xcf\x8e\xb3\xcd\x91\xb2\xd0\x95\xb3\xd2\x97\xb6\ +\xd1\x98\xb9\xd3\x99\xb6\xd3\x9a\xb4\xd4\x9a\xb2\xd6\x9b\xb3\xd8\ +\x9b\xb6\xd8\x99\xb7\xd7\x97\xb5\xd4\x9a\xb7\xd3\x96\xb7\xd0\x94\ +\xb6\xd0\x91\xb2\xcd\x93\xb1\xcd\x95\xb3\xcf\x97\xb5\xd0\x95\xb2\ +\xcd\x8e\xae\xcb\x8e\xb2\xd0\x90\xb4\xd4\x95\xb5\xd8\x91\xb2\xd4\ +\x8e\xb1\xd1\x8d\xb1\xd2\x8f\xb0\xd2\x8f\xb0\xd1\x8a\xad\xcd\x89\ +\xae\xd0\x00\x00\x00\x86\xb4\xd8\x87\xb6\xd9\x87\xb5\xd8\x86\xb4\ +\xd7\x82\xb3\xd4\x80\xb4\xd4\x84\xb4\xd3\x88\xb5\xd5\x8b\xb3\xd7\ +\x80\xa9\xcb\x51\x77\x90\x1c\x40\x51\x64\x8e\xa1\x89\xb8\xd3\x8c\ +\xba\xd9\x8c\xb9\xd5\x86\xad\xc6\x52\x72\x87\x22\x42\x53\x5b\x7f\ +\x91\x75\x9d\xb4\x69\x90\xa6\x8d\xb1\xca\x9c\xc0\xdc\x9a\xc0\xdf\ +\x96\xbc\xdd\x95\xb9\xdb\x92\xb6\xd9\x8f\xb9\xda\x8f\xbc\xda\x93\ +\xbd\xd7\x99\xbe\xd8\x91\xb5\xcf\x7b\x9d\xb8\x47\x6a\x7e\x1b\x3a\ +\x48\x25\x43\x52\x57\x7a\x91\x44\x6a\x86\x4b\x6e\x88\x57\x76\x92\ +\x41\x60\x7a\x3e\x5d\x78\x5c\x81\x9a\x80\xa5\xbd\x92\xb8\xd1\x8f\ +\xba\xd2\x89\xba\xd1\x89\xb9\xd1\x94\xbe\xd7\x96\xbd\xd7\x98\xb9\ +\xd9\x9a\xb7\xda\x9c\xb9\xdb\x9c\xbb\xda\x99\xbb\xd7\x94\xb8\xd5\ +\x93\xb7\xd7\x96\xb9\xdb\x99\xbc\xdd\x98\xbc\xda\x98\xba\xd9\x8f\ +\xb4\xd3\x86\xb2\xd2\x84\xb3\xd3\x8d\xb8\xd7\x8f\xba\xd4\x87\xb7\ +\xcf\x84\xb4\xcc\x84\xb1\xc7\x7d\xa8\xbe\x83\xb0\xc9\x82\xad\xca\ +\x76\x9e\xba\x6a\x91\xac\x6a\x93\xaf\x71\x9f\xbb\x66\x96\xb0\x58\ +\x88\x9f\x5a\x85\x9b\x69\x8f\xa9\x69\x8c\xa6\x59\x7c\x93\x5a\x7d\ +\x92\x69\x8e\xa7\x66\x8a\xa4\x48\x6b\x80\x48\x6e\x80\x66\x8c\x9f\ +\x70\x97\xab\x67\x90\xa1\x62\x89\x9c\x76\x9b\xb2\x83\xaa\xc4\x87\ +\xae\xcc\x89\xae\xcb\x8c\xb0\xcd\x82\xa7\xc4\x6d\x8d\xaa\x3f\x5a\ +\x71\x23\x3e\x50\x59\x79\x8b\x88\xaa\xbe\x8a\xac\xc3\x77\x99\xb0\ +\x4e\x71\x84\x38\x5b\x6a\x53\x76\x88\x62\x85\x9b\x5e\x81\x98\x51\ +\x71\x84\x32\x50\x5d\x2a\x4a\x5b\x50\x75\x8f\x6c\x8e\xac\x64\x85\ +\x9b\x3d\x5f\x6d\x4e\x74\x85\x72\x97\xb0\x76\x97\xb0\x5b\x77\x8a\ +\x43\x5d\x6b\x52\x6b\x78\x34\x4e\x5c\x4f\x6f\x80\x7f\xa4\xbb\x89\ +\xb0\xc9\x8f\xb5\xcd\x91\xb4\xce\x93\xb4\xd0\x92\xb6\xd2\x8e\xb3\ +\xcf\x8e\xb2\xcc\x96\xb4\xd0\x9b\xb7\xd2\x9a\xb7\xd2\x9b\xb8\xd3\ +\x99\xb4\xd1\x9a\xb3\xd4\x9a\xb3\xd7\x9a\xb3\xd8\x9a\xb3\xd5\x9b\ +\xb5\xd6\x99\xb5\xd2\x97\xb6\xcf\x96\xb6\xcf\x92\xb5\xcf\x94\xb3\ +\xce\x96\xb3\xcd\x93\xb2\xcc\x94\xb4\xce\x93\xb2\xcd\x8f\xb0\xc9\ +\x8f\xb3\xce\x91\xb5\xd2\x95\xb3\xd7\x94\xb1\xd4\x91\xb1\xd3\x93\ +\xb2\xd5\x8e\xaf\xd1\x8e\xb0\xd0\x8d\xab\xce\x8a\xa9\xcd\x00\x00\ +\x00\x82\xad\xd1\x84\xaf\xd5\x84\xae\xd4\x84\xaf\xd5\x81\xad\xd2\ +\x80\xb0\xd3\x84\xb2\xd3\x84\xb1\xd3\x88\xb1\xd6\x84\xaa\xcf\x65\ +\x85\xa4\x21\x3f\x54\x57\x7c\x91\x83\xb0\xcc\x8c\xb9\xd8\x8d\xb7\ +\xd2\x84\xa7\xc3\x54\x73\x89\x21\x43\x55\x70\x96\xab\x83\xa8\xc2\ +\x60\x86\x9e\x6f\x94\xae\x8d\xb4\xd2\x90\xb9\xd8\x8f\xb8\xd7\x8f\ +\xb8\xd8\x8e\xb6\xd9\x8e\xba\xdb\x8c\xba\xda\x8e\xba\xd6\x90\xb9\ +\xd5\x87\xaa\xc6\x62\x80\x9b\x46\x61\x7b\x3a\x53\x68\x31\x4e\x5f\ +\x77\x9b\xb1\x61\x8b\xa9\x4e\x7a\x99\x61\x8c\xae\x59\x7e\x9f\x44\ +\x68\x83\x48\x6f\x87\x54\x7b\x91\x69\x8e\xa4\x83\xac\xc1\x8a\xb8\ +\xcd\x8d\xbb\xd5\x99\xc2\xdc\x9d\xc1\xde\xa0\xbf\xe0\x9e\xbe\xe1\ +\x9e\xc1\xdf\x9c\xc2\xdd\x9c\xc2\xdb\x9a\xc0\xdd\x97\xbe\xdf\x98\ +\xbf\xe0\x9a\xc0\xe0\x9c\xc0\xdf\x9b\xbe\xdd\x98\xbb\xdb\x91\xbb\ +\xda\x8f\xbc\xda\x92\xbb\xda\x90\xbb\xd8\x8e\xb9\xd6\x8d\xb8\xd3\ +\x92\xbb\xd6\x94\xbb\xd7\x96\xbd\xd9\x91\xb9\xd5\x89\xb5\xd0\x84\ +\xb0\xcb\x83\xac\xcc\x81\xae\xcd\x77\xab\xc8\x70\xa6\xc3\x72\xa3\ +\xbf\x79\xa3\xc1\x7b\xa3\xc2\x76\xa1\xbc\x76\x9e\xb9\x7a\xa4\xbf\ +\x79\xa4\xc1\x6e\x9a\xb4\x67\x94\xab\x6e\x99\xaf\x74\x9f\xb5\x6d\ +\x99\xac\x59\x83\x97\x53\x7b\x90\x74\x9e\xb6\x81\xaa\xc8\x88\xb0\ +\xcf\x89\xb1\xcd\x84\xa9\xc7\x6b\x8a\xa8\x3c\x56\x6d\x34\x50\x64\ +\x6c\x8d\xa3\x83\xa7\xbe\x82\xa8\xbe\x78\x9c\xb1\x62\x85\x9a\x50\ +\x75\x88\x56\x7e\x91\x6b\x92\xa9\x72\x97\xb0\x66\x8a\xa0\x51\x74\ +\x86\x4f\x73\x8a\x67\x8b\xa9\x6a\x8e\xac\x5a\x7d\x97\x39\x63\x75\ +\x49\x74\x88\x6e\x97\xaf\x73\x97\xb1\x58\x77\x8b\x44\x60\x6f\x5d\ +\x76\x87\x4e\x6a\x7c\x59\x7c\x92\x79\x9f\xb8\x85\xab\xc3\x89\xb0\ +\xc6\x8a\xb0\xc9\x8d\xb2\xcc\x8e\xb5\xce\x8b\xb0\xcc\x8f\xb2\xcc\ +\x98\xb6\xd1\x9b\xb9\xd4\x98\xb7\xd3\x96\xb3\xd0\x97\xb2\xd1\x99\ +\xb2\xd3\x97\xb2\xd6\x98\xb4\xd6\x99\xb4\xd4\x9c\xb5\xd6\x9a\xb5\ +\xd2\x97\xb5\xd0\x96\xb4\xcf\x95\xb3\xd0\x98\xb2\xd2\x97\xb2\xd0\ +\x90\xb2\xcd\x8f\xb4\xd1\x90\xb2\xd1\x93\xb3\xce\x93\xb4\xce\x93\ +\xb5\xd1\x95\xb4\xd5\x93\xb2\xd3\x92\xb0\xd1\x91\xb0\xd3\x90\xb0\ +\xd3\x8d\xaf\xd0\x8d\xae\xd0\x88\xa9\xcb\x00\x00\x00\x6e\x94\xbb\ +\x76\x9b\xc6\x79\x9d\xca\x76\x9e\xca\x71\x9d\xc6\x73\xa2\xca\x78\ +\xa8\xcd\x7c\xac\xd1\x7d\xa9\xd0\x7e\xa3\xcb\x6c\x89\xac\x26\x41\ +\x58\x46\x68\x7d\x7b\xa3\xc1\x83\xae\xd1\x85\xaf\xd0\x82\xa5\xc4\ +\x59\x77\x91\x28\x49\x5d\x71\x97\xad\x7f\xa4\xc0\x56\x7b\x97\x57\ +\x7f\x9e\x7c\xaa\xc8\x82\xb1\xcf\x84\xb3\xce\x85\xb4\xd2\x86\xb3\ +\xd4\x88\xb6\xd9\x8b\xb9\xdb\x8a\xb8\xd8\x85\xb3\xd3\x7b\xa1\xc0\ +\x64\x84\xa0\x72\x8d\xab\x4c\x6a\x84\x31\x52\x64\x79\xa2\xb4\x6b\ +\x99\xb2\x48\x77\x93\x72\xa1\xc1\x73\x9d\xc0\x65\x8e\xad\x63\x8d\ +\xa9\x6a\x95\xad\x58\x82\x99\x4f\x7b\x91\x78\xa6\xbc\x8c\xb8\xd1\ +\x97\xbe\xdc\x9e\xc0\xe1\x9e\xbf\xe2\x9f\xc2\xe2\x9b\xc4\xe0\x96\ +\xc4\xdc\x96\xc3\xdb\x95\xc1\xda\x93\xbe\xdc\x97\xc1\xe1\x98\xc0\ +\xe0\x99\xc0\xe0\x99\xbf\xdf\x9a\xc2\xde\x93\xbf\xdc\x92\xbf\xdc\ +\x93\xbe\xdd\x91\xba\xdb\x91\xb7\xd9\x94\xb8\xda\x96\xbb\xdd\x99\ +\xbf\xdd\x93\xb9\xd9\x8d\xb7\xd3\x87\xb6\xce\x87\xb8\xd0\x89\xb7\ +\xd3\x87\xb5\xd4\x81\xb5\xd3\x7d\xb2\xd1\x7c\xaf\xcd\x7f\xae\xce\ +\x7f\xad\xcd\x7d\xad\xcc\x7c\xae\xc9\x7e\xb0\xca\x7f\xb2\xcc\x80\ +\xb0\xcb\x7b\xaa\xc5\x77\xa5\xbc\x6d\x97\xac\x5c\x84\x98\x4d\x76\ +\x8b\x41\x69\x7e\x5e\x8a\xa1\x7d\xab\xc9\x89\xb4\xd5\x8a\xb5\xd3\ +\x87\xaf\xce\x7a\x9c\xbc\x60\x7d\x9a\x3b\x5a\x72\x69\x8d\xa6\x79\ +\xa0\xbb\x7d\xa4\xbf\x80\xa6\xbe\x7a\x9d\xb5\x6f\x95\xae\x69\x95\ +\xaa\x75\x9e\xb7\x84\xa8\xc6\x84\xa7\xc1\x7a\xa3\xb9\x78\xa0\xba\ +\x7b\xa2\xc2\x79\xa0\xbf\x6c\x98\xb3\x5e\x90\xa9\x5e\x8f\xa8\x71\ +\x9c\xb8\x79\x9f\xbd\x6f\x94\xae\x6c\x8f\xa5\x71\x91\xa8\x71\x94\ +\xae\x73\x98\xb5\x7c\xa3\xbf\x81\xa9\xc3\x86\xab\xc5\x89\xae\xca\ +\x89\xb0\xcb\x88\xb1\xc8\x88\xb0\xc9\x8d\xb3\xcd\x94\xb7\xd1\x96\ +\xb9\xd3\x96\xb7\xd5\x95\xb2\xd1\x94\xb3\xd2\x95\xb3\xd4\x96\xb2\ +\xd4\x96\xb3\xd1\x94\xb3\xce\x96\xb6\xd1\x97\xb6\xd1\x95\xb6\xd0\ +\x92\xb5\xcf\x94\xb4\xd2\x99\xb2\xd6\x99\xb2\xd6\x8f\xb2\xd1\x8c\ +\xb3\xd3\x8f\xb4\xd2\x95\xb6\xd2\x94\xb5\xd0\x94\xb5\xce\x95\xb5\ +\xd1\x92\xb2\xd1\x8f\xb0\xd1\x92\xb0\xd3\x93\xb1\xd4\x8f\xaf\xd2\ +\x8a\xad\xcd\x86\xa9\xc9\x00\x00\x00\x3b\x63\x90\x48\x6e\x9c\x51\ +\x77\xa7\x4f\x7a\xab\x4c\x7d\xa9\x52\x86\xaf\x65\x9a\xc1\x6f\xa3\ +\xca\x72\xa3\xca\x75\x9f\xc5\x63\x84\xa7\x25\x44\x5c\x32\x53\x68\ +\x58\x7e\x9e\x66\x8f\xb8\x6c\x96\xbe\x69\x8e\xb3\x55\x75\x92\x2c\ +\x4e\x61\x52\x79\x8b\x63\x89\xa1\x44\x69\x84\x4a\x73\x94\x6d\x9a\ +\xbc\x79\xa6\xc9\x7f\xad\xcd\x7e\xac\xcd\x7e\xaa\xcf\x81\xae\xd2\ +\x87\xb3\xd6\x85\xb2\xd5\x82\xaf\xd3\x7f\xa7\xcc\x81\xa5\xc6\x79\ +\x9a\xba\x56\x75\x91\x29\x4c\x60\x6f\x96\xa8\x6e\x96\xa9\x46\x71\ +\x88\x71\x99\xb7\x86\xac\xd0\x84\xaf\xd2\x7f\xae\xcf\x7e\xad\xcd\ +\x75\xa1\xbf\x47\x73\x8d\x40\x69\x82\x7c\xa2\xbc\x95\xb6\xd5\x98\ +\xba\xdc\x98\xbd\xdf\x98\xc1\xe1\x95\xc4\xe3\x92\xc3\xe0\x90\xc2\ +\xdb\x90\xc1\xda\x90\xbe\xdb\x91\xbd\xda\x94\xbf\xda\x96\xc1\xdd\ +\x99\xc1\xe1\x99\xc2\xdf\x94\xc1\xdc\x92\xbf\xda\x91\xbd\xd9\x93\ +\xbb\xdb\x92\xb5\xd9\x91\xb4\xd6\x8e\xb1\xd1\x8b\xac\xcb\x83\xa9\ +\xc6\x82\xab\xc6\x82\xb0\xc9\x86\xb8\xcf\x87\xb9\xd0\x85\xb5\xd2\ +\x83\xb9\xd5\x7c\xb4\xce\x7c\xb1\xcb\x79\xae\xcb\x7c\xac\xcb\x7f\ +\xaf\xce\x7e\xb3\xd1\x7c\xb2\xd0\x7e\xb5\xcc\x83\xb6\xce\x81\xb0\ +\xc6\x6d\x99\xac\x4b\x71\x81\x37\x5b\x6e\x42\x66\x7f\x41\x64\x7d\ +\x4c\x75\x8a\x7b\xa9\xc3\x8a\xb7\xd7\x88\xb7\xd6\x89\xb5\xd5\x88\ +\xac\xd0\x7e\x9e\xbf\x5f\x7d\x9b\x60\x83\xa0\x7e\xa3\xc1\x7e\xa3\ +\xc1\x7f\xa4\xbe\x7e\xa3\xbe\x79\xa0\xbb\x74\xa2\xba\x7b\xa7\xc2\ +\x88\xae\xcb\x8c\xb1\xcc\x86\xaf\xc8\x84\xb0\xc8\x86\xb0\xcd\x85\ +\xb0\xcf\x7e\xad\xcc\x78\xa6\xc5\x77\xa4\xc2\x7d\xa4\xc3\x80\xa7\ +\xc5\x7a\xa4\xc0\x7b\xa0\xbd\x7e\xa3\xbe\x82\xa8\xc5\x83\xa8\xc6\ +\x81\xa8\xc8\x86\xab\xc9\x88\xad\xc7\x8a\xae\xcb\x89\xaf\xcb\x88\ +\xb1\xc9\x86\xae\xc7\x8c\xb1\xcb\x8f\xb6\xcf\x93\xb7\xd1\x96\xb8\ +\xd2\x94\xb7\xd1\x93\xb6\xd2\x92\xb3\xd4\x94\xb3\xd4\x95\xb3\xd0\ +\x96\xb5\xcf\x93\xb4\xce\x91\xb4\xd0\x90\xb6\xd0\x8f\xb7\xd0\x92\ +\xb6\xd2\x98\xb5\xd7\x9a\xb4\xd7\x97\xb6\xd4\x90\xb3\xcf\x90\xb4\ +\xd2\x93\xb5\xd3\x96\xb5\xd0\x97\xb6\xd1\x95\xb3\xd0\x8f\xb0\xcf\ +\x8d\xb0\xd1\x94\xb2\xd4\x99\xb1\xd7\x97\xb0\xd4\x8d\xae\xcf\x89\ +\xac\xcc\x00\x00\x00\x6e\x9d\xc5\x78\xa3\xcc\x7c\xa6\xd1\x7a\xa7\ +\xd4\x74\xa7\xcf\x72\xa9\xcd\x75\xaa\xcd\x77\xac\xce\x78\xab\xcd\ +\x7b\xa7\xca\x72\x98\xb8\x48\x6d\x84\x3e\x66\x7b\x58\x81\xa0\x67\ +\x93\xbb\x6c\x98\xc0\x6a\x94\xb8\x61\x86\xa3\x49\x6f\x86\x3c\x66\ +\x7a\x3a\x63\x78\x3f\x63\x7f\x4a\x73\x95\x58\x84\xa9\x66\x91\xb8\ +\x70\x99\xc1\x73\x9c\xc4\x71\x9c\xc6\x7a\xa2\xcb\x80\xa5\xcf\x7f\ +\xa7\xd0\x7c\xa8\xce\x7e\xa8\xcf\x7e\xa5\xca\x6f\x94\xb6\x55\x74\ +\x90\x28\x46\x5a\x52\x72\x82\x57\x79\x8d\x47\x6e\x84\x72\x9a\xb6\ +\x84\xa9\xcd\x81\xab\xd1\x7f\xae\xd2\x80\xad\xd1\x7d\xa9\xc9\x69\ +\x93\xb0\x36\x5a\x73\x4a\x6b\x82\x83\xa4\xbf\x8f\xb3\xd2\x8f\xb7\ +\xd8\x8f\xbb\xd9\x8c\xbb\xda\x89\xbb\xd8\x89\xbb\xd7\x8e\xbc\xda\ +\x8f\xbb\xd9\x8c\xba\xd7\x8d\xba\xd4\x8f\xbd\xd6\x92\xbe\xdc\x93\ +\xbc\xdb\x91\xbc\xd7\x8e\xbb\xd5\x8f\xbb\xd3\x92\xb9\xd6\x93\xb5\ +\xd6\x89\xac\xc9\x76\x97\xb1\x60\x7e\x98\x5a\x81\x98\x68\x8e\xa7\ +\x78\xa1\xba\x7e\xad\xc5\x83\xb5\xcc\x89\xb9\xd1\x88\xb9\xd1\x80\ +\xb6\xcd\x7a\xb2\xc8\x79\xaf\xca\x7e\xae\xcd\x81\xae\xce\x82\xb2\ +\xd1\x7f\xb3\xd0\x84\xb6\xd0\x88\xb7\xce\x80\xad\xc0\x60\x89\x98\ +\x36\x5a\x69\x46\x67\x7b\x61\x82\x9e\x4d\x72\x8b\x4f\x77\x8b\x83\ +\xb0\xc7\x8a\xb8\xd2\x8e\xb9\xd5\x90\xb9\xd8\x91\xb5\xd6\x90\xaf\ +\xd0\x7a\x98\xb5\x57\x78\x93\x75\x97\xb4\x7d\x9f\xc0\x79\x9e\xbd\ +\x73\x98\xb5\x73\x99\xb5\x73\x9e\xb5\x73\x9c\xb3\x7c\xa0\xb9\x83\ +\xa9\xc3\x87\xb0\xc9\x87\xb0\xc9\x8b\xb3\xd0\x89\xb1\xd0\x89\xb2\ +\xd0\x84\xaf\xcd\x81\xaa\xca\x86\xab\xc9\x85\xaa\xc7\x80\xa8\xc4\ +\x82\xa8\xc3\x87\xac\xc8\x8a\xae\xcb\x88\xad\xca\x86\xaa\xc9\x8b\ +\xad\xca\x8f\xae\xca\x90\xb0\xcd\x8c\xb1\xcd\x8b\xae\xc9\x8e\xae\ +\xca\x92\xb1\xce\x94\xb5\xcf\x97\xb8\xd1\x94\xb7\xce\x93\xb9\xd1\ +\x93\xb7\xd2\x93\xb4\xd4\x95\xb3\xd2\x98\xb5\xd1\x97\xb5\xcf\x97\ +\xb4\xd1\x93\xb4\xd3\x91\xb5\xd3\x8e\xb6\xd1\x91\xb6\xd2\x94\xb6\ +\xd6\x99\xb5\xd5\x99\xb4\xd0\x96\xb5\xd0\x94\xb5\xd3\x95\xb6\xd6\ +\x96\xb4\xd2\x95\xb2\xce\x91\xaf\xcd\x8f\xaf\xd1\x8c\xae\xd1\x90\ +\xaf\xd3\x96\xb1\xd4\x97\xb0\xd4\x92\xaf\xd3\x8b\xae\xcf\x00\x00\ +\x00\x83\xb1\xd2\x83\xaf\xd0\x81\xab\xcd\x82\xae\xd2\x83\xb3\xd5\ +\x81\xb3\xd2\x80\xb0\xce\x80\xaf\xcd\x7e\xae\xcc\x83\xb1\xcf\x83\ +\xae\xc8\x7b\xa4\xbc\x6e\x97\xb0\x79\xa3\xc3\x83\xae\xd2\x8a\xb6\ +\xd9\x8f\xb9\xdc\x8f\xb7\xd7\x8d\xb3\xd0\x84\xae\xc7\x81\xa7\xc2\ +\x85\xa8\xc7\x88\xad\xd0\x85\xaf\xd2\x80\xac\xd0\x81\xa9\xd1\x7f\ +\xa6\xce\x7c\xa6\xcb\x80\xa7\xcd\x80\xa5\xcd\x7d\xa6\xcd\x7b\xa8\ +\xcb\x7c\xa9\xcf\x76\x9f\xc6\x61\x88\xac\x48\x6b\x89\x28\x48\x60\ +\x26\x45\x58\x2a\x4f\x65\x49\x75\x8e\x6b\x97\xb7\x76\x9e\xc3\x73\ +\x9d\xc5\x72\x9e\xc6\x78\xa3\xc7\x7d\xa5\xc5\x74\x99\xbb\x4a\x69\ +\x87\x26\x42\x5a\x5d\x7d\x97\x7a\xa2\xc0\x7e\xaa\xcc\x7f\xad\xce\ +\x7d\xac\xcc\x7d\xad\xcd\x7e\xae\xce\x85\xb2\xd3\x87\xb4\xd5\x87\ +\xb5\xd7\x82\xb2\xd1\x82\xb6\xd2\x87\xb7\xd6\x89\xb6\xd6\x87\xb5\ +\xd1\x87\xb7\xd0\x88\xb9\xd0\x87\xb5\xcf\x8c\xb4\xd2\x83\xa9\xc3\ +\x65\x8a\xa2\x3c\x65\x7b\x42\x6b\x82\x57\x7d\x98\x63\x89\xa3\x68\ +\x94\xac\x7c\xa8\xc0\x8b\xb4\xcc\x8d\xb6\xcf\x86\xb8\xcf\x7b\xb3\ +\xcb\x7b\xb0\xcd\x80\xaf\xd0\x83\xb1\xd2\x83\xb2\xd0\x85\xb4\xd0\ +\x89\xb6\xd0\x8b\xb7\xcf\x82\xad\xc2\x68\x92\xa5\x46\x6b\x81\x57\ +\x76\x93\x64\x83\xa4\x51\x75\x91\x68\x91\xa8\x8d\xb8\xd0\x90\xb9\ +\xd3\x92\xb9\xd6\x95\xbb\xdb\x99\xbc\xdd\x97\xb6\xd8\x89\xa8\xc7\ +\x68\x8a\xaa\x5f\x82\xa3\x75\x9a\xba\x75\x9a\xb9\x73\x98\xb5\x6d\ +\x92\xad\x69\x91\xa7\x52\x77\x87\x60\x82\x97\x7f\xa5\xbd\x85\xae\ +\xc7\x87\xb1\xca\x8d\xb4\xcf\x8f\xb4\xd0\x90\xb4\xd2\x8b\xb1\xd2\ +\x87\xad\xce\x87\xad\xcc\x89\xae\xc9\x89\xae\xca\x89\xad\xc9\x8f\ +\xb0\xcc\x92\xb1\xcc\x8e\xb1\xcc\x8a\xaf\xca\x8c\xaf\xc9\x94\xb2\ +\xca\x95\xb3\xce\x90\xb1\xcd\x92\xae\xce\x96\xaf\xd1\x98\xb3\xd1\ +\x99\xb6\xd2\x99\xba\xd4\x98\xbb\xd3\x94\xb9\xd2\x96\xb7\xd1\x98\ +\xb5\xd3\x96\xb5\xd3\x96\xb5\xd1\x98\xb5\xd1\x98\xb5\xd5\x94\xb4\ +\xd6\x94\xb7\xd8\x92\xb6\xd5\x91\xb4\xd4\x92\xb4\xd5\x95\xb3\xd4\ +\x98\xb1\xd1\x98\xb2\xd0\x97\xb5\xd2\x94\xb4\xd3\x94\xb2\xd3\x90\ +\xaf\xce\x8d\xaf\xce\x8b\xae\xcf\x89\xab\xce\x8a\xad\xce\x90\xad\ +\xce\x95\xae\xd2\x94\xb0\xd5\x8d\xaf\xd1\x00\x00\x00\x7f\xa8\xc5\ +\x6c\x95\xae\x59\x82\x97\x71\x9b\xb2\x7d\xaa\xc4\x7c\xac\xc3\x79\ +\xa4\xba\x78\x9d\xb4\x77\x9f\xb8\x7f\xa9\xc4\x85\xae\xc8\x83\xa8\ +\xc4\x80\xa5\xc2\x7d\xa4\xc2\x85\xac\xca\x8b\xb1\xcd\x8a\xaf\xcd\ +\x8c\xb0\xd0\x91\xb1\xd1\x91\xb1\xce\x94\xb3\xcf\x94\xb3\xd1\x96\ +\xb9\xd7\x96\xbc\xdb\x91\xba\xdb\x8b\xb2\xd6\x85\xaf\xd0\x83\xb0\ +\xce\x88\xb1\xd0\x8a\xb0\xd1\x8a\xb1\xd1\x8a\xb4\xd2\x8d\xb8\xd8\ +\x8d\xb6\xd9\x86\xb0\xd3\x78\xa0\xc1\x61\x86\xa4\x4c\x70\x8a\x53\ +\x7d\x97\x68\x98\xb6\x74\xa3\xc3\x78\xa3\xc6\x75\xa0\xc6\x77\xa2\ +\xc7\x7d\xa4\xc6\x81\xa5\xc6\x7d\x9c\xbe\x5f\x79\x9a\x25\x3f\x58\ +\x37\x57\x6e\x62\x8a\xa7\x78\xa5\xc7\x77\xa5\xc8\x7a\xa6\xc9\x7a\ +\xa3\xc8\x79\xa4\xc9\x7b\xa8\xcc\x80\xab\xd0\x82\xae\xd2\x7e\xb1\ +\xd2\x7b\xb2\xd1\x81\xb6\xd5\x87\xb7\xd6\x88\xb8\xd3\x86\xba\xd3\ +\x85\xba\xd3\x85\xb6\xd3\x88\xb4\xd5\x88\xb0\xd1\x79\xa1\xc1\x68\ +\x97\xb4\x6b\x99\xb6\x74\x9f\xbc\x6f\x99\xb5\x62\x8c\xa4\x61\x87\ +\x9d\x83\xa4\xbc\x8b\xb2\xcb\x86\xb6\xce\x7d\xb4\xcd\x7a\xb0\xce\ +\x7e\xb0\xd1\x82\xb1\xd1\x86\xb6\xd0\x88\xb7\xd1\x8d\xb8\xd3\x89\ +\xb4\xd0\x82\xae\xc8\x7a\xa3\xbc\x69\x90\xac\x63\x87\xa9\x65\x89\ +\xac\x68\x8f\xb0\x80\xab\xc9\x8c\xb7\xd5\x92\xb9\xd9\x92\xbb\xdc\ +\x93\xbc\xde\x96\xbd\xde\x95\xb9\xdb\x89\xae\xd2\x75\x9e\xc4\x5e\ +\x88\xac\x64\x8e\xb0\x6e\x97\xb7\x71\x99\xb9\x6f\x98\xb2\x69\x90\ +\xa7\x50\x72\x88\x69\x88\xa2\x80\xa5\xc0\x86\xaf\xc8\x87\xb3\xcb\ +\x8c\xb7\xcf\x92\xb7\xd1\x95\xb5\xd5\x90\xb1\xd4\x86\xb0\xd1\x83\ +\xae\xce\x86\xaf\xcb\x8b\xb0\xcd\x8f\xb2\xcf\x94\xb3\xce\x97\xb3\ +\xcd\x95\xb3\xce\x93\xb4\xce\x93\xb2\xcd\x91\xb0\xcb\x93\xb2\xcf\ +\x8e\xad\xcc\x91\xac\xcd\x98\xb1\xd3\x9b\xb4\xd6\x9a\xb7\xd8\x98\ +\xb8\xd7\x9a\xba\xd7\x98\xb7\xd4\x97\xb6\xd4\x96\xb7\xd4\x93\xb9\ +\xd2\x93\xb7\xd1\x95\xb5\xd0\x95\xb5\xd5\x8f\xb4\xd5\x8d\xb2\xd4\ +\x91\xb4\xd6\x94\xb5\xd9\x92\xb3\xd7\x94\xb3\xd5\x97\xb2\xd2\x98\ +\xb4\xd0\x94\xb2\xcf\x92\xb2\xcf\x8e\xae\xd0\x8a\xac\xcf\x8c\xad\ +\xcf\x8b\xad\xcf\x8b\xae\xce\x88\xac\xc9\x8c\xac\xc9\x91\xac\xcd\ +\x94\xaf\xd5\x8c\xae\xd0\x00\x00\x00\x7f\xa8\xc2\x57\x80\x96\x28\ +\x51\x61\x3b\x63\x71\x68\x94\xa4\x70\x9e\xae\x5b\x84\x94\x48\x6a\ +\x7c\x51\x73\x8b\x6e\x95\xb1\x7b\xa3\xbf\x76\x9b\xb5\x5e\x81\x9a\ +\x56\x79\x91\x68\x8c\xa3\x72\x97\xae\x6e\x8f\xa9\x70\x90\xab\x7e\ +\x9b\xba\x87\xa2\xbf\x84\xa1\xba\x76\x96\xab\x7d\x9f\xb5\x87\xad\ +\xc5\x8d\xb3\xce\x8c\xb2\xd1\x81\xab\xc8\x79\xa8\xc1\x7f\xac\xc3\ +\x89\xaf\xca\x8b\xaf\xc9\x8a\xb0\xc9\x89\xb2\xcd\x89\xb2\xd0\x88\ +\xb3\xd0\x85\xaf\xcc\x85\xaa\xc8\x7f\xa4\xc2\x7d\xa6\xc4\x7f\xac\ +\xcc\x81\xaf\xcd\x84\xb0\xce\x80\xac\xca\x80\xab\xca\x8a\xb2\xcf\ +\x90\xb2\xcf\x89\xa6\xc5\x70\x88\xa6\x35\x4c\x63\x2e\x4c\x60\x69\ +\x8d\xa9\x88\xb0\xd3\x89\xb2\xd7\x8a\xb0\xd6\x88\xac\xd1\x87\xac\ +\xd2\x85\xae\xd3\x88\xae\xd3\x88\xaf\xd2\x83\xb1\xd3\x81\xb5\xd5\ +\x83\xb8\xd7\x89\xb9\xd8\x8b\xb9\xd5\x8c\xbb\xd8\x8c\xb9\xd7\x87\ +\xb6\xd4\x87\xb6\xd5\x8a\xb3\xd7\x86\xae\xd2\x80\xad\xce\x85\xb1\ +\xd0\x86\xaf\xce\x82\xa8\xc6\x71\x98\xb0\x51\x75\x89\x63\x88\x9e\ +\x84\xaa\xc4\x8a\xb6\xcf\x86\xb8\xd3\x81\xb5\xd3\x81\xb4\xd2\x83\ +\xb4\xd2\x86\xb7\xd0\x87\xb8\xd0\x8b\xb8\xd3\x87\xb4\xd1\x84\xb0\ +\xcd\x80\xaa\xc7\x78\xa1\xc0\x79\xa2\xc2\x7a\xa4\xc5\x7e\xaa\xcb\ +\x84\xb2\xd2\x89\xb6\xd4\x8b\xb7\xd6\x8e\xba\xd9\x8f\xba\xd9\x8f\ +\xb9\xd7\x8c\xb5\xd4\x86\xb1\xd3\x76\xa6\xc9\x66\x99\xbc\x61\x94\ +\xb5\x69\x9b\xb9\x6e\x9f\xbd\x71\xa3\xbf\x73\xa1\xbb\x77\x9d\xb9\ +\x82\xa4\xc4\x89\xab\xcb\x8b\xb2\xce\x86\xb2\xcd\x89\xb5\xd0\x90\ +\xb6\xd3\x97\xb5\xd8\x8f\xaf\xd3\x82\xae\xcf\x79\xab\xc9\x80\xae\ +\xcc\x85\xae\xcf\x8b\xb1\xd2\x91\xb3\xd0\x96\xb5\xce\x96\xb7\xcf\ +\x92\xb5\xce\x90\xb2\xcc\x8f\xb1\xcd\x8b\xae\xcc\x88\xaa\xcb\x8c\ +\xad\xcc\x93\xb1\xd2\x9c\xb4\xd8\x9b\xb8\xdb\x9a\xb8\xda\x9b\xb9\ +\xd9\x9a\xb7\xd7\x95\xb5\xd5\x91\xb6\xd3\x91\xba\xd3\x93\xba\xd4\ +\x96\xb8\xd4\x94\xb6\xd4\x8d\xb4\xd1\x8d\xb3\xd1\x8f\xb3\xd5\x94\ +\xb5\xdb\x97\xb6\xda\x97\xb5\xd6\x97\xb5\xd0\x96\xb5\xcf\x91\xb3\ +\xcf\x8d\xb0\xce\x8c\xad\xcf\x8a\xaa\xce\x8c\xaa\xcf\x8e\xae\xd0\ +\x8b\xaf\xcf\x88\xac\xcb\x87\xa9\xc9\x8c\xa9\xcb\x92\xac\xd1\x8d\ +\xab\xd1\x00\x00\x00\x88\xb2\xcd\x7a\xa7\xbf\x4e\x78\x8b\x1f\x46\ +\x54\x4c\x75\x84\x6e\x9b\xab\x5d\x86\x98\x55\x78\x8e\x60\x85\x9d\ +\x70\x99\xb3\x71\x9c\xb7\x60\x8c\xa1\x3c\x66\x77\x29\x50\x5f\x44\ +\x69\x7c\x4f\x74\x8a\x37\x5b\x71\x33\x52\x6c\x51\x6e\x8f\x63\x82\ +\xa1\x4a\x6e\x84\x31\x57\x67\x41\x67\x78\x59\x81\x94\x73\x9c\xb0\ +\x7e\xa3\xbc\x70\x95\xaf\x5a\x84\x9a\x5d\x88\x9d\x73\x9a\xb3\x72\ +\x94\xac\x62\x85\x9a\x61\x88\x9f\x6a\x94\xab\x6b\x95\xaa\x6d\x94\ +\xa9\x75\x97\xb1\x77\x98\xb4\x71\x95\xb0\x72\x9a\xb4\x76\xa1\xbc\ +\x77\xa3\xbc\x72\x9a\xb6\x6f\x97\xb1\x74\x9d\xb4\x81\xa7\xbe\x81\ +\x9f\xb7\x6c\x84\x9a\x33\x4b\x5e\x32\x4f\x63\x74\x96\xb4\x92\xb5\ +\xd7\x92\xb5\xd8\x8e\xb1\xd3\x85\xaa\xcb\x7f\xa7\xc6\x83\xa9\xc8\ +\x86\xa7\xca\x86\xa8\xc7\x82\xa9\xc7\x81\xad\xcb\x84\xb4\xd0\x89\ +\xb4\xd0\x8c\xb3\xcf\x8d\xb0\xce\x8c\xad\xcc\x89\xae\xcc\x87\xb0\ +\xcc\x8a\xae\xce\x8b\xaf\xd0\x8d\xb3\xd1\x90\xb5\xd2\x90\xb4\xce\ +\x8d\xae\xc9\x7f\xa3\xba\x5f\x86\x98\x54\x7e\x91\x80\xaa\xc1\x8d\ +\xb7\xd3\x8b\xb8\xd4\x88\xb5\xd2\x86\xb2\xd2\x84\xb1\xd2\x85\xb2\ +\xd0\x86\xb4\xcc\x88\xb4\xcd\x8a\xb5\xd1\x87\xb2\xce\x83\xaf\xcc\ +\x7f\xac\xcb\x7f\xa9\xc9\x83\xad\xcb\x7f\xaf\xcb\x80\xb0\xcc\x82\ +\xb3\xcb\x88\xb5\xcf\x8c\xb4\xd1\x90\xb6\xd2\x8e\xb4\xd0\x87\xb0\ +\xcb\x84\xb1\xcd\x7b\xad\xcb\x74\xa9\xc8\x6f\xa5\xc4\x70\xa6\xc4\ +\x77\xa9\xc7\x7a\xab\xc9\x7e\xad\xcc\x81\xac\xcc\x88\xab\xce\x8f\ +\xaf\xd2\x8e\xb0\xd0\x8a\xb1\xd0\x8b\xb1\xd2\x90\xb3\xd5\x93\xb2\ +\xd5\x8c\xae\xcf\x81\xac\xcb\x7e\xad\xcc\x7f\xad\xcc\x81\xae\xcd\ +\x86\xad\xcd\x8e\xb1\xcf\x97\xb6\xd0\x95\xb8\xce\x8f\xb5\xcd\x8c\ +\xb0\xce\x8d\xaf\xcd\x8b\xad\xca\x86\xa9\xc5\x88\xae\xc9\x8f\xb5\ +\xd1\x97\xb5\xd5\x9e\xb7\xdb\x9d\xb9\xda\x9d\xb9\xda\x99\xb5\xd7\ +\x94\xb3\xd5\x8f\xb4\xd3\x91\xb7\xd5\x92\xb7\xd5\x97\xba\xd8\x95\ +\xb8\xd5\x90\xb4\xd2\x90\xb5\xd3\x92\xb3\xd5\x95\xb4\xd7\x99\xb5\ +\xd8\x98\xb4\xd4\x95\xb6\xd0\x93\xb7\xd0\x91\xb6\xd1\x90\xb3\xd1\ +\x8d\xaf\xd0\x8b\xae\xcf\x8b\xad\xce\x8d\xaf\xcf\x8a\xae\xcd\x8b\ +\xae\xcf\x8a\xac\xce\x8f\xad\xce\x93\xac\xd2\x8e\xa8\xd0\x00\x00\ +\x00\x8a\xb0\xcb\x8e\xb9\xd2\x7e\xa7\xbf\x40\x68\x7a\x33\x59\x68\ +\x77\xa1\xb2\x87\xb0\xc8\x89\xb0\xcb\x84\xac\xc7\x83\xb0\xcc\x83\ +\xb3\xcd\x79\xa8\xbe\x67\x94\xa6\x5b\x87\x98\x6b\x97\xab\x71\x9b\ +\xb4\x65\x8e\xa8\x5e\x81\xa0\x6f\x91\xb2\x75\x99\xba\x66\x8f\xa9\ +\x52\x7e\x93\x5e\x89\x9d\x71\x9b\xae\x79\xa1\xb6\x79\x9b\xb3\x61\ +\x81\x9a\x41\x66\x7c\x45\x6d\x83\x5a\x83\x9e\x4f\x76\x8e\x33\x59\ +\x6d\x3d\x65\x7b\x4d\x73\x89\x42\x63\x75\x35\x56\x66\x43\x63\x76\ +\x4a\x6c\x83\x40\x66\x7a\x4c\x74\x8a\x61\x8c\xa5\x64\x8c\xa5\x4e\ +\x73\x8a\x37\x5e\x70\x51\x7b\x8b\x6e\x95\xa9\x73\x93\xa7\x59\x73\ +\x82\x26\x43\x4e\x42\x61\x76\x85\xa6\xc6\x92\xb4\xd8\x8f\xb4\xd5\ +\x82\xaa\xc8\x71\x9c\xb7\x67\x8f\xa8\x6a\x8d\xa9\x73\x91\xaf\x71\ +\x90\xaa\x68\x88\xa0\x6b\x90\xa7\x75\x9e\xb6\x7d\xa3\xbb\x7d\x9b\ +\xb4\x6f\x87\xa2\x69\x81\x9d\x75\x91\xae\x7a\x99\xb4\x7d\x9b\xb6\ +\x82\x9e\xba\x88\xa6\xc1\x8a\xab\xc4\x88\xa9\xbe\x80\xa1\xb4\x75\ +\x99\xac\x69\x91\xa3\x68\x94\xa8\x82\xae\xc4\x8c\xb8\xcf\x8b\xb6\ +\xcf\x87\xaf\xc9\x7e\xa5\xc1\x7e\xa3\xc0\x7f\xa4\xbf\x7d\xa8\xbe\ +\x7f\xaa\xc1\x88\xb0\xca\x8c\xb3\xd0\x87\xb1\xcf\x82\xae\xcd\x81\ +\xab\xc8\x86\xaf\xc9\x83\xb2\xcb\x7e\xb3\xca\x7f\xb1\xc9\x88\xb2\ +\xcb\x8e\xaf\xca\x8f\xae\xc6\x8c\xae\xc5\x87\xae\xc6\x84\xaf\xc8\ +\x80\xae\xc9\x80\xae\xcd\x80\xae\xcd\x81\xaf\xcc\x82\xb0\xca\x80\ +\xae\xcb\x84\xae\xcc\x86\xac\xcc\x88\xaa\xc9\x8d\xab\xcc\x8b\xab\ +\xcc\x88\xab\xcb\x8d\xae\xd0\x8d\xad\xd1\x8e\xad\xd0\x8b\xab\xc9\ +\x87\xaa\xc8\x82\xa8\xc7\x7e\xa5\xc1\x7b\xa3\xbd\x81\xa3\xbe\x8d\ +\xab\xc7\x96\xb2\xcc\x94\xb5\xcb\x8d\xb2\xc9\x86\xab\xc6\x85\xa9\ +\xc5\x87\xa7\xc3\x85\xa6\xbf\x88\xad\xc6\x8e\xb5\xcf\x98\xb9\xd5\ +\x9c\xb9\xd6\x99\xb8\xd6\x96\xb9\xd7\x94\xb5\xd5\x92\xb2\xd4\x90\ +\xb3\xd5\x92\xb7\xd5\x94\xb9\xd4\x93\xb7\xd2\x92\xb6\xd4\x93\xb4\ +\xd5\x93\xb4\xd5\x95\xb3\xd5\x99\xb2\xd6\x9a\xb2\xd5\x9b\xb4\xd7\ +\x97\xb6\xd4\x95\xb8\xd4\x93\xb6\xd3\x8f\xb3\xd1\x8e\xb1\xcf\x91\ +\xb2\xd2\x8d\xb2\xd1\x8b\xb2\xce\x8b\xaf\xcd\x8d\xb0\xd2\x8d\xb0\ +\xd3\x8f\xad\xd0\x93\xab\xd2\x91\xab\xd3\x00\x00\x00\x71\x96\xb2\ +\x91\xb9\xd9\x8e\xb7\xd4\x6b\x93\xaa\x2e\x50\x62\x5d\x7e\x92\x8c\ +\xb3\xcb\x93\xbd\xd6\x90\xbb\xd6\x8c\xb8\xd5\x8e\xb7\xd5\x8e\xb6\ +\xd2\x8a\xb5\xcc\x81\xaf\xc5\x80\xb2\xc8\x83\xb2\xcd\x83\xad\xcc\ +\x89\xae\xcf\x8e\xb1\xd1\x91\xb6\xd5\x8c\xb5\xd1\x80\xad\xc7\x82\ +\xad\xc6\x87\xb3\xca\x8d\xb6\xcc\x8e\xb3\xc9\x85\xaa\xbf\x77\xa0\ +\xb5\x74\xa0\xb8\x75\xa3\xbe\x6a\x99\xb1\x5a\x87\x9d\x61\x8a\xa2\ +\x70\x94\xae\x73\x92\xab\x67\x87\x9c\x64\x88\x9f\x67\x8f\xa5\x61\ +\x8b\xa0\x62\x8c\xa2\x74\x9d\xb7\x77\x9b\xb7\x59\x7c\x93\x3a\x62\ +\x73\x51\x7b\x8b\x73\x99\xac\x80\x9f\xb3\x54\x73\x82\x33\x56\x64\ +\x63\x88\x9f\x8a\xb0\xd1\x8e\xb5\xd8\x8a\xb4\xd4\x7f\xac\xc8\x68\ +\x93\xaf\x4a\x70\x8a\x58\x79\x93\x61\x7d\x9a\x48\x67\x7b\x33\x56\ +\x65\x4c\x72\x82\x6d\x95\xaa\x6e\x91\xa7\x5b\x75\x8d\x3c\x51\x68\ +\x4c\x63\x7c\x6a\x83\x9d\x63\x7c\x93\x57\x6e\x84\x53\x6a\x84\x64\ +\x7d\x9a\x77\x94\xaf\x72\x94\xa9\x58\x7b\x8c\x46\x68\x78\x60\x86\ +\x97\x77\xa2\xb5\x7c\xa8\xbd\x7a\xa6\xb8\x7b\xa4\xb7\x78\x9d\xb7\ +\x6b\x8b\xa6\x5b\x78\x8c\x5d\x7a\x8d\x59\x7d\x8e\x59\x80\x92\x72\ +\x97\xae\x82\xa6\xc2\x7f\xa5\xc2\x7b\xa3\xc0\x78\xa2\xbb\x82\xaa\ +\xc0\x84\xaf\xc5\x7f\xaf\xc6\x7e\xad\xc5\x82\xa8\xc2\x83\xa1\xb8\ +\x7c\x96\xaa\x78\x97\xa9\x7c\xa0\xb5\x80\xa7\xbf\x82\xa9\xc2\x83\ +\xa8\xc7\x83\xa7\xc7\x83\xa6\xc2\x80\xa7\xbf\x7f\xa7\xbf\x80\xa5\ +\xc1\x7c\x9e\xb8\x79\x99\xb1\x7d\x9a\xb5\x80\x9a\xb9\x7e\x97\xb6\ +\x82\x9c\xbd\x84\xa0\xc2\x83\xa1\xc1\x7d\x9d\xba\x82\x9d\xbb\x7f\ +\x9a\xb8\x71\x8f\xa8\x5e\x7a\x8f\x6a\x83\x98\x81\x9a\xb3\x8d\xa7\ +\xc2\x8d\xab\xc5\x82\xa4\xbb\x76\x99\xb1\x73\x95\xac\x79\x98\xaf\ +\x78\x97\xac\x85\xa7\xbd\x90\xb2\xcc\x96\xb7\xd2\x9b\xba\xd5\x98\ +\xbb\xd7\x94\xb9\xd4\x90\xb5\xcf\x90\xb3\xd1\x93\xb4\xd6\x94\xb5\ +\xd5\x97\xb6\xd1\x97\xb7\xd2\x94\xb6\xd3\x96\xb6\xd5\x95\xb4\xd2\ +\x97\xb3\xd4\x95\xaf\xd2\x96\xae\xd2\x96\xaf\xd1\x91\xb0\xce\x90\ +\xb1\xce\x93\xb2\xcf\x8f\xb0\xcb\x8e\xb1\xce\x8f\xb0\xd0\x8d\xb2\ +\xd0\x8b\xb3\xcf\x8b\xb2\xd0\x8b\xb0\xd1\x8b\xae\xd0\x8e\xac\xcf\ +\x93\xab\xd1\x8f\xaa\xd1\x00\x00\x00\x50\x76\x94\x80\xaa\xcb\x86\ +\xb5\xd6\x7c\xab\xc8\x4c\x71\x88\x35\x54\x68\x7d\xa1\xb6\x90\xba\ +\xd1\x89\xb2\xcc\x7b\xa2\xc0\x76\x9a\xb9\x80\xa6\xc5\x87\xb1\xce\ +\x84\xb3\xcf\x82\xb3\xd0\x83\xb2\xd1\x82\xab\xca\x85\xa6\xc6\x8a\ +\xa8\xc5\x91\xb3\xce\x95\xb9\xd6\x91\xb8\xd3\x8e\xb6\xd3\x8a\xb6\ +\xd2\x8d\xb8\xd1\x92\xba\xd2\x90\xb7\xd0\x8e\xb9\xd1\x8a\xb9\xd1\ +\x8e\xbb\xd9\x8a\xb9\xd5\x87\xb5\xcf\x84\xad\xc9\x8e\xb2\xd0\x95\ +\xb6\xd4\x8f\xb3\xcf\x8c\xb2\xd0\x85\xad\xca\x80\xaa\xc6\x81\xaa\ +\xc6\x89\xae\xcb\x8a\xad\xcd\x7f\xa1\xbe\x6b\x93\xaa\x6a\x96\xaa\ +\x7e\xa7\xbd\x88\xab\xc2\x6b\x91\xa6\x62\x8c\xa3\x80\xad\xc9\x89\ +\xb6\xd3\x88\xb6\xd4\x8c\xb8\xd7\x8b\xb3\xd2\x76\x9e\xb9\x5a\x82\ +\x9b\x61\x87\xa0\x6b\x8e\xa9\x51\x75\x8c\x30\x58\x6a\x4d\x78\x8a\ +\x70\x9b\xb2\x72\x94\xae\x56\x72\x89\x2e\x48\x5d\x55\x71\x88\x66\ +\x83\x9c\x50\x68\x7d\x34\x48\x5d\x4a\x60\x7a\x60\x7c\x9b\x66\x85\ +\xa2\x5e\x85\x9e\x42\x6b\x80\x3a\x62\x76\x58\x81\x94\x64\x8e\xa4\ +\x5e\x86\x9d\x4e\x75\x86\x56\x7b\x8e\x5d\x81\x9d\x50\x71\x8e\x37\ +\x53\x67\x32\x4d\x5e\x35\x55\x65\x34\x56\x67\x4d\x70\x86\x6a\x8b\ +\xa6\x69\x8a\xa7\x59\x7e\x98\x58\x7f\x94\x6f\x96\xa9\x7d\xa6\xbb\ +\x7e\xaa\xc1\x7d\xa8\xc1\x7b\xa2\xbb\x74\x93\xaa\x54\x70\x80\x4e\ +\x6d\x7c\x61\x83\x96\x6e\x92\xa8\x74\x96\xae\x78\x99\xb4\x78\x96\ +\xb4\x72\x8f\xa9\x62\x84\x98\x66\x8d\xa2\x71\x96\xad\x62\x82\x97\ +\x52\x6f\x83\x5c\x75\x8c\x5d\x72\x8c\x59\x6c\x86\x67\x7b\x98\x6f\ +\x85\xa4\x69\x80\x9e\x63\x7a\x96\x6a\x81\x9c\x6f\x85\x9f\x60\x77\ +\x8c\x38\x4e\x5f\x3e\x55\x65\x67\x81\x95\x7c\x99\xb3\x82\x9f\xbc\ +\x75\x93\xae\x5b\x7b\x90\x57\x75\x89\x62\x81\x94\x61\x83\x95\x77\ +\x97\xac\x8e\xaa\xc6\x99\xb4\xd2\x9d\xb9\xd8\x9a\xba\xd8\x92\xb7\ +\xd2\x91\xb6\xd2\x91\xb6\xd4\x92\xb4\xd6\x94\xb6\xd6\x97\xb7\xd2\ +\x99\xb8\xd2\x98\xb8\xd3\x95\xb8\xd2\x91\xb6\xd0\x92\xb4\xd2\x93\ +\xb2\xd3\x97\xb0\xd4\x94\xae\xd0\x8e\xac\xc9\x8b\xac\xc8\x8e\xae\ +\xca\x8e\xaf\xca\x8c\xae\xcd\x8b\xad\xcf\x8c\xb0\xce\x8c\xb3\xcf\ +\x87\xaf\xce\x88\xac\xce\x89\xac\xce\x8c\xac\xcf\x8e\xaa\xd0\x8a\ +\xa9\xd0\x00\x00\x00\x4b\x72\x93\x5f\x8d\xae\x7a\xad\xce\x7b\xaf\ +\xcf\x64\x8e\xa9\x2a\x4a\x5f\x5a\x7c\x8f\x88\xb1\xc8\x80\xa9\xc4\ +\x57\x80\x9e\x40\x6a\x88\x68\x94\xb4\x7f\xad\xcd\x82\xb0\xd0\x83\ +\xb2\xd1\x87\xb2\xd1\x7e\xa2\xc2\x6a\x86\xa5\x5d\x78\x94\x62\x81\ +\x9d\x6e\x8f\xab\x75\x97\xb2\x7c\xa1\xbf\x80\xa9\xc8\x86\xb2\xd0\ +\x88\xb2\xce\x89\xb3\xcb\x89\xb4\xcc\x90\xbb\xd4\x98\xbe\xdc\x99\ +\xbe\xdc\x96\xbd\xd8\x94\xbb\xd7\x99\xbd\xdb\xa0\xc3\xe0\x9c\xc1\ +\xde\x96\xbd\xdb\x91\xb8\xd6\x91\xb7\xd6\x92\xb7\xd7\x95\xb8\xd9\ +\x91\xb4\xd6\x8f\xb2\xd4\x8d\xb2\xd1\x8c\xb4\xd0\x91\xb8\xd3\x92\ +\xb7\xd2\x88\xb1\xcb\x83\xb0\xd0\x89\xb8\xd7\x8d\xb9\xd5\x8e\xb9\ +\xd4\x94\xbc\xd8\x95\xba\xd7\x8a\xb0\xcb\x76\xa2\xba\x6b\x98\xb2\ +\x69\x94\xb1\x67\x93\xb0\x5e\x8c\xa6\x5e\x8c\xa6\x6f\x98\xb6\x74\ +\x97\xb5\x5b\x7b\x93\x2f\x4e\x61\x5e\x7e\x96\x75\x93\xad\x4a\x63\ +\x79\x30\x46\x5a\x60\x7a\x94\x68\x87\xa4\x5c\x7e\x99\x5d\x85\xa1\ +\x5a\x88\xa5\x5d\x8a\xa7\x6c\x97\xaf\x70\x97\xb1\x66\x8c\xa6\x55\ +\x7a\x90\x5d\x81\x98\x64\x87\xa7\x5b\x7f\xa0\x47\x6b\x85\x4a\x6b\ +\x81\x5a\x7b\x92\x5a\x7d\x94\x5b\x81\x99\x5b\x80\x9c\x50\x74\x92\ +\x3a\x5b\x76\x3b\x5b\x72\x60\x84\x9a\x7b\xa1\xbb\x80\xa7\xc3\x7e\ +\xa4\xc0\x7f\xa2\xbf\x71\x91\xab\x4b\x6b\x7c\x35\x55\x63\x58\x78\ +\x88\x5e\x7e\x90\x53\x73\x86\x58\x78\x8a\x5c\x7c\x90\x4c\x6c\x7f\ +\x3b\x5f\x71\x56\x7c\x93\x66\x8b\xa4\x56\x77\x8d\x42\x5f\x74\x57\ +\x6f\x87\x5c\x6f\x88\x51\x63\x7a\x5e\x70\x8b\x6b\x7b\x9b\x5b\x6b\ +\x89\x3c\x51\x6a\x56\x6d\x84\x67\x7f\x95\x5a\x71\x84\x2e\x41\x50\ +\x20\x37\x44\x45\x61\x72\x65\x85\x9d\x6f\x91\xaf\x6a\x8a\xa9\x5b\ +\x79\x92\x50\x6d\x85\x59\x79\x91\x5f\x84\x9a\x70\x91\xa9\x8c\xa7\ +\xc4\x96\xb1\xce\x99\xb6\xd4\x98\xb7\xd4\x95\xb8\xd4\x92\xb6\xd4\ +\x91\xb5\xd5\x92\xb5\xd7\x91\xb6\xd5\x95\xb7\xd2\x98\xba\xd3\x98\ +\xba\xd4\x93\xb7\xd1\x93\xb9\xd3\x92\xb6\xd3\x95\xb4\xd4\x96\xaf\ +\xd3\x95\xac\xcf\x90\xab\xc9\x8c\xad\xc8\x8b\xae\xc9\x8d\xae\xcb\ +\x8e\xad\xcd\x8d\xac\xcc\x90\xaf\xcd\x8d\xaf\xcc\x88\xad\xcd\x89\ +\xab\xd0\x8a\xaa\xd0\x89\xaa\xce\x87\xa9\xcd\x85\xa7\xce\x00\x00\ +\x00\x66\x8f\xb1\x49\x75\x96\x6c\x9a\xbe\x78\xa9\xcb\x6d\x96\xb5\ +\x3b\x5c\x72\x42\x61\x75\x80\xa6\xbe\x7f\xaa\xc7\x70\x9d\xbc\x65\ +\x97\xb5\x71\xa4\xc3\x7d\xac\xcc\x83\xaf\xd0\x85\xb1\xd3\x87\xb0\ +\xd3\x87\xac\xcc\x83\xa1\xc1\x7d\x9c\xbb\x79\x9b\xba\x78\x9d\xb8\ +\x78\x9d\xb7\x7d\xa3\xc0\x82\xa9\xca\x88\xae\xd0\x84\xab\xcb\x7c\ +\xa8\xc2\x7d\xad\xc5\x8a\xb4\xce\x95\xb8\xd6\x90\xaf\xcb\x86\xa6\ +\xbe\x7e\x9f\xb6\x86\xa8\xc0\x96\xb7\xd2\x99\xbf\xd9\x94\xbf\xd8\ +\x91\xbd\xd6\x91\xbd\xd6\x96\xbf\xdc\x97\xbd\xdd\x92\xb8\xdb\x94\ +\xb8\xdb\x92\xb8\xd8\x92\xbb\xdb\x96\xbc\xdb\x94\xbc\xd8\x91\xba\ +\xd7\x8e\xba\xda\x8e\xb9\xd9\x93\xba\xd7\x96\xba\xd8\x9a\xbb\xdc\ +\x97\xbb\xda\x8f\xb6\xd5\x88\xb5\xd2\x84\xb2\xcf\x81\xb0\xcd\x82\ +\xb0\xd0\x83\xb2\xd0\x82\xac\xcb\x86\xac\xcc\x81\xa5\xc2\x6f\x91\ +\xa8\x41\x63\x74\x59\x79\x8d\x7d\x99\xb5\x59\x71\x8c\x2f\x46\x5b\ +\x61\x7c\x90\x69\x88\x9f\x54\x76\x8c\x64\x89\xa5\x78\xa4\xc2\x83\ +\xad\xcc\x8a\xb0\xcd\x8b\xb0\xcc\x85\xad\xc7\x80\xa6\xc0\x81\xa7\ +\xc3\x82\xa7\xc8\x7c\xa4\xc5\x75\x9e\xbc\x79\xa0\xbe\x82\xa6\xc4\ +\x84\xa9\xc4\x7c\xa5\xbf\x73\x9c\xba\x63\x8a\xaa\x53\x77\x97\x59\ +\x79\x98\x74\x94\xb1\x83\xa6\xc4\x89\xab\xcb\x88\xa9\xc7\x89\xaa\ +\xc4\x80\x9f\xb8\x63\x83\x97\x42\x64\x74\x4b\x6c\x7b\x52\x70\x80\ +\x34\x55\x5e\x29\x4b\x54\x2f\x52\x5e\x38\x5c\x6e\x54\x79\x92\x6e\ +\x93\xaf\x72\x97\xb2\x68\x8a\xa6\x5d\x7c\x95\x63\x7e\x99\x6f\x88\ +\xa4\x6e\x87\xa0\x70\x87\xa1\x76\x8a\xa9\x70\x87\xa2\x55\x72\x88\ +\x58\x77\x8d\x66\x83\x9c\x68\x80\x98\x3b\x4d\x5f\x18\x2c\x3b\x30\ +\x4a\x5b\x49\x69\x7f\x62\x83\xa1\x6c\x8c\xac\x66\x88\xa4\x5f\x83\ +\x9f\x63\x85\xa5\x6c\x8f\xb0\x7a\x9a\xb9\x89\xa5\xc4\x91\xae\xce\ +\x95\xb3\xd0\x95\xb7\xd3\x94\xb8\xd4\x94\xb7\xd4\x93\xb7\xd3\x94\ +\xb6\xd3\x94\xb5\xd0\x96\xb7\xd1\x97\xb9\xd3\x99\xba\xd4\x9b\xba\ +\xd5\x95\xb8\xd4\x91\xb5\xd2\x94\xb1\xd1\x95\xad\xd1\x95\xac\xcf\ +\x95\xae\xd0\x8f\xad\xce\x8d\xb0\xce\x90\xb0\xcd\x8e\xae\xcb\x89\ +\xaa\xc7\x8a\xac\xc8\x8c\xab\xca\x8d\xac\xce\x8b\xa9\xd0\x8b\xa8\ +\xcf\x8b\xaa\xce\x88\xaa\xcd\x88\xa9\xcf\x00\x00\x00\x7e\xa7\xc9\ +\x5f\x88\xac\x56\x7d\xa3\x72\x99\xbf\x71\x94\xb4\x46\x68\x7d\x35\ +\x56\x67\x78\x9f\xb6\x89\xb3\xd0\x88\xb5\xd4\x85\xb5\xd5\x82\xb3\ +\xd3\x82\xb1\xd0\x83\xb0\xcf\x82\xb0\xd1\x85\xb2\xd4\x87\xb2\xd2\ +\x8a\xb2\xd2\x89\xb2\xd2\x89\xb2\xd2\x8a\xb3\xcf\x8c\xb4\xd0\x8e\ +\xb7\xd4\x94\xba\xda\x94\xb8\xd7\x8a\xaf\xcc\x81\xaa\xc3\x82\xae\ +\xc6\x8b\xb5\xd0\x92\xb5\xd3\x7f\x9e\xb8\x53\x73\x88\x37\x5b\x6c\ +\x4e\x73\x85\x77\x9a\xaf\x8a\xaf\xc9\x90\xba\xd3\x8f\xbd\xd6\x91\ +\xc0\xdb\x92\xbf\xdb\x93\xbc\xdc\x94\xba\xdd\x96\xba\xdd\x92\xba\ +\xda\x8f\xbd\xdb\x92\xbc\xd9\x94\xba\xd9\x98\xbe\xde\x93\xbc\xdc\ +\x96\xbc\xdb\x9b\xbc\xd9\x9d\xbc\xdb\x99\xb9\xdc\x94\xba\xda\x91\ +\xb9\xdb\x8e\xb9\xda\x90\xbc\xd9\x8f\xba\xda\x90\xbc\xdd\x90\xbc\ +\xdb\x92\xba\xd7\x96\xb9\xd8\x8e\xb0\xd1\x7e\xa2\xbb\x5d\x80\x91\ +\x4c\x69\x7d\x73\x8e\xac\x5c\x74\x92\x2b\x46\x5c\x4d\x6a\x7d\x61\ +\x83\x98\x56\x7b\x90\x78\x9f\xb9\x8e\xb5\xd2\x97\xbb\xd8\x99\xb9\ +\xd8\x96\xb9\xd6\x90\xba\xd2\x8d\xb7\xd0\x8a\xb4\xd0\x8a\xb4\xd2\ +\x89\xb4\xd2\x86\xb2\xd2\x89\xb3\xd4\x8b\xb5\xd3\x89\xb3\xcf\x89\ +\xb0\xcf\x84\xac\xcd\x7b\xa4\xc4\x74\x9e\xbf\x7a\xa0\xc1\x83\xa7\ +\xc6\x8c\xb0\xcc\x8f\xb2\xce\x94\xb4\xd1\x94\xb4\xcc\x8d\xaf\xc5\ +\x80\xa2\xba\x67\x8a\x9f\x50\x71\x82\x3d\x5a\x67\x23\x43\x49\x25\ +\x49\x50\x37\x5e\x6b\x60\x89\x9f\x79\x9f\xbd\x7f\xa2\xc1\x81\xa3\ +\xc1\x7c\x9e\xbd\x7c\x9b\xbb\x7a\x99\xb6\x7c\x9c\xb8\x7e\xa0\xba\ +\x82\xa3\xbc\x85\xa3\xc0\x80\xa2\xbc\x72\x99\xb0\x6e\x95\xad\x73\ +\x95\xaf\x71\x8c\xa7\x4b\x60\x78\x1a\x2f\x45\x2d\x46\x5d\x41\x61\ +\x7b\x53\x75\x93\x65\x8a\xa8\x67\x8e\xaa\x68\x90\xaf\x68\x8e\xb1\ +\x71\x91\xb9\x77\x99\xbd\x85\xa3\xc6\x8e\xac\xce\x95\xb4\xd1\x94\ +\xb7\xd3\x92\xb9\xd6\x8f\xb5\xd2\x92\xb5\xcf\x97\xb5\xcf\x97\xb4\ +\xcf\x96\xb5\xd0\x94\xb7\xd2\x99\xb8\xd4\x9a\xb8\xd6\x98\xb7\xd4\ +\x96\xb4\xd3\x97\xb3\xd4\x97\xb0\xd3\x95\xaf\xd2\x94\xb2\xd0\x90\ +\xb0\xce\x8c\xb1\xcc\x8e\xaf\xcc\x89\xac\xc7\x86\xab\xc5\x86\xab\ +\xc8\x88\xa9\xc9\x8c\xaa\xcd\x89\xa8\xce\x89\xa9\xd0\x89\xaa\xcf\ +\x8a\xaa\xcd\x89\xa9\xcd\x00\x00\x00\x8a\xb5\xd5\x81\xa7\xcb\x73\ +\x97\xbd\x66\x8a\xab\x66\x89\xa4\x48\x6f\x81\x39\x60\x6e\x7b\xa2\ +\xb9\x96\xbc\xd7\x94\xbd\xdc\x8c\xb8\xd9\x8a\xb6\xd6\x8b\xb4\xd2\ +\x86\xb2\xd2\x82\xb1\xd0\x83\xb5\xd3\x86\xb8\xd5\x85\xb7\xd5\x88\ +\xb7\xd6\x8a\xb7\xd6\x8d\xbb\xd7\x91\xbd\xda\x92\xbe\xdb\x96\xbe\ +\xd9\x92\xb6\xd2\x80\xa1\xba\x67\x8a\xa2\x7b\x9e\xba\x8a\xb0\xcf\ +\x8e\xb2\xd1\x7a\x9a\xb7\x47\x6c\x84\x3d\x67\x7b\x60\x8a\x9f\x64\ +\x87\x9e\x6c\x8e\xa7\x88\xaf\xc8\x8b\xbb\xd3\x8f\xbf\xd9\x91\xbd\ +\xdc\x90\xbb\xdc\x93\xb9\xdc\x95\xb8\xdb\x93\xb9\xd9\x92\xba\xda\ +\x95\xbc\xdc\x97\xbb\xdb\x99\xbc\xdd\x99\xbf\xdf\x98\xbf\xde\x9a\ +\xbd\xda\x99\xbc\xda\x98\xba\xda\x94\xb9\xd9\x92\xb9\xd9\x91\xbc\ +\xdc\x93\xbc\xdb\x94\xbc\xdb\x97\xbd\xde\x98\xbc\xde\x95\xba\xd8\ +\x96\xba\xd8\x92\xb9\xd9\x8b\xb2\xce\x7a\x9d\xb3\x5f\x7c\x92\x64\ +\x7f\x9b\x54\x70\x8e\x31\x54\x6c\x47\x6f\x84\x5e\x88\x9f\x6e\x9a\ +\xb4\x8b\xb6\xd1\x95\xbb\xd8\x9c\xbd\xd7\x9f\xbc\xdb\x9a\xba\xdb\ +\x93\xb9\xd7\x8c\xb7\xd3\x8a\xb8\xd7\x89\xb6\xd4\x88\xb4\xd1\x85\ +\xb5\xd2\x88\xb7\xd7\x87\xb8\xd7\x8a\xb7\xd6\x8d\xb4\xd7\x8b\xae\ +\xd2\x87\xae\xce\x81\xad\xcc\x85\xb0\xcf\x87\xb1\xcf\x8b\xb5\xcf\ +\x8e\xb6\xd1\x91\xb6\xd0\x93\xb7\xce\x91\xb4\xca\x8d\xaf\xca\x7d\ +\xa0\xbb\x5e\x7e\x92\x35\x53\x5e\x39\x59\x61\x51\x72\x7f\x46\x6a\ +\x7b\x68\x8e\xa8\x7a\xa0\xbf\x82\xa7\xc6\x7f\xa3\xc3\x82\xa2\xc5\ +\x7f\xa2\xc1\x7e\xa2\xc0\x80\xa4\xc1\x85\xaa\xc5\x88\xad\xc7\x8a\ +\xaf\xc9\x88\xb0\xc9\x82\xab\xc5\x7e\xa9\xc2\x7f\xa6\xc1\x7a\x99\ +\xb6\x5a\x70\x8d\x26\x3b\x57\x3f\x5a\x77\x4a\x69\x8a\x50\x72\x94\ +\x55\x7c\x9c\x61\x8a\xa7\x6a\x93\xb1\x75\x97\xbc\x78\x99\xc0\x7a\ +\x9b\xc1\x80\xa1\xc3\x8a\xad\xcd\x92\xb3\xcf\x93\xb6\xd0\x94\xb7\ +\xd4\x91\xb5\xd4\x95\xb5\xd3\x96\xb3\xd1\x95\xb3\xd0\x93\xb2\xd0\ +\x95\xb5\xd4\x9a\xb7\xd6\x9a\xb7\xd7\x99\xb6\xd5\x98\xb5\xd4\x97\ +\xb4\xd5\x97\xb4\xd4\x94\xb4\xd2\x93\xb3\xd0\x8f\xb1\xcb\x8c\xb1\ +\xcb\x8a\xaf\xc9\x89\xac\xc6\x89\xad\xc8\x87\xab\xca\x89\xad\xcd\ +\x8c\xac\xcf\x88\xab\xcd\x89\xac\xce\x8b\xac\xcf\x89\xaa\xcb\x89\ +\xaa\xcb\x00\x00\x00\x97\xbc\xdc\x92\xb7\xd7\x8d\xb0\xd2\x88\xab\ +\xca\x79\xa0\xba\x62\x8e\xa2\x68\x95\xa6\x92\xb9\xd0\x9d\xc2\xdd\ +\x96\xbe\xd9\x91\xb7\xd5\x90\xb5\xd4\x90\xb5\xd4\x8e\xb7\xd7\x89\ +\xb8\xd7\x87\xba\xd7\x88\xbe\xd9\x8b\xbd\xd9\x8f\xbc\xdb\x91\xbd\ +\xdb\x8f\xbd\xdc\x95\xc0\xdf\x99\xc2\xe0\x9a\xc1\xdb\x92\xb5\xcd\ +\x7b\x9a\xaf\x4d\x6b\x80\x60\x7f\x99\x89\xac\xca\x92\xb6\xd6\x89\ +\xb1\xcd\x73\x9f\xb9\x70\x9c\xb7\x7d\xa5\xc1\x65\x86\xa2\x50\x6e\ +\x86\x77\x9a\xb2\x8b\xb6\xcf\x92\xbd\xd8\x93\xba\xd8\x92\xb9\xd9\ +\x92\xb8\xdb\x92\xb7\xda\x8f\xb4\xd6\x91\xb7\xd8\x95\xb8\xda\x98\ +\xb8\xdb\x93\xb7\xd9\x8f\xba\xda\x8e\xbd\xdb\x91\xbe\xd9\x8f\xbb\ +\xd4\x91\xba\xd9\x91\xb8\xd7\x91\xb9\xd5\x91\xb9\xd7\x92\xb7\xd8\ +\x95\xb8\xd8\x9b\xbb\xde\x99\xb9\xdd\x94\xb8\xda\x8f\xb7\xd7\x8d\ +\xb9\xda\x8b\xb7\xd5\x8b\xb0\xcb\x7f\x9e\xb9\x6e\x8e\xab\x5a\x80\ +\x9b\x58\x85\x9d\x6a\x97\xb2\x7a\xa9\xc4\x85\xb5\xd2\x8a\xba\xd4\ +\x91\xba\xd4\x95\xba\xd4\x98\xb9\xd7\x95\xb5\xd9\x93\xb6\xd7\x89\ +\xb6\xd4\x86\xb5\xd5\x87\xb6\xd5\x89\xb9\xd4\x86\xb5\xd0\x89\xb8\ +\xd7\x84\xb6\xd5\x87\xb7\xd7\x8f\xb8\xdd\x93\xb6\xdb\x8e\xb2\xd2\ +\x89\xb3\xd1\x89\xb4\xd0\x8c\xb7\xd2\x8e\xb8\xd3\x90\xba\xd2\x8e\ +\xb7\xd0\x90\xb5\xcf\x91\xb3\xd0\x8c\xb0\xcd\x81\xa5\xc2\x63\x87\ +\x9b\x33\x56\x60\x4d\x6d\x78\x69\x89\x99\x48\x6a\x7d\x60\x85\x9d\ +\x7a\xa1\xc0\x80\xa6\xc6\x80\xa3\xc5\x82\xa3\xc4\x7e\xa4\xc4\x7c\ +\xa3\xc2\x80\xa5\xc4\x87\xab\xc8\x8c\xac\xc9\x8e\xb1\xcb\x8c\xb2\ +\xcd\x89\xb0\xcc\x85\xae\xca\x81\xa8\xc7\x7d\x9c\xbd\x64\x7b\x99\ +\x2b\x42\x5f\x4f\x6c\x8a\x55\x76\x94\x50\x71\x8e\x5c\x80\x9e\x5b\ +\x80\x9e\x68\x8d\xaa\x78\x9d\xbb\x82\xa6\xc5\x84\xa4\xc7\x88\xa9\ +\xca\x88\xac\xc9\x8e\xb3\xcc\x92\xb8\xd0\x92\xb5\xd3\x92\xb2\xd4\ +\x94\xb4\xd6\x96\xb4\xd5\x98\xb5\xd5\x94\xb3\xd4\x93\xb2\xd5\x9a\ +\xb5\xd7\x9d\xb5\xd7\x98\xb4\xd3\x97\xb4\xd4\x97\xb3\xd5\x99\xb3\ +\xd5\x98\xb3\xd3\x95\xb3\xce\x91\xb2\xcf\x8e\xb3\xce\x8b\xb0\xca\ +\x8d\xaf\xcb\x8c\xac\xcd\x8b\xac\xcf\x8a\xac\xce\x8d\xad\xd0\x8d\ +\xad\xd0\x8d\xad\xcf\x8d\xaa\xc9\x89\xa9\xc7\x86\xa9\xc6\x00\x00\ +\x00\x97\xb5\xd1\x8b\xab\xc8\x8f\xb0\xcf\x98\xba\xda\x99\xbf\xdd\ +\x92\xbb\xd6\x93\xbf\xd8\x9c\xc5\xdd\x9a\xc2\xd9\x96\xbd\xd4\x91\ +\xb7\xd1\x92\xb6\xd2\x96\xb9\xd7\x94\xbb\xdc\x8f\xbd\xdb\x8e\xbf\ +\xda\x8f\xc0\xda\x92\xbf\xdd\x96\xbe\xde\x96\xbd\xdd\x93\xbf\xdb\ +\x99\xc1\xdf\x9e\xc3\xe0\xa0\xc3\xde\x9b\xbb\xd4\x87\xa5\xbc\x55\ +\x74\x89\x41\x61\x78\x82\xa2\xbd\x95\xba\xd6\x92\xbd\xd6\x8e\xba\ +\xd7\x8f\xb9\xd8\x89\xae\xce\x70\x8d\xac\x4f\x6b\x84\x6f\x90\xa7\ +\x8f\xb6\xcf\x97\xbf\xd8\x94\xbb\xd5\x94\xba\xd9\x94\xbc\xde\x92\ +\xba\xdb\x8e\xb5\xd5\x8e\xb4\xd4\x95\xb7\xd9\x95\xb7\xda\x90\xb7\ +\xd8\x8a\xb9\xd7\x8b\xbd\xda\x8f\xc0\xd9\x8f\xbf\xd7\x8d\xbb\xd8\ +\x8c\xb7\xd5\x90\xba\xd6\x90\xb9\xd9\x91\xb6\xda\x94\xb7\xda\x99\ +\xb8\xdc\x9a\xb8\xdc\x92\xb7\xd9\x88\xb6\xd6\x89\xb8\xd8\x8a\xb9\ +\xd7\x8e\xb5\xd3\x8a\xaf\xcc\x83\xa9\xc5\x78\xa4\xbf\x77\xa6\xc3\ +\x82\xae\xcd\x87\xb3\xd2\x87\xb7\xd3\x86\xb8\xd0\x8c\xb9\xd1\x8d\ +\xb8\xd0\x8d\xb4\xd0\x8f\xb1\xd4\x90\xb0\xd4\x8b\xb2\xd2\x88\xb4\ +\xd4\x87\xb5\xd6\x85\xb4\xd3\x89\xb6\xd5\x89\xb6\xd5\x84\xb2\xd2\ +\x85\xb5\xd5\x8c\xb7\xdb\x91\xb6\xdb\x90\xb2\xd5\x8c\xb3\xd1\x89\ +\xb4\xcf\x8b\xb5\xd2\x90\xb6\xd5\x92\xb7\xd4\x90\xb8\xd1\x8d\xb6\ +\xcf\x8f\xb4\xd0\x8d\xb1\xcf\x86\xac\xca\x6e\x95\xac\x44\x67\x76\ +\x44\x64\x72\x68\x85\x97\x47\x67\x7b\x59\x7c\x95\x7b\xa0\xc0\x84\ +\xa7\xc9\x82\xa5\xc6\x7f\xa3\xc2\x79\xa1\xc1\x75\xa1\xc1\x7c\xa3\ +\xc5\x86\xab\xc9\x89\xac\xc7\x8c\xaf\xca\x8b\xb0\xcd\x88\xb0\xcc\ +\x88\xaf\xcd\x85\xa8\xc9\x7d\x9a\xbf\x65\x7e\x9f\x2e\x49\x64\x4f\ +\x6f\x89\x5f\x81\x9a\x45\x66\x7d\x64\x86\xa0\x62\x86\xa4\x68\x8d\ +\xa9\x79\xa3\xbc\x87\xae\xc8\x8f\xae\xcb\x90\xad\xcd\x8f\xb1\xcd\ +\x8d\xb3\xca\x8f\xb5\xca\x8e\xb3\xcc\x8d\xb1\xcd\x8e\xb4\xd0\x91\ +\xb6\xd1\x94\xb7\xd2\x91\xb3\xd1\x92\xb4\xd7\x9a\xb4\xd8\x9d\xb5\ +\xd7\x99\xb4\xd6\x96\xb3\xd4\x95\xb3\xd4\x99\xb3\xd5\x97\xb1\xd2\ +\x95\xb2\xcf\x92\xb2\xd0\x90\xb1\xd1\x8f\xb1\xd1\x90\xb1\xd0\x8f\ +\xae\xd0\x8d\xac\xcf\x8b\xac\xcf\x8b\xab\xce\x8b\xac\xcd\x8c\xac\ +\xcb\x8c\xaa\xc5\x89\xaa\xc4\x86\xa8\xc6\x00\x00\x00\x62\x80\x96\ +\x58\x77\x90\x81\xa3\xc0\x9a\xbd\xde\xa3\xc7\xe9\xa4\xc8\xea\xa1\ +\xc5\xe5\x98\xbb\xd6\x92\xb4\xcd\x8e\xb0\xcb\x8e\xb2\xd0\x8f\xb7\ +\xd6\x95\xbc\xdb\x91\xb8\xda\x90\xba\xd9\x8d\xb9\xd5\x91\xbc\xd8\ +\x95\xbc\xd9\x96\xbb\xd6\x93\xb9\xd2\x93\xbc\xd4\x9a\xc0\xd9\x9b\ +\xc0\xd8\x9b\xbc\xd5\x9c\xbb\xd6\x93\xb3\xcd\x73\x93\xad\x40\x5f\ +\x78\x62\x82\x9a\x90\xb2\xcb\x96\xbc\xd6\x96\xbd\xd8\x99\xbc\xd9\ +\x95\xb6\xd3\x84\xa3\xbe\x73\x91\xa9\x85\xa5\xbc\x9a\xbe\xd7\x9c\ +\xc1\xdb\x98\xbf\xd8\x95\xbc\xd9\x95\xbd\xde\x96\xbd\xdc\x93\xb9\ +\xd5\x92\xb7\xd4\x97\xb9\xd9\x9d\xbc\xdd\x96\xba\xd8\x91\xbc\xd8\ +\x92\xbf\xda\x95\xc1\xda\x94\xc0\xd8\x8f\xbe\xd7\x91\xbd\xd9\x91\ +\xbb\xd7\x91\xb9\xda\x93\xb9\xdb\x95\xb9\xd9\x96\xb8\xd8\x96\xb7\ +\xd7\x91\xb9\xd6\x8b\xb9\xd6\x8a\xb8\xd6\x8c\xb9\xd7\x8a\xb5\xd2\ +\x8a\xb2\xd1\x88\xb2\xce\x85\xb3\xce\x85\xb2\xd0\x8a\xb3\xd3\x89\ +\xb4\xd4\x85\xb4\xd3\x84\xb3\xcf\x84\xb1\xcc\x85\xb3\xcd\x87\xb2\ +\xcf\x8b\xaf\xd1\x8d\xae\xd2\x8c\xb0\xd2\x8c\xb3\xd4\x88\xb2\xd3\ +\x87\xb3\xd2\x87\xb0\xcf\x88\xaf\xcf\x85\xb0\xcf\x86\xb2\xd1\x8b\ +\xb4\xd6\x8e\xb3\xd6\x8c\xb0\xd2\x8a\xb1\xcf\x87\xb0\xd0\x89\xb2\ +\xd2\x8d\xb2\xd4\x91\xb6\xd4\x90\xb8\xd2\x8c\xb9\xce\x8b\xb6\xcd\ +\x8a\xb4\xcd\x84\xad\xc8\x7b\xa1\xb9\x61\x82\x96\x3f\x5c\x6d\x50\ +\x6a\x7d\x43\x5e\x74\x63\x80\x9e\x82\xa2\xc6\x86\xa8\xcb\x82\xa6\ +\xc6\x7b\xa4\xc0\x74\x9f\xbd\x76\x9f\xc0\x80\xa6\xc7\x86\xab\xc9\ +\x8c\xaf\xcd\x8e\xae\xcc\x8d\xae\xca\x8a\xaf\xc9\x86\xac\xc8\x85\ +\xa5\xc7\x7f\x9a\xbd\x67\x80\x9f\x37\x50\x68\x49\x66\x7c\x65\x85\ +\x9d\x42\x63\x7a\x6d\x90\xa8\x75\x99\xb6\x78\x9f\xbb\x83\xad\xc5\ +\x8d\xb3\xcd\x93\xb0\xcf\x96\xaf\xd0\x95\xb1\xcf\x95\xb3\xce\x92\ +\xb1\xcb\x8e\xb2\xc9\x8d\xb4\xcc\x8a\xb4\xcc\x8e\xb5\xce\x94\xb5\ +\xd0\x95\xb4\xd2\x93\xb4\xd4\x98\xb5\xd7\x98\xb3\xd4\x97\xb3\xd1\ +\x93\xb3\xcf\x91\xb5\xd1\x91\xb3\xd3\x91\xb2\xd2\x94\xb3\xd0\x95\ +\xb2\xd0\x94\xb0\xd1\x91\xaf\xce\x8e\xb0\xcf\x8d\xad\xd0\x8f\xac\ +\xcf\x8d\xab\xcf\x8b\xab\xce\x8a\xab\xcc\x8b\xab\xcb\x8a\xaa\xc5\ +\x8b\xad\xc7\x84\xa8\xc5\x00\x00\x00\x3e\x63\x76\x44\x6a\x7e\x81\ +\xa9\xc2\x96\xc0\xdc\x9e\xc8\xe6\x9f\xc4\xe6\x95\xb5\xd5\x7c\x99\ +\xb4\x6d\x8a\xa5\x77\x94\xb5\x82\xa5\xc8\x88\xad\xcf\x8b\xb0\xd1\ +\x88\xad\xcf\x80\xa5\xc5\x7d\xa3\xbf\x87\xac\xc7\x8e\xb0\xcb\x84\ +\xa6\xbc\x75\x98\xaa\x7b\xa0\xb4\x86\xad\xc2\x84\xa7\xbc\x78\x98\ +\xae\x80\xa1\xba\x8c\xaf\xca\x84\xa7\xc3\x59\x79\x93\x41\x60\x78\ +\x77\x97\xaf\x8e\xb0\xcb\x8d\xad\xc8\x84\xa0\xb8\x82\x9f\xb6\x8f\ +\xb0\xc7\x90\xb2\xcb\x96\xb7\xd1\x99\xbc\xd6\x98\xbc\xd5\x98\xbd\ +\xd7\x9b\xbc\xd8\x97\xb8\xd5\x94\xb6\xd1\x95\xb8\xd1\x96\xb9\xd4\ +\x99\xb8\xd6\x9d\xb9\xd8\x9c\xb9\xd7\x9b\xbd\xd9\x9b\xc0\xda\x9a\ +\xbf\xd9\x98\xbe\xd7\x92\xbd\xd6\x93\xbe\xd6\x94\xbc\xd6\x94\xb9\ +\xd5\x94\xb8\xd5\x97\xb8\xd4\x99\xb9\xd5\x98\xba\xd6\x95\xbb\xd7\ +\x93\xba\xd7\x93\xb9\xd6\x8f\xb9\xd5\x8c\xb8\xd4\x8b\xb4\xd3\x8c\ +\xb5\xd2\x8a\xb5\xd1\x8a\xb4\xd3\x8a\xb2\xd3\x89\xb2\xd3\x87\xb1\ +\xd1\x83\xad\xca\x84\xb0\xcc\x81\xaf\xcb\x85\xb0\xd0\x88\xae\xd0\ +\x8a\xae\xcf\x8c\xb0\xd2\x8a\xae\xd0\x89\xb0\xd1\x8b\xb3\xd4\x8b\ +\xb0\xd0\x88\xae\xcf\x88\xb0\xd0\x8a\xb2\xd3\x8b\xb0\xd2\x89\xaf\ +\xd1\x86\xad\xcf\x85\xaf\xcf\x88\xb2\xd2\x86\xae\xd0\x89\xaf\xd4\ +\x8c\xb3\xd3\x8d\xb6\xce\x8a\xb7\xcc\x87\xb4\xcd\x83\xb0\xcc\x84\ +\xad\xc9\x7f\xa4\xc0\x73\x93\xae\x57\x77\x8f\x46\x64\x7b\x4a\x68\ +\x81\x77\x95\xb5\x87\xa7\xcc\x84\xa6\xc8\x82\xa8\xc5\x7b\xa7\xc1\ +\x77\xa3\xc0\x7c\xa1\xc3\x83\xa6\xc8\x8c\xac\xce\x8f\xad\xcc\x8f\ +\xac\xc9\x90\xac\xc7\x8b\xac\xc6\x89\xab\xc6\x87\xa5\xc4\x7f\x9a\ +\xb9\x6a\x85\x9c\x3f\x56\x68\x3f\x57\x6b\x61\x7e\x94\x44\x65\x7a\ +\x6f\x94\xaa\x7e\xa3\xbe\x87\xac\xc8\x8d\xb3\xcc\x94\xb6\xd1\x98\ +\xb3\xd3\x99\xb2\xd4\x99\xb3\xd1\x96\xb4\xd2\x91\xb2\xce\x8f\xb2\ +\xcd\x8d\xb0\xca\x8a\xb0\xc9\x8f\xb3\xcd\x97\xb5\xd0\x97\xb4\xcf\ +\x93\xb4\xd2\x93\xb4\xd3\x97\xb5\xd2\x93\xb3\xcf\x8f\xb3\xcd\x8d\ +\xb3\xcd\x8c\xb3\xcf\x8a\xb4\xce\x8d\xb3\xcc\x90\xb1\xcc\x90\xaf\ +\xcc\x8c\xad\xca\x8b\xb0\xcc\x8c\xac\xcc\x8e\xaa\xcc\x90\xaa\xcd\ +\x8d\xa9\xcc\x8a\xa9\xca\x87\xa9\xca\x86\xab\xc7\x85\xab\xc4\x84\ +\xa9\xc5\x00\x00\x00\x6b\x9a\xb0\x6c\x97\xac\x89\xb5\xcb\x97\xc5\ +\xdb\x99\xc9\xe2\x96\xc1\xde\x81\xa5\xc4\x51\x70\x8b\x3b\x5e\x76\ +\x5c\x7f\x9e\x75\x97\xba\x72\x94\xb6\x6e\x91\xb1\x68\x8f\xac\x57\ +\x7d\x9a\x4d\x71\x8d\x64\x87\xa3\x73\x94\xaf\x65\x85\x9b\x45\x63\ +\x74\x48\x69\x79\x63\x88\x9b\x5c\x7f\x93\x3a\x5b\x71\x5a\x7e\x97\ +\x7d\xa2\xbf\x80\xa5\xc3\x68\x88\xa6\x39\x59\x74\x5d\x7d\x9a\x7c\ +\xa1\xbe\x79\x9a\xb6\x4f\x6c\x83\x51\x6f\x80\x73\x98\xad\x84\xab\ +\xc4\x87\xad\xc8\x78\x9c\xb5\x6b\x8e\xa5\x78\x99\xb2\x83\x9f\xb9\ +\x76\x92\xa8\x76\x95\xa6\x81\xa2\xb4\x88\xab\xc2\x87\xa7\xc1\x88\ +\xa5\xc0\x90\xac\xc7\x97\xb6\xcf\x94\xb6\xcd\x8e\xb1\xc7\x8d\xb1\ +\xc9\x8e\xb5\xd1\x91\xb9\xd4\x91\xb6\xd1\x8c\xb1\xc9\x8d\xae\xc6\ +\x92\xb0\xcb\x97\xb5\xd0\x99\xbc\xd6\x99\xbd\xda\x93\xb9\xd6\x91\ +\xb6\xd0\x8f\xb4\xce\x8b\xb3\xce\x8b\xb1\xcf\x8e\xb4\xd3\x8c\xb2\ +\xd0\x88\xaf\xce\x85\xaa\xca\x84\xaa\xc8\x84\xaa\xc9\x86\xad\xc9\ +\x84\xaf\xca\x82\xad\xcc\x84\xad\xcc\x88\xad\xce\x88\xad\xcf\x89\ +\xaf\xcf\x89\xad\xcf\x8c\xb0\xd2\x8b\xaf\xd2\x8b\xaf\xd2\x89\xaf\ +\xd1\x89\xb0\xd2\x8a\xb1\xd1\x8c\xb1\xd1\x87\xaf\xcf\x83\xad\xcf\ +\x85\xaf\xd2\x89\xb1\xd2\x89\xaf\xd0\x89\xaf\xd0\x89\xaf\xcd\x8c\ +\xb3\xcc\x8b\xb3\xcb\x88\xb1\xce\x82\xae\xcd\x7f\xab\xc9\x7f\xa6\ +\xc5\x7c\x9f\xbd\x6d\x92\xad\x5f\x85\xa0\x65\x8c\xa7\x82\xa8\xc7\ +\x86\xaa\xcd\x84\xa7\xc8\x83\xaa\xc5\x7b\xaa\xc2\x7a\xaa\xc2\x7e\ +\xa7\xc5\x83\xa8\xc8\x87\xa9\xc9\x8b\xac\xc8\x8c\xaa\xc6\x8d\xa9\ +\xc3\x8c\xaa\xc4\x86\xa6\xc2\x83\xa3\xc2\x7c\x9d\xba\x6e\x8d\xa0\ +\x48\x61\x71\x35\x4c\x5e\x50\x6a\x7c\x48\x65\x77\x6f\x91\xa6\x80\ +\xa6\xbf\x8c\xb2\xca\x91\xb6\xcf\x96\xb7\xd1\x99\xb6\xd4\x99\xb6\ +\xd5\x97\xb5\xd2\x93\xb7\xd2\x8f\xb4\xd1\x8d\xb1\xce\x8d\xaf\xcb\ +\x8d\xb0\xcb\x90\xb1\xcb\x95\xb2\xcd\x96\xb3\xce\x92\xb5\xd1\x90\ +\xb5\xd0\x90\xb4\xcf\x90\xb3\xcf\x8c\xb1\xcc\x8a\xb0\xca\x88\xaf\ +\xcb\x86\xb1\xcc\x89\xb2\xcb\x8c\xb2\xca\x8e\xaf\xcb\x8e\xb0\xcc\ +\x8a\xad\xc9\x88\xaa\xc7\x8c\xac\xcc\x8f\xab\xcd\x8d\xa8\xca\x89\ +\xaa\xcb\x86\xac\xcc\x82\xac\xc8\x83\xae\xc6\x84\xab\xc7\x00\x00\ +\x00\x8c\xbc\xd4\x90\xbd\xd1\x97\xc2\xd7\x9b\xc7\xdc\x98\xc9\xdd\ +\x93\xc3\xdb\x85\xb1\xcc\x69\x92\xab\x4a\x75\x8a\x61\x8a\xa2\x7a\ +\x9d\xb9\x6b\x8b\xa8\x4f\x71\x8c\x4f\x74\x90\x50\x77\x92\x4f\x77\ +\x90\x69\x90\xa9\x72\x98\xb4\x65\x88\xa1\x4e\x6f\x82\x53\x75\x85\ +\x70\x93\xa7\x6e\x90\xa8\x55\x79\x91\x6b\x90\xab\x82\xa8\xc5\x7d\ +\x9f\xc0\x67\x89\xa8\x40\x65\x83\x5e\x85\xa5\x78\xa2\xc2\x71\x98\ +\xb5\x4e\x73\x89\x4c\x70\x82\x74\x9d\xb3\x7b\xa5\xc0\x72\x9c\xb6\ +\x57\x7f\x96\x3f\x64\x7a\x55\x77\x90\x62\x7f\x99\x44\x60\x74\x40\ +\x60\x6e\x54\x78\x86\x62\x87\x99\x57\x7c\x8e\x4f\x71\x83\x61\x82\ +\x98\x79\x98\xaf\x74\x94\xa7\x63\x85\x98\x65\x8a\xa1\x7b\xa0\xbc\ +\x85\xab\xc8\x83\xa8\xc2\x76\x97\xaa\x6d\x8f\xa2\x75\x98\xb0\x88\ +\xaa\xc7\x95\xb9\xd4\x96\xbb\xd6\x92\xb5\xd1\x86\xa4\xbe\x7b\x99\ +\xae\x7f\x9e\xb5\x86\xa5\xc0\x89\xab\xc7\x82\xa7\xc3\x78\x9d\xb9\ +\x72\x93\xaf\x6e\x91\xab\x72\x98\xb2\x78\x9f\xb9\x7c\xa5\xbd\x82\ +\xa9\xc5\x86\xac\xcb\x89\xab\xcc\x86\xa9\xc9\x84\xa5\xc3\x87\xa8\ +\xc8\x89\xaa\xce\x89\xac\xcf\x88\xab\xce\x83\xa8\xca\x85\xa9\xc9\ +\x8c\xae\xcc\x8d\xaf\xcc\x88\xac\xca\x80\xa7\xc8\x81\xa9\xca\x87\ +\xab\xcc\x87\xa9\xca\x85\xa8\xc8\x86\xab\xc7\x88\xae\xc6\x8b\xae\ +\xc8\x88\xab\xcb\x82\xa9\xcb\x7c\xa8\xc9\x7e\xa6\xc7\x7d\x9f\xc0\ +\x7a\x9d\xbe\x75\x9b\xbb\x76\xa0\xbc\x7c\xa9\xc4\x7e\xa6\xc5\x7e\ +\xa4\xc1\x7d\xa4\xbd\x7a\xa7\xbd\x77\xa9\xbf\x7b\xa9\xc4\x84\xa8\ +\xc8\x83\xa6\xc6\x83\xa8\xc3\x81\xa6\xbe\x80\xa4\xb7\x81\xa2\xb8\ +\x7f\x9e\xb9\x7c\x9d\xbc\x7b\x9c\xb8\x76\x97\xab\x5b\x7b\x8b\x3f\ +\x5c\x6e\x48\x64\x79\x57\x76\x8a\x7d\x9e\xb5\x85\xaa\xc4\x8a\xb2\ +\xcb\x8f\xb5\xcf\x96\xb8\xd2\x98\xb5\xd4\x96\xb5\xd4\x92\xb5\xd0\ +\x8f\xb4\xce\x8e\xb3\xcd\x8f\xb1\xce\x90\xb1\xce\x8d\xae\xca\x90\ +\xae\xc9\x93\xae\xc9\x94\xb0\xca\x92\xb2\xcc\x8d\xb3\xcc\x8c\xb1\ +\xcc\x8a\xaf\xcb\x89\xae\xc8\x88\xad\xc7\x89\xae\xc9\x8b\xaf\xce\ +\x8d\xb1\xcc\x8f\xaf\xca\x93\xb0\xcb\x91\xaf\xcb\x8f\xac\xcb\x8b\ +\xaa\xc9\x8b\xaa\xc9\x8e\xab\xca\x8f\xa9\xc9\x8b\xab\xca\x86\xab\ +\xcb\x81\xa9\xc8\x80\xa9\xc2\x82\xa9\xc5\x00\x00\x00\x9e\xc5\xdf\ +\x9b\xc2\xda\x9a\xc3\xdb\x99\xc4\xdc\x94\xc5\xda\x8f\xc3\xda\x8c\ +\xbc\xd5\x83\xb0\xc8\x6d\x98\xad\x5f\x83\x97\x60\x7f\x95\x55\x74\ +\x8d\x47\x6c\x84\x48\x70\x89\x66\x90\xa9\x7a\xa7\xbd\x87\xb3\xca\ +\x90\xba\xd4\x8b\xb2\xcd\x87\xad\xc4\x8c\xaf\xc5\x98\xbb\xd3\x94\ +\xb6\xd2\x88\xac\xc7\x8c\xb1\xcb\x8c\xb0\xce\x84\xa7\xc8\x6e\x94\ +\xb6\x61\x8c\xac\x72\x9f\xbf\x82\xaf\xd0\x80\xab\xc9\x70\x9c\xb3\ +\x64\x8e\xa3\x78\xa1\xba\x85\xaf\xc8\x7c\xa8\xc0\x68\x93\xaa\x5f\ +\x86\x9f\x6f\x94\xb0\x70\x92\xad\x5c\x7d\x94\x55\x79\x8b\x63\x8a\ +\x9e\x6f\x96\xac\x5d\x82\x95\x49\x6f\x82\x5c\x81\x97\x70\x92\xa9\ +\x62\x84\x97\x4b\x6f\x81\x52\x78\x8e\x73\x97\xb4\x81\xa5\xc3\x73\ +\x97\xb1\x4c\x6f\x81\x43\x68\x7a\x69\x8e\xa8\x86\xab\xc7\x96\xb8\ +\xd5\x95\xb9\xd5\x8d\xae\xc8\x70\x8a\xa0\x51\x69\x7d\x72\x8e\xa5\ +\x83\xa0\xb9\x83\xa3\xbe\x73\x96\xb0\x5b\x7c\x95\x43\x61\x77\x47\ +\x68\x7b\x5a\x81\x98\x67\x8d\xa3\x69\x8d\xa4\x73\x95\xad\x81\xa1\ +\xbd\x86\xa3\xc2\x7d\x9a\xb8\x6f\x8d\xa6\x6f\x8f\xaa\x77\x98\xb7\ +\x7c\xa1\xc0\x7a\x9e\xbe\x75\x97\xb6\x75\x92\xb0\x7f\x98\xb6\x84\ +\xa0\xbc\x7e\x9f\xba\x71\x96\xb1\x6e\x94\xaf\x78\x99\xb6\x7e\x9d\ +\xba\x7d\x9d\xba\x77\x99\xb5\x77\x9b\xb5\x80\xa0\xbe\x82\xa2\xc3\ +\x7c\xa0\xbf\x7c\xa0\xbf\x7b\x9c\xba\x79\x9a\xb9\x77\x99\xba\x77\ +\x9b\xbb\x7b\xa1\xbf\x7d\xa3\xc0\x7a\x9e\xb9\x75\x96\xb0\x6b\x8d\ +\xa2\x73\x9a\xad\x79\xa5\xbb\x7a\xa6\xbf\x7c\xa0\xbe\x7a\x9a\xbc\ +\x79\x9c\xba\x79\x9e\xb5\x70\x94\xa6\x67\x86\x98\x6e\x8a\xa1\x71\ +\x8b\xa7\x72\x8f\xa7\x7a\x9c\xb0\x72\x98\xaa\x64\x88\xa0\x63\x87\ +\xa1\x78\x9b\xb1\x88\xa9\xc0\x8c\xae\xc8\x8f\xb5\xcf\x90\xb6\xcf\ +\x94\xb6\xcf\x97\xb7\xd4\x95\xb5\xd4\x91\xb3\xd1\x92\xb3\xcf\x92\ +\xb2\xcd\x94\xb2\xcd\x93\xb0\xcd\x92\xb0\xcc\x93\xae\xca\x92\xad\ +\xc8\x93\xae\xc8\x92\xb0\xc9\x8f\xb1\xcc\x8e\xb1\xcd\x8d\xb0\xcd\ +\x8c\xb1\xcb\x87\xac\xc6\x8c\xae\xca\x91\xb1\xd1\x92\xaf\xce\x96\ +\xb0\xcd\x94\xaf\xcc\x94\xaf\xcd\x92\xad\xd0\x92\xae\xd1\x90\xac\ +\xcd\x90\xa9\xcb\x8d\xa8\xc5\x8d\xaa\xc6\x8b\xaa\xca\x86\xa9\xc8\ +\x85\xa9\xc3\x87\xaa\xc5\x00\x00\x00\x9b\xbc\xd8\x97\xbb\xd5\x98\ +\xc0\xda\x97\xc3\xdb\x90\xc3\xda\x8b\xc4\xda\x8d\xc1\xdb\x90\xba\ +\xd4\x84\xaa\xc0\x68\x89\x9c\x40\x5f\x72\x4a\x6e\x84\x51\x7c\x93\ +\x45\x73\x8c\x70\xa0\xb7\x90\xc0\xd5\x9a\xc5\xdd\x9a\xc2\xdd\x97\ +\xbe\xdb\x95\xbe\xd6\x96\xbd\xd6\x99\xc0\xd9\x99\xbc\xd9\x93\xb7\ +\xd4\x94\xba\xd5\x93\xb9\xd6\x91\xb7\xd8\x88\xb3\xd4\x7f\xaf\xd0\ +\x83\xb5\xd5\x86\xb7\xd8\x8b\xba\xd7\x88\xb6\xd0\x85\xb1\xca\x8c\ +\xb3\xd0\x93\xb8\xd3\x91\xb7\xd2\x8c\xb3\xce\x8b\xb2\xd0\x8d\xb4\ +\xd3\x8f\xb4\xd2\x86\xab\xc4\x82\xa8\xc0\x85\xad\xc5\x8d\xb2\xcc\ +\x85\xab\xc3\x78\xa1\xb9\x76\xa2\xba\x7f\xab\xc2\x7d\xa8\xc0\x70\ +\x99\xb1\x6f\x96\xb0\x7c\xa0\xc0\x89\xad\xcb\x79\x9e\xba\x5c\x82\ +\x9a\x5a\x83\x9a\x7c\xa2\xbd\x93\xb5\xd5\x9a\xba\xda\x98\xb8\xd6\ +\x8a\xa9\xc2\x68\x83\x97\x46\x61\x75\x79\x97\xaf\x8c\xae\xc4\x8a\ +\xb1\xc8\x7c\xa2\xbb\x5f\x81\x99\x3c\x5d\x70\x3d\x61\x73\x5c\x83\ +\x99\x63\x88\xa0\x5b\x7d\x93\x57\x79\x8d\x74\x95\xac\x7c\x9a\xb8\ +\x6d\x8e\xab\x4f\x70\x87\x45\x6b\x7f\x5e\x86\x9e\x6d\x96\xb0\x6c\ +\x92\xae\x61\x82\xa0\x52\x6e\x8c\x61\x7a\x99\x6e\x89\xa5\x68\x88\ +\xa2\x55\x7a\x91\x41\x68\x7f\x4e\x75\x8c\x5d\x82\x9b\x55\x78\x91\ +\x4b\x70\x87\x53\x79\x92\x68\x8c\xa9\x72\x93\xb1\x6f\x8c\xa8\x66\ +\x81\x9b\x63\x81\x9b\x66\x8b\xa5\x68\x8e\xab\x6a\x8d\xad\x73\x91\ +\xb3\x78\x95\xb7\x73\x90\xae\x60\x7d\x93\x4b\x68\x79\x5e\x81\x92\ +\x6f\x98\xad\x71\x9a\xb1\x69\x8b\xa7\x65\x81\xa2\x69\x86\xa7\x6b\ +\x8a\xa6\x5c\x7b\x90\x40\x5b\x6b\x43\x59\x6c\x47\x5b\x72\x43\x5b\ +\x70\x64\x82\x95\x7c\xa1\xb6\x81\xa7\xc1\x85\xab\xc7\x88\xaf\xc6\ +\x8c\xaf\xc6\x91\xb0\xc9\x93\xb5\xce\x94\xb7\xce\x95\xb6\xcf\x94\ +\xb4\xd1\x96\xb3\xd4\x95\xb2\xd4\x95\xb2\xd1\x93\xb1\xcf\x94\xb1\ +\xd0\x96\xb3\xd3\x95\xb4\xd1\x92\xb2\xce\x92\xb0\xcb\x93\xb0\xca\ +\x94\xaf\xca\x8f\xae\xcc\x8f\xb1\xd1\x8f\xb0\xd0\x8d\xb1\xce\x8a\ +\xaf\xca\x8e\xb0\xce\x94\xb1\xd2\x93\xb1\xcc\x96\xb1\xcd\x95\xb2\ +\xcd\x93\xb1\xce\x91\xb0\xd0\x90\xae\xd2\x90\xad\xd1\x8f\xa9\xcd\ +\x8e\xa9\xcb\x8e\xaa\xc9\x8d\xaa\xca\x8d\xa9\xcb\x8b\xaa\xc7\x89\ +\xaa\xc4\x00\x00\x00\x89\xaf\xc9\x8a\xaf\xcc\x95\xbd\xd9\x98\xc3\ +\xda\x94\xc3\xdb\x90\xc4\xde\x91\xc0\xe0\x96\xbe\xdc\x8c\xb3\xca\ +\x6e\x93\xa6\x45\x69\x7f\x53\x7b\x93\x50\x7f\x97\x52\x83\x9b\x83\ +\xb3\xcb\x9b\xc8\xdf\xa3\xca\xe3\xa0\xc5\xe1\x9d\xc3\xdf\x98\xc3\ +\xdc\x96\xc1\xda\x94\xbe\xd6\x8f\xb3\xcc\x89\xad\xc7\x8a\xb1\xca\ +\x91\xba\xd6\x93\xbd\xdc\x93\xbe\xdd\x90\xbd\xdd\x8c\xbc\xdc\x8b\ +\xbd\xdc\x92\xc1\xdc\x93\xc0\xda\x96\xbf\xd8\x9a\xbe\xdb\x9b\xbf\ +\xdb\x9b\xc0\xdc\x9b\xbf\xdb\x9b\xbe\xdd\x95\xba\xdc\x95\xbb\xdd\ +\x95\xba\xd7\x96\xbb\xd6\x96\xbb\xd7\x97\xbc\xd8\x94\xba\xd5\x8c\ +\xb8\xd2\x86\xb7\xcf\x88\xbb\xd2\x8a\xba\xd5\x8b\xb6\xd3\x8d\xb3\ +\xd2\x91\xb3\xd5\x93\xb6\xd6\x8b\xb2\xd0\x7f\xaa\xc6\x7a\xa8\xc1\ +\x8a\xb3\xcd\x99\xbb\xd8\x9d\xbd\xd9\x98\xba\xd5\x8c\xad\xc6\x71\ +\x8f\xa5\x49\x68\x7e\x6d\x8e\xa4\x8b\xb3\xc7\x8e\xb9\xcd\x87\xb2\ +\xca\x78\xa2\xb9\x5c\x86\x9c\x54\x7f\x94\x62\x8b\xa4\x6a\x8f\xab\ +\x58\x7d\x97\x56\x7d\x95\x75\x9b\xb4\x79\x9e\xba\x6f\x93\xae\x58\ +\x7c\x96\x54\x7c\x93\x6c\x94\xad\x78\xa0\xba\x73\x9a\xb6\x65\x89\ +\xa7\x59\x7d\x99\x6d\x8e\xa9\x7a\x98\xb6\x71\x92\xb0\x58\x80\x97\ +\x48\x73\x88\x57\x84\x9b\x5e\x8a\xa5\x52\x7a\x93\x43\x6b\x82\x4e\ +\x77\x8f\x6b\x91\xac\x71\x93\xb0\x67\x84\x9d\x47\x61\x75\x4c\x67\ +\x7b\x5c\x7f\x95\x62\x87\xa2\x60\x80\xa0\x5d\x78\x98\x68\x81\xa2\ +\x6a\x84\xa3\x52\x70\x89\x35\x56\x69\x4f\x75\x86\x67\x92\xa5\x6b\ +\x92\xa8\x5d\x7e\x96\x4a\x64\x81\x58\x72\x90\x5c\x76\x94\x4f\x69\ +\x81\x2e\x49\x59\x25\x3e\x51\x2a\x43\x59\x26\x3d\x53\x43\x5e\x71\ +\x6d\x8d\xa3\x7e\xa2\xba\x85\xab\xc3\x89\xad\xc5\x8a\xac\xc3\x92\ +\xb2\xc8\x97\xb8\xcc\x99\xb8\xcf\x96\xb4\xce\x94\xb2\xcf\x93\xb0\ +\xd0\x96\xb0\xd2\x96\xaf\xd2\x95\xb0\xd2\x99\xb3\xd6\x98\xb4\xd6\ +\x95\xb5\xd3\x91\xb7\xd0\x8f\xb3\xcd\x90\xb1\xca\x91\xaf\xcc\x8d\ +\xae\xcd\x8c\xaf\xce\x8f\xb1\xd0\x8e\xb3\xcd\x8d\xb1\xcb\x92\xb3\ +\xd1\x92\xb0\xcf\x8f\xb0\xcb\x92\xb2\xcc\x93\xb2\xce\x94\xb4\xcf\ +\x92\xb0\xce\x8f\xae\xd0\x8b\xad\xd1\x8b\xab\xcf\x8a\xa9\xcc\x87\ +\xa7\xca\x8b\xa8\xcc\x90\xab\xcd\x8e\xaa\xc9\x8b\xa7\xc6\x00\x00\ +\x00\x8f\xb9\xd2\x90\xba\xd4\x9b\xbf\xdd\xa0\xc5\xe0\x9e\xc5\xe1\ +\x9b\xc3\xe4\x9b\xc2\xe7\x96\xbf\xdf\x8d\xb7\xd1\x7c\xa6\xbd\x6a\ +\x94\xae\x60\x8d\xa7\x5e\x8f\xa7\x78\xa8\xc0\x96\xc0\xdc\xa0\xc6\ +\xe3\xa3\xc9\xe3\xa2\xc7\xe2\x9e\xc6\xe1\x98\xc4\xde\x97\xc3\xde\ +\x94\xbd\xd7\x86\xab\xc5\x79\x9d\xb7\x86\xa9\xc4\x92\xb6\xd2\x98\ +\xbd\xd8\x9c\xc0\xde\x9e\xc1\xe1\x9b\xc0\xe0\x98\xc1\xdf\x9b\xc3\ +\xde\x9d\xc3\xde\x9f\xc5\xde\xa4\xc3\xe0\xa0\xc4\xe1\x9d\xc1\xde\ +\x9f\xc0\xde\xa2\xc1\xe1\x9c\xbf\xe0\x99\xbe\xe0\x98\xbc\xda\x9a\ +\xbe\xd9\x9a\xbe\xda\x97\xbe\xd6\x96\xbe\xd7\x92\xbd\xd7\x90\xc0\ +\xd8\x90\xc1\xd9\x94\xc1\xdb\x9b\xc1\xdf\x9c\xbe\xde\x9d\xc0\xdd\ +\x9e\xc1\xe0\x99\xc0\xe0\x90\xbc\xd8\x91\xbd\xd6\x96\xbd\xd7\x9c\ +\xbe\xd8\x9c\xbd\xd8\x98\xbc\xd4\x93\xb5\xcc\x82\xa2\xba\x62\x84\ +\x9d\x5d\x83\x97\x83\xab\xbd\x8d\xb7\xcd\x83\xb0\xc9\x78\xa5\xc0\ +\x75\xa2\xbd\x77\xa5\xbf\x7c\xa9\xc3\x7e\xa7\xc1\x75\x9f\xba\x76\ +\xa0\xbd\x7c\xa5\xc2\x81\xa7\xc5\x81\xa5\xc3\x77\x9d\xbb\x78\xa0\ +\xbc\x81\xa8\xc4\x88\xad\xca\x85\xaa\xc8\x7e\xa4\xc1\x77\xa0\xb9\ +\x7f\xa6\xbf\x89\xab\xc9\x83\xa8\xc7\x77\xa2\xbb\x71\xa1\xb8\x78\ +\xa8\xc2\x7a\xa9\xc6\x74\xa0\xba\x6a\x91\xab\x69\x92\xab\x73\x9c\ +\xb8\x7b\x9f\xbe\x72\x91\xad\x59\x74\x8c\x4b\x65\x7b\x57\x76\x8e\ +\x65\x87\xa3\x66\x86\xa6\x5b\x78\x94\x5d\x7a\x96\x67\x86\xa1\x5c\ +\x80\x99\x57\x7d\x93\x64\x8e\xa2\x71\x9c\xb0\x6f\x96\xaf\x62\x85\ +\x9f\x51\x70\x8d\x5c\x7b\x99\x61\x81\x9f\x53\x73\x8d\x3c\x5e\x71\ +\x3d\x5f\x75\x4a\x6a\x84\x41\x5e\x77\x37\x55\x6b\x56\x75\x8c\x6f\ +\x91\xa7\x7f\xa2\xb7\x89\xa9\xbf\x8c\xac\xc2\x90\xb1\xc4\x94\xb6\ +\xc8\x96\xb5\xcb\x96\xb3\xce\x93\xb1\xcf\x94\xb2\xd0\x95\xb4\xd1\ +\x95\xb3\xd1\x96\xb4\xd3\x98\xb2\xd5\x99\xb3\xd6\x94\xb5\xd2\x90\ +\xb6\xd0\x90\xb4\xcf\x91\xb5\xcf\x92\xb2\xce\x8f\xb0\xca\x8f\xb1\ +\xcb\x94\xb5\xd1\x94\xb6\xd0\x90\xb1\xcb\x93\xb2\xcf\x92\xb0\xce\ +\x90\xb0\xcc\x8e\xaf\xc9\x93\xb2\xcf\x94\xb1\xce\x94\xb1\xce\x8e\ +\xae\xcf\x8a\xad\xcf\x87\xaa\xcb\x86\xa9\xcb\x88\xa8\xcb\x8b\xa9\ +\xcd\x8d\xab\xcb\x8b\xab\xcb\x89\xa9\xca\x00\x00\x00\x95\xc1\xdc\ +\x98\xc2\xdd\xa1\xc5\xe1\xa6\xc6\xe3\xa2\xc4\xe5\x9e\xc1\xe7\x9d\ +\xc3\xe7\x96\xc2\xe1\x90\xba\xd8\x8d\xb7\xd2\x88\xb3\xd1\x82\xb1\ +\xcf\x81\xb4\xcf\x8d\xbb\xd8\x9b\xc1\xe0\xa3\xc4\xe3\xa2\xc4\xe1\ +\xa0\xc5\xe3\x9a\xc3\xe0\x99\xc3\xe0\x99\xc2\xdf\x96\xbc\xd8\x8c\ +\xb0\xca\x8a\xaa\xc5\x91\xaf\xcd\x9b\xb8\xd5\x9f\xbd\xd8\xa1\xc0\ +\xde\xa2\xc1\xe2\xa1\xc1\xe0\xa2\xc3\xe0\xa2\xc4\xe0\xa3\xc5\xdf\ +\xa4\xc4\xe0\xa6\xc4\xe1\xa1\xc4\xe2\x9f\xc1\xe0\xa2\xc0\xe0\xa2\ +\xbf\xe1\x9c\xbe\xe0\x99\xbc\xde\x99\xbd\xdb\x9a\xbe\xd8\x97\xbb\ +\xd5\x95\xbc\xd3\x95\xbe\xd6\x96\xbe\xda\x96\xbf\xdd\x97\xc1\xe0\ +\x9c\xc2\xdf\xa1\xc0\xdf\xa2\xbf\xde\xa0\xc3\xdd\xa0\xc5\xe0\x9c\ +\xc2\xe1\x97\xbf\xdf\x98\xc0\xdc\x9b\xc1\xdb\x9f\xbf\xdb\x9f\xbf\ +\xd9\x9d\xbe\xd8\x9b\xbc\xd7\x91\xb2\xcc\x82\xa6\xc0\x74\x9a\xb1\ +\x7f\xa5\xbd\x88\xaf\xc8\x7d\xab\xc3\x72\x9f\xbb\x73\x9f\xbc\x80\ +\xac\xc9\x89\xb5\xcf\x88\xb5\xcd\x81\xb2\xca\x7f\xaf\xcb\x83\xaf\ +\xce\x86\xae\xce\x86\xad\xcd\x88\xad\xce\x8a\xb0\xcf\x8c\xb3\xd2\ +\x91\xb6\xd4\x8e\xb2\xd0\x8c\xb1\xcd\x89\xb0\xc9\x8b\xb0\xca\x8f\ +\xb4\xcf\x8b\xb4\xce\x86\xb2\xc8\x85\xb3\xca\x85\xb4\xce\x85\xb4\ +\xd0\x87\xb1\xcd\x86\xac\xc9\x82\xab\xc6\x81\xa9\xc8\x83\xa9\xca\ +\x7c\x9e\xc0\x70\x8f\xae\x5f\x7d\x99\x5c\x7b\x98\x65\x89\xa7\x6b\ +\x90\xb0\x63\x88\xa5\x5b\x80\x9b\x67\x8d\xa6\x72\x98\xb1\x79\xa3\ +\xb8\x7c\xa7\xbc\x7f\xa9\xc0\x7f\xa7\xc4\x73\x9b\xb9\x66\x90\xae\ +\x62\x8f\xad\x64\x92\xae\x61\x8d\xa6\x5b\x85\x9d\x5b\x83\xa0\x62\ +\x87\xa7\x60\x80\x9f\x54\x73\x90\x54\x76\x91\x65\x87\xa0\x7d\x9b\ +\xb4\x89\xa7\xbf\x8d\xab\xc3\x8d\xb1\xc4\x8f\xb4\xc7\x91\xb3\xc9\ +\x93\xb3\xcd\x90\xb2\xcf\x90\xb2\xcf\x92\xb5\xd2\x94\xb6\xd3\x92\ +\xb3\xd4\x96\xb3\xd5\x95\xb3\xd6\x90\xb5\xd3\x8d\xb6\xcf\x8f\xb4\ +\xcf\x8f\xb3\xce\x94\xb3\xcf\x96\xb2\xcc\x95\xb4\xcf\x94\xb5\xd2\ +\x94\xb5\xcf\x90\xb1\xcc\x90\xb1\xcd\x92\xaf\xcd\x90\xaf\xc9\x8e\ +\xaf\xc9\x90\xb1\xcd\x93\xb1\xcf\x91\xb1\xce\x8d\xb0\xd0\x88\xab\ +\xcd\x89\xac\xcc\x88\xaa\xcb\x89\xa7\xcc\x86\xa6\xcc\x85\xa7\xc9\ +\x85\xa9\xca\x82\xa8\xc9\x00\x00\x00\x91\xc0\xd8\x99\xc4\xdd\xa0\ +\xc5\xdf\xa2\xc4\xe0\xa0\xc3\xe3\x9e\xc2\xe4\x9c\xc2\xe1\x97\xbe\ +\xdd\x96\xbb\xda\x9a\xbd\xde\x97\xbd\xdf\x95\xbe\xde\x92\xbe\xdd\ +\x94\xbe\xde\x9b\xc1\xde\xa2\xc3\xe0\x9f\xc1\xdd\x9a\xc0\xdd\x95\ +\xc0\xd9\x95\xc2\xdb\x97\xbf\xdb\x91\xb6\xd0\x80\xa4\xbb\x7e\xa0\ +\xb6\x91\xb0\xca\x9e\xbb\xd6\xa1\xbd\xd9\xa0\xbe\xdf\x9c\xbf\xde\ +\x9c\xc1\xdd\x9f\xc3\xdf\xa3\xc2\xe2\xa3\xc2\xe3\xa3\xc2\xe0\xa0\ +\xc3\xdd\x9e\xc3\xde\x9e\xbf\xde\x9f\xbe\xdf\x9e\xbe\xdf\x99\xbe\ +\xdf\x94\xbc\xdc\x95\xbe\xda\x99\xbf\xd9\x99\xbe\xd8\x97\xbd\xd7\ +\x95\xbe\xd7\x98\xbe\xdd\x98\xbf\xe1\x9a\xc1\xe2\x9c\xc0\xdf\xa1\ +\xbe\xdf\xa5\xbe\xde\xa3\xc1\xde\xa2\xc3\xdd\x9f\xc2\xe0\x99\xbe\ +\xde\x9a\xc0\xdd\x9b\xc0\xda\x9d\xc0\xda\x9e\xbe\xd9\x9e\xbd\xd9\ +\x99\xba\xd7\x94\xb7\xd3\x93\xb6\xd1\x8d\xb1\xcb\x8b\xaf\xc9\x87\ +\xae\xc8\x7c\xa9\xc2\x76\xa1\xbb\x75\x9f\xba\x7e\xaa\xc5\x8a\xb7\ +\xd0\x8b\xb9\xd1\x86\xb7\xce\x84\xb4\xcd\x88\xb2\xcf\x8a\xb1\xcf\ +\x8c\xb2\xd2\x8d\xb3\xd3\x8e\xb4\xd4\x90\xb6\xd6\x91\xb6\xd6\x93\ +\xb7\xd5\x94\xb6\xd3\x90\xb5\xcf\x8f\xb4\xce\x8f\xb4\xce\x8d\xb6\ +\xcf\x8b\xb3\xcd\x8b\xb4\xcd\x87\xb2\xce\x83\xb0\xcc\x87\xb1\xca\ +\x88\xb1\xca\x86\xb1\xcb\x87\xaf\xce\x86\xad\xcf\x80\xa8\xca\x78\ +\x9e\xbe\x6a\x8c\xab\x60\x81\x9f\x64\x88\xa8\x6b\x94\xb4\x65\x91\ +\xaf\x57\x82\x9f\x66\x8f\xa8\x7a\xa4\xba\x7b\xa7\xb9\x7d\xa9\xbc\ +\x83\xae\xc4\x87\xaf\xca\x80\xaa\xc9\x75\xa3\xc2\x72\xa0\xbf\x70\ +\xa0\xba\x6f\x9b\xb6\x6a\x92\xb2\x66\x8e\xb0\x65\x8d\xb1\x67\x8d\ +\xaf\x67\x8b\xab\x6c\x8f\xae\x72\x97\xb1\x7d\x9d\xb7\x87\xa4\xbc\ +\x8c\xab\xc3\x8b\xae\xc4\x8b\xb0\xc7\x8e\xb2\xc9\x90\xb2\xcd\x8f\ +\xb2\xcf\x91\xb3\xd0\x92\xb4\xd2\x90\xb4\xd2\x93\xb6\xd5\x95\xb3\ +\xd6\x94\xb3\xd6\x91\xb5\xd5\x8e\xb5\xd2\x8d\xb2\xcf\x8f\xb3\xcf\ +\x95\xb3\xd0\x97\xb3\xd0\x95\xb6\xd0\x91\xb6\xd2\x92\xb5\xd3\x92\ +\xb1\xd0\x90\xb1\xce\x93\xb2\xcf\x92\xb0\xcc\x8c\xaf\xc9\x89\xaf\ +\xcb\x8b\xaf\xcb\x8b\xb0\xcc\x88\xb0\xce\x87\xac\xce\x89\xab\xcc\ +\x89\xaa\xcb\x88\xa9\xcf\x86\xa7\xce\x83\xa6\xcb\x7f\xa7\xca\x7c\ +\xa7\xc8\x00\x00\x00\x91\xbc\xd1\x98\xc1\xd7\x99\xc0\xd7\x98\xbe\ +\xd7\x9b\xbe\xdb\x9b\xbc\xdb\x97\xb9\xd5\x94\xb7\xd0\x91\xb5\xd0\ +\x95\xba\xd6\x99\xbd\xdb\x99\xbd\xdc\x93\xba\xd7\x96\xbc\xd7\x9f\ +\xc1\xdc\xa2\xc3\xe0\x9c\xc1\xdd\x97\xbc\xd7\x91\xbb\xd4\x8e\xbc\ +\xd4\x93\xbc\xd7\x8b\xb1\xca\x6b\x90\xa4\x57\x79\x8a\x88\xa7\xbb\ +\x99\xb9\xd4\x9a\xbb\xd9\x98\xbb\xd9\x93\xbb\xd5\x95\xbd\xd6\x96\ +\xbd\xd9\x9e\xc0\xe1\xa0\xc0\xe2\xa0\xc1\xe0\x9a\xc0\xd9\x99\xc1\ +\xd9\x9a\xbe\xdb\x9c\xbc\xdb\x98\xbb\xda\x91\xba\xda\x8d\xbb\xda\ +\x8f\xbc\xd9\x98\xbf\xdc\x9a\xbf\xd9\x9b\xc0\xda\x98\xc0\xd9\x97\ +\xbf\xda\x99\xc0\xde\x98\xbd\xdd\x9a\xbd\xdd\xa2\xbe\xe0\xa2\xbc\ +\xdc\xa2\xbf\xda\xa3\xc0\xdb\xa3\xc1\xdd\x9c\xbe\xda\x9b\xc0\xdc\ +\x9b\xc0\xda\x99\xbf\xd5\x97\xbe\xd4\x9a\xbc\xd8\x9b\xba\xd7\x98\ +\xb7\xd5\x9b\xb9\xd4\x99\xb8\xd2\x96\xb6\xd0\x8d\xb2\xcb\x88\xb0\ +\xc9\x81\xa8\xc4\x80\xa7\xc3\x87\xaf\xc8\x8d\xb5\xce\x91\xb6\xcf\ +\x8d\xb5\xcc\x8b\xb3\xcb\x8f\xb3\xce\x91\xb3\xd1\x92\xb6\xd4\x8f\ +\xb5\xd2\x8f\xb6\xd3\x8d\xb6\xd3\x91\xb6\xd4\x93\xb7\xd4\x95\xb5\ +\xd2\x93\xb5\xd0\x8f\xb4\xce\x8f\xb4\xcd\x8e\xb3\xce\x8e\xb0\xce\ +\x8a\xab\xc7\x80\xa8\xc2\x7b\xa7\xbe\x7c\xa6\xbd\x7f\xa8\xbe\x83\ +\xad\xc6\x86\xaf\xcd\x88\xb0\xd0\x82\xae\xcb\x78\xa4\xbe\x68\x8f\ +\xa8\x51\x73\x8e\x5a\x80\x9e\x65\x93\xb1\x5a\x89\xa6\x5a\x85\xa3\ +\x75\x9e\xba\x78\xa2\xb8\x6d\x9a\xad\x6c\x9a\xac\x7b\xa7\xbb\x86\ +\xae\xc6\x88\xb0\xcb\x82\xab\xc8\x83\xab\xc7\x82\xa9\xc5\x81\xa7\ +\xc4\x7a\x9f\xc0\x71\x98\xbb\x69\x95\xb8\x65\x91\xb3\x66\x8d\xb0\ +\x68\x8f\xaf\x6f\x98\xb2\x79\x9f\xb9\x7e\xa2\xbb\x85\xaa\xc0\x8d\ +\xaf\xc6\x8f\xb0\xcb\x90\xb2\xcd\x8f\xb4\xce\x8e\xb3\xcd\x91\xb4\ +\xce\x91\xb4\xd0\x93\xb7\xd5\x94\xb8\xd5\x97\xb7\xd6\x96\xb4\xd4\ +\x93\xb2\xd2\x8e\xb2\xd0\x8d\xb1\xcf\x90\xb3\xd0\x96\xb4\xd5\x96\ +\xb3\xd3\x93\xb5\xd0\x91\xb5\xcf\x93\xb3\xd4\x92\xb1\xd4\x8e\xb0\ +\xd1\x91\xb0\xd1\x94\xae\xd1\x91\xb0\xce\x8c\xb2\xce\x8b\xb1\xce\ +\x8a\xb0\xce\x86\xae\xce\x85\xaa\xcb\x88\xa9\xc9\x88\xa7\xc7\x8b\ +\xa9\xcd\x88\xa7\xce\x81\xa7\xcc\x7b\xa6\xc8\x7a\xa7\xc7\x00\x00\ +\x00\x87\xaa\xbf\x8f\xb3\xc9\x84\xaa\xc0\x82\xa8\xbf\x8c\xaf\xca\ +\x91\xb0\xcd\x89\xa7\xc0\x7d\x9c\xb0\x7a\x9d\xb0\x80\xa5\xbb\x8a\ +\xaf\xc8\x8d\xb2\xcd\x8d\xb2\xca\x93\xb5\xcc\x9d\xbe\xd6\xa0\xc1\ +\xde\x99\xbd\xd8\x91\xb4\xce\x88\xad\xc7\x8c\xb2\xce\x91\xb7\xd3\ +\x8d\xb2\xce\x6f\x94\xa9\x43\x66\x75\x71\x93\xa3\x94\xb9\xd1\x98\ +\xbd\xda\x95\xbb\xd6\x93\xb9\xd3\x91\xb6\xcf\x93\xb8\xd3\x99\xbb\ +\xda\x9b\xbe\xdc\x9a\xbe\xdb\x94\xbb\xd6\x92\xbd\xd7\x93\xbd\xd8\ +\x95\xba\xd7\x93\xb8\xd6\x8d\xb7\xd7\x86\xb5\xd2\x89\xb7\xd3\x95\ +\xbc\xd9\x9a\xbe\xda\x9a\xbf\xd9\x99\xc0\xd6\x97\xbd\xd5\x96\xbb\ +\xd6\x93\xb5\xd2\x93\xb4\xd2\x98\xb6\xd7\x99\xb9\xd8\x99\xba\xd7\ +\x9b\xbe\xd8\x9f\xbf\xda\x9b\xbf\xd9\x96\xbd\xd7\x98\xbe\xd7\x98\ +\xbe\xd4\x95\xbc\xd2\x95\xba\xd6\x97\xb9\xd6\x9a\xb9\xd7\x9c\xba\ +\xd8\x9c\xba\xd7\x9c\xb9\xd4\x98\xb8\xd3\x94\xb6\xd4\x8f\xb2\xd1\ +\x8c\xaf\xcc\x8a\xac\xc8\x8b\xab\xc5\x87\xa6\xbd\x85\xa5\xba\x89\ +\xab\xc0\x8c\xad\xc5\x93\xb1\xcd\x93\xb6\xd1\x93\xb7\xd3\x91\xb8\ +\xd3\x8c\xb8\xd1\x8f\xb8\xd1\x92\xb8\xd2\x93\xb7\xd3\x8f\xb4\xce\ +\x8d\xb5\xcd\x8c\xb4\xcd\x8d\xb3\xce\x8b\xac\xcb\x81\xa1\xbc\x6b\ +\x8f\xa6\x60\x86\x9b\x5e\x86\x98\x66\x8f\xa0\x73\x9e\xb2\x7e\xa9\ +\xc2\x88\xaf\xcb\x8a\xb2\xcd\x83\xac\xc4\x6f\x97\xad\x56\x7e\x95\ +\x5b\x86\xa2\x5f\x8e\xac\x5e\x8e\xa9\x75\x9f\xbc\x82\xa8\xc7\x7c\ +\xa4\xbe\x6d\x99\xb0\x61\x8d\xa5\x68\x93\xaa\x81\xa8\xc0\x88\xaf\ +\xc8\x89\xb1\xcc\x8b\xaf\xcc\x8a\xaf\xcc\x8b\xad\xcc\x83\xa8\xc9\ +\x7e\xa5\xc8\x77\xa0\xc2\x6f\x9a\xbc\x6a\x92\xb4\x6a\x94\xb3\x70\ +\x9b\xb5\x79\xa1\xba\x7d\xa4\xbd\x84\xa9\xc1\x8e\xaf\xcb\x94\xb2\ +\xd0\x97\xb5\xd5\x94\xb7\xd4\x93\xb7\xd3\x95\xb6\xd2\x93\xb7\xd3\ +\x92\xb6\xd2\x94\xb7\xd3\x98\xb8\xd4\x9a\xb7\xd7\x96\xb5\xd6\x8f\ +\xb4\xd1\x8c\xb4\xce\x92\xb6\xd1\x94\xb4\xd3\x93\xb3\xd2\x93\xb4\ +\xd0\x91\xb3\xce\x96\xb3\xd2\x94\xb2\xd4\x8e\xb1\xd5\x8f\xb0\xd2\ +\x92\xb0\xd3\x91\xb1\xd1\x8d\xb2\xd0\x8a\xb1\xcf\x89\xaf\xd1\x85\ +\xae\xd0\x82\xaa\xca\x83\xa9\xc8\x8a\xa9\xcc\x8d\xaa\xd1\x88\xa7\ +\xd0\x80\xa7\xcd\x79\xa5\xc9\x77\xa5\xc8\x00\x00\x00\x7d\x9c\xb4\ +\x83\xa5\xbe\x68\x8e\xa6\x58\x7d\x92\x72\x93\xad\x78\x96\xb2\x62\ +\x7f\x98\x44\x63\x76\x44\x68\x7a\x4f\x76\x89\x67\x8e\xa3\x72\x95\ +\xac\x70\x91\xa6\x80\xa1\xb6\x97\xb9\xd1\x9f\xbf\xdd\x97\xb6\xd2\ +\x85\xa2\xbb\x6e\x8c\xa6\x72\x94\xae\x85\xaa\xc8\x8e\xb2\xd0\x78\ +\x9c\xb6\x4b\x6f\x81\x53\x78\x88\x8e\xb5\xcc\x9c\xc1\xdc\x9a\xbd\ +\xd6\x91\xb1\xc9\x7f\xa0\xb6\x80\xa0\xb5\x8f\xb0\xc7\x97\xba\xd1\ +\x98\xbd\xd7\x95\xba\xd8\x90\xb9\xd7\x8f\xba\xd4\x8d\xb5\xcf\x8f\ +\xb2\xd1\x8c\xb1\xd1\x83\xad\xc9\x85\xae\xc6\x90\xb3\xce\x98\xba\ +\xd7\x97\xbb\xd6\x96\xbc\xd4\x93\xb8\xd1\x8d\xad\xc8\x87\xa4\xbf\ +\x85\xa2\xbe\x86\xa5\xc2\x8d\xaf\xca\x91\xb7\xd2\x94\xbc\xd5\x96\ +\xbc\xd5\x93\xbc\xd5\x91\xbc\xd4\x92\xbb\xd3\x96\xbb\xd4\x94\xb8\ +\xd3\x92\xb6\xd3\x95\xb7\xd6\x97\xb8\xd7\x95\xb8\xd6\x96\xb9\xd6\ +\x97\xb6\xd3\x9b\xb7\xd8\x9a\xb6\xd8\x92\xb3\xd4\x8d\xaf\xcd\x82\ +\xa3\xbd\x77\x92\xaa\x6c\x86\x9a\x6b\x87\x99\x74\x94\xa5\x7e\x9d\ +\xb2\x8c\xa9\xc1\x91\xb1\xcb\x93\xb7\xd2\x93\xb8\xd2\x93\xba\xd3\ +\x92\xb8\xd2\x92\xb8\xd2\x92\xb7\xd2\x8c\xb4\xcd\x89\xb5\xca\x86\ +\xb5\xca\x8a\xb5\xcd\x88\xae\xc8\x7b\x98\xb4\x5c\x78\x90\x3f\x5f\ +\x73\x4c\x71\x84\x5c\x85\x97\x5c\x84\x98\x73\x98\xaf\x87\xaa\xc6\ +\x8e\xb0\xcd\x8d\xaf\xcb\x80\xa9\xbf\x6e\x9b\xb0\x69\x96\xb1\x6e\ +\x9c\xb9\x79\xa6\xc0\x86\xac\xc8\x88\xad\xca\x83\xab\xc8\x7b\xa3\ +\xc3\x6f\x97\xb6\x5e\x86\xa2\x6a\x92\xab\x83\xab\xc4\x8a\xaf\xcb\ +\x8e\xb2\xd0\x8e\xb2\xd0\x8e\xaf\xcf\x8d\xae\xce\x8a\xad\xcd\x85\ +\xaa\xc8\x7e\xa4\xc2\x74\x9f\xbc\x75\xa0\xbb\x7a\xa2\xbb\x7f\xa3\ +\xbd\x83\xa4\xbf\x8b\xab\xc5\x91\xae\xcc\x98\xb2\xd3\x9b\xb6\xd6\ +\x98\xb7\xd3\x95\xb6\xd3\x94\xb5\xd2\x92\xb3\xd0\x92\xb4\xcf\x93\ +\xb6\xd1\x98\xb9\xd6\x97\xb7\xd6\x91\xb4\xd4\x8e\xb6\xd2\x8b\xb4\ +\xcd\x90\xb5\xcf\x92\xb3\xd0\x95\xb4\xd3\x94\xb2\xce\x93\xb2\xcd\ +\x95\xb3\xd2\x97\xb3\xd7\x93\xb0\xd5\x8e\xb0\xd1\x8c\xb0\xd2\x8b\ +\xb0\xd1\x89\xaf\xd1\x89\xaf\xd1\x89\xae\xd2\x87\xaf\xd1\x85\xac\ +\xcc\x88\xa9\xca\x8f\xaa\xcf\x90\xa9\xd4\x8a\xa5\xd2\x81\xa2\xcb\ +\x7b\xa2\xc8\x7c\xa3\xca\x00\x00\x00\x85\xa9\xc4\x84\xab\xc4\x72\ +\x9c\xb4\x66\x8f\xa6\x76\x9c\xb6\x7c\x9e\xbb\x68\x8a\xa5\x4c\x71\ +\x88\x54\x7a\x93\x5f\x88\xa0\x67\x91\xa7\x63\x89\x9d\x5b\x80\x93\ +\x71\x98\xae\x94\xb8\xd3\xa0\xbe\xdd\x97\xb4\xcf\x79\x95\xad\x45\ +\x64\x7c\x58\x7d\x96\x7e\xa2\xc0\x8a\xae\xcc\x7f\xa1\xc0\x62\x83\ +\x9c\x4c\x6f\x86\x83\xaa\xc0\x9e\xc0\xd9\xa0\xbd\xd4\x84\xa1\xb6\ +\x54\x73\x84\x51\x6f\x7f\x78\x94\xa7\x94\xb3\xca\x9c\xbd\xd8\x99\ +\xbe\xdc\x95\xba\xd7\x8d\xb1\xcb\x83\xa6\xc0\x83\xa2\xbf\x89\xa5\ +\xc2\x7e\x9e\xb6\x78\x99\xaf\x80\x9e\xb7\x8b\xa8\xc3\x90\xb0\xcc\ +\x8f\xb1\xcb\x8c\xad\xc7\x7f\x9c\xb4\x6c\x87\xa1\x65\x80\x9a\x67\ +\x85\x9d\x74\x94\xab\x8a\xaf\xc8\x93\xb8\xd5\x92\xb8\xd3\x8d\xb8\ +\xcf\x89\xb4\xc9\x8c\xb2\xca\x90\xb0\xcb\x92\xb2\xce\x8e\xb0\xcf\ +\x8d\xaf\xd1\x8e\xb2\xd2\x8f\xb3\xd0\x8e\xb2\xcd\x91\xaf\xcd\x94\ +\xae\xd0\x94\xaf\xd1\x8c\xad\xcd\x86\xaa\xc4\x77\x98\xb0\x5c\x76\ +\x8e\x52\x69\x7d\x65\x7e\x92\x6d\x88\x9e\x68\x84\x99\x6d\x8a\xa1\ +\x83\xa2\xbc\x8c\xae\xc8\x92\xb4\xce\x94\xb7\xd1\x92\xb7\xd1\x90\ +\xb5\xcf\x90\xb5\xcf\x8b\xb2\xcb\x88\xb4\xca\x86\xb6\xcb\x89\xb4\ +\xcb\x89\xaf\xc9\x7d\x9d\xba\x60\x7e\x99\x57\x76\x8f\x70\x8e\xaa\ +\x72\x92\xae\x62\x85\x9c\x5f\x80\x97\x7d\x9d\xb6\x8c\xab\xc8\x90\ +\xaf\xcc\x8e\xb2\xcb\x87\xaf\xc6\x85\xac\xc6\x85\xae\xca\x89\xb1\ +\xcb\x8d\xb1\xcc\x8d\xb1\xcc\x87\xaf\xcb\x88\xac\xcc\x7f\xa4\xc4\ +\x6e\x95\xb4\x5a\x84\x9f\x6f\x98\xb1\x84\xaa\xc4\x8c\xb1\xcc\x8d\ +\xb1\xce\x92\xb0\xd1\x95\xb1\xd2\x93\xb1\xd0\x8f\xaf\xca\x87\xac\ +\xc3\x80\xab\xc0\x81\xab\xc1\x83\xa9\xbf\x86\xa5\xbe\x8c\xa8\xc3\ +\x92\xad\xcc\x96\xb0\xd0\x9b\xb2\xd0\x9d\xb4\xd2\x9b\xb7\xd1\x96\ +\xb5\xcf\x94\xb3\xcf\x94\xb3\xcf\x91\xb4\xd0\x93\xb5\xd1\x98\xb8\ +\xd5\x95\xb6\xd3\x8f\xb4\xd0\x8f\xb4\xd0\x90\xb5\xcf\x90\xb5\xcf\ +\x8f\xb4\xcf\x93\xb5\xd4\x94\xb2\xd1\x93\xb3\xd1\x95\xb2\xd4\x97\ +\xaf\xd5\x95\xae\xd3\x8f\xae\xcf\x8a\xaf\xd0\x86\xae\xcf\x86\xaf\ +\xd0\x84\xad\xd0\x83\xad\xd0\x84\xae\xcf\x86\xad\xcd\x8a\xaa\xcc\ +\x8d\xa8\xcd\x8e\xa8\xd0\x89\xa4\xce\x86\xa3\xc9\x82\xa2\xc7\x7e\ +\xa1\xc6\x00\x00\x00\x97\xbb\xd9\x93\xbb\xd5\x8a\xb6\xce\x85\xb2\ +\xcc\x8d\xb6\xd3\x97\xbb\xda\x93\xb9\xd4\x8b\xb5\xce\x8f\xb7\xd5\ +\x92\xb7\xd7\x90\xb5\xd1\x88\xae\xc5\x80\xa6\xbf\x88\xaf\xca\x98\ +\xbd\xd9\xa0\xc2\xde\x9b\xb9\xd4\x80\xa0\xb9\x63\x86\xa2\x6a\x90\ +\xae\x82\xa8\xc7\x8d\xb1\xd1\x84\xa8\xc8\x6f\x91\xb0\x55\x77\x92\ +\x70\x95\xad\x9b\xbc\xd6\xa2\xbd\xd7\x88\xa3\xb9\x59\x76\x89\x3a\ +\x56\x69\x50\x68\x7f\x89\xa4\xbc\x9a\xb9\xd4\x9a\xbc\xd8\x97\xb7\ +\xd3\x88\xa6\xc1\x6a\x8a\xa3\x5f\x7e\x97\x6a\x86\xa0\x5f\x7c\x94\ +\x55\x74\x8b\x66\x84\x9e\x77\x94\xaf\x79\x98\xb3\x7a\x9a\xb4\x77\ +\x96\xb0\x6d\x88\xa2\x57\x71\x8c\x4c\x6a\x81\x4a\x6b\x7d\x57\x77\ +\x8d\x81\xa4\xc0\x91\xb4\xd3\x8e\xb3\xd0\x86\xac\xc6\x7c\xa1\xb8\ +\x75\x98\xae\x7c\x9b\xb3\x84\xa1\xbb\x82\xa2\xc0\x7d\xa0\xc0\x7f\ +\xa3\xc0\x81\xa6\xbe\x82\xa2\xbb\x7f\x9c\xb6\x80\x9a\xb6\x81\x9d\ +\xba\x80\xa1\xbe\x7c\x9e\xb8\x6e\x8d\xa6\x54\x70\x88\x56\x6d\x84\ +\x6d\x82\x9a\x6f\x83\x9b\x5e\x74\x88\x4a\x65\x77\x66\x85\x9e\x83\ +\xa1\xbc\x8c\xaa\xc6\x8a\xac\xc6\x86\xab\xc5\x89\xab\xc6\x8c\xae\ +\xc8\x89\xae\xc8\x8c\xb3\xca\x8a\xb6\xca\x8b\xb4\xcb\x8b\xb1\xcc\ +\x86\xa9\xc5\x76\x9a\xb7\x73\x97\xb1\x82\x9e\xbe\x84\x9d\xbe\x75\ +\x92\xad\x62\x81\x9b\x6b\x8f\xa6\x81\xa4\xbe\x8c\xaf\xca\x8e\xb2\ +\xce\x90\xb2\xce\x8e\xaf\xcd\x8e\xb2\xce\x8b\xb1\xcd\x8c\xb2\xcd\ +\x8b\xb2\xcc\x8b\xb2\xcd\x8b\xae\xcd\x88\xaa\xc8\x7b\xa1\xbf\x67\ +\x91\xae\x64\x8b\xa6\x77\x9a\xb5\x85\xa6\xc3\x8c\xac\xcb\x91\xaf\ +\xce\x94\xaf\xd0\x95\xb0\xd1\x91\xb1\xcb\x8d\xb0\xc6\x89\xb0\xc3\ +\x88\xac\xc0\x89\xaa\xc0\x87\xa6\xc1\x8d\xab\xc7\x96\xb0\xd1\x9a\ +\xb3\xd5\x9d\xb2\xd2\x9f\xb4\xd3\x9c\xb5\xd3\x99\xb5\xd0\x93\xb2\ +\xcc\x8f\xb2\xcc\x90\xb4\xd1\x93\xb5\xd3\x98\xb6\xd3\x98\xb7\xd3\ +\x93\xb6\xd0\x91\xb6\xcf\x94\xb7\xd1\x95\xb6\xd2\x92\xb3\xd0\x94\ +\xb3\xd3\x92\xb1\xd4\x94\xb2\xd6\x96\xb0\xd5\x9b\xae\xd6\x98\xae\ +\xd4\x8f\xac\xd0\x88\xac\xcf\x86\xac\xce\x84\xad\xcd\x83\xac\xce\ +\x81\xab\xcd\x80\xaa\xca\x84\xa9\xca\x86\xa8\xcb\x88\xa8\xcc\x86\ +\xa6\xcc\x86\xa6\xcd\x87\xa3\xc8\x84\xa3\xc5\x7e\xa2\xc1\x00\x00\ +\x00\x9f\xc2\xe0\x9c\xc0\xde\x98\xbf\xda\x96\xbc\xda\x9a\xbe\xde\ +\xa0\xc2\xe1\x9c\xc5\xde\x96\xc3\xda\x98\xc1\xdc\x9e\xc1\xde\x9f\ +\xc0\xdd\x9f\xbf\xdb\x9a\xbe\xdc\x9c\xc0\xdd\x9e\xc3\xde\xa1\xc5\ +\xdd\x9f\xc1\xd8\x95\xba\xd2\x8c\xb1\xcd\x85\xac\xc9\x8a\xb1\xcd\ +\x90\xb6\xd4\x91\xb4\xd4\x83\xa7\xc6\x6c\x8f\xad\x5e\x80\x9d\x90\ +\xb0\xcd\xa1\xbd\xdb\x9c\xba\xd3\x87\xa4\xbe\x67\x82\x9d\x46\x5f\ +\x7b\x6b\x86\xa1\x99\xb7\xd2\x99\xba\xd4\x95\xb4\xd1\x83\xa0\xbd\ +\x67\x89\xa1\x51\x74\x8b\x5a\x7a\x94\x5b\x7a\x94\x59\x79\x94\x69\ +\x8c\xa7\x7a\x9e\xb9\x72\x91\xac\x58\x75\x90\x4e\x6c\x86\x51\x6e\ +\x8a\x4c\x69\x87\x3b\x5d\x75\x3a\x5c\x70\x5b\x7a\x92\x86\xa7\xc3\ +\x96\xb5\xd6\x8f\xb0\xd0\x7e\xa1\xbf\x6c\x8c\xa8\x51\x73\x8a\x54\ +\x74\x8b\x68\x86\xa0\x66\x86\xa4\x5a\x7e\x9b\x59\x7e\x98\x62\x87\ +\x9d\x64\x85\x9c\x5c\x7a\x8e\x5b\x77\x8b\x66\x84\x9c\x6c\x8c\xa8\ +\x67\x88\xa2\x5f\x7f\x97\x5c\x78\x92\x5e\x76\x90\x60\x75\x8b\x5b\ +\x6d\x7f\x43\x56\x67\x31\x49\x5b\x54\x71\x8a\x74\x8e\xad\x7e\x97\ +\xb9\x7f\x9a\xb8\x76\x95\xb1\x71\x90\xa9\x78\x99\xb3\x84\xa5\xbf\ +\x8d\xad\xc6\x8e\xb0\xc7\x8c\xb2\xc8\x89\xaf\xc8\x89\xae\xc9\x84\ +\xa9\xc4\x84\xa8\xc2\x8c\xa8\xc7\x8b\xa3\xc6\x84\x9d\xbf\x76\x95\ +\xb4\x74\x99\xb4\x7f\xa5\xbf\x89\xaf\xca\x8c\xb0\xce\x91\xb0\xd0\ +\x90\xae\xcf\x8b\xad\xcb\x8a\xaf\xcb\x87\xae\xcb\x86\xad\xcb\x89\ +\xae\xcb\x8b\xad\xcb\x8a\xab\xc8\x84\xa9\xc6\x77\x9c\xbd\x6a\x8e\ +\xad\x67\x88\xa4\x77\x94\xb1\x81\x9d\xbc\x88\xa5\xc4\x8b\xa8\xca\ +\x8f\xab\xcc\x90\xad\xca\x8f\xb0\xc8\x8e\xb1\xc5\x90\xae\xc2\x8a\ +\xa7\xc0\x8b\xa7\xc5\x92\xad\xcf\x99\xb1\xd5\x9b\xb3\xd7\x9a\xb2\ +\xd4\x9b\xb3\xd3\x9a\xb4\xd2\x98\xb4\xd1\x93\xb1\xcd\x91\xb3\xd0\ +\x90\xb2\xd1\x93\xb4\xd3\x97\xb5\xd2\x96\xb5\xd1\x94\xb6\xd0\x94\ +\xb7\xd1\x95\xb5\xd2\x98\xb6\xd5\x98\xb3\xd2\x94\xb0\xce\x92\xb0\ +\xd2\x8f\xaf\xd2\x93\xaf\xd3\x98\xad\xd1\x97\xae\xd2\x91\xac\xd3\ +\x8a\xaa\xd0\x87\xab\xcb\x87\xad\xc9\x86\xac\xcb\x84\xaa\xcb\x82\ +\xa7\xc8\x84\xa6\xc8\x86\xa5\xc8\x86\xa5\xc7\x86\xa6\xc8\x89\xa7\ +\xcb\x89\xa7\xca\x84\xa6\xc8\x7e\xa3\xc5\x00\x00\x00\xa3\xc3\xe3\ +\x9e\xc2\xe1\x9c\xc0\xe0\x9e\xbf\xe1\xa0\xbe\xe1\xa0\xc1\xe3\x99\ +\xc3\xdf\x95\xc2\xdb\x9b\xc3\xdc\x9d\xc2\xdc\x9d\xc2\xdc\xa2\xc4\ +\xe0\xa3\xc4\xe1\xa4\xc5\xe1\xa2\xc5\xdf\xa4\xc6\xe0\xa1\xc4\xdc\ +\x9b\xc2\xd7\x94\xb9\xd2\x85\xab\xc4\x7c\xa1\xbc\x85\xaa\xc6\x92\ +\xb4\xd2\x90\xb2\xd2\x81\xa3\xc4\x65\x86\xa7\x7c\x9a\xb8\x99\xb6\ +\xd1\x9c\xbc\xd7\x92\xb3\xd0\x7c\x9a\xb6\x52\x6e\x88\x4f\x6c\x83\ +\x8f\xad\xc6\x9c\xbb\xd7\x99\xb8\xd7\x90\xb0\xcf\x82\xa7\xc3\x7c\ +\xa5\xbd\x84\xa9\xc5\x81\xa2\xc0\x7b\x9e\xbd\x7c\xa3\xbf\x82\xae\ +\xc7\x82\xaa\xc4\x68\x8e\xa8\x4d\x72\x8e\x53\x76\x93\x5e\x7e\x9f\ +\x57\x76\x93\x42\x62\x7a\x6a\x89\xa0\x8f\xaf\xc8\x99\xb7\xd3\x96\ +\xb4\xd3\x86\xa7\xc8\x6f\x93\xb1\x58\x7e\x97\x5a\x80\x97\x6a\x8c\ +\xa7\x5e\x81\xa0\x4a\x6e\x8b\x48\x6d\x88\x55\x7a\x93\x52\x79\x90\ +\x46\x6c\x7e\x4b\x6f\x82\x64\x86\x9d\x6d\x91\xab\x5a\x7f\x95\x4c\ +\x6f\x82\x5a\x7b\x91\x62\x7f\x98\x5e\x74\x89\x44\x56\x65\x25\x38\ +\x47\x38\x4f\x64\x5f\x79\x96\x6b\x84\xa7\x6c\x83\xa5\x6b\x84\xa1\ +\x5d\x77\x90\x44\x62\x76\x5a\x7a\x91\x7b\x9a\xb4\x8e\xab\xc7\x92\ +\xb0\xcb\x8d\xaf\xc8\x89\xac\xc3\x86\xa8\xc0\x83\xa3\xba\x85\xa1\ +\xb9\x87\xa1\xbd\x85\x9d\xbf\x7e\x98\xb9\x78\x99\xb6\x7b\xa0\xbb\ +\x7f\xa4\xbf\x83\xa9\xc4\x85\xa8\xc5\x8d\xa9\xca\x8d\xa6\xc8\x88\ +\xa5\xc5\x87\xa8\xc5\x86\xa8\xc5\x82\xa5\xc3\x84\xa4\xc3\x87\xa3\ +\xc2\x89\xa5\xc4\x89\xa9\xc8\x82\xa3\xc5\x76\x98\xb7\x67\x85\xa2\ +\x63\x80\x9b\x72\x8e\xac\x77\x96\xb4\x7a\x98\xb7\x82\x9d\xbc\x83\ +\x9e\xbc\x85\xa4\xbf\x88\xa9\xc5\x8e\xab\xc5\x8b\xa6\xc3\x8c\xa7\ +\xc6\x94\xae\xd0\x99\xb1\xd5\x99\xb1\xd5\x9b\xb4\xd6\x9a\xb4\xd4\ +\x97\xb2\xcf\x95\xb3\xcf\x95\xb5\xd3\x94\xb3\xd3\x94\xb4\xd7\x8f\ +\xb2\xd3\x90\xb3\xd0\x91\xb5\xd0\x91\xb4\xce\x96\xb4\xd1\x9a\xb4\ +\xd4\x99\xb4\xd1\x97\xb1\xcf\x93\xae\xcb\x92\xb0\xce\x8d\xb0\xcf\ +\x8e\xae\xd0\x93\xac\xcf\x97\xac\xd4\x96\xad\xd6\x90\xac\xd0\x8c\ +\xac\xca\x89\xad\xc7\x89\xae\xca\x86\xaa\xcb\x84\xa6\xc7\x85\xa3\ +\xc4\x8a\xa4\xc6\x89\xa2\xc5\x89\xa4\xc6\x88\xa5\xc7\x86\xa5\xc8\ +\x82\xa3\xca\x7c\xa0\xc7\x00\x00\x00\xa2\xc0\xe4\x9d\xc0\xe6\x9a\ +\xbd\xe3\x9c\xbc\xe4\xa0\xbe\xe4\x9f\xc3\xe7\x9a\xc5\xe4\x9a\xc4\ +\xe0\x9e\xc3\xdf\x9f\xc2\xdf\x9f\xc4\xe1\xa0\xc5\xe2\xa5\xc6\xe4\ +\xa7\xc5\xe2\xa8\xc6\xe3\xa6\xc5\xe2\x9f\xc4\xe0\x9b\xc3\xdc\x92\ +\xb7\xd1\x7e\xa2\xbe\x60\x84\xa1\x67\x8f\xa9\x84\xa9\xc4\x94\xb7\ +\xd4\x92\xb1\xd1\x7c\x9a\xba\x6d\x8a\xa7\x88\xa6\xc1\x97\xb5\xd1\ +\x96\xb6\xd3\x88\xa8\xc5\x66\x87\xa0\x43\x63\x7a\x7a\x98\xb0\x9e\ +\xbb\xd9\x9e\xbd\xde\x9b\xbb\xde\x97\xbb\xdb\x99\xbd\xdb\x97\xbc\ +\xdc\x98\xb9\xda\x95\xb6\xd7\x93\xb8\xd6\x92\xba\xd6\x91\xb7\xd5\ +\x85\xad\xcc\x75\xa1\xc1\x6f\x98\xb8\x75\x99\xba\x72\x90\xb0\x55\ +\x73\x8d\x65\x88\x9d\x8b\xaf\xc5\x9b\xba\xd5\x99\xb9\xd6\x90\xb2\ +\xd3\x87\xab\xcb\x82\xa5\xc5\x84\xaa\xc5\x89\xac\xcc\x84\xa6\xc9\ +\x7c\x9f\xc0\x77\x9b\xb9\x7a\xa0\xbc\x75\x9e\xb5\x60\x8a\xa1\x59\ +\x7f\x9a\x6c\x91\xae\x7b\xa3\xbe\x77\xa1\xb7\x67\x90\xa1\x61\x88\ +\x9c\x66\x86\xa0\x5d\x74\x8d\x3c\x4d\x61\x27\x3a\x4c\x4d\x62\x7c\ +\x69\x81\xa3\x70\x8b\xae\x68\x83\xa3\x5d\x77\x90\x57\x71\x84\x3a\ +\x56\x67\x3d\x5c\x70\x71\x90\xaa\x8c\xa8\xc8\x92\xae\xce\x87\xa9\ +\xc4\x7c\xa2\xb9\x79\x99\xb0\x72\x8b\xa3\x71\x86\x9e\x73\x8a\xa6\ +\x71\x8a\xac\x64\x7e\x9c\x5e\x80\x98\x6c\x90\xa9\x70\x95\xac\x6f\ +\x92\xa9\x74\x94\xac\x7c\x96\xb5\x7d\x96\xb7\x77\x92\xaf\x7d\x99\ +\xb4\x7e\x99\xb5\x79\x96\xb1\x72\x8f\xa8\x75\x8e\xa9\x7e\x98\xb5\ +\x85\xa0\xc1\x80\xa0\xc0\x76\x95\xb1\x66\x82\x9d\x54\x70\x8a\x58\ +\x73\x8e\x64\x82\x9b\x69\x83\x9d\x68\x7f\x98\x6c\x82\x9e\x74\x8e\ +\xa9\x7f\x9c\xb8\x86\xa3\xc0\x87\xa5\xc2\x8d\xab\xc9\x92\xaf\xce\ +\x96\xb2\xd2\x98\xb3\xd4\x96\xb3\xd1\x99\xb5\xd4\x96\xb5\xd3\x92\ +\xb5\xd2\x92\xb5\xd3\x93\xb3\xd4\x92\xb4\xd5\x8e\xb1\xd1\x90\xb5\ +\xd1\x91\xb6\xd0\x91\xb5\xd1\x97\xb5\xd6\x99\xb3\xd3\x98\xb2\xd0\ +\x95\xaf\xcd\x94\xaf\xcc\x90\xb1\xce\x8e\xb2\xd0\x8f\xaf\xd2\x92\ +\xab\xcf\x96\xad\xd2\x94\xab\xd3\x93\xab\xd2\x90\xab\xcc\x8c\xaf\ +\xc9\x89\xad\xca\x86\xaa\xcd\x87\xa8\xcd\x8b\xa6\xcc\x8c\xa4\xcb\ +\x8a\xa1\xc9\x89\xa0\xc8\x89\xa2\xc8\x86\xa1\xc8\x83\xa3\xcb\x80\ +\xa0\xc9\x00\x00\x00\x99\xbb\xe0\x97\xbc\xe3\x93\xbb\xe2\x96\xba\ +\xe2\x9a\xbc\xe5\x9a\xc1\xe5\x99\xc4\xe4\x9d\xc3\xe3\xa1\xc1\xe4\ +\xa4\xc3\xe6\xa2\xc3\xe5\xa0\xc4\xe4\xa2\xc2\xe3\xa6\xc3\xe3\xa6\ +\xc0\xe3\xa3\xc0\xe2\x9d\xc0\xe1\x99\xbe\xdd\x93\xb8\xd5\x84\xaa\ +\xc7\x6b\x94\xb1\x6a\x96\xb2\x85\xaa\xc8\x94\xb6\xd5\x96\xb7\xd6\ +\x8c\xae\xca\x7a\x9c\xb7\x79\x9c\xb8\x87\xa8\xc8\x91\xb0\xd1\x8b\ +\xac\xca\x6f\x95\xae\x4c\x6f\x85\x64\x84\x9c\x9b\xb4\xd5\xa4\xc0\ +\xe2\xa1\xc0\xe2\xa2\xc1\xe3\xa0\xc1\xe3\x9e\xbf\xdf\xa0\xbf\xde\ +\xa1\xbe\xde\x9f\xbf\xde\x9a\xbf\xdb\x95\xbd\xda\x8f\xba\xd8\x8d\ +\xb6\xd7\x89\xb0\xcf\x8a\xaa\xc9\x81\x9b\xbb\x65\x82\x9c\x5d\x7f\ +\x93\x88\xac\xc3\x98\xb9\xd4\x9c\xbd\xda\x9a\xba\xda\x99\xb9\xda\ +\x94\xb7\xd8\x93\xb5\xd5\x9b\xbb\xda\x98\xb8\xd9\x92\xb6\xd6\x90\ +\xb4\xd5\x90\xb4\xd1\x8a\xaf\xca\x7f\xa5\xbf\x79\x9c\xbc\x7c\xa2\ +\xc3\x84\xae\xcc\x88\xb2\xca\x84\xac\xc1\x7c\xa2\xbb\x73\x97\xb2\ +\x63\x80\x9a\x3b\x51\x69\x37\x4d\x65\x53\x6a\x86\x60\x79\x97\x67\ +\x84\x9f\x65\x82\x9a\x58\x76\x86\x60\x79\x89\x54\x6d\x7f\x38\x54\ +\x65\x61\x81\x98\x88\xa5\xc5\x8f\xaa\xcd\x83\xa5\xc3\x75\x9b\xb6\ +\x6c\x8e\xa9\x5d\x79\x94\x58\x73\x8c\x62\x7c\x9a\x63\x7c\x9e\x57\ +\x73\x91\x4d\x70\x87\x56\x7b\x92\x55\x78\x8f\x4a\x69\x7f\x4c\x6a\ +\x82\x5e\x79\x97\x5e\x78\x98\x5c\x77\x93\x6a\x82\x9e\x70\x87\xa1\ +\x66\x81\x96\x54\x72\x83\x53\x71\x83\x6d\x8a\xa3\x7e\x97\xb8\x80\ +\x9c\xbc\x73\x8d\xa7\x5a\x70\x88\x3d\x55\x6e\x3f\x59\x73\x40\x5a\ +\x71\x45\x5a\x6e\x3f\x52\x65\x55\x6a\x80\x69\x80\x96\x70\x89\xa1\ +\x7d\x9a\xb2\x7f\xa1\xba\x86\xaa\xc3\x8f\xb0\xcb\x95\xb1\xd0\x94\ +\xb1\xcd\x95\xb2\xcd\x94\xb3\xcf\x94\xb6\xd4\x92\xb6\xd3\x93\xb7\ +\xd4\x92\xb5\xd2\x90\xb3\xd3\x90\xb3\xd2\x92\xb5\xd0\x96\xb7\xd1\ +\x97\xb4\xd2\x96\xb2\xd3\x99\xb3\xd1\x99\xb2\xd0\x97\xb0\xd0\x97\ +\xb1\xd3\x92\xb4\xd4\x92\xb4\xd4\x92\xaf\xd1\x94\xae\xd0\x98\xaf\ +\xd0\x98\xad\xd2\x99\xad\xd5\x94\xaa\xce\x8d\xac\xca\x8a\xac\xca\ +\x89\xa9\xcd\x8c\xa7\xcf\x8c\xa4\xce\x8b\xa3\xce\x8a\xa0\xcd\x89\ +\x9f\xcb\x8c\xa2\xca\x89\xa1\xc9\x83\xa0\xc8\x82\xa0\xc8\x00\x00\ +\x00\x94\xb6\xda\x94\xb8\xdf\x91\xb9\xe0\x90\xb8\xdf\x90\xb8\xe0\ +\x93\xbf\xe3\x99\xc2\xe3\xa1\xc2\xe4\xa5\xc1\xe7\xa4\xc3\xe8\xa0\ +\xc1\xe5\x9c\xbd\xe0\x9d\xbc\xdf\x9f\xbc\xde\x9e\xbb\xde\x9e\xbb\ +\xe0\x9a\xbc\xe0\x98\xba\xdc\x93\xb9\xd8\x89\xb1\xd1\x7f\xaa\xc9\ +\x7d\xa9\xc6\x88\xad\xcf\x90\xb2\xd4\x96\xb7\xd9\x93\xb7\xd5\x8c\ +\xb0\xcd\x87\xab\xc9\x84\xa8\xc9\x84\xa9\xc7\x85\xa8\xc3\x74\x9a\ +\xb3\x56\x79\x90\x59\x77\x90\x94\xae\xcc\xa2\xbe\xe0\xa1\xc1\xe2\ +\xa2\xc1\xe1\x9f\xc1\xdf\x9f\xc1\xdd\xa0\xbe\xd8\xa2\xbd\xd9\xa1\ +\xbd\xdb\x9e\xbe\xdb\x99\xbf\xda\x95\xbe\xd9\x93\xb9\xd6\x8f\xb2\ +\xcf\x8a\xa7\xc3\x7d\x96\xb2\x69\x82\x9b\x54\x73\x88\x86\xa7\xc0\ +\x99\xb9\xd7\x9f\xbe\xdf\xa0\xbd\xdd\xa1\xbd\xdc\x9b\xb9\xd8\x9b\ +\xbb\xd7\xa1\xbe\xd9\xa1\xbe\xda\x9c\xbe\xdb\x96\xba\xda\x94\xba\ +\xd7\x91\xb5\xcd\x89\xac\xc4\x85\xa5\xc1\x85\xa8\xc6\x8b\xb2\xcd\ +\x90\xb6\xce\x8f\xb3\xcd\x8b\xb0\xcb\x80\xa5\xc4\x6b\x8d\xab\x4b\ +\x69\x83\x40\x5d\x75\x51\x6e\x87\x5a\x76\x8f\x5b\x75\x8d\x5f\x7c\ +\x8f\x58\x77\x83\x5b\x76\x82\x66\x7c\x8c\x3e\x58\x69\x53\x73\x88\ +\x81\xa1\xbd\x88\xa7\xc9\x7f\xa3\xc4\x77\x9e\xbf\x72\x95\xb8\x69\ +\x8a\xac\x64\x87\xa6\x6f\x93\xb0\x77\x95\xb7\x71\x8f\xaf\x6d\x90\ +\xac\x73\x96\xb1\x6b\x8c\xa7\x62\x81\x9a\x61\x7f\x9b\x6c\x8a\xaa\ +\x6c\x8a\xaa\x65\x82\x9e\x70\x8a\xa5\x7a\x92\xab\x6f\x8b\xa1\x5b\ +\x7c\x90\x59\x7d\x91\x6f\x90\xac\x82\x9d\xbf\x80\x99\xbc\x6d\x85\ +\xa1\x46\x5b\x74\x39\x4f\x6c\x45\x5e\x7b\x3b\x50\x6b\x3d\x50\x67\ +\x48\x5d\x73\x5b\x73\x8b\x62\x7a\x92\x61\x78\x8f\x71\x8b\xa3\x7e\ +\x9f\xb6\x88\xac\xc3\x91\xaf\xc9\x97\xb0\xce\x99\xb1\xcc\x99\xb1\ +\xcd\x96\xb0\xce\x94\xb4\xd0\x93\xb7\xd1\x94\xb7\xd5\x95\xb4\xd5\ +\x8f\xb1\xd2\x91\xb2\xd0\x96\xb5\xcf\x9a\xb7\xd1\x9c\xb4\xd2\x9a\ +\xb3\xd3\x9a\xb3\xd4\x9a\xb1\xd3\x97\xae\xd0\x97\xaf\xd3\x96\xb4\ +\xd5\x90\xb2\xd2\x8f\xb1\xce\x91\xb0\xcd\x94\xb0\xcc\x95\xaf\xd0\ +\x96\xae\xd3\x95\xaa\xcf\x91\xab\xcd\x8e\xab\xcb\x8b\xa8\xcb\x8c\ +\xa7\xcd\x8b\xa6\xcb\x89\xa3\xca\x86\x9d\xc8\x89\x9e\xc8\x8b\x9f\ +\xc7\x87\xa0\xc7\x83\x9f\xc5\x82\x9f\xc4\x00\x00\x00\x92\xb4\xd7\ +\x91\xb4\xda\x8e\xb5\xd9\x8c\xb6\xda\x8d\xb9\xdd\x91\xbc\xdf\x9a\ +\xc0\xe1\xa3\xc0\xe3\xa5\xc0\xe6\x9e\xbf\xe5\x9a\xbd\xe0\x97\xb9\ +\xdb\x97\xb5\xd9\x97\xb5\xd8\x98\xb6\xd9\x98\xb6\xdb\x97\xb9\xdc\ +\x96\xba\xdc\x91\xb7\xda\x8b\xb1\xd3\x85\xab\xce\x84\xac\xcd\x85\ +\xad\xcf\x8e\xb3\xd7\x95\xb8\xdb\x96\xba\xd9\x93\xb7\xd5\x91\xb4\ +\xd2\x8e\xaf\xcf\x88\xab\xc9\x82\xa8\xc2\x76\x9b\xb6\x64\x85\xa0\ +\x63\x80\x9b\x8f\xa9\xc7\xa0\xbd\xdb\x9f\xbf\xdd\x9e\xbf\xdc\x9d\ +\xc0\xdb\x9b\xbd\xd9\x9e\xbd\xd8\xa1\xbb\xd8\xa3\xbb\xda\xa2\xbc\ +\xd7\x9f\xbf\xd6\x97\xbc\xd4\x91\xb5\xd1\x87\xa6\xc3\x75\x91\xab\ +\x64\x80\x97\x60\x7e\x93\x53\x76\x8a\x83\xa7\xbf\x9a\xb9\xd9\x9e\ +\xbc\xdd\xa1\xbc\xdc\xa1\xbc\xda\x9f\xbd\xd9\x9e\xbc\xd6\xa0\xc0\ +\xd8\xa1\xc0\xda\x9d\xbd\xdb\x9c\xbc\xdd\x98\xbd\xd9\x91\xb6\xcd\ +\x84\xa6\xbb\x78\x97\xaf\x7c\x9b\xb6\x8b\xae\xc7\x92\xb5\xcc\x96\ +\xb5\xd0\x90\xb1\xd0\x8a\xae\xce\x7b\x9e\xbe\x69\x88\xa6\x56\x75\ +\x91\x55\x75\x90\x5c\x7a\x95\x59\x74\x90\x62\x7f\x95\x5d\x7b\x89\ +\x55\x71\x7d\x62\x78\x88\x42\x5c\x6d\x46\x69\x7c\x77\x9e\xb8\x80\ +\xa7\xc3\x82\xa9\xc8\x83\xa6\xc9\x81\xa1\xc8\x7c\x9f\xc5\x7a\xa2\ +\xc4\x7e\xa5\xc5\x85\xa6\xc9\x8a\xa9\xcc\x8b\xaa\xcb\x8d\xaa\xc9\ +\x85\xa4\xc4\x82\xa0\xc1\x7f\x9f\xc0\x81\xa4\xc4\x80\xa3\xc2\x7c\ +\x9d\xba\x82\xa0\xbb\x89\xa5\xbf\x83\xa2\xbb\x76\x9a\xb3\x70\x96\ +\xb4\x78\x9d\xbf\x83\xa3\xc7\x7d\x9c\xbc\x68\x84\xa0\x46\x60\x7b\ +\x48\x63\x80\x5b\x75\x95\x53\x6a\x87\x4e\x64\x7f\x5e\x78\x94\x64\ +\x82\xa1\x65\x83\x9f\x5c\x77\x91\x6b\x89\xa1\x81\xa2\xba\x8b\xaf\ +\xc6\x93\xb0\xcc\x99\xb2\xd0\x9a\xb2\xcf\x9c\xb2\xd3\x98\xb0\xd3\ +\x97\xb4\xd4\x96\xb6\xd4\x99\xb6\xd7\x98\xb3\xd6\x94\xb0\xd2\x95\ +\xb2\xd0\x96\xb5\xcf\x98\xb5\xd0\x9c\xb4\xd3\x9a\xb2\xd3\x9a\xb2\ +\xd6\x9a\xb2\xd6\x99\xae\xd2\x99\xae\xd3\x96\xb1\xd3\x91\xb1\xcf\ +\x8c\xb1\xcd\x8d\xb1\xcc\x90\xaf\xcd\x91\xaf\xd1\x90\xac\xd0\x90\ +\xa9\xcf\x91\xa9\xcd\x8f\xaa\xcd\x8d\xa7\xcb\x8d\xa8\xcb\x87\xa5\ +\xc9\x84\xa3\xc8\x84\x9f\xc6\x85\x9d\xc5\x85\x9b\xc2\x82\x9d\xc2\ +\x7e\x9d\xc2\x80\x9e\xc3\x00\x00\x00\x91\xaf\xcf\x8c\xaf\xd1\x89\ +\xb1\xd3\x88\xb1\xd2\x8a\xb1\xd2\x90\xb5\xd3\x98\xb8\xd6\x9d\xb7\ +\xda\x9c\xba\xdc\x96\xba\xdb\x91\xb7\xd8\x91\xb4\xd6\x90\xb1\xd5\ +\x95\xb3\xd5\x92\xb1\xd2\x95\xb4\xd4\x94\xb5\xd6\x92\xb8\xd8\x8d\ +\xb2\xd6\x8a\xab\xd0\x85\xa7\xcd\x82\xa8\xcb\x7f\xaa\xcc\x85\xb0\ +\xd1\x90\xb7\xd8\x95\xb9\xd8\x96\xb8\xd4\x95\xb2\xcf\x92\xaf\xce\ +\x92\xb2\xd2\x8a\xaf\xcb\x80\xa4\xc1\x77\x98\xb4\x7b\x99\xb2\x97\ +\xb2\xcd\xa2\xc0\xdc\x9e\xbe\xdb\x9a\xba\xd7\x94\xb7\xd4\x96\xb8\ +\xd7\x9a\xb7\xd7\xa0\xb8\xda\xa3\xb9\xd8\xa4\xb9\xd5\xa1\xbb\xd3\ +\x9a\xb8\xd1\x90\xaf\xcc\x80\x9b\xb8\x62\x7e\x95\x53\x72\x86\x57\ +\x7b\x8f\x5e\x85\x9b\x88\xad\xc7\x9a\xb9\xda\x9c\xb8\xd9\x9c\xb9\ +\xd7\x9c\xb9\xd5\x9e\xbb\xd6\xa2\xbd\xd8\x9f\xbc\xd8\x9d\xbd\xd9\ +\xa0\xbf\xdc\xa0\xbd\xdd\x9b\xbc\xda\x95\xb6\xcf\x85\xa3\xba\x6e\ +\x8c\xa4\x75\x94\xaf\x88\xab\xc5\x94\xb4\xce\x97\xb5\xd2\x96\xb5\ +\xd3\x93\xb3\xd3\x92\xad\xd1\x86\xa0\xc5\x7a\x95\xb8\x68\x89\xaa\ +\x65\x86\xa6\x66\x84\xa4\x6e\x8a\xa5\x62\x7d\x90\x4f\x67\x77\x5a\ +\x6e\x80\x45\x5d\x6e\x45\x68\x7b\x77\xa0\xb9\x80\xad\xc5\x85\xad\ +\xc7\x8c\xae\xcb\x8e\xab\xcc\x8b\xac\xcd\x8a\xb0\xd0\x8b\xae\xcf\ +\x91\xaf\xd4\x92\xae\xd3\x94\xb0\xd2\x92\xb0\xcf\x8e\xad\xce\x89\ +\xa9\xcb\x85\xa7\xc9\x83\xa7\xc4\x83\xa8\xc2\x81\xa7\xc1\x85\xa8\ +\xc2\x8a\xac\xc7\x8d\xae\xca\x84\xa9\xc6\x7f\xa7\xcb\x81\xa8\xcd\ +\x83\xa8\xc9\x7d\xa1\xbf\x6e\x8f\xab\x55\x76\x90\x4d\x6f\x8b\x67\ +\x85\xa2\x67\x82\x9d\x5b\x74\x8f\x64\x85\xa1\x70\x96\xb2\x6d\x90\ +\xae\x67\x86\xa3\x74\x92\xae\x86\xa7\xc0\x90\xb1\xca\x97\xb4\xd1\ +\x99\xb4\xd1\x99\xb3\xd0\x9c\xb3\xd3\x9c\xb2\xd4\x99\xb3\xd5\x99\ +\xb3\xd5\x9a\xb3\xd6\x9b\xb3\xd7\x99\xb2\xd5\x95\xb3\xd1\x94\xb5\ +\xd0\x95\xb5\xd0\x98\xb4\xd0\x98\xb1\xd3\x96\xb1\xd3\x96\xaf\xd2\ +\x97\xae\xcf\x98\xac\xcd\x94\xad\xce\x91\xad\xcc\x8c\xb0\xce\x88\ +\xac\xca\x89\xac\xcc\x88\xab\xcc\x87\xa9\xca\x88\xa9\xca\x88\xa6\ +\xcb\x8c\xa8\xcd\x8d\xa7\xcc\x89\xa4\xc9\x84\xa4\xc9\x80\xa2\xc6\ +\x82\xa1\xc5\x81\x9e\xc1\x7f\x9c\xbf\x7a\x9c\xbf\x7b\x9d\xc1\x7c\ +\x9c\xc1\x00\x00\x00\x7e\x99\xb8\x7e\x9e\xc1\x80\xa3\xc5\x7c\x9f\ +\xc0\x7a\x9c\xb7\x7c\x9c\xb4\x86\xa4\xba\x8b\xa6\xc1\x8c\xa9\xc7\ +\x8b\xad\xce\x8a\xac\xcf\x86\xa7\xca\x88\xa7\xc9\x8e\xab\xcb\x91\ +\xae\xca\x8f\xae\xc9\x8b\xad\xcb\x88\xad\xcf\x87\xaa\xce\x89\xa7\ +\xcc\x83\xa4\xc9\x7f\xa5\xc8\x7b\xa5\xc4\x80\xa9\xc7\x8b\xae\xd0\ +\x92\xb2\xd3\x92\xb1\xcc\x93\xad\xc9\x93\xac\xcc\x92\xad\xcd\x8f\ +\xab\xca\x8c\xa9\xc7\x8a\xa7\xc6\x91\xad\xcb\x9b\xb7\xd6\x9c\xb9\ +\xd8\x96\xb6\xd4\x91\xb5\xd1\x8c\xb3\xd0\x8a\xaf\xd0\x93\xb2\xd3\ +\x99\xb0\xd4\x9c\xb2\xd4\x9d\xb5\xd1\x9d\xb8\xd0\x97\xb4\xcf\x91\ +\xae\xca\x86\xa0\xbd\x6f\x8d\xa4\x63\x85\x9a\x65\x89\xa2\x78\x9d\ +\xb7\x8a\xb0\xca\x94\xb3\xd4\x93\xaf\xd3\x94\xb3\xd3\x97\xb6\xd3\ +\x9d\xb9\xd4\x9e\xb8\xd6\x9e\xbb\xd9\x9b\xbd\xda\x9b\xbd\xd8\x9e\ +\xbc\xda\x9c\xbb\xd9\x98\xb7\xd2\x8f\xad\xc6\x86\xa5\xbb\x86\xa7\ +\xc2\x92\xb1\xce\x97\xb5\xd1\x98\xb6\xd3\x9b\xb8\xd5\x96\xb4\xd2\ +\x96\xb0\xd2\x94\xac\xd1\x8b\xa4\xc9\x7c\x9d\xbd\x76\x98\xb6\x77\ +\x97\xb2\x78\x93\xae\x67\x82\x98\x46\x5d\x71\x47\x5a\x6d\x46\x59\ +\x6e\x52\x6e\x85\x7f\xa3\xbe\x88\xb0\xcb\x8b\xaf\xcb\x8f\xb1\xcb\ +\x91\xb0\xcd\x8c\xb1\xcc\x90\xb5\xcf\x93\xb3\xd1\x96\xb0\xd4\x93\ +\xad\xd3\x91\xae\xd1\x8e\xaf\xcf\x8c\xac\xca\x89\xa8\xc9\x7e\x9d\ +\xbf\x75\x95\xb4\x75\x97\xb4\x77\x9b\xb5\x7e\xa2\xba\x85\xa6\xc2\ +\x88\xaa\xc6\x86\xab\xc9\x83\xab\xce\x84\xab\xcf\x82\xa9\xc9\x7f\ +\xa5\xc5\x77\x9b\xba\x6b\x8f\xad\x60\x85\xa2\x68\x8b\xa8\x6d\x8d\ +\xa9\x66\x84\x9e\x5c\x7e\x95\x73\x98\xb0\x7e\xa1\xbd\x7c\x9d\xba\ +\x84\xa1\xbf\x8d\xac\xc7\x92\xb3\xcc\x96\xb3\xce\x98\xb1\xcf\x99\ +\xb2\xd0\x99\xb4\xd0\x9c\xb3\xcf\x9e\xb5\xd2\x9b\xb5\xd3\x9a\xb4\ +\xd2\x98\xb4\xd1\x98\xb5\xd2\x96\xb6\xd3\x97\xb8\xd4\x98\xb6\xd3\ +\x99\xb3\xd1\x98\xb0\xd0\x96\xb0\xce\x97\xae\xce\x98\xac\xcc\x95\ +\xab\xcb\x92\xac\xcb\x8d\xab\xc8\x8b\xad\xcb\x88\xaa\xca\x87\xaa\ +\xc9\x83\xa6\xc5\x82\xa6\xc5\x80\xa6\xc4\x7f\xa5\xc7\x81\xa5\xc9\ +\x85\xa4\xca\x83\xa4\xca\x7f\xa1\xc7\x7f\xa3\xc5\x80\xa0\xc2\x7f\ +\x9e\xc0\x7a\x9b\xbc\x77\x9b\xbc\x76\x99\xbb\x7a\x99\xbc\x00\x00\ +\x00\x49\x65\x83\x58\x77\x99\x64\x86\xaa\x5c\x80\x9e\x4e\x71\x86\ +\x4c\x6f\x81\x5b\x7a\x8c\x68\x85\x9a\x6d\x89\xa3\x76\x93\xb0\x7a\ +\x97\xb7\x74\x92\xb0\x70\x8d\xa9\x78\x93\xaf\x83\x9e\xb9\x80\x9e\ +\xb8\x75\x95\xb2\x6e\x91\xb2\x76\x97\xbb\x7e\x9a\xbf\x7b\x9a\xbf\ +\x71\x94\xb6\x6b\x92\xae\x74\x97\xb3\x80\xa0\xc0\x82\xa1\xc1\x7e\ +\x9b\xb8\x7b\x96\xb3\x86\x9e\xbd\x88\xa3\xc2\x8c\xa3\xc2\x88\x9f\ +\xbe\x88\xa1\xc2\x8e\xa7\xc9\x93\xac\xd0\x90\xaa\xcd\x8c\xa9\xca\ +\x86\xa9\xc7\x83\xaa\xc9\x84\xa9\xc8\x87\xa9\xc9\x8d\xaa\xcc\x8e\ +\xa8\xcb\x90\xab\xc9\x91\xaf\xca\x91\xb1\xce\x90\xaf\xcf\x8c\xa9\ +\xc7\x85\xa3\xbf\x7f\xa3\xbc\x80\xa5\xbe\x83\xa9\xc1\x88\xad\xc7\ +\x8c\xab\xcc\x8c\xaa\xce\x8d\xae\xd0\x8f\xaf\xcf\x98\xb4\xd1\x9b\ +\xb5\xd3\x99\xb7\xd6\x94\xba\xd5\x94\xba\xd4\x96\xba\xd5\x9a\xb7\ +\xd6\x9d\xb7\xd5\x9a\xb5\xcf\x97\xb4\xcc\x97\xb5\xce\x95\xb5\xd1\ +\x97\xb4\xd2\x98\xb6\xd4\x98\xb6\xd4\x95\xb2\xd1\x97\xb0\xd3\x97\ +\xae\xd4\x92\xaa\xcf\x84\xa4\xc6\x7e\x9f\xbf\x7b\x9f\xb9\x7b\x9a\ +\xb6\x6c\x8b\xa3\x4f\x6b\x81\x3c\x54\x68\x43\x58\x6e\x62\x7c\x97\ +\x8b\xac\xc9\x8d\xb2\xd1\x8b\xaf\xcd\x8c\xaf\xcb\x91\xb0\xcd\x8f\ +\xb3\xcc\x8f\xb5\xce\x93\xb3\xcf\x97\xb1\xd4\x93\xad\xd2\x8c\xa9\ +\xcd\x88\xab\xc9\x85\xa6\xc2\x7d\x9d\xbb\x6b\x88\xa5\x56\x72\x8d\ +\x54\x73\x8e\x64\x85\x9e\x6d\x8e\xa6\x77\x97\xb2\x80\xa3\xc0\x84\ +\xa8\xc7\x84\xab\xcb\x86\xac\xcf\x83\xac\xcd\x7f\xa7\xc7\x7d\xa2\ +\xc1\x76\x9e\xbd\x70\x96\xb8\x6e\x91\xb3\x70\x91\xb2\x6f\x8e\xac\ +\x5b\x7c\x91\x67\x8c\x9e\x80\xa1\xb9\x83\xa2\xbf\x88\xa6\xc3\x91\ +\xaf\xc8\x94\xb2\xc8\x97\xb2\xcc\x97\xb3\xcf\x95\xb3\xce\x94\xb3\ +\xce\x95\xb1\xcc\x99\xb2\xce\x9a\xb2\xd0\x99\xb5\xd1\x93\xb4\xce\ +\x92\xb5\xce\x94\xb5\xd1\x97\xb4\xd4\x98\xb1\xd3\x9c\xb2\xd2\x9b\ +\xb1\xd1\x97\xb1\xcf\x93\xad\xcc\x92\xac\xcc\x90\xab\xc9\x8d\xac\ +\xca\x87\xa9\xc7\x88\xab\xca\x83\xa6\xc8\x7e\xa3\xc3\x7e\xa3\xc1\ +\x7c\xa4\xc0\x73\xa1\xbd\x74\xa2\xc1\x78\xa2\xc5\x7e\xa3\xc8\x7b\ +\xa0\xc6\x78\xa1\xc4\x78\xa0\xc0\x7a\x9e\xbe\x7c\x9b\xbd\x7d\x9c\ +\xbe\x78\x9a\xbb\x77\x99\xba\x78\x99\xba\x00\x00\x00\x4e\x6e\x8d\ +\x5f\x81\xa4\x6c\x8f\xb1\x63\x87\xa4\x46\x6e\x81\x3b\x63\x74\x48\ +\x6a\x7f\x4a\x68\x80\x4c\x69\x81\x5a\x75\x91\x64\x7f\x9d\x58\x79\ +\x90\x4e\x70\x82\x58\x76\x8b\x67\x83\x9c\x63\x80\x9a\x4f\x6c\x88\ +\x46\x66\x84\x59\x7a\x9c\x6c\x89\xad\x6a\x87\xaa\x58\x76\x96\x47\ +\x66\x7f\x51\x6f\x88\x62\x82\x9d\x69\x89\xa5\x5d\x7b\x96\x5a\x73\ +\x8f\x6a\x83\x9f\x7a\x94\xb1\x7a\x8f\xae\x71\x84\xa3\x72\x89\xa7\ +\x7b\x93\xb4\x7e\x93\xb7\x79\x8e\xb1\x73\x8d\xab\x75\x94\xaf\x76\ +\x97\xb4\x78\x96\xb3\x76\x93\xb1\x77\x98\xb6\x7d\x9c\xbc\x83\xa0\ +\xbf\x86\xa4\xc2\x8b\xaa\xca\x8c\xac\xce\x8f\xad\xce\x8b\xab\xc9\ +\x84\xa9\xc3\x80\xa7\xc1\x7d\xa4\xbc\x80\xa3\xbe\x83\xa1\xc2\x83\ +\x9f\xc1\x84\xa1\xc2\x87\xa3\xc3\x8f\xa8\xc6\x95\xae\xcd\x97\xb2\ +\xd1\x91\xb5\xd0\x8e\xb5\xcd\x8f\xb2\xcd\x96\xaf\xce\x9e\xb3\xd2\ +\x9b\xb1\xce\x9c\xb5\xcf\x9c\xb6\xd0\x95\xb3\xce\x90\xb1\xcf\x90\ +\xb1\xce\x96\xb4\xd1\x95\xb2\xd0\x98\xb1\xd5\x98\xaf\xd5\x96\xae\ +\xd3\x8c\xa9\xc9\x83\xa4\xc4\x7f\xa3\xbe\x7c\x9e\xbd\x73\x95\xb4\ +\x5f\x80\x9c\x4e\x6c\x84\x4f\x6a\x85\x77\x92\xb0\x93\xaf\xce\x92\ +\xb3\xd2\x8c\xb1\xd0\x8e\xb0\xd1\x94\xb0\xce\x94\xb1\xce\x94\xb5\ +\xd0\x91\xb3\xd0\x93\xb1\xd3\x93\xae\xd2\x8e\xab\xcd\x8a\xa9\xc9\ +\x83\xa3\xc1\x77\x97\xb4\x5b\x79\x95\x4a\x67\x81\x5c\x7a\x96\x67\ +\x8b\xa5\x63\x88\xa0\x5f\x85\x9b\x6b\x92\xac\x7f\xa3\xc0\x87\xac\ +\xca\x89\xaf\xd0\x84\xad\xcd\x82\xab\xc8\x83\xaa\xc7\x7f\xa7\xc7\ +\x7d\xa1\xc7\x7c\x9d\xc2\x7b\x9c\xbf\x75\x95\xb5\x69\x88\xa0\x5b\ +\x7a\x8e\x76\x95\xab\x84\x9f\xba\x8c\xa7\xc3\x91\xad\xc7\x97\xb3\ +\xca\x98\xb4\xcd\x96\xb3\xcd\x95\xb2\xcd\x92\xb2\xcd\x93\xb1\xcb\ +\x95\xb0\xcd\x97\xb1\xd1\x95\xb2\xd3\x91\xb3\xcf\x91\xb4\xcf\x95\ +\xb3\xd1\x9a\xb3\xd5\x9d\xb2\xd3\x9d\xb0\xd0\x9d\xb1\xd1\x94\xae\ +\xcc\x93\xaf\xcf\x92\xaf\xd0\x92\xb0\xcf\x8c\xab\xcd\x88\xab\xcc\ +\x86\xa9\xc9\x82\xa6\xc5\x78\x9e\xbe\x77\x9d\xbf\x74\x9e\xbe\x6e\ +\x9e\xbd\x6d\x9f\xbe\x71\x9d\xbf\x76\x9e\xc0\x78\x9e\xbf\x76\x9f\ +\xc0\x77\x9e\xbf\x7b\x9e\xbf\x7f\x9c\xc0\x7f\x9b\xc0\x7a\x99\xbf\ +\x77\x97\xbc\x75\x97\xb8\x00\x00\x00\x7b\x9e\xbd\x7e\xa3\xc1\x86\ +\xad\xcb\x88\xac\xc9\x7a\x9f\xb9\x63\x8d\xa3\x52\x7c\x93\x4f\x75\ +\x8e\x4d\x72\x8b\x5e\x81\x9a\x67\x89\xa3\x5f\x86\x9c\x55\x7e\x92\ +\x5e\x83\x99\x6b\x8a\xa7\x66\x82\x9e\x54\x71\x8d\x50\x70\x8e\x5e\ +\x81\xa1\x6f\x8f\xb0\x70\x89\xad\x57\x71\x94\x42\x5f\x7b\x46\x67\ +\x7f\x55\x7a\x92\x58\x7a\x94\x4c\x6b\x86\x40\x5e\x76\x50\x6f\x88\ +\x63\x80\x9b\x5f\x78\x94\x52\x68\x83\x50\x68\x81\x5d\x75\x91\x5a\ +\x71\x90\x48\x5f\x7a\x44\x60\x77\x52\x72\x88\x5c\x7a\x93\x62\x79\ +\x92\x54\x70\x85\x5d\x7c\x94\x6e\x8e\xab\x78\x94\xb2\x78\x93\xb2\ +\x7f\x9b\xb9\x88\xa4\xc6\x8d\xa7\xc9\x87\xa3\xc2\x7b\x9c\xb5\x6a\ +\x90\xa6\x6c\x8e\xa5\x71\x90\xac\x6f\x8c\xa7\x6b\x84\x9d\x6f\x86\ +\x9f\x75\x8c\xa7\x7d\x93\xb1\x85\x9b\xb7\x88\xa5\xc0\x86\xa9\xc3\ +\x83\xa8\xc1\x83\xa2\xbc\x89\xa0\xbc\x91\xa5\xc2\x95\xa9\xc8\x97\ +\xac\xc9\x94\xab\xc7\x8a\xa7\xc2\x83\xa5\xc2\x80\xa4\xbf\x8b\xa9\ +\xc4\x92\xaf\xcb\x95\xb0\xd0\x98\xb2\xd3\x94\xae\xcf\x90\xab\xc7\ +\x8a\xa7\xc7\x80\xa1\xc1\x7a\x9d\xbf\x77\x9b\xbc\x6e\x94\xb3\x69\ +\x8e\xaa\x71\x93\xb0\x88\xa6\xc4\x92\xae\xcb\x91\xaf\xcb\x8d\xaf\ +\xcd\x8f\xb1\xd0\x97\xb0\xce\x99\xb1\xcf\x97\xb5\xd0\x91\xb4\xd1\ +\x8d\xb0\xd1\x8f\xad\xd0\x8d\xab\xcc\x8a\xa7\xc9\x81\xa3\xc3\x77\ +\x9c\xb9\x6b\x8c\xa8\x67\x86\xa1\x72\x93\xaf\x73\x98\xb2\x6e\x94\ +\xab\x5f\x87\x99\x5a\x82\x97\x75\x9a\xb3\x89\xaa\xc7\x8c\xaf\xcd\ +\x85\xae\xca\x83\xae\xc6\x85\xad\xc6\x84\xa9\xc7\x86\xa6\xc8\x87\ +\xa6\xc9\x83\xa4\xc5\x7c\x9d\xbb\x71\x8f\xaa\x59\x75\x8c\x69\x87\ +\x9b\x80\x9b\xb5\x8b\xa3\xc3\x92\xac\xca\x96\xb1\xca\x96\xb3\xca\ +\x93\xb2\xc8\x91\xae\xc9\x90\xae\xc9\x92\xae\xca\x94\xae\xcc\x93\ +\xaf\xcf\x91\xaf\xd2\x8e\xae\xcf\x91\xb0\xcf\x96\xb0\xd0\x9a\xb1\ +\xcf\x9b\xb1\xcd\x99\xb1\xcd\x95\xae\xcd\x8f\xab\xc9\x90\xad\xcc\ +\x94\xaf\xd1\x94\xad\xd0\x91\xab\xcd\x8c\xaa\xcc\x86\xa8\xc8\x80\ +\xa3\xc2\x7c\x9f\xbf\x7a\x9d\xc0\x78\x9d\xbf\x6e\x9c\xbc\x6d\x9c\ +\xba\x6f\x9c\xbc\x74\x9c\xbc\x7a\x9f\xbe\x7b\x9f\xbe\x7b\x9e\xbe\ +\x80\xa0\xc0\x82\x9e\xc1\x7e\x9c\xc2\x78\x99\xbf\x75\x99\xbe\x76\ +\x99\xbc\x00\x00\x00\x90\xb5\xd0\x91\xb6\xd0\x94\xb9\xd5\x96\xb9\ +\xd9\x90\xb4\xd4\x85\xad\xcb\x75\xa1\xbd\x6c\x99\xb4\x6e\x9a\xb4\ +\x7b\xa4\xbe\x81\xa9\xc2\x79\xa2\xbb\x74\xa0\xb7\x78\xa1\xba\x7e\ +\xa2\xc0\x82\x9f\xc0\x75\x94\xb4\x70\x93\xb3\x78\x9c\xbd\x84\xa3\ +\xc5\x89\xa2\xc8\x7e\x97\xbe\x74\x90\xb4\x75\x95\xb6\x7a\x9d\xbe\ +\x7e\x9e\xbf\x76\x93\xb2\x6a\x8b\xa7\x6e\x92\xac\x77\x96\xb1\x73\ +\x8f\xab\x6a\x89\xa1\x69\x87\x9f\x6f\x8b\xa5\x69\x84\xa2\x53\x73\ +\x8d\x4a\x6c\x82\x54\x79\x8e\x5d\x7d\x97\x5c\x76\x8b\x4c\x64\x77\ +\x62\x7f\x93\x7e\x9c\xb5\x82\x9d\xb9\x75\x8f\xad\x6e\x88\xa6\x77\ +\x8e\xaf\x86\x9d\xbd\x82\x9b\xba\x6c\x87\xa2\x50\x6c\x84\x51\x6e\ +\x86\x5d\x7a\x92\x55\x71\x88\x48\x60\x70\x4a\x5d\x6d\x58\x6c\x81\ +\x61\x77\x91\x65\x7d\x95\x6b\x89\xa0\x72\x93\xac\x78\x95\xb0\x78\ +\x8f\xa8\x6f\x82\x9a\x76\x89\xa4\x81\x95\xb3\x89\x9c\xbc\x84\x98\ +\xb8\x74\x8d\xaa\x66\x84\xa1\x6c\x8c\xa8\x7a\x97\xb1\x87\xa2\xbd\ +\x8d\xa9\xc5\x8d\xae\xc9\x8c\xab\xc6\x8d\xa8\xc4\x88\xa4\xc0\x7f\ +\x9e\xbe\x7a\x9b\xbb\x79\x9b\xba\x7b\xa0\xbe\x7f\xa3\xc0\x87\xa7\ +\xc4\x91\xae\xca\x96\xb0\xcb\x93\xae\xca\x89\xa9\xc7\x88\xa9\xc7\ +\x90\xae\xce\x95\xb1\xce\x97\xb5\xd0\x95\xb3\xd3\x8f\xb1\xd2\x8c\ +\xac\xcf\x8c\xaa\xcc\x89\xa7\xc6\x80\xa3\xc3\x7d\xa2\xc2\x7c\x9f\ +\xbc\x7d\xa0\xbd\x7d\xa0\xbe\x80\xa3\xbf\x7c\x9e\xb7\x6c\x90\xa5\ +\x5b\x83\x97\x6d\x92\xab\x8a\xa9\xc6\x8f\xb0\xcb\x88\xae\xc6\x84\ +\xad\xc4\x84\xab\xc5\x86\xa7\xc6\x86\xa2\xc4\x82\x9f\xbe\x80\x9f\ +\xbd\x7f\x9c\xba\x75\x8f\xac\x5d\x75\x90\x5c\x79\x8f\x7d\x97\xb3\ +\x8a\xa2\xc4\x91\xaa\xca\x93\xae\xc8\x93\xb0\xc7\x8c\xae\xc5\x8b\ +\xac\xc8\x90\xac\xca\x90\xa9\xca\x8f\xa9\xca\x8b\xa8\xca\x89\xa5\ +\xcb\x89\xa4\xc9\x8b\xa8\xc8\x93\xad\xcc\x94\xaf\xcb\x94\xaf\xca\ +\x92\xb0\xca\x92\xaf\xcf\x8d\xac\xce\x8f\xac\xce\x94\xac\xd1\x93\ +\xab\xd0\x91\xaa\xce\x89\xa9\xcd\x85\xa6\xc7\x80\xa2\xc2\x7d\x9e\ +\xc2\x7a\x9b\xc2\x79\x9c\xbe\x72\x9a\xb9\x6e\x9a\xb6\x71\x9b\xba\ +\x75\x9d\xbd\x79\x9d\xbe\x81\x9e\xc0\x83\x9d\xc0\x84\x9e\xc2\x84\ +\xa0\xc3\x7d\x9d\xc1\x79\x9c\xc0\x77\x9b\xc0\x74\x96\xbd\x00\x00\ +\x00\x96\xb9\xd5\x9e\xbe\xd8\x9e\xbf\xd9\x9b\xbe\xdf\x95\xb8\xda\ +\x91\xb5\xd7\x8a\xb1\xd2\x84\xaf\xce\x8a\xb2\xd0\x91\xb6\xd4\x8b\ +\xb1\xcd\x86\xad\xca\x84\xab\xc7\x81\xa8\xc3\x86\xab\xc9\x8b\xa6\ +\xca\x83\xa2\xc5\x7f\xa3\xc6\x83\xa7\xc9\x8d\xac\xcf\x92\xac\xd3\ +\x94\xaa\xd4\x90\xa7\xd1\x93\xac\xd4\x96\xb2\xd8\x97\xb3\xd9\x98\ +\xb3\xd8\x93\xb1\xd4\x8f\xb1\xd1\x94\xb3\xd2\x96\xb3\xd2\x8e\xb2\ +\xcc\x8f\xb2\xc9\x94\xb2\xcd\x8c\xaa\xc9\x7d\x9f\xbd\x75\x99\xb7\ +\x78\x9c\xbb\x7c\x9d\xbb\x79\x93\xae\x5d\x76\x8d\x76\x93\xa9\x8f\ +\xaa\xc4\x90\xa8\xc6\x8b\xa3\xc1\x75\x8f\xad\x68\x81\xa1\x6b\x83\ +\xa3\x7b\x97\xb5\x68\x83\xa0\x48\x60\x7a\x4c\x65\x7f\x5f\x7a\x96\ +\x54\x70\x89\x38\x50\x60\x3e\x52\x60\x53\x68\x7c\x5b\x70\x8b\x48\ +\x61\x75\x46\x63\x75\x63\x7f\x97\x6e\x84\xa0\x60\x70\x87\x48\x5a\ +\x6e\x5d\x71\x8a\x6c\x82\x9f\x79\x8c\xac\x72\x84\xa8\x55\x6b\x8b\ +\x44\x5f\x7d\x56\x70\x8e\x68\x80\x9c\x78\x90\xac\x83\x9f\xba\x83\ +\xa5\xbf\x81\xa2\xbd\x83\x9f\xbd\x86\x9d\xb9\x7d\x97\xb4\x79\x92\ +\xb0\x79\x97\xb0\x7f\xa0\xb9\x86\xa5\xbf\x8f\xaa\xc8\x98\xaf\xcd\ +\x98\xaf\xcd\x8e\xa8\xc8\x85\xa2\xc2\x7f\x9f\xc0\x82\xa6\xc7\x8d\ +\xb1\xce\x95\xb5\xd3\x98\xb5\xd4\x93\xb0\xd3\x8e\xac\xcf\x8b\xa7\ +\xc8\x88\xa6\xc5\x80\xa5\xc3\x7f\xa4\xc5\x80\xa2\xc2\x83\xa5\xc4\ +\x80\xa5\xc3\x86\xa4\xc6\x86\xa1\xc0\x7b\x98\xb3\x68\x8b\xa4\x74\ +\x99\xb3\x8d\xac\xc6\x92\xb0\xc9\x8b\xac\xc3\x85\xac\xc1\x88\xaa\ +\xc3\x86\xa1\xc0\x83\x99\xbb\x79\x93\xb1\x79\x94\xb0\x7c\x93\xb2\ +\x7d\x91\xb1\x66\x7c\x9a\x5a\x75\x8f\x7c\x96\xb4\x87\xa2\xc5\x8b\ +\xa8\xc9\x8e\xaa\xc4\x8c\xad\xc1\x88\xad\xc4\x8a\xac\xc9\x91\xab\ +\xcb\x8f\xa7\xcb\x8c\xa4\xc8\x88\xa0\xc5\x86\x9b\xc1\x83\x98\xbf\ +\x88\x9e\xc2\x8c\xa5\xc7\x92\xac\xca\x92\xac\xc9\x91\xaf\xcb\x8f\ +\xb0\xd0\x8f\xaf\xd3\x93\xad\xd2\x96\xad\xd3\x95\xac\xd2\x92\xac\ +\xd2\x8b\xaa\xd1\x89\xaa\xcc\x83\xa4\xc8\x80\xa1\xc9\x7e\x9e\xc6\ +\x7a\x9d\xbe\x77\x9c\xb8\x75\x9c\xb8\x76\x9b\xbd\x79\x9d\xc1\x7d\ +\x9d\xc1\x85\x9c\xc2\x8b\x9d\xc6\x8b\x9d\xc6\x87\xa0\xc6\x7f\x9c\ +\xc1\x79\x9a\xbf\x77\x98\xbf\x79\x95\xbe\x00\x00\x00\ +\x00\x02\xa0\xde\ +\x42\ +\x4d\xde\xa0\x02\x00\x00\x00\x00\x00\x36\x00\x00\x00\x28\x00\x00\ +\x00\xa3\x00\x00\x00\x5e\x01\x00\x00\x01\x00\x18\x00\x00\x00\x00\ +\x00\xa8\xa0\x02\x00\x13\x0b\x00\x00\x13\x0b\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\xa1\x9b\x9d\xa1\x9b\x9e\xa3\x9d\xa0\xa6\xa0\ +\xa1\xa4\x9e\xa1\xa6\xa0\xa3\xa6\xa0\xa2\xa8\xa3\xa5\xaa\xa5\xa7\ +\xab\xa6\xa8\xae\xa8\xac\xb0\xaa\xaf\xaf\xa9\xae\xb3\xad\xb2\xb2\ +\xab\xb0\xb3\xae\xb3\xb2\xac\xb1\xb3\xab\xb0\xb5\xae\xb1\xb5\xad\ +\xb0\xb8\xaf\xb1\xba\xb1\xb3\xba\xb2\xb3\xc0\xb8\xb9\xc0\xb8\xb8\ +\xc1\xba\xbc\xc2\xbb\xbc\xc5\xbf\xc0\xc5\xbd\xbe\xc6\xbf\xc0\xc8\ +\xc0\xc1\xc9\xc2\xc3\xc9\xc2\xc2\xc9\xc0\xbf\xcc\xc2\xc3\xcb\xc0\ +\xc2\xcc\xc2\xc3\xcc\xc2\xc3\xca\xbf\xc0\xc7\xbb\xbc\xba\xa9\xab\ +\xa6\x93\x95\xa2\x90\x91\xab\x9c\x9a\xc1\xb5\xb5\xcd\xc5\xc5\xcf\ +\xc9\xca\xd0\xc8\xc9\xd2\xca\xc9\xd2\xcb\xc9\xd4\xcd\xca\xd5\xce\ +\xcb\xd7\xcf\xcc\xd4\xcc\xcb\xcf\xc1\xc0\xc8\xb6\xb5\xba\xa2\xa0\ +\xb3\x97\x94\xb0\x98\x94\xc0\xaf\xab\xcf\xc3\xc1\xd7\xce\xce\xda\ +\xd3\xd4\xda\xd5\xd5\xdb\xd6\xd8\xdd\xd7\xd8\xde\xd6\xd7\xe0\xd8\ +\xd9\xe0\xd9\xda\xe0\xd9\xd9\xe1\xd9\xda\xe1\xd9\xd9\xe2\xdb\xd8\ +\xe0\xd8\xd5\xdf\xd5\xd2\xdc\xce\xcb\xd5\xc2\xbf\xce\xb6\xb1\xc7\ +\xa8\xa4\xc2\xa0\x9f\xc0\xa2\xa1\xc0\xa4\xa2\xc6\xad\xa8\xcb\xb5\ +\xb2\xd4\xc3\xbf\xd7\xc8\xc5\xdd\xd2\xd0\xdf\xd5\xd3\xe0\xd6\xd6\ +\xe0\xda\xd9\xe1\xdb\xda\xe1\xdb\xd9\xe2\xdb\xda\xe1\xdb\xda\xdf\ +\xd8\xd6\xdf\xd9\xd7\xe1\xdc\xda\xe0\xdb\xd9\xdf\xd9\xd6\xdf\xda\ +\xd6\xa7\x8b\x7e\xe0\xd6\xd3\xe0\xda\xd9\xe1\xda\xda\xdf\xd9\xd9\ +\xdd\xd6\xd6\xdc\xd6\xd6\xdb\xd3\xd3\xd6\xcd\xcf\xd2\xca\xcc\xd2\ +\xc9\xcb\xcb\xc4\xc5\xc6\xc0\xc0\xbd\xb8\xb7\xb9\xb4\xb4\xb1\xab\ +\xac\xa8\xa3\xa4\x9e\x99\x9a\x8f\x8e\x8e\x81\x82\x83\x71\x75\x76\ +\x5f\x64\x6a\x45\x4d\x56\x21\x2b\x36\x06\x0a\x10\x00\x00\x00\x07\ +\x06\x07\x36\x35\x35\x5e\x5d\x5d\x70\x70\x71\x79\x78\x7a\x80\x7f\ +\x83\x85\x84\x88\x84\x85\x89\x86\x86\x8b\x86\x87\x8d\x84\x86\x8c\ +\x81\x84\x89\x80\x82\x89\x81\x84\x8a\x80\x82\x87\x71\x73\x77\x69\ +\x6b\x6f\x7a\x7d\x81\x79\x7c\x80\x79\x7c\x80\x76\x7a\x7f\x71\x75\ +\x7b\x71\x75\x7d\x71\x77\x7e\x70\x76\x7f\x6d\x73\x7d\x69\x70\x7b\ +\x65\x6e\x78\x68\x70\x7c\x68\x71\x7e\x59\x63\x70\x20\x25\x31\x0d\ +\x0e\x17\x06\x06\x0b\x1d\x23\x2f\x47\x59\x6a\x1d\x27\x33\x00\x00\ +\x00\xa1\x9c\x9e\xa1\x9d\x9f\xa5\xa0\xa2\xa6\xa1\xa3\xa6\xa1\xa3\ +\xa5\x9f\xa2\xa5\x9f\xa1\xa8\xa3\xa4\xad\xa8\xaa\xac\xa7\xa9\xac\ +\xa7\xa9\xae\xa9\xac\xad\xa7\xab\xb2\xac\xb1\xb2\xad\xb1\xb2\xac\ +\xb1\xb5\xaf\xb4\xb6\xaf\xb3\xb6\xaf\xb2\xb6\xaf\xb2\xb8\xb1\xb4\ +\xbc\xb5\xb7\xbb\xb3\xb5\xbe\xb6\xb7\xc2\xba\xbb\xbf\xb8\xba\xc1\ +\xbb\xbc\xc5\xbf\xbf\xc4\xbc\xbd\xc7\xbf\xbf\xc8\xbf\xbf\xc8\xc0\ +\xc0\xcb\xc2\xc2\xcd\xc3\xc3\xce\xc4\xc4\xcd\xc3\xc4\xcf\xc5\xc5\ +\xcd\xc4\xc4\xcc\xc1\xc2\xce\xc4\xc4\xce\xc5\xc5\xd0\xc6\xc6\xca\ +\xbd\xbd\xb7\xa6\xa4\xa2\x8e\x8b\x9f\x8b\x8a\xb0\x9e\x9d\xbe\xae\ +\xac\xc8\xbd\xb9\xce\xc4\xc0\xd0\xc8\xc5\xd1\xca\xc7\xd5\xce\xcb\ +\xd7\xd0\xcd\xd8\xd1\xcf\xd9\xd1\xcf\xd9\xd1\xce\xda\xcf\xcc\xcf\ +\xbf\xbb\xc3\xb0\xac\xb3\x98\x91\xaf\x92\x8c\xb8\xa2\x9b\xc5\xb4\ +\xaf\xd0\xc3\xc2\xd7\xcf\xce\xdb\xd4\xd2\xde\xd6\xd5\xde\xd9\xd8\ +\xdf\xda\xd9\xe2\xda\xda\xe2\xdc\xdb\xe3\xde\xdd\xe3\xde\xdc\xe3\ +\xdd\xdb\xe3\xdc\xda\xe3\xdd\xda\xe4\xdd\xda\xe4\xdd\xdb\xe3\xdb\ +\xd9\xe1\xd7\xd5\xe0\xd3\xcf\xda\xc6\xc1\xd1\xb9\xb4\xcc\xb1\xab\ +\xc5\xa9\xa2\xc1\xa2\x9e\xbf\xa1\x9c\xbd\x9b\x95\xbc\x9b\x90\xbe\ +\x9e\x93\xbb\x9a\x8e\xbb\x9a\x90\xbe\xa0\x99\xbd\xa2\x9a\xbb\xa2\ +\x99\xbe\xa5\x9b\xba\xa1\x98\xb8\xa1\x98\xa7\x8a\x7e\xa7\x88\x7d\ +\xe4\xdd\xdc\xdf\xd7\xd6\xe0\xd8\xd8\xde\xd6\xd6\xdd\xd4\xd4\xda\ +\xd2\xd2\xd7\xcf\xcf\xd4\xcc\xcc\xd1\xc9\xc9\xcd\xc5\xc6\xca\xc3\ +\xc4\xc3\xbe\xbe\xbc\xb7\xb6\xb5\xb0\xb0\xab\xa6\xa7\xa2\x9e\x9f\ +\x96\x92\x93\x8b\x89\x8b\x7c\x7e\x7e\x6c\x6f\x71\x56\x5c\x61\x34\ +\x3d\x46\x11\x19\x20\x02\x03\x04\x00\x00\x00\x16\x16\x18\x4c\x4b\ +\x4c\x66\x65\x67\x74\x73\x75\x7e\x7d\x80\x7f\x80\x83\x81\x82\x86\ +\x85\x86\x8a\x86\x87\x8c\x84\x86\x8b\x83\x86\x8b\x84\x87\x8c\x80\ +\x83\x88\x81\x84\x89\x7c\x7f\x84\x67\x69\x6f\x74\x77\x7b\x79\x7e\ +\x81\x79\x7d\x81\x77\x7b\x7f\x77\x7b\x80\x70\x75\x7a\x6e\x75\x7b\ +\x6f\x75\x7d\x70\x75\x7f\x6e\x75\x7f\x6b\x72\x7d\x67\x6e\x79\x66\ +\x6f\x7a\x64\x6e\x7a\x44\x4e\x5a\x10\x11\x17\x08\x0a\x0e\x11\x12\ +\x19\x35\x3e\x4a\x4d\x5d\x6d\x1b\x24\x2f\x00\x00\x00\xa1\x9d\x9f\ +\xa1\x9d\x9f\xa7\xa2\xa4\xa7\xa2\xa4\xa7\xa2\xa3\xa6\xa0\xa2\xa9\ +\xa3\xa5\xab\xa6\xa7\xad\xa7\xa9\xac\xa7\xa8\xac\xa7\xa9\xaf\xa9\ +\xab\xac\xa7\xa8\xb0\xaa\xad\xb2\xac\xaf\xb4\xae\xb0\xb7\xb2\xb4\ +\xb8\xb2\xb5\xb9\xb2\xb5\xb8\xb1\xb4\xbc\xb5\xb8\xbc\xb6\xb8\xbe\ +\xb7\xb9\xc0\xb8\xb9\xc4\xbc\xbd\xc0\xb9\xba\xc2\xba\xbb\xc4\xbe\ +\xbe\xc3\xbc\xbc\xc5\xbd\xbd\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc2\xc2\ +\xcd\xc4\xc4\xce\xc5\xc5\xcf\xc6\xc7\xcf\xc7\xc7\xce\xc5\xc6\xd1\ +\xc9\xc9\xd0\xc7\xc7\xd0\xc7\xc5\xd1\xc7\xc7\xd2\xc9\xc7\xd3\xc9\ +\xc8\xd1\xc7\xc5\xc5\xb9\xb8\xaf\x9b\x98\xa0\x89\x83\xa3\x8f\x86\ +\xb5\xa3\x9b\xc2\xb4\xb0\xc8\xbe\xba\xce\xc4\xc1\xd5\xcd\xcc\xda\ +\xd3\xd0\xd8\xd1\xce\xda\xd3\xd0\xdb\xd3\xd3\xdb\xd4\xd2\xdc\xd6\ +\xd4\xde\xd9\xd7\xd8\xcf\xce\xcc\xbe\xbb\xbe\xa8\xa3\xb4\x9a\x92\ +\xb2\x98\x8e\xbc\xa5\x9c\xca\xb7\xb0\xd5\xc7\xc3\xd7\xce\xcb\xdc\ +\xd4\xd1\xdd\xd7\xd5\xe2\xdc\xdb\xe2\xdc\xdb\xe3\xdd\xdc\xe3\xde\ +\xdd\xe3\xde\xdc\xe3\xde\xdb\xe4\xde\xdb\xe3\xdd\xdb\xe3\xde\xdb\ +\xe5\xdf\xdc\xe4\xde\xdc\xe5\xdf\xdc\xe6\xe0\xde\xe7\xe0\xde\xe6\ +\xdf\xdd\xe5\xe0\xde\xe5\xde\xdc\xe4\xdc\xd9\xe5\xdd\xda\xe0\xd5\ +\xd2\xde\xd1\xce\xdd\xcf\xcc\xdd\xd0\xcd\xdc\xcf\xcb\xdc\xd0\xcb\ +\xdc\xd2\xcc\xda\xcf\xca\xb3\x97\x8c\xca\xbb\xb4\xdf\xd8\xd5\xde\ +\xd6\xd3\xde\xd7\xd5\xdc\xd4\xd4\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\ +\xce\xd2\xca\xc9\xd1\xc8\xc8\xcd\xc5\xc5\xc6\xbe\xbe\xbe\xb8\xb9\ +\xb7\xb2\xb1\xae\xa9\xa9\xa7\xa2\xa4\x9c\x99\x9a\x8f\x8d\x8f\x84\ +\x83\x86\x77\x78\x7b\x66\x68\x6c\x4f\x54\x59\x2a\x32\x3b\x09\x0e\ +\x13\x00\x00\x00\x01\x02\x02\x26\x27\x2a\x55\x58\x59\x6a\x6c\x6f\ +\x78\x79\x7b\x7f\x7e\x80\x81\x80\x84\x82\x83\x87\x83\x84\x88\x85\ +\x86\x8c\x84\x86\x8b\x83\x86\x8b\x81\x84\x89\x7f\x82\x87\x80\x83\ +\x88\x76\x7a\x7f\x65\x68\x6d\x7a\x7f\x83\x79\x7d\x81\x77\x7c\x7f\ +\x76\x7a\x7f\x74\x78\x7d\x73\x77\x7c\x73\x77\x7d\x72\x78\x7f\x70\ +\x75\x7e\x6d\x74\x7d\x68\x70\x7a\x65\x6f\x79\x65\x6f\x79\x61\x6b\ +\x75\x2d\x34\x3d\x04\x04\x07\x0d\x0f\x14\x1d\x22\x2b\x45\x4e\x5c\ +\x45\x50\x5e\x23\x27\x31\x00\x00\x00\xa3\x9e\xa0\xa2\x9e\xa0\xa6\ +\xa1\xa3\xa7\xa2\xa4\xa9\xa4\xa5\xa7\xa2\xa3\xa8\xa3\xa5\xab\xa5\ +\xa7\xad\xa7\xaa\xad\xa7\xa9\xab\xa5\xa7\xaf\xaa\xab\xad\xa8\xaa\ +\xb0\xa9\xab\xb0\xa9\xac\xb0\xaa\xad\xb6\xb0\xb4\xb8\xb2\xb5\xb7\ +\xb0\xb3\xb9\xb2\xb5\xba\xb3\xb6\xbb\xb4\xb6\xc0\xba\xbb\xc3\xbd\ +\xbe\xc1\xbb\xbc\xc4\xbc\xbc\xc3\xbb\xbb\xc7\xc1\xc1\xc6\xc0\xc0\ +\xc6\xbd\xbd\xc7\xbe\xbe\xc8\xc0\xc0\xcb\xc2\xc3\xcb\xc1\xc1\xcb\ +\xc2\xc1\xce\xc5\xc5\xcf\xc8\xc8\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\ +\xcb\xd2\xcb\xca\xd2\xc9\xc8\xd3\xca\xc7\xd2\xc9\xc8\xd2\xca\xc8\ +\xd3\xcc\xcb\xd3\xcb\xc8\xd1\xc5\xc2\xc4\xb4\xaf\xb3\x9d\x96\xa7\ +\x8f\x89\xaa\x94\x90\xb8\xa5\xa0\xc6\xb8\xb2\xcd\xc5\xc1\xd3\xcb\ +\xc8\xd9\xd2\xce\xdb\xd4\xd1\xdb\xd4\xd1\xdc\xd6\xd5\xdc\xd6\xd6\ +\xdc\xd7\xd8\xde\xda\xda\xdf\xd9\xd9\xdf\xd7\xd6\xda\xd0\xcd\xd0\ +\xc0\xbb\xc1\xad\xa7\xbd\xa6\xa0\xbd\xa5\x9e\xbe\xa6\x9d\xc7\xb5\ +\xaf\xd0\xc0\xbc\xd6\xc7\xc3\xd8\xcd\xca\xda\xd1\xd0\xdc\xd4\xd3\ +\xdf\xd9\xd8\xe2\xdc\xdc\xe3\xde\xdd\xe2\xde\xdb\xe3\xde\xdb\xe3\ +\xde\xdd\xe2\xdd\xdb\xe3\xde\xdd\xe4\xdf\xde\xe3\xde\xdc\xe3\xde\ +\xdb\xe2\xde\xdb\xe2\xdd\xda\xe3\xdd\xdb\xe2\xdd\xda\xe2\xdc\xd9\ +\xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd9\xd6\xdf\ +\xda\xd6\xa5\x8a\x7d\xe0\xd8\xd4\xdc\xd5\xd2\xdc\xd5\xd2\xda\xd3\ +\xd2\xd8\xd1\xd1\xd7\xd1\xd0\xd6\xce\xce\xd2\xca\xc8\xcd\xc5\xc3\ +\xca\xc2\xc1\xc7\xbf\xbf\xc1\xbb\xba\xb9\xb3\xb4\xb0\xaa\xaa\xaa\ +\xa5\xa4\x9e\x99\x9a\x98\x95\x96\x8b\x8a\x8c\x7c\x7b\x7e\x6d\x6f\ +\x72\x5b\x5e\x63\x41\x46\x4c\x1d\x23\x2b\x04\x07\x0a\x00\x00\x00\ +\x0c\x0c\x0e\x3d\x3e\x41\x5b\x5c\x5d\x6d\x6f\x71\x79\x79\x7d\x7e\ +\x7e\x82\x82\x83\x87\x85\x86\x8a\x84\x85\x89\x85\x86\x8b\x86\x88\ +\x8c\x83\x86\x8b\x80\x84\x89\x7e\x82\x86\x7f\x83\x87\x69\x6d\x72\ +\x6e\x72\x77\x7b\x80\x84\x77\x7b\x7f\x76\x7a\x7e\x76\x79\x7d\x73\ +\x77\x7c\x73\x76\x7c\x73\x77\x7d\x72\x78\x80\x72\x77\x80\x6f\x75\ +\x7f\x6d\x74\x7d\x68\x70\x7a\x65\x6e\x78\x61\x6b\x75\x23\x29\x30\ +\x01\x01\x01\x10\x12\x16\x33\x3b\x46\x3e\x47\x54\x34\x3c\x48\x28\ +\x2d\x37\x00\x00\x00\xa5\xa1\xa2\xa5\xa2\xa4\xa7\xa2\xa4\xa7\xa2\ +\xa4\xa9\xa4\xa6\xaa\xa5\xa6\xaa\xa4\xa5\xaa\xa4\xa5\xab\xa6\xa7\ +\xad\xa7\xa8\xae\xa8\xa9\xb1\xab\xac\xaf\xa9\xaa\xb3\xad\xae\xb2\ +\xac\xad\xb3\xad\xae\xb4\xaf\xb2\xb6\xb0\xb3\xb6\xb0\xb3\xb9\xb3\ +\xb6\xba\xb3\xb6\xbc\xb6\xb8\xc0\xb9\xbb\xc3\xbd\xbe\xc2\xbb\xbb\ +\xc4\xbe\xbe\xc7\xbf\xc0\xc6\xbf\xc0\xca\xc2\xc2\xc7\xc0\xc0\xc8\ +\xc0\xbf\xc8\xc0\xc0\xcb\xc2\xc2\xcb\xc3\xc3\xcd\xc4\xc4\xcf\xc7\ +\xc7\xcf\xc7\xc7\xcf\xc7\xc7\xd1\xc9\xc9\xd2\xca\xca\xd2\xcb\xca\ +\xd4\xcb\xcb\xd5\xcd\xcc\xd6\xce\xcd\xd5\xcc\xcc\xd4\xcb\xc9\xd4\ +\xca\xc7\xd4\xc9\xc7\xd6\xcc\xc9\xd6\xcc\xc8\xd3\xc8\xc4\xc9\xbb\ +\xb6\xb6\xa4\x9d\xac\x96\x8d\xb0\x9c\x94\xbb\xa8\xa1\xc1\xb2\xaa\ +\xc8\xba\xb4\xcf\xc5\xc0\xd7\xce\xca\xdb\xd5\xd3\xdb\xd6\xd5\xdc\ +\xd7\xd6\xdc\xd7\xd7\xdd\xd7\xd5\xde\xd8\xd7\xe0\xdb\xdb\xe0\xdb\ +\xdb\xe0\xda\xd9\xde\xd5\xd2\xd5\xc8\xc4\xcb\xbb\xb5\xc4\xae\xa7\ +\xc2\xa7\x9f\xc4\xaa\xa5\xc5\xae\xab\xc8\xb5\xb2\xce\xbe\xbd\xd2\ +\xc4\xc2\xd5\xc8\xc5\xd5\xcb\xc6\xd6\xcc\xc8\xd8\xd0\xcd\xdb\xd2\ +\xd1\xdc\xd3\xd2\xdd\xd8\xd6\xe0\xdb\xd9\xe0\xda\xd8\xe0\xda\xd8\ +\xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe0\xdb\xd8\xdf\ +\xda\xd9\xde\xdb\xda\xdb\xd7\xd7\xdb\xd6\xd3\xcc\xc0\xb8\xac\x94\ +\x89\xdb\xd5\xd2\xd7\xd0\xce\xd7\xd0\xce\xd6\xd0\xce\xd3\xcc\xcc\ +\xd3\xcc\xcb\xcf\xc8\xc7\xcc\xc5\xc2\xc8\xc1\xbe\xc4\xbb\xba\xc1\ +\xb9\xb9\xba\xb3\xb4\xb4\xad\xae\xaa\xa4\xa4\xa0\x9b\x9a\x97\x93\ +\x93\x8e\x8c\x8c\x81\x81\x83\x75\x75\x77\x63\x66\x68\x50\x55\x58\ +\x33\x3a\x3e\x10\x17\x1b\x01\x03\x04\x00\x00\x00\x1a\x1b\x1e\x49\ +\x4b\x4e\x61\x60\x62\x71\x6f\x72\x7b\x7a\x7b\x7f\x7e\x80\x82\x83\ +\x86\x83\x84\x88\x85\x86\x8b\x85\x86\x8b\x84\x87\x8b\x82\x85\x89\ +\x7e\x82\x86\x7e\x82\x86\x7c\x7f\x83\x66\x6a\x6f\x73\x77\x7b\x7b\ +\x7e\x82\x77\x7a\x7f\x77\x7b\x7f\x75\x7a\x7e\x72\x77\x7c\x72\x77\ +\x7c\x70\x76\x7c\x6f\x75\x7c\x6f\x74\x7c\x6e\x75\x7d\x6d\x75\x7e\ +\x6a\x72\x7b\x65\x6e\x77\x5a\x64\x6f\x23\x27\x2f\x02\x02\x03\x15\ +\x18\x1c\x54\x5d\x67\x45\x4d\x58\x2b\x33\x3d\x29\x2e\x39\x00\x00\ +\x00\xa4\x9f\xa0\xa5\xa3\xa3\xa7\xa4\xa6\xa8\xa3\xa5\xa7\xa2\xa3\ +\xaa\xa5\xa6\xac\xa6\xa7\xac\xa6\xa7\xad\xa7\xa8\xac\xa7\xa7\xb1\ +\xab\xac\xb3\xad\xae\xae\xa9\xaa\xb2\xad\xae\xb5\xb0\xb1\xb5\xaf\ +\xb1\xb4\xae\xb1\xb3\xad\xb0\xb6\xb1\xb3\xb9\xb4\xb6\xbb\xb4\xb7\ +\xbf\xb8\xba\xc1\xbb\xbc\xc1\xbb\xbc\xc4\xbd\xbe\xc5\xc0\xc0\xc6\ +\xc0\xc1\xc8\xc0\xc0\xc9\xc1\xc1\xcb\xc4\xc5\xca\xc3\xc2\xcb\xc3\ +\xc3\xcc\xc4\xc4\xce\xc6\xc6\xce\xc6\xc6\xce\xc6\xc6\xd0\xc7\xc7\ +\xce\xc5\xc5\xd1\xc9\xc9\xd3\xcb\xcb\xd4\xcc\xcb\xd6\xce\xcd\xd8\ +\xd0\xd0\xd5\xce\xcc\xd5\xcd\xcc\xd5\xcc\xcb\xd5\xcb\xc9\xd4\xc8\ +\xc6\xd3\xc9\xc5\xd5\xcb\xc7\xd7\xce\xc9\xda\xd2\xcf\xda\xd1\xce\ +\xd7\xcb\xc7\xd2\xc4\xbf\xbf\xad\xa5\xaf\x99\x8e\xb0\x98\x8e\xb5\ +\x9f\x96\xbd\xa9\xa0\xc4\xb4\xac\xc8\xbd\xb7\xd3\xca\xc7\xda\xd2\ +\xd0\xdc\xd5\xd2\xdd\xd8\xd7\xde\xd9\xd8\xdd\xd9\xd9\xdd\xd8\xd7\ +\xde\xd8\xd7\xdf\xd9\xd7\xe0\xda\xd7\xe1\xda\xd8\xe0\xd9\xd5\xdf\ +\xd6\xd3\xdb\xcc\xc9\xd1\xc0\xbc\xcb\xb8\xb4\xc5\xb0\xad\xc3\xad\ +\xa8\xc4\xad\xa6\xc3\xae\xa6\xc5\xb1\xaa\xc7\xb4\xb0\xc7\xb3\xad\ +\xc6\xb3\xac\xca\xb7\xb2\xc8\xb5\xb0\xca\xb8\xb1\xc9\xb8\xb3\xc9\ +\xb8\xb4\xca\xb9\xb5\xc9\xbb\xb5\xc7\xb9\xb4\xc6\xb9\xb4\xc6\xba\ +\xb5\xc4\xb7\xb1\xc4\xb5\xac\x96\x77\x61\xc7\xb8\xb1\xd5\xcd\xca\ +\xd2\xcb\xc9\xcf\xc9\xc6\xce\xc8\xc5\xcc\xc5\xc3\xca\xc2\xc2\xc6\ +\xbf\xbf\xc4\xbc\xbb\xc1\xb9\xb7\xbb\xb5\xb1\xb6\xb0\xae\xb1\xaa\ +\xa9\xa8\xa3\xa3\xa0\x9c\x9c\x98\x95\x94\x8e\x8b\x8b\x81\x80\x80\ +\x75\x75\x76\x68\x69\x6a\x58\x5c\x5d\x44\x49\x4b\x22\x28\x2b\x07\ +\x0a\x0d\x00\x00\x00\x04\x04\x06\x2d\x2d\x31\x51\x52\x54\x65\x65\ +\x65\x70\x6f\x70\x79\x79\x7a\x7d\x7d\x7f\x81\x83\x84\x84\x86\x89\ +\x84\x85\x8a\x85\x87\x8c\x83\x86\x8a\x80\x83\x87\x7f\x82\x86\x80\ +\x83\x87\x72\x75\x7a\x6b\x6e\x73\x77\x7a\x7e\x79\x7c\x81\x76\x7a\ +\x80\x77\x7b\x80\x76\x7a\x7f\x71\x78\x7d\x71\x77\x7c\x70\x76\x7c\ +\x6e\x74\x7b\x6d\x74\x7b\x6b\x72\x7a\x6b\x72\x7a\x6c\x73\x7b\x68\ +\x71\x79\x4e\x55\x61\x26\x2a\x34\x0a\x09\x0f\x21\x25\x2d\x5c\x65\ +\x6f\x5a\x63\x6f\x3b\x42\x4e\x26\x2b\x36\x00\x00\x00\xa4\x9f\xa0\ +\xa4\xa1\xa1\xa4\xa0\xa1\xa6\xa2\xa3\xa8\xa3\xa5\xaa\xa5\xa6\xab\ +\xa5\xa6\xac\xa7\xa8\xae\xa9\xa9\xad\xa8\xa6\xb0\xaa\xab\xaf\xaa\ +\xab\xae\xaa\xa9\xb3\xad\xae\xb5\xaf\xb1\xb6\xb0\xb1\xb5\xaf\xb0\ +\xb5\xaf\xb2\xb8\xb2\xb4\xb7\xb1\xb3\xb6\xaf\xb2\xbd\xb6\xb8\xc1\ +\xbb\xbc\xc2\xbc\xbc\xc4\xbd\xbd\xc6\xbf\xbf\xc6\xc0\xbf\xc8\xc2\ +\xc1\xca\xc3\xc2\xcb\xc4\xc5\xc9\xc1\xc1\xcb\xc3\xc3\xcc\xc4\xc4\ +\xce\xc7\xc7\xcf\xc8\xc8\xcf\xc8\xc8\xd1\xc9\xc8\xcf\xc7\xc7\xd0\ +\xc8\xc8\xd2\xca\xca\xd4\xcc\xcc\xd6\xce\xce\xd6\xcf\xcd\xd5\xce\ +\xcc\xd6\xce\xcc\xd5\xcc\xca\xd5\xcb\xc9\xd4\xca\xc8\xd4\xcb\xc7\ +\xd6\xcc\xc8\xd5\xcc\xc8\xd7\xce\xcb\xd8\xd0\xcd\xd9\xd0\xcd\xdb\ +\xd2\xcf\xdc\xd3\xd1\xd7\xd0\xcd\xd2\xc7\xc3\xc5\xb4\xaf\xbc\xa7\ +\x9f\xb6\x9e\x95\xb7\xa0\x97\xba\xa6\x9e\xbe\xaa\xa2\xc3\xb1\xac\ +\xc9\xbb\xb8\xcf\xc3\xc1\xd8\xd0\xcf\xdc\xd6\xd6\xdc\xd7\xd5\xdc\ +\xd6\xd4\xdb\xd6\xd2\xdb\xd4\xd1\xdc\xd5\xd1\xdc\xd5\xd2\xdd\xd6\ +\xd3\xdd\xd6\xd3\xde\xd8\xd5\xde\xd8\xd5\xdc\xd7\xd4\xda\xd4\xd3\ +\xd6\xcf\xcc\xd3\xc8\xc5\xcd\xc1\xbd\xcc\xbe\xb9\xc4\xb2\xac\xc1\ +\xac\xa6\xbd\xa9\xa0\xbd\xa8\xa1\xba\xa4\x9d\xba\xa4\x9d\xb9\xa1\ +\x9b\xb8\xa2\x9c\xb7\xa1\x98\xb5\xa0\x99\xb5\xa2\x9a\xb4\xa2\x98\ +\xb2\x9f\x93\x80\x5a\x46\xce\xc6\xc3\xca\xc3\xc0\xc8\xc1\xbf\xc4\ +\xbe\xbc\xc5\xbe\xbc\xc1\xbb\xb9\xbf\xb8\xb8\xbb\xb5\xb4\xb8\xb2\ +\xb0\xb3\xad\xac\xaf\xa8\xa7\xab\xa3\xa3\xa5\x9f\x9f\x9c\x98\x97\ +\x94\x90\x90\x8d\x89\x89\x81\x7f\x7e\x74\x73\x73\x69\x69\x69\x5b\ +\x5d\x5d\x4b\x4f\x50\x33\x3a\x3a\x15\x1b\x1e\x02\x04\x06\x00\x00\ +\x00\x10\x0f\x11\x37\x38\x3b\x55\x57\x58\x65\x65\x65\x70\x6f\x71\ +\x77\x76\x78\x7a\x7c\x7d\x81\x82\x84\x83\x85\x88\x83\x85\x88\x84\ +\x87\x8b\x82\x85\x89\x80\x83\x87\x7f\x82\x86\x7e\x81\x85\x68\x6b\ +\x70\x72\x76\x7b\x7a\x7d\x82\x77\x7b\x80\x77\x7b\x80\x75\x79\x7d\ +\x75\x7a\x7f\x72\x78\x7e\x70\x76\x7b\x70\x78\x7d\x6e\x75\x7c\x6d\ +\x74\x7b\x6b\x73\x7a\x6a\x72\x7a\x6a\x72\x7a\x66\x6f\x77\x4b\x52\ +\x5c\x31\x35\x40\x1e\x21\x2b\x40\x46\x52\x62\x6b\x78\x63\x6c\x77\ +\x51\x5a\x67\x36\x3e\x4b\x00\x00\x00\xa7\xa3\xa3\xa7\xa3\xa3\xa4\ +\x9f\xa1\xa6\xa1\xa2\xa9\xa4\xa5\xac\xa7\xa7\xae\xa9\xaa\xae\xa9\ +\xaa\xae\xa9\xa8\xb1\xac\xab\xb0\xaa\xa9\xae\xaa\xa9\xaf\xaa\xa9\ +\xb3\xad\xac\xb4\xae\xaf\xb4\xae\xb0\xb5\xaf\xb0\xb8\xb2\xb3\xbb\ +\xb5\xb7\xb9\xb3\xb4\xb5\xaf\xb0\xba\xb4\xb4\xbe\xb8\xb9\xbf\xb9\ +\xb9\xc4\xbd\xbb\xc5\xbc\xbc\xc7\xbf\xbf\xca\xc3\xc2\xc9\xc3\xc2\ +\xc8\xc1\xc1\xc9\xc2\xc2\xca\xc4\xc3\xca\xc4\xc3\xcd\xc7\xc6\xcf\ +\xc9\xc9\xcf\xca\xc9\xcf\xc7\xc7\xd0\xc9\xc9\xd1\xca\xca\xd2\xca\ +\xca\xd2\xca\xca\xd4\xcc\xcb\xd3\xcc\xc9\xd4\xcd\xcb\xd6\xcf\xcd\ +\xd5\xce\xcc\xd6\xcd\xca\xd6\xcd\xca\xd6\xcd\xcb\xd6\xce\xcb\xd5\ +\xcd\xca\xd6\xcd\xca\xd7\xcf\xcc\xd7\xce\xcb\xd6\xcd\xca\xd8\xcf\ +\xcc\xd7\xcf\xcc\xd7\xcf\xcc\xd8\xd0\xcd\xd9\xd2\xcf\xd6\xcc\xc9\ +\xcf\xc2\xbd\xc6\xb5\xb0\xbd\xa9\xa1\xbc\xa6\xa0\xbd\xa6\xa1\xb9\ +\xa1\x9d\xb7\x9f\x96\xbc\xa6\x9d\xc0\xae\xa8\xc4\xb5\xaf\xcf\xc4\ +\xbf\xd5\xce\xc9\xd6\xd0\xcd\xd7\xd3\xd0\xd7\xd1\xce\xd6\xd0\xcd\ +\xd5\xd0\xcd\xd4\xcf\xcc\xd3\xce\xcd\xd3\xce\xce\xd2\xce\xcc\xd1\ +\xcd\xcc\xd0\xcd\xcb\xcf\xcc\xc9\xcf\xca\xc7\xcf\xc9\xc7\xcf\xca\ +\xc7\xcd\xc9\xc7\xcb\xc6\xc3\xcc\xc7\xc4\xca\xc5\xc3\xc8\xc2\xc0\ +\xc6\xc0\xbe\xc6\xc0\xbe\xc5\xc0\xbe\xc4\xbf\xbe\xb2\xa6\xa1\x9f\ +\x8a\x85\xbe\xb6\xb4\xbd\xb5\xb3\xb9\xb4\xb2\xb7\xb1\xb0\xb5\xaf\ +\xaf\xb3\xad\xad\xb0\xaa\xaa\xad\xa7\xa6\xa7\xa1\x9f\xa4\x9e\x9d\ +\x9f\x99\x97\x98\x92\x91\x95\x90\x90\x8d\x89\x89\x84\x81\x81\x7b\ +\x78\x79\x71\x6f\x6f\x64\x64\x64\x5b\x5c\x5c\x4f\x51\x52\x3d\x42\ +\x42\x23\x2a\x2b\x0c\x10\x11\x00\x00\x01\x00\x00\x00\x1a\x1a\x1c\ +\x3e\x40\x41\x55\x57\x57\x61\x61\x61\x6c\x6b\x6c\x72\x72\x74\x79\ +\x7b\x7c\x7e\x80\x81\x81\x83\x85\x82\x85\x88\x82\x86\x88\x81\x84\ +\x87\x80\x82\x86\x7f\x81\x85\x77\x7a\x7d\x64\x67\x6a\x76\x7a\x7f\ +\x7b\x7f\x83\x76\x7a\x7f\x78\x7c\x80\x76\x79\x7e\x75\x7a\x7f\x71\ +\x77\x7d\x6f\x76\x7c\x70\x79\x7e\x70\x78\x7e\x6d\x74\x7b\x6a\x73\ +\x7a\x6a\x72\x7a\x69\x71\x7a\x66\x6e\x77\x57\x60\x69\x3b\x40\x4b\ +\x3a\x41\x4b\x5c\x65\x71\x66\x6f\x7a\x64\x6d\x79\x5e\x68\x74\x4d\ +\x58\x65\x00\x00\x00\xa9\xa5\xa5\xa7\xa3\xa2\xa5\xa1\xa1\xa5\xa1\ +\xa1\xab\xa6\xa7\xac\xa8\xa8\xae\xa9\xaa\xb0\xab\xab\xae\xa9\xa9\ +\xb1\xad\xad\xae\xaa\xaa\xad\xa8\xa8\xb4\xaf\xaf\xb4\xaf\xaf\xb4\ +\xaf\xaf\xb2\xad\xac\xb3\xad\xad\xb5\xaf\xb0\xba\xb4\xb5\xba\xb4\ +\xb5\xba\xb4\xb5\xbe\xb8\xb9\xbe\xb9\xb9\xbe\xb8\xb8\xc4\xbd\xbb\ +\xc2\xbb\xb9\xc6\xbe\xbd\xc8\xc1\xc0\xc7\xc0\xc0\xc6\xbe\xbe\xc8\ +\xc1\xc1\xc9\xc4\xc4\xcb\xc5\xc5\xce\xc8\xc7\xce\xc8\xc7\xce\xc8\ +\xc8\xce\xc6\xc6\xcf\xc8\xc8\xd0\xcb\xca\xd1\xca\xc9\xd1\xc9\xc8\ +\xd1\xca\xc8\xd1\xc9\xc7\xd2\xc9\xc6\xd4\xcd\xca\xd4\xcc\xc9\xd3\ +\xcb\xc8\xd3\xca\xc8\xd4\xcb\xc9\xd4\xcb\xc9\xd4\xcd\xca\xd3\xcc\ +\xc9\xd2\xcc\xc9\xd4\xcc\xc9\xd1\xc9\xc6\xd3\xcb\xc8\xd3\xcb\xc8\ +\xd2\xc9\xc6\xd3\xca\xc7\xd2\xca\xc7\xd4\xcc\xc9\xd3\xca\xc8\xd3\ +\xcb\xc8\xd2\xcb\xc7\xcf\xc8\xc4\xcc\xc0\xbe\xc4\xb7\xb3\xbb\xab\ +\xa3\xba\xa5\x9d\xb8\xa3\x9a\xb3\x9b\x90\xb4\x9a\x90\xb3\x9a\x90\ +\xb4\x9d\x94\xb3\x9f\x97\xb9\xa9\xa3\xc0\xb4\xaf\xc6\xbd\xb9\xc8\ +\xc2\xbf\xc9\xc4\xc0\xc7\xc5\xc2\xc7\xc6\xc3\xc6\xc4\xc1\xc4\xc0\ +\xbf\xc2\xbf\xbb\xbe\xba\xb8\xbe\xb9\xb7\xbd\xb9\xb8\xbd\xb9\xb7\ +\xbc\xb9\xb6\xba\xb7\xb4\xba\xb6\xb4\xb8\xb5\xb3\xb6\xb3\xb2\xb4\ +\xb1\xb0\xb3\xb0\xae\xb5\xb3\xb1\x87\x74\x6c\xa7\x9d\x9a\xac\xa5\ +\xa4\xac\xa5\xa3\xa8\xa3\xa1\xa6\xa0\x9f\xa4\x9e\x9e\xa0\x9b\x9b\ +\x9e\x98\x98\x99\x94\x93\x94\x8f\x8d\x91\x8c\x8a\x8c\x86\x85\x87\ +\x82\x81\x82\x7d\x7c\x7b\x77\x76\x73\x71\x6f\x6a\x68\x68\x61\x60\ +\x60\x56\x56\x56\x4d\x4f\x4f\x40\x44\x44\x2f\x33\x34\x17\x1c\x1e\ +\x04\x07\x08\x00\x00\x00\x06\x06\x06\x24\x24\x26\x42\x41\x42\x51\ +\x51\x52\x5b\x5b\x5b\x66\x65\x66\x6f\x70\x72\x76\x78\x7a\x7b\x7e\ +\x7e\x7f\x82\x84\x80\x83\x85\x82\x85\x86\x80\x83\x84\x7f\x82\x86\ +\x80\x82\x85\x6b\x6f\x70\x6b\x6f\x6e\x7a\x7d\x80\x7a\x7f\x83\x76\ +\x7a\x7f\x76\x7a\x7f\x76\x7b\x80\x74\x79\x7e\x72\x78\x7e\x6e\x76\ +\x7c\x70\x78\x7f\x6f\x77\x7d\x6d\x75\x7c\x6c\x74\x7b\x6b\x73\x7b\ +\x69\x70\x79\x67\x6f\x78\x5c\x65\x6e\x46\x4f\x59\x51\x59\x63\x61\ +\x6a\x75\x63\x6c\x76\x63\x6d\x77\x63\x6d\x77\x5b\x66\x73\x00\x00\ +\x00\xa9\xa4\xa5\xa7\xa3\xa3\xa7\xa2\xa2\xaa\xa5\xa6\xaa\xa5\xa5\ +\xaa\xa6\xa5\xae\xaa\xaa\xb0\xab\xac\xaf\xaa\xaa\xb3\xae\xaf\xae\ +\xa9\xa9\xaf\xa9\xaa\xb2\xad\xae\xb3\xad\xad\xb7\xb2\xb1\xb1\xac\ +\xab\xb6\xb0\xaf\xb7\xb1\xb1\xb8\xb1\xb1\xba\xb4\xb5\xbd\xb8\xb8\ +\xbf\xb9\xb9\xc2\xbd\xbc\xc1\xba\xba\xc3\xbc\xb9\xc2\xba\xb8\xc3\ +\xba\xb7\xc5\xbd\xbb\xc6\xbf\xbd\xc4\xbd\xbc\xc7\xc1\xc0\xc7\xc1\ +\xc1\xc9\xc4\xc3\xca\xc4\xc3\xc9\xc2\xc2\xcc\xc6\xc5\xcb\xc5\xc5\ +\xca\xc5\xc4\xcd\xc7\xc6\xcd\xc8\xc8\xce\xc7\xc5\xcf\xc7\xc7\xd0\ +\xc8\xc6\xcd\xc5\xc2\xcf\xc6\xc3\xcf\xc6\xc4\xce\xc6\xc3\xcd\xc5\ +\xc2\xcf\xc6\xc4\xce\xc7\xc5\xce\xc7\xc5\xcc\xc6\xc3\xcc\xc5\xc2\ +\xcd\xc6\xc3\xcb\xc2\xc0\xcb\xc3\xc1\xcb\xc3\xc1\xcb\xc4\xc3\xc9\ +\xc2\xbf\xc9\xc1\xbe\xc8\xc0\xbd\xc7\xbf\xbd\xc8\xbf\xbc\xc7\xc0\ +\xbd\xc7\xbf\xbe\xc7\xc0\xbe\xc6\xc0\xbe\xc6\xc1\xbd\xc5\xbc\xb9\ +\xc2\xb9\xb3\xbd\xb1\xab\xb8\xa9\xa2\xb6\xa5\x9f\xb5\xa4\x9d\xb0\ +\x9d\x98\xac\x99\x94\xa5\x90\x89\xa2\x8c\x84\xa1\x8a\x80\x9e\x86\ +\x7c\x9d\x87\x7f\x9e\x8b\x85\x9f\x90\x8b\x9f\x93\x8c\x9f\x93\x8d\ +\xa2\x97\x93\xa5\x9d\x98\xa7\x9f\x9b\xa8\xa1\x9e\xa7\xa2\x9f\xa6\ +\xa1\x9f\xa6\xa1\x9f\xa5\xa0\x9e\xa3\x9f\x9f\x9f\x9b\x99\x9d\x98\ +\x97\x97\x91\x8e\x74\x61\x5a\x9a\x93\x91\x98\x92\x90\x97\x91\x90\ +\x94\x8f\x8e\x91\x8c\x8b\x8f\x8a\x8a\x8c\x87\x87\x89\x84\x83\x85\ +\x80\x7f\x81\x7d\x7b\x7d\x78\x77\x77\x73\x71\x74\x6f\x6e\x6f\x6a\ +\x69\x68\x64\x63\x60\x5d\x5c\x5c\x5a\x59\x52\x50\x4f\x48\x47\x47\ +\x3e\x40\x40\x31\x35\x36\x23\x26\x27\x1d\x1c\x19\x02\x03\x03\x00\ +\x00\x00\x0e\x0e\x0f\x2b\x2a\x2b\x3d\x3d\x3d\x4b\x4a\x4a\x55\x55\ +\x56\x5e\x5e\x5f\x69\x6b\x6b\x71\x73\x74\x76\x79\x7b\x7b\x7e\x7f\ +\x7f\x82\x82\x81\x84\x85\x80\x83\x85\x7f\x82\x85\x7f\x81\x84\x66\ +\x69\x6a\x72\x76\x78\x79\x7d\x80\x78\x7d\x80\x78\x7c\x81\x76\x7c\ +\x81\x75\x7b\x80\x72\x78\x7d\x72\x78\x7d\x6f\x77\x7d\x70\x77\x7e\ +\x6d\x76\x7d\x6e\x75\x7d\x6b\x73\x7b\x67\x6f\x78\x67\x6f\x78\x68\ +\x71\x7a\x61\x6a\x73\x5a\x63\x6c\x60\x69\x72\x64\x6d\x77\x63\x6c\ +\x76\x63\x6d\x76\x64\x6e\x78\x63\x6d\x79\x00\x00\x00\xa5\xa1\xa1\ +\xa5\xa2\xa1\xa9\xa4\xa4\xac\xa7\xa8\xa9\xa4\xa4\xab\xa7\xa6\xaf\ +\xab\xab\xb1\xac\xad\xb1\xac\xad\xb4\xaf\xb0\xa9\xa4\xa4\xad\xa7\ +\xa8\xb1\xab\xac\xb0\xaa\xaa\xb2\xad\xad\xb0\xab\xaa\xb3\xae\xae\ +\xb6\xb0\xb1\xb6\xb0\xb0\xb7\xb0\xb0\xba\xb4\xb4\xbb\xb6\xb5\xc1\ +\xbb\xb9\xc1\xba\xb7\xbe\xb8\xb3\xc3\xbc\xb9\xc2\xb9\xb6\xc1\xb9\ +\xb6\xc2\xbb\xb8\xc0\xb9\xb7\xc4\xbe\xbc\xc6\xc0\xbf\xc5\xbd\xbd\ +\xc4\xbe\xbe\xc6\xc0\xc0\xc8\xc3\xc2\xc6\xc1\xc1\xc6\xc0\xc0\xc9\ +\xc1\xc2\xc8\xc2\xc2\xc8\xc1\xc1\xc9\xc2\xc1\xc7\xc1\xbe\xc7\xbf\ +\xbc\xc8\xbf\xbd\xc8\xc0\xbf\xc6\xbf\xbe\xc5\xbe\xbc\xc5\xbe\xbc\ +\xc5\xbe\xbc\xc6\xbe\xbd\xc5\xbe\xbc\xc3\xbd\xba\xc2\xbb\xb8\xc1\ +\xb9\xb6\xc0\xb9\xb7\xc0\xb9\xb5\xc0\xb9\xb6\xbf\xb9\xb6\xbf\xb7\ +\xb4\xbd\xb5\xb2\xba\xb2\xaf\xba\xb2\xaf\xba\xb3\xaf\xb8\xb1\xaf\ +\xb8\xb0\xaf\xb8\xb1\xaf\xb6\xae\xab\xb6\xaf\xac\xb5\xae\xaa\xb4\ +\xad\xaa\xb4\xad\xa9\xb4\xad\xa9\xb2\xab\xa8\xb0\xa8\xa6\xac\xa5\ +\xa1\xa7\x9d\x9a\xa4\x99\x94\xa2\x96\x91\x9e\x91\x8b\x9c\x8f\x8a\ +\x99\x8d\x88\x96\x88\x83\x91\x82\x7c\x8d\x7e\x77\x88\x79\x71\x84\ +\x73\x6d\x81\x70\x68\x82\x72\x6b\x80\x6f\x68\x7e\x6d\x68\x7b\x6a\ +\x65\x79\x6a\x65\x77\x68\x63\x73\x64\x5d\x75\x67\x61\x71\x62\x5c\ +\x7b\x70\x6c\x84\x80\x7e\x83\x7e\x7c\x81\x7d\x7c\x7e\x7b\x79\x7c\ +\x78\x77\x7a\x76\x76\x77\x73\x72\x74\x70\x6f\x70\x6c\x6b\x6e\x69\ +\x68\x68\x65\x63\x65\x61\x60\x60\x5d\x5c\x5b\x58\x56\x56\x53\x52\ +\x4f\x4d\x4c\x53\x4e\x48\x4f\x49\x41\x3c\x3b\x39\x32\x33\x33\x29\ +\x2a\x29\x3a\x32\x28\x22\x1d\x16\x06\x05\x03\x0c\x0a\x07\x1f\x1b\ +\x18\x2b\x2a\x2b\x39\x38\x39\x44\x44\x45\x4f\x4e\x50\x59\x5a\x5b\ +\x62\x63\x64\x6c\x6e\x6f\x74\x76\x79\x7a\x7c\x7e\x7e\x7f\x82\x7e\ +\x81\x82\x7e\x82\x83\x7e\x82\x84\x75\x78\x7b\x69\x6d\x6e\x76\x7a\ +\x7e\x79\x7d\x82\x77\x7c\x7f\x79\x7d\x82\x76\x7a\x80\x72\x78\x7d\ +\x71\x77\x7c\x72\x78\x7d\x71\x79\x80\x6f\x76\x7d\x6e\x76\x7d\x6d\ +\x74\x7d\x6b\x73\x7c\x68\x71\x7a\x66\x6f\x78\x66\x6e\x77\x64\x6d\ +\x76\x62\x6b\x74\x64\x6d\x76\x62\x6b\x75\x62\x6c\x76\x62\x6c\x76\ +\x64\x6e\x78\x5e\x6a\x76\x00\x00\x00\xa5\xa0\xa0\xa6\xa2\xa1\xab\ +\xa6\xa5\xad\xa7\xa7\xa9\xa5\xa4\xac\xa8\xa7\xac\xa8\xa7\xab\xa6\ +\xa7\xad\xa8\xa9\xaf\xaa\xab\xaa\xa5\xa6\xad\xa7\xa8\xae\xa8\xa9\ +\xad\xa7\xa8\xad\xa8\xa9\xad\xa9\xa8\xb2\xac\xad\xb6\xb1\xb1\xb6\ +\xb1\xb0\xb4\xae\xad\xb7\xb0\xaf\xb8\xb2\xb0\xb8\xb3\xb1\xbb\xb4\ +\xb1\xb7\xb1\xad\xbd\xb6\xb5\xbe\xb7\xb4\xbd\xb7\xb4\xbb\xb5\xb2\ +\xba\xb2\xaf\xbc\xb5\xb3\xbe\xb7\xb7\xbd\xb6\xb5\xbd\xb7\xb5\xbe\ +\xb8\xb7\xc0\xb9\xb9\xbf\xb9\xb9\xbe\xb9\xb8\xc0\xbb\xba\xbf\xb8\ +\xb7\xbf\xb8\xb8\xbf\xb8\xb7\xbd\xb6\xb5\xbd\xb6\xb4\xbe\xb5\xb5\ +\xbe\xb7\xb7\xbc\xb6\xb6\xbb\xb4\xb4\xba\xb4\xb3\xb9\xb2\xb2\xb9\ +\xb2\xb2\xb8\xb1\xb0\xb6\xb0\xae\xb4\xad\xaa\xb2\xaa\xa7\xb0\xa9\ +\xa6\xb1\xaa\xa6\xb0\xaa\xa7\xb0\xaa\xa8\xaf\xa8\xa6\xae\xa7\xa5\ +\xac\xa7\xa4\xaa\xa4\xa2\xa9\xa3\xa0\xa7\xa2\x9f\xa7\xa1\x9e\xa6\ +\x9f\x9c\xa5\x9e\x9c\xa2\x9c\x9a\xa1\x9b\x98\xa0\x99\x96\xa0\x99\ +\x96\x9f\x9a\x97\x9f\x99\x96\x9d\x97\x94\x9c\x96\x93\x9a\x94\x92\ +\x99\x93\x90\x96\x91\x8e\x93\x8f\x8c\x92\x8d\x8a\x8f\x89\x86\x8c\ +\x86\x84\x88\x83\x80\x87\x81\x7e\x84\x7e\x7b\x82\x7b\x78\x81\x7a\ +\x77\x7f\x78\x75\x7d\x76\x73\x7b\x75\x72\x79\x73\x71\x77\x72\x6f\ +\x76\x6f\x6d\x73\x6c\x6a\x71\x6b\x68\x6f\x69\x67\x72\x6d\x6b\x70\ +\x6c\x6a\x6e\x6a\x69\x6c\x68\x66\x6a\x66\x65\x67\x64\x63\x65\x62\ +\x62\x63\x60\x5e\x5f\x5d\x5b\x5e\x5a\x59\x58\x54\x53\x53\x50\x4e\ +\x50\x4e\x4c\x4e\x49\x46\x4c\x47\x44\x4c\x46\x40\x4f\x47\x3e\x53\ +\x48\x3d\x53\x47\x3a\x47\x3e\x34\x3c\x36\x2f\x30\x2a\x23\x49\x39\ +\x29\x1d\x17\x10\x1a\x13\x0c\x2f\x24\x18\x37\x2d\x23\x2a\x29\x2a\ +\x34\x34\x34\x3f\x3e\x3e\x47\x47\x48\x52\x53\x53\x5d\x5f\x5f\x67\ +\x69\x6b\x72\x74\x76\x79\x7b\x7c\x7c\x7f\x82\x7d\x80\x81\x7e\x82\ +\x83\x7e\x82\x83\x6b\x6f\x71\x6d\x71\x74\x7b\x7f\x83\x79\x7d\x81\ +\x77\x7a\x7f\x77\x7c\x7f\x74\x79\x7d\x72\x78\x7d\x70\x76\x7b\x6f\ +\x75\x7a\x6d\x75\x7c\x6f\x77\x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x73\ +\x7c\x69\x72\x7b\x68\x71\x7a\x65\x6e\x77\x66\x6f\x78\x64\x6d\x76\ +\x64\x6d\x76\x61\x6a\x73\x62\x6c\x75\x62\x6c\x76\x61\x6d\x76\x53\ +\x61\x6c\x00\x00\x00\xa8\xa3\xa3\xa8\xa3\xa3\xa9\xa4\xa4\xac\xa7\ +\xa8\xaa\xa4\xa5\xad\xa8\xa8\xac\xa9\xa9\xaa\xa5\xa4\xac\xa7\xa6\ +\xa7\xa3\xa4\xa7\xa1\xa2\xad\xa7\xa8\xac\xa6\xa7\xab\xa5\xa6\xa9\ +\xa4\xa4\xa9\xa4\xa4\xae\xaa\xaa\xaf\xaa\xa9\xb0\xa9\xa9\xaf\xa9\ +\xaa\xaf\xaa\xaa\xb3\xae\xad\xb2\xae\xad\xb1\xab\xa8\xb2\xaa\xa6\ +\xb3\xac\xa9\xb4\xad\xaa\xb5\xad\xad\xb4\xad\xac\xb2\xac\xa8\xb5\ +\xaf\xac\xb7\xb0\xae\xb4\xae\xac\xb4\xad\xab\xb5\xae\xad\xb4\xae\ +\xad\xb4\xae\xad\xb4\xae\xad\xb3\xad\xac\xb3\xac\xac\xb2\xab\xab\ +\xb3\xac\xab\xb0\xaa\xa9\xb0\xaa\xa8\xaf\xa9\xa9\xae\xa8\xa8\xae\ +\xa9\xa9\xab\xa6\xa6\xaa\xa4\xa4\xaa\xa3\xa4\xa8\xa2\xa2\xa6\xa0\ +\xa0\xa5\xa0\x9e\xa3\x9d\x9c\xa1\x9b\x98\xa0\x99\x97\x9e\x98\x96\ +\x9e\x99\x96\x9c\x97\x95\x9c\x97\x95\x9a\x95\x93\x99\x95\x93\x97\ +\x92\x90\x96\x92\x90\x94\x8f\x8d\x93\x8e\x8c\x90\x8c\x8a\x8f\x8a\ +\x88\x8e\x88\x86\x8c\x86\x84\x8b\x86\x83\x8a\x84\x82\x8a\x85\x82\ +\x89\x84\x81\x89\x83\x81\x86\x81\x7f\x84\x7f\x7d\x82\x7e\x7c\x80\ +\x7c\x79\x7e\x7a\x77\x7c\x78\x76\x79\x75\x72\x77\x73\x70\x75\x71\ +\x6f\x74\x6f\x6d\x71\x6d\x6a\x70\x6c\x6a\x6e\x6b\x69\x6d\x6a\x68\ +\x6c\x68\x67\x6a\x66\x64\x68\x65\x63\x65\x63\x61\x65\x61\x5f\x63\ +\x5f\x5d\x5e\x5a\x58\x59\x55\x54\x59\x56\x52\x5c\x56\x52\x5f\x57\ +\x50\x5b\x54\x4d\x5e\x56\x4f\x5b\x52\x4b\x56\x4d\x45\x54\x4b\x41\ +\x50\x46\x3e\x4d\x42\x39\x48\x3d\x34\x42\x38\x2f\x45\x3a\x2f\x44\ +\x38\x2c\x46\x39\x2c\x4a\x3b\x2c\x54\x42\x2f\x55\x42\x2f\x57\x43\ +\x2f\x4e\x3d\x2a\x4e\x3c\x2a\x33\x29\x1e\x2e\x24\x1a\x34\x27\x1a\ +\x3f\x2f\x1f\x43\x33\x24\x4f\x3e\x2d\x49\x3c\x2e\x3a\x34\x2f\x39\ +\x35\x31\x41\x42\x42\x4c\x4d\x4d\x58\x59\x5a\x63\x65\x66\x6e\x71\ +\x71\x76\x78\x78\x79\x7b\x7c\x7b\x7e\x7f\x7c\x80\x81\x7a\x7e\x7f\ +\x6a\x6d\x70\x74\x79\x7c\x7e\x83\x87\x7c\x80\x85\x79\x7d\x81\x75\ +\x7a\x7e\x75\x7a\x7f\x72\x78\x7d\x72\x77\x7c\x6f\x76\x7b\x70\x77\ +\x7e\x6f\x76\x7d\x6d\x74\x7d\x6c\x74\x7d\x6b\x72\x7b\x68\x70\x79\ +\x65\x6e\x77\x65\x6e\x77\x66\x6f\x78\x66\x6f\x78\x65\x6e\x77\x64\ +\x6d\x76\x60\x6b\x73\x62\x6c\x75\x5b\x67\x71\x37\x43\x4d\x00\x00\ +\x00\xa6\xa2\xa2\xa5\xa0\xa1\xa5\xa0\xa1\xa7\xa2\xa3\xa8\xa4\xa5\ +\xa9\xa4\xa4\xa8\xa3\xa2\xa4\xa1\xa0\xa6\xa2\xa2\xa3\x9e\x9e\xa1\ +\x9b\x9b\xa5\xa0\xa1\xa6\xa1\xa2\xa5\x9f\xa0\xa2\x9d\x9d\xa2\x9c\ +\x9b\xa8\xa3\xa3\xa8\xa2\xa2\xa5\xa0\xa0\xa6\xa0\xa0\xa8\xa3\xa2\ +\xaa\xa6\xa6\xa9\xa5\xa5\xa6\xa0\x9d\xa8\xa1\x9e\xaa\xa3\xa3\xa9\ +\xa2\x9f\xa7\xa0\x9f\xa7\xa0\x9f\xa9\xa2\xa0\xa9\xa2\xa0\xa9\xa3\ +\xa2\xa8\xa2\xa1\xa8\xa2\x9f\xa7\xa1\x9e\xa6\x9f\x9e\xa6\xa0\x9f\ +\xa4\xa0\x9f\xa3\x9e\x9d\xa3\x9d\x9b\xa2\x9d\x9d\xa2\x9c\x9c\xa1\ +\x9b\x99\xa0\x9b\x9a\x9e\x98\x98\x9b\x96\x96\x9b\x96\x96\x99\x95\ +\x94\x98\x94\x93\x95\x93\x92\x95\x90\x90\x94\x8e\x8e\x91\x8d\x8b\ +\x8e\x8a\x89\x8e\x88\x86\x8c\x86\x84\x8c\x85\x84\x8a\x86\x84\x87\ +\x83\x81\x86\x82\x80\x84\x80\x7e\x83\x7f\x7d\x81\x7d\x7b\x80\x7c\ +\x7b\x7e\x7b\x79\x7d\x79\x77\x7b\x77\x75\x79\x76\x74\x78\x73\x72\ +\x77\x74\x72\x77\x73\x71\x76\x71\x6f\x75\x70\x6e\x74\x70\x6d\x73\ +\x6f\x6e\x71\x6d\x6b\x70\x6c\x6b\x6d\x69\x67\x6b\x68\x66\x69\x66\ +\x64\x66\x62\x61\x65\x62\x5f\x60\x5d\x5b\x5b\x57\x56\x55\x52\x50\ +\x53\x4f\x4d\x53\x4e\x4b\x52\x4d\x49\x54\x4e\x48\x56\x4f\x48\x59\ +\x50\x48\x58\x4f\x46\x57\x4d\x43\x59\x4d\x41\x5e\x50\x41\x53\x46\ +\x39\x54\x46\x38\x52\x43\x35\x4f\x41\x32\x4f\x40\x2f\x42\x34\x27\ +\x45\x37\x28\x3f\x30\x22\x3b\x2c\x1d\x3c\x2d\x1e\x36\x2a\x1b\x3e\ +\x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3a\x2c\x1d\x31\x24\x18\x35\x28\ +\x1a\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x2d\x22\x15\x29\x1f\x14\ +\x2f\x24\x17\x37\x29\x1b\x44\x33\x22\x3c\x2e\x1e\x4c\x39\x26\x5a\ +\x44\x2d\x5e\x47\x2f\x68\x4e\x33\x52\x41\x2e\x3e\x34\x29\x3d\x3e\ +\x3e\x47\x48\x49\x54\x56\x56\x5f\x60\x62\x69\x6b\x6c\x72\x74\x75\ +\x7a\x7c\x7c\x7a\x7d\x7e\x7b\x80\x80\x71\x74\x77\x6a\x6c\x71\x79\ +\x7d\x80\x7d\x82\x86\x79\x7e\x82\x79\x7e\x81\x78\x7c\x80\x73\x78\ +\x7d\x71\x77\x7c\x71\x77\x7c\x6f\x75\x7b\x71\x77\x7e\x70\x76\x7d\ +\x6d\x74\x7c\x6b\x73\x7c\x68\x70\x79\x66\x6f\x78\x65\x6e\x77\x65\ +\x6d\x76\x63\x6c\x75\x63\x6c\x75\x66\x6f\x78\x64\x6e\x77\x63\x6e\ +\x76\x61\x6b\x74\x58\x62\x6c\x1e\x25\x2d\x00\x00\x00\xa6\xa2\xa2\ +\xa3\x9e\x9e\xa3\x9e\x9f\xa4\x9f\xa0\xa5\xa0\x9f\xa4\x9f\x9f\xa1\ +\x9c\x9c\x9f\x9b\x99\x9f\x9a\x9a\x9b\x96\x96\x9b\x97\x96\x9b\x98\ +\x96\x9a\x95\x96\x9c\x97\x97\x9b\x96\x97\x9a\x93\x93\x9c\x96\x96\ +\x9b\x95\x95\x9b\x94\x94\x9b\x95\x95\x9b\x96\x95\x9b\x95\x95\x9b\ +\x97\x96\x9c\x97\x96\x9d\x98\x97\x9c\x96\x96\x9c\x97\x96\x9a\x94\ +\x91\x97\x91\x8e\x9a\x94\x92\x98\x93\x91\x99\x93\x91\x96\x90\x8e\ +\x96\x90\x8e\x96\x91\x90\x95\x90\x8e\x94\x90\x8f\x93\x8d\x8d\x91\ +\x8c\x8c\x8e\x8a\x88\x8e\x8a\x88\x8d\x88\x89\x8b\x87\x85\x8d\x85\ +\x83\x8b\x84\x80\x87\x83\x81\x87\x82\x83\x85\x81\x81\x83\x7e\x7e\ +\x82\x7d\x7d\x81\x7c\x7c\x7f\x7b\x7a\x7d\x79\x78\x7b\x76\x75\x7a\ +\x75\x74\x77\x73\x71\x76\x72\x70\x76\x72\x71\x73\x6f\x6e\x73\x70\ +\x6e\x70\x6d\x6b\x6f\x6c\x6a\x6e\x6b\x69\x6c\x68\x66\x6a\x66\x65\ +\x69\x64\x63\x67\x63\x62\x65\x62\x61\x65\x61\x5f\x63\x5f\x5e\x60\ +\x5d\x5b\x61\x5d\x59\x62\x5e\x5b\x63\x5d\x57\x5c\x56\x52\x57\x51\ +\x4d\x60\x57\x4e\x5e\x55\x4a\x61\x56\x4b\x6b\x5c\x4d\x68\x57\x48\ +\x5f\x50\x42\x56\x48\x3a\x4d\x40\x34\x4f\x41\x33\x4a\x3c\x2f\x47\ +\x39\x2b\x3c\x31\x24\x37\x2d\x21\x39\x2e\x20\x3a\x2d\x1f\x3b\x2d\ +\x1e\x3c\x2d\x1e\x39\x2b\x1d\x3f\x30\x20\x39\x2c\x1d\x3e\x2f\x20\ +\x39\x2b\x1d\x30\x25\x18\x2b\x21\x16\x23\x1a\x11\x22\x19\x10\x19\ +\x13\x0c\x1b\x15\x0d\x1d\x16\x0e\x1e\x17\x0e\x23\x1a\x11\x31\x24\ +\x17\x36\x28\x1a\x2b\x20\x15\x1e\x17\x0f\x22\x19\x10\x2d\x21\x15\ +\x30\x24\x17\x2a\x20\x14\x2b\x21\x15\x30\x24\x17\x26\x1d\x13\x26\ +\x1d\x12\x24\x1b\x11\x22\x1a\x10\x32\x27\x19\x43\x32\x21\x37\x29\ +\x1a\x4c\x39\x25\x64\x4b\x31\x50\x42\x34\x3a\x3a\x3b\x44\x45\x46\ +\x50\x51\x52\x5d\x5e\x60\x67\x68\x69\x70\x72\x73\x76\x7a\x7c\x7b\ +\x7e\x81\x7d\x80\x84\x6b\x6e\x72\x6d\x71\x74\x80\x84\x86\x7c\x80\ +\x84\x7b\x7f\x83\x79\x7e\x81\x78\x7d\x80\x76\x7b\x7f\x74\x78\x7d\ +\x73\x78\x7d\x71\x77\x7c\x6f\x75\x7d\x6f\x75\x7c\x6d\x74\x7b\x6b\ +\x72\x7b\x69\x70\x79\x65\x6e\x77\x66\x6f\x78\x68\x71\x7a\x68\x71\ +\x7a\x64\x6d\x76\x65\x6d\x76\x62\x6c\x75\x65\x70\x78\x63\x6d\x77\ +\x54\x60\x6b\x1c\x23\x29\x00\x00\x00\xa7\xa2\xa3\xa5\xa1\xa2\xa3\ +\x9e\x9f\x9e\x99\x99\x9e\x9a\x9a\x9d\x99\x98\x99\x96\x94\x97\x94\ +\x92\x94\x90\x8f\x90\x8c\x8c\x92\x8d\x8d\x91\x8c\x8b\x91\x8d\x8d\ +\x8e\x89\x89\x8c\x87\x86\x8e\x89\x89\x90\x8b\x8b\x8e\x88\x88\x8c\ +\x87\x87\x8c\x86\x86\x8d\x87\x88\x8c\x87\x87\x8b\x86\x86\x88\x84\ +\x82\x8c\x88\x86\x8b\x87\x85\x8c\x87\x86\x88\x84\x81\x87\x82\x80\ +\x88\x83\x83\x89\x84\x84\x87\x82\x81\x84\x7e\x7d\x8b\x7f\x76\x81\ +\x7d\x7b\x80\x7b\x79\x80\x7b\x7a\x7e\x79\x79\x7e\x79\x79\x7b\x77\ +\x75\x7a\x76\x74\x79\x75\x73\x77\x73\x71\x79\x73\x6f\x77\x71\x6f\ +\x73\x6f\x6f\x72\x6e\x6e\x70\x6c\x6c\x6f\x6b\x6b\x6d\x69\x68\x6b\ +\x67\x67\x6a\x66\x66\x68\x65\x65\x66\x63\x62\x65\x63\x61\x63\x60\ +\x5f\x63\x60\x5f\x61\x5e\x5d\x5f\x5c\x5b\x5b\x59\x56\x53\x51\x4f\ +\x4e\x4b\x49\x50\x4c\x47\x53\x4d\x47\x54\x4c\x44\x5c\x51\x46\x60\ +\x53\x46\x55\x4b\x40\x56\x4c\x42\x56\x4b\x41\x4f\x45\x3b\x55\x48\ +\x3c\x4e\x43\x38\x4f\x43\x37\x4b\x3e\x32\x46\x39\x2b\x4a\x3a\x2a\ +\x4e\x3c\x29\x48\x38\x26\x53\x3f\x2a\x4e\x3b\x27\x41\x31\x21\x3d\ +\x2f\x1f\x3c\x2e\x1e\x3e\x30\x20\x3d\x2e\x1f\x39\x2b\x1c\x32\x26\ +\x18\x2a\x20\x14\x24\x1b\x10\x2a\x1f\x14\x30\x23\x17\x27\x1d\x12\ +\x21\x18\x0f\x1d\x15\x0d\x1c\x15\x0d\x1f\x17\x0f\x22\x1a\x11\x1e\ +\x17\x0e\x22\x19\x10\x1f\x18\x0f\x2b\x21\x15\x24\x1b\x11\x27\x1e\ +\x13\x28\x1e\x13\x2b\x20\x14\x29\x1f\x14\x35\x27\x19\x35\x28\x1a\ +\x33\x27\x19\x29\x1f\x14\x21\x18\x0f\x28\x1e\x13\x32\x26\x18\x35\ +\x28\x1a\x31\x25\x18\x30\x23\x16\x2e\x22\x16\x2e\x22\x16\x30\x24\ +\x17\x28\x1e\x13\x26\x1d\x12\x37\x29\x1b\x29\x1f\x14\x32\x25\x18\ +\x6f\x54\x38\x63\x51\x3c\x36\x37\x37\x41\x42\x43\x4e\x4f\x50\x5b\ +\x5c\x5d\x67\x68\x69\x70\x71\x72\x74\x77\x79\x79\x7d\x80\x76\x7a\ +\x7d\x66\x6a\x6d\x71\x75\x77\x7f\x82\x84\x7b\x7e\x81\x79\x7e\x80\ +\x78\x7d\x80\x76\x7b\x7e\x73\x77\x7c\x73\x78\x7d\x73\x77\x7e\x6f\ +\x75\x7b\x6d\x73\x7b\x6d\x73\x7b\x6c\x74\x7c\x6d\x74\x7d\x6a\x71\ +\x7a\x69\x72\x7b\x6a\x72\x7b\x69\x71\x7a\x68\x71\x7a\x66\x6f\x78\ +\x66\x6f\x78\x65\x70\x79\x65\x6e\x78\x65\x6f\x79\x51\x5c\x67\x18\ +\x1e\x25\x00\x00\x00\xa4\xa1\xa1\xa2\x9f\x9f\x9d\x9a\x9b\x99\x94\ +\x95\x98\x94\x95\x92\x8e\x8e\x8e\x8a\x8a\x89\x85\x84\x85\x81\x7f\ +\x83\x80\x7f\x83\x7e\x7c\x80\x7d\x7b\x81\x7c\x7c\x7f\x7a\x79\x7e\ +\x79\x78\x7e\x79\x77\x7d\x79\x77\x7c\x77\x77\x7a\x75\x75\x7b\x76\ +\x76\x7c\x77\x76\x7a\x75\x74\x79\x73\x73\x75\x70\x6e\x77\x73\x71\ +\x78\x73\x72\x76\x72\x71\x76\x71\x70\x76\x71\x6f\x77\x73\x72\x75\ +\x71\x71\x74\x70\x6e\x72\x6d\x6c\x78\x6e\x68\x6f\x6b\x6a\x6d\x69\ +\x68\x6b\x67\x66\x6a\x67\x67\x69\x66\x65\x68\x64\x63\x66\x63\x61\ +\x64\x61\x60\x64\x60\x5f\x62\x5f\x5e\x61\x5e\x5e\x60\x5d\x5b\x5e\ +\x5c\x5a\x5d\x5a\x59\x59\x56\x55\x53\x50\x4f\x4d\x4a\x48\x49\x46\ +\x42\x4a\x45\x40\x55\x4b\x43\x59\x4d\x43\x55\x4a\x3e\x50\x44\x39\ +\x4f\x43\x36\x60\x4f\x3e\x54\x45\x36\x48\x3b\x2d\x4f\x3f\x2f\x4b\ +\x3b\x2c\x43\x35\x27\x3f\x32\x24\x3f\x31\x22\x3b\x2d\x1f\x36\x29\ +\x1c\x38\x2c\x1f\x40\x32\x22\x41\x32\x22\x45\x35\x24\x36\x29\x1c\ +\x37\x2a\x1c\x37\x2a\x1b\x36\x28\x1b\x2a\x20\x14\x2d\x22\x16\x2b\ +\x20\x14\x2a\x1f\x14\x2c\x21\x15\x2f\x23\x16\x29\x1f\x14\x23\x1a\ +\x11\x25\x1c\x12\x22\x19\x10\x27\x1e\x13\x2f\x24\x17\x35\x28\x19\ +\x2e\x23\x16\x2d\x21\x15\x2c\x21\x15\x29\x1f\x13\x2a\x20\x14\x24\ +\x1b\x11\x2b\x20\x15\x35\x28\x1a\x35\x28\x1a\x2c\x22\x15\x2d\x21\ +\x15\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x37\x29\x1a\x2b\x20\x14\ +\x2b\x21\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x34\ +\x27\x19\x2d\x22\x15\x29\x1f\x13\x2a\x20\x14\x38\x2a\x1b\x37\x29\ +\x1a\x31\x25\x17\x2f\x23\x16\x31\x25\x18\x3c\x2e\x1d\x2b\x20\x14\ +\x21\x19\x10\x2f\x24\x17\x28\x1e\x13\x2a\x1f\x14\x52\x3f\x2a\x6e\ +\x56\x3e\x33\x34\x34\x3e\x3f\x3f\x4c\x4d\x4e\x59\x5b\x5b\x66\x67\ +\x68\x6d\x71\x71\x73\x77\x79\x77\x7a\x7e\x6c\x6e\x71\x68\x6b\x6e\ +\x7c\x81\x83\x7c\x80\x81\x7a\x80\x81\x7a\x7f\x82\x75\x7a\x7d\x75\ +\x79\x7e\x73\x78\x7d\x72\x78\x7e\x73\x78\x80\x6f\x75\x7d\x6f\x74\ +\x7d\x6c\x73\x7c\x6c\x73\x7c\x6d\x74\x7d\x6b\x74\x7d\x68\x71\x7a\ +\x66\x6f\x78\x66\x6f\x78\x66\x6f\x78\x67\x70\x7a\x65\x6f\x79\x63\ +\x6d\x77\x63\x6d\x78\x5e\x69\x74\x45\x51\x5a\x20\x24\x2c\x00\x00\ +\x00\xa1\x9d\x9d\x9d\x98\x99\x96\x92\x92\x90\x8c\x8d\x8b\x87\x88\ +\x85\x82\x82\x80\x7e\x7e\x7b\x77\x77\x77\x73\x73\x75\x72\x71\x73\ +\x6f\x6e\x6f\x6b\x6a\x70\x6c\x69\x6e\x6a\x68\x6f\x6a\x67\x6e\x6a\ +\x68\x6b\x67\x66\x69\x66\x64\x6a\x65\x65\x68\x64\x64\x68\x64\x64\ +\x66\x62\x61\x65\x60\x5f\x62\x5e\x5c\x66\x62\x60\x65\x61\x60\x64\ +\x60\x5e\x63\x5f\x5d\x62\x5e\x5d\x63\x5f\x5d\x62\x5e\x5d\x61\x5d\ +\x5c\x5f\x5b\x5a\x5d\x5a\x59\x5c\x59\x57\x5b\x58\x56\x59\x56\x56\ +\x53\x50\x4f\x4e\x4b\x49\x48\x46\x43\x4b\x46\x42\x50\x49\x42\x5a\ +\x4f\x44\x63\x54\x46\x64\x54\x43\x58\x49\x3b\x4e\x41\x33\x54\x44\ +\x35\x4d\x3e\x30\x49\x3b\x2d\x40\x34\x27\x40\x32\x25\x3c\x2f\x22\ +\x38\x2c\x1e\x37\x2a\x1c\x2c\x22\x16\x2b\x20\x15\x2a\x20\x15\x37\ +\x2a\x1b\x37\x29\x1b\x3b\x2c\x1d\x3c\x2d\x1e\x37\x29\x1b\x2e\x22\ +\x16\x26\x1d\x12\x23\x1a\x11\x1d\x16\x0e\x1f\x17\x0e\x1f\x17\x0f\ +\x25\x1c\x12\x31\x25\x18\x37\x29\x1a\x2b\x1f\x14\x2f\x24\x17\x31\ +\x24\x17\x39\x2b\x1c\x2a\x20\x14\x22\x1a\x11\x25\x1c\x12\x2a\x20\ +\x14\x2f\x23\x17\x36\x29\x1a\x31\x25\x18\x28\x1e\x14\x2d\x22\x15\ +\x2f\x23\x17\x36\x29\x1a\x3a\x2b\x1c\x38\x2a\x1b\x31\x25\x17\x32\ +\x25\x18\x2f\x23\x17\x2b\x21\x15\x2c\x22\x15\x2c\x21\x14\x2f\x23\ +\x16\x34\x27\x19\x35\x28\x19\x33\x27\x18\x2e\x22\x16\x31\x25\x17\ +\x32\x25\x18\x2b\x21\x14\x35\x28\x19\x22\x1a\x10\x22\x1a\x11\x27\ +\x1d\x13\x27\x1d\x13\x26\x1d\x13\x29\x1f\x14\x31\x24\x17\x33\x26\ +\x18\x34\x27\x19\x2e\x22\x16\x34\x26\x19\x33\x26\x18\x33\x27\x19\ +\x34\x27\x19\x3a\x2b\x1b\x3c\x2d\x1d\x2a\x20\x14\x22\x1a\x10\x28\ +\x1f\x13\x27\x1d\x12\x29\x1f\x14\x31\x25\x18\x66\x4f\x37\x33\x34\ +\x34\x3d\x3e\x3e\x4a\x4b\x4c\x57\x58\x58\x63\x64\x65\x6c\x6f\x70\ +\x72\x76\x76\x76\x79\x7c\x6a\x6c\x70\x6d\x70\x72\x7e\x82\x85\x7d\ +\x80\x82\x7b\x80\x82\x7a\x7f\x83\x74\x79\x7d\x74\x79\x7e\x74\x7a\ +\x7f\x72\x78\x7d\x73\x79\x7f\x70\x76\x7d\x6f\x74\x7d\x6f\x75\x7e\ +\x6d\x73\x7c\x6b\x72\x7b\x6b\x73\x7c\x69\x72\x7b\x67\x70\x7a\x65\ +\x6e\x78\x6a\x73\x7c\x66\x6f\x79\x64\x6e\x78\x63\x6d\x77\x64\x6d\ +\x79\x5c\x67\x71\x40\x49\x53\x26\x2c\x36\x00\x00\x00\x9f\x9a\x9b\ +\x98\x94\x95\x8f\x8c\x8c\x85\x82\x82\x7f\x7c\x7c\x79\x77\x77\x71\ +\x6e\x6e\x6b\x68\x67\x67\x65\x64\x65\x62\x62\x63\x60\x5d\x60\x5d\ +\x5b\x5e\x5a\x59\x5d\x5a\x57\x5c\x57\x55\x5c\x58\x56\x59\x55\x53\ +\x58\x54\x52\x58\x54\x53\x59\x55\x54\x56\x53\x52\x56\x53\x51\x55\ +\x50\x4e\x54\x50\x4d\x55\x51\x4f\x54\x50\x4d\x4e\x49\x46\x4b\x45\ +\x41\x4c\x45\x40\x4a\x43\x3d\x52\x48\x40\x5e\x50\x43\x4c\x41\x37\ +\x55\x46\x39\x52\x44\x35\x55\x45\x35\x53\x43\x32\x4d\x3d\x2e\x49\ +\x3a\x2a\x42\x34\x25\x46\x37\x28\x47\x37\x26\x3e\x30\x22\x3a\x2c\ +\x1e\x34\x28\x1b\x3b\x2d\x1e\x34\x27\x19\x2b\x21\x15\x28\x1f\x14\ +\x2e\x23\x16\x2c\x22\x16\x28\x1d\x14\x27\x1d\x13\x24\x1b\x12\x21\ +\x19\x10\x1b\x15\x0d\x1c\x15\x0d\x25\x1b\x12\x2b\x1f\x14\x32\x25\ +\x18\x34\x27\x19\x32\x26\x18\x2c\x21\x15\x27\x1e\x13\x21\x19\x10\ +\x23\x1a\x10\x22\x19\x10\x21\x1a\x10\x20\x17\x0f\x22\x19\x10\x2e\ +\x22\x16\x38\x2a\x1b\x34\x27\x18\x35\x27\x19\x38\x2a\x1b\x3d\x2d\ +\x1e\x37\x2a\x1b\x28\x1e\x13\x26\x1d\x13\x2e\x23\x16\x33\x26\x18\ +\x2e\x22\x16\x2b\x21\x14\x26\x1d\x13\x26\x1d\x12\x30\x25\x18\x32\ +\x26\x19\x35\x27\x1a\x37\x29\x1a\x30\x24\x17\x33\x26\x18\x30\x24\ +\x17\x33\x25\x18\x29\x1f\x14\x2b\x20\x15\x2a\x20\x14\x2d\x21\x15\ +\x38\x29\x1a\x3a\x2c\x1c\x32\x26\x18\x37\x29\x1a\x2d\x22\x16\x26\ +\x1d\x13\x2b\x20\x15\x29\x1f\x14\x1f\x18\x0f\x33\x26\x18\x31\x25\ +\x17\x27\x1e\x13\x24\x1b\x12\x27\x1e\x13\x30\x23\x16\x3a\x2b\x1c\ +\x36\x28\x1a\x2f\x23\x17\x2f\x23\x17\x34\x27\x19\x40\x2f\x1f\x3c\ +\x2d\x1d\x35\x28\x19\x2a\x20\x14\x26\x1c\x12\x26\x1d\x12\x27\x1d\ +\x12\x23\x1b\x11\x31\x24\x17\x5c\x46\x2f\x35\x35\x33\x3d\x3d\x3e\ +\x47\x48\x49\x55\x56\x57\x60\x61\x62\x6a\x6c\x6d\x71\x74\x76\x6d\ +\x6f\x72\x68\x69\x6e\x7a\x7e\x82\x7f\x84\x87\x7c\x81\x84\x7c\x80\ +\x84\x7c\x80\x86\x77\x7d\x81\x73\x7a\x7e\x75\x7b\x81\x73\x79\x7e\ +\x73\x79\x80\x71\x77\x7e\x6f\x75\x7d\x6c\x74\x7c\x6c\x72\x7c\x6c\ +\x73\x7c\x6a\x72\x7a\x68\x71\x7a\x68\x71\x7b\x66\x70\x7a\x67\x70\ +\x79\x69\x72\x7c\x65\x6f\x79\x64\x6e\x78\x63\x6c\x78\x5f\x68\x71\ +\x4c\x54\x5e\x33\x3a\x46\x00\x00\x00\x9b\x97\x98\x92\x8e\x8f\x8a\ +\x86\x86\x80\x7c\x7d\x74\x71\x71\x6d\x6a\x6a\x64\x62\x61\x5b\x59\ +\x58\x57\x54\x53\x54\x52\x51\x51\x4e\x4c\x51\x4e\x4c\x4e\x4b\x4a\ +\x4f\x4c\x4a\x4d\x4a\x47\x46\x41\x40\x3e\x3a\x38\x40\x3a\x36\x4c\ +\x42\x3a\x50\x45\x3b\x53\x47\x3b\x55\x47\x38\x56\x46\x35\x54\x43\ +\x32\x4e\x41\x33\x47\x3b\x30\x3e\x34\x29\x40\x34\x29\x38\x2e\x25\ +\x3a\x30\x23\x35\x2a\x1f\x2e\x24\x19\x34\x27\x1b\x36\x28\x1a\x28\ +\x1e\x13\x24\x1b\x11\x2f\x23\x18\x34\x27\x1a\x2f\x23\x17\x2f\x24\ +\x17\x35\x27\x1a\x3a\x2b\x1c\x32\x25\x18\x25\x1c\x12\x1b\x14\x0c\ +\x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x23\ +\x1b\x11\x25\x1c\x12\x23\x1a\x11\x23\x1b\x11\x20\x18\x0f\x23\x1b\ +\x11\x23\x1a\x11\x26\x1d\x12\x2f\x23\x17\x2d\x21\x15\x30\x24\x17\ +\x2e\x23\x16\x2c\x20\x15\x30\x24\x17\x2f\x24\x17\x2c\x21\x16\x26\ +\x1c\x12\x2b\x21\x15\x2a\x20\x14\x27\x1e\x12\x30\x24\x17\x30\x24\ +\x17\x2e\x22\x16\x2b\x20\x15\x2d\x21\x16\x34\x27\x18\x34\x27\x19\ +\x35\x28\x1a\x31\x25\x17\x29\x1e\x14\x2c\x21\x15\x23\x1b\x10\x24\ +\x1b\x12\x26\x1d\x13\x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x36\x29\ +\x1a\x35\x28\x1a\x37\x29\x1a\x33\x27\x18\x32\x26\x18\x30\x24\x17\ +\x31\x25\x18\x2c\x21\x16\x25\x1d\x12\x24\x1b\x11\x2e\x22\x16\x2c\ +\x20\x15\x3f\x2f\x1f\x40\x31\x1f\x2f\x24\x17\x1e\x17\x0e\x20\x19\ +\x0f\x21\x1a\x10\x21\x19\x10\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\ +\x24\x1c\x11\x28\x1e\x14\x28\x1e\x13\x2c\x22\x15\x34\x27\x19\x30\ +\x24\x17\x30\x24\x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2d\x1d\x31\x25\ +\x18\x30\x24\x17\x2a\x1f\x14\x2f\x23\x17\x2d\x22\x15\x24\x1b\x11\ +\x2c\x21\x15\x6c\x52\x38\x3c\x38\x33\x3c\x3d\x3d\x47\x48\x48\x54\ +\x56\x56\x5f\x60\x60\x68\x6a\x6b\x70\x73\x76\x68\x69\x6d\x64\x66\ +\x69\x7e\x82\x86\x7e\x82\x86\x7c\x81\x85\x7a\x7e\x82\x78\x7e\x83\ +\x79\x7f\x84\x77\x7d\x82\x74\x7a\x80\x74\x7a\x80\x70\x76\x7d\x70\ +\x76\x7e\x70\x76\x7f\x6f\x76\x7e\x6c\x73\x7c\x6c\x72\x7c\x6b\x73\ +\x7c\x69\x72\x7a\x68\x71\x7b\x65\x6f\x78\x66\x70\x7a\x66\x70\x7a\ +\x66\x6f\x7a\x65\x6f\x79\x65\x6f\x78\x62\x6c\x75\x58\x61\x6a\x43\ +\x4a\x56\x00\x00\x00\x99\x92\x8f\x8e\x88\x88\x84\x7e\x7e\x76\x72\ +\x73\x65\x60\x5e\x60\x5a\x57\x47\x43\x41\x49\x43\x3d\x37\x33\x2f\ +\x48\x3e\x34\x66\x53\x41\x59\x49\x37\x4f\x3f\x2f\x49\x3a\x29\x4f\ +\x3f\x2c\x4f\x3e\x2c\x57\x43\x30\x4f\x3d\x2a\x51\x3f\x2a\x45\x36\ +\x25\x32\x27\x1a\x28\x20\x14\x2b\x20\x15\x29\x1e\x14\x2b\x21\x16\ +\x2c\x21\x16\x2d\x23\x17\x26\x1d\x12\x1e\x16\x0f\x2c\x21\x16\x2e\ +\x22\x16\x29\x1f\x13\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2d\x22\ +\x15\x22\x19\x10\x29\x1f\x14\x26\x1c\x12\x27\x1d\x12\x2a\x1f\x14\ +\x32\x25\x18\x36\x28\x1a\x32\x25\x18\x29\x1f\x14\x26\x1d\x12\x2c\ +\x21\x15\x2e\x22\x17\x2c\x21\x14\x2a\x1f\x14\x29\x1f\x14\x28\x1e\ +\x13\x24\x1b\x11\x28\x1e\x13\x2a\x20\x15\x25\x1c\x12\x25\x1b\x11\ +\x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x29\x1f\x14\x22\x1a\x11\x26\ +\x1d\x13\x32\x26\x18\x33\x26\x19\x2a\x1f\x14\x25\x1c\x12\x2c\x21\ +\x16\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\x2e\x22\x17\x2b\x20\x15\ +\x29\x1f\x13\x2c\x21\x15\x30\x24\x16\x34\x28\x1a\x2b\x21\x14\x34\ +\x27\x19\x1f\x18\x0f\x24\x1b\x11\x21\x18\x0f\x26\x1d\x13\x2f\x24\ +\x16\x2a\x20\x15\x29\x20\x14\x2f\x24\x16\x36\x29\x1a\x30\x24\x17\ +\x29\x1f\x14\x2f\x23\x16\x34\x27\x19\x30\x25\x17\x2b\x20\x15\x22\ +\x1a\x10\x1e\x17\x0f\x22\x1a\x11\x2a\x20\x14\x2e\x22\x16\x3e\x2f\ +\x1d\x36\x28\x1a\x33\x26\x18\x1e\x17\x0e\x22\x19\x10\x22\x1a\x10\ +\x22\x1a\x11\x26\x1c\x12\x23\x1a\x11\x24\x1b\x11\x24\x1b\x11\x28\ +\x1e\x13\x30\x24\x17\x2e\x23\x16\x32\x26\x19\x2d\x22\x16\x2a\x1f\ +\x14\x30\x24\x17\x37\x29\x1b\x40\x30\x1f\x3b\x2c\x1c\x44\x32\x20\ +\x2d\x21\x16\x3d\x2d\x1e\x37\x29\x1a\x31\x25\x17\x22\x19\x10\x3b\ +\x2d\x1e\x32\x2f\x2b\x40\x3f\x3e\x46\x47\x47\x53\x54\x55\x5d\x5e\ +\x5e\x67\x69\x6b\x6b\x6e\x71\x64\x66\x6a\x6b\x6d\x71\x7c\x80\x84\ +\x7d\x80\x85\x7c\x80\x85\x7a\x80\x84\x78\x7e\x85\x79\x7f\x85\x76\ +\x7c\x83\x74\x7a\x7f\x71\x78\x7c\x71\x77\x7d\x6f\x75\x7c\x6d\x75\ +\x7c\x6e\x75\x7d\x6c\x73\x7c\x6b\x72\x7b\x6a\x72\x7b\x69\x70\x79\ +\x66\x6e\x78\x64\x6d\x77\x66\x6f\x79\x67\x71\x7b\x65\x6e\x79\x64\ +\x6e\x79\x65\x6f\x79\x66\x70\x7a\x5e\x68\x70\x53\x5c\x66\x00\x00\ +\x00\x4c\x3d\x2d\x4c\x3d\x2d\x64\x56\x4a\x74\x64\x57\x7a\x61\x48\ +\x6b\x52\x39\x5f\x48\x32\x5b\x47\x30\x4b\x39\x27\x4d\x3a\x27\x4e\ +\x3c\x27\x2d\x22\x16\x1e\x17\x0f\x21\x18\x0f\x28\x1f\x14\x27\x1e\ +\x13\x29\x1f\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x11\x27\x1e\x13\ +\x22\x19\x10\x22\x19\x10\x21\x19\x10\x21\x19\x0f\x27\x1e\x13\x2a\ +\x1f\x14\x31\x25\x18\x28\x1f\x14\x1f\x17\x0f\x25\x1b\x12\x30\x24\ +\x17\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x27\x1d\x12\x23\x1a\x11\ +\x22\x1a\x10\x23\x1a\x10\x25\x1b\x11\x2a\x1f\x14\x30\x24\x17\x33\ +\x26\x19\x39\x2b\x1c\x2d\x22\x16\x28\x1e\x13\x37\x29\x1a\x3a\x2b\ +\x1c\x38\x2a\x1b\x38\x2b\x1b\x38\x2a\x1c\x33\x27\x19\x32\x26\x18\ +\x2b\x20\x15\x28\x1e\x13\x28\x1d\x13\x27\x1d\x13\x27\x1d\x12\x28\ +\x1e\x13\x24\x1b\x11\x24\x1b\x11\x23\x1a\x10\x25\x1b\x11\x24\x1b\ +\x11\x2a\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x2c\x22\x16\x31\x25\x18\ +\x2d\x21\x16\x2d\x22\x16\x29\x1f\x14\x2c\x22\x15\x2b\x20\x14\x25\ +\x1c\x12\x2c\x21\x15\x2e\x22\x16\x32\x26\x18\x30\x24\x17\x25\x1c\ +\x12\x1f\x18\x0f\x2c\x21\x15\x30\x24\x17\x25\x1c\x12\x29\x1f\x13\ +\x26\x1c\x12\x25\x1c\x12\x31\x24\x17\x2f\x23\x17\x2a\x20\x14\x31\ +\x25\x18\x31\x25\x18\x32\x25\x18\x2c\x21\x15\x22\x1a\x11\x20\x19\ +\x10\x25\x1d\x12\x29\x1f\x14\x35\x27\x19\x33\x27\x19\x34\x27\x19\ +\x30\x24\x17\x23\x1b\x11\x22\x1a\x10\x27\x1d\x12\x24\x1b\x11\x24\ +\x1b\x11\x23\x1a\x11\x26\x1c\x12\x23\x1b\x11\x28\x1e\x13\x2a\x20\ +\x14\x2e\x22\x16\x38\x2a\x1b\x35\x28\x1a\x2a\x1f\x14\x2b\x20\x14\ +\x2b\x21\x15\x38\x2a\x1b\x41\x31\x1f\x3b\x2c\x1c\x31\x25\x18\x33\ +\x27\x18\x3c\x2d\x1d\x39\x2a\x1b\x32\x26\x18\x3a\x2e\x1d\x30\x2c\ +\x27\x3a\x3a\x3a\x44\x45\x45\x50\x51\x52\x5b\x5c\x5d\x65\x68\x68\ +\x66\x69\x6c\x5d\x60\x63\x77\x7b\x7f\x7b\x7f\x83\x7a\x7f\x83\x7b\ +\x7e\x84\x7a\x7e\x83\x77\x7d\x84\x78\x7e\x85\x75\x7b\x82\x73\x79\ +\x7f\x6f\x77\x7c\x70\x77\x7e\x71\x78\x7f\x6f\x77\x7e\x6c\x74\x7c\ +\x6c\x74\x7d\x6a\x72\x7b\x69\x71\x7a\x69\x71\x7a\x66\x6e\x77\x64\ +\x6e\x77\x65\x6f\x78\x66\x6f\x79\x64\x6f\x79\x63\x6d\x77\x66\x70\ +\x7a\x66\x70\x7a\x63\x6d\x77\x60\x6a\x74\x00\x00\x00\x53\x3e\x29\ +\x59\x43\x2c\x80\x62\x43\x5c\x45\x30\x38\x2a\x1b\x36\x29\x1a\x33\ +\x26\x19\x34\x27\x19\x37\x28\x1a\x3a\x2c\x1c\x41\x31\x20\x2a\x1f\ +\x14\x21\x19\x0f\x22\x19\x10\x24\x1c\x12\x27\x1d\x13\x33\x26\x18\ +\x26\x1d\x13\x1f\x17\x0f\x24\x1b\x11\x27\x1d\x13\x2c\x20\x15\x28\ +\x1e\x14\x26\x1d\x13\x1f\x18\x0f\x27\x1d\x13\x2b\x20\x15\x38\x2b\ +\x1b\x33\x25\x18\x25\x1c\x12\x1e\x17\x0f\x23\x1b\x11\x23\x1a\x11\ +\x2c\x20\x15\x2d\x21\x15\x2e\x23\x16\x2d\x22\x15\x29\x1f\x13\x22\ +\x1a\x10\x22\x1a\x10\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x37\x28\ +\x1a\x27\x1d\x13\x22\x1a\x11\x2d\x22\x15\x38\x2a\x1a\x49\x37\x24\ +\x43\x32\x20\x3e\x30\x1e\x37\x29\x1b\x30\x24\x17\x2b\x20\x14\x29\ +\x1f\x13\x2c\x21\x15\x3b\x2c\x1c\x34\x27\x19\x37\x2a\x1a\x29\x1f\ +\x13\x28\x1e\x13\x25\x1b\x12\x1c\x14\x0d\x1c\x15\x0e\x24\x1b\x12\ +\x27\x1e\x13\x26\x1c\x12\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x29\ +\x1e\x14\x39\x2b\x1c\x2c\x21\x16\x2a\x1f\x14\x26\x1d\x12\x2e\x22\ +\x16\x27\x1c\x13\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x23\x1a\x10\ +\x29\x1f\x14\x32\x26\x18\x32\x26\x17\x2b\x20\x15\x2d\x22\x15\x35\ +\x28\x1a\x38\x2a\x1b\x34\x26\x18\x2f\x23\x17\x31\x25\x18\x37\x2a\ +\x1b\x36\x28\x1a\x26\x1c\x12\x22\x1a\x10\x20\x18\x0f\x2e\x23\x16\ +\x32\x26\x18\x29\x1f\x14\x30\x24\x17\x37\x29\x1b\x36\x29\x1a\x2c\ +\x22\x15\x26\x1c\x12\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x2b\x20\ +\x15\x2e\x23\x16\x2e\x22\x16\x32\x25\x18\x31\x25\x17\x2f\x23\x17\ +\x36\x28\x1a\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x27\x1d\x13\x36\ +\x29\x1a\x40\x30\x1f\x34\x28\x19\x27\x1e\x13\x2a\x20\x14\x2e\x23\ +\x16\x37\x29\x1b\x36\x28\x1a\x2e\x23\x16\x45\x3a\x2f\x39\x39\x3a\ +\x44\x45\x45\x4f\x50\x51\x59\x5a\x5b\x63\x66\x66\x61\x63\x66\x5d\ +\x60\x64\x7d\x80\x84\x7a\x7e\x82\x7a\x7e\x82\x7b\x7e\x84\x7a\x7d\ +\x82\x78\x7d\x84\x77\x7d\x84\x75\x7b\x81\x72\x78\x7d\x71\x79\x7e\ +\x71\x79\x80\x6f\x77\x7e\x6f\x77\x7e\x6b\x73\x7c\x68\x71\x7a\x6b\ +\x73\x7c\x69\x72\x7b\x65\x6f\x78\x65\x6f\x77\x63\x6e\x76\x64\x6f\ +\x76\x65\x6f\x79\x66\x70\x7a\x64\x6e\x77\x67\x71\x7b\x66\x70\x7a\ +\x64\x6e\x78\x62\x6c\x76\x00\x00\x00\x45\x34\x22\x3d\x2e\x1e\x7b\ +\x5d\x3f\x36\x29\x1b\x27\x1d\x13\x32\x25\x18\x26\x1d\x12\x33\x26\ +\x18\x33\x26\x18\x2b\x20\x14\x33\x26\x19\x30\x25\x17\x2a\x20\x14\ +\x29\x1e\x14\x28\x1e\x13\x32\x25\x18\x2d\x22\x15\x22\x1a\x11\x29\ +\x1f\x14\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x30\x24\x17\x22\x1a\ +\x10\x24\x1b\x11\x25\x1b\x11\x30\x24\x17\x31\x24\x17\x30\x24\x17\ +\x26\x1d\x13\x24\x1b\x11\x1c\x15\x0d\x1f\x17\x0f\x33\x27\x19\x30\ +\x24\x17\x38\x2a\x1c\x29\x1f\x14\x24\x1b\x11\x20\x19\x0f\x23\x1a\ +\x10\x23\x1b\x11\x2a\x20\x15\x2d\x22\x16\x2d\x22\x16\x2e\x23\x16\ +\x2f\x23\x17\x2e\x22\x15\x36\x28\x1a\x46\x35\x22\x4a\x37\x23\x5a\ +\x44\x2c\x43\x32\x20\x3a\x2c\x1c\x39\x2b\x1b\x33\x26\x18\x32\x25\ +\x18\x2c\x21\x15\x33\x26\x19\x36\x29\x1a\x38\x29\x1a\x28\x1e\x13\ +\x25\x1c\x11\x25\x1b\x12\x24\x1b\x11\x29\x1e\x13\x28\x1d\x13\x23\ +\x1a\x11\x21\x19\x10\x20\x18\x10\x26\x1c\x12\x26\x1c\x12\x29\x1f\ +\x13\x2b\x20\x14\x2f\x23\x16\x35\x29\x1a\x33\x26\x18\x33\x27\x19\ +\x2a\x20\x14\x30\x24\x17\x35\x27\x19\x2c\x20\x15\x2a\x20\x14\x2d\ +\x22\x15\x33\x26\x17\x2d\x22\x15\x2e\x22\x16\x38\x2a\x1b\x3c\x2d\ +\x1d\x37\x29\x1b\x2e\x22\x16\x31\x24\x17\x31\x25\x17\x28\x1e\x13\ +\x26\x1d\x12\x26\x1c\x12\x23\x1a\x11\x20\x18\x0f\x21\x19\x0f\x25\ +\x1b\x12\x2e\x22\x16\x3a\x2b\x1c\x39\x2b\x1c\x2d\x22\x15\x29\x1f\ +\x14\x2a\x20\x14\x2a\x20\x14\x27\x1d\x13\x27\x1d\x13\x30\x24\x17\ +\x31\x24\x17\x30\x25\x17\x32\x26\x18\x30\x24\x17\x2d\x21\x16\x29\ +\x1f\x14\x2a\x20\x14\x33\x27\x19\x2f\x24\x16\x31\x25\x17\x40\x30\ +\x1f\x37\x29\x1a\x2c\x22\x16\x2f\x24\x17\x23\x1b\x11\x2d\x22\x16\ +\x32\x25\x18\x38\x2b\x1c\x54\x45\x35\x37\x38\x39\x43\x43\x44\x4c\ +\x4d\x4d\x59\x5b\x5b\x5f\x61\x62\x5a\x5d\x5e\x6d\x6f\x73\x79\x7c\ +\x7f\x7b\x7d\x82\x7c\x7f\x84\x7b\x7f\x84\x79\x7d\x81\x7a\x7e\x84\ +\x77\x7d\x84\x76\x7c\x83\x73\x7a\x81\x73\x7b\x80\x70\x78\x7f\x6f\ +\x77\x7e\x6f\x77\x7e\x6c\x74\x7c\x68\x72\x7a\x6b\x74\x7c\x6a\x72\ +\x7b\x67\x70\x78\x66\x70\x78\x64\x6e\x77\x65\x6f\x78\x65\x70\x7a\ +\x66\x6f\x7a\x64\x6e\x77\x66\x70\x7a\x64\x6e\x78\x62\x6c\x75\x64\ +\x6e\x78\x00\x00\x00\x50\x3b\x27\x46\x35\x22\x53\x3f\x2a\x30\x24\ +\x17\x22\x19\x10\x2d\x22\x16\x32\x25\x18\x34\x27\x19\x3b\x2c\x1c\ +\x3e\x2e\x1d\x3e\x2f\x1e\x32\x25\x17\x32\x25\x18\x2e\x23\x16\x2d\ +\x22\x15\x31\x25\x18\x2e\x22\x16\x2a\x1f\x14\x27\x1d\x12\x2c\x21\ +\x15\x27\x1d\x13\x2a\x1f\x14\x26\x1c\x12\x20\x18\x10\x20\x18\x0f\ +\x24\x1c\x11\x32\x26\x18\x2c\x22\x15\x2b\x20\x15\x2c\x21\x15\x2e\ +\x22\x16\x26\x1d\x12\x23\x1a\x10\x2c\x21\x15\x2c\x20\x15\x36\x29\ +\x1a\x33\x27\x19\x2e\x23\x16\x2c\x21\x15\x20\x18\x0f\x21\x19\x10\ +\x27\x1d\x13\x24\x1b\x11\x25\x1c\x12\x24\x1b\x12\x21\x19\x10\x2b\ +\x20\x15\x35\x28\x1a\x3b\x2c\x1c\x3a\x2c\x1b\x43\x32\x21\x34\x26\ +\x19\x2f\x23\x16\x2e\x22\x16\x3a\x2b\x1c\x37\x29\x1a\x31\x24\x17\ +\x35\x27\x19\x3e\x2e\x1e\x3d\x2e\x1e\x3d\x2d\x1d\x38\x2a\x1b\x2c\ +\x21\x15\x26\x1d\x12\x24\x1a\x11\x21\x19\x10\x23\x1a\x11\x22\x19\ +\x10\x23\x1a\x10\x24\x1b\x11\x27\x1d\x13\x2f\x23\x17\x2c\x21\x16\ +\x36\x28\x1a\x37\x2a\x1b\x38\x2a\x1b\x3d\x2e\x1e\x39\x2b\x1b\x37\ +\x29\x1a\x3e\x2f\x1e\x2c\x21\x15\x2e\x23\x16\x28\x1d\x13\x2b\x20\ +\x14\x2b\x20\x14\x31\x25\x18\x3a\x2c\x1c\x35\x29\x1a\x30\x25\x17\ +\x2e\x23\x16\x2f\x23\x17\x2e\x23\x17\x29\x1e\x14\x28\x1e\x14\x2c\ +\x21\x16\x25\x1c\x12\x27\x1e\x13\x27\x1e\x13\x25\x1c\x11\x2f\x23\ +\x17\x3a\x2b\x1c\x36\x29\x1a\x2f\x23\x16\x36\x29\x1a\x39\x2b\x1c\ +\x3e\x2e\x1e\x3b\x2c\x1c\x40\x30\x1f\x45\x34\x22\x3f\x2e\x1e\x3f\ +\x2f\x1f\x40\x30\x1f\x3c\x2d\x1c\x36\x29\x1a\x2f\x24\x16\x31\x25\ +\x17\x2e\x23\x16\x32\x25\x18\x2f\x23\x17\x3b\x2b\x1c\x42\x31\x20\ +\x2f\x23\x16\x29\x1e\x14\x26\x1c\x12\x2d\x23\x17\x28\x1e\x13\x2d\ +\x23\x16\x43\x37\x2b\x36\x37\x37\x41\x41\x42\x4a\x4c\x4c\x57\x59\ +\x59\x5d\x60\x60\x56\x57\x5a\x74\x76\x7a\x79\x7c\x80\x7c\x7f\x83\ +\x7c\x7e\x83\x79\x7d\x82\x79\x7d\x81\x79\x7d\x82\x77\x7c\x83\x75\ +\x7b\x82\x75\x7c\x83\x73\x7a\x81\x71\x79\x80\x6f\x77\x7e\x6e\x76\ +\x7e\x6a\x73\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7a\x67\x71\x79\ +\x66\x6f\x79\x65\x6f\x78\x67\x71\x7a\x67\x72\x7b\x66\x70\x7a\x64\ +\x6f\x78\x64\x6f\x78\x63\x6e\x77\x63\x6d\x76\x66\x70\x7a\x00\x00\ +\x00\x39\x2b\x1b\x3d\x2e\x1e\x72\x56\x38\x32\x26\x18\x25\x1c\x12\ +\x27\x1d\x12\x2d\x21\x15\x30\x24\x17\x3c\x2d\x1d\x41\x31\x1f\x42\ +\x31\x20\x3d\x2e\x1d\x30\x24\x17\x2a\x1f\x14\x22\x19\x10\x24\x1b\ +\x11\x2b\x20\x14\x2a\x1f\x14\x2f\x23\x16\x2f\x24\x17\x26\x1c\x12\ +\x20\x18\x0f\x23\x1b\x11\x2a\x1f\x14\x25\x1c\x12\x20\x18\x0f\x28\ +\x1e\x14\x2a\x1f\x14\x23\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\x24\ +\x17\x2a\x1f\x14\x26\x1c\x12\x20\x18\x0f\x2d\x22\x16\x2f\x24\x17\ +\x32\x25\x18\x28\x1e\x14\x22\x1a\x10\x27\x1e\x13\x26\x1d\x12\x22\ +\x19\x10\x27\x1d\x13\x2c\x21\x15\x24\x1b\x12\x22\x19\x10\x31\x24\ +\x18\x42\x31\x20\x3a\x2b\x1c\x3c\x2d\x1d\x2b\x21\x15\x31\x24\x17\ +\x34\x28\x19\x30\x24\x16\x36\x28\x1a\x2b\x20\x14\x31\x25\x18\x33\ +\x26\x19\x2a\x1f\x14\x38\x29\x1b\x3f\x2f\x1e\x42\x31\x20\x2a\x20\ +\x14\x26\x1d\x13\x29\x1e\x13\x25\x1c\x11\x29\x1f\x13\x28\x1e\x13\ +\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x31\x25\x18\x33\x26\x18\x34\ +\x27\x19\x35\x28\x19\x36\x28\x19\x35\x27\x19\x37\x29\x1b\x40\x30\ +\x1f\x2c\x21\x14\x2c\x20\x14\x29\x1e\x14\x29\x1e\x13\x28\x1e\x13\ +\x2d\x21\x15\x2e\x23\x16\x32\x25\x18\x2a\x1f\x14\x2d\x22\x16\x31\ +\x25\x18\x2a\x1f\x14\x27\x1d\x13\x2b\x20\x15\x30\x24\x17\x2e\x22\ +\x16\x2a\x1f\x14\x32\x26\x18\x2d\x22\x15\x26\x1d\x12\x31\x24\x17\ +\x34\x27\x18\x35\x28\x19\x35\x27\x19\x3f\x2f\x1f\x3d\x2e\x1d\x47\ +\x36\x23\x48\x36\x23\x49\x37\x23\x3e\x2e\x1e\x47\x34\x22\x47\x35\ +\x22\x44\x33\x21\x3a\x2b\x1c\x32\x25\x18\x35\x28\x19\x37\x29\x1a\ +\x34\x27\x19\x30\x25\x17\x2d\x21\x15\x34\x27\x19\x3d\x2e\x1d\x3f\ +\x2f\x1f\x2b\x21\x15\x2c\x21\x15\x22\x19\x10\x28\x1d\x13\x3e\x32\ +\x25\x35\x36\x37\x3f\x40\x40\x49\x4b\x4c\x54\x56\x57\x53\x56\x59\ +\x59\x5b\x5f\x70\x73\x78\x77\x79\x7e\x7b\x7e\x83\x7b\x7d\x82\x78\ +\x7c\x81\x78\x7c\x80\x79\x7e\x83\x79\x7f\x84\x76\x7c\x82\x75\x7c\ +\x83\x71\x79\x80\x71\x79\x80\x6f\x77\x7e\x6c\x74\x7c\x6b\x73\x7d\ +\x69\x72\x7b\x6a\x73\x7c\x69\x73\x7c\x68\x72\x7b\x66\x71\x7a\x64\ +\x6e\x77\x66\x71\x79\x66\x70\x7a\x66\x70\x79\x66\x70\x79\x64\x6e\ +\x76\x63\x6e\x76\x64\x6f\x77\x66\x70\x7a\x00\x00\x00\x36\x29\x1a\ +\x2e\x22\x16\x49\x37\x24\x36\x29\x1b\x24\x1b\x12\x21\x19\x0f\x28\ +\x1e\x13\x2c\x22\x15\x31\x24\x17\x30\x24\x17\x37\x2a\x1a\x35\x28\ +\x19\x2e\x21\x15\x1b\x14\x0d\x1d\x15\x0e\x2a\x1f\x14\x28\x1e\x13\ +\x2e\x23\x16\x32\x25\x18\x2c\x20\x15\x20\x18\x0f\x18\x12\x0b\x28\ +\x1e\x13\x38\x2a\x1b\x2e\x22\x16\x23\x1a\x11\x1e\x16\x0e\x27\x1d\ +\x13\x27\x1e\x13\x26\x1d\x12\x26\x1c\x12\x2c\x21\x15\x2e\x22\x16\ +\x2d\x22\x16\x25\x1c\x12\x29\x1f\x14\x2f\x22\x16\x2f\x23\x16\x31\ +\x25\x18\x2d\x21\x15\x2b\x20\x14\x24\x1b\x11\x26\x1c\x13\x2b\x1f\ +\x14\x2a\x1f\x14\x29\x1f\x14\x2a\x1f\x14\x31\x25\x18\x3f\x2f\x1e\ +\x3e\x2e\x1e\x3b\x2d\x1d\x32\x26\x18\x33\x27\x19\x38\x2a\x1b\x2f\ +\x24\x17\x2a\x20\x14\x2c\x21\x16\x2c\x21\x15\x30\x24\x17\x35\x27\ +\x1a\x34\x27\x19\x2f\x23\x16\x31\x25\x18\x2f\x23\x17\x2b\x20\x14\ +\x29\x1f\x13\x2f\x23\x16\x30\x24\x17\x2c\x21\x15\x2f\x23\x16\x2f\ +\x23\x17\x2d\x22\x16\x39\x2b\x1b\x3b\x2c\x1d\x36\x29\x1a\x34\x27\ +\x19\x32\x25\x18\x34\x27\x19\x38\x2b\x1a\x3b\x2c\x1c\x34\x27\x19\ +\x34\x27\x19\x33\x27\x19\x27\x1d\x13\x27\x1d\x13\x2d\x22\x15\x2d\ +\x22\x16\x2d\x22\x16\x2d\x22\x16\x29\x1f\x14\x2c\x21\x15\x28\x1e\ +\x13\x22\x1a\x10\x27\x1d\x13\x32\x25\x18\x33\x27\x19\x38\x29\x1a\ +\x38\x2a\x1b\x2a\x20\x14\x28\x1e\x13\x27\x1d\x12\x2b\x20\x14\x29\ +\x1f\x14\x2a\x1f\x14\x31\x25\x18\x39\x2b\x1b\x34\x27\x19\x39\x2c\ +\x1c\x42\x32\x20\x3b\x2c\x1d\x3f\x30\x1f\x42\x31\x20\x41\x30\x1f\ +\x41\x30\x1f\x3f\x2f\x1e\x34\x27\x19\x2d\x22\x16\x2d\x22\x15\x2e\ +\x22\x16\x31\x25\x17\x3a\x2c\x1c\x37\x2a\x1b\x32\x26\x18\x2f\x24\ +\x17\x32\x26\x19\x24\x1b\x11\x1b\x14\x0c\x40\x33\x24\x34\x35\x35\ +\x3e\x40\x40\x48\x4b\x4b\x52\x53\x54\x47\x49\x4c\x6b\x6d\x71\x70\ +\x74\x78\x75\x79\x7d\x79\x7d\x82\x7a\x7d\x82\x77\x7b\x80\x77\x7b\ +\x80\x79\x7e\x83\x75\x7b\x82\x75\x7b\x82\x71\x79\x80\x73\x7a\x81\ +\x71\x79\x80\x71\x79\x80\x6c\x73\x7b\x6c\x74\x7e\x6b\x75\x7e\x6b\ +\x75\x7e\x69\x73\x7c\x68\x73\x7b\x68\x72\x7b\x65\x6f\x78\x64\x6e\ +\x77\x67\x71\x7a\x68\x71\x7b\x68\x72\x7b\x66\x71\x79\x62\x6d\x75\ +\x62\x6d\x75\x64\x6f\x78\x00\x00\x00\x3b\x2c\x1d\x2b\x20\x14\x54\ +\x3f\x2a\x23\x1b\x11\x19\x13\x0c\x1d\x16\x0e\x22\x1a\x11\x23\x1a\ +\x11\x2b\x20\x14\x30\x24\x17\x35\x27\x19\x34\x27\x19\x2f\x23\x16\ +\x15\x10\x0a\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x12\x27\x1d\x12\x2a\ +\x20\x14\x2f\x24\x17\x29\x20\x14\x21\x19\x10\x28\x1e\x12\x27\x1e\ +\x13\x2b\x20\x14\x22\x19\x10\x1e\x17\x0e\x28\x1d\x13\x2b\x1f\x14\ +\x21\x19\x10\x24\x1b\x11\x2c\x21\x15\x2e\x23\x16\x34\x27\x19\x26\ +\x1c\x12\x27\x1d\x12\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x34\x27\ +\x19\x2c\x21\x15\x34\x27\x19\x2f\x24\x17\x2b\x20\x14\x29\x1f\x14\ +\x2d\x21\x16\x2e\x23\x16\x32\x25\x18\x43\x32\x20\x3c\x2d\x1d\x3d\ +\x2e\x1d\x3d\x2e\x1e\x46\x33\x22\x40\x30\x1f\x2f\x23\x17\x2d\x22\ +\x16\x2f\x23\x16\x2c\x21\x15\x2f\x24\x16\x3b\x2c\x1c\x3d\x2d\x1d\ +\x38\x2a\x1b\x39\x2b\x1b\x35\x28\x19\x2f\x24\x17\x2c\x22\x16\x32\ +\x25\x18\x33\x26\x18\x33\x26\x18\x36\x29\x1a\x33\x27\x19\x36\x28\ +\x1a\x38\x2a\x1b\x33\x26\x19\x2e\x23\x16\x32\x25\x18\x2c\x21\x15\ +\x31\x25\x17\x35\x28\x19\x34\x27\x19\x3f\x30\x1f\x40\x30\x1e\x37\ +\x29\x1a\x36\x28\x1a\x2e\x23\x15\x31\x24\x17\x33\x27\x19\x2c\x21\ +\x15\x29\x1f\x14\x2c\x21\x15\x29\x1e\x13\x26\x1c\x12\x27\x1d\x12\ +\x2c\x20\x14\x30\x24\x17\x37\x29\x1a\x32\x26\x18\x37\x29\x1b\x32\ +\x26\x18\x2b\x20\x15\x2d\x22\x15\x2e\x23\x16\x2a\x1f\x13\x26\x1d\ +\x13\x32\x26\x17\x30\x25\x17\x2f\x23\x17\x34\x28\x19\x3b\x2c\x1c\ +\x36\x28\x1a\x38\x29\x1b\x36\x29\x1a\x39\x2b\x1c\x3e\x2f\x1e\x40\ +\x30\x1f\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x33\x27\x18\x33\x26\ +\x19\x31\x25\x17\x39\x2a\x1b\x37\x29\x1b\x37\x2a\x1b\x37\x2a\x1a\ +\x31\x25\x18\x25\x1b\x12\x3f\x31\x21\x32\x34\x34\x3d\x3e\x3f\x48\ +\x4a\x4b\x51\x53\x54\x47\x48\x4b\x6c\x70\x73\x72\x76\x7a\x74\x79\ +\x7d\x77\x7b\x80\x7a\x7e\x83\x79\x7d\x83\x77\x7d\x82\x76\x7c\x83\ +\x77\x7d\x84\x73\x7a\x81\x72\x79\x80\x73\x7b\x82\x72\x79\x81\x6f\ +\x76\x7f\x6d\x75\x7d\x6e\x75\x7d\x6c\x75\x7e\x68\x72\x7b\x68\x72\ +\x7a\x69\x74\x7c\x67\x71\x7b\x67\x72\x7b\x66\x71\x79\x66\x71\x7a\ +\x65\x70\x78\x66\x6f\x78\x66\x70\x78\x61\x6b\x73\x62\x6c\x75\x67\ +\x70\x79\x00\x00\x00\x38\x2a\x1b\x33\x26\x19\x45\x35\x22\x26\x1c\ +\x12\x17\x11\x0b\x18\x11\x0b\x1b\x14\x0c\x24\x1a\x10\x2b\x21\x15\ +\x32\x25\x17\x2f\x23\x16\x36\x29\x1b\x2a\x1f\x14\x1a\x13\x0c\x1c\ +\x16\x0e\x1e\x16\x0e\x24\x1b\x11\x2e\x22\x16\x31\x25\x17\x3d\x2e\ +\x1e\x3a\x2c\x1c\x2d\x21\x16\x31\x24\x17\x2a\x20\x15\x2b\x21\x15\ +\x28\x1e\x13\x29\x1f\x14\x2f\x23\x16\x33\x27\x18\x25\x1c\x12\x23\ +\x1b\x11\x26\x1d\x12\x2b\x20\x15\x31\x24\x18\x1a\x14\x0c\x1f\x17\ +\x0f\x28\x1e\x13\x2e\x22\x16\x37\x29\x1b\x30\x24\x17\x2d\x22\x16\ +\x2d\x22\x16\x35\x28\x1a\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x2a\ +\x20\x14\x2e\x22\x16\x3c\x2d\x1d\x3a\x2b\x1c\x3d\x2e\x1d\x44\x33\ +\x21\x41\x2f\x1f\x38\x29\x1a\x31\x25\x18\x31\x26\x18\x27\x1e\x13\ +\x2d\x22\x16\x30\x25\x17\x3f\x2f\x1e\x40\x2f\x1f\x3b\x2c\x1d\x37\ +\x2a\x1b\x36\x28\x19\x3a\x2b\x1c\x39\x2b\x1b\x2f\x23\x16\x2d\x21\ +\x15\x2f\x23\x16\x31\x24\x17\x3b\x2c\x1c\x3e\x2f\x1e\x35\x28\x19\ +\x33\x26\x18\x35\x28\x1a\x2c\x21\x15\x27\x1e\x13\x30\x24\x18\x35\ +\x27\x19\x34\x27\x19\x3a\x2b\x1c\x3c\x2d\x1d\x3b\x2c\x1c\x3b\x2c\ +\x1d\x36\x28\x19\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x37\x29\x1a\ +\x35\x28\x1a\x31\x25\x18\x2d\x22\x16\x2a\x20\x14\x32\x26\x17\x35\ +\x28\x1a\x36\x29\x1a\x31\x25\x18\x36\x29\x1a\x39\x2a\x1b\x32\x26\ +\x19\x3b\x2c\x1d\x2a\x1f\x14\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\ +\x28\x1e\x13\x23\x1a\x11\x3e\x2e\x1e\x3d\x2e\x1d\x3b\x2c\x1d\x2c\ +\x22\x16\x30\x24\x17\x39\x2b\x1b\x40\x2f\x1f\x3b\x2c\x1c\x36\x29\ +\x1a\x37\x2a\x1b\x39\x2b\x1b\x30\x25\x17\x31\x25\x17\x33\x25\x18\ +\x39\x2a\x1b\x3a\x2c\x1c\x38\x2a\x1b\x37\x28\x1b\x30\x24\x17\x21\ +\x18\x10\x54\x40\x2c\x31\x33\x33\x3c\x3e\x3f\x45\x47\x48\x44\x46\ +\x48\x58\x59\x5b\x6b\x6f\x71\x71\x75\x7a\x74\x78\x7d\x77\x7b\x7f\ +\x79\x7e\x83\x79\x7e\x84\x76\x7c\x82\x75\x7b\x81\x77\x7d\x84\x74\ +\x7b\x82\x73\x7b\x82\x71\x78\x80\x6d\x74\x7c\x6f\x76\x7e\x6e\x76\ +\x7e\x6c\x75\x7d\x6a\x72\x7b\x69\x72\x7b\x68\x71\x7a\x6b\x74\x7d\ +\x6a\x73\x7d\x68\x72\x7a\x67\x72\x7a\x67\x70\x7a\x66\x70\x79\x65\ +\x6f\x78\x65\x6e\x77\x62\x6c\x75\x64\x6e\x76\x65\x6f\x78\x00\x00\ +\x00\x38\x29\x1b\x39\x2a\x1c\x42\x32\x21\x32\x25\x18\x1d\x15\x0e\ +\x1e\x17\x0f\x20\x18\x0f\x24\x1b\x12\x29\x1f\x13\x29\x1f\x14\x28\ +\x1f\x13\x23\x1a\x11\x1e\x17\x0f\x1a\x14\x0c\x18\x12\x0b\x1a\x13\ +\x0d\x23\x1a\x10\x26\x1c\x12\x2a\x20\x15\x31\x24\x17\x34\x27\x19\ +\x2f\x24\x16\x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x2a\x1f\x14\x25\ +\x1c\x11\x2d\x22\x16\x34\x27\x19\x30\x23\x16\x2b\x21\x14\x1f\x17\ +\x0f\x2b\x20\x15\x29\x1e\x13\x20\x18\x0f\x23\x1a\x10\x27\x1d\x12\ +\x27\x1d\x12\x2b\x21\x15\x24\x1b\x11\x21\x19\x0f\x26\x1d\x12\x2a\ +\x20\x14\x30\x24\x16\x36\x28\x1a\x34\x26\x19\x2f\x22\x16\x31\x25\ +\x18\x3f\x30\x1e\x41\x31\x1f\x41\x31\x1f\x4e\x3a\x26\x43\x32\x20\ +\x2f\x23\x16\x32\x25\x18\x26\x1d\x12\x2e\x22\x16\x2b\x20\x15\x2f\ +\x22\x16\x3b\x2c\x1c\x36\x28\x1a\x35\x27\x19\x2f\x23\x16\x32\x26\ +\x17\x38\x29\x1b\x37\x29\x1b\x34\x27\x19\x32\x25\x18\x2f\x23\x17\ +\x2e\x23\x16\x3b\x2c\x1c\x41\x31\x1f\x44\x33\x21\x36\x28\x19\x2f\ +\x22\x16\x28\x1e\x13\x2e\x22\x16\x36\x29\x1a\x32\x26\x18\x3a\x2b\ +\x1c\x35\x28\x19\x37\x29\x1a\x3a\x2b\x1c\x3d\x2d\x1d\x3c\x2d\x1d\ +\x35\x28\x1a\x3c\x2d\x1d\x40\x30\x1f\x3a\x2c\x1c\x34\x27\x19\x2e\ +\x22\x16\x2d\x21\x15\x2c\x20\x15\x35\x28\x19\x3b\x2c\x1c\x36\x29\ +\x1a\x31\x25\x17\x33\x26\x19\x31\x25\x17\x32\x25\x18\x34\x26\x19\ +\x35\x28\x1a\x2b\x21\x15\x28\x1e\x14\x2c\x21\x15\x2e\x22\x16\x3b\ +\x2c\x1c\x41\x31\x1f\x42\x32\x20\x42\x31\x20\x3c\x2d\x1d\x35\x28\ +\x1a\x33\x26\x19\x3c\x2d\x1d\x40\x30\x1e\x41\x31\x1f\x3f\x2f\x1e\ +\x3a\x2c\x1c\x30\x23\x16\x32\x25\x18\x27\x1d\x13\x2e\x23\x16\x2c\ +\x21\x15\x32\x26\x18\x48\x36\x23\x32\x26\x18\x2c\x21\x15\x3f\x31\ +\x21\x36\x35\x34\x3b\x3d\x3e\x44\x46\x47\x3d\x3e\x41\x5f\x62\x64\ +\x69\x6d\x6f\x6d\x72\x77\x70\x78\x7c\x74\x7a\x80\x78\x7e\x84\x77\ +\x7d\x83\x76\x7c\x83\x75\x7b\x81\x74\x7b\x82\x72\x7a\x80\x71\x79\ +\x80\x70\x77\x7f\x6e\x76\x7d\x6d\x75\x7d\x6d\x75\x7d\x6b\x74\x7b\ +\x6b\x75\x7c\x69\x72\x7a\x69\x72\x7a\x68\x71\x7a\x69\x73\x7c\x66\ +\x71\x7a\x66\x70\x78\x66\x70\x78\x64\x6e\x76\x65\x6f\x77\x65\x70\ +\x78\x62\x6d\x75\x66\x70\x78\x66\x6f\x78\x00\x00\x00\x3d\x2d\x1d\ +\x41\x30\x20\x41\x31\x20\x3b\x2c\x1c\x25\x1c\x12\x27\x1d\x13\x25\ +\x1c\x12\x27\x1d\x13\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0d\x18\x12\ +\x0c\x16\x11\x0a\x1c\x15\x0e\x19\x13\x0b\x1e\x16\x0e\x23\x1a\x11\ +\x1e\x17\x0e\x23\x1a\x11\x2c\x21\x15\x2e\x23\x16\x2a\x20\x14\x2a\ +\x20\x14\x2c\x21\x15\x34\x27\x18\x2c\x21\x15\x27\x1d\x13\x2f\x23\ +\x17\x2b\x20\x15\x28\x1e\x13\x29\x1f\x14\x23\x1a\x10\x20\x18\x0f\ +\x20\x18\x0f\x20\x18\x0f\x20\x19\x0f\x25\x1b\x11\x27\x1e\x13\x2f\ +\x24\x17\x2a\x20\x14\x25\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x23\ +\x16\x3c\x2d\x1c\x40\x30\x1f\x35\x27\x1a\x2a\x20\x14\x2e\x22\x16\ +\x36\x29\x1a\x47\x34\x22\x38\x2b\x1b\x35\x28\x1a\x31\x25\x18\x35\ +\x27\x19\x2e\x23\x16\x2f\x24\x17\x24\x1a\x11\x2b\x20\x14\x2f\x23\ +\x16\x34\x27\x19\x31\x25\x18\x30\x24\x17\x31\x25\x17\x3a\x2b\x1c\ +\x39\x2b\x1b\x33\x26\x18\x36\x28\x19\x38\x29\x1b\x35\x27\x1a\x36\ +\x28\x1a\x3e\x2e\x1d\x43\x32\x20\x2f\x24\x17\x2a\x20\x14\x26\x1c\ +\x12\x22\x19\x10\x2e\x22\x16\x2d\x21\x15\x36\x28\x1a\x35\x27\x19\ +\x3a\x2c\x1c\x30\x24\x17\x2c\x21\x15\x35\x27\x1a\x31\x25\x17\x37\ +\x29\x1a\x37\x2a\x1a\x38\x2a\x1b\x33\x26\x18\x2d\x21\x15\x29\x1f\ +\x13\x2c\x21\x15\x32\x25\x18\x34\x27\x19\x2d\x21\x16\x26\x1d\x12\ +\x2b\x21\x14\x29\x1f\x14\x2e\x22\x16\x3c\x2d\x1d\x35\x28\x1a\x35\ +\x28\x1a\x2f\x23\x17\x29\x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x31\x25\ +\x18\x3b\x2d\x1d\x44\x33\x21\x3c\x2d\x1c\x31\x24\x17\x31\x24\x17\ +\x34\x27\x18\x35\x28\x19\x3a\x2c\x1c\x3f\x2f\x1f\x39\x2b\x1c\x2e\ +\x23\x16\x27\x1d\x13\x26\x1d\x13\x28\x1e\x13\x28\x1d\x12\x2a\x20\ +\x14\x37\x29\x1a\x41\x31\x20\x3e\x2e\x1e\x3d\x2f\x20\x34\x32\x31\ +\x39\x3b\x3c\x3f\x41\x42\x3f\x41\x42\x5e\x61\x63\x66\x6b\x6d\x6b\ +\x72\x75\x63\x6c\x6f\x64\x6e\x73\x71\x78\x7f\x74\x7a\x80\x76\x7d\ +\x84\x76\x7c\x82\x72\x7b\x81\x70\x78\x7f\x72\x7a\x81\x71\x78\x80\ +\x6f\x77\x7e\x6c\x74\x7b\x6b\x72\x7a\x6a\x72\x79\x6b\x73\x7a\x69\ +\x73\x7a\x68\x72\x79\x67\x70\x78\x67\x71\x79\x68\x72\x7b\x66\x70\ +\x7a\x65\x6f\x78\x64\x6e\x76\x65\x6f\x77\x66\x71\x79\x66\x6f\x78\ +\x65\x70\x77\x65\x70\x77\x00\x00\x00\x45\x34\x22\x45\x33\x21\x32\ +\x25\x18\x28\x1e\x13\x1d\x16\x0e\x1c\x15\x0d\x1d\x15\x0e\x1d\x16\ +\x0e\x21\x19\x10\x21\x18\x10\x1a\x13\x0c\x16\x11\x0b\x18\x12\x0b\ +\x1a\x13\x0d\x1c\x15\x0e\x22\x19\x10\x2c\x21\x15\x22\x19\x10\x22\ +\x19\x10\x2a\x1f\x14\x29\x1f\x14\x28\x1e\x13\x24\x1b\x11\x24\x1b\ +\x11\x29\x1f\x13\x2a\x20\x15\x29\x1f\x14\x32\x26\x18\x2f\x24\x16\ +\x32\x25\x18\x34\x27\x19\x31\x24\x17\x22\x1a\x10\x22\x1a\x11\x26\ +\x1d\x12\x29\x1f\x13\x27\x1e\x13\x25\x1b\x12\x2c\x21\x15\x31\x25\ +\x18\x27\x1d\x13\x22\x19\x11\x23\x1a\x10\x23\x1a\x10\x2c\x21\x15\ +\x3c\x2d\x1d\x37\x29\x1a\x2d\x22\x15\x2c\x22\x16\x35\x27\x19\x3b\ +\x2c\x1c\x3b\x2d\x1c\x41\x31\x20\x3b\x2c\x1d\x3a\x2c\x1c\x3a\x2c\ +\x1c\x33\x27\x19\x2e\x23\x16\x2a\x20\x14\x2e\x22\x16\x33\x27\x18\ +\x2d\x22\x15\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x2d\x21\x15\x2e\ +\x22\x16\x37\x29\x1a\x37\x2a\x1b\x35\x27\x1a\x2f\x24\x17\x2f\x23\ +\x16\x2b\x21\x15\x2d\x22\x16\x25\x1b\x11\x27\x1d\x13\x25\x1b\x11\ +\x30\x24\x17\x2d\x22\x16\x36\x29\x1a\x32\x25\x18\x34\x26\x18\x32\ +\x25\x18\x39\x2a\x1b\x36\x28\x1a\x34\x26\x18\x35\x27\x19\x34\x27\ +\x19\x3d\x2d\x1e\x3b\x2b\x1c\x35\x28\x19\x2f\x23\x16\x24\x1b\x12\ +\x25\x1b\x11\x21\x19\x10\x26\x1c\x12\x23\x1a\x10\x2a\x1f\x14\x24\ +\x1b\x12\x24\x1b\x11\x34\x28\x1a\x42\x32\x20\x35\x28\x19\x3e\x2e\ +\x1d\x45\x34\x22\x2a\x1f\x14\x2b\x20\x15\x2f\x23\x17\x37\x29\x1b\ +\x3d\x2e\x1d\x3d\x2f\x1e\x35\x27\x19\x30\x24\x17\x30\x24\x17\x34\ +\x27\x19\x3a\x2b\x1c\x3f\x2f\x1e\x4c\x39\x24\x3d\x2e\x1d\x2a\x1f\ +\x14\x34\x28\x1a\x2e\x23\x16\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\ +\x5a\x44\x2c\x41\x31\x1f\x3f\x2f\x20\x36\x34\x2f\x38\x3a\x3b\x2e\ +\x2f\x31\x50\x53\x53\x5b\x5f\x60\x64\x69\x6b\x58\x5e\x61\x19\x1d\ +\x20\x1f\x24\x28\x66\x6d\x74\x78\x7e\x85\x74\x7b\x82\x76\x7e\x84\ +\x75\x7d\x84\x72\x7a\x81\x70\x78\x7f\x6e\x76\x7d\x6d\x75\x7c\x6e\ +\x75\x7d\x6d\x75\x7d\x6d\x75\x7c\x6b\x73\x7a\x68\x71\x7a\x6a\x73\ +\x7b\x68\x72\x7a\x68\x72\x7b\x67\x71\x7a\x68\x72\x7b\x66\x70\x79\ +\x67\x72\x7b\x64\x6f\x78\x64\x6f\x77\x66\x6f\x78\x69\x72\x7b\x69\ +\x74\x7b\x00\x00\x00\x48\x36\x23\x45\x34\x21\x2c\x20\x15\x22\x19\ +\x10\x1c\x14\x0d\x1d\x15\x0d\x1c\x16\x0d\x1f\x18\x0f\x23\x1a\x11\ +\x22\x19\x10\x1c\x15\x0d\x17\x11\x0b\x1e\x16\x0f\x24\x1b\x11\x2c\ +\x21\x15\x2a\x20\x14\x2f\x24\x17\x2b\x20\x15\x25\x1c\x12\x22\x1a\ +\x10\x23\x1a\x11\x20\x18\x0f\x21\x19\x10\x1d\x16\x0e\x1e\x16\x0e\ +\x20\x19\x10\x26\x1d\x12\x27\x1e\x14\x2c\x21\x15\x33\x26\x19\x38\ +\x2a\x1b\x3b\x2c\x1d\x27\x1d\x13\x21\x18\x10\x24\x1b\x11\x25\x1b\ +\x11\x28\x1e\x13\x29\x1e\x13\x27\x1d\x12\x31\x25\x18\x3d\x2e\x1e\ +\x33\x26\x19\x2e\x23\x16\x2e\x22\x16\x2e\x23\x16\x3a\x2c\x1d\x3a\ +\x2c\x1c\x35\x28\x1a\x2f\x23\x16\x34\x26\x19\x33\x26\x19\x2f\x23\ +\x16\x39\x2a\x1c\x36\x28\x1a\x38\x2b\x1b\x3b\x2c\x1c\x40\x30\x1f\ +\x31\x25\x18\x26\x1d\x13\x2c\x21\x15\x29\x1e\x13\x29\x1f\x14\x2e\ +\x23\x16\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2d\x22\x16\x2e\x22\ +\x16\x31\x25\x18\x3b\x2d\x1d\x39\x2b\x1c\x37\x2a\x1b\x2e\x23\x16\ +\x2c\x21\x15\x2a\x20\x14\x26\x1c\x12\x2c\x22\x15\x32\x26\x18\x35\ +\x28\x1a\x38\x2a\x1a\x37\x29\x1b\x2e\x22\x16\x32\x26\x18\x39\x2a\ +\x1b\x37\x29\x1a\x31\x24\x18\x33\x26\x18\x34\x27\x19\x35\x27\x1a\ +\x34\x27\x19\x35\x28\x19\x32\x26\x18\x28\x1e\x13\x23\x1a\x11\x23\ +\x1a\x11\x2a\x1f\x14\x25\x1c\x12\x2b\x1f\x14\x23\x1a\x11\x1f\x17\ +\x0f\x35\x28\x1a\x3c\x2d\x1d\x34\x26\x19\x2d\x22\x16\x31\x25\x18\ +\x29\x1f\x14\x2f\x23\x16\x37\x29\x1a\x37\x29\x1a\x3d\x2e\x1d\x3d\ +\x2e\x1d\x39\x2b\x1c\x3e\x2e\x1e\x39\x2b\x1c\x32\x25\x18\x2f\x24\ +\x17\x2c\x21\x15\x38\x29\x1b\x40\x30\x1f\x38\x2a\x1b\x36\x29\x1a\ +\x28\x1e\x13\x2e\x23\x16\x34\x27\x19\x35\x27\x19\x42\x32\x20\x41\ +\x31\x1f\x34\x28\x1a\x3b\x36\x31\x37\x38\x3a\x1e\x1e\x1f\x47\x4a\ +\x4c\x5a\x5e\x60\x63\x66\x69\x43\x46\x48\x00\x00\x00\x1b\x1e\x20\ +\x5c\x62\x68\x77\x7e\x85\x73\x7b\x82\x76\x7e\x84\x73\x7b\x82\x73\ +\x7b\x82\x71\x79\x80\x6d\x76\x7d\x6f\x77\x7e\x6e\x77\x7e\x6c\x74\ +\x7d\x6c\x73\x7c\x6b\x74\x7c\x6a\x73\x7c\x6a\x73\x7c\x69\x73\x7c\ +\x68\x72\x7b\x66\x70\x79\x68\x73\x7b\x67\x72\x7a\x6a\x74\x7d\x65\ +\x70\x78\x63\x6e\x76\x66\x71\x78\x6b\x74\x7b\x6b\x75\x7c\x00\x00\ +\x00\x56\x41\x2b\x4b\x38\x24\x2a\x20\x14\x28\x1e\x14\x1c\x15\x0d\ +\x21\x19\x10\x20\x18\x0f\x23\x1b\x10\x22\x19\x10\x1e\x16\x0e\x1e\ +\x17\x0e\x1f\x18\x0f\x25\x1c\x12\x26\x1d\x12\x2b\x20\x14\x31\x25\ +\x17\x34\x27\x19\x2c\x21\x15\x22\x19\x11\x1d\x16\x0e\x20\x18\x10\ +\x1f\x17\x0f\x24\x1b\x11\x23\x1a\x10\x23\x1a\x11\x1d\x16\x0e\x23\ +\x1a\x10\x21\x18\x10\x24\x1b\x11\x2c\x21\x15\x3c\x2d\x1d\x35\x27\ +\x19\x30\x24\x17\x31\x24\x18\x2c\x21\x15\x2d\x21\x15\x32\x26\x18\ +\x34\x27\x19\x2d\x22\x15\x34\x27\x19\x3f\x30\x1f\x3d\x2e\x1d\x39\ +\x2b\x1c\x39\x2b\x1c\x2f\x24\x17\x34\x27\x19\x3c\x2c\x1c\x34\x27\ +\x19\x2a\x1f\x14\x2e\x22\x16\x2f\x23\x17\x2b\x21\x15\x2e\x22\x16\ +\x2d\x22\x16\x31\x26\x17\x3b\x2d\x1d\x3e\x2e\x1d\x34\x27\x19\x32\ +\x26\x18\x2d\x22\x16\x24\x1b\x11\x27\x1e\x13\x29\x1f\x14\x2a\x20\ +\x14\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2a\x1f\x14\x33\x26\x19\ +\x39\x2b\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x2f\x23\x16\x36\ +\x29\x1a\x2d\x22\x15\x29\x20\x14\x34\x27\x19\x2f\x24\x17\x29\x1e\ +\x13\x35\x27\x19\x31\x25\x18\x34\x27\x19\x34\x27\x19\x30\x24\x16\ +\x2f\x23\x17\x37\x29\x1a\x31\x25\x18\x2d\x21\x15\x2e\x22\x16\x30\ +\x24\x17\x34\x26\x19\x32\x25\x18\x27\x1d\x12\x23\x1b\x11\x27\x1d\ +\x13\x22\x1a\x10\x24\x1b\x11\x21\x18\x10\x1f\x17\x0e\x34\x27\x19\ +\x31\x25\x18\x37\x29\x1a\x35\x29\x1a\x3f\x30\x1e\x29\x20\x14\x2e\ +\x22\x16\x30\x23\x17\x38\x2a\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x3b\x2c\ +\x1c\x40\x30\x1f\x3e\x2f\x1e\x36\x29\x1a\x34\x27\x19\x2a\x20\x14\ +\x2d\x21\x16\x3a\x2b\x1c\x3d\x2f\x1e\x37\x29\x1a\x2d\x21\x15\x2d\ +\x21\x16\x2a\x1f\x14\x2a\x20\x14\x30\x23\x17\x2f\x24\x17\x23\x1b\ +\x12\x3b\x34\x2f\x2f\x30\x31\x36\x37\x38\x30\x32\x34\x59\x5c\x5e\ +\x5d\x62\x64\x36\x39\x3c\x00\x00\x00\x2b\x2e\x31\x64\x6a\x70\x73\ +\x7a\x80\x73\x7b\x82\x74\x7c\x82\x72\x7a\x81\x71\x79\x80\x70\x78\ +\x7f\x6d\x77\x7e\x6f\x77\x7f\x6d\x76\x7d\x6b\x74\x7d\x6b\x74\x7d\ +\x6b\x74\x7d\x6b\x75\x7e\x6a\x74\x7d\x6a\x74\x7d\x67\x71\x7a\x65\ +\x70\x78\x66\x71\x79\x67\x72\x7a\x68\x74\x7c\x67\x72\x7a\x66\x71\ +\x79\x68\x72\x7a\x69\x72\x79\x6a\x74\x7b\x00\x00\x00\x5f\x48\x2f\ +\x54\x40\x29\x2f\x24\x17\x1e\x17\x0f\x1f\x17\x0f\x21\x18\x0f\x23\ +\x1a\x10\x26\x1c\x12\x2c\x21\x15\x23\x1a\x11\x26\x1c\x12\x28\x1e\ +\x13\x2d\x22\x16\x2c\x20\x15\x2d\x21\x16\x28\x1e\x14\x30\x24\x17\ +\x2f\x23\x17\x28\x1e\x13\x25\x1c\x12\x23\x1a\x11\x1e\x17\x0f\x23\ +\x1a\x11\x24\x1b\x11\x27\x1d\x12\x26\x1c\x12\x2a\x20\x14\x20\x17\ +\x0f\x23\x1a\x11\x2b\x20\x14\x33\x26\x18\x32\x25\x18\x35\x28\x19\ +\x37\x29\x1b\x31\x25\x18\x34\x28\x19\x3b\x2d\x1d\x2e\x23\x16\x27\ +\x1e\x12\x2f\x23\x16\x37\x29\x1a\x38\x2a\x1b\x37\x29\x1a\x33\x26\ +\x19\x31\x25\x18\x37\x2a\x1a\x3e\x2e\x1e\x33\x25\x18\x2a\x1f\x14\ +\x30\x24\x17\x33\x26\x19\x32\x26\x18\x30\x24\x17\x35\x28\x1a\x33\ +\x27\x18\x33\x26\x18\x3d\x2d\x1d\x3a\x2c\x1c\x3c\x2d\x1d\x35\x27\ +\x1a\x2b\x20\x15\x2a\x20\x14\x29\x1f\x14\x25\x1c\x12\x28\x1e\x13\ +\x2c\x21\x15\x31\x24\x17\x2d\x21\x15\x34\x27\x19\x39\x2b\x1b\x36\ +\x28\x1a\x38\x2a\x1b\x38\x2a\x1b\x34\x26\x19\x33\x26\x18\x31\x24\ +\x18\x29\x1f\x13\x2d\x22\x15\x2b\x21\x14\x2d\x22\x15\x2e\x22\x16\ +\x2e\x22\x16\x34\x27\x19\x37\x29\x1a\x31\x24\x17\x33\x26\x18\x34\ +\x27\x19\x30\x24\x17\x2d\x22\x15\x2a\x1f\x14\x2b\x20\x14\x2f\x23\ +\x17\x2c\x20\x15\x26\x1d\x12\x31\x25\x17\x2b\x20\x15\x2b\x21\x15\ +\x2b\x20\x14\x28\x1d\x13\x32\x25\x18\x2e\x23\x16\x30\x24\x17\x36\ +\x28\x1a\x34\x27\x19\x40\x2f\x1e\x3a\x2c\x1d\x2c\x21\x15\x2d\x21\ +\x15\x2f\x24\x17\x34\x27\x19\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1c\ +\x39\x2b\x1c\x35\x28\x1a\x33\x26\x18\x2b\x20\x14\x2d\x21\x15\x31\ +\x25\x18\x3c\x2e\x1d\x2f\x24\x17\x36\x29\x1a\x33\x26\x19\x31\x25\ +\x18\x2a\x1f\x14\x2e\x22\x16\x24\x1b\x11\x29\x1f\x15\x38\x31\x2a\ +\x23\x25\x26\x40\x42\x44\x36\x38\x3a\x4c\x4e\x51\x5c\x61\x63\x34\ +\x36\x38\x00\x00\x00\x36\x39\x3b\x66\x6c\x70\x6f\x75\x7c\x76\x7c\ +\x83\x75\x7b\x81\x74\x7c\x83\x71\x79\x80\x6d\x76\x7d\x6a\x74\x7c\ +\x6c\x74\x7d\x6b\x74\x7d\x6c\x75\x7e\x6e\x77\x80\x6b\x75\x7d\x6b\ +\x75\x7e\x6c\x76\x7f\x6a\x75\x7d\x68\x72\x7b\x67\x72\x7b\x67\x72\ +\x7a\x66\x70\x78\x65\x70\x78\x67\x72\x7a\x66\x71\x79\x67\x70\x78\ +\x69\x73\x7a\x6b\x74\x7b\x00\x00\x00\x58\x42\x2a\x4d\x3a\x25\x36\ +\x28\x1a\x23\x1a\x11\x1f\x17\x0f\x22\x1a\x10\x2a\x1f\x14\x2b\x20\ +\x15\x2e\x23\x17\x27\x1d\x13\x28\x1e\x13\x28\x1d\x13\x30\x24\x17\ +\x30\x25\x18\x31\x25\x18\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x32\ +\x26\x18\x2c\x21\x15\x27\x1d\x13\x24\x1b\x11\x27\x1d\x13\x24\x1b\ +\x11\x24\x1b\x11\x2d\x22\x16\x2e\x23\x16\x28\x1e\x14\x22\x1a\x11\ +\x2d\x22\x16\x2f\x23\x16\x31\x25\x18\x35\x27\x19\x38\x2a\x1b\x32\ +\x25\x17\x2c\x21\x15\x2f\x24\x17\x2b\x21\x15\x24\x1c\x11\x26\x1d\ +\x12\x32\x25\x18\x3b\x2b\x1c\x38\x2a\x1b\x36\x29\x1a\x35\x28\x1a\ +\x32\x26\x18\x38\x2a\x1b\x36\x28\x1a\x35\x28\x19\x32\x26\x18\x2e\ +\x22\x16\x2d\x22\x16\x32\x26\x19\x30\x24\x16\x2e\x22\x16\x34\x27\ +\x19\x3d\x2e\x1e\x3e\x2e\x1d\x42\x31\x20\x41\x30\x1f\x32\x26\x18\ +\x2f\x23\x16\x29\x1f\x14\x25\x1c\x12\x2a\x20\x14\x2d\x21\x15\x2b\ +\x20\x15\x2d\x22\x16\x31\x24\x17\x33\x26\x19\x35\x27\x19\x33\x26\ +\x18\x3a\x2c\x1c\x34\x27\x19\x33\x26\x18\x35\x28\x1a\x32\x26\x18\ +\x39\x2b\x1b\x39\x2b\x1b\x36\x29\x1a\x28\x1e\x14\x2b\x20\x15\x32\ +\x26\x18\x37\x2a\x1a\x37\x29\x1a\x38\x2a\x1b\x36\x29\x1a\x38\x2a\ +\x1b\x38\x2a\x1b\x36\x28\x1a\x33\x26\x19\x30\x24\x17\x29\x1f\x14\ +\x25\x1c\x12\x2d\x22\x16\x2e\x22\x16\x32\x26\x18\x2c\x22\x15\x29\ +\x1e\x14\x31\x25\x18\x2b\x21\x15\x2f\x23\x16\x31\x24\x17\x2e\x22\ +\x17\x33\x26\x18\x3d\x2e\x1e\x2b\x1f\x14\x33\x26\x18\x2c\x21\x15\ +\x2e\x22\x16\x2e\x22\x16\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x3a\ +\x2b\x1c\x33\x26\x19\x33\x26\x18\x32\x25\x18\x2e\x23\x17\x34\x27\ +\x18\x2f\x23\x17\x2f\x23\x17\x37\x2a\x1b\x34\x26\x19\x35\x28\x1a\ +\x30\x23\x16\x25\x1d\x12\x28\x1f\x14\x3e\x34\x2a\x27\x29\x2a\x40\ +\x42\x44\x46\x47\x49\x39\x3a\x3b\x5e\x63\x64\x42\x46\x46\x16\x16\ +\x17\x4a\x4d\x51\x65\x6a\x6e\x6f\x75\x7c\x75\x7c\x83\x74\x7c\x82\ +\x74\x7c\x83\x70\x78\x7f\x6e\x77\x7e\x68\x71\x7a\x6b\x73\x7c\x6a\ +\x73\x7d\x6b\x74\x7e\x6b\x75\x7f\x6c\x76\x7e\x6b\x75\x7e\x6a\x74\ +\x7d\x68\x73\x7b\x68\x72\x7b\x67\x72\x7b\x67\x71\x7a\x66\x70\x79\ +\x65\x6f\x78\x66\x70\x78\x67\x70\x79\x67\x71\x78\x6a\x74\x7b\x6c\ +\x75\x7c\x00\x00\x00\x56\x40\x29\x50\x3c\x26\x33\x27\x18\x2c\x21\ +\x15\x22\x19\x10\x22\x1b\x11\x29\x1f\x13\x2c\x20\x15\x21\x19\x10\ +\x23\x1a\x10\x27\x1e\x13\x29\x1f\x14\x33\x27\x19\x2f\x24\x16\x25\ +\x1c\x11\x20\x18\x0f\x22\x1a\x10\x25\x1c\x12\x2d\x22\x16\x2d\x22\ +\x16\x2c\x21\x15\x26\x1d\x12\x25\x1b\x12\x24\x1b\x11\x2b\x20\x14\ +\x30\x24\x17\x2e\x22\x16\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x2e\ +\x23\x16\x2f\x23\x17\x31\x25\x18\x35\x28\x19\x35\x28\x19\x2d\x21\ +\x15\x2b\x20\x15\x29\x1f\x14\x22\x1a\x10\x26\x1c\x12\x2c\x21\x15\ +\x31\x25\x18\x33\x26\x18\x35\x28\x19\x37\x2a\x1b\x31\x25\x18\x2f\ +\x23\x17\x35\x28\x1a\x34\x28\x19\x33\x26\x19\x34\x27\x19\x2d\x21\ +\x15\x33\x26\x18\x2b\x21\x15\x31\x25\x18\x35\x27\x19\x3e\x2e\x1d\ +\x3e\x2f\x1e\x40\x30\x1f\x43\x32\x20\x37\x29\x1b\x2d\x22\x15\x28\ +\x1f\x14\x22\x1a\x11\x28\x1e\x13\x2f\x23\x16\x30\x24\x17\x31\x24\ +\x17\x2b\x20\x15\x2b\x20\x14\x35\x27\x19\x38\x2a\x1a\x3c\x2d\x1d\ +\x34\x27\x19\x35\x28\x19\x34\x28\x1a\x39\x2b\x1c\x3c\x2c\x1d\x3e\ +\x2e\x1d\x33\x26\x18\x28\x1f\x13\x2d\x22\x16\x34\x27\x19\x2e\x22\ +\x16\x30\x24\x17\x35\x27\x19\x38\x2a\x1b\x42\x31\x1f\x41\x30\x1f\ +\x42\x31\x20\x3f\x2f\x1f\x3d\x2e\x1d\x31\x25\x18\x2b\x21\x15\x2d\ +\x22\x15\x2f\x24\x17\x33\x26\x19\x31\x25\x18\x2c\x21\x15\x2e\x23\ +\x16\x32\x25\x18\x2c\x21\x15\x30\x24\x16\x2a\x1f\x14\x2b\x20\x15\ +\x2d\x21\x15\x2a\x1f\x14\x2b\x21\x14\x29\x1f\x14\x27\x1c\x12\x25\ +\x1c\x12\x25\x1c\x12\x29\x1e\x14\x2f\x23\x16\x37\x29\x1a\x36\x29\ +\x1a\x37\x29\x1b\x3b\x2c\x1c\x36\x28\x1a\x32\x26\x18\x33\x26\x19\ +\x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x3b\x2b\x1c\x39\x2a\x1b\x21\ +\x19\x10\x21\x19\x10\x3c\x30\x24\x24\x26\x27\x3e\x41\x43\x47\x4b\ +\x4c\x3f\x43\x45\x4f\x54\x56\x5c\x61\x65\x54\x58\x5c\x5b\x5f\x65\ +\x60\x62\x69\x72\x77\x7d\x72\x7a\x81\x73\x7c\x82\x73\x7b\x82\x71\ +\x79\x7f\x71\x79\x80\x6c\x75\x7e\x6d\x76\x7f\x6c\x75\x7f\x6d\x76\ +\x81\x6b\x74\x7e\x6b\x75\x7f\x6a\x75\x7d\x69\x73\x7c\x68\x72\x7c\ +\x69\x73\x7c\x66\x71\x7a\x66\x70\x79\x67\x71\x7a\x68\x72\x7b\x67\ +\x70\x78\x68\x72\x7a\x69\x73\x7b\x6c\x75\x7d\x6e\x77\x7e\x00\x00\ +\x00\x55\x40\x29\x52\x3e\x28\x3e\x2f\x1d\x2b\x20\x14\x21\x18\x0f\ +\x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x21\x18\x10\x24\x1b\x10\x2a\ +\x1f\x14\x2c\x21\x15\x2e\x23\x16\x2b\x20\x14\x1d\x16\x0e\x1c\x15\ +\x0e\x21\x19\x0f\x20\x19\x10\x24\x1b\x11\x2e\x23\x16\x31\x25\x17\ +\x2e\x23\x16\x27\x1d\x12\x25\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2e\ +\x23\x16\x32\x25\x18\x39\x2b\x1c\x34\x27\x1a\x31\x24\x17\x28\x1e\ +\x13\x2e\x22\x16\x2c\x21\x16\x2d\x22\x16\x30\x24\x17\x30\x24\x17\ +\x27\x1d\x12\x22\x1a\x11\x25\x1b\x12\x27\x1e\x13\x2a\x20\x15\x2a\ +\x1f\x14\x34\x27\x19\x37\x29\x1b\x2f\x23\x17\x2b\x20\x15\x2f\x23\ +\x16\x30\x24\x17\x37\x29\x1a\x3a\x2b\x1c\x34\x26\x19\x34\x26\x19\ +\x30\x24\x17\x38\x2a\x1b\x2e\x22\x16\x37\x29\x1a\x37\x29\x1a\x35\ +\x28\x1a\x35\x28\x1a\x32\x25\x18\x32\x26\x18\x2f\x24\x17\x25\x1c\ +\x12\x27\x1d\x13\x26\x1c\x12\x29\x1e\x13\x2b\x20\x14\x28\x1e\x13\ +\x2c\x20\x15\x34\x27\x19\x39\x2c\x1b\x36\x29\x1a\x39\x2b\x1b\x3a\ +\x2b\x1c\x38\x29\x1b\x33\x26\x19\x36\x29\x1a\x37\x28\x1a\x35\x27\ +\x19\x30\x24\x17\x31\x24\x18\x37\x2a\x1b\x36\x28\x1a\x37\x2a\x1b\ +\x36\x29\x1a\x37\x29\x1a\x3c\x2d\x1d\x3a\x2b\x1c\x3f\x2f\x1e\x43\ +\x32\x20\x43\x32\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3c\x2c\x1c\x3a\x2c\ +\x1c\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x31\x25\x18\x35\x28\x1a\ +\x2c\x21\x15\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x27\x1d\x13\x2d\ +\x22\x15\x2b\x20\x15\x28\x1e\x13\x26\x1c\x13\x29\x1e\x14\x2e\x23\ +\x16\x2b\x21\x15\x28\x1e\x14\x30\x24\x17\x37\x2a\x1b\x34\x27\x19\ +\x38\x2a\x1b\x34\x27\x19\x3c\x2d\x1d\x38\x29\x1b\x34\x27\x19\x35\ +\x28\x19\x2e\x23\x16\x37\x29\x19\x3d\x2e\x1d\x24\x1b\x11\x22\x1a\ +\x10\x3a\x2e\x21\x1e\x1f\x21\x3e\x41\x42\x36\x3b\x3c\x1f\x22\x24\ +\x29\x2c\x2e\x6a\x70\x74\x6d\x73\x78\x55\x5b\x60\x5b\x60\x67\x75\ +\x7b\x81\x73\x7b\x82\x74\x7c\x82\x71\x79\x80\x70\x77\x7f\x71\x78\ +\x81\x6c\x76\x7f\x6e\x78\x81\x6e\x77\x80\x6d\x77\x80\x6b\x75\x7f\ +\x6b\x75\x7f\x69\x73\x7d\x68\x73\x7c\x69\x73\x7d\x6a\x74\x7f\x67\ +\x71\x7b\x67\x71\x7a\x68\x73\x7c\x69\x74\x7c\x68\x72\x7b\x67\x72\ +\x7a\x6b\x74\x7d\x6d\x76\x7f\x6d\x75\x7d\x00\x00\x00\x52\x3e\x28\ +\x4f\x3b\x26\x40\x30\x1f\x26\x1d\x12\x23\x19\x10\x20\x18\x0f\x1f\ +\x17\x0f\x26\x1c\x12\x2b\x20\x14\x27\x1d\x13\x20\x18\x0f\x20\x18\ +\x10\x21\x19\x10\x23\x1a\x11\x19\x13\x0c\x1a\x14\x0d\x1c\x15\x0d\ +\x1c\x15\x0e\x1f\x18\x0f\x2e\x23\x16\x37\x29\x1a\x34\x27\x19\x26\ +\x1d\x12\x24\x1b\x11\x21\x19\x10\x27\x1d\x13\x2b\x20\x14\x2e\x22\ +\x16\x36\x28\x19\x33\x26\x18\x2d\x22\x16\x28\x1e\x13\x27\x1d\x12\ +\x29\x1f\x14\x25\x1c\x11\x2e\x22\x16\x2f\x23\x16\x2c\x21\x15\x25\ +\x1c\x12\x23\x1b\x11\x26\x1d\x12\x28\x1e\x14\x27\x1d\x13\x2c\x21\ +\x15\x31\x25\x17\x2d\x22\x15\x29\x1f\x14\x2c\x21\x15\x32\x25\x18\ +\x3a\x2b\x1c\x40\x30\x1f\x3d\x2d\x1d\x37\x29\x1a\x31\x24\x17\x2e\ +\x23\x16\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\x38\x2a\x1b\x32\x25\ +\x18\x2a\x1f\x14\x2c\x21\x15\x2f\x24\x17\x2c\x21\x15\x34\x27\x19\ +\x2d\x22\x15\x2c\x21\x15\x29\x1f\x14\x25\x1c\x12\x2d\x22\x16\x36\ +\x28\x19\x3c\x2d\x1d\x34\x27\x19\x38\x2a\x1b\x35\x28\x19\x3b\x2b\ +\x1c\x31\x25\x18\x34\x28\x19\x2f\x23\x17\x33\x26\x19\x31\x25\x18\ +\x35\x27\x19\x36\x29\x1a\x39\x2b\x1b\x37\x29\x1a\x33\x26\x18\x38\ +\x2a\x1b\x35\x28\x1a\x35\x28\x1a\x3c\x2c\x1d\x42\x32\x20\x3e\x2f\ +\x1e\x39\x2b\x1c\x3b\x2c\x1c\x3c\x2c\x1c\x39\x2b\x1b\x37\x2a\x1b\ +\x33\x26\x18\x31\x24\x18\x34\x27\x19\x3f\x2f\x1f\x37\x2a\x1b\x34\ +\x27\x19\x31\x24\x18\x2f\x23\x16\x29\x1f\x13\x30\x24\x17\x30\x24\ +\x17\x2f\x23\x16\x2f\x24\x17\x36\x28\x1a\x3c\x2d\x1d\x34\x27\x19\ +\x2d\x22\x16\x2a\x1f\x14\x31\x24\x18\x34\x27\x19\x37\x29\x1b\x37\ +\x29\x1a\x40\x30\x1f\x3f\x2e\x1f\x37\x29\x1a\x30\x24\x17\x2b\x20\ +\x15\x35\x28\x19\x33\x26\x18\x33\x26\x19\x24\x1c\x11\x3d\x31\x23\ +\x28\x2a\x2b\x2c\x2a\x28\x0d\x0e\x0f\x1a\x1a\x1c\x1f\x1f\x22\x4d\ +\x52\x56\x5f\x65\x69\x4d\x53\x58\x6a\x70\x76\x74\x7b\x81\x71\x79\ +\x80\x73\x7b\x81\x70\x78\x7f\x6f\x76\x7d\x6f\x78\x80\x6d\x76\x7f\ +\x6d\x76\x7f\x6b\x74\x7d\x6b\x75\x7e\x6c\x76\x7f\x6a\x74\x7d\x69\ +\x73\x7c\x6a\x74\x7d\x69\x73\x7d\x69\x73\x7d\x69\x73\x7e\x68\x72\ +\x7c\x68\x72\x7c\x66\x70\x7a\x68\x71\x7a\x68\x71\x7a\x6a\x73\x7c\ +\x6d\x76\x7f\x6f\x77\x80\x00\x00\x00\x57\x41\x2a\x4c\x38\x24\x44\ +\x33\x21\x22\x1a\x11\x26\x1d\x12\x23\x1a\x10\x1d\x15\x0e\x27\x1e\ +\x13\x23\x1b\x10\x20\x19\x10\x1f\x17\x0e\x21\x18\x0f\x1c\x15\x0e\ +\x1a\x14\x0c\x16\x11\x0b\x16\x11\x0b\x14\x0f\x0a\x16\x10\x0a\x1b\ +\x15\x0d\x22\x1a\x10\x26\x1d\x12\x2b\x20\x15\x2a\x1f\x14\x1f\x18\ +\x0f\x20\x18\x0f\x27\x1d\x12\x25\x1c\x12\x30\x24\x17\x30\x25\x18\ +\x36\x28\x1a\x33\x26\x19\x2b\x20\x15\x27\x1e\x13\x2b\x20\x15\x23\ +\x1a\x11\x27\x1d\x13\x2c\x21\x16\x36\x28\x1a\x35\x27\x19\x28\x1e\ +\x14\x25\x1b\x12\x27\x1d\x12\x29\x1f\x14\x2b\x20\x15\x2b\x20\x14\ +\x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x34\x27\x19\x38\x2a\x1a\x3e\ +\x2e\x1e\x37\x2a\x1b\x3a\x2c\x1c\x32\x25\x18\x31\x24\x17\x35\x28\ +\x1a\x31\x25\x17\x29\x1f\x14\x34\x27\x19\x2c\x21\x15\x26\x1c\x13\ +\x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x2b\x20\x14\x2f\x23\x16\x34\ +\x27\x19\x32\x25\x18\x27\x1d\x13\x2e\x22\x16\x39\x2a\x1b\x3e\x2f\ +\x1e\x3f\x2f\x1f\x31\x25\x18\x33\x26\x18\x38\x2a\x1b\x35\x27\x1a\ +\x36\x28\x1a\x2c\x21\x15\x30\x23\x17\x2d\x22\x16\x38\x2a\x1b\x3b\ +\x2c\x1c\x3a\x2b\x1b\x30\x24\x18\x30\x23\x17\x38\x2a\x1b\x3c\x2d\ +\x1d\x3a\x2b\x1c\x3e\x2f\x1e\x42\x32\x20\x44\x33\x21\x44\x33\x20\ +\x44\x33\x21\x35\x27\x19\x37\x29\x1a\x3a\x2b\x1b\x37\x29\x1a\x34\ +\x27\x19\x35\x28\x19\x3b\x2c\x1d\x42\x31\x20\x38\x2a\x1b\x39\x2b\ +\x1c\x35\x28\x19\x35\x28\x19\x2a\x20\x14\x23\x1a\x11\x2a\x20\x14\ +\x32\x25\x18\x35\x28\x19\x41\x30\x1f\x3d\x2e\x1d\x32\x26\x18\x28\ +\x1e\x13\x29\x1e\x13\x2d\x22\x15\x36\x28\x1a\x36\x28\x19\x3a\x2b\ +\x1c\x3c\x2d\x1d\x36\x29\x1a\x33\x27\x19\x2e\x23\x16\x2e\x23\x16\ +\x26\x1d\x13\x2a\x20\x14\x23\x1a\x11\x34\x2a\x1e\x32\x34\x35\x0d\ +\x0d\x0b\x25\x26\x26\x48\x4b\x4c\x44\x47\x4a\x34\x37\x3d\x49\x4f\ +\x54\x54\x5b\x60\x72\x7a\x80\x73\x7b\x81\x71\x79\x80\x73\x7b\x81\ +\x72\x7b\x82\x70\x79\x80\x6d\x76\x7f\x71\x7a\x83\x6f\x78\x81\x6b\ +\x74\x7d\x6b\x74\x7d\x6a\x74\x7d\x6b\x74\x7d\x68\x72\x7b\x69\x73\ +\x7d\x6a\x74\x7e\x69\x73\x7d\x6a\x74\x7e\x6a\x73\x7f\x69\x73\x7d\ +\x65\x6f\x78\x67\x71\x7a\x69\x73\x7b\x6b\x74\x7d\x6e\x77\x80\x6f\ +\x78\x81\x00\x00\x00\x52\x3e\x27\x51\x3c\x27\x44\x32\x20\x26\x1d\ +\x13\x29\x1f\x14\x20\x18\x10\x23\x1a\x11\x26\x1d\x13\x21\x19\x0f\ +\x1d\x15\x0d\x1c\x15\x0d\x1f\x18\x0f\x18\x13\x0c\x17\x12\x0b\x17\ +\x11\x0b\x1d\x16\x0e\x1d\x15\x0e\x1b\x14\x0d\x1d\x16\x0e\x21\x19\ +\x10\x29\x1e\x14\x31\x24\x18\x31\x24\x18\x23\x1b\x11\x1d\x15\x0e\ +\x21\x19\x0f\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x38\x29\x1a\x2f\ +\x24\x17\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x29\x1f\x13\x29\x1f\ +\x14\x32\x26\x18\x30\x24\x17\x36\x28\x1a\x2d\x21\x16\x24\x1a\x11\ +\x25\x1c\x11\x27\x1e\x13\x26\x1c\x12\x26\x1c\x12\x2a\x20\x14\x2c\ +\x20\x15\x2b\x20\x15\x2b\x20\x15\x30\x23\x17\x3a\x2b\x1c\x39\x2a\ +\x1b\x3f\x2f\x1e\x31\x25\x17\x38\x29\x1a\x39\x2b\x1c\x37\x2a\x1a\ +\x29\x1f\x14\x32\x26\x18\x37\x2a\x1b\x2b\x20\x15\x2b\x20\x14\x31\ +\x25\x18\x2e\x23\x17\x2e\x23\x16\x33\x26\x19\x38\x2a\x1c\x33\x27\ +\x19\x2c\x21\x15\x31\x25\x18\x3b\x2c\x1c\x3f\x2f\x1e\x40\x30\x1f\ +\x3e\x2e\x1e\x3e\x2e\x1e\x3b\x2d\x1d\x42\x32\x20\x3a\x2b\x1c\x3e\ +\x2e\x1d\x3c\x2d\x1d\x3a\x2c\x1c\x46\x34\x21\x49\x37\x23\x47\x35\ +\x22\x36\x29\x1a\x3b\x2c\x1d\x38\x2a\x1b\x35\x28\x19\x3a\x2c\x1c\ +\x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x41\ +\x30\x1f\x3f\x2f\x1f\x45\x33\x22\x36\x29\x1a\x2e\x23\x16\x2c\x21\ +\x15\x2b\x20\x15\x3a\x2c\x1c\x3b\x2c\x1d\x34\x27\x19\x3e\x2f\x1e\ +\x3b\x2c\x1c\x2a\x20\x14\x28\x1e\x13\x23\x1a\x11\x2e\x22\x16\x31\ +\x25\x17\x38\x2a\x1b\x39\x2b\x1c\x38\x2a\x1b\x30\x24\x17\x2c\x21\ +\x15\x2a\x1f\x14\x2f\x23\x17\x2b\x21\x15\x32\x25\x18\x37\x29\x1a\ +\x33\x26\x18\x34\x28\x19\x32\x26\x18\x34\x27\x18\x35\x28\x1a\x29\ +\x1f\x14\x1e\x17\x0f\x45\x36\x26\x27\x29\x2a\x02\x01\x02\x2c\x2e\ +\x2f\x24\x28\x2a\x35\x39\x3b\x31\x33\x37\x2f\x33\x37\x6e\x77\x7b\ +\x72\x7b\x81\x72\x7b\x81\x75\x7d\x84\x74\x7c\x82\x72\x7a\x81\x6e\ +\x78\x7f\x6d\x76\x7f\x6e\x77\x80\x6b\x75\x7e\x6b\x74\x7d\x6b\x74\ +\x7d\x6a\x73\x7d\x6b\x74\x7e\x69\x74\x7d\x6a\x74\x7e\x69\x72\x7d\ +\x67\x71\x7c\x69\x73\x7e\x6b\x75\x7f\x6b\x75\x7f\x68\x72\x7b\x69\ +\x73\x7c\x6c\x75\x7f\x6b\x74\x7c\x6d\x76\x7e\x72\x7a\x82\x00\x00\ +\x00\x4f\x3b\x26\x57\x41\x2a\x48\x35\x22\x23\x1b\x11\x26\x1d\x12\ +\x2e\x22\x16\x26\x1c\x12\x24\x1c\x12\x2c\x21\x15\x21\x1a\x10\x22\ +\x19\x11\x20\x18\x0f\x1a\x14\x0c\x1d\x15\x0e\x1d\x15\x0e\x23\x1b\ +\x11\x1f\x17\x0f\x1d\x16\x0d\x20\x17\x0f\x20\x18\x0f\x29\x1e\x13\ +\x34\x27\x19\x32\x26\x18\x2e\x23\x16\x24\x1b\x11\x26\x1d\x12\x26\ +\x1d\x12\x25\x1c\x12\x28\x1e\x13\x30\x24\x17\x27\x1d\x13\x2b\x20\ +\x15\x2b\x21\x15\x38\x29\x1b\x2f\x23\x16\x29\x1f\x13\x24\x1b\x11\ +\x31\x25\x18\x34\x27\x1a\x2d\x22\x16\x2c\x21\x15\x31\x24\x17\x2f\ +\x23\x16\x30\x24\x17\x31\x25\x18\x2d\x21\x16\x29\x1e\x13\x28\x1d\ +\x13\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x35\x28\x19\x30\x24\x17\ +\x2a\x1f\x14\x37\x2a\x1b\x37\x2a\x1b\x30\x24\x16\x31\x25\x18\x2b\ +\x20\x14\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x39\x2b\x1c\x38\x2a\ +\x1b\x37\x29\x1a\x39\x2b\x1b\x33\x26\x18\x32\x26\x18\x2f\x24\x17\ +\x30\x23\x17\x3c\x2c\x1c\x3b\x2c\x1c\x37\x29\x1b\x36\x29\x1a\x33\ +\x26\x18\x42\x32\x1f\x4b\x38\x24\x47\x35\x22\x4a\x37\x24\x3d\x2e\ +\x1d\x33\x27\x19\x3c\x2c\x1d\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ +\x37\x2a\x1b\x41\x31\x20\x3c\x2d\x1d\x3a\x2b\x1c\x3b\x2c\x1c\x40\ +\x30\x1e\x48\x36\x23\x49\x37\x24\x40\x2f\x1e\x40\x30\x1f\x35\x28\ +\x1a\x3a\x2b\x1c\x34\x27\x19\x33\x27\x19\x2c\x21\x15\x2d\x23\x16\ +\x32\x26\x19\x32\x26\x18\x32\x26\x18\x34\x27\x19\x35\x28\x1a\x38\ +\x2a\x1b\x36\x29\x1a\x27\x1e\x13\x27\x1c\x12\x2b\x21\x15\x30\x25\ +\x17\x37\x29\x1a\x3b\x2c\x1c\x35\x28\x19\x32\x25\x18\x2d\x22\x16\ +\x2b\x21\x15\x2a\x20\x14\x30\x24\x16\x32\x26\x18\x3a\x2b\x1c\x3a\ +\x2c\x1c\x33\x26\x18\x39\x2a\x1b\x33\x26\x18\x2d\x21\x15\x27\x1d\ +\x12\x40\x31\x22\x17\x19\x19\x14\x15\x15\x1f\x1f\x21\x3e\x41\x42\ +\x53\x56\x58\x32\x34\x35\x1f\x21\x23\x6a\x74\x78\x70\x7a\x7e\x73\ +\x7b\x81\x71\x79\x80\x73\x7b\x81\x71\x79\x80\x71\x7a\x81\x6f\x78\ +\x81\x6d\x75\x7f\x6c\x75\x7e\x6c\x75\x7e\x6c\x75\x7e\x6b\x74\x7e\ +\x6b\x75\x7e\x6b\x75\x7f\x69\x73\x7d\x68\x72\x7c\x68\x72\x7c\x69\ +\x73\x7e\x6b\x74\x81\x68\x71\x7c\x67\x71\x7b\x69\x72\x7c\x6f\x78\ +\x81\x6d\x76\x7e\x6d\x77\x7e\x6f\x79\x80\x00\x00\x00\x60\x49\x30\ +\x56\x40\x2a\x4e\x3a\x26\x25\x1b\x12\x26\x1c\x12\x2b\x21\x15\x30\ +\x24\x17\x32\x25\x18\x38\x2a\x1b\x2e\x22\x16\x21\x18\x10\x1b\x14\ +\x0d\x1b\x15\x0d\x20\x18\x0f\x24\x1b\x11\x1c\x15\x0d\x19\x13\x0c\ +\x1a\x14\x0d\x1e\x17\x0e\x24\x1b\x11\x27\x1d\x12\x30\x24\x17\x2f\ +\x23\x17\x26\x1c\x12\x1f\x17\x0f\x26\x1c\x12\x27\x1e\x13\x26\x1d\ +\x12\x2d\x22\x16\x2e\x23\x17\x2a\x20\x15\x2b\x20\x14\x2e\x22\x16\ +\x35\x28\x1a\x39\x2b\x1c\x35\x28\x19\x29\x1f\x14\x31\x25\x17\x39\ +\x2b\x1c\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x33\x26\x19\x32\x26\ +\x18\x28\x1f\x13\x24\x1c\x11\x25\x1c\x12\x26\x1d\x12\x26\x1d\x12\ +\x27\x1d\x12\x2c\x21\x15\x2b\x21\x14\x33\x26\x18\x34\x27\x19\x33\ +\x27\x19\x33\x26\x18\x29\x1f\x14\x34\x27\x19\x2b\x20\x15\x2d\x21\ +\x15\x31\x25\x18\x34\x28\x19\x39\x2b\x1b\x38\x2a\x1b\x3b\x2c\x1c\ +\x3e\x2e\x1e\x3d\x2d\x1e\x3e\x2e\x1e\x39\x2b\x1c\x33\x26\x18\x35\ +\x28\x19\x35\x27\x19\x2f\x23\x17\x33\x27\x19\x34\x28\x19\x43\x32\ +\x21\x43\x32\x21\x46\x33\x21\x39\x2b\x1c\x39\x2b\x1c\x37\x29\x1a\ +\x2e\x23\x16\x32\x26\x18\x34\x26\x19\x31\x24\x18\x2d\x22\x16\x33\ +\x26\x19\x3e\x2e\x1d\x42\x31\x20\x3f\x2f\x1e\x39\x2b\x1c\x44\x33\ +\x21\x48\x36\x22\x3f\x2f\x1e\x43\x32\x21\x3b\x2c\x1d\x38\x2a\x1b\ +\x3d\x2d\x1e\x35\x28\x19\x2e\x23\x16\x2b\x20\x15\x31\x24\x17\x34\ +\x27\x19\x27\x1e\x13\x22\x19\x10\x2d\x22\x15\x33\x26\x18\x3d\x2e\ +\x1d\x3e\x2f\x1e\x31\x25\x18\x32\x24\x17\x35\x28\x19\x3d\x2d\x1d\ +\x41\x31\x20\x37\x29\x1a\x30\x24\x17\x2c\x21\x15\x2a\x1f\x14\x2c\ +\x21\x15\x2e\x23\x15\x31\x25\x18\x40\x30\x1f\x3f\x30\x1f\x38\x29\ +\x1a\x3a\x2b\x1c\x34\x27\x19\x2b\x20\x15\x2f\x23\x16\x29\x1f\x16\ +\x0f\x0f\x10\x24\x25\x27\x0f\x0f\x11\x3c\x3f\x41\x4f\x54\x55\x27\ +\x29\x2b\x22\x22\x25\x4b\x4f\x56\x73\x7b\x81\x72\x7a\x81\x72\x7a\ +\x80\x6f\x78\x7f\x6f\x78\x80\x6f\x79\x80\x6e\x78\x7f\x6d\x76\x7f\ +\x6d\x77\x7f\x6b\x76\x7e\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\x7d\x69\ +\x73\x7d\x6a\x75\x7f\x69\x74\x7d\x6c\x76\x81\x6b\x75\x81\x69\x73\ +\x7d\x67\x70\x7a\x69\x73\x7c\x6a\x74\x7d\x6c\x75\x7e\x6d\x77\x7f\ +\x6e\x78\x7f\x6e\x77\x7e\x00\x00\x00\x5d\x46\x2e\x48\x36\x23\x43\ +\x32\x20\x22\x19\x10\x2a\x20\x14\x29\x1f\x14\x2c\x22\x16\x34\x27\ +\x19\x2b\x21\x14\x2d\x22\x16\x2e\x22\x16\x21\x18\x10\x22\x19\x10\ +\x26\x1c\x12\x24\x1a\x11\x21\x18\x0f\x24\x1b\x12\x22\x19\x11\x26\ +\x1c\x12\x23\x1b\x11\x23\x1a\x10\x2a\x1f\x14\x28\x1e\x13\x1c\x15\ +\x0e\x21\x18\x10\x27\x1d\x12\x29\x20\x14\x30\x24\x17\x2e\x21\x16\ +\x26\x1c\x12\x1f\x18\x0f\x1f\x18\x0f\x20\x18\x0f\x2b\x20\x15\x28\ +\x1e\x13\x2a\x20\x14\x2f\x23\x16\x37\x2a\x1b\x34\x27\x19\x27\x1d\ +\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\ +\x29\x1e\x13\x28\x1e\x13\x21\x19\x10\x26\x1d\x12\x25\x1c\x12\x22\ +\x19\x10\x21\x19\x10\x28\x1e\x14\x29\x1f\x14\x2b\x20\x14\x31\x25\ +\x18\x24\x1b\x11\x2c\x21\x15\x27\x1d\x12\x26\x1d\x12\x2b\x21\x15\ +\x31\x25\x17\x35\x28\x1a\x35\x27\x1a\x3c\x2c\x1d\x44\x33\x21\x41\ +\x30\x1f\x3a\x2b\x1c\x34\x27\x19\x35\x28\x19\x35\x27\x19\x31\x25\ +\x17\x35\x28\x19\x2b\x1f\x15\x30\x24\x16\x32\x24\x18\x38\x2a\x1b\ +\x40\x30\x1f\x39\x2a\x1b\x38\x2a\x1c\x42\x32\x20\x32\x26\x18\x28\ +\x1e\x14\x31\x25\x18\x2e\x22\x16\x2c\x21\x15\x2e\x22\x15\x31\x24\ +\x17\x39\x2a\x1b\x37\x29\x1a\x31\x25\x17\x38\x2a\x1b\x3c\x2d\x1d\ +\x38\x2a\x1b\x3e\x2f\x1e\x43\x32\x20\x41\x30\x1f\x41\x31\x20\x42\ +\x31\x20\x3f\x2f\x1f\x40\x30\x1f\x3b\x2b\x1d\x2c\x22\x16\x27\x1e\ +\x13\x28\x1e\x13\x2c\x21\x15\x2f\x23\x17\x36\x29\x1a\x38\x2a\x1a\ +\x38\x2a\x1b\x33\x26\x18\x2f\x24\x17\x3d\x2e\x1e\x49\x36\x23\x41\ +\x31\x1f\x38\x2a\x1b\x30\x24\x17\x32\x26\x18\x2e\x23\x15\x29\x1f\ +\x14\x2b\x20\x15\x32\x26\x18\x39\x2a\x1b\x41\x30\x1f\x3e\x2e\x1e\ +\x3e\x2f\x1e\x3a\x2b\x1c\x2d\x22\x16\x28\x1f\x14\x0d\x0a\x07\x29\ +\x2a\x2c\x13\x14\x15\x31\x36\x39\x39\x3e\x3f\x3e\x41\x44\x37\x39\ +\x3e\x3c\x3f\x45\x60\x67\x6e\x72\x7a\x81\x71\x79\x7f\x70\x79\x80\ +\x6f\x79\x80\x6f\x78\x80\x6f\x79\x80\x6b\x75\x7d\x6b\x75\x7d\x6e\ +\x78\x80\x6d\x77\x81\x6c\x76\x80\x6b\x75\x7e\x6a\x74\x7e\x6a\x74\ +\x7d\x68\x73\x7d\x6a\x74\x7f\x69\x73\x7d\x6a\x74\x7e\x68\x72\x7c\ +\x6a\x73\x7c\x6b\x76\x7e\x70\x7a\x82\x6f\x79\x80\x6f\x78\x7f\x6e\ +\x78\x7f\x00\x00\x00\x46\x35\x22\x47\x35\x22\x3b\x2c\x1c\x1c\x15\ +\x0d\x2a\x21\x15\x1e\x17\x0e\x26\x1c\x12\x2b\x20\x15\x27\x1d\x12\ +\x31\x25\x17\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\x27\x1d\x13\x25\ +\x1c\x12\x1e\x16\x0e\x20\x18\x10\x24\x1c\x12\x27\x1e\x13\x26\x1d\ +\x12\x23\x1b\x11\x24\x1b\x11\x25\x1b\x12\x25\x1c\x12\x28\x1e\x13\ +\x30\x24\x17\x2d\x21\x15\x29\x1f\x14\x28\x1e\x14\x2a\x20\x14\x2d\ +\x23\x16\x2c\x22\x15\x22\x19\x10\x2f\x24\x17\x36\x28\x1a\x2f\x23\ +\x17\x38\x2a\x1c\x3f\x2f\x1f\x31\x26\x18\x2d\x22\x15\x2b\x20\x15\ +\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x25\x18\x28\x1e\x13\x24\ +\x1b\x12\x22\x1a\x11\x23\x1a\x11\x23\x1a\x11\x23\x1b\x11\x22\x1a\ +\x10\x26\x1d\x13\x33\x26\x18\x2f\x23\x16\x2c\x21\x16\x2d\x22\x15\ +\x2f\x23\x17\x32\x25\x18\x2e\x23\x16\x30\x24\x18\x35\x27\x19\x3a\ +\x2b\x1c\x3d\x2d\x1d\x36\x28\x1a\x34\x27\x19\x36\x29\x1a\x36\x28\ +\x1a\x38\x2a\x1b\x36\x28\x1a\x34\x27\x19\x36\x28\x19\x38\x2a\x1b\ +\x2a\x1f\x13\x2c\x22\x15\x31\x25\x17\x34\x27\x19\x41\x30\x1f\x3d\ +\x2e\x1d\x40\x2f\x1e\x41\x30\x1f\x3d\x2d\x1d\x3c\x2d\x1d\x3a\x2a\ +\x1c\x41\x31\x20\x2f\x23\x16\x2c\x21\x15\x30\x24\x18\x33\x27\x19\ +\x33\x27\x19\x3e\x2e\x1e\x40\x30\x1f\x38\x2b\x1b\x34\x28\x19\x3c\ +\x2c\x1d\x3a\x2b\x1c\x3d\x2e\x1e\x35\x28\x1a\x3d\x2d\x1e\x41\x31\ +\x1f\x43\x32\x20\x44\x33\x20\x32\x25\x18\x2e\x23\x16\x23\x1a\x10\ +\x25\x1c\x12\x26\x1d\x12\x31\x25\x17\x35\x27\x19\x37\x2a\x1b\x35\ +\x28\x1a\x28\x1e\x13\x34\x27\x19\x3e\x2e\x1e\x3d\x2d\x1d\x3d\x2e\ +\x1e\x38\x2a\x1b\x34\x27\x19\x2c\x21\x15\x25\x1c\x12\x24\x1b\x11\ +\x32\x26\x19\x30\x25\x17\x2e\x23\x16\x35\x28\x1a\x45\x33\x21\x33\ +\x27\x18\x35\x28\x1a\x3a\x2c\x1e\x09\x07\x04\x23\x23\x25\x19\x1b\ +\x1c\x3d\x44\x45\x1a\x1e\x1e\x58\x5f\x62\x42\x45\x48\x45\x47\x4c\ +\x51\x55\x5c\x6d\x75\x7d\x72\x7a\x80\x6f\x78\x7f\x6c\x76\x7d\x6d\ +\x79\x7f\x6f\x79\x80\x6b\x76\x7d\x6a\x75\x7d\x6d\x76\x7f\x6c\x76\ +\x80\x6b\x75\x7f\x6a\x74\x7e\x69\x74\x7e\x68\x72\x7c\x67\x71\x7b\ +\x69\x73\x7d\x68\x73\x7d\x68\x72\x7c\x6c\x75\x7f\x6a\x75\x7e\x6e\ +\x79\x81\x6e\x77\x7f\x6f\x79\x80\x71\x79\x80\x70\x78\x7f\x00\x00\ +\x00\x41\x30\x1f\x4c\x39\x25\x3d\x2d\x1d\x1e\x17\x0f\x1f\x17\x0e\ +\x1d\x16\x0e\x29\x1e\x14\x24\x1b\x11\x2c\x21\x15\x34\x27\x19\x2b\ +\x20\x15\x23\x1a\x11\x1c\x15\x0d\x1f\x17\x0e\x27\x1e\x13\x26\x1d\ +\x13\x20\x18\x0f\x2e\x23\x16\x35\x28\x19\x31\x24\x17\x2f\x22\x16\ +\x34\x27\x19\x37\x29\x1a\x34\x27\x19\x3d\x2d\x1d\x3c\x2d\x1d\x2f\ +\x23\x16\x2e\x22\x16\x2d\x21\x15\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\ +\x1c\x24\x1c\x11\x28\x1e\x14\x2c\x21\x15\x25\x1c\x12\x30\x24\x17\ +\x39\x2a\x1b\x3a\x2c\x1c\x2e\x23\x16\x28\x1d\x13\x29\x1f\x14\x25\ +\x1c\x12\x33\x26\x18\x36\x28\x1a\x2d\x21\x15\x26\x1d\x12\x25\x1c\ +\x11\x22\x1a\x10\x2a\x21\x15\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\ +\x31\x25\x18\x33\x27\x19\x30\x24\x17\x23\x1a\x11\x25\x1c\x12\x2f\ +\x24\x17\x39\x2b\x1b\x32\x25\x18\x34\x28\x19\x3b\x2b\x1c\x37\x29\ +\x1a\x31\x25\x17\x34\x27\x19\x33\x26\x18\x37\x29\x1a\x36\x28\x1a\ +\x33\x26\x19\x2d\x23\x16\x2d\x22\x16\x33\x25\x19\x39\x2a\x1b\x34\ +\x27\x19\x31\x24\x17\x3a\x2b\x1b\x3e\x2f\x1e\x40\x2f\x1e\x42\x32\ +\x20\x43\x32\x20\x3a\x2b\x1b\x3a\x2b\x1c\x33\x27\x19\x40\x31\x1f\ +\x3d\x2e\x1e\x37\x29\x1b\x3b\x2c\x1c\x3a\x2b\x1c\x34\x27\x19\x2f\ +\x23\x17\x35\x28\x1a\x34\x27\x19\x37\x28\x1a\x36\x29\x1a\x39\x2b\ +\x1c\x34\x28\x1a\x2c\x21\x15\x2f\x23\x16\x2d\x22\x15\x41\x31\x1f\ +\x42\x31\x1f\x36\x29\x1a\x30\x24\x17\x26\x1c\x12\x28\x1e\x12\x28\ +\x1e\x13\x2b\x21\x15\x32\x26\x19\x3b\x2c\x1d\x3b\x2c\x1d\x2e\x23\ +\x16\x2d\x21\x15\x34\x27\x19\x32\x25\x18\x30\x24\x17\x36\x29\x1a\ +\x35\x28\x1a\x32\x26\x18\x2c\x21\x15\x2b\x20\x14\x2e\x22\x15\x2f\ +\x23\x17\x2a\x1f\x14\x39\x2a\x1b\x3f\x2f\x1f\x3b\x2c\x1c\x38\x2a\ +\x1b\x48\x36\x24\x16\x10\x0a\x24\x24\x27\x11\x12\x13\x2e\x35\x36\ +\x2a\x31\x33\x44\x4b\x4e\x38\x3c\x3f\x5b\x60\x63\x4a\x4e\x53\x59\ +\x5f\x67\x72\x79\x81\x6f\x79\x80\x6f\x79\x80\x6f\x78\x80\x6d\x78\ +\x7f\x6c\x76\x7d\x6d\x77\x7f\x6a\x74\x7e\x6b\x75\x7f\x6c\x76\x80\ +\x6b\x75\x7f\x6a\x75\x7e\x67\x71\x7b\x68\x72\x7c\x6a\x74\x7e\x6b\ +\x75\x7f\x68\x73\x7c\x6a\x74\x7e\x6d\x76\x80\x70\x79\x81\x6f\x79\ +\x81\x6f\x79\x81\x70\x7a\x80\x70\x7a\x80\x00\x00\x00\x45\x34\x21\ +\x55\x40\x29\x4a\x38\x24\x27\x1e\x13\x2c\x21\x15\x1a\x13\x0c\x23\ +\x1a\x10\x26\x1d\x12\x2f\x23\x17\x34\x27\x19\x39\x2b\x1b\x33\x27\ +\x19\x35\x28\x19\x2c\x21\x15\x21\x19\x10\x24\x1b\x11\x20\x18\x0f\ +\x23\x1a\x11\x2e\x23\x16\x31\x24\x18\x2f\x23\x16\x2e\x23\x16\x35\ +\x28\x19\x35\x29\x1a\x2b\x21\x15\x25\x1c\x12\x2a\x20\x14\x2a\x20\ +\x14\x2b\x21\x14\x34\x27\x19\x34\x27\x19\x38\x2a\x1b\x2e\x22\x16\ +\x24\x1b\x11\x1f\x17\x0f\x22\x1a\x11\x29\x1f\x14\x30\x24\x17\x2b\ +\x20\x15\x33\x27\x19\x36\x29\x1a\x2f\x23\x16\x2f\x23\x16\x31\x24\ +\x17\x2b\x20\x15\x23\x1a\x11\x26\x1d\x12\x28\x1e\x13\x27\x1d\x12\ +\x2d\x21\x15\x26\x1c\x12\x25\x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\ +\x22\x16\x30\x24\x17\x2d\x22\x16\x31\x25\x18\x31\x25\x18\x32\x25\ +\x18\x30\x24\x17\x2f\x22\x16\x39\x2b\x1c\x42\x32\x20\x3c\x2d\x1d\ +\x37\x29\x1a\x2e\x23\x16\x2c\x22\x15\x2d\x22\x16\x2e\x22\x16\x37\ +\x29\x1a\x3a\x2c\x1c\x37\x29\x1a\x3a\x2b\x1b\x32\x25\x18\x31\x25\ +\x18\x31\x24\x17\x3e\x2e\x1d\x45\x34\x21\x44\x33\x21\x43\x32\x20\ +\x3f\x30\x1f\x43\x32\x20\x3c\x2d\x1d\x44\x32\x21\x41\x30\x1f\x46\ +\x35\x22\x4d\x39\x25\x48\x36\x23\x40\x30\x1f\x32\x25\x18\x2e\x23\ +\x17\x29\x1f\x14\x27\x1d\x13\x2d\x22\x16\x2d\x23\x16\x32\x25\x18\ +\x2e\x23\x17\x37\x29\x1a\x31\x25\x17\x3f\x2f\x1e\x43\x33\x21\x3d\ +\x2e\x1d\x34\x27\x19\x28\x1e\x13\x23\x1b\x11\x26\x1c\x12\x2e\x23\ +\x17\x39\x2b\x1c\x3b\x2d\x1d\x35\x27\x19\x30\x24\x17\x2c\x21\x15\ +\x2b\x21\x14\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x2e\x22\x16\x35\ +\x28\x1a\x3c\x2e\x1d\x34\x26\x19\x36\x29\x1a\x31\x25\x18\x30\x24\ +\x16\x37\x29\x1a\x3f\x2f\x1e\x3a\x2b\x1b\x35\x27\x19\x35\x28\x1a\ +\x1f\x17\x0f\x0f\x0f\x11\x04\x04\x04\x27\x2c\x2d\x4c\x54\x56\x1e\ +\x24\x28\x2d\x2f\x33\x69\x6f\x74\x5d\x61\x67\x4d\x54\x5b\x67\x6f\ +\x76\x6f\x79\x80\x6e\x78\x7f\x6e\x78\x7f\x6c\x77\x7e\x6f\x7a\x81\ +\x6e\x79\x81\x6b\x76\x7e\x6a\x75\x7d\x69\x74\x7c\x69\x75\x7d\x69\ +\x74\x7c\x68\x73\x7d\x69\x74\x7d\x69\x74\x7c\x68\x73\x7b\x6a\x75\ +\x7d\x6c\x77\x7f\x6d\x78\x80\x6e\x77\x80\x6e\x78\x80\x6d\x76\x7f\ +\x71\x7b\x82\x70\x79\x80\x00\x00\x00\x3c\x2d\x1d\x4f\x3a\x26\x4b\ +\x38\x24\x24\x1b\x11\x22\x1a\x10\x19\x13\x0c\x20\x17\x0e\x2a\x1f\ +\x13\x37\x29\x1a\x30\x24\x17\x39\x2b\x1c\x32\x26\x18\x2d\x22\x16\ +\x2f\x23\x17\x25\x1c\x12\x28\x1f\x13\x23\x1b\x11\x21\x19\x10\x24\ +\x1c\x11\x2d\x21\x15\x33\x26\x18\x33\x26\x18\x35\x28\x19\x31\x25\ +\x18\x3a\x2b\x1c\x33\x26\x19\x24\x1b\x11\x20\x18\x0f\x21\x19\x10\ +\x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x34\x27\x19\x2d\x22\x16\x29\ +\x1f\x14\x2b\x20\x14\x2f\x23\x16\x2a\x20\x14\x32\x25\x18\x34\x27\ +\x19\x33\x26\x18\x34\x28\x1a\x33\x26\x19\x2d\x22\x16\x2d\x22\x16\ +\x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x2d\x22\x16\x2c\x22\x15\x36\ +\x29\x1a\x35\x28\x19\x3b\x2c\x1c\x43\x32\x20\x3d\x2e\x1e\x36\x29\ +\x1a\x3c\x2d\x1e\x36\x29\x1a\x2c\x21\x15\x36\x28\x1a\x3b\x2c\x1c\ +\x3a\x2c\x1d\x2f\x24\x16\x36\x28\x1a\x2d\x22\x15\x2b\x20\x14\x2b\ +\x20\x14\x2c\x21\x15\x37\x29\x1b\x39\x2a\x1c\x32\x25\x18\x35\x28\ +\x19\x3a\x2c\x1c\x40\x30\x1f\x3e\x2e\x1e\x3b\x2c\x1d\x38\x29\x1b\ +\x3a\x2b\x1c\x3d\x2e\x1d\x4b\x38\x24\x43\x32\x20\x3a\x2c\x1c\x35\ +\x28\x1a\x31\x25\x17\x36\x29\x1a\x3d\x2e\x1d\x3e\x2e\x1e\x42\x31\ +\x20\x42\x31\x20\x43\x32\x20\x35\x29\x1a\x2e\x23\x16\x2c\x21\x15\ +\x2a\x20\x15\x2a\x1f\x14\x2e\x22\x16\x2d\x22\x15\x2e\x22\x16\x2e\ +\x23\x16\x35\x28\x1a\x43\x32\x20\x46\x34\x21\x3e\x2e\x1d\x32\x26\ +\x18\x2f\x23\x17\x2c\x20\x15\x33\x26\x18\x35\x28\x19\x35\x28\x19\ +\x3d\x2e\x1e\x37\x29\x1a\x34\x27\x19\x32\x26\x18\x2a\x1f\x14\x29\ +\x1f\x14\x2f\x23\x17\x2d\x22\x16\x31\x25\x18\x3b\x2c\x1c\x39\x2b\ +\x1c\x35\x28\x1a\x39\x2c\x1c\x31\x25\x18\x31\x25\x17\x34\x26\x19\ +\x37\x29\x1b\x31\x24\x17\x31\x25\x18\x28\x1f\x14\x25\x1b\x12\x1e\ +\x1f\x21\x00\x00\x00\x23\x26\x26\x40\x48\x49\x16\x19\x1b\x2a\x2c\ +\x2f\x73\x79\x7f\x6e\x74\x7b\x4d\x52\x5b\x55\x5a\x63\x6c\x73\x7c\ +\x6d\x76\x7f\x6c\x76\x7e\x6b\x76\x7d\x6d\x78\x7f\x6d\x77\x80\x69\ +\x74\x7c\x6b\x75\x7d\x69\x73\x7b\x69\x74\x7c\x6a\x75\x7d\x69\x75\ +\x7e\x69\x75\x7e\x68\x74\x7d\x69\x74\x7d\x6a\x75\x7e\x6c\x77\x7f\ +\x6c\x78\x80\x6c\x76\x7f\x6f\x78\x81\x72\x7c\x84\x71\x7b\x82\x74\ +\x7d\x83\x00\x00\x00\x3f\x2f\x1f\x47\x35\x22\x55\x3f\x29\x35\x28\ +\x1a\x21\x19\x10\x1d\x16\x0e\x22\x1a\x11\x2c\x21\x16\x28\x1e\x14\ +\x32\x26\x18\x38\x2a\x1b\x38\x2a\x1b\x2c\x21\x15\x31\x25\x18\x27\ +\x1d\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x28\x1d\x13\x28\x1e\ +\x13\x25\x1b\x12\x21\x19\x10\x25\x1b\x11\x29\x1f\x14\x31\x25\x17\ +\x35\x28\x19\x2a\x1f\x14\x24\x1b\x11\x1f\x17\x0f\x23\x1b\x11\x26\ +\x1d\x12\x2d\x22\x16\x39\x2b\x1c\x3f\x2f\x1f\x30\x24\x17\x29\x1f\ +\x14\x23\x1a\x11\x24\x1b\x11\x23\x1a\x10\x2e\x23\x16\x33\x26\x19\ +\x31\x25\x17\x33\x26\x18\x2e\x22\x16\x2b\x20\x14\x2b\x20\x14\x23\ +\x1b\x11\x23\x1b\x11\x2b\x20\x14\x30\x24\x17\x32\x25\x18\x43\x32\ +\x21\x3b\x2c\x1c\x3d\x2d\x1d\x41\x31\x1f\x31\x25\x17\x30\x24\x18\ +\x33\x26\x18\x31\x25\x18\x34\x27\x19\x3e\x2e\x1e\x34\x27\x19\x2f\ +\x23\x16\x2c\x21\x15\x2b\x20\x14\x2b\x20\x14\x2c\x21\x15\x2c\x21\ +\x15\x2c\x21\x15\x2f\x23\x17\x29\x1f\x14\x2b\x20\x15\x30\x24\x17\ +\x3c\x2c\x1d\x3c\x2c\x1d\x34\x26\x19\x2f\x23\x17\x2f\x23\x16\x33\ +\x26\x18\x40\x30\x1f\x48\x36\x23\x3a\x2b\x1c\x36\x28\x1a\x2f\x23\ +\x16\x32\x25\x18\x35\x28\x19\x38\x2a\x1b\x39\x2b\x1b\x41\x30\x1f\ +\x4b\x38\x24\x3e\x2d\x1d\x3e\x2e\x1e\x35\x28\x1a\x32\x26\x18\x37\ +\x29\x1b\x30\x24\x17\x31\x25\x17\x32\x25\x18\x31\x24\x17\x35\x27\ +\x1a\x3b\x2d\x1c\x3c\x2e\x1d\x46\x34\x22\x4b\x38\x25\x38\x2b\x1b\ +\x38\x2b\x1b\x34\x28\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x39\ +\x2a\x1b\x2d\x22\x15\x2d\x22\x15\x2a\x20\x15\x2d\x22\x16\x33\x27\ +\x19\x2b\x21\x15\x2a\x1f\x15\x2f\x23\x17\x35\x27\x19\x32\x26\x18\ +\x3e\x2f\x1e\x33\x26\x18\x2c\x21\x16\x2d\x22\x16\x32\x25\x18\x32\ +\x26\x18\x2e\x23\x16\x20\x18\x10\x10\x0d\x08\x29\x2a\x2b\x03\x03\ +\x03\x01\x01\x01\x0c\x0e\x0e\x05\x06\x07\x33\x37\x3b\x65\x6d\x72\ +\x6c\x75\x7a\x6a\x70\x77\x45\x4b\x55\x5b\x63\x6d\x6f\x77\x80\x6d\ +\x76\x7e\x6a\x74\x7c\x6a\x75\x7c\x6d\x77\x7f\x6b\x76\x7e\x6b\x76\ +\x7e\x69\x74\x7c\x68\x73\x7b\x69\x74\x7c\x6c\x77\x7f\x6b\x76\x7f\ +\x6a\x75\x7e\x6a\x75\x7f\x6a\x76\x7e\x6b\x76\x7e\x6c\x77\x7f\x6f\ +\x79\x80\x71\x7b\x82\x72\x7c\x83\x71\x7b\x82\x73\x7c\x82\x00\x00\ +\x00\x45\x34\x22\x4c\x39\x24\x4b\x38\x24\x39\x2b\x1c\x30\x23\x17\ +\x1d\x16\x0e\x2a\x20\x14\x33\x26\x19\x33\x27\x18\x2d\x22\x15\x2d\ +\x22\x16\x2e\x22\x16\x2d\x22\x15\x29\x1f\x13\x2a\x1f\x14\x22\x1a\ +\x10\x20\x18\x0f\x24\x1b\x11\x29\x1f\x14\x26\x1d\x12\x26\x1c\x12\ +\x27\x1d\x13\x27\x1e\x13\x2d\x22\x15\x32\x26\x18\x39\x2a\x1b\x38\ +\x2a\x1b\x29\x1e\x13\x28\x1e\x13\x20\x18\x0f\x2b\x21\x15\x39\x2a\ +\x1b\x38\x2a\x1b\x3e\x2e\x1e\x33\x26\x18\x2d\x22\x16\x24\x1b\x11\ +\x24\x1a\x11\x25\x1c\x12\x2b\x21\x15\x31\x24\x17\x32\x25\x18\x42\ +\x31\x1f\x40\x30\x1f\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x25\x1c\ +\x12\x24\x1b\x11\x2d\x22\x15\x2b\x20\x15\x2f\x24\x17\x30\x24\x17\ +\x2e\x23\x16\x2e\x22\x16\x33\x26\x18\x37\x29\x1a\x2f\x23\x17\x3b\ +\x2c\x1c\x45\x34\x22\x3e\x2f\x1e\x36\x29\x1a\x37\x29\x1b\x37\x29\ +\x1b\x2e\x22\x16\x27\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x21\x15\ +\x2a\x20\x14\x2d\x22\x15\x34\x28\x19\x33\x26\x19\x3b\x2c\x1d\x3e\ +\x2e\x1d\x3b\x2c\x1d\x2e\x22\x16\x28\x1e\x13\x33\x26\x18\x45\x34\ +\x21\x4d\x3a\x26\x3b\x2c\x1d\x39\x2b\x1c\x32\x26\x18\x38\x29\x1b\ +\x33\x25\x19\x2f\x24\x17\x35\x28\x19\x3e\x2e\x1d\x3c\x2c\x1d\x31\ +\x25\x18\x35\x28\x19\x36\x29\x1a\x31\x25\x17\x32\x25\x17\x2f\x24\ +\x17\x38\x2a\x1b\x3a\x2b\x1c\x34\x27\x19\x37\x29\x19\x34\x27\x19\ +\x32\x25\x18\x47\x35\x24\x2c\x21\x16\x2b\x21\x14\x30\x23\x17\x42\ +\x32\x21\x34\x28\x1a\x39\x2b\x1b\x36\x28\x19\x3d\x2d\x1d\x3a\x2c\ +\x1c\x2c\x22\x16\x2b\x20\x15\x2d\x21\x16\x2d\x21\x15\x2e\x23\x16\ +\x2b\x20\x15\x33\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x40\x30\x1f\x3a\ +\x2c\x1c\x30\x23\x17\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x34\x27\ +\x19\x29\x1f\x14\x18\x11\x0c\x18\x18\x19\x24\x24\x26\x00\x00\x00\ +\x01\x01\x01\x28\x2a\x2c\x49\x4e\x54\x4a\x51\x59\x6a\x72\x78\x71\ +\x78\x7f\x5a\x5f\x69\x42\x48\x53\x68\x6f\x78\x6d\x75\x7e\x6b\x76\ +\x7e\x6a\x74\x7c\x6d\x78\x80\x6b\x76\x7e\x6b\x76\x7e\x6b\x76\x7e\ +\x6a\x75\x7c\x6a\x75\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\x69\ +\x74\x7d\x6a\x75\x7d\x6b\x76\x7e\x6c\x77\x7e\x71\x7b\x82\x71\x7b\ +\x83\x70\x7a\x81\x71\x7b\x82\x72\x7c\x83\x00\x00\x00\x3c\x2d\x1d\ +\x4a\x37\x24\x43\x32\x20\x2f\x24\x17\x2b\x20\x15\x1b\x14\x0d\x23\ +\x1a\x11\x2b\x21\x15\x28\x1e\x13\x25\x1b\x11\x27\x1e\x13\x28\x1e\ +\x13\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\x26\x1c\x11\x2a\x20\x14\ +\x32\x26\x18\x38\x2a\x1b\x39\x2b\x1c\x31\x25\x18\x2c\x21\x15\x28\ +\x1e\x13\x26\x1c\x12\x30\x23\x17\x34\x27\x19\x37\x29\x1a\x30\x24\ +\x17\x33\x27\x19\x25\x1d\x12\x25\x1c\x12\x2e\x23\x16\x31\x25\x18\ +\x3e\x2f\x1e\x2f\x23\x16\x30\x24\x17\x28\x1e\x13\x1f\x17\x0e\x1e\ +\x17\x0f\x22\x1a\x11\x29\x1f\x13\x2c\x21\x15\x35\x27\x19\x34\x27\ +\x19\x2c\x21\x15\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x25\x1c\x12\ +\x29\x1f\x14\x27\x1d\x13\x2c\x20\x15\x2e\x22\x16\x2b\x20\x14\x2e\ +\x22\x16\x30\x25\x17\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x3d\x2e\ +\x1d\x43\x32\x20\x41\x30\x1f\x36\x29\x1a\x33\x27\x19\x35\x28\x19\ +\x27\x1d\x12\x23\x1a\x10\x29\x1f\x14\x2a\x1f\x14\x27\x1d\x13\x28\ +\x1e\x13\x2e\x23\x16\x35\x28\x1a\x39\x2a\x1c\x3a\x2b\x1c\x34\x27\ +\x19\x2b\x20\x14\x28\x1e\x14\x2f\x24\x17\x2c\x22\x15\x34\x28\x19\ +\x33\x26\x18\x31\x25\x17\x33\x26\x19\x39\x2a\x1b\x32\x26\x18\x2c\ +\x21\x15\x37\x2a\x1b\x39\x2b\x1c\x3a\x2b\x1c\x3c\x2d\x1d\x3c\x2d\ +\x1d\x38\x2a\x1c\x3a\x2b\x1b\x36\x28\x1a\x35\x28\x19\x3d\x2e\x1e\ +\x44\x33\x21\x3c\x2d\x1d\x35\x27\x19\x35\x27\x19\x32\x25\x18\x37\ +\x29\x1b\x2d\x22\x16\x25\x1b\x12\x28\x1e\x13\x2c\x22\x15\x32\x25\ +\x18\x2d\x22\x15\x2b\x20\x15\x3b\x2c\x1c\x3d\x2e\x1e\x3a\x2b\x1c\ +\x34\x27\x19\x37\x29\x1a\x31\x24\x17\x2b\x20\x15\x2b\x20\x14\x32\ +\x26\x18\x30\x25\x17\x3c\x2d\x1d\x40\x2f\x1f\x3b\x2c\x1c\x37\x29\ +\x1b\x35\x28\x19\x3e\x2e\x1e\x42\x31\x20\x34\x27\x19\x35\x28\x1a\ +\x24\x1b\x11\x22\x23\x23\x3b\x3d\x3e\x17\x18\x19\x25\x26\x28\x54\ +\x57\x5a\x5a\x5f\x64\x44\x49\x51\x5b\x61\x69\x6e\x75\x7d\x70\x76\ +\x7f\x4a\x50\x5b\x4b\x52\x5c\x6c\x74\x7d\x6d\x78\x80\x6a\x75\x7d\ +\x6b\x76\x7e\x6a\x75\x7d\x69\x75\x7d\x6a\x75\x7d\x69\x75\x7d\x68\ +\x75\x7d\x67\x73\x7d\x68\x73\x7d\x69\x74\x7d\x6a\x75\x7d\x6b\x75\ +\x7d\x6c\x76\x7e\x70\x7a\x82\x71\x7b\x83\x73\x7c\x85\x71\x7b\x82\ +\x71\x7b\x82\x71\x7b\x81\x00\x00\x00\x3f\x2f\x1e\x53\x3e\x29\x4d\ +\x39\x25\x41\x31\x1f\x27\x1e\x13\x18\x12\x0b\x15\x0f\x09\x1f\x17\ +\x0f\x1e\x16\x0e\x1f\x18\x0e\x26\x1c\x12\x28\x1e\x13\x28\x1f\x13\ +\x30\x25\x18\x28\x1f\x13\x1f\x17\x0e\x27\x1d\x13\x34\x27\x19\x40\ +\x30\x1e\x3e\x2f\x1d\x38\x2a\x1b\x31\x24\x18\x29\x1f\x14\x27\x1e\ +\x13\x27\x1d\x12\x26\x1c\x12\x28\x1e\x13\x2a\x20\x14\x30\x23\x17\ +\x34\x27\x18\x27\x1d\x12\x29\x1f\x13\x29\x1f\x14\x31\x25\x18\x2f\ +\x23\x17\x2a\x1f\x14\x1f\x17\x0f\x27\x1d\x13\x1e\x17\x0e\x1f\x17\ +\x0f\x23\x19\x11\x29\x1f\x14\x2e\x22\x16\x31\x24\x17\x33\x26\x19\ +\x33\x26\x18\x2e\x22\x16\x28\x1e\x14\x2a\x20\x14\x25\x1c\x12\x25\ +\x1c\x12\x2a\x1f\x14\x27\x1d\x13\x28\x1f\x13\x2f\x23\x16\x31\x24\ +\x18\x27\x1d\x13\x27\x1e\x13\x35\x28\x1a\x38\x2a\x1b\x44\x32\x20\ +\x41\x31\x1f\x3d\x2e\x1d\x33\x26\x18\x2c\x21\x15\x2a\x1f\x14\x27\ +\x1d\x13\x24\x1b\x12\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2d\x21\ +\x15\x2e\x23\x16\x33\x26\x18\x3a\x2b\x1c\x38\x29\x1b\x36\x29\x1a\ +\x37\x29\x1a\x36\x2a\x1b\x41\x32\x1f\x3a\x2b\x1c\x38\x2a\x1b\x46\ +\x34\x21\x33\x26\x18\x3a\x2b\x1c\x3c\x2e\x1d\x30\x24\x17\x37\x29\ +\x1b\x36\x28\x19\x38\x2a\x1b\x34\x27\x19\x31\x25\x18\x35\x28\x1a\ +\x33\x26\x19\x30\x24\x17\x32\x26\x18\x42\x32\x20\x3a\x2b\x1c\x37\ +\x2a\x1b\x2f\x23\x16\x38\x29\x1a\x31\x25\x17\x38\x29\x1b\x3e\x2e\ +\x1e\x3a\x2b\x1c\x3e\x2e\x1d\x42\x31\x20\x3e\x2e\x1e\x35\x28\x1a\ +\x33\x26\x18\x39\x2a\x1b\x41\x30\x20\x38\x2a\x1b\x32\x25\x18\x39\ +\x2b\x1c\x33\x26\x18\x2f\x24\x16\x2b\x20\x15\x37\x29\x1a\x37\x2a\ +\x1b\x3a\x2b\x1c\x39\x2b\x1b\x35\x28\x1a\x38\x2a\x1a\x34\x27\x19\ +\x38\x2a\x1b\x41\x30\x1f\x36\x29\x1a\x36\x29\x1b\x1e\x16\x0f\x2d\ +\x2e\x2f\x39\x3d\x3e\x38\x3a\x3d\x35\x38\x3c\x5c\x60\x64\x62\x67\ +\x6d\x4f\x55\x5d\x48\x4d\x56\x68\x6e\x77\x6f\x77\x7f\x6a\x71\x7b\ +\x42\x49\x55\x59\x61\x6b\x6c\x77\x7f\x6c\x77\x7f\x6c\x77\x7f\x67\ +\x73\x7b\x6a\x75\x7d\x6a\x75\x7d\x68\x75\x7d\x67\x74\x7c\x68\x73\ +\x7d\x69\x73\x7e\x6b\x74\x7e\x6a\x74\x7d\x6c\x75\x7e\x6b\x75\x7e\ +\x71\x7a\x82\x73\x7d\x85\x73\x7d\x84\x71\x7b\x82\x72\x7c\x83\x72\ +\x7c\x81\x00\x00\x00\x47\x35\x22\x60\x48\x2f\x51\x3d\x28\x43\x32\ +\x21\x20\x18\x0f\x21\x18\x0f\x1f\x17\x0f\x22\x19\x10\x22\x1a\x11\ +\x25\x1c\x12\x2c\x21\x15\x23\x1a\x11\x24\x1b\x11\x2d\x22\x15\x2c\ +\x21\x15\x23\x1a\x11\x27\x1d\x12\x2c\x21\x15\x32\x26\x18\x39\x2b\ +\x1b\x35\x28\x1a\x2c\x21\x15\x22\x1a\x10\x22\x1a\x10\x24\x1c\x11\ +\x24\x1b\x11\x29\x1f\x14\x2d\x21\x16\x37\x29\x1a\x37\x2a\x1b\x26\ +\x1c\x12\x30\x24\x18\x2f\x23\x16\x34\x27\x19\x27\x1d\x13\x26\x1c\ +\x12\x26\x1d\x12\x30\x24\x17\x23\x1b\x11\x24\x1a\x11\x2a\x20\x14\ +\x27\x1d\x12\x2b\x20\x14\x36\x28\x1a\x3c\x2d\x1d\x36\x28\x19\x2f\ +\x24\x17\x28\x1e\x13\x24\x1b\x11\x26\x1d\x12\x24\x1b\x11\x2c\x21\ +\x15\x2a\x1f\x14\x28\x1e\x13\x25\x1c\x12\x25\x1b\x12\x26\x1c\x12\ +\x2f\x23\x17\x2e\x22\x17\x2e\x22\x16\x39\x2b\x1b\x31\x25\x17\x33\ +\x26\x18\x31\x25\x17\x2c\x21\x15\x2c\x21\x15\x2a\x20\x14\x2e\x23\ +\x16\x28\x1e\x13\x2a\x20\x14\x2b\x20\x14\x2b\x20\x15\x2d\x22\x16\ +\x35\x28\x1a\x2f\x23\x17\x34\x26\x19\x34\x27\x19\x33\x26\x19\x37\ +\x29\x1b\x3c\x2d\x1d\x3e\x2e\x1e\x36\x29\x1b\x39\x2b\x1b\x26\x1d\ +\x12\x28\x1e\x13\x32\x26\x18\x31\x25\x17\x30\x24\x17\x31\x24\x17\ +\x34\x27\x19\x35\x28\x1a\x32\x25\x18\x2d\x21\x15\x2c\x21\x15\x2c\ +\x21\x15\x2e\x23\x16\x2e\x22\x16\x38\x2a\x1b\x37\x29\x1b\x42\x31\ +\x20\x40\x30\x1f\x38\x2a\x1c\x3b\x2c\x1c\x40\x30\x20\x3a\x2b\x1c\ +\x38\x2a\x1c\x43\x32\x21\x3f\x2f\x1d\x34\x27\x19\x2c\x21\x15\x2e\ +\x23\x16\x30\x24\x17\x30\x24\x17\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\ +\x1b\x2a\x1f\x14\x27\x1e\x13\x2d\x22\x16\x2b\x20\x15\x39\x2b\x1b\ +\x41\x31\x1f\x3b\x2d\x1d\x38\x2a\x1b\x3d\x2e\x1e\x3a\x2b\x1c\x3c\ +\x2c\x1c\x38\x2a\x1b\x2e\x23\x16\x27\x1d\x13\x2a\x2c\x2d\x38\x3d\ +\x3e\x3f\x42\x45\x32\x36\x3a\x48\x4c\x52\x62\x6a\x6f\x61\x69\x6f\ +\x48\x4d\x56\x55\x5c\x65\x6b\x74\x7e\x6e\x77\x80\x61\x69\x73\x3e\ +\x44\x4f\x5b\x65\x6e\x6d\x77\x80\x6a\x75\x7d\x69\x75\x7c\x6a\x76\ +\x7d\x6a\x76\x7e\x69\x75\x7d\x69\x75\x7d\x6a\x74\x7e\x69\x73\x7e\ +\x6b\x74\x7e\x6c\x76\x80\x6b\x75\x7e\x6d\x76\x7f\x6f\x79\x81\x72\ +\x7c\x84\x71\x7b\x82\x70\x7a\x81\x72\x7d\x82\x73\x7d\x81\x00\x00\ +\x00\x50\x3c\x26\x67\x4d\x32\x55\x40\x2a\x4f\x3b\x26\x24\x1b\x11\ +\x2a\x1f\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x26\x1c\x12\x28\ +\x1e\x13\x25\x1b\x11\x24\x1c\x11\x27\x1d\x12\x27\x1d\x12\x28\x1e\ +\x13\x28\x1e\x13\x25\x1c\x12\x2e\x23\x16\x36\x28\x1a\x37\x2a\x1b\ +\x33\x26\x18\x29\x1f\x14\x28\x1f\x13\x2a\x20\x14\x28\x1e\x13\x27\ +\x1e\x13\x2a\x1f\x14\x35\x28\x19\x2f\x24\x17\x2a\x1f\x14\x28\x1e\ +\x13\x26\x1c\x12\x2c\x21\x15\x27\x1e\x13\x2b\x20\x15\x2a\x20\x15\ +\x2c\x21\x15\x29\x1f\x14\x27\x1d\x13\x2b\x20\x15\x24\x1c\x11\x28\ +\x1e\x13\x31\x25\x17\x39\x2a\x1b\x3a\x2c\x1c\x34\x26\x18\x29\x1e\ +\x13\x28\x1e\x13\x2b\x21\x15\x29\x1f\x14\x2b\x20\x14\x21\x19\x10\ +\x24\x1b\x11\x23\x1a\x11\x1d\x16\x0e\x29\x1f\x14\x2e\x22\x16\x36\ +\x28\x1a\x38\x2a\x1b\x3d\x2e\x1e\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\ +\x1f\x38\x2a\x1b\x34\x27\x19\x31\x26\x18\x2f\x23\x17\x26\x1d\x12\ +\x24\x1b\x11\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x34\x27\x19\x31\ +\x24\x18\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x2f\x22\x16\x32\x26\ +\x18\x3b\x2c\x1c\x36\x29\x1a\x3a\x2b\x1c\x31\x24\x18\x2b\x20\x14\ +\x35\x28\x19\x30\x24\x17\x30\x24\x16\x39\x2b\x1b\x39\x2b\x1c\x39\ +\x2a\x1b\x37\x29\x1a\x30\x24\x17\x2d\x22\x16\x2a\x1f\x14\x2a\x20\ +\x14\x2e\x22\x16\x37\x29\x1a\x3b\x2b\x1c\x43\x32\x21\x3f\x2f\x1f\ +\x38\x2a\x1b\x38\x29\x1b\x32\x25\x18\x34\x28\x19\x38\x2a\x1b\x3d\ +\x2e\x1e\x42\x31\x20\x3a\x2b\x1b\x30\x24\x17\x2d\x22\x16\x2b\x21\ +\x15\x32\x25\x18\x34\x26\x19\x38\x2a\x1b\x37\x2a\x1a\x34\x27\x19\ +\x2c\x21\x15\x2c\x21\x15\x33\x26\x18\x38\x2a\x1c\x3b\x2c\x1c\x3c\ +\x2d\x1d\x2e\x22\x16\x34\x27\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ +\x1b\x37\x29\x1a\x2b\x21\x14\x18\x1a\x1a\x3a\x3d\x3f\x41\x44\x47\ +\x3f\x43\x46\x35\x39\x3e\x5b\x63\x66\x64\x6c\x70\x5d\x64\x6a\x3f\ +\x46\x4e\x5d\x65\x6e\x6c\x76\x7f\x6e\x77\x80\x57\x5f\x69\x3c\x45\ +\x51\x68\x72\x7b\x6b\x76\x7d\x6a\x76\x7e\x6a\x76\x7e\x69\x75\x7d\ +\x68\x75\x7c\x69\x75\x7e\x69\x74\x7e\x69\x73\x7d\x6d\x76\x80\x6c\ +\x75\x7f\x6c\x75\x7e\x6f\x78\x81\x71\x7b\x83\x72\x7b\x83\x73\x7d\ +\x84\x72\x7c\x83\x75\x7f\x84\x74\x7c\x82\x00\x00\x00\x4f\x3b\x26\ +\x57\x41\x2a\x50\x3c\x27\x52\x3e\x28\x26\x1c\x12\x2d\x22\x16\x29\ +\x1f\x14\x2b\x21\x15\x3a\x2b\x1c\x34\x27\x19\x31\x24\x17\x35\x28\ +\x19\x29\x1f\x14\x28\x1e\x13\x29\x1f\x13\x29\x1e\x13\x24\x1b\x11\ +\x23\x1a\x10\x27\x1d\x12\x2b\x20\x15\x31\x25\x18\x36\x28\x1a\x32\ +\x25\x18\x2c\x21\x15\x2a\x20\x14\x30\x24\x17\x2b\x21\x15\x2b\x20\ +\x14\x33\x26\x19\x30\x24\x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x15\ +\x29\x1f\x13\x2b\x20\x15\x2e\x22\x17\x30\x24\x17\x31\x25\x18\x27\ +\x1e\x13\x34\x27\x19\x33\x26\x19\x28\x1e\x13\x28\x1e\x13\x2a\x20\ +\x14\x2b\x1f\x14\x2a\x20\x14\x26\x1c\x12\x28\x1e\x13\x35\x28\x1a\ +\x30\x24\x17\x2e\x22\x16\x35\x28\x1a\x2a\x20\x14\x27\x1d\x12\x21\ +\x19\x10\x23\x1a\x11\x28\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x3a\x2b\ +\x1c\x40\x30\x1e\x3b\x2d\x1c\x39\x2b\x1c\x43\x32\x21\x3e\x2e\x1e\ +\x3a\x2c\x1c\x34\x27\x19\x34\x27\x19\x2b\x20\x14\x1e\x16\x0e\x2a\ +\x1f\x14\x29\x1f\x14\x29\x1f\x14\x26\x1d\x13\x26\x1c\x12\x27\x1d\ +\x12\x2a\x1f\x14\x2f\x23\x16\x32\x25\x18\x3b\x2c\x1c\x3e\x2e\x1d\ +\x36\x28\x1a\x33\x26\x18\x29\x1f\x13\x2c\x21\x15\x3a\x2b\x1c\x36\ +\x29\x1a\x3b\x2c\x1c\x42\x32\x20\x3c\x2d\x1d\x38\x2a\x1b\x37\x2a\ +\x1a\x33\x26\x18\x30\x24\x17\x2b\x20\x14\x2a\x20\x14\x38\x2a\x1b\ +\x36\x28\x1a\x3b\x2c\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x3f\x30\x1e\x3b\ +\x2c\x1c\x34\x27\x19\x30\x24\x17\x32\x25\x18\x38\x29\x1b\x43\x32\ +\x21\x37\x29\x1a\x30\x24\x17\x2d\x22\x15\x2a\x20\x14\x2d\x22\x15\ +\x32\x25\x18\x35\x27\x1a\x36\x28\x1a\x32\x26\x18\x31\x24\x17\x2d\ +\x22\x16\x32\x26\x18\x37\x2a\x1b\x3c\x2d\x1d\x40\x31\x1f\x33\x27\ +\x19\x2f\x23\x17\x32\x25\x18\x36\x29\x1b\x37\x29\x1a\x37\x29\x1a\ +\x34\x27\x19\x21\x20\x20\x2e\x31\x33\x41\x44\x46\x48\x4b\x4e\x3a\ +\x3d\x41\x41\x45\x49\x64\x6c\x70\x67\x70\x76\x52\x5a\x61\x46\x4e\ +\x57\x66\x6f\x78\x6b\x74\x7e\x6e\x76\x80\x49\x52\x5f\x45\x51\x5c\ +\x6a\x76\x7f\x66\x73\x7b\x69\x75\x7d\x68\x75\x7d\x69\x75\x7d\x6a\ +\x76\x7e\x6a\x75\x7e\x6b\x75\x7f\x6d\x77\x81\x6e\x77\x81\x70\x79\ +\x82\x71\x7a\x83\x72\x7b\x84\x73\x7c\x82\x71\x7b\x82\x73\x7d\x84\ +\x73\x7d\x83\x76\x7e\x85\x00\x00\x00\x3f\x2f\x1f\x45\x34\x21\x55\ +\x3f\x29\x53\x3e\x28\x2e\x22\x16\x31\x25\x18\x26\x1d\x13\x2b\x21\ +\x14\x38\x2a\x1b\x3a\x2b\x1c\x38\x2b\x1b\x36\x29\x1a\x31\x25\x18\ +\x26\x1c\x12\x28\x1f\x14\x21\x18\x0f\x20\x18\x0f\x23\x1a\x11\x26\ +\x1d\x13\x26\x1d\x13\x2a\x20\x14\x33\x26\x18\x2e\x22\x16\x2a\x20\ +\x15\x28\x1e\x13\x28\x1f\x13\x28\x1f\x13\x2f\x24\x16\x32\x26\x18\ +\x2c\x21\x15\x2c\x21\x15\x2e\x23\x17\x2a\x20\x14\x28\x1e\x13\x26\ +\x1d\x13\x2b\x20\x15\x2f\x24\x17\x38\x2a\x1b\x30\x24\x17\x3b\x2c\ +\x1d\x40\x2f\x1f\x33\x25\x18\x29\x1e\x14\x28\x1e\x14\x28\x1e\x13\ +\x25\x1c\x11\x22\x19\x10\x2b\x20\x14\x35\x28\x1a\x33\x26\x18\x30\ +\x24\x17\x32\x26\x18\x2d\x22\x15\x26\x1c\x12\x24\x1b\x10\x2a\x1f\ +\x14\x28\x1e\x14\x2e\x23\x16\x2b\x20\x15\x32\x25\x18\x34\x27\x19\ +\x2f\x24\x16\x2d\x21\x16\x37\x29\x1a\x36\x28\x1a\x35\x28\x19\x35\ +\x28\x1a\x36\x29\x1a\x2a\x1f\x14\x21\x19\x10\x28\x1e\x14\x26\x1c\ +\x12\x22\x19\x11\x1e\x17\x0f\x25\x1b\x11\x23\x1a\x10\x27\x1d\x13\ +\x2c\x21\x15\x30\x24\x17\x3e\x2e\x1d\x42\x32\x20\x3b\x2c\x1c\x3b\ +\x2c\x1c\x2f\x23\x17\x33\x27\x19\x35\x28\x1a\x32\x25\x18\x3c\x2d\ +\x1d\x3d\x2e\x1e\x3d\x2d\x1e\x3d\x2e\x1d\x3c\x2d\x1c\x39\x2b\x1b\ +\x33\x26\x19\x31\x25\x17\x29\x1e\x13\x30\x24\x17\x34\x27\x19\x33\ +\x27\x18\x38\x2a\x1c\x37\x2a\x1a\x42\x32\x20\x3d\x2d\x1e\x33\x26\ +\x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x34\x27\x19\x30\x24\x17\ +\x30\x24\x16\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\x2a\x20\x14\x2c\ +\x21\x15\x2e\x23\x16\x30\x24\x16\x2d\x21\x15\x2f\x24\x17\x35\x28\ +\x1a\x35\x28\x19\x37\x29\x1b\x3c\x2d\x1d\x34\x27\x19\x30\x24\x17\ +\x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x2e\x22\x16\x29\x20\x14\x30\ +\x30\x2e\x1c\x1e\x21\x42\x45\x47\x48\x4d\x50\x4a\x4f\x52\x40\x44\ +\x48\x55\x5c\x62\x67\x70\x77\x67\x6f\x77\x3e\x45\x4f\x51\x59\x62\ +\x68\x72\x7a\x6b\x76\x7f\x66\x70\x7a\x38\x43\x4f\x4e\x5a\x64\x6a\ +\x76\x7f\x69\x75\x7d\x6b\x77\x7f\x69\x74\x7c\x68\x74\x7c\x69\x75\ +\x7c\x6a\x75\x7d\x6e\x78\x80\x6f\x79\x81\x70\x79\x83\x71\x7a\x83\ +\x74\x7d\x86\x72\x7a\x83\x71\x7b\x82\x72\x7c\x83\x74\x7c\x84\x77\ +\x7f\x85\x00\x00\x00\x3e\x2e\x1e\x53\x3e\x29\x65\x4c\x32\x55\x40\ +\x29\x2c\x21\x15\x24\x1b\x12\x1e\x17\x0f\x38\x2a\x1b\x33\x26\x18\ +\x37\x29\x1b\x39\x2b\x1c\x2f\x23\x17\x32\x26\x18\x2c\x21\x15\x2c\ +\x21\x16\x27\x1e\x13\x25\x1c\x12\x25\x1c\x12\x27\x1d\x13\x27\x1d\ +\x12\x2a\x20\x14\x2d\x22\x16\x27\x1d\x13\x20\x18\x0f\x22\x19\x10\ +\x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x30\x24\x17\x30\x24\x17\x32\ +\x25\x18\x2e\x23\x16\x29\x1f\x14\x28\x1e\x13\x24\x1b\x12\x2e\x23\ +\x16\x31\x25\x17\x30\x24\x17\x3a\x2b\x1c\x42\x31\x20\x3a\x2b\x1c\ +\x36\x28\x19\x2e\x22\x16\x2d\x22\x16\x2f\x23\x17\x2e\x22\x16\x2c\ +\x21\x15\x32\x25\x18\x2f\x23\x17\x2c\x21\x15\x2c\x21\x15\x34\x27\ +\x19\x32\x25\x18\x2b\x20\x15\x27\x1d\x12\x27\x1e\x13\x22\x19\x10\ +\x2c\x20\x15\x2b\x21\x15\x33\x26\x19\x34\x27\x19\x2c\x22\x15\x2e\ +\x23\x16\x33\x26\x18\x31\x25\x18\x2e\x22\x16\x30\x24\x17\x32\x26\ +\x18\x2d\x22\x16\x2b\x20\x14\x2f\x23\x16\x25\x1c\x12\x24\x1b\x12\ +\x23\x1b\x11\x2b\x20\x14\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2f\ +\x24\x17\x3a\x2b\x1c\x47\x35\x22\x36\x28\x19\x42\x31\x20\x3a\x2b\ +\x1c\x43\x32\x20\x3d\x2d\x1d\x33\x26\x18\x31\x25\x18\x34\x26\x19\ +\x3c\x2d\x1d\x3f\x2f\x1f\x40\x30\x1f\x41\x31\x1f\x3b\x2c\x1c\x3b\ +\x2c\x1c\x2f\x23\x16\x2c\x21\x15\x32\x25\x18\x35\x28\x19\x35\x28\ +\x1a\x39\x2a\x1b\x42\x32\x20\x47\x34\x22\x3a\x2c\x1d\x31\x25\x17\ +\x30\x23\x17\x31\x25\x17\x2c\x21\x15\x2a\x20\x14\x33\x26\x18\x37\ +\x29\x1b\x2f\x23\x17\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x29\x1f\ +\x14\x2d\x22\x15\x2a\x20\x14\x32\x26\x18\x2f\x24\x17\x31\x25\x18\ +\x2a\x20\x14\x36\x28\x1a\x2f\x23\x17\x27\x1d\x13\x2b\x21\x15\x28\ +\x1e\x14\x30\x25\x18\x39\x2b\x1b\x32\x26\x19\x33\x30\x2e\x26\x28\ +\x2a\x2d\x31\x35\x49\x4e\x52\x50\x56\x5a\x41\x48\x4c\x3b\x42\x49\ +\x62\x6b\x71\x69\x73\x7a\x63\x6b\x74\x3b\x43\x4d\x60\x69\x71\x6c\ +\x76\x7e\x6c\x77\x80\x61\x6c\x75\x34\x3f\x4c\x5b\x64\x71\x68\x74\ +\x7d\x6a\x75\x7d\x68\x74\x7b\x69\x76\x7d\x69\x75\x7d\x68\x73\x7b\ +\x6c\x76\x7e\x6e\x77\x80\x6f\x78\x81\x70\x79\x82\x72\x7b\x84\x73\ +\x7d\x85\x71\x7a\x82\x74\x7e\x85\x76\x7f\x86\x77\x7e\x85\x00\x00\ +\x00\x3b\x2c\x1d\x52\x3e\x28\x65\x4c\x31\x59\x42\x2b\x2e\x23\x16\ +\x2a\x20\x14\x23\x1a\x10\x36\x29\x1b\x31\x25\x18\x34\x27\x19\x3d\ +\x2e\x1e\x38\x2a\x1b\x30\x24\x17\x32\x26\x19\x2d\x22\x15\x2b\x20\ +\x14\x2e\x23\x16\x28\x1e\x13\x24\x1b\x12\x21\x18\x10\x22\x1a\x10\ +\x26\x1d\x12\x23\x1a\x11\x21\x19\x10\x25\x1c\x11\x2c\x21\x14\x2a\ +\x20\x14\x25\x1c\x12\x2d\x22\x15\x31\x25\x18\x32\x25\x18\x36\x28\ +\x1a\x39\x2b\x1b\x33\x27\x19\x2f\x23\x17\x32\x25\x18\x31\x24\x17\ +\x33\x26\x19\x3b\x2c\x1c\x46\x34\x21\x39\x2b\x1c\x31\x25\x17\x2d\ +\x22\x16\x2d\x22\x16\x34\x27\x19\x33\x27\x18\x30\x24\x17\x31\x25\ +\x18\x32\x26\x18\x28\x1e\x13\x26\x1c\x12\x2a\x20\x14\x2f\x23\x17\ +\x33\x26\x18\x2e\x22\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x12\x29\ +\x1f\x14\x29\x1f\x14\x2e\x23\x16\x2d\x22\x16\x36\x28\x1a\x31\x25\ +\x17\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\ +\x32\x25\x18\x34\x27\x18\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2f\ +\x24\x16\x30\x24\x17\x31\x25\x18\x2f\x23\x16\x30\x25\x17\x3b\x2c\ +\x1c\x3d\x2e\x1d\x2a\x20\x14\x36\x28\x1a\x33\x26\x18\x3d\x2d\x1d\ +\x3c\x2d\x1d\x37\x29\x1a\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1b\x3e\ +\x2f\x1e\x40\x30\x1f\x47\x34\x22\x42\x32\x20\x3e\x2e\x1e\x33\x26\ +\x19\x33\x26\x19\x3c\x2c\x1d\x37\x29\x1a\x2f\x23\x16\x34\x26\x19\ +\x39\x2a\x1c\x41\x31\x1f\x3d\x2e\x1e\x30\x24\x17\x38\x2a\x1b\x3d\ +\x2d\x1c\x34\x27\x19\x2f\x23\x17\x2c\x21\x15\x30\x25\x18\x36\x28\ +\x1a\x38\x2a\x1b\x30\x24\x17\x2b\x20\x15\x2b\x21\x15\x2d\x22\x16\ +\x30\x24\x17\x32\x25\x18\x30\x25\x17\x37\x29\x1a\x2d\x21\x16\x35\ +\x28\x19\x2f\x23\x16\x30\x24\x17\x35\x28\x1a\x32\x25\x18\x3d\x2e\ +\x1d\x3e\x2f\x1e\x40\x31\x20\x3a\x35\x2f\x2f\x32\x33\x20\x24\x27\ +\x44\x4a\x4d\x50\x57\x5b\x54\x5a\x60\x3f\x46\x4c\x4c\x53\x59\x69\ +\x72\x79\x6e\x78\x7e\x3f\x47\x4e\x2e\x33\x3b\x66\x70\x78\x6a\x76\ +\x7e\x67\x73\x7b\x55\x61\x6c\x36\x3f\x4b\x64\x6f\x79\x68\x75\x7d\ +\x69\x75\x7d\x6a\x76\x7e\x6a\x75\x7d\x6b\x76\x7d\x6e\x78\x80\x6f\ +\x78\x82\x70\x79\x81\x70\x79\x82\x71\x7a\x83\x74\x7e\x85\x74\x7e\ +\x85\x72\x7c\x83\x76\x7f\x87\x76\x7f\x86\x00\x00\x00\x3e\x2f\x1e\ +\x4b\x38\x24\x5f\x47\x2d\x5b\x44\x2c\x31\x25\x18\x2a\x1f\x15\x1d\ +\x15\x0d\x21\x19\x10\x2d\x22\x16\x31\x25\x17\x3e\x2e\x1e\x37\x29\ +\x1a\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2e\x23\x16\x30\x24\x17\ +\x2b\x20\x15\x31\x25\x18\x31\x25\x18\x2a\x1f\x14\x26\x1d\x12\x28\ +\x1e\x14\x2a\x20\x14\x31\x24\x17\x36\x28\x1a\x29\x1f\x14\x23\x1b\ +\x11\x2b\x21\x15\x31\x24\x17\x33\x26\x18\x42\x31\x20\x40\x31\x1f\ +\x36\x29\x1a\x31\x25\x17\x2e\x22\x16\x2f\x23\x17\x37\x29\x1b\x35\ +\x28\x1a\x39\x2b\x1b\x3a\x2c\x1c\x30\x24\x17\x28\x1e\x13\x2a\x20\ +\x14\x35\x28\x19\x35\x27\x19\x2f\x23\x17\x2b\x20\x15\x29\x1f\x14\ +\x26\x1d\x13\x22\x19\x10\x20\x18\x0f\x29\x1f\x13\x33\x27\x19\x2d\ +\x22\x16\x30\x24\x18\x27\x1d\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ +\x14\x34\x27\x18\x34\x27\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\x17\ +\x39\x2b\x1c\x30\x24\x17\x2b\x1f\x14\x2f\x23\x16\x37\x29\x1a\x3d\ +\x2e\x1d\x3b\x2d\x1c\x39\x2b\x1c\x3d\x2e\x1e\x3c\x2d\x1d\x36\x28\ +\x1a\x31\x25\x18\x33\x26\x19\x3b\x2c\x1c\x3a\x2b\x1c\x31\x25\x18\ +\x2b\x21\x15\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x34\x28\x19\x35\ +\x28\x1a\x30\x24\x17\x2f\x24\x17\x32\x26\x18\x37\x29\x1a\x3b\x2b\ +\x1c\x42\x31\x20\x40\x30\x1f\x34\x27\x19\x30\x24\x17\x36\x29\x1a\ +\x3c\x2c\x1c\x35\x27\x19\x33\x26\x19\x34\x27\x1a\x34\x27\x19\x40\ +\x30\x1e\x3d\x2e\x1d\x31\x25\x17\x39\x2b\x1b\x41\x30\x1f\x33\x26\ +\x19\x2f\x23\x17\x2a\x20\x14\x2d\x22\x16\x39\x2a\x1b\x3d\x2d\x1d\ +\x35\x28\x19\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x31\x24\x18\x35\ +\x28\x19\x35\x28\x19\x33\x26\x19\x3c\x2c\x1d\x3e\x2e\x1e\x34\x27\ +\x19\x34\x27\x19\x33\x27\x18\x33\x26\x18\x36\x28\x1a\x37\x29\x1a\ +\x3f\x30\x20\x35\x30\x2a\x31\x33\x35\x31\x36\x39\x27\x2c\x30\x50\ +\x58\x5c\x54\x5b\x60\x50\x56\x5b\x41\x47\x4c\x5b\x64\x6b\x6b\x76\ +\x7c\x28\x30\x35\x32\x38\x3d\x44\x4d\x55\x68\x75\x7d\x6a\x76\x7e\ +\x69\x74\x7d\x4d\x57\x63\x3c\x47\x52\x64\x72\x7a\x69\x76\x7e\x6c\ +\x78\x80\x6c\x77\x7f\x6b\x77\x7e\x6b\x77\x7e\x6e\x79\x81\x70\x7a\ +\x82\x6f\x78\x82\x71\x7a\x81\x70\x7a\x81\x72\x7d\x83\x76\x80\x88\ +\x75\x7f\x86\x77\x80\x87\x00\x00\x00\x3b\x2d\x1d\x4c\x39\x25\x60\ +\x48\x2e\x51\x3c\x27\x2d\x21\x15\x2e\x23\x17\x17\x11\x0a\x1f\x17\ +\x0f\x28\x1e\x14\x29\x1f\x13\x2f\x23\x16\x2c\x21\x15\x23\x1b\x11\ +\x26\x1d\x12\x2a\x20\x14\x29\x1f\x13\x2d\x23\x16\x31\x25\x18\x3a\ +\x2c\x1c\x3e\x2e\x1d\x36\x29\x1a\x2b\x20\x15\x29\x1f\x14\x25\x1c\ +\x12\x2f\x23\x17\x32\x26\x18\x2a\x1f\x14\x29\x1f\x14\x2b\x20\x15\ +\x36\x29\x1a\x37\x29\x1a\x34\x27\x19\x35\x28\x1a\x30\x24\x17\x36\ +\x28\x1a\x2f\x24\x17\x31\x25\x17\x2e\x22\x16\x32\x25\x18\x36\x29\ +\x1a\x3d\x2e\x1d\x32\x25\x18\x2b\x20\x15\x2d\x21\x15\x32\x25\x18\ +\x33\x26\x19\x2d\x21\x15\x2f\x24\x17\x2c\x21\x15\x25\x1c\x12\x21\ +\x19\x10\x28\x1e\x13\x32\x25\x18\x2a\x20\x14\x31\x25\x18\x29\x1f\ +\x14\x27\x1e\x12\x2d\x22\x16\x30\x24\x17\x2c\x21\x15\x32\x25\x17\ +\x31\x25\x18\x2f\x23\x17\x31\x25\x17\x3e\x2f\x1d\x3a\x2b\x1c\x28\ +\x1e\x13\x29\x1f\x13\x2e\x23\x16\x34\x27\x19\x3b\x2c\x1c\x38\x29\ +\x1b\x3a\x2c\x1c\x36\x28\x1a\x36\x28\x1a\x28\x1e\x13\x2e\x23\x16\ +\x32\x26\x18\x38\x29\x1b\x32\x26\x18\x2f\x24\x17\x34\x28\x19\x2e\ +\x22\x16\x28\x1e\x13\x36\x29\x1a\x37\x2a\x1a\x33\x26\x19\x2d\x22\ +\x16\x35\x28\x19\x35\x28\x1a\x30\x24\x17\x3a\x2b\x1b\x3a\x2b\x1c\ +\x38\x2a\x1b\x38\x29\x1a\x36\x29\x1a\x3b\x2c\x1c\x39\x2a\x1a\x2f\ +\x23\x16\x2d\x21\x16\x2b\x20\x15\x2e\x23\x16\x3c\x2d\x1c\x31\x25\ +\x18\x2f\x23\x16\x37\x29\x1a\x3d\x2d\x1d\x37\x29\x1b\x31\x25\x17\ +\x2f\x23\x17\x35\x27\x1a\x38\x2a\x1b\x38\x2b\x1b\x2e\x23\x16\x2d\ +\x22\x16\x2b\x20\x15\x30\x24\x17\x2d\x21\x15\x35\x28\x1a\x35\x27\ +\x19\x32\x25\x18\x39\x2b\x1b\x3e\x2e\x1e\x38\x2a\x1b\x32\x25\x18\ +\x2d\x22\x16\x2a\x20\x15\x2d\x21\x16\x31\x25\x17\x33\x27\x1a\x35\ +\x2f\x28\x39\x3a\x38\x37\x3c\x3e\x2d\x33\x37\x35\x3b\x3f\x3d\x42\ +\x47\x54\x5a\x5e\x49\x4f\x55\x4e\x57\x5e\x2f\x37\x3a\x27\x2e\x31\ +\x36\x3e\x42\x2f\x36\x3d\x54\x5e\x67\x69\x76\x7e\x66\x73\x7b\x62\ +\x6e\x76\x3e\x47\x51\x48\x53\x5c\x6a\x77\x7f\x6a\x77\x7f\x6c\x77\ +\x7f\x6c\x77\x7f\x6b\x76\x7e\x6e\x78\x80\x6e\x78\x7f\x68\x72\x7a\ +\x68\x73\x7b\x6c\x78\x7f\x70\x7d\x83\x75\x7f\x86\x76\x80\x87\x77\ +\x81\x88\x00\x00\x00\x3c\x2d\x1d\x47\x36\x22\x5b\x44\x2c\x4c\x38\ +\x24\x2c\x20\x15\x1e\x17\x0e\x1b\x15\x0d\x23\x1b\x11\x2a\x1f\x15\ +\x2e\x23\x16\x2d\x22\x16\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\ +\x1c\x12\x26\x1c\x12\x2a\x20\x14\x32\x26\x18\x37\x29\x1a\x3b\x2c\ +\x1d\x32\x26\x18\x29\x1f\x14\x24\x1c\x11\x25\x1b\x12\x2e\x22\x15\ +\x2a\x20\x15\x2b\x20\x15\x2c\x21\x15\x2b\x20\x14\x33\x26\x19\x32\ +\x26\x18\x2a\x1f\x14\x2b\x21\x15\x32\x25\x18\x3d\x2d\x1d\x35\x28\ +\x19\x36\x28\x1a\x31\x24\x17\x39\x2a\x1b\x40\x30\x1f\x3e\x2f\x1e\ +\x38\x2a\x1b\x30\x24\x17\x2b\x21\x15\x2a\x20\x14\x2d\x22\x16\x29\ +\x1e\x13\x2c\x20\x15\x31\x24\x18\x30\x24\x17\x2e\x23\x16\x29\x1f\ +\x14\x2e\x23\x16\x33\x27\x19\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\ +\x30\x24\x17\x2b\x21\x15\x25\x1c\x12\x2d\x22\x15\x36\x28\x1a\x31\ +\x25\x18\x37\x29\x1a\x3d\x2e\x1d\x34\x27\x19\x2c\x21\x15\x2b\x20\ +\x14\x29\x20\x14\x2f\x23\x17\x30\x23\x17\x2c\x21\x15\x2f\x24\x17\ +\x36\x28\x1a\x3a\x2c\x1b\x25\x1c\x12\x29\x1e\x14\x32\x25\x17\x2a\ +\x20\x15\x2e\x23\x16\x29\x1f\x14\x32\x26\x18\x2e\x23\x16\x2e\x22\ +\x16\x34\x27\x19\x2f\x24\x17\x2d\x22\x15\x31\x25\x17\x3a\x2b\x1b\ +\x39\x2b\x1b\x36\x28\x1a\x39\x2a\x1b\x30\x23\x17\x33\x26\x18\x35\ +\x28\x19\x3a\x2c\x1c\x35\x28\x19\x30\x24\x17\x2e\x22\x16\x2e\x22\ +\x16\x2e\x23\x16\x27\x1d\x13\x36\x28\x1a\x29\x1e\x13\x27\x1d\x13\ +\x2b\x20\x14\x2f\x24\x17\x2f\x23\x16\x2a\x20\x15\x2e\x22\x16\x31\ +\x25\x18\x2c\x21\x15\x2b\x21\x15\x2a\x20\x14\x27\x1d\x13\x27\x1d\ +\x13\x2a\x1f\x14\x27\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\ +\x30\x25\x17\x3b\x2d\x1d\x3a\x2c\x1c\x39\x2a\x1c\x33\x26\x19\x36\ +\x29\x1a\x2e\x23\x17\x2c\x21\x15\x2b\x21\x16\x31\x29\x20\x34\x38\ +\x39\x3a\x3f\x43\x39\x3f\x42\x17\x1d\x20\x2c\x2f\x33\x5a\x61\x66\ +\x64\x6c\x71\x39\x40\x47\x02\x02\x03\x35\x3a\x3e\x21\x27\x2c\x61\ +\x69\x6d\x32\x3a\x42\x5f\x69\x71\x68\x76\x7e\x68\x75\x7d\x5c\x67\ +\x70\x3b\x44\x4e\x52\x5e\x67\x6b\x77\x81\x6e\x7a\x83\x6e\x7a\x82\ +\x6e\x79\x81\x72\x7c\x85\x61\x6b\x73\x3b\x42\x4b\x33\x3c\x43\x45\ +\x52\x59\x64\x71\x77\x71\x7c\x83\x75\x7f\x86\x77\x81\x88\x00\x00\ +\x00\x2d\x22\x16\x3f\x2e\x1e\x51\x3c\x27\x41\x31\x1f\x2d\x22\x16\ +\x17\x12\x0b\x1b\x15\x0d\x25\x1d\x12\x2d\x22\x15\x2e\x23\x17\x30\ +\x23\x17\x2b\x20\x14\x29\x1f\x14\x27\x1d\x13\x24\x1b\x11\x24\x1b\ +\x11\x29\x1f\x13\x27\x1d\x12\x32\x25\x18\x38\x2a\x1b\x30\x24\x17\ +\x25\x1c\x12\x23\x1a\x10\x22\x19\x10\x23\x1a\x11\x23\x1a\x11\x2b\ +\x20\x15\x2e\x23\x16\x28\x1e\x13\x29\x1e\x13\x28\x1e\x13\x24\x1b\ +\x11\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x31\x25\x17\x2d\x22\x15\ +\x27\x1d\x13\x32\x25\x18\x39\x2a\x1b\x37\x29\x1b\x33\x26\x19\x30\ +\x24\x17\x2c\x21\x15\x27\x1d\x13\x2b\x20\x14\x23\x19\x10\x23\x1a\ +\x11\x27\x1e\x13\x32\x25\x18\x29\x1e\x13\x27\x1d\x13\x27\x1d\x12\ +\x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2c\x21\x15\x35\x27\x19\x33\ +\x27\x19\x2b\x20\x15\x2c\x21\x15\x2f\x23\x16\x37\x29\x1a\x3c\x2d\ +\x1d\x33\x26\x18\x26\x1d\x13\x27\x1d\x13\x28\x1e\x13\x23\x1a\x11\ +\x23\x1a\x11\x2a\x1f\x14\x2d\x21\x16\x36\x29\x1a\x34\x28\x19\x37\ +\x2a\x1b\x32\x25\x18\x2d\x22\x16\x36\x29\x1b\x3a\x2b\x1c\x3c\x2d\ +\x1d\x34\x27\x19\x32\x26\x18\x39\x2b\x1b\x32\x25\x18\x34\x27\x19\ +\x2d\x22\x16\x2b\x21\x15\x2c\x20\x15\x31\x24\x17\x35\x28\x19\x35\ +\x27\x19\x31\x24\x17\x31\x24\x17\x36\x29\x1a\x30\x25\x17\x3a\x2c\ +\x1c\x3a\x2c\x1c\x3c\x2d\x1c\x39\x2b\x1b\x38\x2a\x1b\x38\x2a\x1b\ +\x28\x1e\x13\x2d\x22\x16\x22\x1a\x11\x20\x18\x0f\x21\x19\x10\x27\ +\x1d\x12\x26\x1c\x12\x23\x1a\x11\x29\x1f\x14\x28\x1e\x13\x28\x1e\ +\x13\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x1e\x17\x0e\x26\x1c\x12\ +\x28\x1e\x13\x26\x1c\x12\x2e\x23\x16\x2e\x22\x16\x34\x27\x18\x3e\ +\x2f\x1e\x39\x2a\x1b\x35\x28\x1a\x31\x25\x17\x2c\x21\x15\x2e\x22\ +\x17\x31\x25\x18\x30\x24\x17\x36\x2c\x22\x2a\x2c\x30\x39\x3d\x42\ +\x38\x3d\x41\x11\x13\x15\x1a\x1e\x21\x4a\x50\x56\x65\x6e\x74\x5c\ +\x64\x6c\x13\x15\x17\x02\x03\x04\x3d\x43\x46\x66\x71\x75\x58\x62\ +\x67\x35\x3f\x47\x62\x6e\x77\x67\x75\x7d\x68\x75\x7d\x55\x61\x6a\ +\x3d\x47\x51\x5c\x68\x73\x6c\x78\x82\x6c\x77\x80\x6c\x77\x80\x6f\ +\x79\x82\x67\x71\x78\x50\x59\x62\x30\x36\x3d\x16\x18\x1f\x29\x2d\ +\x36\x5f\x68\x70\x74\x80\x86\x77\x83\x8a\x00\x00\x00\x2f\x24\x17\ +\x3e\x2f\x1e\x59\x42\x2c\x4e\x3a\x25\x2a\x20\x14\x16\x11\x0b\x1a\ +\x14\x0c\x2f\x22\x16\x35\x28\x1a\x37\x29\x1b\x35\x27\x1a\x36\x28\ +\x1a\x33\x26\x19\x2f\x23\x17\x22\x19\x10\x1e\x17\x0e\x23\x1a\x10\ +\x21\x19\x10\x29\x1f\x14\x2f\x23\x17\x2d\x21\x15\x2b\x20\x14\x24\ +\x1b\x11\x20\x18\x0f\x23\x1a\x11\x25\x1b\x12\x2a\x1f\x14\x25\x1c\ +\x12\x2b\x20\x14\x28\x1e\x14\x28\x1e\x13\x2b\x20\x15\x28\x1d\x13\ +\x27\x1d\x13\x2d\x21\x16\x31\x25\x17\x3a\x2c\x1c\x33\x26\x18\x35\ +\x27\x19\x31\x25\x17\x34\x27\x19\x33\x26\x19\x2f\x24\x17\x23\x1b\ +\x11\x24\x1b\x11\x25\x1b\x11\x22\x19\x10\x25\x1b\x11\x20\x17\x0e\ +\x1e\x16\x0e\x1e\x17\x0f\x25\x1c\x11\x2b\x20\x15\x2f\x23\x16\x2f\ +\x23\x17\x30\x24\x17\x2d\x22\x16\x2d\x22\x16\x34\x26\x19\x34\x27\ +\x19\x32\x25\x18\x28\x1e\x13\x2f\x23\x17\x32\x25\x18\x36\x28\x1a\ +\x27\x1e\x13\x25\x1c\x12\x28\x1f\x13\x1f\x18\x0e\x20\x18\x0f\x24\ +\x1b\x11\x28\x1e\x13\x2f\x23\x16\x2e\x22\x16\x3a\x2c\x1c\x38\x2a\ +\x1b\x31\x25\x17\x37\x29\x1b\x36\x29\x1a\x3c\x2d\x1d\x40\x30\x1f\ +\x40\x31\x1f\x3d\x2e\x1e\x38\x2b\x1b\x39\x2a\x1b\x30\x23\x17\x2f\ +\x24\x17\x33\x27\x18\x3b\x2c\x1c\x3d\x2e\x1d\x36\x28\x1a\x33\x25\ +\x18\x34\x27\x18\x2d\x22\x16\x2b\x21\x15\x29\x1f\x14\x2a\x20\x14\ +\x2f\x23\x16\x2e\x22\x16\x2f\x23\x16\x2b\x20\x14\x1e\x17\x0e\x2a\ +\x1f\x14\x25\x1c\x12\x26\x1c\x12\x22\x19\x10\x2a\x1f\x14\x24\x1a\ +\x11\x25\x1c\x11\x28\x1f\x14\x2a\x1f\x14\x28\x1e\x13\x27\x1d\x13\ +\x28\x1e\x13\x29\x1f\x14\x26\x1d\x12\x2a\x20\x14\x2d\x22\x15\x2c\ +\x21\x15\x2e\x23\x16\x2f\x23\x16\x33\x27\x18\x43\x32\x20\x35\x28\ +\x1a\x2f\x23\x16\x2a\x1f\x14\x21\x19\x10\x24\x1b\x11\x29\x1f\x13\ +\x27\x1d\x13\x3d\x31\x25\x19\x1b\x1e\x37\x3a\x3e\x30\x34\x38\x01\ +\x03\x03\x0d\x0f\x11\x32\x39\x3c\x68\x74\x7b\x4d\x58\x60\x15\x18\ +\x1b\x00\x00\x00\x58\x60\x65\x69\x76\x7a\x6a\x75\x7b\x46\x51\x58\ +\x3b\x45\x4e\x66\x73\x7a\x68\x76\x7d\x68\x75\x7d\x4f\x5a\x62\x40\ +\x4a\x55\x60\x6b\x74\x6d\x78\x81\x6f\x7a\x82\x70\x7c\x84\x72\x7c\ +\x84\x73\x7d\x84\x72\x7e\x83\x56\x5f\x66\x25\x26\x2f\x26\x2a\x34\ +\x60\x6b\x73\x75\x81\x87\x00\x00\x00\x2f\x24\x17\x32\x26\x17\x5b\ +\x44\x2c\x48\x35\x22\x36\x28\x1a\x20\x17\x0f\x13\x0f\x09\x2d\x22\ +\x17\x35\x28\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ +\x2b\x21\x15\x27\x1c\x12\x22\x1a\x10\x27\x1e\x13\x21\x1a\x0f\x2a\ +\x20\x14\x2c\x22\x15\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x2b\x20\ +\x14\x2e\x22\x16\x2a\x1f\x14\x24\x1b\x11\x19\x13\x0c\x22\x1a\x10\ +\x22\x1a\x10\x26\x1c\x13\x29\x1f\x14\x2c\x21\x15\x2c\x21\x15\x26\ +\x1c\x12\x2b\x20\x15\x2d\x22\x15\x2a\x20\x14\x2e\x22\x16\x2d\x21\ +\x15\x24\x1b\x11\x27\x1d\x13\x25\x1d\x12\x26\x1d\x12\x24\x1c\x11\ +\x23\x1a\x11\x2d\x22\x16\x2c\x21\x15\x29\x1e\x14\x21\x18\x10\x2a\ +\x20\x14\x2a\x20\x14\x2c\x22\x15\x30\x23\x17\x2b\x21\x15\x29\x1f\ +\x14\x28\x1e\x14\x27\x1e\x13\x2c\x21\x15\x30\x24\x17\x38\x2a\x1b\ +\x33\x27\x19\x2f\x23\x16\x2e\x23\x16\x3a\x2b\x1c\x3c\x2c\x1d\x2c\ +\x21\x15\x29\x1f\x14\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ +\x11\x2e\x22\x16\x29\x1f\x13\x3b\x2c\x1d\x3f\x2f\x1f\x30\x24\x17\ +\x36\x28\x1a\x3a\x2c\x1b\x3c\x2d\x1d\x3d\x2e\x1d\x42\x31\x1f\x44\ +\x33\x21\x3e\x2e\x1d\x3b\x2d\x1c\x36\x28\x19\x36\x28\x1a\x36\x28\ +\x1a\x42\x32\x20\x43\x32\x20\x3b\x2d\x1d\x35\x29\x1a\x31\x24\x18\ +\x32\x25\x18\x27\x1d\x13\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x21\ +\x19\x10\x1c\x16\x0d\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x24\x1b\ +\x11\x20\x19\x10\x24\x1b\x11\x24\x1b\x12\x26\x1c\x12\x2a\x20\x14\ +\x2c\x21\x15\x2a\x20\x14\x25\x1c\x12\x25\x1b\x11\x25\x1c\x12\x28\ +\x1e\x13\x2b\x21\x15\x2c\x21\x15\x30\x24\x17\x2d\x21\x15\x31\x25\ +\x18\x2e\x23\x16\x29\x1f\x14\x3a\x2c\x1c\x2d\x23\x15\x29\x1f\x14\ +\x2a\x1f\x14\x26\x1c\x12\x29\x1e\x14\x24\x1b\x12\x2b\x20\x15\x31\ +\x28\x1d\x23\x25\x28\x24\x27\x2a\x30\x34\x36\x00\x00\x00\x13\x15\ +\x17\x35\x3b\x41\x4f\x5c\x62\x2b\x34\x3a\x27\x2d\x31\x01\x02\x02\ +\x42\x4b\x50\x68\x75\x7c\x69\x77\x7d\x66\x73\x7a\x3a\x44\x4d\x46\ +\x51\x5a\x68\x76\x7d\x6a\x78\x7f\x66\x71\x7a\x49\x52\x5c\x45\x4d\ +\x58\x65\x6f\x78\x72\x7d\x86\x71\x7b\x83\x71\x7b\x83\x72\x7d\x83\ +\x73\x7e\x83\x75\x80\x84\x66\x6e\x75\x38\x3b\x45\x31\x35\x3f\x69\ +\x71\x7a\x00\x00\x00\x28\x1d\x12\x2d\x22\x15\x53\x3d\x28\x49\x37\ +\x23\x3a\x2c\x1c\x1c\x15\x0e\x19\x13\x0c\x22\x19\x10\x3b\x2c\x1d\ +\x42\x32\x21\x50\x3c\x28\x36\x29\x1a\x30\x23\x17\x2a\x1f\x15\x26\ +\x1d\x12\x27\x1d\x13\x21\x19\x0f\x1f\x17\x0e\x29\x1f\x14\x2c\x22\ +\x15\x2b\x21\x15\x2d\x22\x16\x28\x1f\x13\x27\x1e\x13\x2c\x21\x15\ +\x28\x1d\x13\x28\x1e\x13\x17\x12\x0c\x1c\x16\x0e\x29\x1e\x13\x25\ +\x1b\x12\x2a\x1f\x14\x29\x1f\x14\x21\x19\x10\x20\x18\x10\x21\x19\ +\x10\x30\x24\x18\x30\x24\x17\x34\x27\x19\x30\x24\x17\x2f\x23\x17\ +\x2d\x22\x15\x22\x1a\x10\x28\x1f\x13\x2d\x22\x16\x2e\x22\x16\x2f\ +\x23\x17\x2e\x22\x16\x36\x28\x1a\x2d\x21\x15\x2e\x23\x16\x35\x27\ +\x1a\x39\x2a\x1b\x35\x28\x19\x28\x1f\x14\x21\x1a\x10\x26\x1c\x12\ +\x29\x1f\x14\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x35\x27\x19\x2f\ +\x23\x17\x2d\x21\x15\x30\x23\x17\x2b\x20\x14\x22\x1a\x10\x2a\x20\ +\x14\x23\x1b\x11\x1c\x16\x0e\x21\x19\x10\x25\x1c\x12\x29\x1f\x14\ +\x33\x26\x19\x34\x27\x19\x2f\x23\x16\x2d\x21\x15\x2d\x22\x15\x35\ +\x28\x1a\x36\x28\x1a\x37\x29\x1b\x38\x2b\x1b\x3c\x2d\x1d\x37\x2a\ +\x1a\x39\x2a\x1c\x39\x2b\x1c\x3b\x2d\x1c\x32\x26\x19\x3a\x2b\x1c\ +\x3c\x2d\x1d\x3a\x2b\x1c\x36\x28\x1a\x2e\x23\x17\x2b\x20\x15\x26\ +\x1d\x12\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0e\x1d\x16\x0e\x20\x18\ +\x0f\x24\x1a\x11\x23\x1a\x10\x26\x1c\x12\x2a\x1f\x14\x28\x1e\x13\ +\x30\x23\x17\x2c\x21\x15\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x28\ +\x1e\x13\x26\x1d\x12\x22\x1a\x11\x21\x19\x10\x24\x1b\x11\x25\x1b\ +\x11\x25\x1c\x11\x30\x24\x17\x2c\x21\x15\x2d\x22\x16\x2b\x20\x15\ +\x29\x1e\x13\x2d\x22\x16\x29\x1f\x14\x2a\x1f\x14\x2d\x22\x16\x22\ +\x1a\x10\x29\x1f\x14\x24\x1b\x11\x2f\x23\x16\x41\x34\x24\x2d\x30\ +\x31\x20\x23\x26\x1d\x20\x21\x03\x03\x03\x20\x21\x24\x48\x50\x55\ +\x1a\x1f\x24\x24\x28\x2c\x2c\x33\x36\x20\x23\x24\x33\x38\x3c\x51\ +\x5b\x62\x69\x76\x7d\x66\x74\x7c\x5f\x6c\x74\x3b\x44\x4e\x50\x5b\ +\x65\x6a\x77\x7f\x6b\x77\x7f\x65\x6f\x77\x47\x4f\x58\x4b\x55\x5f\ +\x6b\x77\x7f\x72\x7c\x83\x71\x7b\x82\x73\x7d\x84\x73\x7e\x84\x75\ +\x80\x84\x76\x80\x84\x6a\x73\x79\x36\x39\x42\x47\x4c\x55\x00\x00\ +\x00\x35\x29\x1b\x2e\x23\x17\x5a\x43\x2c\x53\x3e\x28\x3d\x2e\x1d\ +\x1d\x16\x0d\x1e\x16\x0e\x17\x11\x0b\x24\x1a\x11\x3c\x2c\x1d\x3d\ +\x2e\x1e\x31\x25\x18\x35\x28\x1a\x2b\x20\x15\x2a\x1f\x14\x29\x1f\ +\x14\x20\x18\x10\x1f\x17\x0f\x26\x1c\x13\x25\x1c\x12\x28\x1f\x14\ +\x30\x24\x17\x30\x24\x17\x2e\x22\x16\x2f\x23\x17\x2f\x24\x17\x2b\ +\x20\x15\x2e\x22\x16\x22\x19\x10\x22\x1a\x10\x27\x1d\x12\x31\x25\ +\x18\x21\x19\x0f\x21\x19\x10\x1d\x16\x0e\x26\x1c\x12\x2d\x21\x15\ +\x2d\x22\x16\x31\x26\x18\x33\x26\x18\x30\x23\x17\x2e\x23\x16\x31\ +\x24\x17\x2f\x23\x17\x28\x1e\x13\x29\x1f\x13\x28\x1e\x13\x2d\x22\ +\x16\x32\x25\x18\x30\x24\x17\x2c\x22\x15\x38\x2a\x1b\x30\x25\x17\ +\x2e\x23\x16\x2b\x21\x15\x1c\x15\x0d\x24\x1b\x11\x29\x1e\x14\x2d\ +\x21\x15\x26\x1b\x12\x26\x1c\x12\x2f\x24\x16\x37\x29\x1b\x2e\x22\ +\x16\x24\x1b\x11\x25\x1c\x12\x26\x1c\x12\x2c\x21\x15\x2d\x22\x16\ +\x25\x1c\x12\x21\x19\x10\x23\x1b\x11\x27\x1e\x13\x2b\x21\x15\x30\ +\x23\x16\x3a\x2b\x1c\x33\x27\x19\x2c\x21\x14\x32\x26\x18\x33\x26\ +\x19\x33\x26\x19\x30\x23\x17\x2d\x23\x17\x2d\x22\x16\x35\x28\x19\ +\x3a\x2c\x1c\x3c\x2e\x1d\x35\x28\x1a\x2e\x22\x16\x34\x27\x19\x38\ +\x2a\x1b\x3b\x2c\x1c\x3c\x2d\x1c\x3b\x2c\x1c\x29\x1e\x13\x2a\x1f\ +\x14\x2b\x21\x15\x29\x1f\x14\x1f\x17\x0f\x21\x18\x0f\x28\x1e\x13\ +\x20\x18\x0f\x29\x1e\x14\x2b\x20\x14\x23\x1a\x10\x24\x1a\x11\x2a\ +\x20\x14\x2d\x22\x16\x2c\x21\x15\x30\x23\x16\x34\x27\x18\x2e\x22\ +\x16\x2d\x22\x16\x2a\x1f\x14\x27\x1d\x13\x2a\x1f\x13\x2f\x23\x16\ +\x38\x2a\x1b\x31\x24\x17\x2a\x20\x15\x2a\x20\x15\x2c\x21\x14\x2d\ +\x22\x15\x2a\x1f\x14\x3a\x2b\x1c\x21\x1a\x10\x29\x1f\x14\x2b\x20\ +\x14\x28\x1e\x13\x2c\x21\x15\x43\x34\x25\x2b\x2f\x30\x22\x25\x27\ +\x05\x06\x07\x15\x16\x17\x1f\x22\x23\x58\x61\x65\x19\x1c\x1e\x17\ +\x1a\x1c\x22\x26\x29\x55\x5d\x5f\x5e\x66\x69\x34\x3c\x42\x5a\x66\ +\x6d\x69\x77\x7f\x67\x74\x7c\x59\x64\x6d\x3b\x44\x4f\x57\x62\x6c\ +\x6a\x77\x80\x6c\x78\x7f\x61\x6b\x73\x48\x51\x5b\x54\x5d\x66\x6d\ +\x77\x7e\x72\x7c\x83\x73\x7d\x84\x75\x7e\x86\x76\x80\x86\x77\x81\ +\x85\x75\x7f\x82\x60\x66\x6b\x46\x49\x50\x00\x00\x00\x46\x35\x23\ +\x26\x1d\x13\x4c\x39\x25\x57\x41\x2a\x3e\x2f\x1e\x22\x19\x10\x1b\ +\x15\x0d\x18\x12\x0b\x27\x1d\x13\x3b\x2d\x1d\x43\x32\x20\x38\x2a\ +\x1b\x32\x26\x18\x35\x27\x1a\x30\x24\x17\x24\x1b\x11\x2a\x1f\x14\ +\x24\x1b\x12\x1e\x17\x0f\x1c\x16\x0e\x22\x1a\x10\x2a\x20\x14\x24\ +\x1c\x11\x24\x1b\x11\x29\x1f\x13\x2a\x1f\x14\x26\x1d\x13\x26\x1c\ +\x12\x2b\x20\x15\x1c\x15\x0e\x1f\x17\x0e\x31\x25\x18\x28\x1e\x13\ +\x1d\x16\x0e\x1e\x17\x0e\x21\x19\x10\x25\x1c\x12\x2e\x23\x16\x30\ +\x24\x16\x2d\x22\x15\x2e\x23\x16\x38\x29\x1a\x35\x27\x19\x2e\x23\ +\x16\x22\x1a\x10\x1c\x15\x0d\x20\x18\x10\x2d\x22\x16\x32\x26\x18\ +\x3b\x2d\x1c\x46\x34\x21\x34\x27\x19\x2d\x21\x15\x2c\x21\x15\x2f\ +\x24\x17\x23\x1a\x10\x22\x1a\x11\x28\x1e\x13\x28\x1e\x13\x22\x1a\ +\x10\x20\x19\x0f\x28\x1f\x14\x28\x1e\x13\x35\x28\x1a\x38\x2a\x1c\ +\x26\x1d\x12\x2c\x22\x16\x32\x26\x18\x37\x29\x1a\x2b\x20\x14\x23\ +\x1b\x11\x2c\x21\x15\x2e\x23\x16\x25\x1c\x12\x2a\x1f\x14\x2a\x1f\ +\x14\x2f\x23\x16\x2d\x22\x16\x30\x24\x17\x33\x27\x19\x39\x2b\x1b\ +\x33\x26\x18\x30\x24\x17\x2d\x22\x16\x35\x28\x19\x3d\x2e\x1d\x39\ +\x2a\x1b\x3a\x2b\x1c\x36\x29\x1a\x36\x28\x1a\x39\x2b\x1c\x3a\x2c\ +\x1c\x37\x29\x1a\x37\x29\x1a\x3f\x2f\x1e\x35\x28\x1a\x30\x24\x17\ +\x2b\x20\x15\x22\x1a\x11\x24\x1b\x11\x28\x1e\x13\x23\x1a\x10\x25\ +\x1c\x11\x28\x1e\x13\x2a\x1f\x14\x2c\x22\x15\x36\x29\x1a\x2e\x23\ +\x16\x30\x25\x17\x2c\x21\x15\x31\x24\x17\x35\x27\x19\x31\x24\x18\ +\x2d\x22\x16\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\x22\x16\x26\ +\x1d\x12\x27\x1d\x12\x24\x1c\x11\x2c\x20\x15\x2a\x20\x15\x27\x1e\ +\x13\x24\x1b\x11\x2b\x20\x14\x2d\x21\x16\x2a\x1f\x14\x27\x1e\x13\ +\x2f\x23\x16\x59\x44\x30\x2d\x2e\x2e\x10\x11\x12\x13\x14\x15\x12\ +\x13\x14\x36\x3b\x3d\x59\x63\x66\x1f\x23\x24\x00\x00\x00\x3a\x40\ +\x40\x68\x71\x73\x6b\x76\x7a\x4f\x59\x5e\x36\x41\x48\x66\x74\x7b\ +\x67\x75\x7d\x67\x73\x7b\x55\x5f\x68\x3d\x45\x4f\x5b\x66\x6e\x6c\ +\x78\x7f\x6e\x77\x7f\x62\x6a\x73\x4a\x52\x5b\x59\x61\x69\x70\x7a\ +\x81\x73\x7d\x84\x74\x7e\x85\x75\x7f\x87\x79\x82\x89\x78\x81\x86\ +\x74\x7b\x7e\x5f\x64\x69\x00\x00\x00\x4e\x3b\x28\x39\x2c\x1c\x58\ +\x42\x2a\x5b\x44\x2c\x4e\x3a\x26\x24\x1b\x11\x1f\x18\x0f\x21\x19\ +\x10\x31\x25\x18\x46\x35\x22\x3c\x2c\x1d\x2c\x20\x15\x24\x1b\x11\ +\x28\x1e\x13\x29\x1e\x14\x2a\x20\x14\x22\x1a\x10\x22\x19\x10\x23\ +\x1a\x11\x1d\x16\x0e\x1c\x15\x0d\x1d\x16\x0e\x1a\x14\x0d\x1f\x18\ +\x0f\x24\x1b\x11\x25\x1c\x12\x25\x1b\x12\x27\x1e\x12\x29\x1f\x14\ +\x1e\x17\x0f\x27\x1d\x12\x2a\x20\x14\x2c\x21\x15\x3b\x2c\x1c\x26\ +\x1d\x12\x19\x13\x0c\x1f\x18\x0f\x23\x1b\x11\x2d\x22\x16\x33\x27\ +\x18\x34\x27\x19\x32\x26\x19\x37\x29\x1b\x35\x28\x19\x26\x1d\x12\ +\x1e\x16\x0e\x20\x17\x0f\x2b\x21\x15\x34\x27\x19\x38\x29\x1b\x44\ +\x33\x21\x32\x26\x18\x25\x1c\x12\x30\x24\x17\x2e\x22\x17\x25\x1c\ +\x11\x25\x1c\x11\x23\x1a\x11\x24\x1b\x11\x20\x18\x10\x24\x1b\x11\ +\x26\x1d\x12\x25\x1c\x12\x2c\x22\x16\x28\x1e\x13\x23\x1b\x10\x24\ +\x1b\x11\x2d\x22\x16\x33\x26\x18\x32\x26\x18\x2b\x21\x14\x2f\x23\ +\x16\x3a\x2b\x1c\x3e\x2e\x1e\x30\x23\x16\x34\x27\x18\x32\x25\x18\ +\x29\x1f\x13\x37\x29\x1a\x3b\x2c\x1c\x41\x31\x1f\x3a\x2c\x1c\x33\ +\x26\x19\x37\x29\x1b\x37\x29\x1b\x38\x29\x1b\x2f\x23\x16\x2c\x20\ +\x15\x2d\x22\x15\x30\x24\x17\x35\x28\x1a\x38\x2a\x1b\x3a\x2b\x1c\ +\x37\x29\x1a\x41\x31\x1f\x3d\x2e\x1d\x2a\x1f\x14\x2f\x24\x16\x29\ +\x1f\x14\x2c\x21\x15\x2c\x21\x15\x33\x27\x19\x34\x27\x19\x33\x26\ +\x18\x2d\x22\x16\x27\x1d\x13\x2e\x23\x16\x2f\x23\x17\x33\x26\x19\ +\x3e\x2f\x1e\x37\x2a\x1b\x35\x28\x1a\x38\x29\x1b\x39\x2a\x1b\x35\ +\x28\x19\x2c\x21\x15\x25\x1d\x12\x28\x1e\x13\x23\x1a\x11\x25\x1d\ +\x12\x29\x1f\x13\x29\x1f\x13\x2c\x21\x15\x24\x1b\x12\x24\x1b\x12\ +\x2b\x20\x14\x26\x1d\x12\x2d\x22\x16\x2e\x23\x16\x36\x29\x1a\x4c\ +\x3c\x2a\x2e\x2f\x2d\x06\x06\x07\x10\x11\x12\x14\x15\x17\x41\x47\ +\x4b\x48\x50\x53\x22\x25\x27\x03\x03\x02\x30\x34\x35\x65\x6f\x73\ +\x6a\x77\x7c\x69\x75\x79\x47\x51\x58\x3b\x46\x4e\x69\x76\x7d\x6a\ +\x76\x7e\x65\x6f\x78\x4d\x55\x5e\x3d\x45\x4e\x62\x6b\x75\x70\x79\ +\x81\x6e\x78\x7f\x63\x6b\x72\x4c\x52\x5a\x5f\x67\x6e\x71\x7b\x81\ +\x72\x7d\x83\x74\x7e\x86\x78\x81\x8a\x78\x81\x89\x78\x80\x86\x72\ +\x79\x7f\x00\x00\x00\x41\x31\x21\x37\x29\x1b\x5c\x45\x2d\x61\x48\ +\x2f\x4d\x3a\x25\x2d\x22\x15\x13\x0e\x09\x20\x18\x0f\x31\x25\x18\ +\x39\x2a\x1c\x31\x25\x18\x28\x1f\x13\x1f\x17\x0f\x22\x1a\x10\x29\ +\x20\x14\x25\x1c\x12\x23\x1a\x10\x23\x1a\x11\x27\x1e\x12\x27\x1e\ +\x13\x24\x1b\x11\x21\x19\x0f\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ +\x1f\x17\x0f\x1f\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x19\x13\x0c\x1c\ +\x15\x0d\x1e\x16\x0e\x26\x1c\x12\x24\x1b\x11\x26\x1d\x12\x1f\x17\ +\x0f\x1d\x16\x0e\x28\x1e\x13\x30\x24\x17\x2d\x23\x16\x33\x27\x18\ +\x32\x26\x18\x35\x28\x1a\x2b\x21\x15\x1f\x18\x0f\x21\x19\x0f\x27\ +\x1d\x13\x27\x1d\x13\x2a\x1f\x14\x33\x25\x18\x34\x26\x19\x31\x25\ +\x18\x2a\x1f\x14\x2a\x20\x14\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\ +\x23\x1a\x11\x25\x1c\x12\x29\x1f\x14\x26\x1d\x12\x26\x1d\x12\x2a\ +\x1f\x14\x36\x28\x19\x33\x26\x19\x27\x1e\x13\x24\x1c\x11\x2d\x22\ +\x15\x3f\x2e\x1e\x38\x2a\x1b\x2e\x23\x16\x2f\x23\x17\x3b\x2c\x1d\ +\x3b\x2c\x1c\x36\x28\x1a\x2c\x21\x15\x20\x18\x0f\x27\x1d\x13\x2f\ +\x23\x16\x2f\x23\x17\x38\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x30\x24\ +\x17\x32\x25\x18\x30\x25\x17\x29\x1f\x14\x26\x1d\x12\x29\x1e\x13\ +\x2c\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x28\x19\x3c\x2d\x1d\x3b\ +\x2b\x1c\x3c\x2d\x1d\x3a\x2c\x1c\x31\x25\x18\x3a\x2b\x1c\x43\x32\ +\x20\x4a\x37\x23\x4b\x38\x24\x48\x36\x22\x40\x30\x1f\x36\x28\x1a\ +\x34\x27\x19\x34\x27\x19\x37\x29\x1b\x39\x2a\x1b\x3b\x2d\x1c\x3a\ +\x2c\x1c\x33\x26\x18\x3b\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1c\x36\x29\ +\x19\x2e\x23\x17\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x2b\x20\x15\ +\x26\x1c\x12\x2e\x22\x16\x27\x1d\x13\x2a\x1f\x14\x2b\x20\x15\x28\ +\x1e\x13\x32\x25\x18\x33\x26\x19\x38\x2a\x1b\x3a\x2d\x1f\x2e\x2d\ +\x2a\x00\x00\x00\x0b\x0c\x0c\x31\x34\x35\x32\x39\x3d\x2f\x36\x39\ +\x2f\x33\x35\x13\x15\x16\x1a\x1e\x22\x4b\x54\x5c\x69\x74\x7b\x6a\ +\x76\x7c\x67\x72\x79\x40\x4a\x53\x45\x4f\x58\x5e\x69\x72\x39\x42\ +\x49\x68\x71\x7a\x48\x4e\x58\x49\x51\x5b\x6c\x75\x7f\x72\x7c\x83\ +\x72\x7c\x82\x62\x69\x70\x49\x4e\x55\x5e\x66\x6c\x71\x7b\x82\x77\ +\x81\x89\x78\x81\x8a\x77\x81\x88\x76\x80\x87\x79\x82\x89\x00\x00\ +\x00\x30\x24\x17\x30\x24\x17\x54\x3f\x28\x6f\x53\x36\x59\x42\x2b\ +\x2d\x22\x15\x20\x18\x0f\x29\x1f\x14\x33\x27\x18\x33\x26\x19\x2b\ +\x21\x15\x31\x25\x17\x25\x1c\x11\x22\x1a\x10\x24\x1b\x12\x20\x17\ +\x0f\x1d\x16\x0e\x1e\x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x1d\x16\x0e\ +\x19\x14\x0c\x1d\x17\x0e\x1c\x15\x0e\x22\x19\x10\x26\x1d\x12\x23\ +\x1a\x11\x22\x19\x10\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\x1d\x15\ +\x0e\x23\x1a\x11\x26\x1d\x13\x26\x1c\x12\x22\x1a\x10\x1f\x17\x0f\ +\x23\x1a\x11\x2c\x21\x15\x2a\x1f\x14\x33\x26\x18\x31\x25\x17\x30\ +\x24\x17\x2b\x20\x15\x26\x1d\x12\x22\x1a\x11\x1f\x18\x0f\x2a\x20\ +\x15\x2d\x22\x16\x2e\x23\x16\x34\x27\x19\x30\x24\x17\x2d\x22\x16\ +\x28\x1d\x12\x2a\x20\x14\x2b\x22\x16\x20\x18\x0f\x27\x1e\x13\x2c\ +\x22\x15\x2c\x21\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x36\x28\ +\x1a\x32\x26\x18\x24\x1b\x11\x25\x1c\x11\x2d\x22\x16\x39\x2b\x1b\ +\x39\x2a\x1b\x31\x25\x18\x2f\x24\x17\x38\x2b\x1b\x39\x2b\x1c\x30\ +\x24\x17\x3b\x2c\x1c\x39\x2b\x1c\x2f\x23\x17\x26\x1d\x12\x2b\x20\ +\x14\x34\x27\x19\x33\x26\x19\x37\x29\x1b\x36\x28\x19\x34\x27\x19\ +\x30\x25\x17\x26\x1d\x12\x21\x1a\x10\x24\x1b\x12\x2a\x1f\x14\x34\ +\x27\x19\x3b\x2d\x1d\x3d\x2d\x1d\x3c\x2d\x1c\x3b\x2c\x1d\x38\x2b\ +\x1b\x3a\x2c\x1c\x31\x25\x17\x30\x24\x17\x35\x27\x19\x2d\x23\x16\ +\x34\x27\x19\x3b\x2d\x1d\x3c\x2d\x1c\x3b\x2b\x1c\x38\x2a\x1b\x36\ +\x28\x1a\x31\x25\x17\x2f\x23\x17\x2d\x21\x16\x30\x24\x17\x37\x29\ +\x1b\x3c\x2d\x1d\x3e\x2f\x1f\x3f\x30\x1e\x40\x30\x1f\x33\x26\x19\ +\x32\x26\x18\x30\x25\x17\x36\x29\x1a\x2d\x21\x15\x29\x1e\x14\x2b\ +\x20\x14\x2c\x20\x15\x26\x1c\x12\x2f\x23\x17\x2f\x23\x16\x3d\x2d\ +\x1d\x30\x24\x17\x2b\x21\x15\x27\x20\x15\x28\x25\x21\x0f\x0f\x10\ +\x09\x0a\x0a\x3f\x44\x47\x35\x3b\x3f\x2d\x33\x3a\x2e\x34\x3a\x29\ +\x2f\x33\x54\x5b\x63\x37\x3f\x49\x5b\x66\x6f\x6a\x76\x7d\x68\x73\ +\x7b\x63\x6e\x76\x30\x3a\x44\x24\x2c\x31\x3b\x43\x4a\x72\x7c\x84\ +\x65\x6e\x75\x46\x4d\x57\x4d\x56\x60\x6e\x78\x81\x72\x7d\x84\x70\ +\x79\x80\x5f\x65\x6b\x4d\x52\x5a\x64\x6d\x74\x74\x80\x86\x7a\x84\ +\x8b\x79\x82\x89\x78\x82\x8a\x74\x7e\x85\x00\x00\x00\x37\x29\x1b\ +\x35\x28\x1a\x44\x33\x21\x72\x56\x39\x57\x41\x2a\x26\x1c\x12\x20\ +\x18\x0f\x34\x27\x1a\x48\x36\x22\x4a\x37\x24\x38\x2a\x1b\x33\x26\ +\x18\x26\x1c\x12\x22\x19\x10\x1c\x15\x0d\x1b\x14\x0d\x1d\x15\x0e\ +\x1b\x14\x0d\x1d\x17\x0e\x20\x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x1f\ +\x17\x0f\x1d\x15\x0e\x20\x18\x10\x23\x1a\x11\x23\x1a\x11\x1f\x17\ +\x0e\x1d\x16\x0e\x20\x18\x0f\x1c\x16\x0e\x1d\x16\x0e\x1e\x17\x0f\ +\x2b\x20\x14\x23\x1b\x11\x25\x1c\x12\x24\x1c\x11\x2b\x20\x15\x2a\ +\x20\x14\x2e\x22\x16\x33\x26\x19\x32\x26\x18\x2b\x20\x14\x31\x24\ +\x17\x34\x27\x19\x2b\x20\x15\x29\x1f\x14\x2a\x1f\x14\x29\x1f\x14\ +\x2a\x1f\x14\x36\x28\x1a\x33\x26\x19\x36\x29\x1a\x39\x2a\x1b\x34\ +\x27\x19\x27\x1e\x13\x21\x19\x10\x27\x1d\x13\x2c\x20\x15\x2f\x24\ +\x16\x30\x24\x17\x2f\x24\x17\x30\x24\x17\x28\x1e\x13\x2e\x22\x16\ +\x2a\x1f\x14\x21\x19\x0f\x1f\x18\x0f\x2a\x20\x14\x2f\x23\x16\x27\ +\x1d\x13\x26\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x2d\x21\x15\x2a\x1f\ +\x14\x2a\x1f\x14\x2a\x20\x14\x29\x1f\x13\x27\x1e\x12\x31\x25\x17\ +\x36\x28\x1a\x35\x28\x1a\x3b\x2c\x1c\x42\x32\x1f\x37\x29\x1a\x36\ +\x28\x1b\x31\x25\x18\x35\x27\x19\x33\x26\x19\x30\x24\x17\x31\x25\ +\x18\x2d\x22\x15\x32\x26\x18\x37\x29\x1a\x3f\x2f\x1e\x46\x34\x21\ +\x39\x2b\x1c\x3b\x2c\x1c\x33\x26\x19\x2e\x22\x16\x28\x1f\x14\x32\ +\x25\x18\x36\x28\x1a\x2c\x21\x15\x26\x1d\x12\x2a\x1f\x14\x2d\x22\ +\x15\x2b\x21\x15\x2a\x1f\x14\x2a\x1f\x14\x33\x27\x19\x34\x27\x19\ +\x33\x26\x18\x3a\x2b\x1c\x3d\x2e\x1d\x39\x2b\x1b\x39\x2b\x1c\x3a\ +\x2b\x1c\x39\x2b\x1c\x33\x26\x19\x26\x1d\x13\x2c\x21\x15\x37\x29\ +\x1a\x3a\x2b\x1b\x30\x24\x17\x31\x25\x17\x33\x26\x19\x32\x26\x18\ +\x2b\x20\x14\x2c\x22\x18\x2b\x24\x1c\x22\x24\x25\x08\x09\x09\x46\ +\x4a\x4d\x4a\x50\x53\x31\x35\x3b\x1f\x23\x29\x4e\x56\x5c\x69\x74\ +\x7b\x44\x4b\x53\x21\x28\x2d\x62\x6e\x76\x68\x74\x7b\x69\x74\x7c\ +\x29\x33\x39\x06\x07\x08\x39\x43\x49\x45\x50\x57\x71\x7b\x81\x64\ +\x6d\x74\x44\x4d\x57\x58\x62\x6b\x71\x7c\x84\x71\x7c\x83\x73\x7c\ +\x83\x62\x69\x70\x4d\x51\x59\x67\x71\x78\x76\x81\x88\x7a\x84\x8b\ +\x79\x83\x8a\x6c\x76\x7d\x00\x00\x00\x20\x19\x10\x30\x24\x17\x43\ +\x32\x20\x70\x54\x37\x58\x41\x2b\x2b\x21\x14\x1e\x16\x0e\x34\x27\ +\x19\x47\x35\x22\x5b\x44\x2c\x47\x35\x22\x3d\x2d\x1d\x25\x1c\x12\ +\x22\x1a\x10\x20\x18\x10\x1d\x16\x0e\x1a\x13\x0c\x19\x12\x0c\x1e\ +\x16\x0e\x23\x1a\x10\x23\x1a\x11\x24\x1b\x12\x27\x1e\x13\x23\x1b\ +\x11\x22\x1a\x10\x25\x1c\x12\x2f\x24\x17\x2e\x22\x16\x24\x1c\x11\ +\x20\x18\x0f\x1c\x16\x0e\x1f\x17\x0f\x22\x19\x11\x24\x1b\x12\x1b\ +\x14\x0d\x1e\x17\x0f\x25\x1b\x12\x22\x19\x10\x22\x1a\x11\x26\x1d\ +\x12\x2f\x22\x16\x30\x24\x17\x2a\x1f\x14\x29\x1f\x14\x29\x1f\x14\ +\x27\x1d\x12\x27\x1e\x13\x29\x1e\x13\x27\x1d\x13\x26\x1d\x12\x28\ +\x1e\x12\x31\x25\x17\x3f\x2f\x1e\x33\x26\x19\x30\x23\x16\x25\x1c\ +\x12\x28\x1f\x13\x2e\x22\x16\x36\x28\x1a\x38\x2a\x1b\x33\x26\x18\ +\x33\x26\x18\x32\x26\x18\x2c\x21\x14\x27\x1d\x13\x25\x1c\x11\x23\ +\x1a\x10\x21\x19\x10\x28\x1e\x13\x2f\x23\x17\x33\x26\x18\x2b\x20\ +\x15\x2b\x20\x14\x26\x1d\x13\x26\x1d\x12\x2b\x20\x14\x34\x27\x19\ +\x3a\x2b\x1b\x34\x28\x1a\x35\x28\x19\x36\x29\x1a\x36\x29\x1a\x39\ +\x2b\x1b\x36\x29\x1a\x37\x2a\x1a\x3a\x2c\x1c\x3b\x2c\x1d\x35\x28\ +\x1a\x2b\x21\x15\x2e\x23\x16\x2d\x23\x15\x31\x24\x17\x2d\x22\x16\ +\x2c\x21\x15\x31\x24\x17\x34\x27\x19\x33\x27\x18\x2f\x24\x17\x2b\ +\x21\x15\x31\x25\x18\x39\x2a\x1b\x37\x29\x1b\x30\x24\x17\x38\x2b\ +\x1b\x29\x20\x14\x26\x1d\x12\x24\x1a\x11\x24\x1b\x12\x29\x1f\x14\ +\x2d\x22\x16\x2e\x22\x16\x30\x25\x18\x34\x27\x19\x33\x26\x18\x37\ +\x29\x1a\x3c\x2d\x1d\x38\x2a\x1b\x32\x26\x18\x2f\x23\x16\x31\x24\ +\x18\x36\x29\x1a\x29\x1e\x13\x29\x1f\x14\x2e\x22\x16\x24\x1b\x12\ +\x2c\x21\x15\x29\x1f\x13\x26\x1c\x12\x23\x1a\x10\x24\x1b\x11\x27\ +\x1e\x14\x3c\x33\x29\x16\x17\x19\x2b\x2e\x30\x44\x49\x4d\x4b\x52\ +\x57\x44\x49\x4f\x35\x39\x3e\x52\x5c\x63\x69\x77\x7e\x27\x2f\x34\ +\x38\x40\x47\x32\x3d\x44\x65\x74\x7e\x66\x75\x7d\x0b\x10\x14\x05\ +\x07\x07\x15\x1a\x1d\x41\x46\x4b\x72\x7b\x81\x70\x79\x80\x64\x6d\ +\x75\x45\x4d\x58\x5d\x66\x70\x73\x7d\x85\x75\x7f\x86\x75\x7d\x83\ +\x61\x66\x6d\x4d\x51\x59\x6c\x76\x7c\x78\x83\x88\x78\x83\x87\x75\ +\x80\x86\x00\x00\x00\x32\x26\x19\x43\x32\x21\x4b\x38\x24\x74\x56\ +\x39\x58\x42\x2b\x3a\x2b\x1c\x21\x18\x0f\x2f\x23\x17\x3e\x2f\x1e\ +\x4c\x38\x24\x40\x30\x1f\x45\x33\x21\x38\x29\x1b\x25\x1c\x12\x25\ +\x1b\x11\x22\x19\x10\x1b\x14\x0d\x1b\x15\x0d\x22\x1a\x10\x2b\x20\ +\x14\x29\x1e\x14\x2b\x21\x15\x30\x24\x17\x2a\x1f\x14\x28\x1e\x13\ +\x29\x1e\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1c\x11\x1e\x17\x0e\x20\ +\x19\x0f\x20\x17\x0f\x1f\x18\x0f\x1e\x17\x0f\x1f\x17\x0e\x1c\x15\ +\x0e\x1e\x16\x0f\x1e\x17\x0e\x1f\x17\x0f\x24\x1b\x11\x28\x1e\x13\ +\x29\x1e\x14\x25\x1c\x12\x22\x19\x10\x20\x18\x10\x24\x1c\x12\x25\ +\x1c\x12\x25\x1c\x12\x22\x19\x10\x21\x18\x10\x2b\x20\x15\x22\x1a\ +\x10\x24\x1b\x11\x27\x1e\x13\x23\x1a\x10\x29\x1e\x14\x2b\x20\x15\ +\x26\x1d\x12\x25\x1c\x11\x2f\x23\x17\x38\x2a\x1b\x3e\x2f\x1e\x2b\ +\x21\x15\x28\x1e\x13\x25\x1b\x11\x21\x18\x0f\x23\x1b\x11\x26\x1c\ +\x12\x29\x1e\x13\x29\x1f\x13\x32\x25\x17\x35\x27\x1a\x2d\x21\x16\ +\x23\x1a\x10\x25\x1c\x12\x2a\x1f\x14\x35\x28\x19\x2f\x23\x16\x2d\ +\x22\x16\x29\x20\x14\x2b\x20\x14\x29\x1f\x14\x28\x1f\x13\x2a\x1f\ +\x14\x2a\x20\x14\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x2d\x22\x15\ +\x28\x1e\x13\x2b\x20\x15\x2f\x23\x17\x2e\x23\x16\x27\x1d\x13\x29\ +\x1f\x14\x30\x23\x17\x2a\x1f\x14\x2e\x23\x16\x2b\x20\x14\x2d\x21\ +\x16\x3b\x2d\x1d\x3a\x2c\x1d\x33\x26\x19\x2a\x20\x14\x29\x1e\x14\ +\x28\x1e\x14\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x2b\x20\x14\x2a\ +\x1f\x14\x2d\x22\x16\x31\x25\x18\x2f\x24\x17\x35\x28\x1a\x39\x2b\ +\x1b\x32\x26\x18\x30\x24\x17\x2b\x21\x15\x2e\x23\x16\x31\x25\x17\ +\x31\x25\x17\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x27\x1d\x13\x2a\ +\x20\x14\x26\x1c\x12\x26\x1d\x12\x29\x1e\x14\x28\x1e\x14\x30\x2a\ +\x23\x17\x18\x1a\x3a\x3f\x42\x42\x48\x4d\x4d\x53\x58\x55\x5d\x62\ +\x3c\x43\x48\x4a\x53\x57\x26\x2c\x30\x23\x28\x2b\x37\x3e\x42\x24\ +\x2c\x32\x3f\x4c\x55\x69\x78\x7f\x0c\x11\x14\x02\x01\x02\x0a\x0c\ +\x0e\x3a\x3e\x45\x6b\x73\x7a\x6e\x79\x7f\x72\x7b\x81\x5d\x63\x6b\ +\x46\x4d\x58\x64\x6c\x76\x72\x7d\x86\x75\x7f\x88\x74\x7d\x83\x60\ +\x66\x6d\x52\x56\x5d\x6e\x77\x7b\x77\x83\x86\x79\x84\x88\x00\x00\ +\x00\x2d\x22\x16\x3d\x2d\x1d\x49\x37\x23\x74\x57\x39\x63\x4a\x30\ +\x3d\x2d\x1d\x25\x1c\x11\x2b\x20\x14\x2f\x24\x17\x41\x30\x1f\x38\ +\x2b\x1b\x3e\x2e\x1e\x35\x27\x1a\x29\x1f\x14\x29\x1f\x13\x27\x1e\ +\x13\x2a\x1f\x14\x23\x1a\x11\x27\x1e\x13\x29\x1f\x14\x29\x1f\x13\ +\x29\x1f\x13\x28\x1e\x13\x2a\x20\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ +\x1f\x14\x2b\x20\x15\x25\x1c\x12\x22\x1a\x10\x28\x1d\x13\x2a\x1f\ +\x14\x25\x1c\x11\x25\x1c\x12\x24\x1b\x11\x22\x1a\x10\x27\x1d\x13\ +\x27\x1d\x13\x23\x1a\x11\x26\x1d\x12\x25\x1c\x12\x26\x1c\x12\x22\ +\x1a\x10\x20\x18\x0f\x24\x1b\x11\x26\x1d\x12\x2c\x20\x15\x29\x1e\ +\x14\x29\x1f\x14\x21\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x21\x18\x0f\ +\x24\x1b\x11\x21\x19\x10\x1f\x17\x0f\x23\x1b\x11\x1d\x16\x0e\x24\ +\x1b\x11\x24\x1b\x12\x32\x25\x18\x37\x29\x1b\x2d\x22\x15\x27\x1e\ +\x13\x25\x1c\x12\x1c\x15\x0d\x21\x19\x10\x27\x1e\x13\x26\x1c\x12\ +\x24\x1b\x11\x2f\x24\x17\x35\x28\x19\x38\x2a\x1b\x33\x27\x19\x2f\ +\x23\x16\x28\x1e\x13\x2b\x20\x15\x2f\x24\x17\x2c\x21\x15\x24\x1b\ +\x11\x28\x1f\x13\x24\x1b\x11\x29\x1f\x14\x2c\x21\x15\x2a\x20\x14\ +\x35\x28\x19\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\x18\x2f\x24\x17\x2f\ +\x23\x16\x2b\x21\x15\x2f\x24\x17\x2a\x1f\x14\x2b\x20\x15\x2b\x20\ +\x15\x2d\x22\x15\x29\x1f\x14\x29\x1f\x14\x2c\x21\x15\x2c\x21\x14\ +\x35\x28\x19\x3c\x2d\x1e\x33\x25\x18\x1f\x18\x0f\x21\x18\x10\x25\ +\x1c\x12\x23\x1a\x11\x23\x1a\x11\x27\x1e\x12\x26\x1d\x12\x2d\x22\ +\x16\x2c\x21\x15\x27\x1e\x12\x2c\x21\x15\x34\x27\x19\x36\x28\x1a\ +\x35\x27\x1a\x31\x25\x18\x2d\x22\x16\x2b\x20\x14\x28\x1e\x13\x2f\ +\x23\x16\x2e\x22\x16\x31\x25\x17\x26\x1c\x12\x28\x1e\x13\x27\x1e\ +\x12\x25\x1c\x12\x2a\x20\x14\x26\x1d\x13\x28\x23\x1e\x27\x2a\x2d\ +\x36\x3a\x3e\x41\x47\x4b\x4c\x52\x57\x53\x5b\x61\x5d\x66\x6b\x32\ +\x39\x40\x00\x01\x02\x35\x38\x3c\x17\x1c\x1f\x67\x6f\x76\x34\x3f\ +\x47\x4b\x55\x5b\x06\x0a\x0b\x01\x01\x01\x26\x2a\x2c\x50\x59\x5e\ +\x41\x49\x51\x6d\x78\x7f\x73\x7e\x84\x73\x7c\x83\x5a\x62\x6a\x43\ +\x49\x53\x63\x6c\x76\x74\x7d\x87\x78\x81\x8b\x76\x7e\x84\x61\x65\ +\x6c\x4f\x56\x5b\x6b\x75\x79\x79\x84\x87\x00\x00\x00\x22\x1a\x11\ +\x3d\x2e\x1d\x45\x34\x21\x73\x57\x39\x62\x49\x30\x2f\x23\x17\x23\ +\x1a\x11\x20\x18\x0f\x20\x18\x0f\x3a\x2b\x1c\x32\x26\x18\x33\x26\ +\x19\x2f\x23\x16\x2c\x21\x15\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\ +\x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x27\ +\x1e\x13\x23\x1b\x11\x23\x1b\x11\x22\x1a\x10\x25\x1c\x12\x23\x1b\ +\x11\x22\x19\x10\x29\x1e\x14\x27\x1e\x13\x30\x24\x18\x2f\x23\x16\ +\x2a\x20\x14\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x23\x1b\x11\x1e\ +\x16\x0e\x20\x18\x0f\x20\x18\x0f\x21\x19\x0f\x22\x19\x10\x1e\x17\ +\x0f\x28\x1e\x13\x2c\x21\x15\x2e\x23\x16\x2e\x22\x15\x30\x24\x17\ +\x25\x1c\x12\x1c\x15\x0d\x1a\x13\x0c\x22\x1a\x10\x1f\x18\x0e\x22\ +\x19\x10\x21\x18\x10\x2b\x21\x15\x27\x1e\x13\x24\x1b\x11\x22\x19\ +\x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x15\x2a\x20\x14\x2a\x1f\x14\ +\x1f\x17\x0f\x26\x1d\x12\x30\x24\x17\x2d\x22\x15\x24\x1b\x11\x29\ +\x1f\x14\x32\x26\x18\x3e\x2f\x1e\x3a\x2c\x1c\x30\x24\x17\x26\x1c\ +\x13\x23\x1a\x11\x30\x24\x17\x30\x25\x17\x23\x1b\x11\x29\x1f\x13\ +\x2e\x22\x16\x28\x1e\x13\x29\x1e\x14\x29\x1f\x14\x33\x26\x18\x38\ +\x2a\x1b\x3b\x2d\x1d\x37\x2a\x1b\x30\x24\x17\x2e\x22\x16\x2f\x23\ +\x17\x30\x24\x17\x24\x1c\x11\x21\x19\x10\x28\x1e\x13\x27\x1e\x13\ +\x2b\x21\x14\x29\x1e\x14\x2d\x21\x15\x31\x25\x18\x37\x2a\x1b\x3a\ +\x2b\x1c\x2c\x20\x15\x24\x1b\x11\x1f\x17\x0f\x24\x1b\x11\x24\x1b\ +\x11\x20\x18\x10\x24\x1b\x11\x27\x1c\x12\x2a\x1f\x14\x26\x1d\x12\ +\x26\x1c\x12\x28\x1e\x13\x2b\x20\x15\x2a\x1f\x14\x2b\x21\x15\x2b\ +\x21\x15\x32\x26\x18\x34\x27\x19\x2a\x20\x14\x27\x1d\x12\x28\x1d\ +\x13\x22\x1a\x10\x1c\x16\x0e\x1c\x16\x0e\x21\x1a\x10\x28\x1e\x13\ +\x31\x26\x18\x2c\x21\x15\x39\x30\x26\x2d\x30\x33\x36\x3a\x3e\x40\ +\x45\x49\x4a\x51\x56\x53\x5c\x60\x5a\x64\x6a\x58\x61\x68\x14\x16\ +\x17\x02\x03\x04\x2a\x2f\x33\x66\x72\x78\x62\x6d\x74\x0f\x13\x17\ +\x22\x23\x26\x07\x07\x08\x25\x28\x2a\x70\x78\x7e\x45\x4d\x54\x4b\ +\x53\x5b\x6f\x79\x80\x72\x7d\x83\x73\x7d\x83\x57\x5f\x68\x48\x4e\ +\x57\x6a\x71\x7b\x76\x7f\x87\x7a\x82\x89\x76\x7c\x81\x5d\x62\x67\ +\x52\x57\x5d\x6e\x76\x7a\x00\x00\x00\x19\x13\x0c\x34\x27\x19\x3d\ +\x2e\x1d\x74\x57\x39\x5b\x44\x2d\x39\x2a\x1c\x22\x19\x10\x18\x12\ +\x0c\x23\x1a\x11\x34\x27\x19\x37\x29\x1a\x37\x28\x1a\x2f\x23\x17\ +\x29\x1f\x14\x2c\x21\x15\x29\x1e\x14\x29\x1f\x13\x2b\x20\x14\x2b\ +\x20\x15\x33\x26\x19\x35\x28\x1a\x30\x24\x17\x2d\x22\x15\x28\x1e\ +\x13\x23\x1b\x11\x23\x1b\x11\x25\x1c\x12\x1e\x16\x0d\x1e\x17\x0e\ +\x1f\x17\x0f\x23\x1a\x11\x25\x1d\x12\x2d\x21\x16\x2c\x22\x15\x28\ +\x1e\x13\x24\x1b\x11\x29\x1f\x13\x27\x1d\x12\x23\x1a\x11\x25\x1c\ +\x12\x2b\x20\x15\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2f\x23\x16\ +\x34\x27\x19\x31\x25\x18\x31\x25\x18\x36\x28\x1a\x2d\x21\x15\x26\ +\x1d\x12\x23\x19\x10\x23\x1a\x11\x26\x1d\x12\x24\x1b\x11\x26\x1c\ +\x12\x30\x23\x17\x2e\x23\x17\x30\x24\x17\x26\x1c\x12\x29\x1f\x14\ +\x2b\x20\x15\x2c\x21\x15\x2e\x23\x16\x30\x24\x17\x24\x1b\x11\x22\ +\x1a\x10\x2a\x1f\x14\x21\x19\x10\x1d\x16\x0e\x22\x1a\x10\x2c\x21\ +\x15\x31\x25\x17\x35\x28\x1a\x32\x25\x18\x29\x1e\x14\x2a\x1f\x14\ +\x33\x26\x19\x2a\x20\x14\x2a\x20\x14\x33\x27\x18\x2e\x22\x16\x2c\ +\x21\x15\x2f\x23\x16\x2d\x22\x15\x32\x26\x18\x32\x26\x18\x36\x29\ +\x1a\x38\x2a\x1b\x38\x2a\x1b\x3a\x2b\x1b\x3c\x2c\x1c\x33\x26\x19\ +\x2a\x20\x14\x24\x1c\x11\x2a\x20\x14\x2b\x20\x15\x25\x1b\x12\x27\ +\x1d\x13\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x36\x28\x1a\x34\x27\ +\x19\x2f\x23\x17\x25\x1c\x12\x2c\x21\x15\x30\x24\x17\x28\x1e\x13\ +\x26\x1c\x12\x21\x18\x0f\x20\x18\x0f\x22\x1a\x11\x24\x1b\x11\x27\ +\x1d\x12\x2f\x23\x16\x31\x24\x17\x33\x26\x18\x33\x26\x19\x3f\x2f\ +\x1e\x41\x31\x1f\x35\x28\x1a\x2a\x20\x14\x28\x1e\x13\x23\x1b\x11\ +\x1c\x15\x0d\x1e\x16\x0e\x23\x1b\x12\x1c\x16\x0d\x1d\x16\x0e\x23\ +\x1b\x11\x48\x3a\x2b\x2c\x2f\x32\x35\x3a\x3d\x40\x45\x4a\x4a\x52\ +\x56\x53\x5c\x61\x5b\x65\x6c\x4e\x57\x5d\x16\x18\x1a\x00\x00\x00\ +\x47\x4d\x4f\x6b\x78\x7d\x34\x3d\x43\x04\x05\x07\x1e\x21\x26\x07\ +\x07\x08\x3c\x40\x45\x78\x82\x89\x67\x6f\x77\x44\x4a\x54\x57\x5e\ +\x67\x70\x7b\x80\x72\x7c\x83\x76\x80\x86\x59\x60\x68\x4b\x52\x5b\ +\x6f\x77\x7f\x78\x81\x88\x77\x7f\x86\x76\x7d\x82\x5f\x64\x68\x51\ +\x57\x5b\x00\x00\x00\x10\x0b\x07\x35\x27\x19\x3d\x2e\x1d\x76\x59\ +\x3a\x58\x42\x2b\x3f\x2f\x1e\x21\x19\x0f\x1b\x15\x0d\x24\x1c\x12\ +\x38\x2a\x1b\x48\x36\x23\x42\x31\x1f\x32\x26\x18\x2f\x23\x16\x32\ +\x24\x18\x2c\x21\x15\x24\x1b\x11\x26\x1c\x12\x28\x1e\x13\x26\x1c\ +\x12\x2c\x21\x15\x31\x25\x18\x2d\x22\x16\x24\x1c\x11\x1f\x18\x0f\ +\x22\x1a\x10\x25\x1c\x12\x1e\x16\x0e\x1f\x17\x0e\x1c\x15\x0e\x21\ +\x19\x10\x25\x1c\x12\x27\x1d\x12\x2f\x23\x17\x32\x26\x18\x28\x1e\ +\x13\x28\x1e\x13\x2a\x1f\x14\x29\x1f\x14\x22\x1a\x10\x29\x1e\x13\ +\x2a\x1f\x14\x2b\x20\x15\x2f\x23\x16\x31\x25\x17\x2e\x22\x16\x27\ +\x1d\x13\x2b\x21\x15\x2b\x21\x14\x30\x23\x16\x2f\x23\x16\x32\x25\ +\x18\x28\x1e\x13\x24\x1b\x11\x27\x1d\x12\x27\x1d\x12\x32\x25\x18\ +\x34\x26\x19\x36\x28\x1a\x32\x25\x18\x2b\x20\x14\x2d\x22\x15\x2c\ +\x21\x15\x2e\x23\x15\x33\x26\x18\x2e\x23\x16\x2b\x21\x14\x2c\x21\ +\x15\x21\x19\x10\x1f\x18\x0f\x1e\x17\x0e\x26\x1c\x12\x2e\x23\x16\ +\x30\x24\x17\x31\x24\x17\x2b\x20\x15\x33\x26\x18\x2c\x21\x15\x2c\ +\x21\x16\x3a\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x2f\x23\x17\x30\x24\ +\x17\x31\x24\x17\x3a\x2c\x1c\x34\x27\x19\x38\x2a\x1b\x36\x28\x1a\ +\x34\x27\x19\x38\x2a\x1b\x39\x2a\x1c\x2e\x22\x16\x25\x1c\x11\x28\ +\x1e\x13\x2d\x22\x16\x29\x1e\x14\x20\x18\x10\x24\x1c\x11\x2a\x1f\ +\x14\x24\x1b\x11\x2b\x21\x14\x30\x24\x18\x35\x28\x1a\x2f\x23\x16\ +\x27\x1e\x12\x26\x1c\x12\x2f\x23\x17\x31\x25\x17\x2d\x21\x15\x2a\ +\x20\x14\x23\x1b\x11\x24\x1b\x11\x2a\x1f\x14\x29\x1f\x14\x2e\x23\ +\x16\x34\x27\x19\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1c\x44\x33\x21\ +\x38\x2a\x1b\x34\x27\x19\x2d\x21\x15\x20\x18\x0f\x1e\x16\x0e\x1f\ +\x17\x0f\x1b\x15\x0d\x1a\x14\x0c\x17\x12\x0b\x29\x1f\x14\x4c\x3c\ +\x2b\x2b\x2f\x32\x34\x38\x3c\x3e\x43\x47\x48\x4f\x53\x52\x5a\x5f\ +\x54\x5e\x63\x29\x30\x34\x32\x3a\x3e\x08\x08\x09\x27\x2d\x2f\x69\ +\x76\x7a\x17\x1e\x20\x09\x0a\x0b\x2e\x32\x37\x19\x1b\x20\x61\x6b\ +\x74\x73\x7d\x84\x71\x7b\x82\x64\x6c\x75\x48\x4e\x5a\x5c\x64\x6d\ +\x73\x7c\x83\x74\x7e\x85\x73\x7c\x83\x54\x5b\x63\x51\x56\x5e\x6d\ +\x75\x7c\x79\x81\x86\x79\x81\x86\x76\x7e\x81\x61\x66\x6a\x00\x00\ +\x00\x0b\x08\x05\x36\x28\x1a\x3b\x2c\x1c\x69\x4f\x33\x64\x4a\x30\ +\x46\x34\x22\x1a\x14\x0c\x22\x19\x10\x29\x1f\x13\x3f\x2f\x1f\x54\ +\x3f\x29\x36\x29\x1b\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x29\x1f\ +\x14\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\x23\x1a\x10\x23\x1a\x11\ +\x2c\x21\x15\x2a\x1f\x14\x20\x18\x0f\x1d\x16\x0e\x20\x19\x10\x21\ +\x19\x10\x1f\x17\x0f\x1c\x15\x0d\x1f\x17\x0f\x1f\x18\x0f\x28\x1e\ +\x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\x2c\x21\x15\x23\x1b\x11\ +\x25\x1c\x12\x2b\x20\x14\x20\x18\x0f\x22\x19\x10\x29\x1e\x14\x2a\ +\x1f\x14\x29\x1f\x13\x29\x1f\x14\x26\x1c\x12\x20\x18\x0f\x25\x1c\ +\x12\x29\x1f\x14\x2c\x21\x15\x2b\x21\x15\x34\x27\x19\x2c\x21\x15\ +\x23\x19\x10\x1f\x17\x0f\x1f\x17\x0f\x25\x1c\x11\x2e\x22\x15\x2a\ +\x1f\x14\x2e\x22\x16\x2c\x20\x14\x2a\x20\x14\x29\x1f\x13\x2b\x20\ +\x14\x2d\x22\x16\x2f\x23\x17\x38\x29\x1a\x38\x2a\x1b\x2d\x21\x16\ +\x27\x1e\x13\x23\x1a\x10\x26\x1d\x12\x2c\x20\x15\x26\x1c\x12\x2a\ +\x1f\x14\x2f\x23\x17\x36\x29\x1a\x28\x1e\x13\x2c\x21\x15\x38\x2a\ +\x1a\x41\x30\x1f\x38\x2a\x1b\x30\x24\x17\x2f\x23\x17\x2c\x21\x15\ +\x35\x28\x1a\x2d\x22\x16\x31\x24\x18\x35\x27\x1a\x31\x25\x18\x31\ +\x24\x18\x2d\x22\x16\x2d\x22\x16\x2a\x20\x14\x24\x1b\x12\x1e\x17\ +\x0f\x1d\x16\x0e\x1e\x16\x0e\x1c\x15\x0e\x1e\x16\x0e\x26\x1d\x12\ +\x27\x1d\x12\x31\x25\x18\x37\x2a\x1a\x30\x24\x17\x29\x1f\x14\x23\ +\x1a\x10\x2b\x20\x15\x2a\x20\x14\x2f\x23\x16\x2f\x24\x17\x29\x1f\ +\x13\x24\x1b\x11\x28\x1e\x13\x27\x1e\x13\x2c\x21\x15\x31\x25\x18\ +\x2f\x24\x17\x2f\x23\x16\x34\x27\x19\x3a\x2b\x1c\x35\x27\x19\x35\ +\x28\x1a\x36\x28\x1a\x25\x1c\x12\x28\x1e\x13\x24\x1b\x12\x22\x1a\ +\x10\x22\x19\x10\x1e\x17\x0e\x29\x1f\x14\x42\x34\x26\x2b\x2e\x32\ +\x34\x38\x3c\x3d\x43\x47\x47\x4e\x52\x55\x5e\x62\x2b\x31\x34\x19\ +\x1b\x1d\x34\x3b\x3c\x1b\x1d\x20\x27\x2c\x2f\x4d\x58\x5b\x16\x1b\ +\x1c\x00\x00\x00\x0f\x11\x14\x4a\x52\x5b\x43\x4d\x57\x6b\x76\x7d\ +\x72\x7d\x84\x72\x7c\x84\x63\x6a\x73\x49\x4e\x58\x5f\x65\x6e\x75\ +\x7e\x84\x74\x7e\x85\x78\x7f\x86\x5b\x62\x68\x52\x58\x60\x71\x79\ +\x7e\x7b\x84\x89\x79\x83\x87\x76\x7e\x82\x00\x00\x00\x0c\x09\x06\ +\x41\x31\x21\x38\x2a\x1b\x62\x4a\x30\x64\x4b\x30\x4c\x39\x25\x1d\ +\x16\x0e\x1f\x17\x0f\x27\x1d\x12\x30\x25\x17\x3e\x2f\x1e\x26\x1c\ +\x12\x1d\x15\x0d\x20\x17\x0e\x1f\x17\x0f\x21\x19\x10\x23\x1a\x11\ +\x2b\x21\x15\x31\x25\x18\x2e\x23\x16\x2b\x20\x15\x2b\x20\x14\x29\ +\x1f\x14\x24\x1b\x11\x1f\x18\x0f\x22\x19\x11\x1f\x17\x0f\x1f\x17\ +\x0f\x22\x19\x10\x21\x19\x0f\x21\x19\x10\x29\x1e\x13\x2a\x20\x14\ +\x2c\x21\x15\x30\x24\x17\x28\x1e\x13\x26\x1d\x12\x21\x19\x10\x28\ +\x1e\x14\x26\x1d\x12\x25\x1c\x11\x24\x1b\x11\x25\x1c\x12\x22\x19\ +\x10\x1d\x16\x0e\x21\x19\x10\x24\x1b\x11\x23\x1a\x11\x28\x1e\x13\ +\x2b\x21\x15\x2d\x22\x16\x31\x25\x18\x2f\x22\x16\x2c\x21\x15\x22\ +\x1a\x10\x1b\x15\x0d\x25\x1b\x11\x2e\x22\x15\x2a\x20\x14\x2c\x21\ +\x16\x2c\x21\x15\x2a\x20\x14\x24\x1b\x11\x22\x1a\x10\x24\x1c\x11\ +\x26\x1d\x12\x2a\x1f\x14\x31\x25\x18\x2d\x21\x15\x25\x1c\x12\x24\ +\x1b\x11\x26\x1d\x12\x24\x1a\x11\x25\x1b\x11\x27\x1d\x13\x32\x25\ +\x18\x2c\x21\x15\x20\x18\x0f\x29\x1f\x13\x34\x28\x19\x3a\x2c\x1b\ +\x39\x2b\x1b\x33\x27\x19\x32\x26\x18\x24\x1b\x12\x23\x1a\x11\x28\ +\x1e\x13\x28\x1e\x13\x2d\x22\x15\x2c\x21\x15\x2b\x20\x15\x27\x1e\ +\x12\x2c\x21\x15\x29\x1f\x14\x23\x1b\x11\x25\x1c\x12\x2d\x21\x16\ +\x22\x19\x10\x24\x1b\x11\x20\x18\x10\x27\x1d\x12\x27\x1e\x13\x37\ +\x29\x1a\x3c\x2e\x1d\x2d\x22\x16\x2d\x22\x16\x2c\x21\x15\x2b\x20\ +\x15\x2b\x20\x14\x2d\x22\x16\x29\x1f\x14\x27\x1e\x13\x25\x1c\x12\ +\x28\x1e\x13\x2c\x21\x15\x2d\x22\x16\x2e\x22\x16\x2e\x22\x16\x2b\ +\x21\x15\x2d\x22\x15\x34\x27\x19\x37\x29\x1a\x36\x28\x1a\x35\x28\ +\x19\x2a\x1f\x14\x2b\x20\x15\x2e\x22\x16\x27\x1d\x13\x24\x1b\x11\ +\x23\x1a\x11\x2c\x21\x15\x48\x38\x28\x2e\x30\x31\x33\x37\x3b\x3c\ +\x42\x45\x47\x4e\x51\x53\x5b\x5f\x21\x24\x26\x16\x17\x18\x1d\x1f\ +\x21\x4e\x57\x5d\x69\x74\x79\x32\x3a\x3e\x0b\x0c\x0e\x06\x05\x06\ +\x17\x1a\x1d\x72\x7c\x84\x4a\x54\x5c\x4b\x56\x5e\x6e\x79\x80\x73\ +\x7d\x84\x75\x7e\x85\x5e\x65\x6d\x46\x4b\x54\x67\x6f\x77\x76\x80\ +\x87\x7a\x82\x88\x77\x7f\x83\x5d\x63\x6a\x57\x5e\x65\x71\x78\x7e\ +\x7a\x83\x88\x7c\x86\x89\x00\x00\x00\x05\x03\x02\x40\x30\x20\x39\ +\x2b\x1c\x5f\x48\x2f\x5e\x46\x2e\x4e\x3b\x26\x1a\x14\x0c\x1e\x17\ +\x0f\x24\x1a\x11\x2c\x21\x15\x33\x27\x18\x24\x1b\x11\x1e\x16\x0e\ +\x1e\x16\x0f\x1d\x16\x0e\x1d\x16\x0e\x1f\x18\x0f\x27\x1d\x13\x2d\ +\x22\x16\x34\x27\x1a\x3b\x2c\x1c\x38\x2a\x1b\x32\x26\x19\x2b\x20\ +\x15\x28\x1e\x13\x2a\x1f\x15\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\ +\x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x28\x1e\x13\x32\x26\x18\x38\ +\x2a\x1b\x2c\x21\x15\x2e\x22\x16\x23\x1b\x11\x24\x1b\x11\x2b\x21\ +\x15\x2f\x24\x17\x2a\x20\x15\x27\x1d\x13\x28\x1d\x13\x26\x1c\x12\ +\x28\x1e\x14\x2b\x20\x15\x27\x1d\x13\x2c\x21\x15\x30\x24\x17\x30\ +\x24\x17\x32\x26\x18\x31\x24\x17\x2d\x22\x16\x28\x1e\x13\x1f\x18\ +\x0f\x24\x1b\x11\x27\x1e\x13\x29\x1f\x13\x2a\x20\x14\x2e\x23\x16\ +\x2c\x21\x14\x24\x1b\x11\x1b\x15\x0d\x22\x1a\x10\x20\x18\x0f\x1d\ +\x16\x0e\x25\x1c\x12\x2b\x20\x15\x29\x1f\x14\x27\x1e\x13\x26\x1d\ +\x12\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\ +\x24\x1b\x11\x23\x1b\x11\x2e\x23\x16\x34\x27\x19\x39\x2b\x1b\x39\ +\x2b\x1c\x37\x29\x1a\x36\x29\x1a\x33\x27\x19\x30\x24\x17\x32\x26\ +\x18\x29\x1f\x13\x2e\x23\x16\x33\x27\x19\x2c\x21\x15\x26\x1c\x12\ +\x21\x19\x0f\x25\x1b\x11\x28\x1e\x13\x2c\x21\x15\x28\x1e\x13\x2e\ +\x23\x16\x22\x1a\x11\x1d\x16\x0d\x22\x19\x10\x38\x2a\x1a\x38\x2a\ +\x1b\x34\x27\x19\x2e\x22\x15\x32\x25\x17\x2e\x22\x16\x30\x24\x17\ +\x2c\x21\x15\x24\x1b\x11\x22\x1a\x11\x21\x19\x10\x25\x1c\x12\x2b\ +\x20\x15\x2c\x21\x15\x2c\x21\x15\x2c\x21\x15\x26\x1d\x12\x2b\x20\ +\x14\x34\x27\x18\x33\x27\x18\x32\x25\x18\x33\x26\x18\x28\x1e\x13\ +\x25\x1b\x12\x25\x1b\x12\x1f\x17\x0f\x1c\x15\x0d\x1e\x16\x0e\x26\ +\x1d\x12\x47\x38\x27\x2b\x2c\x2d\x32\x36\x39\x3b\x41\x45\x46\x4d\ +\x51\x50\x58\x5c\x21\x24\x26\x00\x00\x00\x26\x29\x2b\x62\x6b\x71\ +\x6c\x77\x7e\x38\x3e\x43\x1e\x1f\x24\x09\x09\x0a\x1a\x1c\x20\x72\ +\x7d\x83\x68\x73\x79\x47\x51\x59\x50\x5a\x62\x6f\x79\x80\x75\x7f\ +\x86\x78\x81\x87\x5a\x60\x67\x4c\x51\x5a\x69\x70\x79\x78\x81\x85\ +\x7a\x83\x87\x78\x80\x85\x5f\x66\x6c\x55\x5c\x62\x71\x79\x7e\x80\ +\x8a\x8e\x00\x00\x00\x09\x07\x05\x48\x36\x24\x46\x35\x22\x5d\x45\ +\x2d\x73\x55\x38\x5c\x45\x2d\x23\x1a\x11\x20\x18\x10\x23\x1a\x11\ +\x2a\x20\x14\x27\x1d\x12\x25\x1c\x11\x1f\x17\x0f\x1f\x17\x0f\x1c\ +\x15\x0d\x1d\x15\x0d\x20\x18\x10\x25\x1c\x12\x26\x1d\x12\x2e\x22\ +\x16\x34\x27\x19\x39\x2b\x1b\x37\x29\x1b\x2e\x22\x16\x2c\x21\x15\ +\x2a\x1f\x15\x27\x1e\x13\x24\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x23\ +\x1a\x10\x1f\x17\x0f\x24\x1b\x12\x2f\x23\x17\x35\x27\x19\x36\x29\ +\x1a\x35\x28\x1a\x30\x24\x17\x32\x26\x18\x31\x25\x17\x32\x26\x18\ +\x3a\x2c\x1d\x31\x24\x18\x27\x1d\x13\x25\x1c\x12\x28\x1e\x13\x2c\ +\x22\x15\x24\x1c\x12\x21\x19\x10\x24\x1b\x11\x26\x1c\x12\x2e\x23\ +\x16\x2f\x23\x16\x2e\x22\x16\x28\x1e\x13\x1c\x15\x0d\x1f\x17\x0f\ +\x1b\x15\x0d\x23\x1b\x11\x2b\x21\x15\x2d\x22\x15\x2f\x23\x16\x2e\ +\x21\x16\x26\x1c\x12\x27\x1d\x13\x24\x1b\x12\x1f\x18\x0f\x24\x1a\ +\x11\x2b\x20\x14\x31\x25\x18\x2c\x21\x15\x29\x1f\x14\x1f\x18\x0f\ +\x20\x18\x0f\x1f\x18\x0f\x21\x18\x0f\x23\x1b\x11\x23\x1a\x11\x25\ +\x1b\x11\x29\x1f\x13\x30\x24\x17\x38\x29\x1a\x3e\x2f\x1e\x3e\x2f\ +\x1e\x44\x33\x21\x47\x35\x22\x46\x34\x21\x3a\x2b\x1b\x28\x1e\x13\ +\x27\x1d\x13\x2e\x22\x16\x2d\x22\x16\x27\x1d\x13\x27\x1d\x12\x2a\ +\x20\x14\x29\x1f\x14\x2f\x24\x16\x30\x24\x17\x34\x27\x19\x2d\x23\ +\x16\x24\x1c\x12\x30\x24\x17\x39\x2b\x1b\x39\x2a\x1b\x35\x28\x1a\ +\x2c\x21\x15\x2f\x24\x17\x31\x25\x17\x31\x25\x18\x28\x1d\x13\x27\ +\x1d\x13\x24\x1b\x11\x21\x19\x10\x24\x1b\x11\x2d\x22\x16\x2e\x22\ +\x16\x29\x1f\x14\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2a\x1f\x14\ +\x2a\x20\x14\x2c\x21\x15\x34\x27\x19\x2a\x1f\x14\x2f\x23\x16\x1c\ +\x15\x0d\x22\x19\x10\x20\x18\x10\x21\x18\x0f\x1f\x16\x0e\x39\x2d\ +\x1f\x30\x30\x2f\x31\x36\x39\x3a\x3f\x43\x47\x4d\x51\x3f\x46\x49\ +\x28\x2c\x2f\x06\x07\x07\x2b\x2f\x30\x63\x6d\x72\x6e\x77\x7f\x47\ +\x4e\x56\x44\x48\x51\x00\x00\x00\x36\x3a\x3f\x75\x80\x86\x6f\x79\ +\x7f\x69\x73\x79\x4a\x54\x5c\x57\x60\x68\x74\x7e\x85\x77\x80\x87\ +\x75\x7e\x83\x5a\x60\x67\x4f\x53\x5c\x6c\x74\x7a\x7b\x84\x89\x79\ +\x82\x86\x77\x7f\x83\x5f\x67\x6c\x5a\x60\x64\x73\x7a\x7f\x00\x00\ +\x00\x09\x07\x05\x48\x36\x24\x45\x34\x22\x57\x41\x2a\x6f\x53\x36\ +\x5d\x45\x2d\x28\x1e\x13\x30\x24\x17\x2d\x22\x15\x35\x28\x1a\x2c\ +\x20\x14\x27\x1d\x12\x23\x1b\x10\x1a\x13\x0c\x1e\x16\x0e\x20\x18\ +\x0f\x21\x19\x0f\x1d\x17\x0e\x21\x19\x10\x28\x1e\x13\x2a\x20\x15\ +\x31\x25\x18\x2f\x23\x17\x26\x1d\x12\x27\x1d\x12\x28\x1d\x13\x29\ +\x1f\x14\x28\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1d\x15\x0e\x1f\x18\ +\x0f\x25\x1c\x12\x2d\x22\x15\x35\x27\x19\x33\x27\x19\x36\x28\x1a\ +\x38\x29\x1b\x3d\x2e\x1d\x39\x2b\x1c\x2d\x22\x15\x2a\x1f\x14\x25\ +\x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x0f\x27\x1e\x13\x22\x1a\ +\x10\x1a\x14\x0c\x1e\x16\x0e\x1e\x17\x0f\x2b\x20\x15\x33\x27\x19\ +\x2f\x24\x17\x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x22\x1a\x10\x21\ +\x19\x10\x24\x1b\x11\x25\x1b\x11\x28\x1e\x13\x2e\x22\x16\x2d\x21\ +\x16\x27\x1d\x12\x23\x1b\x11\x1e\x16\x0f\x1d\x15\x0e\x29\x1f\x13\ +\x30\x24\x17\x27\x1d\x12\x2b\x20\x14\x27\x1d\x13\x24\x1b\x11\x20\ +\x18\x0f\x21\x18\x0f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x11\x27\x1e\ +\x13\x2f\x23\x17\x33\x26\x19\x36\x29\x1a\x3a\x2b\x1c\x35\x27\x1a\ +\x3c\x2d\x1d\x40\x30\x1f\x33\x27\x19\x2c\x21\x15\x28\x1e\x14\x2a\ +\x1f\x14\x32\x25\x18\x33\x26\x19\x36\x29\x1a\x32\x25\x18\x36\x29\ +\x1a\x3a\x2b\x1b\x3b\x2c\x1c\x2d\x22\x16\x33\x26\x18\x24\x1b\x12\ +\x26\x1d\x12\x35\x28\x19\x26\x1d\x12\x28\x1e\x13\x27\x1d\x13\x2c\ +\x21\x15\x35\x28\x1a\x2d\x22\x16\x1f\x18\x0f\x28\x1e\x13\x25\x1c\ +\x12\x1a\x14\x0d\x1e\x16\x0f\x26\x1c\x12\x2a\x1f\x14\x22\x1a\x10\ +\x20\x18\x0f\x21\x18\x10\x2b\x20\x14\x2b\x20\x15\x29\x1f\x14\x32\ +\x26\x18\x2f\x23\x16\x28\x1f\x13\x30\x23\x17\x22\x1a\x10\x1e\x16\ +\x0e\x21\x19\x10\x1f\x18\x0f\x22\x19\x0f\x3b\x2d\x1f\x35\x32\x2f\ +\x2f\x34\x37\x39\x3f\x42\x47\x4d\x51\x32\x36\x3a\x32\x36\x3a\x13\ +\x15\x15\x32\x37\x3a\x65\x6e\x75\x6d\x77\x80\x69\x73\x7c\x36\x3b\ +\x40\x39\x3d\x40\x37\x3d\x43\x6d\x76\x7d\x73\x7d\x83\x72\x7c\x83\ +\x67\x70\x78\x49\x51\x5b\x5b\x64\x6c\x75\x7f\x86\x75\x7f\x83\x76\ +\x7e\x83\x5c\x61\x68\x50\x55\x5c\x6d\x76\x7c\x7a\x85\x89\x7b\x88\ +\x8c\x76\x83\x87\x65\x6d\x71\x58\x5d\x61\x00\x00\x00\x00\x00\x00\ +\x38\x2a\x1b\x3d\x2e\x1e\x59\x43\x2b\x62\x4a\x2f\x61\x48\x2f\x2b\ +\x20\x15\x33\x26\x19\x3b\x2c\x1c\x33\x26\x19\x31\x24\x17\x2a\x20\ +\x14\x1e\x17\x0e\x1c\x14\x0d\x1e\x17\x0e\x1e\x17\x0f\x1d\x16\x0e\ +\x1d\x15\x0e\x20\x18\x0f\x25\x1c\x12\x28\x1e\x14\x2e\x23\x16\x2f\ +\x23\x17\x28\x1d\x13\x28\x1e\x12\x2e\x22\x16\x27\x1e\x13\x2b\x20\ +\x15\x2a\x20\x14\x24\x1b\x11\x1e\x16\x0e\x1c\x15\x0d\x22\x1a\x10\ +\x23\x1b\x11\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x3a\x2b\x1c\x39\ +\x2b\x1b\x32\x26\x18\x28\x1e\x13\x20\x18\x0f\x21\x19\x0f\x20\x18\ +\x0f\x1f\x17\x0e\x1f\x17\x0f\x25\x1c\x12\x23\x1a\x10\x1b\x15\x0d\ +\x21\x19\x10\x26\x1d\x13\x2f\x23\x16\x30\x23\x17\x2e\x23\x16\x2a\ +\x1f\x14\x23\x1a\x11\x1f\x17\x0f\x26\x1c\x12\x23\x1b\x11\x2a\x20\ +\x14\x27\x1d\x13\x26\x1d\x12\x26\x1c\x12\x2b\x20\x14\x33\x26\x18\ +\x34\x27\x18\x33\x26\x18\x29\x1f\x14\x30\x24\x17\x39\x2b\x1c\x32\ +\x26\x18\x2f\x24\x16\x35\x27\x1a\x30\x25\x17\x2a\x20\x14\x25\x1c\ +\x12\x1e\x17\x0e\x1d\x16\x0e\x23\x1b\x11\x23\x1a\x11\x22\x1a\x10\ +\x2c\x21\x15\x26\x1d\x12\x2b\x20\x14\x25\x1c\x12\x2e\x23\x16\x30\ +\x24\x17\x26\x1d\x12\x28\x1e\x13\x28\x1f\x14\x25\x1c\x12\x2a\x1f\ +\x14\x2a\x20\x14\x30\x24\x18\x2f\x23\x17\x30\x24\x17\x36\x29\x1a\ +\x2d\x22\x16\x32\x26\x18\x30\x24\x17\x2d\x22\x15\x28\x1f\x14\x33\ +\x26\x19\x23\x1a\x11\x20\x18\x0f\x26\x1d\x12\x2f\x23\x17\x31\x25\ +\x17\x2f\x23\x17\x2e\x22\x16\x2c\x21\x15\x27\x1e\x12\x23\x1b\x11\ +\x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x20\x18\x0f\x2c\ +\x22\x15\x36\x29\x1a\x2e\x23\x16\x2c\x21\x15\x33\x26\x19\x2f\x24\ +\x17\x2b\x21\x15\x2a\x1f\x14\x25\x1d\x12\x1b\x14\x0d\x20\x19\x0f\ +\x1c\x16\x0e\x21\x19\x10\x34\x28\x1b\x39\x34\x2d\x2f\x34\x37\x39\ +\x3e\x41\x45\x4b\x4f\x47\x4d\x52\x2f\x33\x36\x2c\x31\x34\x56\x5f\ +\x64\x69\x71\x79\x6b\x76\x7d\x6f\x79\x80\x3f\x47\x4e\x69\x72\x78\ +\x51\x59\x60\x3c\x43\x4a\x6e\x78\x80\x75\x7f\x86\x73\x7d\x84\x64\ +\x6c\x74\x49\x50\x59\x60\x69\x70\x77\x81\x86\x78\x81\x86\x74\x7c\ +\x82\x63\x69\x70\x4c\x53\x5a\x66\x6e\x74\x38\x42\x46\x41\x4d\x52\ +\x73\x80\x86\x65\x6d\x70\x00\x00\x00\x01\x01\x01\x3d\x2d\x1e\x45\ +\x34\x22\x56\x40\x29\x5b\x44\x2c\x66\x4c\x31\x31\x26\x18\x36\x29\ +\x1b\x2f\x24\x17\x31\x25\x17\x34\x27\x19\x2c\x22\x15\x1f\x17\x0f\ +\x19\x13\x0c\x1c\x15\x0d\x21\x18\x0f\x1f\x17\x0f\x20\x18\x0f\x20\ +\x18\x0f\x23\x1a\x11\x26\x1c\x12\x30\x24\x17\x33\x26\x18\x2d\x22\ +\x15\x2a\x20\x14\x26\x1c\x12\x29\x1e\x14\x2c\x21\x15\x31\x25\x17\ +\x30\x24\x17\x1f\x17\x0f\x24\x1a\x11\x21\x18\x0f\x29\x20\x14\x2f\ +\x23\x16\x33\x26\x19\x36\x28\x1a\x32\x25\x18\x33\x26\x19\x34\x27\ +\x19\x31\x25\x18\x2d\x21\x15\x26\x1c\x12\x27\x1d\x13\x23\x1a\x11\ +\x20\x18\x10\x27\x1e\x13\x27\x1d\x13\x23\x1a\x11\x25\x1c\x12\x29\ +\x1f\x14\x29\x1f\x13\x27\x1e\x12\x24\x1b\x11\x1d\x16\x0e\x21\x18\ +\x0f\x22\x19\x10\x1e\x16\x0e\x21\x18\x10\x2b\x1f\x14\x24\x1b\x12\ +\x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x3a\x2b\x1c\x3a\x2b\x1c\x34\ +\x26\x19\x2f\x23\x17\x34\x27\x19\x2d\x21\x16\x22\x19\x10\x23\x1a\ +\x11\x24\x1c\x12\x2e\x23\x16\x2e\x23\x16\x2a\x1f\x14\x24\x1b\x11\ +\x1f\x18\x0f\x1f\x16\x0e\x20\x18\x10\x1e\x16\x0e\x20\x19\x0f\x1e\ +\x17\x0e\x1d\x16\x0e\x1d\x16\x0e\x2b\x20\x14\x2b\x21\x15\x23\x1a\ +\x10\x24\x1b\x11\x27\x1e\x13\x28\x1e\x14\x2a\x1f\x14\x2b\x21\x15\ +\x2f\x24\x17\x36\x29\x1a\x2c\x21\x15\x30\x24\x17\x2b\x20\x15\x2c\ +\x21\x15\x30\x24\x17\x26\x1d\x12\x2c\x22\x16\x2b\x21\x15\x2e\x23\ +\x16\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\x29\x1f\x14\x30\x25\x17\ +\x35\x27\x19\x30\x23\x17\x2b\x21\x15\x27\x1d\x12\x24\x1b\x11\x1d\ +\x16\x0d\x1e\x16\x0d\x21\x19\x10\x22\x19\x10\x2b\x20\x14\x2f\x24\ +\x17\x30\x24\x17\x2a\x1f\x14\x34\x26\x19\x33\x27\x19\x2d\x22\x16\ +\x2b\x20\x15\x2b\x20\x14\x27\x1d\x12\x29\x1e\x13\x31\x24\x17\x2c\ +\x21\x16\x38\x2b\x1d\x3d\x36\x2e\x2f\x33\x36\x38\x3d\x41\x43\x4a\ +\x4d\x4e\x55\x5a\x2b\x2f\x33\x43\x49\x4f\x66\x70\x77\x66\x70\x78\ +\x6b\x76\x7d\x6e\x79\x81\x69\x73\x7c\x6e\x78\x7f\x6d\x76\x7d\x4e\ +\x56\x5d\x3e\x48\x4d\x74\x7e\x85\x74\x7e\x85\x73\x7c\x83\x63\x6a\ +\x72\x4d\x54\x5d\x67\x70\x76\x75\x7f\x84\x79\x83\x88\x79\x83\x87\ +\x62\x68\x6e\x2d\x31\x36\x04\x05\x05\x08\x0b\x0c\x3a\x46\x4b\x79\ +\x87\x8a\x00\x00\x00\x01\x01\x00\x27\x1e\x13\x38\x2a\x1b\x4a\x37\ +\x23\x65\x4b\x31\x69\x4f\x33\x2f\x23\x16\x3a\x2c\x1c\x2e\x22\x16\ +\x33\x27\x18\x25\x1b\x12\x27\x1d\x12\x25\x1c\x12\x22\x19\x10\x1b\ +\x14\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x0f\x1b\x14\x0d\x1b\x14\ +\x0d\x1e\x16\x0e\x2b\x20\x14\x30\x24\x17\x2f\x24\x16\x26\x1c\x12\ +\x26\x1d\x13\x2b\x20\x14\x2a\x20\x14\x2d\x22\x16\x2f\x24\x17\x22\ +\x1a\x10\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x2b\x20\x15\x2f\x24\ +\x17\x34\x26\x19\x30\x25\x17\x2f\x24\x16\x35\x28\x19\x31\x25\x18\ +\x30\x24\x18\x2b\x21\x15\x30\x24\x17\x32\x26\x18\x2c\x21\x15\x2a\ +\x1f\x15\x2c\x21\x15\x25\x1c\x12\x27\x1e\x13\x24\x1b\x12\x23\x1a\ +\x11\x25\x1b\x12\x24\x1b\x11\x23\x1a\x11\x1f\x18\x0f\x21\x19\x10\ +\x22\x19\x10\x20\x18\x0f\x25\x1b\x12\x20\x18\x0f\x1f\x17\x0f\x20\ +\x18\x0f\x1e\x17\x0e\x21\x19\x10\x2d\x22\x16\x29\x1f\x14\x2e\x23\ +\x16\x2f\x23\x16\x24\x1b\x11\x27\x1e\x14\x2a\x20\x14\x25\x1c\x12\ +\x29\x1f\x14\x2c\x21\x15\x33\x26\x18\x20\x18\x0f\x20\x17\x0f\x1e\ +\x16\x0e\x22\x19\x10\x22\x19\x10\x24\x1b\x12\x23\x1b\x11\x23\x1b\ +\x11\x27\x1e\x13\x1f\x18\x0f\x25\x1c\x12\x2a\x1f\x13\x23\x1b\x11\ +\x22\x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x14\x30\x24\x17\x32\ +\x25\x18\x28\x1e\x13\x29\x1e\x14\x2c\x20\x15\x2c\x21\x15\x2d\x22\ +\x15\x2d\x23\x16\x2e\x22\x16\x2c\x21\x15\x30\x24\x17\x2d\x22\x16\ +\x21\x19\x10\x25\x1c\x12\x26\x1d\x12\x30\x24\x16\x3a\x2b\x1b\x3e\ +\x2e\x1e\x39\x2a\x1b\x2a\x20\x14\x29\x1e\x13\x26\x1c\x12\x25\x1b\ +\x11\x24\x1b\x11\x24\x1b\x11\x29\x1f\x14\x2b\x21\x15\x28\x1d\x13\ +\x29\x1e\x13\x29\x1e\x14\x2b\x20\x15\x23\x1a\x11\x1e\x16\x0e\x29\ +\x1f\x13\x27\x1d\x12\x2b\x20\x15\x2f\x23\x16\x2e\x22\x16\x35\x29\ +\x1b\x2c\x28\x23\x2e\x32\x35\x37\x3c\x3f\x42\x48\x4c\x4a\x52\x57\ +\x46\x4d\x54\x56\x5e\x66\x63\x6d\x74\x67\x71\x79\x6b\x75\x7d\x6e\ +\x77\x80\x6d\x77\x7f\x6f\x79\x80\x73\x7b\x82\x6d\x75\x7c\x4e\x57\ +\x5b\x46\x4f\x54\x77\x81\x88\x75\x7e\x85\x75\x7d\x84\x67\x6e\x76\ +\x4b\x52\x5b\x67\x70\x76\x78\x82\x86\x7a\x84\x88\x7b\x84\x89\x3a\ +\x3e\x42\x00\x00\x00\x00\x00\x00\x0f\x12\x14\x60\x6d\x72\x00\x00\ +\x00\x0f\x0b\x06\x49\x37\x24\x3f\x30\x1f\x3e\x2f\x1e\x51\x3c\x27\ +\x57\x41\x2a\x2a\x20\x14\x29\x1e\x14\x24\x1b\x11\x2b\x20\x15\x2a\ +\x20\x14\x25\x1b\x11\x1f\x17\x0f\x20\x19\x0f\x24\x1b\x10\x23\x1a\ +\x10\x20\x17\x0f\x1a\x13\x0c\x18\x12\x0c\x16\x10\x0b\x1c\x15\x0d\ +\x2d\x22\x16\x30\x23\x17\x2c\x21\x15\x23\x1b\x11\x21\x19\x10\x2d\ +\x22\x15\x2e\x22\x16\x2b\x20\x15\x22\x1a\x10\x1b\x14\x0d\x1b\x15\ +\x0d\x23\x1a\x11\x2a\x1f\x14\x2a\x1f\x13\x26\x1d\x12\x2b\x20\x14\ +\x32\x26\x17\x34\x27\x19\x36\x29\x1b\x37\x29\x1a\x31\x24\x18\x2c\ +\x22\x16\x31\x25\x18\x30\x24\x17\x2e\x22\x16\x29\x1f\x14\x27\x1d\ +\x13\x2b\x21\x15\x37\x29\x1b\x30\x24\x17\x2f\x23\x17\x30\x24\x18\ +\x28\x1e\x14\x28\x1e\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\x1d\ +\x16\x0e\x1d\x16\x0e\x1d\x15\x0e\x23\x1a\x10\x1e\x16\x0e\x17\x11\ +\x0b\x19\x13\x0c\x20\x18\x10\x28\x1e\x13\x29\x1f\x13\x28\x1e\x14\ +\x2d\x22\x16\x2b\x20\x14\x25\x1c\x11\x1d\x16\x0d\x20\x18\x0f\x29\ +\x1f\x13\x31\x25\x18\x28\x1e\x13\x28\x1e\x13\x1d\x16\x0e\x2a\x1f\ +\x14\x27\x1d\x12\x2b\x21\x14\x23\x1a\x11\x2c\x20\x15\x39\x2a\x1b\ +\x2d\x22\x15\x27\x1e\x13\x24\x1b\x12\x23\x1a\x11\x22\x1a\x10\x23\ +\x1a\x10\x27\x1d\x13\x22\x1a\x11\x2b\x20\x14\x30\x24\x17\x2b\x20\ +\x15\x2b\x20\x15\x29\x1f\x14\x2e\x22\x16\x33\x27\x19\x29\x1f\x14\ +\x2c\x21\x15\x24\x1b\x11\x29\x1f\x14\x32\x25\x17\x29\x1f\x14\x23\ +\x1b\x11\x21\x19\x10\x2a\x20\x14\x33\x26\x19\x33\x26\x19\x34\x27\ +\x19\x2e\x23\x17\x2a\x20\x14\x2c\x20\x14\x34\x27\x19\x2e\x22\x16\ +\x2a\x1f\x14\x2c\x21\x15\x25\x1d\x12\x1e\x17\x0f\x27\x1d\x12\x23\ +\x1a\x11\x20\x18\x10\x28\x1e\x13\x1c\x14\x0d\x1e\x16\x0e\x22\x19\ +\x11\x2f\x23\x17\x30\x23\x16\x32\x26\x17\x32\x26\x18\x30\x2a\x23\ +\x2d\x31\x35\x35\x3a\x3e\x40\x46\x4a\x4a\x51\x56\x54\x5c\x62\x5c\ +\x65\x6c\x63\x6d\x75\x68\x72\x79\x6c\x76\x7e\x6c\x77\x7f\x71\x7a\ +\x81\x72\x7b\x81\x72\x79\x80\x73\x7b\x82\x6d\x76\x7a\x48\x50\x55\ +\x50\x59\x5e\x77\x81\x87\x76\x7f\x86\x78\x7f\x86\x63\x68\x70\x48\ +\x4c\x55\x6f\x76\x7b\x7b\x86\x8b\x7f\x8a\x91\x51\x59\x5e\x00\x00\ +\x00\x00\x00\x00\x05\x05\x05\x3c\x44\x47\x00\x00\x00\x02\x02\x01\ +\x36\x2a\x1b\x40\x30\x1f\x4c\x39\x25\x59\x43\x2c\x60\x48\x2f\x38\ +\x2a\x1b\x1d\x16\x0e\x20\x18\x10\x2e\x22\x16\x24\x1b\x11\x21\x19\ +\x0f\x17\x12\x0c\x1c\x16\x0e\x1e\x17\x0f\x21\x19\x10\x25\x1c\x12\ +\x1f\x17\x0f\x16\x11\x0a\x18\x12\x0b\x23\x1a\x11\x2a\x20\x14\x29\ +\x20\x13\x29\x1f\x14\x1e\x16\x0f\x23\x1b\x11\x2b\x21\x14\x32\x26\ +\x18\x24\x1b\x11\x21\x18\x10\x1c\x15\x0d\x20\x18\x0f\x26\x1d\x12\ +\x27\x1d\x13\x29\x1e\x14\x24\x1c\x12\x2b\x21\x15\x27\x1d\x13\x2e\ +\x21\x15\x37\x29\x1b\x38\x29\x1b\x38\x2a\x1a\x38\x2a\x1b\x39\x2b\ +\x1c\x2a\x20\x14\x1f\x17\x0f\x24\x1b\x11\x24\x1a\x11\x22\x1a\x10\ +\x2e\x22\x16\x26\x1c\x12\x23\x1b\x11\x23\x1a\x11\x23\x1a\x11\x2b\ +\x20\x15\x24\x1b\x11\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x20\x18\ +\x0f\x26\x1c\x11\x2a\x1f\x14\x26\x1c\x12\x25\x1c\x11\x1e\x17\x0e\ +\x1d\x16\x0e\x20\x19\x10\x22\x1a\x11\x27\x1e\x12\x2b\x20\x15\x2c\ +\x21\x15\x26\x1d\x12\x25\x1c\x12\x22\x1a\x10\x25\x1c\x12\x29\x1e\ +\x13\x20\x18\x0f\x21\x19\x10\x29\x1e\x13\x22\x19\x10\x2a\x20\x14\ +\x26\x1d\x12\x24\x1c\x11\x21\x19\x10\x26\x1c\x13\x2a\x20\x14\x2a\ +\x1f\x14\x27\x1d\x13\x20\x18\x0f\x23\x1a\x10\x28\x1e\x13\x24\x1b\ +\x11\x1e\x17\x0f\x27\x1d\x12\x31\x24\x18\x28\x1e\x13\x24\x1b\x11\ +\x28\x1e\x13\x27\x1d\x12\x30\x25\x18\x2f\x23\x16\x36\x29\x1a\x33\ +\x26\x18\x36\x28\x1a\x34\x27\x19\x2e\x22\x16\x25\x1c\x11\x2a\x20\ +\x14\x30\x25\x17\x3c\x2d\x1d\x3b\x2c\x1d\x36\x28\x1a\x38\x2a\x1b\ +\x32\x26\x18\x34\x27\x19\x35\x28\x1a\x34\x27\x19\x34\x27\x19\x3d\ +\x2d\x1d\x39\x2b\x1c\x24\x1b\x11\x22\x19\x10\x1f\x17\x0f\x23\x1a\ +\x10\x21\x19\x10\x20\x18\x0f\x19\x13\x0b\x18\x13\x0c\x1e\x17\x0e\ +\x21\x19\x10\x23\x1b\x11\x3b\x2c\x1e\x47\x3b\x2f\x2d\x31\x33\x35\ +\x39\x3e\x40\x45\x4a\x4b\x51\x57\x53\x5a\x61\x5b\x63\x6a\x62\x6b\ +\x72\x66\x71\x78\x6a\x76\x7c\x6d\x76\x7e\x70\x7a\x81\x72\x7b\x81\ +\x73\x7b\x82\x73\x7b\x82\x75\x7e\x83\x6c\x74\x78\x4b\x52\x57\x58\ +\x61\x68\x79\x82\x89\x77\x80\x86\x7a\x83\x88\x5f\x65\x6c\x48\x4d\ +\x54\x6e\x77\x7e\x7e\x8a\x90\x6d\x77\x7b\x08\x08\x08\x00\x00\x00\ +\x01\x01\x01\x27\x2d\x2f\x00\x00\x00\x00\x00\x00\x26\x1d\x13\x3a\ +\x2d\x1d\x41\x30\x1f\x54\x3f\x28\x62\x49\x2f\x4f\x3b\x26\x1e\x16\ +\x0f\x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x1c\x15\x0d\x1f\x18\x0f\ +\x29\x20\x14\x22\x1a\x10\x2b\x20\x15\x2a\x1f\x14\x2b\x20\x15\x26\ +\x1d\x12\x1c\x15\x0d\x27\x1d\x13\x2f\x24\x17\x2e\x22\x16\x22\x1a\ +\x10\x24\x1c\x11\x28\x1f\x13\x29\x20\x14\x2a\x20\x15\x27\x1d\x13\ +\x27\x1d\x13\x20\x18\x0f\x22\x1a\x10\x21\x19\x10\x23\x1a\x11\x1e\ +\x17\x0e\x1f\x17\x0f\x23\x1a\x11\x22\x1a\x11\x24\x1b\x11\x24\x1b\ +\x11\x28\x1e\x13\x2d\x22\x16\x34\x27\x19\x36\x29\x1a\x2a\x20\x14\ +\x1f\x17\x0f\x1e\x16\x0f\x1d\x16\x0e\x21\x19\x0f\x1f\x17\x0f\x20\ +\x18\x0f\x25\x1c\x12\x26\x1c\x12\x26\x1c\x11\x28\x1e\x14\x21\x19\ +\x0f\x22\x19\x10\x1e\x16\x0e\x19\x13\x0c\x1c\x15\x0e\x1d\x16\x0e\ +\x20\x18\x10\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x1a\x13\x0c\x20\ +\x18\x0f\x1f\x17\x0f\x1c\x15\x0d\x26\x1c\x12\x2d\x21\x16\x29\x1f\ +\x14\x2d\x22\x16\x2b\x20\x14\x21\x19\x10\x21\x19\x0f\x19\x13\x0b\ +\x1e\x16\x0d\x2a\x1f\x13\x2b\x20\x14\x20\x18\x0f\x26\x1d\x12\x2d\ +\x22\x16\x32\x25\x18\x36\x28\x1a\x3b\x2d\x1c\x33\x27\x18\x33\x26\ +\x18\x2d\x21\x15\x28\x1e\x13\x22\x1a\x10\x26\x1d\x12\x28\x1e\x13\ +\x25\x1c\x12\x24\x1c\x12\x26\x1d\x12\x24\x1b\x11\x2a\x20\x14\x2e\ +\x23\x16\x2b\x20\x15\x2b\x21\x15\x30\x24\x17\x2f\x23\x17\x3a\x2c\ +\x1d\x39\x2b\x1c\x29\x1f\x14\x23\x1b\x11\x22\x19\x10\x2a\x1f\x13\ +\x31\x25\x18\x36\x29\x1a\x30\x24\x17\x2a\x20\x14\x2c\x21\x15\x2c\ +\x21\x15\x2d\x21\x16\x32\x26\x18\x36\x28\x1a\x3f\x2f\x1e\x39\x2a\ +\x1b\x2d\x22\x16\x2a\x1f\x14\x23\x1a\x11\x25\x1c\x12\x1e\x16\x0e\ +\x1d\x16\x0d\x19\x13\x0c\x1b\x14\x0d\x22\x1a\x11\x22\x1a\x11\x25\ +\x1c\x11\x32\x25\x19\x46\x39\x2b\x2b\x2f\x32\x34\x39\x3d\x3f\x44\ +\x49\x4a\x50\x56\x54\x5b\x62\x5e\x65\x6c\x63\x6d\x74\x67\x71\x78\ +\x6b\x75\x7e\x6d\x79\x80\x6f\x7a\x81\x70\x7a\x81\x71\x7b\x82\x75\ +\x7e\x81\x74\x7d\x82\x77\x7f\x86\x66\x6f\x73\x43\x4a\x4f\x60\x69\ +\x6e\x79\x82\x86\x7b\x84\x88\x7b\x84\x88\x5c\x61\x68\x43\x48\x50\ +\x74\x7d\x82\x7c\x87\x8a\x35\x3b\x3c\x00\x00\x00\x00\x00\x00\x16\ +\x1a\x1b\x00\x00\x00\x00\x00\x00\x29\x1f\x15\x49\x38\x24\x40\x30\ +\x1f\x50\x3c\x27\x6a\x4f\x34\x50\x3d\x27\x23\x1a\x11\x10\x0c\x07\ +\x1c\x15\x0e\x26\x1c\x12\x28\x1e\x13\x2c\x21\x14\x27\x1d\x13\x28\ +\x1f\x14\x28\x1e\x13\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x20\x18\ +\x0f\x24\x1b\x11\x29\x1f\x14\x21\x19\x10\x1a\x14\x0c\x1d\x15\x0e\ +\x20\x18\x0f\x25\x1b\x12\x19\x13\x0b\x18\x13\x0c\x2c\x21\x15\x26\ +\x1d\x12\x20\x18\x10\x21\x19\x0f\x1f\x18\x0f\x27\x1d\x12\x20\x18\ +\x10\x24\x1b\x12\x26\x1c\x12\x27\x1e\x13\x23\x1b\x11\x2e\x23\x16\ +\x36\x28\x1a\x36\x28\x19\x2e\x22\x16\x2d\x22\x15\x25\x1c\x12\x23\ +\x1b\x11\x28\x1e\x13\x23\x19\x10\x1b\x15\x0d\x1b\x15\x0d\x1f\x17\ +\x0f\x25\x1c\x11\x21\x19\x10\x20\x18\x0f\x25\x1c\x12\x24\x1c\x12\ +\x24\x1b\x11\x19\x13\x0c\x16\x11\x0b\x1b\x14\x0d\x22\x19\x11\x21\ +\x19\x0f\x20\x18\x10\x23\x1a\x11\x21\x19\x10\x20\x18\x0f\x1d\x16\ +\x0e\x1f\x17\x0f\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x14\ +\x2b\x20\x15\x28\x1e\x13\x30\x24\x17\x28\x1e\x13\x30\x24\x17\x32\ +\x25\x18\x2d\x22\x15\x2e\x23\x16\x2e\x22\x16\x32\x26\x19\x34\x26\ +\x19\x30\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x38\x29\x1b\x35\x28\x19\ +\x36\x28\x1a\x33\x26\x18\x34\x26\x19\x28\x1e\x13\x23\x1b\x10\x1c\ +\x15\x0d\x1f\x17\x0e\x2e\x22\x16\x28\x1e\x13\x1e\x16\x0e\x27\x1d\ +\x13\x21\x18\x10\x28\x1e\x13\x29\x1f\x14\x2e\x23\x16\x2b\x20\x14\ +\x25\x1c\x11\x26\x1c\x12\x27\x1d\x13\x28\x1e\x13\x2f\x23\x16\x39\ +\x2b\x1b\x3e\x2f\x1e\x3c\x2d\x1d\x2c\x21\x15\x21\x19\x10\x25\x1c\ +\x12\x2f\x23\x17\x32\x26\x18\x3a\x2c\x1c\x3f\x2f\x1f\x3c\x2d\x1d\ +\x3f\x2f\x1e\x2c\x21\x14\x24\x1b\x12\x26\x1d\x12\x21\x19\x10\x1c\ +\x15\x0d\x1c\x15\x0d\x1d\x16\x0e\x23\x1a\x11\x23\x1b\x11\x32\x26\ +\x19\x4d\x3e\x2f\x2b\x2f\x32\x34\x38\x3c\x3e\x44\x48\x48\x4f\x53\ +\x51\x57\x5e\x5a\x62\x69\x61\x6a\x71\x67\x71\x79\x6c\x76\x7e\x6c\ +\x76\x7e\x6e\x79\x80\x72\x7c\x82\x73\x7c\x83\x72\x7b\x82\x77\x7f\ +\x86\x76\x7e\x85\x79\x81\x86\x66\x6e\x73\x49\x51\x56\x64\x6d\x71\ +\x7b\x84\x88\x79\x83\x87\x7a\x82\x87\x60\x65\x6d\x51\x57\x5f\x74\ +\x7d\x82\x71\x79\x7e\x19\x1b\x1d\x00\x00\x00\x14\x15\x18\x00\x00\ +\x00\x03\x02\x01\x22\x1a\x10\x3e\x2f\x1f\x35\x28\x19\x57\x41\x2a\ +\x65\x4b\x31\x4d\x39\x26\x1c\x15\x0d\x11\x0d\x09\x18\x12\x0b\x22\ +\x1a\x10\x2b\x20\x15\x2f\x24\x17\x26\x1c\x12\x29\x1f\x13\x2c\x21\ +\x15\x30\x24\x17\x2d\x22\x16\x29\x1f\x14\x1e\x16\x0e\x1d\x16\x0e\ +\x1f\x17\x0f\x1b\x15\x0d\x17\x12\x0c\x19\x12\x0c\x23\x1a\x10\x2b\ +\x21\x14\x21\x18\x10\x2c\x21\x15\x2a\x1f\x14\x22\x1a\x11\x28\x1f\ +\x14\x31\x25\x18\x26\x1c\x12\x29\x1e\x13\x25\x1c\x12\x27\x1d\x13\ +\x2c\x21\x15\x2f\x23\x17\x26\x1c\x12\x27\x1c\x12\x2e\x22\x16\x35\ +\x28\x1a\x2d\x21\x15\x28\x1e\x13\x27\x1d\x13\x22\x1a\x11\x21\x19\ +\x10\x1e\x17\x0e\x20\x18\x0f\x1c\x16\x0e\x1b\x14\x0d\x1c\x15\x0d\ +\x23\x1b\x11\x1b\x14\x0d\x1f\x17\x0f\x26\x1d\x13\x24\x1b\x12\x2c\ +\x22\x16\x1b\x14\x0d\x1a\x13\x0d\x21\x19\x10\x29\x1f\x13\x32\x26\ +\x18\x2d\x22\x16\x25\x1b\x12\x23\x1b\x11\x1b\x15\x0d\x1a\x13\x0c\ +\x1d\x15\x0e\x2b\x20\x15\x28\x1e\x13\x2f\x23\x17\x2e\x23\x17\x2e\ +\x23\x16\x24\x1b\x12\x24\x1b\x11\x28\x1e\x13\x2a\x1f\x14\x28\x1e\ +\x13\x19\x13\x0c\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2d\x22\x16\ +\x30\x24\x17\x31\x25\x18\x35\x27\x19\x36\x28\x19\x31\x25\x18\x37\ +\x29\x1a\x3a\x2b\x1b\x34\x27\x19\x22\x1a\x11\x1e\x17\x0e\x1e\x16\ +\x0e\x21\x1a\x10\x25\x1c\x12\x1d\x16\x0e\x28\x1e\x13\x21\x19\x10\ +\x26\x1c\x12\x27\x1d\x12\x23\x1a\x10\x26\x1c\x12\x24\x1b\x11\x24\ +\x1b\x11\x33\x26\x18\x37\x29\x1a\x3a\x2b\x1c\x3c\x2d\x1d\x3a\x2b\ +\x1c\x38\x2a\x1b\x2e\x22\x16\x2f\x23\x17\x34\x26\x18\x2c\x21\x15\ +\x2a\x21\x15\x29\x1f\x14\x28\x1e\x13\x30\x24\x18\x35\x28\x1a\x29\ +\x1f\x14\x28\x1e\x14\x21\x19\x10\x1b\x14\x0d\x20\x18\x0f\x1e\x17\ +\x0f\x1d\x16\x0e\x19\x13\x0c\x1f\x17\x0f\x23\x1a\x11\x37\x2d\x22\ +\x2a\x2e\x31\x34\x38\x3c\x3f\x44\x48\x47\x4d\x52\x51\x57\x5e\x5a\ +\x61\x68\x61\x69\x71\x67\x70\x78\x6d\x75\x7e\x6f\x79\x81\x72\x7c\ +\x85\x71\x7a\x82\x73\x7e\x85\x76\x80\x87\x78\x81\x88\x78\x80\x87\ +\x76\x7f\x86\x77\x7f\x85\x5e\x64\x69\x46\x4d\x52\x69\x71\x75\x7b\ +\x84\x88\x78\x82\x85\x7d\x85\x8a\x5f\x65\x6c\x4d\x53\x5b\x75\x7e\ +\x83\x6d\x75\x78\x2e\x31\x33\x50\x54\x58\x00\x00\x00\x09\x07\x05\ +\x13\x0e\x09\x4c\x39\x27\x35\x27\x1a\x55\x40\x2a\x4d\x3a\x25\x4a\ +\x36\x24\x1a\x13\x0c\x10\x0c\x08\x13\x0f\x09\x1f\x17\x0f\x26\x1c\ +\x12\x28\x1e\x13\x29\x1e\x13\x27\x1e\x12\x2d\x22\x15\x25\x1b\x11\ +\x24\x1b\x11\x27\x1e\x12\x24\x1b\x11\x22\x19\x10\x1d\x16\x0e\x17\ +\x11\x0c\x14\x0f\x0a\x1a\x13\x0d\x1a\x14\x0c\x24\x1b\x11\x28\x1e\ +\x13\x2d\x21\x15\x2d\x22\x16\x29\x1f\x14\x2b\x20\x14\x29\x1f\x13\ +\x23\x1a\x11\x22\x1a\x10\x25\x1c\x11\x26\x1d\x12\x2a\x1f\x14\x30\ +\x24\x17\x2d\x21\x15\x29\x1f\x13\x30\x24\x17\x35\x28\x1a\x31\x26\ +\x18\x2d\x23\x16\x29\x1f\x14\x21\x18\x10\x28\x1e\x13\x2a\x1f\x14\ +\x2a\x20\x14\x27\x1d\x13\x20\x18\x10\x25\x1c\x13\x1c\x15\x0d\x1b\ +\x15\x0d\x1f\x17\x0e\x20\x18\x0f\x26\x1c\x12\x24\x1b\x11\x1f\x17\ +\x0f\x1f\x17\x0f\x1e\x17\x0e\x23\x1a\x11\x2e\x23\x16\x2d\x22\x16\ +\x26\x1d\x12\x33\x26\x19\x2a\x21\x15\x1d\x16\x0e\x1f\x17\x0f\x28\ +\x1e\x13\x26\x1c\x12\x2d\x22\x16\x32\x25\x18\x2f\x24\x17\x29\x1f\ +\x14\x27\x1e\x13\x20\x18\x0f\x2a\x20\x14\x23\x1b\x11\x27\x1d\x13\ +\x26\x1c\x12\x25\x1c\x11\x27\x1d\x13\x2a\x20\x14\x2e\x24\x17\x31\ +\x25\x17\x34\x27\x19\x2b\x20\x15\x2f\x22\x17\x39\x2a\x1c\x39\x2a\ +\x1b\x37\x29\x1a\x2c\x21\x16\x26\x1d\x12\x27\x1e\x13\x29\x1e\x14\ +\x20\x19\x10\x25\x1c\x12\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x28\ +\x1e\x13\x21\x19\x10\x2a\x1f\x14\x22\x1a\x10\x27\x1d\x12\x28\x1e\ +\x13\x24\x1b\x12\x2f\x23\x16\x36\x28\x1a\x2b\x20\x15\x29\x1e\x13\ +\x26\x1d\x13\x24\x1b\x12\x32\x26\x18\x29\x20\x14\x1e\x17\x0e\x22\ +\x19\x10\x26\x1d\x12\x2a\x1f\x14\x2a\x1f\x14\x25\x1c\x12\x29\x1f\ +\x14\x23\x1a\x11\x21\x19\x10\x21\x19\x10\x1f\x17\x0f\x1e\x18\x0e\ +\x20\x19\x0f\x26\x1c\x12\x29\x1f\x14\x34\x2a\x20\x2d\x2f\x30\x32\ +\x37\x3a\x3d\x42\x46\x46\x4c\x51\x4f\x56\x5c\x5a\x61\x68\x62\x6a\ +\x72\x65\x6f\x76\x6c\x75\x7d\x70\x7b\x82\x72\x7d\x85\x6f\x7a\x81\ +\x78\x82\x89\x74\x7e\x85\x76\x80\x87\x77\x80\x87\x76\x7f\x86\x76\ +\x7e\x84\x7b\x84\x88\x60\x68\x6d\x48\x4e\x54\x6b\x73\x78\x7e\x87\ +\x8b\x7e\x87\x8b\x80\x87\x8c\x66\x6c\x72\x4e\x54\x5c\x6e\x74\x79\ +\x47\x4d\x52\x72\x78\x7c\x00\x00\x00\x1e\x17\x0f\x39\x2b\x1d\x50\ +\x3d\x2a\x36\x28\x1a\x4b\x38\x23\x51\x3d\x27\x59\x42\x2b\x24\x1b\ +\x11\x12\x0e\x09\x11\x0d\x08\x1c\x16\x0e\x24\x1c\x11\x31\x24\x17\ +\x2a\x20\x15\x29\x1f\x14\x2c\x21\x15\x30\x24\x17\x2a\x1f\x14\x29\ +\x1e\x13\x28\x1e\x14\x29\x1e\x13\x23\x1b\x11\x1f\x17\x0f\x20\x18\ +\x0f\x1f\x18\x0f\x1a\x14\x0c\x1f\x17\x0f\x25\x1b\x12\x26\x1c\x12\ +\x2d\x22\x15\x31\x25\x17\x27\x1d\x12\x24\x1b\x12\x28\x1e\x13\x2a\ +\x1f\x15\x26\x1d\x12\x22\x1a\x10\x25\x1c\x11\x27\x1d\x13\x1e\x16\ +\x0e\x1d\x16\x0e\x1d\x16\x0e\x1e\x16\x0e\x24\x1b\x12\x21\x18\x10\ +\x22\x19\x10\x22\x1a\x10\x24\x1c\x12\x29\x1f\x14\x31\x25\x17\x36\ +\x29\x1a\x27\x1d\x13\x1f\x17\x0f\x1b\x15\x0d\x20\x18\x0f\x1a\x14\ +\x0d\x1c\x15\x0d\x24\x1b\x11\x24\x1b\x11\x22\x1a\x11\x21\x18\x10\ +\x17\x12\x0b\x1f\x18\x0f\x2c\x22\x15\x31\x25\x17\x30\x25\x17\x28\ +\x1e\x13\x25\x1b\x11\x24\x1b\x11\x22\x1a\x11\x1f\x17\x0f\x24\x1c\ +\x11\x22\x1a\x10\x23\x1a\x11\x2a\x20\x14\x29\x1f\x14\x2f\x23\x17\ +\x25\x1b\x11\x23\x1a\x10\x23\x1b\x11\x23\x1a\x11\x1b\x14\x0d\x22\ +\x1a\x11\x23\x1b\x11\x25\x1b\x11\x25\x1b\x11\x2a\x20\x15\x31\x25\ +\x18\x30\x24\x17\x31\x25\x17\x2f\x23\x16\x39\x2a\x1b\x3b\x2d\x1d\ +\x2c\x21\x15\x21\x18\x0f\x27\x1e\x13\x21\x19\x10\x20\x18\x0f\x1d\ +\x15\x0e\x22\x1a\x11\x20\x18\x0f\x23\x1a\x10\x23\x1a\x10\x20\x18\ +\x0f\x23\x1a\x11\x21\x19\x10\x27\x1d\x13\x26\x1d\x13\x2b\x21\x14\ +\x2d\x22\x16\x2f\x23\x16\x32\x25\x18\x2c\x21\x16\x21\x19\x10\x22\ +\x1a\x10\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x1e\x17\x0e\x21\x1a\ +\x10\x24\x1c\x12\x26\x1d\x12\x2a\x20\x14\x2b\x20\x14\x2c\x21\x15\ +\x29\x1f\x14\x29\x1f\x14\x1c\x15\x0d\x21\x19\x10\x24\x1b\x11\x26\ +\x1c\x12\x2f\x23\x17\x2c\x23\x19\x31\x30\x2f\x32\x36\x39\x3c\x42\ +\x46\x45\x4c\x51\x4f\x56\x5d\x5a\x62\x69\x60\x6a\x71\x65\x6f\x76\ +\x6d\x77\x7f\x6f\x7a\x81\x6e\x79\x7f\x72\x7d\x84\x75\x80\x87\x77\ +\x82\x89\x77\x81\x88\x78\x80\x87\x77\x80\x87\x78\x7f\x86\x77\x7f\ +\x84\x7c\x85\x89\x5b\x61\x67\x4b\x50\x57\x6d\x75\x7a\x7e\x87\x8b\ +\x7e\x88\x8c\x7f\x87\x8b\x68\x6d\x73\x36\x3a\x40\x3b\x40\x46\x7f\ +\x8a\x8d\x00\x00\x00\x08\x07\x04\x0d\x0a\x06\x3f\x30\x20\x24\x1b\ +\x12\x4f\x3b\x26\x61\x48\x2f\x5f\x46\x2e\x35\x28\x1a\x17\x12\x0b\ +\x10\x0d\x08\x1a\x13\x0c\x24\x1b\x12\x28\x1e\x13\x2f\x24\x17\x31\ +\x25\x18\x2b\x21\x15\x26\x1d\x12\x29\x1f\x13\x2c\x21\x15\x31\x25\ +\x18\x2c\x21\x15\x24\x1b\x11\x24\x1b\x11\x22\x1a\x10\x1a\x13\x0d\ +\x17\x12\x0b\x18\x12\x0b\x1b\x15\x0d\x2a\x20\x14\x2f\x23\x16\x2b\ +\x21\x15\x36\x28\x1a\x2c\x21\x15\x31\x24\x17\x3d\x2e\x1d\x3b\x2c\ +\x1c\x2f\x24\x17\x2d\x22\x15\x2a\x20\x15\x23\x1b\x11\x20\x18\x0f\ +\x20\x18\x0f\x22\x19\x10\x25\x1b\x12\x2a\x1f\x14\x26\x1c\x12\x20\ +\x18\x10\x2a\x1f\x14\x24\x1b\x11\x30\x24\x17\x2b\x1f\x14\x26\x1c\ +\x12\x1f\x17\x0f\x21\x19\x10\x1d\x16\x0e\x20\x17\x10\x20\x18\x10\ +\x21\x19\x0f\x25\x1c\x12\x24\x1c\x12\x21\x19\x10\x1e\x17\x0e\x1e\ +\x17\x0f\x23\x1b\x11\x27\x1e\x13\x2c\x21\x15\x2e\x22\x16\x30\x24\ +\x17\x33\x26\x18\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\x20\x18\x0f\ +\x1a\x14\x0d\x26\x1d\x12\x29\x1f\x14\x30\x24\x17\x2d\x22\x15\x24\ +\x1b\x11\x1b\x15\x0d\x1d\x16\x0e\x1d\x16\x0e\x20\x18\x10\x26\x1d\ +\x13\x20\x18\x0f\x21\x19\x10\x26\x1d\x12\x29\x1f\x13\x2b\x20\x14\ +\x2d\x21\x16\x31\x24\x18\x37\x2a\x1b\x31\x24\x18\x2c\x21\x15\x2c\ +\x20\x15\x22\x1a\x10\x1f\x17\x0f\x20\x18\x10\x1d\x15\x0d\x22\x19\ +\x10\x1c\x15\x0e\x1e\x16\x0e\x1f\x18\x0f\x24\x1b\x11\x26\x1c\x12\ +\x27\x1d\x13\x2d\x22\x15\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x2b\ +\x21\x15\x2d\x22\x16\x2d\x22\x16\x2b\x20\x14\x23\x1a\x11\x1b\x14\ +\x0d\x22\x1a\x10\x20\x19\x10\x1c\x15\x0d\x1f\x17\x0e\x21\x19\x0f\ +\x23\x1a\x11\x2b\x21\x15\x28\x1e\x13\x27\x1d\x12\x26\x1c\x12\x1e\ +\x17\x0f\x27\x1e\x13\x2b\x20\x15\x2d\x22\x15\x2a\x1f\x14\x25\x1c\ +\x12\x2a\x22\x18\x31\x2f\x2c\x31\x35\x38\x3a\x40\x44\x46\x4c\x51\ +\x50\x57\x5d\x58\x60\x67\x60\x69\x71\x66\x70\x78\x6c\x75\x7e\x6c\ +\x77\x7f\x6e\x79\x80\x70\x7b\x83\x75\x80\x87\x76\x81\x88\x77\x81\ +\x89\x78\x82\x89\x78\x81\x88\x78\x80\x87\x78\x81\x87\x77\x82\x86\ +\x79\x82\x86\x56\x5d\x62\x4d\x53\x58\x70\x78\x7d\x7e\x87\x8b\x7e\ +\x86\x8a\x7c\x82\x87\x33\x37\x3c\x3f\x41\x46\x70\x78\x7c\x00\x00\ +\x00\x11\x0d\x08\x01\x01\x00\x2d\x22\x16\x24\x1b\x11\x54\x3e\x28\ +\x64\x4b\x31\x56\x40\x2a\x25\x1c\x12\x18\x12\x0c\x1b\x13\x0c\x1b\ +\x15\x0d\x23\x1a\x10\x23\x1a\x11\x28\x1e\x13\x28\x1e\x13\x26\x1d\ +\x13\x1f\x18\x0f\x22\x19\x10\x2c\x21\x15\x2d\x22\x15\x2a\x20\x14\ +\x26\x1c\x12\x25\x1c\x12\x27\x1d\x13\x20\x18\x0f\x1a\x13\x0c\x1c\ +\x15\x0d\x20\x18\x0f\x2e\x23\x16\x37\x29\x1b\x35\x28\x1a\x2d\x22\ +\x16\x28\x1e\x13\x2e\x22\x16\x2b\x20\x15\x2d\x21\x15\x35\x27\x19\ +\x34\x27\x19\x32\x25\x18\x25\x1c\x12\x1e\x16\x0e\x1c\x15\x0d\x1d\ +\x16\x0e\x20\x19\x0f\x26\x1d\x12\x23\x1b\x11\x1c\x15\x0e\x23\x1a\ +\x11\x22\x1a\x10\x22\x1a\x10\x24\x1b\x10\x2a\x20\x15\x2e\x22\x16\ +\x27\x1e\x13\x22\x19\x10\x1e\x16\x0e\x1e\x16\x0e\x1d\x15\x0d\x25\ +\x1c\x12\x28\x1d\x13\x1e\x17\x0e\x20\x18\x0f\x19\x13\x0c\x1f\x17\ +\x0f\x22\x1a\x10\x25\x1c\x11\x29\x1e\x14\x2f\x23\x17\x37\x29\x1a\ +\x32\x26\x18\x28\x1e\x13\x27\x1e\x13\x21\x19\x10\x23\x1b\x11\x22\ +\x19\x10\x2b\x21\x15\x32\x26\x18\x30\x24\x17\x24\x1b\x11\x25\x1c\ +\x12\x21\x19\x10\x26\x1c\x12\x20\x19\x0f\x23\x19\x10\x1e\x16\x0f\ +\x1f\x18\x0f\x21\x19\x10\x21\x19\x10\x28\x1e\x13\x2b\x20\x15\x2b\ +\x20\x15\x2d\x22\x16\x2c\x22\x15\x30\x23\x17\x2a\x1f\x14\x27\x1d\ +\x13\x29\x1e\x14\x26\x1c\x12\x21\x19\x0f\x21\x19\x0f\x1e\x17\x0f\ +\x20\x18\x0f\x22\x19\x10\x22\x1b\x10\x2c\x21\x15\x24\x1b\x11\x27\ +\x1d\x13\x21\x19\x10\x24\x1b\x11\x1c\x16\x0e\x1c\x15\x0e\x24\x1a\ +\x11\x29\x1f\x14\x2e\x23\x17\x27\x1e\x13\x21\x19\x0f\x28\x1e\x13\ +\x2e\x23\x16\x27\x1d\x12\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\x22\ +\x1a\x10\x22\x1a\x10\x23\x1b\x11\x1d\x15\x0d\x1c\x16\x0e\x1e\x17\ +\x0e\x29\x1e\x14\x33\x27\x19\x31\x24\x17\x31\x24\x18\x2e\x23\x19\ +\x39\x35\x2f\x2f\x34\x37\x39\x3f\x43\x45\x4b\x50\x4f\x57\x5c\x58\ +\x61\x67\x5e\x67\x6f\x66\x70\x78\x6b\x75\x7d\x6d\x78\x7f\x72\x7c\ +\x84\x72\x7d\x85\x74\x7f\x86\x76\x7f\x88\x77\x81\x89\x75\x7f\x86\ +\x78\x82\x89\x77\x81\x89\x7a\x84\x8b\x7b\x85\x8a\x7a\x84\x88\x7c\ +\x84\x88\x61\x66\x6b\x4c\x52\x58\x6e\x76\x7b\x83\x8d\x91\x73\x79\ +\x7e\x41\x47\x4c\x6b\x71\x75\x59\x5d\x60\x00\x00\x00\x1c\x15\x0d\ +\x0b\x08\x05\x33\x27\x19\x2b\x20\x15\x55\x40\x2a\x6e\x51\x35\x54\ +\x3e\x28\x2e\x22\x16\x1b\x14\x0c\x12\x0d\x09\x1d\x15\x0e\x22\x1a\ +\x10\x24\x1c\x12\x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x22\x1a\x10\ +\x21\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x26\x1d\x12\x25\ +\x1b\x12\x30\x24\x17\x25\x1c\x11\x1b\x15\x0d\x15\x10\x0a\x1a\x14\ +\x0d\x2d\x21\x15\x2b\x1f\x15\x2f\x23\x17\x2a\x1f\x14\x26\x1d\x12\ +\x25\x1d\x12\x25\x1c\x12\x27\x1d\x13\x2c\x21\x15\x2c\x21\x15\x2a\ +\x1f\x14\x27\x1d\x12\x26\x1d\x12\x23\x1a\x11\x26\x1c\x12\x25\x1c\ +\x12\x1f\x18\x0f\x23\x1a\x11\x22\x1a\x10\x26\x1d\x12\x23\x1b\x11\ +\x27\x1d\x12\x2b\x20\x14\x2f\x23\x16\x32\x25\x18\x33\x26\x18\x26\ +\x1c\x12\x24\x1b\x11\x22\x19\x10\x28\x1e\x13\x25\x1c\x12\x25\x1c\ +\x11\x2b\x20\x14\x26\x1d\x12\x20\x19\x0f\x1f\x17\x0f\x22\x1a\x11\ +\x24\x1c\x12\x26\x1d\x12\x2b\x20\x15\x30\x24\x17\x2e\x23\x16\x32\ +\x26\x18\x2a\x1f\x14\x24\x1b\x11\x23\x1b\x11\x20\x18\x0f\x24\x1b\ +\x11\x28\x1e\x14\x28\x1e\x14\x27\x1d\x13\x24\x1c\x11\x26\x1d\x13\ +\x24\x1b\x11\x24\x1c\x11\x2c\x20\x15\x29\x1f\x13\x26\x1c\x12\x27\ +\x1d\x13\x27\x1d\x13\x27\x1d\x13\x2e\x23\x16\x30\x24\x17\x30\x23\ +\x17\x38\x29\x1b\x33\x26\x18\x32\x25\x18\x2a\x20\x15\x2f\x23\x16\ +\x2e\x23\x16\x2f\x23\x16\x2b\x21\x15\x20\x18\x0f\x27\x1d\x13\x24\ +\x1b\x11\x27\x1e\x13\x2b\x20\x15\x27\x1d\x13\x27\x1e\x13\x27\x1e\ +\x13\x30\x24\x17\x30\x24\x17\x2e\x23\x16\x25\x1c\x12\x21\x19\x10\ +\x2c\x21\x15\x2b\x20\x15\x25\x1b\x11\x2a\x20\x14\x28\x1e\x14\x28\ +\x1e\x13\x2f\x23\x17\x2b\x20\x15\x2e\x23\x16\x1f\x17\x0f\x1d\x16\ +\x0e\x24\x1b\x11\x21\x19\x10\x1f\x18\x0f\x21\x19\x10\x29\x1f\x14\ +\x2d\x22\x16\x35\x28\x1a\x3a\x2b\x1c\x30\x25\x1a\x2b\x29\x26\x2f\ +\x34\x37\x39\x3e\x42\x43\x49\x4e\x4d\x55\x5a\x58\x60\x67\x5f\x68\ +\x6f\x69\x72\x79\x6a\x73\x7c\x6e\x78\x80\x74\x7d\x85\x74\x7e\x87\ +\x75\x7f\x86\x74\x7e\x86\x78\x83\x8a\x78\x82\x89\x79\x83\x8a\x77\ +\x82\x89\x78\x83\x89\x7c\x86\x8c\x7b\x85\x8b\x7b\x84\x88\x7d\x85\ +\x8a\x5f\x65\x6a\x4e\x53\x5a\x73\x7a\x7f\x59\x5f\x65\x63\x6a\x6f\ +\x83\x8d\x91\x6e\x75\x78\x00\x00\x00\x0f\x0b\x07\x00\x00\x00\x21\ +\x19\x10\x25\x1b\x11\x53\x3f\x29\x6a\x4f\x34\x5c\x44\x2c\x32\x26\ +\x18\x23\x1a\x11\x20\x18\x0f\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\ +\x24\x1b\x12\x26\x1c\x11\x23\x1a\x11\x1e\x17\x0e\x1b\x14\x0d\x21\ +\x19\x10\x23\x1b\x11\x24\x1b\x12\x27\x1d\x13\x26\x1c\x12\x2a\x20\ +\x14\x25\x1c\x11\x26\x1c\x12\x1d\x16\x0e\x20\x19\x10\x28\x1e\x13\ +\x33\x26\x19\x2d\x22\x16\x2d\x22\x16\x26\x1d\x13\x1c\x16\x0e\x1d\ +\x15\x0e\x26\x1d\x12\x2a\x1f\x14\x2f\x23\x16\x23\x1a\x11\x29\x1f\ +\x13\x2a\x20\x14\x28\x1e\x13\x26\x1d\x12\x22\x1a\x10\x24\x1b\x11\ +\x22\x19\x10\x24\x1b\x11\x23\x1a\x10\x20\x18\x0f\x21\x19\x0f\x28\ +\x1d\x13\x28\x1e\x13\x2e\x22\x16\x31\x24\x17\x25\x1c\x12\x2b\x20\ +\x15\x25\x1c\x12\x2f\x23\x16\x2b\x20\x14\x26\x1d\x12\x2e\x23\x16\ +\x25\x1c\x12\x28\x1e\x13\x24\x1b\x11\x23\x1a\x11\x25\x1c\x12\x27\ +\x1d\x13\x2a\x1f\x14\x31\x25\x17\x35\x28\x19\x37\x2a\x1a\x34\x27\ +\x19\x30\x24\x17\x28\x1e\x14\x21\x19\x10\x25\x1b\x12\x2c\x21\x15\ +\x23\x1b\x11\x1e\x17\x0e\x28\x1e\x13\x2a\x1f\x14\x2a\x1f\x14\x2f\ +\x23\x16\x30\x24\x17\x28\x1f\x13\x26\x1c\x12\x29\x1f\x14\x2c\x22\ +\x16\x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x2f\x23\x16\x37\x29\x1a\ +\x30\x24\x17\x39\x2b\x1c\x33\x27\x18\x2f\x23\x17\x33\x26\x18\x2b\ +\x21\x15\x2d\x22\x16\x22\x19\x10\x27\x1d\x13\x1e\x16\x0e\x24\x1b\ +\x11\x27\x1d\x13\x21\x19\x10\x21\x19\x10\x22\x1a\x10\x23\x1a\x11\ +\x21\x19\x10\x26\x1c\x12\x2b\x20\x15\x2a\x20\x14\x2c\x22\x15\x29\ +\x1f\x14\x22\x1a\x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x28\x1f\ +\x14\x29\x1e\x13\x33\x26\x19\x2e\x22\x16\x2b\x20\x15\x28\x1f\x13\ +\x28\x1e\x13\x24\x1b\x11\x26\x1c\x12\x26\x1c\x12\x2b\x20\x15\x38\ +\x2a\x1b\x47\x35\x22\x4a\x38\x26\x28\x26\x23\x2f\x34\x36\x38\x3e\ +\x41\x43\x49\x4e\x4d\x55\x5a\x56\x5e\x64\x5e\x68\x6f\x67\x70\x78\ +\x6a\x73\x7d\x6e\x78\x81\x72\x7b\x84\x74\x7d\x86\x75\x7f\x86\x41\ +\x48\x4d\x52\x59\x60\x7f\x89\x90\x7a\x84\x8b\x79\x83\x8a\x7a\x84\ +\x8a\x7b\x85\x8b\x7b\x86\x8c\x7c\x87\x8b\x7f\x88\x8c\x7e\x86\x8a\ +\x68\x6e\x74\x4b\x50\x55\x35\x38\x3d\x80\x88\x8d\x7f\x88\x8c\x81\ +\x8a\x8d\x00\x00\x00\x15\x10\x09\x01\x00\x00\x26\x1d\x14\x29\x1f\ +\x14\x44\x33\x21\x61\x49\x30\x64\x4b\x31\x2b\x21\x16\x2a\x1f\x14\ +\x30\x25\x18\x33\x27\x19\x2c\x21\x15\x29\x1f\x14\x20\x18\x0f\x22\ +\x1a\x10\x24\x1b\x11\x24\x1b\x11\x20\x18\x0f\x1e\x16\x0e\x20\x18\ +\x0f\x26\x1d\x12\x27\x1d\x12\x29\x1e\x14\x29\x1e\x14\x27\x1d\x12\ +\x27\x1d\x13\x20\x18\x0f\x20\x18\x0f\x27\x1d\x12\x2d\x22\x16\x2f\ +\x23\x17\x29\x1f\x14\x23\x1a\x11\x23\x1a\x11\x23\x1a\x11\x1e\x16\ +\x0e\x1e\x16\x0e\x25\x1c\x11\x28\x1e\x13\x2b\x20\x14\x2c\x21\x15\ +\x2f\x24\x17\x31\x24\x17\x25\x1c\x11\x24\x1b\x11\x20\x18\x0f\x23\ +\x1a\x10\x22\x19\x10\x23\x1a\x10\x22\x19\x10\x1e\x16\x0e\x22\x1a\ +\x10\x25\x1b\x11\x23\x1b\x11\x1e\x16\x0e\x21\x19\x10\x1e\x16\x0e\ +\x20\x19\x10\x28\x1e\x13\x29\x1f\x14\x2b\x20\x15\x2c\x21\x15\x28\ +\x1e\x14\x24\x1c\x11\x20\x18\x0f\x20\x18\x0f\x1f\x17\x0f\x24\x1b\ +\x11\x28\x1e\x13\x32\x26\x18\x34\x27\x19\x38\x2b\x1b\x31\x25\x18\ +\x2d\x21\x16\x1b\x14\x0d\x27\x1e\x13\x29\x1e\x13\x24\x1b\x11\x1e\ +\x16\x0e\x26\x1c\x12\x2c\x21\x15\x2a\x1f\x13\x2f\x23\x16\x2e\x23\ +\x16\x2d\x21\x16\x28\x1e\x13\x28\x1e\x13\x2d\x22\x16\x2d\x21\x16\ +\x34\x27\x19\x34\x27\x1a\x35\x28\x1a\x39\x2a\x1b\x31\x24\x17\x2a\ +\x1f\x14\x26\x1c\x12\x29\x1f\x14\x2c\x21\x15\x2d\x22\x16\x27\x1d\ +\x13\x2d\x22\x16\x24\x1a\x10\x1d\x16\x0e\x1f\x17\x0f\x21\x19\x10\ +\x1b\x14\x0d\x1b\x14\x0c\x16\x11\x0b\x1d\x15\x0d\x1a\x14\x0d\x22\ +\x19\x11\x2d\x22\x16\x26\x1d\x12\x26\x1d\x13\x2b\x20\x15\x27\x1e\ +\x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x28\x1e\x13\x31\x25\x17\ +\x38\x29\x1b\x2e\x22\x16\x2e\x23\x17\x2d\x22\x15\x29\x1e\x13\x26\ +\x1c\x12\x22\x1a\x11\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x3b\x2c\ +\x1c\x3a\x2c\x1d\x2f\x2a\x25\x2f\x33\x36\x3a\x3f\x41\x41\x48\x4c\ +\x4c\x53\x59\x57\x5f\x65\x5e\x67\x6e\x65\x6f\x75\x6b\x73\x7c\x6f\ +\x78\x81\x72\x7b\x84\x72\x7c\x85\x6c\x75\x7c\x29\x2c\x2f\x42\x47\ +\x49\x5a\x61\x67\x7f\x8a\x91\x7a\x85\x8b\x7b\x85\x8c\x7b\x85\x8b\ +\x7c\x85\x8c\x7e\x89\x8f\x80\x89\x8e\x7e\x87\x8b\x84\x8d\x93\x47\ +\x4c\x50\x28\x2a\x2e\x6c\x73\x78\x81\x89\x8c\x81\x8b\x8e\x00\x00\ +\x00\x1a\x14\x0c\x00\x00\x00\x2a\x20\x16\x28\x1e\x14\x3a\x2c\x1c\ +\x5f\x47\x2e\x5b\x44\x2b\x29\x1f\x14\x1a\x13\x0d\x1f\x17\x0f\x2c\ +\x21\x15\x2c\x21\x15\x2c\x22\x16\x25\x1b\x12\x27\x1d\x12\x21\x19\ +\x10\x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x1e\x16\x0e\x1f\x17\x0f\ +\x1d\x16\x0e\x20\x18\x0f\x26\x1c\x13\x23\x1a\x11\x26\x1d\x13\x22\ +\x1a\x10\x1b\x15\x0d\x21\x19\x10\x32\x26\x18\x2e\x23\x16\x2a\x1f\ +\x14\x1f\x17\x0f\x1d\x16\x0e\x28\x1e\x14\x1d\x16\x0e\x1b\x14\x0c\ +\x20\x18\x0f\x28\x1e\x13\x27\x1d\x13\x2b\x20\x14\x2b\x20\x14\x2c\ +\x21\x15\x27\x1d\x12\x22\x1a\x10\x23\x1b\x11\x27\x1e\x13\x27\x1d\ +\x13\x2d\x22\x16\x2b\x20\x15\x26\x1d\x12\x25\x1c\x12\x24\x1c\x11\ +\x20\x18\x0f\x18\x12\x0b\x1e\x16\x0f\x21\x19\x10\x23\x19\x10\x25\ +\x1c\x12\x25\x1c\x11\x2a\x20\x14\x33\x26\x18\x31\x24\x17\x28\x1d\ +\x13\x28\x1e\x13\x25\x1c\x12\x24\x1b\x12\x27\x1e\x13\x2b\x21\x15\ +\x31\x25\x18\x35\x27\x19\x3a\x2c\x1c\x34\x28\x19\x28\x1e\x13\x1f\ +\x18\x0f\x33\x26\x18\x2b\x20\x15\x2a\x1f\x14\x23\x1b\x11\x27\x1c\ +\x12\x22\x19\x10\x28\x1e\x13\x2a\x20\x14\x26\x1d\x12\x27\x1d\x13\ +\x2c\x22\x15\x2a\x20\x14\x22\x19\x11\x20\x18\x10\x27\x1e\x13\x27\ +\x1d\x13\x2d\x22\x16\x2b\x21\x15\x24\x1b\x11\x20\x18\x0f\x21\x18\ +\x10\x25\x1c\x11\x29\x1f\x13\x2f\x23\x17\x2a\x1f\x14\x34\x27\x19\ +\x30\x24\x16\x30\x24\x17\x26\x1c\x12\x26\x1d\x12\x20\x18\x0f\x1b\ +\x15\x0d\x1c\x15\x0e\x1c\x15\x0e\x1a\x13\x0d\x21\x18\x10\x28\x1e\ +\x13\x24\x1b\x11\x22\x1a\x11\x25\x1c\x11\x27\x1d\x12\x26\x1c\x11\ +\x1f\x17\x0e\x1a\x14\x0d\x24\x1b\x11\x26\x1c\x12\x31\x24\x18\x2a\ +\x20\x14\x25\x1c\x12\x24\x1c\x12\x24\x1b\x11\x22\x1a\x11\x1e\x16\ +\x0e\x20\x18\x10\x22\x1a\x10\x25\x1b\x12\x2e\x22\x16\x39\x2b\x1c\ +\x3f\x36\x2b\x2e\x32\x35\x3a\x3e\x41\x41\x47\x4c\x4a\x52\x57\x56\ +\x5d\x64\x5f\x67\x6f\x65\x6e\x75\x6a\x74\x7b\x70\x79\x82\x73\x7c\ +\x85\x74\x7e\x85\x49\x4f\x55\x5b\x61\x65\x66\x6d\x6f\x3c\x42\x46\ +\x61\x69\x70\x7f\x89\x90\x7b\x85\x8c\x7c\x86\x8d\x7c\x85\x8c\x7e\ +\x86\x8d\x7f\x88\x8e\x7f\x88\x8c\x81\x8a\x8e\x43\x48\x4d\x66\x6a\ +\x6e\x58\x5c\x61\x68\x6c\x72\x84\x8c\x8f\x00\x00\x00\x1a\x14\x0d\ +\x00\x00\x00\x1c\x16\x0e\x28\x1e\x14\x2d\x22\x16\x59\x43\x2c\x44\ +\x33\x21\x27\x1d\x13\x19\x13\x0c\x1b\x15\x0d\x29\x1f\x14\x2a\x20\ +\x14\x31\x25\x18\x2a\x20\x14\x22\x19\x10\x21\x19\x10\x23\x1b\x11\ +\x1c\x15\x0e\x19\x13\x0c\x23\x1b\x10\x21\x19\x10\x1b\x15\x0d\x20\ +\x18\x0f\x22\x19\x11\x27\x1e\x13\x2b\x20\x14\x29\x1f\x14\x24\x1c\ +\x11\x21\x1a\x10\x32\x26\x18\x30\x24\x17\x27\x1d\x12\x1e\x17\x0e\ +\x15\x10\x0a\x21\x19\x10\x1f\x17\x0f\x1d\x15\x0d\x1e\x17\x0e\x20\ +\x18\x0f\x22\x19\x10\x20\x18\x0f\x23\x1a\x11\x27\x1e\x13\x28\x1f\ +\x13\x25\x1c\x12\x25\x1c\x12\x2d\x22\x16\x2d\x21\x16\x2e\x23\x16\ +\x32\x25\x18\x31\x25\x18\x27\x1e\x13\x22\x1a\x10\x26\x1c\x12\x26\ +\x1d\x12\x26\x1d\x12\x29\x1f\x14\x26\x1d\x12\x20\x19\x10\x23\x1b\ +\x11\x29\x1f\x14\x2f\x23\x16\x30\x23\x17\x2c\x21\x16\x2f\x23\x17\ +\x28\x1e\x14\x24\x1b\x12\x26\x1c\x12\x2d\x22\x16\x30\x24\x17\x35\ +\x27\x19\x36\x29\x1a\x33\x26\x18\x28\x1f\x13\x21\x18\x0f\x2c\x21\ +\x15\x32\x25\x18\x33\x26\x18\x28\x1e\x13\x22\x1a\x10\x1e\x16\x0f\ +\x27\x1d\x13\x29\x1f\x14\x25\x1c\x12\x2c\x21\x15\x2f\x23\x16\x30\ +\x24\x17\x26\x1c\x12\x20\x18\x0f\x22\x1a\x11\x25\x1c\x12\x2b\x21\ +\x14\x29\x1f\x13\x22\x1a\x10\x23\x1a\x11\x24\x1a\x11\x28\x1e\x13\ +\x28\x1e\x13\x24\x1b\x11\x2a\x1f\x14\x32\x25\x18\x31\x25\x17\x36\ +\x28\x1a\x31\x25\x17\x2e\x23\x16\x27\x1e\x13\x1f\x17\x0f\x1f\x17\ +\x0f\x1f\x17\x0f\x1c\x15\x0d\x22\x19\x10\x1f\x17\x0e\x18\x12\x0b\ +\x1b\x15\x0d\x1a\x13\x0c\x1d\x15\x0e\x21\x18\x0f\x20\x18\x0f\x19\ +\x13\x0c\x1e\x16\x0e\x23\x1a\x11\x30\x24\x17\x2d\x22\x16\x27\x1d\ +\x12\x24\x1b\x11\x24\x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1b\x11\ +\x22\x1a\x10\x22\x19\x10\x26\x1c\x12\x36\x29\x1b\x42\x37\x2b\x2d\ +\x31\x33\x36\x3b\x3f\x40\x45\x4b\x4b\x51\x57\x56\x5e\x64\x5f\x67\ +\x6d\x63\x6b\x72\x6c\x74\x7d\x70\x79\x81\x72\x7c\x82\x7b\x84\x8b\ +\x13\x16\x19\x5f\x67\x6c\x80\x8c\x90\x57\x5d\x61\x1c\x1f\x23\x67\ +\x6f\x75\x80\x8a\x90\x7e\x88\x8f\x7d\x87\x8e\x7e\x86\x8d\x80\x88\ +\x8e\x82\x8a\x8f\x6a\x71\x74\x47\x4b\x50\x82\x88\x8c\x75\x79\x7e\ +\x50\x53\x5a\x69\x6d\x72\x00\x00\x00\x1d\x16\x0e\x00\x00\x00\x19\ +\x13\x0c\x2c\x21\x16\x25\x1c\x12\x4a\x37\x24\x3b\x2c\x1c\x2e\x23\ +\x16\x11\x0d\x08\x18\x12\x0c\x28\x1d\x13\x28\x1e\x13\x31\x25\x17\ +\x2b\x20\x15\x27\x1e\x13\x26\x1d\x12\x24\x1b\x11\x21\x1a\x10\x1b\ +\x15\x0d\x1f\x18\x0f\x23\x1b\x11\x24\x1b\x11\x20\x18\x0f\x22\x19\ +\x10\x27\x1d\x12\x27\x1d\x13\x25\x1c\x12\x29\x1f\x13\x20\x18\x10\ +\x2b\x21\x16\x32\x26\x18\x2e\x22\x16\x25\x1b\x11\x16\x11\x0a\x16\ +\x11\x0b\x1b\x14\x0d\x1d\x16\x0e\x19\x13\x0c\x1a\x13\x0d\x1c\x15\ +\x0d\x1b\x15\x0d\x1c\x16\x0e\x20\x18\x0f\x1f\x18\x0f\x1f\x18\x0f\ +\x22\x1a\x11\x2a\x1f\x14\x2d\x22\x15\x2d\x21\x16\x30\x24\x17\x32\ +\x25\x18\x2f\x24\x17\x28\x1f\x13\x26\x1c\x12\x2e\x22\x16\x2d\x21\ +\x15\x2d\x21\x15\x2d\x22\x16\x1e\x17\x0f\x20\x19\x0f\x23\x1a\x11\ +\x28\x1e\x14\x26\x1d\x13\x28\x1e\x13\x2a\x1f\x14\x27\x1d\x13\x22\ +\x19\x10\x21\x19\x10\x2c\x20\x15\x30\x24\x17\x30\x24\x17\x33\x26\ +\x19\x30\x24\x17\x2a\x20\x14\x21\x19\x0f\x25\x1c\x12\x31\x24\x17\ +\x2f\x23\x16\x2d\x21\x15\x27\x1d\x13\x1d\x16\x0e\x21\x19\x10\x23\ +\x1a\x11\x25\x1c\x12\x29\x1e\x13\x29\x1f\x14\x28\x1e\x13\x23\x1b\ +\x11\x25\x1c\x12\x20\x18\x0f\x1d\x16\x0e\x23\x1b\x11\x22\x1a\x10\ +\x1e\x16\x0e\x1e\x16\x0e\x29\x1f\x14\x2b\x20\x15\x24\x1b\x11\x22\ +\x1a\x10\x29\x1f\x14\x2f\x23\x17\x2d\x22\x16\x30\x24\x17\x32\x26\ +\x18\x39\x2b\x1c\x2f\x23\x17\x29\x1e\x13\x23\x1a\x11\x23\x1a\x11\ +\x20\x18\x10\x1e\x16\x0e\x16\x10\x0a\x15\x10\x0a\x1d\x16\x0e\x18\ +\x12\x0c\x18\x12\x0c\x22\x1a\x11\x1e\x17\x0e\x17\x12\x0b\x19\x12\ +\x0b\x23\x1a\x11\x2c\x21\x15\x30\x23\x17\x2c\x21\x15\x26\x1d\x12\ +\x29\x1f\x13\x2a\x1f\x14\x2a\x1f\x14\x27\x1e\x13\x28\x1e\x13\x2a\ +\x1f\x14\x23\x1b\x11\x43\x32\x21\x4a\x3c\x2d\x2d\x30\x33\x36\x39\ +\x3e\x40\x45\x4a\x4b\x51\x57\x54\x5b\x61\x5e\x66\x6d\x65\x6e\x76\ +\x69\x72\x7a\x6e\x78\x80\x75\x7e\x85\x59\x62\x68\x38\x3d\x40\x31\ +\x38\x3c\x69\x73\x79\x5e\x64\x6a\x34\x35\x39\x48\x4b\x52\x68\x70\ +\x77\x80\x8b\x92\x7d\x87\x8e\x7e\x86\x8d\x83\x8a\x91\x86\x8f\x93\ +\x49\x50\x56\x6c\x70\x76\x81\x87\x8b\x82\x89\x8c\x76\x79\x7f\x57\ +\x59\x60\x00\x00\x00\x29\x1f\x14\x00\x00\x00\x13\x0e\x0a\x2e\x23\ +\x16\x21\x18\x10\x3c\x2c\x1d\x37\x29\x1a\x37\x29\x1a\x0f\x0c\x07\ +\x18\x12\x0b\x26\x1d\x12\x2c\x21\x15\x37\x29\x1a\x34\x27\x19\x35\ +\x28\x19\x30\x24\x17\x2b\x20\x15\x2b\x20\x15\x20\x19\x0f\x1d\x16\ +\x0e\x20\x18\x0f\x22\x1a\x10\x1b\x14\x0d\x1e\x16\x0e\x1e\x17\x0f\ +\x1a\x14\x0c\x1f\x18\x0f\x20\x19\x0f\x1c\x15\x0d\x22\x19\x10\x24\ +\x1b\x11\x2a\x1f\x14\x28\x1d\x13\x20\x18\x0f\x16\x11\x0a\x20\x18\ +\x0f\x1e\x16\x0e\x21\x18\x0f\x24\x1b\x11\x24\x1b\x11\x1f\x18\x0f\ +\x1b\x14\x0d\x1b\x14\x0c\x16\x10\x0a\x12\x0e\x09\x13\x0e\x09\x1b\ +\x15\x0c\x27\x1d\x13\x31\x25\x18\x3a\x2b\x1c\x3a\x2b\x1c\x32\x25\ +\x18\x2e\x22\x16\x25\x1c\x12\x27\x1d\x13\x2c\x20\x15\x31\x25\x17\ +\x2e\x22\x16\x27\x1e\x13\x21\x19\x10\x1d\x16\x0e\x20\x18\x0f\x26\ +\x1d\x12\x29\x1f\x14\x26\x1c\x12\x2b\x20\x14\x29\x1f\x14\x27\x1d\ +\x13\x28\x1e\x13\x2e\x22\x16\x2e\x23\x17\x35\x28\x19\x32\x25\x18\ +\x28\x1e\x13\x1f\x18\x0f\x20\x18\x10\x24\x1b\x11\x26\x1d\x12\x2b\ +\x20\x15\x2d\x21\x16\x20\x18\x0f\x1b\x14\x0d\x20\x18\x10\x27\x1e\ +\x13\x29\x1f\x13\x27\x1e\x12\x20\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ +\x27\x1d\x13\x1e\x17\x0f\x1d\x17\x0e\x21\x19\x10\x22\x19\x10\x21\ +\x19\x10\x2d\x22\x16\x2c\x21\x15\x29\x1f\x14\x23\x1a\x11\x28\x1e\ +\x13\x2e\x23\x17\x2e\x22\x16\x2f\x23\x16\x3b\x2c\x1c\x3d\x2e\x1d\ +\x32\x26\x18\x29\x1f\x14\x1c\x15\x0e\x20\x18\x0f\x1f\x17\x0f\x1b\ +\x14\x0d\x17\x11\x0b\x19\x13\x0c\x1f\x17\x0f\x1c\x15\x0d\x17\x12\ +\x0b\x27\x1d\x13\x24\x1b\x11\x1d\x17\x0e\x1d\x16\x0e\x1f\x17\x0f\ +\x25\x1b\x11\x33\x26\x19\x24\x1b\x11\x24\x1b\x12\x2a\x1f\x14\x25\ +\x1c\x11\x2b\x20\x14\x36\x29\x1a\x27\x1d\x12\x41\x31\x20\x44\x34\ +\x22\x3f\x30\x20\x4e\x3e\x2e\x2b\x2e\x31\x33\x38\x3b\x3e\x43\x47\ +\x48\x4f\x54\x54\x5a\x60\x5d\x65\x6b\x65\x6d\x74\x6b\x73\x7c\x6f\ +\x79\x82\x77\x81\x88\x2f\x35\x39\x76\x7f\x83\x67\x6f\x75\x24\x28\ +\x2f\x37\x3a\x3f\x76\x7d\x81\x5c\x62\x66\x3c\x40\x46\x6b\x74\x7a\ +\x80\x8a\x91\x7f\x88\x8f\x81\x8a\x92\x79\x82\x88\x40\x46\x4d\x7e\ +\x85\x8c\x82\x89\x8d\x85\x8c\x90\x82\x88\x8b\x7a\x7d\x81\x00\x00\ +\x00\x30\x23\x16\x00\x00\x00\x1c\x15\x0e\x3e\x2f\x1f\x26\x1d\x12\ +\x3d\x2e\x1e\x36\x28\x19\x33\x27\x19\x11\x0d\x08\x16\x10\x0b\x21\ +\x18\x10\x2f\x23\x16\x33\x26\x19\x35\x28\x19\x36\x28\x1a\x30\x24\ +\x17\x32\x25\x18\x2c\x21\x15\x25\x1b\x11\x1b\x14\x0d\x1e\x17\x0e\ +\x19\x13\x0c\x1d\x16\x0e\x1c\x15\x0d\x17\x11\x0b\x16\x11\x0a\x1a\ +\x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x25\x1c\x12\x1d\x15\x0d\x25\x1c\ +\x12\x23\x1a\x11\x15\x10\x0a\x0f\x0b\x07\x15\x10\x0a\x1a\x13\x0c\ +\x1e\x17\x0e\x2a\x1f\x14\x30\x24\x18\x3b\x2d\x1e\x41\x32\x22\x44\ +\x34\x23\x46\x36\x24\x45\x35\x24\x48\x37\x25\x3a\x2c\x1d\x29\x1f\ +\x14\x2f\x23\x16\x3b\x2c\x1c\x3a\x2b\x1c\x33\x26\x19\x2e\x22\x16\ +\x28\x1e\x14\x27\x1d\x13\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x37\ +\x29\x1a\x29\x1f\x15\x21\x19\x10\x1e\x16\x0e\x23\x1b\x11\x26\x1d\ +\x12\x25\x1c\x11\x29\x1f\x14\x32\x26\x18\x2f\x24\x17\x26\x1d\x13\ +\x2d\x22\x16\x35\x27\x19\x39\x2a\x1b\x35\x28\x1a\x26\x1d\x12\x1e\ +\x17\x0e\x1e\x16\x0e\x21\x18\x10\x21\x18\x0f\x25\x1c\x12\x2b\x21\ +\x15\x28\x1e\x13\x1c\x15\x0d\x1f\x18\x0f\x21\x19\x10\x26\x1c\x12\ +\x24\x1b\x12\x21\x19\x10\x21\x19\x10\x24\x1c\x12\x2a\x20\x14\x23\ +\x1b\x11\x19\x14\x0c\x19\x13\x0c\x26\x1d\x12\x2a\x20\x14\x29\x1f\ +\x14\x23\x1a\x11\x28\x1d\x13\x24\x1b\x11\x1d\x16\x0e\x23\x19\x11\ +\x30\x24\x17\x27\x1e\x13\x2f\x23\x17\x34\x28\x19\x38\x2a\x1b\x2e\ +\x23\x16\x26\x1d\x12\x2b\x21\x15\x29\x1f\x14\x24\x1b\x11\x23\x1a\ +\x11\x1e\x17\x0f\x1e\x16\x0e\x1f\x18\x0f\x20\x19\x0f\x22\x1a\x10\ +\x27\x1e\x13\x23\x1b\x11\x20\x18\x0f\x1f\x17\x0f\x20\x17\x0f\x29\ +\x1f\x14\x23\x1a\x11\x1f\x17\x0f\x20\x17\x0f\x20\x18\x0f\x28\x1e\ +\x13\x33\x27\x19\x30\x24\x17\x4a\x38\x25\x43\x32\x21\x2b\x21\x15\ +\x3d\x32\x25\x2e\x30\x31\x33\x38\x3c\x40\x45\x48\x4a\x50\x55\x54\ +\x5b\x62\x5e\x66\x6c\x63\x6c\x73\x6d\x75\x7d\x71\x7b\x84\x6d\x78\ +\x80\x0b\x0d\x10\x78\x81\x87\x7b\x85\x8c\x55\x5b\x5f\x14\x15\x17\ +\x76\x7e\x81\x84\x8d\x91\x43\x47\x4b\x2a\x2f\x34\x72\x7c\x82\x82\ +\x8c\x93\x85\x8d\x95\x54\x58\x61\x65\x6a\x70\x80\x89\x8e\x84\x8d\ +\x91\x88\x90\x94\x81\x88\x8c\x83\x89\x8d\x00\x00\x00\x36\x2a\x1d\ +\x00\x00\x00\x10\x0d\x08\x45\x35\x23\x24\x1b\x11\x38\x2a\x1b\x3d\ +\x2d\x1d\x35\x28\x19\x10\x0c\x08\x10\x0c\x08\x1b\x15\x0d\x2a\x20\ +\x14\x23\x1a\x11\x28\x1e\x13\x2d\x22\x16\x29\x20\x14\x2f\x23\x16\ +\x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\x1b\x15\x0d\x19\x13\x0c\x18\ +\x12\x0b\x14\x0e\x0a\x13\x0e\x09\x13\x0f\x09\x14\x10\x0a\x26\x1c\ +\x13\x41\x32\x22\x3a\x2c\x1d\x3c\x2e\x1e\x48\x36\x24\x4d\x3b\x27\ +\x41\x31\x21\x3a\x2c\x1d\x33\x26\x19\x3e\x2f\x1e\x3a\x2c\x1d\x37\ +\x2a\x1b\x3a\x2c\x1d\x3c\x2d\x1e\x3f\x2f\x1f\x3a\x2c\x1c\x37\x29\ +\x1b\x36\x28\x1b\x34\x27\x1a\x38\x2b\x1c\x29\x1e\x14\x27\x1d\x13\ +\x2f\x23\x17\x35\x27\x19\x35\x28\x19\x32\x26\x18\x34\x27\x18\x27\ +\x1d\x13\x26\x1c\x12\x25\x1c\x12\x28\x1f\x14\x2f\x23\x17\x2b\x20\ +\x14\x26\x1c\x12\x20\x18\x0f\x1c\x15\x0d\x20\x18\x10\x25\x1c\x12\ +\x27\x1d\x13\x29\x1f\x13\x28\x1e\x13\x29\x1f\x13\x2b\x21\x15\x34\ +\x27\x19\x35\x28\x19\x35\x28\x19\x29\x1f\x14\x22\x19\x10\x27\x1d\ +\x12\x23\x1a\x11\x22\x1a\x10\x24\x1b\x12\x2a\x20\x14\x1e\x17\x0e\ +\x1e\x16\x0e\x22\x19\x10\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x1f\ +\x17\x0f\x21\x19\x10\x29\x1f\x14\x2c\x22\x15\x2f\x23\x17\x2c\x21\ +\x15\x22\x1a\x10\x23\x1a\x11\x28\x1f\x13\x23\x1b\x11\x24\x1b\x11\ +\x21\x19\x10\x20\x17\x0f\x19\x13\x0b\x24\x1a\x11\x26\x1c\x12\x20\ +\x19\x0f\x26\x1c\x12\x27\x1d\x13\x31\x25\x17\x2b\x20\x15\x27\x1d\ +\x12\x29\x1f\x13\x2d\x22\x16\x2c\x21\x15\x29\x1f\x13\x28\x1e\x13\ +\x28\x1e\x13\x27\x1e\x12\x2a\x20\x14\x29\x1f\x14\x26\x1c\x12\x25\ +\x1c\x12\x1e\x16\x0e\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\x1b\x14\ +\x0d\x1c\x15\x0d\x1a\x14\x0d\x19\x13\x0c\x24\x1b\x11\x29\x1f\x14\ +\x2e\x22\x16\x45\x34\x22\x2f\x23\x17\x22\x19\x10\x29\x22\x1a\x30\ +\x32\x31\x33\x38\x3b\x3c\x42\x45\x48\x4e\x53\x53\x59\x5e\x5b\x63\ +\x69\x65\x6e\x74\x6c\x75\x7c\x74\x7d\x85\x3e\x44\x4b\x47\x4b\x51\ +\x24\x28\x2e\x76\x80\x85\x4b\x52\x56\x3a\x3f\x42\x3b\x43\x46\x6f\ +\x78\x7d\x44\x49\x4e\x33\x36\x3a\x42\x48\x4d\x70\x79\x80\x83\x8d\ +\x94\x66\x6c\x74\x7e\x85\x89\x83\x8b\x90\x89\x91\x96\x86\x8e\x92\ +\x85\x8b\x90\x86\x8c\x91\x00\x00\x00\x3d\x2f\x1f\x00\x00\x00\x03\ +\x02\x01\x4c\x3a\x27\x25\x1b\x11\x3d\x2e\x1d\x3d\x2e\x1d\x35\x28\ +\x1a\x12\x0e\x09\x15\x10\x0b\x23\x1a\x10\x2b\x21\x14\x22\x1a\x10\ +\x2a\x20\x14\x26\x1c\x12\x31\x25\x18\x35\x28\x1a\x29\x1f\x13\x2a\ +\x20\x14\x25\x1c\x12\x1e\x16\x0e\x1a\x14\x0d\x19\x13\x0c\x17\x11\ +\x0b\x18\x12\x0b\x0f\x0b\x07\x19\x13\x0c\x4e\x3c\x28\x37\x2a\x1c\ +\x25\x1c\x12\x25\x1c\x12\x29\x1f\x14\x27\x1e\x13\x29\x1f\x13\x24\ +\x1c\x12\x1a\x14\x0d\x1c\x15\x0d\x24\x1b\x12\x33\x27\x19\x3c\x2e\ +\x1e\x44\x34\x23\x55\x41\x2c\x5a\x45\x2f\x57\x42\x2d\x49\x37\x25\ +\x2c\x21\x16\x2c\x21\x16\x26\x1c\x13\x27\x1d\x12\x2d\x21\x15\x37\ +\x29\x1a\x35\x28\x19\x33\x26\x19\x31\x25\x18\x2f\x23\x17\x27\x1e\ +\x13\x2d\x21\x15\x28\x1e\x14\x24\x1b\x11\x24\x1b\x11\x28\x1e\x13\ +\x28\x1e\x13\x29\x1f\x14\x24\x1b\x11\x21\x18\x0f\x1b\x15\x0c\x1e\ +\x17\x0e\x23\x1a\x11\x25\x1c\x11\x2c\x21\x15\x2f\x23\x16\x31\x25\ +\x18\x32\x26\x18\x2d\x22\x16\x26\x1c\x12\x28\x1e\x13\x21\x19\x10\ +\x2a\x20\x14\x33\x27\x19\x30\x24\x18\x1f\x17\x0e\x22\x19\x10\x25\ +\x1c\x12\x2c\x22\x15\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\x16\ +\x0e\x24\x1b\x11\x27\x1d\x13\x2b\x21\x15\x2e\x22\x16\x28\x1e\x13\ +\x22\x1a\x10\x20\x19\x0f\x24\x1c\x12\x29\x20\x14\x2e\x23\x16\x1f\ +\x16\x0e\x20\x18\x0f\x1c\x15\x0e\x1e\x16\x0e\x20\x18\x0f\x22\x1a\ +\x11\x22\x1a\x10\x28\x1e\x14\x22\x1a\x10\x28\x1e\x13\x23\x1a\x10\ +\x27\x1d\x13\x2c\x21\x15\x29\x1e\x14\x27\x1e\x13\x24\x1c\x11\x26\ +\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x28\x1e\x14\x2b\x20\x15\x2c\x21\ +\x15\x27\x1d\x12\x20\x18\x10\x1c\x16\x0e\x18\x12\x0c\x19\x13\x0c\ +\x19\x13\x0c\x1c\x16\x0e\x1e\x16\x0e\x24\x1b\x11\x29\x1f\x13\x38\ +\x2a\x1a\x25\x1c\x12\x26\x1d\x13\x35\x2a\x1f\x34\x32\x31\x32\x36\ +\x39\x3b\x40\x44\x47\x4d\x52\x52\x58\x5e\x5c\x64\x6a\x65\x6d\x73\ +\x6b\x75\x7c\x79\x83\x8c\x23\x28\x2d\x7f\x88\x90\x52\x58\x5d\x1f\ +\x21\x26\x30\x35\x37\x84\x8d\x91\x56\x5d\x61\x1e\x21\x25\x42\x44\ +\x47\x7d\x84\x88\x55\x5b\x5f\x3a\x40\x45\x72\x7a\x81\x84\x8c\x92\ +\x84\x8d\x93\x85\x8d\x94\x86\x8e\x93\x86\x8c\x91\x8b\x92\x96\x87\ +\x8e\x94\x00\x00\x00\x46\x37\x26\x05\x04\x02\x00\x00\x00\x42\x31\ +\x21\x29\x1e\x14\x40\x30\x1f\x3a\x2b\x1c\x39\x2c\x1c\x17\x11\x0b\ +\x1b\x15\x0d\x23\x1a\x11\x2b\x1f\x15\x21\x19\x10\x27\x1d\x13\x26\ +\x1d\x12\x29\x1f\x13\x2b\x20\x15\x21\x19\x10\x2a\x20\x14\x2a\x1f\ +\x14\x25\x1c\x12\x1d\x16\x0e\x1d\x16\x0e\x18\x13\x0c\x15\x10\x0a\ +\x12\x0e\x08\x13\x0f\x09\x28\x1e\x14\x15\x0f\x0a\x32\x27\x19\x48\ +\x37\x25\x46\x36\x24\x3d\x2e\x1e\x4e\x3b\x27\x4d\x3a\x28\x43\x33\ +\x22\x4f\x3c\x28\x62\x4c\x34\x31\x25\x18\x49\x38\x26\x6b\x53\x38\ +\x32\x25\x17\x60\x49\x31\x62\x4b\x33\x50\x3d\x29\x34\x28\x1a\x25\ +\x1d\x12\x25\x1c\x12\x25\x1c\x12\x2b\x20\x14\x2f\x23\x16\x30\x23\ +\x17\x30\x23\x18\x29\x1f\x14\x22\x19\x10\x33\x26\x18\x33\x27\x19\ +\x2d\x21\x15\x28\x1f\x13\x28\x1e\x13\x2c\x20\x15\x2f\x24\x16\x2d\ +\x22\x16\x2d\x22\x15\x27\x1e\x12\x26\x1d\x13\x26\x1c\x13\x26\x1c\ +\x12\x29\x1f\x14\x2f\x23\x16\x2f\x23\x16\x32\x25\x18\x31\x25\x18\ +\x23\x1a\x11\x23\x1a\x10\x29\x1e\x13\x26\x1d\x13\x31\x25\x18\x32\ +\x26\x18\x30\x25\x17\x27\x1d\x13\x29\x1e\x13\x27\x1e\x13\x27\x1d\ +\x13\x2b\x21\x14\x27\x1d\x12\x21\x18\x10\x1f\x17\x0e\x24\x1b\x11\ +\x22\x1a\x11\x1f\x18\x0f\x20\x18\x0f\x27\x1e\x13\x25\x1c\x11\x19\ +\x12\x0b\x1e\x16\x0e\x26\x1d\x12\x2c\x21\x15\x1f\x17\x0f\x1e\x17\ +\x0e\x1b\x14\x0d\x1d\x15\x0d\x20\x18\x0f\x19\x13\x0c\x1a\x14\x0c\ +\x21\x19\x10\x1f\x18\x0f\x22\x1a\x11\x1f\x17\x0f\x24\x1b\x11\x26\ +\x1c\x12\x22\x19\x10\x23\x1b\x11\x23\x1a\x11\x23\x1b\x11\x29\x1f\ +\x14\x2d\x23\x16\x30\x24\x17\x28\x1e\x13\x2c\x21\x15\x2d\x22\x15\ +\x2a\x1f\x14\x26\x1c\x12\x22\x19\x10\x1a\x14\x0d\x1c\x16\x0e\x1e\ +\x17\x0e\x1e\x17\x0e\x22\x1a\x11\x37\x29\x1a\x2d\x22\x16\x28\x1e\ +\x13\x28\x1e\x13\x35\x2a\x1e\x33\x31\x2e\x32\x36\x39\x3a\x40\x43\ +\x45\x4b\x4f\x51\x58\x5c\x59\x61\x67\x62\x6b\x70\x6b\x75\x7a\x56\ +\x5d\x64\x32\x37\x3a\x72\x7c\x82\x7b\x85\x8b\x3c\x40\x44\x2b\x2e\ +\x30\x7c\x86\x8a\x79\x83\x86\x37\x3a\x3d\x31\x33\x37\x81\x8a\x8f\ +\x43\x48\x4b\x00\x00\x00\x2f\x35\x3a\x74\x7e\x82\x83\x8c\x90\x86\ +\x8e\x95\x88\x90\x97\x89\x91\x96\x8a\x90\x95\x88\x8e\x92\x00\x00\ +\x00\x5e\x49\x34\x0a\x07\x05\x00\x00\x00\x41\x31\x21\x37\x29\x1b\ +\x3d\x2e\x1d\x55\x3f\x29\x41\x31\x20\x21\x19\x0f\x15\x0f\x0a\x1a\ +\x13\x0c\x1c\x14\x0d\x19\x12\x0c\x25\x1c\x11\x25\x1c\x12\x23\x1b\ +\x11\x24\x1b\x11\x1d\x16\x0e\x1e\x17\x0f\x23\x1a\x11\x23\x1a\x11\ +\x24\x1a\x11\x1e\x16\x0e\x19\x12\x0b\x1a\x13\x0c\x17\x11\x0b\x15\ +\x0f\x0a\x23\x1a\x11\x15\x0f\x09\x2e\x22\x16\x37\x2a\x1c\x35\x29\ +\x1a\x1f\x17\x0f\x34\x27\x1a\x40\x30\x1f\x19\x13\x0c\x48\x37\x26\ +\x78\x5c\x40\x0d\x0a\x06\x3e\x2f\x20\x6b\x52\x38\x2b\x20\x15\x4e\ +\x3b\x27\x71\x57\x3b\x57\x43\x2d\x2c\x21\x16\x27\x1d\x13\x24\x1a\ +\x11\x25\x1c\x12\x24\x1b\x11\x26\x1d\x12\x2d\x22\x15\x39\x2b\x1b\ +\x2f\x23\x16\x27\x1d\x12\x2d\x22\x16\x36\x29\x1a\x2c\x21\x15\x2e\ +\x23\x16\x22\x19\x10\x2b\x20\x14\x2d\x21\x16\x34\x27\x19\x35\x28\ +\x1a\x26\x1d\x12\x21\x19\x10\x1f\x18\x0f\x24\x1b\x11\x2a\x1f\x14\ +\x2e\x22\x15\x2d\x22\x15\x39\x2b\x1b\x31\x25\x17\x25\x1c\x12\x21\ +\x19\x10\x25\x1c\x12\x23\x1b\x11\x26\x1c\x12\x2c\x22\x15\x28\x1e\ +\x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x13\x21\x19\x10\x20\x17\x0f\ +\x22\x19\x10\x1e\x17\x0e\x14\x0f\x0a\x13\x0e\x09\x16\x10\x0a\x18\ +\x12\x0c\x1b\x14\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x18\x10\x1a\x14\ +\x0c\x18\x12\x0c\x1c\x15\x0d\x27\x1d\x12\x26\x1d\x12\x29\x1f\x13\ +\x25\x1b\x12\x23\x1a\x11\x1d\x16\x0e\x1e\x16\x0e\x25\x1c\x12\x25\ +\x1c\x12\x26\x1d\x13\x21\x19\x10\x25\x1c\x12\x25\x1c\x11\x25\x1b\ +\x11\x2a\x20\x14\x2d\x22\x15\x27\x1e\x12\x30\x25\x17\x38\x2a\x1b\ +\x35\x28\x19\x28\x1e\x13\x2a\x20\x15\x2a\x1f\x14\x27\x1e\x13\x28\ +\x1e\x13\x27\x1d\x12\x24\x1a\x11\x2e\x22\x16\x1e\x17\x0e\x1f\x18\ +\x0f\x27\x1d\x13\x33\x26\x19\x46\x35\x23\x21\x19\x10\x26\x1c\x12\ +\x2c\x23\x19\x34\x30\x2c\x30\x35\x38\x3b\x40\x44\x46\x4c\x51\x51\ +\x58\x5d\x5b\x62\x67\x63\x6a\x70\x72\x7b\x82\x30\x35\x3b\x45\x4b\ +\x4f\x42\x4a\x50\x70\x7b\x7e\x31\x34\x37\x4a\x4f\x53\x40\x44\x49\ +\x63\x6b\x6f\x42\x46\x4a\x36\x3a\x3f\x48\x4e\x53\x1b\x1d\x1e\x00\ +\x00\x00\x07\x08\x0a\x3e\x44\x4a\x74\x7c\x80\x88\x91\x96\x8b\x93\ +\x99\x89\x90\x98\x8c\x92\x98\x8a\x91\x96\x00\x00\x00\x63\x4d\x37\ +\x11\x0d\x08\x07\x06\x03\x34\x27\x1a\x22\x19\x10\x27\x1e\x13\x41\ +\x31\x20\x36\x28\x1a\x18\x12\x0b\x11\x0d\x09\x12\x0d\x08\x1e\x17\ +\x0e\x17\x11\x0b\x1d\x16\x0e\x20\x18\x10\x2c\x21\x15\x1e\x17\x0f\ +\x15\x10\x0a\x18\x12\x0b\x1a\x14\x0d\x1b\x14\x0d\x24\x1b\x11\x30\ +\x24\x17\x24\x1b\x11\x23\x1b\x11\x1d\x16\x0e\x17\x11\x0b\x1a\x13\ +\x0c\x13\x0e\x0a\x38\x2a\x1b\x50\x3d\x29\x4e\x3b\x26\x12\x0d\x09\ +\x48\x36\x24\x4f\x3c\x27\x0d\x0b\x06\x41\x33\x22\x50\x3d\x2a\x25\ +\x1c\x13\x2e\x23\x17\x5e\x48\x30\x49\x37\x25\x3f\x30\x1f\x5f\x48\ +\x31\x45\x34\x23\x27\x1d\x13\x2d\x22\x16\x23\x1b\x10\x1d\x16\x0d\ +\x1f\x17\x0e\x25\x1b\x11\x2a\x20\x14\x31\x25\x17\x2b\x21\x15\x21\ +\x19\x10\x21\x18\x0f\x28\x1f\x13\x26\x1c\x12\x30\x24\x17\x2b\x20\ +\x14\x23\x1b\x12\x27\x1d\x13\x2a\x20\x14\x2e\x23\x15\x26\x1c\x12\ +\x1e\x16\x0e\x20\x18\x0f\x21\x19\x10\x2d\x21\x16\x30\x23\x17\x32\ +\x25\x18\x31\x25\x18\x30\x24\x17\x2c\x21\x15\x29\x1f\x14\x1f\x17\ +\x0f\x1a\x14\x0d\x20\x18\x10\x20\x19\x0f\x2c\x21\x15\x2d\x22\x16\ +\x2c\x22\x16\x22\x1a\x10\x17\x11\x0b\x1a\x13\x0c\x19\x13\x0c\x15\ +\x10\x0a\x15\x10\x0a\x12\x0e\x08\x16\x11\x0b\x1c\x15\x0e\x1e\x16\ +\x0f\x21\x18\x10\x25\x1b\x12\x29\x1f\x14\x26\x1c\x12\x25\x1c\x12\ +\x28\x1f\x13\x30\x24\x17\x32\x25\x18\x2c\x21\x15\x2f\x22\x16\x21\ +\x19\x10\x21\x19\x10\x21\x19\x10\x24\x1b\x11\x23\x1a\x10\x27\x1d\ +\x13\x1e\x17\x0f\x21\x19\x0f\x28\x1e\x13\x29\x1f\x14\x30\x25\x17\ +\x2b\x21\x15\x32\x26\x18\x41\x31\x20\x3f\x2f\x1e\x30\x24\x18\x28\ +\x1e\x13\x2f\x23\x16\x31\x24\x18\x2a\x20\x14\x2d\x21\x15\x29\x1f\ +\x14\x29\x1e\x13\x28\x1e\x13\x1e\x16\x0d\x24\x1b\x11\x21\x19\x10\ +\x27\x1c\x13\x30\x24\x17\x2d\x21\x15\x28\x1e\x13\x2f\x24\x19\x38\ +\x33\x2c\x30\x35\x37\x3a\x3f\x43\x45\x4b\x4f\x4f\x56\x5c\x5c\x63\ +\x68\x65\x6c\x72\x66\x6d\x74\x37\x3c\x40\x80\x8b\x8f\x43\x4a\x4f\ +\x40\x44\x48\x35\x3a\x3b\x82\x8c\x8e\x41\x45\x49\x15\x16\x19\x46\ +\x4b\x4e\x89\x92\x96\x52\x58\x5b\x0f\x0f\x10\x00\x00\x00\x3b\x3e\ +\x40\x56\x5c\x60\x3f\x42\x47\x70\x77\x7c\x88\x90\x96\x85\x8c\x93\ +\x8c\x94\x99\x8a\x92\x96\x00\x00\x00\x71\x56\x3b\x1b\x14\x0c\x03\ +\x03\x01\x1b\x14\x0d\x1c\x15\x0d\x20\x19\x0f\x33\x25\x18\x43\x33\ +\x21\x18\x12\x0b\x11\x0d\x08\x19\x13\x0b\x26\x1c\x12\x1d\x16\x0f\ +\x1d\x16\x0e\x2b\x21\x15\x31\x25\x17\x19\x13\x0c\x12\x0e\x09\x12\ +\x0e\x09\x12\x0d\x08\x18\x12\x0b\x21\x19\x0f\x24\x1b\x11\x24\x1b\ +\x11\x26\x1c\x12\x19\x13\x0c\x11\x0d\x08\x11\x0c\x08\x11\x0e\x08\ +\x34\x28\x1a\x33\x28\x19\x3f\x2f\x1f\x14\x10\x0a\x48\x35\x23\x36\ +\x29\x1a\x2d\x22\x16\x52\x3f\x2b\x2c\x22\x16\x56\x42\x2e\x31\x25\ +\x19\x49\x37\x25\x55\x41\x2c\x35\x28\x1a\x40\x30\x20\x4b\x38\x26\ +\x2d\x21\x15\x2a\x1f\x14\x23\x1b\x11\x21\x18\x10\x20\x19\x10\x20\ +\x18\x0f\x25\x1c\x12\x22\x19\x10\x23\x1a\x11\x21\x19\x0f\x1e\x17\ +\x0f\x24\x1b\x12\x27\x1d\x13\x2a\x20\x14\x29\x1f\x14\x2a\x20\x14\ +\x1e\x17\x0f\x27\x1d\x12\x2b\x20\x15\x2d\x22\x16\x28\x1e\x13\x1d\ +\x16\x0e\x1d\x16\x0e\x20\x18\x10\x28\x1e\x13\x2b\x21\x14\x2b\x20\ +\x14\x29\x1f\x14\x2c\x21\x15\x2a\x1f\x14\x20\x19\x0f\x1e\x17\x0e\ +\x1e\x17\x0e\x25\x1c\x11\x31\x25\x18\x2b\x21\x15\x2a\x20\x14\x2b\ +\x21\x15\x24\x1b\x11\x1a\x13\x0c\x20\x18\x0f\x20\x18\x0f\x18\x12\ +\x0b\x11\x0d\x08\x17\x11\x0b\x18\x12\x0c\x17\x11\x0b\x19\x13\x0c\ +\x25\x1c\x11\x31\x25\x18\x2a\x1f\x15\x27\x1d\x13\x29\x1e\x13\x2a\ +\x1f\x14\x32\x26\x18\x33\x26\x18\x2e\x21\x16\x26\x1c\x12\x25\x1c\ +\x11\x23\x1a\x11\x2a\x20\x14\x19\x13\x0d\x1d\x16\x0e\x1e\x17\x0f\ +\x22\x19\x11\x21\x19\x10\x29\x1f\x14\x2c\x21\x15\x2b\x20\x14\x2d\ +\x21\x16\x39\x2b\x1b\x3b\x2c\x1c\x2e\x23\x16\x27\x1e\x13\x2e\x22\ +\x16\x2d\x22\x15\x28\x1d\x13\x24\x1c\x12\x26\x1c\x12\x27\x1d\x12\ +\x30\x23\x16\x25\x1b\x12\x1d\x16\x0e\x22\x1a\x10\x26\x1d\x13\x2e\ +\x23\x17\x3d\x2d\x1e\x25\x1b\x12\x2a\x20\x16\x36\x2f\x29\x2f\x33\ +\x36\x3a\x3f\x42\x44\x4a\x4e\x4f\x56\x5b\x5c\x62\x68\x5c\x64\x6a\ +\x59\x60\x66\x39\x3e\x42\x74\x7f\x84\x80\x8a\x8e\x1f\x21\x23\x45\ +\x49\x4c\x72\x7c\x7f\x30\x34\x36\x00\x00\x00\x37\x3b\x3e\x80\x89\ +\x8d\x85\x8e\x91\x2d\x2f\x31\x0b\x0c\x0e\x62\x67\x6a\x8b\x93\x97\ +\x34\x37\x3c\x36\x37\x3c\x6c\x73\x77\x89\x91\x97\x89\x91\x97\x8a\ +\x90\x95\x00\x00\x00\x87\x73\x60\x2f\x25\x1a\x10\x0c\x08\x22\x19\ +\x11\x2f\x24\x17\x27\x1d\x12\x46\x34\x22\x44\x33\x21\x26\x1c\x12\ +\x0e\x0b\x06\x10\x0b\x07\x21\x19\x10\x30\x24\x17\x21\x19\x0f\x21\ +\x19\x10\x18\x12\x0c\x15\x10\x0a\x16\x11\x0b\x0f\x0c\x07\x0d\x0a\ +\x06\x11\x0c\x07\x18\x12\x0b\x1d\x16\x0e\x1f\x18\x0f\x1d\x16\x0e\ +\x1c\x15\x0d\x14\x0f\x0a\x1c\x15\x0d\x1d\x16\x0e\x44\x33\x22\x38\ +\x2b\x1c\x32\x26\x18\x31\x24\x18\x49\x37\x24\x1e\x17\x0e\x45\x34\ +\x22\x31\x25\x18\x23\x1a\x11\x54\x41\x2c\x31\x25\x19\x2a\x20\x15\ +\x4a\x39\x26\x37\x2a\x1b\x1b\x14\x0d\x48\x37\x25\x41\x31\x21\x29\ +\x1e\x13\x23\x1b\x11\x23\x1b\x11\x23\x1a\x11\x26\x1d\x12\x1f\x18\ +\x0f\x1a\x14\x0d\x1e\x16\x0e\x22\x1a\x11\x1c\x15\x0e\x1c\x15\x0d\ +\x1b\x14\x0d\x20\x19\x0f\x2d\x22\x16\x28\x1e\x13\x1c\x15\x0e\x1a\ +\x13\x0c\x1b\x14\x0d\x1d\x16\x0e\x21\x19\x10\x1e\x17\x0e\x17\x12\ +\x0b\x19\x14\x0c\x20\x18\x10\x23\x1a\x11\x28\x1e\x13\x27\x1e\x13\ +\x2b\x20\x14\x28\x1e\x13\x1a\x14\x0c\x12\x0d\x09\x16\x10\x0b\x1e\ +\x17\x0f\x1f\x18\x0f\x21\x19\x10\x2a\x21\x15\x33\x26\x19\x20\x18\ +\x10\x1c\x14\x0e\x1a\x13\x0d\x1c\x15\x0d\x17\x11\x0a\x14\x10\x0a\ +\x19\x13\x0d\x1e\x17\x0e\x1b\x14\x0c\x1b\x14\x0c\x21\x19\x10\x29\ +\x20\x14\x2b\x20\x15\x20\x18\x0f\x27\x1d\x13\x2f\x23\x16\x38\x2a\ +\x1b\x37\x29\x1b\x2f\x23\x16\x2a\x1f\x14\x2b\x21\x15\x35\x28\x1a\ +\x35\x28\x1a\x31\x25\x18\x21\x19\x10\x21\x18\x10\x24\x1b\x11\x22\ +\x1a\x10\x2a\x1f\x14\x2d\x22\x16\x2b\x20\x15\x2f\x23\x16\x31\x25\ +\x18\x29\x1f\x14\x27\x1d\x12\x22\x1a\x10\x1f\x17\x0f\x22\x19\x10\ +\x20\x18\x10\x24\x1b\x11\x2a\x1f\x14\x2d\x22\x15\x30\x24\x17\x2f\ +\x23\x16\x28\x1e\x13\x27\x1d\x12\x2a\x1f\x14\x46\x34\x22\x4d\x3a\ +\x25\x30\x24\x17\x39\x2c\x1c\x37\x31\x29\x2f\x33\x36\x38\x3d\x41\ +\x43\x48\x4c\x4e\x54\x58\x5c\x62\x68\x3a\x42\x47\x5c\x64\x6a\x40\ +\x46\x4b\x43\x4a\x4f\x6e\x76\x7a\x2d\x2f\x31\x51\x57\x5b\x3a\x3f\ +\x43\x00\x00\x00\x01\x01\x01\x21\x23\x26\x54\x5a\x5e\x59\x5f\x63\ +\x49\x4c\x50\x49\x4d\x50\x4b\x4f\x53\x72\x7a\x7e\x32\x36\x3a\x63\ +\x68\x6c\x4c\x50\x54\x6f\x76\x7a\x8b\x94\x99\x8a\x90\x95\x00\x00\ +\x00\xa6\x9c\x94\x20\x1e\x1b\x01\x01\x01\x1f\x17\x0f\x3f\x30\x1f\ +\x28\x1e\x14\x40\x30\x1f\x4a\x37\x24\x25\x1c\x12\x0e\x0a\x06\x14\ +\x0f\x0a\x19\x13\x0c\x1c\x14\x0d\x21\x19\x10\x16\x11\x0a\x12\x0e\ +\x08\x16\x11\x0a\x14\x0f\x09\x0c\x08\x05\x0e\x0b\x07\x0f\x0b\x07\ +\x13\x0e\x09\x16\x11\x0b\x19\x12\x0c\x1e\x17\x0f\x20\x18\x0f\x12\ +\x0e\x08\x1a\x13\x0d\x1d\x15\x0e\x37\x2a\x1b\x2a\x1f\x14\x1f\x17\ +\x0f\x4e\x3b\x26\x2a\x20\x14\x1e\x17\x0e\x4a\x39\x24\x36\x28\x1a\ +\x1b\x15\x0d\x49\x38\x26\x5d\x48\x31\x0c\x0a\x05\x46\x36\x24\x54\ +\x40\x2c\x0f\x0b\x06\x3d\x2e\x1f\x33\x27\x1a\x21\x19\x10\x22\x1a\ +\x10\x1d\x15\x0e\x1b\x15\x0d\x29\x1f\x14\x1e\x17\x0e\x1b\x14\x0c\ +\x21\x19\x10\x1d\x16\x0e\x19\x13\x0c\x23\x1a\x11\x25\x1c\x12\x26\ +\x1d\x13\x26\x1d\x13\x29\x1e\x14\x1f\x17\x0f\x1f\x17\x0f\x20\x18\ +\x10\x1a\x14\x0d\x1c\x16\x0d\x20\x18\x0f\x1c\x15\x0e\x28\x1d\x13\ +\x28\x1e\x13\x25\x1c\x12\x2a\x1f\x14\x26\x1d\x12\x2c\x21\x15\x23\ +\x1b\x11\x18\x13\x0c\x13\x0f\x0a\x19\x13\x0b\x23\x1a\x11\x1c\x15\ +\x0e\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x29\x1f\x13\x1e\x17\x0e\ +\x24\x1b\x11\x23\x1a\x10\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x18\ +\x12\x0c\x1b\x15\x0d\x1e\x17\x0f\x21\x1a\x11\x2e\x23\x16\x2f\x22\ +\x16\x24\x1c\x11\x1d\x16\x0e\x28\x1f\x13\x2c\x21\x15\x35\x28\x19\ +\x33\x26\x18\x2f\x23\x16\x25\x1c\x12\x2e\x22\x16\x31\x25\x18\x2b\ +\x21\x15\x2d\x22\x16\x1f\x18\x0f\x21\x19\x10\x28\x1e\x13\x29\x1f\ +\x13\x2b\x20\x15\x32\x26\x18\x2f\x23\x17\x2c\x21\x15\x1f\x17\x0f\ +\x1a\x14\x0d\x1f\x17\x0e\x1b\x15\x0d\x1b\x15\x0d\x19\x13\x0c\x26\ +\x1c\x12\x2b\x20\x14\x29\x1f\x13\x36\x29\x1a\x34\x27\x19\x2e\x22\ +\x15\x2d\x22\x16\x29\x20\x13\x2a\x20\x14\x2a\x1f\x14\x2e\x22\x16\ +\x33\x26\x19\x39\x32\x29\x2e\x32\x35\x37\x3c\x40\x42\x47\x4b\x50\ +\x56\x5a\x59\x60\x65\x2f\x34\x37\x38\x3e\x42\x77\x7f\x85\x45\x4b\ +\x50\x29\x2c\x2e\x61\x65\x68\x7f\x85\x89\x3e\x43\x46\x01\x02\x02\ +\x0c\x0c\x0d\x50\x54\x58\x56\x5c\x60\x1a\x1c\x1f\x60\x65\x69\x87\ +\x90\x92\x59\x5d\x60\x2f\x30\x32\x4b\x50\x54\x8d\x9a\x9f\x5f\x66\ +\x6a\x20\x23\x25\x6e\x74\x79\x8b\x92\x96\x00\x00\x00\x77\x66\x5c\ +\x1f\x1c\x19\x00\x01\x00\x1e\x17\x0f\x36\x28\x1a\x24\x1b\x11\x3c\ +\x2e\x1d\x2c\x21\x15\x22\x1a\x10\x12\x0e\x08\x1a\x14\x0c\x18\x12\ +\x0b\x1d\x16\x0e\x19\x13\x0b\x19\x13\x0c\x1f\x17\x0f\x1b\x14\x0d\ +\x14\x0f\x0a\x14\x0f\x09\x11\x0d\x08\x12\x0d\x08\x16\x11\x0a\x1b\ +\x15\x0d\x19\x13\x0c\x1d\x16\x0e\x20\x18\x0f\x13\x0f\x09\x1f\x18\ +\x0f\x16\x10\x0a\x29\x1f\x15\x25\x1c\x12\x23\x1a\x10\x4e\x3b\x27\ +\x25\x1c\x11\x1f\x17\x0e\x36\x29\x1b\x47\x36\x23\x18\x12\x0b\x2e\ +\x22\x16\x49\x37\x25\x1f\x18\x0e\x3a\x2c\x1e\x3c\x2e\x1f\x12\x0e\ +\x08\x24\x1a\x11\x2f\x23\x17\x27\x1d\x13\x30\x24\x17\x23\x1a\x11\ +\x1e\x17\x0f\x25\x1c\x12\x20\x19\x10\x1a\x14\x0d\x1e\x16\x0e\x27\ +\x1d\x13\x20\x18\x0f\x21\x19\x10\x1e\x16\x0e\x29\x1f\x14\x2b\x20\ +\x15\x2b\x20\x14\x25\x1c\x12\x1f\x17\x0f\x1c\x16\x0e\x23\x1a\x11\ +\x24\x1b\x12\x28\x1e\x13\x29\x1f\x14\x1f\x18\x0f\x20\x19\x10\x25\ +\x1c\x12\x2c\x21\x15\x25\x1c\x12\x23\x1a\x11\x19\x13\x0c\x17\x12\ +\x0b\x1b\x15\x0d\x16\x11\x0a\x1f\x17\x0f\x1c\x16\x0e\x27\x1c\x13\ +\x32\x26\x19\x32\x25\x18\x2a\x20\x14\x21\x19\x10\x27\x1e\x13\x26\ +\x1c\x12\x24\x1c\x11\x29\x1e\x13\x26\x1d\x12\x24\x1b\x11\x20\x18\ +\x0f\x1f\x18\x0f\x20\x18\x0f\x1f\x18\x0f\x13\x0f\x09\x13\x0f\x0a\ +\x15\x10\x0a\x18\x12\x0b\x1e\x17\x0f\x2b\x20\x15\x31\x24\x17\x26\ +\x1c\x12\x30\x24\x17\x25\x1c\x12\x27\x1d\x12\x26\x1d\x12\x2f\x24\ +\x17\x26\x1d\x13\x22\x1a\x10\x1e\x17\x0e\x22\x19\x10\x27\x1e\x13\ +\x29\x1f\x14\x29\x1f\x14\x27\x1d\x13\x21\x19\x10\x24\x1b\x11\x1f\ +\x18\x0f\x1c\x15\x0e\x1e\x17\x0e\x2b\x21\x15\x2a\x20\x14\x2b\x20\ +\x15\x30\x24\x17\x2e\x22\x16\x30\x24\x17\x2d\x22\x16\x2c\x21\x15\ +\x26\x1d\x12\x29\x1f\x14\x29\x1f\x13\x23\x1b\x10\x29\x1f\x13\x35\ +\x2e\x25\x2e\x32\x35\x37\x3b\x3f\x43\x49\x4d\x3d\x43\x47\x52\x59\ +\x5d\x4f\x55\x5a\x4a\x51\x56\x73\x7e\x81\x52\x5a\x5e\x3a\x3d\x41\ +\x47\x4b\x4f\x83\x8a\x8f\x71\x78\x7d\x0c\x0d\x0f\x25\x26\x28\x7a\ +\x82\x87\x6b\x74\x77\x21\x23\x25\x3a\x3d\x40\x7b\x84\x86\x88\x92\ +\x92\x1e\x21\x22\x3b\x40\x46\x78\x83\x89\x41\x47\x4b\x00\x00\x00\ +\x32\x36\x39\x8d\x96\x9a\x00\x00\x00\x9c\x7f\x66\x23\x1d\x16\x00\ +\x00\x00\x10\x0c\x08\x20\x18\x10\x17\x11\x0b\x2c\x20\x15\x34\x28\ +\x19\x30\x24\x17\x13\x0f\x09\x1b\x15\x0d\x21\x18\x0f\x27\x1d\x13\ +\x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x1b\x15\x0c\x16\ +\x11\x0b\x11\x0d\x08\x17\x11\x0b\x1b\x15\x0d\x1b\x14\x0d\x16\x11\ +\x0b\x17\x12\x0b\x19\x13\x0c\x16\x11\x0a\x27\x1d\x14\x19\x13\x0c\ +\x1b\x14\x0c\x16\x11\x0b\x1b\x15\x0d\x40\x30\x20\x25\x1c\x12\x29\ +\x1f\x14\x2e\x22\x16\x2f\x23\x17\x17\x11\x0b\x1c\x15\x0e\x2a\x20\ +\x14\x22\x1a\x10\x30\x24\x18\x2f\x24\x17\x14\x0f\x09\x1d\x16\x0e\ +\x27\x1d\x12\x1f\x17\x0f\x24\x1c\x11\x22\x19\x10\x1d\x16\x0d\x1f\ +\x17\x0e\x1a\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x24\x1b\x11\x29\x1f\ +\x14\x30\x24\x17\x2a\x1f\x13\x2a\x20\x14\x2d\x22\x16\x34\x28\x19\ +\x27\x1d\x13\x22\x19\x10\x1b\x14\x0d\x21\x19\x10\x26\x1d\x12\x2b\ +\x20\x14\x2a\x20\x14\x26\x1d\x12\x21\x18\x10\x1b\x14\x0d\x21\x19\ +\x10\x24\x1b\x11\x23\x1b\x11\x17\x11\x0b\x1a\x13\x0c\x16\x11\x0b\ +\x19\x12\x0b\x19\x12\x0c\x20\x18\x0f\x1b\x14\x0c\x28\x1e\x13\x31\ +\x26\x18\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x22\x19\x11\x20\x18\ +\x10\x24\x1b\x11\x29\x1e\x14\x2a\x1f\x14\x29\x1f\x14\x20\x18\x0f\ +\x25\x1c\x12\x1d\x16\x0e\x13\x0f\x09\x15\x10\x09\x16\x10\x0b\x12\ +\x0d\x09\x1a\x15\x0d\x26\x1c\x12\x24\x1b\x11\x24\x1b\x11\x1e\x17\ +\x0e\x1a\x14\x0c\x28\x1e\x13\x27\x1e\x13\x2b\x21\x15\x29\x1e\x13\ +\x1c\x15\x0e\x22\x19\x11\x2e\x22\x16\x2e\x22\x16\x2e\x22\x16\x2e\ +\x22\x16\x2b\x20\x15\x29\x1f\x14\x2c\x21\x15\x25\x1c\x12\x1d\x15\ +\x0e\x1e\x17\x0e\x1d\x16\x0e\x29\x1f\x13\x22\x19\x10\x1f\x17\x0e\ +\x29\x1f\x13\x23\x1a\x10\x2c\x21\x16\x2b\x20\x15\x24\x1a\x11\x2e\ +\x22\x16\x2f\x23\x16\x2f\x23\x17\x30\x24\x17\x33\x2b\x22\x2c\x30\ +\x33\x35\x3a\x3d\x47\x4c\x50\x2a\x2d\x30\x3e\x44\x49\x60\x67\x6e\ +\x65\x6c\x72\x58\x5e\x63\x49\x4f\x53\x44\x4a\x4e\x50\x54\x59\x46\ +\x4a\x4f\x6f\x75\x78\x35\x37\x39\x54\x58\x5c\x5e\x64\x69\x51\x58\ +\x5c\x4f\x53\x56\x4e\x52\x55\x47\x4d\x51\x5e\x67\x68\x44\x4b\x4e\ +\x66\x6d\x74\x42\x48\x4d\x14\x16\x18\x00\x00\x00\x11\x13\x15\x86\ +\x8c\x92\x00\x00\x00\xb7\x97\x75\x29\x1f\x14\x00\x00\x00\x1a\x13\ +\x0c\x24\x1b\x11\x1b\x15\x0d\x34\x27\x1a\x3d\x2e\x1e\x32\x26\x18\ +\x0d\x0a\x06\x13\x0e\x09\x1b\x14\x0d\x28\x1e\x13\x22\x19\x10\x16\ +\x11\x0b\x19\x13\x0c\x19\x13\x0c\x1f\x17\x0e\x20\x18\x0f\x19\x13\ +\x0c\x1a\x13\x0c\x18\x12\x0b\x13\x0e\x09\x12\x0e\x09\x16\x11\x0b\ +\x1d\x16\x0e\x16\x10\x0b\x1e\x17\x0e\x1b\x14\x0d\x1d\x15\x0e\x25\ +\x1c\x12\x25\x1c\x11\x31\x25\x17\x25\x1c\x12\x25\x1b\x11\x30\x24\ +\x17\x3c\x2d\x1d\x14\x10\x0a\x1d\x16\x0e\x2e\x23\x17\x20\x19\x10\ +\x35\x28\x1a\x3c\x2d\x1e\x25\x1b\x12\x1d\x16\x0e\x20\x18\x0f\x1e\ +\x16\x0e\x2e\x22\x17\x23\x1b\x11\x1d\x16\x0e\x23\x1a\x11\x23\x1b\ +\x11\x1a\x13\x0c\x1b\x15\x0d\x22\x1a\x10\x27\x1d\x13\x27\x1d\x13\ +\x26\x1c\x12\x24\x1b\x11\x2b\x20\x15\x26\x1d\x12\x24\x1b\x11\x29\ +\x1f\x13\x24\x1b\x12\x22\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\ +\x12\x25\x1b\x11\x1d\x16\x0e\x1f\x18\x0f\x1c\x16\x0e\x1d\x15\x0e\ +\x1e\x17\x0e\x19\x13\x0c\x1b\x14\x0c\x1a\x13\x0c\x16\x11\x0b\x1b\ +\x14\x0d\x19\x13\x0c\x13\x0e\x09\x1a\x13\x0d\x1e\x17\x0f\x22\x19\ +\x10\x1d\x16\x0e\x1f\x17\x0e\x1d\x16\x0e\x23\x1a\x10\x2a\x20\x14\ +\x2b\x20\x15\x2b\x21\x15\x2e\x22\x16\x2d\x22\x16\x29\x1f\x14\x26\ +\x1d\x12\x19\x13\x0c\x1e\x16\x0e\x1e\x16\x0e\x1b\x14\x0d\x19\x13\ +\x0c\x1d\x16\x0e\x2a\x1f\x14\x31\x25\x18\x23\x1a\x11\x1f\x18\x0f\ +\x23\x1b\x11\x26\x1d\x12\x29\x1f\x14\x2d\x22\x16\x25\x1c\x12\x26\ +\x1c\x12\x2a\x1f\x14\x2c\x21\x15\x27\x1d\x13\x23\x1a\x11\x24\x1c\ +\x11\x22\x1a\x11\x28\x1e\x13\x31\x25\x17\x24\x1b\x12\x1a\x14\x0d\ +\x17\x12\x0b\x22\x1a\x10\x25\x1c\x12\x23\x1a\x11\x27\x1d\x12\x24\ +\x1b\x12\x2b\x21\x15\x2b\x20\x15\x2c\x21\x15\x32\x25\x18\x30\x24\ +\x17\x2f\x23\x16\x2b\x20\x15\x28\x23\x1d\x2e\x30\x32\x36\x3a\x3e\ +\x44\x4b\x4e\x2d\x31\x33\x48\x4e\x52\x63\x69\x6f\x6f\x75\x7c\x52\ +\x57\x5c\x6d\x71\x75\x35\x3a\x3e\x7e\x83\x87\x45\x47\x4c\x24\x25\ +\x27\x6e\x72\x77\x7a\x80\x86\x50\x54\x59\x2f\x31\x35\x6a\x71\x74\ +\x8a\x93\x95\x42\x46\x49\x0e\x11\x12\x6c\x76\x7a\x8a\x94\x99\x70\ +\x75\x7a\x23\x23\x26\x08\x08\x09\x30\x32\x35\x87\x8d\x92\x00\x00\ +\x00\xc1\xaa\x92\x2d\x25\x1c\x00\x00\x00\x1d\x15\x0e\x36\x28\x1a\ +\x1c\x15\x0e\x39\x2b\x1c\x3a\x2c\x1c\x35\x28\x1a\x07\x05\x03\x10\ +\x0c\x08\x10\x0c\x07\x1c\x14\x0e\x29\x1e\x14\x20\x18\x10\x1e\x16\ +\x0e\x1e\x16\x0e\x1f\x17\x0f\x24\x1b\x12\x20\x18\x10\x1c\x15\x0e\ +\x17\x12\x0b\x15\x10\x0a\x16\x11\x0a\x1a\x13\x0c\x17\x11\x0b\x15\ +\x10\x0a\x18\x13\x0c\x1d\x16\x0e\x23\x1a\x11\x2b\x20\x14\x2c\x21\ +\x15\x2c\x20\x15\x32\x27\x18\x23\x1a\x10\x29\x1f\x14\x34\x27\x19\ +\x17\x12\x0b\x27\x1d\x13\x3f\x30\x20\x1c\x14\x0d\x30\x24\x18\x3a\ +\x2b\x1d\x2b\x20\x14\x20\x18\x0f\x20\x18\x0f\x1d\x16\x0e\x24\x1b\ +\x11\x22\x1a\x10\x29\x1e\x13\x1f\x17\x0f\x1f\x18\x0f\x1f\x17\x0f\ +\x20\x19\x10\x2a\x1f\x15\x2b\x1f\x14\x2c\x21\x15\x2d\x22\x16\x29\ +\x1e\x14\x30\x23\x17\x27\x1d\x13\x27\x1d\x12\x2e\x22\x16\x2d\x21\ +\x16\x2d\x22\x16\x24\x1b\x11\x22\x1a\x11\x22\x1a\x10\x20\x18\x0f\ +\x1a\x13\x0c\x1d\x15\x0e\x1c\x15\x0d\x14\x10\x0a\x18\x13\x0c\x17\ +\x11\x0b\x17\x11\x0a\x15\x10\x0a\x1b\x15\x0d\x1e\x16\x0e\x1c\x15\ +\x0d\x17\x12\x0b\x1b\x14\x0d\x22\x19\x10\x1e\x17\x0f\x15\x0f\x0a\ +\x1b\x14\x0d\x18\x12\x0b\x1d\x16\x0e\x20\x18\x0f\x22\x19\x10\x27\ +\x1d\x12\x30\x24\x17\x30\x24\x17\x2d\x22\x16\x2b\x21\x15\x1e\x16\ +\x0e\x15\x10\x0a\x15\x10\x0a\x1d\x16\x0d\x1a\x14\x0c\x1b\x14\x0c\ +\x1e\x17\x0e\x24\x1b\x11\x2d\x22\x15\x23\x1a\x11\x22\x1a\x11\x26\ +\x1d\x12\x26\x1d\x13\x2b\x21\x14\x25\x1c\x11\x27\x1d\x12\x27\x1d\ +\x13\x2b\x20\x14\x2a\x1f\x14\x28\x1d\x13\x23\x1b\x11\x26\x1d\x13\ +\x2f\x23\x16\x2a\x20\x14\x2b\x21\x15\x23\x1b\x11\x24\x1b\x11\x23\ +\x1a\x11\x24\x1b\x11\x24\x1b\x11\x24\x1a\x11\x21\x19\x10\x26\x1d\ +\x12\x2c\x21\x16\x2a\x20\x14\x30\x24\x17\x30\x25\x17\x31\x25\x17\ +\x2a\x20\x14\x29\x22\x1b\x2e\x31\x32\x35\x3a\x3d\x44\x4a\x4d\x23\ +\x27\x29\x40\x45\x49\x63\x6a\x6f\x54\x5b\x62\x6f\x77\x7d\x3c\x3f\ +\x44\x2f\x33\x37\x84\x8a\x8f\x78\x7e\x81\x45\x48\x4c\x42\x47\x4b\ +\x8b\x95\x99\x60\x68\x6c\x20\x23\x28\x53\x58\x5d\x7b\x82\x86\x21\ +\x22\x24\x00\x00\x00\x2e\x32\x35\x7e\x88\x8c\x8d\x96\x9a\x31\x34\ +\x38\x67\x6b\x6e\x7d\x83\x88\x8b\x91\x96\x00\x00\x00\x9c\x87\x6f\ +\x33\x28\x1d\x02\x01\x00\x26\x1d\x13\x3a\x2b\x1c\x1e\x16\x0e\x2a\ +\x20\x14\x3d\x2d\x1d\x38\x2a\x1a\x0f\x0b\x07\x0e\x0a\x07\x17\x11\ +\x0b\x1f\x18\x0f\x28\x1e\x13\x27\x1e\x13\x1c\x15\x0d\x19\x13\x0c\ +\x24\x1b\x11\x29\x1e\x13\x25\x1b\x11\x1d\x16\x0e\x1d\x16\x0e\x1c\ +\x15\x0d\x18\x12\x0b\x18\x12\x0b\x14\x0f\x0a\x16\x11\x0b\x18\x13\ +\x0c\x1f\x17\x0f\x2b\x1f\x15\x23\x1a\x11\x20\x19\x10\x1a\x14\x0c\ +\x2f\x24\x17\x28\x1e\x14\x33\x26\x18\x3d\x2e\x1e\x13\x0f\x09\x28\ +\x1f\x14\x46\x35\x24\x18\x12\x0b\x31\x25\x18\x3f\x30\x1f\x2b\x20\ +\x15\x24\x1b\x11\x29\x1f\x14\x22\x1a\x10\x28\x1e\x13\x2b\x21\x15\ +\x27\x1d\x13\x29\x1e\x14\x21\x19\x10\x20\x19\x10\x23\x1a\x11\x23\ +\x1b\x11\x2e\x22\x16\x25\x1c\x12\x2f\x23\x16\x2e\x22\x16\x2e\x22\ +\x16\x2e\x23\x16\x2f\x23\x17\x37\x29\x1a\x33\x26\x18\x2c\x21\x15\ +\x24\x1b\x11\x1f\x18\x0f\x21\x19\x10\x1e\x17\x0e\x23\x1b\x11\x27\ +\x1d\x13\x19\x13\x0c\x17\x11\x0a\x18\x12\x0b\x1a\x13\x0c\x17\x12\ +\x0b\x16\x10\x0a\x1d\x17\x0e\x2e\x23\x17\x27\x1e\x13\x1e\x17\x0e\ +\x18\x12\x0c\x21\x19\x10\x1a\x13\x0c\x17\x11\x0b\x16\x10\x0a\x13\ +\x0e\x09\x14\x0f\x09\x18\x12\x0b\x1b\x14\x0d\x1e\x16\x0e\x25\x1c\ +\x12\x2a\x1f\x14\x27\x1d\x13\x27\x1d\x13\x26\x1d\x12\x1a\x14\x0c\ +\x19\x13\x0c\x1f\x17\x0f\x24\x1b\x11\x1f\x18\x0e\x1c\x15\x0e\x27\ +\x1d\x12\x24\x1a\x11\x2e\x22\x16\x30\x25\x17\x35\x28\x19\x29\x1e\ +\x14\x25\x1c\x11\x2a\x20\x14\x2e\x23\x16\x2b\x20\x14\x29\x1f\x14\ +\x2b\x21\x14\x28\x1e\x13\x24\x1a\x11\x2d\x21\x16\x2f\x23\x16\x30\ +\x24\x17\x2e\x22\x16\x28\x1e\x13\x26\x1d\x13\x25\x1c\x12\x21\x19\ +\x10\x22\x19\x10\x2a\x20\x14\x24\x1b\x11\x1f\x17\x0e\x22\x1a\x10\ +\x25\x1c\x12\x2d\x22\x16\x33\x27\x18\x2e\x22\x16\x2a\x1f\x15\x30\ +\x27\x1e\x32\x32\x31\x33\x38\x3b\x44\x4a\x4d\x31\x37\x39\x1e\x24\ +\x26\x43\x48\x4c\x0b\x0c\x0e\x55\x5a\x62\x72\x79\x7f\x70\x75\x79\ +\x7a\x80\x85\x81\x87\x8b\x78\x7e\x81\x4b\x4f\x54\x4f\x55\x5b\x5a\ +\x61\x64\x52\x55\x59\x57\x5c\x61\x39\x3c\x41\x0c\x0d\x0e\x00\x00\ +\x00\x23\x25\x27\x2d\x31\x36\x71\x77\x7d\x29\x2b\x30\x8b\x93\x97\ +\x8e\x96\x9c\x8e\x94\x99\x00\x00\x00\xc4\xb5\xa9\x4c\x41\x34\x07\ +\x05\x03\x00\x00\x00\x2f\x24\x17\x20\x18\x0f\x33\x27\x19\x3c\x2e\ +\x1d\x3a\x2b\x1c\x0f\x0c\x07\x0a\x07\x05\x19\x14\x0c\x25\x1c\x11\ +\x27\x1d\x12\x25\x1c\x12\x1b\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x24\ +\x1b\x11\x27\x1d\x12\x1f\x17\x0f\x18\x12\x0b\x1b\x14\x0d\x1e\x16\ +\x0e\x1f\x18\x0f\x19\x13\x0c\x11\x0d\x08\x11\x0d\x08\x1b\x15\x0d\ +\x1d\x16\x0e\x18\x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x31\x26\x19\x1b\ +\x14\x0d\x21\x18\x10\x2c\x20\x15\x0f\x0b\x07\x23\x1b\x11\x44\x34\ +\x23\x1b\x15\x0d\x2b\x21\x15\x40\x30\x20\x41\x31\x20\x36\x29\x1b\ +\x2d\x22\x16\x27\x1d\x12\x2c\x21\x15\x26\x1d\x13\x2b\x20\x15\x30\ +\x25\x17\x2b\x20\x14\x30\x24\x17\x23\x1a\x10\x1d\x16\x0e\x23\x1a\ +\x10\x26\x1c\x12\x27\x1d\x12\x22\x1a\x10\x23\x1a\x11\x2b\x21\x15\ +\x2f\x24\x17\x2d\x21\x15\x2a\x20\x14\x28\x1e\x13\x28\x1e\x13\x24\ +\x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x3c\x2d\x1d\x30\x24\x18\x20\x18\ +\x0f\x1a\x14\x0c\x14\x0f\x0a\x19\x13\x0c\x18\x12\x0b\x17\x12\x0b\ +\x1b\x15\x0d\x1f\x17\x0f\x25\x1c\x12\x21\x19\x10\x1d\x15\x0e\x1f\ +\x17\x0f\x1a\x13\x0d\x18\x13\x0c\x1d\x16\x0d\x20\x18\x0f\x22\x1a\ +\x11\x25\x1c\x12\x2d\x21\x15\x26\x1d\x12\x23\x1b\x11\x29\x1e\x14\ +\x28\x1e\x13\x2b\x21\x15\x2c\x21\x15\x1f\x17\x0f\x1f\x17\x0f\x22\ +\x1a\x11\x22\x19\x11\x22\x1a\x10\x20\x18\x0f\x20\x18\x0f\x25\x1c\ +\x11\x29\x1f\x14\x28\x1e\x13\x27\x1d\x13\x25\x1c\x11\x24\x1b\x11\ +\x2b\x20\x15\x22\x1a\x10\x24\x1c\x11\x27\x1e\x13\x2a\x20\x14\x28\ +\x1e\x13\x23\x1a\x11\x29\x1e\x14\x31\x25\x18\x30\x25\x17\x32\x26\ +\x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x14\x26\x1d\x12\x22\x19\x10\ +\x23\x1b\x11\x26\x1d\x13\x27\x1d\x13\x27\x1e\x13\x21\x19\x0f\x2e\ +\x23\x16\x2b\x21\x15\x27\x1d\x13\x24\x1b\x12\x33\x29\x1f\x37\x35\ +\x32\x33\x38\x3b\x42\x48\x4b\x34\x3a\x3c\x2e\x33\x36\x08\x08\x09\ +\x2f\x30\x33\x68\x6e\x75\x78\x80\x85\x7c\x83\x88\x7c\x82\x87\x80\ +\x87\x8c\x80\x87\x8a\x7c\x82\x85\x3e\x42\x46\x28\x2b\x2e\x76\x7c\ +\x7f\x88\x90\x93\x4b\x4f\x53\x09\x09\x09\x00\x00\x00\x61\x65\x68\ +\x6a\x6f\x75\x13\x14\x18\x63\x67\x6d\x8e\x96\x9a\x8e\x95\x9a\x8b\ +\x91\x96\x00\x00\x00\xc3\xb2\xa4\x59\x49\x39\x0a\x08\x05\x00\x00\ +\x00\x18\x12\x0c\x1c\x15\x0e\x1d\x16\x0e\x35\x28\x1a\x45\x33\x21\ +\x1b\x15\x0d\x17\x11\x0a\x21\x1a\x10\x26\x1c\x12\x25\x1c\x12\x2a\ +\x20\x14\x25\x1c\x12\x1c\x15\x0d\x1d\x16\x0e\x20\x18\x0f\x26\x1c\ +\x12\x23\x1a\x11\x15\x10\x0a\x14\x0f\x0a\x1d\x15\x0e\x20\x18\x0f\ +\x1f\x18\x0f\x14\x0f\x09\x0b\x08\x05\x17\x12\x0b\x14\x0f\x0a\x1c\ +\x15\x0d\x2d\x21\x16\x2e\x22\x17\x49\x38\x25\x19\x13\x0c\x16\x11\ +\x0b\x32\x25\x18\x14\x0f\x09\x1f\x18\x0f\x37\x2a\x1c\x1e\x17\x0f\ +\x1f\x18\x0f\x3a\x2c\x1d\x58\x43\x2e\x4d\x3b\x28\x32\x26\x18\x28\ +\x1e\x13\x2d\x22\x16\x26\x1c\x12\x24\x1b\x12\x2d\x22\x15\x2a\x20\ +\x14\x33\x26\x18\x28\x1e\x14\x21\x19\x10\x24\x1a\x11\x24\x1b\x11\ +\x27\x1c\x12\x1d\x16\x0e\x20\x17\x0f\x28\x1e\x13\x29\x1f\x13\x27\ +\x1e\x13\x28\x1e\x13\x26\x1c\x12\x25\x1c\x11\x23\x1b\x11\x1f\x17\ +\x0f\x21\x18\x0f\x2c\x20\x15\x23\x1b\x12\x1e\x17\x0f\x1c\x15\x0d\ +\x19\x13\x0c\x1e\x17\x0e\x1a\x14\x0c\x1e\x16\x0e\x22\x1a\x10\x1c\ +\x15\x0d\x21\x19\x10\x25\x1c\x12\x27\x1e\x13\x2a\x1f\x14\x1d\x16\ +\x0e\x1b\x15\x0d\x22\x1a\x10\x25\x1c\x12\x2b\x21\x15\x31\x25\x17\ +\x36\x29\x1a\x2d\x22\x16\x20\x18\x0f\x25\x1b\x12\x2c\x21\x15\x31\ +\x26\x18\x33\x27\x19\x22\x19\x10\x22\x1a\x10\x1e\x16\x0e\x1d\x16\ +\x0e\x1e\x16\x0e\x1b\x15\x0d\x1d\x15\x0d\x27\x1e\x13\x28\x1f\x14\ +\x30\x24\x17\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x29\x1e\x14\x2e\ +\x23\x17\x2c\x22\x16\x29\x1f\x13\x26\x1c\x12\x2a\x1f\x14\x26\x1c\ +\x12\x27\x1e\x14\x31\x25\x18\x28\x1e\x13\x2d\x22\x16\x38\x29\x1b\ +\x38\x29\x1b\x27\x1d\x12\x26\x1c\x12\x23\x1a\x11\x27\x1d\x12\x22\ +\x19\x11\x20\x18\x0f\x1f\x17\x0f\x1e\x17\x0e\x2e\x22\x16\x23\x1b\ +\x11\x24\x1b\x12\x28\x1e\x13\x33\x28\x1c\x34\x32\x2f\x32\x36\x39\ +\x45\x4a\x4d\x21\x25\x27\x00\x00\x00\x3b\x3e\x40\x6e\x73\x78\x73\ +\x7b\x80\x4f\x57\x5b\x6b\x71\x76\x7e\x85\x89\x7e\x86\x8a\x81\x89\ +\x8d\x83\x8a\x8f\x7b\x81\x86\x48\x4b\x4f\x59\x5d\x62\x8d\x95\x99\ +\x67\x6d\x71\x26\x26\x29\x2b\x2a\x2e\x85\x8c\x92\x8c\x95\x9a\x1b\ +\x1b\x21\x8d\x92\x98\x8c\x92\x97\x8d\x93\x98\x8d\x93\x98\x00\x00\ +\x00\xc6\xb9\xb0\x64\x51\x3f\x0e\x0b\x06\x01\x01\x01\x19\x12\x0c\ +\x21\x1a\x10\x17\x11\x0b\x3f\x30\x1e\x46\x34\x22\x29\x1f\x14\x17\ +\x12\x0b\x1f\x17\x0f\x1c\x15\x0d\x18\x12\x0b\x1c\x15\x0d\x16\x10\ +\x0b\x11\x0d\x08\x14\x0f\x0a\x1a\x13\x0c\x24\x1b\x11\x1f\x17\x0f\ +\x13\x0e\x09\x14\x0f\x0a\x19\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1a\ +\x13\x0c\x12\x0d\x08\x17\x11\x0b\x0c\x0a\x07\x2c\x21\x16\x41\x32\ +\x21\x46\x36\x24\x52\x3f\x2a\x15\x10\x0a\x15\x10\x0a\x29\x1f\x14\ +\x12\x0e\x08\x1d\x16\x0e\x32\x26\x19\x1c\x16\x0d\x19\x12\x0b\x38\ +\x2a\x1c\x38\x2a\x1c\x21\x19\x0f\x2b\x20\x14\x2d\x21\x15\x26\x1c\ +\x13\x24\x1b\x11\x26\x1c\x12\x25\x1c\x12\x27\x1e\x14\x30\x24\x17\ +\x2a\x20\x14\x1d\x16\x0f\x1e\x17\x0f\x21\x18\x0f\x20\x18\x0f\x20\ +\x18\x0f\x22\x19\x11\x28\x1e\x13\x28\x1e\x13\x25\x1c\x12\x29\x1f\ +\x14\x2b\x20\x15\x27\x1d\x13\x24\x1b\x11\x21\x19\x10\x22\x19\x10\ +\x23\x1b\x11\x1e\x17\x0f\x1d\x16\x0d\x1f\x17\x0e\x25\x1b\x11\x1e\ +\x17\x0e\x1e\x17\x0e\x1e\x16\x0e\x22\x19\x10\x1b\x14\x0d\x1d\x15\ +\x0e\x1f\x18\x0f\x2a\x20\x14\x31\x25\x17\x25\x1c\x11\x20\x18\x0f\ +\x1f\x17\x0f\x21\x18\x0f\x28\x1d\x13\x2a\x1f\x14\x2b\x20\x14\x2a\ +\x20\x14\x28\x1e\x13\x24\x1c\x12\x21\x19\x10\x28\x1f\x13\x2d\x22\ +\x15\x2f\x24\x17\x2a\x20\x14\x25\x1c\x12\x24\x1b\x11\x1d\x16\x0e\ +\x1c\x15\x0d\x19\x13\x0c\x24\x1a\x11\x28\x1d\x13\x29\x1f\x14\x2d\ +\x22\x16\x23\x1a\x10\x23\x1a\x10\x28\x1e\x13\x31\x25\x17\x33\x26\ +\x19\x2b\x21\x15\x29\x1e\x13\x27\x1d\x13\x21\x19\x10\x26\x1c\x12\ +\x26\x1d\x13\x27\x1d\x13\x2b\x20\x15\x32\x25\x18\x33\x26\x19\x29\ +\x1f\x13\x29\x1f\x14\x2b\x20\x14\x24\x1b\x11\x25\x1b\x11\x1b\x15\ +\x0d\x1c\x15\x0d\x23\x1a\x11\x2e\x22\x16\x25\x1c\x12\x29\x1f\x14\ +\x30\x24\x17\x2b\x21\x18\x2a\x2a\x27\x32\x36\x39\x42\x45\x49\x21\ +\x23\x25\x3d\x40\x44\x64\x69\x6d\x6c\x73\x77\x73\x7b\x7e\x43\x47\ +\x4a\x25\x29\x2c\x7a\x82\x86\x7f\x85\x89\x80\x86\x8b\x80\x89\x8d\ +\x83\x8c\x90\x7d\x83\x87\x43\x44\x49\x63\x65\x6a\x42\x46\x4b\x7a\ +\x7e\x83\x5c\x5d\x63\x5a\x5c\x63\x5b\x5f\x62\x54\x56\x5b\x8e\x94\ +\x99\x8f\x95\x9a\x8f\x95\x9a\x8e\x94\x99\x00\x00\x00\xc6\xb9\xb0\ +\x6f\x5d\x4a\x0f\x0b\x07\x00\x00\x00\x17\x11\x0b\x21\x19\x10\x1b\ +\x14\x0d\x3d\x2d\x1d\x3e\x2e\x1e\x20\x18\x0f\x15\x10\x0a\x1f\x17\ +\x0f\x1d\x16\x0d\x17\x12\x0b\x14\x0f\x09\x12\x0d\x09\x12\x0e\x09\ +\x13\x0f\x09\x16\x10\x0a\x21\x19\x0f\x23\x1a\x11\x18\x12\x0b\x11\ +\x0c\x08\x11\x0d\x09\x15\x10\x0a\x16\x10\x0a\x1b\x15\x0d\x1b\x14\ +\x0d\x15\x10\x0a\x0d\x0a\x06\x1c\x15\x0d\x20\x18\x0f\x21\x19\x10\ +\x43\x33\x22\x16\x11\x0a\x1d\x15\x0e\x2a\x1f\x14\x19\x13\x0c\x18\ +\x12\x0c\x30\x25\x18\x21\x19\x10\x0f\x0b\x06\x3a\x2c\x1d\x40\x31\ +\x20\x20\x18\x0f\x37\x2a\x1b\x2d\x23\x16\x2a\x20\x14\x29\x1f\x14\ +\x2d\x22\x16\x2c\x21\x15\x25\x1c\x12\x26\x1d\x12\x2a\x20\x15\x1d\ +\x16\x0e\x20\x18\x10\x27\x1d\x12\x1f\x17\x0e\x23\x1a\x10\x25\x1c\ +\x12\x29\x1f\x13\x23\x1b\x11\x24\x1b\x11\x26\x1d\x12\x2b\x20\x15\ +\x2c\x21\x16\x29\x1e\x14\x25\x1c\x12\x23\x1b\x11\x26\x1d\x12\x26\ +\x1d\x12\x22\x1a\x10\x21\x19\x10\x21\x19\x0f\x1e\x17\x0e\x1b\x15\ +\x0d\x1b\x14\x0c\x21\x19\x11\x20\x18\x10\x20\x18\x10\x24\x1c\x12\ +\x2c\x21\x15\x34\x27\x19\x2d\x22\x15\x25\x1c\x12\x1e\x17\x0f\x1d\ +\x15\x0e\x21\x19\x10\x22\x1a\x11\x29\x1f\x14\x2c\x21\x15\x25\x1b\ +\x11\x26\x1c\x12\x1c\x15\x0e\x1b\x15\x0d\x1d\x17\x0e\x28\x1e\x13\ +\x2e\x23\x17\x2c\x22\x15\x2e\x23\x16\x23\x1a\x11\x1c\x15\x0d\x1e\ +\x17\x0e\x21\x18\x0f\x20\x18\x0f\x22\x1a\x10\x28\x1e\x13\x30\x24\ +\x17\x24\x1b\x11\x23\x1b\x11\x29\x1f\x13\x31\x25\x17\x2b\x20\x14\ +\x26\x1d\x12\x25\x1c\x12\x1f\x18\x0f\x20\x19\x0f\x25\x1c\x11\x28\ +\x1e\x13\x29\x1f\x13\x32\x25\x18\x2e\x22\x16\x2a\x20\x14\x2a\x1f\ +\x14\x2d\x21\x16\x29\x1f\x13\x2b\x21\x14\x23\x1a\x11\x20\x19\x10\ +\x20\x19\x0f\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x22\x15\x2a\ +\x21\x16\x2a\x28\x25\x31\x36\x39\x3d\x42\x44\x4a\x4e\x51\x57\x5c\ +\x60\x60\x65\x6a\x6d\x72\x78\x74\x7b\x80\x11\x12\x13\x7c\x82\x86\ +\x46\x4d\x50\x68\x6d\x71\x82\x8a\x8f\x81\x8a\x8f\x81\x89\x8e\x87\ +\x8f\x94\x7f\x85\x89\x3f\x41\x45\x34\x35\x38\x7c\x83\x88\x8e\x95\ +\x9c\x5c\x5f\x66\x10\x10\x12\x82\x86\x8a\x8f\x94\x99\x90\x94\x99\ +\x90\x95\x9a\x8f\x93\x98\x00\x00\x00\xca\xc0\xbb\x7a\x68\x57\x12\ +\x0e\x09\x00\x00\x00\x0d\x0a\x06\x1c\x15\x0d\x19\x12\x0c\x33\x26\ +\x18\x34\x27\x19\x1d\x16\x0d\x1b\x14\x0d\x24\x1b\x11\x1d\x16\x0e\ +\x1a\x14\x0d\x14\x10\x0a\x1a\x13\x0c\x1b\x14\x0d\x1b\x14\x0d\x1d\ +\x15\x0d\x1e\x17\x0f\x28\x1e\x13\x29\x1f\x13\x1e\x17\x0e\x17\x11\ +\x0b\x17\x11\x0b\x19\x13\x0c\x1b\x14\x0c\x27\x1d\x13\x1c\x15\x0d\ +\x0c\x0a\x05\x2b\x20\x14\x1c\x15\x0e\x1c\x16\x0e\x54\x40\x2b\x12\ +\x0e\x07\x16\x10\x0a\x24\x1b\x11\x20\x18\x0f\x18\x12\x0c\x24\x1b\ +\x12\x34\x27\x1a\x21\x1a\x11\x58\x44\x2e\x52\x3f\x2b\x14\x0e\x08\ +\x5b\x45\x2f\x39\x2c\x1d\x1e\x16\x0e\x26\x1c\x12\x2b\x20\x15\x2a\ +\x20\x14\x27\x1d\x12\x28\x1e\x14\x2b\x20\x14\x22\x1a\x10\x21\x19\ +\x10\x2a\x1f\x14\x21\x18\x10\x24\x1b\x11\x26\x1c\x12\x27\x1d\x12\ +\x1f\x18\x0f\x22\x19\x10\x28\x1e\x13\x2c\x21\x15\x2b\x21\x15\x2e\ +\x22\x16\x2a\x20\x15\x24\x1b\x11\x2b\x20\x15\x2d\x22\x16\x31\x25\ +\x18\x34\x27\x19\x25\x1c\x11\x1b\x15\x0d\x17\x12\x0b\x1b\x14\x0c\ +\x1b\x14\x0d\x1e\x16\x0f\x1b\x14\x0d\x1f\x17\x0f\x21\x19\x0f\x29\ +\x1f\x14\x29\x1f\x14\x28\x1e\x13\x1e\x17\x0e\x1a\x13\x0c\x1d\x16\ +\x0e\x21\x19\x10\x23\x1a\x11\x29\x1e\x14\x2b\x20\x14\x2a\x1f\x14\ +\x23\x1a\x11\x1d\x16\x0e\x17\x12\x0b\x1c\x15\x0e\x28\x1d\x13\x2b\ +\x21\x15\x37\x2a\x1a\x2a\x1f\x14\x21\x19\x10\x18\x12\x0c\x1f\x17\ +\x0f\x22\x1a\x10\x27\x1d\x13\x2b\x20\x15\x2c\x21\x16\x20\x18\x0f\ +\x1e\x17\x0e\x20\x18\x0f\x2a\x20\x14\x2b\x20\x14\x28\x1f\x13\x24\ +\x1b\x11\x22\x1a\x10\x26\x1c\x12\x26\x1c\x12\x27\x1d\x13\x27\x1d\ +\x13\x2f\x23\x17\x2b\x20\x14\x2b\x20\x14\x26\x1d\x12\x28\x1e\x13\ +\x29\x1f\x14\x27\x1d\x12\x2c\x21\x15\x28\x1e\x13\x27\x1e\x13\x29\ +\x1f\x13\x28\x1e\x14\x24\x1b\x11\x23\x1b\x11\x29\x1f\x15\x2a\x27\ +\x23\x30\x33\x36\x3b\x3f\x41\x48\x4c\x4f\x55\x5a\x5e\x5e\x64\x69\ +\x6e\x74\x7a\x3e\x43\x48\x26\x26\x28\x87\x91\x94\x24\x27\x28\x46\ +\x4a\x4e\x77\x7f\x82\x81\x8a\x8f\x82\x8a\x91\x84\x8b\x91\x86\x8e\ +\x92\x88\x8e\x90\x4a\x4b\x4d\x5e\x60\x64\x88\x8e\x94\x76\x7b\x82\ +\x40\x42\x45\x90\x95\x99\x8f\x94\x99\x93\x96\x9b\x90\x94\x99\x91\ +\x96\x9b\x00\x00\x00\xc8\xbf\xb8\x83\x6b\x55\x14\x0f\x0a\x00\x00\ +\x00\x0b\x08\x05\x1e\x17\x0e\x18\x12\x0b\x2f\x24\x16\x32\x26\x18\ +\x1e\x16\x0e\x15\x10\x0a\x22\x1a\x11\x1e\x16\x0e\x19\x13\x0c\x18\ +\x12\x0c\x1e\x16\x0e\x1d\x16\x0e\x1d\x16\x0e\x1f\x17\x0f\x1d\x16\ +\x0e\x21\x19\x10\x2a\x20\x14\x28\x1f\x13\x20\x18\x10\x1f\x17\x0e\ +\x1c\x15\x0e\x1c\x14\x0d\x27\x1d\x13\x21\x19\x10\x0b\x08\x05\x37\ +\x2a\x1b\x15\x10\x0a\x11\x0d\x08\x5c\x46\x2f\x38\x2c\x1d\x47\x36\ +\x25\x3c\x2e\x1e\x22\x1a\x10\x21\x19\x10\x33\x26\x19\x53\x40\x2b\ +\x3b\x2d\x1e\x58\x43\x2e\x64\x4c\x35\x2f\x24\x18\x5d\x47\x31\x36\ +\x29\x1c\x17\x11\x0a\x26\x1d\x12\x23\x1a\x11\x2a\x20\x14\x2d\x22\ +\x16\x2c\x21\x15\x29\x1f\x13\x20\x19\x0f\x25\x1c\x11\x25\x1c\x12\ +\x29\x1e\x14\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x21\x19\x10\x24\ +\x1b\x11\x26\x1c\x12\x29\x1f\x14\x2a\x20\x14\x31\x24\x17\x2c\x21\ +\x15\x29\x1f\x13\x27\x1d\x13\x27\x1d\x13\x2b\x20\x14\x36\x28\x19\ +\x2a\x20\x15\x1b\x14\x0d\x16\x11\x0a\x13\x0e\x09\x19\x12\x0c\x20\ +\x18\x10\x1b\x15\x0d\x1b\x14\x0d\x20\x19\x0f\x22\x19\x10\x28\x1e\ +\x13\x32\x26\x18\x27\x1e\x12\x1d\x16\x0e\x1b\x14\x0d\x22\x19\x10\ +\x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x26\x1c\x12\x21\x19\x10\x1b\ +\x14\x0d\x1a\x13\x0c\x1d\x16\x0d\x21\x19\x10\x29\x1f\x13\x34\x27\ +\x19\x31\x24\x18\x28\x1e\x13\x1a\x14\x0d\x17\x12\x0b\x1e\x17\x0e\ +\x20\x18\x0f\x28\x1e\x13\x23\x1a\x11\x1b\x14\x0d\x1a\x13\x0d\x20\ +\x18\x0f\x24\x1c\x11\x26\x1d\x12\x2e\x23\x16\x2b\x20\x14\x24\x1b\ +\x11\x29\x1e\x14\x2e\x22\x16\x2e\x22\x16\x29\x1f\x14\x2e\x22\x16\ +\x31\x24\x17\x31\x24\x17\x29\x1f\x14\x2a\x20\x14\x2a\x1f\x14\x2a\ +\x20\x14\x30\x24\x17\x2d\x21\x15\x2b\x21\x14\x2e\x22\x16\x2a\x1f\ +\x15\x29\x1e\x14\x2a\x20\x14\x2b\x20\x15\x2a\x26\x21\x2f\x33\x35\ +\x3b\x40\x42\x47\x4c\x4f\x54\x5a\x5d\x5f\x66\x69\x6a\x71\x76\x5f\ +\x63\x69\x40\x42\x47\x5e\x64\x65\x1e\x20\x20\x8e\x94\x99\x2a\x2d\ +\x31\x75\x7d\x83\x88\x91\x98\x80\x88\x8f\x83\x8a\x90\x87\x8d\x90\ +\x83\x88\x88\x41\x44\x45\x60\x63\x66\x3b\x3c\x3f\x78\x7b\x80\x8f\ +\x93\x98\x94\x97\x9c\x91\x95\x9a\x8f\x93\x98\x92\x96\x9b\x00\x00\ +\x00\xc6\xb9\xae\x99\x86\x72\x1a\x15\x12\x00\x00\x00\x15\x10\x0b\ +\x2e\x23\x17\x1e\x16\x0e\x30\x24\x17\x3e\x2e\x1d\x1d\x16\x0e\x13\ +\x0f\x09\x27\x1d\x13\x22\x19\x10\x1e\x16\x0e\x25\x1c\x12\x20\x18\ +\x10\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x1e\x17\x0f\x1e\x17\x0e\ +\x24\x1c\x11\x24\x1b\x12\x23\x1a\x11\x29\x1f\x14\x26\x1c\x12\x1b\ +\x14\x0d\x21\x19\x10\x20\x19\x10\x0e\x0a\x07\x31\x25\x19\x3b\x2c\ +\x1d\x20\x18\x10\x7c\x5f\x42\x2c\x22\x17\x3f\x2f\x20\x3c\x2d\x1e\ +\x26\x1c\x12\x1f\x17\x0f\x33\x26\x19\x43\x33\x22\x1d\x16\x0e\x37\ +\x2a\x1c\x54\x40\x2c\x54\x41\x2c\x49\x39\x26\x1c\x15\x0e\x1c\x15\ +\x0e\x21\x19\x10\x1b\x15\x0d\x27\x1e\x13\x2b\x20\x15\x2e\x23\x16\ +\x2f\x24\x17\x27\x1d\x12\x24\x1b\x11\x25\x1c\x12\x26\x1c\x13\x2c\ +\x21\x15\x31\x25\x18\x2a\x1f\x14\x25\x1c\x12\x21\x19\x10\x26\x1c\ +\x12\x29\x1e\x13\x30\x23\x16\x32\x25\x17\x2c\x21\x15\x2f\x23\x16\ +\x2d\x22\x16\x2e\x23\x16\x22\x1a\x10\x26\x1c\x12\x21\x19\x10\x18\ +\x12\x0c\x13\x0e\x09\x10\x0c\x08\x19\x13\x0c\x21\x18\x10\x1c\x15\ +\x0d\x1b\x15\x0d\x19\x13\x0c\x1f\x18\x0f\x2a\x20\x14\x2d\x22\x15\ +\x29\x1f\x13\x24\x1b\x11\x1b\x15\x0d\x1f\x17\x0f\x25\x1b\x11\x23\ +\x1b\x11\x24\x1b\x11\x25\x1b\x12\x22\x19\x10\x1f\x18\x0f\x1f\x17\ +\x0f\x20\x18\x0f\x20\x18\x10\x1e\x17\x0e\x25\x1c\x12\x2d\x22\x15\ +\x2a\x1f\x14\x27\x1d\x13\x1d\x16\x0e\x1c\x16\x0e\x1e\x17\x0e\x1d\ +\x15\x0e\x1d\x16\x0e\x1b\x14\x0d\x18\x12\x0c\x1f\x17\x0f\x23\x1a\ +\x11\x2c\x21\x15\x37\x29\x1a\x33\x26\x19\x29\x1f\x14\x2b\x20\x15\ +\x35\x28\x19\x33\x26\x19\x32\x26\x18\x2d\x22\x15\x31\x25\x18\x32\ +\x25\x18\x34\x27\x19\x31\x25\x18\x32\x25\x18\x31\x26\x18\x36\x29\ +\x1a\x2e\x22\x16\x29\x1f\x14\x30\x24\x17\x2b\x20\x15\x26\x1c\x12\ +\x29\x1f\x13\x28\x1e\x14\x26\x23\x1e\x2f\x33\x34\x3a\x3f\x41\x45\ +\x4c\x4e\x52\x59\x5c\x5d\x65\x68\x66\x6e\x72\x77\x7e\x83\x64\x68\ +\x6d\x1b\x1d\x1e\x4d\x50\x53\x75\x7a\x7e\x18\x1a\x1b\x63\x68\x6c\ +\x70\x77\x7d\x82\x8b\x92\x79\x81\x87\x7f\x84\x86\x87\x8c\x8e\x89\ +\x8e\x90\x50\x51\x55\x32\x31\x35\x8f\x93\x98\x8e\x92\x97\x90\x95\ +\x99\x8f\x93\x98\x90\x94\x99\x91\x96\x9a\x00\x00\x00\xcb\xc1\xb8\ +\x9e\x84\x6c\x1b\x15\x0f\x00\x00\x00\x18\x13\x0c\x39\x2c\x1d\x1e\ +\x17\x0f\x2d\x22\x16\x41\x31\x1f\x25\x1c\x11\x10\x0c\x07\x1f\x17\ +\x0f\x1e\x16\x0f\x1c\x16\x0e\x28\x1f\x14\x24\x1b\x11\x1e\x16\x0e\ +\x26\x1c\x12\x1f\x17\x0e\x1c\x15\x0d\x1a\x14\x0c\x1e\x16\x0f\x23\ +\x1a\x11\x23\x1a\x11\x26\x1c\x12\x2b\x20\x14\x1e\x17\x0f\x2e\x22\ +\x16\x2d\x22\x15\x13\x0f\x09\x39\x2b\x1d\x3a\x2c\x1d\x5c\x47\x30\ +\x59\x45\x2f\x0e\x0a\x06\x16\x10\x0a\x30\x24\x18\x34\x27\x19\x26\ +\x1c\x11\x37\x29\x1b\x3f\x30\x20\x16\x10\x0a\x3e\x2f\x20\x45\x34\ +\x24\x2c\x21\x16\x39\x2b\x1d\x26\x1d\x13\x26\x1d\x13\x24\x1c\x12\ +\x1b\x14\x0d\x1c\x15\x0d\x26\x1d\x12\x2e\x23\x16\x2e\x22\x15\x2a\ +\x20\x14\x29\x1f\x14\x2a\x20\x14\x2c\x21\x15\x2d\x21\x15\x34\x27\ +\x19\x2d\x22\x16\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2a\x20\x14\ +\x33\x26\x18\x32\x26\x18\x2e\x23\x16\x31\x24\x17\x38\x2a\x1b\x38\ +\x2a\x1b\x2a\x20\x14\x22\x19\x10\x1d\x15\x0d\x19\x12\x0b\x17\x12\ +\x0b\x17\x12\x0b\x16\x11\x0a\x20\x18\x0f\x21\x19\x0f\x1b\x15\x0d\ +\x1d\x16\x0e\x1e\x17\x0e\x26\x1d\x13\x25\x1c\x12\x21\x19\x10\x21\ +\x19\x0f\x1e\x16\x0e\x22\x19\x10\x23\x1a\x11\x20\x18\x0f\x28\x1f\ +\x13\x26\x1c\x12\x26\x1d\x12\x22\x1a\x10\x23\x1b\x11\x28\x1e\x13\ +\x23\x1a\x10\x25\x1b\x11\x23\x1a\x11\x2d\x22\x15\x2d\x22\x16\x2b\ +\x1f\x14\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\x24\x1b\x12\x23\x1b\ +\x11\x20\x18\x0f\x1d\x16\x0e\x1e\x16\x0e\x23\x1b\x11\x30\x25\x17\ +\x32\x26\x18\x2b\x20\x15\x27\x1d\x13\x31\x25\x17\x32\x26\x18\x2c\ +\x21\x15\x31\x24\x17\x2d\x22\x16\x2d\x22\x15\x2e\x23\x16\x37\x29\ +\x1a\x36\x28\x19\x31\x25\x17\x33\x26\x19\x32\x25\x18\x30\x24\x17\ +\x2c\x20\x15\x2b\x20\x14\x2a\x20\x14\x28\x1e\x13\x24\x1b\x11\x24\ +\x1b\x11\x2d\x26\x1e\x2f\x33\x35\x39\x3d\x40\x44\x49\x4d\x52\x59\ +\x5c\x5c\x63\x65\x65\x6e\x72\x72\x7a\x7f\x7c\x82\x86\x6f\x75\x79\ +\x47\x49\x4c\x3a\x3c\x3d\x4c\x50\x50\x51\x54\x55\x32\x34\x37\x75\ +\x7d\x82\x54\x59\x5e\x5c\x5f\x61\x86\x8a\x8c\x8a\x90\x93\x8f\x93\ +\x98\x81\x83\x89\x8b\x8f\x94\x8f\x94\x98\x90\x95\x99\x91\x95\x9a\ +\x93\x96\x9b\x93\x97\x9b\x00\x00\x00\xc9\xc1\xbd\xb9\xa7\x96\x21\ +\x1c\x17\x00\x00\x00\x08\x07\x04\x2e\x23\x17\x1e\x17\x0e\x26\x1c\ +\x12\x34\x27\x19\x23\x1a\x11\x0e\x0b\x07\x18\x12\x0b\x19\x12\x0b\ +\x1e\x16\x0e\x25\x1c\x12\x22\x1a\x10\x22\x19\x10\x23\x1a\x11\x19\ +\x13\x0c\x1a\x13\x0d\x1c\x15\x0e\x1f\x17\x0f\x27\x1e\x13\x2a\x1f\ +\x14\x28\x1e\x13\x29\x1f\x14\x1b\x14\x0d\x21\x19\x10\x2c\x21\x15\ +\x20\x18\x0f\x4e\x3b\x27\x23\x1b\x12\x34\x28\x1a\x39\x2c\x1d\x29\ +\x1f\x14\x13\x0f\x09\x2e\x23\x17\x38\x2a\x1b\x20\x17\x0f\x39\x2b\ +\x1d\x4d\x3b\x27\x18\x12\x0b\x4f\x3c\x2a\x4c\x3a\x28\x11\x0d\x08\ +\x21\x19\x10\x30\x24\x18\x28\x1e\x13\x2d\x23\x16\x1b\x15\x0d\x19\ +\x13\x0c\x20\x18\x0f\x27\x1e\x12\x27\x1c\x12\x28\x1d\x13\x2a\x20\ +\x14\x31\x25\x17\x34\x27\x19\x39\x2b\x1b\x31\x25\x17\x31\x25\x18\ +\x28\x1e\x13\x27\x1d\x13\x21\x19\x10\x25\x1c\x12\x2e\x22\x16\x35\ +\x27\x19\x33\x27\x19\x32\x26\x18\x3a\x2c\x1c\x3c\x2d\x1d\x36\x29\ +\x1a\x26\x1c\x12\x24\x1b\x11\x17\x11\x0b\x16\x11\x0a\x13\x0f\x09\ +\x13\x0e\x09\x17\x12\x0b\x19\x14\x0d\x1e\x17\x0f\x20\x18\x10\x21\ +\x19\x0f\x23\x1a\x10\x2a\x1f\x13\x25\x1b\x11\x1f\x17\x0f\x19\x12\ +\x0c\x1d\x15\x0e\x1f\x17\x0f\x1d\x16\x0e\x24\x1c\x12\x29\x1f\x14\ +\x25\x1b\x12\x20\x18\x10\x24\x1b\x11\x30\x24\x16\x30\x24\x17\x37\ +\x2a\x1a\x2d\x21\x16\x37\x29\x1b\x30\x24\x17\x27\x1d\x13\x29\x1f\ +\x14\x2d\x22\x15\x2f\x23\x17\x2c\x21\x15\x1a\x14\x0d\x1c\x15\x0d\ +\x1d\x16\x0e\x1c\x16\x0d\x1e\x17\x0e\x20\x18\x0f\x20\x18\x0f\x20\ +\x19\x0f\x29\x1f\x13\x33\x26\x18\x35\x28\x19\x34\x27\x19\x33\x27\ +\x19\x2d\x22\x16\x38\x2a\x1b\x36\x29\x1a\x41\x31\x1f\x3c\x2d\x1c\ +\x37\x29\x1b\x3c\x2d\x1d\x34\x26\x19\x31\x25\x17\x2f\x24\x16\x33\ +\x26\x19\x2d\x22\x16\x2b\x21\x15\x23\x1a\x11\x1b\x15\x0d\x25\x21\ +\x1b\x35\x36\x36\x38\x3d\x3e\x44\x48\x4c\x52\x58\x5b\x5c\x63\x66\ +\x68\x70\x74\x74\x7b\x7f\x77\x7e\x83\x7e\x87\x8a\x64\x69\x6e\x3a\ +\x3d\x3e\x7a\x80\x80\x51\x57\x57\x42\x45\x47\x3d\x40\x43\x50\x53\ +\x56\x4c\x4d\x51\x77\x7c\x7f\x89\x8e\x91\x8f\x93\x98\x8f\x93\x98\ +\x8a\x8e\x93\x8f\x93\x98\x91\x96\x9a\x94\x98\x9c\x91\x95\x99\x94\ +\x99\x9c\x00\x00\x00\x62\x56\x4d\x8b\x7b\x6c\x23\x1f\x1a\x00\x00\ +\x00\x02\x02\x01\x29\x20\x14\x1b\x15\x0d\x2c\x21\x15\x3a\x2c\x1c\ +\x2f\x23\x17\x15\x10\x0a\x1a\x13\x0c\x18\x12\x0b\x1a\x14\x0d\x1e\ +\x17\x0e\x1a\x14\x0c\x26\x1d\x12\x2b\x20\x14\x26\x1d\x12\x1b\x15\ +\x0d\x24\x1c\x11\x2e\x23\x16\x27\x1d\x13\x24\x1b\x11\x25\x1b\x12\ +\x27\x1c\x12\x1f\x17\x0f\x16\x10\x0b\x30\x24\x17\x1b\x14\x0d\x45\ +\x34\x22\x23\x1a\x11\x1f\x17\x0f\x35\x28\x1b\x6b\x53\x39\x13\x0f\ +\x09\x3b\x2d\x1e\x44\x34\x22\x3e\x2f\x20\x54\x40\x2c\x65\x4d\x35\ +\x24\x1b\x12\x4a\x38\x26\x52\x3f\x2b\x14\x0f\x0a\x1c\x15\x0d\x2e\ +\x22\x17\x1f\x17\x0f\x26\x1d\x13\x15\x10\x0a\x15\x10\x0a\x20\x18\ +\x0f\x24\x1b\x11\x29\x1e\x13\x25\x1c\x12\x29\x1f\x14\x2b\x21\x15\ +\x30\x24\x17\x32\x25\x17\x30\x24\x17\x30\x24\x17\x23\x1a\x11\x1d\ +\x16\x0e\x1b\x15\x0d\x20\x18\x0f\x29\x1f\x14\x34\x27\x19\x37\x29\ +\x1a\x35\x28\x1a\x36\x29\x1a\x3a\x2b\x1b\x38\x2a\x1b\x31\x25\x18\ +\x2a\x1f\x14\x21\x19\x10\x22\x1a\x11\x21\x18\x0f\x1d\x16\x0e\x20\ +\x18\x0f\x1e\x17\x0f\x23\x1b\x12\x23\x1b\x11\x24\x1a\x11\x20\x17\ +\x0e\x21\x19\x0f\x22\x19\x10\x19\x13\x0c\x17\x12\x0b\x1a\x13\x0c\ +\x1d\x15\x0d\x19\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0f\x1c\ +\x15\x0d\x23\x1b\x11\x33\x26\x19\x36\x29\x1a\x35\x27\x19\x34\x27\ +\x19\x2f\x24\x17\x2d\x22\x16\x2a\x20\x14\x27\x1c\x13\x21\x18\x0f\ +\x28\x1e\x13\x2a\x20\x14\x1b\x15\x0d\x1a\x14\x0c\x1d\x16\x0e\x1d\ +\x16\x0e\x1b\x15\x0d\x15\x10\x0a\x16\x11\x0a\x1a\x14\x0d\x22\x1a\ +\x11\x29\x1f\x14\x30\x24\x17\x2f\x23\x16\x29\x1e\x13\x29\x1f\x14\ +\x31\x25\x18\x2e\x23\x16\x37\x28\x1a\x2f\x24\x16\x33\x26\x18\x2e\ +\x23\x16\x2a\x1f\x14\x2a\x1f\x14\x2a\x20\x14\x2b\x21\x15\x2a\x20\ +\x14\x27\x1e\x13\x25\x1c\x12\x1b\x15\x0d\x1f\x1b\x17\x30\x32\x32\ +\x38\x3c\x3e\x43\x48\x4b\x51\x56\x59\x59\x60\x63\x68\x6f\x72\x72\ +\x7a\x7d\x77\x80\x83\x7c\x85\x89\x85\x8e\x91\x84\x8c\x90\x78\x7e\ +\x80\x3f\x44\x43\x39\x3e\x3e\x2f\x31\x32\x5c\x60\x62\x4b\x4d\x50\ +\x77\x7d\x7f\x8c\x91\x94\x8c\x91\x95\x8c\x91\x94\x88\x8d\x90\x91\ +\x95\x99\x90\x94\x98\x93\x98\x9b\x91\x95\x99\x93\x97\x9b\x00\x00\ +\x00\x16\x10\x0b\x41\x30\x1f\x1f\x19\x11\x02\x01\x00\x00\x00\x00\ +\x28\x1e\x13\x1c\x14\x0d\x34\x27\x18\x4b\x38\x24\x39\x2a\x1b\x15\ +\x0f\x09\x14\x10\x0a\x18\x12\x0b\x16\x11\x0a\x1b\x14\x0c\x18\x12\ +\x0b\x1e\x17\x0e\x28\x1e\x13\x25\x1c\x12\x1a\x13\x0c\x1a\x14\x0c\ +\x1f\x18\x0f\x1a\x14\x0d\x18\x12\x0b\x19\x13\x0c\x1f\x18\x0f\x19\ +\x13\x0c\x11\x0c\x08\x35\x28\x1b\x1d\x16\x0e\x35\x28\x1a\x30\x24\ +\x18\x2b\x20\x15\x29\x1f\x13\x67\x4e\x35\x36\x2a\x1c\x4d\x3a\x27\ +\x59\x43\x2c\x48\x37\x26\x54\x40\x2b\x62\x4b\x33\x4c\x3b\x28\x58\ +\x43\x2d\x3f\x2f\x20\x19\x13\x0d\x16\x11\x0a\x25\x1c\x12\x19\x13\ +\x0c\x2d\x22\x16\x18\x13\x0c\x10\x0d\x08\x17\x11\x0b\x23\x1a\x11\ +\x1e\x16\x0f\x1e\x17\x0f\x2b\x20\x15\x2c\x21\x15\x2b\x20\x15\x2c\ +\x21\x15\x32\x25\x17\x2b\x20\x14\x24\x1b\x11\x21\x18\x10\x20\x18\ +\x0f\x22\x1a\x10\x2b\x21\x15\x30\x24\x17\x36\x28\x1a\x34\x26\x19\ +\x33\x26\x19\x3b\x2c\x1c\x2f\x23\x16\x2f\x24\x17\x29\x1f\x13\x24\ +\x1c\x12\x1f\x17\x0f\x26\x1d\x13\x21\x19\x10\x1d\x15\x0e\x1e\x16\ +\x0e\x1b\x15\x0d\x21\x19\x10\x1c\x14\x0d\x1f\x18\x0f\x20\x18\x10\ +\x1b\x15\x0d\x17\x12\x0b\x1d\x16\x0e\x22\x19\x11\x24\x1b\x11\x1e\ +\x17\x0f\x22\x19\x10\x27\x1e\x13\x21\x19\x10\x1a\x14\x0c\x1e\x16\ +\x0e\x2c\x21\x15\x2a\x1f\x14\x2c\x22\x15\x2d\x21\x15\x32\x26\x18\ +\x2e\x22\x16\x23\x1a\x11\x23\x1a\x11\x1d\x16\x0e\x27\x1e\x13\x2f\ +\x23\x16\x28\x1e\x13\x1a\x14\x0d\x16\x11\x0a\x1b\x14\x0c\x18\x12\ +\x0c\x1a\x14\x0c\x1b\x14\x0d\x1c\x14\x0d\x22\x19\x10\x25\x1c\x12\ +\x23\x1b\x11\x24\x1c\x12\x25\x1c\x12\x28\x1f\x13\x30\x24\x17\x2f\ +\x23\x17\x2c\x21\x16\x30\x24\x17\x3b\x2c\x1c\x2f\x24\x16\x2c\x21\ +\x16\x2e\x22\x16\x2c\x21\x15\x32\x26\x18\x2d\x22\x15\x2e\x23\x16\ +\x2a\x1f\x14\x19\x13\x0c\x1f\x1b\x15\x32\x32\x31\x37\x3a\x3d\x42\ +\x47\x49\x50\x56\x58\x5a\x61\x64\x64\x6c\x6f\x6f\x76\x79\x79\x80\ +\x84\x7d\x86\x8a\x82\x8a\x8e\x85\x8d\x91\x77\x7c\x81\x3a\x3d\x40\ +\x28\x2a\x2a\x5f\x62\x63\x4c\x4f\x51\x49\x4c\x4e\x8e\x94\x97\x8e\ +\x94\x97\x8e\x93\x96\x8b\x90\x94\x8c\x91\x94\x8e\x93\x96\x90\x95\ +\x98\x90\x95\x98\x8f\x93\x97\x92\x96\x99\x00\x00\x00\x8e\x8e\x8d\ +\x81\x6d\x59\x2f\x24\x17\x03\x02\x01\x00\x00\x00\x22\x1a\x11\x1b\ +\x14\x0d\x3a\x2b\x1c\x5d\x45\x2d\x3d\x2e\x1d\x11\x0d\x08\x18\x12\ +\x0c\x1d\x16\x0d\x12\x0e\x09\x19\x12\x0c\x17\x11\x0b\x18\x13\x0b\ +\x1c\x16\x0d\x23\x1b\x11\x1c\x15\x0e\x17\x11\x0b\x12\x0e\x09\x11\ +\x0d\x09\x14\x0f\x0a\x14\x0f\x0a\x17\x12\x0b\x11\x0d\x08\x0d\x0a\ +\x06\x2c\x22\x16\x29\x1f\x14\x2f\x23\x18\x39\x2b\x1c\x1d\x16\x0e\ +\x23\x1a\x12\x4d\x3a\x27\x59\x44\x2f\x42\x32\x21\x39\x2b\x1c\x14\ +\x0f\x0a\x30\x24\x18\x46\x35\x24\x21\x19\x10\x2d\x22\x16\x2d\x22\ +\x16\x1e\x16\x0f\x17\x11\x0b\x24\x1b\x12\x1b\x15\x0d\x21\x19\x10\ +\x15\x11\x0b\x11\x0d\x08\x14\x10\x09\x27\x1d\x13\x20\x19\x0f\x24\ +\x1c\x12\x2a\x20\x15\x2a\x20\x14\x32\x25\x18\x2d\x22\x15\x31\x25\ +\x18\x28\x1f\x13\x26\x1c\x12\x26\x1c\x12\x26\x1d\x12\x25\x1c\x12\ +\x28\x1e\x13\x2b\x20\x15\x2a\x20\x15\x28\x1e\x13\x2c\x21\x15\x32\ +\x25\x18\x29\x1e\x14\x30\x23\x17\x2d\x22\x16\x2b\x21\x15\x27\x1e\ +\x13\x23\x1a\x11\x21\x19\x10\x17\x11\x0a\x19\x13\x0c\x20\x18\x0f\ +\x28\x1e\x13\x24\x1b\x11\x28\x1e\x13\x27\x1d\x13\x22\x19\x10\x24\ +\x1b\x11\x25\x1b\x11\x25\x1c\x12\x28\x1e\x13\x27\x1d\x13\x2a\x1f\ +\x14\x33\x25\x18\x30\x23\x17\x20\x18\x0f\x16\x11\x0b\x1f\x18\x0f\ +\x1b\x15\x0c\x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x31\x24\x18\x2c\ +\x22\x15\x22\x19\x10\x1d\x15\x0e\x1a\x13\x0c\x28\x1f\x13\x2d\x21\ +\x15\x29\x1e\x14\x23\x1a\x10\x20\x19\x10\x27\x1e\x13\x29\x1f\x14\ +\x27\x1e\x13\x22\x1a\x11\x29\x1f\x14\x2e\x22\x16\x2a\x20\x14\x25\ +\x1c\x11\x24\x1c\x12\x2c\x22\x15\x2b\x20\x14\x2c\x21\x15\x29\x1f\ +\x14\x2c\x21\x15\x34\x27\x18\x31\x25\x17\x2e\x23\x17\x2b\x20\x15\ +\x29\x1f\x14\x29\x1f\x14\x2e\x22\x16\x30\x24\x17\x25\x1c\x11\x1c\ +\x15\x0e\x1e\x19\x13\x2c\x2c\x2b\x36\x39\x3b\x41\x46\x49\x4f\x55\ +\x57\x59\x60\x63\x64\x6b\x6f\x6e\x75\x78\x78\x80\x84\x7d\x84\x88\ +\x81\x87\x8c\x85\x8b\x90\x81\x87\x8c\x6e\x73\x76\x5f\x62\x63\x6d\ +\x70\x72\x37\x37\x39\x66\x6a\x6d\x92\x98\x9c\x8f\x95\x98\x93\x97\ +\x9b\x8f\x93\x98\x8e\x93\x97\x90\x95\x99\x91\x96\x9a\x8e\x93\x96\ +\x8f\x94\x97\x8f\x94\x97\x00\x00\x00\xd0\xcd\xcc\xbb\xaa\x99\x48\ +\x3c\x2f\x05\x04\x02\x05\x04\x02\x18\x12\x0b\x15\x10\x0a\x2e\x23\ +\x16\x46\x34\x21\x3d\x2e\x1d\x0f\x0c\x08\x14\x0f\x0a\x1f\x17\x0f\ +\x14\x0f\x0a\x15\x10\x0a\x14\x10\x0a\x12\x0e\x09\x1c\x15\x0d\x26\ +\x1d\x12\x22\x19\x11\x1d\x16\x0e\x17\x12\x0b\x17\x11\x0b\x16\x11\ +\x0b\x13\x0f\x09\x16\x10\x0a\x0f\x0b\x07\x10\x0c\x08\x1c\x15\x0e\ +\x2a\x1f\x14\x27\x1c\x13\x3a\x2c\x1d\x1e\x17\x0e\x23\x1a\x11\x4c\ +\x3a\x26\x23\x1a\x11\x2d\x22\x16\x40\x30\x1f\x0e\x0a\x06\x2d\x23\ +\x17\x50\x3d\x2a\x1f\x17\x0f\x21\x19\x0f\x2e\x22\x16\x28\x1d\x13\ +\x1c\x15\x0d\x21\x19\x10\x19\x13\x0c\x2a\x20\x15\x1f\x17\x0f\x1a\ +\x13\x0d\x1d\x16\x0e\x2a\x20\x14\x23\x1a\x11\x24\x1b\x11\x25\x1c\ +\x12\x2c\x21\x15\x2f\x23\x17\x2e\x22\x16\x21\x19\x0f\x24\x1b\x11\ +\x25\x1c\x12\x26\x1d\x11\x24\x1b\x11\x26\x1c\x12\x27\x1e\x13\x24\ +\x1b\x11\x27\x1d\x13\x24\x1b\x11\x23\x1a\x11\x23\x1a\x11\x23\x1a\ +\x10\x29\x1e\x13\x2a\x1f\x14\x30\x24\x17\x29\x1f\x13\x1d\x16\x0e\ +\x27\x1d\x12\x25\x1c\x12\x22\x1a\x10\x1f\x18\x10\x24\x1a\x11\x27\ +\x1e\x12\x2b\x21\x15\x23\x1b\x11\x2c\x20\x15\x2b\x20\x15\x22\x1a\ +\x10\x1c\x16\x0e\x1f\x17\x0f\x23\x1a\x10\x28\x1e\x13\x2e\x23\x16\ +\x31\x24\x17\x2c\x20\x15\x23\x1a\x10\x19\x13\x0c\x1b\x14\x0d\x22\ +\x19\x10\x1c\x16\x0e\x24\x1b\x11\x2d\x21\x16\x2d\x22\x16\x2f\x23\ +\x17\x28\x1e\x13\x17\x12\x0c\x20\x17\x0f\x1f\x17\x0f\x1e\x17\x0e\ +\x1f\x17\x0f\x25\x1c\x12\x2c\x21\x15\x25\x1c\x12\x25\x1c\x11\x26\ +\x1c\x12\x2f\x23\x17\x2d\x22\x16\x29\x1e\x13\x30\x23\x17\x2d\x22\ +\x16\x2a\x20\x15\x27\x1d\x13\x23\x1a\x11\x26\x1c\x12\x2d\x22\x16\ +\x2f\x24\x17\x32\x25\x18\x29\x1f\x14\x27\x1d\x12\x23\x1b\x11\x22\ +\x1a\x10\x25\x1c\x12\x2a\x20\x14\x28\x1f\x14\x23\x1b\x11\x2a\x21\ +\x18\x31\x2e\x2b\x35\x38\x3a\x42\x46\x48\x4e\x53\x55\x5a\x5f\x64\ +\x66\x6a\x6e\x70\x75\x7b\x77\x7d\x83\x80\x86\x8c\x82\x88\x8d\x80\ +\x86\x8b\x84\x8a\x8f\x87\x8c\x90\x8c\x90\x95\x4c\x4d\x50\x31\x32\ +\x33\x83\x88\x8b\x68\x6e\x73\x87\x8d\x92\x92\x96\x9b\x90\x94\x99\ +\x8e\x92\x97\x91\x95\x9a\x91\x95\x9a\x8d\x92\x96\x91\x96\x99\x91\ +\x95\x99\x00\x00\x00\xce\xca\xc9\xc1\xaa\x94\x54\x42\x31\x08\x06\ +\x03\x01\x02\x00\x1a\x13\x0c\x20\x18\x0f\x28\x1e\x13\x3d\x2d\x1c\ +\x3b\x2c\x1c\x16\x11\x0a\x13\x0d\x09\x20\x18\x0f\x1a\x13\x0d\x17\ +\x11\x0b\x15\x10\x0a\x17\x11\x0b\x18\x12\x0c\x23\x1b\x11\x2d\x22\ +\x16\x25\x1c\x12\x1d\x15\x0e\x16\x11\x0a\x11\x0d\x08\x10\x0d\x08\ +\x16\x11\x0a\x13\x0e\x09\x13\x0e\x09\x17\x11\x0b\x26\x1d\x12\x1a\ +\x14\x0d\x40\x31\x21\x1c\x15\x0d\x27\x1e\x12\x4a\x38\x26\x1e\x16\ +\x0f\x3a\x2b\x1d\x62\x49\x31\x28\x1e\x13\x31\x25\x19\x51\x3e\x2a\ +\x1d\x16\x0e\x1c\x15\x0e\x22\x1a\x11\x1d\x16\x0f\x1c\x16\x0e\x21\ +\x19\x10\x1e\x17\x0f\x26\x1c\x13\x1f\x18\x0f\x1a\x14\x0d\x17\x12\ +\x0b\x1c\x15\x0d\x1e\x16\x0e\x1e\x17\x0d\x22\x1a\x11\x2a\x1f\x14\ +\x2c\x21\x15\x26\x1c\x12\x1a\x14\x0c\x24\x1b\x12\x2f\x23\x16\x27\ +\x1d\x13\x21\x19\x10\x1e\x17\x0e\x1b\x14\x0d\x1b\x14\x0c\x22\x19\ +\x10\x21\x18\x0f\x22\x1a\x10\x23\x1b\x11\x25\x1c\x12\x2a\x1f\x14\ +\x32\x25\x18\x2a\x1f\x14\x22\x1a\x11\x27\x1e\x13\x26\x1c\x12\x26\ +\x1d\x13\x20\x18\x10\x23\x1a\x10\x20\x18\x10\x23\x1a\x11\x20\x19\ +\x10\x20\x18\x0f\x27\x1e\x13\x2c\x21\x15\x2e\x23\x16\x29\x1f\x14\ +\x21\x19\x10\x1d\x15\x0e\x21\x19\x10\x27\x1d\x13\x2a\x20\x15\x28\ +\x1f\x13\x23\x1a\x11\x20\x18\x10\x17\x12\x0b\x21\x19\x10\x1a\x14\ +\x0d\x1b\x14\x0d\x22\x1a\x11\x24\x1b\x12\x22\x1a\x10\x2a\x20\x14\ +\x26\x1c\x13\x1c\x16\x0e\x23\x1a\x11\x1b\x15\x0d\x1f\x17\x0f\x24\ +\x1b\x10\x27\x1d\x12\x2b\x20\x15\x2c\x21\x15\x2f\x23\x17\x3c\x2e\ +\x1d\x35\x27\x19\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x2f\x23\x17\ +\x2f\x24\x17\x2e\x22\x16\x2b\x20\x14\x27\x1e\x13\x2c\x21\x15\x29\ +\x1f\x14\x29\x1f\x14\x24\x1b\x11\x24\x1c\x12\x28\x1e\x13\x25\x1c\ +\x12\x26\x1d\x13\x24\x1b\x11\x1f\x17\x0e\x29\x1e\x14\x35\x30\x29\ +\x35\x38\x3a\x3f\x43\x45\x4b\x4f\x52\x5a\x5e\x63\x67\x6b\x6f\x6e\ +\x73\x77\x78\x7e\x82\x7f\x84\x89\x83\x89\x8e\x84\x89\x8e\x83\x88\ +\x8c\x89\x8f\x94\x8e\x93\x98\x74\x76\x7a\x79\x7c\x7f\x8d\x92\x96\ +\x63\x69\x6c\x79\x80\x82\x8c\x90\x95\x8e\x93\x97\x8e\x93\x96\x94\ +\x98\x9d\x90\x94\x99\x91\x96\x99\x92\x97\x9a\x91\x95\x97\x00\x00\ +\x00\xce\xcb\xca\xc6\xc2\xc1\x66\x57\x48\x0b\x08\x05\x01\x00\x00\ +\x20\x18\x0f\x22\x19\x11\x26\x1d\x12\x44\x33\x21\x39\x2b\x1b\x15\ +\x0f\x0a\x0f\x0b\x07\x16\x10\x0a\x26\x1d\x12\x23\x1b\x11\x1f\x17\ +\x0f\x1e\x17\x0e\x1f\x18\x0f\x1a\x14\x0c\x22\x19\x10\x1d\x15\x0e\ +\x1a\x14\x0d\x20\x18\x0f\x1e\x17\x0f\x19\x14\x0c\x1d\x16\x0e\x17\ +\x11\x0a\x13\x0e\x09\x15\x10\x0a\x27\x1d\x13\x16\x11\x0b\x38\x2a\ +\x1c\x1a\x14\x0c\x1b\x14\x0c\x33\x27\x19\x21\x19\x10\x37\x2a\x1b\ +\x5c\x45\x2e\x53\x40\x2b\x2c\x21\x16\x47\x37\x25\x28\x1f\x14\x1b\ +\x14\x0d\x2a\x1f\x15\x2f\x23\x17\x27\x1e\x13\x28\x1e\x13\x1f\x17\ +\x0f\x2f\x23\x17\x27\x1d\x13\x1c\x15\x0d\x12\x0e\x09\x1f\x17\x0e\ +\x1b\x14\x0d\x24\x1b\x11\x21\x19\x10\x2e\x23\x16\x2f\x23\x17\x2f\ +\x23\x16\x2e\x23\x16\x34\x27\x19\x2c\x21\x15\x32\x25\x18\x28\x1e\ +\x14\x1f\x16\x0e\x1c\x15\x0d\x1f\x17\x0f\x24\x1b\x11\x25\x1c\x11\ +\x22\x19\x10\x25\x1c\x12\x26\x1c\x12\x32\x26\x18\x2e\x22\x16\x28\ +\x1e\x13\x25\x1c\x11\x29\x1f\x14\x24\x1b\x12\x1d\x16\x0e\x1d\x15\ +\x0d\x23\x1a\x11\x25\x1b\x11\x21\x19\x0f\x1e\x16\x0e\x1e\x16\x0e\ +\x20\x18\x10\x23\x1a\x11\x29\x1e\x14\x2c\x20\x15\x26\x1d\x12\x1a\ +\x14\x0d\x1a\x14\x0d\x1e\x16\x0f\x22\x19\x10\x24\x1b\x11\x25\x1c\ +\x11\x26\x1d\x12\x23\x1a\x11\x1a\x13\x0c\x11\x0d\x08\x1b\x14\x0d\ +\x19\x14\x0d\x29\x1f\x14\x2b\x20\x14\x2f\x23\x17\x2d\x22\x16\x22\ +\x1a\x10\x22\x19\x10\x28\x1e\x13\x1f\x18\x0f\x27\x1d\x13\x29\x1f\ +\x14\x2c\x21\x15\x2c\x21\x15\x28\x1d\x13\x37\x29\x1b\x39\x2b\x1c\ +\x2b\x20\x15\x36\x29\x1a\x37\x29\x1b\x3c\x2d\x1d\x3f\x2f\x1e\x43\ +\x32\x20\x35\x28\x1a\x2c\x21\x15\x2d\x22\x15\x28\x1e\x13\x1e\x16\ +\x0e\x25\x1b\x11\x29\x1f\x14\x1f\x18\x0f\x24\x1b\x11\x25\x1c\x11\ +\x24\x1a\x11\x23\x1a\x10\x20\x1a\x12\x30\x2c\x27\x35\x38\x3a\x3e\ +\x42\x44\x4a\x4d\x50\x5b\x5f\x62\x66\x6b\x70\x6b\x70\x75\x7a\x80\ +\x84\x7d\x82\x87\x80\x86\x8b\x80\x86\x8b\x84\x8a\x8f\x8f\x93\x98\ +\x6f\x73\x77\x54\x57\x5a\x72\x75\x78\x2f\x31\x33\x1c\x1d\x20\x4a\ +\x4d\x50\x86\x8b\x90\x91\x96\x99\x8e\x93\x96\x93\x98\x9b\x92\x96\ +\x99\x93\x98\x9b\x8f\x94\x97\x91\x95\x99\x00\x00\x00\xd1\xcc\xca\ +\xc1\xae\x9a\x69\x52\x3a\x14\x0f\x0a\x04\x04\x02\x0e\x0a\x07\x1d\ +\x16\x0e\x27\x1d\x12\x54\x3f\x28\x34\x27\x19\x1a\x14\x0c\x0a\x07\ +\x04\x11\x0d\x08\x1a\x13\x0c\x1f\x17\x0f\x25\x1c\x12\x20\x19\x0f\ +\x1d\x15\x0d\x1a\x13\x0c\x22\x19\x10\x1b\x14\x0d\x13\x0f\x09\x19\ +\x13\x0c\x20\x18\x0f\x2a\x1f\x14\x1f\x17\x0e\x1c\x15\x0d\x15\x10\ +\x0a\x13\x0e\x09\x33\x26\x19\x0f\x0b\x07\x3e\x2f\x1f\x0f\x0b\x07\ +\x10\x0d\x08\x4b\x39\x26\x24\x1b\x12\x27\x1d\x13\x49\x37\x24\x4a\ +\x38\x26\x5a\x45\x2f\x25\x1c\x12\x22\x1a\x10\x23\x1a\x10\x3b\x2c\ +\x1c\x39\x2a\x1b\x25\x1c\x12\x28\x1e\x13\x20\x18\x10\x30\x25\x18\ +\x26\x1d\x12\x1d\x16\x0e\x19\x13\x0c\x16\x11\x0b\x19\x13\x0b\x21\ +\x19\x0f\x21\x19\x10\x27\x1d\x13\x2d\x22\x16\x34\x27\x19\x35\x28\ +\x19\x35\x28\x19\x34\x27\x19\x2d\x22\x16\x22\x1a\x10\x1d\x15\x0d\ +\x1f\x17\x0f\x22\x1a\x11\x22\x1a\x10\x24\x1b\x11\x27\x1e\x13\x28\ +\x1e\x14\x21\x18\x0f\x26\x1c\x12\x2b\x1f\x14\x2e\x23\x16\x24\x1b\ +\x11\x1e\x17\x0f\x1f\x17\x0e\x27\x1d\x13\x29\x1f\x14\x2a\x20\x14\ +\x2b\x20\x14\x1f\x18\x0f\x1f\x18\x0e\x25\x1b\x12\x1e\x17\x0f\x25\ +\x1c\x11\x2a\x20\x14\x32\x26\x18\x34\x27\x19\x2e\x22\x16\x21\x19\ +\x10\x21\x19\x0f\x26\x1c\x12\x2f\x24\x16\x2f\x23\x16\x28\x1e\x14\ +\x29\x1f\x14\x1e\x17\x0f\x1d\x16\x0e\x1b\x14\x0d\x1e\x17\x0e\x27\ +\x1d\x13\x2d\x22\x16\x31\x25\x17\x2a\x1f\x14\x29\x1f\x13\x26\x1c\ +\x12\x25\x1c\x12\x1f\x18\x0e\x25\x1b\x12\x1f\x17\x0f\x20\x18\x0f\ +\x25\x1c\x12\x2c\x21\x15\x38\x2b\x1b\x30\x24\x17\x2b\x20\x15\x38\ +\x2a\x1b\x2e\x23\x16\x35\x27\x1a\x37\x29\x1b\x39\x2b\x1b\x3c\x2d\ +\x1c\x39\x2b\x1c\x30\x24\x17\x2c\x21\x15\x28\x1e\x13\x20\x18\x0f\ +\x24\x1b\x11\x24\x1b\x11\x21\x19\x10\x22\x1a\x11\x21\x19\x10\x1e\ +\x16\x0f\x25\x1c\x12\x34\x2d\x26\x35\x37\x39\x3d\x40\x43\x4a\x4d\ +\x50\x54\x58\x5c\x61\x65\x69\x6e\x74\x78\x78\x7e\x81\x7b\x81\x87\ +\x7d\x83\x88\x83\x89\x8e\x83\x89\x8f\x89\x8d\x92\x86\x8a\x8f\x90\ +\x95\x99\x68\x6b\x6e\x64\x66\x6b\x64\x66\x6a\x3f\x41\x43\x83\x87\ +\x8b\x93\x97\x9b\x95\x99\x9e\x91\x96\x9c\x90\x94\x9a\x92\x97\x9b\ +\x8e\x93\x96\x8e\x93\x96\x00\x00\x00\xd2\xcd\xcc\xc9\xc5\xc4\x7b\ +\x66\x50\x11\x0d\x08\x00\x00\x00\x1d\x16\x0f\x1f\x17\x0f\x24\x1b\ +\x11\x52\x3d\x28\x4d\x39\x25\x2a\x1f\x14\x0f\x0b\x07\x12\x0e\x09\ +\x13\x0f\x09\x17\x11\x0b\x20\x18\x0f\x20\x18\x0f\x26\x1d\x13\x2b\ +\x21\x15\x25\x1c\x12\x1f\x17\x0e\x1b\x14\x0d\x1b\x15\x0e\x1c\x15\ +\x0d\x22\x1a\x10\x30\x24\x17\x21\x19\x0f\x1a\x14\x0d\x1a\x13\x0d\ +\x3e\x2f\x1f\x19\x13\x0c\x40\x31\x21\x0c\x09\x05\x12\x0e\x09\x3f\ +\x31\x20\x19\x12\x0c\x28\x1f\x14\x3d\x2e\x1e\x1c\x15\x0d\x22\x1a\ +\x10\x2a\x20\x15\x33\x26\x19\x1c\x15\x0d\x3a\x2c\x1d\x3b\x2d\x1d\ +\x1d\x15\x0e\x30\x24\x17\x2c\x20\x15\x25\x1b\x11\x1c\x16\x0e\x1e\ +\x16\x0e\x1e\x16\x0e\x20\x18\x0f\x23\x1a\x11\x28\x1e\x14\x21\x18\ +\x0f\x23\x1b\x12\x24\x1b\x12\x31\x25\x17\x41\x30\x20\x49\x37\x23\ +\x3e\x2e\x1e\x28\x1f\x14\x1d\x16\x0e\x1b\x14\x0d\x1d\x15\x0e\x1f\ +\x18\x0e\x20\x18\x0f\x1e\x17\x0f\x1f\x18\x0f\x21\x19\x10\x26\x1c\ +\x12\x27\x1d\x12\x29\x1f\x14\x21\x1a\x10\x27\x1d\x12\x24\x1c\x12\ +\x23\x1a\x11\x20\x18\x0f\x28\x1e\x13\x29\x1e\x13\x2a\x1f\x14\x2b\ +\x20\x14\x25\x1c\x12\x29\x1f\x13\x22\x19\x10\x25\x1c\x12\x22\x19\ +\x10\x26\x1d\x12\x29\x1f\x14\x29\x1f\x14\x29\x1e\x14\x1f\x17\x0f\ +\x1f\x18\x0f\x28\x1e\x14\x2f\x24\x17\x2d\x22\x16\x1d\x16\x0e\x1f\ +\x18\x0f\x2c\x21\x16\x38\x2a\x1c\x3e\x2f\x20\x1e\x16\x0e\x26\x1c\ +\x12\x25\x1c\x12\x2d\x22\x16\x2c\x22\x15\x38\x2a\x1b\x2c\x21\x15\ +\x25\x1c\x12\x1f\x17\x0f\x22\x19\x10\x28\x1f\x13\x29\x1f\x14\x2c\ +\x21\x15\x30\x24\x17\x29\x1f\x14\x2a\x20\x15\x2d\x22\x15\x2e\x24\ +\x17\x36\x28\x1a\x33\x26\x19\x37\x29\x1b\x36\x28\x1a\x3f\x30\x1e\ +\x3a\x2b\x1b\x2b\x20\x14\x28\x1e\x13\x20\x19\x0f\x1a\x14\x0c\x1a\ +\x13\x0d\x1c\x15\x0e\x1f\x17\x0e\x24\x1b\x11\x1e\x17\x0f\x1f\x18\ +\x0f\x29\x26\x21\x32\x34\x36\x3e\x41\x43\x4b\x4e\x51\x58\x5c\x5f\ +\x61\x65\x69\x6f\x74\x78\x78\x7f\x84\x7f\x85\x89\x81\x87\x8d\x88\ +\x8e\x94\x82\x88\x8e\x88\x8e\x93\x88\x8e\x93\x8d\x92\x98\x6d\x71\ +\x78\x6e\x71\x79\x47\x48\x4c\x59\x5a\x5e\x8c\x90\x95\x8f\x93\x98\ +\x94\x98\x9d\x90\x94\x99\x99\x9d\xa2\x93\x97\x9c\x94\x99\x9d\x95\ +\x99\x9c\x00\x00\x00\xd3\xcd\xcb\xc2\xb3\xa5\x85\x68\x4b\x12\x0d\ +\x09\x00\x00\x00\x32\x26\x19\x2f\x23\x17\x24\x1b\x11\x4e\x3a\x25\ +\x55\x40\x29\x48\x36\x23\x18\x13\x0b\x1c\x15\x0d\x13\x0e\x09\x1c\ +\x14\x0d\x2b\x20\x14\x29\x1e\x14\x25\x1c\x12\x24\x1b\x11\x24\x1b\ +\x11\x24\x1c\x12\x1e\x17\x0f\x1e\x16\x0e\x19\x12\x0c\x21\x18\x10\ +\x27\x1d\x12\x25\x1b\x12\x1d\x16\x0e\x1d\x16\x0e\x48\x36\x24\x16\ +\x11\x0b\x31\x25\x18\x11\x0d\x08\x19\x13\x0c\x44\x34\x23\x1f\x18\ +\x0f\x30\x23\x17\x40\x30\x20\x26\x1d\x12\x2a\x20\x14\x36\x28\x1a\ +\x3b\x2d\x1e\x1d\x15\x0d\x3e\x2f\x1f\x42\x33\x21\x23\x1b\x11\x2f\ +\x23\x17\x24\x1b\x11\x1e\x17\x0f\x1f\x17\x0f\x1e\x16\x0e\x1c\x15\ +\x0e\x18\x12\x0b\x1f\x17\x0e\x2d\x22\x16\x22\x19\x10\x22\x1a\x10\ +\x22\x19\x10\x24\x1c\x11\x27\x1e\x13\x2f\x23\x17\x2f\x23\x16\x2a\ +\x20\x15\x1f\x18\x0f\x1c\x15\x0e\x20\x18\x10\x21\x19\x10\x1c\x15\ +\x0d\x1f\x17\x0e\x1d\x16\x0e\x19\x13\x0c\x25\x1b\x11\x27\x1d\x12\ +\x2a\x1f\x14\x24\x1b\x12\x25\x1c\x11\x23\x1a\x10\x20\x17\x0f\x1f\ +\x18\x0f\x27\x1e\x13\x25\x1c\x12\x2e\x22\x16\x2e\x23\x16\x1e\x17\ +\x0e\x20\x18\x10\x21\x19\x10\x29\x1f\x15\x2b\x20\x16\x20\x18\x0f\ +\x2a\x1f\x15\x30\x24\x17\x32\x26\x18\x5b\x46\x30\x7f\x62\x44\x88\ +\x6a\x49\x90\x70\x4e\x51\x3d\x29\x31\x25\x17\x88\x67\x47\xaa\x84\ +\x5c\xb2\x8a\x60\x71\x57\x3c\x21\x19\x10\x25\x1c\x12\x29\x1f\x13\ +\x2c\x21\x15\x3b\x2c\x1d\x40\x30\x1f\x33\x26\x18\x24\x1b\x11\x1f\ +\x17\x0f\x1f\x18\x0f\x21\x19\x0f\x22\x19\x0f\x24\x1b\x11\x27\x1e\ +\x13\x2a\x20\x15\x26\x1d\x13\x26\x1c\x12\x27\x1d\x12\x35\x27\x1a\ +\x2f\x23\x16\x3c\x2d\x1d\x3b\x2c\x1d\x37\x28\x1a\x2f\x23\x17\x31\ +\x25\x17\x23\x1a\x10\x23\x1a\x11\x22\x19\x10\x1f\x18\x0f\x22\x1a\ +\x10\x28\x1e\x13\x25\x1c\x12\x22\x1a\x10\x30\x25\x18\x36\x2e\x26\ +\x32\x34\x37\x3d\x41\x43\x49\x4e\x51\x57\x5d\x5f\x61\x67\x6b\x72\ +\x77\x7d\x76\x7e\x84\x7e\x85\x8b\x85\x8c\x91\x84\x8b\x8f\x87\x8d\ +\x92\x83\x89\x8e\x89\x8f\x95\x8e\x94\x9a\x8f\x94\x9c\x68\x6c\x73\ +\x48\x4a\x4e\x85\x89\x8d\x8f\x94\x99\x92\x96\x9b\x91\x95\x9a\x91\ +\x95\x9a\x95\x9a\x9c\x97\x9b\x9e\x97\x9b\x9e\x98\x9d\xa0\x00\x00\ +\x00\xd5\xd0\xcd\xca\xc2\xbb\x96\x7d\x66\x15\x11\x0b\x00\x00\x00\ +\x1b\x14\x0d\x2d\x21\x16\x25\x1b\x12\x54\x3f\x29\x4d\x39\x25\x28\ +\x1f\x14\x12\x0e\x08\x1e\x17\x0f\x18\x12\x0b\x15\x10\x0a\x1a\x13\ +\x0d\x1a\x13\x0c\x1e\x17\x0f\x22\x1a\x10\x22\x1a\x10\x25\x1c\x12\ +\x1e\x17\x0f\x18\x13\x0c\x1a\x13\x0c\x1f\x16\x0e\x22\x19\x11\x21\ +\x19\x10\x1e\x16\x0e\x1e\x17\x0f\x3c\x2d\x1e\x18\x12\x0b\x3d\x2e\ +\x1e\x13\x0f\x09\x1b\x15\x0d\x3f\x30\x1f\x1d\x15\x0e\x23\x1a\x10\ +\x30\x24\x17\x2b\x21\x15\x1e\x16\x0e\x30\x24\x17\x3a\x2c\x1d\x18\ +\x12\x0b\x28\x1f\x14\x31\x26\x18\x29\x1f\x13\x2a\x1f\x14\x1f\x18\ +\x10\x1c\x15\x0d\x20\x18\x0f\x22\x1a\x10\x20\x18\x10\x21\x19\x10\ +\x22\x1a\x10\x27\x1d\x12\x21\x19\x10\x19\x12\x0c\x18\x12\x0b\x1d\ +\x16\x0e\x26\x1d\x12\x28\x1e\x13\x2d\x22\x15\x25\x1c\x11\x28\x1e\ +\x13\x29\x1e\x14\x29\x1f\x14\x29\x1f\x14\x2a\x20\x14\x24\x1b\x11\ +\x24\x1c\x12\x26\x1d\x13\x20\x19\x10\x20\x18\x10\x21\x19\x10\x16\ +\x11\x0b\x29\x1f\x15\x49\x37\x25\x57\x43\x2e\x62\x4c\x34\x2e\x23\ +\x16\x22\x19\x10\x2c\x21\x15\x31\x25\x18\x48\x37\x25\x9d\x7a\x55\ +\xb6\x8d\x64\xa6\x81\x5b\x52\x40\x2b\x1b\x14\x0c\x26\x1c\x12\x2a\ +\x1f\x14\x26\x1d\x12\x41\x32\x21\x97\x75\x52\xba\x91\x66\x62\x4a\ +\x33\x2a\x1f\x14\x23\x1a\x11\x39\x2b\x1c\x9d\x7a\x54\xa1\x7c\x56\ +\x2c\x21\x16\x28\x1e\x13\x1b\x14\x0d\x1f\x17\x0f\x27\x1d\x12\x2e\ +\x22\x16\x37\x29\x1a\x35\x28\x19\x28\x1e\x13\x21\x19\x10\x1f\x17\ +\x0f\x21\x18\x10\x27\x1d\x13\x28\x1e\x13\x27\x1d\x13\x23\x1a\x11\ +\x23\x1a\x10\x2c\x21\x15\x33\x26\x18\x33\x26\x18\x37\x2a\x1b\x35\ +\x27\x19\x3e\x2e\x1e\x39\x2a\x1b\x34\x27\x19\x37\x29\x1b\x2f\x23\ +\x17\x2c\x21\x15\x23\x1a\x11\x1a\x13\x0c\x1c\x15\x0d\x1e\x17\x0e\ +\x1d\x16\x0e\x1c\x15\x0d\x21\x19\x10\x2b\x26\x20\x33\x36\x37\x3e\ +\x41\x42\x4a\x4d\x50\x55\x5a\x5d\x63\x6a\x6d\x6e\x76\x79\x76\x7e\ +\x82\x82\x87\x8d\x85\x8a\x90\x85\x8e\x92\x87\x8d\x92\x86\x8c\x90\ +\x89\x90\x95\x8b\x91\x96\x8f\x95\x9b\x93\x98\x9e\x95\x99\x9e\x91\ +\x95\x9a\x94\x98\x9d\x93\x97\x9c\x93\x97\x9c\x97\x9b\x9f\x95\x9a\ +\x9d\x95\x99\x9c\x99\x9d\xa0\x98\x9c\x9f\x00\x00\x00\xd5\xd0\xcd\ +\xce\xc9\xc6\xa6\x90\x79\x19\x14\x0f\x00\x00\x00\x0b\x09\x05\x2d\ +\x22\x16\x1f\x17\x0f\x45\x34\x21\x3a\x2b\x1c\x26\x1d\x12\x16\x10\ +\x0a\x22\x1a\x11\x23\x1a\x10\x18\x12\x0b\x14\x0f\x0a\x18\x12\x0c\ +\x18\x12\x0c\x1a\x14\x0d\x22\x1a\x10\x23\x1b\x11\x21\x19\x10\x1f\ +\x17\x0f\x1d\x16\x0e\x18\x13\x0b\x1c\x15\x0e\x21\x19\x10\x1e\x17\ +\x0f\x20\x18\x10\x47\x35\x22\x24\x1b\x12\x44\x34\x23\x1b\x15\x0c\ +\x15\x10\x0a\x26\x1c\x13\x1f\x17\x0e\x28\x1d\x13\x3c\x2c\x1d\x34\ +\x26\x19\x25\x1c\x12\x2a\x20\x15\x31\x25\x18\x1f\x17\x0f\x2d\x21\ +\x16\x2a\x1f\x14\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\x22\x1a\x10\ +\x28\x1f\x13\x21\x19\x10\x1f\x17\x0f\x25\x1c\x12\x29\x1f\x14\x26\ +\x1d\x12\x26\x1d\x13\x22\x1a\x11\x1a\x14\x0d\x1f\x18\x10\x2d\x22\ +\x16\x2c\x21\x15\x2d\x22\x15\x25\x1c\x11\x18\x12\x0b\x2b\x21\x16\ +\x50\x3d\x2a\x66\x4e\x36\x66\x4f\x36\x34\x27\x1a\x57\x42\x2d\x8c\ +\x6c\x4b\x9b\x78\x54\x7b\x5f\x41\x30\x24\x18\x1f\x18\x0f\x5a\x45\ +\x2f\xaa\x84\x5d\xb6\x8d\x63\x6d\x54\x3a\x23\x1a\x11\x21\x19\x10\ +\x29\x1f\x14\x2d\x22\x15\x2d\x22\x15\x65\x4e\x35\xbb\x91\x67\x87\ +\x68\x49\x24\x1a\x10\x21\x18\x10\x23\x1a\x11\x2a\x1f\x14\x29\x1f\ +\x14\x25\x1c\x12\x76\x5b\x3e\xae\x86\x5e\x5d\x47\x31\x29\x1f\x14\ +\x27\x1d\x13\x32\x26\x18\x9f\x7c\x57\x89\x69\x48\x40\x31\x20\x20\ +\x19\x10\x23\x1a\x11\x24\x1c\x11\x26\x1c\x12\x24\x1b\x12\x2e\x22\ +\x16\x32\x25\x17\x2e\x22\x16\x23\x1a\x11\x22\x1a\x11\x26\x1d\x12\ +\x27\x1d\x12\x29\x1f\x13\x27\x1d\x12\x2a\x1f\x14\x2b\x20\x15\x2d\ +\x22\x15\x2c\x21\x15\x32\x26\x18\x3b\x2c\x1d\x36\x28\x1a\x35\x28\ +\x1a\x39\x2a\x1b\x38\x29\x1b\x3c\x2d\x1d\x3a\x2c\x1d\x2f\x23\x16\ +\x2e\x23\x16\x25\x1c\x12\x1e\x17\x0f\x1d\x16\x0e\x21\x18\x0f\x22\ +\x19\x11\x1c\x15\x0d\x27\x22\x1c\x33\x35\x36\x3c\x3f\x43\x48\x4c\ +\x4f\x55\x5a\x5d\x63\x6a\x6e\x6e\x74\x78\x75\x7c\x80\x7e\x84\x8a\ +\x84\x89\x8f\x88\x8f\x95\x8b\x91\x96\x85\x8b\x90\x86\x8c\x91\x8a\ +\x90\x94\x8e\x94\x99\x8f\x94\x99\x92\x96\x9b\x90\x94\x99\x94\x98\ +\x9d\x92\x96\x9b\x94\x98\x9d\x95\x99\x9d\x97\x9a\x9e\x94\x97\x9b\ +\x97\x9a\x9d\x95\x98\x9d\x00\x00\x00\xd5\xd0\xce\xce\xc8\xc4\xb3\ +\x97\x7b\x1b\x16\x10\x00\x00\x00\x12\x0f\x09\x39\x2b\x1d\x26\x1d\ +\x12\x3a\x2c\x1c\x3f\x2f\x1e\x32\x25\x18\x10\x0c\x08\x20\x18\x0f\ +\x25\x1b\x12\x24\x1b\x11\x21\x18\x10\x22\x19\x10\x19\x12\x0c\x1c\ +\x15\x0e\x1e\x17\x0e\x24\x1b\x11\x26\x1d\x12\x2b\x20\x14\x2c\x21\ +\x15\x23\x1a\x10\x2c\x21\x15\x28\x1e\x13\x21\x19\x0f\x1a\x14\x0d\ +\x38\x2a\x1b\x23\x1b\x11\x3d\x2e\x1e\x1b\x14\x0d\x20\x18\x10\x43\ +\x33\x21\x3a\x2c\x1d\x28\x1f\x14\x33\x27\x19\x37\x29\x1a\x22\x19\ +\x11\x27\x1e\x13\x31\x25\x18\x1f\x17\x0f\x2b\x20\x15\x29\x1f\x14\ +\x20\x18\x0f\x30\x25\x18\x21\x19\x11\x19\x13\x0c\x2b\x21\x15\x1e\ +\x17\x0e\x1e\x16\x0e\x20\x19\x10\x22\x1a\x11\x22\x19\x10\x45\x35\ +\x24\x62\x4c\x33\x6e\x54\x39\x7d\x5f\x42\x5b\x45\x2f\x24\x1a\x11\ +\x2d\x21\x16\x25\x1b\x12\x18\x12\x0b\x30\x25\x18\x80\x63\x45\xa3\ +\x7e\x57\x51\x3e\x2a\x17\x11\x0a\x24\x1c\x12\x8a\x6b\x4b\xa1\x7c\ +\x57\x33\x27\x1a\x1c\x15\x0d\x1d\x16\x0e\x13\x0f\x08\x9e\x7a\x56\ +\xaf\x89\x60\x4c\x3b\x29\x17\x11\x0b\x1f\x17\x0f\x23\x1a\x11\x22\ +\x1a\x10\x2c\x21\x16\x5e\x48\x32\xbe\x93\x69\x90\x70\x4f\x35\x28\ +\x1b\x21\x19\x0f\x26\x1c\x12\x29\x1f\x14\x46\x36\x25\x41\x32\x22\ +\x75\x5a\x3e\x97\x74\x50\x5b\x46\x2f\x52\x3f\x2a\x53\x40\x2c\x62\ +\x4b\x34\x86\x67\x46\x84\x65\x46\x4a\x38\x25\x25\x1c\x12\x28\x1e\ +\x13\x17\x13\x0b\x17\x12\x0b\x22\x19\x10\x21\x19\x0f\x27\x1d\x12\ +\x22\x19\x10\x26\x1d\x12\x29\x1e\x14\x27\x1d\x13\x29\x1f\x13\x29\ +\x1e\x13\x2a\x20\x14\x2b\x20\x15\x32\x26\x18\x33\x26\x19\x31\x25\ +\x18\x2d\x23\x16\x2f\x23\x16\x2c\x21\x15\x3a\x2c\x1c\x31\x24\x17\ +\x2e\x22\x16\x39\x2b\x1c\x33\x27\x19\x2e\x22\x16\x2c\x21\x15\x29\ +\x1f\x13\x25\x1c\x12\x1b\x14\x0d\x1c\x15\x0d\x1c\x16\x0e\x18\x13\ +\x0c\x33\x29\x1e\x3f\x3c\x37\x3c\x3f\x41\x46\x4a\x4d\x57\x5d\x60\ +\x5f\x64\x68\x6c\x71\x75\x77\x7c\x81\x7f\x86\x8a\x85\x8a\x8f\x88\ +\x8f\x93\x8c\x92\x97\x89\x8f\x95\x8b\x92\x96\x8a\x90\x94\x8e\x93\ +\x98\x8e\x93\x97\x90\x95\x99\x91\x95\x9a\x91\x95\x9a\x94\x98\x9d\ +\x92\x96\x9b\x93\x96\x9a\x94\x97\x9b\x95\x98\x9b\x93\x97\x99\x98\ +\x9b\x9f\x00\x00\x00\xd8\xd3\xd1\xcf\xcc\xca\xb9\x98\x78\x21\x1a\ +\x11\x00\x00\x00\x10\x0d\x08\x36\x29\x1b\x22\x1a\x10\x3d\x2d\x1d\ +\x40\x30\x1f\x31\x24\x17\x10\x0d\x08\x1f\x17\x0f\x20\x18\x10\x2a\ +\x20\x14\x27\x1d\x13\x24\x1b\x12\x18\x11\x0b\x17\x11\x0a\x1a\x13\ +\x0c\x18\x12\x0c\x1b\x15\x0e\x21\x18\x10\x28\x1e\x13\x27\x1d\x12\ +\x1f\x17\x0f\x26\x1c\x12\x23\x1a\x10\x1a\x14\x0d\x37\x2a\x1c\x23\ +\x1a\x11\x40\x31\x20\x19\x12\x0b\x1e\x16\x0e\x39\x2c\x1d\x3a\x2b\ +\x1d\x1e\x17\x0e\x2d\x22\x15\x3c\x2d\x1d\x22\x1a\x10\x33\x26\x19\ +\x43\x32\x21\x29\x1e\x13\x37\x29\x1b\x32\x25\x18\x1a\x13\x0c\x1d\ +\x17\x0e\x20\x19\x10\x17\x11\x0b\x22\x1a\x10\x1b\x15\x0d\x1d\x16\ +\x0e\x1e\x16\x0e\x1f\x18\x0f\x1e\x16\x0e\x29\x1f\x14\x54\x40\x2b\ +\x97\x74\x4f\x89\x6a\x49\x11\x0d\x08\x26\x1c\x12\x26\x1d\x12\x27\ +\x1d\x13\x2c\x22\x16\x32\x25\x1a\x6e\x54\x3b\x9e\x79\x54\x57\x43\ +\x2d\x30\x25\x19\x3d\x2e\x20\x8f\x6e\x4d\xa6\x81\x5a\x48\x37\x24\ +\x23\x1b\x11\x1d\x16\x0e\x18\x12\x0b\x90\x70\x4e\xb0\x89\x60\x56\ +\x42\x2e\x13\x0e\x09\x18\x13\x0c\x1d\x16\x0e\x1d\x16\x0e\x22\x1a\ +\x11\x4b\x39\x27\xb9\x8f\x65\x8f\x6e\x4d\x3a\x2c\x1e\x21\x18\x10\ +\x2a\x1f\x14\x2c\x20\x15\x7e\x61\x43\xac\x85\x5d\xaa\x84\x5d\x92\ +\x70\x4e\x70\x55\x39\x97\x75\x51\x97\x75\x51\x8b\x6b\x49\x9f\x7b\ +\x55\xa2\x7d\x56\x5e\x48\x31\x34\x27\x19\x30\x25\x17\x21\x19\x10\ +\x21\x19\x10\x27\x1d\x13\x27\x1d\x12\x23\x1a\x10\x22\x1a\x11\x29\ +\x1f\x14\x2a\x1f\x14\x2a\x1f\x14\x33\x26\x18\x33\x26\x19\x2d\x22\ +\x16\x2b\x21\x14\x35\x27\x19\x3d\x2e\x1d\x32\x25\x17\x2b\x21\x15\ +\x33\x25\x19\x35\x28\x19\x35\x28\x1a\x2e\x22\x16\x3a\x2b\x1c\x3c\ +\x2d\x1d\x3c\x2d\x1d\x36\x29\x1a\x31\x25\x18\x30\x24\x17\x2d\x22\ +\x15\x26\x1c\x12\x1d\x16\x0e\x1d\x17\x0e\x21\x19\x10\x24\x1e\x18\ +\x2f\x31\x31\x3b\x3e\x40\x47\x4b\x4d\x54\x59\x5c\x5e\x63\x67\x6f\ +\x74\x78\x78\x7d\x81\x7d\x82\x87\x82\x88\x8d\x89\x90\x92\x87\x8d\ +\x92\x8c\x92\x97\x8e\x95\x99\x8d\x93\x98\x8a\x90\x95\x8c\x91\x95\ +\x90\x94\x98\x93\x97\x9b\x93\x98\x9b\x96\x9a\x9e\x93\x96\x9a\x96\ +\x99\x9d\x93\x96\x9a\x97\x99\x9d\x95\x98\x9a\x95\x98\x9c\x00\x00\ +\x00\xc9\xbd\xb8\xbf\xb8\xb6\xb9\x9a\x7b\x2c\x22\x17\x02\x02\x01\ +\x04\x03\x01\x3e\x2f\x1f\x20\x18\x0f\x37\x29\x1a\x44\x33\x21\x3b\ +\x2c\x1c\x13\x0e\x09\x14\x0f\x09\x1e\x17\x0f\x2b\x21\x15\x23\x1a\ +\x10\x1f\x18\x0f\x17\x11\x0b\x14\x0f\x09\x14\x0f\x09\x13\x0e\x09\ +\x17\x11\x0b\x1b\x14\x0d\x23\x1b\x11\x22\x19\x10\x21\x19\x10\x21\ +\x19\x10\x1b\x14\x0c\x15\x10\x0a\x2a\x20\x15\x1d\x16\x0e\x26\x1c\ +\x12\x20\x17\x0f\x18\x12\x0c\x2a\x1f\x14\x36\x28\x1b\x1b\x14\x0d\ +\x2a\x1f\x14\x3b\x2d\x1d\x27\x1d\x12\x34\x27\x1a\x40\x31\x20\x2e\ +\x22\x16\x39\x2b\x1c\x37\x2a\x1b\x21\x19\x10\x19\x13\x0c\x1f\x18\ +\x0f\x19\x12\x0c\x22\x1a\x11\x18\x12\x0c\x1b\x13\x0d\x1d\x16\x0e\ +\x1d\x16\x0e\x24\x1b\x11\x22\x1a\x10\x3f\x30\x20\x95\x73\x4f\x94\ +\x73\x50\x1a\x13\x0c\x24\x1b\x11\x22\x1a\x10\x24\x1b\x12\x5a\x45\ +\x2f\x87\x69\x48\x75\x5a\x3d\x8c\x6c\x4a\x8d\x6d\x4c\x8c\x6c\x4c\ +\x8f\x6f\x4d\xa3\x7e\x58\xb3\x8a\x61\x58\x43\x2e\x27\x1d\x13\x20\ +\x18\x0f\x1f\x17\x0e\x7e\x61\x43\xad\x87\x5f\x68\x50\x37\x1a\x13\ +\x0c\x1a\x14\x0c\x23\x1b\x10\x26\x1d\x13\x20\x18\x0f\x3f\x30\x20\ +\xac\x85\x5d\x8b\x6b\x4b\x3b\x2d\x1f\x21\x19\x10\x2c\x21\x16\x29\ +\x1f\x14\x4e\x3b\x28\x61\x4a\x32\x89\x69\x49\x9e\x79\x54\x79\x5d\ +\x40\x3e\x2e\x1e\x2e\x22\x15\x23\x1a\x10\x7f\x61\x43\xa7\x82\x5b\ +\x6b\x52\x37\x36\x28\x19\x2f\x24\x17\x2e\x22\x15\x27\x1e\x13\x2c\ +\x21\x15\x33\x26\x18\x2b\x21\x14\x29\x1f\x14\x33\x26\x19\x33\x27\ +\x19\x31\x25\x17\x3b\x2c\x1c\x3e\x2f\x1e\x3a\x2b\x1c\x39\x2b\x1b\ +\x35\x28\x1a\x34\x27\x19\x33\x26\x18\x31\x25\x17\x36\x29\x1a\x3d\ +\x2d\x1d\x3a\x2b\x1c\x38\x29\x1b\x37\x29\x1b\x31\x24\x18\x35\x28\ +\x1a\x31\x25\x18\x2d\x21\x16\x2f\x23\x17\x30\x23\x17\x2f\x23\x16\ +\x22\x19\x11\x1c\x15\x0d\x16\x11\x0b\x1d\x19\x13\x32\x31\x2f\x3a\ +\x3c\x3e\x47\x4b\x4d\x55\x58\x5c\x5f\x64\x67\x6f\x74\x78\x74\x78\ +\x7c\x7d\x82\x87\x87\x8d\x91\x86\x8b\x90\x85\x8b\x90\x8c\x92\x96\ +\x8c\x92\x96\x8d\x93\x98\x8f\x95\x9a\x90\x94\x99\x90\x94\x98\x92\ +\x96\x9a\x94\x99\x9c\x97\x9a\x9e\x94\x97\x9b\x97\x9a\x9e\x92\x95\ +\x99\x9c\x9e\xa2\x99\x9c\x9f\x97\x9a\x9e\x00\x00\x00\xc2\xb4\xae\ +\xb2\xa9\xa4\xb4\x9c\x85\x34\x2a\x1e\x03\x02\x00\x05\x04\x02\x2c\ +\x22\x15\x1f\x17\x0f\x41\x31\x20\x56\x40\x29\x4c\x39\x25\x0d\x0a\ +\x06\x10\x0c\x07\x21\x18\x0f\x28\x1e\x13\x28\x1e\x13\x26\x1c\x12\ +\x17\x11\x0b\x16\x11\x0a\x11\x0d\x08\x11\x0c\x08\x17\x11\x0b\x19\ +\x13\x0c\x20\x18\x10\x26\x1c\x12\x25\x1c\x12\x28\x1e\x14\x22\x19\ +\x10\x1c\x15\x0d\x22\x1a\x11\x19\x14\x0c\x26\x1c\x12\x23\x1b\x11\ +\x1e\x17\x0f\x25\x1c\x12\x3a\x2c\x1d\x20\x18\x0f\x27\x1d\x13\x36\ +\x29\x1a\x26\x1d\x12\x33\x26\x19\x44\x34\x23\x2e\x22\x16\x36\x29\ +\x1a\x39\x2b\x1c\x2a\x20\x14\x1c\x15\x0e\x18\x13\x0b\x16\x11\x0b\ +\x27\x1e\x13\x14\x0f\x09\x16\x10\x0a\x18\x13\x0c\x16\x10\x0b\x1e\ +\x17\x0e\x21\x19\x10\x45\x34\x23\xa5\x7f\x59\x99\x76\x52\x27\x1d\ +\x12\x1f\x17\x0f\x1f\x18\x0f\x1b\x15\x0d\x34\x28\x1a\x51\x3e\x2b\ +\x63\x4c\x34\x94\x72\x4f\x69\x50\x38\x39\x2b\x1d\x28\x1f\x13\x84\ +\x66\x47\xb4\x8c\x62\x61\x4b\x34\x29\x1e\x13\x26\x1c\x12\x24\x1b\ +\x11\x75\x5a\x3f\xae\x86\x5e\x82\x65\x46\x22\x1a\x10\x29\x1f\x13\ +\x26\x1c\x12\x25\x1b\x12\x20\x17\x0f\x34\x28\x1b\xad\x86\x5e\x9a\ +\x78\x54\x45\x35\x24\x1a\x14\x0c\x20\x18\x0f\x21\x19\x10\x26\x1d\ +\x12\x29\x1e\x12\x6a\x51\x37\x8c\x6c\x4a\x6d\x54\x39\x34\x26\x19\ +\x28\x1e\x12\x1f\x17\x0f\x66\x4e\x35\xa5\x80\x59\x6f\x55\x39\x3f\ +\x2f\x1e\x36\x29\x1a\x34\x27\x18\x2e\x23\x16\x33\x27\x18\x37\x2a\ +\x1a\x36\x28\x1a\x32\x25\x18\x3f\x2f\x1f\x42\x31\x20\x3a\x2b\x1c\ +\x43\x32\x20\x43\x32\x21\x3a\x2b\x1c\x38\x2a\x1a\x38\x2b\x1b\x32\ +\x25\x18\x2f\x24\x17\x2c\x21\x15\x29\x1f\x14\x31\x25\x17\x36\x29\ +\x1a\x32\x25\x18\x2d\x22\x16\x2e\x22\x16\x35\x27\x1a\x34\x27\x1a\ +\x2b\x1f\x15\x2f\x24\x17\x33\x27\x19\x31\x25\x17\x2c\x21\x15\x22\ +\x1a\x10\x1c\x15\x0d\x26\x1f\x17\x31\x31\x2f\x3a\x3d\x3f\x46\x4b\ +\x4d\x53\x57\x5a\x62\x67\x6a\x6e\x71\x76\x75\x78\x7d\x80\x83\x88\ +\x89\x8d\x92\x85\x8b\x90\x87\x8d\x92\x8d\x93\x98\x8a\x8e\x93\x90\ +\x94\x99\x90\x95\x9a\x90\x94\x99\x90\x95\x99\x90\x94\x98\x95\x99\ +\x9d\x96\x99\x9d\x94\x97\x9b\x93\x96\x9a\x92\x95\x99\x9a\x9d\xa1\ +\x97\x9a\x9e\x9b\x9e\xa3\x00\x00\x00\xd9\xd0\xcd\xcc\xc4\xc0\xc0\ +\xad\x9b\x42\x36\x28\x05\x04\x01\x03\x02\x01\x1c\x15\x0d\x1f\x17\ +\x0f\x3b\x2c\x1d\x5c\x44\x2d\x46\x34\x22\x19\x13\x0b\x11\x0d\x08\ +\x1c\x15\x0d\x25\x1c\x11\x2b\x20\x14\x25\x1c\x12\x1e\x17\x0f\x1e\ +\x16\x0e\x15\x0f\x0a\x0f\x0b\x07\x14\x0f\x0a\x13\x0e\x09\x19\x13\ +\x0c\x1c\x15\x0e\x1e\x16\x0e\x2a\x1f\x14\x24\x1b\x12\x17\x11\x0b\ +\x1a\x14\x0d\x1a\x14\x0c\x26\x1c\x12\x26\x1d\x13\x1f\x17\x0f\x21\ +\x19\x10\x40\x31\x20\x1e\x17\x0e\x28\x1e\x13\x3b\x2d\x1d\x22\x1a\ +\x10\x2b\x21\x16\x3a\x2c\x1d\x31\x24\x17\x33\x26\x19\x3a\x2b\x1d\ +\x26\x1c\x12\x17\x11\x0b\x14\x0f\x0a\x12\x0e\x09\x26\x1c\x12\x15\ +\x10\x0a\x19\x13\x0c\x15\x10\x0a\x17\x11\x0b\x1b\x14\x0d\x21\x18\ +\x0f\x2f\x24\x18\x92\x70\x4e\x8f\x6e\x4c\x2c\x21\x15\x1b\x14\x0d\ +\x26\x1d\x12\x26\x1c\x12\x1b\x14\x0c\x0a\x07\x04\x47\x37\x25\x99\ +\x76\x52\x69\x51\x38\x1f\x18\x10\x09\x07\x03\x6d\x54\x3a\xab\x84\ +\x5c\x6b\x53\x39\x28\x1e\x13\x22\x19\x10\x22\x19\x10\x68\x50\x37\ +\xaa\x84\x5c\x93\x71\x4f\x23\x1a\x10\x2e\x23\x16\x2c\x21\x15\x22\ +\x19\x10\x16\x11\x0a\x2e\x23\x18\xa1\x7c\x57\x9c\x78\x54\x4c\x3b\ +\x28\x17\x11\x0a\x23\x1b\x11\x32\x26\x19\x29\x1f\x14\x26\x1c\x12\ +\x5f\x48\x30\x7d\x5f\x41\x61\x4a\x32\x32\x25\x18\x2a\x1f\x14\x1a\ +\x14\x0c\x66\x4f\x36\xa5\x80\x59\x84\x65\x46\x3c\x2d\x1e\x3a\x2c\ +\x1c\x37\x29\x1a\x2e\x22\x16\x2a\x20\x14\x34\x28\x19\x39\x2b\x1c\ +\x3a\x2b\x1c\x3b\x2c\x1c\x31\x24\x17\x29\x1f\x14\x2c\x21\x15\x2d\ +\x22\x16\x2f\x23\x16\x33\x26\x19\x35\x28\x1a\x2d\x22\x16\x30\x24\ +\x17\x2a\x1f\x14\x29\x1e\x14\x2e\x23\x17\x31\x25\x18\x29\x1f\x14\ +\x2b\x20\x14\x2d\x22\x15\x35\x28\x19\x37\x29\x1b\x2d\x21\x15\x33\ +\x26\x18\x33\x26\x18\x2f\x24\x17\x2a\x1f\x14\x27\x1e\x13\x24\x1b\ +\x11\x24\x1c\x14\x2e\x2d\x2b\x39\x3c\x3e\x46\x4a\x4c\x54\x57\x5b\ +\x63\x66\x69\x6d\x71\x74\x78\x7b\x80\x7f\x83\x87\x85\x89\x8d\x8a\ +\x8e\x92\x88\x8d\x92\x8a\x8f\x94\x89\x8e\x93\x8e\x94\x98\x8f\x94\ +\x99\x90\x95\x99\x93\x98\x9b\x90\x95\x98\x93\x96\x9a\x94\x97\x9b\ +\x96\x99\x9e\x90\x93\x97\x91\x93\x98\x95\x98\x9c\x96\x99\x9d\x9b\ +\x9e\xa3\x00\x00\x00\xdc\xd4\xd2\xd7\xd0\xcd\xc4\xae\x98\x56\x4b\ +\x3e\x06\x06\x04\x01\x01\x01\x19\x12\x0c\x28\x1f\x14\x3b\x2c\x1c\ +\x64\x4b\x31\x4b\x38\x25\x28\x1e\x13\x13\x0e\x09\x1b\x14\x0d\x23\ +\x1b\x11\x2b\x20\x14\x26\x1d\x12\x27\x1d\x13\x29\x1f\x14\x1f\x17\ +\x0f\x16\x10\x0b\x17\x11\x0b\x13\x0e\x09\x18\x12\x0c\x1d\x16\x0e\ +\x1f\x17\x0e\x29\x1e\x13\x26\x1c\x12\x19\x13\x0c\x1d\x16\x0e\x1e\ +\x16\x0e\x24\x1b\x11\x27\x1e\x13\x1e\x16\x0e\x1a\x15\x0d\x2c\x21\ +\x15\x1a\x13\x0c\x20\x18\x10\x39\x2b\x1c\x1d\x16\x0e\x28\x1e\x13\ +\x38\x2a\x1c\x2f\x23\x17\x27\x1d\x12\x35\x27\x1a\x2a\x1f\x14\x1b\ +\x15\x0d\x21\x19\x10\x18\x12\x0b\x38\x2a\x1d\x1c\x15\x0e\x16\x12\ +\x0a\x13\x0e\x09\x18\x12\x0b\x1d\x16\x0e\x21\x19\x10\x2a\x20\x15\ +\x9b\x77\x52\x8d\x6d\x4c\x38\x2b\x1c\x1c\x15\x0d\x26\x1d\x12\x23\ +\x1a\x11\x20\x18\x0f\x19\x12\x0c\x2b\x21\x16\x7b\x5f\x41\x95\x73\ +\x50\x4d\x3b\x29\x11\x0d\x07\x5a\x45\x2f\xa3\x7e\x57\x68\x50\x37\ +\x26\x1c\x13\x22\x19\x10\x21\x19\x10\x4f\x3c\x29\xa5\x80\x59\x93\ +\x72\x4f\x25\x1c\x11\x31\x24\x17\x40\x30\x20\x43\x34\x23\x35\x29\ +\x1b\x49\x39\x27\xa0\x7b\x57\xa3\x7e\x58\x76\x5b\x3f\x5c\x48\x31\ +\x7b\x60\x43\x67\x4f\x37\x30\x24\x17\x32\x25\x18\x69\x50\x36\x84\ +\x65\x45\x7e\x60\x42\x4f\x3c\x29\x38\x2a\x1b\x30\x24\x18\x7c\x5f\ +\x41\xa1\x7d\x58\x89\x69\x49\x51\x3e\x29\x38\x2a\x1b\x32\x26\x18\ +\x29\x1f\x14\x2e\x22\x16\x37\x29\x1a\x39\x2a\x1b\x3b\x2c\x1d\x3a\ +\x2c\x1c\x30\x24\x17\x29\x1e\x14\x31\x24\x17\x32\x26\x18\x2e\x22\ +\x16\x30\x24\x17\x2e\x22\x16\x2b\x20\x15\x30\x24\x17\x2c\x21\x15\ +\x28\x1e\x13\x28\x1e\x13\x35\x28\x1a\x23\x1a\x11\x26\x1d\x13\x2d\ +\x21\x16\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x13\x31\x25\x17\x31\x25\ +\x17\x2d\x22\x16\x2b\x20\x15\x2a\x20\x14\x29\x1e\x14\x1f\x17\x10\ +\x20\x1f\x20\x39\x3b\x3d\x46\x48\x4a\x53\x56\x58\x5f\x63\x65\x6c\ +\x70\x72\x77\x7b\x7f\x7e\x83\x86\x82\x87\x8a\x8c\x91\x95\x88\x8c\ +\x91\x87\x8b\x90\x8c\x91\x95\x8d\x92\x97\x8e\x93\x96\x92\x97\x9a\ +\x92\x96\x9a\x92\x97\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\xa0\x8e\ +\x91\x96\x94\x96\x9b\x8f\x92\x96\x94\x97\x9b\x9a\x9d\xa1\x00\x00\ +\x00\xb8\xb0\xab\xbc\xb4\xaf\xbe\xa9\x94\x64\x55\x47\x09\x08\x06\ +\x01\x01\x00\x28\x1e\x14\x2f\x24\x17\x3d\x2e\x1d\x60\x48\x2f\x49\ +\x36\x23\x30\x24\x17\x15\x10\x0a\x18\x12\x0c\x26\x1d\x12\x27\x1e\ +\x13\x23\x1a\x11\x22\x19\x10\x29\x1e\x13\x25\x1b\x12\x22\x19\x10\ +\x21\x19\x10\x18\x12\x0b\x18\x12\x0c\x22\x19\x10\x1f\x17\x0e\x25\ +\x1b\x11\x29\x1e\x13\x1d\x15\x0e\x1e\x17\x0e\x21\x19\x0f\x1a\x13\ +\x0c\x22\x19\x10\x1b\x15\x0d\x18\x12\x0c\x2e\x22\x17\x1b\x15\x0d\ +\x1d\x15\x0e\x2a\x1f\x14\x19\x12\x0b\x22\x1a\x10\x2b\x21\x15\x26\ +\x1c\x13\x22\x1a\x10\x2e\x23\x16\x29\x1f\x14\x25\x1c\x12\x29\x1e\ +\x14\x1c\x15\x0d\x3d\x2e\x20\x1b\x14\x0d\x15\x10\x0a\x14\x0e\x09\ +\x16\x11\x0a\x1e\x16\x0e\x17\x12\x0b\x21\x19\x10\x95\x72\x4e\x99\ +\x76\x52\x43\x34\x22\x20\x17\x0f\x1e\x16\x0e\x20\x18\x0f\x2a\x20\ +\x15\x1e\x16\x0e\x1d\x15\x0e\x4c\x3a\x28\x9d\x79\x54\x9d\x7a\x55\ +\x74\x5a\x3e\x83\x65\x46\xa4\x7f\x58\x71\x57\x3c\x25\x1d\x13\x25\ +\x1c\x12\x1b\x14\x0d\x37\x2a\x1c\x9e\x79\x54\x9b\x77\x53\x37\x29\ +\x1b\x2f\x24\x17\x4f\x3c\x28\x97\x75\x52\x8e\x6e\x4d\x94\x73\x50\ +\xa5\x80\x5a\x9c\x78\x54\x98\x76\x52\x9a\x78\x54\x9d\x7a\x56\x5f\ +\x49\x33\x25\x1b\x11\x37\x29\x1b\x5f\x49\x31\x70\x55\x3a\x68\x4f\ +\x36\x51\x3d\x29\x3a\x2b\x1c\x38\x2a\x1c\x54\x40\x2b\x5a\x44\x2e\ +\x58\x43\x2d\x4e\x3b\x27\x36\x28\x1a\x2f\x23\x17\x20\x18\x0f\x29\ +\x1f\x14\x30\x24\x17\x2d\x21\x15\x2f\x23\x16\x38\x2a\x1b\x37\x2a\ +\x1b\x2e\x23\x17\x34\x27\x19\x2f\x23\x17\x2c\x22\x15\x2a\x1f\x14\ +\x2a\x1f\x14\x2f\x23\x17\x38\x2b\x1b\x34\x27\x19\x30\x24\x17\x27\ +\x1e\x13\x35\x28\x1a\x2c\x21\x15\x2d\x22\x16\x36\x28\x1a\x32\x26\ +\x18\x2b\x20\x15\x2e\x23\x16\x2d\x22\x16\x2c\x21\x15\x2a\x1f\x14\ +\x29\x1f\x14\x2b\x21\x15\x31\x25\x18\x2b\x20\x15\x1d\x1c\x1a\x2d\ +\x2f\x31\x46\x48\x4a\x52\x55\x57\x5f\x63\x65\x6c\x70\x73\x78\x7c\ +\x7f\x7b\x80\x82\x81\x86\x89\x8a\x8e\x93\x89\x8c\x91\x8c\x90\x94\ +\x8f\x93\x99\x8c\x91\x95\x8c\x91\x94\x91\x96\x99\x91\x96\x99\x94\ +\x98\x9b\x8c\x90\x94\x92\x95\x99\x95\x97\x9b\x93\x96\x9a\x94\x97\ +\x9b\x8e\x91\x95\x93\x96\x9a\x96\x99\x9d\x00\x00\x00\xce\xc8\xc4\ +\xc3\xbc\xb7\xb5\xab\xa3\x68\x5a\x4e\x0a\x09\x07\x01\x00\x00\x28\ +\x1e\x13\x2d\x22\x15\x3a\x2b\x1b\x53\x3f\x29\x5d\x45\x2d\x37\x29\ +\x1b\x15\x0f\x0a\x19\x13\x0c\x21\x18\x10\x24\x1b\x12\x26\x1d\x13\ +\x27\x1d\x13\x28\x1e\x13\x27\x1c\x12\x2b\x20\x15\x2e\x22\x16\x24\ +\x1b\x11\x18\x12\x0b\x19\x13\x0c\x17\x11\x0b\x1c\x16\x0d\x20\x18\ +\x0f\x1c\x15\x0e\x1d\x16\x0e\x27\x1d\x13\x19\x13\x0c\x31\x25\x18\ +\x1f\x18\x0f\x1e\x16\x0e\x40\x30\x1f\x1f\x17\x0f\x1f\x17\x0f\x26\ +\x1d\x12\x1d\x16\x0e\x1c\x15\x0e\x1d\x16\x0e\x23\x1a\x10\x1f\x17\ +\x0f\x2f\x24\x17\x2a\x20\x15\x22\x1a\x10\x27\x1d\x12\x1d\x16\x0d\ +\x3b\x2d\x1e\x1b\x15\x0d\x16\x11\x0a\x16\x10\x0a\x1a\x14\x0c\x19\ +\x13\x0c\x37\x2a\x1c\x21\x19\x11\x81\x63\x44\x97\x74\x51\x60\x49\ +\x32\x42\x32\x22\x4e\x3b\x28\x67\x4f\x36\x5a\x45\x2e\x1d\x16\x0d\ +\x1b\x15\x0d\x1f\x18\x0f\x46\x36\x24\x84\x66\x47\xac\x86\x5e\xac\ +\x85\x5d\xaf\x88\x5e\x98\x75\x52\x4a\x38\x26\x2b\x21\x15\x2c\x22\ +\x16\x5b\x45\x2f\x85\x66\x46\x7c\x5f\x41\x51\x3e\x2a\x2f\x23\x17\ +\x3b\x2c\x1d\x6c\x53\x39\x6b\x52\x39\x61\x4b\x34\x51\x3e\x2b\x48\ +\x37\x25\x47\x36\x25\x44\x34\x23\x40\x31\x21\x34\x28\x1a\x29\x1e\ +\x14\x2a\x20\x14\x34\x27\x19\x3a\x2c\x1c\x2e\x22\x16\x2f\x23\x16\ +\x35\x27\x19\x2a\x20\x14\x1e\x17\x0e\x27\x1d\x12\x33\x26\x19\x39\ +\x2a\x1c\x35\x28\x1a\x2e\x23\x17\x23\x1a\x11\x26\x1d\x12\x24\x1b\ +\x11\x28\x1d\x13\x29\x1f\x13\x2e\x23\x16\x2e\x23\x16\x2e\x23\x16\ +\x2a\x1f\x14\x23\x1b\x11\x29\x1e\x14\x28\x1e\x13\x2b\x20\x15\x33\ +\x26\x18\x3f\x30\x1e\x3d\x2e\x1d\x34\x27\x19\x34\x27\x19\x32\x25\ +\x18\x33\x26\x18\x35\x28\x1a\x31\x25\x17\x32\x26\x18\x30\x23\x17\ +\x2f\x23\x16\x34\x27\x19\x30\x24\x17\x2b\x21\x15\x27\x1d\x13\x29\ +\x1e\x13\x2d\x22\x16\x34\x28\x1a\x33\x2e\x29\x21\x23\x24\x38\x3a\ +\x3c\x53\x56\x58\x5f\x61\x65\x6e\x71\x74\x77\x7b\x7d\x79\x7c\x80\ +\x84\x89\x8d\x85\x8a\x8d\x8c\x91\x94\x8b\x8e\x93\x90\x94\x98\x90\ +\x94\x98\x8f\x94\x97\x8f\x94\x97\x90\x96\x99\x93\x98\x9c\x93\x97\ +\x9c\x95\x98\x9d\x98\x9a\x9e\x94\x97\x9b\x94\x97\x9b\x94\x97\x9b\ +\x95\x98\x9b\x95\x98\x9c\x00\x00\x00\xdc\xd7\xd3\xd4\xcf\xcc\xcc\ +\xc5\xbe\x7e\x71\x63\x0d\x0a\x08\x02\x01\x00\x21\x18\x0f\x29\x1f\ +\x13\x37\x29\x1a\x60\x48\x2f\x68\x4d\x33\x39\x2b\x1b\x0f\x0b\x07\ +\x16\x10\x0a\x1b\x14\x0d\x20\x19\x10\x26\x1d\x13\x26\x1d\x12\x26\ +\x1c\x12\x29\x1e\x13\x2d\x22\x16\x2f\x23\x17\x2a\x1f\x14\x1a\x14\ +\x0d\x19\x13\x0c\x1a\x14\x0c\x1a\x13\x0c\x20\x18\x0f\x1b\x15\x0d\ +\x1f\x18\x0f\x26\x1d\x13\x1d\x16\x0e\x32\x26\x18\x23\x1a\x11\x21\ +\x19\x0f\x37\x2a\x1b\x21\x19\x10\x25\x1c\x12\x32\x26\x18\x27\x1d\ +\x13\x26\x1d\x12\x27\x1d\x13\x24\x1b\x12\x1c\x16\x0e\x2f\x23\x17\ +\x2b\x20\x15\x1f\x17\x0f\x2d\x21\x16\x20\x18\x0f\x2f\x23\x17\x24\ +\x1c\x11\x1e\x17\x0e\x1a\x14\x0c\x18\x12\x0b\x16\x11\x0a\x71\x57\ +\x3d\x7f\x62\x43\x8c\x6c\x4b\x95\x73\x4f\x9b\x78\x54\x95\x73\x50\ +\x94\x72\x4f\x9d\x7a\x54\x6f\x55\x3b\x20\x18\x0f\x22\x19\x10\x1c\ +\x15\x0d\x19\x12\x0b\x2c\x22\x17\x47\x36\x25\x55\x41\x2c\x5a\x45\ +\x2f\x59\x44\x2f\x45\x34\x22\x34\x27\x19\x34\x28\x19\x46\x35\x23\ +\x3b\x2d\x1e\x38\x2b\x1c\x3f\x2f\x1f\x2c\x20\x15\x2d\x21\x15\x2c\ +\x21\x15\x27\x1d\x12\x20\x19\x0f\x17\x11\x0a\x16\x11\x0b\x1c\x15\ +\x0d\x1e\x17\x0e\x21\x18\x0f\x27\x1e\x13\x2d\x22\x16\x28\x1e\x13\ +\x26\x1d\x12\x33\x26\x19\x34\x27\x19\x34\x27\x19\x37\x29\x1a\x36\ +\x28\x19\x2c\x21\x15\x2f\x23\x16\x32\x26\x18\x33\x26\x18\x35\x28\ +\x1a\x34\x27\x19\x26\x1c\x12\x2b\x1f\x14\x2d\x22\x16\x32\x25\x18\ +\x31\x25\x17\x34\x27\x19\x2b\x21\x15\x2c\x21\x15\x2c\x21\x15\x2a\ +\x1f\x14\x2b\x20\x15\x2d\x21\x15\x30\x25\x17\x36\x28\x1a\x3a\x2c\ +\x1c\x3d\x2e\x1d\x3c\x2d\x1d\x40\x30\x1f\x38\x2a\x1c\x34\x28\x19\ +\x34\x27\x19\x33\x26\x18\x38\x2a\x1b\x37\x29\x1a\x35\x27\x19\x33\ +\x26\x19\x31\x25\x18\x30\x24\x17\x2a\x1f\x14\x2e\x22\x16\x33\x26\ +\x19\x32\x26\x18\x33\x2e\x27\x37\x39\x3a\x26\x28\x2a\x41\x43\x46\ +\x5e\x62\x64\x6c\x70\x73\x73\x77\x7a\x7a\x7f\x82\x88\x8d\x90\x85\ +\x8a\x8c\x8a\x8f\x92\x8b\x90\x93\x8b\x90\x93\x8f\x94\x97\x90\x95\ +\x98\x91\x96\x99\x91\x96\x99\x90\x96\x99\x95\x99\x9e\x90\x93\x98\ +\x99\x9c\xa0\x99\x9c\xa0\x96\x99\x9d\x95\x99\x9b\x95\x98\x9a\x93\ +\x96\x99\x00\x00\x00\xdb\xd6\xd4\xd6\xd2\xd0\xc5\xb1\x9d\x86\x6e\ +\x55\x0f\x0c\x08\x02\x02\x01\x26\x1c\x12\x29\x1f\x14\x33\x26\x19\ +\x56\x3f\x2a\x5b\x44\x2c\x35\x28\x1a\x0d\x0a\x06\x0b\x09\x05\x15\ +\x10\x0a\x1f\x17\x0e\x20\x18\x0f\x1c\x15\x0d\x21\x18\x10\x26\x1c\ +\x12\x2d\x22\x15\x32\x26\x18\x2a\x1f\x14\x24\x1b\x11\x22\x1a\x10\ +\x29\x1f\x14\x25\x1c\x12\x27\x1e\x13\x1d\x16\x0e\x1e\x17\x0e\x1b\ +\x15\x0d\x1c\x15\x0d\x26\x1c\x11\x23\x1a\x11\x26\x1c\x12\x3a\x2c\ +\x1d\x28\x1e\x13\x2a\x1f\x14\x31\x24\x17\x2c\x22\x15\x27\x1e\x13\ +\x30\x24\x17\x2c\x21\x16\x1c\x15\x0d\x2b\x21\x16\x22\x1a\x11\x19\ +\x13\x0c\x24\x1b\x12\x1b\x14\x0d\x2e\x23\x17\x24\x1b\x11\x20\x18\ +\x10\x20\x18\x0f\x1a\x14\x0d\x1d\x16\x0e\x4e\x3b\x28\x6e\x55\x3a\ +\x92\x71\x4d\x90\x6f\x4d\x7f\x62\x44\x47\x37\x25\x50\x3d\x29\x49\ +\x37\x26\x31\x26\x19\x1f\x17\x0f\x28\x1e\x13\x25\x1c\x12\x1d\x16\ +\x0e\x1a\x13\x0c\x1a\x14\x0d\x1d\x15\x0e\x26\x1c\x12\x28\x1d\x13\ +\x2e\x22\x16\x32\x25\x18\x2e\x22\x16\x29\x1f\x14\x22\x1a\x10\x28\ +\x1e\x13\x2d\x22\x16\x2b\x20\x14\x2c\x20\x15\x29\x1e\x13\x29\x1f\ +\x13\x27\x1e\x13\x1c\x15\x0d\x21\x19\x10\x25\x1b\x12\x1e\x17\x0e\ +\x1b\x15\x0d\x25\x1c\x12\x2c\x21\x15\x2e\x23\x16\x33\x26\x18\x38\ +\x2a\x1b\x36\x28\x1a\x36\x28\x19\x33\x26\x18\x32\x25\x17\x2d\x22\ +\x16\x31\x24\x18\x32\x26\x18\x2b\x20\x14\x2e\x22\x16\x2c\x21\x15\ +\x2a\x1f\x14\x2e\x22\x16\x32\x26\x18\x3a\x2c\x1c\x3e\x2e\x1e\x39\ +\x2b\x1b\x2f\x23\x16\x33\x26\x18\x30\x23\x17\x31\x24\x17\x36\x29\ +\x1a\x35\x27\x1a\x33\x26\x19\x34\x27\x18\x35\x28\x1a\x37\x29\x1b\ +\x3a\x2c\x1c\x3e\x2f\x1e\x3c\x2d\x1d\x3a\x2b\x1c\x37\x29\x1a\x33\ +\x27\x18\x3e\x2e\x1e\x3e\x2f\x1e\x37\x2a\x1a\x37\x29\x1a\x30\x24\ +\x17\x2d\x22\x16\x2a\x1f\x14\x2e\x23\x16\x30\x24\x17\x2f\x24\x17\ +\x31\x2d\x25\x36\x38\x39\x45\x47\x49\x2a\x2c\x2e\x4b\x4d\x50\x6b\ +\x6e\x70\x75\x79\x7c\x79\x7e\x80\x82\x86\x8a\x86\x8a\x8e\x87\x8c\ +\x8f\x8e\x93\x96\x8b\x90\x93\x8a\x8f\x92\x93\x98\x9b\x92\x97\x9a\ +\x92\x97\x9b\x90\x94\x98\x91\x95\x9a\x92\x96\x9a\x9a\x9d\xa1\x99\ +\x9c\xa0\x98\x9b\x9f\x95\x98\x99\x92\x96\x97\x97\x99\x9d\x00\x00\ +\x00\xb5\xae\xa8\xb6\xaf\xa9\xbc\xb1\xa5\x96\x85\x74\x11\x0f\x0b\ +\x02\x02\x01\x29\x1f\x14\x32\x26\x19\x2e\x22\x16\x49\x37\x23\x5d\ +\x45\x2d\x3e\x2f\x1e\x0f\x0b\x07\x14\x0f\x09\x26\x1d\x12\x21\x18\ +\x0f\x17\x12\x0b\x1a\x13\x0d\x21\x19\x10\x24\x1a\x11\x29\x1f\x13\ +\x32\x25\x18\x31\x24\x17\x28\x1e\x13\x20\x18\x10\x26\x1c\x12\x26\ +\x1c\x13\x2c\x21\x16\x26\x1d\x13\x26\x1c\x12\x1b\x14\x0d\x17\x10\ +\x0b\x1e\x17\x0e\x1c\x14\x0e\x24\x1b\x11\x3b\x2d\x1c\x2a\x20\x14\ +\x2a\x1f\x14\x2d\x21\x15\x28\x1e\x13\x23\x1a\x11\x31\x25\x17\x31\ +\x25\x18\x1a\x13\x0c\x36\x29\x1b\x2e\x23\x17\x16\x11\x0a\x2a\x20\ +\x15\x21\x19\x10\x34\x28\x1a\x2c\x21\x15\x22\x1a\x10\x2b\x20\x15\ +\x2b\x20\x15\x20\x18\x0f\x2a\x1f\x15\x2a\x20\x15\x88\x69\x48\x89\ +\x6a\x49\x5f\x49\x31\x20\x18\x0e\x24\x1b\x11\x1e\x16\x0e\x19\x13\ +\x0c\x1c\x15\x0d\x20\x18\x0f\x26\x1c\x12\x23\x1a\x11\x1e\x17\x0e\ +\x1e\x17\x0e\x1e\x17\x0f\x28\x1e\x13\x28\x1e\x13\x30\x24\x17\x2f\ +\x23\x17\x2c\x21\x15\x24\x1b\x11\x20\x19\x0f\x26\x1d\x12\x26\x1c\ +\x12\x27\x1d\x13\x22\x1a\x10\x2b\x21\x15\x2a\x1f\x14\x28\x1e\x13\ +\x24\x1b\x11\x21\x19\x10\x27\x1e\x13\x22\x19\x10\x1a\x13\x0c\x1d\ +\x15\x0d\x1f\x17\x0f\x20\x18\x10\x31\x24\x17\x31\x25\x18\x33\x27\ +\x19\x2f\x23\x16\x30\x24\x17\x2a\x20\x14\x2c\x22\x16\x32\x25\x18\ +\x39\x2a\x1b\x35\x28\x1a\x31\x24\x18\x28\x1e\x13\x2b\x20\x15\x30\ +\x24\x17\x2b\x21\x15\x32\x25\x18\x37\x2a\x1b\x38\x2a\x1b\x35\x28\ +\x1a\x35\x28\x1a\x30\x24\x17\x31\x25\x17\x36\x29\x19\x32\x25\x18\ +\x2f\x23\x17\x2e\x23\x16\x2c\x21\x15\x2e\x22\x16\x31\x25\x18\x3a\ +\x2c\x1c\x34\x27\x19\x37\x29\x1a\x3c\x2c\x1c\x34\x27\x19\x3c\x2d\ +\x1d\x3c\x2d\x1d\x35\x28\x19\x3a\x2b\x1c\x32\x25\x18\x2d\x22\x16\ +\x2a\x1f\x14\x28\x1f\x13\x2a\x20\x14\x30\x24\x18\x31\x2a\x23\x3a\ +\x3b\x3b\x41\x43\x45\x50\x53\x55\x30\x32\x36\x53\x56\x59\x74\x78\ +\x7a\x7e\x82\x85\x84\x88\x8b\x89\x8e\x91\x88\x8c\x8f\x8c\x91\x94\ +\x89\x8e\x91\x8b\x90\x92\x8d\x92\x94\x90\x95\x98\x8f\x94\x98\x91\ +\x96\x9a\x93\x97\x9c\x95\x98\x9c\x97\x9a\x9e\x96\x99\x9d\x98\x9b\ +\x9e\x97\x9a\x9c\x94\x98\x99\x95\x99\x9b\x00\x00\x00\xd7\xd1\xce\ +\xc7\xc1\xbe\xb3\xad\xa9\x96\x86\x77\x10\x0f\x0c\x10\x0c\x08\x3f\ +\x30\x20\x46\x35\x23\x31\x25\x18\x4d\x3a\x25\x5b\x44\x2c\x4e\x3a\ +\x25\x16\x10\x0a\x2b\x20\x14\x2f\x23\x16\x25\x1c\x11\x20\x18\x0f\ +\x14\x0f\x0a\x19\x13\x0c\x22\x19\x11\x25\x1c\x12\x2c\x21\x15\x2e\ +\x22\x16\x2c\x20\x15\x1e\x16\x0e\x23\x1a\x11\x25\x1c\x12\x2b\x21\ +\x15\x2d\x22\x16\x27\x1d\x12\x1e\x17\x0e\x1a\x14\x0d\x24\x1b\x12\ +\x18\x12\x0b\x20\x18\x10\x34\x27\x19\x2a\x20\x14\x2a\x20\x14\x34\ +\x27\x19\x2d\x21\x16\x28\x1e\x13\x37\x2a\x1b\x33\x27\x19\x19\x13\ +\x0c\x3a\x2c\x1d\x30\x24\x18\x1d\x15\x0e\x2d\x22\x16\x21\x19\x10\ +\x2e\x23\x17\x2f\x24\x17\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x29\ +\x1e\x14\x24\x1b\x12\x28\x1f\x13\x6b\x51\x38\x79\x5c\x3f\x64\x4d\ +\x35\x19\x12\x0c\x24\x1a\x11\x20\x18\x0f\x1a\x14\x0d\x1c\x15\x0d\ +\x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x21\x19\x10\x22\x19\x10\x22\ +\x1a\x11\x2b\x20\x15\x2b\x20\x14\x2e\x23\x16\x2c\x20\x15\x25\x1c\ +\x12\x26\x1d\x12\x22\x1a\x10\x24\x1a\x11\x1f\x18\x0f\x24\x1c\x12\ +\x20\x18\x0f\x29\x1f\x13\x29\x1e\x13\x2b\x20\x14\x29\x1f\x14\x1e\ +\x17\x0f\x25\x1c\x12\x25\x1c\x12\x24\x1b\x11\x24\x1b\x12\x1c\x15\ +\x0d\x24\x1b\x11\x2f\x23\x16\x2f\x23\x16\x2a\x1f\x14\x25\x1b\x12\ +\x2c\x21\x15\x26\x1d\x12\x25\x1c\x12\x2e\x22\x16\x30\x24\x17\x36\ +\x29\x1a\x37\x2a\x1a\x33\x27\x19\x31\x24\x17\x2b\x20\x14\x2a\x1f\ +\x14\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x33\x26\x19\x37\x29\x1a\ +\x35\x28\x1a\x34\x28\x19\x2f\x23\x17\x29\x1e\x14\x2c\x21\x15\x2b\ +\x21\x15\x2e\x22\x16\x31\x25\x17\x34\x27\x1a\x3b\x2c\x1d\x35\x28\ +\x19\x39\x2b\x1b\x3e\x2e\x1e\x37\x2a\x1b\x3a\x2b\x1c\x3c\x2d\x1d\ +\x37\x29\x1a\x40\x2f\x1f\x37\x29\x1a\x2e\x22\x16\x2b\x21\x15\x2b\ +\x20\x15\x28\x1e\x13\x30\x24\x18\x2c\x24\x1c\x30\x31\x31\x40\x43\ +\x44\x4b\x4d\x4f\x66\x69\x6b\x33\x36\x3a\x5a\x5d\x60\x81\x86\x88\ +\x81\x86\x89\x86\x8a\x8d\x89\x8e\x91\x8f\x94\x97\x8d\x92\x95\x8e\ +\x93\x96\x89\x8e\x91\x8c\x91\x94\x90\x95\x98\x96\x9b\x9e\x96\x9b\ +\x9f\x94\x97\x9b\x95\x98\x9c\x9a\x9d\xa1\x97\x9a\x9e\x97\x9a\x9f\ +\x97\x9b\x9e\x98\x9c\x9e\x00\x00\x00\xdd\xd8\xd5\xd8\xd3\xd3\xd0\ +\xcc\xca\xb8\xab\xa0\x14\x12\x0f\x11\x0d\x08\x3c\x2d\x1e\x35\x28\ +\x1b\x35\x28\x1a\x57\x41\x2a\x5c\x44\x2d\x4e\x3b\x26\x1b\x15\x0d\ +\x27\x1d\x13\x1f\x18\x0f\x2a\x1f\x14\x26\x1d\x12\x18\x12\x0c\x19\ +\x13\x0c\x1e\x17\x0e\x20\x17\x0f\x28\x1d\x13\x2d\x22\x16\x28\x1e\ +\x14\x1c\x15\x0d\x21\x18\x10\x29\x1f\x14\x33\x26\x18\x28\x1d\x13\ +\x28\x1e\x13\x26\x1c\x12\x1c\x15\x0d\x26\x1c\x12\x1e\x17\x0f\x19\ +\x13\x0d\x39\x2b\x1d\x25\x1b\x12\x26\x1d\x12\x32\x25\x18\x34\x27\ +\x19\x23\x1a\x11\x30\x24\x17\x32\x26\x18\x1d\x16\x0e\x3a\x2d\x1e\ +\x45\x35\x23\x30\x24\x17\x28\x1e\x13\x1e\x17\x0e\x24\x1b\x12\x3a\ +\x2c\x1d\x29\x1e\x14\x24\x1b\x11\x2e\x23\x17\x34\x28\x19\x26\x1c\ +\x13\x27\x1d\x12\x54\x40\x2b\x8f\x6e\x4c\x80\x63\x44\x20\x17\x0f\ +\x28\x1e\x13\x23\x1b\x11\x21\x19\x10\x1d\x16\x0e\x21\x19\x10\x24\ +\x1b\x11\x24\x1b\x11\x21\x19\x10\x1b\x14\x0d\x1f\x17\x0f\x25\x1b\ +\x12\x27\x1d\x13\x2b\x20\x15\x31\x24\x17\x2b\x20\x14\x30\x25\x17\ +\x33\x25\x19\x27\x1d\x13\x24\x1c\x12\x23\x1a\x10\x1c\x15\x0d\x21\ +\x18\x10\x23\x1b\x11\x21\x1a\x10\x24\x1b\x11\x27\x1d\x13\x27\x1d\ +\x13\x2c\x21\x15\x2a\x20\x14\x28\x1e\x13\x27\x1e\x13\x23\x1b\x11\ +\x27\x1d\x13\x29\x1e\x13\x1e\x16\x0e\x2a\x1f\x15\x30\x24\x17\x20\ +\x18\x10\x24\x1b\x11\x34\x27\x19\x2e\x23\x16\x32\x24\x18\x38\x2b\ +\x1b\x30\x24\x17\x32\x26\x18\x25\x1d\x12\x22\x1a\x11\x29\x1f\x14\ +\x27\x1d\x12\x2a\x20\x14\x32\x25\x18\x3b\x2c\x1c\x3a\x2b\x1b\x39\ +\x2b\x1b\x35\x28\x19\x2c\x20\x15\x2c\x21\x15\x29\x1f\x13\x2a\x1f\ +\x14\x2b\x20\x14\x33\x26\x18\x36\x29\x1b\x39\x2c\x1c\x34\x28\x19\ +\x38\x2a\x1b\x3e\x2e\x1d\x3f\x2f\x1e\x43\x32\x20\x3b\x2c\x1c\x39\ +\x2b\x1c\x3c\x2d\x1d\x33\x26\x19\x29\x1e\x14\x2b\x20\x14\x2e\x23\ +\x16\x33\x26\x19\x2d\x26\x1e\x20\x21\x22\x36\x38\x39\x4b\x4d\x50\ +\x58\x5b\x5e\x6d\x70\x74\x3c\x3f\x43\x5d\x5f\x64\x84\x88\x8a\x89\ +\x8d\x8f\x89\x8e\x91\x8c\x91\x94\x8d\x92\x95\x90\x95\x97\x8e\x93\ +\x96\x89\x8e\x91\x8d\x92\x93\x92\x97\x9a\x92\x97\x9a\x98\x9c\x9f\ +\x95\x98\x9c\x98\x9c\x9f\x99\x9c\xa0\x96\x9a\x9e\x96\x99\x9d\x9b\ +\x9e\xa1\x00\x00\x00\xd4\xcf\xcc\xd3\xcf\xcd\xce\xcb\xca\xc8\xbf\ +\xba\x18\x17\x14\x0c\x09\x06\x2c\x22\x16\x47\x36\x24\x30\x24\x17\ +\x53\x3f\x28\x54\x3e\x28\x51\x3d\x27\x19\x12\x0b\x15\x0f\x0a\x19\ +\x13\x0c\x23\x1a\x11\x2e\x22\x16\x2d\x21\x15\x22\x1a\x10\x22\x1a\ +\x10\x23\x1b\x11\x26\x1d\x12\x30\x24\x17\x27\x1d\x12\x1d\x15\x0d\ +\x1f\x18\x0f\x26\x1d\x13\x23\x1a\x11\x23\x1a\x10\x2e\x22\x16\x28\ +\x1e\x14\x2e\x22\x17\x2a\x1f\x14\x20\x19\x0f\x16\x11\x0a\x33\x27\ +\x1a\x2c\x21\x16\x27\x1e\x13\x33\x27\x19\x35\x27\x1a\x25\x1c\x12\ +\x32\x26\x18\x37\x29\x1b\x23\x1b\x11\x2c\x21\x16\x34\x27\x1a\x28\ +\x1e\x13\x26\x1d\x12\x20\x18\x0f\x15\x10\x0a\x36\x29\x1b\x26\x1d\ +\x12\x26\x1d\x12\x2b\x20\x15\x35\x28\x19\x32\x26\x18\x36\x2a\x1b\ +\x5d\x47\x30\x85\x66\x45\x86\x67\x47\x26\x1c\x11\x34\x26\x19\x29\ +\x1e\x13\x1f\x17\x0e\x17\x11\x0b\x1b\x14\x0d\x1f\x17\x0f\x1e\x17\ +\x0f\x1d\x15\x0e\x1b\x15\x0d\x1a\x14\x0c\x1a\x14\x0d\x23\x1b\x11\ +\x20\x18\x0f\x26\x1d\x12\x23\x1a\x11\x2b\x21\x15\x2c\x20\x15\x29\ +\x1e\x13\x23\x1a\x11\x23\x1b\x11\x23\x1a\x11\x19\x13\x0c\x1b\x14\ +\x0d\x24\x1b\x12\x28\x1e\x13\x22\x1a\x10\x1d\x16\x0e\x20\x18\x10\ +\x20\x18\x10\x27\x1d\x13\x21\x19\x10\x18\x13\x0c\x1f\x17\x0f\x1e\ +\x16\x0e\x1f\x17\x0f\x23\x1a\x11\x27\x1d\x13\x2d\x21\x15\x1f\x17\ +\x0f\x2a\x1f\x14\x23\x1b\x11\x2d\x22\x16\x34\x27\x19\x37\x29\x1a\ +\x35\x27\x1a\x2b\x20\x15\x26\x1d\x12\x26\x1d\x12\x24\x1c\x11\x2a\ +\x1f\x14\x32\x25\x18\x3a\x2b\x1b\x39\x2a\x1b\x33\x27\x19\x2e\x23\ +\x16\x2a\x20\x14\x2f\x23\x17\x2b\x20\x15\x2a\x1f\x14\x30\x25\x17\ +\x35\x28\x1a\x33\x26\x19\x32\x25\x18\x30\x24\x17\x39\x2b\x1c\x3a\ +\x2b\x1c\x3d\x2e\x1e\x3c\x2c\x1d\x3a\x2c\x1b\x3e\x2f\x1e\x3f\x2f\ +\x1e\x36\x28\x1a\x2c\x21\x15\x2c\x21\x15\x32\x26\x18\x2e\x22\x16\ +\x2c\x25\x1d\x2e\x2f\x2e\x23\x24\x26\x41\x43\x45\x5c\x5f\x62\x5a\ +\x5d\x60\x7a\x7e\x81\x4c\x50\x53\x5b\x5d\x61\x88\x8d\x8e\x8d\x91\ +\x95\x8e\x93\x96\x8b\x90\x93\x8d\x92\x95\x8e\x93\x96\x8e\x93\x95\ +\x91\x96\x97\x8f\x94\x97\x90\x95\x98\x97\x9b\x9e\x97\x9a\x9e\x98\ +\x9b\x9f\x9a\x9d\xa1\x97\x9a\x9e\x9b\x9f\xa3\x9d\x9f\xa3\x00\x00\ +\x00\xba\xb4\xb2\xbd\xb7\xb8\xbf\xba\xba\xb3\x94\x78\x1e\x18\x10\ +\x06\x05\x02\x3c\x2d\x1e\x3d\x2e\x1f\x3b\x2c\x1c\x54\x3e\x28\x5a\ +\x43\x2b\x4d\x39\x25\x1c\x14\x0d\x1a\x13\x0c\x24\x1b\x11\x28\x1e\ +\x14\x29\x1f\x14\x23\x1a\x11\x20\x18\x10\x18\x12\x0b\x1d\x16\x0e\ +\x21\x19\x10\x26\x1c\x12\x28\x1e\x13\x21\x1a\x10\x1d\x16\x0e\x1c\ +\x15\x0d\x27\x1d\x13\x22\x19\x10\x1e\x17\x0e\x25\x1c\x12\x28\x1e\ +\x13\x2c\x21\x15\x20\x19\x0f\x1d\x15\x0e\x2b\x21\x15\x28\x1e\x14\ +\x26\x1d\x12\x35\x29\x1a\x45\x33\x21\x2f\x24\x17\x31\x25\x18\x33\ +\x26\x19\x26\x1c\x12\x3b\x2d\x1e\x44\x34\x22\x29\x20\x14\x23\x1a\ +\x11\x27\x1d\x12\x1b\x14\x0d\x32\x26\x19\x23\x1b\x11\x2d\x21\x15\ +\x29\x1f\x14\x2f\x23\x17\x34\x27\x19\x33\x26\x18\x55\x40\x2b\x8b\ +\x6a\x49\x80\x63\x44\x29\x1f\x14\x34\x27\x19\x31\x24\x18\x2f\x23\ +\x16\x2e\x23\x16\x26\x1d\x12\x1e\x17\x0f\x22\x1a\x10\x1f\x17\x0e\ +\x1d\x15\x0e\x1d\x17\x0e\x1c\x15\x0d\x1f\x18\x0f\x23\x1a\x10\x23\ +\x1b\x11\x2e\x23\x16\x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x21\x19\ +\x10\x29\x1e\x13\x25\x1c\x11\x22\x1a\x10\x1b\x14\x0c\x1e\x16\x0e\ +\x24\x1b\x11\x28\x1d\x13\x23\x1a\x10\x24\x1b\x11\x28\x1d\x13\x26\ +\x1c\x12\x1d\x16\x0e\x1e\x17\x0e\x20\x18\x0f\x23\x1a\x11\x21\x19\ +\x10\x24\x1b\x11\x21\x19\x10\x29\x1f\x14\x21\x19\x10\x28\x1e\x13\ +\x29\x1f\x14\x31\x25\x17\x38\x2a\x1b\x35\x28\x19\x35\x29\x1a\x26\ +\x1c\x12\x24\x1b\x12\x25\x1b\x11\x23\x1b\x11\x2a\x20\x14\x33\x26\ +\x19\x3c\x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x33\x26\x18\x32\x26\x18\ +\x36\x29\x1a\x33\x26\x19\x33\x26\x18\x38\x29\x1a\x3b\x2d\x1c\x3e\ +\x2e\x1e\x34\x28\x19\x33\x26\x18\x35\x28\x1a\x38\x2a\x1b\x37\x29\ +\x1b\x2e\x23\x16\x2b\x20\x15\x35\x28\x19\x35\x27\x1a\x39\x2b\x1b\ +\x33\x26\x19\x2d\x21\x15\x27\x1d\x12\x2a\x1f\x14\x27\x21\x1a\x32\ +\x32\x32\x37\x39\x3a\x29\x2b\x2e\x53\x55\x58\x1e\x1f\x21\x72\x75\ +\x78\x7e\x83\x84\x57\x5b\x5e\x56\x59\x5c\x87\x8d\x90\x8f\x95\x99\ +\x8e\x93\x96\x8d\x92\x96\x8f\x94\x96\x8e\x93\x94\x8d\x92\x93\x8c\ +\x90\x92\x8f\x93\x95\x94\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x98\x9b\ +\xa0\x99\x9c\xa0\x9c\x9f\xa3\x9c\x9f\xa4\x00\x00\x00\xdb\xd6\xd5\ +\xce\xc9\xc8\xc0\xbb\xbb\xb7\xa2\x91\x2a\x22\x1a\x07\x06\x04\x36\ +\x28\x1b\x3f\x2f\x1f\x30\x24\x17\x4b\x38\x24\x4f\x3b\x26\x48\x37\ +\x24\x17\x11\x0b\x2b\x21\x15\x3b\x2c\x1d\x34\x27\x1a\x1f\x17\x0f\ +\x23\x1b\x11\x28\x1e\x13\x2b\x20\x14\x21\x19\x10\x1e\x17\x0e\x27\ +\x1e\x13\x2e\x23\x16\x26\x1c\x12\x27\x1d\x13\x2c\x21\x16\x2d\x21\ +\x15\x35\x28\x1a\x3e\x2f\x1e\x3e\x2f\x1e\x2b\x20\x14\x37\x29\x1b\ +\x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x38\x2a\x1d\x20\x18\x0f\x30\ +\x24\x17\x3f\x30\x1e\x33\x26\x18\x35\x28\x1a\x32\x25\x18\x2d\x22\ +\x15\x34\x27\x1a\x3a\x2b\x1c\x31\x25\x18\x26\x1d\x12\x38\x2a\x1c\ +\x22\x1a\x10\x1e\x16\x0e\x20\x18\x0f\x25\x1c\x12\x2f\x23\x17\x2f\ +\x24\x17\x30\x24\x17\x2c\x21\x15\x53\x40\x2a\xa1\x7c\x56\x8b\x6a\ +\x4a\x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1b\x30\x24\x17\x2a\x1f\x14\ +\x26\x1c\x12\x22\x19\x10\x1e\x16\x0e\x24\x1b\x11\x2c\x21\x15\x2d\ +\x22\x16\x23\x1a\x11\x24\x1b\x12\x23\x1a\x11\x24\x1b\x11\x2a\x20\ +\x14\x22\x19\x10\x29\x1f\x14\x24\x1c\x12\x2c\x21\x15\x2b\x20\x15\ +\x2a\x20\x15\x23\x1a\x11\x1e\x17\x0f\x21\x18\x10\x26\x1c\x12\x26\ +\x1c\x12\x23\x19\x10\x21\x19\x10\x22\x1a\x11\x22\x1a\x10\x20\x18\ +\x0f\x20\x18\x0f\x1c\x15\x0d\x20\x18\x0f\x27\x1d\x13\x28\x1e\x13\ +\x25\x1c\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x2d\x21\x15\x36\ +\x28\x1a\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x20\x18\x0f\x20\x18\ +\x10\x22\x19\x10\x21\x19\x10\x24\x1c\x12\x27\x1d\x13\x30\x24\x17\ +\x33\x26\x18\x34\x27\x19\x2c\x22\x15\x26\x1d\x12\x24\x1b\x12\x27\ +\x1d\x13\x2c\x20\x15\x2a\x1f\x15\x2b\x20\x15\x2f\x23\x17\x2d\x22\ +\x15\x31\x25\x18\x2d\x22\x15\x30\x24\x17\x31\x25\x17\x2d\x22\x15\ +\x28\x1e\x13\x2c\x21\x15\x39\x2b\x1b\x3d\x2d\x1e\x32\x25\x18\x2c\ +\x21\x15\x2b\x21\x15\x37\x29\x1b\x3d\x30\x22\x35\x34\x31\x41\x44\ +\x45\x3a\x3c\x3e\x11\x11\x13\x2f\x2f\x31\x5c\x5f\x5f\x7a\x7f\x7f\ +\x8a\x91\x92\x62\x66\x6b\x54\x58\x5b\x86\x8b\x8e\x96\x9c\x9f\x8a\ +\x90\x94\x8d\x92\x94\x8c\x91\x92\x8f\x94\x96\x8d\x91\x93\x92\x96\ +\x98\x96\x99\x9d\x97\x9b\x9e\x97\x9a\x9e\x96\x99\x9e\x99\x9c\xa0\ +\x9a\x9d\xa1\x99\x9c\xa0\x00\x00\x00\xdd\xd8\xd7\xdb\xd6\xd3\xd7\ +\xd1\xd1\xca\xbb\xad\x3c\x34\x2c\x06\x05\x03\x1f\x17\x0f\x56\x41\ +\x2b\x2d\x22\x16\x41\x30\x1f\x55\x40\x2a\x45\x34\x21\x23\x1a\x10\ +\x41\x31\x20\x3a\x2c\x1c\x34\x27\x19\x2f\x23\x16\x3a\x2c\x1d\x32\ +\x26\x18\x2d\x22\x16\x31\x25\x18\x27\x1d\x13\x1f\x17\x0f\x29\x1e\ +\x14\x26\x1d\x12\x26\x1c\x13\x2e\x23\x17\x3a\x2b\x1b\x33\x26\x19\ +\x36\x29\x1a\x34\x28\x1a\x38\x2a\x1b\x3f\x2f\x1f\x34\x28\x1a\x27\ +\x1e\x13\x26\x1c\x13\x35\x28\x1a\x21\x19\x10\x34\x27\x1a\x3b\x2d\ +\x1d\x2f\x24\x16\x35\x28\x1a\x3a\x2c\x1d\x30\x24\x17\x25\x1c\x12\ +\x3a\x2d\x1d\x33\x26\x19\x2e\x22\x16\x40\x30\x20\x22\x19\x11\x26\ +\x1c\x12\x1a\x13\x0c\x1f\x17\x0f\x1f\x17\x0f\x21\x19\x10\x24\x1b\ +\x12\x29\x1f\x14\x48\x36\x25\x9e\x79\x54\x8e\x6d\x4b\x3e\x2f\x1f\ +\x39\x2b\x1c\x48\x36\x24\x51\x3d\x29\x50\x3d\x29\x74\x5a\x3e\x6a\ +\x51\x37\x2f\x23\x16\x25\x1b\x11\x26\x1c\x12\x2f\x23\x17\x2c\x20\ +\x15\x32\x25\x18\x29\x1e\x14\x22\x1a\x10\x29\x1f\x13\x18\x12\x0b\ +\x1f\x17\x0f\x23\x1b\x11\x22\x19\x11\x25\x1c\x12\x3d\x2e\x1e\x3b\ +\x2d\x1e\x21\x19\x10\x19\x13\x0c\x22\x1a\x10\x2d\x21\x16\x2f\x23\ +\x17\x2f\x24\x17\x2c\x22\x16\x27\x1e\x13\x27\x1d\x12\x26\x1c\x12\ +\x2f\x23\x16\x2e\x23\x16\x2b\x20\x15\x26\x1c\x11\x23\x1a\x10\x23\ +\x1a\x11\x25\x1c\x12\x30\x24\x17\x37\x29\x1b\x29\x1f\x14\x2e\x22\ +\x16\x29\x1e\x13\x28\x1e\x13\x1e\x17\x0e\x1a\x14\x0d\x1a\x14\x0d\ +\x18\x12\x0c\x1d\x17\x0e\x25\x1c\x12\x29\x1f\x14\x2a\x1f\x14\x31\ +\x24\x18\x2e\x23\x16\x31\x25\x18\x2f\x24\x17\x38\x2a\x1b\x32\x26\ +\x18\x31\x25\x17\x34\x27\x19\x35\x28\x19\x35\x28\x19\x32\x26\x18\ +\x35\x28\x19\x2b\x20\x14\x31\x25\x18\x2f\x23\x16\x2c\x21\x15\x2d\ +\x22\x16\x36\x29\x1a\x3f\x2f\x1e\x3a\x2c\x1c\x2c\x21\x15\x27\x1e\ +\x13\x2d\x22\x15\x33\x27\x1b\x34\x31\x2e\x43\x45\x46\x2a\x2c\x2d\ +\x00\x00\x00\x35\x37\x39\x17\x18\x18\x84\x88\x8a\x82\x86\x8a\x87\ +\x8c\x8f\x69\x6d\x70\x5a\x5d\x60\x82\x86\x88\x92\x97\x9a\x90\x96\ +\x97\x8e\x93\x95\x8e\x93\x96\x93\x97\x9a\x93\x96\x9a\x91\x93\x97\ +\x97\x99\x9e\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x9b\x9e\xa3\x9a\ +\x9e\xa1\x00\x00\x00\xc8\xc1\xc0\xcd\xc6\xc4\xcc\xc7\xc5\xcd\xc3\ +\xba\x4d\x43\x39\x07\x06\x03\x15\x0f\x0a\x49\x37\x24\x28\x1e\x14\ +\x40\x30\x1f\x4a\x37\x24\x48\x36\x23\x27\x1d\x13\x39\x2b\x1c\x2c\ +\x21\x15\x28\x1e\x13\x2e\x22\x16\x34\x27\x19\x2e\x23\x16\x32\x26\ +\x18\x32\x25\x18\x34\x27\x19\x31\x24\x18\x31\x25\x18\x29\x1f\x14\ +\x29\x1f\x13\x35\x28\x19\x3c\x2d\x1e\x33\x26\x18\x34\x27\x19\x39\ +\x2a\x1b\x39\x2b\x1c\x3d\x2d\x1d\x34\x27\x19\x27\x1d\x13\x27\x1d\ +\x13\x47\x35\x24\x25\x1c\x12\x32\x25\x19\x3a\x2c\x1c\x25\x1c\x11\ +\x2e\x22\x16\x38\x2a\x1b\x34\x27\x19\x2d\x21\x16\x47\x36\x24\x30\ +\x25\x18\x23\x1b\x11\x3f\x2f\x1f\x2c\x20\x15\x32\x26\x19\x1a\x13\ +\x0d\x2b\x20\x14\x1f\x18\x0f\x23\x1a\x11\x26\x1d\x13\x29\x20\x14\ +\x4d\x3b\x27\xa8\x82\x5b\xa9\x83\x5c\xaa\x83\x5c\xb1\x89\x61\xb3\ +\x8b\x62\xb1\x8a\x61\xb2\x8b\x62\xb5\x8d\x64\x78\x5d\x40\x2e\x22\ +\x16\x20\x18\x10\x26\x1e\x13\x2b\x21\x15\x27\x1d\x12\x32\x25\x17\ +\x2b\x20\x15\x2e\x22\x17\x65\x4d\x32\x81\x63\x44\x64\x4d\x36\x26\ +\x1d\x13\x26\x1e\x12\x66\x4f\x35\xa2\x7d\x56\x7d\x61\x43\x29\x1f\ +\x14\x21\x1a\x10\x23\x1a\x10\x2c\x21\x15\x2b\x21\x15\x2e\x23\x16\ +\x32\x25\x18\x2e\x22\x16\x2d\x22\x15\x2a\x20\x14\x2e\x23\x16\x2d\ +\x22\x16\x28\x1e\x13\x26\x1d\x13\x1e\x17\x0f\x2b\x20\x15\x34\x27\ +\x18\x29\x1f\x14\x29\x1f\x13\x2d\x22\x15\x24\x1b\x11\x1f\x17\x0e\ +\x22\x1a\x10\x1a\x14\x0d\x1f\x17\x0f\x20\x18\x0f\x1d\x15\x0e\x21\ +\x19\x10\x2b\x20\x14\x2b\x20\x14\x2e\x22\x16\x2f\x23\x16\x2e\x23\ +\x16\x31\x26\x18\x32\x26\x18\x32\x25\x18\x36\x29\x1a\x3b\x2d\x1c\ +\x44\x33\x21\x39\x2b\x1c\x3c\x2c\x1d\x36\x29\x1a\x34\x27\x1a\x2e\ +\x22\x16\x2c\x21\x14\x2e\x23\x16\x2d\x22\x16\x2e\x23\x16\x2a\x1f\ +\x14\x2d\x22\x16\x2d\x22\x16\x25\x1c\x12\x27\x1e\x13\x33\x26\x19\ +\x47\x36\x23\x31\x2b\x25\x3b\x3d\x3e\x2a\x2b\x2c\x00\x00\x00\x27\ +\x28\x29\x20\x20\x21\x63\x65\x69\x84\x89\x8b\x85\x8b\x8c\x8d\x92\ +\x95\x76\x78\x7a\x59\x5c\x5d\x83\x87\x87\x99\x9e\x9e\x8e\x93\x95\ +\x8e\x92\x94\x94\x98\x9a\x97\x9a\x9e\x90\x93\x97\x95\x98\x9c\x95\ +\x98\x9c\x96\x99\x9d\x9b\x9f\xa1\x9b\x9f\xa2\x9c\x9f\xa2\x00\x00\ +\x00\xc9\xc3\xc1\xc6\xbf\xbb\xbe\xb8\xb4\xba\xad\xa3\x57\x4c\x42\ +\x05\x05\x03\x0d\x0a\x07\x51\x3d\x28\x31\x25\x18\x47\x36\x23\x46\ +\x34\x22\x4c\x38\x24\x34\x27\x19\x3c\x2d\x1e\x34\x27\x1a\x2b\x20\ +\x15\x36\x29\x1a\x30\x24\x17\x2d\x21\x15\x2f\x23\x17\x3b\x2c\x1c\ +\x33\x27\x19\x2c\x21\x15\x34\x27\x19\x31\x25\x17\x24\x1b\x11\x2c\ +\x21\x15\x33\x26\x19\x35\x28\x19\x38\x2a\x1b\x36\x28\x1a\x3b\x2d\ +\x1d\x33\x26\x18\x32\x26\x19\x23\x1a\x11\x25\x1c\x12\x46\x36\x24\ +\x21\x18\x0f\x30\x24\x17\x37\x29\x1b\x22\x19\x10\x29\x1f\x13\x38\ +\x2a\x1b\x37\x29\x1b\x2e\x23\x17\x4a\x38\x25\x33\x27\x19\x24\x1c\ +\x12\x38\x2b\x1c\x30\x25\x17\x32\x25\x18\x27\x1d\x13\x24\x1b\x11\ +\x25\x1c\x12\x25\x1c\x12\x22\x1a\x11\x45\x34\x23\x8e\x6e\x4c\x93\ +\x71\x4e\x87\x68\x48\x75\x59\x3d\x73\x57\x3c\x75\x59\x3d\x69\x50\ +\x37\x5d\x47\x30\x5b\x45\x2e\x43\x32\x21\x33\x26\x18\x28\x1e\x13\ +\x28\x1e\x13\x27\x1d\x12\x26\x1d\x12\x24\x1b\x11\x29\x1e\x14\x8f\ +\x6d\x4c\xad\x86\x5f\x9c\x79\x53\xa5\x7e\x57\x6a\x51\x37\x1d\x16\ +\x0e\x2f\x24\x17\x89\x68\x46\x6d\x54\x3a\x17\x11\x0b\x24\x1a\x10\ +\x2c\x21\x15\x2d\x22\x16\x2d\x22\x16\x33\x27\x19\x38\x2a\x1b\x35\ +\x28\x19\x2b\x21\x14\x29\x1f\x14\x28\x1e\x14\x31\x24\x17\x31\x25\ +\x18\x22\x1a\x11\x1e\x17\x0f\x22\x19\x10\x25\x1c\x11\x2f\x24\x16\ +\x2e\x23\x17\x2c\x21\x15\x28\x1e\x13\x1d\x16\x0d\x22\x18\x10\x26\ +\x1d\x12\x2a\x20\x14\x2b\x20\x15\x24\x1b\x11\x25\x1c\x12\x25\x1d\ +\x12\x21\x19\x10\x28\x1e\x13\x2c\x21\x15\x2a\x1f\x14\x2d\x22\x16\ +\x2d\x22\x16\x2b\x21\x15\x2c\x21\x15\x32\x25\x18\x34\x27\x18\x34\ +\x27\x19\x36\x28\x1a\x38\x2a\x1b\x3b\x2c\x1d\x36\x28\x1a\x33\x26\ +\x18\x32\x25\x18\x2e\x22\x16\x31\x25\x17\x2f\x23\x17\x39\x2b\x1b\ +\x3b\x2c\x1d\x36\x29\x1a\x30\x24\x17\x2b\x20\x14\x22\x1b\x12\x25\ +\x24\x22\x29\x2b\x2c\x1f\x20\x20\x13\x14\x14\x00\x00\x00\x4f\x51\ +\x54\x50\x53\x56\x59\x5c\x5f\x8b\x90\x92\x8e\x93\x96\x96\x9a\x9c\ +\x6e\x70\x70\x35\x36\x36\x7f\x83\x83\x96\x9b\x9c\x8e\x93\x94\x95\ +\x99\x9b\x93\x96\x99\x94\x96\x9a\x95\x98\x9c\x92\x95\x98\x98\x9c\ +\x9f\x98\x9b\x9d\x9a\x9e\xa0\x9c\xa0\xa1\x00\x00\x00\xde\xd9\xd8\ +\xd8\xd2\xcf\xcc\xc6\xc5\xa4\x90\x7e\x63\x50\x3e\x07\x06\x04\x0c\ +\x09\x06\x4e\x3a\x27\x31\x24\x17\x40\x30\x1f\x54\x3f\x29\x4a\x38\ +\x24\x32\x25\x19\x41\x31\x20\x3a\x2b\x1c\x33\x26\x19\x30\x23\x16\ +\x2b\x20\x14\x21\x18\x10\x2b\x20\x15\x2f\x24\x17\x24\x1b\x11\x2e\ +\x22\x16\x35\x28\x1a\x33\x26\x19\x25\x1c\x11\x26\x1d\x13\x2b\x1f\ +\x15\x2b\x20\x14\x2b\x20\x14\x2e\x23\x16\x3a\x2c\x1c\x33\x27\x19\ +\x44\x34\x22\x22\x1a\x10\x23\x1b\x11\x50\x3e\x29\x23\x1a\x10\x31\ +\x25\x17\x42\x32\x20\x2a\x1f\x14\x2b\x20\x14\x3a\x2b\x1c\x3b\x2c\ +\x1d\x33\x27\x19\x4d\x3a\x26\x34\x27\x1a\x25\x1c\x12\x31\x25\x18\ +\x32\x26\x18\x42\x32\x20\x35\x27\x1a\x29\x1f\x14\x26\x1d\x13\x2e\ +\x21\x16\x2c\x22\x15\x24\x1b\x11\x28\x1e\x13\x30\x24\x17\x32\x25\ +\x17\x30\x24\x16\x3a\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x36\x28\x1a\ +\x3c\x2d\x1d\x37\x29\x1a\x33\x26\x18\x2e\x22\x16\x2d\x21\x15\x28\ +\x1e\x13\x25\x1c\x11\x21\x19\x10\x49\x38\x25\x98\x75\x50\x64\x4d\ +\x34\x23\x1a\x11\x8e\x6c\x4a\x9e\x7a\x55\x2b\x20\x15\x34\x27\x19\ +\xa0\x7b\x55\x81\x63\x45\x21\x18\x0f\x2f\x23\x17\x2b\x20\x15\x2b\ +\x1f\x14\x26\x1d\x12\x2f\x24\x17\x34\x28\x19\x30\x24\x17\x32\x25\ +\x18\x2f\x23\x16\x33\x27\x19\x3f\x2f\x1e\x38\x2a\x1b\x27\x1d\x13\ +\x2b\x20\x14\x2e\x22\x16\x30\x23\x17\x2f\x24\x17\x2a\x20\x14\x2e\ +\x22\x16\x26\x1c\x12\x25\x1b\x11\x2b\x20\x14\x29\x1f\x14\x24\x1c\ +\x12\x31\x25\x18\x33\x26\x18\x34\x27\x19\x2f\x23\x16\x28\x1d\x13\ +\x2a\x20\x14\x29\x20\x14\x2d\x21\x16\x31\x25\x17\x2d\x22\x16\x2d\ +\x22\x16\x30\x24\x17\x29\x1f\x14\x30\x24\x17\x35\x28\x1a\x3d\x2e\ +\x1e\x44\x32\x20\x3b\x2c\x1c\x3c\x2d\x1d\x36\x29\x1a\x39\x2b\x1b\ +\x35\x28\x1a\x37\x29\x1a\x37\x2a\x1b\x41\x31\x1f\x42\x31\x20\x38\ +\x2a\x1b\x3a\x2b\x1c\x3f\x2f\x1f\x3f\x2f\x1e\x35\x31\x2c\x1b\x1c\ +\x1d\x06\x06\x06\x30\x32\x32\x00\x00\x00\x4e\x50\x51\x79\x7d\x7e\ +\x5c\x5f\x61\x55\x59\x5a\x93\x96\x99\x93\x96\x9a\x61\x62\x63\x00\ +\x00\x00\x24\x25\x25\x75\x79\x7a\x93\x97\x99\x96\x99\x9b\x92\x94\ +\x96\x93\x96\x98\x97\x9b\x9d\x96\x9a\x9c\x99\x9d\x9f\x9a\x9d\x9f\ +\x9a\x9e\x9f\x9d\xa0\xa1\x00\x00\x00\xde\xd9\xd7\xdd\xd7\xd5\xd6\ +\xd1\xcd\xce\xc9\xc6\x76\x65\x53\x09\x08\x05\x0a\x07\x05\x3e\x2f\ +\x1e\x2e\x23\x17\x38\x2a\x1c\x48\x36\x23\x46\x34\x21\x2f\x23\x17\ +\x3c\x2d\x1e\x42\x32\x20\x37\x2a\x1b\x2c\x21\x15\x23\x1a\x11\x24\ +\x1b\x12\x27\x1d\x13\x23\x1a\x10\x28\x1e\x13\x33\x27\x19\x35\x28\ +\x1a\x35\x28\x19\x2a\x1f\x14\x2b\x20\x15\x22\x19\x10\x2b\x20\x15\ +\x30\x24\x17\x2d\x21\x16\x4e\x3b\x26\x34\x27\x19\x54\x41\x2b\x1f\ +\x17\x0f\x24\x1b\x12\x4f\x3c\x28\x25\x1c\x11\x36\x29\x1b\x46\x34\ +\x23\x29\x1f\x13\x2a\x1f\x14\x46\x34\x23\x4b\x39\x26\x32\x26\x18\ +\x56\x42\x2c\x3a\x2b\x1c\x22\x19\x0f\x2a\x20\x14\x34\x27\x19\x3d\ +\x2e\x1e\x2f\x23\x16\x28\x1e\x13\x2a\x20\x14\x35\x28\x1a\x33\x27\ +\x19\x29\x1f\x14\x2c\x22\x15\x2e\x22\x16\x2f\x24\x17\x32\x26\x18\ +\x39\x2b\x1b\x36\x28\x1a\x31\x25\x17\x37\x29\x1a\x3b\x2c\x1c\x33\ +\x26\x18\x2f\x24\x16\x2e\x23\x16\x31\x24\x17\x2c\x21\x15\x27\x1d\ +\x13\x2b\x20\x15\x4a\x38\x25\x99\x75\x50\x85\x66\x45\x63\x4c\x35\ +\x8e\x6d\x4a\x8e\x6e\x4c\x3a\x2c\x1d\x58\x44\x2e\x9a\x77\x51\x92\ +\x71\x4e\x65\x4d\x35\x7c\x5f\x41\x24\x1b\x11\x28\x1e\x13\x23\x1a\ +\x11\x2c\x21\x15\x34\x27\x19\x35\x27\x19\x3a\x2a\x1b\x39\x2b\x1b\ +\x3b\x2c\x1d\x40\x30\x1e\x35\x27\x19\x2e\x23\x16\x2b\x20\x15\x27\ +\x1d\x13\x2b\x20\x14\x38\x2a\x1b\x2a\x20\x14\x2a\x1f\x14\x23\x1a\ +\x11\x2b\x20\x15\x24\x1c\x11\x2f\x23\x16\x30\x24\x17\x38\x29\x1a\ +\x36\x28\x1a\x34\x28\x19\x35\x28\x1a\x30\x23\x17\x2b\x20\x15\x30\ +\x24\x17\x30\x24\x17\x30\x24\x17\x2f\x23\x16\x2b\x20\x15\x32\x25\ +\x18\x2f\x23\x17\x2d\x22\x16\x36\x28\x1a\x41\x30\x1f\x38\x2b\x1b\ +\x3b\x2d\x1d\x43\x32\x20\x3d\x2e\x1e\x32\x26\x18\x39\x2b\x1b\x3d\ +\x2e\x1e\x39\x2b\x1c\x31\x25\x18\x31\x25\x17\x33\x26\x18\x3e\x2f\ +\x1e\x36\x29\x1a\x2c\x21\x15\x31\x2b\x24\x08\x08\x08\x29\x2a\x2a\ +\x1e\x20\x1f\x17\x17\x18\x6b\x6e\x6f\x77\x7a\x7d\x82\x87\x88\x63\ +\x66\x68\x56\x58\x5a\x88\x8a\x8d\x34\x35\x36\x00\x00\x00\x22\x23\ +\x24\x4d\x4f\x50\x73\x75\x76\x97\x9a\x9b\x93\x96\x99\x92\x95\x96\ +\x97\x9b\x9c\x9a\x9f\x9f\x98\x9c\x9d\x97\x9b\x9c\x9a\x9e\x9f\x9d\ +\x9f\xa0\x00\x00\x00\xe0\xdb\xda\xdd\xd9\xd7\xd2\xc9\xc2\xcd\xc3\ +\xb9\x8c\x80\x74\x0e\x0c\x09\x00\x00\x00\x4c\x39\x27\x31\x24\x17\ +\x3c\x2c\x1c\x4b\x38\x25\x49\x37\x24\x31\x25\x17\x32\x26\x19\x38\ +\x29\x1b\x45\x34\x22\x37\x29\x1b\x2c\x21\x15\x2c\x22\x16\x29\x1f\ +\x14\x28\x1e\x13\x2d\x22\x16\x3b\x2c\x1c\x3e\x2e\x1e\x38\x2a\x1b\ +\x2e\x22\x16\x23\x1b\x11\x1e\x17\x0e\x27\x1d\x13\x29\x1e\x14\x2d\ +\x22\x15\x43\x32\x21\x39\x2b\x1c\x4d\x3b\x26\x2e\x22\x16\x2d\x22\ +\x17\x53\x3f\x2a\x2a\x1f\x14\x3b\x2d\x1d\x51\x3c\x28\x2c\x21\x15\ +\x2c\x21\x15\x45\x34\x22\x41\x32\x20\x2a\x20\x14\x37\x29\x1b\x2b\ +\x20\x14\x1c\x15\x0d\x37\x2a\x1c\x2f\x23\x17\x3d\x2e\x1e\x2f\x23\ +\x16\x26\x1d\x12\x21\x1a\x0f\x2b\x20\x15\x35\x28\x19\x35\x27\x19\ +\x2f\x23\x16\x30\x24\x17\x30\x24\x17\x2c\x21\x16\x34\x27\x19\x3a\ +\x2c\x1c\x35\x28\x1a\x3b\x2c\x1c\x40\x2f\x1e\x34\x27\x19\x2e\x23\ +\x16\x2f\x23\x16\x31\x25\x17\x2c\x21\x15\x28\x1e\x14\x2d\x22\x15\ +\x30\x24\x17\x73\x58\x3d\x99\x75\x51\xa7\x82\x5a\x95\x73\x4f\x53\ +\x40\x2a\x47\x36\x24\x9e\x7a\x55\x95\x72\x4e\xa0\x7b\x55\x8a\x6a\ +\x49\x6f\x55\x39\x34\x27\x18\x2b\x20\x15\x2d\x21\x15\x2f\x23\x17\ +\x33\x26\x18\x31\x25\x18\x33\x27\x18\x38\x2b\x1b\x36\x29\x1a\x32\ +\x26\x18\x33\x26\x18\x3b\x2c\x1c\x30\x24\x17\x3a\x2b\x1c\x33\x26\ +\x18\x34\x27\x19\x35\x28\x1a\x29\x1f\x13\x2c\x21\x15\x2c\x21\x15\ +\x24\x1b\x11\x2f\x23\x16\x31\x26\x18\x37\x29\x1b\x33\x26\x18\x36\ +\x29\x1a\x3f\x2f\x1e\x3d\x2e\x1d\x36\x29\x1b\x31\x25\x18\x2b\x21\ +\x15\x32\x26\x18\x34\x27\x19\x32\x26\x18\x3d\x2e\x1d\x40\x30\x1f\ +\x37\x2a\x1a\x36\x27\x1a\x32\x26\x18\x37\x29\x1a\x3b\x2c\x1c\x36\ +\x29\x1a\x39\x2b\x1b\x31\x25\x17\x3a\x2b\x1c\x37\x29\x1a\x2e\x22\ +\x16\x2a\x20\x15\x28\x1e\x13\x31\x24\x17\x3b\x2c\x1c\x2b\x20\x14\ +\x30\x24\x18\x46\x38\x2b\x15\x12\x0e\x18\x19\x18\x15\x16\x16\x28\ +\x2a\x2c\x64\x67\x6a\x7a\x7d\x81\x88\x8a\x8e\x86\x89\x8d\x72\x75\ +\x77\x41\x42\x43\x06\x06\x06\x00\x00\x00\x53\x55\x55\x98\x9c\x9c\ +\x53\x55\x55\x6a\x6c\x6d\x96\x9a\x9b\x96\x9a\x9b\x97\x9b\x9c\x9a\ +\x9e\x9f\x98\x9c\x9d\x98\x9b\x9c\xa1\xa4\xa5\x9a\x9d\x9e\x00\x00\ +\x00\xe1\xdb\xda\xde\xd9\xd8\xd8\xd4\xd3\xcf\xca\xc9\x90\x77\x5e\ +\x0c\x0a\x06\x01\x01\x00\x2c\x21\x16\x31\x25\x18\x35\x27\x19\x3f\ +\x2f\x1e\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x1a\x33\x27\x19\x38\x2a\ +\x1c\x36\x29\x1a\x33\x26\x19\x32\x26\x18\x31\x25\x17\x2c\x21\x15\ +\x31\x24\x17\x3c\x2d\x1d\x40\x2f\x1e\x30\x24\x17\x2e\x22\x16\x24\ +\x1b\x12\x25\x1b\x12\x29\x1e\x13\x24\x1b\x11\x22\x1a\x10\x45\x34\ +\x22\x37\x28\x1a\x4d\x3a\x26\x27\x1d\x13\x30\x24\x18\x52\x3e\x29\ +\x29\x1f\x13\x34\x27\x19\x40\x31\x20\x2d\x22\x16\x25\x1c\x11\x43\ +\x32\x21\x41\x32\x21\x24\x1b\x11\x3e\x2f\x1f\x33\x26\x19\x1f\x17\ +\x0f\x29\x1f\x14\x29\x1f\x14\x43\x32\x22\x37\x28\x1b\x28\x1e\x13\ +\x25\x1c\x12\x2f\x24\x17\x3a\x2b\x1c\x37\x29\x1a\x39\x2b\x1b\x36\ +\x28\x1a\x33\x26\x19\x32\x26\x18\x34\x27\x19\x38\x2a\x1b\x3b\x2b\ +\x1d\x3a\x2c\x1c\x3b\x2c\x1c\x3b\x2c\x1c\x31\x25\x18\x2d\x22\x16\ +\x29\x1f\x13\x24\x1b\x11\x25\x1b\x11\x26\x1d\x12\x2a\x1f\x15\x2b\ +\x21\x14\x4e\x3c\x28\x63\x4c\x33\x44\x34\x22\x32\x26\x18\x37\x28\ +\x1b\x2c\x20\x15\x79\x5c\x3e\x92\x70\x4e\x2e\x22\x15\x2e\x23\x16\ +\x2f\x23\x17\x24\x1b\x11\x24\x1b\x11\x24\x1b\x11\x2c\x21\x15\x30\ +\x24\x17\x2e\x23\x17\x2b\x20\x14\x26\x1c\x12\x26\x1d\x12\x32\x25\ +\x18\x36\x28\x1a\x34\x27\x19\x34\x27\x19\x32\x26\x18\x30\x25\x18\ +\x30\x23\x17\x2b\x21\x15\x2f\x23\x16\x27\x1d\x13\x2b\x20\x15\x2e\ +\x23\x16\x36\x28\x1a\x3b\x2c\x1d\x32\x26\x18\x38\x2b\x1b\x3c\x2d\ +\x1d\x3e\x2e\x1e\x40\x2f\x1e\x3d\x2d\x1d\x36\x28\x1a\x38\x2a\x1b\ +\x38\x2a\x1b\x37\x2a\x1b\x35\x28\x19\x44\x33\x21\x42\x32\x20\x3b\ +\x2c\x1d\x36\x28\x1a\x35\x28\x19\x34\x27\x19\x33\x26\x19\x39\x2b\ +\x1b\x38\x29\x1a\x3a\x2b\x1c\x30\x23\x17\x2d\x21\x15\x32\x25\x18\ +\x2e\x23\x16\x30\x25\x18\x36\x28\x1a\x2e\x22\x16\x37\x29\x1b\x25\ +\x1f\x19\x0b\x0b\x0c\x00\x00\x01\x2b\x2b\x2c\x5b\x5e\x60\x3a\x3d\ +\x40\x64\x67\x6a\x8b\x8e\x91\x8b\x8e\x92\x8a\x8d\x90\x44\x44\x45\ +\x00\x00\x00\x1a\x1b\x1b\x72\x75\x76\xa9\xad\xad\x5c\x5d\x5d\x53\ +\x56\x57\x5f\x62\x65\x9b\x9e\xa0\x99\x9d\x9e\x9c\xa0\xa1\x98\x9c\ +\x9d\x95\x98\x99\x9e\xa1\xa2\x98\x9a\x9b\x00\x00\x00\xe0\xda\xd9\ +\xde\xd9\xd7\xd8\xd4\xd3\xcf\xcb\xca\xa5\x93\x81\x0f\x0d\x09\x02\ +\x01\x00\x34\x28\x1a\x3e\x2f\x1f\x31\x25\x17\x30\x23\x16\x37\x2a\ +\x1b\x38\x2a\x1b\x1b\x14\x0d\x2b\x21\x15\x2f\x23\x17\x33\x26\x19\ +\x2c\x21\x15\x29\x1f\x14\x2c\x21\x15\x2b\x20\x15\x2a\x1f\x15\x2d\ +\x21\x16\x27\x1d\x13\x26\x1d\x12\x28\x1e\x14\x25\x1c\x12\x2b\x21\ +\x15\x2b\x20\x14\x26\x1c\x12\x23\x1b\x11\x3f\x2f\x1f\x34\x27\x19\ +\x3b\x2c\x1d\x2e\x22\x16\x2c\x21\x15\x4e\x3b\x28\x26\x1c\x12\x2e\ +\x22\x16\x36\x28\x1a\x31\x25\x18\x28\x1e\x13\x40\x30\x20\x44\x34\ +\x22\x2a\x20\x14\x46\x35\x24\x37\x29\x1b\x26\x1c\x12\x28\x1e\x14\ +\x26\x1c\x12\x33\x27\x19\x35\x27\x19\x2a\x1f\x14\x25\x1c\x12\x2c\ +\x21\x15\x36\x29\x1a\x39\x2b\x1b\x43\x32\x20\x45\x33\x21\x42\x32\ +\x20\x36\x29\x1a\x3a\x2c\x1c\x38\x2b\x1b\x3b\x2c\x1c\x39\x2a\x1c\ +\x38\x2a\x1b\x3c\x2d\x1d\x36\x29\x1a\x2e\x23\x16\x29\x1f\x13\x23\ +\x1b\x11\x26\x1c\x12\x27\x1e\x13\x2e\x23\x16\x2b\x1f\x15\x27\x1e\ +\x13\x2c\x21\x15\x2e\x23\x16\x2c\x22\x15\x29\x20\x13\x30\x24\x17\ +\x71\x55\x3a\x8f\x6e\x4b\x41\x32\x22\x42\x32\x21\x3e\x2f\x1f\x23\ +\x1b\x10\x27\x1d\x13\x27\x1e\x13\x2e\x23\x16\x31\x25\x18\x30\x24\ +\x17\x22\x1a\x10\x1b\x15\x0d\x26\x1d\x12\x31\x24\x17\x34\x27\x19\ +\x39\x2b\x1b\x33\x26\x18\x2e\x22\x16\x30\x24\x17\x31\x25\x18\x31\ +\x24\x17\x2b\x20\x15\x2e\x22\x16\x36\x28\x19\x39\x2b\x1b\x37\x29\ +\x1a\x35\x27\x1a\x2f\x23\x17\x2e\x22\x16\x32\x26\x18\x3e\x2f\x1e\ +\x43\x32\x20\x47\x35\x22\x40\x30\x1f\x31\x25\x18\x2c\x21\x15\x32\ +\x25\x18\x36\x28\x1a\x3f\x2f\x1f\x3c\x2d\x1e\x3b\x2d\x1c\x34\x27\ +\x19\x31\x24\x18\x2d\x22\x15\x2f\x23\x16\x34\x27\x19\x37\x29\x1b\ +\x3b\x2c\x1d\x3b\x2b\x1c\x3a\x2c\x1d\x3b\x2c\x1c\x39\x2b\x1b\x34\ +\x27\x19\x31\x25\x18\x31\x24\x17\x3d\x2e\x1e\x27\x1f\x18\x14\x15\ +\x16\x05\x05\x05\x1b\x1b\x1c\x59\x5d\x5f\x6d\x71\x74\x3e\x41\x45\ +\x67\x6a\x6d\x93\x95\x99\x85\x86\x89\x0b\x0b\x0c\x00\x00\x00\x1d\ +\x1e\x1e\x80\x83\x84\x88\x8b\x8b\x69\x6b\x6d\x92\x95\x97\x75\x78\ +\x7a\x53\x55\x59\x9f\xa3\xa4\x98\x9c\x9d\x99\x9d\x9e\x95\x99\x9a\ +\x9b\x9f\xa0\x9c\x9f\xa0\x00\x00\x00\xe0\xdb\xda\xde\xd9\xd8\xd8\ +\xd4\xd3\xce\xca\xc9\xbb\xad\xa2\x12\x10\x0d\x00\x00\x00\x32\x26\ +\x19\x3f\x30\x1f\x25\x1c\x12\x29\x1e\x14\x37\x29\x1b\x36\x29\x1a\ +\x20\x18\x0f\x29\x1f\x14\x29\x1f\x13\x27\x1e\x13\x26\x1c\x12\x23\ +\x1a\x11\x20\x18\x10\x23\x1a\x11\x24\x1b\x11\x26\x1d\x12\x26\x1c\ +\x12\x28\x1e\x13\x26\x1d\x13\x2a\x20\x14\x26\x1c\x12\x2a\x1f\x14\ +\x2b\x21\x15\x27\x1d\x13\x3a\x2b\x1d\x2c\x20\x15\x40\x30\x1f\x2d\ +\x22\x16\x2f\x23\x17\x44\x34\x23\x27\x1d\x13\x32\x26\x18\x44\x33\ +\x21\x43\x32\x21\x34\x27\x19\x46\x35\x23\x47\x36\x23\x2c\x21\x15\ +\x3f\x30\x1f\x2f\x23\x17\x28\x1e\x13\x2b\x20\x14\x24\x1b\x10\x2c\ +\x21\x15\x38\x29\x1b\x2b\x20\x14\x28\x1f\x13\x2d\x22\x16\x3a\x2b\ +\x1c\x42\x32\x20\x3f\x2e\x1e\x4a\x36\x24\x4d\x3a\x25\x3d\x2e\x1e\ +\x3d\x2d\x1d\x39\x2b\x1c\x37\x29\x1a\x3d\x2d\x1d\x3d\x2d\x1d\x39\ +\x2a\x1b\x38\x2a\x1b\x3c\x2d\x1d\x31\x25\x18\x27\x1d\x13\x26\x1c\ +\x12\x2c\x22\x15\x31\x25\x18\x2a\x1f\x15\x2a\x20\x14\x28\x1e\x13\ +\x29\x1f\x14\x29\x1f\x13\x2c\x21\x15\x33\x26\x19\x62\x4a\x32\x98\ +\x74\x50\x8d\x6c\x4b\x8a\x6a\x49\x5c\x46\x30\x26\x1d\x12\x2b\x20\ +\x15\x2a\x20\x15\x2c\x21\x15\x2d\x22\x15\x2c\x21\x15\x21\x19\x10\ +\x1e\x17\x0e\x28\x1e\x13\x30\x25\x17\x37\x29\x1b\x38\x2a\x1b\x33\ +\x26\x18\x29\x1f\x13\x26\x1c\x12\x33\x25\x18\x30\x24\x17\x30\x24\ +\x17\x32\x25\x18\x32\x26\x17\x2c\x21\x15\x28\x1e\x13\x2f\x23\x16\ +\x2e\x23\x16\x2b\x20\x14\x30\x24\x17\x40\x2f\x1f\x47\x35\x23\x4a\ +\x38\x24\x46\x35\x22\x32\x25\x18\x28\x1e\x13\x2e\x23\x16\x38\x2a\ +\x1b\x31\x24\x17\x3d\x2e\x1e\x48\x36\x22\x46\x34\x22\x3e\x2e\x1e\ +\x36\x28\x1a\x33\x26\x18\x32\x25\x18\x36\x28\x1a\x37\x2a\x1b\x33\ +\x27\x19\x40\x30\x1f\x3d\x2e\x1e\x37\x29\x1b\x39\x2a\x1b\x3e\x2e\ +\x1e\x33\x26\x19\x30\x24\x18\x2c\x25\x1e\x24\x24\x23\x02\x02\x02\ +\x32\x33\x35\x5d\x60\x60\x6d\x71\x73\x7a\x7e\x81\x49\x4b\x4f\x62\ +\x62\x64\x62\x61\x63\x00\x00\x00\x0e\x0e\x0e\x50\x52\x53\x6d\x6e\ +\x70\x43\x43\x44\x7c\x7f\x80\x9b\xa0\xa1\x9a\x9e\x9f\x84\x87\x89\ +\x47\x47\x4d\x94\x97\x98\x9b\x9f\xa0\x9a\x9e\x9f\x9b\x9e\xa2\xa0\ +\xa3\xa6\x00\x00\x00\xdf\xdb\xda\xde\xd9\xd8\xd9\xd4\xd3\xd1\xcd\ +\xcb\xcb\xc2\xbb\x16\x14\x11\x01\x01\x00\x1b\x15\x0e\x2e\x23\x16\ +\x1d\x16\x0e\x25\x1c\x12\x37\x29\x1a\x33\x26\x18\x1e\x17\x0e\x24\ +\x1b\x11\x24\x1c\x12\x2b\x20\x14\x25\x1c\x12\x23\x1b\x11\x23\x1a\ +\x10\x24\x1b\x11\x23\x1b\x11\x23\x1a\x11\x24\x1b\x11\x28\x1f\x14\ +\x2a\x20\x15\x2a\x20\x14\x27\x1e\x13\x29\x1e\x13\x27\x1e\x13\x1f\ +\x18\x0f\x31\x25\x18\x2c\x21\x15\x55\x40\x2b\x26\x1c\x12\x24\x1b\ +\x12\x37\x2a\x1c\x29\x1f\x14\x2d\x21\x16\x37\x29\x1b\x3e\x2e\x1e\ +\x35\x28\x19\x40\x30\x20\x43\x32\x21\x2b\x21\x15\x40\x30\x20\x2c\ +\x21\x16\x26\x1d\x13\x24\x1b\x12\x2f\x24\x17\x27\x1e\x13\x49\x37\ +\x24\x33\x26\x19\x2f\x24\x17\x30\x24\x17\x39\x2b\x1b\x3c\x2d\x1d\ +\x39\x2b\x1b\x45\x34\x22\x51\x3c\x27\x47\x35\x23\x3a\x2c\x1c\x33\ +\x26\x19\x38\x2a\x1b\x3f\x2f\x1e\x3c\x2d\x1c\x34\x27\x19\x38\x2a\ +\x1b\x40\x2f\x1f\x3d\x2e\x1d\x30\x24\x17\x22\x1a\x11\x24\x1c\x11\ +\x24\x1b\x11\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x27\x1d\x13\x25\ +\x1b\x11\x25\x1c\x12\x30\x24\x17\x39\x2b\x1b\x6c\x53\x38\x90\x6f\ +\x4c\x80\x62\x43\x46\x35\x23\x28\x1e\x13\x26\x1d\x12\x25\x1b\x11\ +\x28\x1e\x13\x2d\x22\x15\x2f\x24\x16\x28\x1e\x13\x25\x1c\x12\x2a\ +\x1f\x14\x32\x26\x18\x3a\x2b\x1c\x38\x2a\x1b\x31\x24\x18\x2b\x20\ +\x14\x2a\x20\x15\x2e\x22\x16\x2b\x21\x15\x2f\x23\x17\x2f\x23\x16\ +\x30\x24\x17\x2c\x22\x15\x29\x1f\x14\x2f\x24\x17\x33\x27\x19\x32\ +\x26\x18\x2d\x22\x15\x37\x29\x1a\x41\x31\x1f\x40\x30\x1f\x3b\x2c\ +\x1c\x2f\x23\x17\x25\x1c\x11\x2c\x22\x16\x35\x28\x1a\x32\x26\x18\ +\x41\x31\x20\x4f\x3b\x27\x45\x33\x21\x43\x32\x21\x3b\x2b\x1c\x31\ +\x25\x18\x31\x25\x18\x37\x29\x1b\x39\x2b\x1b\x37\x29\x1b\x3f\x2f\ +\x1f\x3f\x30\x1f\x37\x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x2e\x22\x16\ +\x27\x1e\x13\x2e\x27\x20\x1d\x1c\x1a\x2d\x2d\x2e\x29\x2b\x2d\x5c\ +\x5f\x60\x6d\x6f\x70\x7a\x7e\x81\x7f\x84\x86\x5b\x5d\x5e\x01\x01\ +\x02\x00\x00\x00\x29\x2b\x2b\x93\x98\x98\x85\x89\x89\x38\x38\x38\ +\x75\x76\x76\x99\x9c\x9d\x96\x99\x9a\x9e\xa1\xa3\x8e\x92\x94\x45\ +\x46\x48\x8b\x8c\x8e\xa2\xa5\xa6\x99\x9b\x9f\xa0\xa1\xa5\x00\x00\ +\x00\xe0\xda\xda\xde\xd9\xd8\xda\xd6\xd4\xd3\xce\xcc\xcd\xc2\xb9\ +\x1f\x1b\x15\x01\x01\x00\x18\x12\x0c\x33\x27\x19\x28\x1e\x13\x2a\ +\x20\x14\x32\x25\x18\x33\x26\x18\x15\x10\x0a\x1f\x17\x0f\x25\x1c\ +\x12\x26\x1d\x12\x27\x1e\x13\x28\x1e\x13\x26\x1c\x12\x26\x1c\x12\ +\x23\x1a\x10\x24\x1b\x11\x26\x1d\x12\x2a\x20\x15\x32\x26\x18\x2f\ +\x23\x16\x2d\x22\x15\x33\x26\x19\x2e\x22\x16\x29\x1f\x14\x2b\x21\ +\x14\x3d\x2e\x1d\x3c\x2c\x1d\x29\x1e\x14\x2b\x20\x15\x32\x25\x18\ +\x35\x29\x1a\x31\x25\x18\x37\x29\x1b\x3f\x30\x1e\x31\x25\x17\x42\ +\x31\x20\x46\x35\x23\x2e\x23\x16\x40\x30\x20\x38\x2b\x1c\x27\x1d\ +\x13\x25\x1c\x12\x31\x25\x18\x21\x19\x10\x3d\x2f\x1e\x32\x26\x18\ +\x32\x26\x18\x37\x29\x1b\x3a\x2c\x1c\x33\x26\x19\x34\x27\x18\x3f\ +\x2f\x1e\x49\x36\x23\x46\x34\x22\x33\x26\x18\x2f\x23\x17\x32\x25\ +\x17\x37\x2a\x1b\x33\x27\x18\x2d\x22\x16\x32\x25\x18\x35\x28\x19\ +\x3b\x2c\x1c\x34\x28\x19\x25\x1c\x12\x21\x18\x10\x1f\x17\x0f\x23\ +\x1b\x11\x24\x1b\x11\x28\x1e\x13\x1f\x18\x0f\x23\x1a\x10\x25\x1c\ +\x12\x27\x1e\x13\x2c\x21\x15\x33\x26\x18\x3e\x2e\x1e\x3e\x2f\x1d\ +\x37\x29\x1a\x2c\x21\x15\x26\x1d\x12\x28\x1e\x13\x2c\x21\x15\x2c\ +\x21\x15\x2a\x20\x14\x29\x1f\x14\x28\x1e\x14\x2e\x22\x16\x32\x25\ +\x18\x38\x2a\x1b\x36\x28\x1a\x33\x26\x18\x33\x26\x19\x30\x24\x17\ +\x31\x25\x17\x31\x24\x17\x2f\x23\x16\x2e\x23\x17\x2f\x23\x16\x2a\ +\x20\x14\x28\x1e\x13\x29\x1f\x14\x2d\x22\x16\x28\x1e\x13\x26\x1d\ +\x12\x2a\x20\x14\x32\x25\x18\x3a\x2b\x1c\x39\x2b\x1b\x2e\x22\x16\ +\x29\x1f\x14\x2a\x20\x15\x33\x27\x19\x40\x30\x1f\x43\x32\x21\x42\ +\x31\x20\x3c\x2d\x1d\x3b\x2c\x1d\x35\x28\x19\x2f\x23\x17\x2e\x23\ +\x17\x36\x29\x1a\x3d\x2e\x1e\x3f\x30\x1f\x47\x35\x22\x40\x30\x1f\ +\x3a\x2b\x1c\x34\x26\x19\x29\x1f\x14\x2b\x21\x15\x25\x1c\x12\x28\ +\x22\x1a\x25\x24\x23\x3c\x3e\x3f\x45\x47\x49\x2c\x2d\x30\x65\x67\ +\x69\x7a\x7c\x80\x81\x83\x86\x71\x73\x74\x00\x00\x00\x04\x05\x05\ +\x4e\x52\x52\xa8\xaf\xae\x68\x6c\x6b\x75\x77\x78\x56\x58\x58\x75\ +\x75\x75\x97\x9b\x9b\x97\x9a\x9d\x96\x9a\x9d\x9c\x9f\xa2\x4f\x4f\ +\x51\x7d\x7e\x80\x9b\x9e\xa2\xa0\xa2\xa5\x00\x00\x00\xe0\xdb\xda\ +\xdf\xda\xd9\xdb\xd5\xd3\xd5\xd0\xcd\xc5\xb2\x9e\x2b\x23\x18\x00\ +\x01\x00\x1a\x14\x0d\x48\x36\x24\x28\x1e\x13\x2c\x22\x15\x31\x25\ +\x18\x36\x29\x1a\x18\x12\x0c\x1f\x17\x0f\x28\x1e\x13\x23\x1a\x11\ +\x2a\x20\x14\x2a\x1f\x14\x2d\x21\x15\x29\x1f\x13\x29\x1f\x14\x27\ +\x1d\x12\x26\x1c\x12\x2d\x22\x16\x38\x2a\x1b\x34\x27\x19\x2e\x23\ +\x16\x35\x28\x1a\x32\x25\x18\x30\x24\x17\x2e\x23\x16\x34\x27\x19\ +\x36\x29\x1a\x2d\x21\x16\x2d\x21\x16\x38\x2a\x1b\x39\x2b\x1c\x32\ +\x26\x18\x3d\x2e\x1e\x41\x31\x20\x25\x1c\x11\x41\x31\x21\x45\x34\ +\x23\x2a\x1f\x14\x43\x32\x21\x43\x32\x22\x33\x26\x19\x2c\x22\x15\ +\x2d\x22\x16\x1e\x17\x0e\x2f\x24\x17\x27\x1e\x13\x2f\x23\x16\x34\ +\x27\x19\x37\x29\x1a\x33\x26\x18\x36\x28\x1a\x3b\x2d\x1d\x43\x32\ +\x20\x44\x33\x21\x39\x2b\x1b\x35\x27\x19\x33\x26\x18\x33\x26\x18\ +\x2f\x24\x17\x2e\x23\x16\x30\x24\x17\x30\x24\x17\x38\x2a\x1c\x33\ +\x27\x19\x2c\x21\x15\x27\x1d\x12\x27\x1d\x12\x26\x1d\x12\x1f\x18\ +\x0f\x22\x1a\x10\x1f\x18\x0f\x21\x19\x0f\x26\x1c\x12\x20\x18\x0f\ +\x27\x1d\x13\x2d\x22\x16\x2f\x23\x16\x34\x27\x19\x34\x27\x19\x2c\ +\x20\x14\x2a\x1f\x14\x30\x24\x17\x35\x27\x19\x33\x26\x18\x2e\x23\ +\x16\x2b\x21\x15\x28\x1e\x13\x2c\x21\x16\x31\x25\x18\x2f\x24\x17\ +\x38\x29\x1b\x38\x2a\x1b\x37\x29\x1a\x34\x26\x19\x3d\x2d\x1d\x3b\ +\x2c\x1c\x30\x24\x17\x2c\x21\x15\x2b\x21\x15\x28\x1e\x13\x2a\x1e\ +\x14\x25\x1c\x12\x27\x1d\x13\x21\x19\x10\x23\x1b\x11\x2c\x21\x15\ +\x2e\x22\x16\x38\x2a\x1a\x3d\x2e\x1d\x32\x26\x18\x33\x27\x19\x2b\ +\x21\x15\x34\x27\x19\x3f\x2f\x1e\x3e\x2f\x1e\x3a\x2b\x1b\x37\x2a\ +\x1b\x35\x29\x1a\x3b\x2d\x1c\x38\x2a\x1b\x33\x27\x19\x34\x28\x1a\ +\x3b\x2c\x1c\x3d\x2e\x1e\x44\x33\x21\x42\x31\x20\x3b\x2d\x1c\x36\ +\x28\x19\x29\x1f\x14\x25\x1c\x11\x22\x19\x10\x25\x1d\x16\x31\x30\ +\x30\x40\x42\x43\x4d\x4f\x51\x58\x5a\x5d\x30\x32\x36\x72\x75\x79\ +\x7e\x81\x83\x2a\x2c\x2b\x00\x00\x00\x0c\x0c\x0d\x57\x59\x5b\x96\ +\x9a\x9c\x6b\x6c\x6d\x80\x83\x83\xa8\xac\xac\x54\x55\x55\x72\x73\ +\x74\x94\x98\x99\x97\x9b\x9c\x9d\xa1\xa2\xa1\xa5\xa6\x61\x62\x64\ +\x6c\x6c\x6e\x9f\xa1\xa2\x00\x00\x00\xe1\xdb\xda\xdf\xdb\xd9\xdb\ +\xd6\xd2\xd6\xd2\xce\xbe\xa2\x85\x3c\x30\x24\x07\x05\x03\x10\x0c\ +\x08\x36\x2a\x1c\x1f\x17\x0f\x29\x1f\x14\x34\x27\x19\x44\x33\x21\ +\x1d\x15\x0e\x1c\x14\x0d\x20\x18\x10\x24\x1b\x11\x2d\x23\x16\x2e\ +\x23\x16\x36\x28\x1a\x30\x24\x17\x2e\x23\x16\x2e\x23\x16\x2a\x1f\ +\x14\x34\x27\x19\x36\x28\x19\x2b\x20\x14\x2a\x21\x14\x2c\x21\x15\ +\x2f\x23\x16\x31\x24\x17\x35\x28\x19\x31\x25\x17\x39\x2b\x1b\x31\ +\x25\x17\x2f\x23\x16\x36\x29\x1a\x49\x37\x24\x37\x29\x1a\x47\x35\ +\x22\x4a\x38\x24\x2d\x22\x16\x3b\x2c\x1d\x39\x2b\x1c\x28\x1e\x13\ +\x31\x25\x18\x33\x26\x19\x2b\x21\x15\x25\x1c\x12\x29\x1f\x14\x1b\ +\x14\x0d\x34\x28\x1b\x20\x17\x0f\x2a\x20\x14\x2c\x21\x15\x32\x26\ +\x18\x33\x27\x19\x33\x27\x19\x34\x27\x19\x3e\x2e\x1e\x41\x31\x20\ +\x46\x34\x21\x3a\x2b\x1c\x32\x25\x18\x39\x2a\x1b\x34\x27\x19\x2f\ +\x22\x16\x31\x25\x18\x2f\x23\x17\x33\x26\x18\x36\x29\x1a\x32\x25\ +\x18\x31\x25\x17\x31\x24\x17\x2b\x20\x14\x1e\x17\x0e\x1f\x18\x0f\ +\x23\x1b\x11\x27\x1d\x12\x26\x1c\x13\x23\x1a\x11\x24\x1b\x11\x28\ +\x1e\x13\x2d\x22\x15\x32\x25\x18\x2b\x21\x15\x26\x1c\x12\x27\x1d\ +\x13\x2e\x23\x17\x33\x27\x19\x2f\x23\x17\x30\x24\x17\x2b\x20\x14\ +\x21\x19\x0f\x2b\x20\x14\x33\x26\x19\x32\x26\x18\x38\x2a\x1b\x33\ +\x26\x19\x33\x26\x18\x31\x24\x17\x3c\x2d\x1d\x3c\x2c\x1c\x34\x27\ +\x19\x2b\x20\x14\x28\x1f\x13\x2b\x20\x14\x2f\x23\x16\x2d\x22\x16\ +\x2b\x20\x15\x26\x1d\x13\x26\x1d\x12\x2b\x21\x15\x2e\x23\x16\x36\ +\x29\x1a\x3a\x2c\x1c\x37\x2a\x1b\x3a\x2b\x1b\x38\x2a\x1b\x39\x2b\ +\x1c\x37\x2a\x1b\x34\x26\x19\x35\x27\x19\x3a\x2c\x1c\x37\x2a\x1b\ +\x3c\x2d\x1d\x3a\x2b\x1c\x35\x28\x19\x3a\x2c\x1c\x41\x30\x1f\x3c\ +\x2d\x1d\x3f\x2f\x1e\x43\x32\x20\x36\x29\x1a\x30\x25\x17\x2c\x21\ +\x15\x2a\x1f\x14\x2b\x20\x15\x30\x25\x19\x28\x25\x22\x3b\x3d\x3f\ +\x4c\x4e\x4f\x5b\x5c\x5f\x69\x6b\x6f\x35\x36\x3a\x6c\x6e\x6f\x00\ +\x00\x00\x02\x02\x02\x3f\x41\x42\x86\x8a\x8d\x39\x39\x3c\x68\x68\ +\x6a\x9a\x9c\x9d\x79\x7b\x7c\x98\x9c\x9c\x60\x61\x61\x64\x66\x67\ +\x91\x95\x96\x9d\xa0\xa3\x9b\x9e\xa2\xa2\xa6\xa8\x79\x7b\x7c\x63\ +\x63\x65\x00\x00\x00\xdf\xda\xd8\xdd\xd9\xd7\xdb\xd5\xd2\xd7\xd2\ +\xcf\xc6\xb1\x9d\x4c\x43\x38\x05\x04\x03\x05\x04\x03\x27\x1d\x13\ +\x1c\x15\x0d\x2a\x1f\x14\x35\x28\x19\x4f\x3b\x26\x25\x1b\x12\x17\ +\x12\x0b\x24\x1b\x11\x2a\x20\x14\x28\x1e\x13\x30\x24\x17\x3f\x2f\ +\x1e\x35\x27\x19\x2c\x21\x15\x35\x28\x1a\x37\x29\x1a\x3a\x2c\x1c\ +\x36\x28\x1a\x2b\x20\x14\x2a\x1f\x14\x28\x1e\x13\x2c\x21\x16\x2c\ +\x21\x15\x37\x2a\x1b\x3a\x2c\x1c\x3d\x2e\x1d\x34\x27\x19\x27\x1d\ +\x12\x2f\x24\x17\x43\x33\x21\x3d\x2e\x1e\x4a\x38\x24\x4b\x38\x24\ +\x33\x26\x18\x3c\x2d\x1d\x32\x25\x18\x26\x1c\x12\x29\x1e\x14\x36\ +\x29\x1a\x2c\x21\x15\x20\x18\x10\x2c\x21\x16\x1c\x16\x0d\x32\x26\ +\x18\x22\x1a\x10\x30\x24\x17\x2e\x22\x16\x34\x26\x18\x39\x2b\x1b\ +\x40\x30\x1f\x37\x28\x1a\x40\x30\x1f\x44\x33\x21\x4d\x3a\x25\x46\ +\x35\x22\x3c\x2d\x1c\x3c\x2d\x1c\x37\x29\x1b\x2e\x23\x17\x39\x2b\ +\x1b\x3a\x2c\x1c\x33\x26\x18\x31\x25\x17\x35\x28\x19\x30\x24\x17\ +\x2e\x22\x16\x2b\x20\x15\x22\x19\x10\x24\x1b\x11\x24\x1b\x11\x26\ +\x1c\x13\x30\x24\x17\x21\x18\x0f\x1c\x16\x0e\x23\x1a\x10\x33\x26\ +\x19\x2f\x23\x16\x2c\x21\x15\x27\x1e\x12\x25\x1c\x12\x2b\x20\x15\ +\x32\x26\x18\x33\x27\x19\x34\x27\x19\x26\x1d\x12\x21\x18\x10\x29\ +\x1f\x14\x2d\x22\x16\x2d\x22\x16\x40\x30\x20\x37\x29\x1b\x2d\x21\ +\x15\x24\x1b\x11\x33\x26\x19\x39\x2b\x1b\x38\x2a\x1b\x32\x26\x18\ +\x30\x23\x16\x2d\x22\x15\x2d\x22\x16\x2c\x21\x15\x27\x1d\x13\x27\ +\x1e\x13\x2c\x22\x15\x2f\x24\x16\x2e\x22\x16\x2e\x22\x16\x2d\x22\ +\x15\x32\x25\x18\x34\x27\x19\x35\x27\x19\x33\x26\x18\x32\x26\x18\ +\x2e\x23\x17\x34\x27\x19\x34\x27\x19\x36\x28\x1a\x32\x26\x18\x32\ +\x25\x18\x36\x28\x19\x39\x2a\x1b\x46\x34\x21\x49\x37\x23\x3d\x2e\ +\x1d\x3f\x30\x1e\x37\x2a\x1a\x33\x26\x18\x2e\x23\x17\x2f\x23\x16\ +\x28\x1e\x13\x34\x29\x1b\x2b\x28\x24\x2a\x2c\x2d\x48\x4c\x4d\x5b\ +\x5d\x5f\x6c\x70\x72\x75\x78\x7c\x0a\x0b\x0c\x00\x00\x00\x11\x11\ +\x12\x78\x7c\x7e\x9f\xa3\xa6\x5e\x5f\x61\x44\x44\x47\x7d\x7e\x81\ +\x28\x29\x2a\x7b\x7e\x7e\xaa\xae\xaf\x6f\x72\x75\x67\x69\x6c\x89\ +\x8d\x90\x9d\xa1\xa4\xa2\xa5\xa9\xa7\xaa\xad\x87\x89\x8b\x00\x00\ +\x00\xdf\xd9\xd6\xde\xda\xd7\xdc\xd7\xd3\xd7\xd2\xcf\xcd\xc0\xb4\ +\x5d\x55\x4e\x05\x05\x04\x03\x02\x02\x21\x18\x10\x1d\x17\x0e\x2c\ +\x21\x15\x3c\x2d\x1d\x53\x3e\x28\x36\x29\x1a\x1d\x16\x0e\x2a\x1f\ +\x14\x2e\x23\x16\x29\x1f\x14\x2a\x20\x15\x36\x29\x1a\x35\x28\x19\ +\x2b\x21\x14\x2d\x22\x16\x33\x27\x19\x3b\x2c\x1c\x33\x26\x19\x2c\ +\x21\x16\x29\x1e\x13\x2b\x20\x15\x2e\x23\x17\x27\x1d\x13\x32\x25\ +\x18\x3a\x2b\x1c\x34\x27\x19\x36\x29\x1a\x23\x1a\x10\x30\x24\x17\ +\x53\x3f\x2a\x3d\x2e\x1d\x4d\x39\x25\x55\x3f\x29\x3a\x2b\x1c\x3e\ +\x2f\x1e\x3a\x2c\x1d\x29\x1e\x14\x26\x1c\x12\x40\x30\x20\x2c\x21\ +\x16\x23\x1b\x11\x35\x28\x1a\x2c\x21\x15\x2c\x21\x15\x22\x1a\x10\ +\x29\x1e\x14\x2c\x21\x15\x2f\x23\x17\x39\x2a\x1b\x41\x31\x20\x3a\ +\x2c\x1c\x37\x29\x1a\x40\x30\x1f\x46\x35\x22\x45\x33\x21\x43\x33\ +\x20\x41\x31\x1f\x36\x29\x1a\x2e\x23\x16\x33\x26\x18\x31\x25\x17\ +\x31\x25\x17\x33\x26\x18\x33\x26\x18\x2e\x22\x16\x2d\x22\x16\x2b\ +\x21\x15\x23\x1a\x11\x1f\x18\x0f\x1f\x16\x0e\x20\x18\x0f\x2c\x21\ +\x15\x1e\x17\x0e\x1e\x17\x0f\x21\x1a\x10\x29\x1e\x13\x26\x1d\x11\ +\x28\x1e\x13\x23\x1b\x10\x25\x1c\x11\x2c\x21\x15\x2c\x21\x15\x2c\ +\x21\x15\x42\x32\x21\x49\x37\x25\x3c\x2d\x1e\x2f\x23\x17\x26\x1d\ +\x12\x23\x1a\x10\x5b\x45\x2e\x7b\x5e\x40\x7d\x60\x41\x63\x4a\x32\ +\x42\x31\x20\x31\x25\x17\x35\x27\x19\x34\x27\x19\x33\x26\x19\x31\ +\x26\x18\x33\x27\x19\x30\x24\x17\x2a\x20\x15\x28\x1e\x13\x28\x1e\ +\x14\x2e\x23\x16\x2c\x21\x15\x2b\x21\x15\x2d\x22\x16\x2f\x23\x16\ +\x31\x25\x17\x38\x2a\x1b\x33\x26\x19\x35\x28\x1a\x30\x24\x18\x31\ +\x25\x17\x30\x24\x17\x35\x28\x19\x31\x25\x18\x32\x25\x18\x39\x2b\ +\x1c\x3a\x2b\x1b\x4a\x37\x23\x50\x3c\x27\x48\x36\x23\x43\x32\x20\ +\x3c\x2d\x1d\x36\x29\x1a\x30\x24\x17\x2e\x23\x16\x29\x1f\x13\x2d\ +\x22\x16\x35\x34\x31\x2f\x32\x33\x32\x34\x36\x50\x52\x55\x69\x6c\ +\x6e\x74\x77\x7a\x07\x07\x07\x00\x00\x00\x1a\x1a\x1b\x9b\x9e\xa1\ +\x85\x87\x8a\x6d\x6e\x72\x7b\x7c\x80\x67\x69\x6d\x5e\x60\x63\x90\ +\x93\x95\x9c\xa0\xa0\xa6\xab\xad\x85\x8a\x8c\x54\x58\x5b\x82\x86\ +\x88\xa4\xa8\xaa\xa0\xa3\xa7\xa1\xa5\xa6\x00\x00\x00\xe0\xdb\xd8\ +\xe0\xdb\xd8\xdc\xd7\xd4\xd6\xd0\xcc\xd0\xca\xc5\x6d\x67\x60\x06\ +\x05\x04\x0b\x08\x05\x49\x37\x24\x25\x1c\x12\x2e\x22\x16\x36\x29\ +\x1a\x55\x3f\x29\x39\x2b\x1c\x28\x1e\x13\x2a\x20\x14\x2f\x23\x16\ +\x34\x27\x19\x30\x24\x17\x34\x27\x19\x39\x2b\x1b\x32\x25\x18\x2b\ +\x20\x15\x23\x1a\x11\x23\x1a\x10\x24\x1b\x11\x1f\x17\x0f\x20\x19\ +\x10\x26\x1d\x13\x28\x1e\x13\x24\x1b\x11\x27\x1d\x13\x39\x2b\x1c\ +\x37\x28\x1a\x3e\x2e\x1e\x29\x1f\x14\x34\x26\x19\x4e\x3b\x27\x2c\ +\x21\x15\x3c\x2d\x1d\x52\x3d\x28\x37\x29\x1a\x3a\x2c\x1d\x40\x31\ +\x21\x29\x1f\x14\x1e\x17\x0e\x30\x25\x18\x24\x1c\x11\x21\x1a\x10\ +\x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x1b\x15\x0c\x23\x1b\x11\x25\ +\x1c\x12\x28\x1e\x13\x2f\x23\x17\x3a\x2b\x1b\x37\x29\x1a\x38\x2a\ +\x1b\x40\x2f\x1e\x41\x31\x1f\x3f\x2f\x1e\x43\x33\x20\x3d\x2e\x1e\ +\x31\x25\x18\x36\x29\x1a\x3e\x2e\x1d\x37\x29\x1a\x35\x28\x19\x31\ +\x24\x17\x2f\x23\x16\x29\x1e\x14\x29\x1f\x14\x2c\x21\x15\x27\x1e\ +\x13\x2e\x23\x16\x35\x28\x1b\x39\x2c\x1d\x47\x36\x25\x3b\x2d\x1e\ +\x19\x13\x0c\x21\x1a\x11\x65\x4e\x35\x77\x5c\x3f\x74\x58\x3c\x45\ +\x35\x23\x2a\x1f\x14\x2e\x22\x16\x47\x35\x23\x70\x55\x39\x85\x66\ +\x45\x94\x71\x4e\x87\x67\x46\x69\x4f\x34\x45\x34\x22\x29\x1e\x13\ +\x57\x42\x2b\xa4\x7e\x58\x9f\x7a\x55\xa1\x7c\x55\x72\x57\x3a\x3d\ +\x2e\x1e\x3a\x2b\x1c\x39\x2a\x1b\x30\x25\x17\x30\x25\x17\x2e\x22\ +\x16\x2f\x24\x17\x2f\x23\x17\x2c\x21\x16\x32\x25\x18\x3a\x2c\x1c\ +\x36\x29\x1a\x2e\x23\x16\x32\x26\x18\x33\x26\x19\x34\x27\x18\x3a\ +\x2c\x1c\x3a\x2b\x1c\x3d\x2e\x1e\x3d\x2e\x1e\x40\x30\x1f\x3d\x2e\ +\x1d\x3e\x2e\x1e\x37\x2a\x1b\x32\x26\x18\x3b\x2c\x1c\x3e\x2f\x1e\ +\x5e\x46\x2e\x47\x35\x23\x43\x32\x20\x43\x32\x21\x42\x32\x20\x3d\ +\x2e\x1d\x38\x2a\x1a\x31\x25\x17\x40\x30\x20\x51\x3d\x29\x3d\x37\ +\x32\x42\x44\x46\x38\x3a\x3b\x38\x3a\x3c\x5a\x5d\x60\x49\x4a\x4c\ +\x00\x00\x00\x05\x05\x05\x43\x45\x46\x70\x72\x76\x70\x72\x74\x6d\ +\x6f\x73\xa5\xaa\xaf\x87\x8a\x8f\x6a\x6c\x72\x73\x76\x7a\x9b\x9e\ +\xa0\x9e\xa3\xa4\xa0\xa5\xa6\x93\x98\x9b\x5c\x5e\x61\x78\x7a\x7c\ +\x9d\xa0\xa1\x9f\xa3\xa4\x00\x00\x00\xe0\xdb\xd9\xdf\xda\xd8\xdd\ +\xd8\xd5\xd7\xd3\xd0\xcf\xcb\xc8\x76\x67\x58\x07\x06\x04\x07\x05\ +\x03\x49\x37\x24\x22\x1a\x10\x2c\x20\x15\x3b\x2c\x1c\x4d\x3a\x25\ +\x3a\x2b\x1c\x17\x11\x0b\x21\x19\x10\x2e\x22\x16\x40\x30\x1f\x39\ +\x2b\x1b\x2f\x23\x16\x2c\x21\x15\x2b\x20\x15\x2a\x20\x14\x26\x1d\ +\x12\x23\x1a\x10\x21\x19\x10\x1e\x17\x0e\x23\x1a\x11\x27\x1e\x13\ +\x20\x18\x0f\x20\x19\x10\x20\x18\x0f\x38\x2a\x1c\x31\x25\x18\x43\ +\x32\x21\x2c\x21\x15\x2d\x22\x16\x3e\x2f\x1e\x25\x1b\x11\x34\x27\ +\x19\x44\x32\x20\x36\x28\x1a\x46\x34\x23\x58\x42\x2d\x39\x2c\x1d\ +\x18\x12\x0b\x3b\x2d\x1e\x27\x1e\x13\x1b\x14\x0d\x2c\x21\x15\x27\ +\x1d\x13\x41\x31\x21\x1e\x17\x0f\x23\x1b\x11\x24\x1b\x11\x24\x1b\ +\x12\x2c\x22\x15\x35\x28\x19\x2e\x22\x16\x30\x23\x17\x33\x26\x18\ +\x37\x2a\x1a\x3e\x2e\x1d\x4a\x37\x24\x46\x34\x22\x42\x31\x1f\x3e\ +\x2e\x1e\x3c\x2d\x1d\x3b\x2c\x1c\x47\x36\x23\x5d\x47\x30\x53\x3e\ +\x29\x4b\x38\x26\x39\x2b\x1c\x23\x1a\x10\x20\x18\x0f\x32\x25\x18\ +\x74\x59\x3e\x91\x70\x4d\x81\x62\x43\x3a\x2d\x1d\x1a\x14\x0c\x1f\ +\x18\x10\x4f\x3c\x29\xa3\x7e\x58\x84\x66\x45\x30\x24\x17\x23\x1a\ +\x11\x43\x32\x21\x83\x64\x43\xa0\x7b\x56\x9c\x78\x53\x97\x74\x50\ +\xa3\x7e\x57\x94\x72\x4e\x7a\x5d\x3e\x31\x24\x18\x51\x3e\x2a\x58\ +\x44\x2d\x48\x36\x24\x92\x70\x4e\x90\x6f\x4c\x63\x4b\x32\x31\x24\ +\x17\x3b\x2c\x1d\x37\x29\x1b\x34\x27\x19\x2d\x21\x15\x2f\x23\x16\ +\x2d\x22\x15\x2a\x1f\x14\x2d\x21\x15\x38\x29\x1b\x3a\x2b\x1c\x38\ +\x2a\x1b\x35\x27\x19\x38\x2a\x1b\x3e\x2e\x1e\x38\x2a\x1b\x33\x26\ +\x18\x37\x2a\x1a\x3d\x2e\x1e\x3b\x2d\x1d\x42\x31\x20\x42\x31\x1f\ +\x3c\x2d\x1d\x3a\x2c\x1c\x39\x2b\x1c\x3c\x2d\x1d\x4c\x39\x25\x4d\ +\x3a\x25\x4c\x39\x25\x48\x36\x23\x4d\x3a\x26\x4c\x39\x25\x46\x34\ +\x22\x39\x2a\x1b\x34\x28\x1a\x3d\x2e\x1e\x3b\x35\x2f\x3c\x3e\x40\ +\x4b\x4e\x4f\x4a\x4c\x4d\x42\x45\x47\x0e\x0f\x0f\x00\x00\x00\x16\ +\x16\x16\x94\x98\x99\x63\x66\x69\x47\x48\x4a\x84\x87\x8b\x6a\x6c\ +\x6f\x66\x67\x6a\x95\x97\x9c\x68\x6b\x6f\x6a\x6c\x70\x9d\xa1\xa3\ +\x9d\xa2\xa4\xa0\xa5\xa8\x99\x9d\xa0\x6a\x6d\x70\x6d\x6f\x72\x96\ +\x98\x9b\x00\x00\x00\xe1\xdd\xdb\xe0\xdb\xd9\xdf\xd9\xd6\xd6\xd0\ +\xcb\xd0\xcc\xc9\x88\x7c\x71\x08\x07\x05\x0b\x08\x04\x59\x44\x2d\ +\x29\x1f\x14\x2f\x23\x16\x44\x33\x21\x4c\x38\x25\x4d\x3a\x25\x2a\ +\x1f\x14\x37\x29\x1b\x35\x28\x19\x3e\x2e\x1e\x3d\x2e\x1d\x3c\x2d\ +\x1d\x38\x2a\x1b\x2e\x22\x16\x2f\x24\x16\x2f\x24\x16\x27\x1d\x12\ +\x24\x1b\x12\x2a\x1f\x14\x33\x26\x19\x30\x24\x17\x26\x1c\x12\x21\ +\x18\x0f\x1c\x15\x0d\x38\x2a\x1c\x35\x28\x1a\x47\x35\x23\x31\x25\ +\x17\x2d\x22\x16\x3e\x2f\x1f\x24\x1b\x11\x34\x27\x19\x47\x35\x22\ +\x38\x2a\x1b\x40\x30\x1f\x49\x37\x25\x36\x29\x1b\x1a\x14\x0d\x45\ +\x34\x24\x32\x26\x19\x20\x18\x0f\x25\x1c\x12\x32\x26\x18\x4b\x39\ +\x26\x2c\x21\x15\x22\x19\x10\x24\x1a\x11\x21\x19\x10\x23\x1b\x11\ +\x51\x3d\x29\x4e\x3a\x26\x57\x42\x2b\x5c\x45\x2d\x49\x38\x25\x3a\ +\x2c\x1c\x44\x33\x21\x45\x33\x21\x42\x31\x1f\x39\x2b\x1b\x3a\x2b\ +\x1c\x6a\x50\x36\x7c\x5e\x40\x80\x61\x42\x63\x4b\x32\x77\x5b\x3e\ +\x93\x71\x4f\x55\x41\x2b\x2b\x20\x14\x2d\x22\x16\x5e\x48\x32\x72\ +\x57\x3b\x7e\x60\x41\x2d\x21\x15\x15\x10\x0a\x19\x12\x0c\x3d\x2e\ +\x1e\xa4\x7e\x58\x75\x59\x3d\x26\x1d\x13\x2e\x23\x17\x71\x56\x3a\ +\xaa\x83\x5b\x8a\x6b\x4a\x43\x34\x22\x2c\x21\x15\x37\x29\x1c\x84\ +\x65\x45\x8e\x6c\x49\x3c\x2c\x1d\x4b\x3a\x27\x37\x29\x1a\x28\x1e\ +\x13\x3f\x30\x20\x8c\x6b\x49\x6d\x53\x38\x2e\x22\x16\x38\x2a\x1b\ +\x37\x29\x1b\x3b\x2d\x1d\x38\x2a\x1b\x2d\x21\x15\x2c\x21\x15\x23\ +\x1a\x11\x29\x1f\x14\x2e\x23\x16\x2f\x23\x17\x35\x27\x19\x33\x26\ +\x18\x3b\x2c\x1c\x3f\x2f\x1e\x3e\x2e\x1e\x3f\x2f\x1e\x2b\x21\x15\ +\x34\x26\x19\x33\x26\x19\x3a\x2c\x1c\x4a\x37\x23\x44\x33\x20\x3e\ +\x2e\x1d\x3b\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1f\x46\x34\x22\x48\x36\ +\x23\x4e\x3b\x26\x4f\x3b\x26\x49\x36\x23\x44\x33\x21\x3f\x2e\x1e\ +\x2e\x23\x16\x2c\x22\x16\x32\x2d\x28\x3b\x3c\x3e\x49\x4c\x4d\x59\ +\x5d\x5e\x40\x42\x44\x00\x00\x00\x03\x03\x03\x4a\x4b\x4d\x9d\xa0\ +\xa4\x83\x84\x87\x44\x44\x45\x73\x75\x79\x58\x59\x5c\x67\x68\x6a\ +\x98\x9b\x9f\x97\x9a\x9e\x77\x79\x7d\x5f\x61\x65\x98\x9b\x9d\xa0\ +\xa4\xa8\x9f\xa2\xa7\x9e\xa1\xa5\x75\x77\x7b\x68\x68\x6c\x00\x00\ +\x00\xe4\xe0\xdf\xe2\xde\xdd\xe0\xdc\xda\xda\xd4\xd1\xd2\xce\xcc\ +\x9b\x93\x8c\x0a\x09\x07\x05\x04\x02\x4a\x37\x24\x2d\x22\x16\x2a\ +\x20\x14\x36\x28\x1a\x48\x37\x23\x44\x33\x21\x25\x1c\x12\x2c\x21\ +\x16\x2c\x21\x15\x30\x23\x17\x2f\x23\x16\x38\x2a\x1b\x3b\x2c\x1d\ +\x2d\x22\x16\x24\x1b\x11\x28\x1e\x13\x27\x1e\x12\x29\x1f\x14\x36\ +\x29\x1a\x37\x29\x1a\x4d\x39\x26\x35\x28\x19\x27\x1e\x13\x26\x1d\ +\x13\x3b\x2d\x1d\x32\x25\x18\x43\x32\x21\x28\x1f\x13\x38\x2b\x1b\ +\x48\x36\x24\x2c\x20\x15\x41\x30\x1f\x43\x32\x21\x2a\x1f\x14\x29\ +\x1f\x14\x33\x26\x19\x32\x25\x18\x24\x1b\x11\x39\x2c\x1c\x2e\x23\ +\x17\x20\x18\x0f\x2b\x21\x15\x2f\x23\x16\x50\x3c\x28\x28\x1e\x13\ +\x2e\x23\x16\x27\x1e\x13\x2c\x20\x15\x2e\x23\x16\x5b\x44\x2d\x6b\ +\x51\x35\x74\x57\x3a\x61\x48\x2f\x69\x4f\x34\x63\x4a\x31\x3b\x2c\ +\x1c\x34\x28\x19\x31\x24\x17\x35\x28\x19\x5f\x48\x31\x83\x64\x44\ +\x8d\x6c\x4a\x82\x63\x44\x75\x5a\x3d\x7d\x5f\x40\x8c\x6b\x49\x97\ +\x74\x50\x48\x36\x25\x2d\x22\x16\x49\x37\x25\x6f\x55\x38\x8b\x6b\ +\x49\x26\x1c\x12\x1f\x17\x0f\x19\x13\x0c\x3d\x2e\x1e\xa3\x7d\x57\ +\x83\x64\x44\x31\x25\x18\x3e\x2f\x1f\x8a\x69\x48\x9a\x77\x53\x50\ +\x3e\x2a\x22\x1a\x10\x21\x19\x10\x30\x23\x18\x83\x64\x44\x96\x72\ +\x4e\x76\x5a\x3d\x5a\x44\x2c\x3d\x2e\x1e\x30\x24\x17\x2e\x22\x16\ +\x6f\x54\x37\x88\x69\x48\x4e\x3b\x28\x2d\x22\x15\x35\x28\x19\x33\ +\x26\x18\x39\x2b\x1c\x32\x26\x18\x30\x24\x17\x2a\x1f\x14\x2a\x20\ +\x14\x2a\x1f\x14\x2d\x21\x16\x30\x24\x17\x31\x25\x18\x33\x26\x19\ +\x38\x2a\x1b\x3f\x2f\x1e\x41\x30\x1f\x39\x2b\x1c\x35\x27\x19\x2f\ +\x23\x16\x36\x29\x1a\x3f\x30\x1e\x42\x31\x20\x45\x34\x21\x3f\x2f\ +\x1e\x3c\x2d\x1c\x3c\x2d\x1c\x40\x30\x1e\x3b\x2b\x1c\x41\x30\x1f\ +\x41\x31\x1f\x3f\x2f\x1e\x42\x31\x20\x3d\x2e\x1e\x2a\x20\x15\x2d\ +\x22\x16\x32\x2c\x26\x3a\x3b\x3c\x49\x4b\x4c\x5d\x60\x61\x1e\x20\ +\x20\x00\x00\x00\x02\x02\x02\x52\x55\x58\x93\x96\x99\x6d\x6f\x71\ +\x80\x81\x84\x84\x86\x88\x5b\x5b\x60\x81\x82\x85\xa0\xa2\xa3\x9e\ +\xa1\xa3\xa3\xa6\xaa\x7d\x80\x84\x59\x5a\x5e\x8a\x8c\x90\xa8\xac\ +\xaf\x9c\xa0\xa4\xa1\xa4\xa7\x86\x87\x8a\x00\x00\x00\xe4\xe0\xdf\ +\xe2\xde\xdc\xdf\xdb\xda\xdc\xd7\xd5\xd3\xce\xcc\xab\xa2\x9a\x0c\ +\x0b\x08\x03\x02\x01\x3b\x2c\x1d\x2e\x22\x16\x33\x26\x19\x3b\x2c\ +\x1c\x52\x3d\x28\x50\x3c\x27\x10\x0c\x08\x1f\x17\x0e\x2c\x21\x15\ +\x36\x29\x1b\x3e\x2f\x1e\x41\x31\x1f\x3f\x30\x1f\x3b\x2c\x1d\x2f\ +\x23\x17\x2e\x22\x16\x2d\x21\x15\x31\x24\x17\x2f\x24\x17\x2c\x20\ +\x15\x2d\x22\x16\x27\x1d\x12\x32\x25\x17\x27\x1e\x13\x39\x2b\x1b\ +\x28\x1e\x13\x37\x2a\x1b\x30\x23\x17\x2e\x23\x17\x46\x35\x23\x23\ +\x1b\x11\x32\x26\x18\x3b\x2d\x1d\x29\x1f\x14\x1c\x15\x0d\x33\x27\ +\x19\x32\x26\x19\x26\x1c\x12\x31\x25\x17\x27\x1e\x13\x29\x1f\x14\ +\x2d\x22\x16\x25\x1c\x12\x43\x33\x21\x31\x24\x18\x27\x1d\x13\x28\ +\x1f\x14\x39\x2b\x1b\x30\x24\x17\x57\x42\x2b\x83\x64\x43\x99\x74\ +\x50\x89\x68\x46\x70\x55\x38\x5e\x46\x2e\x43\x33\x20\x2c\x22\x15\ +\x2e\x23\x16\x46\x35\x23\x73\x58\x3b\x8b\x6a\x49\x56\x41\x2c\x2c\ +\x21\x15\x28\x1e\x13\x37\x29\x1b\x70\x55\x39\x8c\x6b\x49\x6b\x52\ +\x38\x2c\x22\x15\x41\x31\x20\x9c\x79\x53\x93\x70\x4c\x30\x24\x17\ +\x23\x1b\x11\x19\x12\x0c\x3f\x2f\x20\xa4\x7f\x59\x83\x64\x45\x33\ +\x28\x1a\x45\x35\x23\x9e\x79\x54\x8c\x6b\x4b\x44\x34\x23\x25\x1c\ +\x11\x27\x1d\x12\x54\x41\x2c\x6b\x52\x38\x69\x50\x37\x57\x43\x2d\ +\x33\x27\x19\x2d\x21\x15\x2e\x22\x16\x34\x28\x19\x60\x48\x2f\x8c\ +\x6b\x49\x5f\x48\x31\x34\x28\x19\x3d\x2d\x1e\x36\x29\x1a\x31\x25\ +\x17\x2f\x24\x17\x30\x24\x17\x30\x23\x17\x30\x24\x17\x2d\x22\x16\ +\x2e\x23\x16\x2e\x23\x16\x31\x25\x17\x33\x26\x18\x3d\x2d\x1e\x3f\ +\x2f\x1f\x49\x37\x23\x45\x34\x21\x42\x32\x20\x3a\x2b\x1b\x34\x27\ +\x19\x35\x28\x1a\x39\x2b\x1c\x3d\x2d\x1d\x31\x25\x18\x3a\x2b\x1c\ +\x3a\x2b\x1c\x3b\x2c\x1c\x3f\x2f\x1e\x3b\x2c\x1d\x3b\x2c\x1c\x3c\ +\x2d\x1d\x3d\x2e\x1e\x40\x30\x1f\x30\x24\x17\x33\x26\x18\x38\x30\ +\x27\x42\x3f\x3c\x48\x49\x4b\x4d\x4f\x50\x03\x03\x03\x00\x00\x00\ +\x30\x30\x31\x68\x6b\x6e\x4c\x50\x52\x5a\x5b\x5d\xa0\xa3\xa7\x9c\ +\x9f\xa2\x8b\x8d\x91\x5b\x5c\x60\x7d\x7e\x81\x9e\xa0\xa2\x9f\xa2\ +\xa5\xa2\xa5\xaa\x8c\x8e\x92\x5c\x5d\x61\x7b\x7e\x80\xa9\xac\xb0\ +\xa3\xa6\xaa\xa8\xaa\xad\x00\x00\x00\xe3\xdf\xdc\xe0\xdc\xd9\xde\ +\xd9\xd7\xdd\xd8\xd5\xd5\xd0\xcd\xb9\xb2\xab\x0e\x0d\x0a\x00\x00\ +\x00\x44\x33\x21\x2e\x22\x16\x27\x1d\x12\x3a\x2c\x1c\x58\x42\x2b\ +\x52\x3d\x27\x18\x12\x0b\x1d\x16\x0e\x22\x1a\x11\x2d\x22\x16\x33\ +\x26\x18\x39\x2a\x1b\x3b\x2c\x1c\x3a\x2c\x1c\x3d\x2e\x1e\x36\x28\ +\x1a\x30\x24\x17\x34\x27\x19\x31\x25\x18\x2a\x20\x14\x28\x1e\x13\ +\x25\x1c\x11\x2a\x20\x13\x26\x1d\x12\x39\x2b\x1c\x23\x1a\x11\x25\ +\x1c\x11\x1e\x17\x0e\x29\x1f\x14\x4c\x3a\x27\x24\x1b\x11\x32\x25\ +\x18\x42\x32\x21\x37\x2a\x1b\x2a\x20\x14\x32\x27\x19\x2b\x20\x15\ +\x1d\x15\x0e\x40\x30\x20\x33\x26\x18\x25\x1b\x11\x2f\x24\x17\x35\ +\x28\x19\x38\x2b\x1c\x2f\x23\x17\x25\x1b\x12\x25\x1c\x11\x35\x28\ +\x1a\x3e\x2e\x1e\x59\x44\x2c\x6c\x52\x35\x42\x31\x1f\x4a\x37\x24\ +\x73\x57\x3a\x76\x59\x3b\x4d\x3a\x25\x33\x26\x19\x2b\x20\x14\x4b\ +\x39\x25\x86\x66\x46\x73\x57\x3b\x3e\x2e\x1e\x2a\x1f\x14\x2b\x21\ +\x14\x32\x25\x18\x5a\x43\x2c\x8b\x6a\x48\x86\x66\x45\x31\x24\x17\ +\x3d\x2e\x1f\x9b\x78\x53\x94\x72\x4e\x34\x27\x1a\x26\x1c\x12\x1f\ +\x18\x0f\x34\x27\x1b\xa1\x7c\x56\x88\x68\x46\x39\x2c\x1c\x3d\x2f\ +\x1f\x84\x64\x44\x87\x68\x47\x4d\x3b\x29\x2d\x22\x16\x34\x27\x19\ +\x33\x25\x18\x27\x1d\x13\x31\x25\x18\x44\x33\x22\x34\x28\x19\x2e\ +\x22\x16\x32\x25\x17\x32\x26\x17\x4b\x38\x25\x8b\x6a\x48\x78\x5c\ +\x3f\x2f\x22\x16\x59\x43\x2d\x6d\x53\x39\x24\x1b\x11\x31\x26\x18\ +\x38\x2a\x1b\x35\x27\x19\x3a\x2b\x1c\x3e\x2e\x1e\x36\x28\x1a\x30\ +\x24\x17\x39\x2a\x1b\x37\x29\x1a\x37\x29\x1a\x3d\x2d\x1d\x45\x34\ +\x22\x49\x37\x23\x45\x34\x21\x3f\x2f\x1e\x36\x28\x19\x39\x2a\x1b\ +\x40\x30\x1f\x3f\x2f\x1e\x3b\x2d\x1c\x34\x27\x19\x37\x29\x1a\x36\ +\x29\x1a\x3b\x2c\x1c\x3b\x2c\x1c\x36\x28\x1a\x37\x29\x1a\x38\x2a\ +\x1a\x3a\x2c\x1c\x35\x28\x1a\x34\x27\x19\x30\x29\x21\x37\x37\x38\ +\x4a\x4c\x4e\x23\x24\x25\x00\x00\x00\x00\x00\x00\x71\x74\x74\x81\ +\x84\x86\x54\x56\x56\x3e\x3f\x42\x9d\xa0\xa2\x9f\xa2\xa4\x9e\xa2\ +\xa4\x92\x95\x97\x5d\x5e\x63\x7e\x7f\x83\xa1\xa5\xa6\x9f\xa2\xa5\ +\xa1\xa4\xa8\x94\x97\x9b\x6b\x6d\x6e\x66\x68\x69\xb1\xb2\xb5\xa7\ +\xa8\xac\x00\x00\x00\xe2\xdd\xda\xe1\xdc\xda\xdf\xda\xd7\xdb\xd7\ +\xd4\xd6\xd2\xcf\xc4\xba\xb1\x11\x0f\x0b\x00\x00\x00\x4d\x3b\x28\ +\x31\x25\x18\x22\x1a\x10\x3a\x2b\x1c\x55\x3f\x29\x51\x3e\x28\x16\ +\x10\x0b\x19\x13\x0d\x20\x18\x0f\x2a\x1f\x14\x30\x24\x17\x31\x24\ +\x17\x33\x26\x18\x34\x27\x19\x42\x31\x20\x37\x29\x1b\x33\x26\x19\ +\x33\x26\x18\x39\x2b\x1b\x37\x29\x1b\x33\x27\x19\x30\x24\x17\x33\ +\x26\x19\x27\x1d\x12\x3e\x2f\x1e\x2b\x21\x15\x3a\x2b\x1c\x28\x1d\ +\x13\x2c\x21\x15\x3d\x2e\x1f\x34\x27\x19\x35\x28\x1a\x3d\x2f\x1e\ +\x3b\x2d\x1d\x28\x1e\x13\x39\x2c\x1d\x2c\x22\x16\x13\x0e\x08\x44\ +\x34\x23\x6d\x54\x3a\x7e\x61\x43\x90\x6f\x4d\x3d\x2e\x1e\x39\x2b\ +\x1c\x34\x27\x19\x32\x26\x19\x29\x1f\x14\x2b\x20\x15\x40\x30\x1f\ +\x69\x4f\x35\x62\x4a\x30\x40\x30\x1f\x3b\x2c\x1c\x46\x35\x22\x65\ +\x4c\x32\x62\x49\x31\x46\x34\x22\x2a\x1f\x13\x4e\x3a\x26\x87\x67\ +\x45\x63\x4c\x33\x31\x24\x18\x25\x1c\x12\x27\x1d\x12\x24\x1c\x11\ +\x44\x33\x21\x84\x65\x46\x98\x75\x51\x2c\x22\x16\x39\x2a\x1c\x9b\ +\x77\x53\x94\x72\x4e\x3c\x2d\x1d\x33\x27\x19\x2a\x20\x14\x35\x28\ +\x1a\xa5\x7f\x59\x88\x68\x47\x3d\x2f\x1f\x2f\x24\x17\x7c\x5f\x42\ +\xa0\x7b\x55\x75\x5a\x3d\x3e\x2f\x1f\x35\x28\x19\x2e\x23\x17\x3c\ +\x2e\x1e\x91\x70\x4f\x73\x59\x3d\x2c\x21\x15\x23\x1a\x10\x28\x1e\ +\x13\x25\x1b\x12\x2e\x23\x16\x81\x63\x43\x97\x74\x50\x78\x5d\x40\ +\x85\x65\x44\x65\x4d\x33\x2c\x20\x15\x36\x28\x1a\x32\x26\x18\x36\ +\x28\x1a\x3b\x2d\x1d\x41\x31\x20\x39\x2b\x1b\x31\x25\x17\x33\x27\ +\x19\x34\x27\x1a\x38\x2a\x1a\x35\x28\x19\x3c\x2d\x1d\x42\x31\x20\ +\x45\x34\x22\x43\x32\x20\x40\x30\x1f\x3a\x2b\x1c\x3f\x2f\x1f\x45\ +\x33\x21\x40\x30\x1f\x44\x33\x21\x3f\x2f\x1e\x33\x26\x18\x3e\x2f\ +\x1e\x49\x37\x24\x35\x27\x19\x3b\x2c\x1d\x37\x29\x1b\x33\x26\x18\ +\x3e\x2e\x1d\x41\x31\x1f\x2f\x27\x1f\x34\x35\x35\x45\x46\x48\x07\ +\x07\x07\x00\x00\x00\x1a\x1b\x1b\x87\x8b\x8c\x80\x84\x84\x46\x48\ +\x48\x80\x84\x86\x58\x5a\x5e\x94\x97\x99\xa3\xa6\xa7\x9b\x9e\xa1\ +\x9c\x9e\xa2\x6a\x6b\x6f\x68\x68\x6c\x9c\x9e\xa1\xa3\xa6\xaa\xa1\ +\xa4\xa8\x9b\x9e\xa1\x79\x7c\x7d\x5a\x5b\x5d\xac\xad\xb0\x00\x00\ +\x00\xe2\xdf\xdd\xe2\xdf\xdc\xe0\xdc\xda\xdb\xd7\xd4\xd5\xd0\xce\ +\xc4\xb2\xa2\x15\x11\x0d\x00\x00\x00\x3e\x30\x1f\x2f\x23\x16\x25\ +\x1c\x12\x30\x24\x17\x3e\x2e\x1e\x3f\x2f\x1f\x1d\x15\x0d\x1a\x14\ +\x0d\x20\x18\x10\x27\x1e\x13\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\ +\x3c\x2d\x1d\x38\x2a\x1b\x2f\x23\x16\x2f\x22\x16\x2a\x20\x15\x31\ +\x26\x18\x2c\x22\x15\x27\x1d\x13\x27\x1e\x13\x2f\x23\x16\x29\x1f\ +\x14\x4d\x3b\x27\x31\x25\x18\x47\x36\x24\x62\x4c\x33\x59\x45\x2e\ +\x59\x44\x2e\x31\x25\x18\x2f\x23\x16\x3b\x2c\x1c\x3f\x2f\x1f\x37\ +\x29\x1a\x3d\x2e\x1e\x2a\x20\x15\x17\x11\x0b\x43\x34\x23\x9d\x7a\ +\x56\xa9\x82\x5b\xae\x87\x5e\x49\x38\x26\x32\x26\x18\x41\x32\x21\ +\x25\x1c\x12\x25\x1c\x12\x22\x1a\x10\x31\x25\x18\x41\x31\x1f\x3c\ +\x2d\x1d\x3f\x2f\x1e\x38\x2a\x1b\x3b\x2d\x1c\x64\x4b\x31\x6c\x52\ +\x36\x54\x3f\x2a\x2f\x23\x16\x5a\x44\x2c\x81\x62\x42\x6e\x53\x38\ +\x3a\x2c\x1d\x2b\x20\x14\x29\x1f\x13\x27\x1d\x12\x4a\x38\x25\x6b\ +\x51\x37\x76\x5b\x3e\x33\x27\x19\x2e\x23\x16\x82\x64\x45\x7b\x5e\ +\x3f\x3d\x2d\x1e\x2f\x23\x16\x3e\x2f\x1f\x6f\x55\x3b\x9c\x77\x53\ +\x88\x68\x48\x38\x2a\x1c\x1d\x15\x0d\x57\x42\x2e\xa1\x7d\x57\xa2\ +\x7e\x57\xa5\x80\x5a\x99\x77\x54\x9f\x7b\x57\xad\x86\x5d\xac\x84\ +\x5c\x71\x56\x3b\x36\x29\x1b\x27\x1d\x13\x28\x1e\x13\x27\x1e\x13\ +\x24\x1b\x12\x46\x35\x22\xa4\x7f\x58\x9f\x7a\x54\x97\x73\x4f\x6a\ +\x51\x36\x28\x1e\x12\x2e\x23\x17\x30\x25\x17\x37\x2a\x1b\x3b\x2d\ +\x1d\x3b\x2c\x1c\x3e\x2e\x1e\x3f\x2f\x1e\x36\x29\x1a\x2d\x22\x16\ +\x30\x24\x17\x37\x2a\x1b\x38\x2a\x1a\x41\x31\x1f\x4a\x37\x24\x40\ +\x30\x1f\x4a\x37\x24\x39\x2b\x1c\x37\x29\x1a\x3a\x2b\x1c\x3d\x2e\ +\x1e\x39\x2b\x1c\x36\x29\x1a\x42\x31\x20\x42\x32\x20\x4a\x37\x23\ +\x43\x32\x20\x3f\x2f\x1e\x49\x36\x24\x4b\x38\x25\x42\x31\x20\x3b\ +\x2b\x1c\x31\x28\x1f\x38\x37\x37\x27\x28\x29\x02\x02\x02\x00\x00\ +\x00\x52\x54\x54\x78\x7d\x7c\x6f\x73\x72\x58\x5b\x5b\x99\x9d\x9f\ +\x7d\x80\x83\x5d\x5f\x63\x8e\x90\x92\xa4\xa7\xa7\xa1\xa4\xa5\xa4\ +\xa7\xaa\x75\x77\x7b\x56\x56\x5c\xa8\xab\xaf\xa1\xa4\xa8\xa4\xa7\ +\xab\xa4\xa7\xaa\x8c\x8f\x92\x58\x57\x5c\x00\x00\x00\xe5\xe0\xdf\ +\xe3\xdf\xdd\xe1\xde\xdc\xdc\xd8\xd5\xd5\xd0\xcd\xc9\xb9\xaa\x1f\ +\x19\x11\x01\x01\x00\x4c\x3a\x27\x31\x24\x18\x2d\x21\x15\x2e\x22\ +\x16\x42\x31\x20\x46\x35\x22\x1b\x14\x0d\x17\x11\x0b\x1f\x17\x0e\ +\x2b\x20\x15\x2a\x1f\x14\x27\x1d\x12\x2e\x23\x16\x30\x24\x17\x39\ +\x2b\x1b\x3e\x2e\x1e\x41\x30\x1f\x33\x27\x19\x2d\x22\x15\x37\x29\ +\x1a\x2e\x23\x16\x2d\x22\x16\x2b\x20\x15\x28\x1e\x13\x40\x30\x20\ +\x3a\x2c\x1d\x48\x37\x24\x78\x5b\x3e\x7f\x60\x42\x7c\x5f\x40\x37\ +\x2a\x1b\x2b\x20\x15\x35\x28\x1a\x37\x29\x1b\x2e\x22\x16\x42\x32\ +\x21\x3d\x2e\x1e\x1f\x17\x0f\x31\x25\x19\x85\x66\x47\x8c\x6c\x4a\ +\x9e\x7a\x55\x47\x36\x24\x2d\x22\x15\x3f\x30\x1f\x35\x28\x19\x2b\ +\x21\x15\x24\x1c\x12\x2a\x20\x14\x3b\x2c\x1d\x32\x25\x18\x37\x29\ +\x1b\x3d\x2e\x1e\x51\x3d\x27\x5f\x47\x2f\x5e\x47\x2f\x63\x4a\x31\ +\x36\x29\x1a\x4b\x38\x25\x67\x4d\x33\x6e\x53\x37\x66\x4d\x33\x46\ +\x35\x23\x38\x2b\x1c\x4e\x3b\x28\x6f\x55\x39\x8d\x6b\x49\x65\x4d\ +\x34\x3c\x2d\x1d\x33\x27\x18\x98\x75\x51\x81\x63\x44\x81\x63\x43\ +\xa9\x82\x5a\xa8\x81\x5a\xa2\x7d\x56\x9f\x79\x53\x75\x5a\x3e\x24\ +\x1b\x10\x25\x1c\x12\x22\x19\x0f\x4f\x3c\x29\x8f\x6e\x4d\xa3\x7e\ +\x57\xa5\x7f\x58\xa5\x7f\x59\xac\x86\x5e\xa7\x82\x5b\x76\x5b\x3e\ +\x2d\x22\x16\x30\x24\x17\x32\x26\x18\x2e\x23\x17\x32\x24\x18\x2b\ +\x21\x15\x43\x32\x21\x65\x4d\x33\x6e\x53\x38\x54\x41\x2b\x32\x25\ +\x18\x30\x24\x18\x36\x29\x1a\x36\x29\x1a\x36\x28\x19\x3e\x2e\x1e\ +\x49\x36\x23\x4a\x38\x24\x43\x32\x21\x3b\x2c\x1d\x37\x29\x1a\x38\ +\x29\x1a\x34\x27\x19\x39\x2b\x1c\x49\x37\x23\x45\x34\x22\x46\x35\ +\x22\x3c\x2d\x1d\x3a\x2c\x1c\x38\x2a\x1b\x3e\x2e\x1e\x31\x25\x18\ +\x3a\x2c\x1b\x42\x32\x20\x4b\x38\x25\x54\x3f\x29\x3e\x2e\x1e\x3f\ +\x2f\x1e\x40\x30\x1f\x3d\x2e\x1e\x3e\x2f\x1f\x34\x27\x19\x35\x2a\ +\x1d\x3d\x3b\x39\x0b\x0b\x0c\x00\x00\x00\x0a\x0b\x0b\x74\x77\x78\ +\x74\x77\x78\x44\x46\x47\x91\x95\x96\x95\x98\x9a\x98\x9b\x9d\x83\ +\x86\x88\x5d\x5f\x62\x89\x8b\x8c\xa1\xa4\xa4\xa2\xa5\xa7\xa3\xa6\ +\xaa\x89\x8a\x90\x4c\x4b\x51\x9a\x9b\x9e\xa4\xa7\xaa\xa5\xa8\xac\ +\xa9\xab\xae\x96\x97\x9b\x00\x00\x00\xe5\xe0\xdf\xe4\xdf\xde\xe1\ +\xdc\xda\xdd\xd8\xd6\xd6\xd1\xce\xc9\xb9\xa9\x2d\x24\x1b\x00\x00\ +\x00\x33\x26\x1a\x24\x1b\x12\x27\x1d\x13\x3b\x2c\x1c\x44\x33\x22\ +\x4a\x38\x23\x19\x13\x0c\x17\x12\x0b\x16\x11\x0b\x1c\x15\x0d\x1e\ +\x17\x0e\x26\x1d\x12\x30\x23\x17\x2f\x23\x17\x38\x2a\x1b\x3e\x2e\ +\x1e\x3d\x2e\x1d\x3e\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2f\x23\x16\ +\x2c\x21\x15\x2d\x22\x16\x27\x1d\x13\x43\x32\x21\x37\x2a\x1b\x3b\ +\x2d\x1d\x85\x66\x46\x8e\x6d\x4b\x89\x69\x48\x44\x34\x22\x28\x1d\ +\x13\x3b\x2b\x1c\x43\x32\x20\x31\x25\x17\x44\x34\x22\x48\x36\x23\ +\x36\x28\x19\x39\x2b\x1c\x82\x65\x45\x9f\x7b\x55\x99\x76\x51\x48\ +\x37\x25\x29\x1f\x14\x5c\x47\x2f\x39\x2a\x1b\x34\x26\x19\x25\x1c\ +\x12\x2d\x21\x15\x41\x31\x20\x3d\x2e\x1d\x3a\x2c\x1c\x3f\x2f\x1f\ +\x4b\x38\x25\x68\x4e\x34\x69\x4f\x35\x5e\x47\x2f\x3d\x2d\x1d\x43\ +\x32\x20\x5d\x46\x2e\x7c\x5e\x3f\x89\x68\x46\x91\x6f\x4b\x8d\x6b\ +\x49\x8d\x6c\x49\x8d\x6b\x48\x81\x62\x43\x3d\x2e\x1e\x37\x29\x1b\ +\x35\x28\x1b\x95\x73\x51\x89\x69\x48\x9d\x79\x54\x9d\x79\x54\x9b\ +\x78\x53\x91\x6f\x4d\x65\x4c\x35\x30\x24\x17\x29\x1f\x14\x27\x1c\ +\x12\x26\x1d\x12\x25\x1c\x12\x2b\x20\x14\x46\x36\x24\x5f\x48\x30\ +\x64\x4c\x33\x4e\x3b\x27\x34\x27\x18\x26\x1c\x12\x27\x1d\x13\x2d\ +\x22\x15\x31\x25\x17\x36\x29\x1a\x3e\x2e\x1e\x3c\x2d\x1d\x2e\x23\ +\x16\x29\x1e\x14\x2b\x20\x14\x27\x1e\x13\x2a\x1f\x14\x2b\x20\x14\ +\x34\x27\x19\x33\x26\x18\x35\x28\x1a\x3d\x2d\x1d\x40\x30\x1e\x48\ +\x36\x22\x47\x36\x22\x46\x34\x22\x46\x35\x22\x3e\x2e\x1d\x48\x37\ +\x23\x47\x34\x22\x49\x37\x23\x48\x36\x23\x4a\x37\x24\x41\x31\x1f\ +\x39\x2b\x1b\x33\x26\x19\x3e\x2f\x1e\x32\x26\x19\x34\x27\x19\x40\ +\x30\x1e\x4e\x3a\x25\x5a\x44\x2c\x4a\x37\x24\x43\x32\x21\x3f\x2f\ +\x1f\x34\x26\x19\x35\x27\x19\x2e\x22\x16\x32\x26\x1a\x2b\x28\x25\ +\x04\x04\x04\x00\x00\x00\x39\x3a\x3a\x6d\x71\x72\x75\x78\x7a\x45\ +\x46\x49\x95\x98\x9b\x94\x97\x9a\x95\x99\x9a\x9e\xa2\xa3\x91\x94\ +\x96\x5b\x5c\x60\x88\x89\x8b\xa2\xa4\xa6\x9e\xa1\xa5\xa3\xa6\xab\ +\x99\x9a\x9f\x48\x47\x4b\x93\x93\x97\xa4\xa6\xaa\xa7\xa8\xab\xac\ +\xad\xaf\x00\x00\x00\xe5\xe0\xe0\xe3\xde\xdd\xe2\xdd\xdc\xde\xda\ +\xd9\xd7\xd1\xd0\xd1\xca\xc4\x3d\x34\x2b\x03\x02\x01\x28\x1f\x14\ +\x30\x25\x18\x24\x1b\x11\x40\x30\x1f\x49\x36\x24\x54\x3f\x29\x22\ +\x1a\x10\x16\x11\x0a\x1a\x13\x0c\x1f\x18\x0f\x24\x1b\x11\x2c\x21\ +\x15\x2e\x22\x16\x27\x1d\x12\x34\x27\x19\x3b\x2b\x1c\x32\x26\x18\ +\x33\x26\x18\x37\x29\x1a\x35\x28\x19\x30\x23\x17\x27\x1d\x12\x2a\ +\x20\x14\x28\x1e\x13\x37\x29\x1a\x37\x2a\x1b\x2f\x23\x17\x5e\x47\ +\x30\x86\x67\x46\x7d\x60\x43\x45\x34\x22\x37\x29\x1b\x3f\x2f\x1e\ +\x3d\x2e\x1e\x24\x1b\x11\x44\x33\x22\x4f\x3b\x28\x39\x2b\x1c\x33\ +\x27\x19\x75\x5b\x3e\x89\x69\x48\x98\x75\x51\x50\x3d\x29\x2a\x20\ +\x14\x47\x36\x23\x31\x25\x18\x39\x2b\x1c\x2f\x24\x17\x2d\x22\x16\ +\x36\x28\x1a\x42\x32\x20\x3c\x2d\x1d\x3c\x2d\x1d\x40\x30\x1f\x6a\ +\x4f\x34\x73\x56\x3a\x55\x40\x2a\x3f\x2f\x1e\x45\x34\x21\x41\x31\ +\x1f\x61\x4a\x31\x87\x67\x46\x94\x71\x4e\x87\x67\x46\x8d\x6c\x4a\ +\x64\x4d\x34\x2c\x21\x15\x20\x18\x0f\x24\x1a\x11\x4e\x3c\x28\x58\ +\x43\x2e\x50\x3d\x2a\x44\x34\x23\x3e\x2e\x1e\x2d\x22\x15\x22\x19\ +\x0f\x23\x1a\x11\x2b\x20\x15\x2a\x20\x14\x2d\x22\x16\x31\x25\x18\ +\x2d\x21\x15\x29\x1e\x14\x2f\x23\x16\x35\x27\x19\x32\x25\x18\x2e\ +\x22\x16\x28\x1e\x13\x26\x1d\x13\x29\x1e\x13\x2d\x22\x16\x30\x24\ +\x17\x33\x26\x18\x3f\x30\x1e\x45\x34\x21\x3b\x2c\x1c\x39\x2b\x1b\ +\x2c\x21\x16\x37\x29\x1b\x36\x29\x1a\x35\x28\x19\x2f\x23\x16\x2b\ +\x1f\x14\x31\x24\x18\x3a\x2b\x1c\x37\x29\x1a\x37\x29\x1a\x42\x32\ +\x20\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x3d\x2e\x1e\x41\x31\x1f\ +\x3f\x2f\x1e\x42\x32\x20\x3f\x2f\x1f\x3c\x2d\x1d\x34\x26\x19\x35\ +\x28\x1a\x3d\x2e\x1d\x3e\x2f\x1e\x3a\x2c\x1d\x4e\x3a\x26\x4d\x3a\ +\x26\x46\x35\x22\x41\x30\x20\x46\x34\x21\x38\x2a\x1b\x3c\x2d\x1d\ +\x3b\x2c\x1d\x2d\x21\x16\x3a\x2c\x1c\x1e\x1b\x16\x00\x00\x00\x00\ +\x01\x01\x5e\x61\x62\x69\x6c\x6e\x49\x4a\x4c\x7f\x80\x83\x8e\x91\ +\x95\x96\x99\x9d\x97\x99\x9e\x9c\x9f\xa2\xa0\xa2\xa3\x9a\x9b\x9e\ +\x5c\x5e\x63\x7e\x81\x83\xa0\xa3\xa6\xa3\xa5\xa9\xa3\xa5\xaa\xa5\ +\xa7\xa9\x53\x54\x57\x84\x83\x87\xa6\xa8\xa9\xaa\xac\xad\x00\x00\ +\x00\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\xde\xda\xd9\xd8\xd4\xd3\ +\xcf\xca\xca\x47\x3e\x35\x03\x03\x02\x18\x13\x0c\x2f\x23\x17\x18\ +\x12\x0b\x2b\x20\x14\x36\x28\x19\x44\x33\x20\x1c\x15\x0d\x11\x0d\ +\x08\x15\x10\x0a\x1d\x16\x0e\x24\x1b\x11\x2f\x23\x17\x32\x25\x18\ +\x29\x1f\x14\x33\x27\x19\x39\x2b\x1c\x37\x2a\x1b\x2f\x23\x16\x36\ +\x28\x1a\x2f\x24\x17\x2d\x22\x16\x31\x25\x17\x26\x1c\x12\x24\x1c\ +\x11\x35\x28\x1a\x40\x31\x21\x31\x25\x18\x82\x63\x44\x69\x50\x37\ +\x70\x55\x3a\x40\x30\x1f\x36\x28\x19\x38\x2a\x1b\x39\x2a\x1b\x20\ +\x18\x0f\x43\x33\x22\x4e\x3c\x27\x34\x27\x19\x2b\x20\x14\x73\x58\ +\x3c\x87\x67\x48\x83\x64\x46\x44\x34\x23\x26\x1c\x12\x44\x34\x23\ +\x33\x26\x18\x37\x29\x1a\x36\x28\x1a\x30\x24\x17\x2d\x21\x15\x36\ +\x29\x1a\x3a\x2b\x1c\x35\x28\x1a\x3d\x2d\x1d\x6e\x52\x37\x79\x5c\ +\x3d\x52\x3e\x29\x32\x26\x18\x39\x2b\x1b\x38\x2a\x1b\x3a\x2b\x1c\ +\x34\x27\x19\x38\x2a\x1a\x42\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x36\ +\x28\x1a\x2b\x21\x15\x26\x1d\x12\x1d\x15\x0d\x1b\x14\x0d\x23\x1a\ +\x10\x1b\x14\x0d\x21\x19\x10\x21\x19\x10\x23\x1b\x11\x28\x1e\x14\ +\x29\x1f\x14\x31\x24\x18\x2e\x23\x17\x31\x25\x18\x29\x1e\x13\x2b\ +\x20\x14\x31\x24\x18\x3b\x2c\x1c\x39\x2a\x1b\x31\x24\x18\x2e\x23\ +\x16\x37\x2a\x1b\x29\x20\x14\x27\x1e\x13\x26\x1c\x12\x32\x25\x18\ +\x3d\x2d\x1d\x3c\x2d\x1d\x39\x2b\x1b\x37\x29\x1a\x31\x25\x18\x2d\ +\x22\x16\x2f\x23\x16\x30\x24\x17\x34\x27\x19\x36\x28\x1a\x33\x26\ +\x18\x33\x26\x18\x35\x28\x1a\x39\x2b\x1b\x42\x31\x1f\x3e\x2e\x1e\ +\x36\x28\x19\x35\x28\x1a\x3d\x2d\x1d\x39\x2a\x1c\x3b\x2c\x1d\x41\ +\x31\x1f\x4b\x38\x24\x4d\x3a\x26\x43\x32\x21\x36\x29\x1a\x3b\x2c\ +\x1c\x3c\x2d\x1d\x36\x28\x1a\x3c\x2d\x1e\x36\x29\x1b\x41\x31\x1f\ +\x3d\x2e\x1e\x45\x34\x22\x45\x34\x22\x48\x36\x23\x46\x35\x21\x33\ +\x27\x18\x30\x24\x17\x13\x0f\x0c\x00\x00\x00\x22\x23\x23\x5b\x5e\ +\x5e\x6c\x6f\x6f\x37\x38\x39\x94\x97\x99\x8d\x8f\x93\x97\x99\x9d\ +\x9b\x9e\xa1\x9c\x9e\xa2\x9d\x9f\xa1\x9e\x9f\xa2\xa8\xa9\xae\x5c\ +\x5f\x63\x79\x7b\x7f\x99\x9b\x9f\xa5\xa7\xaa\xa3\xa5\xa6\xa9\xaa\ +\xab\x6c\x6b\x6e\x6e\x6d\x6f\xa6\xa6\xa8\x00\x00\x00\xe5\xe1\xe0\ +\xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\xdb\xd8\xd6\xd5\xce\xc4\xbb\x4d\ +\x3e\x2d\x05\x04\x02\x18\x12\x0b\x39\x2c\x1c\x24\x1b\x11\x35\x28\ +\x1a\x48\x36\x23\x52\x3e\x28\x29\x1e\x13\x1b\x14\x0d\x19\x13\x0c\ +\x1e\x17\x0f\x26\x1d\x12\x2e\x22\x16\x2c\x21\x15\x29\x1f\x14\x2e\ +\x23\x16\x32\x25\x18\x31\x24\x18\x37\x29\x1a\x35\x28\x19\x2a\x20\ +\x14\x2a\x20\x14\x32\x25\x17\x33\x26\x18\x31\x24\x17\x35\x27\x19\ +\x3c\x2e\x1e\x2d\x22\x16\x90\x6f\x4c\x7c\x5e\x40\x7a\x5c\x3f\x49\ +\x37\x25\x3a\x2b\x1d\x40\x30\x1f\x3b\x2c\x1c\x21\x19\x10\x36\x29\ +\x1b\x4e\x3b\x27\x4a\x38\x25\x3e\x30\x1f\x7a\x5e\x41\x93\x71\x4f\ +\xa8\x82\x5c\x67\x4f\x36\x23\x1a\x11\x3f\x30\x20\x29\x20\x13\x34\ +\x27\x19\x33\x26\x18\x32\x25\x18\x3a\x2b\x1c\x37\x29\x1b\x3d\x2e\ +\x1d\x37\x29\x1a\x45\x33\x21\x5d\x46\x2d\x68\x4e\x33\x4d\x3a\x26\ +\x35\x27\x19\x37\x29\x1a\x3c\x2d\x1d\x3c\x2c\x1d\x35\x28\x1a\x34\ +\x27\x19\x36\x28\x19\x38\x29\x1b\x37\x2a\x1b\x2f\x23\x16\x2d\x22\ +\x15\x29\x1f\x14\x30\x24\x17\x20\x18\x10\x29\x1f\x14\x24\x1b\x12\ +\x20\x18\x10\x2b\x20\x15\x2d\x22\x16\x30\x24\x17\x2e\x23\x17\x2b\ +\x20\x15\x2f\x23\x17\x2c\x21\x15\x28\x1f\x13\x25\x1d\x12\x2f\x23\ +\x16\x37\x29\x1a\x2f\x24\x17\x2d\x22\x16\x29\x1f\x14\x30\x24\x17\ +\x2f\x23\x17\x26\x1d\x12\x29\x1f\x13\x34\x27\x19\x40\x2f\x1e\x3e\ +\x2f\x1f\x3c\x2d\x1d\x3e\x2e\x1e\x47\x36\x23\x3c\x2d\x1d\x34\x26\ +\x19\x36\x28\x19\x36\x28\x1a\x36\x28\x1a\x2f\x23\x16\x2d\x21\x16\ +\x31\x24\x17\x36\x29\x1a\x35\x28\x1a\x2f\x23\x16\x31\x25\x17\x37\ +\x29\x1b\x40\x30\x1f\x43\x32\x21\x46\x35\x23\x49\x37\x23\x4b\x38\ +\x24\x51\x3d\x28\x4f\x3b\x26\x3a\x2c\x1c\x38\x2a\x1b\x3f\x2f\x1f\ +\x34\x27\x19\x3b\x2b\x1c\x44\x33\x21\x4a\x37\x24\x41\x31\x20\x45\ +\x34\x22\x38\x2b\x1b\x30\x24\x17\x35\x27\x1a\x32\x25\x18\x33\x26\ +\x18\x14\x0f\x0a\x00\x00\x00\x45\x48\x47\x5c\x60\x5f\x42\x45\x44\ +\x62\x65\x65\x88\x8b\x8d\x8f\x92\x96\x96\x99\x9d\x97\x99\x9d\x9d\ +\x9d\xa2\x9d\x9f\xa3\x9c\x9e\xa1\xa2\xa4\xa8\xaa\xad\xb1\x6d\x6e\ +\x73\x6d\x6e\x73\x95\x97\x9b\xa8\xab\xac\xa6\xa5\xa7\xac\xab\xac\ +\x82\x82\x83\x60\x5f\x62\x00\x00\x00\xe5\xe0\xdf\xe5\xe0\xdf\xe2\ +\xde\xdd\xdf\xdc\xdb\xda\xd7\xd6\xd2\xcd\xc9\x67\x5b\x51\x05\x04\ +\x03\x12\x0e\x08\x48\x36\x24\x25\x1c\x12\x30\x24\x17\x40\x30\x1f\ +\x54\x3f\x29\x30\x24\x17\x19\x13\x0c\x23\x1a\x11\x23\x1b\x11\x22\ +\x19\x10\x27\x1d\x13\x28\x1e\x13\x28\x1e\x13\x26\x1d\x12\x2a\x20\ +\x14\x2f\x24\x17\x35\x28\x1a\x2e\x22\x16\x25\x1c\x11\x2f\x24\x16\ +\x30\x24\x17\x2f\x23\x16\x30\x23\x17\x3f\x30\x1e\x46\x36\x22\x3c\ +\x2d\x1d\x90\x6f\x4c\x78\x5b\x3e\x8e\x6c\x4a\x7e\x60\x43\x7a\x5d\ +\x40\x75\x59\x3c\x45\x33\x22\x20\x18\x0f\x27\x1e\x13\x71\x58\x3c\ +\xa1\x7d\x57\xa2\x7d\x57\x96\x74\x50\x96\x73\x50\xaa\x84\x5d\x74\ +\x59\x3e\x26\x1d\x13\x49\x37\x25\x2a\x20\x14\x2d\x22\x15\x36\x28\ +\x1a\x33\x26\x19\x46\x34\x22\x42\x32\x20\x44\x33\x21\x37\x29\x1a\ +\x42\x31\x20\x52\x3e\x28\x5a\x44\x2c\x51\x3d\x27\x3c\x2d\x1d\x3d\ +\x2e\x1e\x3a\x2c\x1c\x35\x27\x19\x32\x25\x17\x2a\x20\x14\x2d\x22\ +\x15\x2d\x22\x16\x30\x24\x17\x32\x25\x18\x31\x25\x18\x2a\x20\x14\ +\x25\x1c\x12\x20\x17\x0f\x20\x18\x0f\x1f\x18\x0f\x24\x1b\x12\x27\ +\x1d\x13\x28\x1d\x13\x2a\x1f\x14\x2e\x22\x16\x28\x1e\x14\x2d\x22\ +\x16\x32\x25\x18\x32\x25\x18\x2d\x22\x16\x31\x25\x17\x3a\x2c\x1c\ +\x34\x27\x19\x31\x24\x17\x2e\x22\x16\x30\x23\x17\x31\x24\x17\x2a\ +\x20\x14\x29\x1f\x14\x30\x24\x17\x31\x25\x18\x33\x26\x19\x3a\x2b\ +\x1c\x39\x2b\x1b\x3a\x2b\x1c\x48\x36\x23\x3e\x2f\x1e\x3e\x2e\x1e\ +\x43\x32\x20\x3e\x2f\x1e\x37\x29\x1a\x34\x26\x19\x34\x27\x19\x34\ +\x27\x19\x36\x28\x1a\x35\x27\x1a\x35\x28\x1a\x43\x32\x20\x42\x31\ +\x20\x3c\x2c\x1c\x37\x29\x1a\x3b\x2c\x1c\x48\x36\x23\x4e\x3a\x26\ +\x4d\x39\x25\x41\x30\x1f\x3e\x2f\x1e\x38\x2a\x1b\x36\x28\x1a\x3a\ +\x2c\x1c\x3d\x2e\x1d\x3e\x2f\x1e\x48\x36\x23\x41\x31\x20\x3c\x2d\ +\x1d\x39\x2b\x1c\x33\x26\x18\x2e\x22\x16\x41\x30\x20\x1d\x16\x0e\ +\x12\x13\x14\x4b\x4d\x4d\x5c\x60\x5f\x2a\x2c\x2c\x7e\x82\x83\x81\ +\x84\x86\x91\x91\x96\x95\x97\x9a\x98\x9b\x9f\x9a\x9d\xa0\x9e\xa0\ +\xa4\x9f\xa1\xa5\xa1\xa4\xa8\xa1\xa4\xa8\xb0\xb4\xb8\x80\x80\x85\ +\x65\x64\x6a\x8e\x8f\x92\xaa\xa9\xaa\xab\xab\xab\xae\xae\xae\x97\ +\x97\x98\x00\x00\x00\xe4\xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe0\xdc\ +\xdb\xdb\xd7\xd6\xd2\xcf\xcc\x6d\x5d\x4c\x06\x05\x03\x0a\x08\x05\ +\x51\x3d\x29\x32\x25\x18\x2f\x23\x16\x37\x29\x1a\x41\x31\x1f\x2d\ +\x22\x16\x15\x10\x0a\x2b\x21\x14\x2c\x21\x15\x30\x24\x17\x2b\x20\ +\x14\x27\x1e\x12\x2c\x21\x15\x2b\x21\x15\x2c\x21\x15\x2b\x21\x14\ +\x2c\x21\x15\x2a\x1f\x14\x29\x1f\x14\x2d\x22\x15\x2b\x20\x14\x24\ +\x1b\x11\x2c\x21\x16\x3f\x2f\x1e\x56\x41\x2b\x3b\x2c\x1c\x84\x66\ +\x45\x81\x61\x42\x8d\x6c\x4b\x9d\x78\x54\x96\x73\x4f\x88\x68\x47\ +\x58\x43\x2c\x28\x1e\x13\x2d\x22\x15\x7c\x5f\x42\xa8\x82\x5b\x92\ +\x71\x4e\x94\x72\x4f\x90\x6f\x4d\xa2\x7d\x57\x7c\x5f\x41\x2f\x24\ +\x17\x3a\x2c\x1d\x23\x1a\x11\x24\x1c\x12\x28\x1e\x14\x34\x27\x19\ +\x3e\x2e\x1e\x45\x34\x22\x3d\x2e\x1e\x37\x2a\x1a\x42\x31\x20\x5f\ +\x47\x2e\x51\x3c\x27\x44\x33\x21\x3a\x2c\x1c\x39\x2b\x1b\x36\x29\ +\x1a\x34\x26\x19\x35\x27\x19\x29\x1f\x13\x25\x1c\x12\x2e\x23\x16\ +\x33\x26\x18\x33\x26\x18\x2d\x22\x16\x32\x26\x18\x2c\x21\x16\x26\ +\x1c\x12\x2c\x21\x15\x28\x1e\x13\x1e\x17\x0e\x20\x18\x0f\x26\x1c\ +\x12\x24\x1b\x11\x2a\x20\x14\x2c\x21\x15\x33\x26\x19\x31\x25\x18\ +\x30\x24\x17\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x38\x2a\x1b\x3e\ +\x2f\x1e\x35\x28\x19\x2b\x21\x15\x2b\x21\x15\x2d\x22\x16\x38\x29\ +\x1b\x2f\x23\x17\x33\x26\x18\x31\x25\x17\x32\x26\x18\x37\x2a\x1b\ +\x32\x25\x18\x30\x24\x17\x34\x27\x19\x34\x27\x19\x3b\x2c\x1d\x42\ +\x31\x20\x3a\x2c\x1c\x3f\x2f\x1e\x46\x35\x22\x45\x33\x21\x3c\x2d\ +\x1d\x38\x2a\x1b\x3c\x2d\x1d\x47\x35\x23\x43\x32\x20\x3e\x2e\x1e\ +\x38\x2a\x1a\x36\x29\x1a\x3f\x2f\x1e\x44\x33\x21\x43\x32\x20\x3f\ +\x2f\x1e\x3d\x2e\x1d\x34\x28\x19\x37\x29\x1a\x35\x28\x19\x33\x27\ +\x19\x38\x2b\x1b\x40\x30\x1e\x3a\x2b\x1c\x3a\x2b\x1c\x3f\x2f\x1e\ +\x34\x27\x19\x2a\x1f\x14\x3f\x30\x1f\x22\x1a\x11\x2c\x2d\x2c\x4d\ +\x4f\x4f\x45\x47\x47\x4d\x4e\x50\x77\x7a\x7c\x7e\x81\x84\x90\x91\ +\x94\x96\x98\x9c\x94\x96\x9a\x9c\x9e\xa2\xa1\xa2\xa6\x9f\xa1\xa5\ +\x9e\xa1\xa5\xa5\xa7\xac\xa3\xa5\xaa\xaa\xac\xaf\x95\x96\x9a\x5f\ +\x5f\x63\x80\x80\x81\xa6\xa6\xa7\xb1\xb1\xb1\xad\xad\xae\x00\x00\ +\x00\xe4\xdf\xde\xe4\xdf\xdd\xe4\xdf\xde\xe1\xdc\xdb\xda\xd7\xd6\ +\xd3\xce\xca\x73\x5e\x49\x07\x06\x04\x09\x06\x04\x40\x31\x20\x31\ +\x25\x18\x24\x1b\x11\x2e\x23\x16\x42\x32\x20\x34\x27\x19\x16\x11\ +\x0b\x2b\x20\x15\x2e\x23\x16\x37\x29\x1a\x30\x24\x17\x2f\x24\x17\ +\x31\x25\x17\x2f\x24\x16\x33\x26\x18\x2d\x22\x15\x33\x26\x19\x2f\ +\x23\x16\x25\x1c\x12\x26\x1d\x12\x23\x1a\x10\x24\x1b\x11\x2c\x21\ +\x15\x39\x2b\x1c\x52\x3d\x28\x3f\x30\x1f\x89\x69\x49\x8c\x6b\x48\ +\x88\x69\x47\x98\x75\x51\x8b\x6b\x4a\x8e\x6d\x4b\x5d\x47\x30\x25\ +\x1b\x11\x27\x1d\x12\x78\x5c\x40\xad\x86\x5e\x8a\x6a\x49\x91\x70\ +\x4d\x7c\x60\x42\x8e\x6d\x4c\x87\x68\x48\x3a\x2c\x1c\x3c\x2d\x1d\ +\x1e\x16\x0e\x1f\x18\x0f\x25\x1c\x12\x31\x25\x18\x33\x26\x18\x3c\ +\x2d\x1d\x38\x2b\x1b\x37\x29\x1a\x4a\x37\x24\x70\x55\x37\x56\x40\ +\x2a\x3e\x2e\x1e\x31\x25\x17\x30\x24\x17\x2e\x23\x16\x2e\x23\x17\ +\x2f\x23\x16\x2e\x22\x16\x2c\x21\x15\x32\x25\x18\x32\x26\x18\x33\ +\x26\x18\x2e\x22\x15\x33\x27\x19\x3e\x2e\x1e\x34\x27\x19\x35\x27\ +\x19\x2f\x23\x16\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x26\x1c\x12\ +\x28\x1e\x13\x2a\x1f\x14\x29\x1f\x13\x2c\x22\x15\x2a\x20\x14\x2f\ +\x23\x17\x31\x25\x18\x2d\x22\x16\x34\x27\x19\x39\x2b\x1b\x34\x27\ +\x19\x2f\x24\x17\x2c\x21\x15\x2f\x23\x16\x48\x36\x23\x37\x2a\x1b\ +\x38\x2a\x1b\x3b\x2c\x1c\x38\x2a\x1b\x39\x2b\x1b\x33\x26\x19\x2d\ +\x22\x16\x2d\x21\x15\x31\x24\x17\x35\x28\x1a\x3a\x2b\x1c\x3d\x2e\ +\x1e\x42\x31\x20\x4b\x38\x24\x47\x35\x23\x3e\x2e\x1e\x39\x2b\x1b\ +\x38\x2a\x1b\x41\x31\x20\x43\x33\x20\x44\x33\x21\x37\x29\x1a\x32\ +\x26\x18\x32\x26\x19\x3b\x2c\x1c\x3b\x2c\x1c\x41\x31\x1f\x41\x31\ +\x20\x3d\x2e\x1d\x3c\x2d\x1d\x36\x28\x1a\x31\x24\x17\x30\x24\x17\ +\x39\x2b\x1c\x39\x2b\x1b\x35\x28\x19\x31\x25\x17\x2e\x22\x16\x26\ +\x1d\x12\x32\x26\x19\x1f\x19\x12\x37\x39\x39\x4f\x52\x52\x2a\x2c\ +\x2c\x6b\x6e\x6f\x74\x76\x79\x84\x86\x89\x8e\x90\x94\x99\x9a\x9d\ +\x96\x99\x9d\x9f\xa2\xa6\x9f\xa2\xa6\x9d\xa0\xa4\x9d\xa1\xa5\xa4\ +\xa6\xaa\xa3\xa5\xa9\xa8\xa9\xad\xae\xaf\xb3\xa3\xa6\xa7\x70\x71\ +\x72\x7a\x7a\x7a\x9d\x9d\x9d\xb1\xb1\xb2\x00\x00\x00\xe6\xe1\xe0\ +\xe5\xe0\xde\xe4\xdf\xde\xe2\xde\xdd\xda\xd6\xd6\xd4\xce\xcb\x84\ +\x73\x61\x08\x06\x04\x04\x03\x02\x34\x27\x19\x2e\x22\x16\x29\x1f\ +\x14\x34\x27\x19\x43\x32\x20\x33\x26\x18\x11\x0d\x08\x29\x1f\x14\ +\x2a\x20\x14\x2d\x22\x15\x2f\x23\x17\x34\x27\x19\x37\x29\x1a\x35\ +\x28\x19\x35\x28\x19\x34\x27\x19\x36\x29\x1a\x2d\x22\x16\x29\x1f\ +\x14\x26\x1d\x12\x22\x1a\x10\x28\x1d\x13\x2e\x23\x16\x3b\x2c\x1d\ +\x52\x3e\x29\x3e\x2e\x1e\x81\x63\x44\x8c\x6b\x49\x92\x70\x4c\x99\ +\x76\x51\x89\x69\x48\x8a\x69\x48\x65\x4c\x34\x2a\x1f\x14\x23\x1a\ +\x10\x6d\x54\x3a\xa8\x82\x5b\x96\x73\x50\x8c\x6c\x4b\x98\x75\x52\ +\xa0\x7c\x56\x95\x73\x50\x36\x29\x1a\x42\x32\x21\x2a\x20\x14\x1e\ +\x17\x0e\x23\x1b\x11\x2d\x21\x15\x30\x24\x17\x38\x2a\x1b\x3a\x2c\ +\x1c\x38\x2a\x1b\x50\x3c\x27\x71\x55\x39\x54\x3f\x29\x44\x33\x21\ +\x35\x28\x19\x33\x26\x19\x3a\x2c\x1c\x34\x27\x19\x2d\x21\x15\x2a\ +\x20\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x2f\x23\x16\x2c\x21\ +\x15\x2f\x24\x17\x34\x27\x19\x30\x24\x17\x2b\x21\x14\x2a\x20\x14\ +\x25\x1d\x12\x20\x18\x0f\x22\x19\x10\x25\x1c\x12\x23\x1a\x11\x24\ +\x1b\x11\x22\x19\x10\x27\x1e\x13\x27\x1d\x13\x2c\x21\x15\x32\x26\ +\x18\x34\x27\x19\x35\x27\x19\x35\x28\x19\x32\x25\x19\x31\x25\x18\ +\x2d\x21\x15\x35\x28\x19\x3f\x2f\x1e\x3a\x2c\x1c\x3d\x2e\x1d\x40\ +\x30\x1f\x43\x32\x20\x3c\x2d\x1c\x3a\x2c\x1c\x34\x26\x19\x30\x23\ +\x17\x2e\x23\x16\x35\x28\x1a\x38\x2a\x1b\x3a\x2c\x1c\x42\x31\x20\ +\x44\x32\x20\x3f\x30\x1e\x3b\x2c\x1c\x33\x26\x19\x35\x28\x1a\x38\ +\x2a\x1b\x38\x2a\x1b\x3d\x2e\x1d\x3a\x2b\x1c\x38\x2a\x1b\x2b\x21\ +\x15\x29\x1f\x14\x2e\x23\x16\x38\x2a\x1b\x37\x29\x1a\x46\x34\x21\ +\x3f\x30\x1f\x36\x29\x1a\x33\x26\x19\x31\x24\x18\x3c\x2d\x1d\x3b\ +\x2c\x1c\x38\x2a\x1b\x33\x27\x18\x33\x26\x18\x27\x1d\x12\x27\x1e\ +\x13\x29\x22\x1a\x3a\x3b\x3c\x3e\x40\x41\x3d\x3f\x3f\x69\x6c\x6d\ +\x75\x77\x7b\x83\x86\x88\x8f\x91\x93\x96\x97\x9b\x99\x9a\x9e\x9f\ +\xa1\xa5\x9e\xa0\xa3\xa0\xa3\xa6\xa4\xa7\xa9\xa3\xa6\xa8\xa5\xa7\ +\xaa\xa7\xa8\xab\xab\xac\xb0\xa8\xaa\xab\xb0\xb2\xb3\x80\x80\x81\ +\x76\x74\x75\x8f\x8d\x8f\x00\x00\x00\xe6\xe1\xe0\xe5\xe0\xdf\xe4\ +\xe0\xdf\xe2\xde\xdd\xdb\xd7\xd6\xd3\xcf\xcf\x94\x84\x72\x09\x07\ +\x05\x04\x03\x02\x2d\x22\x16\x30\x23\x17\x32\x26\x18\x35\x28\x1a\ +\x3a\x2b\x1c\x2f\x23\x16\x16\x11\x0a\x20\x18\x0f\x24\x1c\x12\x27\ +\x1e\x13\x2b\x20\x15\x33\x26\x18\x3c\x2d\x1d\x3b\x2c\x1c\x35\x28\ +\x1a\x36\x28\x1a\x2c\x21\x16\x28\x1e\x13\x26\x1c\x12\x2d\x21\x15\ +\x2a\x1f\x13\x22\x19\x10\x26\x1c\x12\x2c\x21\x15\x50\x3c\x28\x31\ +\x25\x18\x6b\x52\x38\x7f\x61\x41\x83\x64\x44\x94\x72\x4f\x85\x66\ +\x46\x87\x67\x46\x68\x4f\x35\x31\x24\x17\x28\x1e\x13\x55\x41\x2c\ +\x8e\x6e\x4c\xa1\x7d\x57\xa1\x7c\x57\x9a\x76\x53\x9f\x7b\x56\x96\ +\x73\x50\x35\x29\x1a\x44\x33\x22\x3f\x30\x1f\x2f\x24\x17\x2a\x20\ +\x14\x2d\x21\x15\x32\x26\x18\x2f\x23\x17\x38\x2b\x1b\x40\x30\x1f\ +\x59\x43\x2d\x7d\x5f\x40\x64\x4b\x32\x56\x40\x2a\x48\x36\x22\x4e\ +\x3b\x26\x52\x3d\x29\x3a\x2b\x1c\x30\x24\x17\x2c\x21\x15\x2c\x22\ +\x16\x29\x1f\x13\x2d\x22\x16\x27\x1e\x13\x2a\x1f\x14\x2e\x23\x17\ +\x2e\x23\x16\x30\x24\x17\x2f\x23\x16\x26\x1d\x13\x29\x1f\x14\x23\ +\x1a\x11\x23\x1a\x11\x1f\x17\x0f\x24\x1a\x11\x20\x18\x0f\x1e\x17\ +\x0f\x23\x1a\x11\x24\x1b\x11\x25\x1c\x12\x28\x1e\x14\x2f\x23\x16\ +\x38\x29\x1b\x39\x2b\x1c\x2f\x23\x16\x2f\x23\x16\x29\x1f\x14\x29\ +\x1f\x14\x2b\x20\x14\x37\x29\x1b\x3d\x2e\x1d\x37\x2a\x1b\x3a\x2c\ +\x1c\x3c\x2c\x1c\x41\x30\x1f\x36\x28\x1a\x36\x28\x1a\x2d\x22\x15\ +\x32\x25\x18\x37\x29\x1a\x32\x26\x18\x35\x28\x1a\x3a\x2b\x1c\x3e\ +\x2e\x1e\x35\x27\x19\x2c\x21\x15\x2c\x21\x15\x2c\x22\x15\x35\x28\ +\x19\x35\x28\x1a\x3b\x2c\x1d\x40\x30\x1f\x33\x27\x19\x2d\x21\x15\ +\x33\x26\x19\x30\x24\x17\x32\x26\x18\x3d\x2d\x1d\x3e\x2f\x1e\x3a\ +\x2b\x1b\x34\x27\x19\x33\x26\x19\x3c\x2d\x1d\x3f\x2f\x1e\x3b\x2c\ +\x1c\x37\x29\x1a\x3a\x2b\x1c\x3a\x2c\x1c\x36\x28\x1a\x3b\x30\x25\ +\x42\x42\x41\x21\x22\x23\x56\x58\x5a\x67\x69\x6b\x76\x79\x7c\x85\ +\x88\x8b\x8d\x8f\x91\x95\x96\x9b\x9b\x9c\x9f\x9f\xa1\xa3\x9e\xa1\ +\xa2\xa2\xa3\xa5\xaa\xab\xad\xa5\xa7\xa9\xa7\xa9\xaa\x9f\xa1\xa2\ +\xa6\xa7\xa9\xaa\xab\xad\xa7\xa9\xaa\xad\xaf\xb0\x92\x93\x95\x7a\ +\x7a\x7d\x00\x00\x00\xe6\xe0\xdd\xe7\xe2\xdf\xe6\xe1\xdf\xe3\xde\ +\xdd\xde\xda\xd9\xd5\xd1\xd1\xa6\x9b\x91\x0a\x09\x06\x02\x01\x00\ +\x25\x1c\x12\x2c\x21\x15\x3a\x2c\x1c\x3c\x2d\x1d\x30\x24\x17\x2e\ +\x22\x16\x19\x12\x0c\x24\x1a\x11\x23\x1a\x11\x29\x1f\x14\x2c\x21\ +\x15\x37\x29\x1a\x3f\x2f\x1e\x3d\x2e\x1e\x39\x2b\x1c\x33\x26\x19\ +\x2c\x22\x15\x29\x1f\x14\x24\x1b\x11\x32\x26\x18\x30\x23\x16\x1f\ +\x17\x0f\x27\x1e\x12\x22\x1a\x10\x49\x38\x25\x2f\x23\x16\x6b\x51\ +\x37\x8d\x6b\x49\x90\x6e\x4c\x93\x72\x4f\x82\x64\x45\x82\x64\x44\ +\x6f\x55\x39\x30\x24\x17\x2c\x21\x15\x5b\x45\x2f\x8b\x6b\x4b\x99\ +\x76\x52\xa7\x81\x5a\x89\x69\x49\xa2\x7d\x57\xa6\x81\x5b\x3b\x2c\ +\x1d\x3d\x2e\x1d\x41\x30\x20\x30\x24\x17\x28\x1e\x14\x2b\x20\x15\ +\x30\x25\x17\x2d\x22\x16\x3e\x2f\x1e\x41\x31\x1f\x49\x37\x23\x70\ +\x55\x39\x8a\x69\x47\x6a\x50\x35\x66\x4c\x32\x6d\x52\x36\x59\x43\ +\x2c\x36\x29\x1a\x2e\x22\x16\x31\x25\x17\x2e\x23\x16\x2d\x22\x16\ +\x2c\x21\x15\x27\x1e\x13\x25\x1c\x12\x27\x1e\x13\x2c\x21\x15\x29\ +\x1f\x13\x2c\x21\x15\x2c\x21\x14\x31\x24\x17\x2c\x21\x15\x25\x1c\ +\x12\x22\x1a\x10\x26\x1c\x11\x25\x1b\x12\x28\x1e\x14\x26\x1c\x12\ +\x24\x1b\x11\x21\x19\x10\x25\x1b\x12\x2e\x22\x16\x32\x25\x18\x2e\ +\x22\x16\x2b\x20\x14\x31\x25\x17\x2d\x21\x16\x28\x1e\x13\x23\x1a\ +\x11\x2e\x21\x16\x33\x26\x19\x31\x25\x18\x39\x2a\x1b\x3a\x2b\x1c\ +\x39\x2a\x1c\x32\x25\x18\x33\x26\x18\x29\x1e\x14\x27\x1e\x13\x2d\ +\x22\x15\x28\x1e\x13\x2d\x22\x16\x37\x29\x1b\x3d\x2e\x1d\x35\x28\ +\x19\x33\x26\x18\x32\x26\x18\x34\x27\x19\x37\x29\x1a\x35\x27\x19\ +\x37\x29\x1a\x40\x30\x1f\x40\x30\x1f\x3e\x2f\x1e\x42\x31\x20\x3b\ +\x2d\x1d\x35\x28\x1a\x3c\x2d\x1d\x39\x2b\x1c\x3f\x2f\x1e\x3b\x2c\ +\x1c\x36\x28\x1a\x37\x29\x1a\x39\x2b\x1c\x38\x2a\x1b\x38\x2a\x1b\ +\x3f\x2f\x1f\x3d\x2e\x1e\x35\x28\x19\x42\x36\x29\x3d\x3b\x39\x2a\ +\x2b\x2c\x5c\x5d\x61\x67\x69\x6c\x78\x7a\x7d\x81\x84\x87\x8b\x8e\ +\x91\x9b\x9c\xa0\x9f\x9f\xa2\xa0\xa3\xa4\xa0\xa3\xa4\xa4\xa6\xa7\ +\xa8\xa9\xaa\xa4\xa6\xa7\xa7\xa9\xaa\x9f\xa1\xa2\xa8\xaa\xab\xa8\ +\xaa\xab\xa7\xa7\xa8\xad\xae\xaf\xad\xaf\xb0\xa2\xa4\xa6\x00\x00\ +\x00\xbb\xb5\xb1\xc5\xbb\xb7\xcd\xc2\xbe\xd0\xc8\xc3\xd2\xca\xc8\ +\xcf\xca\xc8\xb0\xa0\x92\x0b\x09\x06\x01\x01\x00\x2b\x20\x15\x32\ +\x25\x18\x42\x31\x20\x43\x32\x20\x43\x32\x20\x3b\x2c\x1d\x21\x19\ +\x0f\x26\x1c\x12\x24\x1b\x11\x25\x1c\x12\x2c\x21\x15\x36\x29\x1a\ +\x3c\x2c\x1d\x3d\x2e\x1e\x40\x30\x1f\x41\x30\x1f\x3d\x2d\x1d\x37\ +\x29\x1b\x30\x24\x17\x3e\x2e\x1e\x30\x24\x17\x2d\x21\x15\x2c\x21\ +\x15\x28\x1f\x13\x48\x36\x24\x34\x27\x19\x67\x4f\x36\xaf\x88\x60\ +\xb0\x88\x60\xad\x86\x5e\xa3\x7f\x59\x9f\x7b\x56\x8a\x6a\x49\x51\ +\x3d\x29\x48\x36\x24\x71\x57\x3b\x96\x73\x50\x92\x70\x4e\x91\x6f\ +\x4d\x7d\x5f\x41\x83\x65\x44\x7f\x62\x43\x47\x35\x23\x31\x25\x17\ +\x31\x25\x17\x2b\x21\x15\x23\x1a\x11\x2c\x21\x15\x35\x27\x19\x34\ +\x26\x19\x40\x2f\x1e\x4a\x37\x24\x45\x34\x21\x4f\x3b\x26\x80\x62\ +\x42\x94\x71\x4d\x98\x74\x50\x98\x74\x4f\x7a\x5d\x3e\x45\x33\x21\ +\x2e\x22\x16\x2e\x23\x16\x2a\x20\x14\x30\x24\x17\x2e\x23\x16\x2a\ +\x1f\x14\x1e\x16\x0e\x24\x1b\x11\x24\x1b\x11\x30\x24\x17\x29\x1f\ +\x14\x2a\x20\x14\x2d\x22\x15\x28\x1f\x13\x2b\x20\x15\x31\x25\x18\ +\x2a\x1f\x14\x26\x1c\x12\x24\x1b\x11\x22\x1a\x11\x26\x1d\x12\x20\ +\x18\x0f\x24\x1b\x11\x30\x24\x17\x2f\x23\x17\x23\x1b\x11\x29\x20\ +\x14\x28\x1e\x13\x28\x1e\x14\x29\x1f\x13\x25\x1b\x12\x29\x1f\x13\ +\x2d\x21\x15\x32\x25\x18\x30\x25\x17\x3a\x2b\x1c\x3d\x2e\x1e\x35\ +\x28\x1a\x32\x25\x18\x2a\x1f\x15\x28\x1f\x13\x2a\x1f\x14\x24\x1b\ +\x12\x27\x1d\x12\x32\x26\x18\x3a\x2b\x1c\x39\x2a\x1b\x35\x28\x19\ +\x33\x26\x18\x3a\x2c\x1c\x3b\x2c\x1d\x39\x2b\x1b\x32\x25\x18\x35\ +\x27\x19\x40\x2f\x1f\x46\x35\x22\x43\x33\x21\x3a\x2c\x1c\x39\x2a\ +\x1b\x4d\x3b\x26\x4b\x38\x25\x3f\x2f\x1e\x36\x28\x1a\x3a\x2c\x1c\ +\x3c\x2d\x1d\x38\x2a\x1b\x3f\x30\x1f\x41\x31\x1f\x41\x31\x1f\x32\ +\x25\x17\x29\x1f\x13\x4d\x3d\x2d\x2c\x29\x25\x44\x45\x47\x58\x5a\ +\x5c\x67\x69\x6c\x78\x7a\x7d\x7e\x80\x84\x8f\x91\x95\x98\x9a\x9e\ +\x9c\x9e\x9f\x9e\xa0\xa2\xa4\xa5\xa7\xa7\xa9\xaa\xa3\xa5\xa6\xa5\ +\xa7\xa8\xa7\xa9\xaa\xa6\xa8\xa9\xad\xad\xaf\xa6\xa7\xa8\xa9\xaa\ +\xab\xa9\xab\xac\xaf\xb0\xb0\xab\xab\xad\x00\x00\x00\xc7\xc4\xbf\ +\xc2\xbd\xb8\xbe\xb8\xb3\xbb\xb5\xb1\xb5\xad\xa9\xb1\xa8\xa5\xa1\ +\x88\x71\x0c\x0a\x06\x03\x03\x02\x33\x27\x19\x41\x31\x20\x40\x30\ +\x1f\x3f\x2f\x1e\x46\x34\x22\x41\x30\x1f\x25\x1b\x12\x1e\x16\x0e\ +\x23\x1b\x11\x25\x1c\x11\x28\x1e\x14\x2c\x20\x15\x32\x25\x18\x3a\ +\x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x33\x26\x19\x30\x23\x17\x29\x1f\ +\x14\x3b\x2c\x1d\x30\x24\x18\x2d\x21\x15\x2c\x21\x15\x2c\x21\x15\ +\x39\x2b\x1c\x2e\x23\x16\x50\x3d\x29\x91\x70\x4e\x7d\x60\x42\x78\ +\x5d\x40\x70\x56\x3b\x66\x4e\x35\x58\x43\x2d\x49\x37\x24\x3f\x2f\ +\x1f\x42\x32\x21\x4f\x3c\x28\x4b\x39\x26\x3f\x2f\x20\x37\x29\x1b\ +\x37\x2a\x1b\x32\x26\x19\x2e\x23\x16\x2d\x21\x16\x3c\x2d\x1d\x32\ +\x25\x17\x30\x24\x17\x32\x25\x18\x3e\x2e\x1d\x3c\x2d\x1d\x40\x30\ +\x1f\x4d\x39\x25\x43\x32\x20\x38\x29\x1b\x4a\x37\x24\x66\x4d\x33\ +\x72\x57\x3a\x79\x5c\x3e\x6b\x51\x36\x43\x32\x20\x2c\x21\x15\x29\ +\x1e\x13\x27\x1e\x13\x26\x1d\x12\x2b\x20\x15\x2b\x20\x15\x1f\x16\ +\x0e\x1d\x16\x0e\x29\x1f\x14\x37\x29\x1a\x2b\x20\x15\x2b\x1f\x14\ +\x2f\x23\x16\x2e\x23\x16\x2c\x22\x15\x36\x28\x1a\x2a\x1f\x14\x24\ +\x1c\x11\x21\x19\x10\x23\x1a\x11\x24\x1b\x11\x21\x19\x10\x26\x1c\ +\x12\x28\x1e\x13\x2b\x21\x15\x23\x1b\x11\x23\x1a\x11\x22\x19\x10\ +\x21\x19\x10\x28\x1e\x13\x22\x19\x10\x23\x1a\x11\x25\x1b\x11\x2a\ +\x1f\x14\x2b\x20\x14\x30\x24\x17\x38\x2a\x1b\x2c\x22\x15\x2b\x20\ +\x15\x2b\x20\x15\x2b\x20\x14\x28\x1e\x13\x25\x1c\x12\x26\x1c\x12\ +\x2c\x21\x15\x2f\x23\x16\x36\x28\x1a\x37\x29\x1a\x34\x27\x19\x37\ +\x29\x1a\x3a\x2c\x1c\x3c\x2e\x1d\x36\x28\x1a\x32\x25\x18\x37\x2a\ +\x1b\x44\x33\x21\x3c\x2e\x1e\x34\x26\x18\x34\x27\x19\x3a\x2c\x1c\ +\x44\x33\x21\x44\x33\x21\x3e\x2e\x1e\x3c\x2d\x1d\x40\x30\x1f\x40\ +\x30\x1f\x47\x35\x22\x46\x34\x21\x42\x31\x20\x36\x28\x1a\x32\x25\ +\x17\x57\x44\x30\x31\x2d\x28\x49\x4b\x4c\x58\x59\x5b\x67\x69\x6c\ +\x79\x7b\x7e\x83\x85\x89\x8b\x8e\x91\x94\x97\x9b\x9e\x9f\xa2\xa0\ +\xa2\xa5\xa3\xa4\xa7\xa6\xa7\xa9\x9d\x9f\xa0\xa1\xa3\xa4\xa7\xa9\ +\xaa\xaa\xac\xad\xab\xac\xad\xa4\xa5\xa6\xac\xab\xad\xae\xaf\xb0\ +\xad\xae\xaf\xac\xab\xae\x00\x00\x00\xe2\xde\xda\xe0\xdc\xd8\xdd\ +\xd8\xd5\xd8\xd4\xd0\xd0\xcc\xc8\xc8\xc2\xbf\xae\x98\x84\x13\x0f\ +\x0a\x02\x02\x01\x23\x1b\x11\x3a\x2c\x1d\x32\x26\x18\x3a\x2b\x1b\ +\x32\x25\x18\x3e\x2e\x1e\x27\x1d\x12\x16\x11\x0b\x1c\x15\x0e\x22\ +\x1a\x10\x25\x1c\x12\x26\x1d\x12\x33\x26\x19\x38\x2a\x1b\x2f\x23\ +\x17\x30\x24\x18\x2c\x20\x15\x2d\x22\x15\x2b\x20\x14\x36\x28\x1a\ +\x2e\x23\x16\x31\x25\x18\x34\x27\x19\x32\x26\x18\x40\x30\x1f\x2f\ +\x23\x16\x2b\x20\x15\x3d\x2d\x1e\x38\x2a\x1b\x35\x28\x1a\x2e\x23\ +\x16\x2f\x24\x17\x37\x29\x1b\x3b\x2c\x1d\x3f\x30\x1f\x3f\x30\x1f\ +\x3e\x2f\x1f\x45\x34\x23\x3a\x2c\x1c\x2b\x21\x15\x32\x26\x18\x37\ +\x29\x1a\x39\x2a\x1b\x3a\x2c\x1c\x3c\x2e\x1e\x32\x26\x18\x35\x28\ +\x1a\x2f\x23\x16\x3b\x2c\x1d\x46\x34\x22\x40\x2f\x1f\x47\x34\x22\ +\x47\x35\x22\x35\x27\x19\x36\x28\x1a\x3d\x2d\x1d\x43\x32\x20\x48\ +\x37\x23\x49\x36\x23\x36\x29\x1a\x2a\x20\x15\x28\x1e\x14\x23\x1a\ +\x11\x1f\x17\x0f\x2b\x20\x15\x22\x1a\x10\x23\x1b\x11\x27\x1d\x13\ +\x32\x25\x18\x30\x24\x17\x24\x1b\x12\x28\x1e\x13\x27\x1d\x13\x2b\ +\x21\x14\x2f\x24\x17\x2c\x21\x15\x24\x1b\x11\x24\x1c\x11\x27\x1d\ +\x13\x1e\x16\x0e\x1b\x14\x0d\x22\x1a\x10\x23\x1a\x11\x20\x19\x10\ +\x21\x19\x10\x1f\x18\x0f\x1c\x15\x0e\x1b\x14\x0d\x20\x18\x10\x25\ +\x1c\x12\x27\x1e\x13\x24\x1b\x11\x27\x1d\x13\x2a\x1f\x14\x2d\x21\ +\x15\x35\x28\x1a\x36\x28\x1a\x2b\x20\x14\x2e\x23\x16\x30\x24\x17\ +\x32\x25\x18\x30\x24\x18\x2d\x22\x16\x2c\x21\x15\x2a\x20\x14\x2a\ +\x20\x14\x36\x29\x19\x36\x28\x19\x30\x24\x17\x35\x28\x19\x39\x2b\ +\x1c\x3d\x2e\x1d\x3b\x2c\x1c\x3f\x2f\x1e\x3c\x2d\x1d\x41\x30\x1f\ +\x3d\x2d\x1d\x35\x28\x1a\x37\x29\x1b\x31\x25\x18\x37\x2a\x1b\x4e\ +\x3b\x27\x3a\x2b\x1c\x3d\x2d\x1d\x3e\x2e\x1e\x41\x31\x20\x3b\x2c\ +\x1d\x34\x27\x19\x32\x25\x18\x31\x25\x18\x30\x24\x17\x4d\x3a\x27\ +\x3e\x3b\x36\x4b\x4c\x4d\x59\x5b\x5d\x6a\x6c\x6f\x78\x7a\x7d\x87\ +\x8a\x8d\x8e\x91\x94\x98\x9a\x9d\x9d\x9e\xa2\xa2\xa3\xa7\xa7\xa7\ +\xab\xa5\xa7\xab\xa8\xa9\xac\xa7\xa9\xaa\xa2\xa4\xa5\xa8\xa7\xa9\ +\xac\xad\xae\xac\xad\xae\xab\xaa\xac\xb1\xb0\xb2\xae\xae\xaf\xad\ +\xae\xb0\x00\x00\x00\xe7\xe2\xde\xe5\xe0\xdd\xe3\xde\xdb\xe1\xdd\ +\xda\xdd\xd8\xd5\xd6\xd1\xce\xca\xc1\xba\x1e\x18\x10\x02\x02\x00\ +\x19\x13\x0c\x37\x29\x1b\x2e\x23\x16\x39\x2b\x1b\x38\x2a\x1b\x43\ +\x32\x20\x24\x1b\x11\x12\x0e\x08\x1f\x17\x0f\x25\x1c\x11\x2a\x1f\ +\x14\x2d\x22\x15\x3f\x30\x1f\x3e\x2e\x1e\x30\x24\x18\x31\x25\x18\ +\x2f\x23\x17\x2b\x21\x15\x2c\x21\x15\x36\x29\x1a\x33\x27\x19\x35\ +\x27\x19\x3e\x2f\x1e\x4b\x38\x25\x59\x43\x2d\x72\x58\x3c\x63\x4c\ +\x33\x68\x50\x35\x54\x40\x2a\x68\x50\x36\x5e\x49\x31\x56\x42\x2c\ +\x48\x36\x23\x43\x32\x21\x34\x27\x1a\x2d\x22\x16\x2d\x22\x16\x31\ +\x25\x18\x30\x25\x17\x31\x25\x17\x30\x24\x17\x28\x1e\x13\x27\x1e\ +\x13\x32\x26\x18\x3a\x2b\x1c\x3b\x2d\x1d\x2c\x21\x15\x2c\x21\x15\ +\x33\x26\x19\x37\x29\x1a\x38\x2a\x1b\x44\x33\x20\x4c\x39\x25\x37\ +\x29\x1b\x3f\x2f\x1e\x3a\x2c\x1c\x36\x29\x1a\x39\x2b\x1c\x37\x28\ +\x1a\x2b\x21\x15\x2e\x23\x16\x2a\x20\x14\x22\x1a\x10\x22\x1a\x10\ +\x2a\x1f\x14\x28\x1f\x13\x24\x1b\x12\x2a\x20\x14\x32\x25\x18\x2b\ +\x20\x15\x30\x25\x18\x1f\x18\x0f\x29\x1e\x13\x28\x1e\x13\x2d\x21\ +\x15\x26\x1d\x12\x2a\x20\x14\x29\x1f\x14\x27\x1d\x13\x1b\x14\x0d\ +\x1a\x13\x0c\x23\x1b\x11\x25\x1c\x12\x23\x1a\x11\x21\x18\x10\x22\ +\x1a\x10\x20\x18\x0f\x26\x1d\x12\x24\x1b\x11\x24\x1c\x11\x26\x1c\ +\x12\x27\x1d\x12\x25\x1b\x11\x24\x1b\x11\x27\x1e\x12\x2e\x22\x16\ +\x26\x1c\x12\x26\x1d\x12\x28\x1e\x13\x2e\x22\x17\x30\x24\x17\x2f\ +\x24\x16\x34\x27\x19\x35\x28\x19\x2a\x20\x14\x27\x1d\x12\x28\x1e\ +\x13\x28\x1e\x14\x2a\x1f\x14\x2e\x22\x15\x30\x24\x17\x33\x27\x19\ +\x32\x25\x18\x3a\x2b\x1c\x34\x27\x19\x33\x26\x18\x32\x25\x18\x2b\ +\x21\x15\x31\x25\x18\x32\x25\x18\x37\x29\x1b\x3b\x2c\x1d\x31\x25\ +\x17\x3b\x2d\x1c\x3e\x2e\x1e\x42\x32\x20\x37\x29\x1b\x2b\x20\x14\ +\x32\x25\x18\x35\x28\x1a\x32\x25\x18\x48\x37\x27\x47\x44\x40\x4f\ +\x50\x51\x5c\x5e\x60\x6e\x70\x73\x79\x7c\x7e\x89\x8b\x8e\x91\x93\ +\x96\x9c\x9d\x9f\x9f\xa0\xa4\xa0\xa1\xa4\xa1\xa1\xa3\xa3\xa4\xa5\ +\xaa\xab\xad\xad\xac\xae\xa4\xa5\xa7\xab\xac\xae\xa7\xa6\xa8\xae\ +\xb0\xb1\xac\xaa\xac\xb0\xae\xb1\xae\xad\xaf\xae\xb0\xb1\x00\x00\ +\x00\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe1\xdd\xda\xdd\xd8\xd6\ +\xd8\xd3\xd0\xce\xc9\xc7\x2f\x28\x22\x01\x01\x00\x0e\x0a\x06\x25\ +\x1b\x12\x32\x25\x18\x41\x30\x20\x39\x2b\x1c\x3c\x2e\x1d\x27\x1e\ +\x13\x0e\x0b\x06\x1e\x17\x0f\x2c\x20\x15\x2d\x22\x15\x2e\x23\x16\ +\x30\x24\x17\x35\x28\x1a\x37\x29\x1b\x39\x2b\x1b\x32\x26\x18\x28\ +\x1e\x13\x20\x18\x0f\x2f\x23\x17\x33\x26\x19\x36\x28\x1a\x38\x2a\ +\x1b\x41\x31\x1f\x40\x30\x20\x42\x32\x20\x34\x27\x1a\x2d\x23\x16\ +\x2f\x24\x17\x39\x2c\x1d\x40\x30\x20\x3d\x2e\x1e\x2c\x21\x15\x1f\ +\x18\x0f\x1c\x15\x0e\x1f\x17\x0f\x1e\x17\x0e\x22\x19\x10\x2a\x1f\ +\x13\x2b\x20\x14\x1e\x17\x0e\x1e\x17\x0e\x2c\x21\x15\x31\x24\x17\ +\x37\x29\x1b\x34\x28\x19\x31\x25\x18\x27\x1d\x13\x2d\x22\x16\x2b\ +\x20\x14\x31\x25\x18\x3c\x2d\x1d\x3d\x2e\x1d\x3f\x30\x1e\x3e\x2f\ +\x1e\x39\x2b\x1c\x39\x2b\x1c\x3b\x2c\x1d\x37\x29\x1a\x31\x25\x17\ +\x3b\x2c\x1c\x37\x2a\x1b\x30\x24\x17\x2a\x1f\x14\x26\x1c\x12\x22\ +\x1a\x10\x25\x1c\x11\x2a\x20\x14\x2e\x22\x16\x26\x1c\x12\x2e\x23\ +\x17\x25\x1c\x12\x23\x1b\x10\x26\x1d\x12\x27\x1d\x13\x1f\x18\x10\ +\x22\x19\x10\x25\x1c\x12\x24\x1b\x11\x20\x18\x10\x1f\x18\x0f\x27\ +\x1e\x13\x30\x23\x16\x30\x24\x17\x31\x24\x17\x32\x25\x18\x31\x25\ +\x18\x2e\x23\x17\x2d\x22\x16\x2b\x21\x15\x28\x1f\x13\x25\x1b\x11\ +\x22\x1a\x10\x22\x1a\x11\x24\x1b\x11\x2b\x20\x15\x20\x18\x0f\x20\ +\x18\x0f\x23\x1b\x11\x2d\x22\x16\x36\x28\x1a\x38\x29\x1b\x3f\x2f\ +\x1e\x3d\x2d\x1d\x35\x28\x19\x2e\x23\x16\x28\x1e\x13\x28\x1e\x13\ +\x2a\x20\x14\x2c\x21\x15\x2b\x20\x15\x32\x25\x18\x30\x24\x17\x37\ +\x2a\x1b\x2f\x23\x16\x2e\x23\x16\x2d\x21\x15\x2d\x22\x16\x2d\x22\ +\x15\x2d\x22\x16\x2f\x23\x16\x2e\x23\x16\x30\x24\x17\x31\x25\x17\ +\x2c\x21\x15\x2f\x24\x17\x31\x25\x18\x30\x24\x17\x36\x29\x1a\x35\ +\x28\x19\x2c\x21\x15\x5d\x48\x31\x51\x4c\x46\x55\x56\x56\x61\x63\ +\x64\x70\x73\x74\x7c\x7e\x82\x88\x8a\x8c\x93\x94\x98\x9c\x9d\xa1\ +\x9e\x9f\xa3\xa1\xa2\xa6\x9d\x9e\xa2\xa3\xa4\xa8\xa9\xab\xad\xa9\ +\xab\xac\xa5\xa7\xa8\xa3\xa5\xa6\xa9\xa8\xaa\xa6\xa5\xa7\xad\xac\ +\xae\xb0\xb0\xb1\xac\xab\xad\xad\xad\xaf\x00\x00\x00\xe6\xe1\xde\ +\xe5\xe0\xdd\xe4\xdf\xdd\xe2\xde\xdb\xe0\xdb\xd8\xd9\xd4\xd1\xcf\ +\xca\xc7\x3c\x37\x31\x01\x01\x00\x0d\x0a\x06\x1e\x17\x0e\x32\x25\ +\x18\x46\x34\x22\x36\x29\x1a\x3f\x30\x1e\x2e\x23\x16\x0b\x09\x05\ +\x1e\x16\x0e\x28\x1e\x14\x32\x26\x18\x30\x24\x17\x33\x27\x19\x3f\ +\x2f\x1f\x41\x31\x1f\x39\x2a\x1b\x3a\x2c\x1c\x29\x1e\x13\x21\x18\ +\x10\x28\x1e\x13\x2c\x21\x15\x3c\x2d\x1d\x3e\x2f\x1e\x3e\x2f\x1e\ +\x3f\x2f\x1e\x41\x31\x1f\x2a\x1f\x14\x1f\x17\x0e\x20\x18\x10\x26\ +\x1d\x13\x2e\x22\x16\x34\x27\x19\x32\x25\x18\x27\x1d\x13\x27\x1e\ +\x13\x24\x1b\x11\x1e\x17\x0e\x1d\x16\x0e\x25\x1c\x11\x2a\x1f\x14\ +\x2c\x21\x15\x32\x26\x18\x2d\x21\x15\x31\x25\x17\x35\x28\x1a\x35\ +\x28\x19\x2f\x23\x17\x2b\x21\x15\x2f\x23\x16\x34\x27\x19\x37\x2a\ +\x1b\x3e\x2e\x1d\x42\x31\x1f\x42\x31\x20\x37\x2a\x1b\x3d\x2d\x1d\ +\x44\x32\x20\x42\x31\x20\x39\x2a\x1b\x2c\x22\x15\x2c\x21\x15\x2e\ +\x22\x16\x2a\x1f\x14\x27\x1d\x13\x26\x1c\x12\x20\x18\x0f\x21\x19\ +\x10\x23\x1b\x11\x29\x1e\x14\x23\x1b\x11\x26\x1c\x12\x1f\x17\x0f\ +\x1c\x15\x0d\x1b\x14\x0d\x21\x19\x10\x1b\x14\x0c\x1b\x14\x0d\x1e\ +\x17\x0f\x1f\x17\x0f\x1d\x16\x0e\x21\x19\x10\x2a\x20\x14\x31\x24\ +\x17\x35\x27\x19\x31\x25\x18\x2c\x21\x16\x34\x27\x19\x30\x24\x17\ +\x2e\x23\x16\x34\x27\x19\x2b\x20\x14\x35\x28\x19\x2e\x23\x16\x2e\ +\x22\x17\x26\x1c\x12\x24\x1c\x12\x21\x19\x0f\x19\x13\x0c\x23\x1b\ +\x11\x2a\x1f\x15\x2e\x23\x16\x32\x25\x18\x38\x29\x1b\x34\x27\x19\ +\x30\x24\x16\x27\x1d\x13\x23\x1b\x11\x29\x1e\x14\x2a\x20\x14\x29\ +\x1e\x14\x25\x1c\x11\x2b\x20\x14\x2f\x23\x16\x31\x25\x17\x34\x27\ +\x19\x31\x24\x17\x35\x27\x19\x36\x29\x1a\x3b\x2c\x1d\x37\x29\x1b\ +\x32\x26\x18\x2f\x23\x17\x32\x25\x17\x35\x27\x19\x32\x26\x18\x2e\ +\x23\x16\x37\x29\x1b\x35\x28\x1a\x37\x29\x1b\x35\x27\x19\x43\x34\ +\x22\x58\x47\x35\x54\x51\x4e\x58\x59\x5a\x66\x68\x68\x72\x75\x76\ +\x81\x84\x85\x8e\x91\x94\x99\x9b\x9d\x9f\xa1\xa3\x9f\xa0\xa4\xa2\ +\xa3\xa6\xa2\xa3\xa6\xa4\xa6\xa8\xa9\xab\xad\xac\xad\xae\xaa\xab\ +\xac\xab\xab\xad\xad\xad\xaf\xac\xab\xad\xaa\xa9\xab\xad\xad\xae\ +\xad\xad\xae\xb2\xb1\xb3\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\ +\xe0\xdd\xe3\xde\xdc\xe0\xdb\xd8\xd9\xd5\xd2\xd0\xcc\xc9\x3c\x34\ +\x2a\x01\x01\x00\x11\x0d\x08\x21\x18\x10\x41\x30\x1f\x46\x34\x22\ +\x31\x24\x17\x37\x29\x1b\x2d\x21\x15\x10\x0c\x07\x20\x18\x0f\x28\ +\x1e\x13\x2e\x23\x16\x2c\x21\x15\x32\x25\x18\x3a\x2b\x1c\x36\x28\ +\x1a\x33\x26\x19\x33\x26\x18\x2d\x21\x15\x29\x1f\x13\x25\x1c\x11\ +\x2f\x23\x16\x36\x28\x1a\x36\x29\x1a\x33\x26\x18\x3f\x2f\x1f\x46\ +\x34\x21\x39\x2a\x1b\x2d\x22\x16\x33\x26\x19\x34\x27\x18\x26\x1c\ +\x12\x26\x1c\x12\x2e\x23\x16\x2f\x23\x16\x29\x1e\x13\x28\x1d\x13\ +\x1f\x17\x0f\x1f\x18\x0f\x24\x1c\x11\x2c\x20\x15\x30\x23\x17\x2d\ +\x23\x16\x32\x25\x18\x2b\x20\x14\x2b\x20\x14\x35\x28\x19\x3a\x2b\ +\x1c\x34\x27\x19\x3a\x2c\x1c\x38\x2b\x1b\x4a\x37\x24\x44\x33\x21\ +\x3b\x2c\x1c\x42\x32\x20\x4b\x37\x24\x43\x32\x20\x47\x35\x22\x43\ +\x32\x20\x34\x27\x19\x2b\x21\x14\x27\x1d\x12\x26\x1d\x12\x25\x1c\ +\x12\x29\x1f\x14\x24\x1b\x11\x22\x19\x10\x1c\x15\x0e\x1c\x15\x0e\ +\x26\x1d\x13\x25\x1c\x12\x26\x1d\x13\x2a\x20\x15\x24\x1b\x11\x1c\ +\x15\x0e\x1a\x13\x0c\x16\x10\x0b\x13\x0e\x09\x17\x11\x0b\x1c\x15\ +\x0d\x20\x19\x10\x24\x1b\x11\x25\x1c\x11\x28\x1d\x13\x2a\x1f\x14\ +\x29\x1f\x13\x30\x23\x17\x34\x27\x19\x34\x27\x1a\x2e\x22\x16\x36\ +\x28\x19\x2e\x23\x17\x2a\x1e\x14\x2c\x21\x15\x2f\x23\x17\x32\x26\ +\x18\x2a\x20\x14\x28\x1f\x13\x1f\x18\x0f\x24\x1b\x12\x25\x1c\x12\ +\x2a\x20\x15\x2b\x21\x15\x28\x1e\x14\x24\x1c\x12\x22\x1b\x11\x27\ +\x1e\x14\x27\x1d\x13\x2b\x21\x15\x2f\x24\x17\x3b\x2c\x1d\x34\x27\ +\x19\x35\x27\x1a\x38\x2b\x1b\x40\x30\x1f\x35\x28\x1a\x32\x26\x18\ +\x2c\x21\x16\x30\x23\x17\x39\x2b\x1c\x38\x2a\x1b\x3f\x2f\x1e\x41\ +\x31\x20\x3f\x2f\x1e\x48\x35\x22\x34\x27\x19\x33\x27\x19\x44\x33\ +\x21\x36\x28\x1a\x2d\x21\x16\x33\x26\x19\x3f\x2f\x1f\x4e\x41\x34\ +\x58\x56\x56\x5e\x60\x61\x6c\x6e\x6f\x7a\x7d\x7e\x85\x88\x8a\x8f\ +\x92\x95\x99\x9b\x9c\x9e\x9f\xa4\xa5\xa7\xab\xa2\xa4\xa7\xa2\xa4\ +\xa6\xa8\xaa\xab\xaa\xac\xad\xad\xaf\xb0\xab\xac\xad\xa7\xa9\xaa\ +\xaa\xab\xac\xb1\xb0\xb2\xaa\xa9\xab\xae\xad\xaf\xa9\xa8\xaa\xb4\ +\xb3\xb5\x00\x00\x00\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xdf\xe4\xe0\ +\xdd\xe1\xdc\xdc\xda\xd6\xd5\xd0\xc9\xc2\x40\x31\x21\x02\x01\x00\ +\x14\x0f\x0a\x24\x1b\x11\x3b\x2c\x1d\x50\x3c\x27\x30\x24\x17\x3d\ +\x2d\x1d\x30\x24\x17\x17\x11\x0b\x26\x1d\x12\x24\x1b\x11\x26\x1c\ +\x12\x2a\x20\x14\x2a\x20\x14\x32\x25\x18\x35\x27\x19\x35\x28\x19\ +\x34\x28\x19\x28\x1f\x13\x2e\x22\x16\x27\x1e\x13\x26\x1d\x12\x27\ +\x1e\x13\x24\x1b\x11\x30\x24\x17\x40\x31\x1f\x3b\x2c\x1c\x31\x24\ +\x18\x29\x1f\x14\x33\x26\x19\x35\x27\x1a\x28\x1e\x13\x23\x1b\x11\ +\x24\x1c\x11\x27\x1d\x12\x36\x28\x1a\x36\x29\x1a\x25\x1c\x12\x22\ +\x19\x10\x24\x1b\x11\x26\x1d\x12\x32\x25\x18\x2f\x23\x16\x3a\x2b\ +\x1c\x43\x32\x20\x37\x29\x1a\x41\x30\x1f\x38\x2a\x1b\x37\x29\x1a\ +\x3e\x2f\x1e\x3a\x2c\x1c\x42\x31\x20\x3f\x30\x1e\x49\x36\x23\x4a\ +\x37\x24\x41\x31\x20\x40\x30\x1f\x3c\x2d\x1d\x3e\x2f\x1e\x37\x29\ +\x1a\x33\x26\x18\x28\x1d\x12\x1d\x15\x0e\x1e\x16\x0f\x2a\x1f\x14\ +\x23\x1a\x11\x20\x18\x0f\x23\x1a\x11\x1c\x15\x0e\x1a\x14\x0d\x20\ +\x18\x0f\x25\x1c\x12\x30\x24\x17\x29\x20\x14\x29\x1e\x13\x27\x1e\ +\x13\x21\x19\x10\x17\x12\x0b\x19\x13\x0c\x1e\x16\x0e\x2c\x20\x15\ +\x2a\x20\x15\x28\x1f\x13\x2f\x23\x16\x2f\x23\x17\x2a\x1f\x14\x2f\ +\x23\x16\x33\x26\x19\x2b\x20\x14\x2f\x23\x17\x38\x2a\x1b\x2f\x23\ +\x17\x2a\x1f\x14\x29\x1f\x13\x35\x28\x1a\x37\x29\x1b\x35\x28\x1a\ +\x2d\x21\x16\x24\x1a\x12\x23\x1b\x11\x2c\x21\x15\x35\x28\x1a\x2f\ +\x23\x17\x28\x1e\x13\x25\x1c\x11\x22\x1a\x10\x24\x1b\x11\x25\x1c\ +\x12\x27\x1d\x13\x2b\x21\x14\x31\x25\x17\x31\x25\x18\x31\x25\x18\ +\x32\x25\x18\x30\x25\x18\x30\x24\x17\x2d\x22\x16\x2f\x23\x16\x2f\ +\x23\x17\x37\x29\x1b\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x45\x34\ +\x21\x39\x2a\x1b\x27\x1d\x12\x22\x1a\x10\x2a\x20\x15\x2a\x1f\x14\ +\x37\x29\x1b\x58\x43\x2d\x4d\x3b\x27\x62\x4b\x33\x64\x60\x5c\x6a\ +\x6c\x6f\x77\x7a\x7b\x7c\x7e\x7f\x8a\x8c\x90\x93\x95\x98\x99\x9b\ +\x9d\x9e\x9f\xa3\xa4\xa6\xaa\xa2\xa4\xa8\xa3\xa4\xa8\xa4\xa5\xa8\ +\xa8\xaa\xac\xaa\xac\xad\xac\xae\xaf\xa8\xaa\xab\xab\xad\xae\xa7\ +\xa8\xa9\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\xaf\xae\xb0\x00\x00\ +\x00\xe7\xe2\xe1\xe6\xe1\xdf\xe5\xe0\xde\xe4\xe0\xdd\xe0\xdc\xd9\ +\xda\xd7\xd3\xcc\xbf\xb3\x4e\x3b\x28\x02\x01\x00\x18\x12\x0b\x35\ +\x28\x1a\x38\x2a\x1b\x42\x32\x20\x39\x2a\x1c\x3d\x2e\x1e\x27\x1d\ +\x12\x18\x12\x0b\x18\x13\x0b\x1e\x17\x0e\x25\x1c\x11\x2b\x21\x14\ +\x2a\x1f\x14\x27\x1d\x12\x2f\x24\x17\x33\x26\x18\x2b\x20\x15\x23\ +\x1b\x11\x25\x1c\x11\x2a\x20\x14\x20\x18\x0f\x25\x1b\x11\x22\x19\ +\x10\x2b\x21\x15\x38\x2a\x1b\x3d\x2e\x1e\x33\x26\x18\x2a\x1f\x14\ +\x37\x2a\x1a\x30\x24\x17\x2b\x20\x15\x23\x1a\x11\x1e\x17\x0e\x24\ +\x1a\x11\x35\x28\x1a\x31\x25\x18\x1f\x17\x0f\x1a\x14\x0d\x1d\x15\ +\x0e\x21\x19\x10\x25\x1d\x12\x2d\x22\x16\x32\x26\x18\x41\x30\x1f\ +\x3b\x2c\x1c\x48\x35\x22\x41\x31\x1f\x3f\x2f\x1e\x36\x28\x1a\x32\ +\x25\x18\x33\x27\x19\x3e\x2f\x1e\x40\x30\x1e\x44\x34\x21\x40\x31\ +\x1f\x36\x28\x19\x34\x27\x19\x34\x26\x19\x2e\x22\x16\x2a\x1f\x14\ +\x1e\x16\x0e\x19\x13\x0c\x14\x0f\x09\x16\x11\x0a\x10\x0c\x08\x19\ +\x12\x0c\x23\x1a\x11\x18\x12\x0c\x16\x11\x0a\x1d\x16\x0e\x23\x1b\ +\x11\x35\x27\x19\x3d\x2d\x1d\x33\x27\x18\x27\x1d\x13\x24\x1b\x11\ +\x20\x18\x10\x18\x12\x0c\x1d\x16\x0e\x24\x1b\x11\x21\x19\x10\x1c\ +\x15\x0d\x28\x1e\x13\x2d\x22\x15\x2d\x22\x15\x3a\x2c\x1b\x35\x27\ +\x19\x37\x29\x1a\x35\x28\x19\x39\x2b\x1b\x34\x27\x19\x31\x25\x18\ +\x2d\x22\x15\x34\x27\x19\x33\x26\x19\x36\x28\x1a\x31\x25\x17\x36\ +\x29\x19\x33\x26\x18\x2d\x22\x16\x2b\x21\x15\x2d\x22\x15\x29\x1e\ +\x13\x24\x1a\x11\x26\x1d\x13\x24\x1b\x11\x21\x19\x10\x2a\x20\x14\ +\x30\x25\x17\x30\x24\x17\x2f\x23\x16\x34\x27\x19\x38\x2a\x1b\x36\ +\x28\x1a\x3b\x2c\x1c\x34\x27\x19\x3c\x2d\x1d\x33\x26\x19\x36\x29\ +\x1a\x3a\x2b\x1c\x3b\x2c\x1d\x44\x33\x21\x4e\x3b\x26\x33\x26\x19\ +\x29\x1f\x14\x2c\x21\x15\x23\x1a\x10\x25\x1c\x12\x3e\x2f\x1f\x6a\ +\x51\x36\x4d\x3b\x27\x3e\x31\x24\x65\x64\x63\x74\x76\x79\x7f\x81\ +\x84\x86\x8a\x8c\x8d\x90\x93\x94\x97\x9a\x99\x9c\x9e\xa3\xa4\xa7\ +\xa2\xa3\xa7\xa4\xa5\xa9\xa6\xa7\xab\xa5\xa7\xaa\xa4\xa7\xa9\xae\ +\xb1\xb1\xac\xae\xaf\xa7\xa9\xaa\xa7\xa9\xaa\xaa\xab\xad\xab\xaa\ +\xac\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\x00\x00\x00\xe7\xe2\xe0\ +\xe6\xe1\xe0\xe5\xe1\xdf\xe4\xe0\xde\xe2\xdd\xda\xdb\xd7\xd4\xd3\ +\xcc\xc7\x63\x53\x42\x03\x02\x00\x0c\x08\x05\x2b\x21\x14\x38\x2a\ +\x1b\x48\x36\x23\x3d\x2e\x1d\x37\x2a\x1b\x32\x25\x18\x18\x12\x0b\ +\x1c\x15\x0d\x1c\x15\x0d\x23\x1a\x11\x28\x1e\x13\x29\x1e\x13\x2a\ +\x20\x14\x3a\x2c\x1b\x2d\x23\x16\x2b\x20\x15\x34\x27\x19\x36\x29\ +\x1a\x31\x25\x18\x30\x24\x17\x2a\x20\x14\x28\x1f\x14\x22\x1a\x10\ +\x2a\x1f\x14\x36\x28\x1a\x28\x1e\x13\x2a\x1f\x14\x32\x26\x18\x36\ +\x29\x19\x32\x26\x18\x2c\x22\x15\x29\x1f\x14\x26\x1d\x12\x2f\x24\ +\x17\x2b\x20\x15\x20\x18\x0f\x20\x18\x10\x1b\x14\x0d\x1f\x17\x0f\ +\x24\x1c\x12\x2a\x1f\x14\x31\x25\x17\x36\x28\x1a\x2e\x22\x16\x47\ +\x35\x22\x4c\x38\x26\x3e\x2f\x1e\x28\x1e\x14\x23\x1b\x11\x33\x26\ +\x19\x3d\x2e\x1d\x3a\x2c\x1c\x3d\x2e\x1e\x3b\x2c\x1d\x34\x27\x18\ +\x2b\x20\x14\x2f\x23\x16\x33\x26\x18\x2d\x22\x15\x29\x1e\x13\x22\ +\x1a\x10\x22\x1a\x11\x1b\x15\x0d\x1a\x13\x0c\x1e\x17\x0f\x2a\x20\ +\x14\x26\x1d\x13\x1f\x17\x0f\x23\x1b\x11\x32\x25\x18\x3e\x2e\x1e\ +\x3d\x2d\x1d\x37\x29\x1b\x2d\x22\x15\x2d\x21\x15\x27\x1d\x12\x1c\ +\x15\x0e\x1b\x14\x0d\x23\x1a\x11\x22\x19\x10\x23\x1a\x11\x2c\x21\ +\x15\x33\x26\x19\x35\x27\x1a\x34\x27\x19\x30\x24\x17\x34\x28\x1a\ +\x37\x29\x1b\x35\x28\x1a\x2f\x23\x17\x2c\x21\x15\x2c\x21\x16\x2e\ +\x22\x16\x32\x25\x18\x36\x29\x1a\x48\x36\x23\x3c\x2d\x1c\x35\x28\ +\x1a\x34\x27\x19\x28\x1e\x13\x2a\x20\x13\x2a\x20\x14\x2c\x22\x16\ +\x2d\x21\x15\x2e\x23\x16\x2d\x22\x16\x30\x24\x17\x39\x2b\x1c\x34\ +\x27\x19\x35\x28\x1a\x3b\x2d\x1c\x43\x32\x1f\x36\x28\x1a\x35\x28\ +\x1a\x37\x29\x1a\x3b\x2c\x1d\x3a\x2b\x1c\x33\x26\x19\x31\x24\x17\ +\x2e\x22\x16\x2e\x22\x16\x27\x1d\x13\x1e\x17\x0e\x26\x1d\x12\x34\ +\x27\x19\x3e\x2e\x1f\x45\x34\x23\x53\x40\x2a\x54\x40\x2b\x32\x26\ +\x18\x4c\x44\x3d\x74\x75\x76\x82\x84\x87\x88\x8a\x8c\x8a\x8d\x90\ +\x95\x98\x9b\x93\x96\x9a\x9f\x9f\xa3\x9f\xa0\xa4\xa2\xa4\xa8\xa5\ +\xa7\xab\xa7\xa8\xac\xa8\xa9\xad\xa0\xa3\xa5\xad\xaf\xb0\xa8\xab\ +\xac\xa9\xab\xac\xa7\xa9\xaa\xaa\xac\xad\xac\xad\xae\xb0\xb0\xb2\ +\xb2\xb1\xb3\xb2\xb1\xb3\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xdf\xe5\ +\xe1\xdf\xe4\xdf\xde\xe3\xde\xdc\xdc\xd7\xd7\xd4\xd0\xcf\x74\x66\ +\x57\x08\x06\x03\x17\x12\x0b\x2f\x24\x16\x2b\x21\x15\x46\x35\x22\ +\x38\x2b\x1b\x2f\x23\x17\x32\x25\x18\x17\x11\x0b\x1a\x14\x0c\x22\ +\x19\x10\x21\x18\x10\x28\x1e\x13\x25\x1c\x12\x26\x1e\x13\x2a\x20\ +\x14\x25\x1b\x11\x28\x1d\x13\x29\x1e\x13\x2b\x21\x15\x30\x24\x17\ +\x2f\x24\x17\x33\x27\x19\x36\x29\x1a\x2c\x21\x15\x32\x26\x18\x33\ +\x26\x18\x2d\x22\x16\x26\x1d\x12\x2e\x22\x16\x2a\x1f\x14\x2d\x21\ +\x16\x36\x29\x1a\x2d\x22\x15\x23\x1a\x11\x27\x1d\x13\x22\x1a\x10\ +\x1f\x17\x0f\x1c\x15\x0d\x19\x13\x0b\x1f\x17\x0f\x1e\x16\x0e\x23\ +\x1b\x11\x26\x1c\x12\x2e\x22\x16\x2e\x22\x15\x40\x2f\x1e\x4a\x37\ +\x24\x3d\x2d\x1e\x2c\x21\x15\x24\x1b\x11\x2e\x22\x16\x36\x28\x1a\ +\x31\x25\x18\x3b\x2c\x1d\x38\x2a\x1a\x31\x25\x18\x2b\x20\x15\x2a\ +\x1f\x14\x2b\x20\x14\x26\x1c\x13\x28\x1d\x13\x27\x1c\x12\x27\x1d\ +\x12\x21\x19\x10\x14\x10\x0a\x1c\x16\x0e\x21\x19\x10\x2c\x21\x15\ +\x31\x25\x18\x2a\x1f\x14\x30\x24\x17\x3c\x2d\x1d\x38\x2a\x1b\x3f\ +\x2e\x1e\x33\x26\x18\x2a\x1f\x14\x2e\x23\x16\x27\x1d\x12\x1d\x16\ +\x0e\x1b\x14\x0d\x1a\x14\x0d\x21\x19\x10\x28\x1d\x13\x2b\x20\x14\ +\x2f\x23\x16\x38\x2a\x1b\x3a\x2c\x1c\x37\x29\x1a\x30\x24\x17\x30\ +\x24\x17\x2f\x23\x17\x2d\x21\x15\x30\x23\x16\x2d\x22\x16\x3b\x2c\ +\x1d\x36\x29\x1a\x4a\x37\x24\x3b\x2d\x1d\x31\x25\x18\x2f\x23\x17\ +\x2b\x20\x15\x35\x28\x1a\x35\x27\x19\x2d\x21\x15\x30\x24\x17\x2e\ +\x22\x15\x30\x24\x17\x37\x29\x1a\x37\x2a\x1a\x30\x24\x17\x37\x29\ +\x1a\x3a\x2b\x1c\x33\x27\x19\x37\x29\x1a\x3e\x2e\x1e\x37\x29\x1a\ +\x38\x2a\x1b\x38\x29\x1a\x41\x30\x1f\x35\x28\x19\x26\x1d\x13\x26\ +\x1c\x12\x22\x1a\x11\x1e\x16\x0f\x37\x2a\x1c\x6f\x55\x39\x78\x5c\ +\x3e\x4d\x3a\x26\x5f\x48\x30\x71\x57\x3a\x6a\x5a\x4a\x7a\x77\x74\ +\x84\x87\x8a\x8f\x91\x95\x8c\x8f\x92\x93\x96\x99\x96\x9a\x9d\x9c\ +\x9f\xa2\x9f\xa1\xa4\x9d\x9f\xa3\xa3\xa4\xa8\xa4\xa6\xaa\xa8\xa9\ +\xac\xa7\xa9\xab\xa6\xa8\xaa\xaa\xac\xad\xa4\xa7\xa8\xaf\xb1\xb2\ +\xaa\xab\xac\xaa\xac\xad\xab\xab\xad\xaf\xb0\xb2\xae\xad\xaf\xb1\ +\xb0\xb2\x00\x00\x00\xe6\xe1\xe0\xe6\xe1\xde\xe5\xe1\xe0\xe4\xe0\ +\xde\xe3\xde\xdd\xdd\xd8\xd8\xd4\xd0\xcf\x84\x7e\x78\x03\x02\x01\ +\x21\x18\x10\x4c\x3a\x27\x3d\x2d\x1d\x41\x30\x1f\x39\x2b\x1c\x32\ +\x25\x18\x29\x1f\x14\x1f\x18\x0f\x23\x1b\x11\x27\x1e\x13\x22\x1a\ +\x10\x26\x1c\x12\x2b\x20\x14\x2b\x20\x14\x28\x1e\x13\x29\x1f\x14\ +\x27\x1e\x13\x27\x1e\x13\x28\x1e\x13\x32\x26\x18\x39\x2c\x1c\x3c\ +\x2d\x1d\x37\x2a\x1b\x37\x2a\x1a\x2b\x20\x15\x2e\x22\x15\x29\x1f\ +\x14\x20\x19\x0f\x1f\x18\x0f\x25\x1c\x11\x22\x1a\x10\x2a\x1f\x14\ +\x29\x1f\x14\x25\x1c\x12\x29\x1e\x13\x23\x1a\x11\x24\x1b\x11\x23\ +\x1a\x11\x1b\x15\x0d\x19\x13\x0c\x1e\x16\x0e\x22\x1a\x10\x27\x1d\ +\x12\x28\x1d\x13\x32\x25\x18\x34\x27\x18\x41\x31\x1f\x32\x26\x18\ +\x28\x1e\x13\x28\x1e\x13\x2c\x21\x15\x31\x25\x17\x35\x27\x19\x3a\ +\x2c\x1d\x38\x29\x1b\x30\x24\x17\x28\x1d\x13\x2c\x21\x15\x2d\x22\ +\x15\x2a\x1f\x13\x25\x1b\x11\x20\x17\x0f\x23\x1b\x11\x23\x1b\x11\ +\x18\x13\x0b\x21\x19\x0f\x20\x18\x0f\x27\x1d\x12\x29\x1f\x13\x22\ +\x19\x10\x29\x1f\x14\x2e\x23\x16\x32\x25\x18\x37\x29\x1a\x38\x2a\ +\x1c\x2a\x20\x14\x28\x1e\x13\x32\x25\x18\x30\x24\x17\x27\x1d\x13\ +\x24\x1b\x11\x28\x1e\x13\x2c\x21\x15\x32\x26\x17\x38\x2a\x1b\x3d\ +\x2d\x1d\x42\x31\x1f\x3c\x2e\x1d\x2f\x24\x17\x30\x24\x17\x2f\x23\ +\x16\x3f\x2f\x1f\x29\x1f\x14\x3a\x2b\x1b\x3f\x2f\x1e\x3a\x2b\x1c\ +\x58\x43\x2b\x51\x3d\x28\x47\x35\x23\x3b\x2d\x1d\x33\x27\x19\x32\ +\x26\x18\x31\x25\x18\x2f\x23\x16\x33\x26\x18\x3b\x2b\x1c\x3e\x2e\ +\x1e\x40\x30\x1f\x45\x34\x21\x46\x35\x22\x40\x30\x20\x39\x2c\x1c\ +\x44\x33\x21\x3c\x2d\x1d\x30\x24\x17\x34\x27\x19\x2b\x20\x14\x2f\ +\x24\x17\x28\x1e\x13\x2e\x23\x18\x27\x1f\x15\x29\x21\x16\x33\x28\ +\x1b\x35\x29\x1b\x22\x19\x10\x24\x1c\x13\x32\x29\x1d\x4f\x3f\x2d\ +\x60\x4d\x38\x5e\x4e\x3e\x76\x6f\x68\x8c\x8d\x8f\x91\x93\x97\x91\ +\x94\x98\x91\x94\x98\xa1\xa4\xa5\x98\x9c\x9e\xa0\xa4\xa6\xa4\xa6\ +\xa7\xa2\xa4\xa7\xa2\xa3\xa7\xa2\xa3\xa7\xaa\xab\xae\xa8\xaa\xab\ +\xab\xad\xae\xa8\xaa\xab\xa5\xa6\xa7\xa9\xab\xac\xad\xae\xaf\xa9\ +\xab\xac\xac\xaa\xac\xb4\xb4\xb6\xac\xab\xad\xaf\xae\xb0\x00\x00\ +\x00\xe6\xe2\xe0\xe6\xe1\xe0\xe6\xe2\xe0\xe4\xe0\xdf\xe3\xde\xdd\ +\xdd\xd8\xd7\xd4\xd0\xcf\x8b\x80\x76\x05\x04\x02\x1e\x17\x0f\x74\ +\x58\x3c\x32\x26\x18\x40\x30\x1e\x36\x29\x1a\x38\x2a\x1b\x32\x25\ +\x18\x1b\x14\x0d\x1e\x17\x0f\x26\x1d\x12\x2e\x23\x16\x2c\x21\x15\ +\x2d\x22\x16\x2b\x21\x15\x26\x1d\x13\x24\x1a\x11\x23\x1a\x10\x20\ +\x18\x0f\x22\x19\x11\x27\x1e\x12\x2a\x20\x14\x25\x1b\x12\x25\x1c\ +\x11\x26\x1c\x13\x29\x20\x14\x33\x25\x18\x2d\x22\x16\x26\x1d\x12\ +\x2b\x20\x14\x2a\x20\x14\x30\x24\x17\x2e\x22\x16\x2d\x22\x15\x2c\ +\x21\x15\x29\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\x22\x1a\ +\x11\x1d\x16\x0e\x19\x13\x0b\x1f\x17\x0f\x28\x1e\x13\x1f\x18\x0f\ +\x2c\x21\x15\x33\x26\x18\x34\x26\x19\x24\x1b\x11\x1d\x16\x0e\x24\ +\x1b\x11\x2a\x20\x14\x2c\x21\x15\x35\x28\x1a\x37\x2a\x1b\x31\x24\ +\x17\x35\x28\x1a\x27\x1d\x12\x28\x1e\x13\x2d\x22\x15\x27\x1e\x12\ +\x26\x1c\x12\x25\x1b\x11\x27\x1d\x13\x27\x1d\x13\x23\x1a\x11\x24\ +\x1b\x11\x21\x19\x10\x29\x1f\x14\x20\x19\x10\x22\x19\x10\x2b\x20\ +\x15\x31\x24\x17\x38\x2a\x1b\x3c\x2d\x1d\x35\x27\x19\x2f\x23\x16\ +\x2e\x23\x16\x33\x26\x18\x34\x26\x19\x31\x25\x18\x2d\x22\x16\x28\ +\x1e\x14\x2c\x20\x15\x2e\x23\x16\x33\x26\x18\x36\x28\x1a\x37\x29\ +\x1a\x36\x27\x1a\x2a\x20\x14\x24\x1b\x11\x30\x23\x17\x37\x2a\x1a\ +\x36\x28\x1a\x3f\x30\x1f\x48\x35\x23\x42\x32\x20\x5c\x45\x2d\x53\ +\x3f\x29\x40\x30\x1f\x34\x28\x19\x35\x28\x19\x2d\x22\x15\x28\x1e\ +\x13\x27\x1d\x13\x22\x1a\x11\x2f\x23\x17\x35\x28\x1a\x2e\x22\x16\ +\x2e\x23\x17\x2a\x20\x14\x2a\x1f\x14\x31\x27\x1b\x2e\x25\x19\x29\ +\x1f\x14\x2d\x22\x19\x31\x26\x1b\x2a\x22\x19\x3a\x33\x2b\x43\x3e\ +\x36\x39\x36\x31\x37\x35\x33\x52\x52\x50\x3a\x39\x37\x05\x04\x02\ +\x0c\x0b\x09\x40\x43\x44\x79\x7c\x7d\x5e\x61\x62\x6c\x6f\x72\x7e\ +\x81\x85\x5d\x60\x63\x7b\x7c\x80\x97\x99\x9c\x97\x98\x9c\x98\x9b\ +\x9f\xa2\xa5\xa8\x9d\x9f\xa1\xa4\xa6\xa9\xa5\xa6\xa8\xa3\xa4\xa8\ +\xa5\xa6\xaa\xa7\xa8\xab\xaa\xab\xaf\xa9\xab\xad\xaa\xac\xad\xab\ +\xac\xad\xa6\xa6\xa7\xa5\xa7\xa8\xad\xae\xaf\xad\xae\xaf\xae\xad\ +\xaf\xb3\xb2\xb4\xaf\xae\xaf\xad\xac\xae\x00\x00\x00\xe7\xe2\xe1\ +\xe6\xe2\xe1\xe7\xe2\xe1\xe5\xe1\xe0\xe3\xde\xdd\xde\xda\xd9\xd7\ +\xd3\xd2\x9c\x94\x8e\x05\x05\x03\x1a\x13\x0c\x5f\x49\x31\x33\x26\ +\x19\x34\x27\x19\x41\x32\x20\x46\x35\x22\x3a\x2c\x1d\x1d\x17\x0e\ +\x1c\x15\x0d\x24\x1b\x11\x24\x1b\x12\x30\x24\x17\x37\x29\x1a\x34\ +\x27\x19\x2c\x21\x15\x2e\x22\x16\x2f\x23\x17\x27\x1e\x12\x29\x1e\ +\x14\x2b\x20\x15\x2a\x1f\x14\x23\x1a\x11\x1e\x17\x0f\x21\x19\x10\ +\x2f\x23\x16\x2e\x22\x16\x2a\x20\x14\x27\x1e\x13\x2d\x21\x16\x2c\ +\x21\x15\x2f\x23\x16\x30\x25\x17\x2e\x23\x16\x28\x1e\x13\x22\x1a\ +\x11\x21\x19\x10\x1f\x18\x0f\x20\x18\x0f\x1f\x17\x10\x20\x18\x0f\ +\x1d\x16\x0e\x21\x18\x10\x21\x19\x10\x22\x1a\x10\x2b\x21\x15\x21\ +\x1a\x10\x1a\x14\x0d\x16\x11\x0b\x21\x19\x10\x22\x1a\x11\x29\x1f\ +\x14\x29\x1f\x13\x2a\x20\x15\x2e\x23\x16\x33\x26\x18\x2e\x22\x16\ +\x2d\x21\x15\x32\x25\x18\x33\x26\x18\x32\x25\x17\x30\x25\x17\x31\ +\x25\x18\x36\x28\x1a\x34\x27\x19\x30\x24\x17\x2f\x23\x17\x24\x1a\ +\x12\x2c\x22\x15\x33\x26\x18\x33\x26\x18\x2c\x21\x15\x38\x2b\x1b\ +\x39\x2a\x1b\x3f\x2f\x1e\x36\x28\x1a\x2c\x21\x15\x33\x27\x18\x32\ +\x26\x18\x2f\x23\x17\x2d\x22\x15\x30\x23\x17\x2e\x22\x16\x2f\x24\ +\x17\x2d\x22\x15\x2e\x23\x16\x35\x27\x19\x35\x27\x19\x33\x27\x19\ +\x2f\x24\x16\x2f\x23\x16\x3a\x2b\x1c\x42\x31\x20\x3e\x2f\x1d\x39\ +\x2b\x1c\x32\x26\x18\x34\x27\x18\x3a\x2b\x1d\x2e\x24\x18\x2e\x25\ +\x1a\x2e\x25\x1b\x30\x27\x1d\x33\x2a\x1f\x33\x2b\x21\x34\x2b\x22\ +\x35\x2d\x23\x34\x2e\x26\x31\x2b\x24\x1d\x15\x0d\x36\x31\x2b\x28\ +\x25\x20\x3c\x3a\x37\x46\x48\x46\x37\x3a\x38\x0d\x0d\x0d\x10\x10\ +\x11\x35\x38\x3b\x4c\x4f\x53\x7b\x7e\x80\x83\x87\x88\x83\x87\x88\ +\x66\x6c\x6e\x55\x5a\x5a\x14\x14\x15\x00\x00\x00\x26\x28\x28\x7e\ +\x83\x85\x4c\x4f\x52\x56\x58\x5b\x91\x93\x95\x99\x9a\x9d\x88\x8a\ +\x8e\x67\x69\x6d\x7a\x7c\x80\x9e\xa0\xa4\xa0\xa2\xa6\x9f\xa3\xa6\ +\xa0\xa2\xa4\xa7\xa8\xaa\xa2\xa4\xa5\xa3\xa5\xa7\xa6\xa8\xaa\xa5\ +\xa6\xaa\xa5\xa7\xaa\xa7\xa9\xab\xad\xad\xaf\xac\xab\xad\xaf\xae\ +\xaf\xac\xab\xac\xab\xab\xad\xae\xae\xaf\xaf\xae\xaf\xac\xac\xad\ +\xb1\xb0\xb2\xaf\xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\ +\xe1\xe0\xe6\xe1\xe0\xe3\xde\xdd\xdf\xdb\xda\xd9\xd5\xd4\xaa\xa3\ +\x9e\x06\x05\x02\x13\x0e\x09\x51\x3e\x29\x34\x27\x19\x37\x2a\x1b\ +\x49\x37\x24\x37\x29\x1b\x3c\x2d\x1d\x2c\x21\x15\x2f\x23\x17\x3c\ +\x2c\x1d\x2e\x22\x16\x36\x28\x1a\x35\x27\x19\x41\x31\x1f\x3d\x2e\ +\x1e\x33\x26\x19\x40\x30\x1f\x2f\x24\x16\x23\x1a\x11\x2b\x20\x14\ +\x2a\x1f\x14\x26\x1d\x12\x25\x1b\x11\x25\x1c\x12\x25\x1c\x12\x2f\ +\x23\x17\x2b\x20\x14\x2a\x1f\x14\x2e\x23\x17\x34\x27\x19\x35\x28\ +\x1a\x33\x26\x18\x2a\x1f\x14\x28\x1e\x13\x26\x1d\x12\x23\x1a\x11\ +\x25\x1c\x12\x24\x1c\x11\x27\x1e\x13\x21\x18\x0f\x1f\x17\x0f\x22\ +\x1a\x10\x22\x1a\x10\x19\x12\x0c\x1f\x17\x0f\x21\x19\x10\x20\x18\ +\x0f\x1d\x16\x0e\x1f\x18\x0f\x2b\x21\x14\x34\x27\x19\x30\x24\x17\ +\x31\x25\x17\x37\x29\x1b\x38\x2a\x1b\x34\x27\x19\x39\x2b\x1b\x3a\ +\x2b\x1c\x36\x28\x1a\x38\x2a\x1b\x37\x29\x1b\x36\x29\x1a\x41\x31\ +\x1f\x3e\x2e\x1e\x38\x2a\x1b\x32\x26\x18\x33\x26\x18\x2e\x22\x16\ +\x4c\x3a\x25\x4f\x3b\x26\x32\x26\x18\x2e\x23\x17\x2f\x23\x17\x36\ +\x29\x1a\x37\x28\x1b\x2f\x24\x17\x38\x2a\x1b\x2f\x23\x16\x2b\x21\ +\x15\x2b\x20\x15\x28\x1f\x13\x28\x1e\x13\x25\x1c\x12\x26\x1d\x12\ +\x29\x1f\x14\x2c\x21\x17\x2b\x22\x17\x28\x20\x17\x30\x26\x1d\x38\ +\x2d\x21\x30\x28\x1f\x30\x29\x21\x35\x2e\x24\x33\x2d\x25\x35\x2e\ +\x29\x3d\x38\x32\x3f\x3d\x39\x42\x40\x3f\x48\x48\x48\x4d\x4e\x4f\ +\x53\x57\x59\x5b\x5e\x60\x63\x68\x6a\x6a\x71\x75\x6f\x75\x79\x72\ +\x78\x7a\x4e\x56\x59\x00\x00\x00\x16\x17\x19\x52\x55\x58\x7f\x83\ +\x85\x71\x76\x78\x33\x38\x3a\x0e\x10\x11\x01\x02\x02\x5a\x5c\x60\ +\x72\x76\x7b\x5a\x5e\x62\x87\x8a\x8d\x8a\x8e\x8f\x89\x8e\x8f\x51\ +\x55\x55\x00\x00\x00\x0a\x0b\x0b\x64\x66\x67\x9c\xa0\xa1\x5b\x5f\ +\x61\x3d\x3f\x43\x87\x88\x8b\x9c\x9d\x9e\x9f\xa0\xa2\x91\x93\x96\ +\x6d\x6f\x74\x6b\x6d\x70\xa6\xa8\xaa\xa3\xa5\xa7\xa4\xa4\xa6\xa7\ +\xa9\xab\xa3\xa5\xa6\x9e\x9f\xa2\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb2\ +\xb3\xa9\xab\xac\xad\xad\xaf\xab\xaa\xac\xb3\xb2\xb3\xab\xab\xac\ +\xad\xad\xb0\xb0\xaf\xb1\xaf\xae\xb0\xad\xac\xae\xb2\xb1\xb3\xaf\ +\xaf\xaf\x00\x00\x00\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\ +\xe0\xe4\xe0\xdf\xe0\xdb\xda\xd9\xd6\xd4\xb5\xad\xa6\x07\x05\x03\ +\x0a\x07\x04\x4e\x3c\x27\x3c\x2d\x1d\x35\x28\x19\x36\x29\x1a\x38\ +\x2a\x1b\x41\x30\x1f\x34\x28\x19\x37\x29\x1b\x3d\x2d\x1d\x28\x1e\ +\x13\x2e\x22\x16\x35\x28\x19\x38\x2a\x1a\x43\x32\x20\x3e\x2e\x1e\ +\x4c\x3a\x26\x38\x2a\x1b\x30\x25\x17\x2e\x22\x16\x2c\x22\x16\x2a\ +\x1e\x14\x29\x1f\x13\x31\x25\x17\x2b\x20\x15\x30\x24\x17\x33\x26\ +\x19\x32\x26\x18\x2d\x21\x16\x31\x24\x17\x38\x2a\x1b\x35\x28\x19\ +\x2a\x1f\x14\x2a\x1f\x14\x2c\x21\x15\x26\x1d\x12\x27\x1e\x13\x26\ +\x1d\x12\x22\x1a\x10\x21\x18\x0f\x26\x1c\x12\x25\x1b\x12\x29\x1e\ +\x14\x24\x1b\x11\x23\x1b\x11\x24\x1b\x11\x1f\x18\x0f\x25\x1c\x12\ +\x2d\x22\x16\x2b\x21\x15\x31\x25\x17\x32\x26\x18\x36\x29\x1a\x38\ +\x29\x1b\x36\x28\x1a\x3c\x2d\x1d\x3e\x2f\x1e\x3b\x2d\x1c\x37\x29\ +\x1a\x36\x29\x1a\x34\x26\x19\x34\x27\x19\x32\x26\x18\x3c\x2d\x1d\ +\x3a\x2c\x1c\x40\x31\x1f\x3a\x2c\x1c\x3a\x2b\x1c\x39\x2b\x1c\x4b\ +\x39\x25\x36\x28\x1a\x23\x1b\x11\x21\x19\x0f\x1e\x17\x0f\x29\x1f\ +\x14\x2d\x24\x19\x2e\x26\x1b\x27\x21\x19\x2c\x25\x1d\x2d\x27\x1e\ +\x2c\x26\x20\x35\x2e\x26\x2a\x24\x1d\x1c\x14\x0d\x21\x1a\x14\x33\ +\x2f\x2b\x48\x44\x41\x4a\x4a\x49\x4d\x4f\x50\x50\x54\x56\x58\x5d\ +\x5f\x5f\x65\x67\x67\x6e\x6f\x6c\x73\x77\x6c\x73\x79\x70\x77\x7d\ +\x70\x77\x7c\x72\x79\x7f\x72\x79\x80\x71\x78\x7f\x75\x7b\x81\x73\ +\x79\x7d\x75\x7a\x7f\x77\x7e\x82\x77\x7d\x81\x7d\x83\x87\x23\x2c\ +\x2f\x35\x3c\x3f\x07\x06\x06\x64\x67\x69\x8a\x8e\x92\x76\x7a\x7e\ +\x48\x4e\x50\x28\x2d\x2e\x00\x01\x01\x60\x61\x65\x8e\x91\x96\x7a\ +\x7f\x82\x56\x59\x5f\x8a\x8d\x8f\x98\x9a\x9b\x22\x23\x24\x00\x00\ +\x00\x0f\x0f\x0f\x80\x82\x84\x8c\x8e\x8f\x64\x67\x68\x84\x87\x8a\ +\x67\x69\x6e\x7d\x7d\x80\xa0\x9f\xa2\x9d\x9e\x9f\x9e\x9f\xa1\x78\ +\x7a\x7c\x64\x65\x66\xac\xad\xad\xa8\xa7\xa8\xab\xaa\xac\xa3\xa3\ +\xa5\x80\x80\x83\x46\x45\x47\x33\x32\x32\x63\x63\x63\xa5\xa5\xa5\ +\xb2\xb2\xb2\xae\xae\xaf\xb2\xb1\xb2\xac\xac\xac\xae\xae\xaf\xb1\ +\xb0\xb1\xaf\xaf\xaf\xb1\xb1\xb1\xb1\xb0\xb1\xae\xae\xae\x00\x00\ +\x00\xdf\xd8\xd5\xdf\xd9\xd6\xdf\xd9\xd6\xe1\xdb\xd9\xdf\xdb\xda\ +\xdc\xd7\xd6\xd6\xcf\xcc\xbf\xb4\xac\x08\x06\x03\x0c\x0a\x06\x58\ +\x44\x2e\x5d\x47\x30\x3f\x2f\x1f\x33\x26\x18\x32\x25\x18\x43\x32\ +\x20\x39\x2b\x1c\x3a\x2c\x1d\x3d\x2e\x1e\x22\x1a\x10\x28\x1e\x13\ +\x2a\x20\x14\x2b\x20\x15\x48\x36\x23\x3e\x2f\x1e\x3d\x2e\x1d\x3a\ +\x2c\x1c\x39\x2b\x1c\x34\x27\x19\x2f\x24\x17\x2e\x22\x16\x32\x25\ +\x18\x35\x28\x19\x36\x28\x1a\x30\x24\x17\x30\x24\x17\x34\x27\x19\ +\x2f\x24\x17\x32\x25\x18\x34\x27\x19\x36\x28\x1a\x2e\x22\x16\x33\ +\x26\x18\x38\x29\x1a\x34\x27\x19\x36\x28\x1a\x34\x27\x18\x2d\x22\ +\x15\x2f\x23\x17\x33\x26\x19\x34\x27\x1a\x36\x29\x1a\x2d\x22\x16\ +\x2c\x21\x15\x2f\x24\x16\x29\x1f\x13\x36\x29\x1a\x37\x29\x1a\x36\ +\x28\x1a\x3a\x2c\x1d\x3e\x2e\x1e\x3c\x2d\x1d\x33\x26\x19\x30\x24\ +\x17\x34\x27\x19\x2e\x23\x16\x2c\x22\x15\x2a\x20\x14\x2e\x22\x16\ +\x36\x28\x1a\x33\x26\x19\x2d\x21\x16\x36\x29\x1d\x37\x2c\x1f\x3a\ +\x2f\x22\x39\x2f\x23\x35\x2d\x24\x40\x36\x2c\x42\x39\x2e\x3c\x34\ +\x2d\x3c\x36\x2f\x3e\x39\x33\x3f\x3c\x38\x42\x41\x3f\x41\x41\x41\ +\x37\x3a\x3c\x3e\x41\x43\x53\x54\x56\x53\x57\x5a\x4e\x53\x56\x5e\ +\x64\x67\x41\x48\x4c\x01\x03\x04\x0f\x11\x14\x41\x48\x4f\x64\x6a\ +\x6e\x6f\x74\x78\x6f\x77\x7a\x71\x79\x7c\x6f\x78\x7b\x6d\x75\x79\ +\x70\x78\x7b\x73\x7b\x7f\x72\x7a\x7e\x71\x79\x7e\x74\x7c\x81\x76\ +\x7d\x84\x76\x7e\x84\x75\x7d\x82\x79\x7f\x84\x7c\x82\x87\x7e\x84\ +\x89\x7c\x84\x88\x7b\x82\x86\x79\x80\x84\x3f\x49\x50\x57\x5f\x61\ +\x05\x07\x08\x6b\x6f\x73\x8e\x92\x96\x86\x8a\x8e\x85\x8a\x8d\x42\ +\x47\x49\x0e\x11\x14\x72\x75\x77\x8f\x93\x95\x8f\x93\x95\x8b\x90\ +\x93\x56\x5a\x5d\x72\x73\x75\x00\x00\x00\x04\x04\x05\x40\x42\x44\ +\x6a\x6e\x71\x5d\x5f\x61\x64\x67\x69\xa5\xa8\xaa\xa1\xa2\xa5\x6c\ +\x6d\x72\x77\x78\x7c\x9f\x9f\xa0\xa0\xa2\xa3\x9e\xa0\xa1\x8b\x8d\ +\x8e\x58\x58\x59\xa8\xa7\xa8\xab\xaa\xac\xa5\xa4\xa7\x94\x94\x96\ +\x32\x32\x33\x00\x00\x00\x15\x15\x16\x3a\x3b\x3c\x8e\x8c\x8c\xb3\ +\xb1\xb2\xac\xab\xad\xaf\xae\xb0\xae\xaf\xaf\xb0\xb0\xb0\xad\xad\ +\xad\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb1\x00\x00\x00\xdd\xd7\xd2\ +\xdd\xd4\xd0\xdd\xd5\xd1\xdc\xd5\xd2\xda\xd3\xd1\xd7\xd1\xcf\xd1\ +\xcb\xc8\xc8\xbf\xbe\x0a\x08\x04\x07\x06\x04\x78\x5c\x3f\x94\x72\ +\x4f\x50\x3c\x28\x38\x29\x1a\x37\x2a\x1b\x40\x30\x1f\x36\x29\x1a\ +\x2a\x20\x15\x30\x24\x17\x25\x1c\x12\x24\x1b\x11\x27\x1d\x13\x29\ +\x1e\x14\x2c\x21\x15\x34\x26\x19\x3e\x2f\x1e\x46\x35\x22\x37\x29\ +\x1a\x38\x2a\x1b\x40\x30\x1f\x34\x27\x19\x41\x30\x20\x40\x30\x1f\ +\x3d\x2e\x1d\x34\x27\x19\x32\x25\x18\x35\x28\x19\x2f\x24\x17\x37\ +\x29\x1b\x37\x2a\x1a\x37\x29\x1b\x46\x34\x22\x4d\x39\x25\x52\x3d\ +\x27\x4d\x3a\x26\x45\x33\x21\x47\x35\x22\x43\x32\x21\x42\x32\x20\ +\x41\x31\x20\x3d\x2e\x1e\x3d\x2e\x1d\x38\x2a\x1b\x2f\x23\x16\x2c\ +\x22\x16\x29\x1f\x14\x2d\x22\x16\x26\x1d\x12\x29\x1f\x14\x2d\x21\ +\x16\x2d\x22\x15\x2c\x22\x18\x25\x1f\x16\x2a\x24\x1c\x31\x29\x22\ +\x33\x2d\x25\x35\x2f\x28\x3a\x35\x2f\x43\x3c\x35\x49\x43\x3a\x4c\ +\x45\x3f\x4d\x48\x44\x4c\x49\x47\x4e\x4d\x4c\x51\x53\x53\x56\x58\ +\x59\x5c\x5d\x5f\x62\x64\x67\x67\x6b\x6f\x6d\x72\x77\x70\x75\x7a\ +\x70\x74\x79\x72\x76\x7a\x6f\x76\x79\x5f\x66\x6c\x5b\x64\x6a\x59\ +\x61\x67\x60\x66\x6c\x6e\x72\x76\x56\x5b\x61\x58\x5d\x62\x5f\x65\ +\x6a\x2a\x32\x36\x28\x30\x35\x4c\x55\x5c\x61\x69\x6e\x71\x78\x7b\ +\x72\x79\x7d\x74\x7c\x80\x77\x80\x84\x73\x7c\x80\x77\x7f\x83\x76\ +\x7e\x83\x76\x7e\x82\x76\x7e\x83\x7a\x81\x88\x7b\x84\x8a\x79\x82\ +\x89\x7a\x81\x87\x7b\x80\x85\x80\x85\x8b\x80\x87\x8b\x7f\x85\x8a\ +\x7e\x84\x89\x80\x86\x8b\x7b\x80\x85\x30\x3b\x3f\x69\x71\x76\x85\ +\x89\x8d\x8c\x90\x94\x90\x94\x98\x83\x88\x8b\x58\x5e\x61\x65\x6a\ +\x6e\x5d\x63\x67\x84\x87\x8a\x94\x97\x9b\x96\x9a\x9d\x89\x8f\x93\ +\x1a\x1c\x1e\x00\x00\x00\x0d\x0f\x0f\x8f\x94\x97\x83\x87\x88\x40\ +\x43\x45\x70\x72\x74\x5d\x5d\x5f\x55\x55\x58\x9a\x9a\x9e\x71\x72\ +\x76\x75\x76\x79\xa2\xa2\xa3\xa4\xa5\xa6\x9d\x9f\xa0\x97\x99\x9b\ +\x61\x61\x63\x90\x8f\x90\xae\xb0\xb0\xa2\xa3\xa5\x4d\x4d\x4e\x00\ +\x00\x00\x42\x45\x46\x9c\xa0\xa1\x72\x72\x73\x8f\x8d\x8e\xab\xa9\ +\xab\xb2\xb1\xb2\xae\xae\xae\xb1\xb1\xb1\xae\xae\xae\xb0\xaf\xb0\ +\xb1\xb1\xb1\xb3\xb3\xb3\x00\x00\x00\xe4\xde\xdb\xe4\xdd\xd9\xe2\ +\xdb\xd8\xe2\xda\xd8\xdf\xd9\xd5\xdd\xd6\xd2\xd8\xd2\xce\xcd\xc0\ +\xb4\x10\x0d\x08\x07\x05\x03\x62\x4b\x33\x8c\x6c\x4a\x5a\x44\x2e\ +\x32\x26\x17\x34\x27\x19\x40\x30\x1f\x34\x27\x19\x2c\x21\x16\x3c\ +\x2e\x1e\x29\x1f\x13\x23\x1a\x10\x1f\x17\x0f\x24\x1b\x11\x2a\x1f\ +\x14\x32\x25\x18\x38\x2a\x1b\x3b\x2d\x1c\x40\x30\x1e\x3d\x2e\x1e\ +\x45\x34\x21\x40\x30\x1f\x45\x34\x21\x43\x32\x21\x44\x33\x21\x44\ +\x33\x21\x45\x34\x22\x42\x32\x20\x3e\x2e\x1e\x38\x2a\x1b\x3e\x2e\ +\x1e\x49\x38\x24\x4f\x3c\x27\x47\x35\x22\x45\x34\x22\x41\x32\x20\ +\x37\x29\x1a\x3a\x2b\x1c\x37\x2a\x1b\x3c\x2e\x1e\x33\x27\x19\x2c\ +\x22\x16\x2a\x21\x16\x34\x2a\x1e\x35\x2c\x22\x32\x2c\x25\x3a\x34\ +\x2d\x42\x3c\x35\x46\x41\x3b\x4c\x46\x41\x54\x4e\x49\x56\x52\x4e\ +\x58\x56\x53\x5f\x5c\x5b\x64\x62\x61\x69\x68\x67\x6e\x6e\x6d\x72\ +\x72\x72\x77\x78\x7a\x7c\x7f\x81\x7f\x81\x85\x7e\x81\x85\x7c\x7f\ +\x82\x7b\x7e\x81\x79\x7d\x81\x7b\x7e\x83\x7a\x7e\x83\x78\x7b\x81\ +\x78\x7c\x81\x78\x7c\x81\x76\x7c\x81\x76\x7c\x80\x74\x79\x7d\x74\ +\x7a\x7d\x6e\x73\x78\x58\x61\x68\x66\x6c\x70\x6c\x71\x76\x47\x4f\ +\x57\x1c\x24\x2a\x09\x12\x17\x19\x21\x27\x56\x5c\x61\x6d\x71\x75\ +\x67\x6e\x72\x56\x60\x64\x60\x69\x6d\x73\x7b\x7f\x78\x80\x84\x78\ +\x80\x84\x77\x80\x84\x75\x7e\x82\x79\x82\x86\x77\x80\x84\x78\x80\ +\x84\x79\x81\x86\x7c\x83\x89\x7c\x85\x8b\x7d\x85\x8d\x7f\x87\x8e\ +\x7e\x85\x8c\x7f\x85\x8b\x7e\x85\x8a\x80\x88\x8d\x80\x87\x8c\x82\ +\x88\x8d\x83\x89\x8d\x4c\x55\x5a\x8a\x8e\x93\x8b\x8f\x93\x8b\x8f\ +\x94\x8f\x93\x98\x8d\x91\x96\x8b\x8f\x93\x8c\x90\x94\x86\x8b\x8e\ +\x57\x5e\x62\x7e\x81\x86\x95\x9a\x9d\x89\x8d\x90\x03\x03\x03\x01\ +\x01\x01\x34\x36\x37\xa7\xac\xae\x84\x88\x89\x4b\x4f\x52\x6f\x73\ +\x76\x54\x57\x5a\x76\x79\x7e\x9c\x9f\xa3\xac\xad\xb1\x80\x81\x86\ +\x6a\x6b\x70\x9d\x9f\xa0\x9f\xa1\xa2\xa4\xa8\xab\xa3\xa6\xa7\x6b\ +\x6d\x6f\x7b\x7b\x7c\x92\x91\x93\x61\x61\x62\x45\x47\x47\x84\x89\ +\x88\x6a\x6f\x6f\x7e\x80\x80\x36\x36\x36\x99\x98\x98\xaf\xaf\xb0\ +\xb4\xb3\xb5\xb1\xb0\xb2\xac\xab\xac\xb3\xb2\xb3\xb0\xb0\xb1\xb3\ +\xb2\xb3\x00\x00\x00\xe1\xd7\xd2\xe1\xd8\xd3\xe0\xd8\xd4\xe1\xd9\ +\xd6\xe1\xd9\xd5\xe0\xd8\xd4\xdd\xd5\xd1\xd2\xc5\xb9\x1f\x19\x12\ +\x1c\x14\x0d\x72\x57\x3c\x72\x57\x3b\x67\x4f\x35\x40\x31\x20\x27\ +\x1d\x13\x3e\x2e\x1e\x2d\x21\x16\x28\x1e\x14\x4b\x39\x26\x37\x29\ +\x1a\x33\x26\x19\x2d\x22\x16\x2c\x21\x15\x36\x28\x1a\x3b\x2d\x1d\ +\x3a\x2c\x1c\x46\x35\x23\x46\x35\x22\x40\x30\x1f\x40\x30\x1f\x3f\ +\x2f\x1f\x36\x29\x1a\x34\x28\x19\x37\x29\x1a\x38\x2a\x1b\x3a\x2c\ +\x1c\x33\x26\x18\x2f\x23\x17\x27\x1d\x12\x31\x25\x1b\x44\x37\x29\ +\x45\x3a\x2d\x40\x38\x2f\x45\x3d\x35\x4a\x41\x3a\x4b\x44\x3d\x48\ +\x42\x3c\x3d\x3a\x36\x30\x2f\x2b\x18\x1a\x1b\x15\x16\x19\x2d\x2c\ +\x2d\x4c\x48\x47\x61\x5d\x5c\x6f\x6b\x6b\x7b\x79\x79\x84\x83\x83\ +\x8e\x8d\x8e\x92\x91\x93\x94\x93\x94\x93\x92\x94\x91\x90\x92\x92\ +\x91\x93\x90\x91\x92\x8e\x8f\x91\x8b\x8d\x8e\x87\x88\x89\x87\x8a\ +\x8c\x87\x8a\x8d\x83\x87\x8a\x81\x84\x87\x81\x84\x88\x7f\x85\x87\ +\x81\x85\x88\x7f\x82\x87\x7e\x82\x87\x7d\x81\x85\x7a\x7f\x84\x7a\ +\x7f\x84\x79\x7f\x85\x79\x7f\x85\x76\x7d\x81\x77\x7d\x80\x69\x70\ +\x74\x4f\x59\x60\x63\x69\x6e\x71\x75\x7a\x27\x2f\x36\x06\x09\x0d\ +\x37\x40\x47\x39\x42\x49\x3a\x41\x4a\x67\x6c\x72\x6e\x73\x76\x4b\ +\x56\x5c\x61\x6a\x71\x76\x7f\x83\x7c\x84\x88\x7b\x83\x87\x78\x80\ +\x85\x7b\x83\x87\x7d\x86\x8a\x7b\x84\x88\x78\x81\x85\x7d\x86\x8a\ +\x7f\x88\x8d\x7c\x85\x8b\x7d\x85\x8c\x7f\x87\x8d\x7e\x85\x8c\x7f\ +\x85\x8b\x7f\x84\x89\x82\x88\x8d\x84\x8a\x8f\x82\x88\x8d\x85\x8b\ +\x90\x87\x8d\x91\x8c\x91\x94\x8d\x91\x94\x8b\x8e\x92\x8a\x8f\x93\ +\x8e\x92\x96\x90\x95\x98\x91\x96\x99\x8e\x93\x96\x87\x8e\x91\x5b\ +\x62\x65\x89\x8f\x91\x4a\x4c\x4f\x00\x00\x00\x02\x03\x03\x43\x49\ +\x4a\x81\x85\x87\x74\x78\x7a\x78\x7c\x7e\x9c\xa0\xa1\x69\x6e\x71\ +\x78\x7c\x80\xa7\xa9\xad\xa2\xa3\xa6\xa7\xa9\xab\x90\x92\x96\x58\ +\x5a\x5f\x9d\x9e\xa0\xa9\xab\xad\xa0\xa4\xa5\xa5\xa8\xa9\x65\x66\ +\x67\x00\x00\x00\x00\x00\x00\x0c\x0c\x0c\x6b\x6d\x6c\xb7\xb9\xb7\ +\x49\x49\x4a\x00\x00\x00\x59\x59\x59\xa8\xa7\xa9\xb3\xb3\xb4\xab\ +\xaa\xab\xb3\xb2\xb3\xb0\xaf\xb0\xad\xac\xae\xb2\xb2\xb2\x00\x00\ +\x00\xd9\xcf\xca\xd8\xcf\xc7\xd9\xce\xc7\xd9\xcd\xc9\xd9\xce\xc9\ +\xda\xce\xcb\xda\xd0\xcd\xd7\xce\xca\x42\x34\x27\x30\x25\x18\x7d\ +\x5e\x40\x65\x4d\x34\x51\x3d\x29\x5d\x46\x2f\x3d\x2e\x1f\x38\x2a\ +\x1b\x2d\x23\x16\x33\x27\x19\x50\x3d\x28\x5d\x47\x2f\x5f\x48\x30\ +\x48\x36\x23\x41\x31\x20\x47\x36\x24\x41\x31\x1f\x3a\x2c\x1c\x3d\ +\x2e\x1e\x36\x29\x1a\x34\x29\x1d\x3a\x30\x25\x41\x37\x2c\x48\x3f\ +\x36\x51\x48\x40\x58\x50\x49\x62\x5a\x52\x6b\x63\x5d\x72\x6c\x65\ +\x79\x73\x6e\x7f\x7a\x75\x85\x80\x7c\x8a\x85\x81\x90\x8a\x87\x94\ +\x8f\x8d\x95\x8f\x8d\x94\x8f\x8d\x8b\x88\x86\x7b\x7b\x7a\x5e\x63\ +\x65\x30\x39\x41\x13\x1c\x25\x20\x26\x2d\x4d\x4c\x4f\x72\x6f\x71\ +\x82\x7f\x81\x8d\x8b\x8d\x92\x91\x93\x97\x97\x98\x98\x97\x9a\x9c\ +\x9b\x9e\x9b\x9a\x9d\x99\x98\x9b\x98\x97\x9c\x96\x97\x9b\x94\x96\ +\x98\x91\x93\x94\x8c\x8e\x8f\x8c\x8e\x8f\x8c\x8e\x8f\x8b\x8d\x8f\ +\x88\x8a\x8e\x85\x88\x8c\x83\x86\x8a\x83\x86\x8a\x81\x86\x89\x82\ +\x86\x89\x81\x86\x8a\x80\x85\x8a\x7c\x82\x87\x7d\x82\x87\x7b\x80\ +\x85\x7a\x7f\x84\x7d\x82\x87\x77\x7e\x82\x64\x6d\x71\x5e\x68\x6c\ +\x61\x6a\x6e\x5a\x62\x66\x11\x18\x1e\x16\x1a\x1d\x4c\x50\x54\x54\ +\x5a\x5f\x46\x4f\x58\x4b\x54\x5d\x4f\x58\x5f\x56\x5f\x65\x73\x79\ +\x80\x78\x81\x87\x7a\x82\x88\x7a\x82\x88\x7a\x82\x89\x7a\x83\x88\ +\x7a\x82\x87\x7d\x85\x8c\x7b\x82\x89\x7e\x85\x8c\x80\x87\x8e\x80\ +\x87\x8e\x7d\x84\x89\x7d\x84\x88\x80\x88\x8c\x80\x87\x8b\x81\x87\ +\x8c\x83\x89\x8e\x81\x87\x8c\x86\x8c\x90\x85\x8b\x8f\x8a\x8f\x93\ +\x8e\x91\x96\x8e\x92\x96\x90\x95\x99\x8f\x94\x97\x8f\x94\x97\x91\ +\x96\x99\x91\x96\x99\x8f\x94\x97\x8d\x92\x95\x8a\x8e\x92\x55\x59\ +\x5f\x0d\x0f\x0f\x00\x00\x00\x1f\x20\x21\xa2\xa7\xa8\x56\x5a\x5d\ +\x3b\x3e\x40\x99\x9d\x9f\x75\x78\x7b\x8f\x92\x96\x6f\x73\x79\x73\ +\x76\x7a\x9b\x9c\x9e\xa3\xa4\xa5\xaa\xac\xae\x9a\x9c\x9f\x58\x5b\ +\x5e\x98\x9a\x9b\xa9\xab\xac\xab\xaf\xae\x8a\x8c\x8d\x00\x00\x00\ +\x12\x13\x13\x5c\x5f\x5f\x57\x5b\x5a\x21\x22\x21\x0a\x0a\x0a\x00\ +\x00\x00\x26\x26\x28\xa6\xa7\xa7\xb1\xb2\xb3\xad\xad\xaf\xab\xaa\ +\xad\xad\xac\xae\xaa\xa9\xaa\xb0\xb0\xb0\x00\x00\x00\xb4\x9f\x93\ +\xba\xa5\x97\xc1\xa9\x9f\xc6\xae\xa6\xc8\xb1\xa7\xcc\xb7\xae\xce\ +\xbb\xb5\xcc\xbd\xb6\x7d\x67\x51\x35\x28\x1a\x3f\x2f\x1f\x4b\x38\ +\x25\x45\x33\x22\x58\x43\x2c\x5c\x45\x2e\x4d\x3b\x26\x3c\x2d\x1d\ +\x4f\x3d\x29\x57\x44\x30\x54\x42\x30\x61\x4f\x3f\x63\x57\x4a\x6b\ +\x60\x55\x75\x6a\x60\x78\x6f\x67\x7f\x77\x70\x88\x81\x7a\x8c\x86\ +\x81\x91\x8b\x86\x93\x8d\x87\x9b\x95\x90\xa7\xa0\x9b\xb2\xac\xa8\ +\xbb\xb5\xb2\xc2\xbb\xb7\xca\xc2\xc0\xce\xc7\xc5\xcd\xc7\xc3\xcc\ +\xc6\xc2\xc9\xc4\xc0\xc6\xc2\xc0\xc3\xbe\xbd\xbc\xb8\xb7\xb3\xae\ +\xad\xa8\xa4\xa3\x97\x95\x94\x7b\x7c\x7b\x52\x59\x5d\x25\x30\x39\ +\x16\x1f\x28\x33\x36\x3c\x61\x5e\x5f\x7e\x7b\x7d\x8d\x8a\x8c\x93\ +\x90\x92\x99\x97\x99\x9e\x9d\x9f\xa0\x9f\xa1\x9f\x9f\xa1\x9e\x9d\ +\x9f\x9c\x9b\x9d\x9d\x9c\xa0\x9d\x9c\xa0\x99\x99\x9b\x93\x95\x96\ +\x91\x92\x93\x8e\x8f\x91\x8e\x8f\x91\x8e\x90\x93\x8c\x8e\x92\x8a\ +\x8d\x91\x86\x89\x8d\x83\x88\x8b\x85\x89\x8e\x84\x88\x8c\x82\x87\ +\x8a\x82\x87\x8c\x80\x85\x8a\x7d\x82\x87\x7c\x81\x86\x7b\x81\x86\ +\x7b\x81\x86\x70\x78\x7c\x5e\x69\x6d\x6c\x75\x78\x6b\x75\x78\x40\ +\x48\x4f\x07\x0b\x0f\x21\x29\x2f\x28\x2f\x35\x4a\x51\x58\x63\x6a\ +\x72\x32\x3b\x47\x2c\x37\x41\x66\x6c\x72\x79\x80\x84\x7a\x81\x88\ +\x7a\x82\x87\x7a\x81\x87\x7c\x83\x8a\x7d\x87\x8b\x7c\x85\x89\x7c\ +\x85\x8b\x7c\x84\x8b\x7e\x86\x8b\x7e\x87\x8b\x7f\x87\x8d\x7f\x87\ +\x8d\x82\x89\x8e\x84\x8a\x8f\x84\x8a\x8f\x85\x8b\x90\x83\x89\x8e\ +\x84\x8a\x8f\x87\x8c\x91\x85\x8b\x90\x8c\x90\x95\x8a\x8e\x93\x8c\ +\x90\x95\x8f\x93\x97\x8f\x94\x97\x8d\x92\x95\x8f\x94\x97\x91\x96\ +\x99\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x95\x9a\x9e\x40\x46\x48\ +\x06\x07\x07\x63\x68\x6b\x9f\xa3\xa4\x7b\x7f\x82\x3d\x42\x45\x6c\ +\x70\x73\x4b\x4d\x51\x67\x69\x6e\xaa\xae\xb2\x74\x77\x7b\x79\x7c\ +\x80\x98\x9a\x9c\xa6\xa7\xaa\xa4\xa6\xa9\xa9\xac\xac\x61\x63\x66\ +\x8e\x8f\x91\x9e\xa0\xa0\x90\x93\x93\x2b\x2c\x2c\x33\x36\x36\x78\ +\x7e\x7d\xa3\xa7\xa5\x47\x49\x48\x34\x35\x37\x49\x4c\x4e\x68\x6c\ +\x6f\x72\x75\x79\xad\xae\xb0\xac\xab\xad\xb0\xaf\xb1\xb2\xb1\xb3\ +\xaf\xae\xaf\xb1\xb0\xb1\x00\x00\x00\x54\x56\x58\x5b\x59\x58\x62\ +\x5a\x59\x69\x5e\x5b\x73\x66\x5f\x7c\x71\x69\x81\x79\x73\x83\x79\ +\x72\x86\x75\x66\x5d\x4e\x40\x50\x44\x39\x58\x4b\x40\x5d\x50\x46\ +\x66\x58\x4d\x6b\x5e\x51\x6a\x5f\x55\x5f\x59\x51\x54\x50\x46\x58\ +\x4f\x45\x74\x64\x5a\x9f\x8f\x87\xb2\xab\xa6\xba\xb5\xb0\xc0\xba\ +\xb5\xc8\xc2\xbf\xcc\xc7\xc5\xcd\xc8\xc6\xcf\xc9\xc6\xcf\xc7\xc5\ +\xca\xc4\xc0\xcc\xc4\xc1\xd3\xcd\xc9\xd7\xd1\xce\xd7\xd1\xce\xd8\ +\xd1\xce\xd7\xd2\xcf\xd5\xd1\xce\xd5\xcf\xcc\xd3\xcd\xca\xd1\xc9\ +\xc7\xcc\xc6\xc4\xc7\xc2\xbf\xc0\xbc\xbb\xb6\xb1\xb0\xa6\xa3\xa0\ +\x93\x92\x8e\x72\x75\x74\x42\x49\x4f\x19\x24\x2c\x1b\x25\x2e\x48\ +\x47\x4d\x72\x6e\x70\x88\x85\x87\x93\x91\x93\x9b\x99\x9b\x9d\x9c\ +\x9e\xa1\xa0\xa2\xa1\xa0\xa2\xa2\xa1\xa3\xa1\xa0\xa4\xa0\x9f\xa3\ +\x9e\x9e\xa2\x9d\x9d\xa0\x99\x99\x9b\x95\x96\x98\x91\x93\x94\x91\ +\x93\x95\x91\x92\x96\x90\x92\x96\x8b\x8e\x92\x8a\x8d\x91\x87\x8a\ +\x8f\x86\x8a\x8f\x85\x89\x8e\x83\x88\x8c\x83\x89\x8d\x81\x87\x8c\ +\x80\x84\x89\x7d\x81\x85\x7c\x80\x83\x7b\x7f\x83\x7c\x81\x84\x68\ +\x70\x73\x55\x60\x64\x6b\x73\x76\x75\x7c\x7f\x45\x4f\x53\x03\x06\ +\x09\x23\x2b\x32\x22\x2a\x30\x52\x59\x61\x6c\x73\x7a\x35\x3f\x48\ +\x1e\x28\x31\x60\x66\x6c\x7b\x81\x85\x79\x81\x87\x7c\x85\x8c\x7b\ +\x84\x8a\x7c\x84\x8b\x7e\x86\x8d\x7d\x85\x8b\x7e\x87\x8e\x7e\x87\ +\x8d\x7e\x86\x8c\x7d\x86\x8c\x7f\x87\x8d\x82\x8b\x8f\x82\x8b\x8f\ +\x82\x8a\x8e\x83\x89\x8d\x83\x8a\x8e\x82\x88\x8d\x87\x8c\x91\x86\ +\x8a\x8f\x89\x8d\x92\x8e\x92\x97\x8a\x8e\x92\x8c\x90\x94\x8e\x92\ +\x96\x8f\x92\x97\x90\x95\x99\x93\x97\x9b\x92\x96\x99\x91\x96\x99\ +\x91\x96\x99\x94\x99\x9b\x93\x97\x9b\x97\x9d\xa1\x4e\x55\x58\x70\ +\x76\x7a\x8d\x90\x90\x4f\x53\x55\x97\x9a\x9d\x70\x75\x79\x76\x7c\ +\x80\x9b\x9e\xa2\x9e\xa0\xa4\xab\xad\xb1\x7e\x83\x86\x6d\x70\x72\ +\x91\x93\x94\xa7\xa9\xa9\xaa\xac\xad\xa7\xaa\xab\x6f\x71\x72\x3e\ +\x3d\x3d\x28\x27\x27\x31\x31\x31\x47\x49\x49\x9d\xa0\xa0\x74\x76\ +\x73\x29\x29\x26\x30\x31\x32\xa3\xa7\xaa\xb5\xba\xbb\xae\xb1\xb3\ +\xb0\xb0\xb2\xb4\xb3\xb5\xaf\xae\xb0\xb5\xb4\xb6\xb5\xb5\xb7\xb3\ +\xb1\xb4\x00\x00\x00\x83\x8b\x8b\x78\x80\x7f\x69\x75\x75\x64\x6f\ +\x70\x65\x6e\x6e\x67\x70\x6f\x66\x6f\x6e\x62\x6b\x6a\x63\x69\x68\ +\x63\x69\x65\x63\x67\x65\x65\x69\x68\x69\x6c\x6c\x69\x6e\x6e\x6c\ +\x71\x6f\x71\x78\x75\x75\x7d\x7a\x7d\x82\x7f\x8e\x8b\x88\xae\xa0\ +\x96\xca\xbc\xb4\xd2\xcb\xc8\xd4\xcd\xcb\xd4\xce\xca\xd5\xd0\xcd\ +\xd7\xd2\xcf\xd7\xd3\xd0\xd7\xd2\xce\xd5\xcc\xc8\xd3\xcc\xc7\xd7\ +\xd0\xcb\xde\xd7\xd3\xdf\xd8\xd5\xdd\xd8\xd5\xdd\xd8\xd5\xdc\xd7\ +\xd5\xdc\xd7\xd4\xdb\xd5\xd2\xd8\xd1\xce\xd6\xce\xce\xd0\xca\xc7\ +\xcb\xc4\xc3\xc3\xbe\xbd\xb6\xb1\xb0\xa5\xa2\xa0\x8a\x89\x88\x67\ +\x6a\x6b\x33\x3a\x40\x13\x1c\x24\x28\x2e\x36\x5c\x5a\x5e\x7e\x7a\ +\x7c\x8f\x8d\x8f\x9a\x97\x99\xa1\x9d\x9f\xa0\x9f\xa1\xa4\xa3\xa5\ +\xa4\xa3\xa5\xa3\xa2\xa5\xa3\xa2\xa6\xa0\xa0\xa4\x9e\x9f\xa2\x9b\ +\x9b\x9f\x98\x99\x9c\x94\x97\x97\x93\x95\x96\x91\x93\x95\x90\x92\ +\x96\x8f\x92\x96\x8c\x8f\x93\x88\x8c\x90\x87\x8a\x8f\x85\x89\x8e\ +\x84\x88\x8d\x83\x87\x8c\x82\x87\x8c\x81\x87\x8c\x80\x85\x8a\x7c\ +\x81\x85\x7c\x81\x85\x7d\x82\x86\x77\x7e\x81\x66\x6f\x72\x5d\x68\ +\x6c\x62\x6c\x70\x73\x79\x7d\x5c\x63\x68\x07\x0c\x11\x1a\x20\x25\ +\x28\x2f\x35\x4d\x55\x5c\x46\x50\x5a\x47\x53\x5c\x2b\x39\x41\x3e\ +\x49\x52\x71\x77\x7e\x7d\x84\x8a\x7b\x83\x89\x7e\x86\x8d\x7d\x85\ +\x8c\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\x7f\x87\x8e\x7e\x86\x8d\ +\x7d\x85\x8b\x7d\x86\x8c\x81\x89\x8e\x81\x88\x8d\x82\x89\x8e\x82\ +\x88\x8d\x84\x89\x8e\x88\x8e\x93\x89\x8d\x92\x86\x8b\x90\x89\x8d\ +\x92\x89\x8d\x92\x8d\x91\x96\x8c\x91\x95\x8c\x91\x95\x8f\x93\x97\ +\x95\x99\x9d\x94\x99\x9c\x8e\x93\x96\x90\x94\x98\x94\x99\x9c\x96\ +\x9a\x9d\x94\x97\x9b\x91\x94\x98\x9b\x9f\xa3\x69\x6d\x70\x66\x69\ +\x6b\x57\x5b\x5d\xa6\xaa\xab\x9d\xa0\xa4\x7a\x7f\x82\x6f\x73\x76\ +\x94\x95\x99\xa3\xa5\xa8\xab\xaf\xb0\x8f\x93\x95\x63\x66\x68\x8f\ +\x91\x92\xa8\xa9\xa9\xa9\xaa\xa9\xab\xad\xad\x24\x24\x25\x00\x00\ +\x00\x09\x0a\x0a\x38\x3a\x3b\x57\x58\x59\x48\x48\x46\x08\x08\x07\ +\x00\x00\x00\x7f\x80\x81\xb1\xb3\xb4\xad\xad\xae\xb4\xb3\xb5\xae\ +\xad\xaf\xb2\xb1\xb3\xb3\xb3\xb4\xb6\xb6\xb7\xb2\xb0\xb3\x00\x00\ +\x00\xdf\xd6\xd0\xdc\xd3\xcc\xd5\xcf\xc8\xd1\xcd\xc7\xd0\xcb\xc6\ +\xce\xc9\xc2\xca\xc7\xc2\xc6\xc3\xbf\xc4\xc1\xbc\xc3\xc0\xba\xc3\ +\xbf\xbb\xc3\xc0\xba\xc3\xbe\xb9\xc2\xbd\xb8\xc5\xc0\xbc\xc8\xc3\ +\xbd\xca\xc5\xc0\xcd\xc7\xc3\xd3\xca\xc4\xd7\xce\xc8\xdb\xd3\xcf\ +\xdc\xd6\xd2\xdc\xd5\xd3\xdc\xd6\xd1\xdc\xd6\xd2\xdb\xd4\xd1\xdc\ +\xd6\xd2\xdd\xd7\xd3\xd8\xd1\xcc\xd9\xd1\xcd\xde\xd7\xd2\xe3\xdd\ +\xd9\xe3\xdd\xda\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdd\xda\xde\xda\xd8\ +\xdc\xd8\xd6\xdb\xd6\xd3\xd7\xd2\xd1\xd2\xcc\xc9\xca\xc5\xc4\xc1\ +\xbc\xbc\xb5\xb0\xb0\x9f\x9c\x9d\x81\x82\x82\x53\x59\x5c\x22\x2b\ +\x32\x18\x1f\x28\x3c\x3f\x45\x6b\x68\x6b\x86\x82\x83\x95\x92\x93\ +\x9e\x9b\x9d\xa1\x9e\xa0\xa5\xa3\xa5\xa4\xa3\xa5\xa4\xa3\xa5\xa4\ +\xa3\xa6\xa3\xa3\xa7\xa1\xa2\xa5\x9b\x9c\x9f\x99\x9a\x9d\x97\x98\ +\x9b\x94\x95\x97\x92\x94\x95\x90\x92\x96\x92\x95\x99\x8f\x93\x97\ +\x8c\x8f\x94\x89\x8e\x93\x88\x8c\x90\x86\x8a\x8e\x87\x8b\x90\x84\ +\x88\x8d\x82\x87\x8c\x7f\x85\x8a\x7e\x84\x88\x7b\x81\x85\x7a\x80\ +\x83\x7c\x83\x86\x73\x79\x7d\x65\x6d\x72\x70\x77\x7b\x66\x6f\x74\ +\x67\x6e\x75\x61\x69\x6e\x0b\x12\x17\x0b\x0e\x13\x18\x1d\x20\x3b\ +\x42\x48\x36\x40\x4a\x59\x61\x68\x4b\x57\x5e\x3a\x48\x50\x5e\x66\ +\x6e\x78\x7d\x83\x7d\x83\x89\x7d\x84\x8b\x7e\x85\x8c\x7f\x87\x8e\ +\x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x87\x8f\x80\x87\x8e\x81\ +\x89\x91\x7f\x87\x8c\x81\x88\x8c\x85\x8b\x90\x80\x86\x8b\x82\x87\ +\x8c\x8b\x8f\x94\x89\x8d\x92\x88\x8c\x91\x8a\x8e\x94\x8c\x90\x95\ +\x8f\x93\x98\x90\x93\x99\x8d\x91\x96\x8d\x91\x96\x92\x96\x9b\x91\ +\x95\x99\x95\x99\x9c\x92\x97\x9a\x93\x97\x9a\x96\x99\x9d\x94\x96\ +\x9a\x96\x9a\x9d\x97\x9a\x9e\x96\x9a\x9d\x6f\x75\x76\x68\x6c\x6f\ +\x94\x97\x99\xa0\xa3\xa7\xa0\xa4\xa7\x80\x84\x88\x6d\x70\x75\x93\ +\x95\x98\xa6\xa9\xab\xa7\xaa\xac\x97\x99\x9c\x6c\x70\x73\x83\x86\ +\x85\xa7\xa8\xa7\x91\x92\x92\x40\x41\x41\x06\x06\x06\x5f\x62\x62\ +\xa1\xa3\xa3\x65\x65\x64\x1b\x1b\x1b\x24\x27\x27\x2d\x2f\x31\x6b\ +\x6d\x70\x95\x98\x99\xb0\xb1\xb1\xb3\xb2\xb4\xab\xac\xae\xb4\xb3\ +\xb5\xb3\xb2\xb4\xb1\xb0\xb2\xb2\xb1\xb3\x00\x00\x00\xe1\xd9\xd5\ +\xe2\xd9\xd5\xe2\xda\xd6\xe3\xdb\xd8\xe4\xdd\xd9\xe6\xdd\xd8\xe4\ +\xdb\xd7\xe5\xdd\xd9\xe4\xdc\xd8\xe4\xdd\xd8\xe3\xdc\xd8\xe3\xdc\ +\xd9\xe2\xdc\xd8\xe1\xd9\xd5\xe1\xda\xd6\xe1\xd9\xd5\xe0\xd9\xd5\ +\xde\xd7\xd3\xde\xd5\xd2\xde\xd7\xd3\xdf\xd8\xd4\xde\xd8\xd4\xdf\ +\xd9\xd5\xdf\xd9\xd5\xe0\xda\xd5\xe0\xdb\xd7\xe0\xdb\xd6\xde\xd8\ +\xd3\xda\xd3\xcf\xdc\xd4\xd1\xe2\xdb\xd8\xe6\xe0\xdd\xe5\xe0\xdd\ +\xe4\xdf\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe0\xdb\xd9\xde\xd9\xd8\xdb\ +\xd5\xd3\xd6\xcf\xcd\xcf\xca\xc7\xc8\xc3\xc2\xbb\xb6\xb7\xae\xa9\ +\xaa\x95\x93\x94\x72\x75\x76\x42\x4a\x4f\x1b\x26\x2e\x23\x29\x32\ +\x4e\x4f\x55\x79\x75\x76\x8c\x86\x87\x98\x95\x95\x9f\x9d\x9e\xa2\ +\xa1\xa3\xa5\xa3\xa5\xa3\xa2\xa4\xa4\xa3\xa6\xa4\xa3\xa6\xa2\xa1\ +\xa3\xa1\xa0\xa4\x9d\x9f\xa2\x9b\x9c\xa0\x97\x98\x9c\x94\x95\x98\ +\x91\x93\x96\x8f\x92\x96\x90\x93\x97\x8f\x93\x97\x8a\x8e\x93\x8b\ +\x90\x93\x89\x8d\x92\x87\x8b\x90\x85\x8a\x8f\x83\x88\x8d\x82\x87\ +\x8c\x80\x86\x8b\x7d\x84\x88\x7b\x82\x86\x7b\x81\x85\x7b\x82\x85\ +\x74\x7b\x7f\x65\x6e\x73\x74\x7a\x7f\x73\x79\x7f\x61\x6a\x70\x59\ +\x61\x67\x0d\x15\x19\x05\x08\x0d\x09\x0c\x10\x1b\x1f\x23\x4d\x53\ +\x59\x62\x68\x6e\x44\x4d\x54\x44\x50\x57\x5e\x66\x6e\x69\x6f\x77\ +\x7d\x82\x88\x7c\x82\x89\x7d\x84\x8b\x80\x87\x8e\x80\x88\x8f\x7f\ +\x87\x8e\x7f\x87\x8f\x81\x88\x8f\x82\x89\x90\x82\x8b\x91\x81\x89\ +\x8f\x82\x88\x8d\x85\x8b\x90\x84\x8a\x8f\x85\x89\x8e\x8c\x90\x95\ +\x87\x8b\x90\x87\x8b\x90\x8a\x8e\x93\x8f\x93\x98\x8f\x93\x98\x90\ +\x94\x99\x8d\x91\x96\x8d\x91\x96\x8f\x93\x98\x91\x95\x99\x99\x9d\ +\xa1\x95\x99\x9d\x93\x97\x9b\x92\x96\x9a\x95\x98\x9c\x97\x99\x9e\ +\x9b\x9e\xa2\x98\x9c\x9f\xa4\xa7\xaa\x82\x86\x8a\x6e\x71\x76\x8e\ +\x90\x94\xa0\xa4\xa6\xa2\xa6\xa8\x88\x8c\x90\x70\x73\x79\x8b\x8e\ +\x91\xa5\xa7\xa8\xa6\xa8\xa9\xa7\xaa\xab\x73\x77\x78\x73\x76\x77\ +\x33\x33\x33\x21\x21\x21\x17\x18\x18\x91\x93\x92\x8c\x8d\x89\x75\ +\x75\x70\x3a\x3b\x3a\x72\x76\x77\xaf\xb5\xb7\x91\x97\x9b\x78\x7c\ +\x7f\x8c\x8d\x8e\xac\xad\xac\xb1\xb2\xb4\xb3\xb3\xb4\xb3\xb2\xb4\ +\xb4\xb4\xb6\xb6\xb5\xb6\x00\x00\x00\xdb\xd3\xd0\xda\xd3\xcf\xdb\ +\xd3\xd0\xdd\xd5\xd3\xde\xd7\xd4\xdf\xd7\xd3\xde\xd6\xd2\xdd\xd5\ +\xd2\xde\xd7\xd4\xdf\xd8\xd5\xdf\xd9\xd5\xdf\xd9\xd6\xdf\xd9\xd6\ +\xde\xd8\xd5\xdd\xd8\xd4\xde\xd7\xd3\xdd\xd6\xd3\xdd\xd6\xd3\xde\ +\xd7\xd4\xe0\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe0\xda\xd6\xe1\xdb\ +\xd7\xe2\xdc\xd7\xe3\xdd\xd8\xe2\xdc\xd7\xdd\xd6\xd1\xdb\xd4\xd0\ +\xe0\xd9\xd6\xe4\xdf\xdc\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xe0\xdd\xe4\ +\xdf\xdc\xe2\xdd\xdb\xe1\xdc\xda\xdf\xda\xd9\xdb\xd5\xd3\xd6\xce\ +\xcc\xd0\xc8\xc7\xc6\xc1\xc0\xb9\xb4\xb5\xa7\xa3\xa4\x8d\x8d\x8d\ +\x62\x67\x6b\x2f\x3a\x41\x17\x23\x2b\x2e\x34\x3c\x60\x5f\x62\x83\ +\x7f\x7f\x92\x8d\x8d\x9d\x9a\x9a\xa3\xa2\xa3\xa4\xa3\xa5\xa5\xa3\ +\xa5\xa5\xa4\xa5\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9f\x9f\xa1\ +\x9b\x9d\x9f\x98\x9a\x9d\x96\x97\x9b\x94\x96\x99\x90\x93\x97\x8f\ +\x92\x96\x8e\x91\x95\x8c\x90\x94\x89\x8c\x91\x8a\x8f\x93\x87\x8b\ +\x90\x88\x8c\x91\x84\x89\x8e\x83\x89\x8e\x83\x89\x8e\x80\x86\x8b\ +\x7d\x84\x88\x7c\x82\x87\x7c\x82\x87\x7b\x81\x85\x78\x7e\x83\x6c\ +\x74\x79\x69\x71\x77\x78\x7e\x83\x6a\x71\x76\x50\x59\x5f\x0d\x15\ +\x1b\x0e\x0f\x17\x14\x16\x1d\x08\x09\x0b\x45\x49\x4d\x57\x5e\x64\ +\x1d\x25\x2b\x42\x49\x4e\x73\x79\x7e\x67\x6d\x75\x6e\x74\x7b\x7c\ +\x82\x89\x80\x86\x8d\x7f\x86\x8e\x7f\x87\x8e\x80\x88\x8f\x7e\x86\ +\x8d\x80\x87\x8e\x81\x89\x8e\x80\x89\x8d\x82\x8b\x8f\x83\x8a\x8f\ +\x85\x8b\x90\x88\x8e\x93\x87\x8d\x92\x8c\x91\x96\x86\x8b\x90\x88\ +\x8d\x91\x8a\x8e\x93\x8e\x92\x97\x8f\x93\x97\x92\x96\x9b\x8c\x90\ +\x95\x8c\x90\x95\x8f\x94\x98\x92\x97\x9a\x94\x99\x9d\x95\x99\x9d\ +\x97\x9b\x9f\x96\x9a\x9e\x96\x99\x9d\x97\x9a\x9e\x9e\xa1\xa5\x9a\ +\x9d\xa1\xa0\xa3\xa6\xa2\xa6\xa8\x87\x8a\x8f\x74\x78\x7c\x8b\x8e\ +\x91\xa1\xa5\xa6\xa6\xa9\xac\x90\x93\x98\x78\x7b\x80\x82\x83\x87\ +\xa5\xa8\xa8\xa7\xaa\xa9\xa4\xa8\xa8\x7e\x82\x84\x00\x00\x00\x00\ +\x00\x00\x08\x07\x07\x4b\x4b\x4a\x7a\x7a\x75\x33\x32\x2f\x00\x00\ +\x00\x4f\x4f\x4f\xa9\xaa\xac\xaf\xb2\xb4\xa5\xa9\xab\x85\x87\x89\ +\x7f\x7f\x7f\xa7\xa7\xa7\xb6\xb6\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb3\ +\xb3\xb4\x00\x00\x00\xe1\xdb\xd8\xe0\xda\xd6\xe0\xda\xd7\xe1\xdb\ +\xd8\xe1\xdb\xd9\xe0\xda\xd7\xe0\xda\xd7\xdf\xd9\xd7\xe1\xdb\xd8\ +\xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdd\xda\xe1\xdc\xda\xe1\xdc\xda\xe1\ +\xdc\xd9\xe1\xda\xd7\xe0\xd9\xd5\xe2\xda\xd7\xe3\xdc\xd8\xe3\xdd\ +\xd9\xe3\xdd\xd9\xe3\xdc\xd9\xe3\xdc\xd8\xe2\xdc\xd7\xe1\xdb\xd6\ +\xe2\xdb\xd7\xe2\xdd\xd8\xdc\xd6\xd1\xdc\xd5\xd1\xe1\xdb\xd6\xe7\ +\xe1\xde\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe3\xde\ +\xdc\xe0\xdb\xd9\xde\xd9\xd7\xda\xd5\xd2\xd5\xce\xcb\xce\xc6\xc4\ +\xc1\xbc\xbb\xb5\xb1\xb1\x9d\x9b\x9c\x80\x81\x83\x50\x58\x5e\x1f\ +\x2b\x34\x19\x24\x2c\x42\x45\x4b\x6f\x6c\x6b\x88\x84\x82\x95\x91\ +\x90\x9f\x9d\x9d\xa2\xa1\xa3\xa5\xa3\xa5\xa6\xa4\xa6\xa4\xa3\xa5\ +\xa3\xa2\xa4\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9d\x9e\x98\x9a\x9c\x96\ +\x98\x9a\x95\x97\x9a\x91\x94\x98\x8f\x92\x96\x8d\x91\x95\x8c\x91\ +\x94\x8a\x8e\x93\x87\x8c\x91\x87\x8c\x91\x85\x8a\x8f\x87\x8c\x91\ +\x81\x87\x8c\x83\x89\x8e\x81\x88\x8d\x7f\x86\x8b\x7e\x85\x8a\x7d\ +\x85\x8a\x7d\x84\x89\x7b\x83\x86\x7b\x82\x86\x74\x7c\x80\x64\x6d\ +\x71\x6d\x74\x79\x75\x7a\x7f\x5d\x64\x6a\x0f\x16\x1b\x09\x0a\x0d\ +\x28\x2e\x36\x10\x16\x1a\x0c\x0d\x0f\x18\x1b\x1e\x01\x04\x07\x3e\ +\x42\x47\x7c\x7f\x84\x78\x7d\x84\x61\x68\x70\x6f\x74\x7c\x82\x88\ +\x8f\x7e\x84\x8c\x7e\x86\x8d\x81\x89\x90\x7f\x87\x8e\x80\x88\x8f\ +\x7f\x87\x8e\x82\x8a\x90\x86\x8e\x93\x85\x8c\x93\x85\x8b\x91\x88\ +\x8e\x93\x86\x8c\x91\x89\x8f\x94\x88\x8d\x92\x8a\x8f\x93\x8f\x93\ +\x98\x8f\x93\x98\x8e\x93\x98\x90\x95\x9a\x8b\x8f\x94\x8a\x8f\x93\ +\x91\x95\x9a\x92\x97\x9b\x93\x97\x9b\x95\x99\x9c\x97\x9b\x9f\x97\ +\x9b\x9f\x99\x9c\xa0\x9c\x9f\xa3\x99\x9c\xa0\x9c\x9f\xa3\xa2\xa5\ +\xa9\xa0\xa3\xa7\x9f\xa3\xa6\x95\x99\x9c\x73\x76\x7b\x83\x86\x89\ +\xa0\xa3\xa5\xa4\xa8\xaa\x98\x9c\xa0\x7b\x7d\x83\x73\x74\x77\xa2\ +\xa5\xa5\xa4\xa6\xa6\xb1\xb4\xb5\x19\x1a\x1a\x00\x00\x00\x00\x00\ +\x00\x1d\x1e\x1d\x6a\x6b\x6a\x27\x29\x28\x00\x01\x01\x30\x31\x33\ +\x8a\x8a\x8c\xad\xae\xb0\xb1\xb3\xb4\xae\xb1\xb2\x91\x91\x92\x76\ +\x76\x76\x8c\x8a\x8d\xbd\xbc\xbe\xb0\xaf\xb0\xb4\xb3\xb5\x00\x00\ +\x00\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdc\xd8\xe2\xdc\xd8\ +\xe1\xdb\xd7\xe1\xdb\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdc\xd9\xe3\ +\xde\xdb\xe3\xde\xdb\xe1\xdc\xda\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\ +\xd8\xe0\xda\xd5\xe1\xda\xd6\xe2\xdb\xd7\xe2\xdc\xd7\xe3\xdc\xd9\ +\xe3\xdd\xda\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xdf\xdc\xe3\ +\xdd\xd8\xde\xd8\xd3\xde\xd7\xd4\xe3\xdd\xd8\xe7\xe1\xde\xe7\xe2\ +\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe2\xdd\xda\xde\xd9\xd7\ +\xdc\xd6\xd5\xd8\xd2\xcf\xd1\xca\xc7\xc9\xc2\xbe\xbf\xba\xb7\xaf\ +\xac\xac\x95\x94\x94\x70\x73\x76\x3d\x46\x4d\x19\x26\x2e\x22\x2c\ +\x34\x53\x54\x58\x7d\x78\x77\x8d\x89\x88\x9a\x96\x95\xa2\x9f\xa0\ +\xa5\xa3\xa5\xa5\xa4\xa6\xa4\xa3\xa5\xa4\xa3\xa5\xa2\xa1\xa3\xa1\ +\xa0\xa2\xa0\xa0\xa2\x9b\x9c\x9d\x99\x99\x9b\x94\x96\x97\x92\x94\ +\x96\x91\x93\x97\x90\x94\x98\x8d\x91\x95\x8c\x91\x95\x8a\x8f\x93\ +\x87\x8c\x91\x85\x8b\x90\x86\x8b\x90\x82\x88\x8d\x82\x88\x8d\x82\ +\x89\x8e\x80\x88\x8e\x7e\x85\x8b\x7c\x84\x89\x7c\x85\x8a\x7c\x83\ +\x88\x7b\x82\x86\x7a\x83\x87\x78\x81\x85\x6b\x74\x78\x63\x6b\x70\ +\x72\x77\x7c\x73\x77\x7d\x28\x31\x36\x06\x06\x07\x49\x4e\x54\x4f\ +\x57\x5d\x0c\x13\x18\x00\x00\x03\x1d\x22\x27\x4e\x54\x5b\x71\x76\ +\x7b\x82\x86\x8c\x72\x78\x80\x60\x67\x6f\x76\x7d\x84\x7f\x85\x8b\ +\x7f\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x8e\x80\x88\x8e\x84\ +\x8b\x91\x86\x8d\x93\x86\x8d\x94\x85\x8c\x92\x86\x8c\x93\x87\x8d\ +\x92\x87\x8d\x93\x8b\x8f\x95\x8c\x91\x96\x90\x94\x99\x90\x94\x99\ +\x8f\x94\x99\x8f\x94\x99\x8e\x92\x97\x8e\x92\x97\x92\x96\x9b\x94\ +\x98\x9d\x93\x97\x9c\x93\x97\x9b\x92\x96\x9a\x96\x99\x9d\x97\x9a\ +\x9e\x9b\x9e\xa2\x98\x9b\x9f\x9c\x9f\xa3\xa1\xa4\xa8\xa1\xa4\xa8\ +\xa0\xa3\xa6\xa2\xa6\xa9\x95\x98\x9c\x77\x7b\x7f\x7e\x80\x84\x9e\ +\xa0\xa3\xa4\xa7\xaa\xa0\xa3\xa6\x82\x84\x88\x6e\x70\x74\x99\x9c\ +\x9c\xae\xb0\xb0\x72\x75\x75\x00\x00\x00\x00\x00\x00\x19\x1a\x1a\ +\x83\x87\x86\x92\x98\x95\x7c\x81\x81\x88\x8c\x8d\x7d\x7d\x81\x81\ +\x82\x86\xb1\xb2\xb3\xac\xac\xad\xb0\xb1\xb1\x9e\x9e\x9e\x80\x81\ +\x81\x78\x78\x7a\xb1\xb0\xb2\xb8\xb7\xb9\x00\x00\x00\xde\xd7\xd5\ +\xdd\xd7\xd4\xde\xd8\xd6\xde\xd8\xd5\xdd\xd8\xd4\xdd\xd7\xd4\xde\ +\xd7\xd3\xde\xd7\xd3\xdf\xd8\xd5\xe0\xd9\xd6\xe1\xdc\xda\xe1\xdc\ +\xda\xe0\xdb\xd9\xe0\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd8\xe1\xdb\xd7\ +\xe1\xdb\xd8\xe3\xdc\xd9\xe4\xde\xdb\xe4\xdf\xdc\xe5\xdf\xdc\xe5\ +\xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe8\xe3\xe0\xe5\xdf\xdc\xe1\xdb\ +\xd7\xe2\xdb\xd8\xe6\xe0\xdc\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ +\xe5\xe0\xdd\xe3\xde\xdb\xe0\xdb\xd8\xdd\xd8\xd7\xda\xd5\xd4\xd5\ +\xce\xcc\xd0\xc9\xc6\xc7\xbf\xbc\xb9\xb4\xb1\xa5\xa3\xa3\x89\x8a\ +\x8a\x5e\x64\x68\x2c\x37\x3e\x19\x25\x2c\x32\x39\x3f\x65\x63\x66\ +\x85\x82\x83\x94\x91\x92\x9d\x9b\x9c\xa2\x9f\xa2\xa6\xa5\xa6\xa6\ +\xa5\xa7\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\xa4\xa3\xa2\xa4\x9f\xa0\ +\xa1\x9b\x9d\x9e\x98\x99\x9a\x93\x95\x96\x91\x93\x94\x91\x94\x95\ +\x8f\x93\x96\x8c\x91\x94\x8c\x90\x95\x89\x8d\x92\x88\x8c\x91\x85\ +\x89\x8e\x84\x89\x8f\x82\x88\x8e\x82\x89\x8e\x80\x87\x8e\x7d\x86\ +\x8c\x7e\x86\x8b\x7e\x85\x8a\x7c\x85\x8a\x7a\x81\x85\x79\x81\x85\ +\x79\x82\x87\x79\x82\x86\x74\x7d\x81\x67\x71\x75\x62\x6b\x6f\x70\ +\x76\x7a\x2c\x36\x3a\x05\x06\x07\x4e\x53\x57\x79\x7e\x82\x4c\x56\ +\x5c\x38\x42\x49\x61\x65\x6b\x6c\x73\x78\x60\x68\x6d\x75\x7b\x81\ +\x7f\x85\x8c\x70\x78\x7f\x60\x6b\x72\x79\x80\x87\x81\x87\x8e\x7e\ +\x86\x8d\x81\x88\x8e\x83\x8b\x91\x83\x8b\x91\x85\x8b\x91\x87\x8d\ +\x92\x89\x90\x95\x87\x8d\x92\x89\x8f\x95\x84\x8a\x90\x87\x8d\x93\ +\x8a\x90\x95\x8c\x91\x96\x8e\x91\x96\x8c\x90\x95\x8f\x93\x98\x90\ +\x95\x9a\x93\x97\x9c\x91\x95\x9a\x92\x96\x9a\x96\x99\x9e\x97\x9c\ +\x9f\x94\x99\x9d\x93\x97\x9a\x98\x9b\x9f\x99\x9c\xa0\x98\x9b\x9f\ +\x9c\x9f\xa3\x9b\x9e\xa2\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa1\ +\xa4\xa7\xa0\xa4\xa5\x9c\x9f\xa1\x7d\x80\x84\x72\x75\x7a\x9a\x9d\ +\xa0\xa6\xa9\xaa\xa7\xa9\xac\x92\x95\x98\x69\x6d\x70\x8f\x91\x92\ +\xaf\xb3\xb2\x56\x5a\x5c\x00\x00\x00\x02\x02\x02\x4a\x4c\x4b\xa4\ +\xa7\xa5\xb8\xba\xb9\xb1\xb2\xb2\xa7\xa7\xa9\x89\x8b\x8e\x73\x74\ +\x78\xab\xaa\xac\xb3\xb3\xb3\xb4\xb4\xb4\xaa\xab\xab\x91\x92\x94\ +\x6f\x70\x72\xa3\xa1\xa4\x00\x00\x00\xe2\xde\xdd\xe2\xde\xdc\xe3\ +\xdd\xdb\xe1\xdc\xd9\xe1\xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd8\xe0\xdb\ +\xd8\xe2\xdd\xda\xe3\xdd\xda\xe4\xde\xdc\xe5\xe0\xde\xe3\xde\xdb\ +\xe3\xde\xdb\xe4\xdf\xdd\xe5\xdf\xdd\xe5\xdf\xdd\xe5\xe0\xde\xe7\ +\xe2\xe1\xe8\xe3\xe2\xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe5\xe1\xe9\xe4\ +\xe2\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xde\xdb\xe1\xda\xd7\xe4\xdd\xda\ +\xe7\xe1\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xdf\xdc\xe3\ +\xde\xda\xe0\xdb\xd8\xdc\xd7\xd5\xd9\xd3\xd1\xd5\xce\xcc\xcc\xc5\ +\xc4\xc2\xbc\xbb\xb1\xac\xab\x9e\x9a\x9a\x7c\x7d\x7f\x49\x53\x56\ +\x20\x2b\x32\x1d\x26\x2e\x47\x48\x4e\x75\x72\x74\x8b\x87\x88\x99\ +\x96\x97\xa2\xa0\xa1\xa3\xa0\xa2\xa5\xa3\xa4\xa5\xa4\xa6\xa6\xa5\ +\xa7\xa4\xa3\xa5\xa2\xa1\xa3\x9f\x9e\xa0\x9d\x9f\xa0\x9b\x9d\x9e\ +\x95\x97\x98\x91\x94\x95\x90\x93\x94\x90\x93\x94\x8d\x92\x94\x8d\ +\x91\x94\x8a\x8e\x92\x88\x8c\x90\x86\x8a\x90\x84\x89\x8e\x85\x8b\ +\x91\x81\x88\x8e\x81\x87\x8d\x80\x87\x8d\x7e\x86\x8c\x7d\x84\x88\ +\x7c\x82\x88\x7c\x83\x88\x7b\x83\x87\x7a\x83\x86\x7a\x83\x89\x7b\ +\x84\x89\x76\x7f\x83\x6f\x79\x7d\x5e\x69\x6d\x4a\x54\x5b\x28\x33\ +\x3a\x02\x04\x05\x32\x34\x37\x78\x7c\x80\x70\x78\x7d\x5d\x64\x6b\ +\x6c\x71\x76\x7b\x81\x85\x6c\x74\x79\x61\x69\x70\x78\x7f\x85\x7f\ +\x85\x8c\x69\x73\x7a\x62\x6c\x74\x7b\x82\x89\x80\x89\x8e\x80\x89\ +\x8e\x81\x8a\x8f\x83\x8b\x8f\x85\x8c\x91\x88\x8e\x93\x88\x8d\x92\ +\x87\x8c\x91\x87\x8d\x92\x88\x8e\x93\x86\x8d\x92\x8d\x92\x97\x8d\ +\x92\x97\x8e\x93\x98\x90\x94\x99\x8d\x91\x96\x92\x96\x9b\x93\x97\ +\x9c\x94\x97\x9c\x92\x95\x9a\x91\x95\x99\x97\x9a\x9f\x98\x9c\xa1\ +\x95\x99\x9d\x96\x99\x9d\x97\x9a\x9d\x9a\x9d\xa0\x9c\x9f\xa3\x9c\ +\x9f\xa2\x9f\xa1\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x9f\xa2\xa5\xa0\xa2\ +\xa5\xa2\xa5\xa9\xa0\xa3\xa7\x85\x89\x8d\x6b\x6f\x72\x98\x9a\x9c\ +\xa1\xa2\xa5\xa4\xa6\xaa\x99\x9c\xa0\x6d\x71\x74\x7f\x81\x82\xa8\ +\xab\xac\x75\x79\x7a\x44\x48\x4a\x76\x78\x7b\x78\x79\x7a\x8d\x8c\ +\x8b\xaf\xae\xae\xb1\xb1\xb2\xae\xb0\xb1\x9e\x9f\xa2\x6d\x6d\x6f\ +\x97\x97\x98\xba\xb9\xba\xb0\xaf\xb0\xb2\xb4\xb5\x9b\x9e\x9f\x74\ +\x74\x75\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe1\xe6\xe1\ +\xde\xe5\xe1\xde\xe5\xe2\xde\xe6\xe3\xdf\xe7\xe2\xdf\xe8\xe3\xe0\ +\xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe4\xe1\xe8\xe4\xe0\xe8\xe3\xe0\xe9\ +\xe4\xe1\xe9\xe4\xe2\xe9\xe5\xe4\xe9\xe5\xe4\xea\xe6\xe5\xea\xe5\ +\xe4\xe9\xe5\xe3\xea\xe5\xe3\xeb\xe6\xe4\xea\xe5\xe3\xea\xe6\xe3\ +\xe8\xe2\xdf\xe2\xdd\xda\xe0\xda\xd7\xe5\xde\xda\xe7\xe2\xdd\xe7\ +\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdb\xdf\xda\ +\xd7\xdb\xd6\xd3\xd8\xd2\xd0\xd2\xcc\xc9\xca\xc2\xc1\xbd\xb7\xb6\ +\xad\xa8\xa7\x95\x92\x92\x6d\x6f\x71\x3b\x45\x49\x1c\x26\x2d\x28\ +\x2e\x35\x59\x58\x5d\x7f\x7b\x7c\x90\x8d\x8d\x9a\x98\x98\xa2\xa0\ +\xa0\xa5\xa3\xa3\xa5\xa1\xa3\xa5\xa4\xa5\xa5\xa4\xa6\xa4\xa3\xa5\ +\xa3\xa2\xa4\xa1\xa0\xa1\x9c\x9c\x9d\x98\x99\x9a\x94\x96\x97\x91\ +\x94\x94\x91\x95\x97\x8f\x92\x95\x8c\x91\x94\x8a\x8f\x92\x86\x8b\ +\x8f\x87\x8d\x93\x88\x8e\x95\x85\x8b\x92\x83\x89\x90\x82\x8a\x91\ +\x82\x89\x8f\x83\x8a\x91\x81\x87\x8e\x80\x86\x8c\x7e\x84\x89\x7c\ +\x82\x87\x7b\x81\x86\x78\x81\x85\x79\x82\x87\x78\x81\x85\x76\x7f\ +\x83\x73\x7d\x81\x62\x6e\x74\x2a\x36\x41\x32\x3c\x46\x10\x15\x1a\ +\x1b\x1d\x20\x63\x68\x6d\x77\x7e\x83\x6f\x75\x7b\x62\x69\x70\x73\ +\x79\x7e\x7c\x82\x87\x65\x6f\x75\x61\x6a\x71\x7d\x84\x89\x7c\x84\ +\x8b\x68\x73\x7a\x61\x6b\x73\x7d\x85\x89\x7d\x87\x8b\x80\x89\x8d\ +\x81\x89\x8d\x87\x8c\x92\x89\x8f\x94\x87\x8d\x92\x86\x8c\x91\x89\ +\x8f\x94\x8e\x93\x98\x88\x8d\x92\x8d\x91\x96\x8d\x91\x96\x8f\x95\ +\x9a\x91\x96\x9b\x91\x95\x9a\x93\x98\x9c\x94\x97\x9c\x95\x99\x9d\ +\x94\x99\x9d\x94\x98\x9c\x94\x98\x9c\x97\x9b\x9e\x98\x9c\x9f\x9a\ +\x9d\xa1\x94\x97\x9a\x9e\xa1\xa5\x9e\xa1\xa5\x9e\xa1\xa4\x9f\xa3\ +\xa6\x9c\xa0\xa2\x9f\xa2\xa3\x9e\xa0\xa1\xa2\xa4\xa7\xa3\xa5\xa9\ +\xa1\xa4\xa8\xa2\xa4\xa8\x93\x96\x9b\x5f\x62\x67\x9a\x9a\x9e\xa6\ +\xa7\xab\xa5\xa8\xac\xa1\xa4\xa9\x82\x84\x88\x6a\x6b\x6c\x9b\x9d\ +\x9e\x59\x5c\x5e\xb7\xb8\xbb\xaa\xaa\xac\x7c\x7b\x7d\x7b\x7a\x7d\ +\xab\xab\xac\xaf\xaf\xb0\xb2\xb2\xb3\xab\xab\xac\x76\x77\x7b\x7f\ +\x7f\x82\xb8\xb8\xb8\xb2\xb3\xb4\xb5\xb7\xb7\xab\xad\xae\x00\x00\ +\x00\xe8\xe3\xe2\xe8\xe4\xe3\xe7\xe3\xe2\xe6\xe2\xe1\xe7\xe3\xe2\ +\xe7\xe4\xe2\xe7\xe4\xe2\xe7\xe3\xe0\xe8\xe4\xe3\xe8\xe4\xe3\xe9\ +\xe5\xe3\xe8\xe4\xe3\xe9\xe5\xe3\xe9\xe5\xe4\xe9\xe5\xe3\xe9\xe5\ +\xe4\xea\xe6\xe5\xeb\xe6\xe5\xea\xe5\xe4\xea\xe5\xe5\xea\xe6\xe4\ +\xea\xe6\xe4\xeb\xe6\xe5\xeb\xe7\xe4\xea\xe5\xe3\xe5\xe0\xdd\xe1\ +\xdb\xd8\xe2\xdc\xd9\xe6\xe0\xdd\xe7\xe3\xdf\xe6\xe1\xde\xe6\xe1\ +\xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xdb\xde\xd8\xd6\xda\xd3\xd0\ +\xd6\xcf\xcc\xce\xc7\xc4\xc4\xbd\xba\xb9\xb4\xb2\xa3\x9f\x9e\x87\ +\x86\x86\x5e\x61\x64\x30\x37\x3f\x1e\x27\x2f\x39\x3d\x42\x6b\x68\ +\x6a\x88\x83\x83\x94\x90\x8f\x9c\x98\x99\xa1\x9e\x9e\xa4\xa2\xa2\ +\xa6\xa4\xa4\xa3\xa2\xa3\xa2\xa1\xa3\xa2\xa1\xa3\xa1\xa0\xa1\xa0\ +\xa0\xa2\x9b\x9c\x9d\x95\x97\x98\x92\x94\x95\x90\x94\x94\x8f\x93\ +\x95\x8e\x92\x96\x8e\x93\x96\x8b\x90\x93\x88\x8c\x90\x88\x8d\x93\ +\x87\x8d\x93\x86\x8c\x93\x85\x8b\x92\x81\x89\x90\x7f\x87\x8e\x7f\ +\x86\x8d\x7e\x84\x8b\x7e\x84\x89\x7c\x82\x87\x7b\x81\x86\x79\x7f\ +\x84\x78\x7e\x83\x79\x81\x85\x78\x80\x85\x77\x80\x84\x79\x82\x86\ +\x64\x6e\x75\x1d\x2a\x36\x32\x3d\x47\x1b\x25\x2b\x23\x2a\x30\x5c\ +\x63\x69\x6b\x73\x78\x79\x7e\x81\x69\x70\x76\x62\x6a\x71\x75\x7c\ +\x81\x79\x80\x85\x63\x6e\x73\x64\x6d\x74\x81\x88\x8e\x7a\x83\x89\ +\x62\x6c\x74\x5f\x67\x6f\x81\x89\x8d\x81\x89\x8f\x82\x89\x8d\x85\ +\x8b\x8f\x86\x8c\x91\x87\x8c\x91\x88\x8c\x91\x88\x8d\x92\x8c\x90\ +\x95\x8d\x91\x96\x8e\x92\x97\x8c\x91\x95\x91\x95\x9a\x90\x94\x99\ +\x92\x97\x9a\x95\x9a\x9d\x96\x9a\x9d\x97\x9a\x9f\x98\x9b\xa0\x99\ +\x9c\xa0\x95\x98\x9d\x94\x97\x9a\x93\x96\x9a\x97\x9a\x9e\x97\x9a\ +\x9e\x9a\x9d\xa2\xa1\xa3\xa7\x9e\xa0\xa3\xa1\xa2\xa6\x9f\xa0\xa2\ +\xa0\xa4\xa5\x9c\x9e\xa1\x9f\xa2\xa6\xa5\xa8\xac\xa3\xa5\xa9\xa8\ +\xa9\xad\xa5\xa8\xac\x9a\x9e\xa2\x64\x65\x6b\x8a\x8b\x8f\xa3\xa3\ +\xa6\xaa\xad\xaf\xa7\xa9\xac\x92\x94\x96\x51\x54\x56\x6c\x6c\x6e\ +\xba\xba\xbb\xa4\xa3\xa5\xa3\xa2\xa3\x81\x80\x83\x6f\x6f\x73\xa7\ +\xa6\xa8\xb3\xb3\xb4\xb2\xb1\xb3\xac\xac\xae\x8e\x90\x92\x6b\x69\ +\x6c\xb3\xb2\xb3\xb4\xb6\xb6\xb5\xb6\xb6\x00\x00\x00\xe8\xe4\xe3\ +\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe7\xe3\xe2\xe8\ +\xe4\xe3\xe9\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\xe4\ +\xe3\xea\xe6\xe5\xea\xe6\xe5\xeb\xe7\xe6\xea\xe6\xe5\xea\xe7\xe6\ +\xeb\xe6\xe5\xea\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe3\xeb\xe6\xe4\xeb\ +\xe6\xe5\xea\xe5\xe3\xe8\xe3\xe0\xe3\xde\xdb\xe2\xdb\xd7\xe4\xdd\ +\xda\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\ +\xe4\xdf\xdc\xe0\xdc\xd9\xdd\xd7\xd4\xd8\xd1\xce\xd3\xca\xc9\xcd\ +\xc5\xc1\xc1\xba\xb8\xb3\xae\xac\x9d\x9b\x9a\x79\x7a\x7b\x4c\x51\ +\x56\x20\x29\x30\x20\x28\x2f\x49\x4c\x50\x77\x74\x74\x8d\x88\x89\ +\x9a\x96\x97\xa0\x9f\x9f\xa3\xa1\xa1\xa5\xa4\xa4\xa6\xa5\xa5\xa6\ +\xa5\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9e\xa0\xa0\x9f\xa1\x9b\x9d\ +\x9e\x96\x98\x99\x91\x94\x95\x8e\x91\x93\x8e\x91\x94\x8f\x92\x96\ +\x8c\x91\x94\x89\x8e\x92\x86\x8c\x91\x86\x8c\x91\x88\x8e\x93\x86\ +\x8c\x92\x84\x8a\x91\x83\x89\x8f\x82\x88\x8f\x81\x87\x8e\x80\x86\ +\x8c\x7e\x84\x89\x7c\x82\x87\x7a\x80\x85\x7a\x80\x86\x79\x81\x86\ +\x78\x81\x85\x78\x81\x85\x78\x81\x85\x79\x82\x86\x56\x63\x69\x1c\ +\x29\x34\x47\x50\x59\x12\x1d\x25\x35\x3f\x47\x6a\x72\x79\x5c\x66\ +\x6e\x70\x76\x7c\x77\x7e\x82\x65\x6e\x74\x66\x6e\x75\x7a\x81\x85\ +\x79\x81\x85\x61\x6b\x73\x6a\x73\x79\x80\x86\x8b\x7a\x84\x88\x61\ +\x6b\x72\x68\x72\x77\x83\x8a\x8f\x85\x8b\x90\x87\x8d\x92\x88\x8e\ +\x93\x88\x8d\x92\x87\x8c\x91\x88\x8e\x93\x8d\x91\x96\x90\x94\x99\ +\x8c\x90\x95\x8d\x92\x96\x8f\x93\x97\x8e\x93\x96\x92\x97\x99\x94\ +\x99\x9c\x91\x95\x98\x96\x98\x9c\x97\x9a\x9d\x94\x97\x9b\x95\x98\ +\x9c\x90\x94\x96\x93\x98\x99\x99\x9b\x9d\x9a\x9b\x9e\x9b\x9e\x9f\ +\x9d\x9f\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa5\xa6\xa0\xa5\xa6\x9f\ +\xa2\xa6\x9d\xa0\xa4\xa0\xa3\xa7\xa5\xa6\xaa\xa9\xaa\xae\xa1\xa3\ +\xa7\xa2\xa5\xa9\xa5\xa8\xac\x6f\x72\x77\x7c\x7e\x80\xa7\xa9\xaa\ +\xa6\xa9\xac\xa1\xa3\xa4\x4a\x4d\x4f\x6f\x73\x75\x9a\x9a\x9c\x8b\ +\x8a\x8c\x35\x36\x39\x88\x89\x8b\x94\x97\x9b\x66\x68\x6c\xa4\xa6\ +\xa6\xb2\xb2\xb3\xb1\xb0\xb2\xb5\xb7\xb7\xa8\xa9\xaa\x70\x70\x73\ +\x99\x9a\x9b\xbd\xbd\xbd\x00\x00\x00\xe7\xe3\xe2\xe7\xe3\xe2\xe7\ +\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\xe8\xe4\xe3\xe8\xe4\ +\xe3\xe9\xe5\xe4\xea\xe6\xe5\xe9\xe6\xe4\xe9\xe4\xe3\xe9\xe5\xe4\ +\xe9\xe5\xe4\xea\xe6\xe5\xeb\xe6\xe4\xea\xe6\xe4\xea\xe5\xe3\xeb\ +\xe5\xe3\xea\xe5\xe2\xe9\xe5\xe2\xea\xe6\xe4\xea\xe5\xe4\xea\xe5\ +\xe4\xe6\xe1\xde\xe4\xdd\xda\xe2\xdb\xd9\xe6\xdf\xdc\xe6\xe2\xdf\ +\xe6\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xda\xdf\ +\xda\xd8\xdc\xd6\xd4\xd8\xd0\xce\xd2\xc9\xc5\xca\xc3\xbf\xbc\xb6\ +\xb2\xaa\xa7\xa5\x90\x91\x8f\x69\x6d\x6f\x39\x40\x47\x1c\x25\x2d\ +\x2c\x33\x3a\x5d\x5d\x5f\x81\x7c\x7d\x90\x8c\x8d\x9b\x98\x98\xa1\ +\x9f\x9f\xa4\xa3\xa3\xa7\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa4\xa4\xa3\ +\xa4\xa0\x9f\xa2\xa0\x9f\xa1\x9d\x9c\x9e\x99\x9b\x9c\x96\x97\x9a\ +\x8e\x92\x93\x8d\x91\x93\x8f\x92\x95\x8d\x90\x94\x89\x8e\x91\x88\ +\x8c\x90\x85\x8a\x90\x87\x8d\x92\x83\x8a\x8e\x83\x89\x8f\x83\x89\ +\x90\x82\x8a\x90\x84\x8a\x91\x83\x89\x8f\x7f\x85\x8a\x7e\x84\x89\ +\x7d\x83\x88\x7b\x81\x86\x7a\x80\x85\x7c\x81\x87\x7b\x83\x88\x7b\ +\x85\x89\x7a\x83\x87\x78\x81\x84\x4d\x5a\x60\x21\x2e\x36\x5c\x63\ +\x6b\x23\x31\x3b\x3f\x49\x50\x75\x7a\x80\x63\x6c\x74\x65\x6b\x73\ +\x79\x7f\x84\x77\x7f\x83\x61\x6b\x71\x6d\x74\x7a\x7e\x84\x88\x7a\ +\x81\x85\x5f\x69\x70\x70\x77\x7c\x86\x8c\x90\x78\x80\x84\x5d\x67\ +\x6d\x71\x78\x7d\x87\x8c\x91\x88\x8e\x93\x88\x8e\x93\x86\x8c\x91\ +\x88\x8e\x93\x89\x8d\x93\x8d\x92\x96\x8b\x90\x94\x8e\x92\x97\x8f\ +\x94\x98\x93\x97\x9b\x8a\x90\x92\x90\x95\x98\x94\x99\x9b\x97\x9b\ +\x9e\x93\x97\x99\x90\x94\x96\x91\x95\x97\x99\x9c\x9f\x98\x9b\x9d\ +\x96\x9a\x9b\x99\x9c\x9d\x9b\x9d\x9f\x9e\x9f\xa3\xa0\xa2\xa3\x9f\ +\xa0\xa2\x9c\x9e\x9f\x9d\x9f\xa0\xa4\xa6\xa8\xa6\xaa\xac\xa1\xa3\ +\xa7\xa0\xa2\xa6\xa8\xa9\xad\xa5\xa7\xab\xa8\xa9\xad\xa6\xa7\xab\ +\xa6\xa7\xab\xa5\xa7\xab\x87\x89\x8c\x62\x63\x65\xa4\xa5\xa6\x94\ +\x94\x96\x65\x69\x6a\xb1\xb3\xb3\x79\x78\x7a\x87\x87\x8a\x9d\x9f\ +\xa4\xa3\xa5\xa9\xb0\xb1\xb3\xaa\xac\xad\x6a\x6c\x6f\x93\x93\x95\ +\xb1\xb0\xb1\xaf\xaf\xaf\xb3\xb4\xb4\xaf\xb0\xb1\x7e\x7e\x80\x86\ +\x84\x84\x00\x00\x00\xe7\xe3\xe1\xe8\xe3\xe1\xe7\xe3\xe2\xe8\xe4\ +\xe3\xe7\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe9\xe5\xe4\ +\xe9\xe5\xe4\xea\xe6\xe5\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe6\xe5\xea\ +\xe6\xe4\xe9\xe5\xe3\xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe0\xe8\xe3\ +\xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xea\xe5\xe3\xe4\xde\xdb\ +\xe1\xda\xd7\xe2\xdb\xd8\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe5\ +\xe0\xdd\xe5\xdf\xdc\xe4\xde\xdb\xe1\xdb\xd9\xdd\xd8\xd5\xda\xd4\ +\xd1\xd6\xce\xca\xcd\xc5\xbf\xc3\xbc\xb7\xb6\xb0\xac\xa2\x9f\x9d\ +\x82\x84\x84\x58\x5e\x62\x26\x31\x38\x1d\x25\x2e\x3e\x43\x4a\x70\ +\x6d\x6f\x89\x85\x85\x97\x94\x94\x9e\x9d\x9b\xa1\x9f\x9f\xa6\xa4\ +\xa4\xa6\xa6\xa6\xa5\xa5\xa5\xa3\xa3\xa3\xa4\xa4\xa5\xa2\xa1\xa3\ +\x9c\x9d\x9e\x9a\x99\x9b\x96\x99\x9a\x92\x94\x95\x8f\x93\x94\x90\ +\x94\x95\x8d\x8f\x93\x8b\x8f\x92\x8a\x8f\x92\x88\x8c\x91\x87\x8c\ +\x91\x86\x8d\x92\x83\x89\x8e\x83\x89\x8e\x80\x89\x8d\x81\x8a\x8e\ +\x81\x87\x8c\x80\x86\x8d\x80\x86\x8b\x7e\x85\x8b\x7d\x85\x8b\x7c\ +\x83\x88\x7d\x83\x88\x7a\x80\x85\x79\x82\x86\x7b\x84\x88\x79\x80\ +\x85\x78\x81\x85\x4f\x5c\x61\x10\x1e\x21\x47\x50\x58\x31\x3e\x49\ +\x48\x51\x5a\x71\x77\x7b\x75\x7c\x81\x66\x6f\x74\x67\x6f\x74\x7b\ +\x82\x85\x76\x7e\x80\x61\x6b\x6e\x70\x78\x7c\x81\x88\x8b\x75\x7e\ +\x82\x5f\x69\x6f\x75\x7c\x81\x83\x8a\x8d\x75\x7d\x82\x60\x6a\x71\ +\x74\x7c\x81\x86\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8b\ +\x8f\x94\x8b\x8f\x94\x8a\x8e\x93\x8d\x91\x96\x8e\x92\x97\x8f\x93\ +\x97\x8d\x92\x96\x92\x97\x9b\x92\x96\x9a\x95\x99\x9c\x95\x98\x9b\ +\x94\x96\x99\x94\x97\x9b\x99\x9c\xa0\x9d\xa0\xa4\x99\x9c\xa0\x94\ +\x97\x9b\x99\x9b\x9c\x9e\xa0\xa2\x9c\x9d\xa0\xa4\xa5\xa8\xa0\xa2\ +\xa3\x9d\x9f\xa0\xa1\xa3\xa4\xa3\xa7\xa9\xa6\xa8\xaa\xa3\xa5\xa6\ +\xa6\xa7\xa9\xa8\xa9\xac\xa6\xa7\xaa\xa8\xaa\xad\xa4\xa4\xa8\xaa\ +\xab\xad\xac\xad\xb0\x95\x98\x9c\x5d\x5f\x62\x4a\x4a\x4b\xa9\xaa\ +\xaa\xaf\xaf\xae\xb0\xaf\xb0\x87\x88\x89\x77\x79\x7b\xa7\xa7\xa9\ +\xb2\xb3\xb4\xb0\xb1\xb2\xb3\xb5\xb6\x7c\x7d\x7e\x73\x73\x75\xaf\ +\xaf\xaf\xad\xad\xad\xb4\xb4\xb4\xbd\xbd\xbe\x95\x95\x97\x00\x00\ +\x00\xe7\xe3\xe2\xe7\xe2\xe1\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ +\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe9\xe5\xe4\xe8\ +\xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe4\xea\xe6\xe2\xe9\xe6\ +\xe2\xe9\xe4\xe1\xe8\xe3\xe0\xe7\xe3\xdf\xe8\xe3\xe0\xe9\xe3\xe0\ +\xe8\xe3\xe1\xe9\xe4\xe2\xe9\xe4\xe1\xe4\xdf\xdb\xe1\xdb\xd7\xe3\ +\xdc\xd9\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xde\ +\xdb\xe3\xdc\xd9\xe0\xd9\xd7\xdc\xd7\xd5\xd9\xd3\xd0\xd3\xcc\xc7\ +\xcb\xc3\xbc\xc1\xbc\xb5\xb0\xab\xa9\x9a\x97\x97\x76\x79\x7b\x45\ +\x4e\x54\x1f\x2a\x32\x28\x30\x37\x52\x53\x57\x7c\x77\x78\x8e\x8a\ +\x8a\x9a\x97\x97\x9f\x9e\x9d\xa3\xa2\xa2\xa4\xa4\xa4\xa4\xa4\xa4\ +\xa5\xa5\xa5\xa4\xa4\xa4\xa3\xa2\xa4\x9b\x9b\x9d\x93\x94\x95\x96\ +\x97\x98\x95\x97\x98\x93\x94\x97\x90\x93\x96\x8e\x92\x95\x8b\x8e\ +\x92\x8a\x8e\x91\x89\x8e\x92\x86\x8b\x8f\x85\x89\x8e\x84\x8a\x8f\ +\x85\x8b\x90\x83\x8b\x90\x81\x89\x8e\x80\x87\x8c\x7f\x86\x8b\x7e\ +\x87\x8b\x7e\x85\x8b\x7c\x84\x8a\x7c\x84\x89\x7c\x84\x89\x7c\x85\ +\x8a\x7a\x83\x87\x79\x82\x86\x7c\x85\x89\x7a\x83\x87\x77\x7f\x83\ +\x57\x63\x68\x08\x0f\x13\x10\x19\x1f\x4a\x57\x60\x60\x6a\x6f\x61\ +\x6a\x71\x74\x7c\x81\x74\x7b\x7f\x62\x6b\x6f\x6b\x72\x75\x74\x78\ +\x7b\x6d\x74\x76\x5b\x64\x69\x73\x7b\x7e\x7f\x87\x8a\x71\x79\x7c\ +\x4c\x56\x5b\x7a\x80\x84\x84\x8a\x8f\x76\x7e\x83\x64\x6b\x71\x79\ +\x7e\x84\x88\x8c\x91\x8b\x8f\x94\x8c\x8f\x95\x8a\x8e\x93\x89\x8e\ +\x92\x8b\x90\x94\x8a\x8e\x91\x8c\x90\x95\x8f\x93\x98\x92\x97\x99\ +\x95\x9a\x9d\x94\x99\x9c\x92\x97\x9a\x94\x98\x9b\x95\x98\x9c\x94\ +\x98\x9b\x96\x99\x9d\x9b\x9e\xa2\x99\x9c\xa0\x97\x9b\x9c\x9c\xa0\ +\xa1\x98\x9a\x9c\x9e\x9f\xa1\xa5\xa7\xa8\xa2\xa4\xa5\xa1\xa3\xa4\ +\x9e\xa1\xa2\xa2\xa6\xa7\xa4\xa6\xa8\xa6\xa8\xab\xa3\xa4\xa8\xa3\ +\xa5\xa8\xa5\xa7\xa8\xa6\xa8\xaa\xaa\xab\xad\xab\xab\xae\xaa\xab\ +\xad\xab\xad\xb0\x97\x99\x9b\x31\x33\x35\x95\x97\x97\xb1\xb2\xb2\ +\xaf\xb0\xb1\xae\xb0\xb1\x97\x99\x9b\x79\x79\x7c\x96\x95\x98\xb0\ +\xb0\xb2\xb3\xb2\xb4\xb3\xb4\xb5\x9c\x9e\x9f\x6e\x6f\x71\x9d\x9f\ +\x9f\xb3\xb3\xb3\xb8\xb9\xb9\xb8\xb9\xb8\x00\x00\x00\xe8\xe3\xe2\ +\xe7\xe2\xe1\xe8\xe3\xe2\xe7\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\ +\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\ +\xe4\xe8\xe3\xe2\xe9\xe4\xe1\xe9\xe5\xe2\xe9\xe4\xe1\xe8\xe3\xe0\ +\xe9\xe3\xe1\xe9\xe4\xe1\xe9\xe3\xe0\xe8\xe3\xe0\xe8\xe3\xe0\xe9\ +\xe4\xe1\xe6\xe1\xde\xe3\xdd\xd8\xe1\xdb\xd6\xe5\xde\xdb\xe7\xe1\ +\xde\xe7\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xde\xdb\xe2\xdc\xd9\ +\xe0\xd9\xd6\xdc\xd5\xd1\xd7\xd1\xce\xd0\xc9\xc5\xc7\xc0\xbb\xbc\ +\xb8\xb3\xab\xa8\xa4\x8d\x8e\x8d\x65\x6a\x6e\x33\x3f\x47\x1d\x29\ +\x31\x31\x38\x40\x62\x62\x64\x83\x81\x7f\x94\x90\x8f\x9c\x9a\x99\ +\xa2\xa2\xa1\xa3\xa4\xa3\xa5\xa5\xa4\xa5\xa5\xa5\xa6\xa6\xa6\xa3\ +\xa3\xa3\x9c\x9c\x9d\x87\x89\x8a\x84\x87\x87\x8a\x8c\x8d\x91\x93\ +\x95\x93\x95\x99\x8d\x8f\x93\x8c\x8f\x92\x8b\x8e\x92\x89\x8d\x91\ +\x89\x8d\x92\x88\x8c\x91\x87\x8b\x90\x84\x89\x8e\x81\x87\x8c\x82\ +\x88\x8d\x81\x87\x8c\x7f\x86\x8a\x7f\x87\x8b\x7f\x88\x8c\x7f\x88\ +\x8b\x7d\x86\x8a\x7c\x84\x89\x7b\x83\x87\x7b\x84\x88\x7b\x84\x88\ +\x7b\x84\x88\x7b\x84\x88\x7b\x84\x88\x78\x7e\x85\x6a\x73\x7a\x36\ +\x44\x4c\x34\x3f\x47\x67\x71\x78\x73\x7c\x80\x65\x6e\x73\x63\x6c\ +\x71\x77\x7e\x81\x71\x79\x7c\x52\x5b\x5f\x48\x4e\x52\x6b\x6e\x71\ +\x6c\x72\x76\x64\x6b\x70\x71\x76\x7a\x56\x5a\x60\x37\x3f\x43\x59\ +\x60\x63\x7a\x7f\x82\x87\x8c\x91\x77\x7e\x83\x66\x6d\x73\x7b\x80\ +\x85\x8a\x8f\x93\x8a\x8e\x93\x86\x8c\x90\x89\x8f\x92\x8a\x8f\x93\ +\x8b\x91\x93\x8c\x90\x95\x8f\x93\x98\x94\x99\x9c\x94\x99\x9c\x94\ +\x99\x9c\x95\x99\x9c\x96\x99\x9d\x96\x9a\x9d\x99\x9d\xa0\x97\x9a\ +\x9e\x9a\x9d\xa1\x96\x9a\x9b\x98\x9d\x9d\x9a\x9e\x9f\x9c\x9f\xa2\ +\x9c\x9f\xa0\xa2\xa5\xa6\x9d\x9f\xa0\xa1\xa3\xa4\xa2\xa4\xa5\xa0\ +\xa3\xa4\xa2\xa4\xa5\xa6\xa8\xa8\xa7\xa8\xa9\xa7\xa8\xa9\xa6\xa7\ +\xa8\xa5\xa7\xa8\xab\xac\xad\xa7\xa8\xaa\xaa\xab\xac\xa7\xa8\xa9\ +\x5c\x5f\x61\xa0\xa5\xa7\x7a\x7d\x7f\x80\x81\x82\xa5\xa5\xa6\xb0\ +\xaf\xb1\xb5\xb4\xb6\xa5\xa5\xa7\x76\x75\x78\x91\x91\x92\xae\xae\ +\xae\xb1\xb2\xb2\xb6\xb6\xb7\xb0\xb2\xb3\x6e\x71\x72\x8a\x8b\x8a\ +\xae\xaf\xad\xb9\xba\xb8\x00\x00\x00\xe7\xe2\xdf\xe7\xe2\xdf\xe7\ +\xe3\xe1\xe7\xe4\xe2\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe8\xe4\ +\xe3\xe8\xe4\xe3\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe4\xe3\xe8\xe4\xe3\ +\xe9\xe4\xe1\xe9\xe5\xe2\xe8\xe3\xe0\xe9\xe4\xe1\xe9\xe4\xe1\xe9\ +\xe4\xe1\xe9\xe4\xe1\xe8\xe4\xe0\xe9\xe4\xe1\xe9\xe3\xe0\xe5\xe0\ +\xdb\xe2\xdc\xd7\xe2\xdc\xd7\xe6\xe0\xdc\xe7\xe0\xdd\xe7\xe0\xdd\ +\xe5\xe0\xdd\xe4\xdf\xdc\xe4\xde\xdb\xe0\xdb\xd8\xde\xd8\xd5\xda\ +\xd4\xd0\xd5\xcf\xcc\xce\xc7\xc3\xc5\xbf\xbb\xb5\xb1\xac\xa1\xa1\ +\x9c\x80\x82\x82\x53\x5b\x5f\x27\x33\x3d\x1e\x2b\x32\x40\x45\x4b\ +\x71\x70\x71\x8b\x89\x89\x96\x94\x94\x9f\x9d\x9d\xa3\xa2\xa2\xa4\ +\xa4\xa3\xa4\xa4\xa4\xa6\xa6\xa6\xa3\xa3\xa3\xa0\xa0\xa0\x8a\x8c\ +\x8d\x7b\x7f\x80\x7b\x7e\x7f\x89\x8b\x8c\x90\x92\x93\x8f\x91\x93\ +\x8d\x90\x93\x8c\x8f\x93\x89\x8c\x90\x87\x8b\x90\x87\x8b\x90\x88\ +\x8c\x91\x87\x8b\x92\x83\x88\x8e\x83\x88\x8d\x83\x89\x8f\x81\x89\ +\x8e\x7f\x87\x8b\x80\x86\x8c\x7e\x87\x8b\x7d\x85\x8a\x7c\x84\x89\ +\x7c\x85\x8a\x7c\x85\x8a\x7a\x83\x87\x7b\x83\x88\x7a\x83\x87\x79\ +\x82\x86\x79\x82\x86\x79\x81\x87\x75\x7d\x84\x72\x7a\x81\x71\x79\ +\x80\x78\x7f\x85\x78\x80\x84\x71\x78\x7e\x61\x6a\x70\x6b\x72\x78\ +\x74\x7a\x7e\x2e\x35\x39\x14\x1a\x1e\x53\x55\x59\x79\x7c\x7f\x6e\ +\x73\x77\x45\x4c\x51\x0d\x0f\x13\x4a\x4e\x52\x48\x4f\x52\x63\x69\ +\x6d\x80\x84\x88\x87\x8c\x91\x72\x78\x7d\x67\x6d\x72\x7d\x81\x85\ +\x8a\x8d\x92\x8b\x8f\x93\x8d\x92\x95\x8d\x92\x96\x8c\x91\x95\x8c\ +\x91\x94\x90\x95\x98\x94\x97\x9c\x93\x98\x9b\x97\x9b\x9f\x98\x9c\ +\xa0\x95\x98\x9c\x96\x99\x9d\x99\x9c\xa0\x9a\x9c\xa0\x9d\xa0\xa2\ +\x9a\x9e\x9f\x9b\x9f\xa0\x9f\xa2\xa3\x9e\xa2\xa3\x9d\xa0\xa2\xa0\ +\xa4\xa5\x9e\x9f\xa0\xa0\xa2\xa3\xa6\xa8\xa9\xa3\xa5\xa6\xa4\xa7\ +\xa8\xa4\xa6\xa7\xa8\xa9\xaa\xaa\xaa\xac\xa9\xa8\xaa\xa6\xa5\xa6\ +\xaa\xaa\xac\xa7\xa6\xa8\xa8\xa9\xaa\x9b\x9d\x9e\x51\x56\x57\xb3\ +\xb8\xb8\xad\xaf\xb0\x8b\x8b\x8d\x75\x75\x76\x9d\x9d\x9e\xb1\xb1\ +\xb2\xb5\xb4\xb5\xb1\xb1\xb1\x7f\x7f\x80\x83\x83\x85\xa1\xa1\xa2\ +\xb5\xb6\xb7\xb2\xb4\xb5\xb7\xba\xba\x88\x89\x89\x7c\x7d\x7d\xa2\ +\xa3\xa1\x00\x00\x00\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xde\xe8\xe3\ +\xe1\xe8\xe3\xe2\xe7\xe3\xe2\xe7\xe3\xe2\xe8\xe4\xe3\xe8\xe4\xe3\ +\xe8\xe4\xe3\xe9\xe5\xe4\xea\xe5\xe3\xe8\xe5\xe4\xe9\xe5\xe3\xe9\ +\xe4\xe2\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe1\xe9\xe4\xe2\xe9\xe4\ +\xe1\xe9\xe4\xe0\xe8\xe3\xe0\xe7\xe1\xdc\xe2\xdc\xd7\xe1\xdb\xd6\ +\xe3\xdd\xd8\xe7\xe1\xdd\xe7\xe1\xde\xe7\xe1\xde\xe5\xe0\xdd\xe4\ +\xde\xdb\xe3\xdd\xda\xe0\xdb\xd9\xdd\xd6\xd4\xda\xd3\xcf\xd4\xcd\ +\xca\xca\xc4\xbf\xbf\xba\xb6\xaf\xad\xa8\x95\x95\x93\x72\x74\x76\ +\x43\x4b\x52\x20\x2a\x34\x2a\x33\x3b\x55\x57\x5b\x7d\x7b\x7b\x8f\ +\x8d\x8c\x99\x96\x95\xa2\xa0\x9f\xa5\xa3\xa3\xa3\xa3\xa3\xa5\xa5\ +\xa5\xa5\xa4\xa5\xa3\xa3\xa3\x95\x96\x97\x7e\x81\x83\x75\x79\x7b\ +\x7c\x7f\x80\x87\x89\x8a\x8b\x8d\x8e\x8c\x8e\x90\x8e\x91\x95\x8d\ +\x8f\x93\x89\x8d\x91\x87\x8b\x90\x87\x8b\x90\x86\x8a\x90\x87\x8c\ +\x93\x83\x89\x8f\x83\x89\x8e\x82\x89\x8e\x81\x88\x8d\x7f\x86\x8b\ +\x7e\x86\x8c\x7c\x85\x89\x7d\x86\x8b\x7d\x85\x8a\x7c\x84\x8a\x7c\ +\x84\x8b\x7b\x83\x88\x79\x82\x86\x79\x81\x85\x7a\x82\x86\x7a\x82\ +\x87\x7a\x82\x88\x77\x7f\x85\x77\x7f\x85\x78\x80\x86\x78\x7f\x86\ +\x79\x80\x85\x79\x7f\x84\x6f\x76\x7c\x64\x6c\x71\x66\x6d\x71\x21\ +\x26\x29\x00\x03\x05\x26\x2a\x2e\x6a\x6d\x71\x7f\x83\x85\x45\x4c\ +\x51\x00\x00\x00\x24\x26\x29\x4e\x52\x56\x6d\x74\x77\x67\x6d\x71\ +\x83\x87\x8b\x88\x8d\x91\x75\x7b\x80\x6b\x70\x76\x7f\x82\x86\x8c\ +\x90\x94\x90\x94\x98\x93\x98\x9b\x8e\x93\x96\x8d\x92\x95\x92\x97\ +\x9a\x94\x98\x9c\x95\x99\x9d\x96\x9a\x9e\x96\x9b\x9f\x98\x9b\x9f\ +\x96\x99\x9d\x97\x9a\x9e\x9b\x9e\xa2\x9b\x9f\xa1\x9c\xa0\xa1\x9b\ +\x9f\xa0\x9e\xa2\xa3\x9e\xa1\xa3\xa0\xa3\xa5\xa1\xa3\xa4\x9d\x9f\ +\xa0\x9e\xa0\xa2\xa5\xa7\xa8\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa8\ +\xa6\xa8\xa9\xa6\xa9\xaa\xa9\xaa\xab\xa4\xa4\xa5\xa7\xa8\xa9\xa9\ +\xa8\xaa\xa7\xa8\xa9\x5d\x60\x63\x94\x98\x99\xac\xaf\xaf\xb1\xb1\ +\xb1\xb3\xb4\xb4\x9b\x9c\x9d\x7d\x7e\x7f\x8f\x90\x90\xa6\xa7\xa7\ +\xb2\xb3\xb2\xb4\xb5\xb5\x90\x91\x93\x82\x81\x83\x96\x95\x96\xac\ +\xae\xae\xb5\xb6\xb6\xba\xbb\xbb\xa0\xa1\xa1\x7b\x7c\x7c\x00\x00\ +\x00\xe7\xe1\xde\xe6\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe7\xe2\xe0\ +\xe7\xe3\xe1\xe8\xe4\xe3\xe9\xe4\xe3\xe9\xe5\xe4\xe9\xe4\xe3\xe8\ +\xe4\xe3\xea\xe5\xe5\xe9\xe5\xe4\xe9\xe5\xe3\xea\xe5\xe3\xe9\xe4\ +\xe1\xe8\xe3\xe0\xe8\xe3\xe0\xe8\xe2\xdf\xe8\xe2\xde\xe7\xe1\xdd\ +\xe5\xe0\xdb\xe2\xdb\xd6\xdf\xd7\xd2\xdf\xd8\xd3\xe4\xde\xd8\xe8\ +\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\xe5\xe0\xdd\xe4\xde\xdb\xe1\xdc\ +\xdb\xdf\xda\xd8\xdc\xd6\xd5\xd8\xd1\xce\xd1\xcb\xc8\xc7\xc1\xbe\ +\xb9\xb4\xb1\xa7\xa4\xa2\x8b\x8b\x8b\x62\x66\x69\x33\x3c\x44\x21\ +\x2a\x33\x3a\x40\x47\x67\x66\x67\x85\x81\x81\x94\x90\x90\x9d\x9a\ +\x99\xa2\xa0\x9f\xa4\xa3\xa3\xa5\xa5\xa5\xa4\xa5\xa5\xa5\xa5\xa5\ +\xa2\xa2\xa2\x8b\x8c\x8d\x77\x7a\x7c\x74\x78\x7a\x80\x83\x84\x86\ +\x88\x89\x81\x83\x84\x87\x8a\x8c\x8d\x90\x93\x8b\x8d\x92\x88\x8c\ +\x90\x88\x8c\x90\x89\x8d\x91\x85\x8a\x8f\x85\x8a\x90\x83\x88\x8d\ +\x82\x88\x8d\x81\x87\x8c\x81\x87\x8c\x81\x87\x8d\x7f\x87\x8c\x7d\ +\x86\x8b\x7d\x86\x8c\x7c\x85\x8a\x7c\x84\x8a\x7c\x84\x8a\x7c\x84\ +\x8a\x7a\x83\x89\x7a\x82\x88\x7a\x83\x87\x79\x81\x87\x78\x80\x87\ +\x77\x7f\x86\x76\x7d\x84\x77\x7f\x86\x79\x80\x87\x7d\x82\x88\x7d\ +\x83\x8a\x7b\x82\x88\x6f\x77\x7c\x52\x5b\x5f\x18\x1d\x1f\x00\x00\ +\x00\x19\x1c\x20\x5a\x5e\x61\x72\x77\x7b\x47\x50\x55\x0b\x0f\x12\ +\x03\x03\x04\x61\x63\x66\x82\x87\x89\x6e\x74\x78\x6b\x6f\x73\x83\ +\x86\x8a\x89\x8e\x91\x73\x79\x7d\x69\x6e\x72\x81\x84\x87\x91\x95\ +\x99\x92\x96\x9a\x8f\x94\x97\x91\x96\x99\x92\x97\x9a\x94\x99\x9c\ +\x96\x99\x9d\x95\x98\x9c\x99\x9d\xa0\x9b\x9d\xa1\x97\x9a\x9e\x98\ +\x9b\x9f\x9a\x9d\xa1\x99\x9c\x9e\x9b\x9f\xa0\x9c\x9f\xa0\x9c\xa0\ +\xa1\x9d\xa1\xa2\x9f\xa2\xa4\x9e\xa0\xa1\xa1\xa3\xa3\xa6\xa8\xa8\ +\xa5\xa7\xa8\xa4\xa6\xa7\xa4\xa6\xa7\xa2\xa4\xa5\xa2\xa4\xa5\xa4\ +\xa6\xa7\xa5\xa7\xa8\xa6\xa6\xa7\xa7\xa8\xa9\xaa\xaa\xab\xa3\xa4\ +\xa5\x5c\x5f\x63\xb0\xb2\xb3\xb0\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\ +\xb4\xb3\xb4\xa7\xa7\xa8\x80\x82\x84\x7e\x80\x82\xa4\xa4\xa5\xb2\ +\xb2\xb3\xb9\xb9\xba\xa9\xa8\xaa\x85\x85\x87\x83\x84\x85\xa6\xa5\ +\xa6\xba\xba\xb8\xba\xba\xb9\xac\xad\xac\x00\x00\x00\xe7\xe1\xde\ +\xe7\xe1\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\xe3\xe0\xe8\ +\xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe3\xe1\xe8\xe2\xe0\xe8\xe2\ +\xe0\xe8\xe2\xe1\xe8\xe2\xe0\xe7\xe1\xdf\xe6\xe0\xdd\xe5\xdf\xdc\ +\xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xda\xe4\xde\xda\xe2\xdc\xd7\xde\ +\xd6\xd2\xdd\xd5\xd1\xe0\xd7\xd3\xe5\xdf\xda\xe8\xe1\xde\xe6\xe0\ +\xdd\xe7\xe0\xdd\xe6\xdf\xdc\xe2\xde\xdb\xe1\xdb\xda\xde\xd8\xd7\ +\xda\xd5\xd4\xd6\xcf\xcd\xce\xc8\xc5\xc3\xbe\xbc\xb3\xad\xac\x9e\ +\x9b\x9c\x7c\x7e\x7e\x4f\x56\x5c\x26\x32\x3b\x25\x30\x38\x47\x4a\ +\x50\x77\x73\x73\x8c\x87\x88\x9a\x96\x96\x9f\x9d\x9c\xa2\xa0\xa0\ +\xa6\xa4\xa5\xa6\xa6\xa7\xa4\xa5\xa5\xa5\xa4\xa4\x9d\x9d\x9d\x81\ +\x83\x84\x71\x75\x76\x77\x7b\x7c\x86\x88\x88\x83\x86\x87\x7c\x80\ +\x81\x81\x85\x86\x89\x8c\x8f\x89\x8c\x90\x87\x8b\x8f\x87\x8c\x90\ +\x88\x8c\x8f\x85\x8b\x8e\x82\x88\x8c\x81\x88\x8c\x81\x88\x8c\x80\ +\x86\x8b\x80\x86\x8a\x80\x86\x8d\x7e\x85\x8c\x7e\x85\x8b\x7d\x85\ +\x8b\x7c\x84\x8b\x7c\x84\x89\x7b\x84\x88\x7c\x85\x8a\x7c\x85\x8c\ +\x7a\x83\x89\x79\x82\x86\x77\x81\x86\x78\x81\x87\x78\x81\x86\x77\ +\x7f\x86\x78\x7e\x85\x7b\x81\x88\x7e\x85\x8a\x7e\x85\x8c\x7b\x84\ +\x8b\x6d\x76\x7c\x34\x3c\x40\x0c\x12\x14\x00\x00\x00\x2c\x30\x34\ +\x5f\x64\x67\x34\x3a\x3e\x26\x2e\x35\x2d\x36\x3d\x01\x04\x07\x4f\ +\x54\x59\x85\x89\x8b\x82\x88\x8c\x6d\x72\x76\x6c\x71\x75\x84\x88\ +\x8b\x87\x8b\x8f\x74\x79\x7c\x6d\x72\x75\x85\x89\x8b\x91\x95\x98\ +\x93\x97\x9b\x95\x9a\x9d\x91\x96\x99\x95\x99\x9c\x97\x9a\x9e\x98\ +\x9b\x9f\x99\x9c\xa0\x97\x9a\x9e\x96\x9a\x9e\x9b\x9e\xa2\x99\x9d\ +\xa0\x98\x9c\x9d\x9b\x9e\x9f\x9f\xa1\xa2\x9c\xa0\xa1\x9d\xa1\xa2\ +\x9d\xa0\xa1\xa0\xa1\xa2\xa0\xa0\xa0\x7a\x7c\x7c\x77\x79\x7a\x96\ +\x98\x99\xa5\xa6\xa7\xa2\xa5\xa5\xa4\xa7\xa7\xa6\xa8\xa9\xa6\xa7\ +\xa8\xa7\xa7\xa8\xa9\xa9\xab\xa8\xa9\xaa\xa6\xa8\xa9\x9b\x9d\x9e\ +\xab\xad\xae\xaf\xaf\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb3\xb2\xb4\xb1\ +\xb1\xb3\xaa\xac\xad\x92\x94\x97\x83\x84\x85\x92\x93\x94\xb6\xb6\ +\xb6\xb8\xb7\xb8\xb4\xb4\xb6\x8f\x90\x91\x88\x88\x89\x94\x94\x94\ +\xbb\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xdd\xda\xe4\xdd\xda\xe5\ +\xdd\xda\xe5\xde\xda\xe5\xde\xdb\xe4\xde\xdc\xe4\xde\xdb\xe5\xde\ +\xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe3\xdd\xda\xe3\xdd\xda\ +\xe3\xdc\xda\xe3\xdc\xda\xe2\xdb\xd8\xe3\xdc\xd9\xe4\xdd\xda\xe4\ +\xde\xda\xe4\xdd\xd9\xe2\xdb\xd7\xde\xd6\xd2\xda\xd0\xcc\xde\xd4\ +\xd0\xe2\xd9\xd5\xe7\xe1\xdc\xe7\xe0\xdd\xe7\xe1\xde\xe8\xe0\xdd\ +\xe5\xdf\xdb\xe2\xdd\xda\xe0\xdb\xd9\xde\xd7\xd6\xd9\xd4\xd3\xd4\ +\xcf\xcd\xcb\xc6\xc3\xbe\xb9\xb7\xaf\xaa\xa8\x94\x93\x92\x6e\x72\ +\x72\x40\x48\x4f\x20\x2b\x33\x2e\x35\x3d\x5c\x5b\x5f\x80\x7d\x7d\ +\x91\x8d\x8d\x9c\x98\x98\xa1\x9f\x9f\xa5\xa3\xa3\xa6\xa5\xa5\xa6\ +\xa6\xa6\xa4\xa4\xa4\xa4\xa3\xa4\x95\x95\x96\x7b\x7e\x7f\x70\x74\ +\x75\x7c\x7f\x80\x86\x88\x89\x82\x84\x85\x7c\x80\x81\x7f\x83\x84\ +\x86\x89\x8c\x8a\x8d\x91\x86\x8a\x8d\x85\x8a\x8d\x85\x8a\x8d\x84\ +\x8a\x8e\x82\x88\x8c\x81\x87\x8c\x81\x87\x8d\x81\x87\x8b\x80\x86\ +\x8b\x81\x88\x8e\x7e\x85\x8b\x80\x88\x8d\x7d\x86\x8b\x7e\x86\x8b\ +\x7d\x86\x8a\x7b\x85\x89\x7c\x85\x8a\x7b\x84\x89\x7b\x83\x88\x79\ +\x81\x87\x78\x80\x87\x78\x80\x87\x78\x80\x87\x77\x7f\x86\x7a\x81\ +\x88\x79\x81\x87\x7b\x83\x88\x7e\x85\x8c\x7c\x84\x8b\x5d\x67\x6d\ +\x1a\x21\x25\x0a\x0f\x12\x06\x0a\x0d\x47\x4a\x4e\x77\x7a\x7c\x1e\ +\x23\x28\x0b\x0e\x10\x32\x3a\x40\x37\x3d\x42\x5a\x60\x65\x6f\x75\ +\x79\x83\x88\x8b\x83\x87\x8b\x6e\x73\x78\x6c\x71\x76\x83\x87\x8b\ +\x8c\x90\x93\x79\x7f\x82\x6b\x71\x74\x87\x8b\x8f\x93\x96\x9b\x96\ +\x99\x9d\x93\x97\x9a\x94\x97\x9b\x97\x9a\x9e\x99\x9c\xa0\x97\x9a\ +\x9e\x96\x99\x9d\x9a\x9d\xa1\x9c\x9e\xa2\x9a\x9d\xa1\x99\x9d\x9f\ +\x9b\xa0\xa0\x9f\xa3\xa3\x9f\xa3\xa4\x9e\xa1\xa2\xa1\xa2\xa3\xa1\ +\xa2\xa3\x66\x67\x68\x3c\x3f\x40\x86\x8a\x8b\xa0\xa1\xa2\xa6\xa7\ +\xa8\xa5\xa6\xa6\xa7\xa8\xa8\xa7\xa8\xa9\xab\xac\xad\xa9\xaa\xab\ +\xa8\xa9\xaa\xaa\xab\xac\xad\xaf\xb0\xac\xad\xaf\xad\xac\xae\xae\ +\xad\xaf\xae\xae\xaf\xaf\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xb0\xae\xaf\ +\xb0\xb6\xb7\xb9\xa1\xa4\xa5\x81\x83\x85\x84\x84\x86\xb2\xb2\xb3\ +\xb5\xb2\xb4\xbb\xba\xba\xa3\xa2\xa4\x84\x85\x86\x86\x85\x85\xb3\ +\xb2\xb2\x00\x00\x00\xd7\xbc\xb1\xe1\xd6\xd1\xe1\xd8\xd5\xe1\xda\ +\xd7\xe1\xda\xd7\xe1\xda\xd7\xe2\xdb\xd8\xe2\xdb\xd8\xe2\xdb\xd8\ +\xe2\xdb\xd8\xe2\xdc\xda\xe2\xdc\xda\xe3\xdc\xd9\xe2\xdb\xd8\xe3\ +\xdc\xd9\xe3\xdb\xd8\xe3\xda\xd6\xe0\xd7\xd2\xdf\xd6\xd1\xe0\xd8\ +\xd5\xe0\xd8\xd4\xda\xd1\xcd\xd9\xcf\xcb\xdc\xd3\xd0\xe4\xdc\xd9\ +\xe8\xe1\xdd\xe6\xdf\xdc\xe8\xe1\xde\xe6\xe0\xdd\xe4\xde\xdc\xe1\ +\xdc\xdb\xe0\xd9\xd9\xdb\xd6\xd4\xd6\xd1\xcf\xd1\xcb\xc9\xc7\xc2\ +\xbf\xb8\xb4\xb0\xa6\xa3\x9f\x88\x88\x87\x60\x64\x66\x33\x39\x41\ +\x23\x2a\x33\x3d\x41\x48\x6e\x6d\x6d\x86\x83\x82\x96\x92\x91\x9f\ +\x9c\x9c\xa3\xa1\xa1\xa7\xa5\xa5\xa6\xa6\xa6\xa4\xa4\xa4\xa4\xa3\ +\xa4\xa1\xa1\xa1\x8a\x8c\x8d\x73\x77\x79\x74\x77\x78\x82\x83\x85\ +\x85\x87\x89\x7f\x82\x84\x7c\x80\x81\x80\x84\x85\x82\x85\x88\x87\ +\x8b\x8e\x86\x8b\x8d\x84\x89\x8c\x83\x89\x8c\x82\x88\x8c\x81\x87\ +\x8b\x81\x87\x8c\x80\x86\x8c\x7e\x84\x8a\x7c\x80\x85\x6f\x75\x7c\ +\x6a\x71\x79\x73\x7b\x81\x7b\x84\x89\x7b\x84\x89\x7b\x84\x88\x7c\ +\x85\x89\x7b\x84\x89\x7b\x84\x89\x7c\x85\x8c\x7b\x82\x89\x79\x83\ +\x8b\x79\x80\x89\x7a\x82\x89\x7a\x82\x89\x7b\x82\x89\x79\x80\x86\ +\x79\x7f\x85\x7d\x84\x8a\x80\x88\x8d\x5c\x66\x6c\x13\x18\x1c\x04\ +\x07\x09\x26\x2b\x2f\x5c\x5f\x62\x7a\x7c\x7f\x25\x2e\x34\x00\x01\ +\x01\x24\x26\x2a\x77\x79\x7d\x7c\x81\x86\x6c\x71\x77\x6d\x72\x76\ +\x86\x8a\x8e\x85\x88\x8c\x6d\x72\x76\x6e\x72\x77\x88\x8c\x8f\x90\ +\x94\x99\x7d\x82\x86\x6c\x71\x75\x87\x8a\x8e\x98\x9b\x9e\x96\x99\ +\x9d\x98\x9b\x9f\x98\x9b\x9f\x9a\x9d\xa1\x9b\x9e\xa2\x99\x9c\xa0\ +\x9b\x9e\xa2\x9d\x9f\xa3\x9f\xa2\xa6\x9d\xa0\xa3\x9c\xa0\xa1\x9c\ +\x9f\xa1\xa2\xa6\xa8\x9f\xa2\xa4\xa2\xa3\xa4\x9b\x9e\x9f\x22\x25\ +\x26\x79\x7e\x7f\xa4\xa6\xa6\x8d\x8d\x8f\x97\x97\x9a\xab\xaa\xab\ +\xa4\xa4\xa5\xa6\xa7\xa8\xac\xad\xae\xac\xac\xae\xaa\xac\xad\xac\ +\xae\xaf\xa9\xab\xac\xaa\xac\xac\xac\xad\xaf\xaf\xaf\xb0\xae\xae\ +\xaf\xaf\xb0\xb1\xae\xae\xaf\xae\xaf\xb0\xaf\xae\xb0\xb2\xb2\xb4\ +\xb5\xb6\xb7\xab\xae\xaf\x91\x93\x96\x76\x76\x79\xa4\xa1\xa3\xbc\ +\xb9\xbb\xb7\xb6\xb6\xab\xab\xac\x98\x99\x9a\x82\x80\x82\x00\x00\ +\x00\xa9\x87\x7e\xe0\xcc\xc4\xe3\xdb\xd7\xe1\xda\xd7\xe3\xdc\xd9\ +\xe4\xdd\xda\xe4\xdd\xda\xe3\xdd\xda\xe5\xdd\xda\xe4\xdd\xdb\xe3\ +\xdd\xda\xe5\xdd\xdb\xe2\xda\xd7\xe1\xd7\xd3\xdd\xd2\xcd\xda\xcf\ +\xc9\xd9\xce\xc7\xd7\xcc\xc5\xd8\xcd\xc8\xdc\xd3\xcf\xde\xd6\xd2\ +\xdb\xd2\xce\xd9\xd0\xcc\xdd\xd4\xd0\xe5\xdd\xd9\xe7\xe0\xdd\xe6\ +\xdf\xdc\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xdb\xe0\xda\xda\xdf\xd7\ +\xd7\xda\xd4\xd2\xd4\xce\xca\xcc\xc7\xc2\xc2\xbd\xba\xb3\xaf\xaa\ +\x9c\x9a\x94\x7a\x7b\x7b\x4f\x54\x59\x29\x2f\x37\x29\x2e\x36\x50\ +\x52\x56\x78\x77\x77\x8b\x86\x86\x98\x95\x95\xa1\x9f\x9f\xa5\xa3\ +\xa3\xa7\xa6\xa6\xa6\xa6\xa6\xa3\xa3\xa3\xa3\xa3\xa3\x9d\x9e\x9e\ +\x83\x86\x87\x71\x76\x77\x76\x79\x7a\x84\x85\x87\x83\x86\x87\x80\ +\x83\x84\x7e\x81\x82\x7f\x83\x84\x7f\x82\x86\x85\x89\x8d\x87\x8c\ +\x8f\x83\x88\x8b\x83\x88\x8c\x81\x87\x8c\x82\x88\x8c\x80\x86\x8a\ +\x7e\x86\x8b\x7d\x83\x88\x6e\x74\x79\x44\x4c\x59\x37\x41\x4e\x4f\ +\x56\x60\x70\x77\x7d\x7b\x84\x89\x7b\x84\x88\x7a\x83\x87\x7b\x84\ +\x88\x7b\x85\x8a\x7c\x85\x8c\x79\x82\x89\x79\x82\x89\x7b\x83\x8a\ +\x7a\x82\x89\x7b\x83\x8a\x7b\x82\x89\x7d\x83\x89\x7b\x80\x85\x7b\ +\x82\x87\x7b\x82\x87\x56\x61\x67\x18\x21\x26\x03\x07\x0a\x47\x4b\ +\x4d\x63\x67\x6b\x53\x5a\x61\x36\x43\x4b\x0d\x12\x16\x0a\x0b\x0d\ +\x69\x6c\x72\x86\x8a\x8e\x7c\x81\x85\x67\x6e\x71\x71\x76\x7a\x89\ +\x8c\x91\x86\x8b\x8f\x6d\x73\x77\x6e\x73\x77\x8c\x8f\x93\x8f\x94\ +\x97\x7f\x85\x89\x6e\x73\x78\x89\x8c\x91\x9a\x9d\xa1\x97\x9a\x9e\ +\x96\x99\x9d\x9a\x9d\xa0\x9b\x9e\xa1\x99\x9c\x9f\x9a\x9e\xa0\x9a\ +\x9d\xa0\x9b\x9e\xa2\x9f\xa2\xa5\x98\x9c\x9e\x9d\xa0\xa3\xa0\xa4\ +\xa6\x9e\xa1\xa4\xa2\xa5\xa7\x92\x97\x98\x27\x2d\x30\xa6\xa9\xa9\ +\xa0\xa2\xa2\x6d\x6e\x72\x4a\x4c\x52\xa3\xa3\xa5\xa8\xa8\xa9\xa6\ +\xa6\xa6\xab\xab\xab\xac\xad\xad\xad\xae\xaf\xae\xaf\xaf\xa9\xa8\ +\xa9\xac\xab\xac\xac\xad\xad\xb1\xb1\xb1\xb1\xb1\xb1\xad\xad\xae\ +\xac\xab\xac\xac\xac\xad\xb1\xb1\xb3\xaf\xaf\xb0\xb1\xb1\xb3\xb5\ +\xb5\xb7\xaf\xb0\xb2\x9e\x9e\xa0\x7e\x7d\x7f\x91\x8e\x92\xbd\xbd\ +\xbf\xb9\xb9\xb9\xb1\xb4\xb5\xa3\xa3\xa5\x00\x00\x00\x78\x62\x60\ +\xd4\xb6\xae\xdf\xd6\xd2\xd9\xcf\xcb\xd9\xcf\xcb\xdb\xd2\xcf\xda\ +\xd1\xce\xd8\xcf\xcc\xd9\xd1\xcd\xd9\xd0\xcb\xd8\xcf\xcb\xd6\xca\ +\xc6\xd2\xc5\xbe\xd0\xc1\xba\xcf\xc0\xb7\xcf\xc1\xb9\xd1\xc6\xbe\ +\xd4\xca\xc2\xd8\xce\xc7\xdc\xd3\xcf\xdb\xd2\xce\xdb\xd2\xce\xde\ +\xd5\xd1\xe3\xda\xd6\xe6\xe0\xdc\xe7\xe1\xdd\xe7\xe0\xdd\xe6\xe0\ +\xdd\xe3\xde\xdd\xe2\xdc\xdb\xdf\xda\xd9\xde\xd7\xd6\xd9\xd3\xd2\ +\xd4\xce\xca\xca\xc5\xc0\xbf\xba\xb6\xae\xaa\xa6\x92\x91\x8d\x6b\ +\x6e\x71\x3d\x43\x4a\x24\x2c\x34\x35\x39\x40\x60\x60\x63\x80\x7e\ +\x80\x92\x8f\x8f\x9d\x9a\x9b\xa1\x9f\x9f\xa5\xa4\xa4\xa6\xa6\xa6\ +\xa6\xa5\xa5\xa2\xa3\xa3\xa3\xa3\xa3\x96\x97\x97\x7b\x7e\x80\x6d\ +\x71\x73\x74\x77\x78\x83\x85\x85\x80\x83\x84\x7e\x82\x83\x80\x84\ +\x85\x7a\x7e\x7f\x7f\x82\x85\x82\x86\x8a\x85\x89\x8d\x83\x88\x8b\ +\x82\x88\x8b\x82\x88\x8b\x81\x87\x8c\x80\x87\x8b\x7f\x89\x8c\x7f\ +\x85\x89\x65\x6b\x73\x31\x3c\x48\x2a\x34\x3f\x3d\x45\x4f\x67\x6c\ +\x73\x7d\x83\x89\x7b\x83\x88\x7a\x83\x87\x7b\x84\x88\x7a\x84\x89\ +\x79\x81\x88\x79\x82\x88\x79\x81\x89\x7b\x83\x8a\x7b\x83\x8a\x7b\ +\x82\x89\x7c\x84\x8b\x7e\x85\x8c\x7b\x82\x86\x7c\x82\x87\x77\x7d\ +\x81\x62\x6a\x6e\x2e\x3a\x41\x0a\x16\x1d\x52\x59\x5d\x73\x7a\x7e\ +\x51\x5c\x63\x46\x52\x5b\x26\x33\x3c\x26\x2f\x35\x57\x5e\x65\x75\ +\x7a\x7f\x85\x89\x8d\x7b\x81\x83\x65\x6c\x70\x71\x75\x7a\x8f\x92\ +\x96\x89\x8d\x91\x72\x76\x7b\x72\x76\x7b\x8f\x93\x96\x93\x97\x9a\ +\x83\x88\x8c\x6c\x71\x76\x8b\x8e\x93\x98\x9a\x9e\x98\x9b\x9e\x9b\ +\x9f\xa1\x9c\x9f\xa2\x9a\x9e\xa0\x99\x9d\x9f\x9a\x9e\xa1\x9c\x9f\ +\xa3\x9f\xa2\xa6\x9d\xa0\xa4\x9e\xa1\xa5\xa0\xa3\xa7\x9b\x9e\xa1\ +\xa1\xa5\xa6\x95\x9a\x9c\x4f\x57\x5b\xad\xae\xae\x94\x97\x96\x5e\ +\x63\x66\x81\x84\x87\xa9\xa9\xaa\xa9\xa9\xab\xa6\xa7\xa8\xa9\xa9\ +\xaa\xab\xab\xab\xac\xad\xad\xac\xab\xad\xad\xad\xad\xa5\xa5\xa5\ +\xae\xae\xae\xaf\xaf\xaf\xb1\xb1\xb1\xad\xad\xad\xad\xac\xad\xac\ +\xac\xad\xb0\xaf\xb1\xb0\xb0\xb2\xb2\xb3\xb4\xb2\xb4\xb5\xb2\xb3\ +\xb5\xba\xb9\xbb\xaf\xaf\xb1\x87\x87\x8b\x6f\x70\x74\xb4\xb3\xb3\ +\xb9\xba\xbb\xb4\xb6\xb6\x00\x00\x00\x97\x8a\x86\xd3\xbf\xba\xdd\ +\xd5\xd1\xd3\xc9\xc5\xcc\xc1\xbd\xcf\xc5\xc3\xcb\xc2\xbf\xc5\xbc\ +\xba\xc4\xbb\xb8\xc5\xbd\xb9\xc8\xc0\xbc\xc6\xbd\xb6\xc6\xbc\xb4\ +\xc7\xbd\xb4\xc9\xbf\xb5\xce\xc3\xb9\xd3\xc8\xc0\xd7\xcd\xc5\xda\ +\xd0\xc9\xdf\xd7\xd2\xdf\xd6\xd3\xdd\xd4\xd0\xdf\xd6\xd2\xe4\xdb\ +\xd8\xe7\xe0\xdd\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe3\xdd\xdd\ +\xe0\xdc\xdb\xdf\xdb\xd9\xdc\xd5\xd3\xd6\xd0\xcd\xd0\xc9\xc5\xc5\ +\xc0\xba\xb8\xb4\xaf\xa5\xa1\x9f\x86\x86\x85\x5a\x5f\x62\x30\x39\ +\x40\x25\x2e\x36\x44\x47\x4c\x71\x6e\x70\x89\x86\x88\x98\x94\x96\ +\xa1\x9e\xa0\xa3\xa2\xa3\xa5\xa5\xa5\xa7\xa7\xa7\xa6\xa5\xa5\xa3\ +\xa3\xa3\xa1\xa1\xa1\x8e\x8f\x90\x74\x77\x7a\x6e\x72\x74\x79\x7c\ +\x7d\x83\x85\x85\x7f\x82\x83\x7e\x80\x81\x7f\x84\x85\x79\x7d\x7f\ +\x7c\x80\x83\x7f\x82\x86\x84\x88\x8b\x85\x89\x8d\x83\x88\x8d\x83\ +\x89\x8d\x81\x87\x8d\x7d\x83\x89\x7d\x84\x8a\x7c\x82\x89\x64\x6d\ +\x75\x3c\x48\x52\x37\x3f\x4a\x48\x4f\x59\x60\x64\x6e\x7b\x7f\x85\ +\x7d\x84\x89\x7a\x83\x87\x7a\x83\x88\x7b\x83\x89\x7b\x83\x8a\x79\ +\x82\x89\x7c\x83\x8c\x7c\x85\x8c\x7d\x85\x8c\x7b\x82\x89\x7c\x82\ +\x89\x7a\x81\x87\x79\x80\x85\x7a\x80\x85\x7a\x80\x84\x70\x77\x7b\ +\x49\x55\x5d\x46\x54\x5b\x6c\x75\x7a\x7c\x83\x88\x73\x7a\x7f\x44\ +\x51\x59\x3d\x4a\x54\x71\x77\x7a\x73\x79\x7c\x5b\x62\x66\x77\x7b\ +\x7e\x88\x8c\x8d\x7a\x7f\x83\x69\x70\x73\x70\x74\x77\x72\x74\x77\ +\x7b\x7f\x81\x6d\x73\x77\x72\x78\x7c\x92\x94\x98\x96\x9a\x9d\x85\ +\x8a\x8d\x6a\x6f\x72\x87\x89\x8d\x9b\x9d\x9e\x99\x9c\x9f\x9a\x9d\ +\xa1\x9a\x9d\xa1\x99\x9d\xa0\x9a\x9d\xa1\x9d\xa0\xa4\x9c\x9f\xa3\ +\x9d\xa0\xa4\x9f\xa2\xa6\xa2\xa5\xa9\xa3\xa6\xaa\x9f\xa3\xa4\x9a\ +\x9d\xa0\x74\x7a\x7d\xa4\xa6\xa7\x8a\x8c\x8d\x5c\x61\x63\xae\xad\ +\xad\xae\xac\xad\xb1\xae\xaf\x9f\x9d\x9d\xa5\xa5\xa5\xa9\xa9\xa9\ +\xac\xac\xae\xab\xaa\xad\xac\xac\xad\xac\xab\xac\xb1\xb1\xb1\xad\ +\xad\xad\xb0\xb0\xb0\xb0\xb0\xb0\xb2\xb2\xb2\xb0\xaf\xb0\xae\xae\ +\xaf\xb1\xb0\xb2\xb4\xb4\xb5\xb0\xb0\xb1\xb8\xb7\xba\xb7\xb9\xba\ +\xb3\xb3\xb5\xb1\xb2\xb3\x9e\xa1\xa4\x6c\x6d\x71\xa2\xa2\xa4\xbb\ +\xbb\xba\x00\x00\x00\xc9\xbc\xb8\xdd\xd2\xce\xe1\xda\xd7\xd8\xd0\ +\xcd\xce\xc4\xc0\xd2\xca\xc6\xd4\xcc\xc9\xce\xc6\xc3\xcb\xc4\xc0\ +\xcc\xc3\xbf\xcc\xc3\xbf\xcb\xc1\xbd\xcc\xc3\xbc\xd1\xc7\xbf\xd5\ +\xcb\xc3\xda\xd0\xc9\xdd\xd4\xd0\xdf\xd6\xd3\xe2\xdb\xd7\xe2\xdb\ +\xd7\xde\xd5\xd2\xdd\xd4\xd0\xe0\xd7\xd3\xe6\xe0\xdd\xe6\xe0\xdd\ +\xe6\xdf\xdc\xe6\xe1\xde\xe4\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\ +\xda\xd8\xda\xd4\xd2\xd5\xce\xcb\xcd\xc7\xc2\xc2\xbd\xb9\xb2\xad\ +\xac\x9b\x98\x99\x78\x78\x7b\x47\x50\x55\x27\x32\x39\x2f\x36\x3e\ +\x54\x56\x5a\x7c\x79\x7b\x8f\x8c\x8e\x9c\x99\x9b\xa2\x9f\xa1\xa4\ +\xa3\xa3\xa8\xa8\xa8\xa7\xa7\xa7\xa5\xa5\xa5\xa5\xa4\xa5\xa0\x9f\ +\xa1\x87\x89\x8a\x6f\x72\x74\x70\x74\x75\x7c\x7e\x7f\x83\x85\x87\ +\x7e\x82\x84\x7c\x80\x81\x79\x7d\x7e\x76\x7a\x7c\x77\x7b\x7d\x7a\ +\x7d\x81\x80\x83\x87\x84\x88\x8d\x84\x88\x8d\x81\x87\x8c\x81\x87\ +\x8c\x80\x86\x8b\x7f\x85\x8b\x7c\x84\x8b\x64\x6f\x76\x44\x52\x5b\ +\x3c\x47\x51\x3f\x47\x54\x57\x5c\x67\x75\x79\x80\x7d\x84\x88\x7b\ +\x85\x88\x7c\x85\x8a\x7b\x84\x8a\x7b\x83\x8a\x7a\x82\x89\x79\x81\ +\x88\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x83\x8b\x7c\x84\x8b\ +\x7b\x84\x89\x7c\x84\x89\x7e\x84\x88\x76\x7d\x81\x66\x70\x75\x70\ +\x77\x7d\x7b\x81\x86\x7f\x86\x8b\x7e\x84\x89\x6d\x76\x7c\x57\x61\ +\x68\x79\x7d\x82\x7b\x7f\x82\x4d\x52\x57\x4e\x53\x58\x7e\x81\x84\ +\x89\x8e\x90\x77\x7d\x7f\x33\x39\x3c\x3f\x41\x45\x7e\x81\x84\x8b\ +\x91\x94\x72\x78\x7c\x74\x78\x7c\x94\x96\x99\x95\x99\x9a\x87\x8c\ +\x8e\x65\x67\x69\x89\x88\x8a\x9b\x9e\x9f\x97\x9b\x9e\x99\x9c\xa0\ +\x99\x9c\xa0\x9c\x9f\xa3\x9d\xa0\xa4\x9d\xa0\xa4\x99\x9c\xa0\x9d\ +\xa0\xa4\xa0\xa3\xa7\xa4\xa7\xab\xa0\xa4\xa5\xa1\xa5\xa7\x95\x99\ +\x9a\x84\x87\x89\x53\x54\x56\x4c\x4a\x4b\x5c\x58\x58\x30\x2d\x2e\ +\x10\x0d\x0e\x41\x3f\x41\x9b\x9a\x9b\xae\xae\xaf\xa8\xa9\xa9\xae\ +\xad\xae\xab\xab\xab\xb2\xb2\xb2\xb0\xb0\xb0\xaf\xaf\xaf\xae\xae\ +\xae\xb3\xb3\xb3\xb3\xb3\xb3\xb2\xb2\xb2\xaf\xaf\xaf\xb3\xb3\xb4\ +\xb2\xb1\xb3\xb3\xb2\xb4\xb7\xb7\xb8\xb2\xb1\xb3\xb4\xb3\xb5\xb5\ +\xb6\xb7\xb7\xb7\xb9\xb2\xb4\xb5\x81\x81\x83\x89\x87\x87\x00\x00\ +\x00\xd2\xc5\xc0\xdd\xd0\xcb\xe0\xd5\xd0\xd4\xc9\xc5\xcc\xc1\xbd\ +\xd6\xcb\xc8\xdc\xd4\xd1\xdc\xd5\xd2\xda\xd2\xcf\xda\xd3\xcf\xdb\ +\xd4\xd0\xdc\xd5\xd0\xdd\xd5\xd1\xdf\xd6\xd3\xe1\xd8\xd5\xe2\xda\ +\xd7\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xda\xd6\xdf\xd7\xd3\xdc\xd3\xcf\ +\xde\xd4\xd0\xe3\xdc\xd9\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\xe5\ +\xe0\xdd\xe4\xde\xdb\xe1\xdc\xda\xe0\xdb\xda\xdd\xd8\xd4\xd9\xd3\ +\xd0\xd3\xcc\xc8\xc9\xc4\xbf\xbd\xb9\xb6\xab\xa9\xa7\x8f\x8f\x8f\ +\x69\x6d\x71\x37\x41\x48\x22\x2d\x35\x3a\x40\x48\x67\x66\x6a\x85\ +\x81\x83\x94\x91\x93\x9d\x9b\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa5\xa5\ +\xa5\xa6\xa6\xa6\xa6\xa6\xa6\xa4\xa3\xa3\x9c\x9c\x9d\x7f\x83\x84\ +\x6c\x71\x72\x6d\x71\x74\x7e\x81\x83\x80\x84\x86\x7e\x83\x83\x7d\ +\x81\x82\x72\x76\x79\x73\x76\x7a\x77\x7a\x7e\x7b\x7e\x82\x7c\x7f\ +\x83\x81\x85\x88\x82\x87\x8a\x7f\x84\x89\x7d\x83\x87\x7d\x83\x8a\ +\x80\x87\x8e\x7c\x84\x8b\x6b\x75\x7c\x4d\x59\x62\x44\x4f\x5a\x39\ +\x44\x50\x47\x4e\x5a\x73\x77\x7f\x7d\x84\x88\x7c\x84\x88\x7a\x83\ +\x87\x79\x82\x87\x7b\x84\x8a\x7b\x83\x8a\x7b\x82\x8a\x7a\x82\x89\ +\x7c\x84\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7d\ +\x85\x8b\x7c\x84\x89\x79\x81\x85\x77\x7f\x83\x7d\x85\x89\x80\x87\ +\x8c\x7f\x87\x8b\x81\x87\x8c\x83\x89\x8e\x74\x7a\x7f\x53\x5b\x60\ +\x31\x36\x3c\x2f\x33\x38\x53\x58\x5b\x57\x5c\x5f\x7d\x82\x83\x62\ +\x67\x66\x12\x14\x15\x1d\x1e\x21\x4a\x4d\x51\x80\x83\x87\x8e\x92\ +\x95\x70\x77\x7a\x72\x76\x79\x93\x97\x98\x96\x99\x9a\x3a\x3b\x3b\ +\x1c\x1b\x1c\x81\x7e\x7f\x97\x9a\x9b\x97\x9b\x9e\x98\x9b\x9f\x9b\ +\x9e\xa2\x9c\x9f\xa3\x9a\x9d\xa1\x9b\x9e\xa2\x9a\x9d\xa1\x9d\xa0\ +\xa4\x9f\xa0\xa4\xa3\xa6\xa8\xa6\xa9\xaa\xa2\xa5\xa6\x8a\x8e\x90\ +\x35\x3b\x3e\x1a\x20\x24\x3f\x47\x4a\x68\x70\x73\x3a\x40\x44\x6c\ +\x70\x74\xa5\xa5\xa7\x99\x97\x9a\xa2\xa2\xa2\xac\xac\xac\xad\xad\ +\xae\xb0\xb0\xb1\xae\xad\xae\xaa\xab\xaa\xad\xad\xad\xaf\xaf\xaf\ +\xb0\xb0\xb0\xb1\xb1\xb1\xb2\xb2\xb2\xb4\xb4\xb5\xb2\xb1\xb3\xb3\ +\xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\xb6\xbb\xba\ +\xbc\xbc\xbb\xbd\xaf\xb2\xb3\x97\x99\x9a\x00\x00\x00\xd4\xc9\xc2\ +\xdd\xd2\xcd\xd4\xc9\xc4\xc2\xb8\xb4\xc6\xbc\xb7\xd7\xcd\xc9\xe0\ +\xd9\xd6\xe0\xda\xd7\xe0\xdb\xd8\xe2\xdb\xd8\xe1\xda\xd7\xe2\xdb\ +\xd8\xe2\xdb\xd8\xe3\xdb\xd8\xe2\xd9\xd6\xe2\xda\xd7\xe2\xda\xd7\ +\xe3\xdc\xd9\xe3\xdc\xd9\xdf\xd7\xd3\xdd\xd4\xd0\xe0\xd7\xd3\xe5\ +\xdd\xda\xe7\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdd\ +\xda\xe1\xdc\xd9\xde\xd9\xd7\xdc\xd7\xd6\xd7\xd1\xd0\xd0\xc9\xc6\ +\xc4\xbf\xbc\xb7\xb3\xb1\xa5\xa2\xa2\x83\x84\x86\x5a\x5f\x67\x2e\ +\x39\x41\x25\x2f\x38\x49\x4d\x55\x74\x72\x74\x8a\x87\x88\x98\x95\ +\x97\xa1\x9e\xa0\xa5\xa4\xa4\xa7\xa6\xa6\xa7\xa7\xa7\xa6\xa6\xa6\ +\xa4\xa3\xa4\xa3\xa3\xa3\x93\x93\x94\x77\x7b\x7d\x6b\x70\x73\x72\ +\x74\x78\x83\x84\x87\x82\x84\x87\x80\x82\x86\x82\x84\x87\x74\x78\ +\x7b\x70\x74\x77\x75\x79\x7a\x7a\x7f\x81\x79\x7e\x82\x7e\x82\x85\ +\x82\x86\x8a\x7f\x85\x89\x7e\x83\x88\x7e\x83\x89\x7c\x83\x8a\x7d\ +\x84\x8b\x71\x7b\x82\x4b\x5b\x62\x2c\x39\x45\x22\x2e\x39\x39\x42\ +\x4e\x6f\x74\x7b\x7e\x84\x89\x7d\x85\x89\x7b\x84\x87\x7a\x83\x88\ +\x7c\x84\x8a\x7a\x82\x89\x7b\x83\x8a\x7b\x83\x8a\x7e\x86\x8d\x80\ +\x87\x8f\x7f\x88\x8e\x7d\x86\x8c\x7c\x83\x8a\x7c\x85\x8b\x7b\x83\ +\x88\x7b\x82\x88\x7b\x82\x88\x7c\x83\x88\x80\x86\x8b\x80\x87\x8c\ +\x84\x8c\x91\x86\x8c\x91\x82\x88\x8d\x6a\x72\x79\x09\x10\x14\x1a\ +\x1b\x1d\x45\x49\x4d\x5e\x61\x66\x6e\x70\x72\x5c\x60\x60\x18\x19\ +\x19\x03\x04\x04\x29\x2b\x2e\x75\x78\x7b\x93\x97\x98\x92\x97\x98\ +\x74\x7a\x7e\x73\x77\x7a\x84\x86\x87\x09\x09\x09\x00\x00\x00\x2b\ +\x2e\x30\x86\x8a\x8c\x9a\x9d\xa0\x96\x99\x9c\x9a\x9c\xa0\x9c\x9f\ +\xa2\x97\x9a\x9e\x98\x9b\x9f\x9a\x9c\x9f\x9c\x9e\xa2\x9d\x9e\xa2\ +\xa2\xa4\xa6\xa9\xab\xac\xa5\xa7\xaa\xa5\xa8\xab\xa6\xab\xae\xa1\ +\xa8\xac\xa5\xac\xb0\x9e\xa4\xa7\x63\x69\x6b\x8d\x90\x92\x3f\x3f\ +\x42\x23\x25\x29\x5a\x5c\x5e\x9e\x9e\x9f\xb2\xb1\xb2\xaf\xaf\xb0\ +\xaf\xae\xb0\xae\xae\xae\xad\xad\xae\xaf\xaf\xaf\xb2\xb2\xb2\xad\ +\xad\xae\xaf\xaf\xaf\xb3\xb3\xb3\xb0\xb0\xb1\xb7\xb6\xb8\xb2\xb1\ +\xb3\xb1\xb0\xb2\xb6\xb5\xb8\xb6\xb4\xb7\xb6\xb6\xb7\xbb\xba\xbb\ +\xb7\xb8\xb9\xba\xbb\xbd\x00\x00\x00\xd4\xc8\xc0\xd4\xca\xc3\xc2\ +\xb7\xb1\xbf\xb6\xb2\xcd\xc2\xbe\xdc\xd1\xce\xe0\xd8\xd5\xe1\xda\ +\xd7\xe1\xda\xd7\xe1\xda\xd7\xe0\xd9\xd6\xe1\xda\xd7\xe2\xdb\xd8\ +\xe3\xdb\xd8\xe3\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe5\xde\xdb\xe3\ +\xdc\xd9\xdf\xd6\xd3\xde\xd6\xd2\xe1\xd9\xd6\xe6\xe0\xdd\xe7\xe1\ +\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe0\xda\xd7\ +\xdd\xd8\xd5\xda\xd5\xd4\xd4\xcf\xcd\xcd\xc8\xc6\xc2\xbd\xbd\xb2\ +\xae\xad\x98\x97\x97\x73\x77\x7a\x47\x50\x58\x27\x32\x39\x2f\x37\ +\x3f\x5b\x5c\x62\x7d\x79\x7b\x91\x8c\x8d\x9b\x97\x98\xa2\xa0\xa0\ +\xa5\xa3\xa3\xa6\xa4\xa5\xa7\xa7\xa7\xa5\xa5\xa5\xa3\xa3\xa3\xa1\ +\xa0\xa1\x8c\x8c\x8d\x70\x74\x77\x6b\x70\x74\x77\x78\x7c\x83\x83\ +\x85\x82\x84\x85\x80\x82\x83\x7e\x81\x82\x73\x77\x78\x6c\x70\x71\ +\x73\x76\x78\x78\x7c\x7f\x77\x7b\x7f\x78\x7c\x80\x81\x85\x88\x82\ +\x88\x8c\x7f\x85\x8a\x7e\x84\x89\x7e\x86\x8c\x7c\x84\x8b\x73\x7d\ +\x84\x51\x61\x68\x21\x33\x3c\x15\x24\x2e\x3e\x4a\x55\x6e\x72\x79\ +\x74\x78\x7d\x72\x78\x7d\x78\x7e\x83\x7a\x81\x86\x78\x80\x86\x78\ +\x80\x87\x7b\x83\x8a\x7b\x83\x8a\x7d\x86\x8d\x7d\x87\x8e\x7c\x86\ +\x8d\x7c\x84\x8b\x7b\x84\x8a\x7d\x86\x8c\x7e\x86\x8d\x7e\x86\x8d\ +\x7c\x84\x8b\x7b\x82\x88\x7d\x83\x88\x81\x89\x8d\x85\x8c\x90\x84\ +\x8c\x90\x81\x87\x8a\x77\x7d\x80\x1c\x25\x29\x01\x01\x02\x32\x35\ +\x37\x85\x88\x89\x73\x77\x77\x3c\x40\x42\x10\x12\x15\x00\x00\x00\ +\x43\x46\x47\x6b\x6f\x73\x85\x87\x88\x93\x96\x97\x92\x96\x99\x77\ +\x7b\x7f\x2e\x31\x35\x00\x00\x00\x0f\x10\x11\x6c\x71\x74\x74\x78\ +\x7a\x79\x7d\x7f\x97\x9b\x9c\x9b\x9e\x9f\x9e\xa0\xa1\x9c\x9e\xa1\ +\x98\x9b\x9f\x9c\x9e\xa0\x9d\xa0\xa1\x9e\xa0\xa1\xa3\xa5\xa6\xa7\ +\xa8\xaa\xa5\xa6\xa9\xa2\xa4\xa7\xa8\xaa\xab\xa3\xa6\xa7\x9b\x9e\ +\x9f\x60\x64\x65\x6a\x6e\x6f\xa1\xa3\xa4\x33\x36\x37\x93\x98\x98\ +\xb4\xb8\xb8\x5d\x5d\x60\xaa\xaa\xab\xa1\xa0\xa1\xa1\xa1\xa1\xac\ +\xac\xae\xb1\xb1\xb3\xb0\xaf\xb0\xaf\xaf\xb0\xaf\xaf\xaf\xb1\xb1\ +\xb1\xb2\xb2\xb2\xb5\xb5\xb5\xb9\xb8\xba\xb5\xb4\xb6\xb1\xb0\xb2\ +\xb4\xb3\xb5\xb6\xb5\xb7\xb9\xb8\xb9\xbc\xbc\xbd\xb7\xb6\xb8\xba\ +\xb8\xba\x00\x00\x00\xc0\xb0\xa9\xc5\xb9\xb2\xbd\xb1\xab\xc6\xb8\ +\xb3\xd6\xc9\xc5\xdf\xd6\xd3\xe1\xd8\xd7\xe0\xd9\xd7\xe2\xdb\xd8\ +\xe2\xdb\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdb\xd8\xe3\xdc\xd9\xe3\ +\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe2\xdc\xd9\xe1\xda\ +\xd7\xe2\xda\xd6\xe4\xdd\xda\xe6\xe1\xde\xe6\xe1\xde\xe5\xe1\xde\ +\xe5\xe1\xde\xe4\xde\xdb\xe2\xdd\xda\xdf\xda\xd7\xdd\xd8\xd5\xd8\ +\xd3\xd2\xd2\xcd\xcb\xc8\xc3\xc2\xbc\xb6\xb7\xaa\xa5\xa6\x8c\x8c\ +\x8d\x63\x6a\x6f\x37\x43\x4b\x28\x32\x3a\x40\x45\x4c\x6d\x6b\x6e\ +\x85\x82\x83\x95\x90\x92\x9e\x9a\x9b\xa4\xa2\xa2\xa7\xa6\xa6\xa7\ +\xa7\xa7\xa6\xa5\xa6\xa5\xa4\xa6\xa4\xa3\xa5\x9c\x9b\x9d\x81\x83\ +\x85\x69\x70\x73\x68\x6d\x70\x7a\x7c\x7e\x83\x84\x85\x7c\x7e\x7f\ +\x75\x78\x79\x72\x74\x75\x71\x74\x75\x68\x6d\x6d\x71\x74\x76\x78\ +\x7c\x7f\x79\x7e\x81\x77\x7c\x7f\x7c\x80\x84\x7f\x85\x89\x80\x86\ +\x8b\x7c\x82\x87\x7e\x84\x8b\x7f\x86\x8c\x78\x80\x86\x6e\x79\x7e\ +\x5b\x6a\x72\x53\x62\x6a\x62\x6d\x72\x6b\x71\x76\x47\x4e\x56\x37\ +\x3f\x49\x60\x64\x6b\x77\x7c\x82\x7b\x81\x88\x79\x81\x87\x7b\x83\ +\x8a\x7e\x86\x8d\x7e\x87\x8e\x7d\x86\x8d\x7d\x85\x8c\x7e\x86\x8d\ +\x80\x88\x8f\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8d\x7d\x86\x8c\x7c\ +\x84\x88\x7e\x86\x8a\x81\x88\x8d\x82\x88\x8d\x84\x8a\x8e\x75\x7b\ +\x7e\x45\x4b\x4e\x3c\x43\x46\x0e\x12\x15\x27\x29\x2c\x82\x84\x85\ +\x5a\x5c\x5d\x16\x19\x1c\x18\x1c\x1f\x09\x0c\x0e\x52\x55\x55\x87\ +\x8a\x8c\x71\x75\x78\x80\x84\x86\x95\x96\x98\x8f\x91\x93\x13\x15\ +\x18\x00\x00\x00\x28\x2b\x2c\x98\x9d\x9e\x7a\x7f\x82\x4d\x54\x58\ +\x7d\x81\x83\x99\x9b\x9d\xa1\xa2\xa3\xa0\xa4\xa4\x9d\xa0\xa2\xa0\ +\xa2\xa3\xa1\xa3\xa4\x9f\xa1\xa2\xa5\xa7\xa8\xa8\xa9\xab\xa3\xa5\ +\xa8\xa7\xa9\xaa\xa9\xab\xae\xa8\xaa\xad\xa3\xa5\xa9\x69\x6d\x6f\ +\x6e\x72\x73\xa8\xaa\xac\x6a\x6f\x70\x8e\x92\x91\xa0\xa2\xa1\x1a\ +\x1a\x1c\xa1\xa1\xa4\x6a\x6a\x6f\x77\x77\x7b\xaf\xb1\xb2\xb2\xb3\ +\xb5\xad\xad\xaf\xb2\xb1\xb2\xb3\xb3\xb3\xb3\xb3\xb3\xb1\xb0\xb0\ +\xb6\xb5\xb6\xb7\xb6\xb8\xb1\xb0\xb2\xb5\xb4\xb6\xb5\xb4\xb6\xb6\ +\xb5\xb7\xb9\xb8\xba\xb9\xb7\xba\xb4\xb4\xb5\xb7\xb7\xb8\x00\x00\ +\x00\xb0\xa7\xa2\xc9\xc0\xbb\xd0\xc7\xc2\xd7\xce\xc9\xdf\xd8\xd4\ +\xe1\xda\xd8\xe0\xd8\xd5\xe1\xd9\xd5\xe2\xdb\xd7\xe3\xdc\xd9\xe3\ +\xdc\xd9\xe3\xdc\xd9\xe2\xda\xd7\xe2\xd9\xd5\xe3\xda\xd7\xe2\xdb\ +\xd8\xe3\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe4\xdd\xda\xe5\xde\xda\ +\xe6\xdf\xdc\xe7\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe5\xdf\xdc\xe2\ +\xdd\xda\xe1\xdc\xd9\xdd\xd8\xd4\xdb\xd6\xd3\xd6\xd1\xcf\xcf\xca\ +\xc8\xc4\xbf\xbf\xb6\xb1\xb2\xa1\x9d\x9d\x80\x7f\x81\x55\x5b\x62\ +\x2e\x3a\x42\x29\x33\x3b\x50\x53\x57\x77\x74\x75\x8c\x87\x88\x99\ +\x94\x95\xa1\x9d\x9e\xa4\xa2\xa2\xa8\xa6\xa7\xa8\xa6\xa8\xa7\xa5\ +\xa7\xa3\xa3\xa4\xa0\x9f\xa1\x90\x90\x92\x74\x79\x7c\x66\x6d\x70\ +\x6b\x70\x72\x7d\x7f\x81\x81\x83\x85\x71\x73\x74\x5d\x61\x64\x5b\ +\x5e\x60\x68\x6a\x6b\x6a\x6d\x6d\x70\x73\x75\x7a\x7d\x81\x79\x7d\ +\x82\x78\x7c\x80\x77\x7c\x7f\x7d\x82\x85\x7d\x82\x87\x7c\x82\x87\ +\x7d\x83\x89\x7d\x83\x89\x7d\x84\x8a\x7b\x83\x88\x79\x82\x87\x74\ +\x7e\x83\x77\x80\x84\x60\x6a\x70\x20\x2d\x38\x0e\x1a\x26\x40\x46\ +\x50\x6c\x70\x76\x79\x80\x84\x79\x82\x85\x7d\x85\x8c\x7f\x87\x8e\ +\x7e\x86\x8c\x7d\x86\x8d\x7d\x85\x8c\x7c\x85\x8c\x7e\x87\x8e\x81\ +\x88\x90\x80\x88\x8f\x7e\x86\x8d\x7d\x86\x8b\x7c\x85\x8a\x7d\x86\ +\x8a\x7f\x88\x8c\x80\x8a\x8e\x84\x8c\x8f\x59\x64\x66\x03\x08\x0b\ +\x3b\x3f\x42\x29\x30\x32\x37\x3b\x3f\x6b\x6e\x70\x44\x47\x48\x06\ +\x08\x0a\x17\x1c\x1e\x24\x2c\x2f\x6a\x6e\x6f\x95\x97\x98\x89\x8e\ +\x8f\x6a\x70\x73\x83\x85\x88\x5e\x60\x62\x00\x00\x00\x04\x05\x05\ +\x48\x4c\x4e\x8b\x8d\x8f\x70\x75\x77\x75\x7c\x7e\x7e\x81\x84\x7b\ +\x7d\x80\x99\x9b\x9c\xa1\xa4\xa5\x9f\xa2\xa3\xa5\xa7\xa8\xa4\xa6\ +\xa7\xa3\xa5\xa6\xa8\xaa\xab\xa7\xa9\xaa\xa2\xa4\xa6\xab\xac\xaf\ +\xaa\xab\xaf\xaa\xab\xaf\xab\xac\xb0\xab\xae\xb1\x9e\xa2\xa3\xa5\ +\xa7\xa9\x9f\xa3\xa3\x82\x87\x86\x4c\x4f\x50\x33\x36\x39\xa5\xa7\ +\xaa\x5a\x5c\x61\x80\x81\x86\xb3\xb4\xb6\xaf\xb1\xb3\xad\xae\xaf\ +\xae\xae\xaf\xb3\xb2\xb3\xb2\xb2\xb2\xb2\xb2\xb2\xb6\xb5\xb7\xb4\ +\xb4\xb5\xb2\xb1\xb3\xb8\xb7\xb8\xb6\xb5\xb7\xb3\xb2\xb4\xba\xb9\ +\xbb\xb3\xb2\xb4\xb6\xb5\xb7\xbc\xbb\xbd\x00\x00\x00\xc2\xb8\xb1\ +\xd9\xcf\xc9\xdf\xd7\xd2\xe2\xdb\xd6\xe3\xdd\xd8\xe2\xdb\xd8\xe0\ +\xd8\xd4\xe0\xd7\xd2\xdf\xd8\xd4\xe0\xd9\xd5\xe0\xd9\xd5\xe2\xdb\ +\xd8\xe3\xdc\xd9\xe3\xdc\xd9\xe4\xdd\xda\xe4\xdd\xda\xe5\xde\xdb\ +\xe5\xdf\xdc\xe5\xdf\xdc\xe6\xdf\xdc\xe6\xe0\xdc\xe6\xe0\xdd\xe7\ +\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe5\xdf\xdc\xe3\xdd\xda\xe1\xdc\ +\xd9\xdc\xd7\xd4\xd9\xd4\xd2\xd4\xce\xcc\xcb\xc6\xc5\xc0\xbb\xbb\ +\xb0\xab\xac\x97\x94\x94\x71\x73\x75\x44\x4c\x53\x28\x33\x3c\x30\ +\x39\x3f\x61\x61\x63\x7f\x7b\x79\x91\x8c\x8c\x9d\x99\x9a\xa3\x9f\ +\xa1\xa6\xa2\xa3\xa7\xa5\xa6\xa8\xa6\xa6\xa5\xa4\xa5\xa2\xa2\xa3\ +\x96\x97\x98\x7c\x80\x82\x69\x6f\x73\x66\x6d\x70\x73\x77\x79\x82\ +\x84\x85\x7e\x80\x81\x6a\x6d\x6f\x45\x4e\x52\x3f\x45\x49\x58\x5b\ +\x5d\x66\x6a\x6b\x6f\x72\x75\x7a\x7e\x82\x79\x7d\x82\x78\x7c\x80\ +\x74\x78\x7c\x79\x7d\x82\x7d\x82\x87\x7c\x82\x87\x7c\x82\x87\x7d\ +\x83\x88\x7b\x82\x87\x7d\x85\x8a\x7b\x84\x89\x7b\x83\x89\x78\x81\ +\x87\x58\x65\x6e\x21\x34\x41\x33\x3e\x4a\x57\x5e\x66\x63\x69\x70\ +\x76\x7c\x81\x7a\x82\x86\x7d\x85\x8c\x80\x88\x8e\x7f\x88\x8d\x7e\ +\x86\x8d\x7b\x83\x89\x7d\x85\x8c\x7c\x84\x8b\x7f\x87\x8f\x81\x89\ +\x91\x82\x8a\x91\x7f\x87\x8d\x7e\x86\x8b\x80\x87\x8c\x81\x88\x8c\ +\x82\x8a\x8e\x85\x8d\x91\x5b\x68\x6b\x02\x06\x0a\x0c\x0f\x12\x4d\ +\x54\x57\x7f\x82\x83\x70\x74\x75\x30\x37\x3a\x00\x00\x00\x0e\x12\ +\x14\x50\x56\x59\x72\x76\x79\x86\x88\x89\x97\x99\x9a\x90\x94\x95\ +\x6e\x73\x77\x19\x1b\x1d\x00\x00\x00\x1a\x1c\x1d\x7d\x80\x84\x60\ +\x65\x68\x54\x5b\x5d\x98\x9b\x9c\x9a\x9d\x9e\x7c\x7f\x82\x7a\x7d\ +\x7f\x93\x96\x96\xa0\xa2\xa3\xa3\xa5\xa6\xa5\xa7\xa8\xa8\xaa\xab\ +\xa6\xa8\xa9\xa5\xa7\xa9\xa5\xa7\xa9\xaa\xac\xae\xab\xac\xb0\xad\ +\xae\xb2\xad\xae\xb2\xa9\xab\xad\xa8\xaa\xab\xa8\xa9\xab\xaa\xab\ +\xad\xa7\xa9\xaa\x8f\x94\x98\xa4\xa7\xab\xac\xad\xaf\xb3\xb5\xb7\ +\xab\xad\xb0\xb0\xb0\xb2\xae\xb0\xb1\xb0\xaf\xb1\xaf\xaf\xaf\xb0\ +\xb0\xaf\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb5\xb3\xb2\xb3\xb3\xb2\ +\xb4\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb8\xb7\xb9\xb8\xb7\xb9\ +\xb6\xb5\xb7\xb9\xb8\xba\x00\x00\x00\xd6\xcb\xc5\xdf\xd6\xd2\xe1\ +\xd9\xd6\xe2\xdb\xd7\xe2\xdc\xd8\xe1\xdb\xd8\xe1\xda\xd6\xe1\xda\ +\xd5\xe1\xda\xd7\xe1\xdb\xd7\xe2\xdc\xd8\xe3\xdb\xd8\xe4\xdd\xda\ +\xe5\xde\xdc\xe5\xe0\xdd\xe7\xe0\xde\xe7\xe1\xdf\xe6\xe2\xe0\xe6\ +\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ +\xde\xe6\xe0\xdd\xe4\xdf\xdc\xe2\xdd\xd9\xe0\xdb\xd8\xdc\xd7\xd5\ +\xd8\xd2\xcf\xd2\xcb\xc8\xc8\xc2\xc1\xbb\xb6\xb5\xa8\xa5\xa4\x89\ +\x8a\x89\x5f\x65\x68\x36\x3f\x48\x28\x32\x3b\x40\x47\x4d\x6c\x6b\ +\x6b\x85\x81\x7e\x97\x92\x91\xa0\x9b\x9c\xa4\x9f\xa0\xa8\xa4\xa5\ +\xa7\xa5\xa5\xa8\xa5\xa5\xa5\xa3\xa3\x9e\x9e\x9f\x8f\x91\x92\x77\ +\x7c\x7e\x6a\x70\x73\x6d\x72\x74\x7d\x80\x81\x87\x89\x8a\x82\x84\ +\x85\x6d\x72\x73\x44\x4f\x52\x43\x4b\x4e\x4d\x52\x55\x58\x5c\x5f\ +\x66\x69\x6d\x77\x7b\x80\x78\x7c\x81\x77\x7b\x80\x74\x78\x7d\x74\ +\x79\x7e\x7c\x81\x84\x7d\x83\x88\x7d\x83\x88\x7b\x82\x86\x7a\x80\ +\x85\x7c\x83\x88\x79\x82\x86\x7c\x83\x8a\x78\x80\x87\x59\x66\x6f\ +\x2a\x3d\x4a\x4d\x56\x5f\x6b\x71\x77\x66\x6c\x74\x74\x7a\x7f\x7c\ +\x81\x86\x7e\x85\x8d\x7e\x86\x8d\x7e\x87\x8c\x7e\x86\x8c\x7d\x85\ +\x8c\x80\x88\x8f\x7e\x86\x8d\x7e\x86\x8e\x7f\x87\x8e\x82\x89\x91\ +\x7f\x88\x8e\x80\x88\x8d\x82\x89\x8c\x83\x89\x8d\x83\x89\x8e\x82\ +\x87\x8b\x4f\x5c\x61\x1c\x27\x2d\x03\x05\x08\x5c\x62\x66\x8e\x8f\ +\x90\x7a\x7e\x81\x3b\x44\x4a\x0a\x11\x15\x11\x13\x15\x6b\x6d\x70\ +\x81\x84\x88\x71\x73\x77\x86\x87\x89\x99\x9b\x9c\x6c\x70\x74\x00\ +\x00\x01\x01\x01\x01\x4a\x4c\x4f\x9f\xa0\xa2\x62\x68\x6b\x4d\x54\ +\x58\x8b\x8d\x90\x9b\x9d\x9f\x9b\x9e\xa0\x84\x88\x8b\x7a\x7d\x7e\ +\x91\x94\x95\xa3\xa5\xa6\xa9\xaa\xab\xaa\xab\xac\xa5\xa7\xa8\xa8\ +\xaa\xab\xa8\xaa\xab\xab\xac\xaf\xab\xac\xaf\xad\xaf\xb2\xac\xae\ +\xb0\xaa\xab\xac\xaa\xac\xad\xa9\xaa\xac\xa8\xa7\xa9\xad\xac\xae\ +\xaf\xb0\xb1\xae\xaf\xb0\xb0\xb1\xb2\xac\xad\xaf\xaa\xab\xad\xab\ +\xab\xad\xb1\xb1\xb2\xb0\xaf\xb1\xb1\xb0\xb1\xaf\xaf\xaf\xaf\xae\ +\xaf\xb1\xb1\xb1\xb4\xb4\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb4\xb5\ +\xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xba\xb9\xba\xb6\ +\xb5\xb7\x00\x00\x00\xe1\xdb\xd7\xe2\xdc\xd8\xe2\xdc\xd8\xe4\xdd\ +\xda\xe3\xdd\xda\xe3\xdd\xd9\xe4\xdd\xd9\xe4\xde\xd9\xe4\xdd\xda\ +\xe5\xde\xdb\xe5\xdf\xdc\xe5\xdf\xdc\xe6\xe0\xdd\xe7\xe1\xde\xe7\ +\xe2\xdf\xe8\xe3\xe2\xe8\xe3\xe2\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\ +\xdf\xe7\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe5\xdf\xdc\ +\xe3\xde\xdb\xe0\xdb\xd8\xde\xd9\xd6\xdb\xd6\xd3\xd6\xd0\xce\xcf\ +\xc9\xc6\xc5\xbf\xbf\xb4\xb0\xb1\x9d\x9d\x9c\x7a\x7f\x7e\x4e\x57\ +\x5a\x2d\x37\x3e\x2a\x33\x3c\x50\x55\x5a\x77\x76\x77\x8d\x89\x88\ +\x9c\x97\x98\xa5\xa0\xa1\xa6\xa2\xa2\xa5\xa3\xa3\xa8\xa6\xa6\xa8\ +\xa6\xa6\xa5\xa4\xa4\x9e\x9e\x9e\x8e\x91\x91\x80\x84\x85\x79\x7e\ +\x7f\x7b\x7e\x7f\x87\x89\x89\x89\x8c\x8d\x86\x88\x8a\x76\x7b\x7c\ +\x5c\x64\x68\x5b\x62\x66\x4b\x50\x56\x41\x48\x4e\x5e\x61\x66\x77\ +\x7b\x7f\x77\x7b\x81\x75\x79\x7e\x75\x79\x7e\x71\x77\x7c\x77\x7d\ +\x81\x7e\x84\x89\x7c\x82\x87\x7c\x83\x87\x7a\x80\x85\x7a\x81\x86\ +\x79\x82\x86\x7a\x82\x89\x7a\x81\x88\x63\x70\x78\x3b\x4d\x58\x56\ +\x5f\x67\x73\x78\x7e\x65\x6c\x72\x59\x5f\x66\x6b\x70\x76\x7b\x82\ +\x89\x7f\x86\x8e\x7c\x85\x8a\x7e\x86\x8d\x7c\x84\x8b\x80\x88\x8f\ +\x80\x88\x8f\x7f\x87\x8e\x7f\x87\x8e\x81\x89\x90\x7e\x87\x8d\x80\ +\x88\x8d\x82\x89\x8d\x85\x8a\x8f\x83\x89\x8e\x7e\x84\x88\x60\x6b\ +\x6f\x3e\x4c\x52\x18\x23\x27\x62\x67\x6c\x8d\x8f\x90\x85\x88\x8c\ +\x6a\x72\x77\x2f\x3a\x41\x21\x29\x2f\x71\x74\x77\x93\x95\x97\x80\ +\x82\x85\x73\x75\x79\x83\x84\x87\x38\x39\x3d\x00\x00\x00\x07\x08\ +\x09\x64\x66\x6c\x87\x88\x8b\x6b\x6f\x71\x87\x8a\x8c\x7d\x80\x83\ +\x85\x87\x8a\x9e\xa0\xa1\xa2\xa6\xa7\x8d\x91\x92\x7a\x7e\x80\x89\ +\x8c\x8e\xa4\xa5\xa7\xa7\xa7\xa9\xa6\xa8\xa9\xa8\xaa\xab\xaa\xac\ +\xae\xab\xad\xb0\xac\xae\xb0\xab\xac\xaf\xaa\xab\xad\xa9\xaa\xab\ +\xa8\xa9\xaa\xac\xad\xae\xab\xab\xad\xac\xac\xad\xaa\xab\xac\xad\ +\xaf\xb0\xb0\xb2\xb3\xae\xb0\xb1\xaf\xb0\xb1\xaa\xa9\xab\xaf\xae\ +\xb0\xaf\xaf\xb0\xb4\xb4\xb4\xb1\xb1\xb1\xb0\xb0\xb0\xb1\xb1\xb1\ +\xb4\xb4\xb4\xb7\xb6\xb8\xb7\xb7\xb8\xb6\xb6\xb6\xb9\xb8\xba\xba\ +\xb9\xbb\xb6\xb5\xb7\xb8\xb7\xb9\xbd\xbc\xbd\xb7\xb6\xb7\x00\x00\ +\x00\xe4\xdf\xdc\xe5\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe0\xde\ +\xe6\xe0\xdd\xe6\xe1\xdd\xe7\xe1\xdd\xe7\xe0\xdd\xe7\xe0\xdd\xe7\ +\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\ +\xe2\xe8\xe3\xe1\xe7\xe2\xe0\xe8\xe3\xe0\xe7\xe2\xdf\xe7\xe1\xde\ +\xe6\xe1\xde\xe6\xe1\xde\xe4\xdf\xdc\xe3\xde\xda\xe2\xdd\xda\xe0\ +\xdb\xd9\xdd\xd8\xd5\xd8\xd3\xd1\xd3\xce\xcc\xcc\xc7\xc5\xc1\xbc\ +\xbc\xb0\xac\xad\x92\x93\x93\x6b\x71\x72\x3f\x4a\x4e\x28\x32\x38\ +\x38\x3f\x46\x63\x63\x67\x83\x7f\x82\x93\x8e\x8f\x9d\x98\x99\xa5\ +\xa0\xa1\xa7\xa3\xa3\xa7\xa4\xa5\xa8\xa5\xa6\xa4\xa3\xa4\xa3\xa4\ +\xa3\x9c\x9c\x9d\x8e\x90\x90\x88\x8c\x8c\x86\x89\x8a\x89\x8c\x8d\ +\x8a\x8d\x8f\x8a\x8c\x8e\x8d\x8f\x92\x7d\x81\x83\x6c\x73\x76\x5d\ +\x62\x68\x45\x4d\x54\x30\x38\x40\x54\x58\x5e\x76\x7a\x7e\x77\x7c\ +\x80\x74\x78\x7e\x75\x79\x7e\x73\x78\x7d\x71\x77\x7d\x7c\x80\x86\ +\x7a\x80\x85\x7b\x82\x86\x7b\x81\x86\x79\x81\x87\x79\x81\x88\x79\ +\x81\x88\x7b\x83\x8a\x6e\x78\x80\x51\x5e\x68\x5c\x65\x6e\x75\x7a\ +\x80\x5f\x65\x6d\x2e\x38\x41\x45\x4d\x54\x72\x77\x7d\x80\x87\x8e\ +\x7d\x85\x8a\x7f\x87\x8e\x7e\x86\x8d\x80\x88\x8f\x80\x88\x8f\x7f\ +\x87\x8e\x80\x88\x8e\x81\x88\x8f\x81\x89\x8f\x81\x88\x8e\x83\x89\ +\x8e\x86\x8c\x91\x86\x8c\x91\x82\x89\x8d\x76\x7f\x82\x4b\x58\x5c\ +\x54\x60\x65\x82\x86\x89\x8c\x90\x92\x8c\x90\x93\x7f\x85\x8a\x59\ +\x66\x6d\x5a\x64\x6b\x73\x77\x7c\x8c\x8e\x90\x94\x97\x98\x86\x8a\ +\x8d\x5a\x5d\x61\x0b\x0b\x0c\x00\x00\x00\x33\x39\x3a\x7e\x82\x84\ +\x5c\x60\x63\x6a\x6d\x6f\x93\x93\x95\x77\x7a\x7c\x7b\x7e\x7f\x81\ +\x83\x86\x9b\x9d\x9f\xa1\xa5\xa6\x94\x98\x9a\x7d\x80\x84\x86\x88\ +\x8b\xa7\xa7\xa8\xa6\xa8\xa9\xa8\xaa\xac\xab\xac\xae\xac\xae\xb1\ +\xae\xaf\xb2\xac\xae\xb0\xaa\xac\xad\xaa\xac\xad\xaa\xab\xac\xae\ +\xaf\xb0\xb0\xb0\xb2\xae\xb0\xb1\xad\xae\xaf\xac\xab\xad\xae\xae\ +\xb0\xb0\xb2\xb3\xb3\xb4\xb5\xb0\xaf\xb1\xaf\xae\xb0\xb1\xb0\xb1\ +\xb2\xb2\xb2\xb1\xb0\xb1\xb3\xb3\xb4\xb4\xb4\xb5\xaf\xaf\xaf\xb3\ +\xb2\xb3\xb5\xb5\xb5\xb5\xb5\xb5\xba\xba\xbb\xba\xba\xbb\xb5\xb4\ +\xb5\xb9\xb8\xba\xbb\xba\xbc\xb9\xb8\xb9\x00\x00\x00\xe6\xe1\xde\ +\xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\ +\xe2\xdf\xe7\xe1\xde\xe8\xe1\xde\xe8\xe1\xde\xe7\xe2\xdf\xe7\xe1\ +\xde\xe8\xe2\xdf\xe7\xe1\xde\xe6\xe0\xdd\xe6\xdf\xdd\xe6\xe0\xde\ +\xe6\xe1\xde\xe7\xe1\xde\xe8\xe2\xdf\xe7\xe1\xde\xe7\xe1\xde\xe5\ +\xe0\xdd\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\xda\xd9\xdc\xd7\ +\xd5\xd8\xd3\xd2\xd2\xcd\xca\xc8\xc3\xc2\xbb\xb5\xb5\xa6\xa2\xa3\ +\x86\x86\x87\x5c\x62\x65\x34\x3f\x44\x29\x33\x3a\x47\x4b\x51\x70\ +\x6e\x70\x8a\x86\x88\x97\x92\x94\xa2\x9d\x9e\xa5\xa2\xa2\xa6\xa3\ +\xa4\xaa\xa7\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa3\x99\x99\x9a\ +\x8a\x8d\x8f\x87\x8a\x8c\x8a\x8c\x8e\x8b\x8d\x91\x8b\x8e\x91\x8a\ +\x8d\x91\x8e\x92\x95\x80\x85\x88\x6c\x74\x78\x41\x49\x51\x20\x29\ +\x32\x1e\x27\x30\x40\x44\x4b\x6f\x72\x77\x77\x7b\x80\x76\x7a\x7f\ +\x73\x77\x7c\x74\x78\x7d\x70\x75\x7a\x76\x7b\x80\x7c\x81\x86\x7b\ +\x81\x86\x7a\x82\x87\x79\x81\x86\x79\x81\x88\x79\x81\x88\x7a\x81\ +\x88\x73\x7c\x83\x62\x6c\x76\x5d\x67\x71\x6b\x72\x79\x55\x5e\x65\ +\x25\x31\x3a\x37\x42\x4a\x62\x67\x6d\x7e\x82\x89\x80\x86\x8c\x7f\ +\x87\x8e\x7f\x87\x8e\x82\x8a\x91\x80\x88\x8f\x80\x88\x8f\x81\x89\ +\x90\x84\x8c\x92\x83\x8b\x91\x84\x8a\x91\x84\x8a\x8f\x87\x8d\x92\ +\x86\x8d\x92\x84\x8b\x8f\x81\x8a\x8d\x6c\x77\x7a\x7b\x81\x86\x8a\ +\x8d\x91\x8c\x92\x95\x8e\x93\x97\x8a\x8f\x93\x83\x89\x8e\x86\x8c\ +\x91\x7c\x81\x87\x76\x79\x7e\x8b\x8f\x90\x97\x9a\x9b\x41\x44\x45\ +\x01\x01\x01\x04\x05\x05\x76\x7b\x7c\x92\x96\x95\x53\x59\x5a\x66\ +\x6b\x6c\x68\x6c\x6e\x58\x5c\x5f\x92\x94\x96\x80\x82\x86\x7b\x7e\ +\x81\x98\x9a\x9c\xa4\xa6\xa8\x9d\x9f\xa1\x84\x88\x8a\x7e\x82\x83\ +\xa3\xa4\xa5\xa9\xaa\xac\xa9\xab\xac\xab\xae\xaf\xad\xaf\xb0\xad\ +\xae\xaf\xab\xac\xad\xac\xad\xae\xad\xad\xae\xad\xad\xae\xaf\xaf\ +\xb1\xaf\xaf\xb1\xb2\xb1\xb3\xae\xad\xaf\xab\xaa\xac\xac\xae\xaf\ +\xb5\xb5\xb7\xb1\xb0\xb2\xaf\xae\xb1\xb2\xb1\xb3\xb2\xb2\xb2\xb0\ +\xb0\xb0\xb3\xb3\xb4\xb3\xb3\xb3\xb0\xb0\xb0\xb3\xb3\xb3\xb4\xb4\ +\xb4\xb3\xb3\xb3\xbb\xbc\xbb\xbb\xbb\xbb\xba\xba\xbb\xba\xb9\xba\ +\xb8\xb7\xb9\xb7\xb6\xb7\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe6\ +\xe1\xde\xe7\xe1\xde\xe6\xe1\xde\xe7\xe2\xde\xe6\xe0\xde\xe7\xe1\ +\xde\xe7\xe1\xde\xe6\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xdc\xe6\xdf\xdc\ +\xe5\xde\xdb\xe4\xdd\xda\xe4\xdd\xda\xe4\xde\xda\xe5\xe0\xdd\xe5\ +\xe0\xdd\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\ +\xdd\xe4\xdf\xdd\xe0\xdb\xda\xdf\xda\xd9\xdd\xd8\xd6\xd5\xd0\xce\ +\xce\xc9\xc7\xc4\xbf\xbe\xb2\xad\xab\x9b\x97\x96\x78\x79\x79\x4b\ +\x52\x55\x2b\x37\x3d\x2f\x38\x3e\x55\x56\x5a\x7a\x76\x77\x8e\x89\ +\x8b\x9b\x96\x97\xa0\x9d\x9e\xa5\xa3\xa3\xaa\xa7\xa8\xa7\xa5\xa6\ +\xa6\xa5\xa7\xa5\xa4\xa5\xa0\x9f\xa1\x90\x91\x93\x83\x84\x87\x83\ +\x83\x87\x88\x8a\x8c\x88\x89\x8d\x8b\x8d\x91\x8d\x8f\x94\x8e\x93\ +\x96\x87\x8c\x8f\x6c\x75\x78\x38\x48\x51\x0a\x17\x22\x12\x1a\x23\ +\x34\x37\x3f\x5e\x60\x65\x73\x75\x79\x78\x7b\x80\x73\x76\x7b\x72\ +\x76\x7b\x72\x76\x7b\x71\x77\x7c\x7a\x80\x85\x7b\x82\x87\x7a\x81\ +\x87\x79\x7f\x86\x79\x81\x88\x7b\x81\x88\x7b\x82\x8a\x7a\x81\x89\ +\x72\x7a\x82\x56\x63\x6d\x47\x56\x5f\x46\x53\x5c\x36\x44\x4d\x34\ +\x42\x4a\x47\x50\x59\x75\x78\x7f\x83\x87\x8d\x80\x87\x8d\x7f\x88\ +\x8f\x81\x89\x90\x81\x89\x90\x81\x89\x90\x81\x8a\x91\x82\x8b\x92\ +\x84\x8c\x93\x85\x8d\x94\x86\x8d\x94\x89\x8f\x96\x88\x8d\x92\x87\ +\x8e\x93\x85\x8c\x90\x84\x8b\x8f\x87\x8c\x91\x87\x8c\x8f\x8b\x90\ +\x94\x8d\x92\x95\x8e\x93\x96\x90\x95\x99\x91\x95\x9a\x8e\x92\x97\ +\x7e\x83\x88\x77\x7c\x7f\x85\x88\x89\x1d\x20\x20\x00\x00\x00\x13\ +\x17\x18\x77\x7b\x7c\x83\x87\x89\x5e\x66\x67\x86\x8b\x8b\x6c\x73\ +\x74\x72\x77\x7b\x9f\xa2\xa4\x9d\x9f\xa3\x82\x84\x89\x7a\x7d\x80\ +\x95\x97\x9a\xa7\xa9\xaa\xa2\xa3\xa6\x88\x8b\x8f\x7a\x7d\x81\x9a\ +\x9c\x9d\xad\xae\xaf\xac\xae\xaf\xaa\xab\xad\xad\xad\xaf\xb0\xaf\ +\xb1\xae\xae\xaf\xac\xab\xad\xab\xab\xad\xad\xad\xaf\xaf\xae\xb0\ +\xb2\xb1\xb3\xae\xaf\xb0\xb1\xb1\xb2\xae\xaf\xb1\xb1\xb0\xb1\xab\ +\xab\xac\xaf\xae\xb0\xb2\xb1\xb3\xb4\xb4\xb5\xb3\xb3\xb4\xaf\xaf\ +\xb0\xb3\xb3\xb4\xb6\xb6\xb6\xb6\xb6\xb6\xb8\xb8\xb8\xb6\xb6\xb6\ +\xb8\xb8\xb8\xb8\xb8\xb8\xbc\xbc\xbc\xb9\xb8\xb9\xb9\xb9\xba\xb8\ +\xb7\xb9\x00\x00\x00\xe6\xe1\xde\xe5\xe1\xde\xe5\xe0\xdd\xe5\xde\ +\xdc\xe4\xdd\xda\xe4\xdd\xd9\xe4\xdb\xd8\xe3\xdd\xd9\xe3\xdd\xd9\ +\xe3\xdc\xd8\xe3\xdd\xda\xe3\xdd\xda\xe4\xde\xdb\xe4\xdd\xda\xe3\ +\xdd\xdb\xe4\xde\xdc\xe5\xde\xdc\xe6\xdf\xdc\xe6\xe0\xdd\xe6\xe2\ +\xdf\xe7\xe1\xde\xe6\xe1\xde\xe5\xe0\xdd\xe4\xdf\xdd\xe3\xde\xdd\ +\xe1\xdc\xdb\xdc\xd7\xd6\xd9\xd4\xd3\xd4\xcf\xce\xcc\xc6\xc6\xbf\ +\xb9\xb9\xae\xa9\xa6\x91\x8e\x8c\x69\x6c\x6c\x3d\x46\x4a\x2a\x36\ +\x3c\x3d\x44\x4a\x65\x64\x67\x84\x7f\x81\x95\x90\x92\x9e\x9a\x9c\ +\xa4\xa1\xa2\xa6\xa5\xa7\xaa\xa8\xa9\xa7\xa6\xa7\xa5\xa4\xa6\xa2\ +\xa1\xa3\x9c\x9b\x9d\x89\x8a\x8b\x7b\x7e\x7f\x7c\x7e\x81\x86\x87\ +\x8a\x8a\x8c\x8e\x8d\x8f\x93\x8e\x91\x95\x8d\x92\x95\x8b\x8f\x92\ +\x78\x7f\x83\x51\x60\x67\x2c\x3c\x48\x29\x32\x3b\x43\x46\x4f\x5e\ +\x61\x67\x70\x72\x76\x76\x79\x7d\x74\x77\x7c\x70\x74\x79\x74\x78\ +\x7d\x72\x77\x7d\x71\x77\x7c\x79\x7f\x84\x7a\x80\x86\x77\x7e\x85\ +\x78\x80\x86\x79\x80\x87\x79\x81\x88\x7a\x82\x89\x7a\x81\x88\x68\ +\x71\x7a\x51\x5f\x69\x51\x5f\x68\x4a\x58\x60\x27\x34\x3c\x19\x24\ +\x2a\x37\x3d\x44\x63\x67\x6c\x80\x86\x8b\x7f\x87\x8e\x80\x88\x8f\ +\x81\x8a\x91\x83\x8b\x92\x82\x89\x90\x81\x89\x90\x84\x8c\x93\x86\ +\x8e\x95\x85\x8d\x94\x86\x8e\x95\x87\x8e\x95\x85\x8b\x91\x87\x8d\ +\x92\x8a\x90\x95\x8b\x8f\x94\x8b\x90\x94\x8b\x90\x93\x89\x8e\x91\ +\x8b\x90\x94\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x90\x95\x99\x80\ +\x86\x89\x4b\x51\x55\x04\x04\x04\x00\x00\x00\x5c\x61\x62\x72\x77\ +\x77\x44\x4d\x51\x7c\x80\x81\x88\x8a\x89\x82\x85\x85\x7d\x80\x83\ +\x8a\x8c\x8f\xa5\xa6\xa8\xa2\xa3\xa6\x8a\x8d\x90\x75\x79\x7c\x96\ +\x97\x99\xa7\xa7\xa8\xa6\xa6\xa8\x94\x97\x99\x77\x7b\x7c\x93\x94\ +\x96\xae\xae\xb0\xaa\xa9\xac\xad\xac\xae\xad\xac\xae\xad\xac\xae\ +\xac\xab\xad\xad\xac\xae\xae\xae\xb0\xad\xad\xaf\xb4\xb2\xb5\xb3\ +\xb2\xb3\xb3\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xae\xad\xaf\xad\xac\ +\xae\xb2\xb1\xb3\xb3\xb2\xb4\xb6\xb5\xb7\xb2\xb1\xb3\xb3\xb3\xb4\ +\xb6\xb6\xb6\xb3\xb4\xb3\xb9\xb8\xb9\xba\xba\xbb\xb4\xb4\xb4\xbb\ +\xbb\xbb\xb9\xb9\xb9\xb9\xb9\xb9\xb8\xb8\xba\xb8\xb8\xb9\x00\x00\ +\x00\xe5\xdf\xdc\xe2\xdd\xda\xe2\xdc\xd9\xe2\xdb\xd9\xe1\xda\xd7\ +\xe1\xd8\xd4\xe1\xd9\xd5\xe1\xda\xd7\xe2\xdc\xd8\xe3\xdc\xd9\xe2\ +\xdd\xda\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\ +\xdd\xe6\xe0\xdd\xe7\xe0\xdd\xe7\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\ +\xe6\xe0\xdd\xe5\xe0\xdd\xe3\xde\xdc\xe3\xde\xdd\xdf\xda\xd9\xdc\ +\xd7\xd6\xd7\xd2\xd0\xd0\xcb\xcb\xc9\xc4\xc4\xb9\xb4\xb3\xa5\xa1\ +\xa0\x83\x82\x82\x59\x5e\x60\x33\x3d\x43\x2a\x33\x39\x4a\x4f\x53\ +\x73\x71\x74\x8b\x87\x8a\x9a\x97\x9a\xa2\x9e\xa0\xa5\xa1\xa3\xa6\ +\xa5\xa6\xa8\xa7\xa9\xa6\xa5\xa6\xa5\xa4\xa6\xa3\xa2\xa4\x95\x96\ +\x96\x7e\x80\x80\x74\x78\x79\x79\x7b\x7d\x86\x87\x89\x89\x8b\x8e\ +\x8d\x8f\x93\x8e\x91\x95\x8d\x91\x94\x8a\x8f\x92\x83\x89\x8e\x6f\ +\x79\x7f\x50\x5e\x66\x3f\x4b\x54\x4e\x55\x5d\x69\x6d\x72\x72\x75\ +\x79\x6f\x71\x76\x70\x73\x78\x6f\x73\x78\x73\x77\x7b\x6c\x71\x76\ +\x66\x6c\x73\x76\x7b\x80\x7b\x81\x88\x78\x7f\x86\x79\x81\x87\x79\ +\x81\x89\x7a\x82\x89\x7a\x82\x89\x7a\x82\x89\x75\x7d\x86\x6f\x78\ +\x80\x6e\x78\x7f\x5e\x69\x71\x21\x2f\x38\x06\x0e\x13\x0a\x12\x17\ +\x38\x3f\x46\x75\x79\x7f\x85\x8c\x93\x82\x89\x90\x80\x88\x8f\x83\ +\x8b\x91\x80\x88\x8d\x81\x89\x8f\x85\x8b\x92\x88\x8f\x96\x87\x8f\ +\x96\x89\x8f\x96\x8a\x90\x97\x89\x8f\x96\x89\x8f\x94\x8c\x92\x97\ +\x8a\x8e\x93\x8a\x8f\x92\x88\x8d\x90\x88\x8d\x90\x8c\x91\x94\x8f\ +\x94\x97\x90\x94\x99\x94\x98\x9c\x93\x98\x9c\x91\x96\x99\x7c\x84\ +\x88\x1e\x25\x28\x18\x1f\x21\x8b\x8f\x8f\x83\x87\x87\x3f\x4a\x4e\ +\x68\x6d\x6f\x51\x56\x58\x61\x64\x67\x95\x97\x99\x7b\x7e\x82\x8a\ +\x8b\x8e\xa1\xa1\xa4\xa4\xa6\xaa\x91\x94\x98\x74\x76\x7a\x8f\x8e\ +\x91\xab\xaa\xac\xa8\xa9\xaa\x9b\x9d\x9e\x7f\x81\x82\x8a\x8b\x8d\ +\xad\xac\xae\xaf\xae\xb0\xae\xad\xaf\xae\xad\xaf\xaf\xae\xb1\xb1\ +\xb0\xb3\xae\xae\xb0\xae\xaf\xb0\xb3\xb2\xb4\xb0\xaf\xb1\xb4\xb3\ +\xb5\xb4\xb5\xb6\xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ +\xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb6\xb3\ +\xb2\xb3\xb7\xb6\xb8\xb6\xb6\xb6\xba\xb9\xb9\xb9\xb9\xb9\xbb\xbb\ +\xbb\xb8\xb8\xb8\xba\xba\xba\xbb\xbc\xbb\x00\x00\x00\xe3\xdc\xd9\ +\xe2\xdd\xda\xe0\xda\xd7\xdf\xda\xd7\xe0\xdb\xd7\xe0\xdb\xd6\xe2\ +\xdb\xd7\xe3\xdc\xd8\xe4\xde\xdb\xe4\xde\xdb\xe5\xe0\xdd\xe6\xe1\ +\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe1\xdf\xe7\xe2\xdf\ +\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe5\ +\xe0\xdd\xe3\xde\xdc\xe2\xdd\xdc\xde\xd9\xd8\xdb\xd5\xd4\xd4\xcf\ +\xce\xcf\xca\xc8\xc3\xbf\xbe\xb2\xaf\xae\x9b\x98\x98\x75\x78\x79\ +\x46\x4f\x52\x2a\x35\x39\x34\x3c\x41\x5c\x5e\x62\x7d\x7c\x7f\x8f\ +\x8c\x8f\x9b\x98\x9a\xa1\x9e\xa0\xa5\xa3\xa5\xa7\xa6\xa7\xa8\xa7\ +\xa9\xa5\xa4\xa6\xa5\xa4\xa6\xa1\xa0\xa1\x8d\x8d\x8d\x74\x77\x77\ +\x6e\x73\x73\x77\x7a\x7b\x86\x87\x8b\x89\x8c\x90\x8e\x91\x95\x8e\ +\x91\x95\x8c\x90\x92\x8a\x8f\x92\x87\x8c\x91\x7c\x84\x8a\x66\x72\ +\x7a\x4f\x5b\x63\x55\x5d\x65\x66\x6b\x70\x6a\x6e\x73\x58\x5b\x63\ +\x5f\x62\x6a\x6c\x70\x76\x66\x6a\x70\x58\x5d\x65\x57\x5c\x65\x63\ +\x68\x6f\x77\x7d\x82\x7a\x81\x88\x78\x81\x87\x77\x80\x85\x77\x7f\ +\x86\x79\x80\x87\x7a\x81\x88\x79\x81\x88\x79\x81\x88\x7a\x82\x89\ +\x72\x7b\x83\x59\x67\x70\x37\x43\x4c\x19\x24\x2b\x22\x29\x2f\x3b\ +\x40\x46\x75\x79\x80\x84\x8a\x90\x84\x8b\x91\x84\x8b\x92\x83\x8a\ +\x91\x85\x8b\x92\x85\x8c\x92\x88\x90\x96\x88\x8f\x96\x88\x8e\x95\ +\x8c\x92\x99\x8a\x90\x97\x88\x8e\x93\x8b\x8f\x94\x8d\x91\x96\x8c\ +\x90\x95\x8b\x8f\x92\x88\x8d\x90\x8a\x8f\x92\x8d\x92\x95\x91\x95\ +\x99\x92\x96\x9a\x92\x95\x99\x93\x96\x9a\x98\x9b\x9f\x7d\x85\x88\ +\x57\x62\x66\x87\x8a\x8b\x6f\x74\x76\x71\x77\x7a\x7b\x7f\x81\x6a\ +\x6f\x73\x8a\x8c\x90\xa1\xa1\xa4\x96\x99\x9c\x7b\x7e\x82\x85\x86\ +\x8a\xa2\xa2\xa5\xa7\xa9\xaa\x9c\x9f\xa0\x76\x79\x7c\x84\x86\x87\ +\xab\xab\xab\xa7\xaa\xaa\xa2\xa4\xa6\x82\x86\x89\x80\x82\x85\xaa\ +\xa9\xab\xb1\xb0\xb2\xac\xad\xae\xaf\xb0\xb2\xb1\xb0\xb4\xb1\xb0\ +\xb4\xb2\xb2\xb4\xb0\xaf\xb1\xaf\xae\xb0\xaf\xae\xb1\xb1\xb0\xb2\ +\xb1\xb0\xb2\xb5\xb4\xb6\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\xb3\ +\xb2\xb4\xb3\xb2\xb3\xb6\xb5\xb6\xb5\xb5\xb5\xb3\xb3\xb4\xb2\xb2\ +\xb2\xb8\xb7\xb9\xbc\xba\xbd\xb9\xb9\xb9\xb9\xb8\xb8\xb6\xb6\xb6\ +\xb9\xb9\xb9\xbc\xbc\xbc\x00\x00\x00\xe3\xdb\xd8\xe4\xe0\xdd\xe3\ +\xde\xdb\xe2\xdc\xd9\xe2\xdd\xd9\xe4\xde\xdb\xe3\xde\xdb\xe5\xdf\ +\xdc\xe6\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe1\xe8\xe3\xe2\xe8\xe3\xe2\ +\xe8\xe3\xe2\xe7\xe2\xe1\xe8\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xdf\xe7\ +\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xdd\xe4\xdf\xde\xe3\xde\ +\xdd\xe0\xdb\xda\xdd\xd7\xd7\xd9\xd4\xd3\xd5\xcf\xce\xcb\xc6\xc3\ +\xbe\xba\xba\xad\xaa\xaa\x8c\x8c\x8c\x64\x6b\x6b\x3b\x46\x49\x2b\ +\x36\x3a\x45\x49\x4e\x6b\x6a\x6f\x83\x82\x85\x96\x92\x97\x9f\x9c\ +\x9e\xa4\xa2\xa4\xa9\xa6\xa7\xa8\xa7\xaa\xa7\xa6\xa8\xa6\xa5\xa7\ +\xa5\xa4\xa6\x98\x97\x99\x7e\x7f\x81\x6a\x6f\x6f\x6a\x6f\x6e\x7b\ +\x7e\x7f\x87\x8a\x8e\x8b\x8e\x93\x8c\x8f\x94\x8b\x8e\x92\x8e\x91\ +\x96\x87\x8b\x90\x87\x8b\x90\x81\x87\x8d\x73\x7b\x81\x64\x6c\x73\ +\x66\x6a\x71\x6f\x72\x77\x5f\x64\x6a\x3a\x42\x4b\x45\x4a\x55\x68\ +\x6b\x72\x5e\x62\x69\x37\x3e\x48\x39\x40\x4a\x57\x5b\x61\x70\x74\ +\x79\x78\x7e\x84\x7c\x82\x87\x7a\x82\x87\x78\x80\x87\x7a\x80\x87\ +\x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\x83\x8b\x7a\x81\x89\x76\ +\x7e\x85\x65\x6f\x77\x41\x4b\x54\x23\x29\x31\x13\x1a\x23\x5b\x61\ +\x69\x82\x86\x8d\x82\x88\x8c\x84\x8a\x90\x85\x8c\x92\x86\x8c\x92\ +\x88\x8e\x94\x89\x8f\x94\x87\x8d\x94\x86\x8c\x93\x87\x8d\x94\x87\ +\x8d\x95\x8a\x8f\x95\x8c\x91\x97\x8a\x8e\x92\x8d\x91\x96\x8c\x92\ +\x95\x8c\x91\x94\x8b\x8f\x93\x8c\x8f\x93\x8e\x91\x95\x92\x95\x98\ +\x94\x97\x9b\x94\x97\x9a\x97\x9b\x9e\x98\x9d\xa0\x87\x8d\x90\x6a\ +\x70\x74\x53\x5d\x61\x8c\x91\x92\x96\x99\x9a\x81\x85\x88\x77\x7a\ +\x7f\x96\x98\x9c\xa2\xa3\xa5\x9e\xa1\xa3\x7f\x82\x85\x83\x85\x89\ +\x9e\xa0\xa1\xa6\xa8\xa9\xa4\xa7\xa7\x85\x87\x88\x7f\x7f\x7f\xa6\ +\xa6\xa7\xa8\xa9\xa9\xa7\xaa\xab\x8e\x91\x92\x80\x81\x82\xa0\xa2\ +\xa3\xb0\xb0\xb2\xae\xae\xb1\xaf\xaf\xb3\xaf\xae\xb1\xb1\xb0\xb3\ +\xb1\xb0\xb2\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xaf\xae\xb0\xb3\ +\xb2\xb5\xb1\xb0\xb3\xb3\xb2\xb5\xb5\xb4\xb6\xb3\xb2\xb4\xb4\xb3\ +\xb5\xb7\xb7\xb8\xb6\xb5\xb7\xb7\xb6\xb8\xb3\xb3\xb3\xb6\xb5\xb6\ +\xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xb7\xb7\xb7\xbb\xbb\xbb\xbc\ +\xbb\xbc\x00\x00\x00\xe4\xde\xdb\xe6\xe1\xde\xe6\xdf\xdc\xe6\xe0\ +\xdd\xe6\xe0\xdd\xe5\xdf\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\ +\xe9\xe4\xe1\xe9\xe4\xe1\xe8\xe3\xe2\xe9\xe4\xe2\xe8\xe3\xe2\xe7\ +\xe2\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\ +\xdf\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdc\xe0\xdb\xda\ +\xdc\xd7\xd6\xd7\xcf\xcf\xd2\xca\xca\xc8\xc2\xc0\xb9\xb5\xb4\xa2\ +\x9f\x9f\x80\x82\x82\x55\x5c\x5e\x30\x3c\x40\x31\x3a\x41\x53\x55\ +\x5b\x75\x74\x77\x8d\x8a\x8c\x99\x96\x98\xa1\x9e\xa0\xa7\xa4\xa6\ +\xa9\xa7\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa6\xa5\xa7\xa1\xa0\xa1\x8c\ +\x8d\x8e\x70\x74\x75\x65\x6b\x6c\x6e\x72\x73\x81\x84\x88\x8c\x8f\ +\x94\x8d\x90\x94\x8e\x90\x94\x8c\x90\x94\x89\x8d\x92\x88\x8c\x91\ +\x86\x8a\x8f\x85\x89\x8e\x7c\x80\x85\x74\x79\x7c\x72\x76\x7a\x71\ +\x75\x7a\x4b\x51\x59\x1d\x26\x30\x2c\x33\x3d\x63\x65\x6b\x5d\x60\ +\x67\x1f\x28\x31\x21\x28\x30\x58\x5c\x61\x66\x6a\x6f\x71\x77\x7c\ +\x7a\x80\x85\x7a\x82\x86\x7a\x81\x88\x7b\x81\x88\x7b\x82\x89\x7d\ +\x84\x8b\x7e\x86\x8d\x7e\x86\x8d\x7d\x85\x8c\x7d\x85\x8c\x76\x7e\ +\x85\x56\x61\x69\x1d\x27\x32\x1b\x25\x2f\x4d\x50\x5a\x65\x68\x6f\ +\x7c\x7f\x85\x85\x89\x8e\x86\x8a\x8f\x88\x8c\x91\x88\x8e\x93\x88\ +\x8d\x92\x89\x8e\x93\x88\x8e\x94\x87\x8d\x93\x89\x8f\x94\x89\x8f\ +\x95\x8a\x8e\x94\x8d\x91\x96\x8f\x93\x98\x8e\x92\x97\x8c\x90\x96\ +\x8c\x90\x95\x8d\x90\x94\x90\x93\x97\x92\x96\x99\x95\x99\x9b\x96\ +\x9a\x9c\x97\x9a\x9d\x98\x9c\x9e\x99\x9e\xa1\x8c\x93\x94\x6a\x72\ +\x74\x86\x8a\x8b\x9b\x9d\x9d\x9c\x9e\x9f\x89\x8d\x90\x79\x7c\x81\ +\x93\x94\x97\xa4\xa3\xa4\xa1\xa2\xa3\x86\x88\x8b\x7e\x7f\x82\xa0\ +\xa2\xa3\xaa\xab\xab\xa9\xa8\xa8\x8e\x8d\x8d\x79\x7a\x79\xa1\xa0\ +\xa0\xab\xab\xab\xad\xae\xaf\x94\x96\x98\x7b\x7f\x80\x99\x9b\x9c\ +\xad\xae\xaf\xaf\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb2\xad\xac\xae\xad\ +\xac\xae\xad\xac\xae\xab\xaa\xac\xb2\xb1\xb3\xae\xad\xaf\xb1\xb0\ +\xb3\xb5\xb4\xb7\xb6\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb2\xb1\xb3\ +\xb4\xb3\xb5\xb9\xb8\xba\xb9\xb8\xba\xb8\xb7\xb9\xbb\xb9\xbc\xb6\ +\xb5\xb7\xb5\xb4\xb5\xbc\xbc\xbc\xbc\xbb\xbc\xb9\xb9\xb9\x00\x00\ +\x00\xe6\xe1\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xe1\xde\ +\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xe0\xe8\ +\xe3\xe0\xe9\xe4\xe2\xe8\xe3\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\ +\xe1\xe7\xe2\xe1\xe8\xe3\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ +\xe4\xdf\xde\xe4\xdd\xdd\xe1\xdc\xdb\xde\xd9\xd8\xda\xd4\xd2\xd7\ +\xcf\xcf\xcf\xc7\xc7\xc3\xbd\xbc\xb3\xaf\xae\x99\x97\x98\x73\x75\ +\x77\x48\x4f\x53\x2b\x36\x3b\x37\x3e\x44\x61\x60\x66\x80\x7d\x81\ +\x93\x90\x92\x9e\x9b\x9e\xa3\xa0\xa1\xa7\xa4\xa6\xaa\xa7\xa8\xa9\ +\xa7\xa9\xa5\xa5\xa6\xa3\xa2\xa4\x99\x99\x99\x7b\x7e\x7e\x64\x6a\ +\x6a\x64\x69\x6a\x72\x76\x79\x85\x88\x8c\x8b\x8e\x92\x8e\x91\x96\ +\x8d\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8c\x91\x86\x8c\x91\x83\ +\x89\x8e\x81\x86\x8a\x78\x7d\x81\x71\x76\x79\x67\x6d\x72\x3d\x46\ +\x4e\x16\x1f\x2a\x2a\x31\x3b\x52\x55\x5b\x4f\x53\x5a\x1a\x24\x2c\ +\x21\x29\x32\x5d\x61\x66\x6b\x6f\x74\x70\x74\x79\x77\x7c\x81\x78\ +\x7f\x84\x7c\x82\x88\x7b\x81\x88\x7b\x81\x89\x7d\x84\x8b\x7c\x84\ +\x8c\x7b\x83\x8b\x7a\x82\x89\x7d\x85\x8c\x7c\x85\x8c\x69\x73\x7c\ +\x1d\x2c\x39\x1d\x28\x33\x31\x37\x3f\x21\x27\x31\x5f\x61\x68\x81\ +\x85\x8a\x86\x8b\x90\x89\x8d\x92\x8a\x8e\x93\x89\x8f\x94\x88\x8e\ +\x93\x89\x8e\x93\x8a\x8e\x95\x8b\x91\x97\x8e\x94\x9b\x8f\x92\x99\ +\x8f\x92\x9a\x90\x94\x99\x93\x96\x9b\x91\x94\x99\x8f\x92\x97\x91\ +\x94\x98\x93\x96\x9a\x90\x93\x96\x91\x94\x97\x96\x9a\x9b\x96\x99\ +\x9c\x9a\x9e\xa1\x9d\xa0\xa3\x99\x9d\x9e\x91\x95\x96\x77\x7c\x7d\ +\x82\x85\x86\x9b\x9e\x9f\xa1\xa4\xa5\x90\x92\x96\x7a\x7c\x80\x8d\ +\x8e\x8f\x9f\xa1\xa1\xa5\xa7\xa8\x8a\x8d\x90\x7d\x80\x83\x85\x83\ +\x85\x64\x5c\x5a\x96\x8b\x89\x9a\x96\x96\x74\x74\x75\x97\x96\x97\ +\xb0\xb0\xb0\xac\xaf\xaf\x9b\x9e\xa0\x7c\x7f\x81\x92\x93\x95\xad\ +\xad\xaf\xb0\xb0\xb3\xb0\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xb0\xaf\ +\xb0\xb1\xb0\xb1\xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb5\xb3\xb6\ +\xb4\xb3\xb5\xb6\xb5\xb6\xb6\xb6\xb6\xb4\xb4\xb4\xb5\xb5\xb5\xb6\ +\xb6\xb6\xb7\xb7\xb8\xb6\xb5\xb6\xb6\xb6\xb7\xb7\xb6\xb7\xb6\xb5\ +\xb6\xbd\xbd\xbd\xbc\xbb\xbc\xba\xb9\xba\x00\x00\x00\xe5\xe0\xdd\ +\xe5\xdf\xdc\xe6\xe0\xdd\xe5\xe0\xdc\xe5\xe1\xdd\xe7\xe2\xdf\xe8\ +\xe3\xe0\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\ +\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe7\xe2\xe0\ +\xe7\xe2\xe0\xe6\xe1\xde\xe6\xe1\xde\xe6\xe0\xdd\xe4\xde\xdb\xe2\ +\xdd\xd9\xe1\xdc\xda\xde\xd9\xd8\xd9\xd3\xd0\xd4\xcd\xcd\xc9\xc1\ +\xc1\xbd\xb6\xb6\xaa\xa5\xa6\x8a\x89\x89\x63\x67\x6a\x3d\x43\x4a\ +\x2d\x33\x3c\x47\x4a\x50\x70\x6d\x73\x89\x85\x88\x96\x93\x95\xa0\ +\x9d\x9f\xa6\xa3\xa4\xa8\xa5\xa6\xaa\xa7\xa8\xa8\xa7\xa9\xa6\xa5\ +\xa7\xa1\xa0\xa2\x8a\x8b\x8c\x6e\x74\x73\x64\x6a\x6a\x6b\x70\x71\ +\x7d\x80\x81\x89\x8c\x8f\x8d\x90\x94\x8f\x92\x96\x8d\x90\x95\x8e\ +\x91\x96\x8b\x8f\x94\x89\x8d\x92\x86\x8c\x92\x86\x8c\x90\x83\x89\ +\x8d\x7b\x80\x83\x6f\x75\x79\x55\x5d\x64\x28\x31\x3b\x14\x1d\x27\ +\x35\x3a\x44\x47\x4b\x53\x2d\x34\x3d\x1a\x23\x2c\x2c\x34\x3c\x5d\ +\x60\x66\x72\x76\x7b\x6a\x70\x75\x70\x74\x79\x7b\x80\x85\x7a\x80\ +\x85\x7a\x81\x88\x7a\x83\x8a\x7b\x84\x8b\x7c\x84\x8b\x7c\x83\x8b\ +\x7b\x83\x8a\x7a\x82\x89\x80\x88\x8f\x71\x7b\x82\x26\x39\x46\x22\ +\x30\x3e\x34\x3e\x47\x1a\x23\x2d\x3f\x46\x4f\x5f\x64\x6a\x84\x88\ +\x8c\x8a\x8e\x93\x88\x8d\x92\x88\x8d\x92\x88\x8e\x93\x8a\x90\x96\ +\x8c\x91\x98\x89\x8f\x96\x8d\x93\x98\x8d\x91\x97\x8f\x94\x99\x8f\ +\x93\x98\x8f\x93\x98\x91\x95\x9a\x91\x95\x9a\x8f\x92\x96\x90\x93\ +\x97\x91\x94\x97\x93\x95\x99\x92\x95\x98\x96\x99\x9d\x97\x9a\x9e\ +\x99\x9c\xa0\x98\x9b\x9d\x9b\x9e\x9f\x92\x96\x97\x79\x7e\x80\x81\ +\x84\x86\x9c\x9d\x9e\xa8\xaa\xab\x97\x9a\x9c\x79\x7c\x7f\x89\x8a\ +\x8c\xa0\xa0\xa0\xa6\xa6\xa6\x99\x9b\x9e\x3b\x3e\x40\x00\x00\x00\ +\x0c\x07\x07\x79\x6d\x6c\xa4\xa2\xa1\x7e\x7f\x80\x90\x91\x91\xa9\ +\xa9\xaa\xaf\xb2\xb3\xa6\xa9\xad\x83\x86\x8a\x89\x8a\x8c\xa4\xa4\ +\xa7\xaf\xae\xb1\xb0\xaf\xb1\xb1\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\ +\xae\xad\xaf\xac\xab\xad\xb2\xb1\xb3\xb3\xb2\xb5\xb6\xb5\xb7\xb6\ +\xb5\xb7\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb7\xb7\xb5\xb5\xb5\xb4\xb4\ +\xb4\xbb\xbb\xbb\xb9\xb8\xb8\xb8\xb8\xb8\xbb\xba\xbb\xb5\xb5\xb6\ +\xb7\xb7\xb7\xb9\xb8\xb9\x00\x00\x00\xe5\xe0\xdd\xe5\xe0\xdd\xe6\ +\xe1\xde\xe6\xe0\xdd\xe6\xe0\xdd\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\ +\xdf\xe7\xe2\xdf\xe7\xe2\xdf\xe8\xe3\xdf\xe7\xe2\xe0\xe7\xe2\xdf\ +\xe6\xe1\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xdf\xe6\ +\xe1\xde\xe6\xe0\xde\xe6\xe0\xde\xe3\xdf\xdc\xe2\xdd\xda\xdf\xda\ +\xd9\xdb\xd6\xd5\xd9\xd3\xd2\xd1\xcb\xca\xc7\xbf\xbf\xb8\xb3\xb3\ +\xa1\x9d\x9e\x7c\x7c\x7e\x51\x58\x5c\x31\x39\x42\x32\x37\x40\x56\ +\x55\x5b\x79\x75\x7a\x8f\x8a\x8d\x9c\x97\x99\xa3\x9f\xa1\xa8\xa4\ +\xa5\xa9\xa5\xa7\xa9\xa6\xa7\xa9\xa7\xa9\xa5\xa4\xa4\x99\x98\x9a\ +\x7e\x81\x82\x69\x6f\x70\x66\x6b\x6c\x74\x78\x79\x84\x87\x89\x89\ +\x8d\x90\x8e\x91\x95\x8f\x92\x97\x8c\x8f\x94\x8b\x8f\x94\x88\x8c\ +\x91\x86\x8b\x8f\x87\x8c\x92\x85\x8b\x90\x85\x8a\x8f\x80\x86\x8b\ +\x70\x76\x7a\x43\x4d\x55\x15\x20\x2b\x20\x28\x32\x49\x4c\x56\x49\ +\x4e\x59\x1b\x25\x30\x1f\x27\x32\x4c\x51\x59\x5f\x65\x6c\x71\x75\ +\x7b\x70\x75\x7a\x6a\x70\x75\x74\x79\x7e\x7a\x80\x85\x7a\x80\x87\ +\x7b\x82\x89\x7c\x83\x8b\x7d\x85\x8c\x7c\x83\x8b\x7c\x84\x8b\x7e\ +\x86\x8d\x7d\x85\x8c\x71\x7a\x82\x20\x34\x41\x2e\x40\x4d\x44\x51\ +\x5b\x30\x3a\x44\x22\x2b\x35\x2d\x34\x3c\x79\x7c\x82\x8a\x8e\x93\ +\x8a\x8e\x93\x89\x8f\x94\x8a\x90\x95\x8b\x91\x96\x8b\x90\x96\x89\ +\x8f\x94\x8d\x93\x99\x92\x95\x9c\x8f\x93\x99\x90\x94\x99\x91\x95\ +\x9a\x92\x96\x9b\x92\x97\x9a\x92\x96\x9a\x93\x96\x9a\x92\x95\x97\ +\x91\x94\x97\x93\x96\x98\x97\x9a\x9e\x9a\x9d\xa1\x97\x9a\x9e\x9a\ +\x9c\x9f\x9d\x9f\xa1\x9e\xa0\xa1\x97\x9b\x9c\x7e\x83\x85\x7e\x81\ +\x83\x9b\x9c\x9d\xa6\xa6\xa8\x9a\x9b\x9d\x80\x82\x84\x89\x89\x8b\ +\xa1\x9f\x9f\xae\xac\xab\x71\x74\x75\x05\x05\x06\x00\x00\x00\x11\ +\x0e\x0d\x9a\x93\x91\xaa\xaa\xac\x89\x8b\x8c\x86\x87\x89\xa5\xa7\ +\xa9\xae\xb0\xb3\xae\xaf\xb2\x8c\x8d\x8f\x7e\x7f\x83\x9f\x9d\xa1\ +\xae\xad\xb0\xb6\xb5\xb7\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb0\xb2\xb1\ +\xb1\xb2\xb2\xb1\xb4\xb5\xb4\xb5\xb9\xb8\xbb\xb8\xb7\xb9\xb9\xb8\ +\xb9\xb9\xb9\xb9\xb8\xb8\xb8\xb6\xb5\xb6\xb6\xb6\xb6\xb6\xb6\xb6\ +\xb6\xb5\xb5\xb5\xb5\xb5\xbb\xbb\xbb\xba\xb9\xba\xb6\xb5\xb7\xb8\ +\xb7\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\ +\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\ +\xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe6\xe1\xdf\xe7\ +\xe2\xe0\xe7\xe2\xe1\xe8\xe3\xe1\xe7\xe2\xe0\xe5\xe0\xde\xe5\xe0\ +\xde\xe5\xe0\xde\xe3\xde\xdb\xe1\xdc\xda\xde\xd9\xd8\xda\xd5\xd4\ +\xd5\xd1\xcf\xce\xc9\xc9\xc1\xbc\xbb\xb1\xac\xab\x96\x92\x93\x6d\ +\x71\x73\x44\x4e\x54\x2e\x39\x41\x40\x45\x4e\x67\x65\x6b\x84\x7f\ +\x83\x93\x8e\x90\x9d\x98\x9a\xa4\xa0\xa2\xa8\xa4\xa6\xa7\xa4\xa6\ +\xa8\xa5\xa7\xa7\xa5\xa7\xa1\xa1\xa2\x90\x92\x93\x76\x7a\x7b\x6b\ +\x71\x72\x70\x74\x75\x80\x82\x84\x89\x8c\x8d\x8b\x8e\x91\x8d\x90\ +\x95\x8e\x92\x97\x8b\x90\x94\x89\x8d\x92\x87\x8c\x90\x87\x8b\x8f\ +\x87\x8b\x90\x84\x8a\x8f\x85\x8b\x8f\x7f\x85\x8a\x73\x7b\x7f\x45\ +\x51\x5a\x15\x22\x2e\x2a\x34\x3e\x53\x59\x61\x48\x4f\x59\x17\x24\ +\x31\x27\x2f\x3d\x60\x63\x6c\x6c\x72\x79\x6b\x70\x77\x74\x79\x7e\ +\x6e\x74\x79\x6d\x72\x78\x76\x7c\x82\x7b\x81\x88\x7c\x82\x89\x7c\ +\x83\x8a\x7c\x84\x8b\x7d\x84\x8d\x7e\x85\x8e\x7d\x84\x8c\x7e\x86\ +\x8e\x78\x80\x87\x52\x63\x6e\x53\x62\x6d\x61\x6c\x74\x3d\x49\x52\ +\x17\x22\x2c\x30\x39\x41\x79\x7c\x83\x89\x8e\x92\x89\x8f\x94\x8b\ +\x91\x97\x8a\x90\x96\x8a\x90\x95\x8a\x8f\x94\x8a\x8f\x95\x8b\x91\ +\x97\x8e\x93\x98\x92\x96\x9c\x90\x94\x9a\x92\x96\x9b\x92\x97\x9b\ +\x95\x98\x9d\x96\x98\x9d\x94\x97\x9b\x92\x96\x9a\x93\x96\x9a\x94\ +\x97\x9b\x99\x9c\xa0\x98\x9b\x9f\x9b\x9d\xa1\x9b\x9f\xa1\x9c\x9e\ +\x9f\x9d\x9f\xa0\x9d\xa0\xa1\x9a\x9e\x9f\x88\x8d\x8f\x81\x84\x85\ +\x94\x95\x96\xa5\xa6\xa7\xa2\xa4\xa5\x86\x88\x8a\x89\x89\x8a\x9e\ +\x9b\x9a\x9f\xa0\xa1\x27\x2e\x31\x00\x00\x00\x01\x01\x01\x50\x4c\ +\x4d\xb4\xb2\xb3\xb0\xaf\xb0\x92\x94\x96\x81\x83\x87\x9d\x9e\xa0\ +\xb2\xb1\xb4\xb3\xb3\xb5\x96\x97\x9a\x7f\x80\x83\x95\x95\x97\xab\ +\xaa\xac\xb8\xb7\xb9\xb4\xb3\xb5\xaf\xae\xb0\xb4\xb3\xb6\xb3\xb2\ +\xb4\xb3\xb2\xb4\xb9\xb8\xba\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\xb9\ +\xb7\xb7\xb8\xb9\xb9\xba\xb8\xb8\xb8\xb9\xb9\xb9\xb6\xb6\xb6\xb7\ +\xb7\xb7\xba\xba\xba\xbb\xbb\xbb\xba\xb9\xba\xba\xba\xba\x00\x00\ +\x00\xe7\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\xdf\ +\xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe6\ +\xe1\xde\xe8\xe2\xdf\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe7\xe2\ +\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe5\xe0\xdd\xe5\xe0\xdd\xe4\xdf\xdc\ +\xe2\xdc\xd9\xe0\xdb\xd9\xdd\xd8\xd7\xd7\xd2\xd1\xd1\xcc\xcb\xca\ +\xc5\xc4\xbb\xb6\xb5\xa7\xa4\xa1\x85\x85\x86\x5e\x64\x67\x36\x40\ +\x48\x30\x3a\x43\x4b\x4f\x57\x72\x6f\x74\x8c\x87\x89\x99\x94\x96\ +\xa2\x9d\x9f\xa7\xa3\xa5\xa9\xa6\xa8\xa9\xa6\xa8\xa8\xa6\xa8\xa7\ +\xa6\xa8\x9f\x9e\x9f\x87\x89\x8a\x74\x78\x79\x70\x74\x75\x79\x7c\ +\x7d\x86\x88\x89\x89\x8b\x8c\x8c\x8e\x90\x8e\x90\x95\x8e\x91\x96\ +\x8c\x90\x95\x8a\x8d\x92\x86\x8a\x8f\x87\x8b\x90\x84\x89\x8e\x82\ +\x88\x8d\x83\x88\x8c\x7f\x85\x8a\x77\x7e\x83\x50\x5c\x64\x25\x35\ +\x41\x39\x44\x4f\x5d\x64\x6c\x49\x51\x5c\x22\x30\x3e\x2b\x36\x45\ +\x61\x66\x6f\x75\x7a\x80\x6c\x72\x77\x70\x75\x7a\x73\x79\x7e\x6d\ +\x73\x78\x6f\x75\x7a\x78\x7e\x84\x7b\x81\x87\x7c\x83\x89\x7d\x84\ +\x8c\x7b\x83\x8b\x7d\x84\x8c\x7d\x84\x8b\x80\x87\x8f\x81\x87\x8e\ +\x79\x82\x88\x77\x81\x85\x76\x7f\x85\x51\x5d\x65\x16\x24\x2d\x45\ +\x4f\x59\x82\x85\x8c\x88\x8d\x92\x8a\x90\x95\x8b\x91\x96\x8b\x91\ +\x97\x89\x8e\x94\x86\x8c\x91\x87\x8c\x91\x87\x8b\x90\x8b\x90\x94\ +\x8e\x93\x99\x91\x96\x9b\x92\x96\x9b\x91\x96\x9a\x95\x99\x9e\x97\ +\x9b\x9f\x97\x9a\x9e\x96\x9a\x9d\x95\x98\x9c\x95\x98\x9c\x98\x9b\ +\x9e\x95\x98\x9c\x9a\x9c\xa0\x99\x9c\x9d\x9a\x9c\x9d\x9e\x9e\xa1\ +\x9e\xa1\xa2\xa1\xa4\xa5\xa1\xa5\xa7\x8c\x90\x91\x7b\x7f\x80\x90\ +\x92\x93\xa6\xa8\xaa\xa6\xa8\xaa\x8a\x8c\x8e\x81\x81\x83\x98\x99\ +\x99\x7b\x84\x87\x1e\x23\x26\x01\x01\x01\x1b\x1b\x1c\x9e\x9b\x9e\ +\xb1\xae\xaf\xb3\xb1\xb2\x98\x99\x9a\x86\x86\x8a\x97\x97\x9a\xac\ +\xac\xae\xb1\xb1\xb3\xa2\xa3\xa5\x85\x86\x89\x8a\x8b\x8c\xac\xab\ +\xad\xb4\xb2\xb4\xaf\xaf\xb1\xb4\xb4\xb7\xb5\xb4\xb6\xb9\xb8\xba\ +\xb9\xb8\xba\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb8\xb8\xb7\xb9\xb8\ +\xb8\xb9\xbb\xbb\xbd\xbb\xbb\xbb\xbb\xbb\xbb\xba\xba\xba\xb7\xb7\ +\xb7\xbb\xba\xba\xbb\xbb\xbb\xbb\xbb\xbb\x00\x00\x00\xe7\xe2\xdf\ +\xe7\xe2\xdf\xe6\xe1\xde\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xde\xe6\ +\xe1\xde\xe7\xe2\xdf\xe8\xe3\xe0\xe7\xe2\xe0\xe6\xe1\xde\xe7\xe3\ +\xe0\xe8\xe3\xe2\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\ +\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\xe3\xde\xdb\xe1\xdc\xda\xdf\ +\xda\xd9\xdc\xd7\xd6\xd6\xd2\xd0\xd0\xcb\xca\xc5\xc0\xc0\xb4\xb0\ +\xaf\x9e\x9d\x9a\x77\x7a\x79\x4e\x56\x5a\x30\x3a\x44\x36\x3e\x48\ +\x59\x5a\x61\x7d\x79\x7b\x90\x8b\x8d\x9c\x97\x9a\xa4\xa0\xa3\xa8\ +\xa5\xa7\xaa\xa7\xa9\xa9\xa7\xa9\xa9\xa7\xa9\xa6\xa5\xa7\x9a\x9a\ +\x9c\x81\x83\x85\x76\x79\x7c\x79\x7c\x7d\x81\x83\x84\x86\x88\x89\ +\x86\x88\x89\x8a\x8c\x8e\x89\x8b\x8f\x85\x88\x8c\x88\x8c\x90\x89\ +\x8d\x92\x87\x8b\x90\x86\x8b\x8f\x83\x87\x8c\x82\x88\x8c\x83\x89\ +\x8e\x82\x88\x8c\x7a\x81\x86\x60\x6b\x73\x46\x53\x5d\x4e\x58\x62\ +\x67\x6d\x76\x57\x60\x6b\x3d\x4a\x57\x4a\x54\x60\x60\x67\x6f\x6f\ +\x75\x7b\x71\x76\x7b\x6d\x72\x77\x72\x77\x7c\x6f\x75\x7a\x6c\x71\ +\x76\x71\x77\x7c\x7a\x80\x85\x7d\x83\x88\x7c\x83\x89\x7b\x83\x8a\ +\x7d\x84\x8b\x7e\x85\x8c\x81\x87\x8e\x80\x86\x8d\x80\x88\x8e\x80\ +\x89\x8d\x82\x8b\x8f\x70\x7a\x80\x47\x57\x5e\x5b\x66\x6e\x84\x89\ +\x8e\x87\x8d\x92\x89\x8f\x94\x8a\x90\x95\x8a\x90\x95\x8a\x90\x96\ +\x89\x8f\x94\x86\x8b\x90\x86\x8a\x8f\x8a\x8e\x92\x8b\x8f\x94\x91\ +\x95\x9a\x92\x96\x9b\x94\x98\x9b\x99\x9e\xa1\x97\x9c\x9f\x96\x9a\ +\x9d\x98\x9c\xa0\x98\x9b\x9f\x96\x99\x9d\x97\x9a\x9e\x97\x9b\x9f\ +\x9b\x9d\xa0\x99\x9b\x9c\x9a\x9b\x9c\x9c\x9d\x9f\x9d\x9f\xa0\xa0\ +\xa2\xa3\xa3\xa6\xa7\xa0\xa4\xa5\x8e\x93\x94\x80\x85\x85\x8e\x91\ +\x92\xa4\xa6\xa7\xa9\xab\xac\x90\x93\x94\x7f\x80\x81\x93\x95\x97\ +\x80\x87\x8a\x40\x45\x45\x31\x36\x38\x86\x87\x89\x92\x91\x93\xac\ +\xaa\xaa\xb5\xb3\xb4\xa6\xa5\xa8\x88\x89\x8e\x8c\x8d\x90\xa4\xa3\ +\xa5\xb3\xb2\xb3\xae\xaf\xb1\x8e\x90\x90\x8b\x8a\x8c\x99\x97\x99\ +\xb3\xb1\xb3\xb7\xb7\xb9\xb4\xb3\xb6\xb7\xb6\xb8\xb9\xb8\xba\xb8\ +\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xb8\xb8\xb9\xbb\xba\ +\xbc\xbc\xbb\xbc\xbd\xbd\xbe\xbc\xbc\xbe\xb6\xb6\xb6\xb9\xb8\xb8\ +\xb9\xb9\xb9\xba\xba\xba\x00\x00\x00\xe6\xe1\xde\xe6\xe1\xde\xe7\ +\xe2\xdf\xe7\xe2\xdf\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ +\xdf\xe7\xe2\xde\xe8\xe3\xe1\xe7\xe2\xdf\xe7\xe2\xe0\xe8\xe3\xe0\ +\xe7\xe2\xdf\xe7\xe2\xdf\xe6\xe1\xdf\xe6\xe1\xde\xe5\xe0\xde\xe4\ +\xdf\xdd\xe4\xdf\xdc\xe2\xdd\xda\xe0\xdc\xda\xde\xda\xd9\xda\xd7\ +\xd6\xd5\xd0\xcf\xcc\xc7\xc6\xc1\xbc\xbd\xaf\xac\xac\x90\x90\x90\ +\x69\x6d\x6e\x40\x49\x4f\x2e\x38\x41\x3f\x44\x4c\x67\x65\x69\x86\ +\x81\x82\x95\x8f\x91\x9e\x99\x9d\xa4\xa1\xa3\xa8\xa6\xa8\xaa\xa6\ +\xa8\xa8\xa7\xaa\xa7\xa5\xa7\xa4\xa3\xa5\x92\x93\x95\x80\x82\x85\ +\x7a\x7d\x81\x80\x82\x85\x85\x87\x88\x83\x87\x88\x84\x86\x88\x83\ +\x84\x87\x77\x7a\x7e\x6d\x70\x75\x79\x7b\x80\x86\x8a\x8f\x87\x8c\ +\x91\x85\x8b\x8f\x83\x87\x8c\x83\x88\x8d\x83\x89\x8d\x81\x87\x8c\ +\x7c\x83\x88\x71\x7b\x81\x63\x6e\x76\x63\x6c\x75\x6d\x73\x7c\x68\ +\x70\x79\x5c\x66\x70\x5f\x67\x6f\x60\x67\x6e\x64\x6a\x70\x72\x77\ +\x7c\x71\x75\x7a\x64\x6a\x6f\x66\x6b\x6f\x6a\x70\x75\x6c\x72\x77\ +\x75\x7b\x80\x7c\x82\x86\x7c\x83\x89\x7c\x83\x8a\x7c\x84\x8b\x7e\ +\x86\x8d\x80\x88\x8f\x7f\x86\x8e\x81\x8a\x8f\x81\x8a\x8e\x84\x8b\ +\x90\x82\x88\x8e\x79\x81\x87\x7c\x83\x88\x86\x8c\x92\x88\x8e\x93\ +\x87\x8d\x92\x89\x8f\x94\x87\x8d\x92\x8a\x91\x96\x8b\x92\x97\x89\ +\x8e\x93\x88\x8c\x91\x89\x8d\x92\x8b\x8f\x94\x91\x95\x99\x94\x98\ +\x9d\x95\x9a\x9e\x99\x9d\xa1\x97\x9b\x9f\x96\x9a\x9e\x99\x9d\xa2\ +\x9a\x9d\xa2\x99\x9c\xa1\x97\x9b\x9f\x98\x9b\x9f\x9a\x9c\x9f\x9a\ +\x9d\x9f\x9b\x9c\x9d\x9c\x9e\x9f\xa0\xa1\xa2\xa1\xa2\xa4\xa3\xa3\ +\xa5\xa3\xa5\xa6\xa4\xa7\xa8\x99\x9c\x9d\x85\x88\x89\x88\x8a\x8c\ +\x9f\xa1\xa2\xab\xad\xad\x98\x9a\x9b\x82\x85\x85\x8c\x8e\x8e\x74\ +\x7a\x7c\x78\x7f\x82\xa2\xa4\xa4\x8a\x8b\x8d\x8c\x8b\x8d\xa3\xa2\ +\xa3\xb5\xb4\xb6\xa9\xaa\xad\x8d\x8f\x93\x85\x87\x8a\x9c\x9d\x9d\ +\xb1\xb0\xb2\xb4\xb6\xb7\x9e\x9d\xa1\x8a\x89\x8d\x91\x91\x94\xb0\ +\xaf\xb2\xb9\xb8\xba\xb6\xb5\xb8\xb7\xb6\xb9\xb7\xb6\xb8\xb9\xb7\ +\xb9\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xbc\xbc\xbc\ +\xba\xba\xbb\xbb\xba\xbb\xb8\xb8\xb7\xbc\xbc\xbc\xbd\xbc\xbc\xb8\ +\xb8\xb8\x00\x00\x00\xe7\xe2\xdf\xe6\xe1\xde\xe6\xe1\xde\xe7\xe3\ +\xe0\xe7\xe3\xe0\xe7\xe2\xe0\xe7\xe2\xdf\xe6\xe1\xdf\xe7\xe2\xe0\ +\xe8\xe3\xe2\xe8\xe3\xe0\xe8\xe3\xe1\xe6\xe1\xdf\xe6\xe1\xde\xe6\ +\xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\xdf\ +\xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd8\xd7\xd8\xd4\xd3\xd1\xcd\xcc\ +\xc7\xc2\xc1\xbb\xb6\xb7\xa4\xa2\xa2\x81\x81\x82\x5a\x60\x61\x36\ +\x42\x46\x32\x3a\x41\x50\x52\x58\x75\x72\x75\x8d\x88\x89\x99\x95\ +\x96\xa2\x9f\xa1\xa6\xa4\xa6\xa8\xa6\xa8\xa9\xa7\xa9\xa7\xa6\xa9\ +\xa5\xa4\xa6\xa0\x9f\xa1\x8e\x8e\x90\x84\x86\x8a\x82\x84\x87\x85\ +\x86\x88\x87\x89\x8b\x81\x84\x86\x83\x86\x89\x7c\x7d\x81\x65\x6a\ +\x70\x4d\x55\x5e\x5f\x64\x6b\x7e\x81\x86\x85\x8a\x90\x86\x8c\x91\ +\x85\x89\x8f\x82\x88\x8c\x81\x87\x8c\x7f\x85\x8a\x7e\x86\x8a\x7c\ +\x84\x89\x74\x7d\x84\x6e\x77\x7f\x6d\x75\x7e\x6f\x76\x7f\x69\x71\ +\x7a\x54\x5c\x65\x4a\x50\x57\x54\x5a\x61\x69\x6e\x73\x6c\x70\x75\ +\x49\x50\x53\x47\x4d\x51\x64\x6b\x6e\x6c\x72\x77\x6d\x73\x78\x78\ +\x7d\x82\x7e\x85\x8b\x7d\x84\x8b\x7d\x85\x8c\x7f\x87\x8f\x80\x88\ +\x8f\x80\x89\x8e\x82\x8b\x8f\x82\x8a\x8f\x84\x8d\x91\x83\x8b\x90\ +\x84\x8a\x8f\x84\x8a\x90\x87\x8d\x93\x86\x8c\x92\x86\x8c\x91\x89\ +\x8f\x94\x88\x8e\x93\x8a\x90\x96\x8a\x90\x95\x8b\x91\x96\x8d\x91\ +\x97\x8b\x8f\x94\x8d\x91\x96\x92\x97\x9a\x95\x9a\x9d\x95\x9a\x9e\ +\x97\x9b\x9f\x98\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9d\xa0\xa5\x9c\ +\x9f\xa4\x9a\x9d\xa2\x99\x9c\xa0\x98\x9b\x9e\x9c\x9e\xa1\x9d\x9f\ +\xa0\x9c\x9d\x9e\xa0\xa0\xa2\xa1\xa0\xa2\xa2\xa2\xa4\xa3\xa4\xa6\ +\xa4\xa6\xa7\xa7\xaa\xab\x9e\xa1\xa2\x89\x8b\x8e\x83\x85\x86\x9f\ +\x9f\xa0\xa7\xa9\xa9\x9c\x9e\x9e\x80\x82\x84\x3e\x44\x47\x88\x8c\ +\x8e\xa5\xa6\xa6\x88\x89\x89\x7b\x7c\x7e\x88\x89\x8a\x9d\x9c\x9e\ +\xb0\xaf\xb1\xab\xac\xae\x98\x9b\x9c\x83\x85\x86\x91\x91\x93\xb2\ +\xb3\xb4\xb5\xb6\xb7\xaa\xaa\xad\x91\x91\x95\x89\x88\x8c\xa4\xa2\ +\xa4\xbc\xb9\xbc\xb8\xb7\xb9\xba\xb7\xb9\xb9\xb6\xb8\xb8\xb6\xb8\ +\xbb\xba\xbc\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xb9\xb9\xb8\xb9\xbc\ +\xbb\xbd\xb9\xb8\xba\xc0\xc0\xc0\xbd\xbc\xbd\xbb\xbb\xbb\x00\x00\ +\x00\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe0\ +\xe7\xe2\xe0\xe7\xe2\xde\xe7\xe2\xdf\xe8\xe3\xe2\xe7\xe2\xe1\xe7\ +\xe2\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\ +\xe1\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xde\xe2\xdd\xdc\ +\xdf\xda\xda\xdb\xd5\xd6\xd7\xd2\xd1\xcf\xc9\xc8\xc5\xc0\xbf\xb3\ +\xaf\xaf\x98\x97\x97\x71\x74\x74\x4a\x52\x53\x31\x3c\x40\x3a\x42\ +\x46\x62\x61\x65\x80\x7b\x7d\x90\x8b\x8c\x9c\x98\x99\xa4\xa1\xa2\ +\xa6\xa4\xa6\xa8\xa7\xa8\xa7\xa6\xa8\xa8\xa7\xa9\xa7\xa6\xa8\x9f\ +\x9e\xa0\x8f\x8f\x91\x87\x8a\x8d\x85\x88\x89\x85\x87\x88\x87\x8b\ +\x8c\x7f\x83\x86\x7f\x81\x84\x78\x7a\x7d\x5a\x61\x68\x39\x47\x52\ +\x4e\x56\x60\x77\x7a\x7f\x82\x88\x8d\x86\x8c\x91\x83\x89\x8f\x80\ +\x87\x8c\x80\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8a\x7b\x83\ +\x89\x74\x7c\x83\x6d\x75\x7d\x6e\x75\x7d\x6c\x73\x79\x46\x4f\x58\ +\x22\x2b\x33\x3d\x44\x4b\x60\x63\x68\x5f\x63\x67\x34\x3b\x40\x1f\ +\x25\x2a\x51\x57\x5c\x70\x75\x7a\x6d\x72\x77\x6f\x75\x79\x7a\x80\ +\x86\x7d\x83\x89\x7d\x85\x8c\x80\x88\x8e\x7f\x87\x8d\x80\x89\x8c\ +\x81\x89\x8e\x84\x8a\x8f\x83\x8a\x8f\x84\x8b\x90\x85\x8b\x91\x85\ +\x8b\x92\x89\x8f\x94\x88\x8e\x93\x87\x8d\x92\x87\x8d\x92\x89\x8f\ +\x94\x8a\x90\x96\x8b\x91\x98\x8d\x93\x99\x90\x95\x9a\x8f\x93\x98\ +\x90\x93\x98\x92\x96\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9b\x9e\x97\ +\x9c\x9f\x98\x9c\xa0\x9b\x9e\xa3\x9e\xa1\xa6\x9d\xa0\xa5\x9a\x9d\ +\xa2\x98\x9b\xa0\x98\x9b\x9f\x9e\xa1\xa3\xa0\xa2\xa3\x9f\x9f\xa0\ +\x9f\x9e\xa1\xa1\xa0\xa2\xa2\xa4\xa5\xa5\xa7\xa8\xa4\xa6\xa7\xa5\ +\xa6\xa9\xa7\xa9\xad\xa4\xa6\xaa\x91\x93\x96\x85\x88\x89\x95\x97\ +\x98\xab\xab\xac\x82\x83\x85\x5f\x64\x66\x7a\x80\x82\x8c\x8f\x90\ +\x6d\x70\x72\x66\x69\x6c\x9d\x9f\xa0\x86\x88\x8a\x90\x91\x93\xab\ +\xab\xac\xb2\xb3\xb3\xa4\xa6\xa7\x8d\x8e\x91\x85\x87\x8a\xaa\xaa\ +\xab\xb6\xb6\xb7\xaf\xaf\xb1\x9e\x9e\xa1\x89\x89\x8b\x93\x91\x95\ +\xba\xb8\xb9\xbf\xbc\xbe\xb9\xb6\xb8\xb8\xb6\xb8\xba\xb9\xbb\xba\ +\xb9\xbb\xbc\xbb\xbd\xba\xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ +\xbe\xc2\xc2\xc3\xbd\xbd\xbd\xbc\xbb\xbd\x00\x00\x00\xe6\xe1\xe0\ +\xe6\xe1\xde\xe7\xe2\xde\xe6\xe1\xde\xe6\xe1\xde\xe7\xe2\xe1\xe8\ +\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\ +\xe0\xe7\xe2\xe1\xe7\xe2\xe1\xe7\xe2\xe1\xe6\xe1\xe0\xe5\xdf\xdf\ +\xe5\xe0\xdf\xe5\xe0\xde\xe2\xdd\xdc\xe0\xdb\xda\xde\xd8\xd8\xdb\ +\xd5\xd5\xd3\xcc\xcc\xcc\xc4\xc5\xbf\xb9\xb8\xac\xa9\xa9\x8e\x8d\ +\x8d\x64\x68\x68\x3c\x46\x48\x2f\x39\x3d\x45\x4b\x4e\x6c\x6c\x6d\ +\x88\x84\x84\x97\x92\x92\xa0\x9c\x9c\xa5\xa3\xa3\xa7\xa6\xa6\xa8\ +\xa6\xa7\xa7\xa6\xa8\xa6\xa5\xa7\xa5\xa5\xa6\x9e\x9d\x9f\x92\x94\ +\x96\x89\x8b\x8f\x87\x89\x8b\x85\x88\x89\x83\x86\x88\x77\x7b\x7e\ +\x6c\x70\x73\x68\x6b\x6f\x60\x66\x6b\x53\x5d\x66\x56\x5d\x65\x77\ +\x7a\x80\x81\x86\x8b\x84\x89\x8e\x81\x88\x8d\x81\x87\x8e\x7f\x85\ +\x8c\x7d\x84\x8b\x7b\x83\x88\x7c\x85\x89\x7c\x84\x8a\x79\x81\x88\ +\x73\x7b\x82\x6e\x75\x7c\x69\x6f\x75\x42\x4c\x53\x0e\x1a\x20\x2f\ +\x37\x3e\x63\x66\x6a\x53\x57\x5b\x1c\x24\x2b\x08\x0d\x13\x3c\x41\ +\x47\x6f\x72\x77\x73\x77\x7d\x6a\x70\x76\x73\x78\x7e\x7e\x84\x88\ +\x7c\x85\x8a\x7d\x86\x8b\x7e\x87\x8c\x80\x87\x8c\x82\x89\x8e\x84\ +\x8a\x90\x83\x89\x8e\x86\x8c\x92\x87\x8d\x94\x87\x8d\x94\x87\x8d\ +\x93\x88\x8e\x93\x88\x8e\x94\x87\x8c\x92\x89\x8e\x93\x8a\x90\x95\ +\x8f\x95\x9c\x8e\x94\x99\x8e\x93\x98\x93\x97\x9c\x94\x98\x9d\x91\ +\x93\x98\x94\x97\x9c\x98\x9b\x9f\x97\x9a\x9e\x97\x9b\x9f\x99\x9c\ +\xa0\x9b\x9e\xa3\x9c\x9f\xa4\x9d\xa0\xa5\x9c\x9f\xa4\x9e\xa1\xa5\ +\x9c\x9f\xa3\x9f\xa2\xa3\x94\x95\x96\x8f\x8f\x90\xa3\xa2\xa5\xa0\ +\xa1\xa3\xa1\xa2\xa4\xa4\xa5\xa7\xa4\xa6\xa7\xa6\xa7\xaa\xa9\xaa\ +\xae\xa9\xab\xaf\xa5\xa7\xa9\x98\x9b\x9e\x7f\x82\x86\x86\x87\x8a\ +\x6a\x6b\x6e\x96\x98\x9a\x98\x9d\x9d\x84\x88\x8a\x79\x7c\x80\x97\ +\x99\x9c\xad\xad\xaf\xa3\xa4\xa6\x88\x89\x8c\x87\x87\x8a\xaa\xaa\ +\xaa\xb3\xb4\xb4\xad\xae\xaf\x96\x97\x99\x81\x80\x82\xa0\x9f\xa1\ +\xb6\xb5\xb6\xb7\xb6\xb7\xa9\xa9\xaa\x91\x91\x95\x8c\x8b\x8f\xaf\ +\xac\xaf\xbb\xb8\xba\xb9\xb8\xba\xbb\xb9\xbb\xbb\xb9\xbb\xbc\xbb\ +\xbd\xbd\xbb\xbd\xb9\xb8\xba\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbf\xbf\ +\xbd\xbd\xbe\xbd\xbd\xbd\x00\x00\x00\xe7\xe2\xe0\xe6\xe1\xdf\xe5\ +\xe0\xdf\xe4\xdf\xdc\xe5\xe0\xde\xe7\xe2\xdf\xe7\xe1\xde\xe7\xe1\ +\xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe7\xe2\xe0\xe7\xe2\xe0\xe7\xe2\xe1\ +\xe7\xe2\xe1\xe7\xe2\xe0\xe7\xe2\xe1\xe5\xe0\xde\xe5\xe0\xde\xe4\ +\xdf\xde\xe2\xdd\xdc\xe0\xdb\xda\xdd\xd8\xd7\xd9\xd3\xd3\xd2\xca\ +\xcb\xc9\xc2\xc1\xb9\xb5\xb4\xa2\xa0\xa0\x7e\x7f\x7f\x59\x5e\x5f\ +\x35\x3e\x42\x33\x3e\x42\x55\x59\x5a\x7a\x78\x78\x8f\x8a\x8b\x9b\ +\x97\x98\xa2\xa0\xa0\xa5\xa3\xa4\xaa\xa8\xa9\xab\xa8\xa9\xa8\xa7\ +\xa8\xa6\xa6\xa7\xa3\xa3\xa4\x9b\x9b\x9c\x92\x93\x95\x8d\x90\x94\ +\x87\x8a\x8e\x84\x88\x8a\x77\x7a\x7c\x67\x6c\x6e\x5b\x60\x65\x5d\ +\x61\x66\x62\x66\x6b\x6a\x6f\x73\x6c\x71\x75\x7a\x7e\x82\x7e\x83\ +\x88\x82\x88\x8d\x82\x88\x8f\x80\x86\x8d\x7f\x85\x8c\x7b\x83\x8b\ +\x7b\x83\x8a\x7d\x85\x8b\x7c\x84\x8a\x7c\x84\x8a\x77\x7f\x86\x6b\ +\x74\x7a\x54\x5d\x65\x34\x40\x48\x0e\x1b\x22\x29\x32\x3a\x5e\x62\ +\x66\x40\x48\x4d\x10\x18\x1e\x07\x0e\x13\x36\x3d\x44\x6a\x6e\x75\ +\x75\x7a\x7f\x70\x76\x7b\x6d\x73\x79\x78\x7e\x83\x7d\x84\x8a\x7f\ +\x86\x8c\x7f\x87\x8d\x80\x89\x8d\x84\x8c\x92\x85\x8b\x91\x84\x8a\ +\x8f\x86\x8c\x91\x87\x8d\x94\x87\x8d\x93\x85\x8b\x91\x86\x8c\x91\ +\x86\x8c\x91\x88\x8d\x92\x8b\x8f\x94\x8a\x8e\x93\x8d\x93\x99\x8e\ +\x94\x9a\x8c\x91\x98\x8f\x93\x98\x93\x97\x9c\x94\x98\x9c\x93\x98\ +\x9b\x98\x9c\xa0\x99\x9c\xa0\x97\x9b\x9f\x9a\x9e\xa2\x9a\x9e\xa3\ +\x99\x9e\xa2\x9c\x9f\xa3\x9c\x9f\xa3\x9d\xa0\xa5\xa2\xa5\xa9\x9f\ +\xa0\xa3\x6f\x73\x75\x64\x65\x68\x84\x83\x86\xa2\xa1\xa4\xa4\xa3\ +\xa5\xa4\xa3\xa5\xa4\xa6\xa7\xa9\xab\xad\xaa\xab\xb0\xa6\xa8\xaa\ +\xa6\xa8\xa9\xa5\xa7\xa9\xa0\xa2\xa6\x68\x6b\x70\x59\x5d\x62\xa5\ +\xa7\xa7\xab\xae\xad\xa4\xa6\xa8\x89\x8b\x8f\x84\x85\x88\xa3\xa2\ +\xa3\xae\xad\xae\xa7\xa8\xaa\x93\x96\x99\x80\x82\x86\xa4\xa4\xa4\ +\xb5\xb6\xb4\xb4\xb4\xb4\xa4\xa5\xa6\x88\x89\x8b\x90\x8f\x91\xb6\ +\xb5\xb5\xb7\xb6\xb7\xb3\xb5\xb6\x9e\xa0\xa2\x86\x88\x8b\x9e\x9d\ +\xa0\xbd\xbb\xbd\xbc\xba\xbc\xba\xb8\xbb\xbb\xba\xbc\xbc\xbb\xbd\ +\xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\xbd\xbd\xbe\xb9\xb8\xba\xba\ +\xb9\xbb\x00\x00\x00\xe6\xe1\xdf\xe6\xe1\xde\xe6\xe1\xdf\xe5\xe0\ +\xdd\xe5\xe0\xdd\xe5\xe0\xdd\xe6\xe1\xde\xe6\xe0\xdf\xe6\xe1\xe0\ +\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe6\xe1\xe0\xe6\xe1\xe0\xe6\ +\xe1\xdf\xe6\xe1\xe0\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdd\ +\xdb\xdf\xda\xda\xdc\xd6\xd6\xd8\xd0\xcf\xcf\xc8\xc7\xc3\xbe\xbd\ +\xb3\xae\xae\x97\x96\x97\x6f\x72\x74\x48\x50\x54\x30\x3a\x3f\x3b\ +\x44\x46\x62\x64\x64\x84\x80\x81\x94\x8f\x90\x9d\x9a\x9a\xa4\xa1\ +\xa2\xa8\xa5\xa6\xa8\xa6\xa8\xa9\xa7\xa7\xa6\xa6\xa7\xa6\xa6\xa6\ +\xa4\xa4\xa4\x9d\x9d\x9d\x99\x99\x9a\x8d\x90\x93\x87\x8a\x8e\x82\ +\x86\x88\x72\x77\x78\x5c\x61\x63\x4a\x50\x54\x52\x56\x5c\x64\x68\ +\x6d\x6c\x70\x74\x76\x79\x7d\x7a\x7f\x83\x82\x87\x8c\x83\x89\x8e\ +\x82\x89\x8f\x7d\x86\x8b\x7d\x84\x8b\x7c\x84\x8b\x7c\x84\x8b\x7c\ +\x84\x8b\x7b\x83\x8a\x7c\x84\x8b\x7c\x84\x8b\x70\x78\x80\x43\x51\ +\x5a\x1c\x28\x30\x1b\x28\x2f\x36\x40\x48\x46\x4f\x56\x28\x32\x3a\ +\x07\x10\x15\x19\x22\x29\x4d\x54\x5d\x6a\x71\x78\x71\x77\x7c\x74\ +\x7a\x7f\x70\x77\x7c\x6e\x74\x7a\x7a\x7f\x84\x81\x87\x8c\x7e\x87\ +\x8b\x80\x88\x8d\x86\x8c\x93\x83\x89\x8e\x85\x8b\x90\x87\x8d\x92\ +\x87\x8d\x92\x88\x8e\x95\x88\x8d\x93\x87\x8c\x91\x87\x8d\x91\x8a\ +\x8f\x93\x8c\x91\x96\x8c\x91\x96\x89\x8d\x92\x88\x8d\x92\x88\x8d\ +\x92\x8e\x92\x97\x90\x94\x99\x94\x99\x9d\x95\x98\x9b\x96\x99\x9d\ +\x97\x9b\xa0\x9a\x9d\xa2\x9c\xa0\xa4\x9a\x9e\xa3\x98\x9c\xa0\x9a\ +\x9e\xa1\x9d\xa0\xa4\xa0\xa3\xa8\xa5\xa8\xac\x91\x94\x98\x64\x69\ +\x6d\x89\x8c\x8d\x78\x7a\x7b\x7d\x7d\x7f\xa0\x9f\xa1\xa2\xa3\xa5\ +\xa1\xa2\xa5\xa3\xa5\xa6\xa7\xa7\xaa\xa4\xa6\xa8\xa4\xa6\xa8\xa5\ +\xa6\xa9\xa0\xa2\xa6\x6d\x71\x74\x7c\x7f\x82\x80\x83\x84\xa1\xa3\ +\xa2\xb0\xb0\xb1\xab\xab\xad\x94\x95\x97\x87\x88\x89\x9c\x9c\x9d\ +\xaf\xaf\xaf\xae\xb0\xb1\x9f\xa2\xa5\x7f\x82\x85\x94\x95\x95\xb5\ +\xb6\xb4\xb5\xb5\xb5\xae\xaf\xb0\x93\x94\x95\x80\x80\x82\xab\xaa\ +\xaa\xbc\xbc\xbd\xb6\xb7\xb8\xab\xac\xae\x8c\x8d\x8e\x96\x95\x96\ +\xb5\xb2\xb2\xbb\xba\xbc\xbe\xbb\xbd\xbf\xbc\xbe\xbe\xbd\xbf\xbb\ +\xba\xbc\xba\xb9\xbb\xb9\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xb9\x00\x00\ +\x00\xe6\xe1\xdf\xe6\xe1\xdf\xe6\xe1\xdd\xe5\xe0\xdd\xe5\xe0\xdd\ +\xe5\xe0\xde\xe6\xe1\xe0\xe6\xe1\xe0\xe7\xe2\xe1\xe7\xe2\xe0\xe7\ +\xe2\xe0\xe7\xe2\xe0\xe6\xe1\xe0\xe6\xe1\xe1\xe6\xe1\xe0\xe5\xe0\ +\xde\xe4\xdf\xde\xe4\xde\xde\xe3\xdd\xdb\xe1\xdb\xd9\xde\xd9\xd8\ +\xd9\xd3\xd2\xd5\xcd\xcb\xcb\xc5\xc3\xbc\xb7\xb7\xa9\xa6\xa6\x88\ +\x89\x8a\x62\x66\x6a\x3c\x46\x4d\x36\x3f\x45\x49\x4e\x52\x6e\x6e\ +\x6e\x8a\x85\x86\x98\x92\x93\xa1\x9c\x9d\xa7\xa3\xa4\xaa\xa7\xa9\ +\xa8\xa6\xa8\xa7\xa4\xa6\xa5\xa4\xa5\xa5\xa5\xa5\xa4\xa3\xa5\x9f\ +\x9e\xa0\x98\x99\x9a\x8f\x92\x93\x85\x88\x8b\x7d\x80\x82\x6e\x73\ +\x74\x55\x5c\x5d\x4a\x50\x53\x55\x59\x5d\x65\x68\x6c\x6a\x6d\x71\ +\x75\x78\x7c\x7c\x81\x84\x82\x87\x8c\x82\x89\x8e\x80\x88\x8d\x7f\ +\x87\x8e\x7f\x87\x8e\x7e\x86\x8c\x7c\x84\x8a\x7d\x85\x8c\x7c\x84\ +\x8b\x7b\x83\x8a\x7e\x84\x8b\x72\x79\x81\x3a\x48\x53\x0e\x1c\x24\ +\x2c\x38\x40\x54\x5d\x61\x40\x4b\x51\x0e\x1a\x20\x06\x0c\x11\x2e\ +\x36\x3e\x60\x68\x70\x75\x7b\x82\x6e\x76\x7c\x71\x78\x7d\x77\x7d\ +\x82\x6e\x75\x7a\x71\x77\x7c\x7c\x81\x87\x7e\x85\x8a\x82\x88\x8d\ +\x82\x88\x8d\x81\x87\x8b\x83\x89\x8e\x86\x8c\x91\x89\x8e\x93\x89\ +\x8e\x93\x8b\x90\x95\x8b\x8f\x94\x8a\x8e\x93\x88\x8d\x92\x8a\x8f\ +\x94\x8b\x91\x95\x8a\x8f\x94\x85\x8a\x8f\x84\x89\x8d\x89\x8e\x91\ +\x8f\x94\x98\x92\x97\x9a\x95\x98\x9d\x97\x9b\xa0\x97\x9b\xa0\x9a\ +\x9d\xa2\x9d\xa0\xa5\x9d\xa1\xa5\x9b\x9f\xa2\x9e\xa1\xa5\x9f\xa2\ +\xa6\xa0\xa3\xa7\xa5\xa6\xaa\x78\x7d\x82\x4f\x55\x5c\x89\x8a\x8d\ +\x99\x99\x9b\x68\x69\x6b\x65\x64\x67\x9b\x9b\x9d\xa3\xa4\xa6\xa5\ +\xa4\xa6\xa7\xa7\xa9\xa6\xa8\xa9\xa5\xa7\xa8\xa5\xa7\xa9\x8d\x8e\ +\x92\x76\x7a\x7c\xa5\xa6\xa7\x97\x99\x9a\x7f\x82\x83\x99\x9a\x9b\ +\xaf\xae\xaf\xad\xae\xaf\x9d\x9f\xa0\x84\x86\x87\x92\x92\x93\xac\ +\xab\xad\xb5\xb6\xb7\xa8\xab\xac\x8a\x8c\x8d\x89\x8a\x8a\xaf\xaf\ +\xb0\xb4\xb4\xb4\xb3\xb3\xb4\xa2\xa4\xa5\x86\x87\x88\x9a\x99\x9b\ +\xba\xba\xbb\xbb\xba\xbb\xba\xb8\xba\x9a\x99\x9b\x86\x84\x84\xaf\ +\xad\xae\xbe\xbb\xbd\xbf\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\ +\xbc\xb7\xb6\xb7\xb8\xb7\xb8\xb9\xb7\xb8\x00\x00\x00\xe5\xdf\xdd\ +\xe5\xdf\xdc\xe7\xe0\xe0\xe6\xdf\xdf\xe5\xe0\xde\xe5\xe0\xdf\xe6\ +\xe1\xe0\xe6\xe1\xe0\xe7\xe1\xdf\xe6\xe0\xdf\xe5\xdf\xde\xe6\xe1\ +\xe0\xe8\xe3\xe1\xe7\xe2\xe0\xe6\xe1\xdf\xe5\xe0\xde\xe4\xdf\xdc\ +\xe3\xde\xdb\xe2\xdc\xda\xdf\xda\xd8\xdb\xd6\xd5\xd7\xd2\xd1\xd0\ +\xc9\xc7\xc6\xc1\xbe\xb8\xb4\xb5\xa1\xa0\xa0\x7a\x7c\x7c\x52\x58\ +\x5b\x37\x40\x47\x3d\x44\x4b\x5b\x5c\x61\x7b\x79\x7a\x8f\x8b\x8b\ +\x9c\x98\x99\xa2\x9f\xa0\xa6\xa3\xa5\xa8\xa6\xa8\xa9\xa6\xa8\xa9\ +\xa6\xa8\xa5\xa4\xa5\xa3\xa3\xa4\xa1\xa0\xa1\x9e\x9d\x9f\x97\x99\ +\x9a\x8c\x8f\x91\x85\x89\x8c\x7c\x80\x81\x6c\x70\x71\x55\x5c\x5e\ +\x48\x4f\x53\x5c\x5f\x63\x62\x65\x69\x64\x67\x6b\x71\x74\x78\x7d\ +\x81\x85\x81\x86\x8b\x84\x8a\x8f\x82\x88\x8d\x7f\x87\x8c\x7d\x85\ +\x8c\x7d\x85\x8c\x7e\x86\x8d\x7c\x84\x8b\x7c\x83\x8a\x7b\x82\x89\ +\x7c\x82\x89\x72\x7a\x81\x3a\x49\x54\x0e\x1e\x26\x2d\x3b\x44\x61\ +\x68\x6c\x4d\x57\x5d\x09\x17\x1d\x0b\x14\x1c\x41\x4a\x53\x6c\x72\ +\x79\x76\x7c\x83\x75\x7c\x82\x6e\x74\x7b\x75\x7b\x81\x77\x7d\x82\ +\x6b\x72\x78\x70\x76\x7c\x7e\x85\x89\x83\x8a\x8e\x81\x86\x8c\x84\ +\x8a\x90\x87\x8d\x93\x87\x8c\x93\x89\x8d\x92\x89\x8e\x93\x8b\x90\ +\x94\x8c\x91\x95\x8b\x90\x94\x8c\x91\x96\x8a\x90\x95\x8c\x91\x94\ +\x8c\x91\x95\x8a\x8e\x92\x8b\x90\x94\x8f\x94\x98\x91\x96\x99\x96\ +\x9a\x9e\x96\x99\x9e\x97\x9a\x9f\x99\x9c\xa1\x99\x9c\xa1\x9c\x9f\ +\xa3\x9b\x9e\xa3\x9b\x9f\xa4\x9d\xa0\xa5\x9d\xa0\xa4\x9f\xa2\xa6\ +\x96\x98\x9c\x67\x6d\x72\x82\x86\x89\x78\x7b\x7e\x73\x75\x78\x6b\ +\x6d\x70\x6b\x6e\x70\x7a\x7c\x7d\x99\x99\x9b\xa7\xa7\xa8\xa5\xa5\ +\xa6\xa7\xa7\xa9\xa8\xa8\xaa\xa7\xa7\xa9\x70\x74\x77\x8c\x8f\x91\ +\xaa\xaa\xab\xaa\xad\xae\xa4\xa8\xa9\x89\x8b\x8c\x8d\x8e\x8d\xa5\ +\xa5\xa5\xb0\xb0\xb1\xaa\xab\xac\x87\x88\x89\x8b\x8b\x8c\xa8\xa9\ +\xab\xaf\xb0\xb0\xb1\xb3\xb3\x9a\x9b\x9b\x7d\x7d\x7d\xa4\xa2\xa2\ +\xb3\xb2\xb3\xb7\xb6\xb8\xae\xaf\xb1\x8b\x8c\x8e\x8c\x8d\x8e\xb3\ +\xb1\xb2\xbd\xb9\xbb\xbd\xbb\xbd\xae\xac\xac\x80\x7f\x80\x9c\x9b\ +\x9d\xbb\xba\xbb\xbe\xbc\xbd\xba\xb8\xba\xbc\xba\xbc\xbe\xbc\xbd\ +\xbb\xb8\xba\xb9\xb8\xb8\x00\x00\x00\xe6\xe1\xde\xe6\xe0\xde\xe6\ +\xe0\xe0\xe5\xe0\xde\xe5\xe0\xdd\xe5\xe0\xdd\xe5\xdf\xde\xe6\xde\ +\xdd\xe3\xdc\xd9\xe1\xd9\xd6\xe2\xdb\xd8\xe5\xde\xdb\xe6\xe1\xde\ +\xe6\xe0\xde\xe6\xe0\xdd\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xdc\xdc\xe2\ +\xda\xda\xdf\xd8\xd6\xda\xd3\xd0\xd4\xce\xcb\xcb\xc6\xc3\xc2\xbd\ +\xbc\xaf\xac\xad\x91\x91\x91\x6c\x6f\x6f\x46\x4e\x53\x31\x3b\x42\ +\x44\x4b\x52\x69\x68\x6d\x83\x81\x82\x94\x92\x92\xa0\x9e\x9e\xa4\ +\xa1\xa2\xa6\xa4\xa6\xaa\xa8\xaa\xaa\xa8\xaa\xa8\xa7\xa9\xa6\xa5\ +\xa7\xa2\xa1\xa3\xa0\x9f\xa1\x9d\x9e\x9f\x93\x95\x96\x89\x8c\x8f\ +\x82\x85\x87\x7c\x80\x81\x6b\x70\x71\x52\x59\x5d\x45\x4b\x51\x55\ +\x58\x5c\x59\x5d\x61\x61\x64\x68\x6c\x6f\x73\x80\x84\x88\x82\x88\ +\x8d\x81\x87\x8c\x80\x86\x8b\x7d\x83\x88\x7c\x85\x8a\x7b\x84\x89\ +\x7c\x84\x8a\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x84\x8a\x72\ +\x7a\x81\x51\x5d\x68\x24\x37\x41\x39\x47\x52\x5f\x67\x6d\x63\x6b\ +\x70\x28\x37\x41\x15\x22\x2d\x52\x5c\x64\x6f\x76\x7b\x70\x77\x7d\ +\x76\x7c\x82\x71\x79\x7e\x6c\x75\x7a\x77\x7d\x82\x74\x7a\x80\x6d\ +\x74\x7a\x78\x7c\x81\x7f\x84\x89\x83\x88\x8d\x82\x88\x8d\x86\x8c\ +\x92\x88\x8c\x92\x88\x8c\x91\x88\x8c\x91\x8b\x8f\x94\x8a\x8f\x93\ +\x8c\x91\x96\x8c\x92\x96\x8d\x92\x96\x8d\x92\x96\x8e\x92\x96\x89\ +\x8d\x91\x8f\x94\x97\x93\x97\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\ +\xa0\x9b\x9f\xa4\x99\x9d\xa2\x9b\x9f\xa4\x9c\x9f\xa4\x9b\x9e\xa3\ +\x9d\x9f\xa5\x9d\xa0\xa5\x9f\xa2\xa6\xa1\xa4\xa8\x81\x85\x88\x4b\ +\x53\x5a\x8a\x8b\x8f\x94\x97\x99\x64\x67\x6c\x49\x4c\x51\x9a\x9b\ +\x99\x8b\x8e\x8d\x74\x76\x77\x8e\x8d\x8f\xa3\xa2\xa4\xa8\xa6\xa8\ +\xa7\xa6\xa8\x93\x94\x97\x76\x7a\x7d\xa1\xa3\xa5\xab\xac\xae\xac\ +\xac\xad\xaf\xaf\xb0\xa9\xaa\xac\x89\x8c\x8d\x81\x83\x84\xa5\xa6\ +\xa6\xb4\xb3\xb3\xb2\xb2\xb3\x91\x93\x94\x7f\x81\x83\x9e\x9e\xa0\ +\xb3\xb3\xb3\xb3\xb4\xb4\xa8\xa8\xa8\x81\x7f\x7f\x92\x8e\x8f\xaf\ +\xae\xae\xb7\xb6\xb8\xb7\xb8\xb9\x99\x9a\x9b\x83\x83\x84\xa2\xa1\ +\xa1\xba\xb8\xb8\xbf\xbd\xbd\xb8\xb7\xb8\x8e\x8f\x92\x85\x85\x88\ +\xb4\xb2\xb4\xba\xb7\xb8\xbd\xba\xbc\xbe\xbb\xbd\xbc\xbb\xbc\xbd\ +\xbc\xbc\x00\x00\x00\xe5\xdf\xdc\xe5\xde\xdb\xe5\xde\xdb\xe3\xdd\ +\xd9\xe3\xdc\xd9\xe3\xdc\xd9\xe3\xdc\xda\xe2\xdc\xdb\xe0\xd9\xd7\ +\xde\xd6\xd3\xdf\xd7\xd4\xe2\xdb\xd8\xe5\xdf\xdd\xe6\xe0\xdf\xe5\ +\xdf\xde\xe4\xdf\xde\xe3\xde\xdd\xe2\xdc\xd9\xe0\xda\xd7\xdd\xd7\ +\xd5\xd9\xd3\xd1\xd2\xcd\xcb\xca\xc5\xc4\xbd\xb8\xb7\xa9\xa5\xa5\ +\x83\x85\x84\x5c\x62\x62\x3b\x44\x4b\x2f\x3a\x41\x4c\x51\x58\x76\ +\x74\x77\x8c\x8a\x89\x97\x94\x94\xa2\xa0\xa0\xa5\xa3\xa4\xa8\xa5\ +\xa7\xab\xa8\xaa\xa8\xa7\xa9\xa6\xa6\xa8\xa4\xa3\xa5\xa2\xa1\xa3\ +\xa0\x9f\xa2\x9b\x9c\x9d\x8f\x92\x93\x84\x88\x8a\x7f\x83\x85\x7c\ +\x80\x80\x6c\x71\x72\x4c\x54\x59\x31\x36\x3d\x47\x49\x4f\x5b\x5e\ +\x62\x60\x63\x67\x67\x6a\x6e\x7a\x7e\x81\x81\x86\x8b\x81\x87\x8c\ +\x80\x86\x8a\x7d\x84\x89\x7c\x85\x89\x7d\x85\x8a\x7c\x84\x8a\x7d\ +\x85\x8b\x7d\x85\x8b\x7b\x83\x8a\x7b\x84\x8a\x77\x7f\x86\x67\x71\ +\x78\x54\x5f\x68\x57\x63\x6a\x63\x6b\x72\x65\x6d\x71\x4d\x5a\x64\ +\x3c\x4b\x56\x5e\x67\x6e\x75\x7b\x80\x6e\x76\x7d\x71\x78\x7f\x77\ +\x7e\x85\x6f\x77\x7e\x70\x76\x7c\x7a\x80\x85\x75\x7b\x80\x6e\x73\ +\x78\x79\x7e\x82\x84\x88\x8c\x86\x8a\x8f\x88\x8c\x91\x87\x8b\x90\ +\x89\x8d\x92\x89\x8d\x92\x8b\x8f\x94\x8f\x93\x98\x8d\x91\x96\x8e\ +\x92\x96\x8e\x93\x96\x8f\x94\x98\x8e\x92\x96\x8f\x93\x97\x90\x95\ +\x99\x90\x95\x99\x93\x96\x9a\x94\x97\x9c\x99\x9c\xa0\x9a\x9d\xa2\ +\x9b\x9e\xa3\x9d\xa0\xa5\x9c\x9f\xa4\x9b\x9e\xa2\x9c\x9f\xa3\x9b\ +\x9e\xa2\xa0\xa3\xa7\x9c\x9f\xa3\x6e\x73\x77\x77\x7a\x7e\x6e\x71\ +\x76\x7a\x7d\x7f\x68\x6c\x6f\x66\x69\x6c\x7f\x80\x81\x93\x94\x93\ +\x62\x67\x69\x57\x59\x5d\x8f\x8c\x8d\xa5\xa3\xa3\xa8\xa7\xa8\xa2\ +\xa3\xa4\x9e\xa1\xa3\xab\xab\xac\xb0\xb0\xb2\xae\xad\xaf\xab\xaa\ +\xac\xb1\xb0\xb2\xad\xac\xae\x93\x94\x96\x83\x85\x86\x9f\x9f\x9f\ +\xb2\xb1\xb2\xb1\xb1\xb3\x9d\x9f\xa0\x85\x88\x88\x9c\x9c\x9c\xa9\ +\xaa\xaa\xb3\xb2\xb2\xb3\xb2\xb2\x90\x8e\x8e\x81\x7f\x7f\xaa\xab\ +\xab\xb5\xb5\xb6\xbb\xbb\xbd\xa7\xa7\xa9\x82\x82\x82\x9a\x97\x97\ +\xb7\xb4\xb4\xbb\xb9\xb9\xbf\xbe\xbf\xab\xac\xac\x81\x81\x82\x9b\ +\x99\x98\xbc\xb9\xba\xbd\xba\xbc\xc1\xbf\xc1\xc1\xbf\xc2\x00\x00\ +\x00\xe2\xdb\xd7\xe0\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\xe1\xd9\xd6\ +\xe1\xda\xd6\xe1\xd9\xd6\xdf\xd8\xd4\xd9\xd0\xcd\xd9\xd0\xcd\xde\ +\xd6\xd3\xe2\xdb\xda\xe5\xe0\xde\xe5\xe1\xde\xe5\xe0\xde\xe3\xde\ +\xdd\xe2\xdd\xdb\xe2\xdb\xd8\xe0\xd9\xd6\xdb\xd5\xd2\xd7\xd2\xd0\ +\xcf\xca\xc9\xc6\xc0\xc0\xb8\xb4\xb3\x9d\x99\x98\x77\x7a\x78\x51\ +\x58\x5b\x35\x3f\x46\x37\x41\x46\x5f\x60\x64\x7d\x7b\x7c\x90\x8e\ +\x8e\x9c\x99\x9a\xa2\xa0\xa1\xa5\xa4\xa4\xa7\xa5\xa7\xa8\xa5\xa7\ +\xa7\xa5\xa7\xa5\xa4\xa6\xa2\xa1\xa3\xa2\xa2\xa3\x9f\x9f\xa2\x98\ +\x9a\x9c\x8d\x91\x92\x86\x89\x8d\x7f\x82\x86\x7a\x7e\x7f\x69\x6e\ +\x6f\x42\x4a\x51\x29\x2f\x38\x3e\x41\x48\x58\x5c\x60\x5a\x5e\x62\ +\x66\x69\x6d\x76\x79\x7d\x81\x84\x89\x81\x87\x8c\x7f\x85\x8a\x80\ +\x87\x8c\x7f\x86\x8d\x7e\x86\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ +\x8b\x7a\x82\x89\x7b\x82\x89\x79\x81\x88\x77\x7e\x85\x72\x79\x7f\ +\x71\x79\x80\x6e\x76\x7b\x65\x6d\x71\x67\x6f\x76\x64\x6e\x75\x68\ +\x6e\x75\x74\x7a\x7f\x74\x7b\x81\x6e\x75\x7c\x74\x7b\x81\x77\x7e\ +\x83\x6f\x77\x7c\x70\x78\x7d\x7b\x80\x85\x75\x7b\x7e\x70\x74\x79\ +\x7b\x80\x84\x86\x8a\x8f\x88\x8d\x91\x87\x8b\x90\x88\x8c\x91\x88\ +\x8d\x92\x8a\x90\x96\x8d\x92\x97\x8d\x93\x97\x8b\x92\x97\x8e\x94\ +\x97\x8e\x93\x96\x90\x94\x99\x90\x95\x99\x8f\x93\x97\x90\x94\x97\ +\x92\x95\x99\x93\x96\x9a\x97\x9a\x9e\x99\x9c\xa0\x9c\x9f\xa3\x9b\ +\x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa3\x9e\xa1\xa5\x9e\xa1\xa5\xa3\xa5\ +\xa9\x89\x8c\x90\x5a\x61\x65\x86\x88\x8c\x92\x94\x98\x64\x68\x6c\ +\x45\x4b\x4f\x93\x94\x95\x89\x8a\x8b\x5d\x60\x62\x55\x5c\x60\x83\ +\x87\x89\x7b\x79\x78\x80\x7b\x7b\xa0\x9e\x9f\xab\xa9\xac\xac\xaa\ +\xac\xac\xab\xad\xad\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xae\xad\xaf\ +\xae\xae\xaf\xae\xae\xaf\x99\x9c\x9d\x85\x87\x88\x94\x94\x95\xaa\ +\xa9\xab\xb0\xb2\xb3\xac\xad\xae\x84\x83\x85\x8e\x8d\x8d\xaa\xa8\ +\xa8\xb1\xaf\xaf\xb2\xb0\xb0\x9b\x9b\x9b\x81\x82\x82\x99\x99\x9a\ +\xb6\xb5\xb5\xba\xba\xba\xb7\xb6\xb7\x94\x94\x94\x8f\x8c\x8c\xa9\ +\xa5\xa6\xb9\xb6\xb6\xc1\xbe\xbe\xb8\xb7\xb7\x8f\x8f\x8f\x90\x90\ +\x92\xb1\xaf\xaf\xbe\xbc\xbe\xc4\xc3\xc5\x00\x00\x00\xe0\xd8\xd5\ +\xe0\xd9\xd6\xe0\xd8\xd4\xde\xd5\xd0\xdc\xd3\xce\xdb\xd1\xcc\xdb\ +\xd1\xcc\xdb\xd1\xcd\xd7\xce\xc9\xd7\xce\xcb\xdc\xd4\xd1\xe2\xdc\ +\xda\xe6\xe2\xdf\xe5\xe0\xdf\xe5\xe0\xdf\xe4\xdf\xdd\xe2\xdc\xd9\ +\xe0\xdb\xd8\xde\xd8\xd6\xda\xd5\xd3\xd5\xd0\xcf\xcd\xc8\xc7\xc1\ +\xbb\xbc\xae\xa9\xa9\x8f\x8e\x8d\x67\x6d\x6c\x46\x4f\x53\x36\x40\ +\x46\x4a\x4e\x55\x6d\x6b\x6e\x87\x83\x84\x95\x91\x92\x9e\x9b\x9c\ +\xa4\xa1\xa3\xa6\xa5\xa6\xa6\xa6\xa7\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ +\xa3\xa5\xa2\xa2\xa4\x9e\xa0\xa2\x9c\x9d\xa1\x95\x96\x99\x8b\x8e\ +\x91\x84\x87\x8b\x80\x83\x87\x7b\x7e\x80\x6a\x6f\x71\x3f\x47\x4d\ +\x22\x2a\x32\x2f\x34\x3c\x3e\x41\x4a\x55\x59\x5e\x66\x69\x6e\x73\ +\x76\x7b\x7b\x7e\x82\x83\x87\x8c\x80\x87\x8c\x7f\x85\x8c\x7e\x85\ +\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\x85\x8c\x7b\x83\x8a\x7a\x82\x89\ +\x7b\x83\x8a\x7b\x84\x8b\x7b\x82\x89\x7a\x82\x89\x7c\x84\x8b\x76\ +\x7e\x84\x6e\x76\x7c\x6e\x76\x7b\x73\x7b\x82\x6f\x77\x7d\x6e\x75\ +\x7c\x76\x7d\x83\x71\x7a\x7f\x6d\x75\x7b\x75\x7c\x81\x77\x80\x84\ +\x6c\x74\x79\x76\x7a\x7e\x7c\x80\x83\x77\x7b\x7e\x70\x73\x78\x7d\ +\x81\x86\x88\x8d\x91\x8b\x8f\x93\x8a\x8f\x93\x87\x8d\x91\x89\x8d\ +\x92\x8b\x8f\x94\x8c\x91\x94\x8c\x92\x95\x8c\x91\x94\x8f\x93\x97\ +\x92\x97\x9b\x93\x98\x9b\x8e\x93\x96\x91\x95\x98\x93\x97\x9a\x91\ +\x95\x98\x96\x99\x9d\x9a\x9d\xa1\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\ +\xa2\x9d\xa0\xa4\x9f\xa2\xa6\xa0\xa3\xa7\x9e\xa0\xa4\x74\x79\x7d\ +\x71\x78\x7b\x77\x7b\x7f\x8e\x8f\x93\x6e\x72\x76\x58\x5c\x60\x80\ +\x80\x82\x9a\x99\x9b\x68\x6b\x6e\x4b\x51\x54\x8d\x8f\x8e\x65\x63\ +\x62\x25\x20\x1f\x65\x5d\x5d\x9e\x9a\x9c\xa9\xa8\xaa\xa8\xa7\xa9\ +\xab\xaa\xac\xaf\xae\xb0\xb0\xaf\xb0\xae\xae\xaf\xae\xae\xae\xad\ +\xac\xae\xb1\xb0\xb2\xa7\xa7\xa9\x8a\x8a\x8c\x8f\x8e\x90\xa7\xa5\ +\xa7\xb5\xb4\xb5\xb3\xb3\xb3\x93\x93\x94\x84\x84\x85\xa0\x9f\x9f\ +\xb1\xaf\xaf\xb5\xb4\xb4\xac\xad\xac\x91\x91\x91\x90\x90\x91\xa8\ +\xa9\xa9\xb8\xb6\xb7\xba\xb8\xb8\xa1\x9e\x9d\x89\x87\x87\x9f\x9c\ +\x9f\xb2\xaf\xb0\xb9\xb7\xb7\xc2\xc1\xc1\xa9\xa9\xab\x8a\x8a\x8c\ +\x9f\x9d\x9f\xb8\xb6\xb8\x00\x00\x00\xdd\xd4\xd0\xdc\xd2\xce\xd8\ +\xce\xc9\xd5\xca\xc3\xd3\xc7\xc0\xd3\xc8\xc1\xd8\xcd\xc8\xd9\xcf\ +\xcb\xd9\xcf\xcb\xd9\xd1\xce\xdf\xd6\xd1\xe3\xdc\xd9\xe5\xe0\xdd\ +\xe5\xe0\xdf\xe4\xdf\xde\xe4\xdf\xde\xe2\xdd\xdc\xdf\xda\xd9\xdc\ +\xd7\xd5\xd7\xd2\xd0\xd1\xcc\xcb\xc9\xc4\xc3\xbb\xb5\xb6\xa5\xa2\ +\xa2\x82\x83\x84\x59\x61\x63\x37\x42\x47\x39\x42\x48\x57\x59\x5d\ +\x78\x75\x77\x8d\x89\x8a\x9a\x95\x96\xa1\x9d\x9d\xa7\xa3\xa5\xa6\ +\xa5\xa6\xa6\xa5\xa6\xa7\xa6\xa8\xa6\xa5\xa6\xa4\xa3\xa5\xa1\xa0\ +\xa2\x9d\x9e\xa1\x9c\x9d\xa1\x92\x94\x98\x89\x8c\x90\x86\x89\x8d\ +\x83\x86\x8a\x7e\x82\x84\x6a\x6f\x72\x48\x51\x55\x2c\x33\x3c\x27\ +\x2c\x36\x1c\x20\x2a\x3e\x43\x4b\x5e\x61\x65\x70\x74\x78\x77\x7a\ +\x7e\x7e\x83\x87\x81\x86\x8b\x7f\x85\x8a\x7d\x84\x89\x7d\x85\x8c\ +\x7c\x84\x8c\x7d\x85\x8d\x7c\x84\x8b\x7b\x83\x8a\x7a\x82\x89\x7c\ +\x84\x8b\x7e\x87\x8d\x7c\x84\x8b\x7b\x83\x8a\x7c\x85\x8c\x73\x7b\ +\x82\x71\x79\x80\x71\x78\x7e\x74\x7b\x81\x6e\x76\x7d\x6f\x76\x7d\ +\x77\x7e\x85\x72\x7b\x82\x6f\x78\x7e\x76\x7f\x84\x67\x6f\x73\x53\ +\x56\x5a\x70\x6f\x73\x7e\x81\x85\x72\x76\x7b\x71\x76\x79\x83\x87\ +\x8b\x8c\x92\x94\x8b\x91\x94\x8a\x8f\x92\x89\x8e\x91\x88\x8d\x90\ +\x89\x8e\x91\x8d\x92\x95\x8c\x92\x95\x8f\x94\x97\x92\x97\x9a\x94\ +\x99\x9c\x92\x97\x9a\x90\x94\x98\x90\x94\x97\x95\x98\x9b\x97\x9a\ +\x9e\x9c\x9f\xa3\x9b\x9f\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\xa5\ +\xa0\xa2\xa6\x9f\xa1\xa3\x8f\x92\x94\x70\x75\x78\x86\x88\x8b\x93\ +\x95\x98\x6f\x72\x75\x4f\x54\x58\x8d\x8f\x90\x84\x84\x84\x59\x58\ +\x5b\x5b\x5c\x5f\x7f\x80\x81\x82\x83\x81\x33\x36\x36\x00\x00\x00\ +\x19\x17\x19\x71\x6d\x70\x94\x92\x94\xa8\xa7\xa7\xac\xac\xad\xab\ +\xab\xac\xae\xad\xaf\xaf\xae\xb0\xb2\xb2\xb2\xaf\xae\xb0\xaf\xae\ +\xb0\xb5\xb4\xb6\xb2\xb1\xb3\x98\x97\x99\x90\x8f\x91\x9f\x9d\x9e\ +\xb4\xb1\xb1\xb6\xb6\xb7\x9f\xa0\xa1\x8c\x8d\x8d\x9c\x9b\x9b\xaa\ +\xa9\xa9\xba\xb9\xb9\xba\xba\xba\x9d\x9e\x9e\x8c\x8d\x8e\xa2\xa1\ +\xa1\xb6\xb3\xb2\xbc\xb9\xb7\xae\xae\xad\x90\x90\x92\x8e\x8b\x8e\ +\xa5\xa2\xa3\xba\xb8\xb8\xbf\xbe\xbf\xb6\xb6\xb7\x96\x97\x98\x8b\ +\x8b\x8d\x00\x00\x00\xd4\xc9\xc2\xd1\xc5\xbf\xd0\xc4\xbd\xcf\xc5\ +\xbe\xd0\xc5\xbf\xd1\xc7\xc1\xd5\xcb\xc7\xd7\xcd\xc9\xd8\xce\xca\ +\xdb\xd3\xcf\xe1\xd8\xd5\xe5\xde\xdb\xe5\xe0\xdd\xe4\xdf\xdd\xe4\ +\xdf\xde\xe4\xdf\xde\xe1\xdc\xdb\xdf\xda\xd8\xdb\xd6\xd4\xd6\xd0\ +\xcd\xcf\xca\xc7\xc5\xc0\xbf\xb5\xb0\xb0\x99\x98\x98\x74\x77\x7a\ +\x4e\x57\x5b\x31\x3d\x42\x41\x49\x50\x63\x62\x66\x82\x7d\x7f\x92\ +\x8e\x8f\x9d\x9a\x9b\xa3\xa1\xa2\xa8\xa6\xa8\xa7\xa5\xa7\xa6\xa5\ +\xa7\xa7\xa6\xa8\xa5\xa4\xa6\xa3\xa3\xa4\x9f\x9f\xa1\x9a\x9b\x9e\ +\x97\x98\x9c\x90\x93\x97\x88\x8b\x8f\x88\x8b\x8f\x85\x88\x8c\x7f\ +\x82\x86\x66\x6c\x6f\x50\x57\x5c\x41\x46\x4e\x40\x45\x4d\x34\x3a\ +\x43\x3e\x45\x4f\x5e\x62\x68\x71\x75\x79\x76\x7a\x7e\x79\x7d\x82\ +\x7f\x83\x88\x7e\x84\x89\x7e\x84\x8b\x7d\x85\x8d\x7b\x83\x8c\x7c\ +\x84\x8c\x7d\x84\x8d\x7c\x84\x8d\x7c\x85\x8c\x7c\x84\x8b\x7e\x86\ +\x8e\x7e\x86\x8d\x7d\x85\x8b\x7e\x86\x8d\x7b\x83\x8a\x74\x7c\x83\ +\x6e\x76\x7d\x73\x7a\x81\x73\x7a\x81\x6c\x74\x7a\x73\x7a\x80\x79\ +\x80\x86\x72\x7a\x7f\x6c\x75\x79\x4d\x57\x5d\x18\x1b\x20\x30\x2e\ +\x31\x72\x70\x74\x7e\x82\x86\x76\x7b\x7e\x76\x7b\x7e\x85\x8a\x8d\ +\x8c\x91\x94\x8b\x90\x93\x8a\x8f\x92\x88\x8e\x91\x8b\x90\x93\x8e\ +\x93\x96\x8d\x92\x95\x8c\x91\x94\x90\x95\x98\x93\x98\x9b\x94\x99\ +\x9c\x91\x95\x99\x91\x95\x97\x94\x98\x9a\x97\x9b\x9f\x9b\xa0\xa3\ +\x9c\x9e\xa3\x9c\x9f\xa4\x9c\x9f\xa4\x9c\xa0\xa3\x9f\xa1\xa4\x95\ +\x97\x99\x72\x77\x7a\x78\x7c\x7e\x79\x7d\x7e\x87\x89\x8a\x6e\x73\ +\x75\x54\x59\x5c\x80\x83\x84\x62\x62\x64\x0f\x0e\x10\x27\x26\x27\ +\x84\x83\x83\x9d\x9e\x9d\x50\x57\x58\x0f\x16\x17\x45\x49\x4d\x8d\ +\x89\x8b\x7a\x77\x78\x86\x85\x86\xa6\xa4\xa5\xae\xad\xad\xad\xac\ +\xad\xab\xaa\xac\xb0\xaf\xb0\xaf\xaf\xaf\xb0\xaf\xb1\xb1\xb0\xb2\ +\xb1\xb0\xb2\xb3\xb3\xb5\xa4\xa4\xa6\x8b\x8a\x8d\x99\x98\x9a\xa9\ +\xa9\xaa\xb3\xb2\xb4\xaf\xad\xb0\x98\x96\x98\x90\x90\x90\xa1\xa1\ +\xa1\xb8\xb6\xb6\xb9\xb7\xb7\xaa\xa9\xaa\x95\x95\x96\x94\x94\x94\ +\xaa\xa8\xa7\xbc\xbb\xba\xba\xb9\xb9\xa1\x9e\x9f\x91\x8f\x91\x98\ +\x97\x98\xb3\xb2\xb3\xc1\xc1\xc1\xc0\xc0\xc1\xa8\xa9\xaa\x00\x00\ +\x00\xcb\xbf\xb7\xcb\xc1\xba\xcc\xc2\xbb\xd0\xc6\xc0\xd2\xc8\xc3\ +\xd5\xcc\xc7\xd9\xd0\xcc\xd9\xd0\xcc\xdb\xd2\xce\xdf\xd8\xd4\xe2\ +\xdb\xd8\xe6\xe0\xdd\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\xdc\xe3\xde\ +\xdd\xe0\xda\xd9\xde\xd8\xd7\xd9\xd4\xd2\xd4\xce\xcb\xcc\xc6\xc4\ +\xbf\xba\xb8\xab\xa7\xa6\x8b\x8c\x8d\x67\x6b\x6f\x41\x4b\x50\x34\ +\x3f\x46\x4a\x51\x58\x6e\x6b\x6e\x89\x84\x85\x97\x94\x95\xa0\x9e\ +\x9f\xa5\xa3\xa4\xa7\xa5\xa8\xa7\xa5\xa8\xa7\xa6\xa8\xa6\xa5\xa7\ +\xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9a\x9e\x91\x92\x96\x8b\ +\x8e\x92\x86\x89\x8d\x89\x8c\x90\x88\x8b\x8f\x7c\x7f\x83\x63\x67\ +\x6c\x4f\x55\x5b\x50\x55\x5c\x5f\x63\x68\x5e\x65\x6a\x5a\x62\x69\ +\x6a\x6f\x75\x72\x76\x7b\x77\x7c\x7f\x73\x78\x7b\x79\x7d\x81\x7d\ +\x81\x88\x7d\x83\x8a\x7e\x85\x8c\x7c\x84\x8b\x7b\x83\x8a\x7c\x84\ +\x8c\x7c\x84\x8c\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8c\x7d\x85\x8b\ +\x7b\x83\x8a\x7e\x86\x8d\x7e\x86\x8d\x79\x81\x88\x73\x7b\x82\x6f\ +\x77\x7e\x75\x7c\x83\x75\x7d\x83\x6f\x78\x7d\x76\x7d\x82\x7a\x81\ +\x85\x6f\x77\x7b\x3c\x49\x51\x04\x07\x0a\x01\x00\x01\x3d\x3b\x3f\ +\x7b\x7c\x80\x82\x85\x89\x77\x7c\x7f\x76\x7b\x7f\x84\x89\x8c\x8a\ +\x8f\x92\x8c\x91\x94\x8b\x91\x94\x8c\x91\x94\x8d\x91\x95\x8c\x91\ +\x94\x8d\x91\x95\x8f\x94\x97\x90\x95\x98\x94\x99\x9c\x93\x96\x99\ +\x92\x97\x99\x93\x97\x9a\x95\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\x99\ +\x9c\xa1\x99\x9c\xa0\x95\x98\x9c\x87\x89\x8c\x89\x8b\x8c\x70\x76\ +\x79\x7f\x83\x86\x89\x8d\x8e\x71\x75\x76\x5d\x64\x68\x81\x84\x86\ +\x89\x8c\x8d\x43\x4a\x4d\x00\x00\x00\x1f\x20\x21\x6d\x6f\x70\x7b\ +\x7e\x7e\x63\x6d\x6e\x5e\x68\x6c\x77\x7b\x7f\x98\x95\x95\x75\x72\ +\x73\x6b\x6b\x6d\x86\x84\x85\xa5\xa2\xa2\xad\xab\xab\xa9\xa8\xaa\ +\xab\xaa\xab\xad\xac\xad\xb1\xb0\xb2\xb0\xaf\xb1\xb0\xaf\xb1\xb2\ +\xb1\xb3\xb5\xb5\xb6\xab\xac\xae\x97\x97\x9b\x8c\x8d\x8e\xa1\xa0\ +\xa1\xb5\xb2\xb4\xb8\xb5\xb7\xa2\xa0\xa1\x8f\x8e\x8f\x9a\x97\x98\ +\xae\xaa\xaa\xbe\xbc\xbd\xb5\xb5\xb6\x97\x98\x98\x8f\x8f\x8f\x9f\ +\x9e\x9e\xb6\xb4\xb4\xc0\xbd\xbe\xb6\xb5\xb7\x99\x98\x9b\x92\x91\ +\x93\xa5\xa3\xa4\xbc\xbb\xbb\xc3\xc2\xc4\x00\x00\x00\xcc\xc2\xbb\ +\xd0\xc6\xc0\xd4\xca\xc4\xd8\xce\xca\xdb\xd2\xcf\xdd\xd5\xd1\xdd\ +\xd4\xd1\xdc\xd4\xd0\xdd\xd5\xd1\xdf\xd8\xd5\xe4\xdd\xda\xe6\xe0\ +\xdc\xe4\xdf\xdd\xe4\xde\xdb\xe3\xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\ +\xdc\xd6\xd5\xd8\xd2\xd1\xd2\xcc\xca\xc7\xc1\xbe\xba\xb4\xb0\xa1\ +\x9f\x9c\x7e\x80\x80\x5a\x60\x64\x38\x42\x49\x38\x41\x48\x58\x5b\ +\x60\x7a\x76\x78\x90\x8b\x8c\x9b\x99\x99\xa2\xa0\xa0\xa6\xa4\xa5\ +\xa8\xa6\xa8\xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa4\xa2\ +\xa1\xa4\x9e\x9d\xa1\x98\x99\x9d\x91\x92\x96\x89\x8b\x8f\x89\x8b\ +\x8f\x8c\x8e\x92\x89\x8c\x90\x79\x7c\x80\x5e\x63\x69\x48\x4f\x57\ +\x51\x57\x5e\x67\x6c\x70\x73\x79\x7c\x70\x76\x7a\x76\x7a\x7f\x76\ +\x7a\x7f\x75\x79\x7d\x72\x77\x7a\x73\x77\x7c\x7c\x80\x85\x7c\x81\ +\x86\x7d\x83\x89\x7c\x83\x8a\x7b\x83\x8a\x7c\x84\x8c\x7a\x83\x8a\ +\x7c\x83\x8a\x7d\x85\x8c\x7d\x85\x8c\x7c\x84\x8b\x7c\x84\x8b\x7d\ +\x85\x8c\x7c\x85\x8d\x7f\x87\x90\x78\x81\x88\x70\x78\x80\x70\x78\ +\x7f\x77\x7e\x84\x74\x7b\x80\x6f\x76\x7a\x77\x7d\x81\x79\x80\x83\ +\x4d\x5e\x66\x08\x10\x15\x00\x00\x00\x14\x15\x17\x62\x62\x66\x7d\ +\x80\x84\x83\x87\x8b\x76\x7c\x7f\x76\x7b\x7e\x84\x8a\x8d\x8c\x91\ +\x94\x8d\x92\x95\x8c\x91\x94\x8a\x8f\x92\x8a\x8f\x92\x8e\x93\x96\ +\x92\x97\x9b\x92\x97\x9a\x95\x98\x9c\x95\x98\x9c\x96\x99\x9d\x98\ +\x9c\x9f\x98\x9c\xa0\x99\x9c\xa1\x99\x9c\xa0\x98\x9b\x9f\x98\x9b\ +\x9f\x92\x95\x99\x72\x75\x79\x7e\x82\x84\x92\x96\x97\x93\x96\x97\ +\x86\x89\x8b\x71\x77\x7a\x69\x6f\x73\x7c\x80\x83\x94\x98\x99\x6c\ +\x75\x76\x1d\x29\x2c\x4b\x52\x55\x91\x94\x95\x63\x68\x6a\x4c\x53\ +\x56\x8e\x91\x92\x99\x9b\x9d\x75\x75\x79\x50\x4f\x53\x94\x95\x95\ +\x86\x85\x85\x64\x5f\x62\x98\x93\x94\xb1\xb0\xb0\xab\xab\xac\xad\ +\xac\xae\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb1\xb0\ +\xb2\xb3\xb3\xb5\xb4\xb4\xb6\x9d\x9f\xa0\x8b\x8c\x8c\x95\x93\x95\ +\xb5\xb1\xb3\xb8\xb6\xb7\xaf\xaf\xaf\x96\x94\x96\x8e\x8b\x8e\xa6\ +\xa2\xa4\xbb\xb8\xb9\xba\xb9\xb9\xa9\xa9\xa9\x93\x94\x94\x8d\x8e\ +\x8e\xae\xac\xae\xc0\xbe\xbf\xbf\xbe\xbf\xa6\xa5\xa7\x96\x95\x95\ +\x97\x95\x95\xb3\xb0\xb1\x00\x00\x00\xd8\xd1\xcd\xdb\xd2\xce\xdc\ +\xd3\xcf\xdd\xd5\xd2\xde\xd7\xd4\xde\xd7\xd4\xdc\xd5\xd2\xdc\xd5\ +\xd2\xdd\xd6\xd3\xe1\xda\xd7\xe5\xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\ +\xe4\xde\xdb\xe2\xdd\xdc\xe0\xdb\xda\xde\xd9\xd8\xda\xd4\xd4\xd7\ +\xd0\xd0\xcf\xc8\xc7\xc2\xbc\xba\xb3\xae\xaa\x95\x94\x91\x6e\x71\ +\x71\x4b\x53\x58\x37\x40\x46\x43\x48\x4e\x68\x66\x69\x83\x7e\x7f\ +\x95\x90\x91\x9f\x9d\x9d\xa3\xa0\xa1\xa7\xa5\xa7\xa8\xa6\xa8\xa7\ +\xa6\xa9\xa6\xa5\xa7\xa4\xa3\xa5\xa3\xa2\xa5\xa2\xa1\xa5\x9d\x9d\ +\xa1\x95\x95\x99\x8e\x8f\x93\x8b\x8c\x90\x8a\x8b\x8f\x8c\x8e\x92\ +\x88\x8a\x8e\x76\x79\x7d\x5e\x63\x69\x47\x4e\x56\x52\x57\x5e\x69\ +\x6d\x72\x77\x7c\x7f\x78\x7e\x81\x75\x7a\x7d\x77\x7b\x80\x72\x76\ +\x7b\x72\x76\x7b\x72\x76\x7b\x76\x7a\x7f\x7c\x80\x85\x7c\x82\x87\ +\x7b\x81\x88\x7c\x83\x8b\x7d\x84\x8b\x7b\x83\x8a\x7b\x83\x8a\x7b\ +\x82\x8a\x7c\x85\x8b\x7c\x85\x8b\x7d\x85\x8c\x7c\x84\x8b\x7c\x85\ +\x8c\x7e\x87\x90\x7e\x87\x90\x78\x81\x88\x70\x78\x7e\x71\x79\x7e\ +\x77\x7e\x82\x73\x79\x7e\x70\x77\x7b\x79\x80\x84\x6e\x7b\x81\x2b\ +\x44\x4e\x00\x04\x06\x09\x0d\x10\x59\x5c\x61\x75\x78\x7c\x7f\x83\ +\x87\x84\x89\x8c\x77\x7d\x81\x76\x7c\x80\x85\x8a\x8d\x8f\x93\x97\ +\x8f\x94\x98\x8c\x91\x94\x8c\x91\x95\x8e\x93\x96\x93\x97\x9b\x93\ +\x98\x9b\x94\x98\x9c\x97\x9b\x9f\x98\x9b\x9e\x9b\x9e\xa3\x9e\xa1\ +\xa5\x9b\x9f\xa2\x9b\x9e\xa2\x9b\x9e\xa2\x9b\x9d\xa1\x95\x97\x9b\ +\x71\x77\x7a\x73\x77\x7a\x96\x99\x9a\x9a\x9c\x9c\x89\x8b\x8c\x73\ +\x77\x7a\x71\x76\x78\x7e\x83\x87\x76\x7b\x7f\x5d\x65\x68\x6a\x73\ +\x78\x7e\x84\x87\x82\x86\x87\x69\x6f\x70\x64\x6a\x6b\x7d\x7e\x7e\ +\x9c\x9d\x9e\x77\x7a\x7d\x56\x59\x5c\x84\x83\x84\x75\x74\x73\x11\ +\x0f\x11\x47\x44\x46\xa9\xa8\xaa\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\ +\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\ +\xb1\xb1\xb2\xb3\xb5\xb6\xa7\xa9\xaa\x98\x98\x99\x8d\x8b\x8d\xa7\ +\xa6\xa6\xba\xba\xb9\xb3\xb2\xb5\xa1\xa0\xa3\x8f\x8c\x90\x9b\x97\ +\x99\xb8\xb5\xb6\xbf\xbd\xbd\xb3\xb2\xb2\x99\x9a\x9a\x8a\x89\x8b\ +\x9a\x99\x9a\xbb\xb9\xba\xc1\xbf\xc1\xb5\xb5\xb5\xa2\xa0\xa0\x95\ +\x92\x93\x00\x00\x00\xdd\xd6\xd3\xdd\xd5\xd2\xde\xd6\xd3\xdf\xd8\ +\xd5\xdf\xd8\xd5\xde\xd7\xd4\xdc\xd6\xd3\xdd\xd5\xd2\xdf\xd8\xd5\ +\xe2\xdb\xd8\xe5\xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe3\xdd\xda\xe2\ +\xdc\xda\xe0\xd9\xd9\xdd\xd6\xd6\xd9\xd2\xd1\xd4\xcd\xcc\xcc\xc4\ +\xc4\xbf\xb8\xb8\xaa\xa5\xa3\x8a\x8a\x87\x63\x67\x6a\x3f\x47\x4f\ +\x37\x40\x48\x51\x53\x58\x72\x6e\x70\x8a\x85\x84\x98\x95\x95\xa1\ +\x9f\x9f\xa6\xa3\xa4\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa5\xa7\xa5\xa4\ +\xa6\xa3\xa2\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9e\x9d\x9f\x93\x93\x96\ +\x8c\x8d\x91\x8b\x8c\x90\x8b\x8c\x90\x8c\x8d\x91\x85\x88\x8c\x73\ +\x77\x7a\x5f\x64\x6a\x51\x57\x5e\x5a\x5f\x64\x6c\x70\x74\x74\x79\ +\x7c\x78\x7d\x80\x74\x79\x7b\x75\x79\x7d\x74\x78\x7d\x70\x74\x79\ +\x71\x75\x7a\x71\x74\x79\x79\x7d\x83\x7b\x81\x86\x7c\x82\x88\x7e\ +\x84\x8a\x7c\x84\x89\x7a\x83\x87\x7b\x83\x89\x7b\x82\x88\x7d\x84\ +\x8a\x7d\x85\x8c\x7c\x85\x8c\x7e\x85\x8d\x7c\x83\x8b\x7f\x87\x90\ +\x7f\x88\x91\x7c\x85\x8b\x75\x7e\x84\x6f\x78\x7e\x73\x7a\x7f\x79\ +\x7f\x84\x74\x7a\x80\x71\x79\x7f\x7c\x83\x88\x67\x79\x81\x25\x3c\ +\x44\x16\x27\x2f\x65\x6b\x6f\x7a\x7e\x81\x77\x7d\x7f\x80\x86\x89\ +\x82\x88\x8d\x76\x7c\x81\x75\x7a\x7d\x87\x8b\x8e\x8e\x93\x96\x8f\ +\x93\x96\x90\x95\x98\x90\x95\x98\x90\x95\x98\x92\x96\x9a\x93\x98\ +\x9b\x98\x9c\xa0\x98\x9b\x9e\x99\x9c\xa0\x9b\x9f\xa1\x99\x9d\x9f\ +\x9a\x9d\xa0\x9b\x9e\xa2\x9a\x9d\xa0\x97\x99\x9b\x79\x7e\x7f\x6b\ +\x6f\x71\x6b\x6e\x70\x56\x59\x5c\x7c\x7e\x80\x86\x88\x89\x7e\x82\ +\x85\x97\x9a\x9f\x8a\x8f\x93\x68\x70\x73\x81\x84\x85\xa0\xa0\xa2\ +\x6f\x73\x75\x51\x56\x58\x8b\x8e\x8e\x8b\x8d\x8c\x58\x57\x55\x56\ +\x54\x54\x95\x96\x96\x8e\x8e\x8f\x5b\x60\x63\x00\x00\x00\x0d\x0e\ +\x13\x8b\x8d\x93\xb1\xb0\xb2\xaf\xaf\xb0\xae\xae\xaf\xae\xae\xaf\ +\xad\xac\xae\xaf\xae\xb0\xb4\xb3\xb4\xb5\xb4\xb5\xb2\xb1\xb2\xb3\ +\xb4\xb5\xb4\xb6\xb7\xb4\xb6\xb6\x9b\x9d\x9e\x8e\x8f\x90\x99\x99\ +\x99\xb5\xb3\xb4\xbb\xb8\xba\xae\xab\xae\x9a\x97\x99\x90\x8e\x90\ +\xaa\xa7\xa6\xbc\xb9\xb8\xb8\xb6\xb6\xa7\xa5\xa6\x93\x92\x94\x8d\ +\x8b\x8b\xb0\xad\xaf\xc1\xbe\xbf\xbf\xbc\xbe\xb1\xad\xae\x00\x00\ +\x00\xdf\xd7\xd5\xdf\xd7\xd5\xdf\xd8\xd5\xde\xd7\xd5\xde\xd7\xd4\ +\xdf\xd7\xd4\xde\xd7\xd4\xdd\xd5\xd2\xe0\xd8\xd5\xe4\xdc\xd9\xe5\ +\xdf\xdc\xe5\xdf\xdc\xe3\xde\xdb\xe2\xdd\xda\xe1\xdb\xd9\xdf\xd8\ +\xd7\xdc\xd5\xd5\xd8\xd1\xd1\xd2\xca\xca\xc7\xc0\xc0\xb8\xb2\xb0\ +\xa0\x9c\x99\x7d\x7d\x7d\x57\x5b\x61\x3b\x42\x4b\x40\x47\x4f\x5c\ +\x5d\x63\x7d\x78\x7a\x90\x8b\x8b\x9c\x99\x99\xa3\xa0\xa2\xa7\xa4\ +\xa6\xa7\xa5\xa7\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa4\xa5\xa3\xa2\xa4\ +\xa0\x9f\xa2\x9f\x9e\xa0\x99\x98\x9b\x90\x91\x95\x8d\x8e\x92\x8c\ +\x8d\x91\x8c\x8d\x91\x8c\x8d\x91\x83\x86\x89\x6b\x71\x74\x51\x59\ +\x5f\x52\x59\x60\x60\x66\x6b\x70\x75\x78\x75\x7a\x7d\x77\x7c\x7f\ +\x75\x7a\x7d\x73\x77\x7b\x77\x7b\x80\x71\x75\x79\x70\x74\x79\x6f\ +\x73\x78\x71\x76\x79\x79\x7f\x83\x7d\x83\x88\x7c\x82\x88\x7c\x83\ +\x89\x7b\x82\x87\x7b\x81\x87\x7c\x84\x89\x7d\x85\x8b\x7c\x83\x8a\ +\x7c\x84\x8b\x7f\x87\x8f\x7d\x84\x8d\x7e\x85\x8e\x7f\x86\x8f\x80\ +\x87\x8e\x7c\x84\x8b\x74\x7d\x84\x6e\x76\x7c\x76\x7c\x82\x7a\x81\ +\x87\x72\x7a\x80\x74\x7b\x7f\x7f\x86\x8b\x5d\x6c\x74\x3e\x50\x59\ +\x6a\x70\x74\x78\x7e\x81\x6a\x71\x76\x74\x79\x7e\x80\x86\x8b\x84\ +\x89\x8e\x76\x7c\x81\x77\x7c\x80\x85\x8a\x8d\x8e\x93\x96\x8f\x94\ +\x97\x91\x95\x98\x90\x95\x99\x93\x97\x9a\x92\x96\x99\x97\x9b\x9e\ +\x98\x9c\x9f\x99\x9c\x9f\x99\x9d\x9e\x99\x9d\x9e\x9a\x9e\xa1\x9b\ +\x9e\xa2\x9b\x9e\xa1\x9c\x9f\xa0\x7b\x7e\x80\x42\x44\x48\x1f\x24\ +\x29\x37\x3f\x44\x7e\x80\x82\x9c\x9d\x9e\x9f\xa0\xa4\xa9\xaa\xae\ +\xa4\xa6\xaa\x96\x99\x9b\x84\x87\x88\x83\x85\x86\x6f\x73\x75\x67\ +\x6c\x6e\x80\x85\x86\x62\x67\x68\x15\x16\x15\x10\x0f\x0f\x76\x74\ +\x74\xa6\xa7\xa7\x80\x86\x88\x38\x47\x4d\x6d\x74\x7b\xa3\xa4\xa6\ +\xae\xad\xaf\xb0\xaf\xb1\xb2\xb2\xb3\xb0\xb1\xb1\xaf\xaf\xb0\xb2\ +\xb2\xb2\xb3\xb3\xb3\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb4\xb5\xb5\xb6\ +\xb5\xb3\xb3\xb3\xb3\xb4\xb4\xab\xac\xad\x91\x91\x93\x92\x8f\x91\ +\xb1\xae\xaf\xbb\xba\xbb\xb6\xb5\xb7\xa5\xa4\xa5\x8c\x8a\x8b\x9c\ +\x98\x99\xb5\xb0\xb1\xb9\xb5\xb6\xb5\xb1\xb2\xa5\xa3\xa4\x8a\x87\ +\x88\x99\x94\x96\xc0\xbe\xbe\xc4\xc2\xc2\x00\x00\x00\xdd\xd6\xd3\ +\xdc\xd5\xd2\xdd\xd6\xd3\xde\xd7\xd4\xdf\xd9\xd6\xe0\xd9\xd6\xe1\ +\xda\xd7\xe2\xdb\xd8\xe2\xdc\xd9\xe4\xde\xdb\xe5\xe0\xdd\xe5\xdf\ +\xdc\xe3\xde\xdb\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xda\xd5\xd4\ +\xd5\xcf\xce\xce\xc7\xc6\xc3\xbd\xbe\xb1\xac\xaa\x93\x90\x8c\x6e\ +\x71\x72\x4b\x51\x58\x39\x41\x4b\x4b\x4f\x58\x6d\x6c\x70\x85\x83\ +\x83\x95\x93\x93\x9f\x9a\x9c\xa4\xa1\xa3\xa6\xa3\xa5\xa6\xa4\xa6\ +\xa7\xa6\xa8\xa6\xa5\xa7\xa4\xa3\xa5\xa1\xa0\xa2\xa1\xa0\xa2\x9d\ +\x9c\x9e\x95\x96\x98\x8d\x8e\x92\x8e\x8f\x93\x8b\x8c\x90\x8e\x8f\ +\x93\x8c\x8f\x93\x82\x87\x8a\x68\x70\x74\x4e\x59\x60\x4f\x58\x5f\ +\x66\x6d\x71\x71\x76\x79\x77\x7c\x7f\x73\x77\x7c\x76\x7a\x7f\x74\ +\x78\x7c\x72\x76\x7b\x71\x75\x7a\x70\x74\x79\x71\x75\x7a\x71\x75\ +\x7a\x76\x7b\x80\x7c\x81\x85\x7c\x82\x88\x7c\x82\x88\x7b\x81\x87\ +\x7e\x84\x8b\x7b\x83\x88\x7c\x84\x8b\x7b\x82\x89\x7e\x85\x8d\x7e\ +\x85\x8d\x7e\x85\x8e\x7f\x87\x8f\x7f\x86\x8f\x7e\x86\x8e\x7e\x86\ +\x8d\x7d\x86\x8d\x74\x7c\x82\x6f\x78\x7d\x7c\x83\x8a\x7b\x83\x8a\ +\x74\x7c\x81\x70\x75\x7a\x6c\x73\x79\x62\x6a\x72\x6d\x73\x79\x64\ +\x6c\x73\x62\x6c\x73\x6e\x75\x7b\x77\x7c\x81\x82\x87\x8a\x83\x89\ +\x8d\x75\x7b\x7e\x77\x7c\x7f\x86\x8b\x8e\x8e\x92\x95\x92\x96\x99\ +\x92\x95\x99\x95\x98\x9c\x95\x99\x9c\x99\x9d\x9e\x9a\x9e\x9f\x98\ +\x9b\x9d\x99\x9d\x9e\x99\x9d\x9e\x9c\x9f\xa2\x9e\xa1\xa5\x9c\x9f\ +\xa3\x9c\x9f\xa2\x78\x7f\x81\x40\x4d\x52\x57\x62\x67\x82\x88\x8a\ +\x9d\x9f\xa0\x97\x96\x97\x82\x80\x81\xa2\xa2\xa4\xac\xad\xb0\xa8\ +\xa9\xac\x9e\xa1\xa4\x7c\x81\x85\x62\x67\x6b\x87\x8a\x8c\x9a\x9d\ +\x9e\x53\x5b\x5e\x07\x07\x07\x00\x00\x01\x61\x63\x64\x78\x7b\x7b\ +\x5b\x61\x64\x7a\x82\x87\xac\xad\xb2\xb4\xb3\xb5\xb1\xb0\xb2\xb0\ +\xb0\xb1\xb1\xb1\xb2\xb0\xb0\xb0\xb1\xb1\xb1\xb4\xb4\xb4\xb1\xb1\ +\xb1\xaf\xaf\xaf\xb6\xb6\xb6\xb6\xb5\xb6\xb6\xb6\xb7\xb4\xb3\xb5\ +\xb3\xb2\xb4\xb3\xb4\xb5\xb1\xb2\xb2\x9e\x9d\x9e\x8a\x86\x88\xa2\ +\x9f\xa0\xb9\xb7\xb8\xbc\xba\xba\xb2\xb2\xb2\x93\x91\x93\x87\x82\ +\x84\xb0\xab\xac\xbd\xb8\xb9\xb9\xb6\xb7\xb1\xaf\xaf\x9a\x98\x99\ +\x91\x8f\x90\xb4\xb2\xb2\x00\x00\x00\xdd\xd6\xd3\xdf\xd7\xd4\xdf\ +\xd8\xd5\xe0\xda\xd7\xe1\xdb\xd8\xe2\xdc\xd9\xe2\xdd\xda\xe2\xdd\ +\xda\xe5\xdf\xdc\xe5\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdb\xe3\xde\xdc\ +\xe1\xdc\xdb\xdf\xda\xd9\xdc\xd6\xd6\xd9\xd1\xd1\xd3\xcd\xcc\xca\ +\xc4\xc4\xbe\xb8\xb8\xa6\xa1\xa0\x84\x83\x81\x60\x63\x66\x42\x48\ +\x51\x3a\x41\x4a\x54\x57\x5e\x76\x74\x76\x8d\x89\x8a\x99\x95\x96\ +\xa1\x9d\x9f\xa4\xa0\xa2\xa7\xa4\xa6\xa6\xa5\xa7\xa5\xa4\xa6\xa4\ +\xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa3\xa0\x9e\xa1\x9a\x9a\x9c\x92\x93\ +\x97\x8f\x90\x94\x8c\x8d\x91\x8a\x8b\x8f\x8d\x8f\x93\x8d\x90\x94\ +\x85\x89\x8d\x70\x78\x7b\x64\x6e\x73\x60\x68\x6e\x6f\x74\x79\x73\ +\x77\x7c\x75\x79\x7d\x70\x75\x79\x70\x75\x78\x74\x78\x7d\x6f\x74\ +\x78\x72\x76\x7b\x6f\x73\x78\x6f\x73\x78\x70\x74\x79\x71\x75\x7a\ +\x78\x7e\x83\x7d\x83\x88\x7c\x83\x89\x7c\x82\x89\x7d\x83\x89\x7d\ +\x84\x8b\x7c\x84\x8b\x7d\x85\x8b\x7e\x85\x8c\x7f\x86\x8e\x7d\x84\ +\x8d\x7f\x87\x8e\x7f\x88\x90\x80\x88\x90\x80\x88\x8f\x81\x89\x90\ +\x7a\x82\x89\x71\x79\x7e\x70\x78\x7c\x7a\x81\x86\x7a\x80\x85\x65\ +\x6d\x72\x5e\x65\x6b\x76\x7b\x80\x79\x7f\x83\x69\x71\x76\x70\x76\ +\x7c\x7d\x84\x87\x75\x7c\x7f\x77\x7c\x81\x85\x8a\x8e\x84\x89\x8c\ +\x76\x7b\x7e\x7a\x7f\x82\x8e\x91\x95\x92\x97\x9a\x95\x98\x9c\x94\ +\x97\x9b\x95\x99\x9c\x9b\x9e\xa1\x99\x9d\x9e\x99\x9b\x9d\x98\x9b\ +\x9d\x99\x9c\xa0\x9d\x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\x9f\xa2\xa6\ +\x96\x9b\x9e\x8a\x92\x95\x92\x97\x9a\x9c\x9e\xa0\xa3\xa5\xa6\x7b\ +\x7d\x7e\x4e\x51\x53\x8e\x8c\x8d\xa3\xa1\xa3\xab\xab\xad\xa7\xa9\ +\xaa\x9c\x9f\xa1\x87\x8b\x8f\x7c\x81\x83\x9b\x9d\x9e\x77\x7e\x81\ +\x2f\x3c\x41\x3d\x48\x4c\x98\x9b\x9b\x87\x8b\x8c\x50\x5a\x5e\x9e\ +\xa2\xa6\xb1\xb1\xb5\xb4\xb2\xb5\xb5\xb4\xb6\xb0\xaf\xb0\xb0\xaf\ +\xb0\xaf\xae\xaf\xb0\xb0\xb0\xb3\xb3\xb3\xb2\xb3\xb2\xb0\xb0\xb1\ +\xb5\xb4\xb6\xb2\xb1\xb3\xb7\xb6\xb8\xb7\xb6\xb8\xb5\xb4\xb6\xb2\ +\xb2\xb3\xb4\xb4\xb5\xb8\xb8\xb9\xad\xab\xad\x93\x92\x94\x92\x91\ +\x93\xb1\xb0\xb0\xb9\xb9\xb9\xbb\xba\xbb\xa5\xa3\xa4\x87\x85\x85\ +\x9e\x9b\x9b\xbb\xb7\xb7\xbb\xba\xba\xb6\xb3\xb3\xa8\xa6\xa6\x8c\ +\x8a\x8b\x00\x00\x00\xe1\xda\xd7\xe2\xdb\xd8\xe1\xdc\xda\xe1\xdc\ +\xda\xe3\xdd\xdb\xe3\xde\xda\xe3\xde\xdb\xe4\xdf\xdc\xe5\xe0\xdd\ +\xe5\xe0\xde\xe5\xe0\xde\xe3\xde\xdc\xe3\xde\xdc\xe0\xda\xd9\xdf\ +\xd8\xd7\xdc\xd4\xd4\xd7\xd2\xd2\xcf\xc9\xc9\xc5\xbe\xbb\xb6\xb0\ +\xac\x9b\x97\x95\x77\x78\x79\x53\x5a\x5f\x3c\x44\x4e\x42\x48\x51\ +\x5e\x5f\x64\x7c\x79\x7a\x92\x8d\x8d\x9a\x97\x99\xa2\xa0\xa2\xa6\ +\xa4\xa6\xa9\xa6\xa8\xa7\xa5\xa7\xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa0\ +\xa1\x9f\x9f\xa0\x9d\x9d\x9f\x98\x98\x99\x91\x92\x96\x8d\x8e\x92\ +\x8b\x8d\x92\x8d\x8e\x94\x8d\x90\x94\x8c\x8f\x93\x86\x8b\x8e\x7c\ +\x82\x85\x76\x7c\x7f\x72\x77\x7b\x75\x7a\x7e\x75\x7a\x7d\x73\x77\ +\x7a\x6b\x70\x74\x67\x6b\x70\x6c\x71\x75\x72\x76\x7a\x6c\x71\x74\ +\x6b\x6f\x74\x6b\x6f\x74\x6d\x73\x77\x6f\x76\x7a\x74\x79\x7f\x7a\ +\x80\x86\x7a\x81\x87\x7d\x84\x89\x7f\x84\x8a\x7f\x86\x8d\x7d\x85\ +\x8b\x7d\x85\x8c\x7e\x85\x8d\x7f\x87\x8e\x7d\x85\x8d\x7d\x85\x8c\ +\x7e\x86\x8d\x7f\x87\x8e\x80\x88\x8f\x80\x88\x90\x80\x88\x8f\x7b\ +\x83\x89\x72\x7a\x7e\x72\x79\x7e\x7a\x80\x85\x68\x6f\x75\x5c\x64\ +\x6b\x75\x7a\x80\x85\x8a\x8f\x7b\x81\x86\x74\x7a\x7f\x7f\x84\x88\ +\x83\x89\x8c\x7a\x80\x84\x79\x7f\x83\x86\x8b\x8f\x85\x8a\x8d\x7b\ +\x81\x83\x7e\x82\x86\x8d\x91\x94\x94\x97\x9b\x94\x97\x9b\x93\x96\ +\x9a\x98\x9b\x9d\x96\x99\x9c\x96\x99\x9d\x9a\x9d\xa1\x9b\x9e\xa2\ +\x9b\x9e\xa2\x9b\x9e\xa2\x9e\xa1\xa5\xa2\xa4\xa9\xa0\xa4\xa6\xa1\ +\xa4\xa5\xa0\xa1\xa3\x9f\xa2\xa3\x94\x97\x9a\x4b\x55\x59\x62\x67\ +\x69\x80\x80\x81\x6b\x6d\x6d\xa1\x9f\xa1\xad\xac\xae\xac\xac\xad\ +\xa7\xa9\xaa\x93\x97\x98\x79\x7d\x7f\x60\x67\x6b\x84\x8b\x8c\x87\ +\x8b\x8c\x81\x83\x84\x69\x6f\x72\x75\x7c\x81\xae\xaf\xb2\xb2\xb2\ +\xb5\xb4\xb3\xb5\xb5\xb4\xb6\xaf\xaf\xb0\xb2\xb1\xb2\xb2\xb2\xb2\ +\xb1\xb1\xb1\xb4\xb4\xb4\xb3\xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\ +\xb3\xb5\xb3\xb2\xb4\xb7\xb6\xb7\xb6\xb6\xb7\xb5\xb5\xb6\xb3\xb3\ +\xb3\xb8\xb8\xb8\xb9\xb9\xba\xb6\xb6\xb7\x9b\x9b\x9e\x8a\x88\x8a\ +\xa5\xa3\xa4\xbc\xbb\xbb\xba\xb8\xb8\xb8\xb7\xb6\x91\x91\x91\x88\ +\x85\x85\xb1\xad\xad\xbc\xb8\xb7\xba\xb8\xb7\xb9\xb7\xb7\x00\x00\ +\x00\xe2\xdc\xd9\xe2\xdc\xd9\xe3\xdd\xdb\xe4\xde\xdc\xe3\xde\xdd\ +\xe5\xe0\xdd\xe6\xe1\xde\xe6\xe1\xe0\xe5\xe0\xdd\xe4\xdf\xdc\xe4\ +\xdf\xdd\xe4\xdf\xdd\xe2\xdc\xda\xe0\xdb\xda\xde\xd8\xd7\xdc\xd5\ +\xd5\xd6\xcf\xcf\xcd\xc6\xc6\xc1\xbb\xb9\xaf\xaa\xa7\x90\x8f\x8f\ +\x69\x6e\x71\x46\x51\x57\x3a\x43\x4b\x4d\x4f\x58\x6d\x6b\x6e\x86\ +\x81\x84\x99\x95\x97\xa0\x9b\x9d\xa5\xa2\xa4\xa8\xa5\xa7\xa7\xa4\ +\xa6\xa5\xa4\xa6\xa4\xa3\xa5\xa1\xa0\xa2\xa0\x9f\xa1\x9d\x9d\x9e\ +\x9a\x9b\x9e\x93\x94\x97\x8c\x8e\x91\x89\x8c\x8e\x8a\x8d\x91\x8e\ +\x92\x95\x8d\x90\x94\x8b\x8e\x92\x86\x8a\x8e\x84\x89\x8c\x80\x86\ +\x89\x7f\x85\x88\x7d\x82\x85\x77\x7b\x80\x67\x6c\x71\x5a\x5f\x64\ +\x52\x59\x5f\x61\x64\x69\x6b\x6e\x73\x5c\x5f\x64\x5b\x5e\x63\x61\ +\x65\x6a\x6b\x70\x74\x6c\x72\x78\x6d\x73\x79\x76\x7c\x81\x7b\x81\ +\x88\x7c\x82\x88\x7e\x84\x8a\x7c\x84\x8a\x7d\x86\x8b\x7e\x86\x8c\ +\x7c\x85\x8a\x7c\x84\x8a\x7d\x86\x8b\x81\x89\x90\x81\x89\x90\x7e\ +\x87\x8e\x7f\x87\x8e\x81\x89\x90\x80\x87\x8e\x81\x87\x8d\x7d\x83\ +\x89\x74\x7a\x7f\x6c\x73\x77\x67\x6e\x73\x67\x6f\x73\x6f\x75\x7a\ +\x7d\x82\x86\x86\x8b\x90\x7a\x80\x85\x76\x7b\x80\x83\x87\x8b\x85\ +\x8b\x8e\x78\x7d\x81\x7a\x7e\x83\x86\x8a\x8f\x87\x8c\x8f\x7a\x7f\ +\x81\x7d\x81\x85\x91\x94\x98\x93\x96\x9a\x96\x99\x9c\x98\x99\x9e\ +\x96\x98\x9c\x97\x99\x9d\x97\x99\x9d\x9c\x9f\xa3\x9e\xa1\xa5\x9c\ +\x9f\xa3\x9b\x9e\xa2\x9e\xa1\xa5\xa0\xa3\xa7\x9e\xa1\xa4\x9f\xa2\ +\xa5\xa0\xa3\xa4\x9c\xa0\xa2\x78\x80\x84\x6f\x74\x76\x57\x5c\x5d\ +\x65\x67\x67\x8e\x89\x89\x93\x90\x91\xaa\xa9\xaa\xad\xae\xaf\xac\ +\xad\xae\x9c\x9e\xa0\x76\x7b\x7f\x88\x8b\x8c\xa5\xa5\xa6\x82\x87\ +\x87\x4e\x55\x5b\x9d\xa1\xa3\xb1\xb0\xb2\xb3\xb2\xb4\xb7\xb6\xb7\ +\xb3\xb2\xb4\xb0\xaf\xb1\xb2\xb1\xb2\xb1\xb2\xb1\xb2\xb2\xb2\xb3\ +\xb3\xb3\xb1\xb1\xb1\xb2\xb1\xb2\xb4\xb3\xb5\xb3\xb2\xb4\xb8\xb7\ +\xb8\xb7\xb6\xb8\xb8\xb7\xb9\xb9\xb9\xba\xba\xb9\xbb\xb6\xb6\xb7\ +\xba\xb9\xba\xba\xb9\xbb\xbe\xbd\xbe\xac\xab\xad\x8c\x8b\x8d\x9e\ +\x9c\x9c\xb5\xb4\xb3\xbc\xbb\xba\xbd\xbb\xba\xa8\xa7\xa7\x87\x86\ +\x84\x9b\x98\x94\xba\xb6\xb4\xbf\xbb\xba\x00\x00\x00\xe4\xde\xdb\ +\xe4\xdf\xdc\xe5\xdf\xdc\xe5\xdf\xdb\xe4\xde\xdc\xe4\xdf\xdc\xe5\ +\xe0\xde\xe6\xe1\xdf\xe5\xe0\xde\xe5\xe0\xde\xe4\xdf\xdd\xe3\xde\ +\xdd\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd7\xd6\xd9\xd3\xd2\xd3\xcd\xcd\ +\xca\xc5\xc4\xbb\xb7\xb6\xa5\xa2\xa2\x82\x83\x86\x5a\x61\x65\x3b\ +\x47\x4d\x3c\x46\x4d\x59\x5c\x61\x79\x76\x78\x8d\x89\x8b\x9b\x98\ +\x9a\xa1\x9f\xa1\xa6\xa3\xa6\xa8\xa5\xa7\xa8\xa5\xa7\xa7\xa4\xa6\ +\xa6\xa4\xa6\xa3\xa2\xa4\xa0\x9f\xa1\x9c\x9b\x9d\x96\x96\x98\x8f\ +\x91\x92\x89\x8d\x8f\x88\x8c\x8d\x8a\x8c\x90\x8d\x90\x95\x8d\x90\ +\x95\x89\x8d\x91\x86\x8b\x8e\x85\x89\x8e\x85\x8a\x8e\x82\x87\x8c\ +\x7f\x84\x89\x7b\x7f\x84\x65\x6a\x70\x41\x49\x51\x38\x40\x48\x50\ +\x55\x5c\x63\x67\x6c\x4f\x54\x5b\x33\x38\x40\x54\x58\x5f\x6a\x6e\ +\x73\x6f\x73\x78\x6b\x71\x77\x6e\x74\x7a\x78\x7e\x84\x7b\x81\x87\ +\x7c\x82\x87\x7d\x84\x89\x7d\x85\x89\x7d\x86\x89\x7d\x86\x89\x7d\ +\x85\x8b\x7d\x85\x8b\x82\x8a\x92\x81\x89\x90\x81\x89\x90\x7d\x85\ +\x8b\x7d\x85\x8c\x7f\x86\x8d\x83\x88\x90\x82\x88\x90\x7c\x82\x88\ +\x64\x6d\x72\x5b\x64\x69\x75\x7a\x7f\x7b\x81\x86\x75\x7b\x80\x7e\ +\x83\x87\x89\x8e\x92\x7d\x83\x88\x77\x7d\x82\x82\x87\x8a\x87\x8c\ +\x8f\x7c\x81\x85\x7c\x80\x84\x8a\x8e\x92\x89\x8d\x90\x7a\x7e\x82\ +\x7d\x80\x84\x91\x94\x96\x96\x98\x9a\x9a\x9c\x9f\x98\x9b\x9d\x96\ +\x99\x9d\x96\x99\x9d\x99\x9c\xa0\x9e\xa1\xa5\x9e\xa1\xa5\x9d\xa0\ +\xa4\x9e\xa1\xa5\x9f\xa1\xa6\x9f\xa2\xa4\xa0\xa3\xa4\xa1\xa3\xa4\ +\xa3\xa6\xa7\xa0\xa2\xa3\x80\x86\x88\x49\x55\x58\x77\x7a\x7b\x6d\ +\x6c\x6f\x67\x66\x6a\x99\x98\x99\xa6\xa6\xa6\xaa\xaa\xab\xaa\xab\ +\xac\xa2\xa3\xa5\x88\x8c\x8e\x82\x84\x87\x6f\x72\x76\x72\x76\x7a\ +\xab\xac\xad\xb0\xb0\xb1\xb3\xb2\xb4\xb3\xb2\xb3\xb3\xb2\xb4\xb4\ +\xb3\xb5\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb3\xb2\ +\xb3\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb9\xb8\xba\xb7\xb6\xb8\ +\xb7\xb6\xb8\xbc\xbb\xbd\xbc\xbb\xbd\xb9\xb8\xba\xbb\xba\xbc\xb9\ +\xb9\xba\xb7\xb7\xb8\xbb\xba\xba\xbc\xbd\xbd\x9b\x9c\x9d\x8f\x8e\ +\x8e\xac\xaa\xa8\xb9\xb6\xb4\xbd\xba\xba\xba\xb9\xb9\x96\x95\x93\ +\x89\x87\x83\xb0\xac\xab\x00\x00\x00\xe4\xde\xdc\xe4\xde\xdc\xe5\ +\xdf\xdc\xe4\xdf\xdc\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xde\xe4\xdf\ +\xde\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdd\xe0\xdb\xda\ +\xde\xd9\xd8\xdc\xd4\xd4\xd7\xd0\xd0\xd1\xcb\xca\xc6\xc0\xc0\xb5\ +\xb0\xb1\x98\x96\x97\x75\x77\x79\x50\x57\x5c\x37\x43\x49\x43\x4c\ +\x52\x62\x63\x67\x83\x7e\x80\x91\x8c\x8e\x9c\x99\x9a\xa5\xa2\xa4\ +\xa7\xa3\xa5\xa8\xa5\xa7\xa7\xa5\xa7\xa6\xa3\xa5\xa4\xa3\xa5\xa1\ +\xa0\xa2\x9e\x9d\x9f\x9d\x9d\x9f\x93\x95\x96\x8c\x90\x93\x89\x8c\ +\x90\x89\x8c\x8f\x8a\x8d\x91\x8a\x8e\x92\x8a\x8f\x92\x87\x8c\x8f\ +\x84\x8a\x8e\x82\x88\x8c\x82\x87\x8c\x82\x87\x8b\x7f\x86\x8a\x79\ +\x7e\x83\x63\x69\x70\x33\x3f\x49\x22\x2d\x36\x45\x49\x52\x57\x5a\ +\x61\x3f\x44\x4e\x2a\x32\x3d\x3d\x43\x4b\x69\x6d\x72\x6e\x73\x79\ +\x6d\x73\x79\x6c\x72\x78\x74\x7a\x80\x7a\x80\x86\x7d\x82\x87\x7e\ +\x86\x8a\x7e\x84\x89\x7e\x86\x8a\x7c\x85\x89\x7c\x85\x8a\x7f\x87\ +\x8c\x80\x88\x8f\x80\x88\x8f\x7f\x87\x8e\x7e\x86\x8c\x7e\x84\x8a\ +\x80\x86\x8b\x84\x8a\x90\x86\x8c\x92\x7f\x85\x8a\x67\x70\x74\x60\ +\x69\x70\x75\x7a\x7f\x84\x8a\x8f\x7d\x83\x88\x76\x7b\x80\x80\x85\ +\x89\x89\x8f\x93\x7e\x85\x88\x7a\x80\x83\x84\x89\x8c\x87\x8c\x8f\ +\x7b\x7f\x84\x7b\x7f\x83\x8d\x90\x94\x88\x8c\x8f\x79\x7c\x80\x7d\ +\x81\x83\x92\x95\x96\x9a\x9c\x9d\x97\x99\x9c\x96\x98\x9c\x96\x99\ +\x9c\x98\x9b\x9f\x9a\x9d\xa1\x9d\xa0\xa4\x9f\xa3\xa7\xa0\xa2\xa6\ +\xa1\xa2\xa6\xa2\xa4\xa6\xa5\xa8\xa9\xa4\xa7\xa8\xa3\xa5\xa6\xa6\ +\xa8\xa9\xa0\xa3\xa4\x90\x96\x98\x6d\x73\x74\x54\x57\x5a\x70\x70\ +\x73\x68\x69\x6d\x7f\x7f\x82\x95\x94\x96\x93\x92\x94\xa5\xa6\xa6\ +\xa8\xab\xab\x89\x8d\x8f\x61\x65\x6b\x95\x97\x9a\xac\xac\xae\xae\ +\xae\xb0\xb2\xb2\xb3\xb0\xaf\xb1\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb4\ +\xb5\xb5\xb5\xb6\xb8\xb7\xb8\xb7\xb6\xb8\xb7\xb5\xb8\xb4\xb4\xb5\ +\xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb8\xb7\xb9\xba\xb9\xbb\xba\ +\xb9\xbb\xb7\xb6\xb8\xba\xb9\xbb\xbb\xba\xbc\xb8\xb7\xb9\xb7\xb6\ +\xb7\xb9\xb9\xb9\xbc\xbc\xbc\xc0\xc1\xc0\xae\xad\xae\x8a\x88\x88\ +\xa2\x9e\x9d\xb7\xb4\xb4\xbd\xbb\xbb\xc2\xc0\xbf\xb2\xb1\xb0\x90\ +\x8d\x8d\x00\x00\x00\xe5\xdd\xda\xe4\xde\xdb\xe4\xdf\xdc\xe4\xdf\ +\xdc\xe4\xde\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xde\xe4\xdf\xde\ +\xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\xdb\xe0\xdb\xda\xdc\xd7\xd6\xdc\ +\xd4\xd4\xd7\xcf\xcf\xcd\xc5\xc5\xc0\xb9\xb8\xab\xa7\xa4\x8a\x8a\ +\x88\x68\x6c\x6c\x46\x4e\x52\x3a\x43\x4a\x4b\x52\x57\x6f\x6f\x71\ +\x8b\x85\x87\x97\x92\x93\xa1\x9e\x9e\xa5\xa3\xa3\xa7\xa4\xa6\xa8\ +\xa6\xa7\xa6\xa4\xa6\xa3\xa2\xa4\xa2\xa1\xa3\xa1\xa0\xa2\x9e\x9d\ +\x9f\x98\x99\x9a\x93\x93\x96\x8b\x8e\x91\x8a\x8d\x91\x8a\x8d\x91\ +\x8a\x8d\x91\x8d\x92\x95\x8a\x8e\x92\x87\x8c\x8f\x84\x89\x8c\x84\ +\x8a\x8d\x80\x86\x8a\x81\x86\x89\x81\x86\x8a\x73\x79\x7e\x57\x5f\ +\x67\x28\x36\x41\x20\x2b\x36\x3c\x42\x4e\x4b\x50\x5a\x2d\x36\x43\ +\x2b\x34\x41\x47\x4e\x57\x69\x6d\x72\x6f\x75\x7b\x6d\x73\x7a\x6c\ +\x72\x79\x6c\x72\x79\x74\x7a\x7f\x7b\x7f\x84\x7c\x83\x88\x80\x86\ +\x8b\x7e\x86\x8a\x7c\x84\x89\x7c\x85\x89\x7d\x87\x8a\x7d\x86\x8a\ +\x82\x8a\x90\x80\x88\x8f\x7f\x87\x8e\x80\x87\x8e\x82\x88\x8f\x84\ +\x89\x90\x84\x89\x8e\x7b\x80\x85\x6f\x76\x7b\x6d\x76\x7b\x73\x7a\ +\x7f\x7b\x80\x85\x86\x8a\x91\x7d\x83\x89\x78\x7e\x83\x81\x87\x8b\ +\x89\x8f\x92\x7c\x82\x86\x77\x7d\x81\x86\x8a\x8e\x88\x8c\x8f\x7e\ +\x83\x86\x7c\x7f\x83\x8c\x8f\x93\x8e\x92\x94\x7f\x83\x86\x80\x84\ +\x87\x92\x94\x96\x97\x9a\x9c\x99\x9b\x9f\x97\x9a\x9c\x9b\x9d\xa1\ +\x9b\x9d\xa1\x9c\x9f\xa3\xa0\xa3\xa7\xa2\xa5\xa8\xa1\xa4\xa7\xa3\ +\xa7\xa8\xa6\xa9\xab\xa4\xa7\xa8\xa7\xa9\xaa\xa3\xa5\xa6\xa4\xa6\ +\xa7\xa4\xa8\xa8\x96\x9c\x9c\x8f\x93\x94\x8a\x8c\x8e\x6a\x6e\x72\ +\x5e\x61\x65\x6c\x6c\x6e\x74\x73\x75\x90\x90\x91\xad\xae\xae\xac\ +\xae\xae\xa7\xab\xaa\xaa\xaa\xac\xae\xae\xae\xae\xaf\xaf\xae\xad\ +\xaf\xae\xad\xaf\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ +\xb5\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb9\xb8\xba\xb6\ +\xb5\xb7\xb3\xb2\xb4\xb9\xb8\xba\xba\xb9\xbb\xb8\xb7\xb9\xb9\xb8\ +\xba\xba\xb9\xbb\xbb\xba\xbc\xb9\xb8\xba\xba\xb9\xba\xbb\xb9\xbb\ +\xbd\xbc\xbd\xbd\xbd\xbd\xbf\xbe\xbe\xb9\xb9\xb8\x9d\x9d\x9d\x95\ +\x92\x93\xab\xa9\xa9\xbf\xbc\xbc\xc4\xc2\xc1\xbe\xbc\xbd\x00\x00\ +\x00\xe4\xdd\xdb\xe4\xdd\xdb\xe5\xdf\xdc\xe5\xde\xdb\xe4\xdf\xdc\ +\xe4\xdf\xdd\xe5\xe0\xde\xe4\xdf\xde\xe3\xde\xdd\xe3\xde\xdc\xe2\ +\xdd\xdc\xe1\xdc\xdb\xdf\xda\xd9\xdd\xd6\xd5\xd9\xd2\xd1\xd3\xcc\ +\xcb\xc9\xc1\xbf\xbb\xb4\xb0\xa2\x9e\x98\x7e\x7f\x7b\x5a\x60\x60\ +\x3d\x46\x4c\x3c\x45\x4c\x59\x5c\x61\x79\x77\x79\x90\x8b\x8c\x9a\ +\x96\x97\xa2\x9f\xa1\xa4\xa1\xa3\xa7\xa4\xa6\xa7\xa5\xa6\xa6\xa4\ +\xa6\xa4\xa3\xa5\xa2\xa1\xa3\x9e\x9d\x9f\x9d\x9c\x9e\x97\x98\x99\ +\x91\x92\x95\x89\x8c\x90\x86\x8a\x8e\x87\x8a\x8e\x8b\x8e\x92\x8b\ +\x8f\x93\x8a\x8e\x92\x88\x8d\x90\x84\x8a\x8d\x84\x89\x8e\x81\x87\ +\x8b\x81\x86\x89\x81\x87\x8b\x70\x79\x7f\x49\x57\x60\x1f\x2e\x3a\ +\x2d\x38\x44\x3d\x46\x51\x40\x4a\x55\x21\x2c\x38\x2e\x36\x41\x51\ +\x58\x5f\x6a\x6f\x74\x71\x77\x7d\x6c\x73\x79\x6b\x72\x78\x6b\x71\ +\x77\x6f\x74\x7a\x78\x7d\x82\x7c\x82\x87\x7e\x84\x89\x7d\x82\x87\ +\x7e\x85\x8a\x7e\x85\x8b\x7e\x87\x8a\x7d\x86\x8b\x7e\x87\x8d\x7f\ +\x87\x8d\x7d\x84\x89\x7c\x82\x87\x81\x87\x8c\x84\x8a\x90\x84\x89\ +\x8e\x7e\x83\x88\x7b\x81\x85\x7e\x83\x88\x7e\x84\x89\x75\x7b\x81\ +\x7a\x7f\x84\x86\x8b\x90\x7d\x84\x89\x74\x79\x7e\x80\x85\x88\x88\ +\x8e\x91\x7e\x84\x87\x7a\x7f\x82\x87\x8b\x8e\x89\x8d\x90\x7e\x83\ +\x86\x7c\x80\x84\x8e\x90\x93\x8b\x8e\x8f\x81\x86\x86\x7f\x82\x83\ +\x8f\x91\x92\x9a\x9d\x9e\x9c\x9e\xa0\x9b\x9c\x9f\x9d\x9f\xa2\x9e\ +\xa1\xa4\xa1\xa2\xa6\xa1\xa3\xa6\xa2\xa4\xa7\xa5\xa7\xa9\xa4\xa6\ +\xa9\xa4\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa4\xa6\xa6\xa7\xa9\xa9\ +\xa9\xaa\xaa\xa6\xa8\xa9\x8f\x92\x95\x65\x6a\x6f\x44\x4a\x50\x65\ +\x66\x6a\x62\x62\x66\x7e\x7f\x81\xad\xad\xad\xb2\xb1\xb1\xb0\xb1\ +\xb1\xae\xad\xae\xae\xae\xad\xb0\xb0\xb0\xac\xac\xad\xaf\xaf\xb0\ +\xb5\xb4\xb6\xb2\xb1\xb3\xb1\xb0\xb2\xb4\xb3\xb5\xb6\xb6\xb8\xb5\ +\xb4\xb6\xb7\xb6\xb8\xb7\xb7\xb9\xbb\xba\xbc\xb7\xb6\xb8\xb5\xb4\ +\xb6\xba\xb9\xbb\xbd\xbc\xbf\xba\xb9\xbb\xbc\xbb\xbd\xbb\xba\xbc\ +\xb7\xb6\xb8\xba\xb9\xbb\xbd\xbc\xbd\xbc\xbb\xbb\xbd\xbd\xbd\xbd\ +\xbd\xbd\xb9\xb8\xb8\xbb\xba\xba\xc1\xc0\xc1\xae\xad\xae\x90\x8f\ +\x91\x9f\x9c\x9c\xb3\xaf\xae\xc3\xbf\xc0\x00\x00\x00\xe4\xde\xdb\ +\xe4\xde\xdb\xe5\xde\xdb\xe5\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\ +\xdf\xdd\xe4\xdf\xde\xe3\xde\xdb\xe3\xde\xdb\xe2\xdd\xdc\xe1\xda\ +\xda\xde\xd9\xd8\xdb\xd5\xd4\xd6\xcf\xcc\xcf\xc7\xc4\xc5\xbd\xba\ +\xb2\xac\xaa\x95\x92\x8e\x71\x73\x71\x4d\x55\x57\x3a\x42\x49\x45\ +\x4a\x51\x66\x67\x6a\x80\x7d\x7f\x93\x8e\x90\x9e\x9b\x9e\xa3\xa2\ +\xa1\xa4\xa2\xa2\xa7\xa6\xa6\xa7\xa5\xa6\xa4\xa4\xa4\xa3\xa2\xa4\ +\xa2\xa1\xa3\x9e\x9d\x9f\x9a\x9b\x9c\x94\x95\x97\x8f\x90\x94\x8a\ +\x8c\x90\x88\x8b\x8f\x89\x8b\x8f\x89\x8d\x91\x88\x8b\x90\x88\x8b\ +\x90\x86\x8a\x8f\x84\x88\x8c\x82\x87\x8c\x80\x87\x8b\x80\x86\x8a\ +\x7f\x84\x89\x6d\x76\x7c\x44\x55\x5f\x24\x34\x40\x39\x44\x4f\x44\ +\x4c\x56\x32\x3e\x4a\x23\x30\x3d\x38\x41\x4a\x63\x69\x6d\x6b\x70\ +\x76\x70\x75\x7b\x70\x76\x7b\x6e\x74\x7a\x6e\x74\x79\x6c\x72\x77\ +\x73\x79\x7d\x7c\x82\x85\x80\x86\x8b\x7e\x84\x89\x7f\x85\x8a\x7f\ +\x85\x8a\x7f\x87\x8b\x7f\x87\x8e\x7e\x86\x8d\x7d\x85\x8a\x74\x79\ +\x7e\x75\x7a\x7f\x7d\x81\x86\x84\x88\x8d\x85\x8a\x8e\x83\x89\x8e\ +\x82\x88\x8c\x85\x8b\x90\x89\x8f\x95\x81\x89\x8f\x79\x7e\x83\x7e\ +\x83\x88\x88\x8d\x92\x7d\x83\x88\x77\x7d\x80\x84\x89\x8c\x8c\x91\ +\x94\x80\x85\x88\x7c\x81\x84\x88\x8c\x8d\x8b\x8f\x91\x7f\x82\x86\ +\x7a\x7d\x80\x8b\x8d\x8f\x91\x94\x95\x86\x8a\x8b\x81\x85\x86\x8e\ +\x91\x92\x9a\x9c\x9e\x9c\x9e\x9f\x9e\xa0\xa1\xa0\xa2\xa3\xa1\xa3\ +\xa5\xa1\xa3\xa5\xa3\xa4\xa8\xa3\xa6\xa7\xa2\xa6\xa6\xa4\xa6\xa7\ +\xa5\xa7\xa8\xa5\xa7\xa8\xa6\xa8\xa8\xa8\xaa\xaa\xa5\xa7\xa7\xa7\ +\xa9\xaa\xa0\xa2\xa4\x7d\x84\x87\x6c\x73\x77\x6f\x71\x76\x52\x56\ +\x5c\x86\x88\x8c\xad\xad\xad\xb1\xb1\xb1\xaf\xaf\xaf\xb0\xb0\xb0\ +\xb1\xb1\xb1\xb1\xb1\xb2\xaf\xb0\xb1\xb2\xb1\xb3\xb3\xb3\xb5\xb0\ +\xaf\xb1\xb3\xb2\xb4\xb7\xb6\xb8\xb9\xb9\xba\xb7\xb7\xb9\xb8\xb7\ +\xb9\xba\xba\xbc\xbc\xbb\xbd\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\ +\xb9\xb8\xbb\xb7\xb6\xb8\xba\xb9\xbb\xba\xb8\xba\xba\xba\xbc\xbd\ +\xbc\xbe\xbd\xbc\xbe\xba\xba\xba\xbd\xbc\xbd\xbe\xbd\xbe\xbc\xbb\ +\xbc\xbb\xba\xbc\xbd\xbc\xbe\xc1\xc0\xc1\xbc\xbb\xbc\xa3\xa2\xa4\ +\x96\x95\x96\xa5\xa4\xa5\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe5\ +\xde\xdb\xe5\xdf\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe4\xdf\xdd\xe4\xdf\ +\xde\xe3\xde\xdc\xe3\xde\xdb\xe1\xdc\xdb\xe0\xda\xd9\xde\xd8\xd8\ +\xda\xd3\xd0\xd5\xce\xcb\xcd\xc6\xc3\xbf\xb8\xb7\xa9\xa5\xa4\x89\ +\x89\x87\x63\x69\x69\x43\x4c\x50\x3d\x44\x4b\x53\x55\x5b\x72\x70\ +\x72\x8a\x85\x87\x99\x94\x96\xa0\x9d\x9f\xa4\xa2\xa2\xa6\xa4\xa4\ +\xa8\xa8\xa8\xa6\xa6\xa6\xa5\xa5\xa6\xa3\xa2\xa4\xa1\xa0\xa2\x9e\ +\x9d\x9f\x98\x98\x9a\x90\x92\x95\x8c\x8d\x91\x8a\x8b\x8f\x8a\x8b\ +\x8f\x8a\x8d\x91\x89\x8b\x8f\x87\x8a\x8e\x87\x8a\x8f\x86\x8a\x8e\ +\x84\x88\x8c\x83\x87\x8c\x82\x87\x8c\x7f\x84\x89\x7e\x83\x88\x71\ +\x79\x7f\x4f\x5e\x67\x3a\x48\x54\x45\x4e\x58\x54\x5b\x65\x2f\x3c\ +\x47\x28\x39\x45\x41\x4c\x55\x67\x6d\x73\x70\x75\x7c\x70\x75\x7a\ +\x74\x79\x7e\x6f\x75\x7a\x6f\x75\x7a\x6e\x73\x78\x6d\x72\x77\x74\ +\x79\x7d\x7d\x83\x87\x7e\x84\x89\x7f\x85\x8a\x80\x86\x8b\x80\x86\ +\x8b\x81\x88\x8f\x80\x88\x8e\x7a\x80\x85\x6e\x74\x79\x70\x76\x7b\ +\x7b\x80\x85\x83\x88\x8d\x86\x8c\x90\x86\x8c\x91\x85\x8b\x8f\x87\ +\x8d\x92\x8a\x91\x96\x88\x90\x95\x80\x88\x8d\x7a\x81\x86\x81\x86\ +\x8b\x87\x8c\x91\x81\x87\x8b\x7c\x82\x85\x85\x89\x8d\x8b\x90\x93\ +\x83\x89\x8b\x7d\x82\x85\x88\x8b\x8e\x8b\x8e\x90\x7f\x83\x85\x7d\ +\x81\x83\x8e\x91\x93\x96\x98\x9a\x89\x8d\x8f\x81\x85\x85\x8f\x92\ +\x93\x9c\x9e\xa0\x9e\xa0\xa1\xa0\xa2\xa3\xa2\xa3\xa4\xa0\xa2\xa3\ +\xa0\xa2\xa5\xa2\xa5\xa6\xa3\xa6\xa6\xa5\xa7\xa8\xa6\xa8\xa9\xa5\ +\xa7\xa9\xa7\xa9\xaa\xa7\xa9\xaa\xa7\xa9\xaa\xa6\xa8\xa9\xa9\xab\ +\xac\xaa\xac\xad\x9e\xa0\xa1\x69\x6e\x71\x6a\x70\x73\x9d\x9e\x9f\ +\xa2\xa2\xa3\xad\xad\xad\xaf\xaf\xaf\xb1\xb1\xb1\xb4\xb3\xb4\xb1\ +\xb0\xb1\xb3\xb3\xb5\xb7\xb6\xb8\xb2\xb2\xb4\xb2\xb1\xb4\xb6\xb5\ +\xb7\xb8\xb7\xb9\xb9\xb8\xbb\xb8\xb8\xba\xb7\xb7\xb9\xba\xb9\xbb\ +\xba\xb9\xbb\xb8\xb7\xb9\xb8\xb7\xba\xbb\xba\xbc\xb9\xb8\xbb\xb9\ +\xb8\xba\xba\xb9\xbb\xbb\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xba\xba\ +\xba\xbb\xbb\xbb\xbc\xbc\xbc\xbc\xbb\xbc\xc0\xbe\xc0\xbf\xbe\xc0\ +\xbe\xbc\xbe\xc0\xbe\xc0\xc1\xbf\xc1\xc2\xc0\xc2\xb5\xb4\xb6\x9d\ +\x9c\x9e\x00\x00\x00\xe4\xdd\xda\xe5\xde\xdb\xe5\xde\xdb\xe5\xdf\ +\xdc\xe4\xdf\xdc\xe4\xde\xdb\xe4\xde\xdc\xe3\xde\xdc\xe3\xde\xdb\ +\xe2\xdd\xdb\xe1\xdc\xda\xde\xda\xd8\xdd\xd7\xd6\xd9\xd2\xcf\xd3\ +\xcc\xc8\xc8\xc1\xbf\xb9\xb4\xb4\x9f\x9d\x9c\x7b\x7d\x7d\x59\x5e\ +\x61\x3f\x47\x4e\x41\x48\x50\x5f\x60\x65\x7e\x7c\x7e\x90\x8b\x8d\ +\x9d\x97\x99\xa1\x9e\xa0\xa5\xa3\xa3\xa7\xa5\xa6\xa6\xa6\xa7\xa5\ +\xa5\xa5\xa4\xa4\xa4\xa1\xa1\xa3\x9f\x9e\xa0\x9c\x9b\x9d\x94\x94\ +\x97\x8e\x8f\x93\x87\x89\x8e\x86\x88\x8c\x89\x8b\x8f\x8b\x8d\x91\ +\x88\x89\x8d\x86\x88\x8c\x86\x89\x8e\x86\x8a\x8f\x85\x89\x8d\x84\ +\x87\x8c\x83\x87\x8c\x80\x86\x8a\x7e\x84\x88\x74\x7c\x81\x63\x6e\ +\x75\x5a\x65\x6e\x5a\x63\x6b\x5f\x67\x6e\x43\x4f\x59\x39\x47\x51\ +\x53\x5a\x63\x6b\x6e\x75\x72\x77\x7d\x71\x75\x7b\x73\x77\x7c\x70\ +\x75\x7b\x6d\x73\x78\x6f\x74\x79\x6d\x71\x76\x6d\x71\x76\x79\x7e\ +\x83\x7e\x84\x89\x7f\x85\x8a\x80\x87\x8c\x81\x88\x8c\x81\x86\x8c\ +\x7f\x85\x8b\x75\x7b\x80\x6e\x74\x79\x73\x78\x7d\x7f\x84\x89\x83\ +\x88\x8e\x84\x89\x8e\x85\x8b\x90\x87\x8d\x91\x88\x8e\x93\x87\x8d\ +\x92\x8a\x8f\x95\x89\x90\x95\x81\x88\x8d\x7a\x7f\x84\x81\x85\x89\ +\x8a\x8e\x93\x83\x88\x8c\x7a\x80\x83\x84\x87\x8b\x8e\x92\x94\x84\ +\x89\x8b\x7d\x81\x85\x89\x8c\x8e\x90\x93\x95\x85\x89\x8c\x7c\x7f\ +\x83\x89\x8c\x8d\x95\x97\x9a\x8b\x8f\x91\x82\x86\x88\x8d\x8f\x92\ +\x9a\x9d\x9e\x9f\xa2\xa2\x9e\xa0\xa1\x9f\xa1\xa2\xa2\xa4\xa5\xa2\ +\xa3\xa6\xa1\xa2\xa5\xa3\xa5\xa7\xa6\xa8\xa9\xa6\xa8\xa9\xa9\xab\ +\xac\xa9\xab\xac\xa9\xaa\xab\xa8\xa9\xaa\xab\xac\xad\xb1\xb1\xb2\ +\xa0\xa1\xa2\x84\x87\x89\x87\x8a\x8b\x83\x85\x85\x78\x79\x79\x96\ +\x96\x96\xaf\xaf\xaf\xb0\xb0\xb0\xb1\xb0\xb2\xb0\xaf\xb0\xb4\xb3\ +\xb5\xb6\xb6\xb8\xb1\xb1\xb4\xb3\xb1\xb4\xb5\xb4\xb7\xb2\xb1\xb5\ +\xb6\xb5\xb9\xb9\xb9\xbc\xb9\xb9\xbb\xb9\xb8\xba\xb9\xb8\xba\xba\ +\xb9\xbb\xba\xba\xbb\xbb\xba\xbc\xb9\xb8\xbb\xbb\xba\xbc\xbc\xbb\ +\xbd\xbc\xbb\xbd\xba\xb9\xbb\xb9\xb8\xb9\xb9\xb9\xb9\xbe\xbe\xbe\ +\xbe\xbe\xbe\xbb\xba\xbb\xbe\xbd\xbe\xc0\xbe\xc0\xc0\xbd\xbf\xc0\ +\xbe\xbf\xc1\xbe\xc0\xbf\xbd\xbf\xc1\xbf\xc1\xc1\xc1\xc2\x00\x00\ +\x00\xe4\xdd\xda\xe4\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe2\xde\xdb\ +\xe4\xde\xdb\xe5\xde\xdb\xe3\xdd\xda\xe3\xde\xda\xe2\xdc\xd9\xe1\ +\xdb\xd8\xdf\xd9\xd7\xdb\xd5\xd2\xd6\xcf\xca\xd0\xc9\xc7\xc3\xbc\ +\xbc\xb0\xab\xac\x92\x91\x90\x6f\x72\x73\x50\x56\x5b\x3f\x46\x4e\ +\x4b\x50\x57\x6a\x69\x6d\x85\x82\x84\x95\x91\x93\x9f\x9b\x9d\xa4\ +\xa1\xa2\xa6\xa4\xa5\xa7\xa5\xa7\xa5\xa4\xa6\xa5\xa5\xa6\xa5\xa4\ +\xa5\xa0\xa0\xa1\x9d\x9c\x9e\x9b\x9b\x9d\x91\x92\x95\x8a\x8c\x90\ +\x85\x87\x8c\x85\x86\x8a\x82\x83\x87\x7e\x80\x84\x7e\x7f\x83\x82\ +\x84\x88\x86\x89\x8d\x85\x88\x8c\x85\x89\x8e\x84\x88\x8d\x83\x88\ +\x8d\x81\x87\x8c\x80\x85\x8b\x7a\x7f\x85\x71\x79\x7f\x6f\x77\x7d\ +\x6f\x76\x7c\x6c\x74\x78\x5e\x68\x6e\x55\x5e\x65\x5d\x61\x68\x6b\ +\x6e\x73\x6d\x70\x75\x73\x76\x7c\x6f\x72\x77\x6b\x70\x75\x6c\x72\ +\x77\x6f\x73\x78\x71\x75\x7a\x6e\x72\x77\x72\x77\x7c\x7a\x80\x85\ +\x7f\x85\x8a\x7e\x85\x8a\x82\x87\x8c\x80\x86\x8b\x7c\x82\x87\x71\ +\x77\x7c\x6f\x75\x7a\x79\x7e\x82\x83\x88\x8d\x84\x89\x8f\x85\x89\ +\x8e\x86\x8b\x90\x87\x8d\x92\x89\x8e\x93\x88\x8e\x92\x89\x8f\x94\ +\x8b\x91\x96\x8b\x91\x96\x81\x87\x8c\x79\x7f\x84\x81\x86\x8a\x8a\ +\x8f\x93\x83\x89\x8d\x7c\x81\x84\x87\x8b\x8d\x91\x94\x97\x88\x8d\ +\x90\x7d\x81\x84\x85\x89\x8c\x90\x94\x96\x85\x88\x8d\x7d\x80\x83\ +\x89\x8b\x8e\x99\x9c\x9d\x90\x93\x95\x82\x86\x88\x87\x8b\x8c\x98\ +\x9a\x9b\x9f\xa1\xa2\xa2\xa4\xa5\xa5\xa7\xa7\xa2\xa3\xa7\xa0\xa0\ +\xa5\xa3\xa5\xa6\xa5\xa7\xa8\xa4\xa6\xa7\xa8\xaa\xab\xaa\xac\xad\ +\xaa\xab\xac\xa9\xa9\xab\xad\xac\xae\xaf\xaf\xb1\xa4\xa6\xa7\x99\ +\x9c\x9d\x84\x88\x89\x6c\x70\x72\x5f\x63\x66\x75\x77\x78\xab\xac\ +\xab\xb1\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb0\xb1\xb3\xb1\xb3\xb4\ +\xb0\xb1\xb3\xb2\xb2\xb4\xb3\xb3\xb5\xb1\xb0\xb3\xb6\xb4\xb7\xb7\ +\xb6\xb8\xba\xb9\xbb\xba\xb9\xbb\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbc\ +\xbe\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xbf\xbe\xc0\ +\xbd\xbc\xbe\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbe\xbf\xbe\xc0\xbe\ +\xbd\xbf\xbc\xbc\xbd\xbe\xbd\xbf\xc0\xbe\xc1\xc3\xc2\xc3\xc3\xc0\ +\xc2\xc1\xbf\xc1\xbf\xbd\xbf\xc2\xc2\xc3\x00\x00\x00\xe5\xde\xdb\ +\xe5\xde\xdb\xe5\xde\xdb\xe4\xde\xdb\xe4\xde\xdb\xe5\xde\xdb\xe5\ +\xde\xdb\xe4\xde\xda\xe3\xde\xdb\xe2\xdb\xd8\xdf\xd9\xd6\xde\xd6\ +\xd6\xd9\xd2\xce\xd3\xcd\xc8\xcb\xc5\xc3\xbe\xb7\xb7\xa7\xa2\xa3\ +\x86\x85\x86\x62\x67\x6a\x46\x4d\x55\x40\x46\x4f\x57\x59\x5f\x76\ +\x73\x76\x8b\x87\x89\x9a\x95\x97\x9f\x9b\x9d\xa5\xa2\xa4\xa6\xa3\ +\xa6\xa7\xa4\xa6\xa7\xa5\xa7\xa3\xa3\xa4\xa3\xa2\xa4\xa2\xa1\xa3\ +\x9f\x9d\x9f\x99\x9a\x9c\x8f\x91\x94\x88\x89\x8e\x83\x84\x89\x82\ +\x83\x87\x77\x79\x7b\x6b\x6e\x72\x69\x6c\x6f\x76\x76\x7b\x82\x84\ +\x88\x83\x87\x8c\x82\x86\x8b\x81\x85\x8a\x82\x87\x8c\x81\x87\x8c\ +\x80\x86\x8c\x7c\x82\x88\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\x77\ +\x7d\x82\x6d\x74\x79\x62\x68\x6e\x55\x5a\x61\x5e\x62\x68\x66\x69\ +\x6e\x6c\x70\x74\x64\x67\x6c\x61\x64\x69\x68\x6c\x70\x6d\x72\x76\ +\x70\x74\x79\x6f\x75\x7a\x6b\x72\x76\x71\x77\x7c\x7e\x83\x88\x7e\ +\x83\x89\x81\x87\x8c\x7f\x85\x8a\x78\x7d\x82\x6f\x75\x7a\x72\x77\ +\x7b\x7f\x83\x87\x86\x8a\x8f\x87\x8c\x91\x87\x8b\x90\x87\x8b\x90\ +\x86\x8b\x90\x88\x8d\x91\x87\x8d\x90\x89\x8f\x93\x8d\x91\x96\x8f\ +\x94\x99\x8a\x91\x96\x83\x8a\x8f\x7d\x82\x87\x83\x87\x8c\x8a\x90\ +\x94\x84\x8a\x8d\x7e\x82\x85\x89\x8c\x90\x92\x96\x9a\x86\x8a\x8d\ +\x7c\x81\x84\x85\x88\x8b\x91\x94\x96\x8c\x8f\x92\x81\x83\x87\x8a\ +\x8c\x8e\x99\x9c\x9c\x92\x94\x96\x84\x88\x89\x87\x8a\x8b\x97\x9a\ +\x9b\xa3\xa5\xa7\xa5\xa7\xa9\xa4\xa6\xa8\xa4\xa6\xa8\xa4\xa5\xa7\ +\x9f\xa0\xa1\xa2\xa4\xa5\xa5\xa6\xa7\xa9\xaa\xac\xa9\xa9\xaa\xa9\ +\xa9\xab\xad\xab\xad\xaf\xae\xb0\xae\xae\xb0\xaa\xab\xac\x95\x99\ +\x9a\x7e\x83\x86\x5c\x63\x68\x70\x76\x78\xa9\xaa\xab\xaf\xb1\xb2\ +\xb2\xb1\xb3\xb5\xb4\xb6\xb1\xb3\xb4\xb0\xb2\xb3\xb0\xb2\xb3\xb2\ +\xb3\xb5\xb3\xb4\xb5\xb5\xb5\xb6\xb8\xb6\xb8\xb7\xb6\xb8\xba\xb9\ +\xbb\xbb\xba\xbc\xb9\xb8\xba\xb9\xb8\xba\xbd\xbc\xbe\xbc\xbb\xbd\ +\xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbc\ +\xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbf\xbe\xc0\xc1\xc1\xc2\xbf\xbe\ +\xc0\xc1\xc0\xc2\xc0\xbf\xc1\xc4\xc1\xc3\xc3\xc1\xc2\xc2\xc1\xc2\ +\xbf\xbd\xbf\xbe\xbd\xbe\x00\x00\x00\xe5\xde\xdb\xe5\xde\xdb\xe4\ +\xde\xdb\xe4\xde\xdb\xe4\xdf\xdc\xe4\xde\xdc\xe3\xdd\xdb\xe3\xdd\ +\xd9\xe3\xdc\xd9\xe1\xda\xd6\xde\xd8\xd5\xdb\xd6\xd3\xd9\xd2\xcf\ +\xd0\xca\xc6\xc7\xc0\xbe\xb8\xb2\xb1\x9c\x98\x98\x78\x79\x7b\x55\ +\x5c\x60\x3d\x44\x4c\x44\x47\x50\x61\x61\x66\x7f\x7a\x7d\x92\x8c\ +\x8e\x9a\x95\x97\xa0\x9b\x9d\xa5\xa2\xa5\xa7\xa3\xa6\xa7\xa4\xa6\ +\xa5\xa4\xa6\xa3\xa2\xa4\xa1\xa1\xa2\xa0\xa0\xa1\x9d\x9c\x9e\x94\ +\x94\x98\x8c\x8d\x91\x86\x87\x8c\x80\x81\x85\x80\x81\x84\x70\x72\ +\x73\x58\x5d\x60\x4f\x55\x59\x5f\x61\x65\x7d\x7f\x83\x84\x87\x8c\ +\x82\x85\x8a\x83\x87\x8c\x80\x85\x8a\x7f\x85\x8a\x7f\x86\x8b\x7d\ +\x83\x89\x7d\x82\x87\x7b\x81\x86\x7b\x81\x86\x7b\x81\x86\x76\x7c\ +\x81\x63\x68\x6d\x47\x4d\x55\x38\x3d\x45\x56\x5a\x61\x63\x65\x6a\ +\x51\x53\x5b\x46\x4a\x52\x57\x5a\x62\x69\x6f\x74\x6d\x73\x79\x72\ +\x78\x7d\x6e\x74\x7a\x6d\x72\x78\x75\x7a\x7f\x7c\x83\x87\x7e\x85\ +\x89\x80\x85\x8a\x74\x78\x7e\x6e\x72\x77\x77\x7c\x80\x82\x87\x8b\ +\x85\x8a\x8e\x86\x8a\x8f\x86\x8b\x90\x88\x8c\x90\x88\x8c\x91\x88\ +\x8c\x91\x8a\x8f\x93\x8c\x90\x95\x8c\x90\x95\x90\x94\x99\x8d\x93\ +\x98\x8d\x92\x96\x85\x89\x8f\x7d\x81\x86\x84\x88\x8c\x8d\x91\x95\ +\x86\x8b\x8f\x7f\x83\x87\x89\x8c\x90\x94\x97\x9b\x88\x8d\x90\x7d\ +\x81\x85\x84\x87\x8a\x93\x96\x99\x8d\x90\x94\x82\x85\x88\x88\x8a\ +\x8b\x99\x9b\x9c\x98\x9b\x9b\x88\x8c\x8d\x87\x8b\x8c\x97\x9a\x9c\ +\xa4\xa6\xa7\xa5\xa6\xa7\xa6\xa8\xa9\xa5\xa6\xa8\xa1\xa1\xa4\xa1\ +\xa3\xa5\xa4\xa5\xa5\xa7\xa7\xaa\xa8\xa9\xaa\xa9\xab\xac\xad\xad\ +\xaf\xaf\xaf\xb1\xb1\xb0\xb2\xad\xad\xaf\xa7\xaa\xaa\x9a\x9e\x9f\ +\x88\x8e\x91\x9a\x9e\xa1\xaf\xaf\xb1\xaf\xb1\xb2\xb2\xb1\xb3\xb5\ +\xb4\xb6\xb4\xb4\xb6\xb2\xb4\xb5\xb1\xb3\xb4\xb2\xb4\xb5\xb2\xb4\ +\xb5\xb8\xb7\xb9\xb8\xb7\xb9\xb7\xb6\xb8\xb9\xb8\xba\xbc\xbb\xbd\ +\xba\xb9\xbb\xb9\xb8\xba\xbb\xba\xbb\xbc\xbb\xbd\xb9\xb9\xba\xbb\ +\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc1\ +\xc2\xbe\xbe\xbf\xbc\xbb\xbd\xc0\xbf\xc1\xc0\xbf\xc1\xc1\xc0\xc2\ +\xbf\xbf\xc0\xc4\xc2\xc3\xbe\xbb\xbc\xbd\xbc\xbd\xbf\xbe\xbf\xbf\ +\xbf\xbf\x00\x00\x00\xe5\xde\xdb\xe3\xde\xdb\xe4\xdf\xdb\xe3\xde\ +\xdb\xe3\xde\xdb\xe4\xdf\xdc\xe4\xdf\xdc\xe3\xdd\xda\xe1\xdc\xd9\ +\xe0\xda\xd7\xdd\xd8\xd5\xdb\xd5\xd2\xd5\xce\xcb\xcc\xc6\xc1\xc2\ +\xbb\xb8\xaf\xa8\xa6\x8e\x8b\x8a\x6a\x6e\x70\x4a\x53\x59\x3f\x46\ +\x4f\x4f\x51\x59\x6f\x6c\x70\x87\x82\x83\x97\x92\x93\x9e\x99\x9a\ +\xa4\x9f\xa1\xa5\xa2\xa4\xa7\xa4\xa5\xa5\xa3\xa5\xa3\xa3\xa5\xa2\ +\xa1\xa3\xa1\xa0\xa2\x9d\x9d\xa0\x98\x98\x9c\x92\x92\x96\x8a\x8b\ +\x8f\x83\x84\x88\x76\x77\x7a\x6e\x70\x72\x6a\x6b\x6d\x59\x5d\x60\ +\x4e\x55\x58\x56\x5a\x5d\x77\x79\x7d\x81\x84\x89\x80\x84\x89\x81\ +\x85\x8a\x80\x85\x8b\x81\x85\x8b\x7f\x84\x8a\x7e\x84\x89\x7c\x82\ +\x87\x7c\x81\x86\x7b\x80\x85\x7c\x82\x87\x7a\x7f\x84\x5e\x64\x69\ +\x39\x42\x4a\x25\x2e\x36\x46\x4b\x51\x59\x5b\x61\x35\x3c\x43\x1b\ +\x26\x2d\x40\x46\x4e\x69\x6e\x75\x6f\x76\x7c\x70\x75\x7a\x71\x77\ +\x7c\x6e\x74\x79\x6c\x73\x78\x76\x7c\x80\x7c\x81\x84\x75\x7a\x7e\ +\x65\x69\x6d\x68\x6c\x70\x78\x7c\x80\x83\x88\x8b\x84\x89\x8d\x83\ +\x87\x8d\x86\x8a\x8f\x88\x8c\x91\x88\x8c\x91\x86\x8a\x90\x8a\x8e\ +\x93\x8b\x8f\x94\x8f\x93\x97\x8d\x91\x96\x8e\x92\x97\x8f\x93\x98\ +\x8f\x93\x99\x86\x8b\x90\x80\x84\x89\x83\x86\x8b\x8d\x92\x96\x89\ +\x8d\x91\x81\x85\x89\x89\x8c\x90\x94\x98\x9b\x8b\x8f\x92\x81\x84\ +\x88\x84\x87\x89\x97\x99\x9c\x94\x97\x99\x85\x89\x8a\x88\x8a\x8b\ +\x96\x98\x99\x9a\x9c\x9d\x8a\x8e\x8e\x83\x87\x88\x97\x99\x9a\xa6\ +\xa6\xa8\xa5\xa7\xa9\xa4\xa6\xa8\xa2\xa2\xa3\xa0\xa1\xa3\xa5\xa5\ +\xa6\xa7\xa6\xa8\xa8\xa9\xab\xab\xac\xae\xac\xac\xae\xab\xac\xae\ +\xac\xac\xae\xae\xaf\xb0\xae\xb0\xb1\xac\xad\xaf\xac\xae\xaf\xaf\ +\xb0\xb1\xb1\xb2\xb3\xaf\xaf\xb1\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb4\ +\xb5\xb4\xb4\xb6\xb5\xb5\xb7\xb3\xb4\xb5\xb3\xb4\xb6\xb7\xb6\xb8\ +\xb7\xb6\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb9\xb8\xba\xb9\xb8\xba\xba\ +\xba\xbb\xba\xba\xbb\xbb\xbb\xbc\xbb\xbb\xbc\xbc\xbc\xbe\xbd\xbc\ +\xbe\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xbf\xbf\xbe\xbf\xbd\xbd\xbe\ +\xbc\xbb\xbd\xba\xb8\xba\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xc2\xc2\xc3\ +\xc2\xc2\xbd\xbc\xbd\xc0\xbf\xc0\xbe\xbe\xbe\xc1\xc0\xc2\x00\x00\ +\x00\xe5\xdf\xdc\xe3\xdf\xdc\xe4\xdf\xdd\xe4\xdf\xdd\xe3\xde\xdb\ +\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xda\xe1\xdc\xd9\xdf\xd9\xd6\xdd\ +\xd6\xd3\xd8\xd2\xcf\xd4\xcc\xc9\xc8\xc1\xbe\xba\xb2\xaf\xa4\x9f\ +\x9d\x82\x81\x83\x5d\x62\x69\x42\x4c\x54\x42\x4a\x52\x59\x59\x60\ +\x77\x73\x76\x8e\x88\x89\x9a\x95\x96\xa1\x9c\x9c\xa4\xa0\xa2\xa5\ +\xa2\xa3\xa6\xa5\xa6\xa4\xa3\xa5\xa2\xa1\xa3\xa2\xa1\xa3\x9e\x9e\ +\xa1\x99\x9a\x9e\x94\x95\x99\x8d\x8e\x93\x86\x87\x8a\x76\x78\x7a\ +\x6a\x6d\x6f\x61\x64\x68\x60\x63\x66\x5e\x62\x63\x60\x65\x66\x63\ +\x66\x68\x74\x77\x7c\x7f\x83\x87\x7f\x82\x87\x80\x85\x8a\x7f\x85\ +\x8b\x7e\x84\x8b\x7d\x83\x89\x7d\x83\x89\x7e\x84\x8a\x7b\x81\x86\ +\x7a\x80\x85\x7b\x81\x86\x71\x76\x7b\x5a\x60\x66\x2a\x35\x3d\x23\ +\x2d\x35\x40\x47\x4d\x4d\x51\x58\x27\x30\x37\x09\x17\x1c\x30\x37\ +\x3f\x63\x68\x70\x73\x7a\x7f\x71\x77\x7b\x71\x77\x7c\x6f\x77\x7a\ +\x6d\x75\x7c\x6c\x72\x78\x78\x7c\x7f\x6b\x6f\x73\x4d\x51\x56\x4f\ +\x52\x57\x72\x74\x78\x82\x86\x89\x83\x87\x8b\x83\x88\x8c\x85\x8a\ +\x8e\x88\x8c\x91\x8a\x8f\x93\x8a\x8f\x92\x8b\x8f\x93\x8b\x8f\x94\ +\x8d\x92\x96\x8e\x92\x97\x8e\x92\x97\x8f\x94\x98\x90\x95\x98\x91\ +\x96\x99\x88\x8c\x91\x7d\x82\x86\x82\x87\x8a\x8e\x93\x96\x8b\x8f\ +\x94\x81\x85\x89\x86\x89\x8d\x99\x9c\xa0\x93\x97\x9b\x84\x87\x8b\ +\x85\x88\x89\x94\x96\x98\x96\x9b\x9c\x88\x8c\x8d\x85\x88\x89\x98\ +\x9a\x9a\x9d\xa0\xa0\x8a\x8d\x8f\x85\x88\x8a\x96\x98\x9a\xa7\xa7\ +\xa9\xa8\xa8\xaa\xa5\xa4\xa6\xa3\xa4\xa5\xa6\xa5\xa7\xa5\xa4\xa6\ +\xa7\xa7\xa9\xad\xac\xae\xae\xad\xb0\xac\xab\xae\xac\xab\xad\xaf\ +\xae\xb0\xaf\xae\xb0\xb0\xaf\xb1\xb2\xb1\xb3\xb0\xaf\xb1\xb3\xb2\ +\xb4\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\xb1\xb3\xb4\xaf\xb1\xb2\ +\xb3\xb5\xb6\xb4\xb6\xb7\xb4\xb5\xb6\xb5\xb5\xb7\xb8\xb7\xb9\xb8\ +\xb7\xb9\xba\xb9\xbb\xbc\xbc\xbd\xba\xba\xbb\xbc\xbb\xbd\xba\xba\ +\xbb\xbc\xbc\xbd\xbb\xba\xbc\xbb\xba\xbc\xbe\xbe\xbf\xbe\xbc\xbf\ +\xba\xb9\xbc\xba\xb9\xbb\xbc\xbb\xbc\xbe\xbd\xbf\xbe\xbd\xbf\xbd\ +\xbc\xbe\xbe\xbd\xbf\xc0\xbf\xc0\xc1\xc1\xc2\xc2\xc1\xc2\xbe\xbe\ +\xbe\xc2\xc2\xc2\xc0\xbf\xc1\xc0\xc0\xc0\x00\x00\x00\xe3\xdd\xdb\ +\xe4\xde\xdc\xe5\xe0\xde\xe4\xdf\xdd\xe2\xdd\xdd\xe3\xde\xdb\xe2\ +\xdd\xda\xe1\xdc\xd9\xe1\xdb\xd8\xde\xd8\xd5\xdb\xd5\xd2\xd7\xd1\ +\xce\xcf\xc9\xc6\xc4\xbd\xba\xb5\xae\xab\x9a\x95\x96\x77\x78\x7b\ +\x55\x5a\x61\x3f\x48\x52\x44\x4c\x55\x62\x63\x68\x81\x7d\x7e\x93\ +\x8d\x8e\x9f\x9a\x9a\xa3\x9e\xa0\xa6\xa3\xa4\xa7\xa5\xa6\xa5\xa3\ +\xa5\xa5\xa4\xa6\xa4\xa3\xa5\x9f\x9f\xa1\x9a\x9b\x9e\x99\x9a\x9e\ +\x95\x96\x9a\x8d\x8e\x91\x81\x85\x86\x6d\x71\x72\x5d\x61\x65\x56\ +\x59\x5d\x59\x5b\x5f\x62\x65\x66\x67\x69\x6c\x70\x73\x76\x78\x7b\ +\x7f\x7e\x82\x87\x80\x85\x8a\x82\x87\x8d\x7f\x85\x8b\x7f\x84\x8a\ +\x7d\x81\x87\x7e\x84\x8a\x7e\x84\x8b\x7d\x81\x86\x7b\x81\x86\x7b\ +\x82\x86\x66\x6f\x75\x47\x52\x59\x1b\x27\x2f\x26\x31\x38\x3b\x41\ +\x49\x38\x3e\x46\x1b\x25\x2c\x0b\x19\x20\x32\x3c\x44\x62\x68\x6f\ +\x71\x76\x7d\x70\x76\x7c\x6e\x74\x79\x6f\x75\x7c\x70\x79\x7f\x6b\ +\x72\x76\x6d\x72\x77\x5e\x64\x68\x36\x3d\x43\x2f\x33\x38\x5f\x5f\ +\x63\x7b\x7c\x7e\x84\x88\x8c\x86\x8b\x8f\x87\x8c\x90\x89\x8d\x92\ +\x89\x8e\x93\x89\x8e\x91\x88\x8d\x92\x8a\x8e\x92\x8d\x92\x96\x8d\ +\x91\x96\x8e\x93\x96\x91\x95\x99\x91\x95\x9a\x95\x99\x9e\x94\x99\ +\x9d\x8a\x8f\x93\x7f\x85\x88\x84\x88\x8c\x94\x98\x9c\x8d\x92\x96\ +\x81\x86\x89\x88\x8b\x8f\x9d\x9f\xa3\x93\x97\x9a\x84\x87\x8a\x83\ +\x86\x88\x96\x98\x99\x98\x9a\x9b\x8b\x8e\x8e\x85\x87\x89\x92\x94\ +\x95\x9c\x9e\x9f\x90\x93\x94\x81\x85\x88\x92\x92\x94\xaa\xa8\xaa\ +\xa8\xa8\xa9\xa4\xa6\xa7\xa6\xa6\xa7\xa6\xa5\xa7\xa9\xa8\xaa\xae\ +\xad\xaf\xaf\xae\xb0\xae\xae\xb0\xb0\xb0\xb2\xaf\xae\xb0\xaf\xae\ +\xb0\xb1\xb0\xb2\xb4\xb3\xb5\xb4\xb3\xb5\xb2\xb1\xb3\xb3\xb2\xb4\ +\xb2\xb1\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb0\xaf\xb1\xb5\xb5\xb7\xb6\ +\xb5\xb7\xb7\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb7\xb7\xb8\xb7\xb6\ +\xb8\xba\xb9\xba\xbc\xbb\xbc\xbd\xbc\xbd\xbb\xba\xbc\xbc\xbb\xbd\ +\xbd\xbc\xbe\xbb\xba\xbc\xbe\xbd\xbf\xbc\xbc\xbd\xba\xb9\xbb\xb9\ +\xb8\xba\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\ +\xc2\xc3\xc2\xc4\xc2\xc2\xc3\xc0\xc0\xc0\xbf\xbf\xc0\xc1\xc0\xc1\ +\xc2\xc2\xc2\xc2\xc2\xc3\x00\x00\x00\xe3\xde\xdb\xe4\xde\xdc\xe4\ +\xdf\xdd\xe4\xdf\xde\xe3\xde\xdc\xe2\xdc\xda\xe2\xdd\xda\xe1\xdc\ +\xd9\xdf\xda\xd9\xdc\xd6\xd5\xd9\xd4\xd2\xd3\xcc\xc9\xcd\xc6\xc3\ +\xbe\xb7\xb4\xac\xa7\xa4\x8b\x89\x8a\x67\x6a\x6e\x48\x4e\x55\x3d\ +\x44\x4e\x4f\x54\x5b\x6d\x6d\x70\x87\x83\x84\x97\x92\x93\x9e\x99\ +\x9a\xa2\x9d\x9e\xa4\xa1\xa3\xa7\xa5\xa5\xa7\xa6\xa8\xa6\xa5\xa7\ +\xa1\xa2\xa4\x9c\x9e\xa1\x9c\x9d\xa1\x96\x98\x9b\x8e\x90\x92\x86\ +\x89\x8a\x7b\x7f\x80\x6c\x70\x72\x56\x5a\x60\x49\x4d\x53\x4c\x4f\ +\x54\x5d\x60\x63\x6b\x6c\x70\x74\x76\x7a\x78\x7b\x7f\x7c\x81\x84\ +\x7f\x84\x88\x7e\x83\x89\x7c\x82\x88\x7d\x83\x8a\x7c\x82\x88\x7d\ +\x82\x88\x7e\x83\x88\x7a\x80\x85\x7c\x82\x87\x77\x80\x84\x5c\x69\ +\x6e\x30\x40\x47\x1d\x2c\x32\x32\x3f\x47\x47\x4e\x57\x27\x31\x39\ +\x0a\x17\x1e\x1b\x26\x2e\x4c\x53\x5e\x69\x6e\x77\x70\x76\x7d\x72\ +\x79\x7e\x6f\x78\x7c\x6b\x74\x7a\x70\x76\x7d\x70\x76\x7b\x65\x6a\ +\x6f\x48\x4f\x55\x27\x30\x37\x22\x27\x2c\x46\x47\x4c\x70\x6f\x73\ +\x83\x86\x8b\x89\x8e\x93\x89\x8d\x92\x88\x8d\x92\x88\x8e\x93\x89\ +\x8e\x91\x8b\x91\x96\x8a\x8e\x93\x8e\x92\x97\x8c\x90\x95\x8f\x93\ +\x98\x91\x95\x9a\x95\x99\x9e\x97\x9b\x9f\x96\x9a\x9e\x94\x97\x9c\ +\x8b\x90\x93\x80\x85\x89\x84\x88\x8c\x90\x95\x98\x8f\x94\x97\x83\ +\x88\x8b\x8a\x8d\x91\x9a\x9d\xa1\x96\x99\x9d\x85\x89\x8b\x80\x84\ +\x85\x92\x94\x95\x9b\x9e\x9e\x8d\x91\x92\x86\x89\x8a\x92\x94\x95\ +\x9e\xa0\xa1\x94\x98\x98\x86\x88\x8a\x8f\x91\x92\xa3\xa2\xa4\xa6\ +\xa5\xa7\xa4\xa3\xa5\xa6\xa7\xa8\xac\xaa\xac\xaa\xa9\xab\xac\xab\ +\xad\xae\xae\xaf\xb1\xb1\xb3\xb2\xb1\xb3\xb1\xb0\xb2\xb1\xb0\xb2\ +\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb0\xaf\xb0\xb2\xb1\xb3\xb2\ +\xb2\xb3\xb2\xb2\xb3\xb3\xb3\xb4\xb2\xb2\xb3\xb3\xb2\xb4\xb6\xb5\ +\xb7\xb9\xb8\xba\xb9\xb8\xba\xb7\xb7\xb8\xb9\xb9\xba\xba\xba\xbc\ +\xb9\xb8\xba\xbd\xbc\xbd\xbc\xbb\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\ +\xbb\xbc\xbe\xbd\xbf\xbd\xbc\xbe\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\ +\xbe\xbf\xbe\xc1\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\xc4\xc2\xc4\ +\xc4\xc1\xc2\xc2\xc1\xc1\xbf\xbd\xbe\xbd\xbc\xbc\xc1\xc1\xc1\xc3\ +\xc3\xc3\x00\x00\x00\xe4\xdf\xdd\xe3\xde\xdd\xe3\xde\xdd\xe2\xdd\ +\xdb\xe3\xdd\xdc\xe2\xdc\xdb\xe2\xdd\xdc\xe0\xdb\xd9\xde\xd9\xd8\ +\xdc\xd7\xd6\xd7\xd2\xd0\xd2\xcb\xc8\xc7\xc1\xbe\xba\xb3\xb0\xa0\ +\x9b\x99\x7d\x7e\x7e\x5b\x60\x65\x41\x49\x50\x43\x49\x51\x5b\x5d\ +\x63\x79\x76\x78\x8e\x89\x89\x99\x94\x95\xa2\x9d\x9e\xa3\x9f\xa1\ +\xa5\xa2\xa2\xa3\xa1\xa3\xa5\xa4\xa6\xa3\xa2\xa4\xa0\xa2\xa2\x9e\ +\xa1\xa1\x99\x9b\x9c\x93\x94\x97\x8b\x8e\x8f\x84\x88\x89\x7a\x7e\ +\x7f\x68\x6d\x6f\x4f\x55\x59\x4a\x4f\x54\x51\x53\x57\x62\x63\x67\ +\x67\x69\x6d\x72\x74\x78\x7b\x7f\x83\x7d\x83\x87\x81\x86\x8b\x7e\ +\x84\x89\x7c\x82\x87\x7b\x80\x85\x7c\x80\x85\x7d\x81\x86\x7d\x81\ +\x86\x7b\x80\x85\x7b\x80\x86\x77\x7e\x82\x60\x6d\x73\x2c\x42\x48\ +\x23\x38\x3f\x40\x4f\x58\x4f\x5b\x63\x2b\x36\x3f\x0a\x17\x20\x2a\ +\x34\x3c\x5d\x62\x6a\x71\x76\x7d\x72\x78\x7f\x70\x76\x7d\x75\x7b\ +\x80\x72\x79\x80\x6d\x74\x7b\x6c\x72\x77\x5c\x63\x68\x33\x3c\x43\ +\x19\x21\x26\x18\x1e\x23\x2b\x30\x35\x5c\x60\x65\x7d\x81\x86\x8a\ +\x8f\x94\x89\x8e\x92\x88\x8e\x93\x8a\x90\x95\x8c\x92\x96\x8a\x8f\ +\x93\x8e\x93\x98\x8c\x91\x96\x8d\x91\x96\x90\x94\x99\x92\x96\x9b\ +\x94\x98\x9d\x95\x99\x9e\x95\x99\x9e\x96\x9a\x9f\x95\x9a\x9e\x8f\ +\x94\x98\x83\x88\x8d\x82\x86\x8b\x93\x97\x9a\x91\x95\x9a\x86\x8a\ +\x8d\x84\x87\x8b\x97\x9a\x9d\x9c\x9f\xa3\x8b\x8e\x91\x81\x84\x85\ +\x91\x93\x94\x9c\x9e\x9f\x91\x95\x96\x89\x8c\x8d\x91\x93\x94\x9e\ +\x9f\xa0\x9a\x9b\x9d\x8d\x8f\x8f\x8a\x8d\x8d\x9b\x9b\x9d\xa6\xa5\ +\xa7\xa7\xa6\xa8\xab\xaa\xac\xa9\xa8\xaa\xab\xaa\xac\xae\xad\xaf\ +\xaf\xae\xaf\xb1\xb0\xb1\xb0\xaf\xb1\xae\xad\xaf\xaf\xae\xb0\xb1\ +\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb6\xb5\ +\xb7\xb6\xb5\xb7\xb1\xb0\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb6\xb5\xb7\ +\xb9\xb8\xba\xb8\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xba\xb9\xbb\xba\ +\xb9\xba\xbd\xbd\xbd\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\ +\xbd\xbd\xbc\xbe\xc0\xbf\xc1\xbe\xbd\xbf\xc0\xbf\xc1\xc0\xbf\xc1\ +\xc0\xbf\xc1\xc3\xc2\xc4\xc4\xc2\xc4\xc1\xbe\xc0\xc1\xbe\xc0\xc3\ +\xc2\xc4\xc2\xc2\xc3\xbc\xbb\xbd\xbf\xbf\xbf\xc2\xc2\xc2\x00\x00\ +\x00\xe4\xdf\xdd\xe3\xde\xdd\xe2\xdd\xdc\xe2\xdd\xdb\xe3\xdc\xdc\ +\xe2\xdd\xdc\xe0\xdb\xda\xdf\xda\xd9\xdd\xd6\xd5\xdb\xd3\xd3\xd6\ +\xce\xcd\xce\xc7\xc5\xc3\xbd\xba\xb0\xa9\xa6\x95\x92\x8e\x72\x73\ +\x74\x53\x58\x5f\x42\x48\x51\x49\x4d\x54\x67\x66\x6b\x82\x7d\x7e\ +\x93\x8e\x8d\x9b\x97\x97\xa3\xa0\xa1\xa5\xa2\xa4\xa7\xa6\xa7\xa4\ +\xa4\xa6\xa3\xa2\xa4\xa1\xa0\xa2\xa1\xa2\xa3\x9b\x9e\x9e\x99\x9b\ +\x9c\x92\x94\x96\x8c\x8f\x90\x86\x8a\x8b\x7b\x7f\x80\x67\x6d\x70\ +\x50\x59\x5d\x43\x48\x4d\x4f\x50\x55\x5b\x5b\x60\x63\x65\x69\x6d\ +\x6f\x73\x7b\x7f\x83\x80\x86\x8a\x7d\x82\x86\x7b\x7f\x84\x7b\x80\ +\x85\x7c\x82\x86\x7e\x82\x87\x7d\x82\x87\x7e\x83\x88\x7c\x81\x86\ +\x7a\x80\x85\x77\x7c\x81\x6a\x73\x79\x48\x5a\x61\x39\x4c\x55\x55\ +\x61\x6b\x63\x6e\x76\x40\x4f\x58\x1a\x2c\x37\x34\x40\x4b\x60\x66\ +\x6f\x6f\x75\x7c\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x74\x7a\x80\ +\x70\x78\x7e\x65\x6c\x73\x51\x59\x5f\x29\x33\x39\x11\x19\x1c\x1c\ +\x23\x28\x2c\x33\x38\x55\x5a\x60\x77\x7c\x80\x88\x8c\x91\x89\x8e\ +\x93\x88\x8d\x91\x8a\x8e\x93\x8b\x8f\x94\x8c\x90\x95\x8c\x90\x95\ +\x8c\x90\x95\x8e\x92\x97\x91\x94\x9a\x90\x94\x99\x90\x94\x99\x94\ +\x98\x9d\x95\x98\x9d\x96\x99\x9e\x96\x9b\x9e\x97\x9b\x9f\x90\x95\ +\x9a\x84\x89\x8c\x87\x8b\x8e\x97\x9b\x9f\x95\x9a\x9d\x88\x8d\x90\ +\x88\x8b\x8f\x96\x98\x9d\x9a\x9d\xa1\x8d\x91\x92\x86\x89\x8a\x90\ +\x92\x93\x9b\x9d\x9e\x94\x97\x97\x85\x88\x89\x8e\x90\x91\xa2\xa2\ +\xa3\xa0\xa2\xa2\x91\x93\x94\x8b\x8d\x8e\x98\x98\x9a\xa9\xa8\xaa\ +\xaa\xa9\xab\xac\xab\xad\xaf\xae\xb0\xad\xad\xae\xac\xac\xad\xad\ +\xad\xae\xb0\xaf\xb1\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xb0\xb2\xb1\xb0\ +\xb2\xb4\xb3\xb5\xb6\xb5\xb7\xb4\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb7\ +\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb8\xb7\xb8\xb8\ +\xb7\xb7\xba\xba\xbb\xb8\xb7\xb8\xb8\xb8\xb8\xba\xb9\xbb\xbc\xbb\ +\xbd\xbd\xbc\xbe\xbb\xba\xbc\xbb\xba\xbc\xbd\xbc\xbe\xbd\xbc\xbe\ +\xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc0\xc2\xbf\xbf\xc1\xc1\xbf\xc1\xc0\ +\xbf\xc1\xc0\xbe\xc0\xbf\xbe\xc0\xc4\xc3\xc5\xc3\xc2\xc2\xc0\xbf\ +\xc1\xc0\xbf\xc1\xc0\xbf\xc1\xbe\xbd\xbf\x00\x00\x00\xe2\xdd\xdb\ +\xe3\xde\xdc\xe3\xde\xdb\xe2\xdd\xdb\xe2\xdd\xdc\xe2\xdd\xdc\xe0\ +\xda\xd9\xdf\xda\xd8\xdc\xd6\xd6\xd8\xd2\xd1\xd2\xcc\xcb\xcc\xc5\ +\xc4\xbe\xb8\xb5\xa7\xa1\x9d\x88\x85\x83\x67\x6a\x6c\x4a\x50\x58\ +\x42\x48\x51\x54\x55\x5c\x72\x6f\x72\x89\x84\x84\x96\x92\x91\xa0\ +\x9b\x9c\xa3\x9f\x9f\xa5\xa3\xa4\xa5\xa4\xa6\xa4\xa3\xa5\xa3\xa2\ +\xa4\xa2\xa2\xa3\x9d\x9f\xa0\x98\x9a\x9b\x96\x98\x99\x91\x93\x95\ +\x8a\x8d\x8f\x84\x88\x89\x7a\x7e\x7f\x64\x6b\x6e\x49\x53\x57\x31\ +\x37\x3c\x4d\x4e\x53\x57\x58\x5d\x62\x63\x68\x6a\x6b\x6f\x79\x7c\ +\x80\x7e\x84\x86\x7e\x83\x86\x7c\x81\x85\x7c\x80\x84\x7b\x80\x84\ +\x7b\x7f\x84\x7c\x80\x85\x7d\x80\x85\x7c\x82\x87\x7a\x80\x85\x7b\ +\x81\x86\x6d\x77\x7b\x62\x6c\x74\x5e\x69\x72\x67\x70\x78\x6e\x76\ +\x7e\x59\x65\x6e\x41\x53\x5f\x4d\x5b\x66\x66\x6e\x76\x71\x77\x7d\ +\x6f\x75\x7c\x71\x77\x7e\x70\x76\x7d\x71\x77\x7e\x73\x7b\x80\x64\ +\x6c\x73\x3b\x45\x4c\x1a\x22\x27\x15\x1d\x21\x23\x2b\x2f\x46\x4d\ +\x53\x6f\x73\x79\x7e\x82\x87\x86\x8a\x8f\x89\x8d\x92\x89\x8d\x92\ +\x8b\x8f\x94\x8b\x8f\x93\x8c\x90\x95\x8c\x90\x95\x8e\x92\x97\x8e\ +\x92\x97\x90\x94\x98\x8f\x93\x98\x91\x95\x9a\x94\x97\x9b\x96\x9a\ +\x9f\x97\x9b\x9f\x99\x9c\xa0\x98\x9c\xa1\x9b\x9e\xa4\x93\x98\x9c\ +\x85\x8a\x8e\x86\x8a\x8e\x96\x99\x9d\x99\x9c\xa0\x8d\x90\x94\x85\ +\x88\x8c\x93\x96\x98\x9d\xa0\xa2\x94\x98\x99\x87\x8b\x8c\x8e\x90\ +\x91\x9c\x9f\x9f\x99\x9c\x9c\x8b\x8d\x8d\x8f\x90\x91\x9e\x9e\x9e\ +\xa5\xa5\xa5\x96\x97\x99\x89\x8c\x8d\x94\x95\x96\xa8\xa8\xa9\xaf\ +\xaf\xaf\xad\xad\xae\xae\xae\xaf\xae\xae\xaf\xad\xad\xad\xaf\xaf\ +\xb0\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xb2\xb1\xb3\ +\xb5\xb5\xb6\xb6\xb5\xb7\xb7\xb7\xb8\xb6\xb6\xb7\xb2\xb2\xb3\xb0\ +\xaf\xb2\xb4\xb3\xb5\xb7\xb6\xb7\xb7\xb6\xb8\xb5\xb5\xb7\xb8\xb8\ +\xb8\xb8\xb7\xb9\xbb\xbb\xbb\xbd\xbc\xbe\xbd\xbc\xbe\xbd\xbd\xbd\ +\xbc\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\xbb\xba\xbc\xbc\xbb\xbd\xbf\ +\xbe\xc0\xc0\xbf\xc1\xbf\xbe\xc0\xc1\xbf\xc1\xc1\xbf\xc1\xc1\xbe\ +\xc0\xc5\xc2\xc4\xc4\xc2\xc4\xc2\xc1\xc2\xc2\xc1\xc1\xc1\xc0\xc2\ +\xc1\xc0\xc2\xc2\xc1\xc2\x00\x00\x00\xe4\xdf\xdb\xe4\xdf\xdc\xe4\ +\xdf\xdd\xe2\xdd\xdb\xe1\xdc\xda\xe0\xdb\xda\xe0\xda\xda\xde\xd9\ +\xd8\xdb\xd5\xd5\xd7\xcf\xcf\xd1\xca\xca\xc6\xbf\xbe\xb7\xb0\xac\ +\x9e\x98\x95\x7a\x79\x77\x5a\x5d\x61\x45\x4c\x54\x44\x4b\x53\x5e\ +\x5e\x63\x7b\x76\x79\x8e\x89\x88\x9b\x97\x96\xa0\x9d\x9d\xa3\xa1\ +\xa1\xa4\xa2\xa2\xa3\xa2\xa3\xa5\xa4\xa6\xa2\xa1\xa3\x9f\xa0\xa2\ +\x9a\x9c\x9d\x99\x9b\x9c\x97\x99\x9a\x92\x95\x97\x8b\x8f\x91\x86\ +\x8a\x8b\x7a\x7e\x80\x65\x6c\x6f\x43\x4d\x52\x2c\x32\x37\x3b\x3f\ +\x43\x50\x51\x57\x5e\x60\x65\x68\x6a\x6e\x73\x76\x7a\x7c\x81\x84\ +\x7b\x80\x83\x7a\x80\x84\x79\x7e\x83\x7a\x7f\x83\x7b\x7f\x83\x7c\ +\x80\x85\x7c\x80\x85\x7b\x80\x85\x7a\x81\x86\x7c\x82\x87\x78\x7e\ +\x83\x72\x7a\x80\x72\x79\x80\x74\x7b\x82\x78\x80\x87\x70\x77\x7e\ +\x61\x6d\x75\x62\x6d\x74\x6b\x72\x79\x70\x77\x7d\x6f\x76\x7b\x6f\ +\x75\x7a\x73\x79\x7f\x6f\x76\x7d\x73\x79\x80\x6a\x71\x79\x43\x4e\ +\x56\x19\x21\x27\x16\x1f\x24\x22\x29\x2d\x53\x5a\x5e\x76\x7a\x7e\ +\x87\x8b\x8f\x88\x8c\x91\x88\x8c\x91\x8a\x8e\x93\x8c\x90\x95\x8b\ +\x90\x94\x8a\x8e\x93\x8b\x8f\x94\x8f\x93\x98\x92\x96\x9b\x90\x94\ +\x9a\x8f\x92\x97\x92\x96\x99\x92\x96\x9a\x96\x99\x9e\x9a\x9c\xa1\ +\x9b\x9d\xa1\x98\x9b\xa0\x9a\x9d\xa2\x9e\xa1\xa5\x97\x9b\xa0\x89\ +\x8e\x93\x85\x8a\x8f\x92\x95\x9a\x98\x9b\x9f\x8b\x90\x92\x83\x87\ +\x89\x92\x95\x96\xa0\xa3\xa4\x96\x99\x9a\x8b\x8e\x8f\x90\x93\x93\ +\xa0\xa1\xa1\x9e\xa0\xa0\x8e\x90\x91\x8a\x8c\x8d\x9c\x9d\x9d\xa3\ +\xa3\xa3\x9d\x9f\x9f\x8c\x8f\x90\x91\x93\x94\xa6\xa6\xa6\xac\xab\ +\xac\xad\xad\xad\xae\xae\xae\xae\xae\xae\xae\xae\xaf\xb1\xb0\xb2\ +\xb2\xb0\xb2\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xaf\xb0\xb3\xb3\xb3\xb3\ +\xb3\xb3\xb4\xb3\xb5\xb6\xb6\xb8\xb4\xb4\xb6\xb4\xb4\xb6\xb5\xb4\ +\xb6\xb5\xb4\xb6\xb5\xb4\xb6\xb6\xb5\xb7\xba\xb9\xba\xbc\xbb\xbc\ +\xbc\xbc\xbc\xbc\xbc\xbd\xbe\xbd\xbf\xbc\xbc\xbd\xbb\xbb\xbc\xba\ +\xb9\xbb\xbe\xbd\xbf\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xbf\xbe\ +\xc0\xbf\xbe\xc0\xc1\xc1\xc2\xc0\xbe\xc0\xc0\xbd\xbf\xc4\xc1\xc3\ +\xc2\xc0\xc2\xc1\xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xc2\xc1\xc3\xc1\ +\xbf\xc1\x00\x00\x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe2\xdd\ +\xda\xe1\xdc\xda\xe0\xdb\xda\xdf\xda\xd9\xdc\xd7\xd6\xd8\xd2\xd2\ +\xd5\xcd\xcd\xcd\xc5\xc4\xc1\xbb\xb8\xb1\xab\xa6\x91\x8d\x88\x6e\ +\x6e\x6f\x53\x57\x5c\x41\x48\x50\x4f\x53\x5a\x6a\x69\x6c\x82\x7e\ +\x7f\x93\x8f\x8e\x9d\x99\x99\xa2\x9f\x9e\xa2\xa0\xa0\xa4\xa2\xa2\ +\xa4\xa3\xa5\xa2\xa1\xa3\xa1\xa0\xa2\xa0\x9f\xa1\x9c\x9d\x9e\x98\ +\x9a\x9c\x96\x98\x9a\x92\x95\x98\x8c\x90\x93\x88\x8b\x8f\x7b\x7e\ +\x82\x67\x6d\x71\x40\x49\x50\x28\x2f\x33\x28\x2e\x32\x35\x38\x3e\ +\x53\x55\x5a\x64\x66\x6b\x6f\x72\x76\x7a\x7e\x82\x7b\x80\x83\x7a\ +\x80\x84\x79\x7f\x83\x7a\x7f\x83\x7a\x7f\x84\x7a\x7f\x84\x7a\x7f\ +\x84\x7b\x80\x85\x7b\x82\x87\x7d\x83\x89\x7c\x82\x87\x78\x80\x85\ +\x78\x80\x87\x79\x80\x86\x78\x7f\x87\x76\x7d\x84\x74\x7b\x82\x6e\ +\x75\x7c\x6d\x74\x7a\x71\x77\x7d\x71\x77\x7e\x71\x76\x7d\x73\x79\ +\x80\x74\x7a\x80\x6b\x72\x78\x5b\x62\x69\x42\x4c\x55\x1f\x28\x31\ +\x21\x2c\x33\x36\x40\x44\x5b\x62\x64\x74\x78\x7c\x83\x87\x8c\x89\ +\x8d\x92\x89\x8d\x92\x8b\x8f\x93\x8b\x8f\x93\x8a\x8f\x93\x8b\x90\ +\x94\x8a\x8e\x93\x8f\x93\x97\x91\x95\x9a\x92\x95\x9a\x91\x94\x99\ +\x92\x95\x99\x95\x98\x9c\x97\x9a\x9e\x9a\x9d\xa1\x9b\x9e\xa2\x9a\ +\x9d\xa1\x9e\xa1\xa5\x9f\xa2\xa6\x9f\xa3\xa7\x99\x9d\xa1\x8c\x91\ +\x95\x85\x88\x8d\x90\x93\x97\x97\x9b\x9e\x91\x94\x97\x87\x8a\x8e\ +\x90\x92\x94\x9d\x9f\xa0\x9c\x9f\xa0\x8c\x8f\x90\x8d\x8f\x8f\x9e\ +\x9e\x9e\xa1\xa2\xa2\x93\x95\x95\x88\x8a\x8b\x95\x97\x98\xa4\xa5\ +\xa5\xa2\xa3\xa4\x90\x91\x92\x8e\x8e\x90\x9d\x9c\x9d\xab\xab\xab\ +\xb0\xb0\xb0\xaf\xaf\xaf\xad\xad\xad\xae\xae\xae\xb1\xb0\xb1\xb1\ +\xb0\xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb0\xaf\xb0\xb1\xb0\xb2\xb4\xb3\ +\xb5\xb6\xb6\xb7\xb6\xb5\xb7\xb6\xb5\xb8\xb7\xb6\xb8\xb6\xb5\xb7\ +\xb8\xb7\xb9\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbb\xba\xba\xba\xba\ +\xba\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xbe\xbd\ +\xbf\xbc\xbb\xbd\xba\xb9\xba\xbd\xbc\xbe\xbe\xbd\xbf\xbf\xbe\xc0\ +\xc3\xc3\xc4\xc2\xc1\xc2\xc1\xbf\xc1\xc2\xc1\xc3\xc2\xc1\xc3\xc0\ +\xbf\xc0\xc2\xc1\xc3\xc3\xc2\xc4\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ +\x00\xe3\xde\xdb\xe2\xdd\xda\xe2\xdd\xdb\xe1\xdc\xdb\xe0\xdc\xda\ +\xe0\xdb\xda\xdd\xd8\xd7\xdb\xd5\xd5\xd7\xcf\xcf\xd2\xcb\xc9\xc8\ +\xc0\xbd\xbb\xb5\xaf\xa6\xa0\x9b\x82\x81\x7e\x64\x69\x6b\x49\x51\ +\x56\x42\x47\x4e\x58\x59\x5e\x75\x73\x74\x8c\x88\x87\x97\x94\x93\ +\x9e\x9a\x9a\xa3\x9f\x9f\xa3\xa0\xa0\xa5\xa3\xa3\xa4\xa3\xa5\xa2\ +\xa1\xa3\x9f\x9e\xa0\x9f\x9f\xa1\x9a\x9b\x9d\x97\x98\x9c\x94\x95\ +\x99\x91\x93\x97\x8b\x8e\x92\x88\x8b\x8f\x7d\x80\x85\x65\x6a\x6f\ +\x4d\x56\x5d\x2d\x37\x3d\x26\x30\x36\x20\x27\x2e\x41\x46\x4c\x5f\ +\x62\x67\x6a\x6d\x72\x76\x7a\x80\x79\x7d\x82\x7c\x80\x85\x7a\x7f\ +\x85\x7a\x7f\x84\x7a\x80\x85\x79\x7f\x84\x78\x7e\x83\x79\x7f\x84\ +\x7c\x82\x87\x7c\x83\x88\x7a\x80\x85\x7a\x80\x86\x78\x80\x85\x78\ +\x80\x87\x79\x81\x87\x79\x80\x87\x7a\x80\x87\x76\x7c\x83\x71\x77\ +\x7d\x6f\x75\x7b\x71\x76\x7c\x72\x78\x7e\x6f\x75\x7c\x73\x79\x7e\ +\x66\x6d\x73\x46\x51\x5a\x26\x32\x3c\x1a\x25\x2d\x23\x2d\x35\x4e\ +\x56\x5d\x6f\x75\x77\x76\x7b\x7e\x7b\x7f\x83\x86\x89\x8e\x8b\x8f\ +\x93\x8b\x90\x94\x8b\x90\x94\x8b\x90\x94\x8a\x90\x93\x8c\x90\x93\ +\x8f\x93\x96\x91\x95\x99\x91\x94\x98\x90\x93\x97\x94\x97\x9b\x98\ +\x9b\x9f\x98\x9b\x9f\x99\x9c\xa0\x9a\x9d\xa2\x9c\x9f\xa3\x9d\xa0\ +\xa4\x9d\xa0\xa4\x9f\xa2\xa6\x9f\xa3\xa6\x9a\x9f\xa2\x8b\x90\x93\ +\x86\x8a\x8e\x8f\x91\x95\x9a\x9d\x9e\x93\x95\x9a\x86\x89\x8d\x8d\ +\x8f\x90\x9d\x9f\x9f\x9d\x9f\xa0\x8f\x92\x93\x8d\x8f\x90\x98\x98\ +\x97\xa0\xa0\xa0\x99\x9b\x9c\x8e\x91\x92\x90\x91\x92\xa2\xa2\xa3\ +\xa4\xa5\xa6\x97\x98\x99\x8d\x8e\x8e\x9a\x9b\x9b\xac\xab\xab\xb1\ +\xb0\xb0\xae\xae\xae\xb0\xb0\xb0\xb1\xb1\xb2\xb0\xaf\xb1\xae\xad\ +\xae\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb3\xb5\ +\xb6\xb5\xb8\xb8\xb7\xb9\xb7\xb8\xb9\xb8\xb8\xba\xb8\xb7\xb9\xb8\ +\xb7\xb9\xba\xb9\xba\xb9\xb9\xb9\xb5\xb5\xb5\xb9\xb9\xb9\xbc\xbc\ +\xbc\xbc\xbb\xbd\xbf\xbe\xbe\xbe\xbd\xbe\xba\xb9\xbb\xbc\xbc\xbd\ +\xbd\xbc\xbd\xbc\xbc\xbd\xbe\xbd\xbf\xbf\xbe\xc0\xc1\xc1\xc2\xc0\ +\xbf\xc1\xc1\xc0\xc1\xc3\xc1\xc3\xc2\xbf\xc1\xc1\xbe\xc0\xc3\xc2\ +\xc4\xc2\xc1\xc3\xc1\xc0\xc2\xc1\xbf\xc1\x00\x00\x00\xe3\xdd\xdb\ +\xe3\xdc\xd9\xe2\xdd\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xdf\xda\xd9\xdc\ +\xd7\xd6\xd9\xd4\xd3\xd6\xd0\xcf\xce\xc7\xc4\xc4\xbc\xb6\xb6\xaf\ +\xa9\x9a\x96\x91\x77\x79\x78\x58\x5f\x63\x43\x4b\x51\x48\x4c\x53\ +\x63\x64\x67\x7e\x7b\x7c\x90\x8d\x8c\x9a\x98\x97\x9f\x9d\x9d\xa3\ +\xa0\xa0\xa2\xa0\xa0\xa5\xa3\xa5\xa3\xa1\xa3\xa2\xa1\xa3\xa1\xa0\ +\xa2\x9d\x9c\x9e\x98\x9a\x9c\x94\x96\x9a\x91\x93\x97\x90\x93\x97\ +\x8e\x91\x95\x88\x8b\x90\x7d\x80\x85\x61\x66\x6b\x4f\x58\x5f\x3b\ +\x46\x4d\x37\x43\x4c\x3b\x46\x50\x40\x4a\x52\x5c\x61\x67\x6b\x6e\ +\x73\x74\x78\x7d\x76\x7a\x7f\x7c\x80\x85\x7b\x7f\x84\x7b\x80\x85\ +\x7a\x80\x85\x79\x7f\x84\x79\x7f\x84\x79\x7f\x84\x7b\x81\x86\x7a\ +\x82\x86\x7a\x82\x86\x7b\x82\x88\x78\x80\x85\x79\x81\x87\x79\x81\ +\x86\x79\x81\x87\x7b\x82\x89\x7b\x82\x88\x76\x7e\x83\x71\x78\x7d\ +\x70\x75\x7a\x71\x77\x7c\x6d\x73\x79\x6d\x73\x79\x67\x6d\x73\x4b\ +\x57\x60\x1a\x28\x33\x19\x25\x30\x27\x33\x3e\x56\x5e\x66\x72\x77\ +\x7c\x7d\x81\x84\x79\x7d\x81\x7b\x80\x84\x86\x8a\x8e\x8d\x91\x95\ +\x8b\x90\x93\x8a\x8f\x93\x8b\x8f\x93\x8d\x91\x96\x8e\x92\x96\x8f\ +\x93\x97\x91\x94\x98\x91\x94\x99\x94\x98\x9c\x97\x9a\x9e\x97\x9a\ +\x9f\x97\x9a\x9f\x98\x9b\xa0\x9c\x9f\xa4\x9d\xa0\xa4\x9c\x9f\xa3\ +\x9b\x9e\xa2\x9c\xa0\xa4\x9d\xa0\xa4\x99\x9e\xa1\x91\x95\x99\x87\ +\x8b\x8e\x8c\x8e\x91\x99\x9b\x9d\x96\x99\x9c\x8a\x8d\x8e\x8d\x8f\ +\x90\x9b\x9c\x9d\xa1\xa2\xa2\x94\x96\x96\x8b\x8d\x8e\x95\x96\x96\ +\xa3\xa4\xa5\xa1\xa3\xa4\x91\x94\x95\x8f\x91\x92\x9f\x9f\xa0\xab\ +\xab\xab\x9f\xa0\xa1\x93\x93\x94\x98\x97\x98\xa6\xa5\xa6\xaf\xae\ +\xae\xb0\xb0\xb0\xb0\xb0\xaf\xb0\xb0\xaf\xad\xad\xad\xb0\xb0\xb0\ +\xb2\xb2\xb2\xb0\xaf\xb0\xb1\xb0\xb3\xb2\xb1\xb3\xb4\xb3\xb5\xb7\ +\xb5\xb7\xb8\xb8\xba\xba\xba\xbc\xb8\xb8\xb9\xb8\xb7\xb9\xba\xb9\ +\xba\xb7\xb6\xb7\xb7\xb7\xb7\xba\xba\xba\xba\xba\xba\xba\xba\xbb\ +\xbd\xbd\xbc\xbd\xbc\xbe\xba\xb9\xbb\xbc\xbc\xbd\xbd\xbc\xbd\xbd\ +\xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbd\xbc\xbe\xbe\xbd\xbf\xc2\xc1\ +\xc3\xc1\xc0\xc2\xc0\xbe\xc0\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc2\xc4\ +\xc3\xc1\xc3\xc0\xbe\xc0\x00\x00\x00\xe3\xdb\xdb\xe3\xdd\xda\xe1\ +\xdc\xd9\xe1\xdc\xd9\xe0\xdb\xd9\xde\xd9\xd7\xdb\xd6\xd5\xd8\xd2\ +\xd1\xd3\xcd\xcb\xcb\xc4\xbf\xc0\xb8\xb2\xae\xa8\xa2\x8d\x8a\x88\ +\x6e\x70\x71\x50\x56\x5c\x41\x48\x4f\x50\x54\x59\x6d\x6c\x6f\x86\ +\x81\x82\x94\x91\x91\x9c\x9a\x9a\xa1\x9f\x9f\xa4\xa3\xa2\xa3\xa0\ +\xa1\xa4\xa3\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9f\x9e\xa0\x9b\x9a\x9c\ +\x98\x99\x9b\x94\x96\x99\x92\x94\x98\x8f\x92\x96\x8e\x91\x95\x87\ +\x8b\x8f\x79\x7d\x81\x60\x66\x6b\x4d\x56\x5d\x4b\x53\x5c\x4f\x58\ +\x5f\x5c\x64\x6a\x57\x60\x66\x65\x69\x6e\x6b\x6f\x74\x73\x77\x7c\ +\x75\x79\x7e\x79\x7d\x82\x7c\x80\x85\x7a\x7e\x83\x79\x7e\x83\x78\ +\x7e\x83\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x7a\x7f\x84\x7c\x84\ +\x88\x7a\x83\x89\x79\x82\x86\x78\x80\x86\x78\x7f\x85\x79\x80\x86\ +\x7c\x82\x8a\x7d\x84\x8a\x7a\x82\x88\x75\x7c\x81\x6f\x75\x7a\x6e\ +\x74\x79\x6f\x75\x7a\x6e\x74\x79\x66\x6c\x73\x59\x63\x6c\x30\x3e\ +\x49\x28\x36\x42\x47\x51\x5c\x64\x6b\x71\x73\x77\x7c\x7d\x81\x85\ +\x7d\x82\x85\x79\x7e\x81\x7d\x82\x85\x88\x8c\x8f\x8c\x90\x94\x8c\ +\x90\x94\x8d\x91\x95\x8f\x93\x97\x92\x95\x9a\x8f\x93\x98\x91\x94\ +\x99\x94\x97\x9c\x95\x98\x9d\x96\x9a\x9e\x99\x9c\xa0\x97\x9a\x9f\ +\x98\x9b\xa0\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\x9b\x9e\xa2\x9c\ +\x9f\xa3\x9e\xa1\xa5\xa0\xa4\xa7\x9d\xa2\xa5\x95\x9a\x9d\x89\x8d\ +\x90\x8c\x8e\x92\x98\x9a\x9d\x9a\x9c\x9d\x90\x92\x94\x8c\x8e\x90\ +\x99\x9a\x9a\xa4\xa3\xa5\x9c\x9e\x9f\x8e\x90\x91\x94\x95\x96\xa2\ +\xa4\xa5\xa3\xa6\xa6\x94\x97\x98\x8e\x8f\x90\x9c\x9b\x9c\xa9\xa8\ +\xaa\xa6\xa6\xa8\x98\x98\x9a\x94\x93\x95\xa1\xa0\xa1\xaf\xad\xad\ +\xb1\xb0\xb0\xaf\xaf\xaf\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\xb0\ +\xb0\xb0\xb1\xb0\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb4\xb3\xb5\xb7\xb6\ +\xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xb9\xbc\xb8\xb7\xb9\ +\xb8\xb8\xb8\xb8\xb8\xb8\xb7\xb7\xb7\xbc\xbb\xbc\xbd\xbd\xbe\xbd\ +\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbf\ +\xc1\xbf\xbe\xc0\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc2\ +\xc0\xbf\xc1\xc2\xc1\xc3\xc5\xc4\xc6\xc6\xc4\xc6\xc3\xc1\xc3\xc0\ +\xbe\xc0\x00\x00\x00\xe2\xdb\xda\xe2\xdc\xda\xe1\xdb\xd8\xe0\xdb\ +\xd8\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\xcf\xce\xd0\xc9\xc6\ +\xc6\xbf\xba\xba\xb3\xad\xa2\x9d\x99\x7e\x7e\x7e\x62\x64\x67\x48\ +\x4f\x55\x43\x4a\x50\x57\x5a\x5e\x77\x75\x76\x8a\x86\x85\x96\x92\ +\x91\x9e\x9a\x9a\xa2\x9f\xa0\xa5\xa3\xa4\xa4\xa2\xa3\xa3\xa2\xa4\ +\xa0\xa0\xa1\x9e\x9d\x9f\x9d\x9b\x9d\x99\x99\x9b\x98\x99\x9b\x93\ +\x94\x99\x92\x94\x98\x90\x93\x97\x8e\x91\x96\x86\x89\x8d\x75\x7a\ +\x7e\x5d\x64\x68\x46\x50\x55\x50\x58\x5e\x5e\x64\x68\x6d\x72\x75\ +\x68\x6d\x71\x6f\x71\x76\x70\x74\x78\x6f\x73\x78\x73\x77\x7b\x76\ +\x7a\x7f\x79\x7e\x82\x78\x7c\x81\x78\x7e\x83\x78\x7e\x83\x78\x7e\ +\x83\x79\x7f\x84\x79\x7f\x84\x78\x7e\x83\x7b\x83\x88\x79\x83\x87\ +\x7a\x83\x88\x78\x81\x85\x78\x80\x86\x7a\x81\x87\x7b\x82\x89\x7d\ +\x83\x89\x7c\x83\x89\x79\x80\x86\x71\x77\x7c\x6f\x75\x79\x70\x76\ +\x7b\x73\x77\x7c\x6c\x72\x78\x5d\x66\x6d\x4b\x55\x5f\x32\x3d\x4a\ +\x50\x58\x61\x71\x76\x79\x7a\x7f\x82\x79\x7e\x81\x7e\x82\x85\x7f\ +\x83\x87\x7b\x7f\x83\x7d\x82\x85\x87\x8b\x8f\x8d\x90\x94\x8f\x92\ +\x96\x91\x95\x99\x94\x98\x9d\x93\x96\x9b\x91\x94\x99\x94\x96\x9b\ +\x95\x98\x9d\x97\x9a\x9f\x98\x9b\x9f\x96\x9a\x9e\x99\x9c\xa0\x9e\ +\xa0\xa5\x9d\xa0\xa5\x9d\xa0\xa4\x9e\xa1\xa5\x9b\x9e\xa2\x9d\xa0\ +\xa4\xa0\xa3\xa7\xa0\xa4\xa8\xa0\xa4\xa5\x98\x9c\x9e\x8d\x90\x94\ +\x88\x8b\x8e\x94\x96\x97\x9f\xa1\xa2\x96\x98\x99\x8f\x91\x92\x96\ +\x97\x98\xa5\xa6\xa7\x9f\xa1\xa2\x92\x95\x96\x90\x92\x93\x9a\x9c\ +\x9c\xa2\xa4\xa4\x9c\x9e\x9f\x8f\x90\x91\x94\x93\x94\xa5\xa5\xa7\ +\xaa\xaa\xac\x9c\x9b\x9d\x93\x91\x93\x9b\x99\x9a\xaa\xa9\xa9\xb2\ +\xb0\xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb2\xb2\xb3\xb0\xb0\ +\xb1\xb2\xb1\xb2\xb1\xb0\xb2\xb3\xb2\xb4\xb5\xb4\xb6\xb3\xb2\xb4\ +\xb4\xb3\xb5\xb9\xb9\xba\xba\xb9\xbb\xb9\xb9\xb9\xb8\xb8\xb8\xb9\ +\xb9\xb9\xb9\xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbf\xbf\xbe\xc0\xbe\xbd\ +\xbf\xbc\xbb\xbd\xbd\xbc\xbd\xbd\xbd\xbd\xbe\xbd\xbf\xc1\xc0\xc2\ +\xc1\xc0\xc1\xbf\xbe\xc0\xc0\xbf\xc1\xc3\xc2\xc4\xc2\xc1\xc3\xc0\ +\xbf\xc1\xc1\xc0\xc2\xc2\xc1\xc3\xbf\xbd\xbf\xbf\xbe\xc0\x00\x00\ +\x00\xe1\xdc\xdb\xe1\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xde\xd9\xd8\ +\xdb\xd6\xd5\xd8\xd2\xd2\xd6\xce\xcd\xcd\xc6\xc3\xc3\xbc\xb9\xb4\ +\xae\xac\x96\x91\x90\x73\x75\x76\x56\x5b\x5f\x42\x49\x4e\x4a\x50\ +\x56\x63\x65\x68\x80\x7d\x7e\x90\x8c\x8d\x9a\x97\x97\x9f\x9c\x9d\ +\xa2\x9f\xa0\xa4\xa1\xa3\xa3\xa2\xa3\xa1\xa0\xa2\x9f\x9e\xa0\x9d\ +\x9d\x9f\x9c\x9c\x9e\x98\x99\x9a\x96\x97\x98\x93\x94\x98\x91\x93\ +\x97\x8d\x90\x94\x8d\x90\x94\x84\x88\x8c\x73\x78\x7c\x5c\x63\x68\ +\x48\x51\x55\x53\x5a\x5f\x63\x68\x6c\x71\x75\x79\x76\x79\x7d\x6f\ +\x73\x78\x72\x76\x7b\x6e\x71\x76\x72\x75\x79\x73\x77\x7c\x74\x78\ +\x7d\x79\x7d\x82\x7a\x7e\x82\x78\x7d\x82\x76\x7c\x81\x77\x7d\x82\ +\x77\x7d\x81\x77\x7d\x82\x7b\x83\x88\x7a\x81\x86\x7b\x82\x88\x79\ +\x80\x86\x7a\x81\x88\x7c\x82\x89\x7b\x82\x88\x7c\x82\x88\x7d\x82\ +\x89\x7b\x81\x87\x79\x7f\x84\x73\x7a\x7e\x70\x76\x7c\x72\x76\x7b\ +\x74\x79\x7e\x68\x6f\x75\x57\x61\x68\x49\x52\x5b\x52\x5a\x62\x70\ +\x74\x78\x7f\x84\x87\x7c\x80\x84\x7a\x7f\x82\x7e\x82\x86\x7f\x83\ +\x87\x7b\x81\x83\x80\x84\x87\x8b\x8e\x92\x90\x93\x98\x91\x94\x99\ +\x93\x96\x9b\x95\x98\x9d\x93\x96\x9b\x91\x94\x99\x95\x99\x9e\x97\ +\x9a\x9f\x97\x9b\xa0\x96\x9b\x9f\x99\x9d\xa1\x9d\xa0\xa5\x9d\xa0\ +\xa5\x9d\xa0\xa4\x9d\xa0\xa4\x9c\x9f\xa3\x9d\xa0\xa4\x9e\xa0\xa4\ +\xa2\xa5\xa9\xa3\xa6\xa9\xa1\xa4\xa7\x98\x9c\xa0\x8c\x90\x93\x88\ +\x8b\x8d\x96\x98\x9a\xa1\xa2\xa4\x99\x9c\x9e\x8c\x8e\x91\x92\x93\ +\x95\xa3\xa3\xa4\xa5\xa7\xa8\x96\x99\x9a\x8b\x8d\x8d\x95\x96\x96\ +\xa5\xa5\xa5\xa1\xa3\xa3\x92\x92\x93\x93\x91\x94\xa1\xa0\xa2\xaa\ +\xa9\xaa\xa2\xa1\xa2\x93\x93\x94\x93\x93\x93\xa5\xa3\xa3\xb2\xb0\ +\xb0\xb2\xb2\xb2\xb1\xb0\xb0\xb3\xb3\xb4\xb3\xb2\xb3\xb3\xb2\xb4\ +\xb3\xb2\xb3\xb4\xb3\xb6\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb6\ +\xb5\xb6\xb8\xb8\xb9\xba\xb9\xba\xbb\xbb\xbc\xbb\xbb\xbb\xba\xba\ +\xba\xba\xba\xba\xbd\xbd\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xbe\xbd\xbe\ +\xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbd\xbe\xbe\xbe\xbf\xc1\xc0\xc2\xc1\ +\xc0\xc2\xc0\xbf\xc1\xc1\xc0\xc1\xc1\xc0\xc2\xbf\xbe\xc0\xc0\xbf\ +\xc1\xbf\xbe\xc0\xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\ +\xe0\xdb\xda\xe0\xdb\xd9\xdf\xda\xd9\xdc\xd7\xd6\xda\xd4\xd3\xd7\ +\xd0\xce\xd1\xcb\xc8\xcb\xc5\xc2\xc0\xb9\xb8\xaa\xa4\xa3\x8c\x8a\ +\x8a\x68\x6c\x6e\x4c\x52\x55\x43\x49\x50\x54\x58\x5d\x71\x70\x74\ +\x88\x83\x85\x95\x91\x92\x9d\x9a\x9c\xa2\x9f\xa1\xa3\xa0\xa2\xa4\ +\xa1\xa3\xa3\xa2\xa4\xa1\xa0\xa2\x9f\x9e\xa0\x9a\x99\x9b\x9b\x9a\ +\x9c\x97\x98\x99\x94\x96\x97\x93\x94\x97\x8e\x90\x93\x8c\x8f\x93\ +\x8a\x8d\x91\x81\x84\x88\x6e\x73\x78\x57\x5f\x63\x4d\x56\x5a\x58\ +\x60\x65\x66\x6c\x70\x71\x75\x79\x76\x79\x7d\x71\x76\x7a\x71\x75\ +\x79\x73\x76\x7a\x6e\x72\x76\x71\x74\x7a\x72\x76\x7b\x79\x7d\x81\ +\x79\x7e\x82\x77\x7d\x81\x77\x7d\x82\x77\x7e\x82\x75\x7b\x80\x7a\ +\x80\x85\x79\x7f\x84\x7b\x81\x86\x7c\x83\x89\x79\x80\x85\x7b\x81\ +\x86\x7c\x82\x87\x7b\x81\x87\x7d\x83\x89\x7d\x84\x8a\x7d\x84\x8b\ +\x7e\x84\x89\x7a\x81\x86\x74\x7b\x7f\x71\x76\x7b\x75\x79\x7e\x76\ +\x7a\x7f\x65\x6c\x72\x5b\x63\x69\x64\x6b\x70\x72\x77\x7b\x7b\x80\ +\x84\x7e\x83\x87\x7b\x80\x83\x79\x7e\x81\x7f\x82\x86\x80\x85\x88\ +\x7d\x83\x86\x80\x83\x88\x8b\x8e\x93\x92\x95\x99\x91\x94\x99\x94\ +\x97\x9c\x92\x96\x9c\x91\x95\x9b\x94\x98\x9d\x97\x9b\xa0\x98\x9c\ +\xa1\x99\x9d\xa1\x98\x9c\xa0\x9b\x9e\xa3\x9f\xa2\xa6\x9c\x9f\xa4\ +\x9b\x9e\xa2\x9b\x9e\xa2\x9d\xa0\xa4\x9d\xa0\xa4\xa1\xa4\xa8\xa0\ +\xa3\xa7\xa1\xa5\xa8\x9f\xa3\xa7\x9c\x9f\xa3\x92\x96\x99\x8a\x8d\ +\x90\x94\x94\x97\xa4\xa4\xa6\x9f\xa0\xa2\x90\x92\x94\x91\x91\x93\ +\xa2\xa3\xa4\xa9\xab\xac\x9b\x9d\x9d\x8f\x91\x91\x93\x93\x94\xa6\ +\xa5\xa6\xaa\xaa\xaa\x9c\x9d\x9e\x91\x92\x94\x99\x98\x9a\xac\xa9\ +\xaa\xa9\xa8\xa8\x99\x9a\x9a\x95\x95\x95\xa4\xa3\xa3\xb2\xb2\xb2\ +\xb6\xb5\xb5\xb2\xb2\xb3\xb4\xb3\xb4\xb6\xb5\xb6\xb5\xb5\xb6\xb6\ +\xb5\xb7\xb4\xb3\xb5\xb3\xb2\xb4\xb5\xb4\xb6\xb2\xb1\xb3\xb5\xb4\ +\xb6\xbb\xba\xbb\xbc\xbb\xbc\xba\xba\xba\xbb\xbb\xbb\xba\xba\xba\ +\xba\xb9\xbb\xbe\xbd\xbf\xc1\xbf\xc1\xc0\xbf\xc1\xbd\xbc\xbe\xbc\ +\xbb\xbd\xbe\xbc\xbe\xc1\xbf\xc1\xc1\xc0\xc2\xc0\xbf\xc1\xc0\xbf\ +\xc1\xc1\xc0\xc2\xc0\xbf\xc2\xc2\xc0\xc2\xc1\xc0\xc2\xc0\xbf\xc1\ +\xc1\xc0\xc2\xc2\xc1\xc3\x00\x00\x00\xe1\xdb\xda\xe1\xdc\xdb\xe0\ +\xdb\xda\xde\xd9\xd8\xdc\xd6\xd5\xd9\xd3\xd0\xd5\xce\xcb\xce\xc7\ +\xc3\xc6\xbf\xbd\xba\xb4\xb4\xa0\x9a\x9b\x7f\x80\x80\x5d\x63\x63\ +\x48\x4f\x52\x49\x4e\x54\x5d\x5e\x64\x7a\x76\x7a\x8e\x89\x8b\x98\ +\x94\x96\x9d\x9b\x9c\xa1\x9f\xa0\xa5\xa2\xa4\xa3\xa0\xa2\xa4\xa2\ +\xa3\x9f\x9d\x9f\x9d\x9c\x9e\x9b\x9a\x9c\x98\x97\x99\x97\x98\x9a\ +\x91\x93\x97\x90\x93\x96\x8e\x90\x94\x8b\x8e\x92\x88\x8c\x8f\x80\ +\x83\x87\x6c\x71\x75\x55\x5d\x61\x4e\x57\x5c\x5d\x64\x69\x69\x6d\ +\x72\x75\x79\x7d\x70\x73\x78\x75\x78\x7d\x6e\x72\x77\x71\x74\x79\ +\x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x75\x79\x7e\x77\x7c\x81\x78\ +\x7d\x82\x76\x7b\x80\x76\x7c\x81\x78\x7e\x83\x7c\x82\x87\x79\x7f\ +\x84\x7a\x81\x86\x7c\x83\x88\x7a\x82\x87\x7b\x81\x86\x7b\x81\x86\ +\x7c\x82\x88\x7c\x82\x89\x7c\x83\x88\x7e\x85\x8a\x7e\x84\x8a\x7e\ +\x85\x8a\x79\x7f\x84\x71\x77\x7c\x74\x78\x7d\x73\x78\x7d\x69\x6f\ +\x74\x60\x68\x6d\x6e\x74\x79\x7c\x80\x85\x7b\x7f\x83\x7b\x7f\x84\ +\x7f\x84\x87\x7c\x81\x84\x7b\x7f\x83\x81\x86\x89\x83\x88\x8b\x7e\ +\x83\x86\x80\x83\x87\x8c\x8f\x93\x91\x94\x98\x94\x97\x9c\x94\x98\ +\x9d\x95\x99\x9f\x96\x9a\x9f\x96\x9a\x9f\x97\x9b\xa0\x99\x9c\xa1\ +\x9b\x9e\xa3\x9d\xa0\xa5\x9d\xa0\xa5\x9e\xa1\xa6\x9c\x9f\xa4\x9e\ +\xa1\xa5\x9f\xa2\xa6\xa0\xa3\xa7\xa0\xa3\xa7\x9f\xa2\xa6\xa0\xa4\ +\xa7\xa1\xa3\xa7\xa3\xa5\xa9\xa3\xa5\xa8\x9a\x9a\x9f\x8f\x8f\x93\ +\x90\x91\x93\xa4\xa4\xa6\xa5\xa7\xa8\x96\x98\x9a\x90\x93\x94\x9d\ +\x9f\xa0\xa9\xaa\xaa\xa3\xa3\xa4\x8f\x90\x91\x93\x93\x95\xa4\xa4\ +\xa5\xab\xab\xac\x9f\xa0\xa2\x8e\x90\x91\x94\x93\x94\xa6\xa5\xa5\ +\xae\xad\xad\xa5\xa5\xa5\x95\x95\x95\x99\x98\x98\xad\xab\xab\xb7\ +\xb5\xb7\xb5\xb4\xb5\xb4\xb4\xb4\xb7\xb7\xb7\xb5\xb5\xb6\xb4\xb4\ +\xb5\xb4\xb3\xb5\xb6\xb5\xb7\xb7\xb6\xb8\xb8\xb8\xba\xbb\xba\xbb\ +\xb8\xb8\xb8\xba\xba\xba\xbd\xbd\xbd\xbc\xbb\xbb\xba\xba\xba\xbd\ +\xbc\xbe\xc0\xbf\xc1\xc1\xc0\xc1\xbd\xbc\xbe\xbc\xbb\xbd\xbe\xbe\ +\xbf\xc1\xc0\xc1\xc1\xbf\xc0\xbf\xbe\xc0\xc1\xc0\xc2\xc1\xc0\xc1\ +\xc1\xc0\xc1\xbf\xbe\xc0\xc2\xbf\xc1\xc3\xc2\xc4\xc4\xc3\xc5\xc0\ +\xc0\xc2\x00\x00\x00\xdf\xdb\xda\xe0\xdb\xda\xdf\xda\xd9\xdd\xd7\ +\xd7\xdb\xd5\xd5\xd8\xd2\xd2\xd5\xce\xcb\xcc\xc5\xc2\xc1\xbb\xb8\ +\xb0\xaa\xa8\x92\x8e\x8e\x70\x72\x71\x53\x5a\x5c\x46\x4d\x50\x4d\ +\x50\x55\x68\x68\x6a\x81\x7d\x7e\x90\x8c\x8d\x9c\x99\x9a\xa1\x9f\ +\xa0\xa1\x9f\xa0\xa3\xa0\xa2\xa4\xa1\xa3\xa0\x9e\xa0\x9e\x9d\x9f\ +\x9c\x9b\x9d\x9d\x9c\x9e\x97\x96\x99\x93\x93\x97\x8f\x91\x93\x8e\ +\x90\x94\x8c\x8f\x93\x89\x8c\x8f\x87\x8b\x8e\x7e\x83\x86\x71\x77\ +\x7c\x64\x6c\x71\x55\x5e\x62\x63\x69\x6d\x6b\x6f\x75\x75\x78\x7c\ +\x6f\x72\x77\x72\x75\x7a\x70\x73\x78\x6e\x71\x76\x70\x73\x78\x6c\ +\x71\x76\x6f\x74\x78\x71\x75\x79\x75\x7b\x7f\x79\x7e\x83\x77\x7d\ +\x82\x77\x7d\x82\x77\x7d\x82\x78\x7d\x82\x78\x7e\x83\x7c\x81\x86\ +\x7b\x80\x85\x7c\x82\x88\x7c\x82\x87\x79\x7f\x84\x7a\x80\x85\x7b\ +\x81\x86\x7b\x81\x86\x7d\x83\x88\x80\x86\x8b\x81\x87\x8c\x80\x86\ +\x8b\x76\x7c\x81\x73\x79\x7e\x6a\x70\x75\x67\x6d\x72\x6a\x71\x76\ +\x6e\x73\x78\x7a\x7e\x81\x7c\x81\x85\x79\x7e\x82\x7b\x80\x83\x82\ +\x87\x8a\x7e\x82\x86\x7b\x7f\x84\x85\x88\x8c\x87\x8b\x8f\x7f\x83\ +\x86\x82\x85\x89\x8f\x92\x97\x93\x96\x9a\x93\x96\x9b\x96\x9a\x9f\ +\x94\x97\x9c\x95\x99\x9e\x97\x9b\xa0\x98\x9c\xa1\x9b\x9f\xa4\x9c\ +\x9f\xa4\x9e\xa1\xa5\x9e\xa1\xa5\x9b\x9e\xa3\x9e\xa1\xa5\x9f\xa2\ +\xa6\x9f\xa2\xa6\xa0\xa3\xa7\xa2\xa5\xa9\xa2\xa5\xa9\xa4\xa7\xab\ +\xa7\xa8\xac\xa8\xa9\xad\xa6\xa7\xab\x9e\x9f\xa3\x94\x95\x99\x92\ +\x93\x97\xa2\xa3\xa5\xa8\xaa\xab\x9d\x9f\xa0\x91\x93\x94\x99\x99\ +\x9b\xa8\xa8\xa9\xa7\xa8\xa8\x96\x97\x98\x90\x91\x92\x9b\x9a\x9b\ +\xac\xac\xac\xa8\xa8\xaa\x97\x99\x9a\x93\x93\x95\xa5\xa4\xa4\xb0\ +\xae\xae\xac\xab\xab\x95\x95\x95\x91\x91\x91\xa8\xa6\xa6\xb7\xb7\ +\xb7\xb3\xb3\xb3\xb5\xb4\xb5\xb8\xb7\xb8\xb6\xb6\xb6\xb4\xb4\xb5\ +\xb5\xb5\xb6\xb8\xb6\xb7\xb9\xb9\xba\xba\xba\xba\xb9\xb9\xb9\xb9\ +\xb9\xb9\xbb\xbb\xbb\xbe\xbc\xbc\xbd\xbd\xbd\xbd\xbc\xbe\xbe\xbd\ +\xbe\xbf\xbe\xbf\xbb\xb9\xbb\xb9\xb8\xba\xbc\xbb\xbd\xc0\xbf\xc1\ +\xc0\xbf\xc1\xc2\xc0\xc1\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbe\xbd\ +\xbb\xbc\xbe\xbc\xbc\xbe\xbd\xbe\xbe\xbc\xbe\xbf\xbd\xbf\x00\x00\ +\x00\xe0\xd9\xd7\xdf\xd9\xd7\xdf\xda\xd9\xdd\xd7\xd6\xda\xd4\xd4\ +\xd6\xd0\xd0\xd2\xcb\xca\xcb\xc4\xc1\xbf\xb8\xb4\xa7\xa1\x9d\x86\ +\x86\x82\x67\x6b\x6a\x4e\x55\x59\x46\x4e\x52\x56\x5a\x5c\x72\x6f\ +\x70\x89\x84\x85\x95\x90\x91\x9c\x9a\x9a\xa1\x9f\xa0\xa3\xa0\xa1\ +\xa2\x9f\xa1\xa3\xa0\xa2\xa0\x9f\xa1\x9c\x9b\x9d\x9b\x9a\x9c\x99\ +\x98\x9b\x93\x93\x96\x93\x94\x98\x92\x93\x96\x90\x91\x95\x8d\x90\ +\x93\x88\x8c\x8e\x85\x89\x8b\x81\x86\x89\x79\x7f\x82\x70\x77\x7a\ +\x68\x6e\x73\x6b\x6f\x74\x70\x75\x78\x71\x75\x79\x70\x74\x78\x6b\ +\x6f\x73\x6e\x71\x76\x6e\x71\x76\x70\x72\x77\x6d\x71\x76\x6f\x73\ +\x78\x72\x76\x79\x74\x78\x7c\x78\x7c\x81\x77\x7d\x82\x76\x7d\x82\ +\x76\x7b\x80\x78\x7d\x82\x7a\x7f\x84\x7a\x7f\x84\x7b\x81\x86\x7c\ +\x82\x87\x7c\x82\x87\x7b\x81\x86\x7d\x83\x87\x7c\x82\x88\x7c\x82\ +\x87\x7d\x83\x88\x7d\x83\x88\x7d\x83\x87\x7e\x86\x8a\x7e\x87\x8b\ +\x79\x80\x85\x68\x71\x75\x61\x6a\x6e\x6c\x71\x76\x72\x78\x7c\x76\ +\x7c\x7f\x7c\x81\x85\x7d\x81\x86\x79\x7d\x81\x7e\x83\x85\x81\x86\ +\x89\x7e\x83\x86\x7c\x80\x83\x84\x89\x8c\x85\x88\x8c\x7f\x83\x87\ +\x84\x87\x8c\x8f\x92\x96\x93\x96\x9b\x95\x98\x9d\x95\x98\x9d\x93\ +\x97\x9c\x96\x9a\x9e\x99\x9d\xa2\x9c\x9f\xa4\x9d\xa0\xa5\x9e\xa1\ +\xa5\xa0\xa3\xa7\x9f\xa2\xa6\x9f\xa2\xa6\x9e\xa1\xa5\x9d\xa0\xa5\ +\x9f\xa2\xa6\xa1\xa4\xa8\xa2\xa5\xaa\xa5\xa8\xac\xa4\xa6\xaa\xa4\ +\xa5\xa8\xa9\xaa\xad\xac\xad\xb0\xa2\xa4\xa7\x96\x97\x9b\x92\x93\ +\x96\x9f\x9f\xa2\xab\xac\xad\xa2\xa4\xa5\x94\x94\x97\x92\x92\x94\ +\xa6\xa7\xa7\xa9\xab\xac\x9d\x9f\xa0\x90\x91\x92\x96\x96\x98\xaa\ +\xa9\xab\xac\xac\xae\x9e\x9f\xa0\x93\x93\x93\x9e\x9d\x9d\xb0\xad\ +\xae\xac\xac\xac\x9e\x9e\x9e\x96\x95\x95\xa1\xa0\xa0\xb1\xb1\xb1\ +\xb4\xb4\xb5\xb5\xb5\xb6\xb6\xb5\xb6\xb5\xb5\xb6\xb6\xb6\xb7\xb7\ +\xb5\xb7\xb6\xb5\xb7\xb7\xb6\xb8\xb9\xb8\xba\xbb\xbb\xbb\xba\xba\ +\xba\xbd\xbd\xbd\xbf\xbf\xbf\xbc\xbc\xbd\xbc\xbb\xbd\xbb\xba\xbc\ +\xb9\xb8\xba\xb9\xb8\xba\xbd\xbb\xbd\xbf\xbd\xbf\xbf\xbd\xbf\xc3\ +\xc1\xc3\xc2\xbf\xc0\xc0\xbd\xbe\xbb\xb7\xb8\xba\xb8\xb8\xbd\xbb\ +\xbb\xbd\xbc\xbc\xbb\xbb\xbb\xbf\xbd\xc0\x00\x00\x00\xe1\xd9\xd9\ +\xdf\xd7\xd7\xdd\xd6\xd6\xdc\xd4\xd4\xd9\xd2\xd2\xd5\xce\xcc\xce\ +\xc7\xc4\xc5\xbe\xbb\xb7\xb1\xad\x9c\x98\x94\x7b\x7e\x7c\x5b\x61\ +\x61\x45\x4b\x50\x49\x4f\x51\x5f\x61\x63\x7b\x77\x78\x8d\x88\x89\ +\x99\x94\x95\x9f\x9b\x9b\xa2\xa0\xa0\xa4\xa2\xa2\xa2\x9f\xa1\xa2\ +\x9e\xa0\x9f\x9e\xa0\x9c\x9b\x9d\x9c\x9b\x9d\x98\x98\x9c\x92\x92\ +\x96\x91\x92\x96\x90\x91\x95\x90\x92\x96\x8b\x8e\x92\x88\x8b\x8f\ +\x86\x89\x8d\x83\x88\x8b\x7f\x84\x87\x7c\x82\x85\x76\x7c\x7f\x75\ +\x7b\x7e\x75\x79\x7c\x69\x6e\x72\x67\x6b\x70\x63\x66\x6b\x66\x69\ +\x6e\x69\x6d\x71\x61\x65\x6a\x68\x6c\x71\x6a\x6e\x73\x6f\x74\x77\ +\x6f\x73\x78\x73\x77\x7c\x76\x7b\x80\x76\x7c\x80\x78\x7e\x83\x79\ +\x7f\x84\x78\x7e\x83\x7b\x7f\x84\x79\x80\x85\x79\x7f\x84\x79\x7f\ +\x84\x7c\x82\x87\x7d\x83\x88\x7c\x82\x87\x7c\x82\x87\x7e\x84\x89\ +\x7e\x84\x89\x7d\x84\x88\x7f\x85\x8a\x80\x86\x8b\x7c\x82\x87\x69\ +\x71\x76\x64\x6d\x71\x6c\x72\x77\x7b\x80\x84\x78\x7e\x82\x77\x7d\ +\x81\x7d\x81\x85\x7f\x84\x87\x7b\x80\x83\x7f\x84\x86\x84\x89\x8b\ +\x80\x85\x87\x80\x85\x86\x87\x8b\x8c\x87\x8b\x8e\x81\x85\x89\x82\ +\x86\x8a\x8e\x91\x95\x94\x97\x9c\x94\x98\x9d\x92\x96\x9b\x97\x9a\ +\x9e\x99\x9c\xa0\x9c\x9f\xa3\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\ +\x9e\xa1\xa5\x9e\xa1\xa5\xa1\xa4\xa8\xa0\xa3\xa7\xa0\xa3\xa7\xa2\ +\xa4\xa8\xa3\xa5\xa9\xa4\xa5\xa9\xa4\xa6\xa9\xa4\xa5\xa9\xa9\xaa\ +\xad\xaa\xaa\xad\xa8\xa9\xac\xa6\xa8\xac\x99\x9b\xa0\x8f\x92\x95\ +\x9a\x9a\x9c\xa9\xaa\xab\xa9\xa9\xab\x9a\x9c\x9d\x90\x92\x93\xa1\ +\xa2\xa3\xab\xab\xab\xa6\xa7\xa7\x96\x98\x99\x94\x94\x95\xa7\xa6\ +\xa7\xaf\xae\xae\xa5\xa5\xa5\x94\x94\x94\x99\x98\x98\xa9\xa8\xa8\ +\xb3\xb3\xb3\xa7\xa8\xa8\x96\x97\x97\x94\x94\x94\xa9\xa8\xa8\xb4\ +\xb2\xb2\xb6\xb5\xb5\xb5\xb5\xb5\xb6\xb5\xb7\xb8\xb7\xb9\xb8\xb7\ +\xb9\xb7\xb6\xb8\xb4\xb3\xb5\xb7\xb5\xb5\xb8\xb8\xb8\xbc\xbc\xbc\ +\xbb\xbb\xbb\xba\xb9\xb9\xbc\xbb\xbb\xbb\xbb\xbc\xbb\xba\xbc\xbe\ +\xbc\xbe\xbd\xbb\xbd\xbc\xba\xbc\xbe\xbc\xbe\xc2\xc0\xc1\xc3\xc0\ +\xc1\xc0\xbe\xbe\xbd\xbb\xbb\xba\xb8\xb8\xbb\xb9\xb9\xbb\xb9\xb9\ +\xbc\xbc\xbc\xbf\xbe\xc0\x00\x00\x00\xdf\xd7\xd7\xde\xd7\xd5\xdd\ +\xd5\xd5\xda\xd3\xd2\xd7\xcf\xcf\xd3\xcb\xcb\xcb\xc3\xc1\xc1\xb9\ +\xb8\xaf\xa7\xa7\x90\x8c\x8b\x6d\x71\x70\x52\x59\x5b\x44\x4a\x4f\ +\x51\x56\x59\x6a\x6b\x6d\x82\x7e\x7f\x94\x8f\x90\x9b\x97\x98\x9f\ +\x9c\x9d\xa0\x9f\x9e\xa2\xa0\xa1\xa2\xa0\xa2\x9f\x9d\x9f\x9c\x9b\ +\x9d\x9b\x9a\x9c\x99\x98\x9a\x96\x95\x98\x93\x92\x96\x8c\x8e\x91\ +\x8d\x8e\x92\x8c\x8e\x92\x89\x8c\x90\x88\x8c\x8f\x87\x8a\x8d\x83\ +\x88\x8b\x83\x88\x8b\x81\x86\x89\x7d\x83\x86\x77\x7c\x7f\x75\x7a\ +\x7d\x65\x69\x6d\x50\x54\x59\x50\x54\x59\x58\x5b\x5f\x5c\x60\x63\ +\x55\x59\x5d\x53\x58\x5c\x62\x66\x6a\x6b\x70\x73\x6d\x72\x76\x6f\ +\x74\x78\x76\x7a\x7f\x79\x7c\x81\x79\x7d\x82\x79\x7d\x82\x77\x7c\ +\x81\x79\x7e\x83\x7a\x80\x85\x77\x7d\x82\x78\x7e\x83\x7c\x82\x88\ +\x7d\x83\x89\x7b\x81\x86\x7b\x81\x86\x7e\x83\x88\x80\x86\x8a\x7e\ +\x85\x8a\x80\x87\x8c\x81\x87\x8b\x76\x7c\x81\x6e\x77\x7b\x69\x72\ +\x76\x6f\x76\x7a\x7a\x7f\x84\x7c\x81\x85\x77\x7c\x81\x77\x7c\x7f\ +\x80\x84\x88\x80\x85\x88\x7c\x80\x83\x80\x84\x86\x85\x89\x8a\x81\ +\x86\x88\x80\x84\x87\x89\x8c\x90\x89\x8d\x91\x82\x87\x8b\x81\x84\ +\x88\x90\x93\x97\x96\x99\x9d\x96\x9a\x9e\x95\x99\x9d\x97\x9a\x9e\ +\x9b\x9e\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\x9e\xa1\xa5\xa0\ +\xa3\xa7\xa3\xa4\xa8\xa1\xa4\xa8\xa0\xa3\xa7\xa2\xa4\xa8\xa3\xa5\ +\xa9\xa6\xa8\xaa\xa7\xa8\xab\xa8\xaa\xad\xa7\xa8\xac\xa8\xa9\xac\ +\xa8\xa9\xac\xac\xad\xb1\xab\xac\xb0\xa1\xa2\xa7\x92\x93\x97\x94\ +\x95\x99\xa5\xa6\xa8\xa7\xa9\xaa\x9a\x9b\x9c\x92\x93\x94\x9d\x9c\ +\x9c\xac\xad\xac\xac\xad\xad\x9c\x9c\x9d\x94\x92\x94\xa0\x9f\xa0\ +\xb0\xaf\xaf\xad\xae\xae\x9b\x9c\x9c\x93\x92\x92\xa1\xa1\xa1\xae\ +\xae\xae\xab\xab\xab\xa0\xa0\xa0\x95\x94\x94\xa1\x9e\x9e\xb3\xb2\ +\xb1\xb9\xb8\xb8\xb8\xb6\xb8\xb9\xb7\xb9\xba\xb8\xba\xb8\xb6\xb7\ +\xb4\xb2\xb3\xb3\xb0\xb3\xb4\xb4\xb4\xbe\xbd\xbd\xbc\xbc\xbc\xbc\ +\xbc\xbc\xbc\xbc\xbc\xbb\xbb\xbc\xbc\xbb\xbd\xbd\xbd\xbf\xbf\xbe\ +\xbf\xbf\xbd\xbf\xc1\xbe\xbf\xc1\xbf\xc0\xc1\xbf\xbf\xbe\xbb\xbd\ +\xbd\xbb\xbc\xbc\xba\xba\xbd\xbb\xbc\xbc\xba\xba\xbf\xbc\xbd\xbf\ +\xbd\xbf\x00\x00\x00\xdf\xd7\xd7\xdf\xd7\xd7\xdc\xd5\xd5\xd9\xd4\ +\xd3\xd7\xcf\xcf\xd2\xca\xca\xc8\xc0\xbe\xba\xb1\xb1\xa6\x9f\x9f\ +\x82\x81\x81\x60\x65\x67\x4b\x53\x58\x46\x4c\x50\x57\x5b\x5d\x73\ +\x74\x75\x88\x85\x86\x96\x92\x94\x9d\x98\x9a\xa0\x9e\x9e\xa1\x9f\ +\x9f\xa0\x9e\x9f\xa1\x9e\xa0\x9e\x9c\x9e\x9c\x9c\x9d\x99\x98\x9a\ +\x98\x97\x99\x92\x93\x96\x8f\x91\x93\x8d\x8d\x90\x8c\x8d\x91\x8a\ +\x8b\x8f\x87\x89\x8c\x85\x87\x8a\x83\x87\x8a\x84\x89\x8c\x82\x87\ +\x8a\x80\x85\x88\x7c\x81\x84\x7b\x81\x84\x76\x7b\x7e\x60\x65\x69\ +\x3d\x44\x4c\x39\x41\x48\x49\x4d\x52\x4f\x52\x55\x45\x4b\x4e\x3c\ +\x42\x48\x55\x59\x5e\x67\x6c\x6f\x6c\x70\x75\x6c\x71\x77\x73\x78\ +\x7c\x78\x7c\x81\x7a\x7e\x83\x7b\x7f\x84\x77\x7c\x80\x79\x7d\x82\ +\x79\x7f\x84\x78\x7e\x83\x7a\x80\x85\x7c\x82\x87\x7d\x83\x89\x7d\ +\x83\x88\x7b\x81\x85\x7b\x7f\x83\x7d\x82\x85\x80\x86\x8b\x82\x88\ +\x8d\x7e\x85\x89\x74\x7b\x80\x6d\x76\x7a\x73\x7c\x7f\x7a\x81\x85\ +\x77\x7e\x82\x79\x7e\x82\x7e\x84\x87\x78\x7e\x83\x7a\x7f\x82\x82\ +\x87\x8a\x81\x86\x89\x7c\x80\x83\x82\x86\x88\x86\x8b\x8d\x82\x87\ +\x8a\x7f\x82\x86\x89\x8c\x90\x89\x8e\x91\x7f\x84\x87\x80\x83\x87\ +\x8f\x92\x96\x96\x99\x9d\x96\x99\x9d\x98\x9b\x9f\x99\x9d\xa0\x9b\ +\x9f\xa2\x9d\xa0\xa4\x9e\xa1\xa5\x9d\xa0\xa4\xa0\xa3\xa7\xa3\xa3\ +\xa7\xa1\xa3\xa7\xa1\xa4\xa8\xa2\xa4\xa8\xa4\xa6\xaa\xa2\xa3\xa7\ +\xa7\xa8\xab\xa8\xaa\xac\xa6\xa8\xaa\xa7\xa8\xaa\xa9\xa9\xab\xad\ +\xad\xb0\xad\xae\xb1\xad\xae\xb3\xa4\xa4\xa9\x97\x98\x9c\x8f\x90\ +\x93\x9e\x9d\x9e\xab\xab\xab\xa2\xa3\xa4\x93\x95\x96\x9b\x9b\x9b\ +\xac\xac\xac\xb0\xaf\xb1\xa3\xa2\xa4\x95\x94\x96\x9c\x9a\x9c\xab\ +\xab\xab\xb1\xb2\xb2\xa2\xa5\xa4\x95\x95\x97\x98\x97\x97\xad\xac\ +\xac\xb3\xb2\xb1\xa9\xa8\xa9\x98\x97\x98\x9e\x9c\x9d\xae\xac\xad\ +\xb7\xb5\xb6\xb9\xb6\xb8\xb8\xb5\xb8\xba\xb7\xb9\xb7\xb4\xb7\xb7\ +\xb5\xb7\xb5\xb4\xb4\xb9\xb8\xb9\xbd\xbb\xbd\xbd\xbc\xbe\xba\xba\ +\xbb\xb9\xb8\xb9\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbc\xbf\xbe\xbd\xbe\ +\xbf\xbd\xbe\xbc\xba\xbc\xbc\xba\xba\xbb\xb8\xb9\xbc\xba\xba\xbc\ +\xba\xba\xbc\xba\xbb\xbd\xbb\xbc\xbf\xbc\xbe\xc1\xbf\xc1\x00\x00\ +\x00\xde\xd6\xd5\xde\xd6\xd6\xdb\xd4\xd4\xd8\xd2\xd1\xd4\xcd\xcd\ +\xce\xc6\xc6\xc5\xbd\xbc\xb6\xad\xac\x9a\x94\x94\x77\x77\x78\x5a\ +\x5f\x64\x48\x50\x58\x4d\x52\x56\x62\x63\x65\x7b\x7a\x7a\x8d\x8a\ +\x8a\x99\x93\x95\x9e\x99\x9a\xa2\x9d\x9e\xa1\x9f\xa0\xa0\x9e\x9e\ +\xa0\x9e\x9e\x9e\x9d\x9e\x9b\x9a\x9c\x9a\x99\x9b\x96\x95\x97\x93\ +\x93\x95\x8f\x92\x93\x8d\x8f\x91\x8a\x8c\x8f\x87\x89\x8c\x85\x88\ +\x8a\x85\x88\x8c\x84\x87\x8c\x82\x86\x8a\x81\x85\x88\x80\x86\x89\ +\x7d\x83\x86\x7d\x82\x85\x71\x76\x78\x58\x5f\x63\x2f\x39\x41\x2b\ +\x35\x3e\x38\x3e\x45\x3e\x43\x47\x38\x3e\x43\x34\x3c\x44\x47\x4d\ +\x53\x68\x6c\x6f\x6c\x72\x76\x6f\x75\x7a\x71\x75\x7a\x75\x79\x7e\ +\x7a\x7e\x83\x77\x7b\x80\x77\x7d\x81\x79\x7d\x82\x78\x7e\x83\x78\ +\x7e\x83\x7a\x80\x85\x7b\x81\x86\x7d\x83\x88\x7e\x84\x89\x75\x7a\ +\x7e\x6c\x71\x75\x75\x79\x7c\x7f\x84\x89\x83\x88\x8d\x7e\x84\x89\ +\x78\x80\x85\x73\x7c\x80\x7b\x82\x85\x83\x8a\x8d\x7c\x82\x86\x76\ +\x7c\x81\x7a\x7f\x84\x80\x85\x8a\x7c\x81\x84\x7d\x82\x85\x84\x89\ +\x8b\x82\x87\x8a\x7c\x81\x82\x82\x86\x86\x8a\x8e\x8f\x85\x8a\x8d\ +\x81\x85\x89\x8a\x8d\x91\x8b\x8f\x92\x84\x89\x8c\x83\x86\x8a\x8e\ +\x90\x94\x97\x9a\x9e\x98\x9b\x9f\x98\x9b\x9d\x9b\x9e\xa1\x9e\xa0\ +\xa4\xa0\xa2\xa6\x9f\xa1\xa4\xa2\xa3\xa7\xa2\xa3\xa7\xa2\xa5\xa9\ +\xa3\xa4\xa8\xa1\xa3\xa7\xa2\xa3\xa7\xa1\xa2\xa6\xa3\xa5\xa7\xa8\ +\xab\xab\xa8\xa9\xaa\xa9\xa8\xaa\xac\xab\xae\xac\xad\xaf\xac\xad\ +\xae\xac\xad\xb0\xab\xac\xaf\xaa\xab\xad\x9c\x9d\xa1\x92\x92\x94\ +\x9d\x9d\x9d\xad\xad\xad\xa7\xa8\xa8\x9a\x9c\x9c\x96\x97\x98\xa5\ +\xa5\xa6\xb0\xaf\xb1\xab\xaa\xac\x98\x99\x9a\x96\x95\x97\xa6\xa6\ +\xa6\xb4\xb5\xb5\xb0\xb0\xb0\x9b\x9a\x9b\x97\x96\x96\xa8\xa4\xa4\ +\xb3\xb2\xb2\xb1\xb1\xb2\x9d\x9d\x9e\x95\x94\x96\xa2\xa0\xa2\xaf\ +\xad\xae\xb7\xb4\xb6\xba\xb9\xbb\xba\xb9\xbb\xba\xb8\xba\xb7\xb5\ +\xb6\xb9\xb9\xb9\xba\xb9\xbb\xbc\xbc\xbd\xbb\xbb\xbc\xb9\xb8\xba\ +\xbb\xbb\xbc\xbd\xbc\xbd\xbe\xbd\xbf\xbe\xbd\xbf\xbf\xbe\xc0\xc1\ +\xc0\xc2\xbf\xbd\xbe\xbb\xb8\xb9\xbb\xb8\xba\xc0\xbd\xbf\xbd\xba\ +\xbc\xc0\xbe\xc0\xbf\xbd\xbf\xc2\xc0\xc2\x00\x00\x00\xde\xd7\xd5\ +\xde\xd6\xd6\xda\xd2\xd2\xd8\xd0\xd0\xd3\xcb\xcb\xcb\xc3\xc3\xc0\ +\xb8\xb8\xab\xa4\xa4\x8d\x8a\x89\x6d\x6e\x71\x50\x56\x5c\x46\x4e\ +\x55\x54\x58\x5d\x6e\x6d\x6f\x86\x82\x83\x92\x8d\x8e\x9a\x95\x96\ +\x9e\x99\x9a\xa2\x9f\xa0\xa2\x9f\xa0\x9f\x9c\x9e\x9d\x9a\x9c\x9d\ +\x9b\x9d\x9a\x99\x9b\x97\x96\x98\x94\x93\x95\x91\x93\x94\x8c\x8e\ +\x90\x8c\x8d\x91\x89\x8d\x91\x86\x89\x8d\x84\x87\x8a\x83\x86\x8a\ +\x80\x84\x88\x7f\x84\x87\x7f\x84\x87\x7e\x84\x87\x7b\x81\x86\x7a\ +\x7f\x83\x6c\x72\x76\x4e\x57\x5b\x26\x32\x3b\x26\x31\x38\x30\x39\ +\x40\x34\x3a\x40\x29\x30\x37\x31\x3a\x41\x4c\x52\x59\x67\x6b\x70\ +\x6d\x72\x77\x6d\x73\x78\x70\x74\x7a\x71\x76\x7b\x76\x7b\x80\x79\ +\x7d\x82\x7a\x7e\x83\x77\x7c\x80\x78\x7e\x83\x78\x7e\x83\x7a\x80\ +\x85\x7b\x82\x87\x7d\x84\x88\x78\x7e\x83\x66\x6d\x72\x5c\x62\x68\ +\x63\x67\x6c\x76\x79\x7e\x82\x86\x8a\x81\x86\x8b\x7f\x85\x89\x7d\ +\x85\x88\x82\x88\x8c\x86\x8c\x8f\x83\x8a\x8d\x7c\x82\x86\x78\x7e\ +\x82\x7e\x82\x86\x82\x86\x89\x7e\x83\x85\x80\x85\x87\x85\x8a\x8c\ +\x83\x88\x89\x7e\x82\x83\x85\x89\x8a\x8c\x8f\x91\x86\x8b\x8d\x82\ +\x86\x89\x8c\x90\x94\x8e\x91\x95\x86\x8a\x8e\x84\x87\x8b\x8e\x90\ +\x94\x99\x9b\x9e\x9d\xa0\xa2\x9e\xa0\xa4\x9f\xa0\xa4\x9f\xa0\xa2\ +\xa1\xa2\xa5\x9e\x9f\xa3\xa0\xa2\xa6\xa3\xa4\xa8\xa2\xa3\xa7\xa1\ +\xa2\xa5\xa2\xa4\xa8\xa2\xa3\xa6\xa2\xa4\xa5\xa5\xa6\xa7\xab\xab\ +\xac\xae\xac\xae\xac\xab\xac\xab\xab\xad\xac\xac\xae\xac\xac\xb0\ +\xab\xad\xae\xac\xac\xae\xaa\xac\xad\xa2\xa4\xa5\x94\x96\x97\x95\ +\x95\x96\xa6\xa5\xa6\xac\xac\xad\x9f\xa0\xa1\x97\x96\x98\x9e\x9e\ +\x9f\xad\xad\xad\xaf\xaf\xaf\xa1\xa0\xa2\x96\x95\x98\xa3\xa2\xa2\ +\xb0\xb0\xaf\xb3\xb2\xb3\xa5\xa5\xa5\x98\x97\x97\x9e\x9c\x9b\xae\ +\xad\xac\xb0\xb0\xb0\xa3\xa3\xa4\x96\x95\x97\x9d\x9b\x9d\xad\xaa\ +\xac\xb7\xb5\xb7\xb9\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb8\xb7\xb7\ +\xb8\xb7\xb7\xb6\xb6\xb6\xba\xba\xbb\xbb\xbb\xbb\xbc\xbb\xbc\xbd\ +\xbc\xbd\xbc\xbb\xbd\xbd\xbd\xbe\xc0\xbf\xc1\xc2\xc1\xc3\xbf\xbe\ +\xc0\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbc\xbd\xba\xbc\xc1\xbe\xc0\ +\xc3\xc0\xc2\xc1\xc0\xc2\x00\x00\x00\xdd\xd6\xd4\xdd\xd5\xd5\xd9\ +\xd2\xd1\xd5\xcd\xcd\xcf\xc7\xc7\xc7\xbe\xbd\xb9\xb0\xaf\xa0\x99\ +\x98\x81\x7f\x7e\x62\x64\x67\x48\x4e\x55\x46\x4c\x53\x5b\x5e\x62\ +\x76\x73\x74\x8a\x84\x85\x95\x8f\x90\x9b\x97\x98\xa0\x9d\x9f\xa1\ +\x9e\xa0\xa1\x9f\xa1\x9f\x9d\x9f\x9c\x9a\x9c\x9d\x9b\x9d\x98\x97\ +\x99\x95\x94\x96\x95\x95\x98\x8e\x90\x92\x8d\x8f\x92\x8a\x8c\x90\ +\x88\x8b\x8f\x87\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x82\x86\x89\x7f\ +\x84\x87\x7e\x82\x86\x7d\x81\x85\x7c\x81\x85\x79\x7f\x83\x68\x70\ +\x75\x45\x53\x59\x2b\x3a\x42\x2d\x37\x3e\x36\x3e\x45\x2d\x36\x3c\ +\x26\x30\x37\x37\x40\x47\x59\x5e\x66\x67\x6c\x72\x6e\x73\x78\x6b\ +\x71\x76\x6d\x73\x79\x6e\x73\x79\x70\x76\x7a\x7a\x7e\x83\x78\x7d\ +\x82\x78\x7d\x81\x79\x7f\x84\x7a\x80\x85\x79\x7f\x84\x7b\x81\x86\ +\x7b\x81\x86\x75\x7c\x81\x64\x6e\x74\x4d\x57\x5f\x4b\x52\x5b\x63\ +\x66\x6d\x78\x7c\x80\x81\x87\x8b\x85\x8a\x8f\x83\x89\x8d\x85\x8c\ +\x90\x84\x8a\x8e\x85\x8c\x8f\x83\x8a\x8d\x7d\x83\x87\x7c\x81\x85\ +\x7e\x83\x86\x83\x88\x8b\x7f\x84\x88\x80\x84\x86\x87\x8b\x8d\x84\ +\x88\x89\x81\x84\x87\x88\x8c\x8d\x8b\x8e\x90\x89\x8e\x90\x81\x86\ +\x89\x89\x8c\x90\x8f\x92\x97\x88\x8b\x8f\x84\x87\x8b\x91\x93\x96\ +\x9c\x9e\xa0\x9d\xa0\xa3\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa2\xa6\x9e\ +\x9f\xa3\x9f\xa0\xa4\xa1\xa3\xa7\xa1\xa2\xa7\xa2\xa3\xa7\xa4\xa5\ +\xa8\xa3\xa5\xa7\xa1\xa2\xa3\xa5\xa5\xa7\xab\xaa\xab\xab\xaa\xac\ +\xac\xab\xad\xac\xab\xad\xac\xab\xad\xad\xae\xaf\xac\xae\xb0\xab\ +\xac\xae\xad\xae\xb0\xae\xae\xb0\xa5\xa7\xa8\x98\x9a\x9b\x97\x96\ +\x98\xa5\xa4\xa6\xae\xae\xaf\xa8\xa8\xa9\x9a\x99\x9a\x9c\x9b\x9c\ +\xa9\xa7\xa9\xb2\xb1\xb1\xa8\xa7\xa9\x9b\x9a\x9c\x9c\x9c\x9d\xab\ +\xaa\xab\xb2\xb2\xb2\xaa\xaa\xa9\x9b\x9a\x9a\x97\x96\x97\xa4\xa3\ +\xa4\xb0\xb0\xb0\xad\xac\xae\x9d\x9c\x9d\x9b\x99\x9b\xa8\xa6\xa8\ +\xb4\xb1\xb3\xb9\xb7\xb9\xb8\xb7\xb9\xba\xb8\xba\xb8\xb8\xb9\xb7\ +\xb6\xb8\xb9\xb8\xba\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xbd\xbc\ +\xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbf\xbe\xc0\xc1\xbf\xc1\xbf\xbd\xbf\ +\xc0\xbe\xc1\xbd\xbb\xbe\xbe\xbd\xbf\xbf\xbd\xc0\xc2\xbf\xc1\xbf\ +\xbd\xbf\x00\x00\x00\xdd\xd6\xd3\xdb\xd3\xd4\xd8\xd1\xd1\xd4\xcc\ +\xcc\xcd\xc4\xc3\xc3\xb9\xb6\xb2\xa9\xa6\x94\x90\x8e\x73\x75\x73\ +\x57\x5c\x5e\x48\x4e\x53\x4f\x52\x58\x67\x67\x6a\x7d\x7a\x7a\x8f\ +\x8a\x8a\x98\x93\x94\x9d\x99\x9a\x9f\x9c\x9e\xa1\x9e\x9f\xa1\x9e\ +\xa0\x9e\x9c\x9f\x9b\x9a\x9c\x9b\x9a\x9c\x98\x97\x99\x94\x95\x96\ +\x91\x92\x95\x8d\x8e\x92\x8a\x8d\x92\x87\x8a\x8e\x85\x88\x8c\x86\ +\x89\x8d\x83\x87\x8b\x83\x87\x8a\x82\x86\x89\x7f\x83\x86\x7d\x81\ +\x84\x7c\x80\x85\x7b\x7f\x84\x78\x7e\x82\x6b\x73\x79\x4a\x5b\x62\ +\x3d\x4e\x55\x39\x44\x4c\x3e\x48\x4f\x2c\x38\x3e\x2d\x39\x40\x3c\ +\x45\x4d\x61\x67\x6d\x6b\x70\x75\x6d\x72\x77\x6d\x73\x79\x6a\x70\ +\x75\x6e\x73\x78\x6d\x73\x78\x75\x7a\x7f\x79\x7e\x82\x79\x7e\x83\ +\x79\x7f\x84\x78\x7d\x82\x7a\x80\x85\x7a\x80\x85\x7b\x81\x86\x79\ +\x81\x87\x6d\x78\x7e\x55\x61\x69\x41\x4a\x54\x49\x4e\x57\x63\x66\ +\x6e\x7b\x7e\x84\x85\x89\x8f\x86\x8c\x90\x85\x8b\x8f\x85\x8b\x90\ +\x89\x8f\x92\x87\x8e\x91\x85\x8b\x8e\x7e\x85\x88\x79\x7f\x82\x7e\ +\x83\x86\x83\x89\x8b\x81\x86\x89\x82\x85\x88\x84\x88\x8a\x87\x8b\ +\x8e\x81\x85\x86\x86\x89\x8c\x8a\x8f\x92\x87\x8b\x8f\x84\x87\x8b\ +\x8b\x8e\x92\x8f\x92\x96\x8b\x8e\x91\x86\x89\x8d\x8f\x91\x93\x9a\ +\x9c\x9e\x9f\xa1\xa4\xa1\xa2\xa6\xa0\xa1\xa5\xa1\xa2\xa5\xa0\xa2\ +\xa6\x9e\xa0\xa4\xa0\xa2\xa6\xa2\xa4\xa8\xa4\xa5\xa9\xa5\xa7\xa9\ +\xa4\xa6\xa7\xa8\xa9\xaa\xac\xab\xae\xab\xaa\xac\xac\xab\xad\xae\ +\xae\xb0\xad\xae\xb0\xb0\xb0\xb2\xae\xae\xb0\xad\xae\xaf\xaf\xb0\ +\xb2\xaf\xaf\xb1\xb0\xb2\xb2\xac\xae\xaf\xa2\xa3\xa4\x98\x98\x9b\ +\x9d\x9d\x9f\xab\xaa\xac\xaa\xa9\xaa\x9f\x9e\xa0\x9a\x99\x9b\xa6\ +\xa4\xa5\xb1\xaf\xaf\xb1\xaf\xb0\xa2\xa1\xa2\x99\x98\x9a\xa1\x9f\ +\x9f\xad\xab\xab\xaf\xae\xae\xa3\xa4\xa4\x98\x98\x99\x9d\x9b\x9d\ +\xaf\xad\xae\xb7\xb4\xb5\xaa\xa8\xaa\x9b\x99\x9b\x9e\x9c\x9e\xab\ +\xa8\xaa\xb7\xb4\xb6\xb9\xb7\xb9\xba\xba\xbb\xbb\xba\xbb\xba\xb9\ +\xbb\xbb\xbb\xbc\xba\xb9\xbb\xbb\xba\xbb\xbe\xbd\xbf\xbe\xbd\xbf\ +\xbe\xbd\xbf\xbe\xbd\xbf\xc0\xbe\xc0\xbe\xbc\xbe\xbf\xbe\xc1\xbe\ +\xbd\xc1\xc0\xbe\xc1\xbe\xbc\xbe\xbc\xb9\xbb\xbe\xbb\xbd\x00\x00\ +\x00\xdb\xd4\xd2\xd9\xd1\xd0\xd6\xce\xcc\xd2\xca\xc8\xca\xc1\xbf\ +\xbf\xb5\xb3\xaa\xa2\xa0\x89\x88\x86\x67\x6b\x6a\x4c\x53\x57\x49\ +\x4e\x53\x55\x57\x5c\x71\x6f\x71\x84\x80\x80\x93\x8e\x8f\x9a\x96\ +\x97\x9d\x9a\x9c\x9f\x9c\x9e\xa1\x9e\x9f\xa0\x9d\x9f\x9d\x9b\x9d\ +\x9b\x9a\x9c\x9a\x99\x9b\x97\x96\x98\x94\x95\x98\x8d\x8f\x93\x8c\ +\x8e\x92\x89\x8c\x91\x86\x89\x8d\x85\x88\x8c\x84\x87\x8b\x83\x86\ +\x8a\x81\x87\x8a\x80\x85\x88\x7e\x82\x86\x7c\x81\x85\x7c\x81\x84\ +\x7a\x7f\x83\x79\x7d\x82\x6f\x76\x7c\x5c\x68\x6e\x55\x63\x6a\x4f\ +\x5a\x62\x4d\x58\x60\x3d\x4a\x52\x39\x46\x4d\x49\x52\x59\x62\x67\ +\x6d\x6f\x74\x78\x6c\x71\x76\x6d\x72\x78\x6d\x72\x77\x6d\x71\x76\ +\x6f\x74\x7a\x6f\x74\x79\x76\x7a\x7e\x7a\x7e\x83\x78\x7e\x83\x77\ +\x7c\x81\x79\x7f\x84\x79\x7f\x84\x7a\x80\x85\x7b\x81\x86\x76\x7f\ +\x85\x6a\x75\x7c\x53\x5e\x66\x3e\x47\x51\x53\x58\x62\x6c\x70\x77\ +\x80\x84\x89\x87\x8c\x90\x86\x8a\x8f\x89\x8e\x92\x8b\x90\x93\x89\ +\x8e\x91\x8a\x8f\x92\x86\x8c\x8f\x7f\x85\x88\x7b\x7f\x82\x80\x84\ +\x88\x85\x89\x8c\x81\x85\x88\x7d\x81\x83\x86\x8a\x8c\x85\x89\x8b\ +\x80\x84\x87\x82\x85\x89\x8b\x8e\x92\x8a\x8e\x91\x86\x89\x8d\x8c\ +\x8e\x92\x92\x94\x97\x8c\x8f\x91\x85\x89\x8b\x8d\x90\x92\x99\x9b\ +\x9d\x9f\xa1\xa4\xa1\xa2\xa6\xa1\xa2\xa6\xa0\xa1\xa7\x9f\xa1\xa5\ +\xa0\xa2\xa6\xa3\xa5\xa9\xa6\xa7\xaa\xa5\xa6\xa8\xa6\xa6\xa8\xa8\ +\xa8\xaa\xab\xaa\xac\xab\xaa\xac\xac\xab\xad\xad\xac\xae\xad\xae\ +\xaf\xaf\xae\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb1\xb0\xb2\xb0\xb0\xb2\ +\xb2\xb2\xb4\xb3\xb3\xb5\xb0\xb0\xb2\xa7\xa7\xa9\x99\x9a\x9c\x97\ +\x97\x99\xa5\xa4\xa5\xae\xac\xad\xa6\xa6\xa7\x9c\x9b\x9d\x9f\x9d\ +\x9d\xad\xab\xab\xb7\xb6\xb6\xac\xac\xac\x9e\x9d\x9c\x9a\x9a\x99\ +\xa7\xa6\xa6\xb0\xb0\xb0\xab\xab\xac\x9c\x9b\x9d\x9b\x9a\x9c\xab\ +\xa9\xaa\xb6\xb4\xb4\xb0\xae\xaf\xa0\x9f\xa0\x9c\x9c\x9d\xa7\xa4\ +\xa6\xb3\xb2\xb3\xbb\xba\xbb\xbc\xbb\xbb\xbc\xbb\xbc\xbd\xbd\xbd\ +\xbb\xba\xbc\xbb\xba\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\xbc\ +\xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbf\xbd\xc0\xbf\xbe\xc0\xc0\xbf\ +\xc2\xbc\xbb\xbd\xb8\xb6\xb8\xc0\xbd\xbf\x00\x00\x00\xdb\xd4\xd2\ +\xd8\xd1\xce\xd5\xcd\xca\xcf\xc6\xc3\xc6\xbd\xba\xb8\xaf\xad\x9d\ +\x97\x95\x7c\x7d\x7c\x5f\x64\x66\x47\x50\x54\x4c\x51\x57\x5d\x5e\ +\x62\x79\x76\x78\x8a\x85\x86\x96\x91\x91\x9a\x97\x97\x9f\x9c\x9e\ +\x9f\x9c\x9e\x9f\x9d\x9f\x9e\x9c\x9e\x9b\x9a\x9c\x9a\x99\x9c\x98\ +\x97\x99\x95\x96\x97\x91\x92\x95\x8e\x8f\x93\x8a\x8d\x91\x88\x8b\ +\x90\x88\x8b\x8f\x85\x89\x8c\x84\x88\x8b\x81\x85\x89\x7f\x84\x88\ +\x7f\x83\x87\x7e\x82\x87\x7e\x82\x87\x7d\x81\x85\x7b\x80\x83\x7a\ +\x7e\x83\x76\x7b\x80\x6d\x74\x79\x68\x71\x78\x66\x6f\x76\x5e\x68\ +\x6e\x58\x62\x6a\x4d\x57\x5f\x56\x5d\x64\x64\x69\x6f\x6e\x72\x77\ +\x6e\x73\x78\x6b\x70\x75\x6e\x72\x77\x6d\x70\x75\x6e\x72\x77\x6f\ +\x74\x79\x70\x74\x79\x78\x7c\x81\x79\x7e\x83\x78\x7c\x81\x79\x7f\ +\x84\x79\x7f\x84\x7c\x81\x86\x7b\x82\x87\x7c\x83\x88\x77\x80\x85\ +\x6b\x76\x7c\x59\x64\x6c\x52\x5b\x65\x66\x6a\x73\x7d\x81\x86\x85\ +\x89\x8d\x86\x8b\x8e\x88\x8c\x91\x8a\x8f\x91\x8a\x8e\x91\x8a\x8f\ +\x92\x8b\x90\x93\x88\x8d\x90\x81\x86\x89\x7d\x82\x85\x82\x85\x89\ +\x86\x8a\x8c\x82\x86\x88\x80\x84\x86\x88\x8c\x8d\x85\x89\x8c\x80\ +\x84\x87\x83\x86\x8a\x8b\x8f\x91\x8c\x90\x94\x86\x89\x8d\x89\x8c\ +\x8f\x90\x93\x95\x8e\x92\x94\x88\x8b\x8e\x8b\x8d\x8e\x98\x99\x9c\ +\x9f\xa0\xa4\xa1\xa2\xa7\xa1\xa2\xa7\xa4\xa5\xa9\xa2\xa4\xa8\xa5\ +\xa7\xab\xa6\xa8\xab\xa5\xa7\xa9\xa7\xa6\xa8\xa8\xa7\xa9\xab\xaa\ +\xac\xab\xaa\xac\xab\xaa\xac\xab\xaa\xac\xad\xae\xaf\xaf\xae\xb0\ +\xaf\xae\xb0\xaf\xae\xb0\xaf\xae\xb0\xb1\xb1\xb3\xb2\xb2\xb4\xb2\ +\xb1\xb3\xb2\xb2\xb4\xb2\xb1\xb3\xab\xac\xae\x9d\x9d\x9e\x96\x95\ +\x96\x9f\x9d\x9d\xad\xab\xac\xae\xad\xad\xa0\x9e\x9e\x9c\x9a\x99\ +\xa6\xa3\xa3\xb4\xb2\xb2\xb2\xb3\xb2\xa4\xa3\xa3\x9b\x9a\x9a\x9e\ +\x9d\x9d\xaf\xae\xaf\xb2\xb2\xb2\xa5\xa5\xa6\x9b\x9a\x9c\xa0\x9e\ +\x9f\xb2\xaf\xb0\xb4\xb3\xb3\xad\xac\xad\xa1\x9f\xa1\x9f\x9c\x9e\ +\xad\xab\xac\xbc\xbb\xba\xbc\xba\xba\xbc\xbb\xbb\xbc\xba\xbb\xbd\ +\xbc\xbd\xbe\xbc\xbe\xbb\xba\xbc\xba\xb9\xbb\xba\xb9\xbb\xbb\xba\ +\xbc\xbf\xbd\xbf\xbc\xba\xbd\xbd\xbb\xbd\xbd\xbc\xbe\xbc\xbb\xbd\ +\xbe\xbd\xbf\xc2\xc1\xc3\x00\x00\x00\xda\xd4\xd3\xd8\xd1\xce\xd3\ +\xcb\xc8\xcc\xc3\xbf\xc0\xb7\xb4\xaf\xa6\xa2\x91\x8d\x8a\x6f\x71\ +\x71\x56\x5e\x60\x45\x4e\x52\x4f\x54\x58\x68\x67\x6b\x80\x7e\x7e\ +\x8f\x89\x8a\x98\x94\x94\x9b\x98\x99\x9e\x9c\x9d\x9f\x9d\x9e\x9e\ +\x9d\x9e\x9c\x9b\x9c\x9a\x9a\x9c\x98\x97\x98\x95\x95\x96\x91\x93\ +\x94\x8e\x8f\x93\x8c\x8e\x92\x8a\x8d\x91\x88\x8b\x8f\x87\x8a\x8e\ +\x85\x88\x8c\x84\x88\x8c\x80\x84\x88\x80\x84\x89\x7e\x83\x86\x7c\ +\x81\x84\x7d\x81\x86\x7c\x81\x85\x7b\x7f\x83\x7b\x7f\x84\x79\x7c\ +\x81\x77\x7d\x82\x73\x79\x7e\x72\x78\x7d\x70\x76\x7c\x68\x6f\x76\ +\x59\x61\x69\x53\x59\x61\x61\x65\x6c\x6a\x6d\x72\x6b\x6f\x74\x66\ +\x6b\x6f\x66\x6a\x70\x6a\x6e\x74\x6b\x70\x74\x6f\x74\x77\x6e\x73\ +\x78\x71\x75\x7a\x7a\x7e\x82\x7b\x80\x84\x79\x7f\x84\x7a\x80\x85\ +\x7a\x80\x85\x7b\x81\x86\x7c\x82\x87\x7c\x83\x88\x78\x81\x86\x6d\ +\x77\x7d\x5e\x68\x70\x67\x6c\x75\x7b\x7f\x84\x85\x8a\x8e\x86\x8a\ +\x8f\x87\x8c\x90\x88\x8e\x91\x8a\x8f\x92\x8a\x8f\x92\x8b\x90\x93\ +\x8c\x91\x94\x8b\x90\x93\x84\x89\x8c\x7e\x83\x86\x81\x85\x88\x88\ +\x8c\x8f\x82\x87\x8a\x80\x84\x87\x84\x88\x8b\x88\x8c\x90\x80\x85\ +\x88\x81\x85\x88\x8b\x8d\x91\x8c\x90\x93\x87\x8a\x8d\x8b\x8e\x90\ +\x93\x96\x98\x90\x94\x95\x88\x8b\x8c\x8a\x8c\x8d\x99\x9a\x9d\xa2\ +\xa3\xa8\xa1\xa2\xa6\xa4\xa5\xa9\xa6\xa7\xab\xa6\xa7\xab\xa6\xa7\ +\xab\xa4\xa5\xa6\xa8\xa7\xa9\xaa\xa9\xab\xa9\xa8\xaa\xa9\xa8\xaa\ +\xaa\xa9\xab\xab\xaa\xac\xad\xac\xaf\xb1\xb0\xb2\xae\xad\xaf\xad\ +\xac\xae\xaf\xb0\xb1\xb0\xb1\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb2\xb2\ +\xb3\xb3\xb2\xb4\xb3\xb2\xb4\xae\xad\xaf\xa3\xa3\xa5\x99\x99\x99\ +\x9b\x9a\x9a\xa5\xa3\xa3\xb0\xae\xad\xa7\xa5\xa5\x9c\x99\x9a\x9e\ +\x9d\x9d\xac\xaa\xa9\xb4\xb2\xb1\xab\xab\xab\x9a\x99\x9a\x98\x97\ +\x98\xa9\xa8\xa9\xb6\xb4\xb4\xaf\xad\xae\xa2\xa1\xa2\x9e\x9c\x9d\ +\xa6\xa4\xa5\xb6\xb4\xb4\xb5\xb3\xb6\xa4\xa2\xa4\x9a\x99\x9a\xa3\ +\xa2\xa1\xb3\xb0\xb0\xba\xb8\xb9\xbd\xbb\xbc\xbf\xbd\xbd\xbe\xbd\ +\xbe\xba\xb9\xbb\xb9\xb8\xba\xb8\xb7\xb9\xb7\xb6\xb8\xba\xb8\xba\ +\xbc\xba\xbd\xbe\xbd\xbf\xbd\xbc\xbe\xbf\xbe\xc0\xc1\xc0\xc2\xc3\ +\xc2\xc4\x00\x00\x00\xd9\xd4\xd2\xd7\xcf\xcd\xd0\xc8\xc5\xc8\xbf\ +\xbb\xbd\xb3\xb0\xa5\x9e\x9a\x84\x83\x80\x65\x68\x6a\x4d\x54\x59\ +\x46\x50\x54\x56\x5a\x5f\x73\x71\x74\x87\x84\x84\x90\x8b\x8c\x99\ +\x94\x95\x9e\x9a\x9b\x9f\x9d\x9e\x9f\x9d\x9e\x9e\x9c\x9c\x9c\x9a\ +\x9c\x99\x98\x9a\x98\x97\x98\x94\x93\x95\x90\x91\x93\x8d\x8f\x93\ +\x8b\x8d\x91\x88\x8b\x90\x85\x88\x8d\x86\x89\x8d\x82\x86\x8a\x83\ +\x86\x8b\x80\x83\x88\x7f\x83\x87\x7e\x82\x86\x7b\x80\x84\x7a\x7f\ +\x82\x79\x7d\x81\x79\x7d\x81\x78\x7c\x81\x79\x7d\x82\x79\x7f\x84\ +\x76\x7c\x81\x76\x7c\x82\x76\x7c\x81\x6b\x72\x78\x5c\x63\x6c\x4a\ +\x50\x5a\x4c\x50\x59\x60\x62\x6a\x60\x63\x69\x59\x5c\x63\x57\x5a\ +\x61\x63\x66\x6c\x6c\x70\x74\x6c\x71\x74\x6f\x73\x78\x6e\x72\x77\ +\x73\x77\x7b\x7a\x80\x83\x7b\x80\x86\x7b\x81\x86\x7b\x80\x85\x7b\ +\x81\x86\x7d\x82\x87\x7f\x85\x8a\x7d\x84\x89\x77\x7f\x84\x6f\x78\ +\x7d\x74\x7a\x80\x7e\x82\x87\x86\x8a\x8f\x88\x8b\x91\x87\x8b\x8f\ +\x88\x8b\x8f\x88\x8d\x90\x89\x8e\x91\x89\x8e\x91\x8d\x92\x95\x8e\ +\x93\x96\x8c\x91\x94\x84\x8a\x8d\x7e\x83\x86\x81\x85\x89\x8a\x8f\ +\x92\x84\x89\x8c\x7f\x84\x87\x85\x88\x8c\x89\x8d\x90\x85\x88\x8c\ +\x84\x87\x8b\x8c\x8f\x92\x90\x94\x97\x8a\x8d\x91\x88\x8c\x8f\x91\ +\x94\x96\x91\x93\x95\x89\x8d\x8e\x8c\x8e\x8f\x97\x99\x9b\x9f\xa0\ +\xa4\xa3\xa4\xa8\xa2\xa4\xa8\xa5\xa6\xa9\xa8\xa7\xa9\xa5\xa4\xa6\ +\xa5\xa4\xa6\xa8\xa7\xa9\xa9\xa8\xab\xaa\xa9\xab\xab\xaa\xab\xab\ +\xaa\xac\xad\xac\xae\xae\xad\xaf\xac\xad\xae\xad\xac\xae\xae\xad\ +\xaf\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb2\xb4\ +\xb3\xb2\xb3\xb1\xb1\xb3\xb1\xb0\xb2\xab\xab\xac\x9c\x9d\x9d\x93\ +\x92\x92\xa0\x9e\x9d\xaf\xad\xac\xae\xae\xac\xa0\xa0\xa0\x9a\x97\ +\x97\xa1\xa0\x9f\xb1\xaf\xb0\xb1\xaf\xb0\xa5\xa4\xa5\x9b\x9a\x9c\ +\xa2\xa0\xa1\xb4\xb2\xb2\xb8\xb7\xb7\xab\xaa\xab\x9c\x99\x9b\xa0\ +\x9e\x9f\xaf\xad\xad\xb6\xb5\xb6\xae\xae\xae\xa1\xa1\xa0\x98\x96\ +\x96\xa7\xa4\xa4\xbb\xb8\xb8\xbe\xbd\xbd\xbd\xbb\xbc\xbd\xba\xbc\ +\xbc\xba\xbc\xba\xb8\xba\xb7\xb6\xb8\xb7\xb6\xb8\xba\xb9\xbb\xc0\ +\xbf\xc1\xc0\xbe\xc0\xc2\xc1\xc3\xc2\xc1\xc3\xc2\xc0\xc2\x00\x00\ +\x00\xd7\xd1\xce\xd5\xce\xcb\xce\xc7\xc3\xc5\xbd\xb9\xb6\xaf\xab\ +\x9b\x96\x94\x7a\x7a\x7c\x5d\x60\x64\x49\x4f\x56\x49\x4f\x55\x5f\ +\x61\x65\x79\x76\x77\x8d\x88\x89\x94\x8f\x90\x9c\x97\x98\x9f\x9b\ +\x9d\x9f\x9d\x9e\x9f\x9c\x9e\x9c\x9a\x9c\x99\x98\x9a\x95\x94\x96\ +\x91\x90\x92\x8f\x90\x91\x8e\x90\x92\x8d\x8e\x91\x8a\x8c\x8e\x87\ +\x89\x8b\x84\x86\x8a\x83\x85\x89\x81\x85\x89\x81\x84\x88\x80\x83\ +\x87\x7d\x82\x85\x7c\x81\x85\x7c\x80\x85\x7b\x7f\x84\x79\x7d\x82\ +\x78\x7c\x81\x77\x7b\x80\x7a\x7e\x83\x78\x7c\x81\x77\x7c\x81\x76\ +\x7d\x82\x74\x7a\x7f\x6f\x74\x7a\x55\x5c\x64\x3c\x45\x4f\x32\x3a\ +\x43\x4b\x4e\x57\x52\x54\x5d\x3d\x40\x49\x3c\x3f\x49\x53\x55\x5c\ +\x6a\x6d\x72\x6f\x73\x77\x6d\x71\x76\x70\x74\x79\x6e\x73\x77\x74\ +\x79\x7c\x7b\x80\x83\x7b\x7f\x83\x7c\x81\x85\x7e\x83\x87\x7d\x82\ +\x87\x7e\x83\x88\x80\x85\x8a\x80\x85\x8a\x7e\x85\x89\x82\x87\x8c\ +\x85\x89\x8e\x86\x8a\x8f\x85\x89\x8e\x87\x8b\x8f\x86\x89\x8d\x89\ +\x8c\x90\x8b\x8e\x92\x8d\x91\x95\x8d\x92\x95\x8d\x92\x95\x8f\x94\ +\x97\x8d\x92\x95\x85\x8a\x8d\x80\x85\x88\x84\x89\x8c\x8a\x8f\x92\ +\x84\x89\x8c\x80\x85\x88\x87\x8a\x8e\x8e\x91\x95\x88\x8b\x8f\x85\ +\x88\x8c\x8d\x90\x93\x91\x95\x97\x8a\x8d\x92\x89\x8b\x90\x90\x93\ +\x95\x95\x99\x9a\x8f\x91\x92\x89\x8b\x8c\x92\x94\x95\xa1\xa2\xa4\ +\xa4\xa4\xa7\xa6\xa7\xaa\xa9\xa8\xab\xa9\xa8\xaa\xaa\xa9\xab\xa9\ +\xa8\xaa\xa9\xa8\xaa\xaa\xa9\xac\xab\xaa\xad\xaa\xa9\xab\xac\xad\ +\xae\xac\xab\xad\xac\xab\xad\xab\xaa\xac\xad\xac\xae\xaf\xae\xb0\ +\xaf\xae\xb0\xb1\xb0\xb2\xb1\xb2\xb3\xb3\xb4\xb5\xb3\xb3\xb5\xb2\ +\xb1\xb3\xb2\xb1\xb3\xb3\xb2\xb4\xac\xac\xad\x9f\xa0\xa0\x94\x96\ +\x96\x99\x97\x98\xab\xaa\xaa\xb3\xb1\xb1\xa8\xa8\xa8\x9b\x9a\x9c\ +\x9b\x9a\x9c\xac\xab\xac\xb7\xb6\xb7\xae\xae\xaf\x9f\x9e\x9f\x9c\ +\x9a\x9c\xab\xa8\xa9\xb5\xb3\xb3\xb3\xb0\xb1\xa7\xa5\xa6\x99\x97\ +\x99\xa6\xa3\xa5\xb6\xb4\xb4\xb7\xb6\xb8\xab\xaa\xac\x9e\x9c\x9d\ +\x9f\x9b\x9c\xb1\xad\xae\xbf\xbd\xbe\xbe\xbb\xbd\xbe\xbb\xbd\xbf\ +\xbd\xbf\xbe\xbd\xbf\xbc\xbb\xbd\xbe\xbd\xbf\xc0\xbd\xbf\xc0\xbe\ +\xbf\xc1\xbf\xc1\xc3\xc2\xc4\xc3\xc0\xc2\x00\x00\x00\xd6\xcf\xcc\ +\xd3\xcb\xc7\xcc\xc3\xbf\xc0\xb8\xb4\xad\xa6\xa5\x8f\x8c\x8d\x6f\ +\x71\x72\x56\x5c\x60\x49\x4e\x54\x50\x54\x5a\x68\x67\x6b\x82\x7e\ +\x7f\x8f\x8a\x8b\x98\x93\x94\x9e\x99\x9b\x9f\x9b\x9d\x9f\x9c\x9e\ +\x9e\x9b\x9d\x9c\x9a\x9c\x98\x97\x99\x8d\x8c\x8e\x88\x88\x89\x84\ +\x86\x86\x89\x8b\x8d\x8b\x8c\x90\x87\x88\x8c\x87\x88\x8a\x82\x84\ +\x88\x81\x83\x87\x80\x83\x87\x80\x83\x87\x7f\x83\x86\x7c\x7f\x83\ +\x7c\x7f\x83\x7b\x7f\x82\x7b\x7f\x83\x7b\x7f\x84\x79\x7d\x82\x77\ +\x7b\x80\x77\x7b\x80\x78\x7d\x82\x77\x7a\x80\x76\x7b\x81\x74\x7a\ +\x7f\x68\x6d\x73\x4f\x56\x5e\x31\x3d\x45\x2a\x36\x3f\x3c\x42\x4b\ +\x42\x46\x4f\x23\x2a\x33\x20\x26\x2f\x49\x4c\x54\x65\x68\x6d\x70\ +\x74\x79\x6f\x72\x77\x6e\x72\x77\x6e\x72\x77\x70\x74\x78\x77\x7a\ +\x7e\x74\x77\x7b\x6b\x6e\x73\x70\x72\x76\x7a\x7e\x82\x7d\x83\x87\ +\x7f\x85\x89\x80\x86\x8b\x81\x87\x8c\x83\x88\x8d\x86\x8a\x8f\x86\ +\x8a\x8e\x84\x89\x8d\x85\x89\x8c\x86\x89\x8d\x8c\x8f\x93\x8c\x8f\ +\x93\x8c\x8f\x93\x8d\x91\x94\x8e\x93\x96\x91\x96\x99\x92\x97\x9a\ +\x8e\x93\x96\x85\x8a\x8d\x81\x86\x89\x81\x86\x89\x8a\x8f\x91\x85\ +\x8a\x8d\x83\x88\x8c\x88\x8b\x8f\x8e\x92\x96\x89\x8c\x90\x87\x89\ +\x8d\x8d\x8f\x93\x92\x96\x99\x8c\x8f\x93\x87\x8a\x8e\x96\x98\x9b\ +\x9a\x9c\x9d\x8f\x91\x92\x8b\x8d\x8e\x92\x92\x95\xa4\xa3\xa5\xa8\ +\xa7\xaa\xa8\xa7\xaa\xa9\xa8\xaa\xa8\xa7\xa9\xa6\xa5\xa7\xa7\xa6\ +\xa8\xaa\xa9\xab\xab\xaa\xac\xac\xab\xad\xad\xad\xae\xad\xac\xae\ +\xab\xaa\xac\xab\xaa\xac\xaf\xb0\xb1\xb1\xb0\xb2\xb0\xaf\xb1\xb0\ +\xb0\xb1\xb1\xb0\xb2\xb1\xb2\xb4\xb1\xb1\xb3\xb0\xaf\xb1\xb0\xaf\ +\xb1\xb4\xb3\xb5\xb6\xb5\xb7\xb0\xb1\xb2\xaa\xac\xad\x9a\x9d\x9e\ +\x97\x96\x96\xa5\xa3\xa4\xb2\xb1\xb1\xae\xae\xaf\x9f\x9e\xa1\x99\ +\x98\x9a\xa5\xa3\xa5\xb5\xb4\xb5\xb4\xb4\xb5\xa7\xa6\xa7\x99\x97\ +\x99\xa1\x9e\x9f\xb1\xaf\xb0\xbb\xb9\xb9\xb0\xb0\xb1\xa0\x9f\xa0\ +\x9e\x9c\x9e\xb0\xaf\xb0\xb9\xb8\xb9\xb6\xb5\xb5\xa6\xa4\xa4\x9c\ +\x99\x99\xab\xa6\xa7\xbb\xb8\xb9\xbf\xbc\xbe\xbf\xbd\xbf\xc0\xbf\ +\xc1\xc1\xbf\xc1\xbf\xbd\xbf\xbe\xbb\xbc\xbf\xbd\xbe\xc1\xbe\xc0\ +\xc0\xbf\xc1\xc1\xc1\xc2\x00\x00\x00\xd6\xcf\xcc\xd1\xc8\xc5\xc8\ +\xc0\xbc\xbb\xb3\xb1\xa2\x9c\x9d\x83\x80\x82\x66\x69\x6c\x51\x56\ +\x5b\x49\x4e\x53\x59\x5a\x5d\x73\x71\x72\x88\x82\x83\x92\x8e\x8f\ +\x9a\x95\x96\x9c\x97\x99\x9e\x9a\x9c\x9e\x9c\x9e\x9c\x9a\x9c\x99\ +\x98\x99\x90\x90\x91\x87\x86\x88\x7f\x80\x82\x81\x83\x84\x85\x86\ +\x89\x87\x87\x8a\x89\x8a\x8e\x85\x88\x8b\x83\x86\x8a\x80\x83\x87\ +\x80\x84\x88\x7d\x81\x85\x7e\x81\x84\x7e\x81\x85\x7c\x7f\x84\x79\ +\x7d\x82\x7a\x7e\x83\x79\x7d\x82\x77\x7b\x80\x77\x7b\x80\x78\x7c\ +\x81\x77\x7c\x80\x79\x7c\x81\x78\x7e\x83\x74\x7a\x7f\x63\x69\x70\ +\x44\x4d\x57\x23\x32\x3c\x2a\x37\x42\x33\x3b\x45\x32\x38\x41\x18\ +\x21\x2a\x19\x22\x2b\x40\x44\x4c\x63\x66\x6b\x6d\x71\x76\x70\x75\ +\x79\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x6f\x73\x78\x6b\x6e\x73\ +\x4e\x51\x59\x43\x43\x4b\x60\x5e\x64\x7c\x7e\x82\x7e\x82\x86\x7f\ +\x84\x88\x83\x89\x8d\x83\x88\x8c\x84\x89\x8d\x85\x89\x8e\x84\x89\ +\x8c\x82\x87\x8a\x85\x87\x8b\x89\x8c\x90\x8d\x90\x94\x8d\x90\x94\ +\x90\x94\x97\x8f\x94\x97\x90\x95\x98\x91\x96\x99\x90\x95\x98\x90\ +\x95\x98\x8a\x8f\x92\x80\x85\x88\x83\x87\x8a\x8d\x90\x94\x8a\x8d\ +\x91\x84\x87\x8b\x87\x89\x8d\x90\x91\x95\x8d\x8f\x93\x87\x8a\x8e\ +\x8c\x8e\x92\x95\x97\x9b\x8f\x90\x94\x8e\x8f\x93\x92\x94\x97\x9b\ +\x9d\x9e\x93\x95\x96\x8a\x8b\x8e\x8e\x90\x91\xa1\xa0\xa2\xa8\xa7\ +\xa9\xa6\xa7\xa7\xa9\xa9\xaa\xa9\xa8\xaa\xaa\xa9\xab\xac\xab\xad\ +\xac\xac\xae\xae\xaf\xb0\xae\xae\xb0\xae\xad\xaf\xab\xaa\xac\xae\ +\xad\xaf\xb2\xb1\xb3\xb2\xb1\xb3\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\ +\xb2\xb2\xb1\xb3\xb1\xb1\xb2\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\ +\xb6\xb5\xb7\xb5\xb4\xb6\xb2\xb3\xb4\xad\xb0\xb1\xa4\xa4\xa6\x97\ +\x95\x97\x96\x95\x97\xa9\xa7\xa8\xb2\xb1\xb2\xa7\xa6\xa8\x9b\x9a\ +\x9c\x9e\x9c\x9e\xae\xad\xac\xb7\xb6\xb8\xae\xae\xb0\x9d\x9c\x9f\ +\x9b\x9a\x9c\xac\xab\xab\xb9\xb8\xb7\xb7\xb7\xb7\xab\xab\xac\x9a\ +\x9a\x9a\xa1\xa0\xa1\xb6\xb2\xb2\xbe\xba\xbb\xb6\xb3\xb4\xa3\xa0\ +\xa1\xa0\x9b\x9d\xb1\xad\xaf\xbe\xba\xbb\xc0\xbd\xbe\xc2\xc0\xc2\ +\xbf\xbc\xbe\xbe\xbb\xbd\xbd\xbc\xbd\xbd\xbb\xbd\xc0\xbd\xbf\xc3\ +\xc1\xc2\x00\x00\x00\xd6\xcd\xca\xce\xc6\xc2\xc4\xbc\xb8\xb3\xac\ +\xa9\x97\x92\x91\x76\x76\x77\x5d\x60\x65\x4b\x51\x58\x4d\x51\x57\ +\x62\x62\x65\x7b\x76\x76\x89\x84\x84\x96\x90\x91\x9c\x96\x98\x9f\ +\x9a\x9c\x9e\x9b\x9d\x9c\x99\x9b\x9d\x9a\x9c\x98\x96\x98\x88\x88\ +\x89\x7e\x7f\x80\x7c\x7d\x7f\x7c\x7d\x7f\x7c\x7e\x7f\x85\x86\x88\ +\x87\x89\x8c\x85\x88\x8c\x82\x85\x89\x80\x83\x87\x7e\x82\x85\x7e\ +\x82\x85\x7d\x80\x84\x7b\x7f\x82\x7b\x7e\x83\x7b\x7f\x83\x79\x7d\ +\x82\x78\x7c\x81\x76\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\x77\x7a\x80\ +\x76\x7b\x7e\x76\x7a\x80\x71\x76\x7b\x59\x61\x69\x39\x45\x50\x26\ +\x35\x42\x2f\x3c\x47\x3b\x44\x4d\x23\x2b\x34\x11\x1b\x25\x22\x2b\ +\x35\x49\x4f\x56\x66\x69\x6e\x6d\x71\x76\x71\x75\x7a\x6f\x73\x78\ +\x6e\x72\x77\x72\x76\x7b\x72\x76\x7b\x68\x6c\x71\x3c\x43\x4b\x0d\ +\x13\x1c\x2f\x2e\x36\x6c\x6a\x6f\x80\x83\x87\x80\x85\x89\x83\x88\ +\x8d\x86\x8b\x8f\x85\x8a\x8d\x84\x89\x8c\x84\x88\x8c\x7e\x82\x86\ +\x79\x7c\x80\x7d\x81\x83\x89\x8c\x90\x8e\x91\x95\x90\x93\x97\x90\ +\x95\x98\x90\x95\x98\x8f\x94\x97\x8f\x94\x97\x90\x94\x98\x92\x97\ +\x9a\x89\x8e\x91\x83\x86\x8a\x82\x86\x8a\x8e\x91\x95\x8c\x8f\x93\ +\x84\x87\x8b\x87\x88\x8d\x90\x93\x97\x8c\x8f\x93\x86\x89\x8d\x8d\ +\x8f\x92\x9b\x9c\x9f\x95\x96\x99\x8c\x8d\x91\x90\x90\x92\x9b\x9a\ +\x9c\x96\x97\x9a\x8b\x8d\x8f\x8e\x8f\x91\x9e\x9e\x9f\xa9\xa9\xaa\ +\xa9\xa9\xaa\xaa\xa9\xab\xa9\xa8\xaa\xab\xaa\xac\xad\xac\xae\xad\ +\xad\xaf\xad\xad\xaf\xad\xab\xad\xae\xad\xaf\xb0\xaf\xb1\xb1\xb0\ +\xb2\xb2\xb1\xb3\xb1\xb0\xb2\xb2\xb0\xb2\xb1\xb1\xb3\xb2\xb2\xb4\ +\xb2\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb3\xb2\xb4\xb5\xb5\xb6\xb6\ +\xb5\xb7\xb3\xb3\xb5\xb6\xb5\xb7\xb4\xb3\xb4\xac\xab\xad\x9d\x9c\ +\x9e\x99\x97\x99\xa3\xa2\xa4\xb5\xb4\xb6\xb5\xb4\xb6\xa3\xa2\xa4\ +\x9a\x99\x9b\xa6\xa5\xa6\xb5\xb4\xb5\xb4\xb4\xb4\xa4\xa4\xa6\x97\ +\x97\x97\xa3\xa1\xa1\xb6\xb4\xb4\xbe\xbc\xbc\xb2\xb0\xb1\xa0\x9e\ +\x9e\x9d\x99\x99\xb2\xad\xae\xbe\xbc\xbb\xbc\xba\xba\xac\xa9\xaa\ +\x9d\x99\x9b\xa7\xa2\xa3\xbb\xb8\xb9\xc0\xbd\xbe\xbd\xba\xbc\xbe\ +\xbb\xbd\xc0\xbe\xbf\xbd\xba\xbd\xc0\xbd\xbf\xc0\xbe\xbf\x00\x00\ +\x00\xd3\xca\xc6\xcb\xc2\xbf\xc0\xb7\xb3\xaa\xa3\xa0\x8a\x88\x86\ +\x6b\x6d\x6e\x56\x59\x60\x49\x4c\x56\x52\x54\x5b\x6b\x68\x6a\x82\ +\x7d\x7b\x8f\x8a\x89\x97\x91\x92\x9d\x98\x9a\x9e\x9b\x9d\x9f\x9c\ +\x9e\x9d\x9a\x9c\x9b\x9a\x9c\x92\x91\x93\x83\x84\x86\x79\x7b\x7c\ +\x76\x78\x79\x73\x75\x76\x7b\x7d\x7d\x82\x83\x87\x83\x85\x89\x80\ +\x83\x87\x82\x83\x87\x7f\x82\x86\x7a\x7d\x81\x7c\x7f\x83\x7d\x81\ +\x85\x7c\x81\x84\x7a\x7f\x82\x78\x7c\x80\x77\x7c\x80\x77\x7c\x80\ +\x77\x7b\x80\x76\x7b\x80\x77\x7b\x7f\x75\x7a\x7d\x76\x79\x7f\x76\ +\x7b\x80\x73\x78\x7e\x5e\x67\x6e\x3b\x4a\x53\x31\x40\x4b\x3b\x48\ +\x50\x40\x4b\x53\x23\x31\x3b\x0f\x1d\x27\x2b\x36\x40\x56\x5b\x63\ +\x6a\x6e\x73\x6f\x73\x78\x6b\x6f\x74\x6f\x73\x78\x71\x75\x7a\x6f\ +\x74\x78\x72\x77\x79\x6a\x6f\x73\x44\x4c\x55\x0f\x18\x21\x0d\x10\ +\x17\x4c\x4c\x52\x7a\x7b\x7f\x80\x84\x88\x83\x88\x8c\x85\x8a\x8e\ +\x85\x89\x8e\x84\x88\x8c\x87\x8c\x90\x85\x8a\x8d\x7b\x80\x83\x7d\ +\x81\x84\x83\x86\x8a\x8c\x90\x93\x8f\x93\x97\x90\x94\x98\x90\x95\ +\x99\x8f\x93\x96\x92\x97\x9a\x92\x95\x99\x93\x97\x9a\x92\x96\x9a\ +\x8c\x91\x94\x84\x88\x8d\x83\x86\x8a\x8b\x8e\x92\x8a\x8d\x91\x84\ +\x87\x8b\x87\x89\x8d\x92\x93\x97\x93\x95\x98\x8a\x8c\x8f\x8c\x8d\ +\x90\x99\x9a\x9d\x97\x98\x9b\x8e\x8f\x90\x8f\x8e\x90\x9a\x99\x9b\ +\x9a\x9c\x9d\x91\x93\x94\x90\x91\x94\x9b\x9b\x9c\xa8\xa8\xa8\xa7\ +\xa7\xa8\xa8\xa7\xa9\xaa\xa9\xab\xab\xaa\xac\xaa\xa9\xab\xae\xad\ +\xaf\xae\xad\xaf\xae\xad\xaf\xac\xab\xad\xb0\xaf\xb1\xb3\xb2\xb4\ +\xb2\xb1\xb3\xaf\xae\xb0\xb1\xb0\xb2\xb3\xb2\xb4\xb2\xb1\xb2\xb3\ +\xb2\xb3\xb4\xb3\xb4\xb3\xb2\xb3\xb5\xb4\xb6\xb6\xb5\xb7\xb5\xb4\ +\xb6\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb3\xb3\xb3\xa3\xa3\xa4\ +\x97\x96\x98\xa0\x9f\xa1\xb2\xb1\xb3\xb6\xb6\xb7\xaa\xab\xad\x98\ +\x99\x99\x9c\x9a\x9a\xae\xaa\xaa\xb7\xb6\xb7\xb1\xb0\xb1\xa3\xa2\ +\xa2\x9c\x99\x9a\xac\xa9\xa9\xbd\xb9\xba\xbb\xb9\xb9\xae\xac\xac\ +\x9e\x9b\x9c\xa5\xa1\xa3\xb6\xb3\xb4\xbd\xba\xbb\xb7\xb4\xb6\xa7\ +\xa4\xa6\x9e\x9b\x9c\xab\xa7\xa9\xba\xb7\xb9\xc2\xbf\xc1\xbd\xbb\ +\xbc\xc0\xbd\xbf\xbf\xbd\xbf\xc0\xbe\xbf\x00\x00\x00\xcf\xc6\xc2\ +\xc5\xbb\xb9\xb8\xaf\xac\xa1\x9b\x98\x80\x80\x7e\x63\x66\x68\x4f\ +\x53\x5a\x4c\x50\x59\x5a\x5a\x60\x75\x71\x73\x87\x82\x80\x93\x8c\ +\x8e\x9a\x95\x96\x9e\x99\x9b\xa0\x9e\x9f\x9e\x9b\x9d\x9d\x9a\x9c\ +\x98\x97\x99\x8c\x8c\x8e\x7e\x7f\x80\x78\x7a\x7b\x74\x76\x77\x72\ +\x74\x75\x7b\x7d\x7e\x7f\x81\x83\x7e\x80\x84\x81\x84\x88\x80\x83\ +\x87\x7e\x81\x85\x7e\x81\x85\x7d\x81\x84\x7c\x81\x84\x7b\x7f\x83\ +\x7a\x7f\x82\x79\x7e\x81\x77\x7c\x7f\x77\x7c\x80\x77\x7b\x80\x78\ +\x7c\x80\x76\x7b\x7e\x76\x7b\x7e\x76\x7a\x7f\x76\x7a\x7f\x72\x78\ +\x7d\x62\x6b\x71\x4c\x59\x61\x48\x57\x5f\x54\x60\x65\x54\x5e\x64\ +\x3b\x49\x54\x21\x32\x3f\x36\x45\x4f\x5e\x65\x6d\x6a\x6d\x73\x6e\ +\x72\x77\x6e\x72\x77\x6e\x72\x77\x71\x76\x7b\x6e\x73\x77\x6e\x73\ +\x77\x6f\x74\x77\x54\x5e\x63\x23\x31\x39\x05\x13\x19\x31\x3a\x41\ +\x6d\x71\x77\x7f\x84\x89\x80\x85\x89\x84\x89\x8c\x85\x89\x8d\x84\ +\x88\x8c\x86\x8b\x8f\x87\x8b\x8e\x85\x8a\x8d\x84\x89\x8c\x87\x8c\ +\x90\x8e\x91\x95\x8e\x93\x96\x91\x95\x99\x92\x96\x9a\x91\x95\x99\ +\x90\x94\x98\x92\x95\x99\x94\x97\x9b\x94\x99\x9c\x95\x9a\x9e\x8f\ +\x93\x98\x87\x8a\x8e\x85\x88\x8d\x8e\x91\x95\x8d\x90\x94\x87\x8a\ +\x8d\x89\x8b\x8e\x94\x96\x99\x93\x95\x97\x8e\x90\x92\x8f\x8f\x91\ +\x97\x96\x98\x98\x99\x9b\x90\x92\x96\x90\x91\x94\x98\x98\x9a\x9e\ +\x9d\x9f\x93\x94\x95\x8d\x8e\x8f\x98\x97\x99\xa6\xa5\xa7\xac\xab\ +\xad\xac\xab\xad\xab\xaa\xac\xaa\xa9\xab\xac\xab\xad\xae\xad\xae\ +\xae\xad\xaf\xae\xad\xaf\xae\xaf\xb1\xb2\xb1\xb3\xb2\xb1\xb3\xaf\ +\xb0\xb2\xb0\xaf\xb1\xb3\xb2\xb4\xb4\xb3\xb5\xb4\xb3\xb5\xb3\xb2\ +\xb4\xb5\xb4\xb5\xb6\xb5\xb6\xb6\xb5\xb6\xb5\xb3\xb5\xb3\xb2\xb4\ +\xb4\xb3\xb4\xb8\xb7\xb9\xb4\xb3\xb5\xb3\xb3\xb3\xab\xab\xac\x9d\ +\x9e\x9f\x9d\x9b\x9d\xae\xac\xae\xb9\xb8\xb9\xb0\xb0\xb0\xa1\x9f\ +\x9f\x9b\x99\x99\xa8\xa5\xa6\xb8\xb5\xb7\xbb\xb9\xb9\xaa\xaa\xaa\ +\x9c\x99\x9b\xa1\x9e\x9e\xb3\xb0\xb0\xbe\xbc\xbc\xb7\xb6\xb6\xa7\ +\xa5\xa5\xa2\x9e\xa0\xaa\xa6\xa8\xbb\xb8\xb9\xbe\xbc\xbc\xb6\xb4\ +\xb5\xa1\x9f\xa1\xa0\x9d\x9f\xb4\xb0\xb2\xbd\xba\xbb\xc0\xbd\xbf\ +\xbd\xbb\xbc\xc1\xbf\xbe\x00\x00\x00\xcd\xc4\xc1\xc2\xb9\xb6\xb1\ +\xa9\xa6\x93\x90\x8e\x72\x76\x75\x58\x5e\x60\x49\x50\x56\x4d\x50\ +\x58\x61\x61\x67\x7e\x79\x7b\x8c\x86\x87\x96\x90\x91\x99\x94\x96\ +\x9b\x97\x99\x9e\x9b\x9c\x9c\x99\x9b\x9c\x9a\x9c\x95\x94\x96\x89\ +\x88\x8a\x7b\x7d\x7e\x75\x78\x79\x73\x76\x77\x73\x76\x77\x77\x79\ +\x7a\x7b\x7d\x7f\x7c\x7e\x82\x7f\x82\x86\x7f\x82\x86\x7e\x82\x86\ +\x7b\x80\x83\x7c\x80\x83\x79\x7d\x81\x7a\x7e\x82\x7a\x7e\x81\x78\ +\x7c\x7f\x77\x7c\x7f\x76\x7b\x7e\x75\x79\x7e\x76\x7a\x7e\x78\x7d\ +\x81\x75\x79\x7f\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x6c\x73\x79\ +\x67\x6f\x76\x60\x6a\x70\x65\x6e\x74\x64\x6e\x71\x55\x63\x69\x44\ +\x55\x60\x49\x56\x60\x63\x69\x71\x69\x70\x77\x69\x6f\x74\x6d\x72\ +\x77\x71\x75\x7a\x6e\x73\x78\x72\x77\x7c\x6e\x73\x77\x6f\x75\x78\ +\x6b\x71\x77\x4a\x57\x60\x2d\x43\x4c\x3e\x4f\x57\x66\x6e\x74\x7d\ +\x83\x87\x82\x87\x8a\x85\x88\x8d\x86\x8a\x8f\x84\x87\x8c\x86\x8b\ +\x8f\x88\x8c\x90\x89\x8d\x92\x8a\x8e\x92\x8d\x91\x95\x91\x94\x98\ +\x8e\x92\x96\x90\x95\x98\x91\x95\x9a\x90\x94\x99\x91\x96\x9b\x91\ +\x94\x98\x93\x96\x9a\x97\x9a\x9d\x95\x98\x9c\x96\x99\x9e\x91\x95\ +\x98\x88\x8c\x8f\x83\x86\x8a\x88\x8b\x8f\x8e\x91\x94\x89\x8c\x8e\ +\x87\x89\x8c\x93\x95\x96\x97\x98\x9a\x92\x93\x96\x8d\x8d\x8f\x96\ +\x96\x98\x9a\x9c\x9e\x95\x96\x9a\x91\x92\x94\x98\x97\x99\x9c\x9b\ +\x9d\x96\x97\x98\x91\x92\x95\x96\x96\x99\xa2\xa1\xa4\xa9\xa9\xaa\ +\xac\xab\xad\xad\xac\xae\xad\xac\xad\xaf\xae\xaf\xaf\xae\xb0\xac\ +\xac\xae\xad\xaf\xb0\xb0\xaf\xb1\xb0\xaf\xb1\xb0\xaf\xb1\xaf\xae\ +\xb0\xb1\xb0\xb2\xb2\xb2\xb3\xb4\xb4\xb4\xb3\xb3\xb3\xb4\xb5\xb4\ +\xb6\xb6\xb7\xb5\xb5\xb5\xb3\xb2\xb3\xb3\xb2\xb4\xb2\xb2\xb3\xb7\ +\xb6\xb7\xb5\xb4\xb6\xb5\xb5\xb5\xb7\xb7\xb7\xb3\xb4\xb5\xa6\xa7\ +\xa8\x9d\x9d\x9e\xa6\xa5\xa7\xb1\xaf\xb0\xb6\xb4\xb4\xab\xaa\xa9\ +\x9c\x9a\x9b\xa2\xa0\xa2\xb4\xb1\xb2\xbb\xba\xba\xb3\xb3\xb3\xa4\ +\xa3\xa4\x9a\x97\x98\xa9\xa5\xa6\xba\xb8\xb8\xbc\xbc\xba\xb1\xb0\ +\xaf\xa2\xa0\xa1\xa5\xa1\xa3\xb3\xb0\xb1\xc0\xbd\xbe\xba\xb9\xbb\ +\xa7\xa6\xa8\x9e\x9b\x9d\xa5\xa2\xa5\xb6\xb3\xb5\xbe\xbb\xbd\xc0\ +\xbc\xbd\x00\x00\x00\xc9\xc0\xbc\xbc\xb4\xb0\xa7\xa1\x9f\x88\x86\ +\x86\x69\x6e\x6f\x4f\x57\x5a\x49\x50\x56\x57\x58\x5f\x6e\x6b\x6f\ +\x83\x7e\x80\x90\x8a\x8c\x99\x94\x96\x9b\x97\x99\x9b\x97\x99\x9e\ +\x9b\x9d\x9b\x98\x9a\x99\x97\x99\x92\x90\x93\x82\x82\x84\x78\x7a\ +\x7b\x73\x75\x76\x6f\x72\x73\x76\x78\x79\x79\x7b\x7c\x77\x79\x7a\ +\x7a\x7d\x80\x7d\x80\x84\x7e\x81\x85\x7d\x80\x84\x7c\x80\x84\x7b\ +\x7f\x83\x7a\x7f\x82\x78\x7d\x80\x77\x7c\x7f\x77\x7c\x7f\x76\x7c\ +\x7e\x76\x7b\x7f\x76\x7a\x7e\x76\x7a\x7f\x76\x7b\x7f\x75\x79\x7d\ +\x75\x7a\x7e\x74\x79\x7e\x75\x7a\x7f\x74\x79\x7e\x71\x77\x7d\x70\ +\x77\x7b\x70\x77\x7b\x71\x79\x7c\x6b\x75\x79\x61\x6c\x72\x5e\x67\ +\x6e\x68\x6e\x74\x70\x76\x7c\x6d\x73\x78\x6d\x73\x78\x70\x75\x7a\ +\x6f\x73\x78\x6e\x73\x78\x6f\x74\x78\x6f\x75\x78\x70\x76\x78\x63\ +\x6b\x70\x54\x60\x66\x5e\x68\x6e\x76\x7c\x80\x7f\x84\x87\x81\x86\ +\x8a\x85\x88\x8d\x84\x89\x8d\x89\x8d\x92\x88\x8c\x90\x87\x8b\x8f\ +\x8a\x8e\x93\x8a\x8f\x93\x8c\x91\x95\x8f\x92\x97\x8e\x92\x96\x8f\ +\x94\x97\x90\x94\x98\x91\x95\x99\x92\x95\x9a\x90\x94\x98\x94\x98\ +\x9b\x95\x98\x9c\x95\x99\x9d\x96\x9a\x9d\x96\x99\x9d\x93\x96\x9b\ +\x88\x8b\x90\x83\x86\x8a\x8a\x8d\x8f\x90\x93\x94\x8d\x8f\x91\x88\ +\x8b\x8c\x91\x91\x93\x98\x98\x9a\x93\x93\x95\x8d\x8f\x90\x97\x97\ +\x98\x9e\x9e\x9f\x97\x99\x9b\x90\x91\x95\x92\x92\x94\x9a\x9c\x9d\ +\x9b\x9c\x9e\x90\x91\x96\x92\x94\x97\xa0\xa0\xa2\xa9\xa8\xaa\xae\ +\xad\xaf\xad\xad\xae\xab\xab\xac\xae\xad\xaf\xaf\xae\xb0\xad\xab\ +\xae\xae\xae\xb0\xaf\xae\xb0\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\ +\xb2\xb2\xb2\xb3\xb3\xb3\xb2\xb2\xb2\xb3\xb3\xb3\xb5\xb5\xb6\xb4\ +\xb3\xb4\xb2\xb2\xb2\xb4\xb3\xb4\xb4\xb3\xb4\xb5\xb4\xb5\xb5\xb4\ +\xb6\xb8\xb7\xb9\xb6\xb6\xb6\xb7\xb6\xb8\xb6\xb5\xb7\xb1\xb0\xb2\ +\xa5\xa4\xa4\xa3\xa1\xa1\xad\xab\xab\xb8\xb6\xb6\xb3\xb2\xb2\xa6\ +\xa4\xa5\xa1\x9e\xa0\xab\xa8\xa9\xb8\xb7\xb7\xbb\xba\xba\xb2\xb1\ +\xb1\xa0\x9d\x9e\xa0\x9d\x9d\xae\xac\xab\xbb\xb9\xb8\xba\xb8\xb9\ +\xab\xa9\xab\xa1\x9e\xa0\xa9\xa6\xa8\xb6\xb3\xb6\xbf\xbd\xbf\xb6\ +\xb4\xb6\xa5\xa2\xa4\xa1\x9d\x9f\xae\xa9\xab\xb8\xb3\xb5\x00\x00\ +\x00\xc5\xbc\xb8\xb6\xae\xab\x9b\x97\x95\x7c\x7b\x7c\x5e\x64\x65\ +\x49\x51\x54\x4a\x50\x55\x5c\x5d\x61\x76\x73\x75\x89\x84\x86\x93\ +\x8e\x90\x99\x96\x97\x9a\x97\x98\x9c\x99\x9a\x9d\x9a\x9c\x99\x96\ +\x98\x97\x95\x97\x8e\x8d\x8f\x7d\x7e\x7f\x74\x76\x77\x6d\x71\x72\ +\x6c\x6f\x70\x76\x78\x79\x76\x79\x7a\x74\x77\x78\x79\x7a\x7d\x79\ +\x7b\x7f\x7c\x7f\x81\x7c\x7f\x83\x7c\x7f\x83\x7b\x7e\x82\x7a\x7e\ +\x82\x78\x7d\x81\x77\x7c\x7f\x77\x7c\x7f\x75\x7a\x7e\x76\x7b\x7e\ +\x76\x7b\x7f\x76\x7a\x7e\x75\x79\x7d\x74\x78\x7c\x73\x78\x7d\x75\ +\x7a\x7f\x75\x7a\x7f\x73\x79\x7e\x74\x79\x7d\x76\x7b\x7f\x75\x7a\ +\x7f\x76\x7c\x7f\x75\x7c\x80\x6f\x77\x7c\x6c\x73\x79\x6b\x71\x77\ +\x6d\x73\x78\x6f\x75\x7b\x6c\x72\x77\x6e\x73\x78\x70\x76\x7b\x6d\ +\x72\x76\x70\x76\x79\x70\x75\x79\x6e\x73\x76\x66\x6c\x70\x63\x6b\ +\x6f\x6a\x71\x74\x7a\x7e\x82\x83\x86\x8a\x84\x88\x8c\x84\x87\x8c\ +\x86\x89\x8d\x87\x8b\x8f\x89\x8d\x93\x8a\x8e\x93\x89\x8d\x92\x8c\ +\x90\x95\x8e\x91\x95\x8e\x92\x96\x90\x94\x98\x92\x96\x99\x90\x93\ +\x97\x91\x93\x97\x91\x93\x97\x92\x95\x99\x93\x96\x9a\x94\x97\x9a\ +\x94\x98\x9c\x95\x98\x9c\x99\x9c\xa0\x97\x9a\x9f\x93\x96\x9b\x8c\ +\x8f\x93\x86\x89\x8d\x8a\x8c\x8f\x91\x94\x95\x8e\x90\x92\x88\x8a\ +\x8c\x91\x92\x93\x9b\x9c\x9d\x97\x98\x99\x92\x92\x94\x95\x95\x97\ +\xa0\xa1\xa3\x9e\x9f\xa3\x91\x94\x96\x91\x92\x95\x99\x9b\x9d\x9b\ +\x9d\xa0\x93\x95\x98\x92\x93\x95\x9e\x9e\xa0\xaa\xa9\xab\xad\xac\ +\xae\xad\xac\xae\xae\xad\xaf\xab\xaa\xac\xad\xac\xae\xae\xad\xaf\ +\xae\xad\xaf\xb1\xb0\xb2\xb0\xaf\xb1\xb1\xb1\xb2\xb1\xb1\xb1\xb0\ +\xb0\xb0\xb2\xb2\xb2\xb2\xb2\xb2\xb1\xb1\xb2\xb2\xb1\xb2\xb1\xb0\ +\xb2\xb3\xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb6\xb5\xb7\xb8\xb7\xb9\ +\xb8\xb7\xb8\xb8\xb7\xb9\xb8\xb7\xb9\xb8\xb7\xb8\xb5\xb5\xb5\xaa\ +\xaa\xaa\x9e\x9d\x9e\xa3\xa1\xa3\xb2\xae\xb0\xba\xb7\xb8\xb2\xb1\ +\xb2\xa6\xa4\xa5\xa2\xa0\xa0\xad\xab\xab\xbf\xbc\xbc\xbb\xb9\xba\ +\xa9\xa9\xa9\x9f\x9e\x9f\xa5\xa3\xa5\xb6\xb3\xb4\xbe\xbc\xbe\xb5\ +\xb3\xb5\xa6\xa3\xa5\xa3\xa0\xa2\xb1\xae\xb1\xb9\xb6\xb8\xbe\xbb\ +\xbd\xb4\xb3\xb4\xa3\xa0\xa3\xa5\xa1\xa3\x00\x00\x00\xc0\xb7\xb3\ +\xad\xa6\xa2\x8e\x8c\x8a\x71\x72\x73\x55\x5b\x5c\x46\x4e\x50\x4e\ +\x53\x57\x65\x66\x68\x7d\x79\x7b\x8c\x88\x89\x95\x91\x93\x99\x96\ +\x98\x9b\x98\x99\x9a\x98\x98\x9b\x98\x9a\x99\x98\x9a\x96\x94\x96\ +\x8a\x8a\x8c\x7b\x7c\x7f\x71\x74\x75\x6c\x70\x70\x6e\x71\x72\x76\ +\x78\x79\x74\x77\x78\x72\x75\x76\x74\x76\x78\x77\x79\x7d\x78\x79\ +\x7c\x7b\x7e\x81\x7b\x7e\x82\x7a\x7d\x81\x7a\x7e\x82\x78\x7d\x81\ +\x76\x7b\x7f\x74\x79\x7d\x76\x7b\x7f\x76\x7a\x7f\x75\x7a\x7e\x75\ +\x7a\x7e\x75\x79\x7e\x74\x78\x7c\x75\x79\x7e\x75\x7a\x7f\x75\x7a\ +\x7f\x75\x7a\x80\x73\x7a\x7f\x74\x7b\x7f\x75\x7b\x7f\x77\x7d\x81\ +\x7a\x80\x85\x78\x7e\x83\x71\x78\x7d\x6d\x75\x7c\x6b\x71\x78\x6d\ +\x73\x79\x6f\x75\x79\x6c\x72\x77\x70\x75\x7a\x73\x78\x7b\x70\x75\ +\x78\x70\x74\x78\x6b\x71\x75\x62\x69\x6e\x64\x6b\x70\x6a\x71\x74\ +\x78\x7c\x80\x84\x87\x8a\x87\x8a\x8e\x88\x8b\x8e\x87\x8a\x8e\x87\ +\x8b\x8f\x89\x8d\x92\x8b\x8f\x94\x8c\x8f\x94\x90\x93\x98\x90\x93\ +\x97\x90\x93\x97\x8e\x92\x95\x8e\x91\x94\x83\x85\x88\x7c\x7e\x80\ +\x82\x83\x86\x8d\x90\x94\x93\x97\x9a\x95\x98\x9d\x94\x97\x9b\x96\ +\x98\x9c\x96\x99\x9d\x97\x9a\x9e\x97\x9a\x9e\x98\x9a\x9e\x8f\x92\ +\x96\x89\x8c\x8f\x8b\x8d\x8f\x92\x94\x95\x92\x94\x95\x8d\x8f\x90\ +\x92\x93\x94\x9b\x9a\x9c\x9a\x9b\x9d\x95\x96\x99\x95\x95\x99\x9e\ +\x9f\xa3\x9d\x9e\xa1\x94\x96\x9a\x8e\x90\x93\x97\x99\x9b\x9c\x9e\ +\x9f\x98\x9a\x9b\x94\x95\x98\x9a\x9a\x9d\xa6\xa5\xa7\xac\xab\xad\ +\xae\xad\xae\xaf\xae\xb0\xad\xac\xae\xae\xad\xaf\xad\xad\xae\xb1\ +\xaf\xb2\xae\xad\xaf\xaf\xaf\xaf\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\ +\xb0\xb3\xb3\xb3\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb3\xb3\xb2\xb4\ +\xb6\xb4\xb6\xb6\xb5\xb7\xb6\xb6\xb7\xb7\xb5\xb8\xb6\xb5\xb7\xb8\ +\xb7\xb9\xb5\xb4\xb7\xb5\xb4\xb6\xba\xb9\xba\xbb\xbb\xbb\xb1\xb0\ +\xb2\xa2\xa1\xa3\x9f\x9d\x9f\xad\xab\xad\xb8\xb7\xb7\xb9\xb9\xb9\ +\xa8\xa8\xa9\x9f\x9e\x9e\xa7\xa5\xa5\xb5\xb2\xb3\xbb\xba\xba\xb3\ +\xb2\xb3\xa2\xa1\xa3\xa0\x9e\xa0\xac\xa9\xab\xba\xb7\xb9\xbd\xbc\ +\xbe\xb2\xb0\xb2\xa7\xa4\xa8\xa4\xa1\xa2\xb2\xaf\xb1\xbb\xb9\xba\ +\xbd\xba\xbc\xb1\xae\xb0\x00\x00\x00\xba\xb2\xae\xa4\x9d\x9b\x82\ +\x80\x80\x67\x6a\x6b\x4e\x55\x55\x44\x4c\x4d\x54\x5a\x5a\x6e\x6f\ +\x6f\x83\x7f\x80\x8e\x8c\x8c\x98\x95\x97\x9b\x98\x9a\x9a\x98\x99\ +\x9b\x99\x9a\x9a\x98\x9a\x97\x96\x98\x93\x93\x94\x85\x85\x88\x77\ +\x79\x7c\x6e\x71\x73\x69\x6d\x6e\x6e\x71\x72\x77\x79\x7a\x71\x74\ +\x75\x70\x73\x76\x71\x74\x77\x74\x77\x7b\x77\x79\x7d\x7b\x7e\x82\ +\x7b\x7e\x82\x79\x7d\x80\x78\x7c\x80\x79\x7e\x81\x77\x7c\x7f\x75\ +\x7a\x7d\x75\x7a\x7e\x76\x7a\x7f\x75\x78\x7e\x74\x78\x7d\x74\x78\ +\x7d\x75\x79\x7d\x74\x78\x7d\x75\x7a\x7f\x76\x7a\x7f\x76\x7a\x7f\ +\x76\x7b\x81\x77\x7c\x81\x76\x7a\x7f\x76\x7b\x80\x77\x7d\x82\x79\ +\x7f\x84\x77\x7d\x82\x71\x78\x7f\x6d\x73\x7a\x6a\x70\x77\x6f\x75\ +\x7a\x6f\x75\x7a\x6e\x74\x78\x6f\x76\x79\x70\x75\x78\x6d\x73\x75\ +\x68\x6f\x72\x64\x6b\x6f\x66\x6e\x71\x70\x76\x78\x76\x7a\x7d\x7c\ +\x7f\x83\x85\x88\x8c\x88\x8b\x8f\x87\x8a\x8e\x89\x8b\x91\x89\x8d\ +\x92\x8b\x8e\x92\x8c\x8f\x95\x8d\x90\x95\x90\x93\x97\x8e\x92\x96\ +\x8d\x91\x94\x85\x89\x8c\x6f\x73\x76\x5c\x62\x65\x6b\x6e\x71\x85\ +\x86\x8a\x93\x96\x99\x96\x98\x9c\x95\x97\x9b\x96\x97\x9b\x95\x97\ +\x9b\x96\x98\x9c\x98\x9b\x9f\x99\x9b\x9f\x98\x9a\x9e\x92\x95\x99\ +\x8b\x8e\x91\x8a\x8d\x8e\x94\x95\x96\x98\x9a\x9b\x93\x95\x96\x92\ +\x92\x94\x9c\x9b\x9d\x9c\x9c\x9f\x95\x96\x9a\x91\x93\x97\x96\x97\ +\x9b\xa0\xa1\xa4\x98\x9b\x9d\x90\x92\x95\x93\x95\x97\x9d\x9e\xa0\ +\x9e\x9e\xa1\x97\x98\x9c\x98\x98\x9a\xa2\xa1\xa3\xa9\xa8\xa8\xb0\ +\xaf\xb0\xae\xaf\xaf\xaf\xae\xb0\xae\xad\xaf\xb0\xaf\xb1\xb0\xaf\ +\xb0\xb1\xb1\xb1\xb1\xb1\xb1\xb0\xb0\xb0\xb0\xb0\xb0\xb3\xb3\xb3\ +\xb3\xb3\xb3\xb3\xb2\xb4\xb4\xb3\xb5\xb1\xb0\xb2\xb3\xb2\xb4\xb7\ +\xb6\xb8\xb5\xb4\xb6\xb7\xb6\xb8\xb7\xb6\xb8\xb9\xb8\xba\xb5\xb4\ +\xb6\xb6\xb5\xb7\xbb\xba\xbc\xbc\xbb\xbc\xb9\xb8\xbb\xb4\xb3\xb6\ +\xac\xac\xad\xa3\xa2\xa3\xa3\xa1\xa1\xb1\xb0\xb0\xb7\xb5\xb5\xb1\ +\xb0\xb0\xa4\xa4\xa4\xa1\x9f\x9f\xa8\xa5\xa5\xb4\xb2\xb2\xbb\xba\ +\xba\xae\xae\xaf\xa4\xa2\xa4\xa4\xa1\xa2\xb1\xae\xaf\xbe\xbc\xbd\ +\xbb\xb8\xb9\xad\xac\xab\xa6\xa3\xa4\xa9\xa4\xa6\xb3\xaf\xb0\xbe\ +\xba\xbb\x00\x00\x00\xb5\xad\xab\x99\x94\x93\x79\x79\x79\x5e\x63\ +\x64\x4a\x52\x53\x4a\x50\x51\x5d\x60\x60\x75\x74\x74\x88\x84\x84\ +\x91\x8e\x8e\x97\x95\x95\x9a\x97\x98\x99\x99\x99\x9a\x99\x9a\x97\ +\x96\x98\x96\x95\x96\x8f\x8e\x90\x7f\x7f\x82\x73\x76\x7a\x6d\x70\ +\x73\x68\x6b\x6d\x6f\x71\x72\x75\x77\x78\x70\x73\x75\x6f\x71\x75\ +\x71\x74\x77\x70\x73\x77\x76\x79\x7d\x78\x7b\x7f\x7b\x7e\x82\x79\ +\x7d\x81\x77\x7b\x7f\x79\x7d\x81\x77\x7b\x7f\x76\x7a\x7f\x74\x79\ +\x7c\x76\x7a\x7f\x76\x7a\x7f\x77\x7b\x7f\x74\x79\x7e\x73\x77\x7c\ +\x73\x77\x7c\x75\x79\x7e\x75\x79\x7e\x76\x7a\x7f\x77\x7b\x80\x77\ +\x7b\x80\x76\x7a\x7f\x77\x7b\x80\x77\x7c\x80\x78\x7d\x82\x79\x7d\ +\x83\x77\x7c\x82\x6f\x75\x7b\x6e\x74\x79\x6d\x73\x78\x6f\x75\x7a\ +\x71\x77\x7a\x6f\x74\x77\x70\x75\x78\x6d\x74\x77\x64\x6b\x6e\x65\ +\x6b\x6f\x6b\x70\x73\x73\x77\x7a\x78\x7b\x7f\x78\x7b\x7f\x7d\x80\ +\x84\x87\x8a\x8e\x88\x8b\x8f\x89\x8c\x90\x89\x8c\x90\x8a\x8d\x90\ +\x8b\x8e\x92\x8c\x8f\x94\x8d\x92\x96\x8c\x91\x94\x8c\x91\x95\x88\ +\x8c\x90\x77\x7c\x80\x64\x6a\x6f\x69\x6e\x72\x73\x76\x79\x7d\x80\ +\x83\x85\x87\x8a\x93\x94\x98\x96\x97\x9c\x97\x98\x9c\x98\x99\x9d\ +\x99\x9a\x9e\x99\x9b\x9f\x99\x9c\x9f\x99\x9c\x9e\x95\x99\x9b\x8e\ +\x91\x93\x8c\x8d\x8e\x95\x97\x98\x99\x9b\x9c\x95\x97\x98\x91\x91\ +\x94\x95\x96\x99\x9b\x9c\xa0\x99\x9c\x9e\x90\x91\x93\x98\x9a\x9b\ +\xa0\xa2\xa3\x9a\x9c\x9d\x8f\x91\x93\x93\x94\x95\x9f\x9f\xa0\xa6\ +\xa6\xa8\x9d\x9d\x9f\x96\x97\x98\x9c\x9c\x9d\xaa\xaa\xa9\xb0\xb0\ +\xb0\xaf\xac\xaf\xaf\xae\xb0\xb1\xb0\xb1\xb0\xaf\xb1\xb0\xaf\xb1\ +\xb0\xaf\xb1\xb1\xb0\xb1\xb2\xb1\xb2\xb2\xb2\xb3\xb1\xb1\xb1\xb3\ +\xb2\xb3\xb4\xb3\xb5\xb1\xb0\xb2\xb1\xb0\xb2\xb5\xb4\xb6\xb6\xb5\ +\xb7\xb6\xb5\xb7\xb8\xb7\xb9\xb7\xb6\xb8\xb6\xb5\xb7\xb9\xb8\xba\ +\xbb\xba\xbc\xba\xb9\xbb\xb8\xb7\xba\xb8\xb7\xb9\xba\xb9\xbb\xb6\ +\xb6\xb6\xa8\xa8\xa8\xa2\xa1\xa1\xa4\xa2\xa2\xaf\xae\xae\xb9\xb8\ +\xb8\xb1\xb0\xb0\xa2\xa1\xa1\x9f\x9e\x9e\xae\xac\xac\xbd\xbc\xbc\ +\xbb\xb9\xb9\xac\xaa\xaa\xa4\xa2\xa2\xaa\xa6\xa7\xb4\xb1\xb2\xbf\ +\xbb\xbb\xba\xb6\xb7\xb0\xab\xad\xa4\x9f\xa1\xa5\xa1\xa2\x00\x00\ +\x00\xac\xa5\xa2\x8d\x8a\x8a\x6e\x71\x71\x54\x5a\x5c\x48\x4f\x51\ +\x50\x53\x55\x66\x65\x65\x7c\x79\x78\x8c\x88\x88\x93\x91\x91\x98\ +\x96\x96\x99\x97\x98\x99\x99\x9a\x98\x97\x98\x95\x95\x95\x93\x92\ +\x93\x8a\x8a\x8b\x7a\x7b\x7f\x70\x73\x77\x69\x6d\x71\x67\x6a\x6d\ +\x71\x73\x75\x73\x75\x76\x6f\x71\x73\x6f\x71\x75\x6c\x6f\x73\x6d\ +\x70\x74\x73\x76\x7a\x76\x79\x7d\x79\x7c\x80\x78\x7b\x7f\x78\x7c\ +\x80\x77\x7b\x80\x75\x7a\x7e\x74\x78\x7d\x74\x79\x7d\x76\x7a\x7e\ +\x75\x79\x7e\x76\x7a\x7f\x75\x79\x7e\x73\x78\x7d\x76\x7a\x7f\x75\ +\x79\x7e\x72\x76\x7b\x70\x74\x79\x73\x77\x7c\x76\x7a\x7e\x77\x7b\ +\x80\x78\x7c\x81\x77\x7b\x80\x75\x78\x7c\x76\x7a\x7e\x78\x7d\x82\ +\x75\x7a\x7f\x70\x75\x7b\x6e\x74\x79\x6e\x73\x78\x73\x78\x7b\x70\ +\x75\x78\x6f\x74\x78\x69\x70\x73\x63\x6a\x6e\x66\x6b\x6e\x70\x74\ +\x78\x75\x79\x7d\x79\x7c\x80\x7a\x7e\x81\x79\x7c\x80\x7f\x82\x86\ +\x87\x8a\x8e\x8a\x8d\x91\x89\x8c\x90\x88\x8b\x8f\x8a\x8d\x91\x8a\ +\x8d\x90\x8b\x8f\x93\x8c\x91\x94\x8d\x91\x94\x8c\x8f\x94\x87\x8b\ +\x90\x7e\x83\x87\x71\x76\x7a\x61\x66\x6b\x5c\x61\x66\x6f\x70\x74\ +\x88\x88\x8a\x94\x95\x98\x96\x98\x9c\x98\x99\x9e\x99\x9a\x9e\x99\ +\x9b\x9e\x9a\x9c\x9f\x9a\x9d\x9e\x9d\xa1\xa1\x9c\xa0\xa1\x90\x94\ +\x94\x8d\x90\x90\x91\x93\x95\x9b\x9e\x9f\x94\x96\x99\x8e\x8f\x92\ +\x93\x94\x98\x9e\x9f\xa0\x9e\x9f\xa0\x95\x98\x98\x95\x97\x98\x9b\ +\x9d\x9e\x9a\x9c\x9d\x94\x95\x96\x94\x95\x96\x9f\x9f\xa1\xa7\xa6\ +\xa8\xa0\xa1\xa3\x95\x97\x98\x99\x98\x99\xa5\xa4\xa4\xad\xab\xad\ +\xb0\xae\xb0\xaf\xae\xaf\xaf\xaf\xb0\xaf\xaf\xb0\xb1\xb0\xb2\xb3\ +\xb2\xb4\xb1\xb0\xb2\xb1\xb0\xb2\xb2\xb1\xb2\xb3\xb3\xb4\xb4\xb3\ +\xb5\xb4\xb3\xb5\xb4\xb3\xb5\xb5\xb5\xb6\xb6\xb5\xb7\xb6\xb5\xb7\ +\xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\xb9\xbb\xba\xbc\xbb\xba\xbc\xbd\ +\xbc\xbe\xba\xb9\xbb\xb9\xb8\xba\xba\xb9\xbb\xbb\xbb\xbc\xba\xba\ +\xbb\xb1\xb0\xb2\xa4\xa3\xa4\x9f\x9d\x9d\xaa\xa8\xa8\xb6\xb5\xb5\ +\xb8\xb8\xb8\xac\xad\xad\xa4\xa3\xa3\xa5\xa3\xa3\xb5\xb2\xb2\xc0\ +\xbd\xbe\xba\xb9\xb9\xad\xa9\xab\xa5\xa0\xa1\xab\xa6\xa8\xba\xb4\ +\xb5\xc4\xc1\xc2\xb8\xb4\xb5\xa8\xa5\xa6\x00\x00\x00\xa0\x9a\x96\ +\x80\x80\x7f\x64\x69\x6a\x4e\x55\x58\x48\x4f\x51\x58\x5b\x5b\x71\ +\x6f\x6f\x84\x7f\x7f\x90\x8b\x8c\x95\x90\x91\x97\x95\x96\x9b\x98\ +\x9a\x9a\x99\x9b\x98\x97\x98\x94\x93\x94\x8b\x8b\x8d\x7c\x7e\x81\ +\x6f\x72\x76\x6b\x6e\x72\x67\x6a\x6d\x68\x6b\x6d\x6e\x70\x71\x6d\ +\x6f\x6f\x6a\x6c\x6d\x68\x6c\x6d\x68\x6b\x6f\x6b\x6e\x72\x70\x73\ +\x77\x75\x78\x7c\x75\x78\x7c\x79\x7d\x81\x78\x7c\x81\x75\x79\x7d\ +\x74\x79\x7c\x74\x79\x7d\x74\x79\x7d\x75\x7a\x7e\x74\x78\x7c\x74\ +\x78\x7d\x74\x78\x7d\x73\x78\x7d\x75\x79\x7e\x72\x77\x7c\x6c\x71\ +\x76\x68\x6e\x73\x6c\x70\x75\x72\x76\x7b\x78\x7b\x80\x78\x7c\x81\ +\x74\x77\x7c\x6e\x72\x76\x6c\x71\x76\x70\x74\x79\x79\x7e\x82\x75\ +\x7b\x7e\x70\x76\x7b\x6d\x72\x78\x6e\x74\x78\x71\x77\x7a\x6e\x73\ +\x76\x65\x6a\x6e\x65\x6b\x6e\x69\x6e\x71\x72\x75\x79\x79\x7c\x80\ +\x7a\x7d\x81\x7b\x7e\x81\x7a\x7e\x80\x7b\x7f\x81\x80\x83\x87\x89\ +\x8b\x8f\x8b\x8e\x92\x8a\x8d\x91\x8a\x8d\x90\x8a\x8d\x91\x8a\x8d\ +\x91\x8c\x8f\x93\x8d\x90\x94\x8e\x92\x95\x8e\x92\x96\x8b\x8e\x92\ +\x7f\x84\x87\x68\x6f\x73\x5d\x64\x68\x64\x67\x6a\x7a\x7b\x7b\x86\ +\x85\x88\x90\x91\x94\x9a\x9b\x9f\x99\x9b\x9e\x98\x9a\x9e\x9b\x9d\ +\xa1\x9d\xa0\xa2\x9f\xa2\xa4\xa0\xa4\xa5\x9c\xa1\xa1\x96\x9a\x9a\ +\x8e\x91\x93\x91\x92\x93\x99\x9b\x9c\x99\x9a\x9c\x91\x92\x95\x94\ +\x94\x96\x9c\x9c\x9e\xa0\xa2\xa2\x99\x9b\x9c\x93\x95\x96\x97\x98\ +\x99\x9e\x9d\x9f\x99\x9a\x9b\x93\x95\x97\x9a\x9b\x9e\xa6\xa5\xa8\ +\xa5\xa6\xa8\x9d\x9c\x9f\x97\x96\x98\xa1\xa0\xa1\xad\xab\xac\xaf\ +\xad\xad\xaf\xae\xb0\xb0\xaf\xb1\xb1\xb0\xb2\xb1\xb0\xb2\xb1\xb0\ +\xb2\xb2\xb1\xb3\xb2\xb1\xb2\xb2\xb1\xb3\xb4\xb3\xb5\xb4\xb4\xb5\ +\xb6\xb5\xb7\xb5\xb5\xb6\xb4\xb3\xb5\xb5\xb4\xb6\xb4\xb3\xb5\xb5\ +\xb4\xb6\xb8\xb7\xb9\xba\xb9\xbb\xbc\xbb\xbd\xbe\xbd\xbf\xbd\xbc\ +\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\xbe\xbe\xbd\xbf\ +\xb8\xb7\xb9\xac\xac\xad\xa0\xa0\xa0\xa4\xa3\xa3\xb2\xaf\xae\xbc\ +\xbb\xbb\xb7\xb7\xb8\xa9\xa7\xa7\xa1\x9d\x9e\xad\xa8\xa9\xbb\xb6\ +\xb7\xc2\xbe\xbf\xb8\xb5\xb5\xa9\xa7\xa8\xa1\x9e\x9e\xac\xa7\xa8\ +\xbc\xb7\xb8\xbe\xba\xbb\x00\x00\x00\x94\x8f\x8b\x76\x77\x77\x5c\ +\x61\x62\x4a\x52\x55\x4a\x51\x54\x5f\x61\x62\x79\x75\x76\x88\x83\ +\x84\x93\x8e\x8f\x98\x93\x94\x98\x96\x97\x9c\x99\x9a\x98\x98\x99\ +\x97\x96\x98\x93\x92\x94\x87\x87\x89\x78\x7a\x7e\x6f\x73\x76\x67\ +\x6c\x6f\x65\x69\x6c\x6a\x6c\x6e\x6a\x6c\x6e\x60\x63\x66\x5e\x60\ +\x64\x5e\x61\x64\x65\x68\x6c\x67\x6a\x6e\x6d\x71\x75\x72\x76\x7a\ +\x74\x78\x7c\x76\x7b\x7e\x76\x7b\x7f\x77\x7c\x80\x75\x7a\x7d\x74\ +\x7a\x7d\x74\x79\x7d\x73\x78\x7b\x72\x77\x7b\x71\x77\x7c\x74\x78\ +\x7d\x74\x79\x7e\x74\x78\x7e\x70\x76\x7a\x66\x6d\x72\x61\x66\x6d\ +\x5d\x63\x69\x67\x6b\x70\x73\x76\x7b\x78\x7b\x80\x71\x75\x7a\x68\ +\x6d\x72\x64\x6a\x6f\x67\x6c\x71\x70\x74\x79\x79\x7e\x82\x75\x7b\ +\x80\x71\x77\x7b\x70\x76\x79\x6f\x75\x79\x6a\x70\x73\x65\x69\x6e\ +\x66\x6b\x6f\x6e\x74\x77\x73\x77\x7b\x79\x7d\x80\x7a\x7d\x81\x79\ +\x7c\x7f\x7b\x7f\x80\x7c\x80\x83\x7a\x7d\x81\x80\x83\x85\x8b\x8f\ +\x91\x8d\x8f\x93\x8b\x8e\x91\x8a\x8e\x90\x89\x8c\x8f\x8c\x90\x92\ +\x8d\x90\x94\x8e\x92\x95\x90\x93\x97\x90\x93\x97\x8f\x93\x97\x80\ +\x85\x8a\x69\x73\x77\x65\x6b\x6f\x5f\x62\x64\x6f\x70\x72\x83\x82\ +\x84\x94\x94\x98\x99\x9b\x9f\x9a\x9b\xa0\x9b\x9d\xa1\x9c\x9f\xa2\ +\x9e\xa1\xa3\xa0\xa4\xa5\xa0\xa3\xa4\x9f\xa2\xa4\x96\x99\x9b\x8e\ +\x91\x92\x8c\x8e\x8f\x97\x98\x9a\x9e\x9e\xa0\x98\x99\x9b\x93\x93\ +\x96\x9a\x9a\x9c\xa3\xa4\xa4\x9b\x9c\x9d\x92\x93\x95\x96\x96\x98\ +\xa1\xa1\xa2\xa1\xa1\xa3\x97\x98\x9a\x96\x96\x98\xa1\xa1\xa3\xab\ +\xaa\xac\xa0\x9f\xa0\x98\x97\x99\x9b\x99\x99\xa9\xa7\xa8\xb2\xb0\ +\xb1\xb0\xae\xb0\xae\xad\xaf\xb1\xb0\xb1\xb2\xb1\xb3\xb2\xb1\xb3\ +\xb2\xb1\xb3\xb1\xb0\xb2\xb3\xb2\xb4\xb6\xb5\xb7\xb6\xb5\xb7\xb5\ +\xb4\xb6\xb4\xb3\xb5\xb6\xb5\xb7\xb5\xb4\xb6\xb7\xb6\xb8\xb8\xb7\ +\xb9\xba\xb9\xbb\xbc\xbb\xbd\xbd\xbc\xbe\xbd\xbc\xbe\xbc\xbb\xbd\ +\xbd\xbc\xbe\xbc\xbb\xbd\xbc\xbb\xbd\xbf\xbe\xc0\xc0\xbf\xc1\xb9\ +\xb9\xba\xb6\xb6\xb7\xad\xad\xad\xa2\x9f\x9e\xa4\xa1\xa1\xb5\xb3\ +\xb3\xbc\xbb\xbb\xb6\xb3\xb2\xa9\xa6\xa6\xa3\xa0\xa1\xb2\xae\xaf\ +\xbf\xbb\xbc\xbf\xbd\xbd\xb1\xaf\xb0\xa4\xa0\xa2\xa3\x9e\x9f\xb1\ +\xac\xad\x00\x00\x00\x89\x85\x83\x6c\x6e\x6e\x55\x5b\x5d\x4a\x50\ +\x53\x52\x57\x59\x68\x68\x69\x80\x7c\x7d\x8c\x87\x88\x93\x8f\x90\ +\x99\x95\x95\x99\x97\x97\x99\x96\x97\x98\x97\x98\x96\x95\x97\x91\ +\x91\x93\x84\x87\x88\x7a\x7e\x80\x73\x77\x7a\x6b\x6f\x72\x68\x6c\ +\x70\x6c\x6e\x70\x62\x66\x68\x56\x5b\x5e\x4f\x53\x57\x4e\x51\x55\ +\x5e\x61\x65\x66\x6b\x6e\x69\x6d\x70\x6b\x70\x73\x71\x76\x79\x73\ +\x78\x7b\x77\x7b\x7f\x76\x7a\x7f\x75\x7a\x7f\x74\x79\x7e\x75\x7a\ +\x7e\x73\x78\x7b\x71\x76\x7a\x70\x75\x7b\x70\x76\x7b\x73\x79\x7e\ +\x73\x78\x7d\x72\x78\x7c\x68\x6f\x74\x5b\x63\x68\x58\x5f\x64\x5f\ +\x64\x69\x70\x74\x79\x75\x79\x7d\x6b\x6f\x74\x62\x68\x6d\x59\x5f\ +\x63\x5c\x60\x65\x69\x6c\x71\x73\x78\x7b\x79\x7e\x82\x76\x7b\x7e\ +\x73\x79\x7c\x6a\x6f\x72\x60\x66\x69\x56\x5c\x60\x5a\x5d\x61\x71\ +\x72\x75\x7b\x7d\x82\x7b\x7e\x81\x7c\x7f\x83\x7a\x7d\x81\x79\x7d\ +\x7e\x7c\x7f\x83\x7b\x7e\x82\x7b\x7e\x80\x7e\x82\x85\x89\x8c\x8e\ +\x8c\x90\x91\x8a\x8e\x8f\x8a\x8e\x90\x8b\x8f\x92\x8f\x92\x96\x90\ +\x93\x97\x90\x93\x97\x90\x93\x98\x92\x95\x9a\x8e\x91\x96\x80\x87\ +\x8c\x6d\x75\x7a\x55\x5f\x63\x5e\x65\x68\x7b\x7e\x80\x94\x95\x99\ +\x98\x99\x9c\x99\x9a\x9d\x9a\x9c\x9f\x9d\x9f\xa2\x9e\xa1\xa3\xa0\ +\xa4\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x9b\x9e\x9f\x97\x9b\x9c\x8f\x92\ +\x93\x8e\x8f\x93\x93\x94\x96\x9e\xa0\xa1\x98\x9a\x9b\x91\x92\x93\ +\x94\x95\x95\xa0\xa0\xa1\x9c\x9d\x9e\x93\x95\x96\x95\x97\x99\xa0\ +\xa0\xa2\xa3\xa5\xa6\x9a\x9c\x9d\x94\x95\x96\x9d\x9d\x9f\xa9\xa8\ +\xa9\xa6\xa6\xa7\x9b\x99\x9b\x9b\x99\x9b\xa5\xa3\xa4\xaf\xae\xaf\ +\xb1\xb1\xb1\xb2\xb1\xb2\xb0\xaf\xb1\xb3\xb1\xb3\xb3\xb2\xb4\xb3\ +\xb2\xb4\xb3\xb2\xb4\xb4\xb3\xb5\xb5\xb4\xb6\xb6\xb5\xb7\xb4\xb3\ +\xb5\xb6\xb5\xb7\xb6\xb5\xb7\xb6\xb5\xb7\xb7\xb5\xb7\xb8\xb7\xb9\ +\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xbb\xba\xbc\xbe\xbd\xbf\xbb\ +\xba\xbc\xbd\xbc\xbe\xc0\xbf\xc1\xbf\xbe\xc0\xbb\xba\xbc\xbe\xbd\ +\xbf\xbb\xba\xbb\xb1\xb1\xb1\xa3\xa3\xa3\xa1\xa0\xa0\xab\xa9\xa8\ +\xbb\xb8\xb7\xbf\xbc\xbc\xb4\xb3\xb3\xa7\xa5\xa6\xa4\xa1\xa1\xb5\ +\xb3\xb3\xc1\xbf\xbf\xbd\xbb\xbb\xb3\xb1\xb1\xa7\xa4\xa5\x00\x00\ +\x00\x7b\x7a\x77\x61\x64\x65\x4f\x55\x58\x4c\x50\x54\x59\x5b\x5d\ +\x71\x70\x70\x84\x81\x81\x8e\x89\x8a\x96\x92\x92\x98\x94\x94\x99\ +\x96\x97\x99\x96\x98\x96\x96\x97\x95\x94\x96\x8e\x8d\x8f\x83\x85\ +\x86\x7a\x7d\x7e\x74\x77\x79\x6f\x72\x76\x70\x73\x77\x72\x76\x78\ +\x68\x6c\x6e\x5c\x60\x64\x4d\x52\x56\x40\x43\x48\x53\x55\x5a\x61\ +\x65\x68\x67\x6c\x6f\x6b\x70\x73\x6c\x71\x75\x70\x74\x79\x73\x77\ +\x7c\x76\x7b\x7f\x75\x7a\x7f\x73\x77\x7c\x75\x79\x7d\x72\x78\x7d\ +\x71\x76\x7b\x70\x77\x7b\x70\x76\x7a\x73\x79\x7e\x71\x78\x7c\x71\ +\x77\x7b\x6d\x74\x79\x67\x6d\x72\x5c\x63\x68\x5a\x60\x65\x66\x6a\ +\x6f\x6e\x73\x75\x66\x6c\x6f\x5e\x64\x69\x55\x5a\x5e\x55\x59\x5e\ +\x5b\x5f\x65\x68\x6b\x6f\x77\x7a\x7e\x79\x7e\x81\x75\x7b\x7e\x70\ +\x75\x78\x5a\x61\x65\x3d\x46\x4d\x3b\x40\x47\x5b\x58\x5d\x7b\x79\ +\x7d\x7b\x7e\x82\x79\x7c\x81\x7b\x7e\x81\x7c\x7f\x82\x7c\x7f\x82\ +\x7c\x7f\x83\x7d\x80\x82\x7b\x7e\x82\x7f\x83\x84\x89\x8c\x8e\x8a\ +\x8e\x90\x8b\x8e\x91\x8c\x8f\x93\x8e\x91\x95\x90\x93\x97\x91\x94\ +\x98\x92\x95\x99\x93\x96\x9a\x91\x94\x99\x90\x94\x98\x85\x8a\x8f\ +\x6d\x76\x7b\x65\x6e\x71\x7b\x7e\x80\x98\x99\x9d\x97\x98\x9b\x98\ +\x99\x9d\x9b\x9c\x9f\x9c\x9e\xa2\x9d\xa0\xa2\x9f\xa1\xa4\xa1\xa3\ +\xa5\x9f\xa1\xa3\x9f\xa0\xa3\x9f\xa1\xa3\x9b\x9e\x9f\x94\x96\x9a\ +\x8c\x8e\x90\x92\x94\x95\x9a\x9c\x9d\x99\x9b\x9c\x93\x94\x95\x94\ +\x93\x95\x9e\x9d\x9f\x9f\x9f\xa2\x97\x98\x9a\x95\x95\x97\x9f\x9f\ +\xa1\xa9\xa8\xaa\xa2\xa3\xa4\x95\x96\x97\x98\x96\x97\xa6\xa5\xa7\ +\xac\xaa\xad\xa2\xa1\xa3\x9b\x9a\x9c\xa1\xa0\xa1\xac\xaa\xab\xb0\ +\xaf\xb1\xaf\xae\xb0\xaf\xad\xaf\xb2\xb1\xb2\xb4\xb2\xb4\xb4\xb2\ +\xb4\xb3\xb2\xb4\xb6\xb5\xb7\xb3\xb2\xb4\xb4\xb3\xb6\xb5\xb4\xb6\ +\xb7\xb5\xb7\xb7\xb5\xb7\xb8\xb6\xb8\xb8\xb7\xb9\xb7\xb6\xb8\xb8\ +\xb7\xb9\xb9\xb8\xba\xba\xb9\xbb\xbc\xbb\xbd\xbc\xbb\xbd\xbd\xbc\ +\xbe\xbe\xbd\xbf\xbf\xbe\xc0\xbd\xbc\xbe\xbc\xba\xbb\xbb\xbb\xbb\ +\xba\xba\xba\xb9\xb9\xb9\xb2\xb1\xb1\xa3\xa0\xa0\xa3\x9f\x9e\xb3\ +\xb0\xb0\xbd\xbc\xbc\xbc\xba\xba\xb3\xb2\xb2\xa3\xa1\xa1\xa9\xa4\ +\xa5\xb9\xb5\xb6\xc3\xc1\xc1\xbc\xb9\xb8\x00\x00\x00\x73\x73\x72\ +\x57\x5c\x5e\x4b\x51\x53\x4e\x52\x54\x61\x62\x63\x78\x76\x76\x88\ +\x84\x85\x91\x8c\x8d\x97\x93\x93\x97\x95\x95\x9a\x98\x98\x99\x98\ +\x99\x95\x95\x96\x92\x91\x93\x8b\x8a\x8d\x82\x84\x86\x7c\x7e\x80\ +\x76\x79\x7b\x77\x7a\x7f\x7a\x7e\x80\x78\x7c\x7d\x6e\x72\x74\x62\ +\x67\x69\x51\x56\x5a\x3b\x3f\x44\x49\x4c\x51\x59\x5c\x60\x65\x69\ +\x6d\x6e\x72\x76\x6c\x70\x75\x6f\x73\x78\x70\x74\x79\x75\x7a\x7e\ +\x75\x79\x7d\x73\x77\x7b\x72\x76\x7b\x73\x79\x7d\x73\x79\x7e\x73\ +\x79\x7e\x71\x77\x7c\x70\x76\x7b\x74\x7a\x7f\x73\x7a\x7e\x72\x77\ +\x7c\x6f\x75\x7a\x64\x6a\x6e\x5a\x61\x65\x5c\x63\x67\x60\x65\x69\ +\x60\x66\x6a\x5a\x60\x65\x4b\x4f\x54\x4f\x53\x58\x55\x59\x5e\x61\ +\x64\x69\x6d\x70\x74\x77\x7b\x7e\x7c\x81\x84\x75\x7b\x7f\x66\x6f\ +\x72\x3c\x49\x50\x1f\x2c\x35\x30\x30\x38\x63\x5c\x60\x7b\x7a\x7d\ +\x7c\x7e\x81\x7c\x7e\x82\x7d\x80\x84\x7e\x81\x85\x7a\x7d\x81\x7e\ +\x81\x85\x80\x83\x87\x7c\x7f\x83\x7f\x83\x85\x88\x8c\x8d\x8c\x90\ +\x92\x8d\x90\x94\x8d\x90\x94\x8f\x92\x96\x91\x95\x98\x92\x95\x99\ +\x91\x94\x99\x93\x97\x99\x92\x96\x97\x92\x96\x99\x86\x8c\x90\x7d\ +\x84\x87\x86\x89\x8c\x94\x95\x99\x9a\x9c\x9e\x9a\x9b\x9f\x9b\x9b\ +\x9f\x9c\x9d\xa1\x9f\xa0\xa3\xa1\xa2\xa6\xa0\xa2\xa3\xa1\xa3\xa6\ +\xa2\xa4\xa8\xa1\xa2\xa6\x9f\xa1\xa2\xa1\xa3\xa5\x98\x9a\x9c\x8c\ +\x8e\x8f\x8d\x8b\x8e\x99\x98\x9a\x9d\x9d\x9e\x95\x96\x98\x90\x90\ +\x93\x9a\x9a\x9b\xa5\xa6\xa7\x9f\xa0\xa1\x98\x97\x99\x9a\x99\x9b\ +\xa9\xa8\xaa\xa3\xa3\xa4\x98\x98\x9a\x98\x99\x9a\xa2\xa0\xa2\xad\ +\xac\xad\xa9\xa8\xaa\x9e\x9e\x9f\x9c\x9a\x9d\xa8\xa6\xa8\xb0\xae\ +\xb0\xb3\xb0\xb2\xb5\xb3\xb5\xb6\xb3\xb5\xb4\xb3\xb5\xb3\xb2\xb4\ +\xb3\xb1\xb3\xb2\xb0\xb2\xb5\xb4\xb5\xb6\xb5\xb7\xb7\xb6\xb7\xb6\ +\xb6\xb7\xb7\xb6\xb8\xb9\xb8\xba\xb8\xb7\xb9\xba\xb9\xbb\xba\xba\ +\xbc\xba\xba\xbb\xbb\xba\xbc\xbd\xbc\xbd\xbc\xba\xbc\xbc\xb9\xbb\ +\xbe\xbd\xbf\xbd\xbb\xbd\xbb\xba\xbc\xb9\xb9\xba\xbe\xbd\xbe\xc0\ +\xbf\xc0\xbf\xbe\xc0\xb9\xb8\xb9\xae\xad\xad\xa0\x9f\x9f\xa4\xa1\ +\xa1\xb5\xb1\xb0\xbe\xbc\xbb\xb9\xb8\xb8\xa9\xa8\xa8\x9f\x9a\x9a\ +\xac\xa7\xa6\xbe\xb9\xb8\x00\x00\x00\x6a\x6b\x6b\x51\x56\x58\x47\ +\x4d\x4f\x52\x55\x57\x6b\x6a\x6a\x80\x7c\x7d\x8e\x89\x8a\x92\x8e\ +\x8e\x97\x93\x94\x97\x94\x95\x97\x96\x97\x96\x95\x97\x93\x91\x93\ +\x92\x91\x93\x88\x87\x89\x7c\x7d\x80\x78\x7a\x7b\x74\x78\x79\x77\ +\x7a\x7b\x7b\x7f\x81\x7a\x7d\x80\x74\x77\x7b\x6a\x6e\x72\x4e\x54\ +\x59\x35\x3b\x41\x40\x45\x4c\x51\x53\x58\x5d\x60\x64\x6b\x6e\x73\ +\x6b\x6f\x74\x6b\x6f\x74\x6f\x73\x78\x73\x77\x7c\x74\x78\x7d\x74\ +\x78\x7d\x73\x78\x7d\x71\x76\x7b\x71\x77\x7c\x72\x78\x7d\x70\x76\ +\x7b\x71\x77\x7c\x74\x7a\x7e\x73\x79\x7c\x71\x78\x7b\x70\x77\x7a\ +\x6c\x71\x74\x61\x68\x6c\x5b\x62\x66\x56\x5c\x60\x57\x5e\x61\x51\ +\x58\x5c\x4d\x52\x57\x4c\x50\x55\x52\x56\x5b\x53\x56\x5a\x63\x65\ +\x69\x6c\x6f\x73\x7a\x7e\x82\x7d\x82\x86\x74\x7b\x7e\x5c\x68\x6d\ +\x36\x45\x4e\x1d\x2a\x35\x37\x36\x3f\x6a\x64\x68\x7e\x7e\x80\x7e\ +\x80\x84\x7c\x7f\x83\x7f\x82\x86\x7f\x82\x86\x7d\x80\x84\x7e\x81\ +\x85\x7f\x82\x86\x7d\x80\x84\x80\x83\x85\x8a\x8c\x8d\x8d\x91\x93\ +\x8f\x93\x97\x90\x94\x98\x90\x93\x97\x92\x95\x99\x92\x95\x98\x91\ +\x95\x97\x92\x96\x96\x93\x95\x96\x93\x96\x97\x90\x92\x96\x92\x94\ +\x97\x94\x95\x99\x98\x9a\x9d\x9c\x9d\xa1\x9e\x9f\xa3\x9d\x9e\xa2\ +\x9e\x9f\xa2\xa0\xa0\xa4\xa1\xa2\xa4\xa0\xa1\xa4\xa1\xa2\xa5\xa0\ +\xa2\xa5\xa2\xa4\xa5\xa3\xa5\xa6\xa1\xa2\xa4\x9a\x9c\x9d\x91\x92\ +\x94\x8f\x8e\x91\x95\x94\x97\x9e\x9e\xa0\x97\x99\x9b\x92\x92\x94\ +\x9a\x99\x9b\xa5\xa5\xa7\xa2\xa3\xa4\x97\x97\x98\x96\x95\x97\xa0\ +\x9e\xa0\xa9\xa9\xab\xa0\xa1\xa2\x99\x98\x9a\x9c\x9b\x9d\xac\xab\ +\xad\xac\xab\xad\x9e\x9e\xa0\x97\x96\x99\xa0\x9f\x9f\xb0\xaf\xaf\ +\xb5\xb4\xb5\xb6\xb4\xb7\xb6\xb3\xb5\xb2\xaf\xb1\xb2\xb1\xb2\xb3\ +\xb1\xb2\xb4\xb3\xb4\xb7\xb6\xb7\xb8\xb7\xb9\xb8\xb7\xb7\xba\xb9\ +\xb9\xb9\xba\xba\xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbc\xbb\xba\ +\xbc\xba\xbc\xbe\xbc\xbd\xbc\xb9\xbb\xbc\xb9\xbb\xbd\xbb\xbc\xbb\ +\xb9\xbb\xba\xb8\xba\xba\xb9\xbb\xbd\xbc\xbe\xc0\xbf\xc1\xc1\xc0\ +\xc2\xc0\xbf\xc1\xc1\xc1\xc2\xb9\xb9\xba\xa6\xa6\xa7\xa0\x9c\x9b\ +\xae\xaa\xaa\xbd\xbb\xbb\xbd\xbb\xbb\xb5\xb2\xb3\xa8\xa3\xa3\xa1\ +\x9c\x9b\x00\x00\x00\x5e\x60\x62\x4d\x52\x56\x4d\x51\x56\x5b\x5b\ +\x5e\x72\x6e\x6f\x84\x7f\x80\x91\x8c\x8d\x94\x91\x91\x98\x95\x96\ +\x9a\x97\x99\x95\x94\x96\x95\x93\x95\x92\x91\x93\x8d\x8c\x8f\x80\ +\x7f\x82\x76\x78\x7a\x72\x74\x75\x71\x73\x74\x76\x78\x7a\x7a\x7d\ +\x81\x7a\x7d\x81\x77\x7a\x7e\x69\x6e\x72\x49\x52\x57\x2b\x33\x39\ +\x27\x2c\x34\x41\x43\x49\x5a\x5a\x5e\x66\x69\x6d\x68\x6b\x70\x6a\ +\x6e\x73\x6e\x72\x77\x6f\x73\x78\x72\x76\x7b\x74\x78\x7d\x73\x77\ +\x7c\x72\x76\x7b\x70\x76\x7b\x70\x76\x7b\x70\x75\x7a\x6f\x75\x7a\ +\x74\x79\x7d\x74\x79\x7c\x71\x76\x79\x74\x79\x7c\x73\x78\x7b\x69\ +\x6f\x73\x61\x67\x6b\x58\x5f\x63\x55\x5d\x60\x48\x4e\x53\x49\x4d\ +\x53\x49\x4d\x52\x3e\x42\x47\x46\x48\x4c\x52\x54\x56\x63\x65\x66\ +\x72\x73\x77\x80\x82\x85\x7c\x81\x84\x73\x7a\x7d\x5a\x66\x6b\x32\ +\x45\x4e\x1e\x2a\x36\x3b\x39\x43\x6e\x68\x6c\x80\x81\x84\x7f\x80\ +\x84\x7e\x80\x84\x7f\x81\x85\x7f\x82\x86\x7b\x7e\x82\x80\x82\x86\ +\x7e\x81\x85\x7d\x80\x83\x82\x83\x87\x89\x8a\x8e\x8e\x90\x94\x8f\ +\x92\x96\x90\x94\x96\x91\x94\x95\x93\x96\x97\x93\x96\x97\x91\x94\ +\x95\x94\x96\x97\x96\x97\x98\x97\x99\x9a\x97\x98\x9b\x98\x99\x9c\ +\x99\x9a\x9d\x9d\x9e\xa2\x9e\x9f\xa3\x9c\x9d\xa1\x9d\x9d\xa1\x9f\ +\xa0\xa3\xa0\xa1\xa5\xa2\xa3\xa5\xa0\xa2\xa3\xa1\xa3\xa5\xa3\xa5\ +\xa6\xa4\xa5\xa7\xa4\xa6\xa6\xa2\xa4\xa5\xa0\xa2\xa3\x96\x97\x9b\ +\x8f\x8f\x93\x96\x94\x97\x9f\x9f\xa1\x9a\x9a\x9b\x93\x92\x94\x97\ +\x96\x98\xa1\xa0\xa2\xa2\xa0\xa2\x98\x97\x99\x95\x94\x96\x9f\x9e\ +\xa0\xa9\xa8\xaa\xa4\xa3\xa5\x9a\x99\x9b\x9b\x9a\x9c\xa9\xa7\xa9\ +\xad\xac\xae\xa3\xa2\xa4\x98\x96\x97\x9c\x99\x98\xa9\xa7\xa8\xb2\ +\xb0\xb1\xb2\xaf\xb1\xb0\xad\xae\xb0\xaf\xb1\xb0\xae\xae\xb2\xb0\ +\xb0\xb6\xb4\xb4\xb8\xb6\xb7\xb7\xb6\xb6\xb7\xb6\xb7\xb8\xb8\xb9\ +\xba\xba\xbb\xbb\xb9\xbb\xbc\xba\xba\xbf\xbd\xbd\xbc\xb9\xbb\xbc\ +\xb9\xbb\xbb\xb8\xba\xbb\xb8\xba\xbb\xb9\xb9\xba\xb9\xb9\xbb\xba\ +\xba\xb9\xb8\xba\xbf\xbe\xc0\xbf\xbf\xc0\xbf\xbd\xbf\xbe\xbd\xbf\ +\xbe\xbd\xbf\xbf\xbd\xbf\xbf\xbe\xbf\xb6\xb6\xb7\xa4\xa4\xa4\xa1\ +\x9f\x9f\xb1\xae\xaf\xb9\xb4\xb5\xbd\xb8\xb8\xb0\xad\xad\x00\x00\ +\x00\x58\x5c\x5e\x4c\x52\x55\x51\x55\x59\x64\x65\x67\x7c\x77\x78\ +\x8a\x85\x86\x92\x8f\x8f\x95\x92\x93\x97\x95\x97\x97\x96\x97\x97\ +\x95\x96\x93\x92\x94\x91\x90\x92\x86\x85\x87\x76\x77\x7b\x6e\x6f\ +\x73\x6a\x6b\x6f\x6e\x70\x72\x74\x76\x77\x79\x7c\x7f\x7a\x7d\x81\ +\x7a\x7e\x81\x6a\x71\x75\x56\x61\x67\x38\x45\x4c\x22\x29\x34\x2d\ +\x30\x3a\x4b\x4c\x54\x65\x67\x6b\x68\x6b\x70\x69\x6c\x71\x6a\x6e\ +\x73\x6c\x70\x75\x6f\x74\x78\x72\x77\x7b\x72\x76\x7b\x71\x75\x7a\ +\x71\x75\x7a\x72\x77\x7c\x72\x77\x7c\x72\x77\x7c\x71\x76\x7a\x73\ +\x78\x7b\x76\x7b\x7e\x73\x78\x7b\x73\x78\x7b\x6f\x74\x78\x64\x6b\ +\x6f\x5b\x61\x66\x4b\x51\x57\x3a\x40\x46\x37\x3e\x44\x3c\x43\x48\ +\x29\x2f\x35\x23\x27\x2b\x38\x3a\x3d\x53\x54\x56\x6b\x6c\x6e\x75\ +\x76\x7a\x7e\x81\x85\x7c\x80\x83\x74\x7b\x7f\x5a\x68\x6d\x34\x45\ +\x4f\x1f\x2b\x37\x3f\x3e\x46\x70\x6b\x70\x7f\x7f\x82\x7f\x81\x85\ +\x80\x81\x85\x80\x83\x87\x80\x83\x87\x7e\x81\x85\x81\x84\x88\x7f\ +\x82\x86\x7e\x81\x84\x80\x82\x84\x85\x88\x8b\x8c\x8e\x91\x90\x91\ +\x93\x93\x95\x96\x93\x94\x95\x93\x94\x95\x93\x95\x96\x95\x97\x98\ +\x93\x95\x96\x97\x99\x9a\x97\x99\x9c\x97\x99\x9d\x97\x98\x9c\x9b\ +\x9c\xa0\x9d\x9f\xa2\x9f\xa0\xa3\x9f\x9e\xa2\x9e\x9e\xa1\x9f\xa1\ +\xa3\xa2\xa3\xa5\xa1\xa2\xa3\xa1\xa3\xa4\xa3\xa5\xa6\xa5\xa4\xa6\ +\xa6\xa6\xa8\xa3\xa4\xa5\xa5\xa6\xa7\xa4\xa5\xa6\x9b\x9c\x9e\x90\ +\x91\x92\x93\x93\x94\x9f\x9e\xa0\x9e\x9d\x9f\x97\x96\x98\x94\x93\ +\x95\x9c\x9a\x9c\xa5\xa4\xa6\x9d\x9c\x9e\x96\x95\x97\x99\x99\x9b\ +\xa5\xa4\xa6\xa7\xa6\xa8\x9e\x9d\x9f\x99\x97\x99\xa2\xa0\xa1\xab\ +\xa9\xaa\xa8\xa7\xa6\x9c\x9c\x9b\x9a\x99\x99\xa7\xa4\xa5\xad\xab\ +\xad\xb0\xaf\xaf\xb3\xb2\xb3\xb3\xb1\xb1\xb4\xb2\xb2\xb3\xb1\xb1\ +\xb7\xb4\xb4\xb7\xb6\xb6\xb8\xb8\xb8\xbb\xba\xbb\xbb\xb9\xbb\xba\ +\xb9\xbb\xba\xb8\xb9\xba\xb8\xb8\xbc\xb9\xba\xbd\xba\xbb\xbe\xbc\ +\xbc\xbd\xba\xbb\xbc\xba\xba\xba\xb8\xb8\xbd\xbc\xbc\xbd\xbb\xbb\ +\xbf\xbc\xbd\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ +\xbe\xc0\xc1\xc0\xc2\xc2\xc1\xc3\xbe\xbd\xbf\xac\xaa\xac\x9f\x9b\ +\x9e\xa2\x9e\xa0\xb3\xae\xaf\xbd\xb9\xb8\x00\x00\x00\x52\x55\x5a\ +\x49\x4e\x51\x55\x57\x5a\x6d\x6a\x6b\x80\x7b\x7c\x8d\x88\x89\x94\ +\x92\x93\x98\x96\x97\x97\x95\x97\x97\x95\x96\x95\x94\x96\x95\x94\ +\x96\x90\x8f\x91\x7c\x7d\x80\x6e\x70\x74\x68\x6a\x6e\x66\x67\x6b\ +\x6c\x6d\x70\x76\x78\x78\x7a\x7c\x7f\x7a\x7d\x7f\x7a\x7e\x80\x72\ +\x78\x7b\x62\x6b\x71\x49\x57\x5e\x2f\x3c\x48\x30\x39\x43\x4b\x50\ +\x58\x5d\x61\x65\x63\x66\x6b\x68\x6b\x6f\x69\x6c\x71\x6b\x6f\x74\ +\x6e\x71\x76\x71\x75\x79\x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x72\ +\x77\x7c\x71\x76\x7b\x73\x76\x7c\x71\x76\x7a\x72\x77\x7a\x72\x77\ +\x7a\x74\x79\x7c\x74\x79\x7b\x72\x77\x7b\x6b\x72\x76\x5f\x67\x6b\ +\x45\x4d\x54\x27\x30\x37\x28\x30\x37\x2c\x32\x37\x26\x2c\x32\x20\ +\x28\x2d\x28\x2d\x32\x3f\x41\x46\x5c\x5e\x61\x6b\x6b\x6f\x76\x77\ +\x7b\x81\x83\x87\x7e\x84\x87\x75\x7d\x80\x58\x65\x6b\x2f\x41\x4b\ +\x1c\x27\x31\x40\x3c\x44\x6e\x67\x6a\x80\x7f\x82\x7f\x81\x83\x7d\ +\x7f\x82\x81\x84\x87\x80\x84\x87\x7f\x81\x85\x82\x84\x88\x81\x83\ +\x86\x73\x75\x77\x62\x60\x63\x6a\x63\x66\x82\x7c\x7d\x8f\x8e\x8e\ +\x93\x93\x95\x93\x94\x94\x93\x93\x94\x94\x96\x97\x95\x97\x98\x96\ +\x98\x99\x98\x9b\x9c\x95\x98\x9b\x98\x99\x9d\x9a\x9b\x9f\x9d\x9f\ +\xa2\x9e\x9f\xa1\xa0\xa0\xa2\xa1\xa0\xa2\xa1\xa2\xa3\xa1\xa2\xa3\ +\xa1\xa0\xa2\xa2\xa4\xa5\xa0\xa1\xa2\xa5\xa3\xa6\xa7\xa6\xa8\xa6\ +\xa5\xa7\xa5\xa4\xa6\xa8\xa6\xa9\xa6\xa5\xa7\x9c\x9c\x9e\x92\x93\ +\x94\x92\x92\x93\x9b\x9a\x9b\xa0\x9f\xa0\x9b\x9a\x9c\x93\x92\x94\ +\x98\x97\x99\xa7\xa6\xa8\xa5\xa5\xa6\x9a\x9b\x9c\x97\x96\x98\x9f\ +\x9e\xa0\xaa\xaa\xab\xa3\xa2\xa3\x9b\x9b\x9b\x9b\x9a\x9a\xa7\xa5\ +\xa4\xae\xac\xab\xa4\xa4\xa4\x9a\x99\x9a\x9e\x9c\x9e\xac\xa9\xab\ +\xb2\xaf\xb1\xb5\xb3\xb3\xb3\xb1\xb1\xb6\xb4\xb4\xb4\xb2\xb2\xb5\ +\xb2\xb2\xb6\xb4\xb3\xb8\xb7\xb7\xbc\xba\xbb\xbc\xb9\xbc\xba\xb7\ +\xba\xbb\xb7\xba\xbb\xb9\xba\xbc\xba\xba\xbc\xba\xba\xbe\xbc\xbc\ +\xbc\xb9\xba\xbd\xbc\xbc\xbe\xbc\xbc\xbe\xbc\xbc\xbf\xbc\xbe\xc0\ +\xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc2\xbe\xc0\xc0\xbe\ +\xc0\xc1\xc0\xc2\xc0\xbf\xc1\xbe\xbd\xbf\xb6\xb3\xb5\xa6\xa3\xa6\ +\x9f\x9a\x9b\xa5\xa0\xa1\x00\x00\x00\x4e\x52\x56\x4f\x51\x56\x60\ +\x5f\x61\x76\x71\x72\x87\x81\x81\x90\x8b\x8d\x95\x91\x94\x98\x95\ +\x97\x98\x96\x98\x96\x95\x97\x93\x92\x94\x91\x90\x92\x85\x84\x86\ +\x73\x73\x76\x68\x6b\x6e\x61\x64\x68\x61\x64\x68\x6c\x6d\x70\x77\ +\x79\x7b\x7a\x7d\x80\x7a\x7d\x81\x79\x7c\x80\x77\x7b\x7e\x6d\x74\ +\x77\x54\x5d\x64\x44\x50\x5b\x3f\x49\x53\x50\x56\x5c\x59\x5d\x62\ +\x5d\x60\x65\x64\x68\x6c\x68\x6b\x70\x68\x6b\x70\x6c\x6f\x74\x6e\ +\x72\x77\x72\x76\x7b\x71\x75\x7b\x71\x75\x7b\x73\x76\x7c\x71\x76\ +\x7b\x72\x76\x7b\x72\x77\x7b\x73\x78\x7c\x72\x77\x7a\x74\x79\x7c\ +\x74\x79\x7c\x73\x78\x7b\x6f\x75\x78\x69\x6e\x73\x54\x5c\x63\x38\ +\x43\x49\x2d\x36\x3c\x29\x2f\x34\x32\x39\x3f\x35\x3d\x41\x32\x38\ +\x3e\x3f\x42\x48\x52\x54\x59\x5e\x5f\x64\x6d\x6e\x72\x7a\x7d\x80\ +\x7f\x83\x86\x7d\x82\x85\x72\x7a\x7e\x57\x66\x6c\x2e\x41\x4b\x1c\ +\x26\x32\x3e\x3a\x43\x6f\x68\x6c\x81\x80\x82\x82\x83\x85\x81\x82\ +\x85\x82\x84\x87\x81\x83\x87\x81\x83\x87\x7e\x80\x84\x70\x74\x76\ +\x41\x43\x49\x26\x20\x27\x55\x44\x47\x84\x7b\x7b\x92\x91\x92\x93\ +\x91\x94\x93\x93\x95\x94\x95\x97\x96\x98\x99\x95\x97\x98\x98\x9a\ +\x9c\x99\x9a\x9e\x97\x98\x9c\x9a\x9b\x9f\x9b\x9c\x9e\x9d\x9e\x9f\ +\xa1\xa2\xa3\xa2\xa1\xa3\xa2\xa2\xa3\xa1\xa1\xa3\xa2\xa2\xa4\xa4\ +\xa4\xa6\xa5\xa6\xa6\xa5\xa4\xa6\xa6\xa5\xa6\xa8\xa7\xa9\xa9\xa8\ +\xaa\xaa\xa9\xab\xa9\xa8\xaa\xa4\xa3\xa5\xa2\xa0\xa2\x9a\x99\x9b\ +\x93\x92\x94\x9a\x99\x9a\xa1\xa0\xa1\x9c\x9c\x9d\x97\x96\x98\x96\ +\x95\x97\xa2\xa1\xa3\xa7\xa6\xa8\x9f\x9e\x9f\x9a\x98\x9a\x9f\x9d\ +\x9e\xaa\xa8\xa8\xa9\xa7\xa7\xa0\x9f\x9f\x9b\x9a\x99\xa4\xa2\xa1\ +\xae\xac\xac\xa7\xa6\xa6\x9b\x9a\x9c\x9c\x9a\x9a\xa7\xa3\xa3\xae\ +\xab\xab\xb1\xaf\xaf\xb4\xb2\xb2\xb6\xb4\xb4\xb4\xb1\xb1\xb2\xaf\ +\xaf\xb5\xb4\xb3\xb9\xb7\xb8\xbb\xb8\xba\xbd\xbb\xbc\xbc\xb9\xbb\ +\xbd\xba\xbb\xbb\xb8\xb8\xbc\xba\xba\xbb\xb9\xb9\xbb\xb9\xb9\xbd\ +\xbb\xbc\xbd\xbc\xbc\xc0\xbd\xbf\xc0\xbd\xbf\xbe\xbb\xbd\xbf\xbb\ +\xbd\xc1\xbd\xbf\xc1\xbd\xc0\xc1\xbe\xc0\xc0\xbd\xbf\xc0\xbe\xc0\ +\xbe\xbc\xbe\xbd\xbc\xbe\xbf\xbe\xc0\xbe\xbc\xbd\xb5\xb1\xb3\xa8\ +\xa3\xa4\x00\x00\x00\x4e\x53\x57\x54\x57\x5a\x66\x63\x65\x7d\x77\ +\x78\x8a\x84\x84\x92\x8c\x8e\x95\x92\x94\x97\x94\x96\x97\x94\x96\ +\x95\x94\x96\x93\x92\x94\x8d\x8c\x8e\x7b\x7b\x7d\x6c\x6e\x72\x64\ +\x68\x6c\x5e\x62\x67\x64\x67\x6b\x6e\x70\x73\x79\x7a\x7e\x7a\x7d\ +\x81\x79\x7c\x80\x78\x7b\x80\x77\x7a\x7e\x74\x77\x7b\x66\x6b\x6f\ +\x5c\x64\x6b\x54\x5d\x65\x50\x55\x5b\x4f\x52\x58\x58\x5b\x60\x5c\ +\x5f\x63\x61\x63\x68\x60\x62\x65\x64\x66\x6b\x69\x6c\x71\x6f\x72\ +\x77\x71\x75\x7a\x72\x76\x7c\x73\x77\x7c\x71\x76\x79\x72\x76\x7b\ +\x72\x77\x7b\x72\x77\x7b\x73\x78\x7c\x73\x77\x7b\x73\x78\x7b\x6d\ +\x72\x76\x66\x6b\x6f\x65\x6a\x6e\x63\x69\x6e\x58\x5f\x64\x42\x4a\ +\x51\x34\x3b\x42\x45\x4c\x53\x46\x4e\x54\x44\x4b\x51\x48\x4c\x54\ +\x55\x57\x5e\x59\x5a\x60\x65\x65\x6a\x6e\x6f\x73\x7b\x7d\x81\x81\ +\x85\x89\x7e\x84\x87\x74\x7d\x80\x5a\x69\x70\x31\x44\x4e\x1c\x27\ +\x33\x3f\x3a\x44\x6d\x65\x69\x84\x82\x84\x81\x82\x85\x81\x83\x86\ +\x81\x84\x88\x80\x83\x87\x7d\x80\x84\x73\x77\x7b\x41\x4d\x52\x06\ +\x0f\x14\x19\x11\x16\x61\x56\x58\x8c\x88\x88\x92\x91\x92\x94\x94\ +\x96\x95\x95\x97\x95\x97\x98\x95\x96\x98\x94\x96\x99\x98\x9a\x9b\ +\x9a\x9b\x9d\x9a\x9b\x9d\x9b\x9c\x9e\x9d\x9f\xa0\x9e\xa0\xa1\xa1\ +\xa1\xa3\xa1\xa1\xa3\xa2\xa1\xa3\x9f\x9f\x9f\x99\x98\x98\xa2\xa0\ +\xa0\xa8\xa5\xa5\xa8\xa6\xa6\xa8\xa5\xa7\xaa\xa8\xaa\xaa\xa7\xa9\ +\xa8\xa7\xa9\xa9\xa8\xaa\xa9\xa8\xab\xa8\xa7\xa9\x9f\x9e\xa0\x95\ +\x94\x96\x96\x95\x97\x9e\x9e\x9f\xa1\xa1\xa2\x9c\x9b\x9d\x94\x93\ +\x95\x9b\x99\x9a\xa5\xa3\xa3\xa6\xa4\xa5\x9c\x9a\x9a\x9c\x99\x99\ +\xa7\xa4\xa4\xab\xa9\xa9\xa6\xa5\xa5\x9e\x9c\x9d\x9e\x9b\x9d\xab\ +\xa8\xaa\xab\xa9\xaa\xa8\xa6\xa6\x9f\x9b\x9b\xa1\x9e\x9d\xa9\xa7\ +\xa7\xb0\xae\xaf\xb4\xb2\xb2\xb3\xb1\xb1\xb2\xb0\xb0\xb4\xb2\xb2\ +\xb5\xb3\xb3\xb7\xb6\xb5\xbc\xb9\xba\xbd\xba\xbc\xba\xb8\xb8\xbb\ +\xb8\xb8\xbc\xba\xba\xbb\xb8\xb8\xbb\xb9\xba\xbb\xb8\xba\xbb\xb9\ +\xba\xbf\xbc\xbd\xbf\xbc\xbd\xbe\xba\xbc\xbf\xbb\xbd\xc1\xbe\xc0\ +\xbf\xbc\xbe\xbe\xbc\xbe\xc1\xbe\xc0\xc1\xbf\xc1\xc0\xbf\xc1\xbf\ +\xbe\xc0\xc0\xbe\xc0\xc0\xbf\xbf\xbe\xbc\xbc\xbf\xbd\xbe\x00\x00\ +\x00\x4d\x52\x54\x58\x59\x5b\x6f\x6b\x6c\x81\x7b\x7c\x8b\x86\x87\ +\x93\x8d\x8f\x95\x91\x93\x97\x94\x96\x94\x92\x94\x96\x94\x96\x91\ +\x8f\x91\x84\x83\x85\x73\x75\x77\x69\x6c\x6f\x60\x64\x68\x61\x64\ +\x69\x68\x6a\x6e\x74\x75\x79\x7a\x7c\x80\x79\x7c\x80\x79\x7c\x80\ +\x78\x7c\x80\x76\x7a\x7e\x73\x77\x7a\x6e\x72\x76\x63\x69\x6f\x61\ +\x68\x6d\x53\x56\x5c\x4c\x4f\x55\x49\x4c\x53\x4d\x4f\x54\x52\x53\ +\x58\x54\x54\x5a\x55\x55\x5b\x5f\x60\x65\x6a\x6d\x71\x6e\x72\x77\ +\x71\x75\x7a\x72\x76\x7b\x72\x76\x7b\x73\x77\x7c\x74\x78\x7d\x72\ +\x77\x7b\x72\x77\x7b\x72\x76\x7b\x70\x75\x78\x66\x6b\x70\x59\x5f\ +\x64\x56\x5d\x64\x5c\x63\x68\x60\x66\x6b\x56\x5d\x63\x45\x4d\x55\ +\x48\x4f\x57\x49\x4f\x56\x48\x4e\x54\x53\x57\x5d\x56\x58\x5e\x57\ +\x57\x5d\x60\x5f\x65\x65\x65\x6a\x72\x72\x77\x7c\x7f\x83\x82\x86\ +\x89\x81\x86\x89\x77\x7f\x83\x5b\x6a\x71\x33\x45\x4f\x1e\x29\x33\ +\x39\x35\x3d\x6f\x65\x69\x83\x80\x82\x82\x83\x86\x7f\x81\x85\x82\ +\x84\x88\x81\x84\x88\x79\x7d\x81\x5b\x69\x6d\x21\x34\x39\x02\x0d\ +\x12\x34\x38\x3d\x7a\x79\x79\x90\x90\x90\x95\x94\x96\x96\x95\x97\ +\x96\x97\x99\x96\x96\x9b\x96\x96\x9a\x99\x9a\x9c\x9a\x9b\x9d\x9d\ +\x9d\xa0\x9c\x9c\x9f\x9d\x9e\xa0\x9e\x9f\xa0\x9f\xa0\xa1\xa1\xa1\ +\xa3\x9e\x9d\x9f\x8d\x8b\x8b\x7c\x7a\x7a\x8a\x84\x85\x9c\x95\x96\ +\xa7\xa2\xa3\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xa9\xa6\xa8\xaa\ +\xa8\xaa\xaa\xa9\xab\xac\xab\xae\xab\xaa\xac\xa1\xa0\xa3\x98\x97\ +\x99\x95\x96\x98\x9c\x9c\x9e\xa5\xa3\xa5\x9e\x9d\x9f\x96\x95\x97\ +\x97\x96\x96\xa2\xa0\xa1\xa6\xa4\xa4\xa2\xa0\xa0\x9e\x9c\x9c\xa2\ +\x9f\x9f\xaa\xa8\xa8\xaa\xa8\xa9\x9f\x9d\x9e\x9a\x97\x99\xa3\xa0\ +\xa2\xaf\xac\xac\xad\xaa\xaa\xa3\xa3\xa3\x9b\x9a\x9a\xa2\xa0\xa1\ +\xab\xa9\xaa\xb3\xb0\xaf\xb5\xb3\xb3\xb4\xb3\xb3\xb4\xb2\xb2\xb6\ +\xb4\xb4\xb8\xb6\xb7\xba\xb7\xb9\xb9\xb5\xb6\xba\xb7\xb7\xba\xb7\ +\xb7\xbb\xba\xba\xb9\xb6\xb9\xb9\xb6\xb8\xbb\xb8\xba\xbb\xb8\xba\ +\xbe\xbb\xbd\xbe\xbb\xbc\xbf\xbc\xbe\xc0\xbc\xbf\xbe\xbb\xbd\xbf\ +\xbc\xbe\xbf\xbc\xbe\xc1\xbe\xc0\xc2\xbf\xc1\xc1\xbe\xc0\xc1\xbe\ +\xc0\xc2\xbf\xc1\xc2\xbf\xc1\xc2\xbf\xc1\x00\x00\x00\x4e\x53\x56\ +\x5e\x5e\x5f\x77\x72\x73\x87\x81\x83\x8e\x89\x8b\x94\x8f\x91\x96\ +\x92\x94\x96\x93\x95\x94\x91\x93\x94\x93\x95\x8f\x8e\x90\x7d\x7d\ +\x7d\x70\x72\x74\x67\x6a\x6e\x61\x64\x68\x64\x67\x6b\x6e\x70\x74\ +\x79\x7a\x7e\x79\x7b\x7f\x79\x7c\x80\x79\x7c\x81\x79\x7c\x80\x77\ +\x7a\x7e\x74\x78\x7c\x6f\x74\x77\x6a\x6e\x73\x64\x6a\x6f\x54\x59\ +\x5e\x42\x46\x4d\x37\x3b\x45\x3b\x3d\x46\x3b\x3c\x45\x46\x46\x4f\ +\x44\x45\x4f\x50\x50\x58\x61\x63\x68\x6d\x70\x75\x6f\x73\x78\x70\ +\x74\x79\x71\x75\x7a\x73\x77\x7c\x74\x78\x7d\x74\x78\x7c\x72\x76\ +\x7b\x71\x76\x7b\x70\x75\x79\x65\x6a\x6f\x59\x61\x66\x51\x59\x5f\ +\x57\x5f\x64\x61\x67\x6c\x5e\x64\x69\x54\x5c\x64\x42\x48\x51\x39\ +\x3d\x45\x3c\x40\x47\x44\x48\x4e\x4d\x50\x56\x53\x53\x58\x5c\x5d\ +\x61\x60\x61\x66\x66\x67\x6d\x76\x77\x7c\x81\x83\x87\x84\x89\x8b\ +\x7f\x85\x89\x76\x7e\x82\x5d\x6a\x70\x37\x49\x52\x1d\x28\x30\x35\ +\x30\x38\x6b\x62\x65\x85\x82\x83\x82\x82\x86\x80\x82\x85\x82\x85\ +\x89\x82\x85\x89\x75\x7b\x7f\x4e\x5f\x64\x2b\x3e\x45\x38\x46\x4c\ +\x68\x6c\x6e\x88\x89\x8a\x93\x92\x95\x97\x96\x98\x97\x97\x99\x98\ +\x98\x9b\x9a\x99\x9d\x9a\x9b\x9c\x9a\x9a\x9d\x9d\x9d\xa0\x9f\x9e\ +\xa1\x9d\x9c\x9f\x9b\x9b\x9e\x9f\x9f\xa1\xa2\xa1\xa3\x9c\x9b\x9d\ +\x84\x85\x86\x71\x71\x72\x6e\x6b\x6d\x81\x7b\x7c\x95\x8c\x8e\xa6\ +\xa0\xa2\xab\xa7\xa9\xa9\xa6\xa8\xa9\xa6\xa8\xaa\xa8\xaa\xaa\xa9\ +\xab\xac\xaa\xad\xad\xac\xae\xab\xaa\xac\xa6\xa5\xa7\x9f\x9f\xa1\ +\x97\x96\x98\x9b\x99\x9a\xa2\xa0\xa1\xa2\xa1\xa3\x9c\x9b\x9b\x98\ +\x96\x96\xa1\x9e\x9f\xaa\xa7\xa8\xa9\xa6\xa6\xa0\x9d\x9e\x9d\x9b\ +\x9c\xa6\xa3\xa4\xac\xa9\xaa\xa4\xa3\xa4\x9e\x9d\x9e\x9e\x9b\x9b\ +\xa9\xa4\xa6\xb1\xb0\xb0\xa9\xa8\xa8\xa1\x9e\xa0\xa2\x9e\xa0\xaa\ +\xa5\xa5\xb2\xad\xae\xb5\xb1\xb2\xb5\xb2\xb3\xb5\xb2\xb3\xb6\xb2\ +\xb3\xb6\xb2\xb4\xb7\xb2\xb3\xb8\xb4\xb5\xb8\xb4\xb5\xb9\xb7\xb7\ +\xb8\xb5\xb7\xb9\xb6\xb8\xbb\xb8\xba\xba\xb7\xb9\xbe\xbb\xbd\xbf\ +\xbc\xbe\xbf\xbc\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xc1\xbe\xbf\xc0\xbd\ +\xc0\xc1\xbe\xc0\xc1\xbf\xc0\xc0\xbe\xbf\xc0\xbd\xbf\xc1\xbe\xc0\ +\xc2\xbf\xc1\xc3\xc0\xc2\x00\x00\x00\x52\x56\x5a\x66\x65\x67\x7d\ +\x78\x7a\x8a\x85\x87\x90\x8c\x8e\x94\x90\x92\x95\x92\x94\x96\x94\ +\x96\x94\x92\x94\x91\x90\x93\x8b\x8a\x8c\x7a\x7a\x7d\x71\x73\x76\ +\x6a\x6d\x71\x65\x68\x6c\x66\x69\x6d\x74\x75\x79\x7a\x7b\x7f\x79\ +\x7a\x7e\x79\x7b\x7f\x78\x7c\x80\x77\x7b\x80\x76\x79\x7e\x76\x7a\ +\x7e\x71\x75\x79\x70\x74\x78\x64\x6a\x6f\x4e\x56\x5c\x30\x36\x3d\ +\x2c\x31\x3a\x2b\x2f\x39\x29\x2b\x35\x32\x33\x3e\x37\x39\x45\x43\ +\x45\x50\x5a\x5c\x64\x6a\x6d\x72\x6e\x72\x77\x70\x74\x79\x70\x74\ +\x79\x72\x76\x7b\x72\x76\x7b\x74\x77\x7d\x73\x77\x7c\x73\x77\x7c\ +\x71\x75\x7a\x68\x6e\x73\x61\x67\x6c\x58\x5f\x64\x5e\x64\x68\x6b\ +\x6f\x73\x66\x6b\x6f\x5e\x64\x6a\x41\x49\x51\x25\x2d\x36\x22\x2b\ +\x32\x1e\x25\x2c\x26\x29\x2f\x3c\x3d\x41\x4c\x4c\x52\x5e\x5e\x63\ +\x64\x66\x6a\x72\x74\x79\x7f\x82\x86\x86\x8a\x8e\x85\x89\x8d\x80\ +\x84\x88\x77\x7f\x84\x5f\x6d\x74\x38\x49\x52\x1f\x2a\x33\x35\x32\ +\x3a\x6a\x60\x64\x82\x7f\x80\x82\x84\x87\x81\x82\x86\x84\x86\x8a\ +\x83\x85\x89\x71\x77\x7b\x5d\x68\x6d\x60\x6a\x6d\x72\x77\x79\x81\ +\x83\x86\x8a\x8a\x8e\x94\x93\x96\x96\x97\x98\x9a\x99\x9b\x9b\x9a\ +\x9d\x9a\x99\x9b\x9b\x9a\x9c\x9c\x9c\x9f\x9d\x9d\xa0\x9d\x9d\xa0\ +\x9c\x9c\x9f\x9e\x9f\xa1\xa1\xa0\xa2\x9e\x9e\xa1\x90\x91\x94\x7e\ +\x81\x82\x67\x67\x68\x6a\x67\x69\x76\x6f\x71\x8d\x86\x87\x9f\x9a\ +\x9c\xa9\xa5\xa6\xa8\xa6\xa8\xaa\xa7\xaa\xa9\xa6\xa9\xaa\xa8\xaa\ +\xab\xa9\xab\xac\xaa\xac\xaa\xa9\xac\xa9\xa8\xaa\xa2\xa1\xa2\x9a\ +\x99\x9a\x96\x95\x97\x9c\x9b\x9d\xa4\xa3\xa3\xa3\xa2\xa3\x9d\x9b\ +\x9d\x9e\x9b\x9c\xa8\xa5\xa5\xac\xa9\xaa\xa4\xa2\xa4\x9b\x98\x9a\ +\xa0\x9d\x9e\xaa\xa7\xa8\xac\xab\xab\xa6\xa3\xa3\x9c\x98\x99\xa4\ +\xa1\xa2\xaf\xad\xad\xb1\xb0\xb0\xaa\xa6\xa8\xa1\x9d\x9f\xa5\xa1\ +\xa2\xad\xaa\xab\xb5\xb1\xb3\xb7\xb3\xb4\xb5\xb1\xb3\xb3\xaf\xb1\ +\xb5\xb1\xb3\xb4\xb1\xb2\xb7\xb3\xb5\xb9\xb6\xb7\xb9\xb6\xb8\xbb\ +\xb8\xba\xbc\xb9\xba\xbd\xba\xbc\xbe\xbb\xbd\xbe\xbb\xbd\xbf\xbc\ +\xbe\xbf\xbc\xbe\xbd\xba\xbc\xc0\xbd\xbe\xbf\xbc\xbf\xbf\xbb\xbf\ +\xc2\xbe\xc1\xc1\xbd\xbf\xc1\xbe\xc0\xc2\xbf\xc2\xc1\xbe\xc0\xc1\ +\xbe\xc0\x00\x00\x00\x5a\x5a\x5d\x70\x6d\x6f\x84\x7f\x81\x8d\x88\ +\x8b\x91\x8c\x90\x94\x91\x94\x95\x91\x95\x95\x93\x96\x92\x91\x93\ +\x91\x90\x93\x87\x86\x89\x7d\x7e\x82\x73\x76\x7a\x6c\x6f\x72\x69\ +\x6a\x6e\x6c\x6d\x71\x76\x78\x7a\x76\x77\x7b\x77\x78\x7c\x78\x7a\ +\x7e\x78\x7b\x80\x77\x7b\x80\x76\x7a\x7f\x74\x78\x7c\x74\x77\x7c\ +\x6f\x73\x78\x61\x68\x6d\x49\x52\x59\x2c\x33\x3b\x27\x2c\x35\x21\ +\x26\x30\x26\x29\x33\x26\x28\x33\x31\x34\x40\x40\x44\x4f\x57\x5a\ +\x63\x66\x69\x70\x6a\x6e\x74\x6f\x73\x78\x71\x75\x7a\x71\x75\x7a\ +\x73\x77\x7c\x74\x78\x7c\x74\x78\x7d\x74\x79\x7e\x73\x77\x7c\x6d\ +\x73\x78\x66\x6c\x71\x5f\x65\x6a\x5e\x63\x67\x67\x6b\x6e\x68\x6c\ +\x71\x65\x69\x6e\x54\x5c\x63\x2b\x39\x42\x21\x2f\x39\x1b\x24\x2c\ +\x11\x16\x1a\x1e\x22\x26\x34\x36\x3b\x4f\x4f\x53\x66\x67\x6b\x71\ +\x72\x77\x7e\x81\x86\x88\x8b\x8f\x88\x8b\x8f\x85\x89\x8e\x82\x88\ +\x8d\x7a\x81\x88\x64\x71\x79\x3c\x4d\x56\x20\x2b\x35\x30\x2d\x36\ +\x61\x58\x5c\x82\x7f\x80\x84\x85\x88\x82\x84\x88\x81\x82\x85\x79\ +\x7b\x7d\x6d\x72\x74\x6f\x74\x75\x7e\x80\x82\x83\x85\x88\x83\x84\ +\x88\x8b\x89\x8d\x93\x93\x94\x98\x97\x99\x9a\x99\x9b\x9a\x99\x9b\ +\x9a\x99\x9b\x98\x98\x9b\x9b\x9b\x9f\x9e\x9f\xa3\x9f\x9e\xa2\x9f\ +\x9e\xa2\x9f\x9f\xa2\x9f\xa1\xa4\x9b\x9b\xa0\x80\x82\x86\x65\x67\ +\x69\x5d\x5d\x5e\x5f\x5c\x60\x72\x70\x71\x8d\x8a\x8b\xa4\xa0\xa2\ +\xaa\xa7\xa9\xab\xa8\xaa\xaa\xa7\xaa\xaa\xa8\xaa\xaa\xa7\xa9\xac\ +\xa8\xaa\xab\xa9\xad\xab\xaa\xae\xaa\xa9\xac\xa8\xa7\xaa\x9e\x9d\ +\xa1\x96\x95\x97\x9a\x98\x99\xa3\xa0\xa2\xa5\xa2\xa4\x9d\x9c\x9d\ +\x9b\x98\x9a\xa2\x9f\xa0\xa7\xa4\xa6\xa5\xa3\xa5\x9b\x99\x9b\x9e\ +\x9c\x9d\xa8\xa5\xa6\xb0\xad\xae\xab\xa9\xaa\xa2\x9e\xa0\xa1\x9e\ +\x9f\xaa\xa6\xa7\xb0\xad\xaf\xb0\xad\xaf\xa6\xa3\xa5\xa1\x9e\xa0\ +\xa7\xa3\xa5\xaf\xaa\xac\xb5\xb0\xb2\xb5\xb2\xb4\xb6\xb3\xb5\xb3\ +\xb1\xb2\xb5\xb1\xb4\xb6\xb2\xb4\xb6\xb3\xb6\xb8\xb4\xb8\xbb\xb8\ +\xbc\xbe\xba\xbe\xbf\xbc\xbe\xbe\xbb\xbd\xbf\xbc\xbe\xbf\xbc\xbd\ +\xbe\xb9\xbd\xc0\xbc\xc0\xbe\xbb\xbf\xbe\xba\xbf\xc0\xbc\xc1\xc2\ +\xbe\xc1\xc0\xbc\xc0\xc2\xbe\xc2\xc1\xbd\xc1\xbf\xbc\xc0\x00\x00\ +\x00\x62\x60\x63\x78\x73\x75\x87\x82\x84\x8f\x8a\x8e\x93\x8f\x93\ +\x96\x93\x98\x94\x91\x96\x93\x91\x95\x91\x90\x94\x90\x8f\x93\x83\ +\x82\x87\x7e\x7e\x84\x76\x78\x7c\x6e\x70\x72\x6b\x6c\x70\x71\x72\ +\x75\x74\x75\x77\x6f\x70\x74\x6c\x6d\x72\x70\x71\x76\x74\x76\x7c\ +\x76\x79\x7e\x75\x78\x7d\x72\x77\x7b\x71\x76\x7a\x6f\x73\x79\x63\ +\x6a\x6f\x4a\x53\x5b\x33\x3c\x44\x29\x30\x39\x20\x25\x2f\x27\x2c\ +\x35\x2a\x2d\x38\x2f\x35\x40\x44\x48\x52\x59\x5b\x64\x67\x69\x71\ +\x6a\x6c\x74\x6d\x70\x75\x71\x75\x79\x71\x75\x7a\x73\x76\x7c\x74\ +\x77\x7d\x74\x78\x7e\x74\x77\x7e\x73\x77\x7e\x72\x77\x7c\x6b\x71\ +\x76\x66\x6c\x71\x5d\x63\x67\x54\x5a\x5f\x5c\x60\x66\x64\x67\x6c\ +\x61\x66\x6b\x4c\x57\x5f\x34\x42\x4d\x2f\x39\x42\x2a\x32\x38\x2e\ +\x35\x3c\x34\x39\x3f\x4d\x4e\x54\x66\x67\x6b\x74\x75\x79\x80\x81\ +\x87\x86\x89\x8e\x86\x89\x8e\x87\x8b\x90\x87\x8b\x90\x82\x87\x8d\ +\x7a\x82\x89\x66\x74\x7c\x3f\x50\x59\x20\x2e\x3a\x2b\x2c\x38\x5a\ +\x55\x5b\x81\x7e\x81\x85\x86\x89\x7c\x7d\x7f\x74\x75\x75\x72\x74\ +\x74\x75\x76\x77\x7e\x80\x81\x85\x85\x87\x88\x89\x8d\x85\x85\x89\ +\x87\x88\x8a\x93\x92\x94\x96\x95\x97\x99\x98\x9b\x98\x99\x9c\x98\ +\x98\x9c\x9b\x9b\x9f\x9f\x9f\xa3\xa0\xa0\xa4\xa0\x9f\xa3\x9f\xa0\ +\xa3\x9e\x9f\xa3\x9d\x9d\xa3\x86\x88\x8d\x6d\x71\x76\x5e\x62\x66\ +\x62\x64\x67\x6a\x6b\x6c\x7c\x7b\x7b\x8c\x88\x8a\x96\x92\x94\xa4\ +\xa0\xa2\xad\xaa\xac\xac\xaa\xab\xaa\xa6\xa9\xa9\xa7\xa9\xac\xaa\ +\xac\xad\xac\xb0\xab\xaa\xad\xab\xaa\xad\xab\xaa\xac\xa4\xa3\xa6\ +\x9d\x9c\x9e\x96\x94\x96\x9c\x99\x9b\xa3\xa1\xa3\xa2\x9f\xa1\x9a\ +\x97\x99\x99\x96\x98\xa4\xa1\xa3\xaa\xa7\xa9\xa6\xa4\xa6\x9f\x9c\ +\x9e\xa4\xa1\xa3\xab\xa8\xa9\xb2\xaf\xb1\xa9\xa5\xa7\xa0\x9c\x9f\ +\xa2\x9e\xa2\xad\xa9\xad\xb5\xb1\xb3\xad\xab\xac\xa3\x9f\xa2\xa0\ +\x9c\xa0\xa9\xa4\xa8\xb6\xb1\xb3\xb7\xb3\xb5\xb7\xb4\xb6\xb7\xb3\ +\xb5\xb5\xb2\xb3\xb6\xb3\xb6\xb7\xb3\xb7\xb9\xb5\xba\xbd\xb9\xbd\ +\xbd\xb9\xbd\xbd\xba\xbe\xbf\xbb\xbe\xbf\xbc\xbd\xbe\xba\xbe\xc0\ +\xbc\xc0\xc0\xbc\xc0\xbf\xbc\xc1\xc0\xbc\xc1\xc0\xbc\xc1\xbf\xbb\ +\xc0\xc0\xbb\xc0\xbe\xba\xbf\xbe\xba\xbf\x00\x00\x00\x6a\x67\x6b\ +\x7e\x79\x7c\x8a\x84\x88\x90\x8c\x90\x94\x90\x95\x95\x92\x97\x95\ +\x93\x98\x93\x92\x97\x90\x8f\x93\x8d\x8c\x90\x87\x86\x8b\x7d\x7e\ +\x83\x77\x79\x7d\x70\x71\x74\x6f\x70\x74\x74\x75\x79\x6d\x6f\x73\ +\x64\x66\x6b\x60\x61\x67\x62\x62\x6a\x67\x69\x6f\x72\x74\x79\x75\ +\x79\x7e\x74\x78\x7d\x71\x75\x7a\x72\x76\x7c\x68\x6e\x75\x50\x59\ +\x62\x3f\x4a\x54\x34\x3f\x4a\x2b\x34\x3f\x2a\x32\x3c\x2f\x36\x42\ +\x32\x39\x44\x4a\x4e\x58\x5f\x61\x6a\x65\x68\x70\x69\x6c\x74\x6b\ +\x6e\x75\x70\x74\x79\x70\x75\x7c\x73\x76\x7e\x73\x76\x7e\x76\x79\ +\x80\x74\x78\x80\x74\x78\x7f\x74\x79\x80\x70\x76\x7d\x6c\x72\x78\ +\x60\x66\x6c\x4a\x51\x59\x4a\x4f\x58\x52\x57\x5f\x5d\x62\x67\x5c\ +\x64\x6a\x4d\x56\x5f\x44\x4e\x57\x44\x4e\x56\x44\x4b\x54\x43\x49\ +\x51\x56\x59\x5d\x6b\x6d\x71\x77\x79\x7d\x83\x86\x8b\x88\x8b\x91\ +\x89\x8c\x91\x88\x8b\x91\x87\x8a\x92\x88\x8b\x92\x84\x89\x90\x7c\ +\x85\x8c\x68\x74\x7c\x45\x55\x60\x25\x34\x43\x27\x2e\x3a\x53\x54\ +\x5c\x7c\x7c\x7f\x7a\x7c\x7d\x6b\x6d\x6e\x72\x72\x73\x7f\x7e\x81\ +\x84\x84\x86\x83\x85\x86\x87\x87\x8b\x89\x8a\x8e\x86\x87\x8b\x89\ +\x8a\x8e\x90\x91\x94\x96\x96\x9a\x97\x98\x9c\x99\x9a\x9e\x9c\x9b\ +\x9f\x9e\x9c\xa1\x9e\x9e\xa2\x9e\x9e\xa3\x9f\x9f\xa4\x9f\x9d\xa3\ +\x9d\x9d\xa3\x93\x95\x9b\x87\x8b\x91\x81\x85\x8b\x7c\x7f\x82\x72\ +\x74\x75\x6a\x68\x6a\x69\x67\x6a\x76\x72\x75\x91\x8c\x8e\xa7\xa3\ +\xa4\xae\xac\xad\xab\xa8\xaa\xad\xaa\xac\xb0\xac\xaf\xaf\xad\xb0\ +\xac\xab\xad\xab\xaa\xae\xaa\xa9\xad\xaf\xae\xb2\xac\xab\xae\xa0\ +\x9f\xa1\x96\x94\x96\x99\x95\x97\xa3\xa0\xa2\xa6\xa4\xa6\x9c\x9b\ +\x9d\x9a\x99\x9c\x9f\x9d\xa1\xad\xaa\xac\xac\xa9\xab\xa4\xa2\xa4\ +\xa0\x9d\x9f\xa4\xa1\xa3\xb2\xaf\xb1\xb1\xae\xb1\xa4\xa1\xa5\x9d\ +\x99\x9e\xa7\xa3\xa8\xb3\xb0\xb4\xb1\xaf\xb2\xa6\xa4\xa6\x9d\x99\ +\x9c\xa1\x9d\x9f\xad\xaa\xac\xba\xb7\xb9\xba\xb7\xb9\xb9\xb5\xb9\ +\xb8\xb4\xb8\xb8\xb4\xb9\xb8\xb4\xb9\xba\xb6\xbb\xbb\xb7\xbc\xba\ +\xb6\xbb\xbe\xba\xbe\xc1\xbd\xc1\xc0\xbc\xc1\xc0\xbc\xc0\xc0\xbc\ +\xc1\xc0\xbc\xc1\xbe\xba\xbf\xc0\xbc\xc1\xbf\xbb\xc0\xbe\xba\xbf\ +\xbf\xbb\xc0\xbd\xb9\xbe\x00\x00\x00\x73\x6f\x74\x84\x7f\x82\x8c\ +\x87\x8c\x91\x8d\x93\x94\x90\x95\x94\x92\x97\x92\x91\x95\x91\x90\ +\x94\x8f\x8e\x92\x8b\x8a\x8e\x86\x86\x8b\x80\x81\x87\x79\x7b\x80\ +\x72\x73\x77\x6e\x6f\x73\x6d\x6e\x72\x67\x68\x6d\x5c\x5d\x63\x55\ +\x58\x5f\x56\x59\x61\x5b\x5d\x66\x69\x6c\x73\x72\x75\x7b\x73\x77\ +\x7c\x72\x76\x7b\x70\x73\x7a\x69\x6f\x77\x5f\x68\x71\x51\x5c\x66\ +\x47\x53\x5f\x3f\x4b\x57\x3c\x46\x51\x3f\x49\x55\x42\x49\x56\x52\ +\x57\x61\x60\x63\x6b\x63\x66\x6e\x65\x68\x70\x69\x6c\x74\x6b\x6e\ +\x76\x70\x74\x7b\x73\x76\x7d\x71\x75\x7d\x73\x79\x7f\x73\x79\x80\ +\x73\x79\x80\x74\x7a\x81\x74\x7a\x81\x72\x78\x7f\x66\x6c\x74\x55\ +\x5d\x67\x43\x4b\x57\x3e\x44\x50\x51\x57\x5f\x59\x5e\x66\x58\x60\ +\x67\x52\x5b\x63\x46\x50\x59\x3b\x44\x50\x38\x3f\x4a\x4e\x52\x59\ +\x6b\x6c\x71\x7d\x7f\x83\x85\x88\x8d\x88\x8b\x90\x88\x8c\x93\x89\ +\x8c\x94\x88\x8b\x93\x8a\x8d\x95\x89\x8c\x94\x88\x8f\x95\x7f\x87\ +\x8e\x6d\x78\x80\x49\x5a\x65\x24\x35\x41\x1f\x27\x32\x41\x3e\x47\ +\x5b\x55\x57\x57\x50\x52\x5f\x57\x5b\x7b\x76\x7a\x88\x86\x8a\x86\ +\x86\x8a\x82\x83\x87\x8b\x8a\x8e\x8c\x8c\x90\x89\x89\x8e\x86\x87\ +\x8a\x8e\x8f\x92\x98\x99\x9d\x9c\x9b\xa0\x9d\x9c\xa2\x9e\x9c\xa2\ +\x9e\x9d\xa3\x9d\x9d\xa2\x9d\x9d\xa3\x9c\x9b\xa1\x9f\x9e\xa4\xa1\ +\xa1\xa7\x9e\x9f\xa5\xa0\x9f\xa5\x9a\x9b\x9f\x8c\x8d\x90\x77\x79\ +\x7d\x68\x6b\x6f\x6d\x6e\x72\x84\x81\x85\x92\x8e\x91\x9f\x9a\x9e\ +\xaa\xa7\xaa\xad\xab\xad\xb0\xac\xb0\xad\xac\xaf\xae\xad\xb0\xad\ +\xac\xb0\xad\xac\xb0\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xaf\xa5\xa4\ +\xa8\x9a\x99\x9c\x97\x94\x97\x9d\x9a\x9d\xa9\xa7\xaa\xa7\xa6\xaa\ +\x9b\x9a\x9e\x9d\x9a\x9f\xa5\xa1\xa4\xae\xab\xae\xab\xa8\xaa\xa0\ +\x9c\xa0\xa2\x9f\xa2\xad\xa9\xad\xb2\xae\xb2\xac\xa8\xab\x9e\x9d\ +\xa0\x9f\x9d\xa0\xa9\xa7\xaa\xb4\xb2\xb4\xac\xaa\xac\x9f\x9c\x9e\ +\x9e\x9c\x9f\xa9\xa6\xa8\xb6\xb2\xb4\xba\xb7\xba\xbc\xb8\xbd\xbb\ +\xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xba\xb7\xbb\xb8\xb4\xb9\xbb\xb7\ +\xbc\xbf\xbc\xc1\xc0\xbc\xc1\xbd\xbb\xbf\xbd\xba\xbf\xbc\xba\xbf\ +\xbd\xb9\xbf\xbe\xbb\xc1\xc0\xbc\xc2\xc2\xbe\xc3\xc0\xbc\xc1\xc1\ +\xbd\xc2\x00\x00\x00\x7b\x77\x7a\x86\x81\x84\x8f\x8b\x8f\x91\x8f\ +\x94\x92\x91\x95\x92\x90\x95\x92\x91\x95\x90\x8f\x93\x90\x8f\x94\ +\x8c\x8b\x90\x84\x84\x8a\x84\x84\x8a\x78\x7b\x80\x74\x75\x78\x6b\ +\x6c\x71\x62\x62\x68\x59\x5b\x60\x53\x55\x5b\x4b\x4e\x57\x51\x54\ +\x5c\x56\x59\x61\x63\x66\x6e\x6f\x71\x78\x71\x75\x7a\x71\x74\x7b\ +\x72\x74\x7c\x6c\x72\x78\x6a\x72\x7a\x60\x69\x72\x58\x62\x6b\x52\ +\x5c\x66\x50\x59\x63\x4e\x55\x60\x4d\x52\x5d\x54\x58\x61\x5f\x62\ +\x6a\x68\x6b\x73\x65\x67\x70\x68\x6b\x73\x6a\x6e\x75\x6d\x72\x79\ +\x72\x78\x7e\x71\x77\x7e\x71\x77\x7e\x75\x7b\x82\x74\x7a\x81\x75\ +\x7b\x82\x74\x79\x80\x72\x78\x7f\x6d\x74\x7c\x62\x6b\x74\x58\x62\ +\x6d\x4f\x59\x62\x47\x4d\x56\x4f\x56\x5f\x5a\x61\x68\x5c\x66\x6d\ +\x57\x62\x6b\x35\x40\x4d\x23\x2b\x37\x3a\x41\x4b\x63\x65\x6d\x7f\ +\x81\x88\x87\x89\x90\x87\x89\x90\x88\x8a\x92\x89\x8b\x94\x89\x8c\ +\x95\x8b\x8e\x97\x8b\x8e\x96\x8b\x8f\x97\x89\x8e\x95\x7f\x85\x8d\ +\x6e\x77\x80\x4d\x5b\x65\x28\x34\x40\x19\x1a\x25\x19\x13\x1b\x1f\ +\x19\x1f\x29\x20\x27\x57\x4c\x52\x81\x7c\x7f\x89\x88\x8b\x89\x89\ +\x8d\x86\x85\x8a\x8b\x8b\x8f\x8d\x8d\x92\x8a\x8b\x8f\x89\x8a\x8e\ +\x8c\x8d\x91\x99\x9a\x9e\x9e\x9e\xa4\xa0\x9e\xa4\xa0\x9f\xa5\xa0\ +\x9f\xa5\x9f\x9e\xa4\xa2\xa2\xa8\xa1\xa1\xa7\xa2\xa2\xa8\xa0\xa0\ +\xa6\xa1\xa2\xa5\xa1\xa2\xa6\x9d\x9e\xa2\x92\x95\x99\x7b\x7f\x83\ +\x72\x76\x7b\x74\x74\x79\x76\x72\x77\x81\x7c\x81\x94\x90\x94\xa6\ +\xa4\xa7\xad\xab\xaf\xad\xab\xb0\xaf\xae\xb2\xaf\xae\xb2\xaf\xae\ +\xb2\xb0\xaf\xb3\xb0\xaf\xb3\xb0\xaf\xb3\xad\xac\xb0\xad\xac\xaf\ +\xa3\xa2\xa6\x9a\x99\x9d\x9e\x9d\xa0\xa9\xa8\xac\xae\xac\xb0\xa4\ +\xa3\xa7\x9e\x9a\x9e\xa2\x9e\xa3\xad\xaa\xad\xb2\xaf\xb3\xa4\xa2\ +\xa6\x9e\x9d\xa1\xa3\xa1\xa5\xad\xac\xae\xaf\xae\xb0\xa5\xa4\xa7\ +\x9f\x9d\xa1\xa4\xa0\xa5\xae\xaa\xae\xb3\xb0\xb2\xa9\xa8\xaa\xa0\ +\x9f\xa3\xa2\x9f\xa2\xae\xa9\xae\xbc\xb8\xbd\xc0\xbc\xc1\xbd\xb9\ +\xbe\xbb\xb7\xbc\xb9\xb6\xbb\xb8\xb5\xba\xb9\xb6\xbb\xbc\xb9\xbd\ +\xc0\xbc\xc1\xbf\xbd\xc2\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbd\ +\xbb\xc0\xc2\xbf\xc4\xc1\xbd\xc2\xc0\xbc\xc1\xc2\xbe\xc3\x00\x00\ +\x00\x80\x7b\x7e\x89\x86\x89\x8e\x8b\x90\x92\x90\x95\x93\x92\x96\ +\x94\x93\x97\x93\x93\x96\x90\x8e\x93\x8d\x8c\x92\x8c\x8c\x92\x89\ +\x89\x8f\x81\x84\x89\x77\x7a\x7f\x74\x76\x7b\x66\x67\x6b\x59\x5a\ +\x60\x4e\x51\x58\x4b\x4e\x56\x4b\x4e\x56\x53\x55\x5d\x5b\x5e\x66\ +\x64\x67\x6f\x6e\x71\x79\x72\x74\x7c\x71\x74\x7c\x70\x73\x7b\x6e\ +\x74\x7a\x6d\x74\x7b\x68\x70\x77\x63\x6c\x74\x5e\x68\x71\x59\x62\ +\x6b\x53\x59\x63\x49\x4e\x59\x51\x54\x5e\x5b\x5e\x66\x5e\x61\x69\ +\x5c\x60\x66\x5e\x61\x68\x65\x69\x71\x6a\x70\x77\x70\x76\x7d\x71\ +\x77\x7e\x73\x79\x80\x74\x7a\x81\x76\x7c\x83\x75\x7b\x82\x75\x7b\ +\x81\x74\x7a\x80\x72\x79\x80\x6e\x76\x7e\x69\x73\x7b\x61\x6a\x73\ +\x56\x61\x69\x4a\x55\x5e\x4f\x56\x5e\x5a\x64\x6b\x60\x6b\x72\x58\ +\x65\x6e\x42\x52\x5f\x4b\x59\x65\x68\x6e\x77\x7e\x81\x88\x86\x88\ +\x90\x87\x8a\x92\x89\x8c\x94\x88\x8b\x94\x88\x8d\x96\x8a\x8e\x97\ +\x8b\x8d\x97\x8d\x8f\x98\x8e\x91\x99\x8a\x8f\x95\x80\x88\x8e\x71\ +\x7c\x81\x58\x64\x6b\x2b\x38\x46\x0b\x11\x1b\x01\x01\x04\x06\x04\ +\x08\x19\x13\x18\x50\x45\x4a\x7c\x75\x7a\x89\x88\x8c\x8b\x8c\x90\ +\x89\x89\x8f\x8c\x8c\x91\x8e\x90\x94\x8c\x8e\x93\x88\x89\x8e\x8e\ +\x8e\x94\x9a\x99\x9f\x9f\x9d\xa4\xa1\x9f\xa5\xa1\x9f\xa5\xa0\x9e\ +\xa4\xa0\x9f\xa5\xa0\xa0\xa6\xa2\xa2\xa8\xa3\xa4\xa9\xa4\xa4\xaa\ +\xa2\xa4\xa8\xa4\xa4\xa8\xa2\xa4\xa8\x98\x9c\xa0\x8a\x90\x95\x80\ +\x84\x89\x75\x74\x79\x64\x61\x66\x70\x6b\x6e\x88\x81\x84\xa0\x9a\ +\x9f\xac\xa8\xad\xae\xac\xaf\xaf\xae\xb0\xae\xad\xb1\xb0\xaf\xb3\ +\xb1\xb0\xb4\xb1\xb0\xb4\xb3\xb0\xb7\xb3\xb1\xb7\xb1\xb0\xb6\xa9\ +\xa9\xae\x9f\x9f\xa3\x9b\x9b\x9f\xa6\xa4\xa9\xb0\xad\xb2\xaa\xa8\ +\xad\xa0\x9e\xa2\x9f\x9b\xa0\xa7\xa3\xa7\xb1\xaf\xb1\xaa\xa9\xac\ +\xa0\x9f\xa3\x9b\x9a\x9e\xa5\xa4\xa7\xb0\xaf\xb1\xad\xac\xaf\xa2\ +\x9f\xa4\x9e\x9a\x9f\xa8\xa4\xa9\xb5\xb1\xb6\xb2\xb1\xb5\xab\xaa\ +\xad\xa4\xa2\xa7\xa8\xa4\xa9\xb5\xaf\xb5\xbd\xb9\xbe\xbc\xb8\xbe\ +\xbe\xba\xbf\xbd\xba\xbf\xbb\xba\xbe\xbb\xba\xbe\xbb\xb9\xbd\xbd\ +\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbc\xbb\xbf\xbe\xbd\xc1\xbf\xbb\ +\xc0\xc1\xbd\xc2\xc1\xbe\xc3\xc3\xc0\xc5\x00\x00\x00\ +\x00\x00\x07\xef\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x10\x06\x00\x00\x00\x4f\x63\x23\x22\ +\x00\x00\x00\x06\x62\x4b\x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\ +\xf7\xdc\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\ +\x37\x5c\x01\xcb\xc7\xa4\xb9\x00\x00\x00\x09\x76\x70\x41\x67\x00\ +\x00\x00\x10\x00\x00\x00\x10\x00\x5c\xc6\xad\xc3\x00\x00\x07\x4c\ +\x49\x44\x41\x54\x48\xc7\x5d\x93\x69\x50\x94\x67\x16\x85\xcf\xfb\ +\x7d\x4d\x77\x4b\x77\xd3\x48\x77\x23\x8a\xb2\x09\x51\x19\x01\x65\ +\x53\x16\x01\x1d\xc5\x4e\x06\x89\x80\x62\x08\xee\x83\x36\x91\x21\ +\x2a\x48\x8c\x33\x12\xd7\x72\xca\x11\x65\x2c\x97\x41\x0d\x24\x8a\ +\x7b\x8c\x30\xb1\x24\xa2\x53\x2a\xa5\x94\x04\x88\x80\x6c\x8a\xad\ +\x80\x88\xa8\x48\x0b\xbd\xaf\xdf\x3b\x3f\x70\xa6\x2a\xb9\x7f\x9e\ +\xba\x75\x4f\xd5\xa9\x5b\xf7\x5c\x92\x54\x93\x54\x93\x54\x03\xbc\ +\x6a\x78\xd5\xf0\xaa\x81\x49\x14\x36\x0a\x1b\x85\x8d\x44\x98\x50\ +\x94\xb0\x33\x21\xc3\x61\xf3\x10\x48\x52\xb5\x1f\xe3\xe7\x98\xc2\ +\x19\x47\xbc\xf3\x90\xce\xec\xe2\xa9\x19\x21\x2e\xb7\xa4\xf6\xff\ +\x5b\x9e\x20\x15\xf9\x0f\x8d\xcd\xd4\x9e\x09\x5f\x3c\xf6\x81\xa8\ +\x9a\x6e\x51\xe6\x68\xa5\x23\x92\xe1\xfd\xb3\x43\xff\x35\xb9\xfc\ +\xf2\xcf\xee\x6b\x3c\x25\x0b\x44\x0b\x85\x52\xf5\x90\x28\xc9\x59\ +\x39\xe6\x04\xd9\x32\xa8\xd4\x24\xea\x26\xd0\xa2\xca\xf1\xb7\xec\ +\x0f\x63\x00\xde\x9c\x3b\xb1\x39\x51\x0f\x01\xce\xcc\xe5\xd2\x00\ +\x4e\xff\xb8\xa8\x5b\xf5\xb6\x0b\x37\x85\xf9\xce\xd5\x62\xf0\xb7\ +\x4f\x3b\x12\x58\x32\x45\x3a\xed\x32\xff\xb0\xf4\x9e\xf4\x4c\xdc\ +\x16\xde\x1e\x7b\xda\xc8\xf5\xb9\x95\x61\xd9\xf2\xa0\xde\x69\x91\ +\x3c\x36\x8c\x29\xa0\x41\x9e\xbf\xb0\xdf\xd9\x3c\xe8\x2c\x6e\xbd\ +\x58\xc1\x5b\x6b\xe3\x31\xad\x41\xf5\x01\x3e\x1e\xaa\xf9\xfb\xfd\ +\xeb\xbc\x9c\x15\xd5\xea\x2c\xe2\x49\xba\x51\xcb\x94\x1b\x0e\x99\ +\xc6\x59\xd3\x1d\x68\x4a\xeb\xe8\x7c\xd1\x0f\x10\x65\x9f\x52\x90\ +\x78\x0e\x18\x1a\x79\xd7\x30\x74\x30\xe1\xdb\xde\xe1\x97\xf5\xaf\ +\xd7\x66\xe5\x6c\xb3\xe6\x6e\xfe\x2c\x6a\x96\xe7\xd2\x00\x65\x6c\ +\xb8\x6a\xf2\x37\x46\xbd\xfe\x6f\x5a\x6f\xb2\xca\x3e\xd5\x28\x7f\ +\x97\x8c\x5e\x6b\xaf\xf1\xf0\xfb\x72\x78\x63\x37\xc2\x49\x1a\x0a\ +\xb8\x04\x5a\x44\x9d\x6d\xe9\x6c\x25\xb3\x90\x29\x75\x8a\x68\xcf\ +\x57\x6f\x19\xb8\x59\xe9\xc8\x88\x2e\xf0\xcc\xde\x94\xc2\x03\x00\ +\x88\x89\x16\x00\xa2\x0f\x50\x17\x99\xcc\xf5\x9a\x48\x0f\x30\x8a\ +\xd9\xf2\xb3\x8a\x54\x80\xbe\xc0\x1a\x04\xad\x78\xa3\x10\x28\xca\ +\xe4\xfa\x4c\x73\xcb\xb2\x47\xe1\x1d\x7f\xf4\x6d\x31\xfd\x34\x3c\ +\xa9\xff\x0a\x51\x9b\x2a\x74\x11\x43\x57\x1c\x97\x46\x38\xcd\xec\ +\x81\x78\x2e\xd4\xe4\x62\x36\x59\xf6\xd1\x07\xa6\x74\xf3\x76\x73\ +\x2b\xb6\x9b\x61\x1e\x30\xb7\xf1\x26\x59\x6a\xcc\xab\xcc\x5d\x80\ +\x58\x3a\xe6\x34\x2f\x26\xea\xac\x60\x2b\x3f\x3c\xee\x86\xac\x5e\ +\xb8\x92\xdf\x1e\xc7\x51\x97\x04\xbf\x70\x8d\x9f\x0d\xd6\xc0\x4b\ +\x7e\x4a\xf7\x66\x80\xd7\x92\xff\xa8\xb9\x55\x05\x8c\x04\x8e\x7c\ +\x33\xc2\x6f\xdb\x20\x2b\x90\x0d\xcb\x8f\x02\x6d\x5f\xaa\xb3\x06\ +\x8a\xe9\x92\xc1\x8f\xb4\xf7\x1d\xbe\xa8\xe0\xdd\xb3\x47\xe8\x3d\ +\xd8\x31\xe6\x3c\x53\x8a\x79\x2c\x96\x92\x9b\x64\x88\xcc\x03\x43\ +\x97\xd3\x42\x1a\x0c\xd0\x4f\xe9\x67\xf8\x82\x88\x99\xdb\x4c\x25\ +\x09\xa1\xa9\x4e\x1c\x7b\x90\xab\x1b\x77\x35\x47\xbc\x2c\x6f\xd6\ +\xd3\x59\xcf\xdd\xa6\x4b\x53\x9d\x17\x56\x81\x4d\x67\xca\x88\x8a\ +\x39\xf1\xde\x4d\x3b\xd9\x34\x85\x03\xaf\xb3\xa3\xf3\x55\x27\x05\ +\x68\x29\xdd\x45\x1f\xd7\x6e\x90\xf9\xc9\xd4\x6e\x07\x71\xfe\xdd\ +\xfa\xf7\x12\xdd\x7c\x5e\x61\xab\xaa\xad\xb8\xf3\x2d\x6a\xa7\xbc\ +\xf7\x20\x90\x63\xbe\x29\xd8\x3c\xd3\x56\x03\x86\xd4\x90\x78\xf2\ +\x0c\xc0\x0c\x1a\x44\xa7\x01\x98\x44\x0e\x90\x14\xb0\x08\x43\x14\ +\x16\x70\x45\xf4\x38\xf5\xe1\x5a\x59\x4c\x2c\x51\xc4\x88\x13\x13\ +\xdd\xe3\x52\x42\xb7\x79\xf3\xaa\x80\xc7\x44\x86\x65\xc8\xf0\x8e\ +\x1c\xef\x26\x5d\x8f\x5c\x82\xdf\x94\xf3\xc9\x40\x9f\x69\x47\xa7\ +\x56\xb5\xa6\x18\xb7\x59\xa6\x72\x9b\xfd\xe4\x89\x53\x23\xeb\x3d\ +\x4f\xd3\x5d\x4b\xb6\xc6\xe6\x79\x9c\x27\x3b\x74\xd5\x26\x6f\xab\ +\x05\x60\x6e\x93\xb9\xd8\x0e\xd0\x60\x3a\x13\x51\x00\x5b\xc6\xfe\ +\xc0\x54\x01\x8e\x25\x8e\x75\xdc\x01\x1a\xc8\xb4\x10\x3f\xc8\x49\ +\xc7\x9b\x16\xcd\xf7\x86\xe4\xd6\x00\x55\xf1\xbe\x73\x37\xe6\xce\ +\x54\x8d\xfa\x38\x0a\x3e\x18\xe6\x93\x78\x55\x7c\x76\x7c\x36\xb3\ +\x5f\x10\x26\xa8\xe3\x7b\x73\x5b\x3b\x6e\xb6\x5f\xeb\xb8\x70\xee\ +\xb9\x73\xa8\xb8\xcf\xe5\xf8\xe7\xbe\x6e\x1d\xce\x2b\xed\x7d\x9c\ +\x67\xde\xe7\x4b\x2b\xa6\xf2\x98\x7e\xc7\x29\x87\x90\xbb\x0e\xd0\ +\x1f\x70\x92\xee\x01\x48\x33\x69\x26\xbf\x00\xbc\x63\xec\x45\xde\ +\x1d\xc0\xaa\xb1\x3e\xb7\xb6\xe3\x3b\xf6\x6b\x56\xca\xac\xc5\x1a\ +\x43\x93\x89\xb5\xed\xe5\x56\x5c\xcf\xbd\xef\xf6\xac\x3b\x34\x4f\ +\x18\x22\x48\x62\x77\xb4\x84\x8e\x51\x09\xce\x3a\xb5\x31\x62\xe2\ +\xa2\x77\xd1\xbb\xe8\xd9\x04\xac\x44\x2a\xe2\x1c\x77\xed\x61\x76\ +\x77\xfb\xdb\xac\x5a\xaf\x42\xaf\x07\x5e\xd1\xa7\xa2\x0d\x46\x83\ +\x52\x1f\xc1\xa5\x6c\x7a\x97\xda\xef\xe7\xcd\x54\xb8\xa7\x49\x43\ +\xf9\x9b\x00\x6b\xb4\xed\x4b\x47\x26\xc0\x17\xf2\x07\xf9\x15\x00\ +\x3a\xf1\x84\x3e\x05\x2c\xd4\xd2\x6e\xb9\x02\x38\x0d\x3b\x59\x9d\ +\x74\x0e\xce\xe6\x61\x5b\x61\x57\xb3\x4c\x27\xaf\x67\x40\xc3\xe4\ +\x35\x4e\xac\x56\xf8\x8b\xcc\xc5\x11\x28\x20\xfb\xc8\x49\x36\xeb\ +\xc3\x09\x88\x7a\x94\xd4\x7f\x94\x81\x05\x3e\x51\xde\xf7\xbc\x05\ +\x4d\xbb\x75\x73\x8c\x0d\x96\x2e\xbe\x30\xb5\x38\x2a\x53\x66\xc2\ +\xce\xe8\xf0\x3f\x44\x8d\xed\xc1\x4e\xfd\x55\xd3\x1c\x7b\x3a\x20\ +\x36\x89\x6f\x88\x02\x01\xf3\x88\xe9\xae\xe9\x38\xe0\x28\x71\xec\ +\x72\x64\x03\xfc\x1d\x02\xb5\x20\x8d\xdb\x6c\x2f\xb3\x05\xdb\x4e\ +\x30\xc5\xaf\xbf\xd2\xcc\x30\x2d\xac\x9e\xb1\xcb\xe9\xab\xca\xe8\ +\xbf\x2b\x5b\x00\x56\xc2\x94\x93\x1f\xff\x97\x81\xcd\x1f\x58\x3c\ +\x0a\x76\x95\x3c\x5a\x76\xcd\x4d\xfd\xeb\x11\xea\x60\xb6\xf2\xff\ +\x1c\x22\x99\xb2\x60\xbc\x33\xb3\x87\xfa\x2e\x0f\x9a\x97\x3f\xe1\ +\x16\xe9\xb6\xf6\xd9\xe7\x40\x03\x88\x72\xc5\x79\xa2\x65\x80\xee\ +\x91\xee\x96\xae\x16\x60\x85\xac\x8c\xf5\x00\x04\x16\xfe\x25\xfe\ +\x18\xc8\x0d\x72\xdd\xc8\xf0\x1d\xbc\x33\x0e\x5a\x92\xed\xd0\x2c\ +\xaf\xf0\xab\x8b\x1c\xae\x9a\xbe\x9a\xff\x92\x57\xc8\xc4\x0f\x2c\ +\x60\xc4\x87\xc4\x87\xc4\x87\x50\xec\x72\xd5\xe5\xaa\xcb\x55\xe6\ +\x81\xeb\xd7\xae\x4a\xa9\xdd\x71\x5a\x3f\xcb\xb0\xd1\x50\x57\x7b\ +\x86\x66\x72\xfe\xf6\x68\xa0\x67\xcd\xeb\x7a\xa3\x82\x6b\xd0\xf6\ +\x1a\x0b\x6c\xfe\x80\x44\x24\x39\x25\xbe\x03\x90\x25\x34\x84\x4b\ +\xc6\x51\xeb\x66\x63\xa9\x76\x3a\x0d\x23\xf7\xb8\x08\xab\xcc\xd1\ +\x0d\x57\xd2\xc5\xc8\xb8\x66\xe9\x62\x8f\x8b\x1f\x2d\xc7\x6a\x51\ +\xac\xc7\x85\x19\x4d\x6e\x67\xcd\x99\x86\xc9\xda\xd3\xbe\x0f\x2c\ +\xfe\xa6\x0c\x9d\x1b\x40\xd0\x83\x1e\xf4\x00\x24\x89\x24\x91\x24\ +\xe6\x3e\x7d\x41\x9f\xd1\x36\x2e\x16\x5a\x98\x80\xa5\x3e\x62\x89\ +\xe8\xa9\xa8\xe8\x72\xb7\x5e\x67\x08\x30\x0a\x1d\x83\xaa\xea\x3f\ +\xc5\x4e\xfa\x07\xb9\x9b\x28\x99\xa3\x09\x9e\x08\x32\x54\xad\x0f\ +\xc7\x62\xc6\x8b\x5f\x2a\xd9\x34\x61\x10\x91\x92\x3d\xee\xbe\xfe\ +\xcf\x50\x45\x1f\xf3\xd7\xbb\xbe\xc5\x27\xe6\x13\xf6\x1b\x8c\x4a\ +\x7b\xa5\x79\x5f\x53\x51\x53\x4e\x8b\xcf\xa1\xec\x7f\xaa\x8e\x69\ +\xd7\x05\x72\x0c\x00\x3c\x11\xf1\xb0\x11\x1b\xb1\x11\xa0\x6d\xb4\ +\x8d\xb6\xd1\xc3\xbf\x7d\xcb\x3a\x35\xa7\xe7\x8c\x9c\x49\x17\xe8\ +\x93\xe3\xfb\xb1\xaf\x97\xa4\x43\xf2\xcc\xf7\xdb\xb8\x12\xa4\x93\ +\x92\x89\xda\xc8\x2c\x50\xe7\xbd\x8e\x13\x7c\xbe\xed\xa2\xfe\x9c\ +\xa1\xdd\x1c\xda\x75\xa0\xab\xf1\xc9\xf8\xbe\xd2\xfb\x86\x87\xdf\ +\x37\x7e\x51\xf5\xc9\xed\x2b\x37\x57\xff\xe7\xfa\xdd\x15\x75\x4f\ +\x84\xf9\xee\x1b\x03\x12\xfa\xd4\xdc\x06\x00\x77\xe9\xdb\x0f\x06\ +\x0a\x40\x01\x05\x14\xff\x77\x3c\xb2\xc8\x73\x91\xe7\xa2\x89\xec\ +\x9b\x0f\x59\xb0\x84\xec\x0d\xd9\x1d\xb2\xb3\xe6\x7e\x56\x49\x56\ +\x59\x56\xb9\xa1\x4a\x25\x58\xaf\x55\x39\x55\x59\x97\xfd\xba\xb4\ +\x2d\xed\xd3\x6d\x98\x90\x31\x6e\x9b\xec\x54\xcc\xd1\x51\xbd\xb4\ +\xf2\xb7\x0b\x20\x64\x52\x34\x53\x06\x00\x3f\x6e\x2d\x6f\x38\x76\ +\x8b\x94\xc6\xec\x0f\x4e\xf6\xe4\xa3\x5b\xb9\x60\xf6\x65\x5f\x0d\ +\x7e\x5f\xe4\x05\x44\x10\x41\xe4\x9a\x32\xda\x7b\x87\x22\x13\x99\ +\xc8\x54\x7a\xc1\x0b\x5e\xf0\x4a\xea\x05\x0f\x02\x88\xa6\x17\x8e\ +\xce\x27\x8b\xc8\x3a\x52\xcf\xe4\xfa\x6d\x77\xbb\x20\xcb\x90\xaf\ +\xf3\x6b\x77\x3f\xe5\x9e\xac\xe8\xf7\xd2\x8b\xcf\x8b\x5e\x3a\x3f\ +\x74\x37\x90\x9f\xc8\x3c\x54\x48\xfe\x3a\xaa\x77\x92\xb0\x7f\x61\ +\x7a\x19\x0f\x2c\x66\x0c\xcc\x3e\xf2\x12\xf8\x2f\x08\x94\x26\x93\ +\x03\xff\xc8\x24\x00\x00\x00\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x00\x78\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\ +\x4e\x4e\x2c\x48\xd5\xcb\x2f\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\ +\xca\x5c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x4f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x48\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x0a\x66\xf0\x7a\xad\xf5\x0a\x67\xf0\ +\x00\x00\x00\x09\x68\xee\x0b\x68\xee\x2f\x80\xf2\x55\x97\xf4\x77\ +\xac\xf7\x08\x67\xee\x08\x69\xee\x08\x68\xee\x08\x69\xef\x08\x68\ +\xef\x08\x67\xef\x08\x68\xef\x8b\x8b\x8b\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x8b\x8b\x8b\x4c\xd0\xce\xf3\x00\x00\x00\ +\x16\x74\x52\x4e\x53\x00\x1b\x32\x32\x34\x47\x78\x78\x78\x78\x78\ +\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x82\x84\xb9\xf6\x5a\x93\x98\x00\ +\x00\x00\x57\x49\x44\x41\x54\x18\x19\x85\xc1\x59\x0e\x82\x40\x00\ +\x05\xb0\x2a\xf2\x00\x11\xc4\x6d\xb8\xff\x4d\x25\x2e\xc9\xfc\xd1\ +\xb2\xaf\x39\x57\x1a\x0c\x2a\x03\x7a\xaf\x47\x79\xbe\xac\x1b\x3d\ +\x3a\x07\xc5\xc1\x47\x87\xa0\xf8\x09\x82\x82\x75\x23\x08\x6d\x69\ +\x7d\x05\x51\x09\xe2\xbe\xfe\x09\xa2\x12\x44\x25\x38\xdd\x96\xe5\ +\x3a\xcf\xd3\x74\x19\xc7\x1c\xed\x7b\x03\x2c\xc0\x04\x0b\x8e\x16\ +\xcd\xfc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xfa\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ +\x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ +\x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ +\xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ +\x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ +\x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ +\xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ +\x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ +\xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ +\xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ +\x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ +\xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ +\x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ +\x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ +\x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ +\x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ +\xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ +\x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ +\x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ +\x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ +\x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ +\x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ +\x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ +\x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ +\x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ +\xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ +\xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ +\x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ +\xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ +\xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ +\x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ +\xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ +\xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ +\xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ +\xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ +\x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ +\x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ +\x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ +\xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ +\xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ +\xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xc4\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x01\x8b\x49\x44\x41\x54\x78\xda\xd5\x91\x3f\x48\x02\x51\ +\x1c\xc7\xef\x8e\x68\xd1\xdc\x6a\x29\x1b\xac\xa4\x3f\x14\x11\x34\ +\x37\x38\x1a\xad\x09\x52\xcd\x41\x53\xad\x4e\x96\xa3\xd8\x75\x95\ +\x1c\x48\x72\x10\x04\x66\x99\x84\x93\x54\x97\xe0\x51\x10\x88\x67\ +\xda\xe0\x61\xb8\x28\x11\xf6\x6f\xa8\x26\xbf\xfd\x2e\x08\xc2\xea\ +\xfa\xb3\xf5\x83\x0f\xef\xf1\x7b\xdf\xf7\x79\xef\xf1\x18\x00\x1f\ +\xa0\xb2\x38\x9d\xce\xd9\x50\x28\x14\x97\x24\x29\xe1\x70\x38\xe6\ +\xf4\xde\x67\xd9\xcf\x36\xb7\xc7\xe3\xf1\x4c\xb9\x5c\x86\xa6\x69\ +\x28\x16\x8b\xa8\x54\x2a\x90\x65\x59\xa3\xb5\x0e\x43\x01\x15\x17\ +\x0c\x06\xf7\x4a\xa5\x12\xe8\xf4\xaa\xdb\xed\x5e\x70\xb9\x5c\xf3\ +\x7e\xbf\xff\x52\x55\x55\xc4\x62\xb1\xa4\x9e\x31\x12\x58\xb3\xd9\ +\xec\x83\xa2\x28\x75\xb3\xd9\x3c\xf8\xd6\x37\x99\x4c\xf6\x40\x20\ +\xf0\x54\x28\x14\x1e\xf5\x8c\x91\x60\x84\xae\x5d\x0f\x87\xc3\x55\ +\x9a\xb3\xef\xfa\xac\xc7\xe3\x39\xcd\x64\x32\x75\x3d\x63\x24\x18\ +\x25\x01\x78\x9e\xd7\x1a\xdf\xea\xf3\xf9\xe4\x74\x3a\x0d\x3d\xf3\ +\xad\x40\x14\xc5\x62\xa3\x40\x10\x04\x39\x95\x4a\x19\x0b\x12\xc2\ +\x34\xae\x94\x31\x9c\x47\x86\x71\xb8\xda\x8f\x6d\x6f\x17\xa2\x5e\ +\x1b\x92\xcb\x7d\x50\xb7\x87\x70\x9d\x9f\xc1\xee\xca\x04\xbe\x14\ +\xec\xaf\x4c\xe1\x39\x6f\xc7\xcd\x01\x87\x9c\xc4\xe2\x74\x9d\x45\ +\x6e\x83\x85\xb6\xc5\xa0\x76\xcc\xa1\x7e\x3b\x89\x28\x3f\xfe\x13\ +\x01\x83\xc2\x26\x07\x45\xe0\x5e\x05\x97\x11\x06\xf7\x69\x8a\xdc\ +\xfd\x4a\xc0\xe0\x64\x8d\x21\x01\xf3\x77\xc1\x99\x48\xa3\xf4\xaf\ +\x04\x8d\xdf\xb8\xb3\xd8\x85\xd8\x92\x0d\x47\x42\x2f\x72\xd1\x21\ +\xd4\x2e\x0c\xbe\x91\xaa\x99\xb0\x10\x6d\x44\x27\xd1\x43\xf4\x13\ +\x03\x44\x1f\xd1\x4d\x58\x89\x56\xa2\x85\x68\xd2\xf7\xbd\x00\x69\ +\x97\x84\x60\xd6\x20\x0b\x71\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x01\xb8\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x01\x7f\x49\x44\x41\x54\x78\xda\xd5\x93\xbf\x4b\x02\x61\ +\x18\xc7\xcf\x43\xdb\x72\x2b\x28\xb1\x40\x2d\xd2\x42\x82\x68\xd1\ +\xa1\x7f\xa0\xa2\xad\xa9\xda\xfd\x03\x74\xb7\x06\xa1\x25\x4f\x0b\ +\x72\x08\x84\x8e\x20\xad\x86\xb8\x29\x2f\x73\x48\x0b\x8e\xc3\x3a\ +\xb5\xa1\x93\x2c\x5a\xa2\xec\x87\x48\xb4\xe4\xb7\x47\xc1\x25\xed\ +\xfa\xb1\xf5\xc0\x87\xf7\xe5\x79\xbf\x7c\x78\x78\x5f\x5e\x06\x40\ +\x0b\x54\x3d\x5e\xaf\x77\x59\x14\xc5\xb3\x54\x2a\x95\xf3\xf9\x7c\ +\x41\xea\xf5\xb6\xcb\xb6\x34\x4c\x26\x93\x23\x99\x4c\xde\x94\x4a\ +\x25\x64\xb3\xd9\x5a\xa1\x50\x40\xa5\x52\x81\x24\x49\x0f\x74\x36\ +\xa2\x29\xa0\xd2\xf3\x3c\x7f\x54\x2c\x16\x11\x0e\x87\xf3\x6e\xb7\ +\x7b\xc6\xe5\x72\x4d\x05\x02\x01\x39\x93\xc9\x20\x91\x48\x48\xf5\ +\x8c\x96\xa0\x5f\x51\x94\x2a\x8d\xfd\x6e\x30\x18\x6c\xcd\x3e\xed\ +\xcd\x24\xa9\xca\xb2\xfc\x5a\xcf\x68\x09\xc6\x54\x55\xad\x45\x22\ +\x91\xdb\xcf\xa3\x7a\x3c\x1e\x5e\x10\x84\xeb\x7a\x46\x4b\x30\x4e\ +\x02\x70\x1c\xa7\xb6\xb9\x58\x3d\x61\x24\x0c\xdf\x0a\x68\x82\xcb\ +\x46\x4f\x9b\x56\x81\x10\x9a\xc7\x5d\x7a\x02\xb9\xed\x51\x1c\x86\ +\x1d\x88\xf9\xad\x88\xfb\x2d\x38\x58\xb1\xe3\x3c\xe6\xc4\x7d\x7e\ +\x01\xbb\xdc\x34\xbe\x14\xec\x73\x73\x78\xcb\x0f\xe2\x51\x64\xa1\ +\x44\x75\x38\x5d\xd3\x41\xd9\xd0\x41\xdd\x62\x50\x4e\xb1\xa8\x3d\ +\xcd\x22\x1e\x9c\xfc\x89\x80\x41\x61\x93\x45\x3a\xc4\x36\x04\x57\ +\xdb\x0c\x5e\x8e\x29\xf2\xfc\x2b\x01\x83\x93\x55\x86\x04\xcc\xdf\ +\x05\xd2\x3a\xad\xd1\x7f\x24\x68\x7d\xc6\x9d\x45\x2b\xf6\x96\x2c\ +\x48\x86\x86\xa0\xc4\x9d\x28\x5f\x68\x3c\x23\x55\x07\x61\x24\xba\ +\x89\x3e\x62\x80\x70\x10\xc3\x84\x9d\xb0\x11\x66\xa2\x8b\xe8\x6c\ +\x7e\xaa\x0f\xd9\x9d\x89\x07\xa1\xb5\x4b\xa0\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0a\x90\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ +\x13\x38\x39\xdf\x43\x26\x88\x00\x00\x0a\x10\x49\x44\x41\x54\x58\ +\xc3\xad\x97\x79\x90\xd5\xd5\x95\xc7\x3f\xf7\x77\x7f\x6f\xe9\xf7\ +\xba\x5f\xf7\xeb\x8d\x5e\xa0\xfb\xd1\xdd\x34\x08\x36\xcd\x22\x04\ +\x54\x06\x98\x28\x25\x49\x2a\x8c\x44\xd1\x98\xa9\x32\x68\x8d\xc2\ +\x24\x56\x28\x75\x66\xb2\x39\x13\x33\x89\xca\xcc\x54\xe2\xa8\x95\ +\x58\x99\x71\x99\x44\x91\x44\xa7\x26\xe0\x32\xb8\x14\x36\x0e\x88\ +\x08\x88\x8a\xec\x4d\x6f\x2c\xdd\xd0\xfb\xf2\xde\xfb\xad\xf7\xe6\ +\x8f\x5f\x3f\x9a\xce\x4c\x52\x31\x99\x57\x75\xea\x9e\x5f\xd5\xef\ +\xde\xef\xf7\x77\xde\xf7\x9c\x7b\x8e\xe0\xd3\xff\x8c\x85\x57\xaf\ +\xad\x6a\x6a\x5e\x5c\x62\xf9\x46\x4c\xa1\x45\xc4\xd0\xb6\x6f\x0f\ +\x0f\x6e\x79\xe6\xe1\x1e\x20\xf3\x69\x0e\x13\x9f\xe2\xdd\xea\x9b\ +\xee\xd8\xfc\x50\x28\xd9\x70\xa3\x23\xf2\xa3\xdd\x7d\x83\x86\xf2\ +\x6c\xe1\xbb\x0e\xbe\xe7\xe8\x78\x54\xe8\xea\x92\x3c\x4f\x7a\x83\ +\x07\xdf\x7e\x6b\xfb\x77\xce\x9f\x6c\xd9\xf5\xff\x42\x60\xd6\xa2\ +\x9b\x57\xde\x7a\xdb\xc6\x7f\xd8\xdf\xe9\x2f\xb7\x7c\x03\xc7\xce\ +\xa2\x3c\x5b\x2b\xcf\x11\xbe\x67\xe3\x7b\x0e\xca\x73\xf0\x5c\x1b\ +\xd7\xb5\xf0\x3d\x87\xe2\x82\x08\x61\x61\xb5\x95\xe4\x8b\x27\x7e\ +\xfd\xf3\x07\x7f\xfc\x47\x12\x28\xcf\xbb\x7b\xd3\x83\x3f\xfd\xda\ +\x9d\x77\xde\x9e\xc8\x0f\xb1\xe5\xed\x56\xde\x3c\xd0\x8e\xef\xd9\ +\x01\xa0\x67\xa3\x5c\x07\xdf\x0f\x48\xf8\x6e\x8e\x4c\xb0\xba\xae\ +\x45\x24\x64\xd0\x50\x55\xd4\x3a\xdc\xd7\xfe\xd9\xdd\xaf\x3f\xdd\ +\x65\xc4\x6b\x50\xe9\xae\xdf\x4f\xe0\x90\xd6\xcc\x17\x62\xca\x96\ +\x17\x8f\x1c\x9a\x7f\xe5\x15\x95\x86\x21\xb4\x61\x68\x61\x9a\x82\ +\xe3\x5d\xfd\x3c\xf4\x8b\x3d\x28\x35\x01\x38\x99\x90\x4b\x2e\x2a\ +\xe3\xab\x56\x9e\x23\x2a\xcb\x12\xd9\xa2\xa8\xbb\xee\xcd\xff\x7a\ +\xec\x15\x23\xbf\x0e\x35\xd6\x36\x21\xa8\xdf\x26\x30\x5f\x88\x29\ +\xf7\xfc\xe0\x9d\x03\xa9\xe9\x33\x2b\x4d\x29\xb4\x10\x5a\x08\x21\ +\xd0\x5a\x73\xe5\xf4\x12\x1e\xd9\xb0\x9c\xb2\xc2\x18\x4a\x01\x3a\ +\xd8\xa3\x01\xa1\x73\xde\x84\x09\xb4\x00\x4d\xd7\xb9\x9e\x68\xff\ +\x98\x7e\x79\xd5\xda\x4d\x6b\x03\xf0\x89\xef\x96\x97\x83\xcb\xd8\ +\xb4\xbc\xbb\x1f\x78\xed\x68\xb7\xaa\xa8\xde\x73\xbc\x8f\xa8\x89\ +\xa8\x2d\x8b\x61\x18\x02\xc3\x00\x84\xa0\xa8\x20\xc2\xe7\xae\x6e\ +\xe0\xc0\xb1\x33\x8c\x8e\x65\x10\x28\x0c\x14\x02\x1f\xa1\xd5\xc4\ +\xb3\x08\x7c\x81\x8f\x21\xb4\x18\x19\x1d\xd1\x86\x21\xd7\x36\x34\ +\xce\xfd\x65\xd7\xe9\x43\xfd\xff\x27\x81\x3b\x36\x6c\x7e\xea\xc6\ +\xd5\xab\xaf\x1d\xce\xb8\x7a\x70\xcc\x12\x27\xce\x0d\xf2\x41\x6b\ +\x2f\xc9\x78\x88\x9a\xf2\x18\x4a\x6b\x84\x10\x48\x29\xf8\xdc\x35\ +\x8d\x28\xad\x38\x74\xac\x8b\x88\x29\x10\x42\x23\x84\xc6\x10\x7a\ +\x1c\x3c\xf0\x73\x26\x05\x22\x9d\x4d\xcb\x54\x6d\xea\x2b\x27\x0f\ +\xbf\xf3\xaf\x08\xe1\x4f\x22\x50\x37\xef\xa6\x95\x0f\x7f\xf7\x87\ +\x3f\x2a\x29\x88\xe8\x25\x33\x12\x22\x55\x1e\x63\x28\xed\x70\x61\ +\x28\xcd\xfb\xc7\xbb\x39\xdb\x3b\x42\xaa\x22\x41\x22\x1e\x02\x34\ +\x86\x01\x8b\xe6\x54\x91\xaa\x2c\xe5\xe0\xb1\x0e\xb4\xf2\x2e\x81\ +\x1b\x39\xf0\xcb\x48\x88\xe0\x59\x9f\xef\x3e\x1f\xbb\x7e\xf5\x2d\ +\x89\xa3\x1f\xb6\xec\x40\x18\x13\x04\x36\x3f\xfc\xf3\x67\x53\xd3\ +\xa6\xa6\x84\xd0\x42\x69\x28\x2e\x08\xb3\xb0\x21\xc9\xa2\x19\xa5\ +\x74\x5c\x18\xa6\xed\xfc\x20\x7b\x0e\x77\x92\xb5\x1d\x9a\x1b\xca\ +\xd0\x1a\x7c\x05\xd3\x2a\x8a\xb9\xe1\xda\x26\x5a\xf6\x1f\xc5\xf3\ +\x3c\x0c\xf4\xa4\x68\x04\x06\x52\x68\x0c\x03\x21\x25\xda\xf7\xfd\ +\xf9\x67\x5a\x0f\x3c\x0c\x5a\xe7\x08\x54\xdf\xbb\x69\xf3\x63\x79\ +\x79\x51\x84\x00\xc3\x10\xc1\x2a\x20\x1e\x35\x59\xd1\x5c\xc9\x8c\ +\x69\x49\x32\x96\xcb\xae\x43\x6d\xbc\x77\xb8\x93\x82\x58\x98\xe9\ +\x55\x45\xf8\xbe\x26\x12\x36\xb9\x6e\xe9\x1c\xce\xf5\xf4\xd3\xdd\ +\xdb\x87\x69\x8c\x03\x8e\x9f\x61\x08\x35\xbe\x06\x24\xb4\xef\x9a\ +\x0b\x3e\x73\x43\xfc\xd4\x91\x3d\x6f\x48\x80\xb5\x5f\xfd\x97\x27\ +\xa2\xd5\xf3\x9a\x13\x51\x83\x50\xc8\x20\x64\x06\xa2\xcb\x11\x51\ +\x1a\x8a\x13\x11\x3e\x33\xbb\x82\xab\x66\x55\x73\xea\xcc\x45\x76\ +\x1d\x6c\xe5\xd8\xe9\x1e\xae\x6c\xa8\x24\x1a\x09\x61\x4a\xc9\x9f\ +\x5d\x75\x05\x7d\x83\x23\x9c\xed\xb9\x38\x01\xc8\x38\xb8\xa1\x91\ +\x06\x48\x01\xbe\xef\x50\x55\x59\x39\xef\xc8\xa1\x96\x7f\x16\x80\ +\xb1\xf1\x07\xff\x33\x14\x2d\xad\x2d\xd0\x4a\x11\x31\x25\x45\x31\ +\x83\xf9\xb5\x85\x34\x56\xc5\x11\x22\x48\x2a\x29\x41\x4a\x3d\x9e\ +\x11\x9a\xa1\xd1\x2c\xcf\xbf\xb6\x8f\x23\xad\x67\x59\xda\x9c\x62\ +\xfd\x9a\x65\x28\x0d\x42\xc0\x81\xc3\xa7\xd8\xfc\xe4\xf3\x84\x4d\ +\x50\x9e\x8b\xef\x3b\x28\xdf\xc5\xf7\x5c\xb4\xef\xa2\xb5\xa7\x0d\ +\xf0\x6b\x6a\x1a\xae\x94\xc5\xb5\x2b\xaa\xef\x5a\xbf\xe9\xbe\x74\ +\x56\x19\xae\x87\x18\x48\x3b\x0c\x8c\x5a\x1c\x3f\x3b\xc8\x47\xed\ +\xbd\x8c\x64\x2c\x84\xd0\x24\x62\x21\x62\x11\xe3\x52\xf9\x8a\xe5\ +\x85\x59\xbe\x70\x3a\xb3\x1b\xa6\x72\xec\xf4\x39\x5e\x7c\x7d\x2f\ +\xc9\x82\x18\xd3\xaa\x8a\x99\x5a\x51\xc2\x92\x79\x73\xf8\xf0\xc8\ +\x49\x6c\xc7\x46\x29\x1f\xdb\xb2\x48\x8f\xa5\xe9\xeb\x1f\xe4\xec\ +\xb9\x6e\xd1\xd6\x71\x46\x94\x15\x27\x5e\x13\x37\xdf\xfe\x48\xf3\ +\xdf\x7e\xfd\xfe\x83\xa1\x90\x94\xa6\x04\x53\xc2\xb1\xf3\xa3\xec\ +\x3d\x71\x91\xa3\x9d\xfd\x78\xae\x85\xc4\x03\xed\x30\xbb\x36\xc9\ +\x97\x56\xcc\xa4\xa6\x22\x81\x34\x04\xb9\x02\x25\x84\x60\x34\x9d\ +\xe5\xf1\xe7\x5e\xa5\xfb\x42\x2f\xdf\xbb\xe7\x2b\x94\x24\x13\x48\ +\x09\x6b\xd6\xff\x1d\x47\x4f\x9c\x42\xf9\x4e\x10\x09\xcf\xc6\xf7\ +\x5c\x50\x2e\x8d\xf5\x75\x5f\x97\xcb\x96\xdf\x5c\xb7\xa0\x79\xc1\ +\x9d\x52\x1a\x02\x01\x1a\xcd\x94\xa2\x08\x8b\x1b\x8b\x59\x35\xbf\ +\x8a\xa5\x73\x2a\x98\x5b\x57\x42\x2c\x62\xf2\x51\x6b\x37\xff\xfe\ +\xeb\xfd\xec\xd8\x73\x8c\x0f\x8e\x76\x61\x9a\x30\x33\x55\x8a\x94\ +\x60\xca\x10\xcb\x17\xcf\x66\xd6\xf4\x1a\x9e\x7e\x71\x07\x2f\xbd\ +\xb6\x8b\x55\xcb\x16\x73\xeb\x9a\xeb\xf1\x95\xc7\x3b\xef\x1e\x40\ +\x1a\xa0\x94\x8f\x52\x1e\x68\x45\x3c\x9e\x38\x20\x17\x5f\xbd\xa6\ +\x66\xc1\xdc\xf9\x77\x18\x86\x21\x2e\x17\x1e\xe3\xd9\x10\x8f\x9a\ +\x94\x15\x45\x59\xd0\x58\xc6\xda\x15\x33\xb8\xe5\xfa\x26\xaa\xca\ +\x12\x5c\xe8\x1f\xe6\xad\xbd\xc7\xf8\xc9\x0b\x3b\x69\xed\xec\x21\ +\x16\x0d\x13\x8b\x46\x98\x56\x95\x64\xd5\xb5\x73\x99\x33\xa3\x9e\ +\x07\x7f\xfc\x34\xb1\x68\x98\xdb\x6e\x5c\xc5\xd4\xca\x0a\x5a\xf6\ +\xec\xc3\x73\x1d\xb4\xf2\xd1\xda\xa7\x30\x51\xb8\x5b\xfc\xe5\x5d\ +\x8f\x2e\xbc\x77\xc3\x3d\xfb\x42\x21\x43\x06\x29\x98\xb3\x40\x70\ +\x52\x06\xc2\xca\x89\x30\xa8\x84\x81\x14\x7c\xa5\x50\x4a\x73\xb6\ +\x67\x80\xed\x3b\xf7\xf3\xdf\x2d\xfb\xa9\x28\x29\xe0\x1b\x5f\xfd\ +\x22\x8b\x9a\x1b\xf0\x3c\x18\x19\x4d\xf3\xe8\xbf\xfd\x82\xdb\xd7\ +\x7d\x91\x48\x28\xcc\x8a\x35\xb7\x90\x1e\x1b\x45\x6b\x8f\xfa\xe9\ +\x75\x7f\x23\xae\x5b\xbd\xa1\xae\x6a\xd9\xfd\x27\x84\x61\x98\xf9\ +\x51\x49\x3c\x2c\x88\x85\x35\x05\x79\x82\x64\xcc\xa4\xb8\xc0\xa4\ +\x24\x11\xa1\xb4\x28\x4a\x59\x32\x4c\x24\x1c\x64\x85\x52\x13\xa6\ +\x09\xb4\x23\x25\x74\x9c\x1d\xe4\xe3\xe3\xa7\xb9\xd8\x37\x80\xf2\ +\x7d\x0a\x0b\xf2\xf8\xfc\x75\xcb\xe8\xbe\xd0\x4b\x3a\x9d\x26\x3f\ +\x16\xe3\xbe\x07\xbe\x4f\xcb\xee\xdd\x2c\x59\x38\xff\x26\x01\xc4\ +\x36\x3c\xf2\x71\xff\x85\x6c\x34\x0a\x1a\xdf\xf7\xf0\x3d\x1b\xd7\ +\xb5\x71\x6d\x0b\xc7\xb1\x70\x1d\x1b\xcf\xb5\xf0\x5c\x9b\xc2\xb8\ +\x64\x6a\x49\x8c\xea\xf2\x7c\xa6\x96\x27\xa8\xa9\x48\x32\x6d\x4a\ +\x31\x91\xb0\x49\x28\x24\x09\x99\x92\x70\xc8\x24\x12\x0e\x11\xcb\ +\x13\xb8\x1e\xbc\xd1\xb2\x0f\x0d\x2c\x6c\x9a\x0d\x02\x8a\x8b\x0a\ +\xd8\x78\xef\xb7\xfc\xb1\xb4\xbd\x58\x00\x6c\xfa\xf6\xd6\xdd\xb7\ +\x7e\x69\xdd\x35\x4a\x79\x08\xc1\x78\x29\x0d\xee\x5b\x8d\xc6\xf1\ +\x5c\x1c\x37\x30\xdb\x71\xc8\xda\x36\xd9\xac\x4d\xc6\xb2\xc8\x64\ +\xb2\x64\xb2\x16\xae\xeb\x5c\x66\x36\xae\x63\x63\x18\x50\x51\x92\ +\xa4\xa2\x3c\x49\x55\x79\x29\x65\xa5\xc5\x4c\xad\xaa\x20\x1a\x09\ +\xeb\xc1\xa1\x31\xaf\x71\x46\x41\xb9\x09\xf0\xf8\x93\x9b\xbf\x73\ +\xdb\x8d\x7f\xd1\x52\x10\x8b\x5c\xd2\x80\x94\x4c\xf2\xa5\x24\xa8\ +\x64\xe3\x9a\x40\x04\xb7\xba\x18\xbf\xda\x2f\xbd\x7b\xd9\x5e\x21\ +\x60\x64\x14\x7a\x7a\x07\x19\x4b\x67\xc8\x8f\xc7\x30\xa5\x49\x38\ +\x8c\x78\x6a\xcb\x4b\x2d\xc0\xd0\xa5\xce\xe0\x85\x17\x8f\x9e\x9e\ +\x3b\xfb\x8a\xba\xdf\x45\xe0\x72\x5f\x6b\x8d\xd2\x1a\xad\x35\x5a\ +\x05\xfe\x58\xc6\xe2\x74\x57\x37\xed\x5d\xe7\x39\xdd\x71\x8e\xb6\ +\xce\x2e\x0c\xa1\x99\x37\xbb\x81\x3f\xbf\x76\x11\x8d\xf5\x29\xd2\ +\xe9\x34\x4f\x3e\xfb\x9c\xde\xf6\xea\xeb\xe2\xe4\xc1\x37\xa7\x43\ +\xba\xc3\xcc\x11\xd8\xb6\xe3\xd5\x27\x96\x2c\xbc\xe2\x47\x5a\xa1\ +\x43\x26\x42\x4a\x18\xc9\xfa\xf4\x0e\xa5\xb9\x38\x34\xc6\x85\x81\ +\x11\xba\xfb\x86\xe8\xe9\x1b\x62\x78\x78\x8c\xa1\x91\x11\x06\x86\ +\x86\xc1\x77\xa9\x9b\x56\xca\xcc\xd4\x14\xe6\x36\xd6\x30\x77\x56\ +\x1d\x2b\x97\x36\x53\x51\x96\xa4\xb8\x08\xde\xdd\xdf\xc9\x53\x5b\ +\xfe\x93\xfd\x1f\x7c\xc8\xa9\xb6\x56\xec\xb1\x51\xae\x5e\xba\xe4\ +\x8d\x93\xa4\x3b\x42\x75\xeb\x27\xf7\x84\xf7\xff\xe3\x2b\xa7\xb2\ +\xf1\xc6\x86\x8b\x03\x23\xf4\x0c\x8c\x62\x5b\x59\x7c\xcf\x41\xfb\ +\x36\x05\x51\x83\xc2\xb8\x24\x19\x0f\x91\xaa\x2a\xa4\xa9\xa1\x82\ +\xa6\x19\xd5\xd4\x54\xc6\x70\x3d\xf0\xfd\x20\x1b\x32\x19\x97\xf6\ +\x33\xdd\xec\x7a\xef\x03\x9e\xfd\xe5\x76\x3a\xcf\x74\x11\x09\x19\ +\x68\xdf\xc5\x73\x6d\x66\xd6\xa7\xc8\x8f\xe5\x37\x1d\x3a\x75\xf1\ +\x93\x6c\xc7\xb6\xc9\x04\xae\x5a\xbe\xbe\xa6\x71\xf9\x5f\x1f\xef\ +\x19\x76\xa2\xf1\xb0\x16\x4d\xb5\x85\xcc\xab\x2f\xa6\x79\x46\x29\ +\x79\x11\x89\x69\x8a\x4b\x25\x78\x52\x2b\x67\x40\x77\xef\x30\x3f\ +\x7d\xfe\x65\x76\xb4\xec\xc3\xca\xa6\x71\x1d\x6b\x52\x97\xec\x7b\ +\xb6\x0e\x9b\x86\xa8\x2c\x2f\xf9\xf2\xd1\x7d\x2f\x6d\xcd\xed\x35\ +\x2f\x3f\xe8\xc0\xae\x67\xba\x30\x42\xeb\x1e\xfa\xfb\xef\xbd\x3c\ +\xa7\xa1\x52\x23\xc6\x09\x8a\x5c\x61\x0a\x84\x15\x32\x03\x2d\xbc\ +\x7b\xa8\x83\x9d\xef\x1d\xe6\xfd\x8f\x4e\x70\xf2\x74\x27\x42\xfb\ +\x08\xed\xa1\x7c\x1f\xb4\x06\xad\x02\x9d\x68\xa5\x8b\x0a\x13\xa2\ +\xb1\x2e\xf5\xb3\xb7\xb7\x3f\xbe\x35\x56\xb9\x94\x4c\xf7\xde\xff\ +\xdd\x96\xe7\xfa\xf6\x95\x5f\xf8\xc6\xda\x47\x1f\xfa\xe1\xd6\xa2\ +\xc2\x78\x48\x08\xad\xa5\x14\xc2\x34\xc1\x72\x3c\x86\x47\xb3\xbc\ +\xbc\xeb\x23\xb6\xbc\xb2\x17\xcb\xca\x20\x85\x1f\x5c\x34\x93\xda\ +\xf4\x20\xdc\xb9\x76\x3d\x6c\x0a\x9a\x66\xd5\xff\x6c\xe7\xb6\xc7\ +\xee\x7e\xa5\x53\xf3\x85\x5a\xf1\xbb\xe7\x82\x5c\xdf\xfe\xd9\xcf\ +\x6f\x98\xb9\xe1\xaf\x36\xee\x5d\x79\xcd\xdc\xe4\x91\xb6\x7e\xfd\ +\xab\xb7\x3e\x16\xc7\xdb\xbb\x19\x1c\x1a\xc1\x75\x2c\x94\xef\x04\ +\xc0\xb9\xb9\xe0\xb7\x06\x13\xdf\xb5\xb5\x65\x65\x98\x59\x57\x23\ +\xac\xb1\xfe\x2f\x7f\xf2\xde\xaf\xb6\xee\xe8\xd4\xdc\x50\x2b\xfe\ +\x80\xc9\x48\x88\x20\x84\x10\xbd\xed\x6b\x3f\xf9\xa7\xb3\xa3\xd1\ +\xbb\x7c\x23\x12\xc9\x66\x32\x28\xdf\xd1\xca\xb3\x45\xf0\xb5\x93\ +\xfe\x63\x7c\xcf\xc1\xb1\xb3\x5a\x68\x5f\x94\x25\xf3\x29\x29\x8a\ +\xbf\x91\x19\xe9\xbb\xef\xfd\x9d\xff\xf1\xc9\xe5\x61\xff\xc3\x67\ +\x43\x61\x80\x56\x00\x72\xf5\xba\x6f\x6e\x2e\xac\x9c\xb3\xb1\xbd\ +\x67\x34\x6c\x59\x96\x54\xbe\x13\x90\x70\x73\xe0\x36\x4a\xb9\xfe\ +\xac\x54\x95\x8a\x48\xb7\x65\xfb\x73\x9b\xef\x02\xbb\x23\x2f\xb5\ +\x86\x6c\xc7\xb6\x3f\x61\x3a\x9e\x20\x01\x10\xba\xf5\x8e\x07\xea\ +\xd3\x8e\x99\x1a\x18\x49\xd7\xdb\xb6\x5b\xae\x94\x92\x52\xa8\xa1\ +\x44\x7e\xb8\xbd\xbc\xb8\xb0\xfd\x85\xe7\x9e\x6d\xc3\x6a\x1b\x02\ +\x08\xd5\xad\xc7\x6d\x7b\xe6\xf7\x1e\xff\x1b\xd9\xbd\x19\x72\x0f\ +\xff\x24\xa6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x15\x31\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x30\x00\x00\x00\x30\x08\x06\x00\x00\x00\x57\x02\xf9\x87\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ +\x13\x38\x1f\x0d\x4e\xa3\x75\x00\x00\x14\xb1\x49\x44\x41\x54\x68\ +\xde\xbd\x9a\x79\x70\x1c\xd7\x7d\xe7\x3f\xaf\xaf\xb9\x67\x30\x83\ +\x01\x66\x70\xdf\x00\x09\xde\x97\x24\xd3\xd4\x61\x52\x71\x64\x49\ +\x65\xef\xc6\x96\xd7\xc9\x6e\xec\x2d\xd9\xb2\x2b\xde\x38\x47\x39\ +\x29\x67\xbd\xde\xdd\xd4\xae\x2a\x95\xb5\x6c\x25\xb1\xd6\x49\x14\ +\x5b\xbb\x9b\x4a\x76\x6d\x4b\xb6\x65\x59\xd6\x45\x31\xa6\x25\x52\ +\x12\x45\x52\x16\x29\x5e\xa0\x40\x90\x20\x08\x90\x38\x66\x30\x17\ +\x80\x39\xba\xfb\xbd\xfd\xa3\x67\x40\xd0\xd7\xc6\x47\xed\xab\xea\ +\xea\x87\x46\xf7\xf4\xef\xfb\x7e\xdf\xdf\xef\xfd\xde\xfb\xb6\xe0\ +\x57\xd8\xfc\xad\x3b\xc5\x4d\x5b\x37\x6a\xba\xae\x69\xe5\x6a\x55\ +\x5b\x2a\xe5\x34\x50\x98\xa6\x4f\x05\x03\x01\x99\x4a\xb7\xcb\x0b\ +\x97\x66\xe5\x5b\xaf\x7e\x53\x42\xf5\x86\x67\x9b\xbf\xaa\xc8\x7e\ +\x4c\xfc\xdc\xef\x14\xbf\xac\xd1\x83\x1b\xf7\x59\x83\x23\x5b\xc2\ +\x17\x2f\x4f\xb5\xbb\xc2\xbf\x6b\xfd\xf0\xf0\xce\x48\xb4\x69\xd0\ +\x55\x7a\x5a\x22\xc2\x0a\xa9\xa1\x64\xd5\x14\x32\x8b\xaa\x4e\x4d\ +\x4c\x4c\x9e\xbe\x32\x3d\x79\x64\xa8\x3b\x79\xce\xb0\xc2\x85\x83\ +\xdf\xfb\x9b\x32\x20\x7f\xd1\xf7\xff\xc2\x00\xba\x46\xef\x4e\xf4\ +\x0c\x8c\x0e\xa1\x07\xde\xd3\x9a\xee\x7e\xbf\xe6\x8b\x6f\xf4\x85\ +\xe2\x64\x8a\x15\x8a\x4b\x2b\xb8\x8e\x8d\x92\x36\xd2\x71\x70\xa5\ +\x8d\x74\x1d\x4c\x5d\x91\x8a\x07\xb1\x34\x17\x65\x97\x0a\x4b\x85\ +\xec\xfe\x7c\x6e\xfe\xf1\x54\x73\xf4\xf8\xb3\x4f\x3c\x3c\x03\xd8\ +\x00\x56\xf7\x7d\xd4\xa6\x9e\xf8\xd5\x01\xd0\x82\xbd\xc8\x95\xc9\ +\xfa\x5f\xf1\xc4\x03\xbf\xf7\x9f\x6f\x2e\xda\xbe\x0f\xbb\xfe\xb6\ +\xfb\xf0\x27\xf5\xc5\x52\x15\xdb\xae\x22\x9d\x9a\x42\x39\x28\xd7\ +\x11\x52\x3a\xb8\xae\x8d\x72\x1d\xa4\xeb\x20\xa5\x83\xeb\xd8\x38\ +\x4e\x4d\x49\xd7\x11\xae\x63\xd3\x1c\x0b\x12\x0b\x19\x08\x67\xf9\ +\x5c\x31\x3f\xff\x68\x3c\xec\xdb\xff\xec\x13\x5f\x3c\x07\x70\x49\ +\x29\xfa\x84\xf8\xe5\x01\x0c\xdd\xfc\x31\xc6\x5f\xff\x2a\x00\xfb\ +\xde\xfb\xe9\x3d\xbb\x6f\xbe\xe9\xdf\x8e\xae\xdb\x70\xbf\x2f\xda\ +\x2e\x1e\x7f\xf9\x22\xd3\x0b\x39\x65\x08\x57\x28\x79\xdd\x50\xe9\ +\x7a\x23\xae\x5c\x07\xb7\x7e\x4d\xd5\xaf\x35\xfe\xaf\x5c\x07\xc7\ +\xb1\x95\xed\xd4\x84\x65\x68\x74\xb4\x44\xc0\x59\x39\xe9\xd3\x9c\ +\x2f\x9d\x7e\xf3\xd0\xf7\xa6\x2f\xbc\x3a\x0f\x20\x7c\x09\x54\x75\ +\xf1\xa7\xda\xa7\xff\x2c\xe3\x3f\xf0\xc9\x27\x38\xfc\x9d\x7f\x0f\ +\x10\xfe\xc4\xef\xff\xf5\x03\xef\xde\x77\xe7\x43\x77\xde\x76\xc7\ +\xde\xa1\xde\x36\xd1\xda\x14\x50\xbd\xad\x21\x91\x2d\x55\xc4\x5c\ +\x6e\x19\x25\x25\xa0\x50\xd2\x45\x29\x59\x3f\xea\x7d\xe9\xf5\x69\ +\xf4\xeb\xf7\xa0\x5c\x21\x50\x38\x8e\xad\x32\x8b\x05\x51\x71\x54\ +\xda\x34\xfd\xef\x4b\xb7\x75\xb6\x0d\xae\xdb\x36\x35\x31\x76\xf4\ +\x1a\x6e\x19\x2d\xd8\x85\xb2\x8b\x3f\x1f\x80\xfb\x3f\xfb\x03\xfe\ +\xf7\xc3\xf7\x00\xb4\xfd\xc7\x07\xbf\xf9\xe0\xbb\x6e\xbd\xed\x4f\ +\x76\x6e\xdd\x98\x34\x0d\x43\x49\xa5\x04\x08\xd1\x12\xf7\x33\xdc\ +\x11\xa3\x5a\xb3\x99\x9e\x2f\x60\x3b\x0e\x82\x1b\x8d\x5c\x05\x22\ +\xe5\x2a\x18\x94\x44\x4a\x17\xea\xd7\x50\x52\x08\x14\xd5\x5a\x55\ +\x2d\xe6\x8b\x42\x37\xac\xcd\xba\xe1\xdb\xb1\x65\xfb\xad\xf3\xe7\ +\x4f\x1d\x1e\x53\x76\x11\x2d\xd4\x87\xb2\xf3\xff\x3c\x00\xff\xf2\ +\x77\xbe\xc1\xd7\xfe\xe2\x5e\xa0\xa9\xef\xcf\x1f\xfe\xd6\x17\xf6\ +\xdd\x7a\xfb\x47\xba\xda\xd3\x86\x2b\x41\x08\x84\x10\x02\x21\x14\ +\x20\x88\x86\x4d\x46\xba\x13\xf8\x2d\x83\x8b\x57\x17\x29\x57\x6c\ +\x04\x72\x75\xb4\xd7\x1a\x7a\x23\xa8\x35\xc0\xa4\x04\xcf\x5b\x02\ +\xa5\x54\xb1\x54\x12\x55\xdb\x69\x37\x4d\xeb\x96\x6d\x3b\xdf\xb5\ +\x38\x76\xea\xd0\x5b\xca\xce\xa3\xf9\xd3\x28\x67\xe9\x67\x03\x18\ +\xb8\xe9\x63\xbc\xfa\xd4\x67\x01\xda\x7e\xe3\xdf\x3d\xf6\x05\x3b\ +\x3a\x7a\x5f\x2c\x1a\x15\x1d\x09\x9f\xd2\x35\x40\x28\x21\x84\x40\ +\xd3\x1a\x20\x20\xe0\xd3\x19\xec\x8c\xd3\xd9\x12\x61\xfc\xca\x02\ +\xa5\xe5\x4a\x9d\x4e\x75\x20\xac\x31\xba\x0e\x8e\x3a\xa5\xa0\x4e\ +\x2d\x25\x11\x4a\x02\x52\x80\x52\xb5\x6a\x55\x2c\x2f\x97\x9b\x74\ +\xd3\xdc\xb1\x7d\xe7\x1d\x33\xe7\x4f\x1d\x3e\xeb\x19\x2f\x7e\x3a\ +\x00\x2d\xd8\xcb\xe2\xe4\xf7\x01\xc2\x1f\xf8\x9d\xff\xf5\x60\x20\ +\xbd\xe5\x23\x79\xdb\x12\x17\xe7\x97\xd5\xc4\xb5\x25\xda\xe3\x7e\ +\x91\x88\x98\x28\x40\x08\x85\xe7\x09\x81\x42\x61\x18\x1a\x9d\xad\ +\x11\x36\x0f\xa6\xb8\x38\x93\x25\x57\x5c\x46\x17\xca\xbb\x0f\x85\ +\x40\x22\x50\x68\xab\x7d\xd6\xfc\xaf\x71\x9f\x6c\x5c\x13\x02\xa9\ +\x1c\xc7\x16\xd5\x6a\x35\x66\x59\xd6\xe6\x8d\x5b\x6f\x3d\x3d\x7e\ +\xe6\xd5\xc9\x9f\x49\xa1\x06\xc7\x1e\xf8\xd4\x97\x3f\x1e\xeb\xdc\ +\xfe\x99\x12\x51\x03\x94\x92\x52\x92\x5b\xaa\x88\x1f\x4e\x64\x29\ +\x95\x6d\x06\xd3\x11\x4c\x43\x80\x50\x08\x01\x0d\x4a\x69\x9a\x20\ +\x11\x0d\xb0\x67\x6b\x0f\xb3\x99\x22\x57\xe6\x72\xe8\x82\xba\x81\ +\x0d\xe3\x58\x35\x58\xab\x1b\xcf\x9a\xbe\xd6\xb8\x47\x28\x21\x40\ +\xd9\x76\x4d\x20\x48\x9a\x86\x99\x6e\xef\x5c\xf7\xea\x95\x4b\x27\ +\xf2\x1b\xff\xc5\xff\x60\x7e\xec\xa9\x9f\x4c\xa1\x3b\xee\xfd\xf4\ +\x9e\x3b\xef\xb8\xf3\xf3\xf7\xed\xdb\x95\xec\x4e\xf8\xc9\xaf\x38\ +\x2c\x55\x6c\x81\x92\xb8\xd2\xe5\xca\x7c\x89\x63\xe3\xf3\xc4\x82\ +\x26\x9d\x2d\x41\x40\xac\xf1\x86\x17\x17\x3e\x4b\xe7\xd6\xed\x7d\ +\x08\x21\x38\x7d\x61\x06\x4d\x63\xd5\x70\xed\x47\x46\x5d\x43\xa1\ +\x09\x59\x1f\x88\xb5\xe0\x40\x13\x4a\x68\x1a\x6a\xb9\xbc\x2c\x62\ +\xd1\xe8\xa0\x69\x1a\xb9\xc9\xb7\x8f\xbe\x3e\x3f\xf6\x94\x43\x7d\ +\x8e\xf8\x11\x00\xf1\xc4\x87\x7e\xf3\x13\x7f\x7c\xc7\x9e\x3b\xf6\ +\x9a\xa6\xa1\xe2\x61\x53\xec\xea\x8f\x8a\xce\xe6\x00\x8b\xa5\x2a\ +\x2b\x55\x1b\x85\xa4\x52\xb3\x39\x79\x71\x81\xc9\xd9\x02\xdd\xad\ +\x61\x22\x41\x6b\xd5\x13\x9a\xa6\x1a\xbf\xcd\x96\xe1\x36\xfa\xda\ +\x9b\x79\xe3\xdc\x65\xa4\x74\xd1\x84\x5c\x1d\x61\x84\x44\x5b\xeb\ +\x0d\x41\x1d\x8c\x42\xa8\x06\x45\x15\x42\x28\xa1\x0b\xa1\xf2\xf9\ +\x9c\x68\x4e\x34\x6f\xd9\xbc\x6d\xcf\x4b\xe7\x4f\xbf\x3a\xe5\xcd\ +\x62\xda\x8d\x00\xee\xff\xe4\x7f\xbb\x63\xe7\xf6\x5b\xbe\xd0\xd7\ +\xd5\x26\xbc\x54\xe9\xb5\x64\xd4\xe2\x96\xe1\x38\xe9\xb8\x9f\xdc\ +\x52\x95\xaa\x6d\x23\xa5\x64\x36\x5b\xe2\xd8\xd8\x55\x04\x8a\x74\ +\x22\x84\x65\x6a\x68\xf5\xa1\x14\x02\x94\x82\xee\x74\x9c\x5d\x1b\ +\x7a\x38\x73\x61\x86\xa5\x72\x19\xa1\x56\x0d\xf3\x0c\x6e\xf0\x7f\ +\x75\xf4\x41\x13\x0d\x4f\x09\xcf\x6b\x9a\x12\x28\xa9\x7c\x3e\x33\ +\x50\xad\x39\x66\x22\x35\xfc\x83\xd9\xa9\x53\x15\x50\xd7\x01\xa4\ +\x86\xee\x4a\xec\xda\x7e\xcb\x67\xef\xda\xbb\x6f\x93\x54\x28\xe1\ +\x35\x84\x10\x5e\x46\x41\x90\x8e\xfb\xb9\x65\x24\x49\x4b\x53\x90\ +\xa5\x72\x0d\xc7\x75\xa8\x54\x6b\x9c\x9a\x98\x65\x7c\x3a\x4b\x3c\ +\xe2\x23\x1a\xf6\xe1\x33\xf5\x35\x01\x0e\xf1\x58\x90\x77\x6c\x1d\ +\xe4\xda\x42\x8e\x85\xc5\x22\x52\xca\x3a\xad\xd6\x1a\xef\x05\xb6\ +\xd6\x00\xd7\xf0\x4a\x9d\x5a\x9a\x26\x44\xb1\x98\xa7\xbd\xad\x6d\ +\x93\x50\xf6\xd3\x97\x2f\xbc\x79\xe5\x06\x0a\xdd\x7d\xf7\x6f\x6f\ +\xbe\x75\xf7\xbb\xbe\xd8\xd5\xde\xaa\x49\xa5\x44\xfd\xa1\x35\x41\ +\x0a\x4a\x29\x10\x82\xf6\xe6\x00\xbb\x86\x5b\x69\x8e\xf9\xa9\x39\ +\x2e\xae\x94\x5c\xcb\x16\x39\x7a\x66\x8a\xa5\x95\x0a\xb1\xb0\x8f\ +\x48\xc8\x87\xa1\x7b\x00\x94\x82\x90\xdf\x64\xe7\xc6\x7e\x1c\x57\ +\x32\x33\x97\xa5\x56\xab\xa1\x6b\x0d\x83\xbd\x18\xd1\x50\xd7\x63\ +\x41\xb0\x0a\xa4\x11\xfc\x9a\x40\xf9\x2c\x43\x93\x4a\x73\x5a\x3b\ +\x37\xfc\xd3\xd5\xc9\x93\x8e\x0e\x10\x6e\xbb\xd9\x1a\x18\xda\x7c\ +\xff\xee\x77\xbe\xfb\x5d\x96\x61\x28\x9f\xa9\x09\x4d\x13\x75\xae\ +\x52\xe7\xb5\x58\x05\xd4\x00\xd2\xd5\x12\x62\xeb\x60\x8a\x64\x2c\ +\x80\xa1\x09\xaa\x35\x9b\x53\x13\x57\x39\x7b\x71\x16\x94\x24\x18\ +\xb0\x88\x47\xfc\x28\xc0\x95\x0a\xcb\xd4\xd9\x38\xd8\x45\x2c\x12\ +\x60\x66\x36\xc3\xf2\x4a\x19\x6d\x0d\x08\x6d\x0d\x95\x56\x3d\xc1\ +\xf5\x01\xd4\x35\x21\x8a\xc5\x02\x3d\xdd\x3d\xbd\x85\xec\xcc\x3f\ +\x5c\x9d\x3a\x57\xd4\x01\xf6\xdd\xf5\xdb\xb1\x78\xfb\xc8\x43\xcb\ +\x81\x8e\xd6\xc5\xa5\x8a\x58\xae\x3a\x48\xc0\x6f\x69\xf8\x2d\x51\ +\xe7\x35\x9e\xdb\xd7\x78\x46\x2a\x85\xae\x0b\xba\x53\x61\x46\xfb\ +\x5a\x49\x35\x87\x89\x04\x4c\xe6\x73\x25\x5e\x3b\x79\x89\xd9\x4c\ +\x01\xa9\x14\xf1\x68\x88\x48\xc8\xc0\x71\xbd\x67\x07\xba\x52\x74\ +\xa4\x93\x64\x16\xf3\x2c\xe6\x8b\xf5\x8c\xc3\x8d\x14\xe2\xfa\xfb\ +\x1a\x41\x5e\xef\xab\x44\x53\x53\x68\x6a\x7a\xf6\x95\x65\x19\x19\ +\xd3\x01\xfc\xf1\xbe\xfe\x81\x4d\x7b\xff\xd4\x31\xc3\x64\x96\xaa\ +\x5c\x2d\x54\x98\x2f\x55\x99\x2f\x56\x29\x96\x6d\xa4\x52\x84\x03\ +\x26\x3e\x83\xd5\x0c\xd3\xc8\xfb\xe0\x01\x31\x74\x8d\xee\x74\x98\ +\xa1\xae\x16\xba\xd3\x4d\x34\x85\xfd\x8c\x5f\x9e\xe3\xd8\xe9\x4b\ +\x64\xf3\x45\x34\x4d\xa3\x2d\x19\x43\xd7\xc0\x95\xd0\x99\x6e\x62\ +\xa0\xbb\x9d\x72\xb5\xca\xcc\xec\x02\x02\x85\xde\x30\xb8\x31\xc9\ +\xdd\xe0\x1d\xd0\x35\x81\xae\x6b\x48\xd7\x16\xc9\x96\xb6\x52\x6f\ +\x4f\xef\x33\xba\x16\xdf\x22\x62\xcd\x5d\xf7\x6c\xba\xe9\xde\xf7\ +\x4d\x2f\xd6\x94\xf4\xd8\x82\x23\x15\xf9\x72\x8d\xb9\x42\x99\xd9\ +\xdc\x0a\x53\x99\x12\xf9\xa5\x1a\x42\x13\xc4\x42\x26\x3e\xd3\x7b\ +\x93\xf7\x32\x8f\x6b\x52\x29\x4c\x43\xa7\xa3\x35\x4c\x5f\x47\x92\ +\xa1\x9e\x56\x42\x41\x1f\x6f\x9e\x9b\xe4\xe4\xd8\x65\x32\xf9\x22\ +\x89\x68\x84\x64\x3c\x80\xed\x40\x22\x16\x64\xa8\xb7\x8b\x40\xc0\ +\xc7\xf8\xa5\x2b\xa0\xa4\x17\xb8\x9a\x67\xac\xa1\x09\x74\x5d\xa0\ +\x6b\x02\xd7\x71\x58\x59\x29\x93\xcb\x17\xc4\xe4\xd4\x34\x1d\xed\ +\x1d\xa1\xa9\xf1\x63\x5f\xd5\xb7\xec\xf8\x35\x7d\x74\x78\xd3\x47\ +\x7f\xeb\x9e\xbb\x76\xf5\x24\xfc\xc4\x02\x96\xb0\x1d\x98\x2f\xd4\ +\xc8\x96\x6c\x56\x2a\x36\xa5\x72\x8d\xc5\x52\x85\x4c\x71\x85\x99\ +\x6c\x89\x0b\x57\x73\xe4\x97\x6b\xf8\x0c\x9d\x78\xc4\xc4\x32\xeb\ +\xb1\x51\x9f\xd4\x5c\x09\x96\xa1\xd3\x12\x0f\xd1\xd7\xde\xc2\x86\ +\xc1\x4e\x4c\x5d\xe3\xf8\xe9\x0b\x9c\x38\x37\x41\xb5\xea\xd0\xdd\ +\xde\x8a\x65\x6a\xf8\x2c\x93\xfe\xee\x76\xba\xdb\x53\x9c\x1b\x9f\ +\xc4\x76\x6a\xb8\xae\xa4\x52\xa9\x50\x2c\x2d\x91\x5d\xcc\x33\x3b\ +\x9f\x65\x6e\x21\x4b\x2e\x97\xa7\x50\x2c\x51\x2c\x96\xe8\xe8\xe8\ +\x48\x5e\x3c\xfb\xca\x5f\x19\x89\x68\x50\xeb\x6a\x6f\x1f\x6c\x89\ +\x6a\x24\x82\x61\x31\x98\x96\xd8\xae\xc4\x76\x15\xb9\xe5\x1a\x97\ +\x33\x4b\x5c\x9a\x2b\x31\x71\xad\xc0\x4a\xb9\x82\xc0\xc5\x67\x28\ +\x42\x96\x20\xe8\xd3\x48\x44\xbc\x6a\x74\xd7\xfa\x36\x7a\xd3\x61\ +\x84\x10\xd8\xae\x97\x79\x1c\x57\xe1\xf7\x99\xf4\x75\x24\x69\x4b\ +\x36\x71\xf3\x96\x41\x8e\x9c\x38\xcf\xd3\x07\x8f\xb1\xff\xf0\x9b\ +\xfc\xd6\xbd\xb7\xb1\x6b\xf3\x20\x7e\xcb\x60\xe7\xa6\x75\xa4\x9a\ +\xe3\x7c\xe6\xcf\xbe\xcc\xc9\x33\xe3\x98\xba\xc0\x76\x6a\x38\x76\ +\x0d\xd7\xb1\x57\x17\x49\x52\x7a\xb3\xb6\x63\xdb\x94\x89\x77\xea\ +\x83\xc3\x3b\xcc\xfe\xfe\x0d\x7f\x38\x3a\x32\x92\x52\x78\xae\xf3\ +\x99\x1a\x21\xbf\x4e\x22\x6c\xd2\xdb\x1a\x64\x4b\x6f\x13\xb7\x6f\ +\x48\xb1\xa1\x27\x4e\x3c\xe2\xa3\x5a\xb5\xb9\x32\x5f\x62\x36\xbb\ +\xc4\xcc\x7c\x91\x33\x13\x73\xbc\xf8\xfa\x38\xaf\xbd\x35\x45\x69\ +\xb9\x4a\xba\x39\x42\x34\x64\x22\x34\x81\x52\x5e\xd6\x32\x0c\x9d\ +\x68\x28\xc0\x48\x6f\x07\x5b\xd6\xf7\x32\x7d\x35\xc3\x23\x7f\xff\ +\x5d\xce\x4d\x5c\x61\xdb\xe8\x20\x91\x90\x8f\x48\x38\xcc\xde\x77\ +\xee\xe0\xea\x5c\x86\x37\x4e\x9e\xc5\xd0\xc4\xf5\x75\x84\xba\xbe\ +\x9e\x70\x5d\x47\x75\xa4\x5b\xc5\xd5\x85\xc2\x77\xf5\xb6\xf6\x01\ +\x6b\x64\xfd\xae\x3f\x58\x37\x38\x18\xaf\x67\xc7\x3a\xa7\xbd\x20\ +\xd5\x35\x81\x69\x68\xf8\x4c\x8d\x64\xcc\xc7\xba\xae\x26\xf6\x6c\ +\x6a\xe3\x3d\x37\xf7\xb1\xa9\xbf\x99\xa6\x88\x9f\x95\x72\x8d\x4c\ +\x7e\x99\xb9\x6c\x91\x37\xc7\xa6\xf9\xd6\x81\x13\x1c\x3b\x33\x45\ +\xb5\x66\xd3\xde\xd2\x44\xd0\x6f\x5c\xaf\x78\x35\x41\x24\x14\xe0\ +\x1d\xdb\xd6\x71\xe7\x9e\xad\x9c\x7d\x7b\x92\xcf\x3f\xfa\x35\x2c\ +\xd3\x62\xc3\x70\x1f\x01\xbf\x9f\xdb\x6e\xd9\x4e\x34\x12\xe4\xe5\ +\x23\x6f\x78\xc5\x5e\x7d\x01\x54\x5f\xfc\xe0\xba\x8e\xe8\x68\x4b\ +\x31\xbb\x50\xf8\x9e\xde\xd3\xb7\xd1\x1c\x1a\xd9\xfe\xbb\xeb\x06\ +\x07\x9a\xd6\x02\xb8\x3e\x89\xdd\x78\xcd\x3b\xc0\x32\x75\xd2\xcd\ +\x21\xb6\x0d\xb5\x72\xf7\xee\x01\xee\x79\xe7\x30\xa3\xfd\x2d\x44\ +\x43\x16\x4b\x2b\x15\x2e\xcd\x2c\xf0\xea\x9b\x13\x7c\xfd\xd9\x23\ +\xbc\x35\x36\x85\x94\x92\xd6\x44\x04\xd3\xd0\x57\x53\x59\x34\x1c\ +\x62\xdf\xee\xcd\xec\xdd\xbd\x83\xa7\xf6\x1f\xe2\xef\x9f\x78\x96\ +\xd1\xa1\x1e\xd2\x2d\xcd\xec\xd8\x3c\xca\x70\x7f\x37\x87\x8e\xbc\ +\x41\xb9\xe2\xed\xbc\x34\x16\x3f\xd2\x75\xe8\x68\x4b\x31\x9b\x29\ +\x3c\xa9\xf7\x0f\x6e\x37\x7a\x7a\x47\x1f\x18\x1d\x1e\x4a\x2a\x85\ +\x97\xba\xb4\xb5\x46\x37\xce\x6a\x75\x42\x59\x0b\x0e\x3c\x8a\xf8\ +\x7d\x06\x3d\x6d\x31\x6e\xd9\xdc\xc5\x07\xee\xdc\xc8\xaf\xef\xde\ +\xc8\x70\x6f\x8a\x68\xc8\xe2\xed\xcb\xb3\xec\x3f\x74\x92\x6f\xbd\ +\x70\x84\x73\x17\xaf\x20\x80\x48\x38\x80\x26\xbc\x15\x42\x3c\x16\ +\xe2\xde\x7d\x3b\xd9\x3a\xba\x8e\x47\xff\xf1\x49\x4e\x9f\xbf\xc0\ +\xe8\x50\x1f\x9b\x47\x47\xd8\xb5\x6d\x23\x27\x4e\x8d\x91\xc9\x66\ +\xeb\x0b\x1f\x85\xeb\x38\x74\x75\xb4\x31\x37\xb7\xf8\x35\xbd\x6f\ +\x70\xa7\xd6\x92\xea\xfb\x60\x77\xdf\xfa\xae\x9a\xeb\xe2\x4a\x85\ +\x44\xd5\xdd\x5d\xcf\xbd\x1a\xab\x23\x7f\x03\x38\xe1\x01\x6e\xd4\ +\x4b\x5e\x2a\x05\xdb\x51\x04\xfc\x26\x03\xdd\xcd\xdc\xb6\x63\x80\ +\x7f\x75\xd7\x4e\x7e\x6d\xf7\x16\x7a\x3b\x93\x2c\x64\x0b\x7c\xef\ +\xfb\x47\x79\xf6\xe0\x51\xa6\x66\xe6\x41\x29\x94\x52\xd8\xb6\x22\ +\xd5\x92\xe0\x7d\xbf\x7e\x33\xb1\x68\x13\xff\xe7\xdb\xcf\x62\xd7\ +\x6a\xdc\xbc\x7d\x0b\x7b\x6e\xda\xc6\xf4\xb5\x6b\x4c\x4e\x4d\x7b\ +\x01\x2d\x1d\xd5\xd9\xd9\x25\x66\xaf\xcd\x7c\x59\xbc\xfb\xbd\x7f\ +\x68\x44\x5b\x07\xfe\x21\x3a\xf2\xde\x0f\x05\x4c\x45\xc4\x6f\x10\ +\x0d\x18\x44\xfc\x1a\x91\x80\x46\x24\xa0\x13\xf2\x69\x98\x86\xc0\ +\x32\x04\x96\x29\xb0\x0c\x0d\x9f\xa5\x79\x69\xd0\xd4\xf1\x59\x02\ +\xbd\xce\x0c\xe5\x85\xcf\x6a\x0d\xd4\xe8\x6b\x1a\x18\x3a\x98\x06\ +\xd8\x0e\x8c\x4f\xce\x71\xfc\xd4\x38\x47\x4f\x9c\xc5\xb1\x6d\xd6\ +\x0f\xf6\xb0\x79\x7d\x1f\xf1\x58\x84\x44\x53\x8c\xd6\x64\x8c\xd3\ +\x63\x17\xb9\x34\x75\x85\x1d\x9b\x37\x20\x10\x3c\xf2\x95\xff\xc9\ +\x37\x9e\x7c\x8a\x7c\x36\xc3\x3b\xde\xb1\x87\xb7\x8e\xbf\xd8\x6f\ +\x4c\x4e\x4f\xcb\x48\x45\x3f\xbd\x71\xd0\x65\x62\xb1\xa2\x84\x40\ +\x28\x05\x52\xba\xf5\x8d\x28\x1b\x43\x73\x09\x9a\x82\xb0\x4f\x10\ +\xf6\x0b\xc2\x7e\x9d\x48\x40\x27\x12\x34\x88\x06\x4d\xa2\x21\x93\ +\xa0\xdf\x20\x60\xe9\xf8\x2d\x1d\xbf\xcf\xc0\x6f\x99\xf8\x7d\x06\ +\x01\x9f\x89\xdf\x67\x62\x19\x1e\x10\xdb\xf1\x68\x37\xd2\x9f\x62\ +\x74\x28\xc5\x47\x3f\xb8\x87\x7c\x51\x71\x6a\xec\x22\x27\xcf\x8e\ +\xe3\xd8\x36\xa9\x96\x04\xbd\x5d\x6d\xc4\x63\x51\x5a\xb6\x6e\x26\ +\x57\x28\x10\x0e\x05\xf9\x0f\x9f\xfe\x14\x5d\x1d\x69\x1e\xf9\xbb\ +\xc7\xb0\x2c\x6b\x31\x16\xb6\xb2\x02\xa0\x67\xeb\x6f\xee\xbd\xeb\ +\x83\x9f\xf9\xa7\x82\x8c\xa0\x94\x44\x2a\x85\xeb\xba\x38\xb6\x8d\ +\xe3\xd4\xb0\x1d\x1b\xbb\x66\x63\xdb\x55\x6a\xb6\x8d\xeb\xd8\xb8\ +\x4e\x6d\x15\xa0\x94\x36\x96\x01\x61\x9f\x4e\xd8\xaf\x13\x0e\x18\ +\x84\x03\x26\xe1\xa0\x49\x24\x68\x11\x09\x58\x44\x82\x3e\x42\x41\ +\x8b\x50\xc0\x47\x28\xe0\x23\x1c\xf4\x11\x0e\xfa\x09\x87\xfc\x44\ +\xc3\x21\xe2\x51\x0b\x9f\xcf\xf3\xda\x7c\xa6\xca\xdb\x97\xa6\x10\ +\x40\x34\x12\x26\x1e\x8b\xd6\x29\xac\xd3\x14\xf3\xf1\xed\xa7\x0f\ +\xf0\xec\x81\x97\xf7\x5f\xbe\x38\x76\xaf\x01\xb0\xbe\x2f\x35\x96\ +\xd0\xb2\x85\x77\xdf\x34\x12\xb3\x6d\x1b\x85\x42\x2a\x85\x94\x2e\ +\x52\x4a\xa4\xf2\xce\xae\x74\x3d\xcf\xb8\x2e\x8e\xeb\xe2\xd6\x77\ +\xde\x1c\xd7\xc1\xb1\x6d\x6a\x75\xa0\xb5\x9a\x4d\xcd\xae\x51\xad\ +\xd5\x58\xc8\x16\x99\xae\x55\x71\x1d\x07\xcb\xd0\xb0\x4c\x1d\x9f\ +\x59\x3f\x5b\xf5\xc3\x34\xf0\x5b\x06\x01\xbf\x45\x28\xe0\x27\x1c\ +\x0a\x12\x0d\x07\x09\x05\x03\x28\x29\x59\xcc\xe7\x49\x34\xc5\x08\ +\x06\x02\xd4\x6a\xa8\xf7\xdd\x7d\xa7\x78\xea\xb9\x83\x07\x66\x0b\ +\xca\x31\x00\x32\x8b\xa5\xc2\x72\x76\x72\xff\x96\xee\xbd\xf7\x39\ +\x8e\x5f\x69\x1a\xa2\x91\x8d\x1a\xb5\xc9\xda\x00\x56\x8d\x4d\x49\ +\x05\x08\x2f\x08\x15\x0a\xa5\xa4\x97\x04\xa4\x44\xd6\xcf\xae\x94\ +\xde\xd9\x95\x38\xab\xc0\x5d\x1c\xc7\xc5\x71\x1c\xef\x9a\xe3\x60\ +\x3b\x0e\xba\x26\xf0\xfb\x2c\x02\x3e\x1f\x7e\xbf\x85\xdf\x67\x61\ +\x59\x16\x3e\xcb\xc4\x32\x4d\x84\x10\x18\x06\xe2\xd8\x9b\x6f\x53\ +\xc8\xcd\xbe\x38\x75\xf2\x9b\xca\x00\x38\xfe\xd2\x63\xe5\x81\xde\ +\x9e\xc7\xcf\x5f\xba\x76\x5f\x7f\x57\x9b\xb0\x5d\xd0\x14\x08\x59\ +\x37\x5a\x5e\x4f\xa9\x6b\x81\x78\x2b\x26\x81\xd0\x45\xfd\x9a\xfe\ +\xd3\x37\x5f\x1b\xe5\xf2\xda\xe7\x35\xea\x19\x8e\xd5\x25\x68\xa1\ +\x04\xb3\xf3\x19\xae\xcd\x2d\x50\x5c\x5a\x22\x1a\x0a\xd1\xd4\x14\ +\x21\x99\x48\x90\x6a\x0d\xa9\xa5\x25\x57\xbc\x7a\xf4\xf8\xe1\x70\ +\x28\x74\x09\xa0\x31\x45\xca\x7c\xb1\x74\xfc\xad\x33\xa7\xce\x0d\ +\xf7\xb7\xad\xaf\xd5\x1a\x53\xda\x1a\x43\xc4\x4f\xde\x1a\xf6\xb2\ +\x8e\x42\x29\x6f\x01\x24\x34\xd6\xd4\xee\xd7\xbd\x28\x04\x38\x2e\ +\x64\x72\x65\xe6\xb3\x79\x66\x17\x16\xb9\x36\x97\xe5\xda\x5c\x86\ +\xab\x73\x73\x94\x4a\xcb\x44\x42\x7e\xda\xd3\x49\xfa\xbb\xdb\x19\ +\xe8\xed\x62\x78\xa0\x97\x70\x30\xc0\xf2\x4a\x99\x57\x8e\x1e\xe7\ +\x3b\xcf\x3c\x87\xed\x28\xa6\x67\xae\x3c\x76\xfc\xd8\xd1\x25\x00\ +\xa3\xa1\x8c\xbc\xf0\xe4\x43\x33\xfd\xbd\x7d\x8f\x5e\xb9\x9a\xfd\ +\xcb\xf6\x54\xb3\x58\x0b\xa1\xb1\x6d\xe2\xd5\xe4\xf5\x91\xd3\xaf\ +\x8f\xa6\xa1\x7b\x37\x16\x97\x6d\x16\x72\x4b\xcc\x2f\x96\x98\x5f\ +\x2c\x32\x9f\x2d\x30\x9f\xc9\x71\x75\x21\xc7\xec\x5c\x96\xcc\x62\ +\x8e\x4a\xb5\x82\xcf\xd4\xe8\xeb\x6c\x65\xb0\xa7\x8d\xe1\xde\x0e\ +\xf6\xbe\x73\x1b\xed\xa9\x24\xba\xa6\x61\x9a\x06\x01\xbf\x0f\x85\ +\xe2\xf5\x37\x4e\xf2\xe4\x33\xfb\x79\xf9\xb5\xd7\xc9\x66\x32\xca\ +\xb1\xab\x62\xe3\xe8\xc6\xd3\xb1\x48\xec\x07\x2c\x8f\xbb\x00\xc6\ +\x1a\x59\xc7\x7e\xf3\xd4\xe9\xfd\x83\xfd\xc3\x27\xbb\xef\xda\xb7\ +\xc5\x95\x28\x4d\x43\x68\xf5\x99\xb7\x62\x3b\xe4\x96\xaa\xe4\x8a\ +\x65\x16\x4b\x2b\x64\x0a\xcb\x64\xf3\x4b\x2c\xe4\x4b\xcc\x67\x8b\ +\x64\x72\x25\x2a\xd5\x2a\xd2\xb1\x71\x5d\x7b\x35\x43\xf9\x4d\xc1\ +\x40\x57\x92\x9b\xb6\x0c\x32\xd2\xdb\xc6\xba\xfe\x0e\x3a\xd2\xcd\ +\xe8\xba\xe6\xed\x3a\x08\xd0\x34\x6d\x95\x46\xc7\x4e\x8c\xf1\xdd\ +\x17\x0e\xf2\xc2\xf7\x5f\x66\x21\x93\x41\xd6\x7f\xab\x5a\x2d\x8b\ +\xcd\x1b\x36\x50\xab\x96\x1f\x39\x72\xe0\xb1\xe9\x86\xd1\xc6\x5a\ +\x46\x1c\x39\xf0\xd7\xe7\xb6\x6e\xda\xf4\xa5\x6f\x1e\x6c\x79\xac\ +\x66\x34\x8b\xc5\xe2\xb2\x5a\x2c\xae\x88\x4c\x71\x85\x72\xa5\x5a\ +\x2f\x67\xbd\xbd\x7d\x25\xd7\x1e\x2e\xca\xb5\x89\x04\x2d\x7a\xd3\ +\xad\x0c\x76\x37\x33\xd4\x95\x64\xa8\x37\x45\x57\xaa\xe9\xc7\x27\ +\xb7\x7a\xf9\xa1\x94\x37\x7b\x9f\x1e\xbb\xc8\xb3\x07\x5f\xe1\xe9\ +\xfd\x2f\x71\x6d\x76\xb6\xbe\xc3\xed\x34\xb2\xa0\x72\xa5\x2b\xd2\ +\xad\x2d\x98\x86\xf1\x7c\x30\x10\x7c\x0e\x70\x7e\x2c\xc6\xac\xee\ +\x0f\x51\x9b\xfa\x3a\xe8\x4d\xad\xf7\xdc\xff\xf0\x17\x83\xa9\x2d\ +\xff\xa6\x58\x91\x48\xd7\x56\x4a\x3a\x42\x53\x2e\x82\xeb\x47\xc0\ +\x14\x74\xa7\x22\xf4\xb5\xc5\x18\xe8\x88\x31\xd8\xdd\x4c\x2a\x11\ +\x44\x13\xe0\x7a\x05\x24\x52\x5d\x37\xb8\xd1\x6a\xb6\x83\x6d\x3b\ +\x4c\xcd\xcc\x71\xe0\x95\x37\x78\xe6\xc0\x61\x2e\x4d\x4d\x83\x72\ +\x11\x42\xb1\x56\x28\x51\xae\xad\x5c\xd7\x16\x42\x29\x46\x86\x87\ +\x16\xda\x5b\x9b\x3f\xfc\xcc\xe3\x0f\x3f\xbf\xf6\xf7\x56\x3d\x50\ +\x9b\xfa\x3a\x2f\x39\x8a\xdb\x0d\x31\x3f\x77\xf6\x85\xbf\xec\x0e\ +\xc4\xd6\x27\x9b\x07\x76\x28\xa5\x89\xa0\xe5\x57\x6d\x09\xbf\xe8\ +\x4a\x06\xe9\x6a\x0d\xd1\x93\x8a\x90\x6e\xf6\xad\x66\x0e\x05\xf5\ +\x1a\xc8\x1b\x59\x51\x8f\xfa\x46\xa6\x5a\xa9\xd4\x58\x5a\xa9\x30\ +\x97\xc9\x73\xf8\xf8\x19\x5e\x3c\x74\x9c\x73\xe3\x93\x48\xd7\xc6\ +\xd0\xc0\xb2\x4c\xa4\x2b\x3c\x55\xa7\x01\xb8\xee\x20\x81\x60\x70\ +\xa0\xcf\x4e\xc6\x9b\x3e\xff\xcc\xe3\x0f\xef\x07\x10\x46\x04\xe5\ +\x94\x7e\x9c\x42\xb7\x1b\x9e\x43\x8e\xbf\xf2\x8d\x37\xf4\x60\xcb\ +\x83\x1f\xba\xaf\xe3\x2f\xf6\xee\xde\xde\xdb\xda\x64\x7a\x5b\x64\ +\x20\x1a\x34\x28\x57\xaf\x2f\xec\x1b\x9b\x53\x20\x30\x74\x81\xd0\ +\x60\x69\xd9\x26\x9b\x5f\x62\x3e\x5b\xe0\x87\x67\x27\x38\x74\xec\ +\x2c\x27\xcf\x5e\xc0\xb6\x6b\x98\x3a\xf8\x2c\x03\x29\xa9\xcb\x4d\ +\xf5\xa2\x09\x89\xc2\x5b\x01\x29\x25\x11\x02\xd1\xd5\xd9\xe9\x26\ +\x13\x89\xaf\x1c\x3a\xfc\xfd\xaf\x00\x32\xd4\x7e\x2b\xcb\x57\x0f\ +\xf1\x13\x63\x60\xad\x26\xf5\xfa\x8b\xff\xfd\x3b\x5d\xe9\xe6\x48\ +\x57\x6b\xe8\xc1\xd0\xc6\x0d\xdd\x86\xe1\x95\x9c\x9a\x86\x68\xec\ +\xaa\x35\xd2\xab\xa1\x0b\x0c\x1d\x96\xca\x2e\x53\x0b\x05\x66\xe6\ +\x72\x9c\x99\x98\xe6\x8d\xd3\x17\x39\x71\xee\x22\x95\x4a\x05\x5d\ +\x53\x58\x96\x81\xa9\x83\x2b\xeb\x46\xd7\xdd\xa7\x1a\xc3\xed\x8d\ +\x8e\x52\x4a\x0a\x01\x74\x76\xb4\xbb\xed\xa9\xd6\x7f\xbc\x74\xf1\ +\xfc\x7f\xad\x2c\x9c\x2a\xdc\xfe\x1b\x9f\xe3\xa5\x6f\x3f\xf8\xff\ +\x50\x68\xdc\x32\x5a\xa8\x1b\x65\x17\x38\xfb\xd6\x4b\x6f\x15\x6a\ +\x91\x99\x78\x53\xd3\xe6\xb6\x74\x2a\x69\x99\x9a\x00\xa5\x84\x10\ +\xc2\x34\x04\x3e\x4b\xe0\xba\x30\x79\x2d\xc7\xf1\x33\x33\x1c\x78\ +\x7d\x8c\xa7\x0e\x9e\xe0\xf1\xe7\x8e\x72\xe4\xe4\x38\x73\x99\xbc\ +\xb7\xa2\xd3\xbd\x14\xdc\xd0\xc9\xf8\x31\xe5\xe6\xba\x8e\xe6\xba\ +\x8e\xd0\x34\x8d\x81\xde\x2e\xbb\xb5\x39\xfe\x77\x97\x27\xce\xff\ +\xa7\x89\x53\xcf\xcf\x7e\xf4\x73\xcf\xf3\xe4\xa3\x1f\xff\xe7\x49\ +\x4c\xca\x2e\xac\x6a\x52\x13\xe7\x5e\x39\x3b\x5b\xd4\xce\x98\x86\ +\x95\x6e\x4e\x24\x06\x9b\xe3\x41\x21\x40\x5d\x9e\x2d\x88\xd7\x4e\ +\x4d\xf3\xfc\x6b\xe7\x79\xe1\x95\x31\x9e\x3b\x7c\x86\xa3\xa7\x26\ +\x99\xcb\x16\x40\xc9\x35\x46\x37\xe4\xa6\x35\x3a\x59\x1d\x88\xbc\ +\x41\x3b\x73\x95\x63\xdb\xa2\x39\x11\xa3\xa7\x23\x9d\x69\x8e\x85\ +\xff\xcb\x4b\x2f\x3d\xff\xd0\xc2\xe5\x23\xd9\x07\x3e\xf7\x3c\x5f\ +\x7d\xf0\xae\x9f\x5f\x66\xd5\xfc\x69\x64\x65\xd6\x43\x9a\xd8\xd5\ +\xf7\x47\x9f\xfa\xe4\x47\x86\x87\x46\x7e\x3f\x53\x0d\x37\xfd\xf0\ +\xed\x6b\xcc\x65\x72\x2a\x5f\x5c\x12\x4a\x7a\x99\x09\xd9\x90\x51\ +\xeb\x52\xaa\xac\xcb\xac\x0d\xbd\x78\x8d\x04\xdb\xe8\xbb\x8e\xad\ +\xec\x5a\x15\xcb\xd4\x45\x5f\x67\x1b\x28\xe7\xf9\xd6\x78\xe8\xaf\ +\xbe\xfb\xf5\x87\xf6\x03\xf2\x27\xd1\xe6\xe7\x13\xba\x1b\xa9\xc6\ +\x6b\x81\xf7\x7f\xe4\x4f\x77\x64\x56\x8c\x8f\xc7\x9a\xbb\xfe\xb5\ +\x63\x44\xb4\xd9\x85\x3c\xca\xb5\x95\x52\x0e\x4a\x3a\x62\xad\xb0\ +\xed\x69\xc5\xf6\xaa\x56\x2c\x5d\xdb\x3b\xd7\x05\x6f\xc7\xb6\x45\ +\xc0\x6f\xd0\x95\x6e\xc1\x32\xd4\xe9\xe5\x62\xee\x11\xbf\xcf\x7a\ +\xee\xd0\x73\x7f\x7b\x05\xe0\x47\x03\xf6\x97\xfa\xd4\x60\xdd\x3d\ +\x8f\x32\xf6\xcc\x27\xbc\xfe\xf6\x7b\xe2\xa9\xce\x91\xf5\xe8\x81\ +\x0f\xb7\xa4\xbb\xdf\xaf\xcc\x48\x72\x21\x5f\x61\x31\x5f\xac\xe7\ +\x71\x1b\xe9\xda\xca\x75\x1d\xb1\x2a\x7a\x4b\xc7\x53\xe8\xeb\xa9\ +\xb3\xbd\x35\x4e\x24\x60\xa2\xdc\xea\xe1\x85\xb9\x99\xc7\xd2\xad\ +\x89\x1f\xbc\xf0\xed\x2f\x4d\x37\x26\x29\x61\x46\x50\x76\xe9\x57\ +\xfc\xad\x84\xd0\xea\xca\xa2\xd7\xb6\xef\xf9\x60\x40\x33\xac\x64\ +\x7e\xd9\xbe\xa9\xbf\x7f\xe8\x3d\x91\x68\x72\x8f\x8b\x35\xa2\x99\ +\x16\x9a\xf0\xca\x03\xe9\x38\x48\xe5\xe2\xd4\xaa\x38\x4e\x0d\xa1\ +\xaa\x8b\x9a\xb4\x8f\x4f\x4f\x5f\x39\xb0\x30\x3f\xf3\xe2\xe8\x70\ +\xff\xa5\x43\x87\x0e\x2e\x95\x17\xcf\xbb\xff\x7f\x3e\xf6\xf8\x11\ +\x10\x00\xfe\xe4\x66\xb1\x63\xdb\x36\x2d\xbf\x78\xcd\x9a\xbf\x3a\ +\x11\x2e\xab\x68\xa7\x2b\x42\x6d\x68\x7a\x14\x84\x86\x92\x55\x21\ +\x2b\x0b\x86\x9b\xbb\xd2\x14\x09\x64\xdb\xbb\xd7\x95\x73\xc5\xb2\ +\x7b\xfe\x87\x4f\xff\xc2\x5f\xa9\x34\xda\xff\x05\xeb\xf4\xfe\x61\ +\x5d\x31\xd7\x2e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x1a\x07\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x40\x00\x00\x00\x40\x08\x06\x00\x00\x00\xaa\x69\x71\xde\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ +\x13\x37\x39\x58\xdb\x3a\x47\x00\x00\x19\x87\x49\x44\x41\x54\x78\ +\xda\xe5\x9b\x79\x98\x15\xd5\x9d\xf7\x3f\xa7\xaa\xee\xd2\xf7\xde\ +\xde\xbb\xa1\xa1\x9b\xa6\x59\xec\x06\xa1\x1b\x11\x64\x71\x17\x89\ +\x0b\xee\x0b\x6a\x8c\x26\xaf\xcb\x1b\x33\x1a\x9f\x49\xe6\x8d\xc6\ +\x4c\x4c\x5e\xc7\x2d\xf1\x79\x9d\x24\x66\xa2\x62\xe2\x32\xa8\xe3\ +\xb8\xc6\x85\x88\x42\x14\x65\x51\x40\x64\x47\xa0\x81\x66\x69\x7a\ +\xa1\xe9\x7d\xb9\x6b\x55\x9d\xf3\xfe\x51\x75\xb7\xa6\x41\x4c\x32\ +\x99\xe4\x99\x7a\x9e\xfb\x54\xdd\x7b\xab\xee\x3d\xbf\xef\xf9\xfe\ +\x7e\xe7\x77\xbe\xe7\x77\xe0\x7f\xf8\x21\xfe\x4a\xff\x63\x00\x21\ +\x60\x38\xde\x8a\x3a\x7c\xc5\x35\x18\xbe\x11\x68\x7a\x0e\x00\xd2\ +\x8e\x62\xc5\x5b\x89\x77\xd6\x93\x68\xda\x02\xb4\x01\x03\x80\xf5\ +\xf7\x0c\x40\x19\x46\xf5\xa5\xd7\xdc\x70\xc3\x9c\xa2\xb2\xaa\xba\ +\x98\xf4\x57\x86\x13\x22\x88\xe6\xc1\xe3\x31\x10\x42\x03\x14\x4a\ +\xd9\xd8\x96\x85\xb4\x13\xd8\x66\x02\x0d\x93\xa0\x8f\x70\xc8\xab\ +\x1a\xfb\x7b\xdb\xb7\x3c\xff\xec\x0b\xcb\x88\x6f\x7f\x07\x38\xf4\ +\xf7\x00\x40\xde\xb8\xc9\x73\x67\x7b\xf3\x2a\xbf\x73\xea\xe9\x5f\ +\xbb\xbc\x62\x6c\x1d\x6b\x77\xb4\xd2\xdb\x3f\xa0\x50\x52\x08\x24\ +\x4a\xda\xee\xcb\x42\xba\xd7\x32\xf3\xda\xb6\x30\x4d\x13\xcb\x32\ +\x55\x71\x41\x40\x9c\x73\x4a\x0d\xed\x6d\x2d\xac\x5d\xbb\xf2\x2d\ +\x2b\x7c\x78\xc1\xce\x8d\xef\xaf\x06\xfa\xfe\xd6\x00\xf0\xc2\x88\ +\x5b\x6f\xbb\xeb\xe7\xf7\xf9\x86\xd5\x15\xef\x6e\xe9\xd3\x12\xa6\ +\x89\x6d\x5b\xae\x81\x36\x28\xc7\xb8\x4c\xa3\x95\x6d\xa3\x94\xf3\ +\xbd\xb4\x2d\xe7\xda\xb6\xc1\x05\x24\xf9\x39\x48\xbc\x86\x60\xca\ +\x84\x4a\x59\x1c\x10\x9d\x8f\x3d\xf4\xd3\xfb\xa0\xe9\x69\x20\xf1\ +\xdf\x0f\x40\x70\xd2\xf5\x3f\xbc\xeb\xde\xfb\x2f\x3a\xef\xbc\x71\ +\x4f\x7f\xd8\xc4\xc1\xc3\xdd\x68\xa9\x9e\xce\x34\xc4\x46\x29\x2b\ +\xc5\x00\x69\xdb\x2e\x18\x69\x90\x32\xef\x27\x09\x52\xc6\xf3\x96\ +\x95\x20\xe0\xf7\x50\x57\x5d\x49\xc8\x6b\x35\xbc\xfc\xea\x4b\x3f\ +\x1d\x68\x5e\xfd\xd2\x9f\xd3\x7c\xfd\x4f\x0f\x6b\xc5\x95\x93\x66\ +\x5d\xf7\xc6\x2b\xcf\xbd\xf8\x83\x39\xa7\xcd\x2c\x0c\x06\xfc\xe2\ +\xcc\xc9\xc3\xd9\xbc\xb7\x83\xbe\x70\x02\x85\x42\x4a\xe9\xf8\xb9\ +\x54\x80\x44\x49\x85\x52\x0a\x85\x02\x25\x51\x4a\x82\x72\x3e\x23\ +\x79\xaf\x52\x28\x29\x51\xee\xfd\xce\xf3\xce\xbd\x42\x80\x69\x9a\ +\x34\xb5\xb6\xb3\x75\x57\x53\xe1\xcd\x37\x7c\xfd\xaa\x8e\xb0\xf7\ +\xf4\xde\x9e\xc3\xcb\x95\x19\xee\xfd\x2b\x32\x20\x78\xcd\x43\xbf\ +\xf8\xfd\xb3\x97\x5f\x30\x37\x68\xe8\x9a\x12\x42\x09\x10\x68\x1a\ +\x28\x14\x6f\xac\xdc\xc3\xdb\x9f\xec\xc1\x6b\x90\xe1\xf3\xd9\xbe\ +\xae\xa4\xe5\xb2\x22\xc9\x86\x0c\x76\x28\x1b\x65\x0f\xba\x37\xf5\ +\x1b\xae\x5b\x28\x1b\xdb\xb6\x54\x71\x7e\x48\x7c\xed\xb4\x93\xc2\ +\x8f\xde\xf7\xdd\x9b\xa0\xf7\xb5\xff\x6a\x06\x18\x55\x53\xae\x7a\ +\xf8\xa9\x27\x5f\xfd\xd5\x79\x67\xce\xf0\x48\x09\x20\x84\x10\x02\ +\x21\x40\x08\xd0\x35\x98\x56\x5d\x4c\x59\x61\x88\xcf\xeb\x0f\xa1\ +\x94\xdb\x9b\xc9\xde\xce\x60\x03\x4a\xb9\x0c\x90\x0e\x0b\x5c\x36\ +\x08\xa9\xdc\x67\xd2\xdf\x93\x62\x43\xd6\xfd\x22\x1c\x8d\xaa\x2f\ +\xea\xf7\x79\xae\xb9\xfe\x7f\x5d\x63\x1b\x85\x39\x6d\x8d\x5b\x3e\ +\x06\xe4\x7f\x05\x00\xde\x49\xb3\x6e\x7c\xf2\xcd\x85\x2f\xdd\x39\ +\xbc\xa4\x44\x49\x85\x00\x21\x34\x8d\x94\xf1\xce\x4b\x60\xd9\x30\ +\xba\x2c\x97\x73\xa7\x55\xb2\x7c\xf3\x41\x12\x09\x2b\x45\x65\x52\ +\xb4\x97\xa9\x17\x2e\xed\x71\x81\x92\xca\x4e\xbb\x08\x32\xe5\x02\ +\xce\xbd\xb6\x7b\x76\x3f\x93\x52\x28\x25\xc5\xb6\xfa\x06\x75\xfe\ +\x9c\xb3\x4e\x97\x9e\xa2\xf2\xd6\xfd\x9b\xdf\x07\xec\xbf\x24\x00\ +\xde\xb9\x97\xdf\xb3\xe8\x81\x7b\x7f\x3e\x3f\x3f\xe4\x53\xa0\x84\ +\x10\x8e\xf7\x64\x1a\x9f\x04\xc3\xf9\x5c\x91\xe3\x33\x98\x3b\xad\ +\x8a\x7d\x2d\xdd\xb4\x76\xf6\xb9\x3e\x9e\x6c\x7c\x86\xd1\x52\xba\ +\x6c\x90\xa9\xde\x55\xee\xfb\xec\x7b\x07\xc5\x8b\x0c\x36\x68\x42\ +\x88\x6d\xf5\x0d\x6a\xfc\xf8\xf1\x27\x9f\x7c\xca\xdc\x99\xdb\x37\ +\x7d\xf4\xea\xf1\x80\x70\x3c\x00\x18\x93\x67\xdf\xf8\xe4\xb4\x79\ +\xdf\x9f\xbf\xf4\x8b\x5e\x95\xe3\xd5\x44\x79\xa1\x1f\x43\x17\x68\ +\x9a\x22\xe9\xfb\x83\xc1\x48\xba\x85\xc7\x10\x9c\x33\xad\x92\xae\ +\xde\x28\x0d\xcd\x5d\x68\xc9\x40\xa7\x1c\x57\x40\x39\xd4\x76\xa2\ +\x47\xfa\xbd\xc8\x08\x90\x4a\x29\x84\x70\x00\x11\x4a\x82\x48\xde\ +\xa3\x40\x38\xf7\x0a\x14\x42\x20\x1a\x9b\x5a\x54\x69\x49\xf1\xf8\ +\xbc\x92\xb1\x23\x5b\xf7\x6f\x5a\xfc\x65\xee\xf0\xa5\x00\x4c\x98\ +\x3e\xff\xe1\xf9\xb7\xfd\xe2\xce\xdd\xed\x31\x65\xe8\x9a\xd8\xdd\ +\x1a\x66\xe5\x8e\x0e\xc6\x0c\x0b\x52\x10\xf4\xb8\x86\x3a\x40\x64\ +\x03\x90\x64\x83\x00\x14\xa7\x4c\x2c\x67\x64\x69\x90\xd5\x5b\x1b\ +\xd1\x35\xd0\x70\x1b\x8d\x72\x22\xb1\x52\x68\xc9\xe7\x1c\x63\x40\ +\xe0\x7e\xe6\x1a\x2c\x48\x19\xaf\xe1\x18\x8f\x92\x68\x22\xdd\x01\ +\x86\x26\x44\x73\x6b\x9b\x9a\x7b\xd6\xe9\x27\x9b\x7a\xb1\xaf\xad\ +\x71\xcb\x07\x7f\x06\x00\xa1\x6b\xae\xfb\xee\x82\x5f\x35\x74\x6b\ +\xca\xd0\x10\xc9\x06\x4a\x25\x59\xb7\xbb\x83\xbd\x6d\x03\x8c\x1f\ +\x11\x22\x94\x63\xb8\x0d\x14\x47\xb8\x43\x92\x0d\x9a\xa6\x18\x57\ +\x5e\xc8\xec\xda\x4a\x56\x6c\xdc\x8b\x69\xd9\x08\xe1\x00\xe0\x3c\ +\xeb\x74\x54\x12\x18\x52\xe0\x38\x00\x69\x30\xe8\xda\x79\xaf\x09\ +\x07\x60\xdc\xdf\x12\x02\x34\x5d\x88\xad\x3b\xea\xd5\xb9\x67\x9d\ +\x71\xfa\x86\xd5\x9f\x6e\x87\xf8\xf6\xaf\x0e\x80\x51\x5c\x79\xff\ +\x23\xaf\x2d\xbd\xe0\xac\xd3\x3c\x87\xfb\xe2\x62\x20\x6e\xa7\x69\ +\xae\x24\x9a\x50\xf4\x0c\xc4\x59\xb6\xb9\x19\x8f\x2e\xa8\x28\x09\ +\xe2\x35\xb4\xa3\xb2\x01\x04\x4a\x41\x51\x9e\x9f\xab\xcf\xad\x65\ +\x53\x7d\x13\xed\xdd\xfd\xe8\x9a\x48\x35\x5c\x20\x1d\xc3\x52\xc6\ +\xa4\xdd\x43\xb8\x4c\x16\x83\x18\x21\x84\x72\x00\x11\xe9\xef\x04\ +\xa0\xeb\x9a\xd8\xd3\xb0\x4f\x7d\xfb\x1f\xfe\xf1\xa2\xb5\x9f\xad\ +\x79\x51\x99\x03\xbd\x5f\x09\x80\x89\x33\xae\x7b\xe3\x9e\x3b\xbf\ +\x57\x13\xf4\xe9\x9c\x54\x99\x2b\x66\x8c\x2f\xe0\x50\x6f\x9c\x9e\ +\x81\x78\x46\x03\x14\x86\xa6\xd8\xd3\xd2\xc3\x47\x9b\x9a\x29\x2f\ +\x09\x50\x56\x18\x40\x0d\xc1\x86\xcc\xc6\x2b\x04\x17\x9c\x56\x4d\ +\x3c\x61\xb3\x73\x5f\x9b\x43\x61\xa5\x10\x1a\xe9\x9e\x17\x0a\xa1\ +\x9c\x67\xb5\x0c\x63\x53\x2c\x48\x05\x5c\xe7\xb9\x24\x33\x52\xec\ +\xd0\x1c\x86\xb4\xb6\xb5\x79\x43\x05\x15\xb5\x5d\x2d\xdb\x5e\x38\ +\x7e\x00\x02\x93\xae\x5f\xb8\xe0\xc5\x1f\x14\xe4\x85\x14\x20\x34\ +\x0d\x3c\xba\xc6\xf4\x31\x79\x9c\x30\x32\x84\x65\x4b\x9a\x3a\xc3\ +\xe8\x19\xbd\xa1\x90\xac\xdd\x79\x88\x7d\xad\xbd\x8c\x29\xcb\xa3\ +\x20\xd7\xe3\x64\x7c\x2e\x1b\x48\x35\xda\x79\xaf\x94\x62\xda\xc4\ +\x0a\xca\x4a\xf2\xf9\x6c\xeb\x7e\x84\xe6\x04\x35\x2d\xa3\x47\x1d\ +\x5a\xcb\x54\xb6\x96\x66\x8a\x0b\x86\x52\x29\x83\x11\xce\xb3\x08\ +\xd7\x0d\x1c\xa0\x44\x34\x1a\x55\x57\x5c\x74\xfe\xb8\xad\x7b\x3a\ +\x77\x27\xfa\x0f\x6e\x3d\x1e\x00\xbc\xdf\xbf\xeb\xd7\xaf\x9f\x39\ +\x73\x66\xa1\x72\x87\xbb\xe4\x90\xa7\x80\xdc\x1c\x83\xda\xd1\x79\ +\xcc\x3c\xa1\x84\xe6\xae\x01\x22\x31\xd3\x49\x53\x01\x5d\x87\xae\ +\xbe\x08\x4b\xd7\xef\x47\x4a\xc5\xe8\xe1\xf9\x78\x3d\x9a\x1b\xb8\ +\xc4\x11\xa3\x84\x94\x8a\xaa\x91\xc5\xcc\xa8\x1d\xcd\xea\x8d\x0d\ +\x24\x4c\x33\x8b\xe2\xae\x11\xae\xaf\xab\xac\x21\x56\x24\x19\xe5\ +\xba\x90\x26\x40\x20\xd2\x71\x23\x19\x7b\x84\x12\xeb\x37\x6d\x56\ +\x57\x5e\x72\xf1\x49\x1b\xd6\x2e\x59\x30\x78\x68\x1c\x02\x80\xb2\ +\xdb\xee\xbf\xef\x97\x37\x04\x72\xfc\x59\x19\x5e\x92\xc2\xb8\xfd\ +\xed\xf3\xea\x4c\x1b\x57\xcc\x8c\xea\x12\xfa\xa2\x26\x2d\x5d\x03\ +\xe8\x42\x01\xce\xd0\xd7\xd0\xdc\xc5\xaa\x2d\x07\x29\xce\xf7\x53\ +\x35\x22\x17\xa9\x86\x72\x07\x81\x52\x8a\xc2\xbc\x20\xe7\x9d\x36\ +\x89\x8d\xdb\xf7\xd3\x3b\x10\x46\x13\x38\xbd\x99\x19\x0c\x45\x32\ +\x00\x26\x83\x64\xf2\x1e\x77\xa4\x70\x81\x49\xb1\xcc\xfd\x5e\x13\ +\x02\xaf\x47\x17\xa5\x25\xc5\x45\xdb\xd6\xef\x3a\x04\x7d\xeb\x8e\ +\x05\x40\xde\x77\xfe\xcf\x82\xdf\xcf\x3d\x7d\x46\x50\x2a\x91\x41\ +\x5b\x06\xf9\x73\x9a\xd6\x3e\x8f\xce\x49\x63\x8b\x98\x32\xa6\x18\ +\xd3\x96\x34\xb7\xf7\x03\x0a\x5d\x53\x58\xb6\xc5\x9a\xad\x07\xd9\ +\xd5\xd8\x49\xf9\xb0\x5c\x86\x15\xfa\x91\x4a\xa5\x18\xe5\x26\xd2\ +\x2e\x68\x3a\x17\x9d\x59\x4b\x4f\x5f\x8c\xfa\x7d\x2d\x18\xba\x13\ +\x50\x35\x91\x6d\x60\xd2\x60\x2d\xc9\x82\xe4\x4b\x64\x9e\x15\x68\ +\x6e\x1c\x72\x47\x8a\xae\xae\x4e\xae\xbd\xe1\xa6\x19\x6b\x57\xbe\ +\xf3\x14\x10\x1f\x12\x80\x91\xe3\xcf\x3e\xfb\xc1\x1f\x3f\xf4\xbf\ +\x85\xd0\x87\xcc\xf4\x86\x62\x83\xe3\xcf\x10\xf4\x1b\xd4\x8e\x29\ +\xe6\xdc\xa9\x95\x34\xb5\xf7\xd1\x17\x8e\xa3\x94\xc4\x63\x08\xba\ +\xfb\xa3\xac\xd8\xd0\xc0\x40\xd4\x64\x42\x55\x29\xba\xa6\xb9\xc9\ +\x4d\xf6\x5c\xcc\x96\x8a\x59\x53\xc6\x50\x5a\x94\xcf\xc6\x1d\xfb\ +\xdc\xc0\xa8\xd2\x2e\x90\x69\xa8\xfb\x72\x5c\x43\xa5\x03\x9f\x20\ +\x15\x43\x92\x39\x84\x26\x20\x91\x48\x50\x5a\x98\x9b\x13\x93\xfe\ +\x15\x9d\xad\xbb\x1b\x86\x04\xa0\x66\xca\x05\x8f\x5e\x39\xef\xb2\ +\x89\x88\x74\xcf\x1c\x3d\xd5\x3d\x92\x15\xa0\xd0\x75\x8d\x53\x26\ +\x96\x31\x63\xe2\x48\x00\x1a\x5a\xba\x9c\xc4\x47\x13\xec\x6d\xee\ +\x64\xf9\xfa\x3d\xf8\xbc\x3a\x13\x46\x17\x63\xd9\x47\xb2\xc1\xb6\ +\x15\x63\x47\x0d\x63\xf6\x49\xd5\x2c\xff\x6c\x1b\x4a\xca\x94\x81\ +\xa4\x62\x41\x1a\x8c\xe4\x73\x49\x76\x88\xcc\xf7\x2a\xdd\x46\x43\ +\x08\x3a\xbb\xbb\x85\xd2\xfc\xa1\xc3\x07\xb7\xbe\x32\x14\x00\x65\ +\x97\x7e\xfd\xde\xa7\x23\xde\x12\x34\x4d\x90\xe3\xd5\xc8\xf1\x6a\ +\xce\x8f\x68\x47\xcf\xf4\x32\x59\xa1\x69\x69\xd7\xf0\x7b\x75\x6a\ +\xc7\x95\x30\x7b\x72\x05\xb1\x84\x45\x5b\x67\x1f\x52\x4a\xa4\x94\ +\x6c\xdc\x79\x90\xad\xbb\x5b\xa9\x18\x5e\x40\x49\x41\x00\x29\x55\ +\x06\xe0\x4e\x5c\xc8\x0b\x05\x38\xff\x8c\xa9\xec\x6c\x38\x48\x7b\ +\x77\xaf\xe3\x12\x99\xa3\x80\x96\x9d\x0b\xa4\x7c\x5e\x4b\xf6\xba\ +\x93\xa2\xa7\x98\xa2\x81\x92\x92\x19\xd3\x67\x4d\xd8\xb0\xe6\xbd\ +\xa7\x5c\xd1\x35\x03\x00\x6d\xec\xf5\x37\xfd\xe3\x43\x97\xd4\xb7\ +\xf5\xb3\xb7\x3d\xcc\xe6\xa6\x3e\x0e\xf5\xc6\x29\x0c\x7a\xc8\xf1\ +\xe8\x59\xf9\xbd\x13\x6c\xb2\x19\x92\xbc\x4e\x06\x39\x4d\x73\x12\ +\x1f\xbf\xd7\xa0\x6e\x7c\x19\x17\x9e\x5a\x4d\x47\xcf\x00\x6d\x9d\ +\x4e\xf2\xd3\xdb\x1f\x61\xe5\x86\x5d\x1c\xee\x1a\x60\x4a\x75\xc5\ +\x90\x71\xc1\xd0\x75\xce\x3d\xb5\x8e\xf6\xae\x5e\x9a\x0e\xb5\xa7\ +\xe3\x41\xca\x60\xb2\x5c\x43\x13\x02\xa1\x32\xe8\x9f\xcc\x0c\x53\ +\x8c\x96\x4c\x9d\x54\xc3\x8a\xd5\xfb\x77\x63\xb5\xad\xcf\x02\xe0\ +\xa2\xab\xef\xbc\xdb\x57\x31\x75\x92\x94\x56\xea\x8f\xfa\xe3\x16\ +\x3b\x5a\x06\xd8\x79\x68\x80\x83\x9d\x11\x74\x0d\xca\xf2\x7d\x68\ +\x42\xb8\x63\x7c\xba\xd7\x87\x8a\x11\x69\xd0\x9c\x1e\x9e\x7e\x62\ +\x39\xb3\x6a\xab\xf0\x7b\x0d\x76\x1f\x68\x43\xd3\xa0\xa9\xad\x93\ +\x8f\xd7\xed\x44\xda\x92\x89\xe3\x86\x63\xdb\xd9\x6c\x90\x52\x31\ +\xf3\xa4\x1a\x86\x97\x14\xb1\x76\xf3\x0e\x37\x73\xcc\x0c\x78\x22\ +\x3b\x00\x6a\xa4\xd2\x63\x0d\xe1\x80\x92\x11\x3c\xdb\xda\xdb\x38\ +\xfd\xac\x73\xa3\x5b\xd6\x2d\x7d\x3d\x13\x00\xfd\xcc\x8b\xee\xb8\ +\xaf\x43\x96\x94\x78\x0c\x4d\xe8\x9a\xc0\xd0\x35\x74\x5d\xa0\x6b\ +\x02\x5b\xc1\x40\xcc\x62\xcf\xa1\x3e\x56\xef\xee\xa0\x2f\x92\xc0\ +\xeb\xd1\xf1\x79\x34\xfc\x5e\x2d\xa5\x2b\x1d\x3d\x46\xb8\x1e\xac\ +\xc0\xef\x37\x98\x58\x35\x8c\x39\x33\x26\x30\x10\x8d\xd3\xd5\x13\ +\x26\x12\x8d\xb3\x73\x5f\x13\x1b\xb7\xef\x67\xf4\xc8\x52\xc7\x2d\ +\x14\x59\x20\x54\x55\x0c\xa3\xb6\x66\x2c\x1b\xb7\xed\xc6\xb4\xcc\ +\xd4\xc8\x80\x9b\x10\x09\x2d\x33\x3f\x70\xf3\x02\xb7\x3d\xba\xae\ +\x61\xdb\x16\xd1\x58\x8c\xfd\x07\x0e\xaa\x13\x27\xd4\xe8\x1b\xd6\ +\x2e\x5d\x00\xa8\x24\xef\x0a\x1e\xfe\xf5\xa7\x4d\x03\xbe\xaa\xe0\ +\xf6\x96\x7e\xa4\x54\xe8\x9a\x20\x2f\xa0\x93\x17\x34\xf0\x7b\x85\ +\xa3\xef\x25\xc5\x4b\xe5\x8a\x9e\x4a\x32\x2c\xdf\xcf\x99\x93\xca\ +\x18\x55\x9a\x9b\xf6\x47\xd7\x55\xd2\xee\x90\x0d\x90\x52\xa4\xb2\ +\x41\x4d\x13\xbc\xf9\xc1\x7a\x3e\x58\xbd\x0d\x21\x24\xb6\xb4\x99\ +\x30\x7a\x04\xb7\x5f\x7f\x01\x86\xa1\xa7\x46\x8b\xe4\x39\x61\x9a\ +\xfc\xe8\x91\x05\x74\x75\x77\xa3\x94\x72\xda\x83\x04\x3b\xdd\xb6\ +\xa4\x68\x12\x89\xc4\xe8\xe8\xec\xe4\x70\x7b\x27\xf1\x78\x02\x65\ +\x5b\xc4\x13\x31\x2e\x9b\x77\x51\xf8\xed\x97\x7e\x56\x01\xf4\x24\ +\x01\xa8\x79\xf1\x95\xdd\x3b\x6b\x6b\xc6\x03\xd0\x15\x36\x69\xef\ +\x8f\x73\xa0\x23\x4a\x7d\x6b\x98\x83\x9d\x51\x7c\x86\xc2\xe7\x51\ +\x78\x75\x85\xd7\x70\xce\x1e\x1d\x0c\x5d\x61\x5b\x16\x01\x9f\x4e\ +\x59\x61\x0e\x35\x15\x45\xd4\x8d\x2d\xc5\x30\xc0\x96\x6e\xe4\xd6\ +\xc4\x11\x0c\x49\x1e\x4a\x29\x67\xa8\xec\x8b\xb2\x66\xf3\x6e\x16\ +\xaf\x58\x4f\x3c\x9e\x20\x94\xe3\xe5\xec\x99\xb5\x5c\x3e\x77\x3a\ +\x09\x73\xd0\x33\xc0\x0b\x6f\xbc\xcb\xd2\x15\x6b\x30\x74\x8d\x48\ +\x38\x4a\x38\x1a\x21\x3c\x10\x21\x12\x8d\x12\x8b\xc5\x88\xc5\xa2\ +\x24\x12\x09\x94\xb4\x1d\xd1\xc5\xd5\x1d\x6d\xdb\xe2\xd4\x99\xb3\ +\x59\xb9\xf8\x89\x09\x40\xbd\xd3\x1c\x6f\xf9\xfc\x77\xdf\xd9\xf4\ +\xea\x88\x61\x25\x59\x0d\x35\x74\xf0\x18\x60\xd9\xb0\xa5\xb1\x97\ +\x4d\xfb\x7b\x68\xed\x0a\xd3\x33\x10\xa3\x3f\x1a\x47\xd9\x36\x02\ +\x89\xdf\xa3\xf0\x18\x0a\x8f\x06\x9a\x90\x80\xcd\xb4\xea\x32\x66\ +\x9d\x58\x4e\x59\x71\x90\xc2\x3c\x5f\xca\xd8\xc1\x63\x7f\x26\x10\ +\x9a\x26\x90\x0a\x5e\x7b\x6f\x15\x9f\x6f\xdb\x4d\x5b\x47\x37\xc5\ +\xf9\x21\x6e\xbb\x6e\x1e\x13\xc7\x57\xe0\x08\x47\x8e\x6f\xf8\x7d\ +\x82\x85\xaf\x7f\xc0\x03\xbf\x7c\x06\xdb\x36\x5d\xe5\xc8\x11\x59\ +\x95\x2d\x51\xca\x4a\x8b\xad\x4a\x3a\xeb\x0e\xae\xb0\x3a\xa5\xb6\ +\x8e\xcf\x3f\xfd\xf0\x1a\xe2\x07\x5f\x73\x5a\x93\x5b\x77\xef\xca\ +\xf7\xd6\x3e\x10\x0c\xf8\x87\x98\xc1\x39\x0d\xd3\xdc\xc8\xa3\x50\ +\xd8\x52\xd2\x1b\x4e\xf0\xc9\x8e\x36\x56\x6d\x6b\xa6\x77\x20\x8a\ +\x86\x23\x5f\x65\x6a\xf9\x28\x1b\x5d\x28\xca\x4b\x82\xdc\x38\xef\ +\x24\x66\xd7\x95\x63\xd9\xae\xe8\xf3\x25\x87\x6d\x4b\xde\xfa\xe3\ +\x1a\x1e\x7e\xf2\x55\x74\x4d\x30\xb9\x7a\x14\x4f\xff\xec\xfb\x19\ +\xf1\xc4\x01\xb3\xb9\xf5\x30\x97\x7c\xeb\x9f\x88\xc6\xa2\xae\xc2\ +\xfc\xe5\x6a\x72\xed\xa4\x13\xd9\xb0\xf1\x8b\x9f\xd0\xb7\xe9\x41\ +\x27\x08\x06\x46\x5d\x7b\xe7\xad\xb7\x9f\x32\x38\x78\x25\xa3\x7c\ +\xe6\xe7\xba\x26\xdc\xf8\xe0\xa1\xae\xaa\x80\x4b\x67\x57\x72\x66\ +\x5d\x39\x13\x2a\x0b\x29\xcd\xcf\x41\x2a\x49\x5b\xd7\x00\x71\xd3\ +\x72\xe5\x2c\x49\x67\x4f\x98\x25\xab\xeb\x79\x73\xd9\x36\x76\x1f\ +\x38\x8c\x65\xd9\x54\x0c\x2f\x20\xe0\xd7\xb0\xed\xa1\x99\x21\x04\ +\xd4\x4d\xac\xe4\x86\xcb\xe6\x90\x1b\xf2\xb3\xec\xd3\x8d\xfc\xdb\ +\xc2\x37\xd1\x35\xc1\xac\xa9\xd5\x28\xe5\xe6\x0b\xb9\x21\xae\x9c\ +\x77\x0e\x1b\xb6\xed\xa0\xb9\xa5\xcd\x99\x6e\x67\x88\xa6\xc8\x4c\ +\x61\xd5\xf9\x6e\x78\x49\x09\xad\x9d\xfd\x3b\x89\x36\x2f\x76\xfe\ +\xb5\x70\xe6\xb3\x5b\x96\xaf\xb9\xc9\xb6\xb3\xc7\xf3\xc1\x6c\x18\ +\x7a\x5e\x90\x3c\x3b\x81\xd3\xe3\x71\xdc\x66\xc3\xae\x76\x3e\xde\ +\xb0\x8f\x2d\x7b\x5a\x18\x08\xc7\x08\x47\xa2\xd8\xb6\x05\x4a\x62\ +\x9a\x26\xf1\x44\x9c\x39\xd3\x4f\xe0\x86\x8b\x67\x32\x72\x58\x01\ +\xb9\x41\x1f\x38\xc9\xdb\x90\x8b\x17\x86\x01\x8f\x3d\xf7\x0e\x2f\ +\xbe\xb9\x14\xdb\xb6\x78\xfe\x17\xff\x4c\xf5\xd8\x51\xa9\x00\x69\ +\xe8\x82\x9b\xbf\x7f\x1f\x1f\x7d\xf2\x99\x63\xfc\x50\xeb\x10\xee\ +\x75\xed\x89\x35\x6c\xdc\x71\xf0\x39\x3a\x3e\xbd\x79\x48\x00\x8e\ +\x65\xe8\x50\x59\x60\xf6\xf7\xca\x9d\x86\x82\xa6\x83\x94\x8a\x68\ +\x22\x41\x38\x92\x60\xd5\xa6\xbd\x2c\x59\xbd\x83\x5d\xfb\xda\xd0\ +\x34\x85\x86\x44\x4a\x9b\x90\xdf\x60\x78\x49\x2e\xdf\xbc\xf4\x34\ +\x2e\x38\x7d\x22\x09\x0b\xec\x21\xf4\x5c\x21\x20\x1a\x4b\xb0\x7c\ +\xf5\x46\xee\x7a\xe8\x71\x26\xd7\x54\xf1\xfc\xaf\x7e\x8a\xd7\x63\ +\xa4\x86\xcd\xd7\xde\x59\xc2\x1d\xf7\x3c\x40\x6e\xd0\xef\x00\x90\ +\xb1\xfe\xa8\xdc\xf5\xc7\xda\x89\x13\xd8\xb8\x33\x13\x80\x82\xe9\ +\x8f\x6f\x58\xb6\xee\x76\x21\x8e\x34\x34\x33\x72\x0f\xc5\x8a\xe3\ +\x63\x8b\x13\x47\x92\x41\xb5\xbb\xdf\x64\xcb\xae\x66\xb6\xd4\x1f\ +\x64\x7b\x43\x0b\x3b\x1a\x9a\xe8\xe8\xea\xc5\xb2\x4c\xf2\x82\x3e\ +\xce\x99\x31\x91\xd3\xa7\x4f\x60\xe6\x94\x6a\x4a\x0a\x73\x48\x98\ +\xa4\xd2\xe5\x64\x6f\xdb\x12\x9e\x7d\x79\x11\xcf\xbf\xf1\x2e\x57\ +\x9c\x7f\x16\x77\xdc\x34\x1f\x8f\x61\xe0\xf5\xc0\xea\xf5\xdb\xf9\ +\xe6\x1d\x77\xd3\xdf\xe7\x4a\xf1\x19\x6b\x8e\x4a\xda\x4c\x99\x34\ +\x81\x0d\x5f\xec\x7f\x82\xae\xb5\x77\x38\xa6\x85\xea\xee\x5d\xb5\ +\x74\xed\x03\xc1\x1c\x7f\x86\x01\x69\xc9\xfb\xe8\xb4\xff\xea\x6c\ +\xc9\x8c\xfa\xc2\xcd\xd7\x3d\x06\xec\x69\xec\x64\xd1\xb2\xf5\x2c\ +\x5d\xb5\x89\xbe\x81\x30\xd1\x68\x8c\x58\x2c\xc6\xa9\x27\xd7\x70\ +\xc7\x0d\x17\x31\xae\x72\x04\x5e\xaf\x27\x2d\xce\xb8\xcf\x1b\x06\ +\x2c\x7c\xf5\x3d\x7e\xf3\xec\x4b\x3c\xf7\xab\xfb\xa9\x19\x57\x95\ +\xca\x43\xce\xbe\xec\x1b\x34\xec\xdb\xef\x06\xe7\xf4\xf2\x5b\xdd\ +\xe4\x49\x6c\xdc\xb4\xe3\x27\xf4\x6d\x7a\xd0\x1d\x06\x2b\xe6\xff\ +\xe2\xb7\x2b\x5f\x2d\x2d\x2e\xa6\x34\xd7\x43\x49\x9e\x97\x82\xa0\ +\xe6\x44\x6b\x37\x71\x49\x9e\xc5\xa0\xb5\x80\xaf\x0a\xd0\xd1\x86\ +\xc0\x24\x18\x00\xdd\xbd\x11\xba\x7a\xfb\xd9\xbc\x63\x2f\x8b\x3f\ +\x5e\xc7\x8a\xb5\x9b\x29\xcc\x0b\x32\x76\xd4\x70\xae\xbf\x6c\x0e\ +\x57\xcf\x9b\x8d\x6d\x93\xca\x0f\x34\x0d\x22\x91\x38\x2b\x3f\xdb\ +\xc0\x7f\xbc\xbe\x88\x87\xff\xf9\x7b\x8c\x1a\x39\x8c\x58\xdc\xe2\ +\x81\x47\x7f\xcd\xef\x5e\xf8\x4f\x74\x8d\xd4\x12\x7c\xdd\xa4\x3a\ +\x36\x7e\xb6\x22\x63\x18\x84\x9a\x6f\xfc\xf8\x93\x9d\x5d\xaa\x08\ +\xa5\x40\x2a\x27\xa0\x15\x06\x3d\x14\x06\x74\x0a\x02\x3a\x85\x41\ +\x83\xa2\x90\x41\x5e\xc0\x20\xe0\xd3\x09\xfa\x75\x72\x73\x0c\x82\ +\x7e\x83\x50\x40\x4f\x69\xf3\x2a\xa9\x11\xa4\x04\x8c\xec\x85\x93\ +\xe3\x3d\x92\x54\xf7\x7a\xc0\xb4\x61\xed\xa6\xdd\xac\xfa\x6c\x33\ +\xeb\x36\xef\xe4\x40\x53\x0b\x27\x4f\x3e\x81\x8b\xe6\x9c\xca\xb4\ +\xda\x1a\x46\x96\x15\x60\x9a\xce\x7f\x7a\x3d\xf0\xc4\x73\xaf\x53\ +\x3e\x62\x18\x33\xa7\x9d\x44\x59\x69\x1e\x8f\x3e\xfe\xef\x3c\xf2\ +\xd8\xe3\x28\x69\x61\x5b\x16\xd3\xa7\xcd\xe0\xb3\x0f\x9f\xcd\x48\ +\x84\xa0\xe0\x96\x1f\x7f\xd0\xd4\x26\x2a\x82\xba\x96\xdd\x4a\x25\ +\xe5\xa0\x75\x7a\x6b\xc8\x15\xdd\x61\xf9\x3e\x2a\x4a\x03\x54\x94\ +\xe6\x52\x39\x3c\x44\xe5\xf0\x3c\x46\x96\xe4\x3a\xaa\xee\xa0\x0c\ +\xf0\x58\xc9\x90\x38\x06\x4a\xc9\xef\x85\x80\x9e\xde\x01\xde\x58\ +\xfc\x11\xaf\xbc\xfd\x3e\x85\xf9\x21\xee\xfa\x87\x6f\x31\xb5\x76\ +\x02\x49\x0d\x53\x08\x58\xb6\x72\x35\xb9\xb9\x21\xa6\x4f\xa9\x65\ +\xd3\xb6\xed\x9c\x7f\xe5\x75\x28\x2b\xc1\x85\x17\xcc\x0b\xbf\xf7\ +\xfa\x2f\xb3\x52\x61\xfd\xdb\x77\xbf\xba\xb5\xd9\x3b\x65\x82\xa1\ +\x91\xd9\x97\x4e\x42\x63\x5b\xc8\xcc\x4a\x8e\xe4\xd0\x92\x91\x78\ +\x48\xdb\x89\xb8\xb6\x8b\xb2\x2d\x2d\x90\x36\x39\x5e\x8d\x80\x4f\ +\x27\xc7\x7d\x05\x7c\x06\x45\x79\x7e\xca\x8a\x73\x19\x51\x9a\xc7\ +\xc8\x92\x02\x46\x0e\xcb\x67\xc4\xb0\x10\x86\xee\xa4\xcf\x52\xba\ +\x67\x9b\x54\x74\x1f\x0a\x08\x5d\x77\x84\xd8\x8e\xce\x30\x7b\x0f\ +\x1c\xa4\xb3\xa7\x97\xa6\xe6\x56\x42\xa1\x00\x17\xcf\x3d\x9b\xdc\ +\x5c\x2f\xfd\x03\x09\xc2\x91\x08\x85\xf9\xf9\x1c\xee\xe8\xe0\xc2\ +\xab\xae\x53\xe7\xce\x39\x6f\xe7\xc2\x27\xee\xa9\x05\x6c\x23\x99\ +\x78\xb5\x1e\xf8\x62\x6b\xf9\xac\x53\x27\xc6\xe3\x09\x67\x92\xe1\ +\xbe\x6c\x5b\x61\xdb\x9a\x73\xb6\x24\x96\x72\x66\x87\xb6\x72\xde\ +\xdb\xb6\x23\x72\x28\x99\x3c\xab\x94\x2c\xa5\x80\x48\xdc\x24\x1c\ +\x89\xb9\x29\xaa\xc3\x1e\xdb\xb6\xb0\x2c\x0b\xdb\x32\xb1\x2d\x13\ +\xcb\xb6\xb0\x4c\x93\x92\xc2\x20\x15\xc3\xf2\xa9\x18\x5e\x44\x79\ +\x59\x11\x15\xc3\x8b\x18\x39\xac\x88\x40\x8e\x8f\x40\x8e\x8f\x60\ +\x8e\x9f\x60\xc0\x4f\x20\xc7\x8f\xd7\xe3\xc4\x24\xdb\x86\x82\xfc\ +\x20\x53\x6b\x27\x38\x1a\xa5\xd7\xf9\x6c\xcd\xfa\x6d\x04\x03\x39\ +\x8c\x1e\x55\x4e\x51\x41\x01\x00\xc3\x4b\x4b\xa9\xff\xfc\x43\x71\ +\xd5\xcd\x3f\xda\x9a\x54\x87\x33\xf8\x36\xfa\xdb\x9b\x36\xed\x7f\ +\xca\x91\x80\x86\x8a\xe0\x2a\x1d\xdc\x44\x5a\x9b\x53\x28\x12\xa6\ +\x4d\xdc\x32\x89\x27\x6c\xe2\xa6\x49\x3c\x61\x12\x4b\x58\xc4\x12\ +\x09\xe2\x09\x93\x68\x3c\x4e\x34\xea\x9e\x63\x71\x22\xd1\x38\x91\ +\x58\x9c\x48\x24\xea\xbc\x8f\x39\x89\x52\x24\x12\x25\x1c\x89\x12\ +\x8e\x44\x32\x52\x5a\x27\x79\x82\x64\x56\xe7\x2c\x9d\x17\xe6\x05\ +\x19\x57\x55\x4e\x75\xd5\x28\x4e\x18\x3b\x8a\xea\xb1\x95\x54\x8f\ +\x1b\x8d\xdf\xe7\x49\x96\x1d\x80\x1b\xcf\x32\xdd\x4e\x08\x28\x2d\ +\xad\xba\x0d\x0e\xfc\x76\x70\x85\x48\xd9\x4f\x1e\x5e\xdc\x3a\xff\ +\xe2\x0b\x8f\x1a\xc5\x8f\x95\x08\x0d\x75\xd6\xb5\xb4\x48\x21\x38\ +\x52\x4c\x3d\xd6\xd9\xb6\xc1\xb2\xc0\xb2\x25\x96\x65\x63\x5a\x36\ +\x96\x65\xa5\xce\x09\xd3\x24\x91\x30\x89\x27\x12\xce\x2b\xee\x9c\ +\xfd\x3e\x2f\xb9\xa1\x00\xb9\xc1\x20\xa1\x60\x90\xdc\x50\x00\x8f\ +\xc7\x93\x32\x72\xe1\x6b\xef\x71\xd7\x1d\xf3\x46\x24\xcb\xee\x8c\ +\x0c\x00\x0e\xbd\xf7\xc1\x3b\x6f\x5d\x35\xef\xfc\xcb\x75\x5d\x1b\ +\xb2\x51\xc7\x8e\xda\xe9\x49\x8e\x94\xd9\xcf\x68\x8a\x3f\xf9\xd0\ +\x34\x0d\xaf\x57\xc3\xeb\xf5\x1c\xbd\xce\x27\x83\x91\x00\x96\xad\ +\x88\xc6\x62\xd8\x96\x8d\x2d\x25\xba\x94\x68\xae\x12\xfd\xe6\xa2\ +\x77\xde\xca\xac\x39\xcc\x04\x80\x96\xc6\x9d\x0b\xe2\x89\xc4\xa5\ +\x81\x1c\x9f\x76\xb4\xf2\xa1\xa4\x98\xf1\xa5\xc5\x47\x7f\xc9\x0a\ +\x44\x95\x94\xba\x5c\x76\xb9\xd7\xb6\x84\x7d\x07\xda\xd8\xb9\x67\ +\x1f\x3b\x77\xef\x65\xc7\xae\x06\x0c\x43\x63\xc2\xb8\x31\x9c\x31\ +\x7b\x3a\xd5\xe3\xaa\xd0\x75\x1d\x9f\x4f\xa3\xa3\xb3\x9f\xd5\xeb\ +\x3e\x97\x87\x9a\x1b\x16\x1c\xab\x48\x2a\xef\xf6\xbb\x5f\xdc\xf3\ +\xbd\x5b\xbe\x51\x6a\x5a\x5f\x9e\xea\x1e\x6f\x26\x78\x34\x40\xb4\ +\x0c\xa3\x74\xcd\x99\x3b\xc4\xe2\xd0\xd1\x35\x40\x7b\x57\x2f\x1d\ +\x5d\xbd\xb4\x77\xf5\xd0\xde\xd9\x4d\x5b\x7b\x17\x2d\x87\x3b\x68\ +\x3d\x74\x98\xde\xfe\x7e\x0a\x73\x03\x14\x15\xe4\x71\xc2\x98\xb4\ +\xff\xd7\x8c\x1b\x43\x30\xe0\xe4\x1d\xba\x0e\x9f\xae\xdb\xc5\x92\ +\x0f\x3f\xe6\x8f\x1f\x2d\x67\xc3\xe6\xcd\xdc\x76\xeb\x1d\xed\x4f\ +\xfd\xeb\xed\xe3\x33\x0b\x2d\x87\x68\x56\xd9\xed\xcb\x96\x6f\x7f\ +\x7c\x78\x49\xc1\x57\x4c\x85\x55\x96\x40\x9a\x8a\x07\xc2\x59\xf0\ +\xb0\x6c\x89\x6d\xdb\x8e\x4f\xdb\x92\x48\x34\xc1\x81\x96\x76\xf6\ +\x37\xb7\xb3\xaf\xa9\x8d\xbd\x8d\x87\x68\x68\x6c\xa5\xab\xbb\x17\ +\x84\x13\xf0\xbc\x1e\x0d\xbf\x57\xc7\xe7\xd1\x39\xa1\x6a\x24\xa7\ +\x4d\x9f\xcc\x99\x33\xa6\x70\x62\x75\x19\xa6\x3b\x61\xca\x9c\xc1\ +\xc6\x13\x26\x03\x03\x11\x7e\xff\xee\xfb\x3c\xfa\x9b\xdf\xd1\xd5\ +\xdd\x8d\xd7\xa3\x21\xa5\xcd\x19\xb3\x4f\xe5\xa3\x45\x8b\xee\x80\ +\xc6\x27\x06\x17\x31\x0f\x3a\x0e\x3d\xbd\xf8\x83\x25\xff\x74\xcb\ +\xd7\xaf\x1b\x2b\x95\x12\x99\x18\xa5\x96\xa3\xdd\xd9\x5e\x72\x1c\ +\x36\x74\x47\x27\xe8\x8b\x48\x5a\x3a\xfa\x68\x6e\xef\xa5\xe9\x70\ +\x2f\x4d\x6d\xdd\x34\xb5\x75\x13\x89\xc6\x88\xc7\x13\xce\xa8\x10\ +\x8b\x13\x4b\x24\x30\x5d\xb9\xca\xb6\x4d\x4c\xd3\xc4\x34\x13\xf8\ +\xbd\x3a\x67\x9c\x72\x22\x33\xea\x4e\xe0\x94\xba\xf1\x14\xe5\xe7\ +\x12\x0c\xf8\x09\x05\x9c\x92\x9c\x64\x61\xd9\x40\x38\xad\x48\xe7\ +\xf8\xa1\x61\xff\x61\x1e\x7f\xf6\x25\x3e\xfe\xf4\x33\x0e\x1f\x6e\ +\x27\x9e\x88\x81\x92\xf8\x7c\x1e\x94\x6d\x63\x85\xc3\xaa\xaa\xb2\ +\x6a\x2f\x34\x3e\x7d\x7c\x75\x82\xc1\x49\xd7\xff\xf1\x0f\x1f\xfd\ +\xc7\xd8\x8a\x52\x15\x89\x4b\x11\x89\x5b\x0c\xc4\x4d\xc2\x31\x93\ +\x81\x68\x82\xbe\x48\x82\xae\xfe\x28\x5d\x7d\x11\x3a\x7b\xc2\x74\ +\xf4\x85\x69\xef\x1a\x20\x96\x88\xbb\xf5\x3a\x12\xe1\x56\x7a\xe1\ +\x56\x8d\x5a\x96\x89\xe5\xd4\x00\x53\x98\xe7\x67\x44\x49\x1e\xe5\ +\xa5\x79\x8c\x1e\x59\x4c\x75\xd5\x70\x6a\xc6\x8c\xa4\x72\x44\x2e\ +\xb6\x74\x24\x38\xcb\xca\xce\x0c\x93\xd7\x1e\x77\xfc\xdf\xb0\x65\ +\x37\xab\xd6\x6d\x64\xd1\x92\x8f\xd9\xbc\x7d\x27\x5e\x43\x77\xf2\ +\x7d\x69\xbb\x25\xb8\x6e\x62\x66\x9b\xea\xfa\xf9\x57\x8b\x77\x16\ +\x2f\xf9\x46\xcf\x81\xe5\x2f\x1d\x77\xa1\xe4\xf8\x19\xdf\xfa\xf0\ +\xe4\x79\x77\xcf\xe9\x8d\xc4\x15\xd2\x16\xc9\xcc\x0f\x99\x31\xbf\ +\x1e\x5c\xf3\x6b\x67\x97\xba\x0a\x21\x11\x4a\xe1\xf7\x08\x4e\x9e\ +\x58\xce\xcc\xc9\xa3\x99\x31\x79\x34\x79\x21\x2f\x32\x59\xec\x75\ +\x9c\x87\x65\xdb\x44\x63\x71\x9e\xf9\xcf\x45\xfc\xee\xa5\x37\xb1\ +\x4c\x13\x21\x54\x4a\xe6\x92\x83\xda\xe0\x8a\x20\xaa\xa4\xb8\x50\ +\xe4\x04\x0a\x3f\xdc\xf3\xf9\xcb\x73\x8f\x56\xc7\x3f\xe4\xd1\xb0\ +\xf9\xdd\x5b\x2e\x99\x77\xf5\xb6\x88\x51\x15\xb0\x4d\x89\xd2\x04\ +\x52\xba\xe5\x0a\x6e\x92\xa1\x14\xd8\x96\x22\x61\xd9\x24\x12\x09\ +\x46\x14\xe5\x70\x62\x55\x31\x93\xc7\x96\x32\xae\xbc\x80\xfc\x90\ +\x9f\x82\x5c\x3f\xb9\x41\x8f\xf3\x88\x5b\xef\x68\x5a\xc7\xce\xf9\ +\x71\x6b\x0d\xfc\x5e\x58\xbf\xb5\x91\x17\xde\x5c\xca\xa6\x2f\x76\ +\x71\xa0\xa9\x05\xdb\xb2\xd0\x84\x33\x59\x93\x99\xa5\x73\xa8\xac\ +\x8a\xb3\x64\x29\xfe\x15\x97\x5c\x11\x7e\xea\x37\xff\x72\xf3\x9f\ +\x58\x2a\x9b\x7b\xed\xf7\x7e\xfe\xfe\xcb\xdb\xdb\x3d\x4a\x29\x5b\ +\x58\x96\x85\xc0\x26\x3f\xc7\xa0\x30\xe4\xa1\x30\xe4\x61\xec\x88\ +\x3c\xaa\x2b\x0a\x98\x50\x59\x44\x28\xe8\x08\x15\xb6\x4d\x56\x99\ +\xcc\xf1\xcc\xfc\x84\x10\x78\x0c\x88\xc6\x6d\xea\xf7\x36\xf1\xe9\ +\xfa\x2f\x78\x6d\xf1\x0a\x0e\x34\x1f\xc2\x6f\x68\x43\x0a\x1b\x59\ +\xe5\xb6\x32\xbb\x10\x3b\x91\x88\xa9\x6b\xaf\xbc\x42\xbc\xf4\xdb\ +\x7f\xbd\x16\xba\x5e\x3d\xd6\x4e\x8e\x63\x1c\xfd\xaf\x2c\x79\xe3\ +\xb1\xa9\x37\xde\xfe\xff\x7e\xa8\x6b\x4a\x4d\x19\x5b\x28\xc6\x8f\ +\xc8\x1d\x34\x34\xa6\xa7\xbb\xe1\x68\xe6\x48\x20\xb2\x16\x41\x8e\ +\xa9\x03\x08\x41\x57\x5f\x98\x27\x5f\x7c\x8f\x77\x96\xad\x76\xe6\ +\x15\x2e\x95\x83\x7e\x9f\x2b\x6d\xc9\x41\x19\x97\x72\x13\xaf\x64\ +\xc9\x6d\xfa\x37\xa5\xb4\xd5\x75\x57\x5e\x22\xb6\xd7\xef\x7a\xe4\ +\x58\xc6\x1f\x6f\xb1\xb4\x31\xf5\x8c\x6f\x2d\x78\xfe\x89\x05\xb7\ +\x04\x72\xfc\x0a\xa1\xb2\x2a\x47\x8e\x47\x34\x1d\x7c\x78\x0c\x47\ +\xe4\xfc\x64\xc3\x3e\xfe\xf0\xf1\x06\xb6\xd5\x1f\xa0\xa1\xb1\xd5\ +\xad\xe8\x50\xa9\x5e\x4d\x4e\x9e\x32\xa7\xe1\xca\x1e\xaa\xb4\xde\ +\x4a\x05\xbf\x58\x3c\xaa\x66\x4d\x9f\x2a\x22\xe1\xc8\x33\x1b\x96\ +\x2f\xfc\xce\x97\x6d\xbb\x39\xde\x7c\xcd\x7b\xf6\x65\x3f\x5c\xf4\ +\xd8\x03\xff\xf7\xbc\x50\x30\x47\x89\x41\x20\x0c\x35\x47\x48\x2f\ +\x83\xa5\xa7\xae\x03\x11\x93\xe6\xb6\x6e\x3e\x5c\xb3\x9d\xd7\x96\ +\xac\xa5\xaf\x3f\x8c\xd7\x10\xe9\x8d\x12\x83\xa6\xdc\x47\xee\x27\ +\x38\xf2\xb3\x4c\x7d\xc2\xb6\x12\xea\x94\xa9\x75\x62\xe4\x88\xf2\ +\xa5\x2f\xff\xee\x47\x97\x1c\xcf\x86\x8a\xaf\x92\xb0\x7a\x27\xcf\ +\xbe\xf1\x89\xb7\x5f\x5c\x78\x8b\x10\x42\x69\xae\x6e\x70\xf4\x44\ +\x29\xed\xd7\xfb\x9a\x7b\xf8\xed\xeb\xab\xf8\xfc\x8b\x7d\x24\xe2\ +\x09\x2c\xdb\x1c\xa4\x29\x0c\x2e\x97\xb7\x32\x7a\x7a\xb0\xaf\xdb\ +\x59\x91\x3f\xf9\x5c\x3c\x11\x57\xd7\x5e\x76\xa1\xd8\xfa\xc5\x8e\ +\x67\x36\x2e\x5f\x78\xfb\xf1\xee\x26\xf9\xaa\x19\xbb\x31\xe6\xa4\ +\xab\x1e\xfc\xe5\x43\x0f\xff\x70\xe6\xd4\x6a\x15\x4f\x28\x34\xcd\ +\xa9\xa6\x49\x1a\xef\xf3\x38\x91\x7e\xcd\xb6\x46\x3e\xd9\xb8\x8f\ +\xf5\x3b\x1a\x69\x6c\xed\xc4\xa3\x3b\xa5\x6b\x59\xea\x92\xcc\xde\ +\x1e\xa3\x32\xa8\x9c\x1c\xd2\x92\x00\x39\xbd\x2e\x33\xb4\x7e\xcb\ +\xd5\x1f\x2c\x25\x6d\x8b\xcb\x2e\xfc\x9a\xd8\xf6\xc5\xb6\x47\x36\ +\xad\x78\xfe\xde\xaf\xb2\xdb\xec\x4f\xdd\x30\x71\xed\xa3\xbf\x79\ +\xf3\x99\xab\x2e\x3e\x37\x68\xe8\x9a\xd2\x34\x44\x34\x6e\xd2\xd1\ +\x1b\xe6\xdd\x4f\xea\xf9\xc3\x8a\xed\x28\x69\xa3\x6b\x6a\x10\x7d\ +\xad\xec\xcd\x13\x29\x5f\x4f\xae\xe1\x1d\xc9\x86\x23\x17\x38\xd2\ +\xc0\xd8\x96\xa9\x4a\x8a\x0a\xc4\xc5\xe7\xcd\x0d\x3f\xf6\xd0\x0f\ +\x6e\xfe\xb2\x80\xf7\x97\xdd\x33\x64\x14\x57\x4d\x9e\x75\xe9\x33\ +\x8f\xfd\xec\xc1\x39\x2f\xfc\x71\x97\x6a\x6a\xef\x11\xe1\x70\xcc\ +\x5d\xfd\xb1\x8f\xb2\x3e\x67\xa5\x7d\xdd\xce\xde\x13\xa4\x06\x31\ +\x23\xf9\x1c\x83\xc0\x4a\xb2\x61\x20\x3c\xa0\xbe\x39\xff\x72\xf1\ +\xd1\x8a\x55\x1f\xee\xdf\xfe\xf1\xcd\x56\xa4\xb5\xf1\xbf\x67\xd3\ +\x54\x7e\xdd\xf5\xb7\xde\x72\xe7\xfd\x2a\x38\x6a\xdc\x9e\xd6\x01\ +\xc2\xe1\xb0\x1b\xc9\x5d\xc3\x53\xd1\x5c\x1e\xb9\x6b\x6c\xd0\xc2\ +\xa5\x52\xe9\x71\x3c\xb5\xba\xab\x5c\x4d\x52\xda\x98\x66\x02\x9f\ +\xd7\x60\x5a\xdd\x44\x4a\x0b\x82\x0d\xbf\x7f\xfb\xad\x9f\xf6\x36\ +\xae\xfc\xb3\x36\x4d\xfd\x05\xb7\xcd\x95\xdf\xfa\xdd\x7b\x1e\xbc\ +\xcf\xca\x19\x59\xbc\x6d\x6f\x9b\x16\x8f\x27\xb2\xb6\xcd\x39\x3d\ +\x7f\x14\x36\xc8\xa1\xfc\x3d\x7b\xdb\x9c\xc7\xd0\x98\x35\xf5\x44\ +\x39\xbc\xa4\xb8\xf3\xdf\x1e\xbe\xef\x3e\x38\xf8\x37\xb2\x6d\x6e\ +\x90\x9e\x50\x3d\xe5\x6b\xb3\x3d\xa1\xf2\xef\x9c\x7a\xda\x39\x97\ +\x97\x95\x8f\xe1\x83\xb5\xf5\xf4\xf4\xf6\x2b\xb0\x85\x26\x9c\x09\ +\x40\xd6\xda\x7d\xd6\xf0\xe6\xa8\xca\xa6\x33\x52\xa8\xc2\xdc\x80\ +\xb8\xe0\xac\x53\xe8\xe9\xed\x63\xdd\xba\xd5\x6f\xa9\x44\xf7\x82\ +\x9d\x1b\xde\xfb\x9b\xdc\x38\x39\xf4\xd6\x59\xef\x84\x4b\x6f\xb8\ +\xe9\xc6\x39\xb9\x05\x65\x75\x91\x04\x95\xdd\x61\x33\x08\x5a\x2a\ +\xfb\x53\xc9\xfd\x85\xca\xc6\x4c\x98\x0e\x30\x96\x45\x71\x81\x3f\ +\x1c\xf2\x7b\x1a\xe3\xd1\xf0\x96\xe7\xff\xfd\xc5\x65\x44\xb7\xfe\ +\xdd\x6c\x9d\x3d\x56\xca\x9d\xde\x3c\xed\x2f\xae\x41\x1f\xb4\x79\ +\xda\x8e\xb7\x12\xeb\xaa\x27\x71\xf0\xaf\xba\x79\xfa\x7f\xfc\xf1\ +\xff\x01\xee\xcb\x32\x77\x7b\xa2\x62\x32\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x19\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ +\x13\x39\x18\x8a\x31\x07\x97\x00\x00\x03\x99\x49\x44\x41\x54\x38\ +\xcb\x55\x93\x6b\x6c\x53\x65\x00\x86\xdf\xef\x9c\x9e\x75\xbd\x0e\ +\x5a\xd6\x8d\x8e\x75\x6d\xd8\x05\xd6\x5d\x30\x1d\x19\x95\xca\x86\ +\x37\x9c\x23\x01\x51\xe2\x12\x13\x43\xf8\x21\x0a\xc6\x98\xe0\x2d\ +\x26\x2a\x26\x10\xa2\x41\x13\x33\x5d\xb8\x64\x6a\x8c\x41\x27\x01\ +\x13\x02\x18\xe6\x18\xd9\x45\xb6\x89\x32\xb7\x91\x6d\xcd\x46\x2a\ +\xc3\x8d\x75\x1b\xdd\x7a\xdb\xf9\x7a\xbe\x73\xce\xe7\x0f\xc4\xe8\ +\x93\xbc\x3f\x9f\xf7\xdf\x43\xf0\x0f\x82\xc5\x0b\x3d\xfd\x27\x00\ +\x60\xc7\xbe\xaf\x2a\x97\x52\x72\x8d\x29\x5b\xf2\x6b\x2a\x35\xa4\ +\x13\x8b\x13\x66\x23\x19\xb0\x47\xcf\x0e\x9e\xbb\xfa\x87\x56\x19\ +\xdc\x8d\x91\xbe\x33\x00\x00\x82\xff\x50\x5b\xff\xa2\xe3\xc3\xf7\ +\x0e\xff\xde\x7c\x29\xe2\x49\x26\x16\x85\x8c\x9c\x04\xa3\x29\x28\ +\x34\x09\x45\x4e\xea\x76\x13\x5f\x94\x94\x68\xa8\xaf\xfd\xd4\xf8\ +\x03\x47\x14\x2c\x5e\x70\xb6\x84\x5d\x07\x4e\x37\x1c\x79\xf3\xf5\ +\x41\x8f\x3b\xd7\x51\x5f\xed\x46\x64\x26\x46\xee\xdc\x5d\x00\xd7\ +\x33\xd0\x18\x85\xa6\x52\x24\x12\x71\x33\x65\xfc\xd5\xd2\xf2\xe0\ +\xdc\xf4\xad\x5f\x7f\x0b\x3e\xbe\x17\x22\x67\x4b\xd8\xba\x6d\xaf\ +\xc3\x17\x78\x76\xb0\x2b\x9c\x14\xd6\xe6\x9b\x88\x6b\x85\x91\x3c\ +\x59\x5b\x84\x58\x22\x85\xdb\xd3\xf3\x10\xc0\x40\xb8\x4a\x04\xa2\ +\x41\x53\x33\x3c\x43\xe5\xed\x15\x95\xc1\x0b\xbf\xb4\x9f\xba\x4b\ +\x00\xe0\xfc\xc5\xbf\x22\x3e\x4f\x81\x77\x89\x66\x70\xb6\x77\x02\ +\x2a\x5b\xc6\xc1\xe7\x03\xb0\x59\x44\xf4\x0f\x45\x70\xe4\xf8\x39\ +\x70\x55\x06\x53\x52\x60\x72\x0a\x0a\x4d\xc1\x64\x24\x89\x52\x5f\ +\x91\x5b\x7c\xed\xd0\x85\xca\xb2\x32\xff\xdb\x39\x66\x11\x2b\xad\ +\x06\x52\x5f\xed\xc2\xaa\x1c\x13\x7e\xb8\x32\x8c\xf9\x7b\x71\xd4\ +\xd5\x94\x20\xb8\xa1\x04\xc3\xe1\x5b\x60\x8a\x0c\x83\xc8\x21\x89\ +\x1c\xba\xa6\x64\x31\xa6\x74\x8b\xbe\x40\x53\xe3\x94\x6c\xd9\x79\ +\x73\x3a\x4e\x92\xcb\x14\x0e\x9b\x11\x6e\xa7\x19\xa1\x0d\x1e\xe4\ +\xae\x34\xa3\xe5\xfb\x4e\x54\x95\xae\x41\xd3\xf6\x2d\xb8\x71\x33\ +\x0c\x2a\xa7\x21\x0a\x1c\x72\x3a\x4d\x38\xd7\xef\x91\xaf\xbf\x1d\ +\x3e\x56\xe5\xaf\x38\x98\x56\x18\xe2\x32\xc5\xd8\xed\x39\x4c\x4e\ +\xcd\x02\x3a\xc5\x33\x5b\xd7\xa1\x2e\xb0\x06\xe1\x48\x0c\x57\xae\ +\x0d\xa2\xa6\xa2\x18\x3f\x77\x5d\xc3\xd1\xcf\x8e\x43\x22\x2a\xf2\ +\x73\x1d\x1d\x06\xa6\x71\x83\xc6\x39\x56\xd9\xb3\x50\xe8\xca\x42\ +\xa0\xc4\x0e\x8b\xb9\x18\xb1\x24\x43\x47\xff\x38\xde\xf9\xf4\x06\ +\x6a\xca\x0b\xf1\xc4\xe6\x87\x10\x99\x9a\x41\xc3\xa3\x21\xe4\x58\ +\x4d\x38\xf4\xd1\x31\xe8\x9a\x2a\x92\xc6\xfd\x3f\x1e\x90\x72\xcb\ +\x3f\xd7\x55\x05\xd9\x82\x8c\x3c\x9b\x80\x02\xa7\x04\x8f\xcb\x04\ +\xcf\x6a\x3b\xbc\xab\x9d\xc8\x92\x0c\x00\x80\xc8\x9d\x19\x44\xe7\ +\x16\x90\xef\x72\x42\xd7\x35\xbc\xf5\xfe\xe1\x93\xe4\xe3\xe6\xee\ +\x9a\x4d\x1b\x6b\x07\x88\xa0\x13\x40\x23\x9a\xae\x42\xd3\x15\xa8\ +\x1a\x03\x63\x0a\x54\xa6\xc0\x28\x89\x30\x67\x4b\xb0\x9a\x8d\x50\ +\x35\x15\x92\x28\xa2\x74\x6d\x3e\xef\xec\x19\xdc\x45\x00\x88\xdd\ +\x3d\xb1\xa8\xc3\x91\xe3\xe4\xd0\xc0\x89\x06\x9d\xab\x58\xa6\x14\ +\xd1\x85\x25\xcc\xce\xc7\x30\x1b\x9d\x83\x25\x5b\x82\xdd\x6a\x44\ +\x41\xbe\x13\xa3\xe3\x61\x34\x9f\x68\xa5\x2e\x57\x5e\x21\x01\x80\ +\xe7\x5e\x78\x77\x1d\xf1\xee\x1c\xd3\x35\x85\x97\xb8\x4d\xc4\x5f\ +\x94\x83\xf5\x3e\x07\xac\xa6\x2c\xac\xb0\x9b\x11\x9d\x5f\xc4\xc9\ +\xd3\xe7\x71\xb5\xb7\x1f\xd1\xe8\x34\x14\x39\x09\x7f\x69\x71\x53\ +\x7f\x47\x6b\x1b\x59\xbf\x71\x37\xc6\xae\x9f\xc1\x97\xdf\xf4\xbe\ +\xf2\xd8\x23\x9b\x5a\xec\x36\x11\x3a\x80\x91\xc9\x59\x0c\x0c\x4d\ +\xe2\x72\xf7\x75\x8c\x8c\x86\x41\x74\x0a\x9d\xa5\x01\x8d\xc2\xe5\ +\xb0\x7d\x32\xda\xf7\xdd\x1b\xa1\xa7\x5e\xfa\x7f\x4c\x7b\x5e\x3e\ +\x1a\xa8\x0e\x36\x74\xb6\xb5\x0f\xd9\x96\x53\x71\xa2\x2a\xf7\x43\ +\x62\xf7\xc7\x05\x9e\xc9\xf8\xdc\xce\x3d\x3d\x97\xbe\x68\x7b\xe0\ +\xfc\x7b\x10\xda\xb6\x0f\xbd\x97\x4f\xc0\x51\xb4\xc5\x52\xf5\xf0\ +\x8e\xcd\x82\x40\x9e\xce\x50\xea\x57\x15\x59\x24\x5c\x99\xa0\x72\ +\xf2\xa7\x32\x6f\x5e\x6f\x5b\xeb\x07\x0b\x75\x8d\xfb\xd1\x75\xb1\ +\x05\x00\xf0\x37\x8e\xce\xab\x2b\xed\x11\x78\x19\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\xc8\x95\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\x00\x00\x00\x01\x00\x08\x06\x00\x00\x00\x5c\x72\xa8\x66\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ +\x13\x36\x35\x48\x76\x47\x2d\x00\x00\x20\x00\x49\x44\x41\x54\x78\ +\xda\xec\x7d\x77\x7c\x5c\x67\x95\xf6\x73\xde\x3b\x33\xea\xbd\x4b\ +\xb6\x25\x59\xee\x2d\xae\xb1\x9d\xde\x1b\x09\x04\x48\x80\x2c\xbb\ +\x84\x92\xc0\xb2\xd4\x65\x29\x0b\x84\xb6\x2c\x01\x76\xe9\x6d\xe9\ +\xed\x5b\x02\x4b\xdb\x0d\x10\x08\x4e\x4f\x9c\xea\x1a\xf7\x26\x5b\ +\x96\x6c\xc9\x92\xd5\xfb\x94\x7b\xcf\xf7\xc7\x6d\xef\xfb\xde\x3b\ +\x6a\x96\x9d\x84\x68\xf8\x09\x39\xa3\x3b\x33\x77\x66\xee\x69\xcf\ +\x79\xce\x73\x80\x99\xdb\xcc\x6d\xe6\x36\x73\x9b\xb9\xcd\xdc\x66\ +\x6e\x33\xb7\x99\xdb\xcc\x6d\xe6\xf6\x32\xba\xd1\xcc\x47\xf0\x37\ +\xfd\x5d\xd2\x04\xff\x9b\xb5\xfb\xc7\xfb\xef\x74\xf7\xcd\xdc\x66\ +\x1c\xc0\xcc\xed\x1c\x7d\x67\xa4\xfd\x08\xed\xb7\x11\x72\x7f\xd8\ +\xe3\x5d\x63\x66\xcd\xb0\x2d\xe7\xdf\xee\x6f\x53\xfb\x6f\x4b\x7a\ +\x5c\xd8\xe3\x67\x6e\x33\x0e\x60\xe6\x36\x8d\x86\x2e\x9c\x1f\xc3\ +\xf9\x1d\x91\x7e\xa2\xd2\x8f\x7b\x9f\xa1\x1d\x23\x42\x9c\x84\xee\ +\x00\x64\xe3\xb6\x00\xa4\xa4\x1f\x53\xfa\x77\x52\xfa\x91\x8f\xb1\ +\x9c\xe3\x2c\xcd\x41\xcc\x38\x86\x19\x07\x30\x73\x9b\xc0\x77\xe1\ +\x7e\x1f\x86\x66\xc0\x51\x00\x19\xd2\x4f\x16\x80\x4c\x00\x39\x10\ +\x19\xf9\x10\xd1\x5c\xa2\x48\x2e\x84\x91\xc3\x46\x4e\x09\x45\xb2\ +\xcb\xc9\xc8\x2a\x63\x91\x51\x4c\x46\x46\x09\x44\x46\x21\x48\xc4\ +\x00\x11\x05\x51\x04\x24\x22\x80\x10\x20\x27\x29\x60\x0b\x80\x65\ +\x81\xad\x14\x98\x53\x0c\x2b\x49\x6c\x25\x60\xc5\x7b\xd9\x8c\x77\ +\xc3\x8a\x77\xc1\x1c\x39\xcd\xa9\xe1\x0e\x32\x87\xba\x60\x99\x43\ +\xcc\xa9\x41\x58\xc9\x41\x58\xf1\x7e\x00\x43\x00\x46\x01\x8c\x00\ +\x88\x4b\x3f\x49\xcd\x81\x98\x21\x19\xc7\xcc\x6d\xc6\x01\xbc\xec\ +\x23\xbc\x6c\xf0\x19\x8e\x71\x67\x03\xc8\x91\x7e\xe7\xc0\xc8\x9a\ +\x2d\x72\xeb\x56\x52\x46\xc9\x42\x8a\xe4\xd6\x58\x30\xf2\x2d\xd3\ +\x8a\xc2\xe2\x18\x2c\x8e\x00\xc2\x28\x2a\x2f\x41\x75\x45\x29\xaa\ +\xca\x8b\x51\x5d\x5e\x8a\xca\x8a\x12\xd4\x54\x96\x22\x3f\x37\x1b\ +\x19\x19\x19\xc8\xce\x88\x21\x33\x2b\x86\xec\x8c\x0c\xc4\x62\x51\ +\x80\x80\x64\x22\x89\xe1\x78\x1c\xa3\xa3\x09\x8c\x8c\x26\x30\x1a\ +\x8f\xa3\x7f\x70\x18\xad\xed\x9d\x68\x6d\xef\x42\x5b\x7b\x27\x5a\ +\xdb\xbb\xd1\xd6\xd1\x89\xee\xf6\x2e\x00\x96\x09\x41\x29\x08\x4a\ +\x08\x43\x24\x05\xcc\x7e\x4e\x0d\x9e\xe4\x78\xd7\x41\x6b\xb0\x69\ +\x27\xcc\x91\x16\xc7\x29\x0c\x01\x18\x96\x7e\x8f\x3a\x8e\x41\x76\ +\x08\x33\x19\xc2\x8c\x03\x78\xd9\x45\x79\x37\x95\x8f\x02\x88\x69\ +\x06\x9f\x07\xa0\x4a\xe4\xd6\x2d\xa7\x58\xf1\x3c\x93\x32\xe7\x02\ +\xb1\x39\x40\xac\x22\x96\x57\x20\x6a\x6b\x2a\x50\x37\xab\x12\x95\ +\xe5\x25\x98\x53\x5d\xce\x73\x67\x57\x51\xdd\xec\x2a\xd4\xcf\xae\ +\xc4\xec\xea\x4c\x8c\x26\x80\xfe\x21\xa0\x7f\x28\x81\xfe\xc1\x51\ +\xf4\x0f\x8e\x62\x38\x9e\x40\x2a\x65\x22\xa9\xfd\x24\x92\x29\x80\ +\x81\x48\x54\x20\x66\x18\x88\x44\x04\x22\x86\xfd\x93\x11\x8b\x20\ +\x2f\x27\x13\xf9\x39\x99\xf6\xef\xdc\x4c\xe4\xe7\x00\x39\xd9\x40\ +\xcb\xc9\x51\x1c\x6d\x6e\xc3\xb1\x96\x36\x1c\x6d\x3e\xc5\x2d\xad\ +\x1d\xd4\xd6\xd1\x85\x63\x2d\xa7\xd0\xd4\xd2\x8e\xc4\x60\x9f\x05\ +\x24\xda\x81\x44\xb3\xc1\xa3\x47\x39\xd1\x7d\xc4\x1a\x6c\xda\x0d\ +\xa0\x0d\xc0\x80\xe6\x10\x12\x4e\xa6\x60\x86\x94\x0d\x33\xb7\x19\ +\x07\xf0\x37\xf1\xf9\x8a\x34\x11\x3e\x17\x40\x21\x28\x5a\x0a\x11\ +\x29\x17\xb9\xb5\xeb\x29\xab\xe6\x72\x11\x2b\x9c\x13\x8d\x46\x90\ +\x19\x8b\x62\xcd\xf2\x85\x7c\xf9\x85\x6b\xe8\xf2\x8d\x6b\x30\x77\ +\x4e\x39\x52\x26\x90\x4c\x59\x30\x4d\x0b\x27\x3b\xfb\xb1\xbf\xa9\ +\x13\xfb\x8e\x75\xa0\xb9\xbd\x0f\xad\x9d\x03\x48\x25\x4d\x10\xb1\ +\xf3\xe2\x6c\x9f\x01\xdb\x01\x96\xc0\x60\xb6\xff\xc6\xcc\x20\x72\ +\x32\x7f\x02\xd8\xb2\xed\xce\xfe\x3b\x83\x2d\x86\x05\x0b\xb0\x18\ +\x16\xdb\xf7\xb3\x65\x41\x18\x02\x4b\xe7\x56\x60\xc5\x82\x1a\x2c\ +\x9f\x5f\x83\xc5\xf5\x15\xc8\x88\x45\x10\x89\x44\x10\x8d\x10\xa2\ +\x11\xe0\x70\x53\x07\x1e\xde\xbc\x1d\x0f\x3d\xb9\x95\xb7\x3c\x7f\ +\x90\x46\xe3\x49\x24\x93\x29\x58\x89\xde\x66\x1e\x3e\xf9\x88\x35\ +\x74\xfc\x59\x58\xa9\x0e\x70\xb2\x13\x40\x2f\x80\xc1\x34\x19\x82\ +\x35\x93\x1d\xcc\x38\x80\x97\x72\xa4\x77\xa3\x7c\xa6\x13\xdd\x0b\ +\x9c\x08\x5f\x00\x23\x7b\xbe\x28\x58\x74\xa9\xc8\x28\x5d\x99\x4a\ +\x51\x29\x4c\xe4\xd7\xcd\xaf\xa7\x9b\xaf\xb9\x04\x57\x5f\xbc\x8e\ +\x67\x57\x95\x51\x75\x45\x01\xda\x7b\x92\xd8\x71\xe8\x14\xb6\x1f\ +\x6a\xc3\xa9\xae\x01\x0c\x8f\x24\x31\x34\x9a\xc0\xe0\x48\x02\xa6\ +\x69\x82\xc8\x79\x31\x72\x8c\x1a\x00\xc3\x02\x18\x60\x30\x60\x31\ +\x98\x00\x62\x0b\x16\x18\xe4\x38\x03\xcb\xb2\x1d\x00\x5b\x96\xfd\ +\x04\x16\x83\xc1\x60\xb6\x1d\x87\x05\xcb\x3e\x96\x19\x16\x31\xc8\ +\xb2\x9f\x97\x3d\x67\xc0\xb0\x2c\x0b\x20\x46\x76\x46\x0c\xb9\x39\ +\x31\xe4\x66\x65\x20\x3f\x37\x13\x0b\xeb\x2a\xb1\x64\x6e\x15\x96\ +\x34\x54\x63\x4e\x55\x2e\x5a\xdb\xfb\x71\xfc\x64\x07\xdf\xff\xe8\ +\x16\xfa\xfd\x5f\x1e\xc7\xb1\xc3\xc7\x18\x06\xfa\x8d\x08\x77\x72\ +\xbc\x73\xa7\xd5\x77\xe0\x31\x98\xc3\x87\x01\xf4\x39\x19\x42\x9f\ +\x84\x2b\x24\xa5\x52\x61\xc6\x11\xcc\x38\x80\x97\x44\x7a\xef\x82\ +\x76\xd9\x8e\xd1\x17\xc1\xc8\x6e\x10\x39\x73\xd6\x58\x91\xc2\x75\ +\x30\xf2\xce\x8b\xe5\x14\xe6\x34\xcc\xa9\xc6\x82\xfa\xd9\xb8\xf2\ +\xa2\xb5\x7c\xf5\xc5\xe7\x93\x88\x66\xe1\x78\x5b\x0f\x0e\xb5\x74\ +\x62\x7f\x53\x17\xf6\x37\x75\xa2\x6f\x78\x14\x11\x41\x88\x18\xc2\ +\x8b\xea\x9e\x71\x02\xb0\x2c\x0b\x44\xb6\xe1\xda\xe6\x61\xa9\x86\ +\x6c\x59\x4e\xa4\x87\xfd\x38\xb8\x0e\x00\x20\xd7\xa0\x09\x20\xcf\ +\x01\xd8\x4e\xc4\x7f\x0d\xc9\x59\xb0\x93\xa1\x3b\xce\xc5\x3b\xd6\ +\x7b\x0d\x86\x05\x86\x69\x9a\x48\x99\x26\x52\x29\x13\x39\x59\x31\ +\x6c\x5c\xd1\x80\x0b\x56\xcf\xc7\x92\x86\x6a\x2c\xa8\x2b\x45\xff\ +\x40\x1c\x7f\x7e\xf8\x19\x7e\xe0\xf1\xad\x74\xa0\xb1\x05\x47\x8e\ +\xb7\x22\x31\xd4\x3b\x04\x73\xe0\x79\x91\xea\xdd\x62\x0d\x35\x6f\ +\x83\x39\xdc\x08\xa0\xc7\x71\x06\xc3\x12\xa8\x38\x53\x26\xcc\x38\ +\x80\x17\xdd\x67\xe8\xb6\xe5\x62\x8e\xd1\xe7\x03\x28\x01\x50\x81\ +\x68\xc1\x42\xa3\x78\xd5\x9b\x44\x46\xf1\x52\xcb\xb2\x70\xd9\xc6\ +\x35\xfc\xa6\xd7\xbe\x82\x2e\x59\xbf\x0a\x44\x40\x67\xdf\x30\x36\ +\x6d\x3d\x8e\x87\xb7\x37\x21\x91\x34\x1d\xf3\xb4\x23\xb5\x1d\x71\ +\xe1\xa5\xee\xf6\xbf\xd3\x47\x72\xcf\x90\x29\xcc\x01\xb0\xf7\x38\ +\x86\x6e\xc8\xae\x33\x70\xb3\x08\xfb\x08\x62\xb6\xff\x65\x31\x40\ +\x64\x67\x0b\x60\xc0\x71\x1a\xde\xb1\x16\x6c\x27\xe4\xfd\x9d\xfc\ +\xd7\x00\x83\x2d\x80\x9d\x72\xc3\x02\x63\x51\x5d\x25\x5e\x7d\xd5\ +\x5a\x5c\x7d\xc1\x52\x44\x0c\x03\x00\xf0\xc8\x93\x3b\xf0\xa3\xff\ +\xb9\x8f\x1f\xda\xbc\x8d\x84\x10\xb0\xe2\xdd\x7b\xcd\xee\x1d\x3f\ +\x47\xb2\xef\x20\x80\x76\x00\x5d\x00\xfa\x1d\x67\x90\x80\xdf\x76\ +\x9c\x71\x04\x33\x0e\xe0\x05\xb9\xb9\x46\xef\xa6\xf8\xf9\x00\x8a\ +\x00\x14\x51\x46\xc9\x6a\x51\xb0\xf8\x15\x26\x67\x2d\x05\xc5\x4a\ +\x6f\xbe\xe1\x4a\xbc\xfe\xa6\xab\xb0\x61\xd5\x12\x8c\x24\x09\x9b\ +\xb6\x1c\xc3\xbe\xa6\x4e\xb4\x76\x0f\xa1\xbb\x7f\x04\x06\x01\x24\ +\xe0\x18\x27\x87\x3a\x00\xd7\xd0\xc1\x7e\x06\xc0\x4e\xad\x2e\x3b\ +\x00\x78\xb5\xbc\xf3\x38\xb6\x9c\xbf\xab\xcf\xeb\x1e\x83\x90\x6c\ +\x81\x59\x3b\xd6\x29\x23\xdc\xe7\x06\x43\x3d\x07\x96\xca\x09\xe9\ +\x79\xf5\x63\xed\x73\xb7\xcf\x39\x65\xa6\x40\x04\xcc\x2a\x2f\xc6\ +\x9c\xea\x12\xac\x5f\x31\x0f\xd7\x5e\xbc\x02\xf9\x39\x99\xd8\xfc\ +\xdc\x6e\xfc\xe2\x7f\x1f\xc4\x6f\xef\x7d\x08\x40\xa2\xd3\xa0\x91\ +\xbd\x56\xdf\xfe\xfb\x38\xde\xb5\xdd\xc9\x0a\x7a\x1c\x67\xe0\x96\ +\x08\x29\x09\x2f\x98\xb9\xcd\x38\x80\xb3\x9e\xe6\xbb\x60\x5e\x9e\ +\x63\xf4\x65\x88\x15\x2f\x12\x99\xe5\x6b\xac\xcc\xea\x57\x64\xe6\ +\x94\x56\x35\xd4\x56\xe3\xe6\x6b\x2e\xe3\x3b\x6e\x7b\x15\xf5\x8f\ +\xa4\xb0\xfb\x68\x07\xee\x7f\xee\x38\x0e\x9f\xec\x41\x46\x54\xc0\ +\x20\x72\x22\x32\x07\x0c\xd9\x47\xbd\x82\x0e\x80\x2d\x4b\x32\x4e\ +\x3f\x1a\x43\xca\x00\xe4\x48\x1f\x38\xd6\x29\x13\x9c\x7f\x68\xd9\ +\x84\xef\x2c\x7c\x43\x76\x8e\x25\xd8\xe7\x10\xe2\x00\x02\xc7\xb2\ +\xf3\xbc\x61\xce\xc2\x2b\x27\x1c\xbe\x11\x03\x16\x33\x52\xa9\x14\ +\x46\x46\x13\x58\xbd\xa4\x0e\x6f\x79\xed\x65\x58\xbd\xa4\x1e\x85\ +\xf9\x19\xf8\xc6\x8f\xee\xe5\xdf\xde\xf7\x28\x1d\x39\xde\x8a\x91\ +\x81\xce\x36\x11\x6f\xbd\xcf\x1a\xed\xd8\x86\x44\xf7\x01\x00\xa7\ +\x1d\x67\x30\x20\x81\x87\x33\xe5\xc1\x8c\x03\x38\x2b\x37\xb7\x57\ +\x9f\xe5\x18\x7e\x19\x80\x6a\xca\x9e\x7d\x91\x51\xb8\xe4\x1f\x2c\ +\xca\xac\x8c\xc5\xa2\xc6\xbb\xdf\xfc\x06\xdc\xfe\xda\x1b\x90\x91\ +\x11\xc3\x03\xdb\x4f\xe0\xaf\x5b\x9a\x31\x12\x4f\x20\x65\x5a\x1e\ +\xfa\xae\xd7\xf2\x2e\x58\x07\x29\x8a\xba\x46\x04\xb6\xd3\x6b\xdd\ +\x38\x3d\x90\x4f\x32\x22\x78\x0e\x40\x35\x4e\x1f\x10\xb4\x1c\x43\ +\xb6\x53\x7e\xcf\x38\x5d\xe8\xd0\xc5\x13\x2c\x78\xa9\xbe\x05\xe9\ +\x58\xb6\x00\x22\xe9\x35\xd8\xb1\x34\xe9\x58\xef\x35\x9c\xd2\x43\ +\x77\x16\x4a\x36\xe1\x3c\x2f\x31\xc8\x62\xef\x71\x00\xc3\x10\x02\ +\x75\x35\x65\xf8\xd0\x1d\xaf\xc4\x79\x8b\x66\xa3\x6f\x60\x04\x3f\ +\xfa\xe5\x9f\xf1\x95\xef\xff\x0a\xf1\x44\xd2\x14\x3c\x7a\xca\xec\ +\xdd\xf7\xff\x78\xb8\x65\x33\x80\x56\xc7\x19\x0c\xc0\x26\x23\xc9\ +\xa4\xa3\x99\xdb\x8c\x03\x98\x96\xfa\xde\x4d\xf3\xcb\x00\x54\x8b\ +\xc2\x15\xb7\x58\xb1\xf2\xab\x33\xb3\x8b\xaa\xdf\xf0\xca\x6b\x70\ +\xc3\xe5\x17\xf0\xc6\xd5\x4b\x68\xdb\x91\x1e\x3c\xb6\xeb\x04\xf6\ +\x1c\xeb\x42\x3c\x65\x22\x22\xf4\x34\x9b\x25\x43\xb6\xbc\x9a\x3f\ +\x9d\x03\x20\xcd\xd0\xdd\x36\x1d\xb4\x5a\xde\x82\x8d\xd4\x83\x9c\ +\xb4\x3f\xe0\x00\x2c\xef\x35\x82\x91\xdc\x37\x64\xfb\xe9\xb5\xe7\ +\x95\x8f\x75\x0d\x58\xce\x26\x94\x73\xf0\x0d\x99\x9c\xe7\x63\x48\ +\xdd\x09\xf7\x1c\x95\x73\x60\x15\x83\x70\x9c\x90\xc5\x16\x12\x89\ +\x24\x6a\x2a\x8a\xb0\x71\xe5\x42\xdc\x7c\xd5\xf9\x58\xb3\xbc\x06\ +\x8f\x3c\xb5\x9f\xef\xdd\xf4\x24\xfd\xbf\xdf\x6d\xc2\xe8\x60\x4f\ +\xab\x48\x76\x3c\x60\xf5\xee\xfa\xad\xe4\x08\xdc\xf2\x60\x06\x27\ +\x98\x71\x00\x67\x6c\xf8\x59\x0e\x92\x5f\x06\x11\x6b\x10\xd9\xb3\ +\x2e\xe4\xbc\x45\x77\x16\x16\x96\x64\xde\x70\xf9\x05\xf8\xcc\x07\ +\xde\x81\xa1\x51\x0b\x5b\x0e\xb5\xe3\x77\x9b\x8f\x62\x78\x34\x89\ +\x48\x84\xa4\x7a\xd9\x49\xc9\x21\x83\x76\x6e\x94\x95\xda\x75\xee\ +\xb1\x8e\x01\xd8\xb6\xa2\x3a\x00\xaf\xb6\x76\x8d\x8c\x2d\xd5\x88\ +\xa4\x48\xaf\xd4\xec\x6e\xaa\xef\x45\x67\x96\x8c\x33\xe8\x2c\x94\ +\x63\x59\x3b\x56\x8e\xe0\xde\x73\x59\xd2\x6b\x38\x00\xa1\xe4\x00\ +\x54\x5c\xc0\xcf\x58\x94\xe7\x95\x8f\xf1\x9c\x8c\x25\x65\x42\x8c\ +\x78\x3c\x89\xb2\xd2\x7c\xbc\xf3\x0d\xd7\xe2\xd2\xf5\x4b\x51\x94\ +\x97\x83\x0f\xdf\xfd\x3d\xdc\xbb\xe9\x49\xf4\xf4\x74\x8d\xd2\xc0\ +\x81\x1f\x58\xc3\x27\x9e\x84\x95\x68\x74\x1c\x41\x9f\x93\x11\xcc\ +\x38\x82\x19\x07\x30\xa9\x54\xdf\x05\xf6\x0a\x01\x94\x03\x98\x65\ +\x14\xaf\x7c\x23\xb2\xe6\x5c\x6f\x9a\x9c\xf5\xb9\x8f\xbc\x07\xaf\ +\xb9\xee\x52\xee\x1f\x65\xfa\xfe\x7d\xfb\xd1\xda\x33\x88\xa4\x83\ +\xe0\xfb\xf5\xb2\xd3\x72\x63\x56\x8c\x93\x39\x98\xca\x7b\xed\x39\ +\xe7\x58\xb0\x7d\xbc\x9a\xca\x4b\xcf\xa5\xa5\xcb\xc4\x0c\x8b\xe0\ +\xe1\x09\xe1\x51\xd6\x92\xca\x09\x96\x0c\x4e\x77\x42\x8e\xc1\x39\ +\x29\xbc\x72\x2c\x69\x80\xa0\xf3\x77\x38\xe7\xe9\x61\x1a\x0e\x26\ +\xa1\x18\xbe\xfb\xbc\xfa\xb1\x52\x16\xe1\x39\x0b\x97\xbb\x20\x3b\ +\x2c\xa7\xb3\xc1\x6c\x81\x2d\x46\x46\x46\x04\xcb\xe6\xd7\xe2\x4b\ +\x1f\x7d\x33\x0c\x22\xfe\xf5\x9f\x1e\xa5\x0f\x7c\xea\x9b\x30\x22\ +\x34\x82\x91\xe6\xbf\x98\xdd\x3b\x7f\x01\xe0\x04\x80\x0e\xd8\x64\ +\x23\x99\x53\x30\x73\x9b\x71\x00\x69\x51\xfd\x6c\xc7\xf0\xcb\x40\ +\xc6\x22\xa3\x78\xd5\xcd\xa6\x28\xbe\x66\xd6\x9c\xba\xdc\xdb\x5f\ +\x7b\x03\xdf\xf1\xfa\x57\xd1\xde\x96\x7e\xdc\xbf\xb5\x19\xbb\x9b\ +\xba\x11\x35\xc8\x33\x32\x17\x68\x53\x8d\x33\x4d\x2a\xef\x1e\xeb\ +\x1a\xa7\x7c\xac\x25\x19\x11\xa9\x69\x7f\x5a\xe3\xd4\x9f\x37\xcc\ +\x38\xe5\x63\x35\x43\x66\xa7\xe5\x17\x7a\x0e\xf0\xcf\x81\xdd\xf7\ +\xca\x96\xe3\x4c\xa0\x3e\xaf\x7c\xac\xf3\xfe\xf4\x4c\xc8\x7b\x3f\ +\xd2\x6b\xb0\x34\x12\xc0\x4e\x2b\x13\x56\x3a\x87\x65\x3f\xce\x34\ +\x2d\x24\x93\x49\xbc\xe2\xf2\xb5\xb8\xfd\xd5\x57\x62\xc9\xfc\x2a\ +\x7c\xf3\xc7\xf7\xf2\x0f\x7f\xf5\x67\x6a\x3e\xd6\x34\x68\x70\xf7\ +\x26\xb3\x7b\xc7\xff\x81\xcd\x83\x8e\x23\xe8\xd1\x32\x82\x19\x07\ +\x30\xf3\x11\x78\x8c\xbd\x4c\x27\xd5\xaf\x04\x45\xe7\x8b\x82\x45\ +\xaf\x15\x79\xf3\x6e\xc9\xcf\xcd\xc5\xfb\xde\x7a\x1b\xde\x74\xcb\ +\xf5\x38\xd0\xd2\x8f\xef\xfd\xe5\x00\x06\x86\x93\x30\x9c\x7e\x40\ +\x00\xb4\x83\x1c\xbd\xd5\x08\xa8\xd7\xec\x70\xf0\x00\xaf\x5e\x06\ +\x02\x86\xe1\x1b\xb2\xf3\xbc\x64\xa7\xe7\x7a\xcb\x4f\x76\x00\xac\ +\x38\x1e\x4b\x69\xcb\xb9\xc7\xb2\x63\xf8\x7a\x2a\x6f\x47\xfa\x10\ +\xe3\x74\xa3\xb3\xc4\x1b\x70\xfb\xff\x98\x68\x24\x67\xd6\x52\x7d\ +\xff\x7d\x28\x7c\x04\xe7\xb3\x20\xcb\xc9\x6c\x2c\xb5\x04\xd2\xb9\ +\x0b\x00\x63\x34\x9e\xc0\xba\xe5\xf3\xf0\x99\xf7\xbd\x11\x73\x6a\ +\x4a\xf0\xa3\x5f\xde\x8f\x2f\x7c\xfb\x1e\xf4\x0d\x0c\xc2\x1a\x68\ +\xfc\x8d\xd5\xb7\xef\xf7\xe0\xd4\x61\x00\xa7\x9c\xd2\x60\x14\xea\ +\x30\xd2\x8c\x03\x78\x19\xa7\xfb\x79\x6e\xaa\x2f\x0a\x96\xfe\x9d\ +\x95\x5d\x77\x6b\x51\x61\x71\xd6\xd7\x3f\xfd\x21\xac\x5a\xb2\x10\ +\x59\x99\x31\x30\x80\xff\xfc\xdd\x6e\x1c\x6b\x1f\xf0\xd2\x75\x19\ +\xec\x0a\x80\x59\x0e\x22\x3e\x36\x60\xe6\xf2\xf0\xa1\x19\x1f\xc0\ +\x14\x04\xed\xd8\x01\xeb\xbc\x63\xd9\x05\x0e\xa5\xda\x1a\xda\xb1\ +\xd2\x39\xa8\xc6\xe9\xb7\x0d\x03\x0e\x40\x76\x16\x6c\xd9\xc4\x22\ +\x37\xd2\x87\x18\x9f\x5c\xb3\x2b\xce\x42\x72\x22\x4a\xc6\x02\xff\ +\x1c\x74\x1a\x32\x1c\x3c\xc0\x62\x29\xb3\x70\x09\x49\x9a\x03\x80\ +\x83\x49\xb8\xe5\x8f\x69\x31\x0c\x41\x98\x3b\xa7\x02\x1f\x7b\xe7\ +\xeb\x70\xde\xa2\x3a\x3c\xf6\xcc\x6e\xdc\xf9\xe1\xff\x44\x57\x77\ +\xf7\xb0\x18\x39\xf6\x1b\xab\x6f\xdf\x2f\x01\xb4\x38\x19\xc1\xe0\ +\xcb\xbd\x2c\x30\x5e\xc6\xe9\x7e\x14\x36\x3f\xbf\x02\x40\x1d\x65\ +\x56\x5e\x45\x45\x6b\x3f\x96\x5d\xdc\x70\xc5\xbb\x6e\xbf\x2d\xf2\ +\xdf\x5f\xbb\x8b\x2a\xcb\x2a\x20\x84\xab\x9d\xc1\xb8\x70\x49\x05\ +\xba\x07\xe2\x38\xde\x31\x08\x21\xe0\xf7\xde\xbd\x30\xc2\xd2\x8c\ +\xaf\xeb\x05\xec\x0b\x98\x3c\x76\x9e\x74\xac\xf3\x77\x62\x39\x08\ +\xf9\x4c\x3e\x40\xe5\xf8\x7b\xcf\xeb\xb9\x6f\x29\xca\xfa\x8f\x4e\ +\x7b\x0e\x32\x45\x18\x9e\x53\x08\xbe\x86\xd7\x99\x70\xff\x68\x31\ +\xe0\x0d\x18\x91\xf2\x1a\x5e\xca\x4f\x70\xe8\x7e\x7e\x32\x4f\x4c\ +\xce\x1c\x82\x6b\xa4\xae\x0d\xb3\x7f\xfe\xac\x47\x24\xb7\xf5\xe8\ +\x9f\x89\x77\xfe\x14\x72\xac\x4d\x52\xb4\x0f\x13\xf6\xb9\x76\xf7\ +\xf6\xe3\x9e\x3f\x3c\x8a\xad\x7b\x0e\x63\xdd\x79\x0b\xf1\xdd\xbb\ +\xef\x84\x69\x45\x23\xdb\x0f\x75\xaf\x4c\x18\xa5\xeb\xc8\x1a\x1d\ +\x46\x6a\x70\xd8\x79\x1a\x79\xce\xe0\x65\x97\x0d\xd0\xcb\xf0\xfd\ +\x1a\xb0\x49\x3c\x76\xba\x0f\x9a\x27\x4a\xd6\xbe\xdd\xc8\x99\x7d\ +\xe5\xd2\x05\x0d\x7c\xcf\x37\x3e\x4f\x86\x61\xd8\x17\x95\x1b\x64\ +\x49\x32\x12\x22\x3c\xb6\xbb\x0d\xbf\x7a\xac\x11\x82\xc2\x6a\xf6\ +\x71\xc0\x2c\x0d\x11\xb7\x03\x59\x48\x0a\x2c\x47\x40\xb0\x1d\x5d\ +\xd3\xa4\xf2\x6e\x1a\xed\x45\x59\x0a\x89\xce\x96\x25\x45\x4e\x99\ +\x2d\x68\x29\x2c\x43\xd6\xe6\x09\xe4\xe7\x20\x4b\xa2\x21\x53\x30\ +\x9b\x50\x59\x88\xce\xb1\x0e\xf1\xc0\x3f\x07\x09\x03\x80\xeb\x78\ +\xdc\x73\xb0\xd3\x21\x17\x20\x74\xff\xee\x02\x9b\xec\xf0\x05\x2c\ +\xb2\x40\xec\x4c\x2c\x58\x7e\xd7\x44\x7f\x0d\x02\xc3\xb4\x4c\xd4\ +\xcf\xae\xc4\x0f\x3f\xff\xcf\xc8\xcb\xc9\xc4\x4d\x6f\xfe\x28\x3f\ +\xbf\xbf\x91\xcc\xa1\xe6\x07\xad\xae\xad\x3f\x00\x70\x44\x2a\x0b\ +\xe2\x2f\xb7\xb2\xe0\xe5\x94\x01\x08\xc7\xf0\xf3\x01\x54\x01\x68\ +\x10\xf9\x8b\x6f\xe7\xa2\xb5\x1f\x2d\x2e\xab\x5d\xfc\xdd\xbb\xef\ +\xe2\x7f\xb9\xf3\x8d\x04\x08\xcf\xd0\xbd\x07\x0a\xd7\x11\xd8\xf7\ +\xcd\xab\xce\xc3\xf2\xba\x62\x6c\xde\x77\xca\x8f\x9c\x5e\x44\x25\ +\xf5\xf2\x71\x23\x3c\x79\x19\xbb\x1f\xd9\xdc\x63\x49\x8d\x6a\xa1\ +\xde\x59\x7a\x30\x7b\x8f\xf6\x23\x3c\xb1\x17\x80\xfd\xfb\xdd\x63\ +\xb5\x2c\x83\xa0\xbf\x1e\x79\x2f\xe1\x67\x13\xec\x1f\x2b\x65\x2a\ +\x5e\x42\xa1\x9c\x12\x7b\xe7\x20\x3f\xaf\x5b\xd1\x48\x69\x8f\xfa\ +\xbc\xf0\x49\x51\x2c\x45\x72\x96\x32\x0d\xef\xec\xd8\x7f\x0d\xf6\ +\xd8\x8b\xce\xb1\x44\xfe\x50\x13\x6b\xaf\x41\x40\x4f\xdf\x20\x7e\ +\xf5\x87\x47\xd0\x76\xba\x1b\x3f\xff\xda\xbf\xd0\xfa\x55\xcb\x79\ +\xd3\x53\x87\x1a\x86\x8d\xea\x6b\x84\x88\x64\x70\xbc\xf3\xb4\x73\ +\xb8\x2e\x67\x36\xe3\x00\xfe\x46\xa2\x7e\xd4\x41\xf7\x4b\x01\xd4\ +\x52\x46\xc9\xa5\xa2\x78\xdd\x5d\x59\x25\xf3\xaf\xfb\xfb\x9b\x6f\ +\x8a\xfd\xf2\x5b\xff\x46\x15\xa5\xe5\x36\xd6\x04\xdf\xd0\x5d\x1f\ +\xe0\x66\x00\x72\xf6\x5a\x98\x13\xc3\x75\x6b\x66\x63\x4f\x53\x37\ +\xba\x07\x46\xed\x92\xc0\x03\xe1\xdc\x34\xdb\x65\xf2\x49\x59\xaf\ +\x94\x69\x2a\xc7\x72\xb8\x11\x79\x09\xb9\x6b\x9c\xec\x3b\x04\x0a\ +\x71\x32\xae\x91\xb2\x64\x00\x70\x67\xff\x11\x34\x64\xe5\x3a\xd7\ +\x4b\x12\xa9\x64\xf1\x32\x84\x30\x07\xe2\x3a\x1e\xc5\x9f\x69\xce\ +\x42\x76\x92\x52\xd9\x44\xd2\xfb\x23\xd9\x49\x4a\xe0\x69\xba\x73\ +\x60\xf8\xce\xcf\xaf\x2f\xd4\x2f\x9e\xc1\x10\x20\x98\x6c\x61\xdf\ +\xe1\x66\xdc\x73\xef\xa3\xb8\xf2\xc2\xd5\xf4\x9d\xcf\xdd\x89\xae\ +\xde\x78\xc6\xfe\xe6\xe1\xb5\x29\xa3\x78\x35\x52\x03\xbd\x30\x47\ +\x46\xa1\xea\x1a\xf2\xcb\xc1\x38\x5e\x0e\xc6\x9f\x67\xa7\xfb\x98\ +\x6f\x94\xac\xfb\x47\x64\xcd\xba\x76\xee\x9c\x1a\xfc\xe2\x1b\x5f\ +\xe0\xbc\x9c\x6c\x02\x08\x42\xa8\x97\xb6\x6c\xf0\x42\x84\x97\x03\ +\x00\x21\x1a\x05\x7e\xb2\xe9\x10\x36\xef\x6e\xf5\x07\x69\x34\x44\ +\x9c\x74\xf0\x0d\x2a\xa0\x26\xb7\xe5\x02\x5c\x7e\x76\x27\xed\x54\ +\x0a\xad\x3f\xb7\xef\x44\x43\x0e\x22\xea\x80\x76\xac\xe5\x8b\x80\ +\xa8\xdc\x04\x7f\x9a\x4f\x3f\x07\x48\xd3\x87\x76\x94\x95\xb5\x01\ +\xb4\x73\xd0\xc7\x8f\xc9\x92\xde\x07\x79\x03\x47\x70\x9e\xc3\x4b\ +\xf5\x25\xea\xb0\x3b\x0b\x01\xf6\xf5\x07\x08\xd2\xb1\x21\x73\x08\ +\x08\x19\x9c\xf2\xf1\x84\x20\x0d\x99\x2d\x0b\xf5\xb3\x2a\xf1\xf3\ +\xaf\x7c\x04\x29\xd3\xe4\x9b\xde\xfc\xaf\x74\xe8\xd8\x49\xd0\x70\ +\xcb\x9f\xcd\xee\xad\xdf\x93\xca\x02\x17\x24\xfc\x9b\x75\x04\x7f\ +\xcb\x19\x80\xdb\xda\x2b\x06\x50\x47\xb1\xe2\xcb\x45\xf9\x25\x77\ +\x17\x97\xd5\xaf\xfc\xd2\x5d\x1f\xe0\x4f\x7f\xe0\x0e\x8a\x18\x31\ +\xf2\xa3\xbd\xea\x0b\xc3\xa2\xbf\x5b\x0e\xc8\xc7\x33\x33\x56\x37\ +\x94\xa2\x38\x3f\x13\xdb\x0e\x9f\x86\x41\x24\x01\x83\x1c\xf4\xb0\ +\x2a\x12\xe8\x47\x2a\x37\x4a\x33\xdc\xca\x39\x90\xca\xfa\xd1\x90\ +\x15\x39\x5f\x1b\x7f\x73\x09\x40\xc1\x08\x48\x50\x1d\x58\x78\x24\ +\xf7\xa3\x68\x20\x3a\x4b\xe7\x40\x96\x5c\x17\x8c\x15\xc9\x59\x8d\ +\xe4\x1e\x07\xc0\xf9\xec\xdc\x89\x43\xf7\x1c\x25\xe5\x22\x35\x9a\ +\x93\xf2\x3e\x98\x7c\xf0\x14\x7a\x06\xa3\x94\x13\x1c\x00\x36\x21\ +\x7d\xc6\xdd\x7d\xfd\xf8\xc5\xbd\x0f\x21\x95\x32\xe9\x57\xdf\xfe\ +\x17\x2c\x9a\xd7\xc0\x8f\x6d\x6b\x5a\x30\x6a\x54\x5e\xc2\x89\xee\ +\x53\x30\x47\x87\xa1\x2a\x13\xf1\x8c\x03\x78\xe9\x44\xfd\x88\x83\ +\xf0\x97\x03\x98\x2f\x72\xe7\xde\x4a\xc5\x6b\x3f\xb9\xf6\xbc\x55\ +\xb9\xf7\xfe\xf0\xeb\x54\x3f\xbb\x86\x2c\x8d\x06\x12\x16\xf1\xf5\ +\xbf\xe9\xc7\xd9\xce\x81\x60\x31\xa3\xb6\x22\x0f\xcb\xea\x8b\xb1\ +\xed\xf0\x69\x24\x53\xa6\x9f\x66\x7b\x3c\x7b\x2b\x90\x66\xb3\x14\ +\x39\xe5\x3a\x9d\xc9\xd2\x4a\x01\xff\x62\xf7\xc1\x48\xf9\xe9\x58\ +\x71\x06\x6e\xf1\x4d\x1c\xe2\x00\x9c\x7b\x48\x4b\x99\x15\x67\x41\ +\xfe\xfb\x0b\x38\x31\xc7\xbb\xa9\x0e\x4b\x72\x04\x21\x0e\xce\xd5\ +\x08\x20\xf8\x65\x0c\xeb\x1d\x0d\xa9\xb3\xe1\x3a\x32\xe5\x79\x43\ +\x4a\x15\x48\xa5\x8a\xec\x13\xe4\x73\x83\xec\x84\xe4\xf3\x15\x80\ +\x65\x5a\xd8\xb6\xfb\x10\x7e\xfc\xeb\x07\xf1\xba\x1b\x2f\xa3\xcf\ +\x7d\xf8\xad\x78\x62\xeb\x81\xbc\x93\x7d\x99\xd7\x13\xc7\x87\x38\ +\xd1\xdb\x03\x55\xd5\x98\x67\x1c\xc0\x8b\xdf\xf8\x63\x0e\xd0\x37\ +\x0b\xc0\xc2\x48\xf9\xc5\x9f\x33\xa3\x35\x37\x7f\xfa\x5f\xde\x8d\ +\x8f\xbf\xfb\x4e\xb2\x01\x23\x84\xa2\xfc\x61\x06\x9f\xce\x01\xa8\ +\x59\x82\x0d\x42\x95\xe4\x67\xe2\xb2\x15\x35\xd8\x72\xa8\x1d\xc3\ +\xa3\x29\x35\x7e\x31\x69\xc0\x60\x58\x24\x27\x3b\x92\xa7\xa9\x65\ +\xc3\xa2\x2c\x64\xa0\x2d\x90\x4d\xf8\x40\x1c\xc3\xaf\xbd\x5d\x0b\ +\x94\xd9\x77\x9e\x63\x90\xed\x45\x32\x32\xbf\xd5\xc7\x4e\x07\x80\ +\x24\x6c\x83\x1d\x54\xde\x75\x60\xac\x41\x0b\xac\xf8\x04\x92\xd0\ +\xc5\xe0\x0a\x22\x3f\xc2\xcb\xc0\x20\x88\x55\x1c\x51\x6b\x5d\xaa\ +\x30\x80\xe6\x00\xf4\x4c\xc8\xfd\xfc\x1d\x67\x9f\x48\x26\xf1\x7f\ +\x9b\x36\xe3\xc8\xf1\x36\xfc\xf8\x3f\x3f\x4c\xe5\xa5\xc5\xf8\xeb\ +\xe6\xa3\x1b\x22\xb9\x95\x4b\xac\xa1\xe6\xfd\xce\x33\xc9\xc2\xa5\ +\x33\x0e\xe0\x45\xda\xde\xcb\x84\xad\xc4\x53\x8b\x58\xf1\x95\x28\ +\xbd\xe8\xee\xb2\xca\xfa\xf9\x3f\xfb\xea\xdd\x7c\xed\x25\xeb\xc8\ +\x34\x6d\x63\x0d\x33\xf8\xb1\xa3\x7c\xb0\x2c\x08\x3e\xce\x7e\xde\ +\x68\x44\xe0\xea\x35\xb3\xd1\x33\x30\x8a\x23\xad\x7d\x30\x0c\x52\ +\xd3\x65\xf2\x0d\x36\xd4\x30\x1c\x03\x20\xd9\x00\x74\x23\x92\x8c\ +\x93\xa0\x1a\x86\x9c\x52\xfb\xc0\xa3\x6c\xe4\xd2\xb1\x8e\xe3\x22\ +\x0a\xe1\x31\xb8\x7d\x77\xf6\x13\x71\xfb\x79\x7d\x7c\x81\xa4\xae\ +\x03\x2b\xce\xcd\x76\x64\x81\x12\x42\x03\x36\xa1\x97\x0b\x52\xe7\ +\x80\x25\xfe\x04\x7c\xda\x80\x96\xa5\xe8\x65\x88\x53\x6a\x10\x05\ +\xca\x21\xd6\x4b\x16\xe9\x85\xdc\xcf\xf8\xd0\xd1\x66\x3c\xf1\xdc\ +\x6e\xbc\xef\x8e\x5b\xf0\xda\x1b\x2f\xe7\xfb\x37\xef\xad\x19\xb4\ +\x4a\x2f\x43\xb2\xa7\x03\xe6\xe8\x00\x82\x62\xa5\x33\x0e\xe0\x45\ +\x64\xfc\x6e\xca\xbf\x90\x72\x1b\x6e\x31\x4a\xd6\x7f\xe2\xc2\x75\ +\x6b\x73\xee\xfb\xc9\x57\xa9\xa8\xa0\xd8\x33\xfe\x74\x91\x5c\x36\ +\xb8\xb0\x9a\x7f\x22\x8f\x73\xef\x63\x66\xac\x5f\x5c\x8e\x9c\xcc\ +\x28\xf6\x1c\xeb\x0a\xa9\x97\x7d\x4e\xbd\x6f\xc8\x90\x66\xeb\xb5\ +\x34\x5c\x8e\xf4\x90\x39\x37\xc1\x3a\xdc\x8b\xf4\x8e\x01\xe8\xcf\ +\xab\x1a\x80\x9a\x2e\x13\xd4\x76\x1d\x69\xad\x4b\x85\x64\xe4\x00\ +\x7d\xee\x83\x54\x2c\xc0\x9f\x49\xd0\x3f\x9f\xb0\xae\x83\xcb\x0b\ +\xf0\x4a\x03\xb9\x9d\x49\x14\x78\x88\x57\xde\x50\x9a\x12\x41\x2a\ +\x89\x94\x73\x90\x8f\x55\x32\x1a\x3f\x1b\xe8\xec\xee\xc5\x8f\xff\ +\xe7\xcf\xb8\xe9\xaa\x0b\xe8\x4b\x9f\x78\x2b\x9e\xd9\xd9\x98\xdb\ +\xdc\x93\x75\x2d\xac\xc4\x30\x12\x3d\x3d\xf0\x15\x88\xfe\x26\x4a\ +\x02\xe3\x6f\xc0\xf8\x5d\x94\x7f\x16\x80\x45\x91\x8a\xcb\xfe\x9d\ +\xb3\xe7\xdc\xfc\xd5\x4f\x7e\x18\xef\x7f\xdb\x3f\x50\xca\xb4\x2f\ +\x30\x21\x68\x5c\x43\x4e\x17\xe5\xd3\x81\x83\x63\x65\x03\x16\x33\ +\xe6\x56\x15\x62\xdd\x82\x72\x3c\xbc\xb3\x25\xd4\x48\x48\xa9\x65\ +\x59\xed\x99\x93\x0a\xda\x91\x56\x27\x13\x2b\xb5\x84\x02\xc4\x85\ +\x02\x5f\x52\x01\xcc\x4e\x94\xd6\x1d\x80\x92\x94\xcb\xcf\xeb\x18\ +\x61\x80\x01\x28\x4d\x29\xea\x94\x06\x4f\x89\x48\xf5\x4e\x8a\x71\ +\x92\x96\xca\xb3\x8e\x79\x04\xde\x9b\xec\x40\xb5\xcf\x30\xb4\x9c\ +\x50\x33\x19\x15\x94\x0c\xf9\xac\xdd\xf2\x4a\x10\xee\xdd\xb4\x19\ +\x8d\x4d\xed\xf8\xd9\x57\x3f\x48\xf3\xea\xe6\xe0\xde\xc7\x0f\x6f\ +\x88\x64\x57\x2d\xb3\x86\x9a\x0e\x38\xae\x2f\xf1\xb7\x90\x0d\x18\ +\x2f\x71\xe3\x8f\xc1\x66\xf4\xd5\x52\x46\xe9\xe5\xa2\xec\xa2\x2f\ +\xce\xae\x5d\x30\xef\x7b\x9f\xff\x14\x5f\xb8\xf6\x3c\xf2\xd8\x65\ +\xa0\x31\x0d\x79\xa2\xe5\xc0\x44\xb2\x01\xff\xbf\xed\xf4\xba\x20\ +\x27\x03\x57\xae\x9e\x8d\xfd\xcd\xdd\xe8\xec\xb5\xf5\xff\xd2\x82\ +\x59\xf0\x23\xa0\x9f\x66\xab\xa4\x1e\x39\xe8\xb8\x2d\x39\xbf\x9c\ +\xe0\x60\x0c\x0c\xad\x97\xe5\x54\x5e\x3d\x87\x40\xe7\x80\x24\xa6\ +\x23\x82\x24\xa1\x40\xcd\xee\x8d\x0e\x93\x03\x08\xca\x25\x8d\xdf\ +\x19\xb0\x0f\x71\xcf\x81\xfc\xf4\x5d\xb1\x4c\xb9\x66\x97\xcf\x41\ +\x26\x29\x91\xc2\x75\x60\xa9\x0c\x02\x64\x7e\x84\x86\x34\x84\x65\ +\x58\x12\x4e\x42\x04\xec\x3b\xdc\x84\x07\x9f\xd8\x81\xb7\xbe\xe1\ +\x15\xb8\xf5\xc6\xcb\xf8\xf1\xad\x87\xab\xfb\x52\x45\x97\x23\xd9\ +\xdf\x0a\x73\xd8\x65\x0e\xbe\xa4\x27\x0b\x5f\xaa\x0e\xc0\x65\xf5\ +\x15\x01\x68\xa0\xcc\xb2\xeb\x8d\xb2\x8b\xbe\xb0\x6a\xc5\x8a\xdc\ +\xdf\x7c\xe7\x2b\x28\x2b\x2e\x22\x1b\xa4\xa2\x29\x1b\xb2\x9e\xd6\ +\x4f\x04\x1c\x0c\x3e\xce\x06\x1c\x33\xa2\x02\x57\xad\x9e\x8d\x13\ +\xa7\x07\xd1\xda\x35\xa8\x86\x3a\xad\x25\xa7\x64\x08\xc4\x60\x8b\ +\x54\x80\x4f\x47\xfd\xe5\x34\x5a\x62\xe2\xe8\xa8\xfc\x58\xa9\x3c\ +\x59\xae\x1d\x71\xe0\x1c\x58\x99\x59\x70\x19\x80\xe4\x2d\x1f\x09\ +\xd4\xec\x72\xad\xaf\xb4\x14\x42\x66\x21\xa4\xf7\x29\xe7\xfe\xac\ +\x91\x88\x54\x43\x66\x05\xf5\xb3\xb9\x09\x24\xbd\x4f\xdf\xc9\xa8\ +\x25\x84\x37\x27\xa9\xe0\x10\xea\x39\x28\x1f\x1c\x84\x30\xd0\xd5\ +\xdb\x87\x9f\xfd\xf6\x2f\x78\xc5\x95\x17\xd0\x27\xdf\xff\x66\x3c\ +\xb1\x65\x7f\x6e\xdb\x40\xf6\x75\x9c\xe8\x6a\x45\x6a\xd8\xd5\x19\ +\x78\xc9\x0a\x8e\x18\x2f\x51\xe3\x8f\x39\x60\xdf\x5c\xca\xad\x7f\ +\x03\x67\x2f\xff\xd0\x1d\x6f\x7c\x3d\xfd\xc7\xc7\xfe\xd9\xf9\xfe\ +\x69\xcc\xba\x7e\x6a\x69\xfd\xd8\xe0\xe0\x58\xd9\x80\x10\x04\xcb\ +\x62\x6c\x58\x52\x85\xf2\xc2\x6c\x3c\x77\xa0\x0d\x42\x3a\x80\x09\ +\xa1\xd1\x57\x49\xe7\x25\xe0\x10\x12\x5a\xef\x5d\xb7\x21\xad\x2f\ +\xef\xd8\xb0\x1a\x38\x24\x5d\x86\x04\x08\xaa\xf5\x32\x42\x5b\x7b\ +\xc4\x2a\xe3\x90\xb4\xc9\x1e\xd6\x3c\x84\x0a\x06\x6a\xd9\x4c\x48\ +\x36\xa4\x1c\xcb\x6a\x1b\x4f\xc1\x13\x64\x60\x95\xc3\xf1\x00\x39\ +\x05\x90\xc2\x82\xd6\x5e\x94\x5f\xc3\x27\x71\x11\x80\xff\xfb\xeb\ +\xe3\x38\xd9\xd6\x81\x7b\xbe\xf5\x11\x1e\x18\x4e\xd2\x33\xcf\x77\ +\x5d\x4a\x86\x39\x82\x44\x6f\xab\x53\x0e\x24\x5e\x8a\x4e\xc0\x78\ +\x09\x1a\x7f\x26\x6c\x5d\xbe\xb9\x46\xe1\xb2\x3b\xad\xbc\x25\x6f\ +\xff\xc8\xbb\xee\xc4\x07\xee\xb8\x95\x12\x49\xe7\x5a\x9c\x22\xca\ +\x7f\xb6\xc0\x41\x97\x2f\xc0\xcc\x98\x5b\x9d\x8f\x05\xb3\x4b\xb0\ +\xe3\x50\x3b\x12\x29\x33\xd4\x90\xf5\x6a\x36\x08\x66\x49\x53\x7d\ +\x1a\x73\x87\x59\x45\xfc\xbd\x29\x44\xe2\x31\x8d\x48\xae\xd9\x65\ +\xba\xb1\x0f\xbc\xc9\xc6\xe9\xb2\xf3\x54\xba\xb1\x3e\x06\x11\xa8\ +\xd9\x49\xad\xd9\xf5\x03\x39\x84\x86\x1c\x5a\xb3\xcb\xce\x49\xa6\ +\x21\xb3\xde\x69\x48\x3f\x37\x01\x84\x1c\xab\xbc\x7f\x95\x84\x45\ +\x20\xec\x39\xd0\x88\xe7\x76\x1e\xa2\x6f\x7e\xf6\xdd\xc8\xc9\xcb\ +\xc7\xc3\xdb\xda\xd6\x1b\x46\x24\xc2\xa3\x1d\x4d\x0e\x38\x98\x78\ +\xa9\x81\x83\xc6\x4b\xcc\x59\x65\x3b\x48\xff\x22\xa3\x64\xdd\x87\ +\xcd\xac\xda\xd7\x7e\xfb\xdf\x3e\x8e\x9b\xaf\xbd\x82\x12\xc9\x89\ +\x19\xa4\xfe\xb7\x89\xd6\xf5\x93\x75\x22\xe9\xc0\x41\x00\x28\x2b\ +\xc8\xc2\x35\xeb\xea\xf0\xd8\xce\x16\x8c\x24\x4c\xa9\xd7\x2d\x19\ +\x9d\x64\x00\x72\x0d\xac\xd7\xb2\x5a\x0b\x40\x32\x38\xd2\x58\x88\ +\xc1\x48\xce\xd2\xe0\x90\xdc\x9e\x54\x8c\x4e\xce\xe2\x89\x55\xc3\ +\x40\x38\xb2\xef\x19\x32\xf1\xb8\x91\x5c\x77\x4e\x69\x8d\x53\x39\ +\x07\xd7\x09\xc9\x2d\x56\x75\xb4\xd9\x6f\x43\x4a\xc7\x6a\xf3\x12\ +\xfa\x5e\x03\xc8\xed\xcd\x10\xa6\xa3\x61\x10\x4e\xb4\x75\xe0\xde\ +\x4d\x4f\xe2\x5b\x9f\x7d\x2f\x2d\x5f\xd4\x80\xdf\x3d\xb8\xe7\x3c\ +\x23\x96\x5f\xcd\x23\xad\x47\xe0\x6f\x2f\x7a\xc9\x38\x01\xe3\x25\ +\x66\xfc\x95\x00\x16\x18\x65\x17\x7d\xca\x14\x25\x97\xfd\xe4\xcb\ +\x77\xf3\xc5\xe7\xaf\x22\xd3\xe4\x31\xa9\xbc\x13\xf9\x3d\x55\x70\ +\xd0\x75\x22\x6a\xb4\x1f\xfb\x71\x44\xf6\xaa\xaf\xeb\xd7\xcf\x45\ +\x67\xdf\x30\x0e\xb6\x74\x23\x6a\x18\x63\x0c\xb4\x20\xc0\xdc\x93\ +\x91\x78\x19\x11\x97\x6b\xf9\xc0\xb1\x21\x4e\x44\x99\xbf\x0f\xeb\ +\x06\x40\x3d\x56\x6d\xe9\x85\x1c\x2b\x6b\x20\x40\x9f\x80\x94\x09\ +\x45\x5a\x39\x21\x97\x29\x12\x51\x2a\xcd\x1b\x71\xa2\xb2\x3e\xd4\ +\xc4\x21\x48\x6a\xd8\xc4\x21\x6b\xa5\x16\x29\x65\x82\xfe\x3e\x75\ +\x0e\x46\x4f\xdf\x00\x7e\xf7\xe7\x47\xf1\xb1\xf7\xdc\x8e\xcb\x37\ +\xac\xe4\x7b\xee\x7d\x7a\x9e\x91\x5d\xd1\xc0\xc3\xcd\x7b\xa5\x72\ +\xe0\x25\xe1\x04\xc4\x4b\xc4\xf8\x73\x01\x54\x03\x58\x21\xca\x2f\ +\xfe\x5c\x4e\x51\xed\xc6\x3f\xfe\xec\x7b\xbc\x7e\xd5\x32\xb2\xe5\ +\xf6\x49\xad\x25\x91\x3e\xaa\x87\xfd\xb7\x1c\xc9\x79\x9c\xaf\x2c\ +\xdd\x71\x34\x81\xb1\x2a\xf9\x71\x76\xbb\x09\x78\xff\xad\xab\xf0\ +\x96\x1b\x56\x78\xc3\x2c\x1e\x16\x06\x69\x47\x9f\x2e\x02\xe2\x45\ +\x57\x2d\x25\x27\x2b\x28\x02\xc2\xbe\xe2\xb0\x02\x3a\x12\x05\xa2\ +\x39\x6b\x59\x05\x53\x48\xbd\xad\xd4\xec\x2c\x2f\x00\xd2\xa7\xa0\ +\x3d\xc7\xc2\x6a\x2e\xee\xbd\x4f\xb9\x12\x57\x9c\x90\x04\x7c\x86\ +\x3d\xaf\x52\x45\x48\x6f\x4f\xcf\x4b\xdc\x0a\x9f\x38\x98\x25\x81\ +\xd2\x38\xda\xb0\x2f\x5c\x7a\x1d\x3b\x13\x10\x68\xeb\xe8\xc2\x9a\ +\xeb\x6f\xc7\xac\xea\x52\x7a\xe6\xcf\x3f\xe0\xdc\xe2\xda\x8d\xa2\ +\xfc\xe2\xcf\x01\x58\xe1\x5c\xab\xb9\x2f\x85\x00\x2b\x5e\x22\xc6\ +\x5f\x03\x88\x55\x91\xea\xeb\xbf\x9d\x5f\x34\x67\xf5\x03\xff\xfd\ +\x03\xae\x9f\x5d\x43\xa6\x19\x1e\x91\x26\x63\xc8\xe3\x39\x8b\xb0\ +\x28\x3e\x19\x83\x1f\xb3\x73\x00\xc2\x48\x9c\x71\xe3\xc6\x06\x7c\ +\xf9\xdd\x57\x22\x6a\x08\xe9\xdc\x09\x08\x49\xe4\x15\xf8\xcc\xbb\ +\x30\xc7\x39\x96\x35\xb3\x20\x7f\x4d\x78\x78\x2c\x97\x00\x33\x96\ +\xc5\x3d\xc7\x38\x96\xc3\xf1\x0b\x19\x63\x90\x4d\x4c\x6e\xbf\x69\ +\xa4\x7d\xc9\xaa\x49\xa1\x4d\x23\x5d\xd9\x21\xdb\xea\x44\x62\x2e\ +\x85\x26\x5b\xe1\xd7\x49\xc8\x63\xe5\x44\xe3\xea\x37\xbc\x17\xc9\ +\x54\x92\x9e\xdf\xf4\x43\x2e\x28\x9e\xb3\x3a\x52\x7d\xfd\xb7\x01\ +\xb1\xca\xbe\x66\x5f\xfc\x4e\x40\xbc\x24\x8c\x5f\x64\xae\x17\x95\ +\x57\x7d\x79\xd6\xac\xba\xca\x7b\x7f\xf8\x2d\xce\xce\xca\x22\x5d\ +\xb4\x63\xaa\x86\x9c\xce\x39\x4c\xf4\x26\x3f\xdf\x44\xb3\x08\xb5\ +\xd4\xb0\xc1\xc1\xea\x92\x5c\x7c\xf5\x3d\x57\xa1\xae\xb2\xc0\x11\ +\xdb\x54\x43\x92\xac\x22\x90\xf6\x4a\x4d\x13\x8d\xd3\x95\x03\xee\ +\xb9\x32\x4d\xc8\x66\x54\x6e\xfe\x98\xc6\x25\xe7\xfd\xa4\x9d\xb9\ +\x36\xbd\x47\xac\x08\x06\x30\x54\xdd\x40\x05\xee\x50\x2c\x9c\x94\ +\x59\x06\xe5\xd5\x88\x15\x0c\x42\x2d\x53\x24\x87\xe5\x11\xa1\x2c\ +\xe5\x83\xd3\x9d\x63\xf0\x2d\xb3\xb3\x21\x09\x10\x06\xe1\x35\x6f\ +\xfb\x10\x9e\xd9\xbe\x87\xb6\xfe\xe5\x07\x3c\x67\x4e\x5d\x25\x55\ +\x5e\xf5\x65\x88\xcc\xf5\x2f\x05\x27\x60\xbc\x88\xcf\x2b\x1b\x40\ +\x15\x20\x56\x8a\x8a\xcb\xbf\xd8\x30\x77\x61\xd5\x1f\x7f\xf8\x2d\ +\x8c\x98\x06\x65\xc7\x0c\xaf\xc7\x3e\x1e\x40\x27\xd7\xe7\x93\x01\ +\xf9\xd2\x81\x83\xe9\x9e\xe7\xcc\x3a\x0e\x76\xab\x2e\x2b\x23\x82\ +\xab\xd7\xd5\xe3\x60\x4b\x37\x4e\x75\x0f\xfa\xec\xba\x31\x44\x40\ +\x64\x0a\xb0\x22\x02\xe2\xce\xe5\x87\x1c\x0b\x4d\x81\x47\x9f\xac\ +\x1b\x4f\x04\xc4\xa5\x1b\xc3\x1a\x5b\x04\x44\x79\x6e\x0a\xa6\xd9\ +\xb2\x13\xf2\x4b\x70\x56\x22\x34\x49\x6d\xb9\x30\x11\x10\xd2\x72\ +\x03\xc2\xc4\xe7\x26\x20\xc9\xbc\xa9\x73\x13\x12\x49\x29\xd0\xa2\ +\xe5\x00\x8f\x01\x00\x7e\xf3\xa7\x07\x31\xbf\x6e\x16\x7d\xfd\x33\ +\xef\xe6\x3f\x3c\xb8\x25\xaf\x6b\x34\xf7\x7c\x0c\x1e\x7b\x1e\xe0\ +\x41\xbc\x88\x15\x88\x5f\x8c\x0e\x40\x48\x80\xdf\xb2\x48\xf5\x75\ +\xdf\x9c\x3d\x6b\x6e\xd5\x1f\x7f\xf4\x2d\x3c\xb0\xbb\x93\x7e\xf1\ +\x54\x2b\x0e\xb4\x0d\x63\x4d\x7d\xbe\x47\xef\x9d\x4c\x4f\x3e\xdd\ +\x71\xe9\x0c\x3d\x9d\x91\x8f\xf7\xb7\xa9\xb5\x0e\xed\x3b\x2e\x39\ +\x6f\x36\x72\xb3\x62\x78\x66\xcf\x49\x44\x22\x22\x30\x1a\x2c\xb7\ +\xaa\xbc\xf9\x78\x15\xce\x0a\x89\xda\xf2\xc6\x5f\xe9\xf5\x9d\x03\ +\x48\x6b\xf1\xb1\x44\x37\x96\x27\x11\xf5\xde\xb9\x3a\x7d\xa8\x0e\ +\x01\x91\x37\x31\xa8\x19\xb5\xac\x07\x18\xa0\x3a\x07\x19\x80\x32\ +\x10\xa7\x21\x3e\x21\x2d\x40\xed\x58\xcd\xc1\xe9\xef\x3f\x30\x0b\ +\xa1\x74\x0e\xd2\xcc\x4d\x20\x28\xd7\x16\x8b\x45\xf1\xc0\x13\xcf\ +\x62\x70\x68\x94\x7e\xfa\xd5\x8f\xe2\x37\x7f\x7e\x3a\x7f\xc0\x2a\ +\xbd\xc8\x1a\x38\xf2\x1c\x80\x21\xa8\xcb\x4b\x67\x1c\xc0\x18\xc6\ +\x9f\x09\xbb\xd5\xb7\x40\x94\x5f\xfc\x99\xbc\x82\xca\xf9\xbf\xfb\ +\xaf\xaf\xf2\x9e\xd6\x51\xba\xef\xf9\xd3\x10\x44\xe8\x1b\x49\xe2\ +\xb1\x03\xdd\x20\x00\x0d\x15\xd9\x8a\x60\xe7\x64\x0c\x72\x22\x1d\ +\x80\xf1\xb2\x88\xb1\x9c\xca\x58\x06\x9f\x2e\xab\xb0\x5f\x8f\xb0\ +\xb4\xbe\x18\x4b\xe6\x96\xe3\xc9\x5d\x27\x60\x9a\x96\xd7\xfe\x92\ +\x83\xb5\xaf\x34\x14\x0e\x5c\xe9\xbd\x71\x4e\x57\x3b\x90\xec\x18\ +\x48\x7b\x5e\x56\x06\x84\x58\x42\xf7\xc1\x50\x29\xc5\x08\xb2\xf4\ +\x42\xcf\x41\x6f\x33\x42\xc5\x0e\x58\x93\x04\xd7\x73\x70\xd6\x75\ +\x00\xe4\x73\x60\x75\x3e\x21\x04\x12\xf1\xfa\xfa\xa1\x65\x24\xa5\ +\x2b\x80\xc6\xbf\x8f\x88\xb0\x63\xcf\x01\x54\x96\x95\xd1\xa7\x3f\ +\xf8\x36\xfe\xd9\x6f\x1f\xcc\x4b\x88\xc2\xf9\x3c\xd4\xbc\x13\xf6\ +\x42\x92\x17\x9d\xe8\x28\xbd\xc8\x8c\x3f\x03\x36\xc9\x67\xb1\x51\ +\x76\xd1\xa7\x72\x8a\x6a\x37\x3e\xf0\xdf\x3f\xe0\xc6\xce\x14\xfd\ +\xfc\x89\x93\xc8\x88\xaa\x16\x65\x31\x23\x62\x10\xde\x79\xd5\x1c\ +\x54\x17\x66\x78\xc8\xb6\xaf\xd6\xa3\xca\x79\xa5\x33\xc8\xb1\x9c\ +\x83\xfe\xb8\xc9\x3c\x67\x98\x94\xd8\x64\x1e\x07\xd8\x52\x59\xef\ +\xfb\xda\xfd\x38\xd5\x3d\x08\xe1\x58\x9e\xbc\x56\xdc\xe3\x0d\x48\ +\x8b\x3e\x2c\x4f\x50\x44\xde\x45\xa8\x2a\xf1\x42\x5b\xdd\x0d\x38\ +\x7b\x09\xa1\xae\xee\x96\x5f\xc3\xdd\x1e\x6c\xcb\x7d\xa9\xbb\x08\ +\x21\xaf\x3b\x83\xbd\x39\xc8\xdb\x4b\x28\xaf\x04\x67\x4b\xb2\x53\ +\x79\x73\x31\x3b\x8b\x4d\xb5\xed\x41\xfa\xfb\x0c\xdc\xef\x3b\x26\ +\x7f\x1b\x91\x7c\xac\x15\x78\xcf\xee\xb9\x05\xce\x81\xa5\x63\xbd\ +\xcc\xc3\x0a\xbc\xb6\xbc\xf1\x48\x06\x32\xdd\xd7\x1b\x1c\x1a\xc5\ +\x8f\xbf\xf2\x49\x6c\x5c\xb3\x82\xcf\xbb\xe6\x0e\x1a\xec\x3e\xfe\ +\xb4\x79\x7a\xf3\x67\x00\xec\x87\xbd\xb3\x30\x8e\x17\xc9\xfc\x00\ +\xbd\x88\x1c\x51\x06\x6c\x7a\x6f\x83\x51\xb2\xee\x63\xa6\x51\x7e\ +\xed\x9f\x7e\xfa\x3d\x4e\x46\x8b\xe8\xa7\x4f\xb4\xa4\x05\xfc\xdc\ +\x2f\x60\x76\x71\x26\xee\xb8\x62\x36\x32\x22\xc2\x59\xb0\x49\x81\ +\xae\xc0\x0b\x65\xc8\x7a\x16\x31\x71\xd5\x21\x7b\x8a\x31\x65\x5a\ +\xf8\xfe\xbd\xdb\xf0\xf0\xd6\xa3\x10\x84\x10\xc3\x67\xc5\x01\xf8\ +\x7f\x0f\x31\x1e\xe5\xc2\x86\x7a\xac\x05\x4f\x29\x43\x7d\x0d\xcd\ +\xc0\x5d\x95\x23\xd9\x20\x5c\x69\xee\x09\x19\x2d\x2b\xdf\x1d\xb3\ +\xa5\x2d\x39\x09\x39\xd6\xa9\xf7\xbd\x2d\x49\x4e\x00\x70\x59\x8f\ +\x96\xa5\x9d\x83\xe4\x14\x48\x5a\x30\x4a\x8e\xa3\x83\xb6\xce\x4d\ +\xdd\xd0\x2c\x3d\xaf\x2c\x61\x2e\x7f\xd6\x50\x17\xad\x90\xb4\xd7\ +\xd1\xcd\x4e\x7e\xff\xa3\x2f\x23\x1a\x8d\xf1\x86\x1b\xee\x24\xc3\ +\xec\xf8\xab\xd9\xb5\xe5\x6e\x00\x8d\x00\xba\x1c\x27\xf0\x82\x67\ +\x02\xc6\x8b\xc4\xf8\x63\xb0\x07\x7b\xe6\x8a\xc2\x65\x77\x5a\x59\ +\xb5\xaf\xfd\xe9\x57\xee\xe6\xbc\x92\x39\xf4\xfd\x47\x9a\x9c\xe5\ +\x1c\x63\xb7\xda\xfa\x86\x93\x78\x60\xcf\x69\x44\x04\x30\xbb\x34\ +\x0b\x11\xa1\x66\x03\x93\x01\x07\xc7\x02\xfd\xa6\x92\xd6\x4f\x16\ +\x2b\xd0\x99\x83\x82\x80\x8d\xcb\x6a\x40\x24\xb0\xa7\xb1\x43\x7d\ +\x4f\x08\x59\xd6\x41\xf0\x5a\x82\x32\x03\x9f\xdc\xae\x43\x80\xe5\ +\x46\xd0\x7b\x0d\x72\x3d\xad\x20\xe1\x4a\x71\xad\x72\xf1\xd9\x05\ +\x23\x84\x9d\xce\xf9\x9f\x01\x4b\xf3\x02\x36\xff\xc1\x9b\xd7\x70\ +\xbf\x43\x6f\x62\x93\x35\x6c\x87\xbc\x97\x23\x22\xfb\x37\xc8\xc3\ +\x3d\x84\x37\x4d\x48\xd2\x7b\x76\xc6\x9d\x01\x08\xf6\xdf\x9d\xf0\ +\xa6\x14\xa5\x63\x59\x3a\xd6\x3d\x07\x76\xda\x63\xce\x71\xe4\xbd\ +\x86\xff\xff\x42\x79\x0d\xe7\x79\x89\x3c\x2e\x3a\x01\xf8\xe5\xff\ +\xde\x8f\x37\xbf\xee\x46\xba\xf1\xea\x0b\xf9\x9e\xfb\xb6\xcc\x33\ +\x8c\xa8\xc1\xa3\x1d\x8d\x4e\x39\x90\x7c\x31\x64\x01\xc6\x8b\xc0\ +\xf8\xa3\xb0\x97\x71\xce\xa5\xdc\xfa\x37\x20\x6f\xc9\xdb\xbf\xf9\ +\x99\x8f\x63\xe1\xc2\xe5\xf4\xb5\xbf\x34\x7a\xbd\xf1\xf4\x3f\xe4\ +\xc9\x5c\x19\x24\xd0\xd8\x3e\x84\x27\x0e\x74\x61\x41\x55\x2e\xf2\ +\xb3\x22\x92\xea\x0d\x8d\x59\xaf\x4f\x5d\x13\x70\xe2\x8f\x4b\x37\ +\x65\x38\x11\x70\xd0\xb2\x18\xcb\xe6\x96\x63\x69\x43\x05\x1e\xd9\ +\x7e\xd4\x2f\xb5\xdd\xd7\x27\x0d\xa0\x92\x0c\x35\xa0\x44\xa4\x4b\ +\x78\xdb\x16\x03\x41\x42\xf9\x9c\xdc\x51\x6a\x41\xb2\xc1\xfa\xe3\ +\xd5\xe4\x58\xb0\xff\x6f\x82\x80\x84\xaa\x3b\x8f\x63\x9f\x50\x2f\ +\xe9\xf8\x3b\x91\x93\x7c\xf6\x22\x93\x8f\x49\x78\x20\x20\x49\x22\ +\x20\x08\x1e\xeb\x4d\x25\x92\x4f\x05\x26\x66\xc7\xc9\xf8\xd4\x61\ +\x72\x32\x08\x97\x41\x48\xc2\x9f\x91\x90\x8f\x71\x83\x86\x3c\x03\ +\x40\xde\xfb\x67\xdf\xc0\xd9\xf6\xcc\x24\x5f\x53\xae\xb3\x70\x40\ +\x55\x22\xc2\x2f\x7e\x77\x1f\x3e\xf9\x81\xb7\xd3\x9a\x15\x0b\xf0\ +\xbb\x07\xf7\x9e\x47\x1c\x1f\x42\xa2\xf7\x04\x80\xe1\x17\x83\x13\ +\x30\x5e\x60\xe3\x37\x60\x8b\x79\xcc\xa1\xcc\xb2\xeb\x39\x7b\xf9\ +\x87\x3e\xfc\x4f\x77\xe2\x86\x2b\xae\xa0\xaf\xfd\xf5\xa8\xe4\xd7\ +\xc7\xfa\x9f\x73\x51\x3a\xd7\x0d\x01\x30\x2d\xc6\x33\x87\x7b\x70\ +\xf8\xd4\x20\xe6\x57\xe5\x20\x27\x23\xe2\xcc\xc0\xd3\xb4\x81\x83\ +\xe3\x45\xfb\xb1\xfe\x3e\xb5\xd7\xb3\x43\x53\x65\x71\x0e\xae\x31\ +\xe4\xb6\x2f\x00\x00\x20\x00\x49\x44\x41\x54\x58\x3b\x17\xcf\xec\ +\x6e\xc6\xd0\x68\x1c\x24\xec\xf8\xef\x5e\xb4\x3e\x0e\x22\x65\x01\ +\x44\x4a\x94\xf5\x8e\x77\x87\x63\x88\x7c\x5e\x7d\xc8\x20\x5d\xa0\ +\x1f\x4f\x08\x1e\x1b\xd6\xe3\x47\x50\xa4\x84\x90\x3e\xd3\x51\x1f\ +\x43\x6a\x1b\x13\xe1\xc7\x02\x52\x96\x00\x7d\xdc\x81\xd2\xd4\xb8\ +\xa4\x76\x02\xa4\xa8\x1d\x7c\x2f\x72\x7f\x30\x1d\xc3\x82\x43\xde\ +\x3f\x7b\x84\xab\x3f\x6e\x7a\x14\x9f\xfb\xd7\x7f\x44\x6e\x76\x36\ +\x3f\xfc\xd4\xb1\x75\xc4\x7d\x2d\x48\x0d\x9f\x92\x9c\x00\xbf\x1c\ +\x1d\x80\x2b\xe3\x35\x8b\x32\x4a\x2f\x37\xca\x2e\xfa\xc2\x5b\x6f\ +\x7b\x3d\xbd\xeb\xf6\x5b\xe9\x3f\xfe\xd8\x88\x91\xa4\x65\xe7\xbe\ +\x84\x31\x7e\xa4\xfe\xb2\xfb\x6f\x37\xa2\x08\x42\xff\x50\x02\x8f\ +\xed\x3d\x0d\xc3\x20\x54\x17\x65\x21\x1a\xf1\xb7\xfe\x4c\xe7\xb4\ +\xe0\x54\x1f\x37\xf9\x2c\xc2\xfe\x8f\xec\xcc\x28\x5e\x7d\xd9\x22\ +\x1c\x3d\xd1\x8b\x96\x53\xbd\x10\x42\x48\xe9\xa9\x3f\xc2\xea\x3b\ +\x02\x78\xfa\x7a\xaa\x36\x9f\xfb\x77\xcb\x8f\x60\x92\xc1\xf9\x94\ +\x64\x29\xb5\xf6\x84\x3b\x48\xc9\x38\x9c\x64\x41\xd1\x0e\x50\x1f\ +\x27\xbd\x77\xa9\xdb\xe0\xe5\x14\xb2\xd3\x93\x34\x0d\x7c\x67\xc0\ +\x4a\xd9\x00\xcf\xe1\x49\x91\xdf\xf3\x14\xec\x1b\x34\x51\x98\x47\ +\xf2\x83\x81\x92\x35\x91\x96\x3d\xa9\x5f\x82\xef\x2c\x82\x25\x8c\ +\x5c\x62\xb9\xa7\x21\x84\x5d\x16\xf4\x0f\x0c\xe2\x0f\x9b\x1e\xc7\ +\x77\x3e\xff\x01\x1a\x49\x31\x6d\x3d\x34\x74\x39\xc7\x3b\x0f\xc0\ +\x1c\x3e\xed\x38\x81\x17\xac\x3d\x68\xbc\x80\xd1\xdf\x6d\xf7\x2d\ +\x12\x65\x17\x7d\x71\xe5\xb2\x15\xb9\x5f\xfa\xd8\x3f\xf3\x2f\x9e\ +\x6c\xa5\xd6\x9e\xb8\x1f\xd1\xc6\xfc\x71\x52\x2d\x27\xbf\x25\xad\ +\x37\x4c\x0e\x88\xd6\x78\x6a\x10\x4f\xec\x3f\x8d\xd9\x25\x59\x28\ +\xcb\xcf\xf4\x2b\xdf\x09\x44\xe4\xc9\xa9\x00\x4d\xfe\x71\x53\x19\ +\x4e\x62\x66\x58\x4c\xb8\x6c\x75\x2d\xf2\xb2\x33\xb0\xfd\x60\x2b\ +\x84\x90\x52\x63\x0e\x8a\x82\xca\x25\x82\x5a\xd0\x3b\x12\x19\xe4\ +\xa6\xd9\x24\x4d\xf3\x01\x9a\xda\xa7\x34\x68\xe3\xa7\xf2\xf2\x2a\ +\x32\x92\x51\x57\x05\x4f\x20\x55\x8b\x40\xe1\x2f\x30\xc6\xdc\x50\ +\x44\x52\xf6\xe6\x4d\x0e\x52\x60\x3c\x19\x92\x73\x72\xeb\x05\x82\ +\xe2\x91\x3c\xe3\xf7\x55\x80\x48\x1a\x29\x96\x9d\x8c\x0d\x04\xf8\ +\x8e\x4e\x28\xec\x4d\x01\xb7\x04\x20\xc9\x21\x90\xe2\x1c\x5c\x4a\ +\xb7\x21\x08\xfd\x03\x43\x78\x66\xfb\x1e\x7c\xf7\x0b\xef\xe7\x87\ +\x36\xef\xa2\x93\x3d\x58\xc5\x83\x8d\x9b\x61\x2f\x1f\x71\x45\x45\ +\x5e\x16\x0e\xc0\x05\xfd\x8a\x01\x2c\x8c\x54\x5c\xf6\xef\xb3\x6b\ +\x17\xcc\xfb\xd5\x37\xbf\x82\xbf\xec\xea\xa4\xad\x47\x7b\x61\x78\ +\x11\x6d\x02\x3f\x9a\xd0\x83\x9c\x72\x92\x54\x3b\x5a\x60\x6c\x3d\ +\xd2\x85\xc3\x6d\x03\x98\x53\x96\x83\xc2\x9c\xa8\x83\x28\xd3\x94\ +\x54\x80\xf4\xc8\x3d\xdd\x53\x86\x13\x61\x0e\x5a\xcc\x58\x54\x57\ +\x8a\x25\x73\x2b\xf0\xc4\xce\x26\x58\xf0\x6b\x70\x37\x22\x0b\x2f\ +\xb2\x51\xa0\xbe\x27\x47\x1b\xd0\xad\x97\x85\x7c\x8e\x90\x0d\x46\ +\xfb\x4c\x9d\x9e\x2d\x93\x2a\xa3\x05\x59\xb2\x8b\xf4\x00\x2a\x8d\ +\x07\x93\xa4\x72\x24\xc8\x03\xdb\x3c\x3c\xc1\xfd\xb7\x6c\x9c\x2e\ +\x28\x20\x67\x29\xac\x66\x13\x76\x59\x2e\xe4\x24\xc0\xbf\x06\x48\ +\x03\x1d\x29\x4d\xb6\x41\xf2\xb5\x13\xfc\x0d\xa8\xd2\xea\x90\x00\ +\x4e\x79\x9a\x50\xfe\x9e\xd8\x71\xc0\x4d\x2d\xad\x38\xde\xd2\x41\ +\x3f\xfc\xd2\xc7\xf1\xbb\xfb\x9f\xce\x1d\x48\xe6\x2e\xb4\x86\x9a\ +\xb6\x03\x18\x80\x2f\x28\xf2\x37\xef\x00\x22\xb0\x75\xfb\xeb\x28\ +\xb7\xe1\x16\xce\x9e\x73\xf3\x77\x3f\xf7\x29\x1e\xb6\x32\xe9\xbe\ +\x9d\xed\x30\xd2\x81\x7e\x69\x9d\x00\x07\xd3\x4c\xad\xe6\x74\x9d\ +\x82\x20\x42\xff\x70\x0a\x8f\xef\xeb\x80\xc5\x8c\xd9\x25\x39\x36\ +\xb7\xe0\xac\x68\x02\x4e\xac\xe3\x30\x1d\xe0\x60\x65\x49\x2e\xae\ +\x3a\x7f\x1e\x9e\xdd\xd3\x82\xfe\xa1\xb8\xbd\xb5\xd8\x1b\xc5\x63\ +\x45\x79\x17\x2e\xb2\xcf\xb2\xb2\xb0\x54\xcf\xb3\xa5\xd4\xc7\xc4\ +\x4e\xba\x2f\x48\x4b\xbd\x55\x04\x5f\x35\x16\x52\xb4\x18\x55\xc0\ +\x2c\x1c\x8c\x25\xc5\x08\xa5\xcf\x53\x01\x19\x11\x7c\x6d\x17\x7d\ +\x57\x50\x78\x15\xef\x90\xeb\x7b\x92\x98\x8c\x24\xb9\x0f\x3d\x95\ +\x97\xdf\xa7\x8e\x37\x04\xcb\x24\xb9\x34\x51\xcb\x02\x48\xdc\x94\ +\x88\x21\xb0\xff\xc8\x31\x9c\xbf\x72\x19\x5e\x73\xc3\x65\xfc\xd3\ +\xdf\x3f\x5a\x4d\x9c\xec\x46\xa2\xa7\x09\x36\x5b\xf0\x9c\x3b\x01\ +\xe3\x05\x70\x38\x39\x00\x66\x21\x56\x7c\xa5\x51\xb2\xfe\x13\x5f\ +\xfa\xd8\x87\x31\xb7\x61\x09\xfd\xf0\xb1\x66\x3f\xad\x0f\x33\x74\ +\x11\xe2\xbd\x49\xaf\x01\xfd\x34\x96\x00\xb0\x20\x5f\x90\x52\xfa\ +\x82\x84\x20\x1c\x6b\x1f\xc4\x63\xfb\xda\x51\x94\x13\x43\x4d\x49\ +\xb6\xb7\xeb\x6f\x2a\x52\x62\x63\xd5\xf5\xe3\x81\x87\x13\x2d\x29\ +\xc6\x03\x07\xb3\x32\xa2\xb8\x76\xe3\x02\x34\x9e\xe8\xc2\xa9\xce\ +\x7e\xbb\x95\xe6\x01\x7e\x41\xb0\x2c\x2c\xc2\xe9\xc6\xcc\xd2\x9c\ +\x3c\x73\xf8\xba\x33\x97\x0f\xa0\x38\x13\xaf\x14\x63\x75\x6b\xb2\ +\x9c\xea\x13\x49\x8a\x3e\x52\x43\x92\x6c\x8d\x3f\xc8\x9a\x82\x81\ +\x0f\xc1\x31\x6a\x99\xaf\xcf\xfe\xbc\xae\x17\xa1\xe5\x39\x04\xe6\ +\x10\x29\x31\x92\xca\x10\x52\x4a\xc3\x00\x2b\x52\x3b\x96\xdc\xeb\ +\xc5\x75\xa4\x0e\xf2\xcf\x3a\xb0\xe0\x95\x32\x7e\xa6\xf0\xbf\x7f\ +\x79\x08\xff\xf8\x0f\xb7\xd0\xf9\x2b\x97\xe0\x8f\x4f\x34\x6e\xe0\ +\xd1\xf6\x83\x30\x47\xdb\x5f\x08\x3c\xe0\x5c\x3a\x00\xb7\xee\xaf\ +\x00\xb0\x08\xa5\x17\xdd\x7d\xc1\xda\xb5\x39\x77\xfc\xdd\xdf\xd1\ +\x8f\x9f\x68\x46\xca\x55\xf0\x4d\x17\xea\x39\x0d\x08\xc8\x84\x80\ +\x70\x9e\x26\x83\x1d\xd8\xc5\x27\x5d\x10\x3b\x8f\xf6\xe0\x48\x5b\ +\x3f\xaa\x8b\xb3\x51\x5a\x10\xf3\x27\xf1\x26\x91\x9e\x9f\x6d\x09\ +\xb2\xf1\xb3\x08\xdf\x71\x5d\x75\xfe\x5c\x18\x86\x81\xed\x07\x4e\ +\xc2\x10\x5a\xe4\x23\x19\x50\x0b\x3a\x02\xe5\xfd\x48\x20\x62\x98\ +\x33\xf2\xb0\x0e\xe9\x00\xb9\xcc\x50\xe1\x7b\x0a\x1b\xb4\x57\xb2\ +\x38\x06\x20\x24\x25\x5f\x3f\x8d\x67\x5f\x31\x48\xd8\xc7\xb0\xfc\ +\x5a\x24\x01\x9d\x92\xc3\x07\xc1\x21\x4d\xa5\x8b\xda\xb2\x73\x64\ +\xfb\x58\x06\x48\xb0\x5a\x0a\x28\x5c\x06\xbf\xd5\xe9\xfe\x51\x9e\ +\x65\x50\x41\x4f\x3b\xea\x08\x8f\x54\xe0\x3b\x60\x43\x10\xb6\xec\ +\xd8\x83\x7f\xff\xc8\x1d\x78\x7a\xdb\x7e\x3e\xd6\x6e\xae\xc0\xd0\ +\xd1\xcd\x4e\x16\x70\x4e\xf1\x00\xe3\x1c\x1a\x7f\xd4\xa9\xfb\x17\ +\x44\x2a\x2e\xfe\x5c\x59\x45\xfd\xfc\xff\xfd\xfe\x57\x29\x91\x04\ +\x3a\x07\xe2\xe8\x1b\x4e\xc2\xb4\x38\x3d\xf8\x47\x69\x40\x40\xc9\ +\x53\x07\x22\x9c\x5e\x22\x78\x01\xcd\xbf\xb0\x0d\x61\x93\x88\x1e\ +\xdd\xdd\x86\xa1\xb8\x89\xba\x8a\x5c\xc4\xa2\x6a\xb7\x60\x3a\x34\ +\x01\xc7\x7b\xdc\x44\x5a\x85\xe3\xb5\x20\xdd\x92\x60\x79\x43\x05\ +\x16\xcd\x29\xc7\xd3\xbb\x9a\x6c\x1a\xae\x94\x55\xa9\x86\xe7\x92\ +\x6b\xd4\x4f\x52\x4f\xbd\x95\xfa\x59\xb8\x7f\x57\xbb\x29\xe4\xf5\ +\xe7\xd9\x6f\xde\x90\x6f\x60\x24\x58\x72\x40\x4e\x22\x2e\xa3\xeb\ +\xec\x58\xac\x74\xbf\xdd\xdd\x25\x2f\xd2\xfa\x44\x20\x37\xc0\xfb\ +\x92\xe3\xae\x0a\xb0\x8d\x67\xb0\x92\x92\x0b\xe9\x35\xe5\x6c\x48\ +\xc6\x1a\xbc\xb2\x8b\x7c\xe2\x8f\xd0\x4b\x10\xe9\x7d\x38\x55\x8d\ +\x97\xc5\x08\xb9\xeb\xe2\x80\x2a\xae\xd3\x60\x97\x90\xe4\x39\x0b\ +\x42\xdb\xe9\x4e\x1c\x3f\xd1\x81\x9f\x7d\xfd\x5f\xe9\x27\xbf\x7d\ +\x34\x6f\xd4\xca\x9d\x6f\x0d\x35\x6f\x73\x40\xc1\x73\x46\x15\x3e\ +\x57\x0e\xc0\xab\xfb\x45\xee\xdc\x5b\xcc\x68\xcd\xcd\x3f\xfc\x8f\ +\xbb\xb9\xa8\xa0\x98\x0c\x22\x2c\xae\xc9\xc3\xea\xba\x02\x44\x0c\ +\x81\xc6\x8e\x61\x3b\x72\xd1\x44\x7e\x54\xc4\x58\xd9\x64\x23\x5d\ +\x84\x01\x5d\x78\x09\x11\x76\x7f\x47\x0c\xc2\x89\xce\x41\x3c\xb9\ +\xbf\x1d\x99\x31\x03\xf3\xaa\x72\x61\x5a\xd3\xb3\x30\x64\x22\x8f\ +\x9b\xae\x16\xa3\xbb\x94\xa4\xaa\x2c\x1f\x57\x6f\x58\x80\x47\xb6\ +\x36\x22\x91\x4c\xa9\x17\xbe\x2a\xd2\xa7\x10\x86\x82\xd2\x38\x7a\ +\x2a\xef\x47\xbc\xc0\x1c\x6e\xa0\x75\xc6\xe9\x7b\xff\x52\xe9\xa6\ +\x66\x04\x3e\x0d\x57\x76\xe2\x72\x33\x92\x49\xaa\x1c\xa0\x15\xea\ +\x4a\x4b\x5e\x2f\x56\x58\x03\x25\x91\x3e\xdb\x26\x8d\x47\xa0\x7d\ +\xc6\x61\xc4\x06\x3f\xfb\xf1\xc9\x45\x6a\x76\xea\xdf\x67\x08\x03\ +\x87\x8e\x36\x61\xcd\x8a\xe5\xb8\xf5\xa6\x2b\xf9\x27\xff\xf3\x50\ +\x8d\x10\xc9\x2e\x4e\xf4\x36\x9f\x4b\x3c\xc0\x38\x47\x4e\x26\x1b\ +\x40\x0d\xc5\x8a\xaf\xa0\xe2\xb5\x9f\xbc\xeb\x7d\xef\xc6\x55\x17\ +\xad\xa3\x94\xe9\x5f\xcc\x51\x43\xa0\xa1\x3c\x1b\x1b\x1a\x0a\x01\ +\x02\xda\x7a\xe3\x48\x99\xf2\xa2\x08\xa4\x27\x60\x68\x72\xd2\x6e\ +\xab\x4c\x11\x79\x90\xd0\x6b\x92\xd6\x64\x79\x73\xe5\x4e\x24\x34\ +\x99\xb1\xeb\x68\x17\xf6\xb5\xf4\xa2\xb2\x28\x1b\x15\x85\x19\x7e\ +\x66\x32\xcd\x5c\x81\xc9\x68\x15\x4c\x14\x1c\x94\x2f\xc4\xcc\x58\ +\x04\xaf\xba\x74\x29\x9a\x5a\xbb\xd1\xd4\xda\x0d\xc3\xd0\x23\x36\ +\x29\xa9\x2e\x85\x5c\xdb\x81\x5e\x3e\x49\xfd\x6e\x50\x78\xba\x0c\ +\x0a\x2c\xd9\x80\xb4\x91\x58\xa1\x06\x87\xa6\xd9\xf2\x6b\xc9\x2d\ +\x40\x75\x6e\x97\xb4\xcd\xa0\xee\x7b\x62\x0a\x03\x85\x29\xf0\x14\ +\xca\xfb\x54\x70\x12\x0e\xf6\xf8\xbd\x56\xb3\x9b\x01\x91\xca\x6d\ +\xd0\xb2\x24\x66\x37\x83\x20\xa7\x1c\x21\x1f\x58\x14\xbe\xc3\xfa\ +\xbf\x3f\x3f\x88\xf7\xbe\xed\x36\xaa\xab\x9d\x85\x07\x9e\x6b\xde\ +\xc8\xf1\x8e\xbd\x12\x1e\x70\xd6\x27\x07\xcf\xb6\x03\x70\x5b\x7e\ +\xe5\x00\x96\x8a\xf2\x4b\x3f\xb7\x66\xf9\xca\xdc\x0f\xff\xe3\x9d\ +\x64\x9a\x50\x40\x37\xc0\x46\xae\xa3\x11\x42\x7d\x59\x0e\x2e\x5d\ +\x54\x8c\x91\x84\x85\xae\xc1\x04\x2c\x66\xbb\xcf\x2d\xd5\xba\x3e\ +\xc2\xcb\x21\xf5\xab\x9a\x02\xfa\x60\x21\x7b\x6b\xb1\xd8\xe3\x9b\ +\x4b\xdd\x69\x07\xcc\x32\x88\xd0\x3f\x9c\xc0\x93\xfb\xda\x71\xba\ +\x6f\x14\x8b\x66\x17\x22\x62\x08\x05\x28\x9c\x88\x41\x4e\xe4\xf7\ +\x44\xb5\x0a\xce\x84\x8e\x7c\xc5\xba\xb9\x60\x10\xf6\x1d\x6b\x87\ +\xae\x8e\x2f\x5f\xc4\xee\x32\x15\x7f\xc1\x28\xa5\x71\x16\xe4\xd1\ +\x01\x14\x43\x0e\xe2\x74\x01\xf8\x06\x4a\x39\x22\x3d\xaf\xc2\x2b\ +\x80\x62\xb0\xe9\x00\x4b\x19\x95\x67\x0d\xfa\x81\xcc\x1b\x80\xbc\ +\x5c\x85\xb4\x16\x21\x39\x38\x86\x3e\x9b\xe0\x37\x17\x05\x9c\x56\ +\xa9\x57\xa5\x38\xfc\x13\xc1\x4a\x07\x83\x49\x23\x48\x09\x52\xb1\ +\x06\x89\xad\xc9\x4e\x57\x4a\x08\xc2\x96\x9d\x7b\xf0\xd9\x0f\xbd\ +\x13\x9b\xb7\xee\xe5\x93\x3d\xb4\x82\x07\x1b\x9f\x06\xd0\x07\x5f\ +\x48\xe4\x25\xeb\x00\x22\xb0\xa9\xbe\xb5\x46\xc9\xf9\x1f\x2a\x2a\ +\xad\x5b\xf9\xeb\xef\x7c\x9d\x5c\x86\x54\xb8\x11\x90\x47\x74\x59\ +\x50\x95\x83\x55\x73\x0a\x90\x97\x19\xc1\xa1\x53\x43\xca\x70\x88\ +\x92\x01\x68\x18\xa0\x1c\xf2\xdd\x81\x0d\x5f\xd4\x91\x94\x85\x96\ +\x08\x6d\x23\xda\x8e\x41\x08\x42\x6b\xf7\x10\x9e\xdc\xd7\x0e\x30\ +\xb0\xa4\x36\xdf\xce\x4a\xd2\x64\x03\xe3\xa5\xf5\x13\x35\xe4\xc9\ +\x3c\xe7\xf8\x43\x4d\x04\xd3\x64\xac\x98\x5f\x85\xe5\xf3\xaa\xf0\ +\xe8\xd6\x23\x1a\x35\xc7\x37\x4a\x79\xb5\x36\xc3\x17\x1e\xf5\x79\ +\xf7\xf0\x6b\x6e\xef\xc2\x76\xd2\x73\x09\xac\x25\x0a\x8e\x19\xf9\ +\xe4\x18\x9d\x4e\x9b\x86\x26\xec\xf6\x1b\x48\x4b\xc9\x65\x11\x13\ +\x68\x91\x17\xda\x7c\x82\xe2\x38\x24\x96\x9f\x86\x5d\xb0\x5e\x0e\ +\x85\xa6\xf9\xfe\x75\xa4\x94\x9e\x81\xec\x34\xe4\xbd\x11\x87\xe7\ +\xb1\xce\x1d\x6d\xed\x9d\x38\xde\xd2\x8a\x9f\x7c\xf5\x2e\xfa\xf1\ +\xaf\x1f\xcc\x8f\xa7\xa2\x05\x3c\xd2\xba\xe3\x5c\xf0\x03\xce\xa6\ +\x03\x70\xc5\x3d\xaa\x29\xa3\xe4\x32\x2a\x58\xfe\xae\xcf\x7f\xf8\ +\x03\x5c\x3b\xab\x86\x26\xb2\x52\xcb\xfd\x5b\xc4\x20\xcc\x29\xc9\ +\xc2\x25\x0b\x8b\x61\x5a\x40\xf7\x60\x02\xa3\x49\xcb\x01\x60\xd2\ +\xcb\x5c\x90\x97\x76\x49\x60\x97\x03\x12\x79\x13\x65\x08\x12\x5c\ +\xc8\x53\x82\x61\x08\x07\x14\x4a\x9a\x8c\xfd\xcd\x3d\xd8\x76\xb8\ +\x13\xd5\xc5\x39\x28\x2f\xcc\x74\x48\x44\x50\x32\x82\xb3\x21\x1e\ +\x32\xb9\x15\xe5\xe1\x8f\x73\x9d\x6a\x79\x71\x2e\x2e\x5a\x59\x8f\ +\x1d\x07\x4e\x60\x70\x78\xd4\x3e\x57\x00\xc2\x1b\x94\x61\x1f\xcc\ +\x62\x6f\xe6\xcd\xe3\x02\xb0\x34\x15\xc7\x72\x77\x46\x48\x03\x37\ +\x2e\xf0\x47\xea\x00\x8e\x20\x87\x6e\xec\x0e\x1c\xb9\x7f\x27\x52\ +\x22\x79\xda\xac\x62\xac\x7f\x33\x14\x82\x91\xef\xa4\xc8\x2f\x2b\ +\x42\xf1\x0f\xb5\xeb\x41\x12\xb6\xa0\x72\x16\xf4\x20\x11\xcc\x62\ +\x28\xb4\x74\xd3\x32\xa8\x40\xab\xd5\x7e\xff\x42\x08\x34\x1e\x6f\ +\xc6\xc6\xb5\x2b\x71\xd1\xfa\x95\xfc\xfb\x87\x76\x2d\xc0\x68\xc7\ +\x2e\x98\x23\xa7\x1c\x3c\xe0\xac\x95\x02\x67\xd3\x01\xb8\xa8\x7f\ +\x83\x28\x39\xff\xae\xb9\x75\xf3\xca\x3e\xf6\xae\x3b\xc8\xb4\x26\ +\x87\x74\x13\x11\x2c\xc7\xb0\xe6\x96\x67\xe3\xc2\x05\x45\x88\x0a\ +\x42\x4b\xcf\xa8\xe7\x17\x85\x56\xcb\x42\x5e\x4e\x09\x49\x61\x46\ +\xf8\xd1\x9f\x25\xd2\xba\x1f\xe1\x24\xf2\x87\xc4\x90\x23\xb2\x60\ +\x08\x81\xa1\x78\x12\xcf\x1d\x6c\xc7\xf1\x8e\x01\xac\x6a\x28\x73\ +\xb8\xde\x13\x37\xc8\xa9\x4c\x19\x4e\xa4\xe3\x90\xce\xf9\xc8\x8f\ +\x73\x2f\xc6\xdc\xec\x0c\x5c\x7f\xd1\x12\x6c\xdb\xdb\x8c\xde\x81\ +\x11\x6f\x8c\x55\x99\xf6\x23\x9f\x7b\xe1\xaa\xfa\x38\x6c\x58\x1f\ +\x19\x57\xa4\xb4\xc8\x6b\x7b\x79\x6e\xd4\x6b\xc7\x91\x57\x4e\x78\ +\x9d\x01\x68\xc0\xad\x74\x3f\xcb\x38\x00\xfb\x9b\x89\x49\x9b\x6a\ +\x54\x68\xc8\xb2\x71\xca\xc7\xba\x33\x0b\x70\xa4\xca\x94\x89\x41\ +\x29\x95\xf7\x02\x90\x13\x12\x3c\x2a\x34\xf9\x2d\x49\xf8\xd7\x17\ +\x4b\xce\xc4\x5b\x1f\x46\xa4\xed\x5c\x94\x16\x91\x48\xdc\x02\x0a\ +\xd0\xad\x7d\x7e\xc1\x83\x8f\x3f\x8d\x6f\x7d\xee\xdd\xf4\xeb\x3f\ +\x6e\x46\xf7\x20\xcf\xe6\xe1\xe3\x4f\x3b\x59\xc0\x59\x2b\x05\x8c\ +\xb3\x98\x59\xe4\x00\xa8\x15\x05\x8b\xdf\x9c\x55\x3c\xef\xda\xdf\ +\x7c\xfb\x1b\x1c\x89\xc4\x68\x22\xc8\x77\x78\x4a\x6c\xff\x87\xc5\ +\x8c\xba\xb2\x6c\xac\xa9\x2f\x40\x51\x6e\x14\x47\x3a\x86\x60\x59\ +\x0c\x41\x41\x40\x3a\x80\x6e\x7b\x6d\x23\xd6\xfa\xb5\x21\x5b\x71\ +\x59\xdd\x10\x23\xbb\xdf\x8e\xde\x11\x3c\xfa\xfc\x09\x24\x92\x26\ +\x96\xd6\x16\x39\x1b\x6e\x38\x90\x0d\x9c\xbd\xb4\x7e\x72\x58\x81\ +\x5e\x12\x10\x11\xae\xbb\x60\x11\x48\x08\x3c\xb7\xbb\x19\xb1\x88\ +\x11\xd0\xf9\x53\x52\x5a\xd2\x61\x41\xbf\xae\x96\xa3\x35\x87\xa5\ +\xba\xb2\x44\x17\x9c\x76\x9f\xe3\x28\xd8\x11\x0d\x10\x2c\xa5\xe9\ +\x1a\x0d\x19\xd2\xd6\x63\x0a\x01\x3a\xd5\x01\x1e\x29\xc2\x33\x29\ +\xe5\x84\xf2\x56\xa4\x0c\xc5\x21\xfc\xcb\x85\x8a\x72\x21\x79\x22\ +\xa4\xca\x38\xb0\x7b\x2d\xb1\x97\xfd\xc8\x1f\xb8\xbb\x85\x88\x24\ +\x42\x10\x29\x23\xd1\xac\x00\x9f\x6e\x79\x35\x32\x32\x82\x81\xa1\ +\x24\xbe\x78\xd7\x7b\xf9\xc7\xbf\x79\xa4\x22\x95\x4a\x8d\x70\xbc\ +\xf3\xa0\xe3\x04\xce\x0a\x41\xe8\x6c\x38\x00\x17\xf8\xab\x00\x68\ +\x39\x17\xad\xfd\xd7\xd7\xdf\x74\x53\xec\xd2\xf5\xe7\x13\x40\x67\ +\xd4\x07\x97\x2f\xcf\x48\x84\x50\x5d\x98\x89\x2b\x96\x96\xc0\x64\ +\xb7\x34\x30\xfd\x08\x85\x10\x32\x4b\xa0\xce\x57\xd3\xcf\xb1\x46\ +\x3d\xd5\x69\x36\xbb\xd5\x76\xa4\xb5\x17\xcf\xee\x6f\x47\x6d\x45\ +\x3e\x4a\xf2\x33\x43\x0d\xf9\x6c\xa5\xf5\x93\x75\xa0\xfa\xcd\x62\ +\xc6\xaa\x45\x55\x98\x3f\xa7\x0c\x5b\xf6\x36\xc1\x34\x2d\x1b\xec\ +\x52\xc4\x43\xe0\x93\x59\x5c\x03\x50\x10\x7b\x56\xdb\xad\x20\x8f\ +\x18\x24\x13\x67\x6c\x11\x10\x19\xf3\xb1\xc0\x64\xdb\x8e\xb2\x1f\ +\x80\x1d\x17\xcc\xe4\xb3\x3f\x29\xac\x57\x9f\xfe\x1c\x6c\x70\x4d\ +\xf8\x64\x20\x97\x86\xcc\x24\x81\x72\x3e\x36\x44\xae\x83\x11\xee\ +\xdc\x84\x1b\xd1\x85\xf4\xf9\xca\x9a\x06\xe4\x8b\x9d\xb8\xed\x68\ +\x96\x48\x48\x92\x0e\x01\x91\x3f\x76\xcd\x70\x1d\x1d\xa9\x99\xa6\ +\xd4\xd2\x16\x42\xe0\xc0\xa1\x46\xdc\xfe\xfa\x9b\x69\x70\x68\x84\ +\xb7\xec\x6b\x9b\x8f\xc1\x23\x4f\x02\xe8\x91\xba\x02\x2f\x7a\x07\ +\x10\x01\x50\x00\xa0\x4e\x94\xac\xfb\x60\x51\x69\xed\xa2\x9f\x7d\ +\xf9\xdf\x28\x65\xd2\xb4\xf4\xc1\x3d\xc3\x62\x3b\xe5\xb2\x98\x50\ +\x5f\x9e\x8d\x8d\xf3\x8a\x51\x90\x13\x45\xe3\xa9\x21\x58\x6c\xf9\ +\x74\x60\xf9\x22\xf1\x10\x63\x92\x26\xe6\xfc\x34\x8c\xb5\x65\x9b\ +\xea\xee\x78\x97\xf6\x4a\xbe\xa0\xa4\x20\x8c\xc4\x53\x78\x7a\x7f\ +\x1b\xf6\x1f\xef\xc6\xda\x85\xe5\x30\x44\xb0\x5b\x90\xf6\x3d\x9c\ +\x85\x72\x60\x3c\xde\x81\x1c\x41\x53\x26\xa3\xa6\xbc\x10\xaf\xb8\ +\x64\x19\x1e\x7a\xee\x20\xe2\xc9\x94\x9f\x02\xcb\x0d\x75\xef\xbf\ +\x05\xd4\xf1\x60\xf2\xe6\x0a\xd4\x1e\x38\xbc\xa9\x3d\xd2\x59\x9a\ +\xf2\xb4\x9e\x1c\x35\xb5\xda\xd8\x3b\x07\x96\xf7\x24\x92\xda\xcb\ +\x97\x11\x7f\xf6\xa3\xb9\xb7\xc3\x90\xd4\x00\x10\xa0\x85\xca\x9f\ +\xad\xab\x1c\xa4\x4c\x49\xc2\x9f\x5a\x24\x9f\xa1\xc8\x81\x39\x68\ +\x15\xf8\xd4\x52\x0a\x85\xf7\x00\x49\x6d\x59\x7e\x2d\xf7\xe0\x94\ +\x99\xc2\xe3\x4f\x6f\xc1\x2f\xbe\xfd\x31\xfa\xee\x7f\x6f\xca\x1c\ +\xb5\xa2\x45\x3c\xd2\xba\xed\x6c\x01\x82\xd3\xed\x00\x04\x80\x2c\ +\x00\x35\x94\x59\x79\x55\xa4\x68\xd9\x9d\xdf\xf8\xf4\x5d\x5c\x56\ +\x5c\x4e\x61\x29\xf2\x54\xfb\xe0\x44\x9a\x5c\x94\x93\x56\xd5\x14\ +\x67\x61\xfd\x82\x62\x14\xe7\x65\xa0\xb9\x6b\x08\xc3\x49\x13\x86\ +\x0b\xeb\xb1\x3f\x04\x23\x48\x66\x90\xb1\x4f\x41\xf5\x5a\x37\xac\ +\x94\x0e\x44\x14\x00\x84\x7c\x79\x2b\xfb\xb8\x9e\xc1\x51\x3c\xfa\ +\x7c\x0b\x46\x13\x29\x2c\xad\x2b\x51\xd5\x7a\xce\x00\x1c\x3c\x13\ +\xb1\x92\xf1\x96\xa0\xb8\xe0\x60\x34\x62\xe0\x9a\x0d\x8b\x70\xb2\ +\xa3\x0f\x2d\xed\x3d\x5e\x14\x53\xb2\x23\x6d\xe7\xa0\x8e\xd8\x2b\ +\x29\x34\xeb\xbc\x01\xd2\x52\x5e\x9d\x3b\xc4\x21\xd9\x58\xd8\x9b\ +\x54\x27\x40\xd5\x9a\x9f\xa4\xe7\xa6\x34\x19\x9f\xd4\xcd\x08\x2c\ +\x28\x51\xc1\xff\xe0\xc4\xa1\x34\x9c\xe4\x52\x87\xa1\x8e\x18\x93\ +\xc4\x38\x13\x92\xe2\x92\x20\x0a\xe1\x1b\xc8\x2c\x42\xe1\x38\x39\ +\xbb\x2d\xd8\xd5\xd7\x8f\x45\xf3\x17\xe2\x55\xd7\x5e\xca\xbf\xf9\ +\xeb\xf6\x06\x8e\xf7\x1c\x42\x6a\xf0\xa4\x03\x08\x4e\x6b\x29\x30\ +\xdd\x0e\xc0\x05\xfe\xe6\x51\xf1\xda\x8f\x2d\x5d\xb4\xac\xf8\x3d\ +\x6f\x7e\x23\xb9\x00\xcb\xd9\xec\x83\xbb\x60\x61\xc4\x20\x54\x15\ +\x66\xe2\xca\x65\xa5\x88\x18\x02\xa7\xfb\xe3\x88\x27\x4d\x47\xf2\ +\x4a\x6f\xfb\x40\xe9\x6b\x31\xc9\x14\x63\x52\x46\x0e\xe4\x0e\x81\ +\xf2\x65\x7a\xe2\x0f\xb6\xfa\x6d\x63\x6b\x1f\x1e\xdb\xd9\x82\x86\ +\x9a\x02\x14\xe7\x65\x4e\x18\xbc\x9b\x48\x54\x3f\x93\xc7\x8d\xe5\ +\x04\x00\x20\x62\x08\x5c\xb2\xa6\x01\xdd\x7d\xc3\x38\x76\xb2\x53\ +\x13\xcc\xe0\x80\x90\x46\x40\xad\x27\x54\x1c\x43\x42\xcc\x89\x14\ +\xed\x7d\x0a\xa0\xe4\x6a\x9f\x5c\xe6\x68\xa8\x62\x1f\x7a\xbd\x49\ +\x4a\x23\x33\x94\x1e\x2e\x77\x82\x24\x1a\xb2\x50\xe8\xce\xec\x53\ +\x9d\x3d\xc7\x6f\x77\x2c\xbc\x63\x25\xc0\x53\x95\xa3\x53\x5b\xa8\ +\x44\x72\xaa\xaf\x09\x87\x30\x42\x26\x2b\xa5\xc7\x39\x59\xc6\xe6\ +\x67\xb7\xe2\xb3\x1f\x79\x07\xfd\xf5\xd1\x6d\xdc\xda\x9d\x98\x83\ +\xe1\xa6\xa7\x00\xf4\x4f\x37\x20\x68\x4c\x73\x36\x91\x0b\x60\x8e\ +\x28\x58\x7a\x47\x76\x71\xc3\x15\xff\xfb\xdd\xef\x10\x91\x98\xd6\ +\x3e\x78\x58\x4a\x1c\x16\x59\x93\x26\xa3\xb6\x2c\x07\xeb\xe7\x17\ +\x63\x56\x49\x36\x0e\x9c\xec\x87\xc9\xec\x61\x36\x9e\x67\x67\xd6\ +\x2e\x30\x59\x1c\x43\x19\x54\x53\x56\x46\xf9\xc2\x1b\xbe\xfe\x1b\ +\xb3\xed\xf9\x93\x29\x0b\xcf\xee\x6b\xc3\xf6\x23\xa7\xb0\x6e\x51\ +\x15\xa2\x11\xe1\x75\x19\xa6\x7b\xca\x70\x22\x78\xca\x84\x80\x1b\ +\xe7\xdc\xd6\x2e\xad\xc5\xfc\x39\xe5\x78\xf0\xe9\x7d\x88\x18\x02\ +\x12\x33\x47\x11\x03\xd1\xb7\xf5\x91\xd7\x75\xe1\x90\xd7\xe6\x50\ +\xa3\x55\x06\xfe\x74\x11\x10\xa8\x93\x84\x82\x54\x96\x9e\x27\xc0\ +\x01\x06\x09\x01\x95\xbd\x27\x39\x29\x6d\xac\x57\x49\xc7\x43\xbb\ +\xf3\x14\x7e\xfe\x14\xf2\x58\xd6\x5c\x10\x49\xec\x87\x50\xba\x71\ +\x98\x44\x59\xa8\x57\xc3\xe8\x48\x1c\x27\x4f\x75\xe2\xbf\xbe\xf0\ +\x51\xfa\xde\x3d\x9b\x4a\x53\xa6\x65\x72\xfc\xf4\xbe\xe9\x06\x04\ +\xa7\xcb\x01\xb8\xc0\x5f\x29\x28\x7a\x1e\x17\xad\xf9\xd8\xdb\x6f\ +\xbb\x2d\xb2\x66\xf9\x32\x22\x52\x17\x4b\x9d\x69\x1f\x7c\xe2\x58\ +\x81\xff\x45\x96\x15\x64\xe2\x92\x25\x65\x28\xca\x89\xa1\xa3\x7f\ +\x14\x03\x23\x09\xfb\xe2\x86\x0b\x14\x91\x77\xb1\xb9\x7d\x70\xa1\ +\xad\xe3\xb2\xdb\x60\xec\x44\x05\x48\x69\x9e\x24\x45\x26\xa1\xd1\ +\x4c\x8c\xc1\x91\x04\x1e\xdc\xd6\x84\x94\x69\x61\xf1\x9c\x12\x65\ +\x81\xc9\xb9\x9c\x32\x9c\xec\x6d\x56\x45\x01\x2e\x5d\xb3\x10\xcf\ +\xec\x6a\xc2\xf0\x68\x02\xc2\xa9\xad\x85\xb4\x91\x54\xc0\x2e\x7f\ +\x7c\x50\x8e\xc1\x2e\x5d\x4e\x4b\xfd\x29\xb4\xce\xd7\xa9\xc3\x52\ +\x3b\x51\xd6\x07\x90\x4b\x02\x9d\x69\xa7\x74\x76\x80\xb0\x15\x3f\ +\xc1\x11\x05\x96\x00\x40\xf2\xd9\xa4\xda\xc4\x60\x60\x94\x9a\xc3\ +\xbf\x17\xe5\x79\xd5\x3d\x69\x1a\xa7\x81\x02\xec\x45\x95\x56\xad\ +\x9e\x83\x20\x42\x63\x53\x33\x6e\xb9\xe9\x3a\x64\x66\xc4\xf8\xf1\ +\xed\xc7\x17\x60\xe8\xd8\x66\xc0\xea\x82\xad\x2a\x6c\xbe\x98\x1c\ +\x80\xdb\xf6\x9b\x2d\x0a\x97\xde\x59\x58\x56\x7f\xde\xf7\xef\xbe\ +\x8b\x92\x29\x84\x2e\xe9\x38\x97\x7d\x70\x92\x72\xd5\xaa\xe2\x2c\ +\x5c\xb2\xa4\x0c\xc5\x39\x59\x38\xde\x39\x88\x64\xca\xd2\x52\x79\ +\x67\x9a\xcc\xbb\xa0\x24\x83\x27\x7f\x02\x0d\xd2\x24\x9a\x0b\x7c\ +\x78\xf7\x11\x2b\xa2\x18\x0c\xa0\xb1\xb5\x07\xf7\x3f\xdb\x88\x05\ +\xb3\x8a\x51\x98\x97\x09\x21\x28\xa0\x3f\x30\x19\x90\x6f\xb2\x9f\ +\xd1\x64\x6f\xcc\x40\x5e\x4e\x26\x6e\xb9\x7a\x05\x76\x1c\x38\x89\ +\xae\xde\x01\x2f\x5d\xf6\x52\x63\x45\x24\xdb\x4f\xb9\x21\x2b\xed\ +\x08\xd9\xfa\x54\xe0\xcf\xef\xd0\x50\x5a\x51\x0d\xc8\x62\xdf\xba\ +\xf1\x83\xd2\x53\x84\x99\x02\xc6\xe7\x22\x79\x69\x85\x3d\x02\x86\ +\x1a\x82\x4b\xe8\xa9\xbc\x54\xf7\x2b\x64\x20\xcd\x03\x91\x06\x38\ +\x12\x85\x08\x9a\x86\x38\x8b\x94\x69\xe2\x91\xcd\x4f\xe3\xa7\xdf\ +\xf8\x08\x7d\xe7\xe7\xf7\x47\xe3\x49\x13\x3c\xda\xb1\xd3\x29\x05\ +\xa6\x45\x4c\x74\xba\x1c\x40\x0c\x40\x19\xc8\x58\x6d\x94\x6d\xbc\ +\xeb\xab\x77\x7d\x1c\x15\x65\x15\xe3\xf6\xa5\xcf\x75\x1f\xdc\xfe\ +\x50\x19\x55\xc5\x59\xd8\xb0\xa0\x0c\xf5\x15\x79\x38\xdc\x36\x80\ +\xd1\x84\xe9\xef\xcf\x93\xc8\x2d\xea\x0e\xee\x74\xa8\xae\xd6\x2f\ +\x97\xd1\x3f\x48\x72\xd3\x0c\x3c\xb3\xaf\x15\xbb\x8f\x74\x60\xed\ +\xc2\x4a\x64\xc4\x8c\xb4\x72\xe5\x53\x41\xf9\xa7\xb2\xbe\x7c\x6c\ +\x27\xc0\x48\x59\x84\x2b\xce\x5f\x88\x8c\x58\x14\x3b\x0e\x34\xc3\ +\x70\xe7\x21\x64\x85\x5c\x29\xd5\xf5\xc0\x78\xa9\xf5\xa5\x6c\xfe\ +\x94\x97\xed\xc9\xe0\x9d\x57\xbd\x4b\xdb\x5e\x59\x9d\xda\xf3\xb9\ +\x00\x6c\x73\x09\x54\xca\x9f\x67\xf8\xfe\xb1\x1c\xa4\x37\xb3\x2c\ +\x31\x46\x01\x2a\x38\x7b\x43\x45\x21\x22\x20\x24\x29\x09\x91\xca\ +\x31\x50\x77\x0d\x42\x21\xa1\xb9\x41\x00\x21\x1b\xc8\x58\x71\x34\ +\xec\x1f\x2b\x05\xa5\xfe\x81\x01\x34\xd4\x2f\xc0\x4d\x57\x5f\x8c\ +\xdf\x3e\xb0\x6b\x89\x35\x70\xf8\x71\x80\x3b\xa6\xab\x2d\x68\x4c\ +\x63\xf4\x9f\x63\x94\xac\xb9\x23\xbf\xa8\x66\xf1\x07\xee\x78\x2b\ +\x84\x10\xde\x82\x87\xe9\xec\x83\x4f\x25\x42\xca\x8f\x73\xbf\x3c\ +\x41\x40\x49\x5e\x06\x2e\x59\x5a\x81\xa2\x9c\x0c\x74\x0f\x8c\xa2\ +\x67\x30\xee\x8d\x22\x2b\xa0\x97\x82\xfc\x93\xd2\x26\x0b\xf2\x09\ +\x34\x92\x11\xfc\xe5\x1c\x44\x40\xff\x50\x1c\xf7\x3d\x73\x04\xa6\ +\xc5\xa8\xaf\x2e\x54\xb4\x07\xc6\xca\x68\x26\x53\x0e\xe8\x0e\x74\ +\x4a\x35\x9d\x94\x7a\x2f\x9d\x57\x85\xaa\xd2\x42\x6c\xdf\x77\x1c\ +\x0c\xcb\x07\xf4\x84\xa4\x83\x2f\x9d\x8f\xf0\xda\x70\xec\xf7\xd6\ +\x59\x04\xa8\xbc\x3e\xd6\xc2\xfe\x52\x11\x02\x84\xd3\x62\x95\x23\ +\x23\x7b\xfd\x77\xdb\x58\x84\x90\xb2\x2e\x37\x9b\x12\x50\x06\x71\ +\x7c\xb1\x0f\x0a\xf0\x06\x98\x2d\x49\xf4\xd3\xcf\x32\x3c\x2e\x04\ +\xc3\x13\xf3\x20\x49\x24\xd5\xcd\x08\xd9\xcd\x30\x21\x4d\xfb\xc9\ +\xe8\xbe\xcb\x63\x90\x96\x87\x84\xcb\x96\xa9\xef\x53\x95\x37\xb3\ +\xbb\x02\x2d\x27\xdb\xf0\xfe\xb7\xbf\x11\x3f\xb8\xe7\x3e\x24\xac\ +\x08\x78\xa4\x75\xda\xb2\x00\x63\x9a\xa2\x7f\x29\x80\x45\x9c\xbb\ +\xec\x83\xff\xfc\xf6\x3b\x63\x2b\x17\x2f\x72\x26\xcb\xa6\x3f\xad\ +\x9f\x4c\x84\x1c\x3b\x1b\xf0\x4b\x93\xca\xa2\x2c\x5c\xb8\xb8\x1c\ +\x73\xab\xf2\x71\xf0\x64\x1f\x52\xa6\x25\xf5\xb0\x55\xe4\xdf\x5d\ +\x11\x0d\x6f\x72\x8e\xd5\x19\x77\x37\x0a\xb9\xdb\x78\x95\xd1\x58\ +\xfb\x33\x31\x0c\x42\xe3\xc9\x1e\x3c\xb0\xe5\x28\x16\xcc\x2a\x46\ +\x71\x7e\x96\x87\x44\x4f\x54\xad\x78\x3c\x21\xd3\x33\xcd\x00\xe4\ +\xcf\xc9\xb2\x18\xb5\xd5\x25\xb8\x64\xed\x42\x3c\xf8\xcc\x7e\x7b\ +\x59\x29\xfc\x54\x9f\x49\x05\x52\x3d\x6a\xb1\xa0\x60\xda\xab\x50\ +\xb6\x09\x42\x29\x25\x9c\x76\xad\x20\x85\x2a\x2c\xaf\x02\x27\xa5\ +\xef\xae\x89\x75\xb0\xba\x3d\xd9\x36\x5a\x11\x32\x02\xad\x52\x79\ +\x3d\xfc\xc7\x15\x14\x95\xc6\x7a\x11\x86\xcb\xc8\x35\x3f\xa5\xeb\ +\x68\x20\xd8\x01\x90\x6a\x02\x0f\xf1\x77\x17\xd7\xb8\xd9\x82\x3c\ +\xe5\xea\x38\x8d\xe3\x2d\x27\xb1\x7e\xdd\x2a\xcc\xaf\x9f\x83\xbf\ +\x3e\xfa\xfc\x6c\x0c\x37\x3e\x0c\xa0\x7b\x3a\xb2\x00\x63\x1a\xa2\ +\x7f\x36\x80\xd9\x46\xf1\xca\x7f\xaa\x9e\xb3\xf4\xbc\x2f\x7e\xe4\ +\x9f\x61\x5a\xe7\x36\xad\x3f\x73\xc0\x8c\x60\x5a\x8c\xe2\xdc\x4c\ +\x5c\xb4\xa4\x12\x0d\x55\xf9\x38\xd1\x39\x88\xbe\xe1\x04\x0c\x11\ +\x86\x02\x69\xf4\x0d\x8d\x02\xab\xd7\x99\xca\xfc\xb8\x32\xbe\xcc\ +\x78\x72\xcf\x09\xec\x39\xda\x81\x05\x73\x4a\x51\x90\x13\x53\xf6\ +\x1a\x4e\xd7\xa2\x91\xe9\x70\x02\xcc\x84\xdc\xec\x0c\x5c\x7b\xe1\ +\x72\x1c\x6a\x6a\x43\x7b\x57\x9f\x9a\xe1\x69\x0b\x45\x48\x5e\xc9\ +\x1d\x36\xee\x27\xb1\xad\x14\x1e\x81\x42\xc2\x92\x28\xb4\x08\x76\ +\x15\xc6\xd2\xf0\x57\xf3\xfa\x74\xda\x1f\x2a\x5f\x20\x38\x58\x26\ +\xa1\xf7\xac\x2d\x35\x0e\x21\x19\x29\xa9\x3c\x85\xf0\x8e\xbc\x49\ +\x55\xc7\x99\x09\xa1\xb5\x53\x43\x56\x9a\x10\x23\x1a\x89\x60\xff\ +\xa1\x23\xb8\xfb\xa3\xef\xc6\x2f\xef\xdb\x1c\x1b\x1c\x35\xa3\x3c\ +\x72\x6a\xbb\x93\x05\x9c\x51\x47\xe0\x4c\x1d\x40\x14\x40\x29\x44\ +\x6c\x85\x28\x5a\xf3\xc1\xb7\xbd\xfe\x75\x91\x65\x0b\x17\x51\xba\ +\xda\xf4\x6c\xa5\xf5\x93\x8d\x90\x61\x8f\x93\x23\x4b\x51\x6e\x06\ +\x2e\x5e\x56\x81\xf2\xc2\x1c\xa7\x34\x48\xc0\x70\xd7\x5e\x49\x43\ +\x21\x44\x50\xa7\xcd\x14\x89\x29\xa9\x46\x4e\x83\x4a\xb3\xab\x19\ +\x3f\x38\x8a\x4d\x5b\x8e\x80\x2d\xc6\xec\x8a\x02\x64\x46\x0d\x84\ +\x6d\x39\x9e\x28\x69\x6a\xba\x1d\x80\xfc\x7a\xd1\x88\x81\xeb\x2e\ +\x5e\x8c\x9e\x81\x38\x0e\x36\xb5\x49\x7b\xfc\xc6\x58\x1e\xc2\x63\ +\x21\xe2\xda\xc2\x0f\x0d\x24\x4b\xd7\x73\x0a\xa0\xe8\x21\x72\xde\ +\x5e\x1f\x5e\xf8\x8b\x56\x5d\x23\xf3\xae\x01\x92\xe9\xcb\xfa\xb4\ +\x20\x79\x93\x92\xe4\xfd\xb7\xbb\x53\x90\xfc\x6e\x82\x34\x71\x29\ +\x84\xa6\x33\xe0\x9d\x83\x9c\x4d\x90\x8f\x8f\x90\xbb\xbf\x90\x94\ +\x92\xc4\x7b\x5e\x87\xc2\xdc\xd7\xd7\x87\xab\x2e\xbb\x14\xb9\xd9\ +\x39\xfc\xd8\xd6\xa3\xf5\x3c\x74\xec\x71\xb0\x79\xfa\x4c\xb3\x80\ +\x33\x71\x00\xc2\xa9\xfd\x67\x89\x9c\xda\x57\x5a\xd1\xb2\x0b\xbf\ +\xf1\x6f\x9f\x22\x11\xb2\x7e\x6b\x22\x29\xeb\xf4\xa4\xf5\xd3\xd7\ +\x3e\x33\x4d\xa0\xa2\x30\x13\xeb\x17\x56\xe0\xbc\x86\x12\xec\x3b\ +\xde\x8d\x44\xca\x94\x10\x6a\xf6\xc1\x42\x35\xa6\x79\xe9\xa1\x37\ +\x50\xe4\xb6\xfe\xa0\x2f\xa7\xf0\x53\xc1\x88\x20\x34\x9e\xe8\xc1\ +\x43\x5b\x8f\xa1\xaa\x24\x0f\xd5\xa5\x79\x21\x4e\x6a\xb2\xad\xd0\ +\xb3\x73\x4b\xa6\x80\x35\x4b\x6b\xb1\xa0\xb6\x02\x4f\x6c\x3b\x28\ +\x01\x9d\x9a\xd0\x3e\x43\xf9\x1c\x14\xb5\x31\xa7\x1d\x27\xcb\xb8\ +\xb9\x53\x7b\x42\x22\xe3\x08\x79\x74\x56\x6b\x11\xb2\xb7\x85\xd4\ +\xa9\xb1\x85\x36\x66\xac\x29\x0a\x05\xd4\x90\x21\x4d\xfb\x09\xff\ +\x35\x6c\x79\x42\x9d\x07\x42\x36\x36\x41\x5a\xdb\x4f\x22\xef\x40\ +\xe8\x24\x24\x04\xcf\x41\x11\x22\xd1\x86\x8c\x58\x1f\x91\x76\x15\ +\xad\x09\x6c\x31\xf6\xec\x3f\x88\x2f\x7e\xe2\xdd\xf4\xf9\x6f\xfc\ +\x32\x2a\x10\x6f\xe3\x44\xcf\x21\x87\x17\x30\x65\x2c\xc0\x38\xc3\ +\xe8\x5f\x0c\x60\x3e\x4a\x36\x7e\xe1\x13\xef\x7b\x5f\x64\xc5\xa2\ +\x79\xb0\x78\xea\x29\xeb\xb9\x56\xdb\x1d\xaf\x34\x71\x47\x3c\x73\ +\x33\x63\xb8\x64\x45\x35\xea\x2b\xf3\xd1\xd5\x3f\x82\x8e\xbe\x51\ +\x18\x12\x8f\xc0\xeb\x61\x93\x24\xff\xcc\x32\xf9\x43\x67\xcf\x69\ +\x19\x82\x87\x08\xdb\xaf\xf7\xec\xbe\x16\xec\x6e\x6c\xc7\xac\xf2\ +\x02\x94\x15\x66\xd9\xc2\x9e\x52\x36\x30\x5e\xc4\x3f\xdb\x0e\xc0\ +\xe5\x33\xd4\x94\x17\x61\xe3\xaa\xf9\x78\x7a\xc7\x11\x47\x77\x90\ +\xd5\x0d\xb9\x92\xa2\xab\x5e\x87\x93\xb6\xb1\x58\x66\xd0\xb9\xc9\ +\x78\xa0\x72\xd0\xcb\x01\x6d\x2c\x39\x88\xb4\x53\x1a\x32\x0f\x10\ +\x90\xee\x06\x05\xb5\x10\xa5\x67\xa1\xb1\x9e\x17\xd0\x29\xfd\x90\ +\xc6\x4a\xd5\xae\x10\xa5\xe7\xff\x28\x5d\x92\x10\xaa\x72\xeb\xa9\ +\x53\xb8\xf0\xfc\xf5\x58\xbe\x64\x01\xfe\xfa\xf4\x91\xf3\x30\x78\ +\xf8\x7e\xd8\x83\x42\x53\xe6\x05\x18\x67\x10\xfd\xb3\xec\xbe\xff\ +\x8a\xb7\x16\x94\xd6\xaf\xfd\xe4\x7b\xdf\xc3\x42\x18\x34\x11\xb6\ +\xdb\x54\xfb\xd9\xe7\x5a\x6d\xd7\x4f\xed\xec\xfb\x8a\xf3\x32\xb1\ +\x71\x49\x05\xea\x2a\x0a\xd0\xde\x33\x84\x81\xa1\x84\x26\x8e\xc1\ +\xde\x48\x99\xac\x13\x07\x49\x88\xc4\xd7\xcf\x60\xb8\x10\x98\x9a\ +\x7e\x32\x0c\x83\x30\x30\x14\xc7\x23\xdb\x8f\x62\x24\x6e\xa2\xbe\ +\xba\x08\x99\x19\x86\x77\x1e\x13\x5d\x51\x7e\x76\x9d\x80\x9d\xe8\ +\xe7\x65\x67\xe2\xa6\xcb\x56\x63\xd7\xc1\xe3\xe8\xec\xe9\xb7\x55\ +\x75\x75\x6c\x84\x10\x58\xea\xa1\x80\x72\xd0\x76\x09\x06\x80\x43\ +\x0a\x9f\x17\x08\x94\x0a\xe4\x95\x20\x61\x22\x20\x81\x1d\x7e\x08\ +\x96\x70\xaa\x8f\xa0\x20\x21\x89\x82\x5d\x12\x9d\xec\x14\xba\xef\ +\x30\xb4\xfc\x51\xdf\x84\x2c\x45\x16\xe4\x08\x10\x8c\x88\x81\xbe\ +\xfe\x01\xbc\xeb\xad\xb7\xf1\x4f\x7f\xf3\x40\x34\x9e\x44\x92\x47\ +\xdb\x77\x9f\x09\x16\x30\x55\x07\x10\x01\x50\x04\x60\x01\xe7\x2f\ +\x7f\xff\x4d\x57\x5f\x9b\x77\xe5\x05\x1b\x14\x7a\xdb\xd9\xdc\x8d\ +\x37\xd9\x3e\xf8\x74\x72\xeb\x2d\xcb\x76\x04\xeb\x17\x55\xe2\xfc\ +\x85\x95\x38\x74\xa2\x1b\x43\x23\x49\x7f\x2c\x54\xa2\x08\x78\x5b\ +\x79\xe4\x65\x1a\xca\xdc\xba\xdf\x3f\x77\x19\x87\xf2\x6a\x09\x21\ +\x04\x9a\xda\x7a\xb0\x69\xcb\x11\xe4\x64\x46\x51\x5f\x5d\xa4\xb4\ +\x0c\x27\xf2\x1e\xce\x81\x2b\x80\x10\x84\xcb\xd7\x2f\x41\x3c\x91\ +\xb2\x71\x01\x79\x4a\x50\x23\x02\x31\x58\x43\xd3\x9d\x2e\x02\xab\ +\xc8\x2a\xb1\xac\xde\xe9\xf3\x06\x98\x09\xe1\xd4\x62\x69\xeb\x91\ +\x0b\xca\xc9\x03\x42\xb2\x5c\x19\xb3\x16\xb9\x7d\x26\xa8\xb2\x37\ +\x50\xfa\x42\x59\xaa\x07\x64\x59\x7a\x26\x0e\x69\xee\xcb\x53\x44\ +\x24\xb5\x8f\x65\x85\x65\x25\x8d\xf1\x89\x45\xac\xe5\x19\xd2\xcc\ +\x01\x09\xe0\xe0\xe1\xa3\xf8\xfb\x5b\x6f\xa6\x8e\xce\x5e\xec\xd8\ +\x7b\xbc\x1c\xc3\x47\x1f\x75\x3a\x02\x23\x98\xc2\xa4\xa0\x31\xa5\ +\x6f\xdc\x96\xfa\xaa\xa2\xec\xd9\x37\x66\x14\xce\xbf\xfe\xc7\xff\ +\xf1\x85\xb4\x17\xe5\x99\xd4\xe7\x13\x05\xbe\xa6\xf2\xb8\xc9\xee\ +\xf3\x93\x89\x1e\xee\x7f\x67\x66\x44\x70\xf1\xf2\x6a\xcc\xad\x2a\ +\xc0\xe0\x48\x02\x6d\x5d\x83\x88\x18\xa4\xe8\xc0\xa9\x82\x1a\x1a\ +\x26\xa8\x49\x62\x83\x82\x29\xaf\xdb\x72\xda\x79\xa8\x0d\x7b\x8e\ +\x9e\x42\x55\x49\x3e\xaa\x4a\xb3\xe1\x74\x2a\xc7\xed\xae\x9c\xfd\ +\x4c\xc0\xff\xf7\xda\x65\xb5\xa8\x2a\x2d\xc6\xb3\xbb\x8f\x28\x42\ +\x9b\x60\xb7\x4e\x66\xaf\x67\xce\x8a\x63\x08\x53\xe2\xb5\x5b\x78\ +\x82\xa1\xf2\x2a\x04\xa7\xd9\xc8\xab\x46\x64\xe1\x1a\xa7\xcc\x43\ +\x12\xaa\xfa\x91\x6b\x64\x42\xa2\x37\x2b\x9b\x7f\xd9\x6f\x2f\xda\ +\x6d\x4d\x89\x5c\x24\x45\x67\x21\x8d\x0e\xfa\xda\x02\x32\xbd\x99\ +\xd5\xa9\x52\x6d\xb3\x95\x7c\xbf\xdc\xa2\x0c\x0c\x56\x31\xc1\x88\ +\x08\xec\xde\x7b\x00\x5f\xfb\xec\x87\xf1\xcd\x9f\xff\x29\xcf\x4c\ +\x0c\x34\x23\xd9\x7f\x18\xfe\x8c\xc0\x59\x77\x00\x06\x6c\xa1\xcf\ +\xba\x48\xd9\xc6\xcf\xdc\xf2\x8a\x9b\xf2\x2f\x59\xb7\x06\x16\x4f\ +\x75\xab\xcd\xc4\xfb\xd9\xe3\x19\xe4\x64\xa7\x0c\xcf\x0c\x53\xb0\ +\xef\x30\x2d\xa0\x38\x3f\x13\xeb\x16\x56\x60\xc5\xdc\x32\x34\xb5\ +\xf7\x63\x78\x34\xe1\xa9\xbe\xe8\x1d\x02\x79\x7d\x95\xdf\xfb\x25\ +\x3f\x03\x10\xb2\xd7\xf7\x81\x26\x5b\xa9\x38\x8e\x87\xb7\x1d\x41\ +\x67\xcf\x08\xe6\xcf\x2e\x41\x56\x46\x44\xe9\x16\xbc\x10\x0e\x40\ +\x69\xa5\x9a\xc0\x9c\xaa\x12\x6c\x58\x39\x1f\x4f\x6d\x3f\x80\x64\ +\x2a\xa5\x5e\xcc\x2e\xaa\xed\x58\x91\x47\x12\x72\x28\xd7\x1e\xf9\ +\x52\x90\xa2\xee\x6c\xdf\xe5\x2e\x08\x21\x55\xd9\xd7\x73\x1e\x3e\ +\x4f\xc0\xdf\x45\xa8\x89\x6f\xb8\x09\x85\x34\xd3\xe1\x97\x18\x3a\ +\x25\x99\x14\xb2\x8e\xb2\x48\x45\xd1\x2f\x24\x75\xe1\x09\x85\xac\ +\x30\x87\x56\x16\x84\xed\x1d\xd4\xb5\x2b\x09\x01\x2c\xc5\x1e\x2d\ +\x06\x7a\x7a\xfb\xf0\xca\xeb\xae\xc2\xd0\x48\x1c\xcf\x1f\x3e\x5d\ +\x6f\x0d\x34\xba\x58\x40\x7c\xb2\x65\x80\x31\x85\xe8\x6f\xb7\xfe\ +\x62\xc5\x1b\x90\xd3\xf0\xba\xf7\xbe\xf9\x76\xaa\x28\x2d\xa7\xa9\ +\x30\xfb\xa6\x5b\x09\xe7\x4c\x1e\x37\x39\x70\x30\xf8\x38\xd3\x62\ +\xe4\x65\x67\x60\xe3\x92\x2a\xac\x5f\x5c\x8d\x13\xa7\x07\xd0\xdd\ +\x3f\x22\xed\xe8\x83\x46\xf4\xa1\xf0\x0c\x40\x1f\x20\x53\x47\xdc\ +\x11\x31\x04\x4e\x9e\xee\xc5\x23\xdb\x8e\x82\x88\xb0\xa4\xbe\x14\ +\x96\x35\x31\x15\xa0\x73\x91\x0d\x30\x33\x0a\x72\xb3\x71\xed\x45\ +\xe7\x61\xdb\xbe\x26\xf4\x0e\x0c\x6a\xa3\xc5\x5a\x3b\x8f\x83\xbd\ +\x7d\x6f\x11\x48\xc8\x92\x11\xc8\x9b\x86\x39\x0d\x98\xa6\x7d\x78\ +\xac\xf7\x0f\xd9\xef\xe2\xe8\x59\x9a\xc7\xfc\x54\x84\x46\xa4\x91\ +\x71\x26\xad\x2c\x90\x9f\x43\x26\x82\x49\xef\x48\x06\xf5\x58\xb2\ +\x66\x7d\x17\x21\xc9\x12\xe9\x0a\xb8\xa4\x30\x2e\x53\x29\x13\xe5\ +\x65\x65\xd8\xb0\xfa\x3c\xbe\xe7\xde\x47\x73\x38\x7e\x7a\x0b\xcc\ +\x91\x16\xd8\x7a\x01\xd6\xd9\x74\x00\x9e\xe0\x87\xc8\xa9\xbd\x29\ +\x96\x57\xb5\xf6\x13\xef\x79\x17\x4d\xb7\x41\x9e\xa9\x12\xce\x54\ +\xc0\xc1\xb1\x9e\x73\xbc\x72\x41\x06\x0b\x85\x00\x32\x62\x11\x5c\ +\xb8\xb4\x0a\xf3\x66\x95\x60\x38\x9e\x42\x6b\xe7\x80\xef\x08\x58\ +\x9d\x8d\x97\x87\x87\xf4\xa5\x1b\x0a\x05\x59\x9b\xbf\xb7\x98\xb1\ +\xfb\x48\x1b\xb6\x1f\x68\x45\x79\x71\x2e\xe6\x54\xe4\x7a\x04\xac\ +\x17\xf2\xe6\xe9\x0b\x08\x81\x1b\x2e\x5d\x81\xfe\x81\x38\xf6\x35\ +\xb6\xd8\x23\xd1\xac\x47\x40\x0e\x05\xdf\x94\x89\x5b\x69\xd7\x37\ +\x21\xb8\x3c\x44\xd5\x0b\x14\xce\x94\xa2\x3a\x0c\xa4\x67\x6d\x5e\ +\x26\x22\x7c\xa6\x26\xc9\xdd\x00\xa9\x65\xeb\xae\x41\x17\x5e\x36\ +\x62\x79\x8a\x54\x24\x95\x05\xbe\xda\x14\x3b\x7c\x11\xbb\x36\x10\ +\x9a\x1a\x95\x27\x18\xc2\xec\xe8\x0c\xc8\x2d\x4f\x48\x42\x41\xce\ +\x3b\x12\x0c\xb0\xf0\x87\x9c\x9c\xbf\xed\x3d\x70\x10\x9f\xfe\xd0\ +\x9d\xf4\x95\xef\xff\x4e\x58\xc9\xa1\x36\x8e\x77\xee\x85\xbd\x4b\ +\x60\x52\x2d\xc1\xc9\x3a\x00\x03\xb6\xdc\x57\x2d\x17\xac\xf8\xd7\ +\x7f\x7c\xd3\x5b\xf2\xd6\xae\x58\xa2\x2c\xd4\x9c\x0a\x09\x67\x32\ +\xd9\xc0\x78\x69\xfd\x58\x84\xa3\xa9\x88\x74\x4e\x9e\x8e\x6c\xff\ +\x47\xca\x04\x8a\xf2\x32\xb1\x7a\x7e\x05\x2e\x58\x36\x1b\x47\x4e\ +\xda\x60\xa1\x2c\x36\xaa\x4c\xb6\x29\x32\xd6\x1c\x5c\x33\xad\x24\ +\x02\xf6\xf1\x11\x02\x06\x86\xe3\xd8\xbc\xf3\x18\x8e\xb5\xf6\x60\ +\xc5\xbc\x2a\x44\x23\x86\x04\x62\xbd\xb0\xe9\x80\x69\x32\xd6\x2d\ +\xaf\x47\x4d\x65\x19\xb6\xed\x3d\xea\xb0\x1c\xd5\xa0\x4e\x24\xed\ +\xe0\xf3\xb6\x03\x0b\x55\x80\x43\x38\x60\x9e\x64\xd5\x2e\xa9\x87\ +\x05\xa9\xbb\x08\x01\x65\x36\x00\x12\x21\x88\x9d\xd9\x04\x17\x78\ +\xb4\x19\x42\xd2\x4c\x03\xfc\xba\x9c\x9d\xb2\x43\x59\x43\x8e\xa0\ +\x42\x12\x39\x35\x9b\x4b\x29\x56\x7a\xfb\xca\x4c\x43\x70\x75\x39\ +\x24\x45\x61\x45\xbc\x84\xf4\x25\x25\x9a\xb3\x00\x63\x68\x78\x04\ +\xab\x96\x9f\x87\xca\x8a\x0a\x3c\xbe\xe5\x40\x35\x86\x8f\xfd\xc5\ +\x29\x03\x46\x27\x93\x05\x4c\xc6\x01\x10\x80\x0c\x00\x65\x94\x51\ +\x72\x79\x66\xc9\xb2\xd7\x7c\xe1\x23\x1f\x42\xc4\x88\x4e\x8b\x21\ +\x4f\x57\x16\x31\xd6\x73\x4e\x86\x8e\x3c\x55\x67\xa4\xff\xb6\x98\ +\x91\x11\x8b\x60\xe3\xb2\x59\x58\xb7\xb8\x1a\x7d\x43\x71\xb4\x9c\ +\xee\x77\x36\xf7\x92\x92\xd5\xca\x9d\x03\x95\x48\x23\x39\x0c\x69\ +\x15\xb6\x1b\xfb\x22\x44\x68\xef\x1a\xc0\x63\xdb\x8e\x60\x34\x91\ +\xc2\x9a\xc5\x15\x70\x35\x18\x5f\xe8\x6c\xc0\xb4\x18\xb5\xd5\xa5\ +\xb8\x70\xf5\x22\x3c\xb1\x65\xaf\x3d\x67\x21\x47\xe4\x31\x53\x78\ +\x04\xf6\xfd\xf9\x03\x57\xa4\xf5\xe1\xf5\x01\xfd\xf0\xa7\x53\xdd\ +\x28\xd4\xe5\x28\x7a\x83\x81\xd2\xfd\xd6\x77\x06\xaa\x78\x4f\xf8\ +\xab\xa5\xb9\x57\xdf\x95\x98\x8e\x20\x40\xc1\x52\x10\x00\xde\x71\ +\xfb\xeb\xf0\xfd\x5f\x6d\xca\x33\x87\x4f\xed\x81\x39\x72\x0c\xfe\ +\x1e\x81\x69\x77\x00\x2e\xf3\x6f\x8e\x51\xb2\xe6\x9f\x1a\xea\x17\ +\xd6\xbd\xee\x15\x37\x20\x6c\xa6\x7d\x22\xe9\xf9\xd9\xd8\x8d\x37\ +\x99\x29\x43\xf9\x75\x27\xaa\x55\x30\x95\xc7\xc9\xbc\x88\x8c\xa8\ +\x81\xb5\x8b\x2a\xb1\xbc\xbe\x02\x43\xf1\x24\x4e\x75\x0d\xfa\x2d\ +\x42\x37\x7a\x90\x13\x55\x1c\x76\x9b\x3f\x75\xc6\xea\xe6\x73\x12\ +\xde\x3e\x04\xb7\x5c\x4d\x99\x16\xf6\x1f\x6b\xc7\xe3\x3b\x8e\xa3\ +\xaa\x34\x1f\xd5\x65\xb9\x30\xad\x17\x36\x1b\x70\xdb\x6a\xb9\xd9\ +\x99\xb8\x72\xe3\x0a\xec\x3f\x7a\x12\x9d\xdd\xfd\x92\xb2\xaf\x3c\ +\x3a\x9b\x6e\xa8\x46\xed\xaf\xfb\xec\x3a\x96\xc0\x37\x77\xde\x5f\ +\x65\xfe\x01\x63\xcc\xdf\x87\x6c\x0d\x22\x20\x64\x3f\xa1\x7c\xed\ +\x90\x26\xe2\x21\x67\x19\x1c\x78\xbc\x2e\x82\x12\x26\x0e\x22\x23\ +\xfd\x7a\x56\x48\xa1\xd7\xb1\xfd\xb7\xd3\x5d\x9d\xd3\xd4\xb7\x00\ +\x00\x20\x00\x49\x44\x41\x54\xdd\x78\xeb\x6d\xaf\xc5\x1f\x36\x3d\ +\x85\xce\xfe\x64\x8c\x87\x9a\x9f\x02\xd0\x0b\x5b\x3c\x94\xa7\xd3\ +\x01\x90\xd2\xfb\xcf\x59\x78\xc7\xdf\xbf\xe6\xd6\xac\x95\x4b\x16\ +\x93\x57\xa7\x80\x26\x15\xc9\x27\x83\xd6\x4f\x26\xad\x9f\xee\x29\ +\x43\xbd\xe3\x30\xd5\x2c\xc2\xfd\xe2\x2c\x0b\xc8\xcd\x8a\x61\xd5\ +\xfc\x4a\x5c\xb1\xa6\x1e\xc7\x4e\xf5\xa2\x77\x70\x54\xc5\xfb\xc8\ +\x17\xae\xb4\x09\x44\x0c\x95\x3f\xa7\xa9\xd5\xb8\x2d\x2b\x01\x18\ +\x42\x60\x34\x91\xc0\xd3\xbb\x9b\x70\xb0\xe9\x34\xd6\x2f\xaf\x85\ +\x38\xf7\xe4\x80\x50\x5c\x20\x1a\x31\x70\xc5\x86\xe5\x68\x69\xeb\ +\xc2\x89\xf6\xae\xe0\x44\x21\xd2\xed\x22\x84\x72\x3f\xcb\xe9\xb2\ +\x34\x78\x14\x96\x66\xb3\x34\x51\xc8\xb2\x80\x47\xc8\xce\x41\x59\ +\x95\x87\x49\x1d\xe7\x56\x67\x1a\x48\xd9\x03\xc8\xca\xf0\x13\x69\ +\xec\x50\xed\x1c\x64\x29\xb3\xc0\x16\x24\x7f\xb4\xd8\xa5\x00\xbb\ +\x17\xb8\x87\x6d\xc0\xc7\x2e\xfa\x06\x06\xb0\x72\xf9\x52\xe4\xe7\ +\x17\xf0\xc3\x9b\x77\xe4\x62\xf8\xe8\xc3\x00\x3a\x1d\x4e\xc0\xb4\ +\x3b\x80\x0c\x00\x15\x88\x16\x5c\x80\xac\xfa\x57\x7d\xf3\xdf\x3f\ +\x43\x3b\x9a\x7b\x51\x9c\x13\x43\x76\x4c\xc0\xe2\xa0\xdc\xd5\xd9\ +\xae\xcf\x27\x9b\xd6\x4f\x77\xe7\x60\xea\x00\xa7\x1d\xb1\x0c\x21\ +\x70\xc1\xb2\x1a\xac\x5e\x50\x0d\xd3\xb4\x70\xac\xb5\x1b\x42\xa1\ +\x8d\x4a\x10\x97\xd2\x49\x70\x1c\x02\xc3\x5b\xd7\x65\x93\xe1\x59\ +\x01\xcb\x3b\x7b\x87\xf0\xc0\xd3\x07\x30\x30\x14\xc7\xca\x85\x55\ +\xca\x77\xf4\x42\x3a\x82\x8b\xd7\x2c\x44\x45\x49\x11\x9e\xd8\xb6\ +\x17\x91\x88\xa1\x24\xbe\xaa\x31\x0a\x65\x32\x10\x8a\xf2\xaf\x0b\ +\xe4\x0b\x2f\x3f\x25\x62\xa5\xab\x40\xa1\x17\x05\x6b\x4a\x41\x0e\ +\xb8\xe6\x8a\x80\x28\x4e\x81\x94\xed\x47\xee\xdc\x01\xb1\x5a\x36\ +\x90\xde\xe3\x97\x5b\x8b\x90\xfb\xfa\x7a\x54\x0f\xc7\x05\x64\xf4\ +\x92\x90\x7e\x30\xca\x30\x04\x0e\x36\x36\xe2\x8b\x9f\x78\x1f\x7d\ +\xf1\x9b\xff\x93\x8d\x64\xc7\x0e\x58\xf1\xe3\x93\xe1\x04\x4c\xd4\ +\x01\xb8\x82\x9f\xb3\x8c\xb2\x8d\x9f\xb8\xee\xaa\xeb\xcb\x2f\x38\ +\x7f\x23\x36\xed\x3b\x85\xad\xcd\x3d\x68\xee\x1e\x45\x44\x10\x0c\ +\x21\x90\x93\x61\x04\xf6\xae\x4d\x24\x42\x9e\x8d\x25\x1a\x67\x5b\ +\x82\xec\xcc\xe8\xc8\x3e\x8f\x20\x3b\x33\x82\xf3\xe6\x95\x63\xc3\ +\xd2\xd9\xe8\x1b\x8a\xa3\xab\x6f\x18\xa6\xc9\x30\x1c\x41\x09\x4f\ +\x79\xd6\xd1\xd9\x52\xfa\xd0\x0a\x93\x50\xa2\x16\x3b\xe0\x98\xc9\ +\x16\x1a\x4f\x9c\xc6\x63\xdb\x8e\xa0\xb6\xaa\x18\xe5\x45\xb9\x67\ +\x77\xdf\xf4\x04\x6e\x16\x03\xf5\xb3\xcb\x70\xc1\xaa\xc5\x78\xf6\ +\xf9\x43\x88\x27\x12\x5e\x84\x03\xe0\xed\x22\x04\x3b\x19\x90\xbb\ +\x74\x44\x92\x6b\xf3\x53\x79\xcb\x79\xff\x36\xf6\xee\x2e\xfa\x51\ +\x25\xc0\x21\x6d\xf4\x95\xa6\xf9\xb4\x52\x8d\xd2\x50\x7f\x95\xa0\ +\xa6\xa9\xfd\xca\x29\xb9\x02\xf6\x49\xd6\x1b\x0a\x00\x62\x0c\x35\ +\x64\xa8\xcf\x45\x3a\x6f\x80\x7c\x92\xd1\xd0\xd0\x10\x6e\xba\xee\ +\x5a\xb4\x9e\xee\xc5\xc1\x96\xfe\x6a\x1e\x6a\x7a\xc0\xe9\x06\x4c\ +\xa8\x0c\x98\xa8\x03\x88\x02\x28\x82\x91\xbd\x3a\x52\xb4\xfc\x1d\ +\x1f\x78\xdb\x5b\x90\x34\x72\x70\xbc\x6b\x18\x51\x21\x30\x9c\x48\ +\xe1\x78\xd7\x30\xf6\x9f\x1a\xc0\xae\x13\xfd\x00\x80\x8a\xfc\x0c\ +\xe5\x83\x99\x4c\x9d\x1d\x16\xe5\xcf\x66\x16\xf1\x42\xd3\x91\x85\ +\xb0\xc1\xb2\xcc\x58\x14\x2b\xe7\x57\xe2\xca\x75\x0d\x38\xdd\x3b\ +\x84\xd6\xce\x7e\x7f\xc2\x8d\xc9\x5b\xa3\xc5\xd2\xce\x02\x79\xa7\ +\x1d\x74\x84\xdd\x59\xe6\x21\x88\x90\x4c\xa4\xf0\xd4\xee\x63\xd8\ +\x71\xa0\x05\xeb\x97\xd7\x21\x62\x18\x2f\x68\x36\x60\x59\x8c\x82\ +\xbc\x1c\xbc\xf2\xca\x75\x78\x6e\xd7\x11\xf4\x0d\x0e\x6b\x9b\x7f\ +\xc9\x26\x45\x49\xa2\x61\x6a\xba\x4e\x4a\x1b\x91\x1d\x4c\x40\x78\ +\xdb\x85\xd4\x94\x42\x9e\x4b\x60\xf6\x49\x3e\x1e\x95\x97\xd9\xaf\ +\x27\x58\xd7\x06\x60\x75\x44\x89\x35\x30\x50\x9b\x1c\xf4\x97\x87\ +\xf8\x2b\xc9\x3c\xa1\x14\x9d\x6e\xec\x3d\x8e\x02\xf7\xab\x28\xa8\ +\x24\x60\x02\xff\xdc\xd9\xb2\xb0\x78\xc1\x02\xac\x58\xb2\x10\xbf\ +\xbd\xff\xd9\x72\x6b\xf0\xf8\x63\xe0\x64\x2b\x26\x38\x26\x3c\x11\ +\x07\xe0\xa6\xff\x55\x22\xaf\xe1\x46\xc4\x4a\x36\x7c\xfc\x5d\xef\ +\xc4\x53\xc7\x7a\x30\x9c\x32\xd5\x30\x44\x80\x69\x59\x68\xe9\x19\ +\xc1\x8e\x96\x3e\xb4\x74\x0f\x63\x30\x9e\x42\x5e\x46\x14\x79\x99\ +\xf6\xf2\x83\x74\x3a\x78\x67\x73\x89\xc6\x0b\x29\x41\x36\x91\xc7\ +\xc9\xe9\xb1\x10\x76\xbb\x67\xdd\xe2\x2a\xac\x5d\x3c\x1b\x51\x43\ +\xa0\xf1\x64\x97\xd3\x96\x42\x5a\xa7\x2e\xb3\xc5\x3c\x5d\x3c\x39\ +\xa2\x38\xe5\x41\xff\xd0\x28\x1e\x7c\x7a\x3f\x06\x86\xe2\x58\x3e\ +\xbf\xc6\x39\xdf\x73\xef\x08\xdc\x8b\x9d\x19\xb8\x62\xe3\x0a\x24\ +\x12\x49\xec\x3f\xda\x02\x43\x08\x7d\x50\x4f\xfd\xdc\xd8\xef\x8f\ +\x3b\x79\x81\xf6\x19\xfa\x94\x5c\xe1\x31\x0f\xc9\xa9\xff\x83\x43\ +\x3b\x0a\x43\xcf\x91\x01\x63\xe1\x67\x53\x42\x8a\xd2\x80\xbe\xdc\ +\x54\x55\x7b\x92\x97\xaa\xba\xc2\xa4\x6e\x3d\x4f\x2e\xf9\x48\x20\ +\xc8\x38\x04\x6b\xa3\xe2\xc2\xc7\x2a\x84\x2b\x53\xc6\xde\x77\xaa\ +\x53\xc5\x9b\x9a\x5b\xf0\xde\x3b\xff\x01\xff\xf9\x5f\xbf\x02\x71\ +\xb2\x99\xe3\x9d\xfb\x9c\x2c\x20\x35\x1d\x0e\xc0\x45\xff\x6b\x38\ +\x67\xde\x5b\x2e\xde\x70\xe9\xac\x1b\xaf\xbe\x9c\x1e\x39\x70\x1a\ +\x11\xd2\x16\x68\x38\x1f\xa7\xdb\xaf\x1c\x49\xa4\xd0\xd6\x37\x8a\ +\x9d\x2d\x7d\x68\x3c\x3d\x8c\x98\x21\x10\x8b\x1a\xc8\x30\x84\x67\ +\x20\xe9\x64\xb2\x5f\x08\x22\xd1\x54\xe7\x03\xce\x84\xb7\x30\x96\ +\x1e\x41\x76\x66\x04\x8b\xeb\xcb\x70\xc5\x9a\x79\xe8\xea\x1b\x46\ +\xcf\xc0\x30\x92\x29\x53\x11\xb6\x50\x68\xb6\x52\x48\xd1\x25\xb8\ +\x64\x92\x91\xc5\x8c\xa3\x27\x3b\xf1\xc0\x33\xfb\x50\x5f\x53\x82\ +\xb2\xa2\xbc\x17\x0c\x13\x70\xd3\xd9\x95\x4b\xea\x91\x99\x91\x81\ +\xfd\x8d\xcd\xb6\xb1\xea\x9b\x7a\xbc\x88\xed\x00\x62\xec\x02\x66\ +\x92\x96\xa0\x6b\x8c\xd2\x1e\x40\x97\xb8\x67\xeb\x0c\x4a\x92\xee\ +\x82\x24\x99\x31\x6d\x01\x09\x3b\x42\x20\xca\x72\x50\x59\x05\xd8\ +\xdf\x0a\x05\x08\x9f\xde\xec\x91\x79\xc8\x53\xfc\xf1\x5c\xb6\x6b\ +\x2b\x6e\xe9\x21\x48\x3a\x56\xd7\x06\x64\xe5\x78\x96\x84\x0c\x84\ +\x3b\x38\x25\xfc\xf9\x86\x93\x6d\x6d\xb8\xf9\x86\x1b\x70\xf0\xe8\ +\x09\x3e\x72\xac\xc5\xc2\xc8\x89\xc7\x9c\x6e\xc0\xb8\xd4\xe0\x89\ +\x38\x00\x8f\xfc\x83\xbc\xc5\xef\xfd\xe0\x3b\xff\x29\x36\x48\x79\ +\x38\xd9\x3b\xac\x0c\x30\x78\xd3\x4f\xda\x0f\x11\x60\x08\x42\x3c\ +\x65\xa2\xa9\x6b\x18\xfb\xda\x06\xb0\xe7\x64\x3f\x92\x96\x85\xaa\ +\x82\x2c\x18\x82\x54\x21\xdd\x33\xac\xcf\xa7\x32\x65\x78\xb6\x79\ +\x0b\x53\x1f\x71\xb6\xbb\x06\x11\x43\x60\xe5\x82\x6a\x5c\xbe\xa6\ +\x01\x29\x93\x71\xa8\xe5\xb4\x23\x5e\x2a\xa5\x83\xec\x1b\x3e\x33\ +\xab\xc6\xa3\x4c\x9c\xf9\xaf\x65\x9a\x16\x9e\xd9\xdd\x84\x67\x9e\ +\x3f\x8a\x75\xcb\xea\x90\x11\x8b\xbc\x80\xd9\x00\xb0\xa0\xae\x06\ +\xeb\x96\xcf\xc7\x03\x9b\x77\x38\xd0\x1e\x29\x99\x0c\x74\xf9\x2d\ +\x86\x36\x12\x4c\xa1\xc4\x29\x52\xc8\x16\xda\x6a\x32\x6d\xc7\x80\ +\x67\xc9\xb2\xbe\xbf\x36\x77\x4c\xba\x00\x81\x42\x4b\xa6\x80\x2a\ +\x19\x24\x8d\x04\x49\x2f\xcd\xeb\x30\xe8\x5b\x97\xfc\xcc\xdf\x9f\ +\x28\x54\x49\x61\xac\x48\xa5\x19\x42\xa0\xb0\x30\x1f\x17\xaf\x5f\ +\x47\xbf\xbd\xef\xf1\x62\x0c\x1f\xfd\x03\x00\x77\x7f\x80\x75\x26\ +\x0e\xc0\xe5\xfe\x97\xc0\xc8\xde\x10\x2b\x5d\xf1\xaa\xcf\xbc\xff\ +\xbd\xd8\xd6\xdc\x8d\xc1\xb8\x19\x92\x28\xd0\xb8\x3f\xcc\x04\xd3\ +\x02\x4e\xf6\x8e\x62\x5b\x93\x0d\x20\x8e\x26\x4c\x64\x46\x05\xf2\ +\xb3\x8c\x40\x4a\x7a\x36\x54\x80\xce\xb5\x04\xd9\x99\x38\x1f\xdd\ +\x21\xac\x98\x57\x8e\x8b\x56\xd4\x23\x12\x11\x38\xde\xda\x0b\xd3\ +\xb2\x7c\x59\x2e\x19\xfc\xf2\x14\x7b\xfd\xeb\x54\x28\x53\x68\xc2\ +\xe3\xbd\x0f\x8f\x26\xb0\xe9\xe9\xbd\x18\x1d\x4d\x62\x71\x43\x35\ +\x0c\x41\xde\x70\xd7\xb9\xbe\x15\xe6\xe5\xe0\x9a\x8b\xd7\x60\xcf\ +\xe1\x26\x74\xf5\xf4\x2b\xc2\x2b\xfa\xee\x00\x19\x2b\x0f\x9d\x10\ +\x94\xda\x7a\xea\xfc\x7e\x50\xa8\x55\x05\xe5\x58\x7d\x5e\xa8\xc7\ +\x05\x3e\x6b\x22\x28\x2a\x40\x01\x3d\x00\xf6\x75\x0a\xf4\x3d\x81\ +\x21\xa5\x89\xb7\x33\x41\x69\x29\xaa\xdc\x00\xf9\x7d\xda\x0a\xdc\ +\x02\x77\xfc\xfd\xeb\xf0\xf5\x9f\xfd\x31\x66\x0e\x34\x3d\x07\x4e\ +\x36\x01\x18\x9c\x0e\x07\x90\x09\xa0\x4a\x14\x2d\x7f\x53\xfd\xdc\ +\x65\x4b\x6e\xb9\xfe\x3a\x6c\x69\xea\x81\x05\x4d\xc2\x98\x30\xa9\ +\x1f\x21\x6c\x3a\xe7\x48\xd2\x44\x6b\xef\x28\x76\x9f\xe8\xc7\xfe\ +\xb6\x41\x44\x23\x06\x72\x32\x0c\x18\x4e\x2d\x2c\x6f\xd3\x39\x13\ +\x43\x7e\x31\xa4\xf5\x67\xd2\x62\x14\x0e\x20\x66\x31\x90\x11\x33\ +\xb0\xa8\xb6\x1c\xd7\x6e\x58\x88\x9e\xc1\x61\x74\xf6\x0c\x22\x95\ +\x32\x25\xe9\x73\x4d\x84\x23\xc0\x2a\x63\x49\x69\xd7\x57\x37\x3e\ +\x7a\xb2\x13\x7f\x7a\x74\x27\xea\x6a\xca\x50\x56\x94\x2b\xc9\x79\ +\x9d\x3b\x4f\xc0\x00\x62\xd1\x08\x6e\xbc\x7c\x25\x9a\x5b\xbb\x70\ +\xf2\x54\xa7\x86\x84\x87\x6d\xd5\xd1\x85\x34\x54\x42\x8d\xce\xe0\ +\x0b\x43\xd9\x11\xc2\x37\xd0\x85\x48\x20\x95\x01\x8a\x74\x17\x82\ +\x9f\x75\x18\x01\x08\x08\x2e\x41\x21\x85\xb2\xec\x3b\x66\x5f\x03\ +\x80\xbc\x75\xe5\xfe\x86\x2a\x69\x9b\x92\xb0\xcf\x23\x99\x4a\xe1\ +\x35\x37\x5e\x8f\x3f\x6c\x7a\x0a\x5d\x7d\xc3\xc3\x3c\xd2\xf6\x2c\ +\xfc\xd9\x80\x29\x3b\x00\x8f\xfd\x27\x0a\x97\xbf\x63\xdd\x79\xab\ +\x8b\x57\xac\x58\x83\x7d\x6d\xfd\xd3\x7a\x51\x90\xc3\x73\x4e\x9a\ +\x16\x8e\x77\x0d\x63\xdf\xc9\x01\xec\x6f\x1b\xc4\x50\x3c\x85\x9a\ +\xe2\x4c\x44\x0d\x97\x4d\x37\xf6\xe8\xeb\x8b\x6d\xca\x70\xf2\x12\ +\x64\x63\xef\x01\xa4\x80\x50\x00\x70\xde\xbc\x6a\x5c\xbc\x7a\x2e\ +\xf2\xb2\x63\xd8\x75\xa4\x0d\x86\xc6\x23\xf0\x10\x6c\xf2\x09\x44\ +\x2c\x6d\xaa\xf0\x5e\xd3\x1b\xa9\x25\x3c\xb7\xe7\x18\xb6\xec\x3d\ +\x86\xd5\x8b\x6b\x91\x9d\x15\x53\x24\xc9\xce\x89\x13\x60\x46\x32\ +\x05\xac\x5f\xb9\x08\x35\x95\xa5\x78\x6a\xfb\x3e\x0f\x1c\x64\x79\ +\xb8\x86\xf5\x85\x2d\x3e\x4a\xcf\xfa\x7a\x70\xf6\xe3\xaa\x22\xf1\ +\xeb\x72\xff\x95\x3d\x7f\x5a\x1a\x0e\xf5\x73\x57\xfa\xf8\x14\x54\ +\x0f\xf2\xff\x1d\x64\x00\x42\xd1\x01\x94\x78\x08\x92\x0b\xd4\xfb\ +\x00\x5e\x99\xa1\xf3\x17\xa4\xd3\x1b\x1c\x1c\xc0\x6d\xaf\x79\x0d\ +\x9e\xdb\xb9\x1f\x07\x8f\xb5\x65\xf0\x60\xe3\x5f\x9d\x32\x60\x4c\ +\x1c\x60\x3c\x07\x10\x01\x50\x00\x8a\x2e\xe4\xac\xb9\xb7\xbd\xe5\ +\x75\xaf\xcb\xe8\xa5\x02\xea\x1d\x49\xfa\x83\x12\xd3\xf5\x23\xf5\ +\x62\x19\x36\xad\xb5\xad\x3f\x8e\x67\x1b\x7b\xd0\xdc\x35\x8c\x94\ +\xc9\x88\x18\x72\x99\x70\xee\xc1\xc1\x73\x21\x41\x36\x15\xe7\x13\ +\x31\x04\xe6\xcf\x29\xc5\xd5\xe7\x2f\x04\x40\x68\xeb\xea\x47\x3c\ +\x61\xc2\x70\xb7\xde\xba\x1a\xfc\x9e\x5c\x19\x79\xc2\x15\xee\x9c\ +\x81\x60\xa1\x44\xa3\xe1\x91\x38\xee\x7b\x62\x17\x46\x46\x93\x68\ +\x98\x5d\x8e\x8c\x98\x71\xce\x1c\x81\x77\x1d\x30\x63\x4e\x75\x19\ +\x96\xcd\xaf\xc3\xf6\xbd\x87\x91\x48\xa4\x6c\x6c\xde\x5d\x4e\xea\ +\xbc\x1f\x01\x55\x1b\x40\x38\x74\x6a\x25\xcd\x0e\x11\xe0\x08\xc8\ +\x7a\x29\x3d\x79\x84\x90\x78\xec\xee\x80\xdb\x2e\x54\x24\xce\xf4\ +\x72\x02\x21\x3c\x04\x09\xe4\x53\x00\xc5\x00\xdf\x80\xd2\xee\x0c\ +\xf4\xc9\x46\x6a\xe9\x62\x99\x16\x8a\x8b\x0b\x51\x5f\x5b\xcb\x7f\ +\xbc\x7f\xb3\x81\x91\xe6\x07\x01\xeb\xd4\x78\x38\x80\x31\xb1\xfa\ +\x3f\x63\x05\x32\x6a\x5f\xf3\x99\x0f\x7e\x80\x9e\x6b\xee\xf7\xb5\ +\xeb\xa7\xd5\x03\x04\x3d\x82\x20\x42\xc4\x20\x8c\xc4\x4d\xb4\x74\ +\x0f\x63\xcf\x89\x7e\x3c\xdf\xd2\x0b\x41\x84\xa2\xdc\xa8\x8d\x86\ +\x93\x9f\x0a\x4d\x84\x8e\xfc\x42\x09\x92\xa6\x4b\xeb\x27\xab\x78\ +\x14\xee\x7c\xec\x0c\xc9\x30\x04\x16\xd6\x96\xe3\x9a\x0d\x0b\x11\ +\x4f\xa6\x70\xa2\xa3\x17\x96\xc9\x3e\x09\xc6\xab\x6f\x7d\x01\x0e\ +\x72\xf0\x02\xf6\xc0\x2c\xf6\x4a\xaf\x88\x21\xd0\x74\xf2\x34\xfe\ +\xb2\xf9\x79\xd4\xd5\x94\xa2\xac\x28\xff\x9c\x96\x05\xee\xfb\x2a\ +\x29\xcc\xc7\x35\x17\xaf\xc1\x53\xdb\xf6\x62\x24\x1e\xf7\xc5\x41\ +\x40\x69\xd6\x71\x93\x24\x34\x44\x41\x76\xaa\xca\xb6\x09\x49\xdd\ +\xa1\x89\x76\x90\xba\x1d\x48\x63\xf8\xf9\x43\x4a\x1a\x19\x88\x82\ +\x8a\x45\x63\x3a\x8d\x90\x7d\x86\xaa\xb4\xba\xcf\x23\x50\x66\x13\ +\x9c\xc7\x75\x76\xf7\xe0\x5d\x77\xbc\x89\xbe\xf6\x9d\x5f\x66\x20\ +\xd1\xf2\x18\x38\xd5\xe2\xe0\x00\xe6\x54\x1c\x80\x70\xea\xff\x4a\ +\x91\x3f\xef\x96\xd9\x0d\xab\x56\xde\x7e\xeb\xab\xb1\xfd\x78\x4f\ +\xda\xa9\xa7\xb3\x52\x11\x4a\xe9\x1b\x09\x9b\x39\xd7\xdc\x39\x84\ +\xdd\xcd\xbd\x38\xd8\x36\x80\xbe\xe1\x24\x2a\x0a\x32\x91\x9d\x31\ +\x31\x3a\xf2\x78\x86\x35\x55\x83\x9c\xca\x50\xd3\x64\x86\xa8\xd2\ +\x61\x18\xe9\x56\x80\x2d\x9d\x5b\x89\x8b\x56\x35\xa0\xbc\x24\x17\ +\xbb\x0e\xb7\xda\x9f\x8b\x90\x57\x18\xb3\xa4\x40\xab\x5d\x80\x7e\ +\xf3\xca\xeb\x65\x3f\xbd\xab\x11\x3b\x0f\x34\x61\x7e\x5d\x25\x8a\ +\xf3\xb3\x60\x9e\xc3\xb2\x80\x88\x60\x18\x06\xae\xba\x70\x35\x7a\ +\xfb\x07\xd1\xd8\xdc\xea\xf3\x05\x58\x92\x17\x53\x52\x76\xd2\x24\ +\xdc\xd5\x4d\x3e\x2c\x89\x72\x90\x3e\x09\x48\x3a\x71\x08\xa1\x1f\ +\xb2\x2c\xe4\xea\x55\x16\x92\x51\xaa\xc4\x21\x06\xa4\xd4\xdf\x6f\ +\x31\xca\xc4\x20\x52\x52\x7e\x7d\xed\x78\x60\x0f\xa5\x52\x99\x10\ +\x7a\xfb\xfb\xf0\xb6\x37\xbe\x1e\xbf\xb9\xff\x49\xea\xef\xeb\xed\ +\xe4\x78\xe7\x76\x8c\xa3\x11\x30\x9e\x03\xc8\x01\x50\x23\x8a\xce\ +\xfb\x97\x5b\x6f\x7c\x75\x41\xfd\xdc\xc5\x38\x72\x7a\x20\x24\x9d\ +\xc2\xd9\xfb\x09\x00\x2c\xfe\x12\xc5\x78\xca\xc2\xa9\xde\x11\x3c\ +\xd7\xd8\x85\xc6\xf6\x41\xbb\xe5\x48\x84\xfc\xec\x88\xb6\xb9\x67\ +\xe2\xe0\xe0\x74\xac\xe2\x3a\xd3\x59\x88\xc9\x3c\x2e\xdd\x1e\x40\ +\x76\x4a\x83\xda\xca\x62\xbc\xe2\xe2\xa5\x30\x99\x71\xba\x67\x10\ +\xc3\xa3\xf6\x92\x13\x75\x63\xad\x5a\xbf\x06\x13\x41\xfb\x75\x06\ +\x87\xe2\xd8\xf4\xd4\x2e\x0c\x8f\x26\x31\xbb\xaa\x04\xd9\x99\xd1\ +\x73\x8a\x0f\x10\x11\x2e\x58\xb3\x00\x11\x23\x86\xbd\x87\x9b\x1c\ +\xb1\x0e\x27\x63\x61\x3f\x9b\xf1\x91\x77\x35\x8a\x32\x3b\x62\x1d\ +\x44\x0a\xa1\xc7\xd6\x06\xf0\xe9\xc6\x9e\x7a\xb3\xd4\xbe\x13\xf2\ +\xce\x41\x77\x4e\xc3\x93\x69\x26\xaf\x07\xe6\x73\x13\x7c\xe0\x4e\ +\xd6\x00\x64\x66\x97\xd1\x25\x91\x8c\xd8\x5f\x45\xe6\xe1\x1b\xda\ +\x8e\x03\xef\x7c\x64\x62\x11\xf9\x03\x42\x4e\xc6\xbc\x61\xed\x5a\ +\x58\x2c\xf0\xec\xf3\x47\x8a\x79\xf0\xd8\x9f\x30\x8e\x54\x98\x31\ +\x6e\xfd\x0f\x2c\x89\x14\xaf\xbe\xe3\xbd\x6f\x7e\x13\x9f\x1e\x8d\ +\xd2\x73\x87\xfb\x60\x31\x10\x8b\x90\x3a\xd2\x39\x85\x2c\x1f\xe3\ +\x1e\xe3\x49\x2a\x7a\x2d\x16\x66\x75\x2a\x4c\xc0\xde\xb5\x37\x1a\ +\x4f\xe1\xf8\xe9\x21\xec\x3e\xd1\x8b\xed\x47\xbb\x60\x5a\xf6\x62\ +\x8f\x80\x04\xb4\x06\x22\x4e\xc4\xb0\xa6\x4b\xc8\x74\xac\x68\x3e\ +\x51\xa9\xef\xc9\xec\x01\x74\x1d\x25\x33\xb0\xa0\xb6\x02\x57\x9c\ +\xbf\x10\x59\x19\x31\x1c\x3c\xde\x2e\x13\x4c\xd5\x95\xde\xae\xc1\ +\xd8\xdb\x2c\xfd\xe1\x24\x27\x44\x46\xa3\x02\xc7\x4f\x76\xe2\xe1\ +\x67\xf6\xa0\xa4\x30\x1f\xb3\xab\x8a\xcf\x19\x9b\x90\x88\x90\x32\ +\x81\x05\xf5\xb3\xb0\x6e\xc5\x42\x3c\xfa\xcc\x4e\x5f\x3e\xc1\x11\ +\xf8\x60\x56\x05\x3c\x58\x5f\x2b\x2e\xc8\xd9\xdb\xa8\xd7\xd3\xb2\ +\x16\x1f\x49\xfa\x85\x2c\x91\xa9\x48\x5d\x09\xee\x5e\xf7\x2c\x97\ +\x03\x1c\x94\x1c\x77\xcf\xc1\x59\x99\xee\x92\x79\x48\x6f\xf5\x39\ +\x29\x84\xb7\xa6\x5e\x69\x59\x6a\xe7\x48\xaa\xc6\xe4\xe8\x68\x02\ +\x27\x5a\x3b\x30\xb7\xb6\x16\x1b\xd7\xad\xe2\x7b\xfe\xb0\xb9\xd0\ +\xea\xdb\x7f\x3f\x80\x36\xd8\xb4\x60\x6b\xb2\x0e\x20\x06\xa0\x54\ +\xe4\xd6\x5d\x9d\x91\x37\xe7\xd2\x77\xdc\xf6\x7a\xda\xd2\x3c\x84\ +\xce\x81\x04\x46\x13\x16\xfa\x86\x4c\x0c\x8c\x58\x18\x8e\x5b\x76\ +\xeb\x26\x22\x20\x0c\xa7\xdb\x39\x9d\xe1\x9f\xd5\xd4\x4e\xe8\xc4\ +\x0e\x92\xf5\xd5\xed\x0f\xde\x62\x0b\x2d\x9d\x43\xd8\xd6\xd8\x89\ +\xc6\xf6\x01\xf4\x0e\x25\x50\x98\x1d\x43\x7e\x76\xc4\xa3\x23\xeb\ +\x3a\x06\x93\x29\x15\xce\x16\x56\x10\x66\xf0\x93\x7d\xdc\x78\xb7\ +\x86\xd9\xa5\xb8\x7c\xed\x22\x54\x94\xe6\xe3\x40\xd3\x29\x24\x92\ +\x29\x3f\xb2\xf8\x2e\x21\x58\x0a\x40\xd2\xea\x73\xee\xdd\xba\xb7\ +\x11\x3b\xf6\x35\xa1\xb2\xb4\x10\x95\x65\xf9\x30\xcd\x73\x93\x0d\ +\x30\x33\x0a\xf3\x73\x70\xf9\xc6\x55\x78\x7e\xdf\x11\xf4\x0d\x0c\ +\xd9\x8e\x4a\x07\x86\xc7\x6b\x70\x8f\x75\x0c\xa5\xb9\xcb\x99\x19\ +\xa0\x71\x64\x98\x49\x12\x2c\x21\x99\x6d\xc4\x12\xaa\x4f\x04\xbd\ +\xf7\x40\xf2\x9a\x79\x85\xec\xe0\x66\x28\x04\x21\x0c\x0c\x8f\x8c\ +\xa0\xe3\x74\x37\x5a\x4f\x75\xa0\xb5\xb5\x1d\x6d\x1d\x9d\x18\x19\ +\x19\x05\x83\x71\xdb\x6b\x6f\xa6\xef\xdf\xf3\x47\x98\xc9\xa1\x03\ +\x9c\xe8\xdd\x8f\x31\xa6\x03\x69\x8c\xb7\x9f\x03\x60\xbe\x51\xbc\ +\xfa\x43\xf9\xe5\x4b\x6e\xdb\xfc\xeb\xff\x87\x4f\xfe\xfe\x30\x52\ +\x16\x07\x72\x4d\x06\xc3\x62\x20\x2b\x26\x90\x9f\x63\x20\x33\x2a\ +\x10\x8d\x90\xbf\x58\xd3\xeb\x57\x4c\xf6\xe2\xb0\x00\x47\x55\xc7\ +\xbd\xf8\x98\x9d\x7a\xce\x15\x6b\x74\x87\x3f\xc8\x02\x18\xb0\x9c\ +\x75\xd1\xec\x6c\xf0\x05\x33\x4c\xb6\x90\x4c\x59\x28\xcb\xcf\xc0\ +\x9a\x79\x65\xa8\x29\xca\x46\x71\x5e\xa6\x17\xad\x75\xdc\x60\x3c\ +\x8e\xc1\x78\x29\x79\x98\xe1\x4e\x75\x3a\x71\xb2\x43\x54\x13\x35\ +\x20\x41\x84\x58\x0c\xf8\xc3\xa3\x7b\xf0\xd4\xce\x46\x74\xf6\x0e\ +\x38\xdf\x17\xfb\x6d\x34\x17\x6d\x87\x37\x77\xec\xa7\xbd\x60\x67\ +\xab\x2d\x23\x91\x4c\xe1\xb2\x75\x4b\xf0\xca\x2b\xd6\xa1\x20\x2f\ +\xeb\x9c\x3a\x82\x58\x8c\xf0\xd5\x1f\xfe\x0e\xcf\x3e\xbf\xdf\xc6\ +\x05\xbc\x36\xa7\x25\xed\xf5\x62\xef\x7c\x6d\x32\x9a\xa5\xf4\xd0\ +\xdc\xf7\xc4\xf0\xaf\x2b\x4e\xf3\x7e\x3d\xa1\x51\xf6\x87\x88\x58\ +\x11\x18\xb5\x42\xfe\x0e\x10\x2c\x30\x93\x22\x09\x07\xb6\x94\x56\ +\x1e\xd8\xb2\xf9\x35\x6c\x01\x52\xe6\x6b\x31\x23\x91\x48\x20\x1e\ +\x8f\xa3\xbb\xa7\x1f\x9d\x5d\xbd\x48\xa5\x92\xca\x3a\x7a\xcb\x93\ +\x2f\x67\xf4\x1d\xdf\x8e\x59\xeb\xfe\x01\x7d\xa7\xf6\xfd\xd2\xec\ +\xde\xfe\x9f\x00\x0e\xc3\x56\x0a\xe2\x89\x66\x00\xae\xf8\x67\x35\ +\x67\xd7\xbf\xe1\xfc\x35\x1b\x6a\x36\x9c\x7f\x31\x3d\xb4\xaf\xc3\ +\x93\x22\x52\x00\x08\x27\x55\x4c\x99\x8c\xe1\x51\x0b\x03\x23\x16\ +\x7a\x07\x4d\xf4\x0e\xa5\x60\x59\x8c\x58\x84\x60\x18\x42\xa5\x5b\ +\x4e\xa8\x4e\x60\x75\x51\x82\xb7\x4d\xcb\xa7\x1d\x33\xa4\x95\xca\ +\x0a\x76\x28\x3c\x4f\x2b\x88\x60\x18\x84\x78\xc2\xc4\xb1\xf6\x01\ +\xec\x39\xde\x8d\x6d\x8d\xa7\x31\x12\x4f\x61\x56\x69\x8e\x73\xe1\ +\x4c\x8d\x39\x38\x96\x41\x4e\x46\x4b\x50\x2f\x07\xa6\xf2\xb8\xc9\ +\xa1\xeb\x0c\xd3\x22\xcc\x9b\x5d\x8e\x4b\xd6\x2c\x40\x55\x69\x21\ +\x76\x1d\x6a\x91\x16\x94\xf8\xd1\x8b\x59\xdd\xf7\x27\xa1\x5d\xf6\ +\x45\x24\x04\x5a\xda\x3a\xf1\xd0\xd3\xbb\x20\x84\xc0\xc2\xba\x2a\ +\x65\xcb\xf1\xd9\x2c\x09\x2c\x0b\x38\x7f\xe5\x12\x94\x14\xe6\x63\ +\xc7\xbe\xc3\xf6\xce\x01\xf6\x39\xcf\x72\x3b\x4d\x8f\x7a\x6e\x19\ +\xa9\x72\x25\x14\x49\x5f\x67\xc1\xa7\x5b\xb6\x0b\x8f\xc4\xa6\xe3\ +\x01\x9e\x76\x21\xfb\x7b\x02\x88\x48\xda\x35\xa0\x7f\x4f\xa4\x10\ +\xb3\x3c\x92\x90\x53\x82\x08\x41\x88\xc7\xe3\x68\x3b\x75\x1a\x47\ +\x9b\x4e\xe2\x54\x47\x17\xba\xba\xfb\x30\x38\x32\x0c\xb6\x18\x42\ +\x08\x3f\x93\xf5\x98\xc8\x8c\xe4\xe0\x20\x6e\xbd\xe5\x56\xec\x3b\ +\xdc\xcc\x87\x8f\x36\x0d\x63\xa4\xe5\x61\x87\x0f\x90\x98\xac\x03\ +\xc8\x05\x30\x07\x39\x0d\x6f\xfe\xbb\x57\xdf\x9a\x57\x55\x5d\x8b\ +\xee\xc1\x04\x7a\x86\x92\x48\x9a\xac\xe8\xa4\xeb\xfd\x5b\xcf\x17\ +\x5a\x8c\x91\x84\x85\x9e\x01\x13\x7d\xc3\x26\x86\x47\x4d\x24\x53\ +\xb6\x07\x8c\x45\x84\x3d\xef\xae\x81\x24\x6a\x05\xc0\xb0\x28\x64\ +\x0d\x93\xb4\x72\x86\x28\x2c\x55\x0d\x57\x8d\x25\x69\x09\x85\xc5\ +\x16\x4e\x76\x0f\xe1\xd9\x83\xed\x68\x3c\xd5\x87\xfe\xa1\x04\xb2\ +\x33\x0c\x14\xe5\x46\x9d\x31\xdb\xf1\xd7\x74\x9f\x09\x01\x69\xa2\ +\x33\x0d\x93\x75\x46\x93\x31\x1e\xf9\x52\x9c\x55\x59\x88\x6b\x36\ +\x2e\x43\x79\x49\x3e\x9a\x5a\xbb\x30\x38\x3c\xaa\x38\x6d\x5f\x75\ +\xc8\xc5\x05\xd8\x5e\xd2\xc1\xd2\xc4\x1b\x11\xf6\x1e\x69\xc1\x8e\ +\x7d\xc7\x50\x56\x9c\x8f\x9a\x8a\x02\xa4\xce\x41\x36\xc0\xcc\x68\ +\xa8\xad\xc2\xc2\xb9\xb5\xd8\xba\x6b\x3f\x4c\xd3\x72\xce\x89\xd4\ +\x55\x5e\xf2\xde\x42\x9d\x09\x28\xb5\xe4\xe4\xde\xbf\x72\x8d\x29\ +\x18\x12\x05\xb7\x11\xcb\x39\xae\xbc\x0c\x36\x8c\x6f\xe0\x74\xb5\ +\x84\x10\xf6\xac\x4c\x3c\x81\x9e\xbe\x01\xb4\x9f\xee\xc6\xa9\x53\ +\x9d\x38\x7e\xe2\x14\x5a\xdb\x3a\x31\x38\x3c\x02\xb6\xa4\xcc\x03\ +\x7e\x3b\x92\x19\x9e\x0b\x73\x63\xab\x65\x99\x38\x7f\xdd\x1a\x54\ +\x56\x54\xd1\x03\x8f\x3c\x63\x60\xa4\xe9\x3e\x00\xa7\x61\x8b\x85\ +\x4e\xd8\x01\xb8\x00\x60\x1d\xb2\x17\xbc\xf5\x23\xef\xfe\x27\xaa\ +\x2e\x29\xc0\xda\xba\x02\x5c\xb3\xac\x14\x73\xcb\x73\x10\x31\x08\ +\x09\xd3\x02\x33\x90\x74\x7e\x23\x8d\x43\x70\xfb\xb9\x29\x13\x18\ +\x89\x5b\xe8\x1b\x36\xd1\xd9\x97\xc2\xc0\x88\x85\x94\x8b\x22\x33\ +\xab\xd2\xcd\xfa\xb9\x4a\x35\xbf\xd7\xba\x91\x3b\x03\x01\x6b\xd4\ +\xf7\x74\x49\xf2\x4e\xce\xa7\x6f\x38\xa2\x19\xc3\x89\x14\x5a\xbb\ +\x06\xb1\xad\xb1\x03\x3b\x8f\x75\x21\x22\x08\xd9\x19\x51\xc4\x22\ +\x06\x0c\x83\xa4\x94\x8e\xa6\x9c\xd6\x4f\x65\xc4\x79\xb2\x8a\xc4\ +\x67\xda\x6f\x07\x80\x9a\xf2\x22\xdc\x70\xf1\x62\x64\x67\x66\xa1\ +\xad\xb3\x07\xc3\xa3\x71\x2f\xc3\x83\xab\x74\xeb\xcc\xd4\x0b\x77\ +\xf5\xb6\xf4\xbd\x18\x42\x60\x68\x64\x14\x9b\xb7\xed\x43\xf3\xa9\ +\x6e\x2c\xac\xaf\x41\x56\x66\x54\x25\xd4\x9d\x2d\xbe\x40\x51\x3e\ +\x2e\xdf\xb0\x1a\xcf\xed\xda\x87\x91\xd1\xb8\x36\xc5\x87\x50\x63\ +\x07\x10\xba\x10\x04\x21\x8e\x42\xae\xd7\x83\xfa\x85\x9a\xfa\x2f\ +\x82\x5c\x7f\x7f\xd2\xd3\x42\x32\x99\xc2\xc0\xe0\x10\x5a\x4f\x75\ +\xe0\xc8\xb1\x13\x68\x3d\x75\x1a\x3d\xbd\x03\x18\x19\x19\x45\x32\ +\x99\x74\x94\x1c\x24\x4d\xc9\xff\xcf\xde\x9b\xc7\xc9\x51\x5d\x67\ +\xff\xdf\x5b\x55\xdd\x3d\x3d\xbb\x34\x9b\x66\x34\x33\xda\x77\x84\ +\x90\xc4\x26\x56\xb1\x0b\xb1\x23\x83\x31\x36\x26\x06\x3b\xb6\xe3\ +\x98\xd7\x71\x6c\x9c\x10\xc7\x49\x5e\xc7\xf1\x9b\x1f\x89\x83\xd7\ +\x78\x03\x63\x0c\x36\x98\x7d\x11\x8b\x40\x80\x00\x09\x24\x81\x10\ +\x08\xed\xfb\x48\x1a\x8d\x34\xfb\xda\x5b\xd5\xbd\xbf\x3f\x6a\xe9\ +\xaa\x9e\x9e\x7d\x04\x22\xa1\x3e\x9f\x51\xb7\xba\xab\xba\xab\xab\ +\xee\x3d\xf7\x9c\xe7\x9c\xf3\x3c\xf8\x32\xb7\x3e\xf6\xa2\xcc\x0a\ +\x42\x09\xd4\x54\x55\x71\xed\xe5\x97\xf0\xeb\xfb\x9e\xca\x23\xb6\ +\xfb\x71\xe0\x68\x5f\x40\x60\x5f\xc3\x27\x02\x54\xa3\x47\x97\x86\ +\xab\x2f\xff\xc9\xdb\x4f\xff\x99\x54\xaa\xf7\xc0\x53\x4a\x91\xb4\ +\x14\x49\x53\xb2\xe5\x50\x27\xef\xec\x6b\xe3\x50\x6b\xc2\x9b\x58\ +\xfd\x59\x7e\xa5\x82\x93\xdc\xa5\x87\xd6\x35\x28\xc8\xd5\x29\x88\ +\xea\x44\xc3\xc2\xcb\xed\x2b\xa4\xef\x42\xd8\xa2\x0c\x42\x4a\x6f\ +\xb5\x0e\x7e\xa6\x0d\x4c\xda\x3f\x57\xa5\x55\xe3\x5c\x79\x2a\x0f\ +\x08\xcc\x16\xe7\xd9\x07\xda\x5e\x8a\xc1\x8c\xaa\x62\x16\xcf\xab\ +\x26\x27\xac\x63\xc9\x60\x2a\x70\x34\xe2\xfa\xbe\xf4\xfc\x06\x6a\ +\x48\x3a\x96\x3a\x80\xae\xf7\x93\x32\x2d\xf6\x1c\x3c\xca\xaf\x1f\ +\x79\x85\x54\x32\x19\x20\xac\x48\xc7\xb8\xd2\x77\x17\x7d\x71\xb2\ +\x93\x7e\x30\x74\x8d\xc5\xa7\xcf\xe5\xba\x4b\x4e\xc7\xb4\x86\x83\ +\x03\x0d\x7d\xb3\x2c\xc9\x4f\xee\xfd\x33\xef\x6e\xde\x8e\xae\x19\ +\xb6\xe1\x92\x69\xcc\x48\xfa\xc4\x3a\x94\x0c\x62\x49\x42\x29\x7b\ +\xf4\xb8\xf1\xa6\x14\xbe\xf7\x55\x9a\x91\x59\x09\x7b\x9c\xd9\x22\ +\x0d\xb6\x56\x83\x2f\xa0\x17\x6e\x68\xe1\xdc\xc7\xce\xae\x6e\x9a\ +\x9a\xdb\x68\x6b\xeb\xc4\xb4\x2c\x2c\x29\x51\xd2\x4a\x5f\x6f\x1f\ +\xee\xe0\x5d\x47\x27\xdc\x92\xce\x39\x0a\x05\x12\xe9\x2b\xe7\x76\ +\xce\xcb\xc3\x3c\x6c\xbc\x6c\xd1\x29\x0b\x58\xfe\xd0\xdd\x94\xcd\ +\xbb\x9e\xe4\xc1\x67\x6e\xc3\x8a\x3d\x0b\x1c\x74\xd2\x81\x03\x7a\ +\x00\xc2\xc9\x00\x94\x69\x85\xd3\xae\xa9\x9d\x34\x77\xfe\xa7\x2f\ +\x5b\xea\xc9\x7e\x67\x92\x58\xe8\x42\x90\x13\xd6\xa8\x2d\x89\x72\ +\xe6\xf4\x31\x9c\x35\x7d\x2c\x53\xcb\xf3\x28\x29\x08\x63\x68\x1a\ +\x5d\x09\x93\xee\x84\x85\x5f\x31\xd7\x6f\x41\xfd\x61\x83\xc2\x56\ +\xd8\x89\x25\x24\xad\x5d\x26\x4d\x1d\x26\x9d\x3d\x16\xb1\x84\x24\ +\x69\x4a\xe7\x42\x41\xc8\xd0\x32\x06\xbf\xc8\x78\xa6\xfc\x20\x6b\ +\xaf\xb0\x21\xd8\x7e\xa9\xb2\xb0\xaf\xda\x17\xd5\x92\x16\x87\x5b\ +\xba\x79\x63\xcb\x21\x76\x1e\x6a\xa3\x27\x91\xc2\xd0\x35\x4a\x0a\ +\xc2\x3e\x36\x9e\xa1\x55\x04\x0e\x87\xb9\x68\xb0\xc7\x8d\xe6\x8a\ +\xea\xc6\xbf\x65\x63\x0b\x58\x7a\xce\x5c\xc6\x16\x15\xd0\xd0\xdc\ +\x6e\x23\xee\x9a\x96\xb5\x46\xc3\xbf\xba\x6a\x22\x8d\x25\x6c\xdf\ +\x7b\x88\xf5\x9b\x76\x32\xb6\xb8\x90\x09\xe3\x8b\x31\xad\x63\x6b\ +\x00\x84\x80\xc5\xa7\xcf\x25\x1c\x8a\xb0\x71\xcb\x76\x9b\xfd\xc8\ +\x57\x73\xab\x39\x15\x8f\x2e\xcf\x9f\x16\x20\x12\x49\xf7\xfb\x6b\ +\x1e\x01\x67\x06\xd9\xa7\x5b\x72\xac\x69\x5e\x37\x9e\xae\x6b\x48\ +\x29\x89\xc5\xe3\x74\x76\x76\xd1\xdc\xd6\xc1\x91\xa3\x2d\x1c\xa8\ +\x3f\xca\xbe\xba\xc3\x1c\x6d\x6c\xa5\xab\x3b\x86\x25\x25\x48\x7b\ +\x41\xf3\x43\x0e\xfe\xd4\x84\x67\x06\x84\xb2\xb1\x6d\x91\x7e\x47\ +\x64\x20\xf0\xca\xc3\x64\xd2\x35\x47\x79\xd1\x28\x37\x7f\xe6\xd3\ +\x3c\xfa\xdc\x6b\xb4\xb6\xb5\x1e\x56\x89\xa6\xf5\xf4\x41\x10\x62\ +\xf4\x57\x05\x28\x22\x25\x33\xab\x2b\xc7\x21\x65\xf6\x8b\x1c\xc0\ +\xeb\x15\x24\x52\xf6\xe4\x9c\x58\x96\xcb\xa4\xf2\x5c\x34\x01\x21\ +\x03\x8e\x74\xa4\x78\x67\x6f\x3b\x9b\x0e\x74\xd2\x93\xb0\x48\x9a\ +\x12\x4b\xa9\x5e\x54\xcd\xde\x73\xa7\x6a\x4d\x49\x45\xc2\x54\x24\ +\x93\x96\x8d\x45\x3b\xd6\x4e\x29\x45\x34\x2c\xc8\x8f\xea\xe4\x46\ +\x35\xc2\xba\xf0\x4d\x72\x15\x48\xc1\xf4\x32\x12\x22\x83\xa6\x29\ +\x80\xb6\xfa\xa9\x18\xed\x07\xdd\x89\xd3\x9a\x3b\x63\xac\xd9\xd2\ +\xcd\x6b\x9b\x0e\x90\x1b\x31\x38\x7d\x56\x15\x73\x27\x95\x91\x13\ +\xd6\xd1\xdd\x09\x21\x46\x77\x85\xfb\xe8\xa5\xbe\x6c\xf7\x33\x95\ +\x52\x9c\x3c\x67\x32\x67\xce\x9f\xc2\xda\xf7\xf6\xf2\xd8\xca\xf5\ +\x74\x74\x75\x7b\x45\x59\x36\x74\x0d\x52\x4a\x07\xf4\x72\x86\xb7\ +\x93\x55\x08\x1b\x1a\xcd\x6d\xed\xfc\xfc\xfe\x67\x78\x69\x72\x35\ +\x5f\xba\xfe\x12\x0a\xf2\xa2\xc7\x4c\xc0\x44\x08\x41\x22\x09\x4b\ +\xcf\x5b\xc4\xac\xa9\x93\xf8\xf7\xff\xbe\x8f\x78\x22\x91\x2e\x74\ +\x52\x9a\x23\xfe\xa1\x3c\x9d\x41\xa5\x81\xa6\x82\x4c\xc3\xf6\x2a\ +\xaf\x39\xb1\xbf\xf2\x68\xd9\x2c\xcb\x42\x4a\x85\x92\x16\x1d\x5d\ +\x3d\xb4\xb5\x77\xd1\xd6\xd1\x49\x3c\x9e\xc8\xb8\x5f\x69\xd5\x5f\ +\x9b\xdb\x41\xf9\x62\x76\x11\x9c\xb8\x2a\x63\x62\x3b\x23\x49\x0a\ +\x7f\xfa\xd1\x5b\xe8\x7b\xed\xeb\x8f\x92\xdb\x3b\x3b\x48\x26\x4d\ +\x26\xd5\x8c\x63\xf7\x8e\x92\x99\xd8\x15\xbd\x5a\x5f\xb1\x7e\x36\ +\x0f\xc0\x00\x72\x84\x91\x5f\x55\x5e\x52\x82\x54\xfd\x0f\xd2\xbe\ +\x5e\x93\x0a\x92\xa6\x62\x4c\x6e\x88\x8b\xe6\x94\x72\xf1\x09\xa5\ +\xc4\x52\x16\xb1\xa4\xa4\xae\x29\xc6\xbb\xfb\x3b\xd8\x5a\xdf\x85\ +\x40\xa1\xeb\xfe\xa2\x93\xbe\xea\x96\x6c\xeb\x2d\x85\x22\x9e\x52\ +\xc4\x93\x16\xaa\x4d\x39\x6a\xb0\x4e\x0f\x3c\x92\x90\xa1\x11\x0d\ +\x6b\x44\x23\xb6\x77\x12\x36\x84\x97\x82\x51\xca\x9f\x8a\x55\x1e\ +\x98\xed\x15\x68\x29\xcf\x1c\x38\xf7\x27\x88\x3b\x18\x06\x24\x4d\ +\x8b\x57\xdf\xaf\xe3\xf5\x4d\x75\xb6\x6c\xf7\xb8\x62\xce\x9d\x57\ +\xcb\x98\xfc\x10\x49\xb3\x77\x51\xcc\x60\x27\xb2\x52\x1f\xed\x84\ +\x1f\xc8\x23\x48\x24\x15\x0b\x66\x4f\x62\xee\x8c\x5a\x0e\x1c\x6e\ +\xe6\xee\x47\x5f\xa6\xad\xb3\xcb\x4b\xbf\x79\x68\xbb\x4b\x95\x95\ +\xae\xd2\x01\x20\x14\x32\xd8\x5d\x77\x98\xef\xfd\xf8\x0f\x2c\x3a\ +\x69\x16\x37\x5f\x7b\x36\xb1\xf8\xb1\x0c\x05\x14\x13\xc6\x8f\xe3\ +\xce\x3b\xbe\xce\xbf\xfe\xec\x77\x1c\x6d\x6a\x49\x73\xff\x79\x79\ +\x76\x19\x40\x88\x6c\x21\x56\xbc\xf9\xa2\xa4\x45\x57\x77\x82\xce\ +\xee\x1e\xba\xbb\x63\x74\x75\xf7\x60\x9a\x12\x4b\x9a\x98\xa6\x15\ +\x48\x9b\xea\x9a\x6e\x87\x05\x5e\xfa\x54\x78\x22\xb1\x03\x62\x20\ +\xae\xac\xa0\x1a\x5c\x8c\x9e\x59\xe7\xe0\x9f\x32\xed\x1d\x9d\xa4\ +\x4c\x93\xca\xf2\x12\x84\x91\x5f\xe5\x18\x00\x23\xdb\xcc\xea\xcf\ +\x00\xe4\x49\xf4\xc2\xaa\xb2\x72\xa5\x94\x12\x7d\x21\xe2\x03\x0f\ +\x66\xe1\x19\x03\x4d\x40\x4e\x48\x27\x62\x68\x94\x4c\x2c\xe4\x94\ +\x29\x85\x48\x05\xfb\x1a\x63\xec\x3e\xda\xc3\x81\xe6\x38\x87\xdb\ +\x12\x34\x76\x26\xd1\x51\xb6\x9b\x2f\xfd\x88\x67\x10\xed\xf7\x5f\ +\x30\x4b\x2a\x94\x92\x08\x09\x89\x94\x49\x67\x8f\x13\xef\x29\xbb\ +\x3b\x2c\x6c\x68\x84\x43\x82\x88\xa1\x11\x32\x20\x64\x08\x42\xba\ +\x86\xae\xdb\xcf\x85\x86\x1d\x5d\xb9\xf8\x80\xe7\x76\x6b\x36\xd6\ +\xe0\xde\x4c\x85\x7f\x89\xa0\x2b\x9e\x64\xe3\xee\x06\xd6\x6f\x3f\ +\x44\xe5\x98\x7c\x4e\x9c\x52\x46\x6d\x79\x31\xb5\x15\x05\xce\x79\ +\x0d\x7c\x8d\x06\x23\xef\x9d\xad\xfe\xff\xc3\x36\x18\x6e\x65\xa1\ +\xae\xe9\x4c\xaa\x2e\xe7\x3f\x6f\xbf\x81\x37\x36\xec\xe1\x95\xb5\ +\x9b\xd8\x7b\xe8\xa8\xe7\x09\x05\x83\x31\xd2\x69\x2e\xc7\x48\x98\ +\xa6\xc5\xcb\x6f\xbd\xc7\x86\x2d\x3b\xb9\xe1\xb2\xc5\x9c\x3c\x77\ +\x32\xa9\xd4\xe8\x7b\x03\xee\x67\xe5\x46\x73\xf8\xd7\xbf\xfd\x32\ +\xbf\xfe\xe3\xe3\xac\x7b\x6f\x33\xba\xae\x7b\x61\x4b\xca\x94\x24\ +\x13\x29\x12\xa9\x14\xc9\x64\x8a\x78\x22\x45\x3c\x1e\x27\x16\x4f\ +\x10\x8b\x27\x48\x26\xcd\xa0\x28\x8b\xe3\x76\x0b\x7f\x49\x94\xf0\ +\xd7\x4c\xf8\x5d\x75\xd9\xfb\x1e\xba\x6e\xa6\x52\x28\xfc\xbc\x42\ +\x2a\x30\xb1\xfd\x78\x00\x59\xd7\x43\x15\xd4\x2f\xf5\x98\xa1\xa1\ +\xab\xb3\x93\x78\x3c\x4e\x4d\x55\xb9\x92\xe8\x85\x4e\x4d\x8f\x91\ +\xcd\x9e\xf4\x6d\x00\xb4\x48\xa1\x94\x32\x34\xbe\xb2\x42\x64\xde\ +\x94\xc1\xde\x23\xd1\x4f\x99\x95\x54\x90\x72\x62\xc1\x9a\x92\x28\ +\xb5\xa5\x51\x27\xee\x84\xa4\xa5\x58\xbf\xbb\x8d\xf5\xbb\x5b\x69\ +\xea\x48\x62\x29\xe9\xb8\x3e\xaa\x57\x1f\x84\x3f\x09\x28\x7c\x06\ +\x4e\x73\xea\x03\x74\x67\xf0\x25\x53\x92\x64\x4a\xd1\xa5\x70\x00\ +\x45\xe5\x15\x0e\x21\x15\x39\x11\x8d\x68\x44\x23\x2f\x47\x27\x37\ +\xa2\x63\xe8\x22\xd0\x7f\xee\x0d\x69\x21\x1c\x04\x5c\xa6\x65\x9a\ +\x34\x0d\x23\xa2\xd1\xda\x1d\xe3\xd5\xf7\xf6\xa3\xe4\x3e\x42\x86\ +\xce\x29\x33\x2b\x39\x7d\x76\x4d\x20\x9b\x90\x59\x8e\xdc\xd7\x75\ +\xca\x36\xb9\x8f\x45\x06\x60\xb8\xa1\x09\x40\x2c\x01\x0b\x66\x4f\ +\xe2\x94\xb9\x93\xd9\xb9\xaf\x81\x7b\x9f\x78\x85\xce\xee\x1e\x0f\ +\xab\xc1\x2f\x96\xe1\xe8\xdb\x09\xe7\x87\x19\x86\x4e\x77\x4f\x8c\ +\x5f\x3f\xf8\x2c\xcf\xbf\x56\xce\xb7\x6e\xbd\x16\xc3\x30\x8e\x99\ +\xe1\xd2\x34\x8d\xbf\xba\xe9\x53\x94\x8e\x29\xe6\xb7\x7f\x7a\x9a\ +\xae\x9e\x18\x9d\x9d\x31\x2c\x69\x06\xdc\x75\x47\x79\xd5\x03\x9d\ +\x0d\x5d\x73\xc2\x4f\xb7\x98\x27\xdb\x74\xf1\x41\xf2\xd2\x1d\x23\ +\x72\xc0\x15\x3f\xbd\xf2\x07\x6b\x14\xa4\x37\x96\x65\x80\xb7\x40\ +\xd1\x3b\xe5\x2d\x33\x0c\x88\x6b\x8c\x36\xbc\xbf\x89\xc9\xb5\x55\ +\x42\x5a\x32\x84\x16\x29\x44\x26\xb2\x1a\x80\x6c\x20\xa0\xcd\x01\ +\xa8\x47\x67\x92\x53\x7b\xd5\x5f\x5c\x77\x9d\x51\x36\x76\xec\xb0\ +\xf3\xe0\x7d\x1d\xd7\x17\x7a\x2e\x95\xc2\xd0\x05\xb5\xa5\x51\xce\ +\x98\x3e\x86\x45\xd3\xc7\xb2\x60\x52\x11\x53\x2b\xf3\x10\x02\x8e\ +\x76\x24\x88\x25\xad\x60\xe7\x9a\x4f\x7d\x25\x98\x1e\x71\x2b\xbf\ +\x82\x3f\x5d\x65\x50\x4c\xdb\x45\x4c\x92\x58\xc2\xa2\xa3\x3b\x45\ +\x53\x7b\x92\xa6\xf6\x04\x2d\xed\x09\x5a\x3a\x12\xb4\x76\x24\x69\ +\xeb\x4a\xd2\xd6\x99\xa2\x2b\x9e\xb2\x71\x8c\x94\xc4\xb2\xec\x1b\ +\xa4\x69\x82\x90\x2e\x3c\x2e\x7e\xcd\xa1\xd4\xaa\x3b\xda\xce\xda\ +\x2d\x07\xd9\xbc\xef\x08\x47\x5b\xbb\x29\x2d\x8a\x52\x5c\x10\xf6\ +\x32\x1b\x03\xc9\xaa\x0d\xa5\x3b\xf1\xa3\x0c\x0f\xa4\x54\x94\x14\ +\x17\xb0\xf8\xd4\x13\x98\x39\x69\x3c\xfb\xea\x9b\x68\x69\xef\x40\ +\x37\xd2\xc3\x2b\x1d\x4e\x09\x7c\x1a\x1b\x08\xcd\x56\xb8\x79\x69\ +\xf5\x46\x5a\xda\x3b\x99\x3f\x7b\x52\x2f\xf6\xe8\xd1\xc3\x33\x14\ +\xf3\xe6\x4c\x61\xce\x8c\xa9\xdc\xff\xe8\x0b\x36\x8d\xb8\xd0\x7c\ +\x75\x22\x04\xe5\xc3\x33\xd2\x6c\x6e\x51\x94\xc8\xb2\x16\xfb\x73\ +\xf1\xf8\x59\x80\x33\x66\x9d\x72\x33\x58\x99\x5c\x26\x2e\x67\xa3\ +\xcf\x2b\x08\x7c\xae\x6b\x07\x44\x86\x17\x9c\x69\x00\x9c\xfa\x9b\ +\xf1\x95\x95\x9c\x79\xfa\xa9\xdc\xfb\xa7\xa7\x21\x71\x68\x05\x32\ +\xb9\x9f\x2c\xf2\xe1\xa2\x8f\x0c\xc0\x78\x11\x2a\x5e\xaa\x8a\x4e\ +\xbb\xeb\x95\x47\x1f\xd1\x0b\xf3\xf3\x07\x4c\x67\xf5\x57\xb4\x92\ +\x99\xcf\x1e\x6c\x75\x5d\xfa\x38\x7b\x30\x18\x3a\x84\x74\xa8\x6b\ +\x4e\xb0\xb9\xae\x9d\x5d\x0d\x5d\x34\xb6\xc7\x69\xea\x88\x63\x4a\ +\x85\xee\x19\x05\xe9\xb9\x58\xae\x65\x97\x48\x3b\x15\x24\x08\x80\ +\x31\xae\x95\x55\x8e\x27\x80\x20\x90\x1a\x92\x5e\x2b\xa9\x0d\x72\ +\x79\x37\x51\xa5\x43\x0c\x67\xc4\x62\x18\x82\x90\x61\x97\x41\xdb\ +\x21\x86\xc0\x30\x34\x42\xba\x1d\x23\x9b\xd2\xa2\xa2\x38\x8f\x33\ +\x4e\xa8\x61\x72\xd5\x58\xc6\x97\x15\xa0\x39\x2d\xce\x99\x13\xfd\ +\x58\x94\x00\x7f\x58\x5b\x34\x07\xde\xde\x54\xc7\x0b\x6f\x6c\x60\ +\xef\xc1\x23\x4e\xe5\x9c\xd3\x58\xa3\x82\xa0\x95\x52\x12\x29\x25\ +\xd2\x92\xa4\x2c\x8b\x9c\x70\x88\x2f\x7c\x6a\x09\x0b\x4f\x98\x82\ +\x94\xc7\xa6\xc9\x48\x13\xd0\xd5\x13\xe7\xc6\xbf\xfe\x1e\xdb\x76\ +\xed\xb3\x3d\x8f\x40\xaa\x39\x0d\x38\x0b\x27\xa5\xec\xa6\xea\xec\ +\xee\x47\x50\x52\xda\x28\xbd\x33\x76\xbc\x7d\x5d\xd4\x5e\x4a\xaf\ +\x3c\xd7\x7e\x5f\x7a\xae\xbd\xfb\xbe\xf2\x5c\x7e\x19\x28\xe5\x95\ +\x2a\x5d\xce\x9e\x2e\xf6\x49\x7f\x87\x7b\x0e\x48\x7b\x7c\x7a\xf5\ +\x8c\xce\x39\x5a\x96\xe4\xe4\xf9\xf3\x78\xfc\xfe\xdf\x51\x7d\xe2\ +\xe5\x96\xe8\x58\xfb\x0d\x95\x6a\x7b\x16\x38\x44\x46\x45\x60\x36\ +\x03\x10\x01\x26\x88\x48\xc9\xd5\xaa\xe0\xd4\xff\xb7\xed\xb5\x67\ +\xe9\x8e\x0d\x6f\x22\x0f\x37\x0f\x3e\xf8\xe3\xdc\xac\x00\x6c\xaa\ +\x6b\x63\xcd\xd6\x46\x76\x1c\xee\x44\x79\x69\x0b\xd5\xbf\x01\x70\ +\xf2\xa7\x5e\x2a\x25\xf0\xbe\xaf\xb7\x00\xf7\x7b\x32\x73\xb0\xee\ +\xfb\xbe\x7d\xa5\x7d\x83\x95\x94\xbe\x82\x0d\x5f\x7d\xbd\xaf\x76\ +\x21\x64\x68\x5c\x73\xee\x2c\xae\x3a\x67\x06\x91\x90\x31\xa0\x01\ +\x3d\x1e\xdc\xff\xa1\xd4\x11\x28\xa5\x38\xda\xdc\xc6\x7f\xdd\xfb\ +\x34\x7b\x0f\x1e\x25\x99\x4a\x91\x4a\x9a\x24\x4c\x93\x54\x32\x45\ +\x32\x65\x97\x8a\x13\xa8\xbf\xb7\xc7\xe6\xf4\x49\xe3\xf9\xf5\x0f\ +\x6e\x23\x9a\x13\x1e\x75\x23\xe0\x7e\x5e\x24\x0c\x5f\xff\xc7\x9f\ +\xf2\xdc\x2b\x6b\x9c\xd5\x34\x0d\xe0\x21\xd3\x13\x55\x0a\xdf\xe4\ +\x0c\x18\x00\x27\xa6\x77\x27\xa7\xc8\x32\x39\x55\xc6\xe7\xba\xfb\ +\x2a\x65\x8f\x49\xf7\x73\xfd\xfb\x7a\xdf\xa1\x3c\x3c\x21\xbd\xaf\ +\xbd\x10\x79\xe7\xe0\x82\xd9\x6e\x9d\x8b\xb3\x50\x49\x69\xa1\xda\ +\x36\x23\x4a\x97\x22\xba\xd6\xfd\x9d\x4a\x34\x3f\x01\xec\x27\xa3\ +\x35\x58\xef\xc3\x03\x28\x11\x91\xb2\x45\xc5\x95\xb3\xce\xfc\xe2\ +\x0d\xd7\x06\x8a\x80\x8e\x05\xfd\xf5\xf0\xf3\xe0\xe9\x5e\xf5\xaa\ +\x31\x51\x16\xcd\x2c\xe1\xc2\x13\x2b\x59\x30\x75\x2c\x33\xc6\x17\ +\x90\x1b\x31\x68\xef\x49\xd1\xd6\x95\xf0\x2c\x7f\xef\x2e\xb0\x74\ +\xbe\x5a\xf8\x79\x32\x32\xd3\x2b\xbe\xfa\x00\x25\x82\xe2\xd4\x81\ +\x7d\x3d\x17\x50\xf9\x2c\xbc\x6f\x5f\x67\x05\xb0\xeb\x0c\x24\xef\ +\xed\x6c\xe0\xd1\x57\xb6\xb0\x6e\xf3\x41\xea\x9b\x3a\x28\x1f\x93\ +\xcf\xb8\x92\x08\xca\x29\xea\x18\x6c\x39\xf2\xf1\x98\x35\x00\xc8\ +\xcf\x8b\x72\xf1\x59\xf3\x98\x39\xb9\x9a\xba\x43\x4d\xac\xff\x60\ +\x37\x28\x9b\xf2\xcd\xf3\xa4\x08\x96\xb4\x4a\x09\x8d\x2d\x6d\xdc\ +\xff\xc4\x4b\x34\xb5\x75\x70\xf6\xc9\x27\x04\x26\xee\x68\x9d\x9f\ +\x69\x2a\x96\x2c\x3e\x8d\xb2\x92\x31\xbc\xf4\xfa\x3a\x74\x4d\x0b\ +\x34\x9f\x0a\x1f\x58\x27\x54\x06\xbf\x84\x52\x64\x64\xf2\x1c\x9c\ +\x23\x98\x64\xc8\x0c\x05\xfc\xd2\x7f\x5e\xd8\x9a\xa5\x86\xc5\x3f\ +\x28\x5d\x2f\x22\x00\x42\x7a\xa0\x5f\x30\xd5\xed\xb6\x40\xab\x64\ +\x8a\x6f\xdd\xf6\x75\x7e\xf5\xe0\xf3\xc4\x3a\x0e\xbf\x4b\xaa\x7d\ +\x53\xb6\x5a\x80\xbe\x0c\x40\xa9\x88\x56\x5e\x58\x3b\xf1\xc4\x93\ +\x6e\xb8\x7c\x09\x29\xb3\xef\x09\x3f\x9c\xde\xf7\xd1\xa4\xe5\x12\ +\x0e\x28\x97\x3e\x5e\x90\x9f\x63\x30\x6e\x4c\x2e\xf3\x26\x15\x73\ +\xe9\x82\x4a\x16\x9f\x58\x45\x59\x51\x84\x94\x65\x5b\xe0\xa4\x29\ +\x49\xb9\xf0\xbc\xe8\x1d\x77\x11\xa0\x7f\xca\x40\x6d\x7c\x31\x9e\ +\xf2\xe2\x36\x15\xc8\xc3\xa6\x9b\x65\x54\x46\x0c\xec\xf6\x7c\xa7\ +\x63\x4e\xb7\x8e\xbe\xad\x2b\xc6\xb6\xbd\x4d\x3c\xfa\xca\x66\x5e\ +\x5e\xb7\x17\xc3\xd0\xc9\xcb\x0d\x93\x17\x0d\xdb\xa4\xa8\xf4\x8d\ +\x1b\x1c\xef\x86\x40\x29\x28\x1b\x5b\xc8\xd5\x17\xce\xe7\xe2\xb3\ +\x16\xb2\x6d\xcf\x41\x9a\x5a\x3b\x90\x96\xe5\x35\xd4\xf8\xc1\x2c\ +\xa5\x94\x8d\xa3\x58\x8a\xcd\x3b\xf6\xf1\xa7\x27\x5f\x61\xce\xf4\ +\x09\x54\x57\x96\x1e\x83\x3a\x07\xc5\xdc\x99\x93\x99\x7f\xc2\x0c\ +\x5e\x5e\xf3\x36\xc9\x64\x2a\xa0\xe8\x9b\xc6\x94\x54\xaf\xc9\x1f\ +\x8c\xd9\xd3\x4b\x81\x57\xe0\x23\xfd\x83\x22\x73\xdf\xf4\x77\xf8\ +\x32\xcd\x01\x40\x51\x29\xff\xa2\xa4\x7c\x63\x28\x63\xdf\x5e\x90\ +\xa4\x42\x59\x92\xbf\xfa\xd2\x17\x79\x72\xc5\x9b\x34\x1d\xd9\xbf\ +\x8b\x44\xd3\x3a\x6c\x72\x90\xd4\x40\x59\x00\x1d\xd0\x85\x1e\x2d\ +\xab\x28\x1d\x1b\xa8\x01\xe8\xc5\x3a\xa3\xfa\x46\xb0\x87\xeb\xb2\ +\x0e\xbf\xb9\xa5\x77\xea\xd1\x0a\xc0\xfc\x48\x00\x00\x20\x00\x49\ +\x44\x41\x54\x92\x60\x5a\x8a\xdc\x88\xc1\xd9\x73\xc6\x71\xf6\x9c\ +\x71\x48\x29\xb1\x14\x1c\x38\xda\xc9\x6b\x1f\x34\xb0\x7e\xc7\x51\ +\x52\x96\xe5\x2b\xe4\xc9\xec\x2c\xf4\xad\xe4\xa2\x37\x8c\x2b\xfc\ +\x86\xa1\x0f\x98\x57\xf8\x12\x44\x81\x91\x23\x55\x00\x45\x16\x1a\ +\xe4\xe6\x84\x38\xd2\xda\xc5\x7f\x3f\xba\x16\x5d\x08\x42\x21\xc1\ +\x92\x45\x33\xf8\xdc\xa5\x27\x91\x9b\x63\xf4\x2a\x47\xfe\xb8\x6c\ +\x42\x08\x7a\xe2\x8a\x89\xd5\xe5\xfc\xe6\x07\x5f\xa3\xa5\xbd\x93\ +\x7f\xfc\xd1\x03\xac\x7d\x7f\x87\x8d\x91\x04\x73\x62\xe9\xe3\x34\ +\x8d\xae\x9e\x18\x5f\xfd\xee\x4f\x19\x5f\x51\xc2\xef\xee\xfc\x16\ +\x63\x8b\x0b\x46\xd5\x1b\xb0\xa4\xe2\xcc\x53\xe6\xb1\xe2\x81\x9f\ +\x72\xd9\xe7\xbf\x41\x6b\x5b\x47\x96\x5c\xbc\x8b\xb9\x2b\xff\x3a\ +\xe0\x2f\x25\xe8\xa5\x27\x48\xe6\x8a\x2d\xf1\xd0\xbf\x6c\xfb\x2a\ +\x7f\x36\x41\xa9\x2c\x65\x41\xbe\xcf\xf4\xaf\x5c\x81\x3d\x3c\x21\ +\x42\xda\xda\x3b\xa8\xaa\x18\xcb\x16\x3d\x5a\xe6\xce\xeb\x81\xb2\ +\x00\x9a\x83\x01\x94\x93\x37\x71\xd9\xc9\xf3\x17\x55\x9f\x7b\xfa\ +\x29\x58\xd6\xb1\x75\xeb\x07\x93\x39\xc8\x04\xc8\x06\x4f\xcb\x95\ +\xd9\xe7\x2f\xd0\x35\x28\x29\xca\xe1\xe4\xe9\xa5\x5c\xb9\x68\x02\ +\xa7\xce\xa8\x60\x5a\x55\x11\xc5\xf9\x11\x12\x29\x8b\xa6\x8e\x98\ +\xc3\x79\x17\x4c\x2d\xfa\x51\x62\xe1\x37\xff\xfe\x5b\x25\x54\xc6\ +\xe4\x14\x41\x0f\xc1\x9f\xcc\xe9\x85\x08\x0b\x0f\x63\x70\x63\x40\ +\x53\x2a\x3e\xd8\x75\x98\x07\x9e\x7f\x97\x75\x9b\x0f\x70\xa4\xa5\ +\x8b\xa2\xbc\x08\x55\xe5\xb9\x76\xd7\x83\xfc\xe8\x04\x3e\x87\xeb\ +\x11\x08\x21\xc8\xcd\x89\x70\xcd\xc5\xa7\x70\xe6\xc2\x39\xf4\xc4\ +\x12\xbc\xbf\x6d\x5f\x5a\x2a\x3c\x53\xaa\xdb\x59\x01\x3b\xba\xba\ +\xb9\xff\x89\x97\x68\x6d\xef\xe6\x8c\x85\xb3\xd1\x75\x31\x2a\x4d\ +\x46\xee\x79\xe5\xe4\x44\xb8\xe5\x33\x57\xb2\xef\x40\x3d\x9b\xb6\ +\xed\x22\xa4\xa7\x95\xae\x33\xb3\xf1\x81\x29\x99\xb1\x92\xa7\xc1\ +\x67\x15\x58\xc9\x5d\x1c\x40\xf8\xe7\xb9\x37\xd9\x55\x86\x27\x2a\ +\xd2\x3d\x0c\xc2\x1f\x66\x66\x78\x13\x0a\x8f\x9e\xcc\xbf\x80\x29\ +\xa9\xb8\xf1\xba\x6b\xd9\xb1\xaf\x81\xf7\x3f\xd8\xdc\x42\xec\xa0\ +\x4b\x13\x9e\x1c\x08\x03\x88\x02\x15\x5a\xc1\x94\xcf\x2c\x3e\xe3\ +\xdc\x92\x93\xe7\xce\x09\x94\x02\x7f\x18\x6e\x7d\xb6\xe3\x06\x4a\ +\x83\x0d\x8d\x6d\x57\x78\xe0\xa1\x94\x90\x1f\x0d\x51\x39\x36\x97\ +\x79\x93\x4b\xb8\x78\xe1\x78\xae\x5a\x34\x85\xda\xf2\x7c\x92\xa6\ +\x24\x99\x32\x1d\x9e\x7a\xe9\x8b\xd5\x54\x20\x09\xab\x32\x5c\x3b\ +\xb2\xc4\x91\xfe\x81\x94\x4e\x19\xa9\x60\x2d\xb8\x8b\xf8\xfa\xe2\ +\x48\xe5\xf0\x1c\xea\xba\xa0\xa5\x23\xc6\x96\xdd\x0d\x3c\xfe\xea\ +\x07\x3c\xbd\x6a\x1b\x21\x43\xa7\xb4\x38\x8f\x70\xc8\xc0\xf0\x85\ +\x09\x1f\x17\x83\x60\x49\x28\x1d\x53\xc8\x25\x67\xcf\xe3\x86\x2b\ +\xce\xe5\xfd\x6d\x7b\x69\x69\xeb\xc4\x34\x25\x9a\x70\x6b\xe1\x95\ +\x4f\xa9\xcb\x9e\x06\x9b\x76\xec\xe5\x37\x7f\x7c\x86\x13\x66\x4c\ +\x66\xfc\xb8\xd2\xd1\x65\x2a\x56\x70\xcd\xa5\x8b\x30\x8c\x08\x6b\ +\x37\x6c\xf2\x6e\x98\x6b\x94\x02\x5c\x93\x5e\x78\xa7\x02\x11\x9f\ +\x17\xb3\xfb\x43\x08\xdf\xc2\xe1\x87\xe0\x85\x5f\xed\x39\x50\xcf\ +\x92\x0e\x2b\xfc\x29\x40\xe5\x0b\x39\x83\xd1\xa6\x4f\x2e\xcd\x19\ +\x07\xd7\x5e\xb9\x94\xb6\xce\x38\x6b\xd6\xbd\x1b\x53\xdd\xfb\x5d\ +\xb9\xb0\x44\x7f\x59\x00\x0d\x28\x06\x4e\xd0\xc6\x5d\xfc\xc8\xf7\ +\xfe\xe6\x3b\x65\x57\x5f\x72\x7e\xbf\x1e\xc0\x60\x51\xfe\x6c\x13\ +\xd2\x7f\x5c\x5f\x9f\x31\xdc\xe3\x06\x93\x62\x1c\xe8\x38\x4d\x03\ +\xd3\x94\xc4\x92\x16\xad\x5d\x71\xde\xdc\x5c\xcf\x6b\xef\x1f\xa2\ +\xb9\xbd\x1b\xc3\x11\x38\x15\xf8\x10\x61\x5f\x56\xc1\x4e\x19\x39\ +\x03\xc7\x41\xfe\x71\x50\x5d\x6f\x08\x38\xc7\x89\x4c\xc4\x38\x90\ +\x3e\x52\xbd\x3f\xd7\x45\xa9\x9d\x9a\x89\xbc\x68\x98\x73\x16\x4c\ +\xe6\xf3\x57\x9c\x42\x69\x51\x84\x44\xea\xe3\x65\x08\xfc\xe7\xda\ +\xd8\xd2\xce\x5d\xf7\x3c\xc1\xd3\x2b\xdf\x22\x1c\x31\x7a\xa3\xef\ +\x4a\xa5\x33\x37\x4a\x51\x55\x51\xc2\x3d\x77\xde\x4e\x65\x59\x71\ +\xbf\x55\x97\xc3\x39\x9f\x6d\xbb\xf6\x71\xf5\x2d\xdf\xf4\x3c\xb7\ +\x60\xf6\x48\xa5\x9d\x76\x37\xb3\x93\x91\x3e\x4e\x57\xf4\xf5\xee\ +\xda\x53\xa4\x59\x89\xec\xfb\x69\x8f\x15\x8f\xfd\xca\x9f\xa1\xa2\ +\x9f\x0c\x95\x8b\x45\x65\x64\x25\xa4\x94\xdc\xf7\xcb\x9f\xd2\xda\ +\xad\xf8\xc6\x77\xff\xbd\x51\x36\xac\xf8\x14\xf0\x01\xb6\x68\xa8\ +\xec\xcf\x03\xc8\x05\x2a\x44\xc1\xb4\xcf\x5e\x7e\xe1\x45\x39\x93\ +\x6a\xaa\xbd\xd5\x72\x24\x52\x5c\x7d\xb1\xe6\x0e\xb4\xdf\x68\x8b\ +\x68\x0c\x86\xdb\xcf\x6f\x7c\x34\x4d\x10\x0e\x69\x14\xe7\x47\x38\ +\x69\x6a\x29\xd7\x9c\x35\x89\xf3\xe7\x4f\x64\xca\xf8\x62\x8a\xf3\ +\x23\x00\xb4\x75\xc6\x89\x27\x4d\xbb\x7a\x5c\x0b\x82\x59\xbe\xf2\ +\xf8\xb4\x92\x4d\xc6\x4a\xef\x96\x7c\x08\xc8\x1a\x2a\x08\xa1\x32\ +\x50\xe9\x34\x77\x82\x25\x6d\x2f\x65\xf3\xee\x06\xee\x7b\x66\x3d\ +\x6b\xde\xdb\x47\x5b\x67\x8c\x68\x24\x44\x65\x99\x5d\x3c\x25\xd5\ +\xf1\x6d\x00\xfc\x86\x2a\x2f\x9a\xc3\xd2\xc5\x27\x71\xd1\x59\x27\ +\xd3\x13\x4b\xb0\x65\xe7\x7e\x8f\xa1\xd7\x1f\xf3\xba\x5e\x53\x47\ +\x57\x0f\x77\x3f\xb4\x9c\xae\xee\x18\x0b\x4e\x98\x4e\x4e\xc4\x18\ +\x71\x58\xe4\x7a\x14\xe5\xa5\x63\x58\xb6\xf4\x02\x56\xbf\xbd\x91\ +\xa3\x4d\x2d\x81\x5e\x7f\xfc\x86\x20\x23\x7b\x44\x2f\x8f\x50\xf9\ +\x74\x17\xf0\x79\x34\xaa\x57\x76\x48\xf8\xdb\xa9\x7d\x71\x7d\x9a\ +\x04\x44\x65\x30\x5e\xcb\x20\x30\x4d\x5a\xfd\x69\xc9\x85\xe7\x93\ +\x9b\x57\xc8\x13\x2f\xbc\x66\xd2\xb5\xeb\x21\x6c\x62\x90\x58\x7f\ +\x21\x80\x8e\xa3\x05\x20\x0a\xa7\x7f\xee\xf2\x0b\x2e\x0e\xd5\x56\ +\x55\x66\xa5\xd7\x1e\xee\x84\x1c\x0e\xf7\xfe\xe8\x8a\x68\xf4\x8d\ +\x39\xf4\x27\xc5\xe5\x4e\x24\xd3\x82\x48\xd8\x60\x7c\x69\x3e\xf3\ +\xa6\x96\x73\xe1\xc2\x5a\xae\x5b\x3c\x9d\xb9\x93\x2b\x90\x0a\x5a\ +\xda\x7b\x6c\xf7\xd6\x0a\x2a\xd1\xf6\x9f\x12\x52\x59\x40\xbd\x20\ +\xf6\x90\x1d\x11\x56\x69\x1a\x31\x01\xa1\x90\x46\x7b\x47\x8c\x8d\ +\x3b\x0e\xf1\xd4\xab\x9b\x78\xf8\x85\x8d\x20\x34\x6a\xc6\x15\x3b\ +\x1e\x8b\x36\xaa\xe9\xb4\x63\x16\x1a\x58\x50\x5c\x98\xc7\x05\x67\ +\xcc\xe3\xd6\x1b\x2e\x65\xf3\xce\xfd\x1c\x69\x6c\xb5\x5b\x69\x09\ +\xae\xbe\x42\xd8\x82\x28\x9b\xb6\xed\xe1\xbf\xef\x7f\x92\x13\xa6\ +\x4f\xa6\xa6\xb2\x1c\x4d\x1b\x59\x58\xe0\x1e\x97\x9f\x17\xe5\x73\ +\xcb\x2e\xe5\xed\x8d\x5b\x38\x78\xf8\x48\xf6\xf4\xb1\xfb\x8a\x5b\ +\x18\x94\x29\x66\xec\xdf\xd7\xd7\xfd\xe7\xad\xf4\x69\x56\xb0\xde\ +\x3d\x02\xfd\x90\x80\x88\x6c\x1d\x02\xbe\x0c\xd6\xc5\x17\x2c\xa6\ +\xb0\xb0\x84\xc7\x96\xbf\x22\x55\xd7\xce\x07\x81\x23\x4e\x08\x30\ +\xa0\x07\x30\x4e\x2b\x98\x7e\xd3\x35\x97\x2c\xd1\x2b\x2b\xca\x87\ +\xbd\xb2\x0e\xac\x71\x37\xf2\xe3\x06\xfb\xd8\x5f\x08\x33\x94\xf0\ +\xc6\x8f\x23\xe0\x78\x5c\x52\x41\x59\x51\x94\x53\x67\x55\x72\xc5\ +\x59\xd3\x38\x7f\xc1\x04\xce\x3a\xb1\x86\xb2\x31\xb9\xb4\x77\xc6\ +\x39\xdc\xdc\xe5\x94\x0c\x67\x0c\x18\x3f\x72\x9b\x09\xf4\x12\xec\ +\xff\x4e\x03\x49\x59\x94\xe3\xdc\x38\x52\xa5\x7d\x07\x5d\x68\xa4\ +\x2c\x8b\xb7\x37\xef\xe7\xb1\x95\x1b\x79\x61\xcd\x56\xea\xea\x5b\ +\x98\x5a\x5b\x4e\xd9\x98\x08\xa6\x75\x7c\x1b\x02\x21\x04\x52\xd9\ +\x0c\x43\x57\x5e\x70\x2a\x97\x9d\x7f\x3a\x96\x25\x59\xff\xfe\x36\ +\x0c\x43\xf7\xf0\x00\x3f\xfb\x8e\x2e\x34\x9e\x79\x79\x0d\x2b\x57\ +\xbf\xcd\xa2\x05\x27\x50\x5e\x92\x3f\x62\x4a\x32\x17\x2f\xba\x76\ +\xe9\xf9\x14\x17\x15\xb2\x62\xd5\x1a\x0f\xac\x24\x03\x0f\x50\xbe\ +\x1c\x7e\xba\x6e\x20\xa3\x58\x37\x4b\x2c\xdf\xab\x6f\x42\x64\x7a\ +\x00\x19\x69\xc8\x20\xec\xdc\x0b\x94\x74\x6b\x50\x2e\x3a\xf7\x1c\ +\xca\xcb\xc7\xf1\xd0\x53\x2f\x29\xd5\xb9\xf3\x8f\xd8\xcc\x40\xfd\ +\x7a\x00\x2e\x19\x68\xa5\x56\x38\xf3\xf3\xcb\x96\x2e\x15\x65\x63\ +\x4b\x46\x5d\x1b\xef\x58\x82\x83\xfd\x4d\xe4\xe1\xd0\x72\xf5\xf7\ +\x5b\x7b\x7d\x87\xf3\xff\x9c\x88\x41\x71\x7e\x0e\x27\x4c\x2a\xe5\ +\xca\xb3\xa7\xb0\x6c\xf1\x6c\xa6\xd7\x8c\xa5\x20\x37\x82\xae\x69\ +\xf4\x24\x92\x74\xf5\x24\x03\x80\xa2\xf0\x4d\x70\x41\x1f\x05\x28\ +\xbe\x1e\x06\x45\xef\x81\x90\x46\x95\xd3\x35\xe3\x9a\x66\x1b\xa8\ +\xee\x58\x82\xad\x7b\x1b\xb8\xef\xa9\xb7\x78\x65\xdd\x2e\x12\xc9\ +\x14\xe1\xb0\x41\xd9\xd8\x7c\x74\xed\xf8\x0c\x13\xfc\x75\x04\xf9\ +\x79\x51\xce\x5b\x34\x87\x4f\x2d\x3d\x97\xd6\xf6\x2e\xf6\x1c\xa8\ +\x27\x95\x32\x03\xf7\xc6\x25\xe6\x6c\x69\xeb\xe0\x37\x7f\x7c\x8a\ +\xce\xee\x38\xb3\xa7\x4d\xa2\x20\x3f\x32\xe2\xb0\x40\x29\xc5\xa9\ +\x27\x4d\x67\xee\xac\x19\xbc\xf4\xfa\x5a\x52\x29\xd3\x2b\xe2\x11\ +\x59\x7a\x01\xc8\x60\xa9\xf2\xbb\xe7\x32\x40\x76\x1b\x4c\x0a\x7a\ +\x24\x20\x5e\x86\x51\xf6\x41\x02\xe2\xfb\x8e\xcc\x7d\x9d\xef\x3a\ +\xef\xec\x33\xa9\xae\xae\xe1\x81\xc7\x5f\x14\xaa\x73\xc7\x03\x40\ +\x43\xa6\x01\x10\x59\x42\x80\x12\xe0\x24\x6d\xfc\x55\x2f\x3c\xf4\ +\xd3\x9f\x30\x79\x42\xed\x80\x20\xdf\x60\x27\xeb\xe8\x95\x00\x0f\ +\xee\xb8\x4c\xd0\x6f\x30\x7d\x0b\xfd\xbd\x37\xd2\x5e\x08\xf7\x82\ +\x0b\x01\x0d\x2d\xdd\x3c\xff\xd6\x0e\x5e\x5e\xbf\x87\xee\x78\xd2\ +\x26\x98\x50\xd2\x03\x8d\x84\x1f\xe4\x41\xf5\x01\x08\x49\x8f\x39\ +\x39\xb0\x6f\x2f\x50\x0a\xa4\xb0\x99\x68\x84\x03\x24\xb9\xa0\x56\ +\x38\xa4\x71\xc3\xa5\xa7\x72\xfd\x25\x27\x13\x8d\x84\x3d\xc6\xdb\ +\xe3\xd5\x3b\xf0\x28\xdc\x81\xbf\xbf\xf3\x6e\x5e\x58\xb5\x0e\x29\ +\xd3\xc0\xa9\x74\x7e\xbf\xfb\x3b\x35\x0d\xfe\xfd\x8e\xbf\x62\xc9\ +\xb9\xa7\x8e\x5a\x93\x51\x57\x77\x0f\xe7\x2f\xbb\x95\xd6\x8e\x4e\ +\x67\x22\x07\xcb\xc9\x95\x53\xce\xe8\xaf\xe5\x97\xde\x8a\x2f\xb3\ +\xd2\x79\x05\xf6\xf5\xca\x89\x65\x20\x4d\xe8\xf1\x0c\xf8\xc0\xe3\ +\x5e\x9d\x8a\xbe\x73\xf8\xe7\xef\x7c\x8b\xf3\xce\x39\x8f\x73\xaf\ +\xbb\x0d\x79\xe8\xc9\x4b\x80\x8d\x4e\x26\xc0\xea\x0f\x03\xc8\x05\ +\x2a\xb5\xa2\xd9\x9f\xbb\xe1\xca\xcb\x29\x2a\x28\x18\x54\x9c\x3d\ +\x5c\x6d\x3c\x32\x5c\xdc\x91\x1e\x37\x9c\xde\x84\xa1\x84\x0a\xc3\ +\xf5\x22\xfc\xef\x49\xa5\x28\xc8\x0d\xb3\x70\x46\x25\xcb\xce\x9f\ +\xcd\xc5\xa7\x4d\x63\xd1\xdc\x1a\x26\x56\x8d\x21\x69\x5a\xd4\x35\ +\xb4\x61\xfa\x99\x6d\x7d\x71\xa4\xdf\xe4\x7b\x80\x50\x26\x41\x64\ +\x46\x5a\xca\xf3\x10\x32\xd2\x52\x02\x1b\x44\x7c\x77\xeb\x7e\xfe\ +\xf4\xec\x5a\x5e\x5d\xbf\x8d\xbd\x07\x1a\x19\x5f\x31\x86\xea\x8a\ +\x5c\x4c\xeb\xf8\xab\x33\x10\x3e\xda\xef\x25\xe7\x2e\xe0\xf2\x0b\ +\xce\x24\x37\x27\xc2\x9a\x77\x36\x7b\x52\x5b\xfe\xdf\xa9\x94\xe2\ +\x99\x97\x56\xf3\xd2\xeb\x6f\x33\x63\x4a\x2d\x13\x6b\x4a\x31\xcd\ +\xe1\xff\x26\xa5\x14\x91\x70\x98\x9b\xaf\xbf\x8a\x3d\xfb\x0f\xf2\ +\xc1\xd6\x9d\x84\x7c\x5d\x8f\xca\x9f\xef\x17\xd9\x04\x4a\x54\x60\ +\xec\x66\x52\xda\x67\x4d\x1f\xab\xcc\x72\x93\xbe\x2a\x11\xd3\xe7\ +\x80\x82\x45\xa7\x2c\x64\xf6\xec\x59\xdc\xfd\xe0\x73\xa8\x8e\x6d\ +\x0f\x38\x18\x40\xac\x3f\x0c\x40\xf3\x30\x80\xc2\x59\x9f\xbb\xfe\ +\xf2\xa5\x14\x15\x14\x8c\xa0\x08\x67\x78\xee\xf9\x48\xb4\xf1\x46\ +\xdb\xad\x1f\x6e\x48\xd3\x3f\xbe\x21\xbc\xe7\x96\x84\x68\xc4\xa0\ +\xa4\x28\x97\x99\x13\x4a\xb9\xf4\x8c\x29\xdc\x7a\xe5\x7c\x4e\x9c\ +\x56\x45\x5e\xd4\xe6\x1e\xb4\x4c\x49\x67\x4f\xc2\x23\x2a\x09\xd4\ +\x92\x67\x0c\x1c\x37\x11\x1d\xac\x51\xcf\x12\x47\x4a\xe1\x15\x98\ +\x68\x42\x43\x09\xe8\xe8\x8a\xb1\x75\xcf\x61\x1e\x78\xe6\x4d\x96\ +\xbf\xfa\x01\x28\x88\x46\x23\x14\x15\xe4\x12\x32\xc4\x71\x13\x26\ +\x78\xf8\x8b\xb4\x43\x83\x45\x0b\x67\x72\xcb\xf5\x97\x71\xb4\xa9\ +\x95\x83\x87\x1b\xe9\x89\x27\x1c\xbe\x3e\x1b\x3d\xd7\x0d\x9d\xd6\ +\xf6\x0e\x1e\x7c\xf2\x45\x9a\xdb\x3a\x39\x61\xc6\x14\x0a\xf2\x73\ +\x86\x65\xdc\xd2\xfd\x27\x1a\xcb\x2e\x3b\x1b\x4b\x09\xde\x7a\xe7\ +\xfd\xa0\x10\xa9\x73\x8d\xdd\x34\x70\x26\x70\x99\x6d\x22\xbb\xff\ +\xf7\xf7\xa5\xa8\x8c\xf7\x3d\x92\x10\x5f\x39\xb9\x24\x93\x49\x30\ +\x6d\xf0\xcf\x3e\xe3\x34\x66\x4c\x9f\xc1\xdd\x0f\x3e\x8b\xea\xd8\ +\x76\xbf\x2f\x04\x90\x43\x0a\x01\x46\xc3\x3d\x1f\xcc\x44\x1e\xe9\ +\x71\x43\x61\xdb\x1d\xca\x71\xa3\x11\x0e\xf4\x95\x26\xed\x7d\x5c\ +\xe6\xa0\xb4\x73\xc3\xb1\x78\x8a\x95\xeb\x76\xf2\xcc\x1b\x5b\xa9\ +\x3b\xdc\x6a\xbb\xea\x99\x6c\xb2\xbe\xfc\x73\x3a\xbf\x2c\x11\x4e\ +\xc3\xa9\x7f\x5f\x25\x95\x17\x6f\x7a\xcc\xb3\x42\x22\x94\xf0\x8e\ +\x73\xa9\xa9\x0d\x43\xe3\xca\xf3\xe6\xf3\x85\x6b\xcf\xa1\x20\x2f\ +\xe7\x98\x52\x7c\x8f\xb4\x8e\x40\x29\xc5\x8f\xef\x79\x98\xbb\x1f\ +\x5c\xee\x49\x7a\x2b\x7f\x0d\x86\x52\x68\x02\x6e\xff\xab\x9b\xb8\ +\xf9\xba\x25\x23\xf6\x06\x84\x10\x6c\xde\xb6\x93\x6b\x6f\xfd\x1b\ +\xa4\x65\x05\x5a\x8a\x7b\xb9\xf2\xd2\x57\x29\x9a\xe1\xca\x4b\x97\ +\xec\xc6\xd7\x1a\x9c\x6e\x1d\x0e\xb6\x2a\x07\xf6\x95\xe9\x52\xf3\ +\x74\xeb\xb0\xbd\xef\xff\xbd\xe3\x76\x16\x9f\xb5\x78\x48\x21\x80\ +\x0b\x02\x8e\xd3\x0a\xa7\x7f\xf6\xb2\x0b\x2f\x10\xe5\x25\x25\x83\ +\xce\x9f\xf7\x0b\x90\x0d\x41\xe3\x6e\xa8\x6c\xbb\x1f\x15\x38\x38\ +\xd8\xef\x1b\x1a\xc0\x29\x7a\x75\x3c\x0a\xec\xd4\xe3\x09\x53\xca\ +\xf9\xd4\x85\x73\xb8\x7a\xf1\x5c\x4e\x9f\x3b\x81\x69\xb5\x65\x18\ +\xba\x46\x7d\x53\x27\x5d\x3d\x71\x9f\x6a\x8d\x0a\x22\xc2\x01\x60\ +\x39\x4d\x73\xed\xd1\x48\x65\xa4\xa5\x04\x7e\x46\x1f\x89\x25\x25\ +\xef\x6f\xaf\xe3\x0f\x4f\xbe\xc1\x6b\xeb\xb7\xb1\xff\x50\x23\x63\ +\x8a\xf2\x98\x50\x55\xe0\x78\x31\x1f\x6d\x98\x90\xf9\xdd\xe7\x9c\ +\x76\x02\xcb\x2e\x3d\x9f\xc2\x82\x3c\xd6\x6d\xdc\x8a\x69\x5a\x1e\ +\xb6\xe1\xae\x79\x2f\xaf\x79\x9b\x15\xab\xd6\x31\xb1\xba\x92\xa9\ +\x13\x2b\x86\x65\x08\xdc\x70\x64\x5c\x45\x09\x57\x5e\x72\x1e\xaf\ +\xbf\xf5\x36\xcd\xad\xed\x1e\xb7\xa5\x3f\x73\xa3\x7a\x55\x7c\xa6\ +\x9f\x08\x15\xcc\x08\x05\x58\xd5\x64\xff\x24\x20\xfe\xf4\x70\xa6\ +\x1c\xfa\x92\x0b\xcf\xa7\xa4\xb4\x9c\x07\x1e\x7b\x41\xaa\xce\x1d\ +\xf7\x67\x03\x01\xfb\x32\x00\xe5\x5a\xc1\xb4\xcf\x2c\x5d\x7c\xbe\ +\x5e\xe5\xa4\x01\x47\x2a\x79\x3d\x50\xe6\xa0\xbf\x09\x39\x98\xe3\ +\x86\x9a\x71\x18\xa8\x06\x60\x24\xe9\xce\x91\xb4\x46\x67\x3b\xce\ +\x9f\x72\xb4\x24\x4e\x09\x70\x3e\x33\x26\x94\x71\xe1\x69\x53\xf9\ +\xe2\xd5\x0b\x39\xf7\xe4\x99\x14\xe6\xe7\x10\x8b\x27\x41\x41\x2c\ +\x91\xb2\x19\x8b\xf0\x77\x8f\xf9\xd2\x4f\xfe\x9e\xa4\x8c\x1a\x85\ +\xe0\x48\x4b\x4b\x5d\xeb\x9a\xa0\xb5\xb3\x9b\xcd\xbb\x0e\xf1\xe7\ +\xe7\xde\xe4\xe1\xe7\xd6\x23\x84\xc6\xd8\xa2\x7c\xa2\x39\x61\xc2\ +\x86\x76\x4c\xd8\x7c\x86\x9c\x3e\x94\x10\xcd\x89\x70\xca\xbc\x19\ +\x7c\xed\xe6\x6b\x68\x6c\x69\xe7\x40\xfd\x11\x62\xb1\x84\xc7\x1e\ +\xad\xe9\x1a\x6d\x6d\x9d\xfc\xf9\xe9\x97\xd8\x7f\xf0\x28\x27\xcf\ +\x9b\x45\xfe\x30\xbc\x1b\x37\x4d\x58\x58\x90\xcf\xe7\xaf\xbf\x8a\ +\x37\xd7\x6f\xe4\xe0\xe1\x06\xaf\x76\xc4\x0f\xd0\x04\x59\x80\x7c\ +\x46\x41\x64\x89\xe3\x33\x2b\x42\xfc\x45\x65\x19\x69\x47\xe5\x37\ +\x00\x2a\x1d\x0e\x5c\x76\xc9\x45\x14\x14\x8c\xe1\xa1\x27\x5f\x4c\ +\xa9\xce\x9d\xf7\xfb\x30\x80\x01\x0b\x81\x2a\x44\xc1\xb4\x1b\x2e\ +\x3c\xfb\xdc\xd0\x04\xa7\x10\xe8\x58\x02\x66\x83\x99\xd8\x23\x3d\ +\x6e\x38\x52\x5c\x43\x39\x6e\x38\x4d\x4d\x23\xa9\x5b\x48\xab\xcc\ +\x40\x32\xa5\x28\xca\x8f\x72\xd2\x8c\xf1\x2c\x3d\x6b\x36\x57\x2e\ +\x9e\xcb\x75\x17\xcd\x67\x6a\x6d\x19\x9d\xdd\x71\x0e\x34\xb4\xd8\ +\xe4\xa8\x9a\xf0\xad\x32\xc2\xd7\x5a\xaa\x7a\x03\x54\x10\x60\x54\ +\x4a\xd7\xad\xdb\x7c\x8b\x21\x43\x23\x9e\x4c\xb1\x76\xd3\x2e\x1e\ +\x7f\x71\x1d\x0f\x3d\xbb\x86\x83\x0d\x2d\xcc\x99\x56\x43\x61\x7e\ +\x38\x2b\x95\xfc\x87\x6f\x08\x6c\x01\x8f\xf3\x16\xcd\xe7\xa6\x65\ +\x4b\x18\x5b\x5c\xc8\x6b\xeb\x36\xa6\x27\xa4\x13\xde\xec\xd8\x5d\ +\xc7\xef\x1f\x5e\x4e\x22\x91\xe2\xac\x53\xe6\x0e\xcb\xa3\x71\xf7\ +\x5f\x76\xf9\xc5\xe8\xba\xce\xcb\x6f\xbc\x45\x28\xa4\x07\x8c\x69\ +\xe6\x0a\xdf\x57\x43\x51\x30\xd5\xab\x32\x0c\x80\x4a\xcb\x83\xb9\ +\xc9\x4f\x8f\x18\x34\xc8\x50\x74\xd5\xd2\x4b\x30\xc2\x79\x3c\xba\ +\xfc\xe5\x84\xea\xda\xf9\xc7\xc1\x14\x02\xe1\x78\x00\x65\x22\x7f\ +\xca\xf5\x17\x9c\x75\x56\xce\xa4\xda\xea\xac\x71\xf4\x60\x56\xd6\ +\x91\x90\x87\x0c\x35\xce\xce\x5c\x59\x87\xc3\x55\x30\xd4\xee\xc4\ +\x8f\xb2\xa9\x29\x9b\x87\xe0\x0e\x44\x43\xd7\x08\x19\x3a\x53\x6b\ +\x4a\xb9\xfc\xdc\x59\xdc\x74\xf9\x22\x16\xcd\x9b\xc4\x94\x9a\x52\ +\xf2\xa2\x61\x3a\xba\x62\x1c\x6d\xed\x72\x74\xe8\x45\xa0\x1a\x91\ +\x5e\x5a\x8b\xbe\x4e\x33\x85\xa7\x9e\xa3\x48\x87\x2b\x52\xda\x74\ +\x5e\x5b\x76\x1e\xe4\xde\xc7\x5e\xe6\x95\xb5\x5b\x68\x68\x6c\x25\ +\x37\x27\x42\x4d\x65\x91\x07\x88\x7d\x94\xa1\x81\xa6\x69\x2c\x3c\ +\x71\x1a\x37\x5d\x7b\x19\xf9\x79\x51\x3e\xd8\xbe\x87\xae\xee\x1e\ +\x74\x5d\xf7\x2e\xf8\x9a\xb7\x37\xf1\xfc\xab\x6f\x51\x5d\x55\xc1\ +\x9c\xe9\x95\xbd\xd4\xb0\x06\xbb\x9d\xbb\xe8\x44\xe6\xcd\x9e\xc3\ +\x93\xcf\xbf\xec\x53\x03\x26\xc0\x33\x40\x86\x2b\x2f\x7a\x77\xfc\ +\x66\x25\x01\xf1\x17\x10\xf9\x01\x41\xe5\x63\x2d\x72\x0d\xca\x35\ +\x97\x5f\x86\xc4\xe0\x89\x17\x5e\xed\xa1\x6b\xd7\x9f\x48\x4b\x84\ +\xf5\xdb\x0d\x18\xb1\x0d\xc0\xe4\x65\x8b\x16\x9e\x96\x37\x6b\xea\ +\x24\x5f\x4a\x65\x68\x68\xfa\x47\x19\x67\x0f\x17\x70\x1c\x2d\xc6\ +\x23\xff\xfb\xa3\xdd\x43\x31\x14\xd7\xd4\x6d\xe4\x2a\x2d\xce\x67\ +\xe6\xa4\x71\x9c\x77\xca\x34\x3e\x77\xc5\xc9\x5c\x7f\xc9\xa9\x94\ +\x8e\xc9\xa7\xad\xab\x07\x33\x65\x61\x4a\x89\x69\x05\x65\xb3\x3d\ +\x57\x55\xf9\xd2\x6f\x19\xd5\x89\x1e\x63\xad\x72\xba\x16\x0d\x9d\ +\xf6\x8e\x1e\xde\xdf\xb1\x8f\x47\x5f\x78\x93\xfb\x9f\x7c\x0d\x25\ +\xa1\xba\xa2\x04\xc3\xd0\x09\x19\xda\x47\xd2\xb5\xe8\x86\x06\xe1\ +\x70\x88\x93\xe7\xce\xe4\xaf\xbf\x70\x15\xc9\xa4\xc5\xf6\xdd\xfb\ +\x49\x24\x92\xe0\x28\xf2\xb6\x75\x74\xf0\xc8\xd3\x2f\xb1\xfe\xbd\ +\x1d\x9c\x7d\xda\x49\xe4\xe5\xe6\x0c\xe9\x5c\x85\x10\x98\x16\x4c\ +\x9e\x50\xcd\x17\x3f\x7b\x1d\x4f\x3c\xfb\x22\xed\x9d\xdd\x1e\x89\ +\xad\x52\x19\xe9\xc1\x2c\x24\x20\x64\xba\xf8\x19\x61\x5c\xf6\xb6\ +\x64\x15\xa0\xca\x57\x28\xae\xbf\xe6\x0a\xda\xba\x52\xbc\xf0\xf2\ +\x1b\x9d\xaa\x6b\xf7\x43\x8e\x07\x10\x1f\x8c\x01\x28\x11\xb9\xd5\ +\x4b\x66\xcd\x98\x53\x72\xca\x89\x73\x02\xe9\x9f\xd1\xc8\x83\x0f\ +\xb6\x78\x67\xf4\xd2\x6e\xc7\x46\x8a\x6b\xa8\x9e\xcf\x68\xa6\x18\ +\x87\x8f\x98\x43\xca\x54\x84\x43\x06\x73\xa6\x56\x71\xe5\xe2\x79\ +\x5c\x75\xfe\x02\xae\x3c\x6f\x3e\xa7\xce\x9d\x84\x94\x8a\x7d\x87\ +\x1a\xbd\xe6\x26\x4d\x04\x43\x85\x6c\x24\x92\xfe\xd4\x97\x7f\x55\ +\xd3\x75\x0d\xd3\x92\xac\x7b\x7f\x27\x7f\x5e\xfe\x06\x4f\xbc\xf4\ +\x16\x3b\xf6\xd5\x33\x63\x72\x35\x15\x25\xd1\x8f\xb4\x1c\xd9\xb4\ +\xe0\x8c\x53\xe6\x72\xe3\x35\x4b\x98\x3a\xb1\x9a\x97\x57\xaf\xc7\ +\xb2\x6c\xb0\xd0\xd0\x75\xea\xea\x1b\xf8\xe3\xe3\xcf\xd3\xda\xd6\ +\xc1\xa5\xe7\x2f\x20\x99\x1a\xea\x75\x56\x84\xc3\x21\x6e\xba\xfe\ +\x2a\x76\xef\xa9\x63\xe7\x9e\xbd\x1e\x01\x80\xc8\xa8\xe2\xeb\xd5\ +\x50\x24\xd2\x92\xec\x22\xb3\x82\x40\x64\x9f\xfc\x81\x7d\x1d\xfe\ +\xca\xcf\x5e\xff\x29\xb6\xef\x6d\x60\xf5\x5b\x6f\xd5\xab\xee\xfd\ +\x8f\x61\x37\x03\x0d\x8a\x13\x70\x2c\x39\x95\x8b\x6b\x6b\xa7\x57\ +\x9f\x7f\xc6\x29\x98\xd6\xe8\x49\x5e\x0f\xc7\x8b\x18\xea\xca\x7a\ +\xbc\x70\x15\x0c\xa5\xc5\x79\xa8\xd7\x68\xb4\x5c\x63\x05\x18\x86\ +\x4e\x34\x12\xa2\x7a\xdc\x18\x2e\x5a\x34\x83\x2f\x5d\x77\x36\x8b\ +\x4f\x9d\xc3\xa4\xf1\xa5\xe4\x45\x23\x98\x96\xa4\xa9\xb9\x13\x4b\ +\xda\x03\x21\x8d\xa8\x67\x94\xc1\x66\x16\xb1\xf8\x7e\x97\x54\x10\ +\x4f\x24\xd9\xb6\xe7\x20\xbf\x7b\xf8\x45\x5e\x78\xfd\x7d\xda\x3a\ +\xba\x89\x84\x43\x54\x55\x14\x63\xe8\x1f\x7e\x98\xa0\x94\xfd\xdb\ +\x67\x4f\x9f\xc8\x97\x3f\xb7\x8c\xdc\x68\x84\xdd\xfb\x0e\xd1\xdc\ +\xda\x46\xc8\x08\x61\x59\x16\xeb\xde\xdd\xc4\x9f\x9e\x58\x49\x6d\ +\x75\x25\xb3\xa7\x8d\x1f\xb4\xd1\xf2\xd7\x0b\x5c\x7d\xe9\x79\xc4\ +\x13\x29\xd6\x6e\xd8\x88\xe6\xf0\x0e\x7a\x5d\x8d\x99\x58\x80\x27\ +\x64\x9a\xd9\xec\x93\xad\xa1\x48\x65\x6f\x0c\x52\xb6\x6c\xd9\x57\ +\x6f\xfd\x02\xaf\xaf\xdf\xc2\x7b\xef\x6d\xd8\x45\xec\xe0\x72\xa0\ +\x89\x41\xb0\x02\x17\x00\x53\xb5\x31\xf3\xbf\x7f\xe6\x39\xd7\x2c\ +\xfd\xe5\x0f\xfe\x91\x44\xb2\xef\x3c\x78\xdf\xf9\xec\xd1\xe9\xdf\ +\x1f\x6c\xfd\xc1\x60\x26\xab\x3b\x26\x87\x5a\x56\x3c\x92\xe3\x46\ +\x52\x2b\xd0\xdf\x71\x1f\x56\x7e\x5d\x13\x02\x5d\xb7\x43\x89\x17\ +\xdf\xfc\x80\xa7\x5f\xde\xc0\x96\xdd\x07\x48\x99\x16\xa6\x69\x06\ +\x0a\x54\xdc\xbc\x34\xbe\xbe\x74\x8f\x91\xd9\xf9\x51\xd2\x61\x4b\ +\x46\xda\x05\xb0\x96\x65\x12\x09\x85\xf8\xdc\x35\xe7\x73\xe3\x15\ +\x8b\xc9\xcf\xcd\x71\x9a\x6d\x3e\x1a\xef\x20\x12\x86\xdf\x3d\xf4\ +\x3c\x3f\xfc\xe9\x3d\xb6\x4c\xb7\x83\x7f\x98\xa6\xc5\x49\x73\x66\ +\x72\xdf\x4f\xbf\x4f\x6e\x34\x3a\xa4\xf3\x73\xf7\x7b\xf1\xd5\x37\ +\xf8\xe2\xdf\xfc\x83\xcf\x55\xef\xcd\x3c\x6d\x5f\x98\x74\xed\x02\ +\x3e\x0e\x04\xbf\x90\x8d\x8b\xbd\x64\xb2\x54\xbb\xdc\x00\xd2\x4c\ +\xb1\x69\xed\xeb\x7c\xf3\xfb\xbf\xe6\xa5\x15\x8f\x3f\xab\x5a\xdf\ +\xfd\x47\x60\x17\xd0\x39\x90\x01\xc8\x05\xa6\x8a\xc2\x99\x7f\x33\ +\x6d\xee\x92\x9b\x9f\xfc\xcd\x7f\x05\xf4\xdb\x46\x73\x42\x8e\x64\ +\x22\x8f\x84\x3c\x64\x30\x46\xcb\xff\xff\xe1\x72\xf6\x1f\x8b\x6b\ +\xf4\x51\x16\xda\xd8\xa2\x27\x10\x4b\x58\x34\xb5\x76\xd0\xd0\xd8\ +\xc6\x2b\x6b\xb7\xb0\xf2\xcd\x4d\xd4\x1f\x69\x26\x14\xd2\x31\x74\ +\xcd\xa3\x33\x0b\x1a\x00\x7b\x90\xa6\x8b\x5c\x24\x7e\xba\x74\xcb\ +\xb2\xd0\x84\xa0\xb2\x62\x2c\x27\xcd\x9a\xc4\x5f\x2c\xbb\x98\x79\ +\xb3\x2a\xe9\x8e\xd9\xad\xd5\x1f\x96\x21\x50\x8e\xbe\x43\x57\x77\ +\x82\xd7\xd7\x6e\xe0\x8e\x1f\xfe\x8c\xd6\xb6\x76\x0c\x43\x47\x5a\ +\x16\x39\x91\x30\xcb\xae\xb8\x88\x7f\xbf\xe3\xab\xc4\x12\x43\x33\ +\x02\x86\x21\xd8\xbb\xbf\x9e\x2b\x6e\xfc\x22\x2d\x1d\x9d\xb6\xfb\ +\x2d\x1c\xf6\x67\x7c\x13\x3d\xc3\x00\x78\x24\x20\x64\xa1\x9e\xef\ +\x83\xa6\x5e\x26\x92\xd4\xef\xde\xcc\x45\x37\x7e\x87\x2d\x1b\x9e\ +\xff\xbd\xea\xd8\xf6\x5f\x8e\x01\xe8\x19\xc8\x00\x44\x81\x49\x22\ +\xb7\xf6\xe6\xa2\xda\x73\xbe\xbd\xf6\x89\x3f\xd0\xdd\x73\x6c\x57\ +\xba\xe1\x4e\xc8\x8f\xc2\x8b\xc8\x76\xdc\x60\x8c\x4f\xb6\xdf\x30\ +\x9c\xa6\xa6\xe3\x65\x73\x07\x7e\x28\x04\x61\x03\xea\x0e\x77\xb1\ +\xfa\x9d\x6d\xac\x7d\x7f\x07\xfb\x0f\x1e\x65\x5f\x7d\x23\xb1\x78\ +\x02\x43\xd3\x10\x9a\x3f\x3f\x9d\x5d\x23\x21\x60\x0c\x4c\x8b\xee\ +\x78\x9c\x49\xd5\x15\x5c\xb7\xf4\x1c\x16\xcd\x9f\xc5\xcc\x29\x35\ +\x44\xc2\x5a\x80\xa1\xfa\x58\xff\x3e\x5d\x13\xe8\x06\xfc\xe6\xfe\ +\x27\xb9\xff\xd1\xe5\xec\xdc\xb3\x9f\x48\x38\x44\xca\x34\x29\x29\ +\x2e\xe2\x3f\xfe\xe9\x5b\x9c\x7f\xf6\x29\x43\x16\x30\xd1\x75\xb8\ +\xe1\x2f\xbf\xc9\xcb\xab\x56\x13\x8e\x84\x7b\x4d\x64\xbf\x78\x48\ +\xa6\x8e\x85\x72\x26\xb8\xcb\x88\xe4\xe9\x01\x38\x03\xc7\xf5\x26\ +\x64\x2c\x4e\xb2\x7d\x37\xe3\x16\xdc\x44\xcb\xbe\xd7\xee\xa4\xa7\ +\xee\xf7\xc0\x5e\x06\xe8\x06\xec\x25\x0c\xb2\xfd\xf5\xb4\x30\xc8\ +\x70\x0c\xc0\x87\xe1\x0d\x64\x73\xcf\x47\xd3\x1b\x18\x89\xd1\xea\ +\xaf\x32\x72\x30\xbf\xf5\x78\x9c\xfc\x03\x19\x05\x77\xdb\xb0\x79\ +\x37\x8f\xbd\xf8\x16\xaf\xbe\xb5\x09\xcb\xd5\x01\x40\xa6\x2b\x57\ +\x32\x06\xb8\xdb\xb5\x28\x32\x5d\x60\x29\xd1\x75\x8d\xeb\x2e\x3b\ +\x87\x2f\xdd\x70\x19\x45\x05\x79\xbe\x4c\xc7\x87\xe3\x1d\x68\x1a\ +\xbc\xf4\xda\x5a\xfe\xfa\xef\xff\xcd\x66\x91\x76\x88\x37\xa7\x4f\ +\x9d\xc8\xc3\xbf\xf9\x4f\x2f\x2c\x18\xec\x75\x8a\x84\x05\x77\xfe\ +\xfc\x5e\xfe\xf3\x17\xbf\x0d\x74\xfb\x65\xaa\x00\x01\x59\xa8\xc8\ +\x7c\x0a\xc4\xae\x80\x89\x92\x9e\x81\x40\x29\x42\xa1\x10\x89\xc6\ +\x8d\x03\x0a\x83\x0c\x28\x0d\xf6\xea\xa3\x8f\xe8\x63\x8b\xf2\x3d\ +\x20\x47\x91\x41\x74\x38\x8a\x2b\xe4\x48\xb8\x04\x8f\x77\x2f\x62\ +\x20\x03\x30\xd4\xa2\xa9\xe3\xde\x18\x60\xcb\x6c\xbb\xf8\xc1\xc1\ +\x86\x16\x0e\x34\x34\xf1\xf6\xa6\x9d\xbc\xb6\xee\x03\x3e\xd8\xb1\ +\x1f\x43\xd7\x08\x87\x0c\xc8\xe4\xcf\x73\x07\xbb\xb2\xdb\x9d\x95\ +\x4c\x7b\x06\x0a\xc5\xe4\x9a\x71\x9c\x34\x7b\x2a\xd7\x5d\xb6\x98\ +\xd3\x17\x4c\x24\x16\xb3\x33\x1b\xc7\xd2\x10\xb8\xfc\x8b\xc9\x94\ +\x64\xe5\x1b\x6b\xf9\xe1\x4f\x7e\xc3\x9e\xbd\x07\x30\x42\x3a\xba\ +\xa6\xb1\xec\xf2\x8b\xf8\xb7\x3b\xbe\x61\xeb\x19\x0c\xa2\x90\xc8\ +\xfd\xbc\x95\xaf\xbf\xc5\xcd\x5f\xfb\x16\x6e\x7b\xb6\x7b\x2d\xec\ +\xb0\x40\xa6\x1b\x8a\x94\xcf\x43\xf0\x89\x86\xaa\x80\x82\x91\xa3\ +\x38\x24\x25\xb3\xa7\x4f\x67\xc5\x93\x8f\x52\x7d\xe2\x65\xfd\x4a\ +\x83\x65\x2b\x04\xb2\x3b\x02\x35\xa3\x9a\xdc\x09\x4b\x97\x9c\xb7\ +\xd8\x78\xe7\x90\xc9\xea\x9d\xad\xd4\xb7\x25\x68\xe9\x4a\x11\x4f\ +\x49\xe2\x49\x8b\xa4\x29\x31\x1d\xe8\x56\xd7\x05\x86\x2e\xec\xd4\ +\x91\xa3\xfc\xe8\x09\x24\x64\x28\xe2\x8e\x9c\xea\xfb\x78\x60\x16\ +\xce\xfe\x19\x83\x75\xeb\xfb\xfb\xad\x03\xf5\x42\x7c\x1c\x36\x17\ +\xb1\x96\xce\x58\x2d\xc8\x8f\x32\xbe\x62\x2c\x67\x2c\x98\xce\x4d\ +\x57\x9f\xc5\xad\xd7\x2d\x61\xda\xc4\xf1\x8e\x57\x00\xc9\x54\x8a\ +\x9e\x58\xc2\x39\xd6\xbd\x28\x0a\xa4\xf0\x28\xb6\x74\xa1\x21\x34\ +\x41\x47\x67\x17\x5b\x76\xd6\x71\xff\xe3\x2b\xf8\xc3\xa3\x2f\x63\ +\x49\x49\x51\x41\x3e\x05\x79\xb9\x44\x22\xda\x31\xd1\x14\x74\xeb\ +\x2a\x84\x80\xa9\x13\x6b\xf8\xca\xcd\x57\x51\x51\x56\xce\xae\x7d\ +\x75\x34\x36\xb5\xb0\x79\xc7\x6e\xee\x7e\xe0\x11\xe6\xcc\x9c\xca\ +\xc4\x9a\xf1\x83\xac\x4b\x50\x4c\xaa\xad\xe1\xea\x4b\x2f\xe2\xb9\ +\x95\xaf\xd2\xd1\xd9\x85\x26\x44\x16\x12\x10\x7a\x13\x8d\x10\x14\ +\xa2\xf1\x17\x12\x29\x25\x39\xfd\xb4\x53\x98\x33\x7b\x2e\xbf\x7b\ +\xf0\xe9\x14\xb1\x7d\x8f\x21\x93\x2e\x00\x68\xf5\x4e\xe3\x06\x37\ +\x03\x28\x45\x8b\x9c\x45\xf9\xf9\xf7\xfc\xc7\x77\xbf\x5b\x50\x54\ +\x35\x9b\x27\x37\x1c\x41\xcb\x6c\x52\xf1\xfa\xaf\x9d\x86\x15\x43\ +\x50\x56\x18\xa1\xa2\x38\x42\x45\x61\x84\x8a\xa2\x30\x15\x45\x11\ +\xf2\x23\x5a\xba\x96\x40\x04\x32\x44\xc7\x84\x04\x64\xa8\xe0\xe0\ +\x70\x52\x9a\xbd\x6f\xe8\x87\x47\x3a\xf2\x71\xdf\x32\x27\xa7\x25\ +\x25\x96\x69\x51\x77\xb8\x89\x27\x57\xac\xe6\xf1\x15\x6b\xe8\xec\ +\xee\x41\xd7\x84\x33\x21\xfc\xc0\x97\x42\x88\x0c\x17\x18\x3b\x5b\ +\x11\x0a\xe9\x2c\x39\xf7\x54\x6e\xfb\xc2\xa7\xa8\x28\x2b\x0e\xb0\ +\x59\x1f\xab\x4d\x4a\xc9\xfb\x5b\xb6\xf3\xf9\xbf\xfe\x3b\xef\x9c\ +\x2b\x2b\xca\x78\xe4\x9e\x9f\x50\x51\x5a\x32\xa0\x21\x72\xdf\x4f\ +\x24\x92\x2c\xfb\xc2\x57\x78\xf7\xbd\xcd\x08\xdd\x47\x16\xdb\x2f\ +\x09\x88\x42\x2a\xe9\x69\x11\xba\x61\x93\xb4\x52\xfc\xcb\x3f\xfc\ +\x1d\x13\x27\xcf\xe1\xe6\xdb\xfe\xb9\x93\xc6\x97\x6f\x41\x26\xde\ +\x70\xd2\x80\xe6\x40\x06\x40\x07\xc6\x00\x0b\xb4\xaa\xcb\xfe\xf4\ +\xf5\xbf\xb8\x65\xcc\x15\x4b\x2e\x17\xff\xf5\xc2\x1e\x0c\x5d\x1b\ +\xf0\xc6\xba\x21\x82\x52\x0a\x57\xf7\x31\x64\x08\xf2\x22\x3a\x79\ +\x61\x9d\xbc\x1c\xc3\x7e\x1e\xd1\x29\x8c\x1a\x14\xe7\x1a\x14\xe5\ +\x1a\x14\xe7\x85\x28\xce\x33\x28\xc8\xd1\x7c\x9f\x91\xe6\xdc\x13\ +\x22\x28\x1b\x33\x5a\x55\x7f\xa3\x19\x9f\x8f\x44\x11\x79\x30\x2d\ +\xce\xff\x93\x37\x57\x0e\xcc\xd0\xc1\x30\x60\xff\xa1\x36\x76\xec\ +\x39\xc8\xa6\xed\x7b\x58\xbb\x71\x1b\xef\xbc\xbf\x9d\x94\x65\x11\ +\x0e\x19\xe8\x9a\x08\x74\x2f\x2a\xd2\x20\x9a\x69\x9a\x98\x96\xc5\ +\x8c\xc9\x35\x9c\x36\x7f\x36\x4b\xcf\x5b\xc4\x99\xa7\x4c\x27\x95\ +\xb2\x7b\x26\x46\x3b\x4c\x50\x4a\xa1\xeb\x02\x4d\x83\xe5\x2f\xbe\ +\xc1\xcf\xef\xf9\x23\xeb\xde\x7d\x9f\xdc\x68\x0e\x9f\xbe\x7a\x29\ +\xff\x72\xfb\xd7\xc9\x89\x84\x06\x95\xc9\x08\x85\xe0\xdf\x7e\xf4\ +\x2b\xee\xfc\xc9\x2f\x88\xe4\xe4\xa4\xdb\xbc\x7d\x06\x20\x20\x46\ +\x4a\x50\x81\xd8\x9d\x38\x32\x95\xe0\xa5\xe5\x4f\xf2\xfa\xfa\xed\ +\xea\xfb\x77\xdd\xdd\x2a\xeb\x97\x7f\x06\xd8\x80\x2d\x0d\x36\xa0\ +\x07\xa0\x01\x85\xc0\x1c\xa3\x6a\xc9\xfd\xd7\x2c\xbd\x6a\xe2\xb7\ +\xfe\xf2\x2f\xf9\xe1\xf2\x5d\xa3\xda\x07\xee\x19\x0b\x69\x5b\x31\ +\xe9\x3c\x0a\x04\x65\x85\x21\xca\x0b\xc3\xb6\x37\x51\x14\xa1\xbc\ +\x28\x42\x51\x6e\x08\xc3\x09\x33\x42\x86\x46\x48\x17\x84\x9c\x94\ +\x13\x19\x5d\x52\x69\xe1\x45\x31\xac\x72\xe4\xa1\xac\xdc\x83\x45\ +\xf9\x87\x02\x70\xf6\xb7\xdf\xff\xa6\xcd\x45\xe2\x43\x21\xfb\x1a\ +\xac\x5a\xbb\x95\xa7\x5e\x5c\xc3\x7b\x5b\x76\xd1\xd6\xd9\x45\x67\ +\x57\xb7\x87\x80\xfb\x95\x77\xf0\xa4\xb7\x25\x89\x64\x92\xfc\xdc\ +\x5c\xbe\x74\xe3\x95\x5c\x79\xf1\xd9\x94\x8e\x2d\x22\x37\x27\xec\ +\x48\xb2\x8f\xbe\x41\x88\x44\xe0\x99\x15\xab\xf9\xbf\xff\xf9\x0b\ +\xea\x0e\xd6\x23\x50\xfc\xf6\xbf\xfe\x8d\xf3\xce\x3a\x1d\x43\xd7\ +\x02\x82\xaf\xd9\x7e\x6f\x4e\x44\xf0\xf8\xb3\xaf\xf0\xb5\x6f\x7f\ +\xd7\xab\x43\xc0\x4d\x00\x7a\xaa\xc2\xfd\x68\x48\xd8\x6e\x09\x7b\ +\x37\xbd\xc3\x3f\xff\xe8\xf7\xdc\xff\xf0\x93\xfb\xcc\xfa\xe7\x3f\ +\x07\x6c\x06\x3a\xf0\x35\x02\xf5\x65\x00\x04\x90\x07\xcc\xd0\xcb\ +\xcf\xfa\xc9\x59\x67\x2e\x39\xe3\x3f\xbf\xfb\x0f\xfc\xc7\x73\xbb\ +\x89\x25\x47\xdb\xa7\xca\x2e\xdd\xed\xf1\xa5\x05\x1e\x41\xd7\x6c\ +\xfa\x6b\x5d\xb3\xeb\xce\x35\x0d\x4a\x0a\x22\x8c\x2b\x8e\x30\x6e\ +\x4c\x94\xca\xb1\x39\x8c\x1b\x93\x4b\x79\x51\xd8\x8b\x93\xfc\x9e\ +\xc4\x50\xbc\x88\xc1\x4e\xe4\x63\xcd\x25\xd8\x5f\x23\xd0\xff\xc6\ +\x4d\x08\x5b\x59\x38\x16\x4b\xd0\xda\xde\xc9\xf3\xab\xd6\xf1\xd8\ +\x73\xab\xd8\xb5\xef\x20\xa1\x90\x61\xd7\x21\xf8\x49\x40\x84\x13\ +\x26\x28\x89\xa6\x69\xe4\xe7\xe5\x70\xe6\xc2\x79\x7c\xe3\x4b\x37\ +\x30\x75\x62\x39\x89\xe4\xb1\xa1\x3d\xb3\x2c\x8b\x5d\x7b\xeb\xf8\ +\x8b\xaf\x7f\x87\x03\x87\xea\xa9\x19\x5f\xc9\x43\xbf\xfd\x31\x93\ +\x6a\xaa\xfa\x65\x2a\x76\x8d\xd2\xd1\xc6\x26\xce\xbe\x7c\x19\x5d\ +\x5d\xdd\x1e\x9e\xa2\x5c\x60\x50\xe1\x19\x80\xf4\x5c\x71\xe5\xeb\ +\xa1\x20\xbf\x80\xcd\x6f\xbd\xc6\xad\xdf\xbe\x93\x97\x56\x3e\xbf\ +\xc6\x3a\xfa\xc6\x6d\xc0\x76\xa0\x9b\x0c\x76\xb1\xbe\x0c\x40\x14\ +\x98\xa4\x15\xcd\xfa\xe6\xc4\x59\x17\xdc\xf2\xd8\x2f\x7f\xca\x8f\ +\x5f\xd8\x4b\x4b\x77\xea\x98\x19\x00\x3f\x61\x65\xa0\x2a\xca\x97\ +\xda\xf0\x88\x30\x7d\x04\x90\x4a\xd9\xe8\xa9\x94\xd2\xf3\x24\x40\ +\x51\x18\x0d\x51\x98\x1b\xa2\x28\x2f\x44\x71\x6e\x88\xc2\xbc\x30\ +\x45\x79\x61\x8a\x72\xc3\x14\xe5\x85\xec\xe7\x79\xf6\x73\x43\x77\ +\x2e\xb0\xc4\x0b\x5b\xfc\x6a\xbc\xa3\xe1\xd6\x8f\x86\x7a\xd1\x27\ +\x5b\x16\xb7\xd9\x80\x70\x18\x8e\x36\xc5\xd9\xf0\xc1\x0e\x36\x6e\ +\xde\xc1\xc6\x2d\xbb\xd8\xb8\x65\x07\x6d\x6d\x1d\x84\x43\x21\x74\ +\x5d\x73\xe2\x65\x7b\x8c\x99\x29\x8b\x78\x32\xc1\xcc\xc9\xb5\x5c\ +\x70\xf6\x29\x2c\x3e\xe3\x64\xce\x58\x38\x1b\x21\x18\x72\xcd\xff\ +\x40\x21\x4d\x34\x07\x9e\x7a\x7e\x35\xbf\xba\xef\x41\x56\xbd\xba\ +\x9a\x2f\xde\x72\x23\x77\x7c\xe3\xaf\x28\x2e\xca\x25\xd5\x47\x48\ +\xe2\x1a\x81\x58\x2c\xce\xad\xff\xe7\x5b\xbc\xf4\xf2\x2a\x42\x91\ +\xb0\x87\xfc\x4b\x87\xf4\xd4\x2d\xb6\x52\x7e\x0f\x01\x45\xf5\xf8\ +\xf1\xbc\xfd\xca\x0b\x9c\x75\xed\x6d\xec\xda\xb4\xf2\x1e\xd9\xbe\ +\xf5\x47\x64\xa9\x01\xe8\xcb\x00\x80\x5d\x0b\x50\x8d\x1e\x5d\x1a\ +\xae\xbe\xfc\x27\xef\x3c\xf3\x67\x7e\xf1\xe2\x7e\x0e\xb5\xc6\x47\ +\xd5\x52\x2a\x25\x5d\xa0\x17\xe1\xc5\x38\xd2\xbb\x08\x01\xeb\xe6\ +\x54\x93\xd9\x0c\x56\x32\x6d\x20\xe8\x5d\x48\xe2\xe5\x97\xfd\x6c\ +\xa9\x48\x67\x82\xdb\x17\x50\xf9\x1e\x8b\xf3\x23\x54\x95\xe6\x31\ +\x7e\x6c\x2e\xe3\x4b\xf3\xa8\x2a\xcd\xa3\x72\x6c\x1e\x21\xc3\x26\ +\xc1\xd0\x75\xe7\xd1\xf9\x53\x59\x57\x6e\x15\xa8\x91\x3f\x56\x00\ +\xe7\x27\xdb\xc0\x9b\xa1\xdb\xf1\xf4\xa6\x6d\x07\x79\x64\xf9\x2b\ +\xbc\xb0\xea\x2d\xba\x7b\x62\xc4\xe2\x09\x2c\x37\x87\x8f\xcb\x9f\ +\xaf\x48\xa5\x4c\xc2\x21\x83\x5b\x6f\xbc\x8a\x9b\x96\x5d\x46\x51\ +\x41\x3e\x91\x48\x68\xd4\xc8\x4d\x94\x52\x84\x43\x82\xf5\xef\x6e\ +\xe1\x2b\xb7\x7f\x8f\xbd\xfb\x0e\x70\xf7\x5d\x3f\x64\xc9\x05\xe7\ +\x60\x18\x46\x9f\xdf\x61\x37\x14\x09\xbe\xfd\xbd\xff\xc7\xbd\x7f\ +\x7a\x38\x9d\x22\xf4\x49\xcd\xf5\xaa\xb6\x14\x8a\x13\x66\xcd\x62\ +\xd5\xf2\x47\xa8\x98\x7f\x3d\xc9\x83\xcf\xdc\x86\x15\x7b\x16\x38\ +\x88\x5d\x03\xc0\x60\x0c\x40\x08\xa8\x00\x4e\xa6\xf4\xe2\x47\x9f\ +\xf9\xc3\x7d\xda\xfa\x7a\xd8\xb0\xb7\xad\xd7\x20\x1f\xd9\x95\x91\ +\xbe\xea\xa6\xde\xb9\xdf\xcc\xf2\x46\x6f\x5f\x17\xf1\x74\xca\x49\ +\x7b\x95\x42\x66\x56\x50\x39\x16\xd2\x8f\x94\xaa\xc0\x71\x4e\x91\ +\x8a\xcb\xc3\x86\x04\xa5\x9c\xbe\x7a\x8d\xb0\x8b\x39\x18\x1a\xf9\ +\x39\x21\x2a\x4b\xf3\xa8\x2a\xc9\xa7\xaa\xd4\xfe\xab\x2c\xcd\x27\ +\x37\x9c\x4e\x7b\xb9\xc0\xa5\xfb\x79\x2e\x69\xc3\x48\xb4\x0c\x3f\ +\xd9\x86\x97\x69\x70\x3d\xb6\xb6\xf6\x2e\x5a\xda\x3a\x58\xfb\xee\ +\x66\x9e\x5a\xf1\x1a\xaf\xaf\x7b\x97\x70\xc8\x20\x64\x18\xce\xe4\ +\x93\x58\x96\x85\xae\x69\x94\x95\x14\x33\x7f\xce\x4c\xbe\x76\xcb\ +\x0d\x2c\x3c\xb1\x96\xee\x9e\x91\x97\x23\xbb\x0b\x84\x94\x8a\x5d\ +\x7b\xf7\x71\xdb\xdf\xff\x5f\x9a\x5b\x5a\xb9\xff\x97\x3f\x62\xee\ +\xac\xc9\xc4\x13\x7d\x1b\x01\x5d\x17\xbc\xfc\xda\x9b\x5c\x7f\xcb\ +\x97\x31\x0c\x23\x83\xf6\xdd\x01\xfe\xdc\x05\x52\x5a\x5c\x7e\xe9\ +\x25\xfc\xcb\x1d\x77\xb0\xf0\x82\x9b\x24\xcd\x2b\x96\x01\x6f\x63\ +\xb7\x02\xa7\x06\x6b\x00\x74\x60\x2c\x70\x12\xa5\x8b\x7f\x7f\xc7\ +\x37\x6e\xaf\x9c\x72\xc2\x99\x3c\xba\xbe\xde\xd6\x72\x1f\x25\xef\ +\x3f\xc0\x91\xee\x17\x44\x94\x3e\x9d\xb4\x0c\x03\xe0\xf2\xe2\x67\ +\xe3\x5e\x77\x8e\xf6\xbc\x09\x95\x11\x4e\x78\xfb\x2a\x37\x36\xb4\ +\x5f\x17\xbd\x1a\x32\x7c\x82\x9e\x2a\x83\x7b\x5d\x2a\x2c\xa5\x90\ +\x96\xcd\x95\x27\x9d\xbf\x68\x4e\x88\xb2\xa2\x28\xa5\x45\x51\x4a\ +\x8a\x72\x29\x2b\xb6\x9f\x17\xe4\x45\x28\xcc\x0d\x53\x98\x17\xa1\ +\x30\x2f\x42\x41\x6e\x84\xbc\xa8\xf0\x0c\x84\xdb\x01\x27\x55\x6f\ +\xe0\xf2\x93\xc9\x3f\xfa\x9b\xae\xdb\x0d\x3f\xc9\x24\xac\x7e\xfb\ +\x03\x56\xaf\x7f\x8f\x0f\xb6\xed\x62\xfb\xae\x7d\x1c\x3c\x7c\xc4\ +\xe1\x2c\xd0\xb1\x2c\x49\x4f\x2c\xc6\xe4\xda\x6a\xae\xbd\xec\x7c\ +\xce\x39\x7d\x21\x0b\xe6\xce\x22\x1c\x16\xa4\x46\x20\xbe\xea\x1e\ +\x97\x9f\x07\xcf\xad\x5c\xcf\xff\xbb\xeb\x17\x4c\x9b\x32\x89\xbf\ +\xfb\x3f\x5f\xa5\xba\xaa\x2c\x6b\x58\xe0\xf6\x11\x7c\xb0\x65\x27\ +\x9f\xfd\xf2\x5f\x53\x7f\xb8\xc1\x4e\x8f\x3a\x8b\xa5\x90\x69\x5d\ +\x08\x99\x88\x73\xe7\xbf\xff\x2b\xca\x28\xe6\xf6\xef\xfd\xfb\x61\ +\x9a\x5f\xbd\x19\x9b\x0c\xb4\x25\x33\x03\xd0\x9f\x01\x70\x33\x01\ +\xb3\x29\x39\xe3\x47\xe7\x9e\x73\xe9\xa9\xdf\xff\xce\x1d\xe2\x07\ +\x4f\x6e\x27\x27\xa4\x8f\x5e\xfc\x2f\x9d\xee\x25\xe5\x32\x99\x0a\ +\x6f\x92\x29\xa1\x3c\x42\x44\x2f\xe6\x71\x5d\x7d\x29\x51\x0e\xcd\ +\x8c\x1f\xfd\x14\x2a\xad\x8e\xa2\x5c\x01\x8d\x2c\x06\xc0\x6f\x44\ +\x84\x92\x3e\xd1\x86\xde\x79\xd7\x40\xda\x45\x48\x1f\xd3\x6b\xfa\ +\x1c\x55\xa6\x21\xc3\xa9\xcc\xf2\xc4\x1f\xec\xf8\xd3\x6e\xd3\x94\ +\x84\x43\x06\xb5\xe3\x0a\xa9\xad\x28\x66\x42\x65\x11\x13\xc6\x15\ +\x33\xa1\x72\x0c\x45\x79\x11\xbb\x6e\xde\x69\xbc\x11\x19\xad\xb7\ +\x9f\x6c\xc7\x0e\x58\xd4\x75\x68\x6a\xee\xe4\xc1\x27\x5f\xe0\xe1\ +\xa7\x5f\xe4\x48\x63\x33\x96\xb4\x1c\xa6\x5f\xfb\xbe\x09\x4d\xe3\ +\x73\xcb\x2e\xe3\xaf\xfe\xe2\xd3\x8c\x29\x2a\xf4\xd8\x84\xbc\xf1\ +\x37\x44\x83\xe0\x66\x39\xf6\xd6\x1d\xe2\xc6\x2f\xdf\xc6\xdf\x7e\ +\xf5\x8b\x5c\x7b\xc5\xa5\x01\x43\xd1\x2b\x73\xa6\x14\x8b\x2f\x5f\ +\xc6\xce\xdd\x7b\x3c\xf9\x74\x4f\x3c\x44\x81\xec\xec\xe0\x83\x4d\ +\x6f\xf3\xb7\xff\xfa\x6b\xf5\xc2\x8a\xe7\xd6\xd1\xbc\xe6\x9b\xc0\ +\x96\x6c\x19\x80\xfe\x0c\x80\x9b\x09\x98\xa6\x8f\x5d\xf0\xed\xc2\ +\xf2\xd9\x9f\x59\xf3\xc8\x1f\xf8\xee\x23\x3b\x31\x47\x8d\x1c\x3e\ +\xcb\x4a\x0e\x5e\x8d\xb5\xf2\xe1\x02\x2a\xa3\x16\x5a\xa9\xbe\x95\ +\x51\x54\xe6\x4a\xae\xdc\x66\x89\xcc\x95\x9c\xc0\x77\xa4\xeb\xb1\ +\x9d\x47\xe9\xca\x34\x49\x2f\x9b\xe0\xcf\xbb\xa2\x5c\x03\xa0\x7c\ +\x08\x6d\xf0\x3b\xa4\x52\x19\x05\x1d\xce\x67\x39\xbf\x57\x3a\x12\ +\xdf\x4a\xda\xfb\x86\x74\x41\x34\x12\x22\x27\x62\x90\x1b\x31\x88\ +\x46\x42\xe4\x46\x0d\xca\xc7\xe4\x33\xbe\xac\x90\xaa\xb2\x42\x2a\ +\xcb\x0a\xa9\x2a\x2b\xa2\xac\x38\x64\x87\x1a\xd2\xfe\xb3\xdc\xd0\ +\x43\x7e\x7c\x64\xc1\x8f\xc7\x90\x41\xd7\xed\x90\xac\xb9\xa5\x9b\ +\xfa\x23\x8d\x6c\xdd\xb9\x87\x17\x5e\x59\xcd\x8a\x55\x6b\x88\x27\ +\x92\x18\xba\x86\xa1\x6b\xd4\x56\x57\x72\xd2\xec\x99\x7c\xe1\x33\ +\x57\x73\xce\xe9\x33\xe9\xee\x19\x5e\x39\xb2\x1b\x1a\x68\x1a\x6c\ +\x78\x7f\x2b\x8f\x3f\xf3\x3c\x67\x9d\x76\x32\x97\x5f\x72\x36\xb1\ +\x78\xdf\x9f\xf7\x83\xff\xfc\x31\x3f\xfe\xd1\x8f\xd1\xf3\xf3\xd3\ +\x8b\x9d\x80\x70\x28\x44\x5b\xdd\xbb\x54\x2d\xbc\x89\xf6\x86\x2d\ +\x7f\xb2\x5a\x36\xdc\x09\xec\xcc\x96\x01\xe8\xcf\x00\x80\x4d\x0e\ +\x5a\xa3\xe5\x4f\xbc\x29\xa7\xfc\xb4\x7f\x5c\x7e\xcf\x2f\x79\x7e\ +\x6b\x37\xdb\x0e\x77\x8f\x9a\x01\x08\x4c\xf4\xcc\x66\x08\xfc\xc0\ +\xa0\xca\xca\x7b\x2e\xbc\x09\x4e\x30\x44\xe8\xaf\x82\x0a\x1f\x9f\ +\x7a\x46\x05\x55\xaf\xcf\x15\xe9\x95\xbc\x57\x3b\xab\x63\x44\x6c\ +\xd5\xd6\xde\x85\x19\x01\x4d\x7b\xf7\x1c\x54\x46\x15\x97\x4c\x57\ +\x71\xf9\x3f\xd7\x8d\xeb\x94\x6b\x88\x1c\x6a\x6e\xcb\xb2\x9c\x47\ +\x89\xae\x09\x53\xa3\xf4\x05\x00\x00\x20\x00\x49\x44\x41\x54\xc6\ +\x95\xe4\x33\xae\xd4\x31\x0c\xa5\xf6\xdf\xd8\xa2\x3c\xf2\xa2\x61\ +\xe7\x2f\xe2\xfc\x19\x9e\x46\xa0\xb2\x21\x0f\x2f\xd3\xf1\xc9\x36\ +\xf0\x0a\x1d\x0e\xdb\xc5\x49\x6b\x37\xec\x62\xc5\xaa\x37\x59\xff\ +\xee\x26\xea\x0e\x1d\xa6\xee\x60\x3d\xf1\x9e\x1e\xc6\x8d\x2b\xe7\ +\x96\xcf\x5c\xcb\x05\xe7\x2c\x62\xc6\x94\x49\xe4\xe5\x85\x86\x1c\ +\x26\xb8\x5e\x44\x7e\x9e\x60\xe5\xaa\x0d\x1c\x3c\xdc\xc0\x99\xa7\ +\x9d\x4c\xd5\xb8\xf2\x5e\x46\x5d\x29\x45\x6e\x54\xf0\x87\x3f\x3f\ +\xc3\x37\xfe\xee\x1f\x49\x99\x29\x87\x6f\x41\x71\xfe\xd9\xe7\xf0\ +\xdf\x77\xfd\x88\x79\x17\xdf\x42\xfc\xc8\xda\xef\xcb\xae\x7d\x7f\ +\x00\x0e\x60\x53\x81\x31\x14\x03\x10\x02\xca\x81\x33\x42\xb5\xcb\ +\xfe\x7c\xef\x7f\xfc\x50\x75\x1b\x65\x62\xf9\xc6\xa3\xa3\x05\x00\ +\x78\x06\x00\x99\x06\xf3\x84\x6f\x92\xa1\x64\x76\xd0\xae\x2f\xf1\ +\x05\xd7\xb0\x04\x5c\xfd\xa0\xf8\x82\x8d\x94\x4a\xdf\xe4\xec\x5b\ +\x7c\xc1\x3d\x07\x7f\xb5\x95\xf2\x1b\x80\x2c\xe7\x20\x45\x3f\x06\ +\xc0\x6f\xc8\x44\x7f\x06\x20\x9d\xd1\xc8\x6a\x2c\x3c\x92\x7f\x3b\ +\x5c\xc2\x77\x8d\xd2\x6a\xc3\xca\x47\x42\xa9\xa8\x2c\x29\x62\x52\ +\x75\x29\x93\xc6\x97\x32\xb9\xba\x94\x89\xd5\xa5\x54\x97\x8f\x0d\ +\x64\x23\x32\x57\xc3\x4f\xb6\xec\xd7\xc3\xf5\x2a\x4d\xd3\xe2\x89\ +\xe7\x57\xf2\xc7\xc7\x9e\xe1\xfd\xcd\xdb\x00\x81\x61\xe8\x5c\x75\ +\xc9\xf9\xfc\xed\xd7\x6e\xa1\xb2\xbc\x74\xc8\x99\x04\x77\x5f\xa5\ +\x14\xad\x6d\xed\x6c\xdb\xb1\x8b\x33\x4f\x3f\x39\xab\x11\x10\x42\ +\xd0\xd2\xd2\xc6\x69\x17\x2d\xa1\xb3\xb3\x0b\x50\xfc\xd3\x77\xbe\ +\xcd\x99\x67\x9c\xa3\x2e\xbd\xe9\x76\x91\xaa\x7b\xf4\x7a\x60\x0d\ +\x36\x19\x68\x6a\xa8\x06\x40\x07\x8a\x81\x59\xfa\xb8\x0b\x1e\xb8\ +\xf5\xb3\xb7\xd6\x5e\x7d\xc5\xa7\xf8\xe5\xca\x3d\xa3\x32\x38\x94\ +\x0f\xc1\x17\xca\x51\x4c\x95\xee\x2a\x2b\x7d\x42\x97\xf6\x84\xf5\ +\x2e\xa4\x7f\x72\x66\xe6\x44\x7d\x86\x40\xf9\x52\x26\xc1\x49\xe6\ +\x82\x85\x72\x40\xf5\x15\x6f\xdf\x00\x06\x81\x0f\xb3\xc8\x34\x00\ +\xbe\x73\x4f\xe7\x2c\xfb\xae\xe3\xf6\x9d\x03\x3e\x2f\xa4\x3f\x03\ +\xe0\x27\xda\x50\x8e\xe0\x27\x19\x86\x2c\x70\xfd\xdc\x72\x59\x95\ +\x06\x2c\xdd\xba\x09\x01\xe4\xe5\x85\x29\xcc\xcd\xa1\x20\xcf\xfe\ +\x2b\xcc\xcb\x61\x4c\x61\x2e\xe3\xca\x8a\xa8\x2c\x2d\x66\x5c\x69\ +\xb1\xfd\xbc\x2c\x9f\x90\xe1\x84\x1a\x32\xfd\xf8\x51\xd3\x7f\x1f\ +\x0f\x21\x83\x61\x40\x7b\x47\x92\xdd\x7b\xeb\xd8\xb1\x67\x2f\x2b\ +\x5f\x7f\x8b\x97\x56\xad\x26\x2f\x37\x87\x33\x4f\x5d\xc8\x8d\xd7\ +\x5e\xc1\x45\x8b\x4f\x22\x9e\x80\x64\x72\x70\x78\x81\x3f\x8b\xd1\ +\xdd\x13\x27\x9a\x93\xd3\xe7\x3e\x6d\x6d\xed\xfc\xe5\xdf\x7c\x8b\ +\x57\x57\xbd\xce\xd3\x7f\x7e\x80\x57\xd7\xed\xe0\xae\x5f\xde\x5d\ +\x67\x35\xac\xfc\x2c\xb0\x15\x68\xcb\x06\x00\x0e\x64\x00\x34\x07\ +\x07\x98\xa2\x15\xcd\xfc\x46\xf5\xb4\xc5\x37\x3f\x75\xcf\x7f\xf3\ +\xbd\x87\xb7\x8f\xce\xea\xe0\x4b\x5d\x04\x56\x4b\x95\x59\xde\x98\ +\x5d\x46\x49\xb8\xd3\x78\x98\x2b\x79\x7a\x92\x49\xa7\xc1\x84\xac\ +\xae\xbc\x3f\xbe\x52\x32\x63\x72\x66\x84\x13\x4a\x06\x6b\x17\xbc\ +\x42\xa6\x40\x38\x91\x0e\x05\xfa\x24\xc7\x70\xfe\x24\xbe\xec\x46\ +\x2f\x03\x10\xfc\x0e\xb7\xc8\x85\x2c\x06\xc0\xdb\xd7\xab\x8f\x70\ +\x41\xd3\x4c\x63\x9b\x2e\xb6\xb2\x01\x30\xbb\xdb\x53\x9a\x12\x4b\ +\x9a\x94\x14\x17\x30\xa1\xaa\x84\xea\x71\x25\xd4\x56\x96\x50\x53\ +\x59\xca\xf8\x8a\x31\xe4\xe6\x44\x1c\xec\x22\x4c\x4e\x24\x4c\x34\ +\x12\xc6\x08\xa5\xab\x30\x7d\x65\x1a\xff\xa3\xbd\x0b\xf7\xb7\x85\ +\x43\x76\x49\xf0\xf6\x5d\x47\x78\xe2\xb9\x95\x3c\xf5\xfc\x4b\x74\ +\x77\x77\x71\xcd\x65\x4b\xb8\xf4\x82\x73\xa9\xad\xae\xa2\xa8\x30\ +\x8a\x65\xd2\x6f\x69\xf0\x50\xeb\x0c\xbe\xf8\xf5\x6f\xf3\x6f\xff\ +\xf4\xf7\x2c\xb9\xe9\x1f\xd8\xbf\xf5\xd5\xdf\xcb\x8e\x6d\x77\x01\ +\xbb\x9d\xf8\x5f\x0e\xd5\x00\xb8\xe4\x20\xd5\xe8\xd1\x8b\x28\x3e\ +\xe7\xe7\x6b\x9e\x7e\x4c\xdc\xf5\x52\x3d\xf1\x94\x35\x82\x93\xf6\ +\x18\x0d\xb3\x1b\x00\xff\x24\x13\x03\xc7\xcb\x1e\xcd\xb2\x9f\x44\ +\x22\x8b\x01\xf0\xf6\xcd\x58\x19\xb3\x85\x13\xf6\x67\x05\x27\x86\ +\x3f\x54\x21\x43\x8e\x5b\xa9\x8c\xca\x2c\xaf\x48\x29\xb8\x2f\x2a\ +\xfb\xea\xec\xd6\x28\xf4\x22\xc7\xf0\xed\x9b\xf6\x12\xa4\xcf\x80\ +\x66\xd9\x57\xa9\x80\x01\x75\x0d\x80\xdb\x51\x87\xc7\x25\xe7\x97\ +\xac\x52\x3e\x23\x24\x3c\xae\x39\xd7\x08\xb9\xe1\x84\xf4\x42\x35\ +\x9f\x27\xe4\x80\x58\xba\x00\xa1\x69\x4e\xa9\xb6\xa0\x20\x2f\xca\ +\xe4\xda\x0a\x26\xd7\x8c\x63\x4a\x6d\x05\x93\x6b\x2a\x99\x52\x3b\ +\x8e\x68\x8e\x70\xda\x75\xfd\xb5\x12\xff\xf3\xc3\x86\x64\x32\x49\ +\x2a\x65\xb2\x76\xc3\x7b\x3c\xfa\xcc\xf3\x24\x12\x49\xbe\x73\xdb\ +\x97\x99\x3d\x7d\x22\xe6\x28\x19\x02\x80\xb6\x8e\x2e\xa6\x9f\xfa\ +\x29\x45\xfb\x6b\x5f\xc3\x8a\xbd\x48\xba\x00\x28\xeb\x55\x36\x06\ +\x98\xa9\x16\xd0\x83\x34\x8f\xa2\xd3\xb1\xea\xad\x75\x85\x27\xd6\ +\xce\x12\xab\x77\xb4\xa2\x69\x04\x94\x69\xbd\x16\x6e\x2f\xb5\xd2\ +\x5f\x82\x41\x11\xe4\x36\x57\xd9\x51\x02\x95\x46\xe7\xb3\x6b\xa0\ +\xfa\x9a\x40\x3c\xda\x6a\xbb\x37\x4c\x64\xdb\xd7\x95\x51\x92\xe9\ +\x33\x91\x7d\x58\x41\x91\x31\x30\xfb\xdd\x37\x70\x0e\x7d\xef\xab\ +\x82\x72\xae\xfd\x7e\x6e\xb6\xdf\x69\x33\xe6\x08\x9b\x4c\x32\x68\ +\x4e\x03\x27\x2a\x02\xdf\xa1\xfa\xd8\x37\xed\x05\x64\x48\xd6\xfa\ +\xf6\xb5\xcf\x4e\x88\x0c\x0d\x3a\xef\xac\x1d\x83\xa2\x9c\x2a\x4b\ +\xcb\xf4\xd2\x52\x9d\xdd\x31\x0e\x36\x34\xf1\xca\x9b\xef\xdb\x25\ +\xda\x0e\x80\x99\x17\xcd\x61\x6c\x71\x3e\x63\x8b\xf2\x9d\xc7\x02\ +\xc6\x16\x15\x50\x56\x52\x44\x79\x49\x31\x15\x25\xc5\x94\x97\x16\ +\x53\x51\x3a\x86\x82\x3c\x5f\xc8\x61\xa5\x43\x8f\x8f\x83\x17\x91\ +\x79\x7e\xe1\x70\x98\x50\x28\xc4\x45\xe7\x2e\x62\xe9\x85\x8b\x88\ +\xc5\x15\xef\x6e\xda\xcc\xaa\x37\xdf\x21\x2f\x1a\xa5\xb8\xa8\x88\ +\xaa\xca\x0a\x42\x86\x31\x22\xa3\xb3\xe2\xb5\xf5\x0a\x9d\x0e\xa4\ +\xe9\x8a\x80\x58\xf4\x83\xf7\x0e\xf4\x6d\x16\x10\x47\xa5\x9a\x74\ +\x5d\x35\xbd\xf6\xf6\x3b\x45\xb7\xff\xf5\x99\xe4\x86\x75\x4c\x4b\ +\x91\xb4\x24\x29\x4b\x92\x34\x15\x29\x53\x92\xb4\xec\xc7\x84\xe9\ +\x94\xd9\x12\xac\xab\x4f\xff\xdf\x36\xff\x52\xb9\x08\xba\x70\x9e\ +\x4b\x94\x66\x77\x4c\x29\xc7\x5d\x4e\x2f\xa4\x0a\x65\x29\xdf\xca\ +\xa9\x7c\xe0\x55\xb0\x71\x48\x65\xf6\x52\x2b\x9f\x31\xf0\xdc\xef\ +\x34\xf2\xa5\x7a\x09\x2e\x28\xdf\xe4\x54\x7d\x68\xb5\x07\x8d\x98\ +\xb7\xaf\x4a\xcf\x8f\xde\x13\x4e\x65\x0a\xef\xa4\x35\xfb\xe8\xad\ +\x23\x2f\xfa\x8e\x9e\x1c\x6f\x28\x53\x2c\xb2\xf7\x7e\xae\x31\xf3\ +\x9b\xde\x3e\x3f\xd7\xa7\x55\x97\x29\x2f\x1e\xf8\x4c\xcf\x6a\x09\ +\xaf\x1b\x2f\x73\x5f\x81\x2d\x54\xaa\x09\xc3\xde\xd9\x30\xbc\xde\ +\x8d\x96\xb6\x4e\x9a\x5a\x3a\x02\xa9\x5b\xe9\x64\x39\x6c\x8c\xc2\ +\xc2\x34\x2d\x72\xa3\x11\xa6\xd4\x54\x31\xa9\x76\x1c\x93\x6a\xc6\ +\x31\xb9\xb6\x92\xc9\xb5\x55\x14\xe6\xe7\x12\x32\x74\x42\xa1\x10\ +\xe1\x90\x4e\xc8\x08\x11\x32\xb4\x00\xd7\x84\x52\xc7\x1f\xa0\x29\ +\x84\xc0\x92\x60\x25\xec\xe7\x0b\x4e\x3c\xc1\x2b\xf2\x41\x41\x57\ +\x4f\x62\x44\x06\x40\x08\xc1\xcb\x6f\x6c\x10\xba\xa1\x9a\x2c\x95\ +\x6a\x72\x90\xff\x7e\x3b\xf8\x06\xfa\x36\x85\x4d\x21\xd4\xae\x12\ +\x4d\x1b\x77\xef\x3f\x30\x65\x4c\x6e\x88\x0b\x66\x97\xa6\x57\x25\ +\xff\x0a\x95\xe1\x09\xf8\x27\x7e\x70\xb2\xf6\xfe\xbf\x1b\x7f\xe3\ +\x8b\xc5\x3d\x54\xdf\x17\x47\xa7\x52\x92\xa4\x29\x49\x9a\x26\x09\ +\x53\x92\x4c\x49\x12\xa6\x45\x2a\x65\x91\x48\x59\x24\x4d\xfb\x31\ +\x61\x4a\x92\x49\x8b\x78\xca\x74\x5e\x33\x49\x26\xed\xf7\xe2\x49\ +\xe7\xb5\xa4\x49\x22\x65\x61\x59\xbe\x40\xd5\x37\x33\x3d\x09\x2c\ +\x7f\x81\x8f\x0a\xea\xbd\xa7\xf7\x75\x56\xf8\xb4\x85\x40\x64\x35\ +\x2e\xfe\x09\xaf\xb2\x7b\x11\x32\xd3\xd8\xd0\xcb\xd8\x04\xfe\xe7\ +\x78\x04\x2a\x8b\x0f\x11\xd8\x37\x43\xac\xd2\xaf\x34\xa3\x7a\xbf\ +\xe4\x09\x59\x64\x4a\x55\xaa\x6c\x86\x2c\xcb\x99\x65\x33\x6c\x42\ +\xf4\x76\xf9\x5d\x63\x21\x84\xe1\xd4\x68\xe8\xa8\x88\x7d\x1d\x76\ +\x1f\xa8\x67\x57\xdd\x21\x1b\xc3\x71\xe2\x05\x5d\xd3\x08\x85\xec\ +\x8a\x3d\xfb\xcf\x20\x27\x12\x66\x42\xcd\x38\xa6\xd4\x54\x32\x79\ +\xc2\x78\x26\xd7\x56\x31\x75\x42\x35\x65\xa5\x11\xcf\x7b\xf0\x83\ +\x97\xc7\x8b\x61\x10\x42\x60\x39\x5a\x03\xd1\x9c\xc8\x88\xcf\x6b\ +\xdb\xee\x03\xa8\x44\xd3\x46\xa0\x9d\x0c\xfa\xaf\xe1\x18\x00\x9c\ +\xf4\x41\xa7\x6c\xdf\xb6\x6a\xdf\xa1\x29\xcb\xb2\xb9\xa7\xee\xe2\ +\x28\x7c\xca\xd3\xe9\xfa\x76\x81\xee\x76\xd0\x69\xf6\xff\x87\xcd\ +\x09\x48\xfa\x3f\x9a\xc3\x03\xe0\x7e\xaf\xf0\x19\x1e\xa1\xf9\xe8\ +\xc8\x32\xde\xcf\x76\x9c\x94\xb6\x52\x8c\x29\x6d\x0f\x26\x65\xd9\ +\x32\x59\xa6\xe3\xe1\x98\xa6\xc4\xb4\x2c\x52\x96\x74\xf8\xf0\x6d\ +\x2d\xbc\x94\xe9\xfc\xdf\xff\xdc\xb4\x48\x59\x16\xc9\x94\x7d\x8c\ +\xfd\x39\xf6\xeb\xee\x71\xf6\xfe\xf6\xa3\x99\xb2\x9c\xef\xb0\xbc\ +\xe3\xdd\xcf\x48\xa5\xec\x7d\x92\x29\xd3\x3e\x97\x94\xe9\x15\x17\ +\xd9\x5a\x70\x2a\x30\xa9\x85\x2f\xc5\x18\x94\x91\x4d\x7b\x1f\xde\ +\xe4\x95\x69\x3d\x39\x91\xc5\xc0\xf8\xe5\x84\xd3\x85\x4e\x04\xb0\ +\xa4\x80\x27\xe4\x1a\x73\xbf\x60\x85\xc8\x66\x9c\x7c\x2a\x42\xb2\ +\x7f\x43\xe4\xdd\x43\x25\x50\x42\xa0\x3b\x03\x4c\x49\x45\x22\x99\ +\x22\x91\x48\x3a\xe9\x54\xfb\xd8\x3d\x75\x87\x58\x69\xd9\x00\xa6\ +\x65\xd9\x7f\x21\xc3\xa0\xa2\x6c\x0c\x15\xa5\x63\x9d\xc7\x12\x2a\ +\xca\xc6\x50\x3a\xa6\x98\x92\xb1\x45\xf6\xe3\x98\x22\x4a\xc6\x16\ +\x31\xc6\x69\x23\xcf\xcc\x72\x7c\x18\xc5\x55\xee\xe7\x8f\xf4\x7b\ +\x76\xed\xaf\x47\xb6\x6f\x5b\x85\x4d\xff\x35\x60\x6f\xe3\x60\x3c\ +\x00\x1b\x07\xb0\x7a\x76\x26\x7b\xda\xba\xd7\xbc\xf3\x6e\xde\x59\ +\xa7\xcc\xef\x33\xfd\x13\x10\x31\x1c\x42\x4d\xfb\xa0\x8e\xcb\x50\ +\xb4\xf1\x80\xeb\x4c\x23\xd2\x8f\x96\x61\xff\xc6\x47\x38\x2e\xa5\ +\x3e\x22\x22\x53\xb2\x9c\xb2\xf0\x19\x1d\xe8\x9f\x4b\x30\x2b\x77\ +\xa0\xf3\x8f\x69\x42\x3c\x61\x11\x4b\xa4\x88\x27\x53\xc4\xe2\x49\ +\x62\x89\x14\xb1\x84\x49\x3c\x91\x22\x96\x48\x12\x8f\x27\x89\x25\ +\x4c\xef\x79\x4f\x22\x45\x3c\x91\x74\xf6\x75\x5e\x8b\xa7\x88\x25\ +\x12\xc4\xe2\x49\x12\xc9\xa4\xd7\x46\x9d\x2e\x59\x56\x5e\x9b\xb6\ +\x5b\xb5\x88\x13\xa6\x49\xe7\x22\x4b\xc7\x20\x7b\xaf\x79\x98\xa3\ +\xea\x55\x8a\xad\x02\x7d\xeb\x2a\x58\x00\xe3\xeb\xfc\xf4\x4c\x8c\ +\x8f\xf2\x3a\x73\xa1\x71\xe3\x13\xd7\x78\xbb\xc2\xa5\xba\x66\x77\ +\x6d\x86\xd0\x7d\xe7\x20\x69\xed\xe8\xa4\xad\xad\x83\xad\xbb\xf6\ +\x7a\x46\xd3\x92\xd2\x0e\x33\x7d\x7f\x9a\x06\x93\x6a\xc6\x33\x6d\ +\x52\x0d\xd3\x26\x4f\x60\xda\xe4\x5a\xa6\x4f\x9e\x40\x55\x45\x19\ +\x9a\xa6\xa1\x6b\x1a\x9a\x6e\x3f\x7a\xa2\xa2\x83\x00\x00\x3f\x8c\ +\x4d\xd3\x60\xe5\xeb\xef\x92\xec\x6e\xeb\xc6\xea\xd9\x39\x98\xf8\ +\x7f\xb0\x1e\x80\x74\x62\x89\x76\xcc\xce\xf7\x1e\x7a\x66\xf9\xa2\ +\xc5\xa7\xcf\x17\x49\xd9\xff\xe4\xce\xf6\x5a\xb6\xc9\x3d\x98\xce\ +\xb7\xcc\xe3\xfa\xb7\xa4\xd9\x01\xba\x81\x8e\x1f\xec\x6f\x18\xca\ +\xe7\xfb\x5f\x77\x00\xf6\x80\xeb\x3c\x58\xa3\x95\x39\xb0\x42\x21\ +\x9d\x50\x48\xa7\x90\x9c\x5e\x20\x6c\xe0\x69\x3f\xaf\x65\x7e\xbc\ +\xd7\xc5\xe8\xd4\x09\x58\x7e\xa6\x26\x5f\xed\x80\x95\xed\xff\x4a\ +\x22\x2d\xdb\x08\x58\x96\x3d\x99\x2c\x25\x49\x24\x4c\xe2\xc9\x24\ +\xf1\x78\xc2\x31\x3c\x29\xe2\x89\x84\x6d\x8c\x3c\x43\x95\xb0\xdf\ +\x8f\x27\x89\xc5\x13\x24\x92\x49\x7a\x62\x09\xe2\x89\x04\xb1\xb8\ +\xf3\xe8\xfc\xbf\x27\x96\x70\x5a\x61\x83\x24\x98\xc2\x03\x2c\x54\ +\x46\xb8\xa1\x7a\x93\x66\xfa\x3c\x1c\x5b\x49\x59\x47\x19\xba\x97\ +\x3e\x3e\x50\xdf\x40\xdd\xc1\x7a\x5e\x7c\xed\x2d\x3b\xf5\xac\x24\ +\x42\x08\xa2\xd1\x08\xd1\x9c\x08\xd1\x88\xf3\x98\x13\xa1\xb2\xbc\ +\x94\x49\x13\xaa\x99\x54\x53\xcd\xa4\x89\xd5\x4c\xae\xad\x66\x42\ +\x4d\x31\x60\xbb\xf5\x96\x65\x7b\x12\xb6\x8b\x7f\x6c\x0d\x40\xc8\ +\x80\xbb\x1f\x5a\xae\xb0\x3a\xdf\x73\xdc\xff\x78\x5f\xa9\xbf\xa1\ +\x1a\x00\xe5\xa4\x11\x3a\x35\xb3\x6d\xfd\x1b\xeb\xdf\x39\xa3\xbd\ +\xb3\x77\x61\xc2\x60\x27\xee\x60\x26\xf2\x50\x8e\x1b\xcc\xe7\x0d\ +\x76\x72\x0f\xf7\x5c\xfa\xfa\xed\x83\x91\xf7\x1e\xec\xe7\xf5\xe7\ +\x1e\x66\x80\xfd\xa8\xbe\x52\x09\x83\x5a\x49\x34\x34\x6d\x70\x03\ +\x63\x28\x06\x39\xe0\x01\xf5\xe1\x0d\xa5\x59\xa4\x7b\x3f\x77\xf7\ +\x49\x99\x90\x48\x40\x22\x69\x91\x48\xda\x9e\x4d\x22\x99\xf4\x42\ +\x82\x44\xca\x36\x32\x89\x44\xca\x7e\x3d\x9e\x24\x91\xb2\x8d\x4d\ +\x22\x99\xb4\xf7\x4f\x24\x89\x27\x13\xf6\x7b\xc9\x24\xc9\x64\xca\ +\x09\xd3\x52\xa4\x4c\xd3\x09\xc7\x4c\xcc\x94\x49\xca\x32\x31\x53\ +\x29\x4c\xd3\x74\x42\xb2\x14\xf1\x78\x82\xce\xae\x6e\x0e\xd4\x37\ +\xf0\xfa\xba\x77\x9c\xcf\x4e\x90\x88\x27\x20\x95\xa2\xa8\x74\x0c\ +\x55\xe5\x65\x54\x8f\xaf\xa4\xa6\x6a\x1c\x35\x55\xe3\x18\x57\x5e\ +\x46\x71\x51\x21\xc5\x45\x85\x8c\x29\x2a\xa4\xb8\xd8\x7e\x1e\x32\ +\xb4\x60\xbd\xc4\x30\xb7\xd6\xf6\x38\x2b\xdf\x78\x47\x68\x66\xdb\ +\x7a\x69\xbb\xff\x89\xc1\x8c\x80\xc1\x1a\x00\x13\x68\x97\xdd\x75\ +\xef\x84\x8a\x67\xb3\x69\xfb\x0e\x4e\x3b\xe9\xc4\x51\x8e\x81\x46\ +\xdf\x38\x0c\x77\x42\x0e\xd6\x58\x64\xf3\x68\x06\x13\xfa\x0c\xc5\ +\xa3\xf9\xf8\xe7\xc3\xc9\xc8\xb4\x8c\xce\x66\x18\x3a\x86\xa1\x93\ +\x97\x9b\x33\xaa\xf9\x7a\xfa\x49\x5e\xf7\x57\x35\x93\xe9\x61\x59\ +\x96\xa2\xa7\x27\x46\x77\xac\x87\xee\x9e\x38\xdd\x3d\x3d\x74\x77\ +\xf7\xd0\xde\xd1\xc1\xa1\xc3\x47\xe8\xee\xe9\xa1\xa7\xa7\x87\xc2\ +\x82\x02\x6a\xab\x2b\xa9\xae\xaa\xa2\xd2\x09\x35\x86\xb3\xbd\xb3\ +\x69\x07\x9a\xa6\x91\xea\xae\x7b\xc7\xf1\x00\xcc\xd1\x32\x00\x6e\ +\x3a\xb0\x1b\xab\x67\x97\x4c\xb4\x6c\x7e\x72\xc5\xca\x39\x67\x9f\ +\x72\x22\x89\x64\xef\x8b\x37\x92\x89\x3c\x14\x63\x31\x58\xb7\x7e\ +\xa8\x58\xc4\x50\xdc\xfa\xa1\xac\xde\xc3\xf5\x40\x3e\xd9\x8e\x3d\ +\x0a\x3f\x28\x43\x31\x80\x47\xe5\xf7\xba\x5c\xa3\x92\x97\x97\x4b\ +\x5e\x5e\x6e\x2f\x1c\x27\x70\xff\x7d\x9c\x95\xc3\x35\x60\x39\x11\ +\xc1\x9f\x9e\x58\x89\x4c\xb4\x6c\xc6\xea\xd9\x85\x5d\xf9\x37\x28\ +\x02\xcf\xc1\x9a\x1b\x17\x07\x68\xb3\x5a\xde\xbd\x6f\xf9\x8b\x2b\ +\x49\xa5\x82\x62\x09\x83\xb1\xf0\xa2\x0f\x4d\x80\xc1\xc6\xd9\xa3\ +\x19\x72\x04\x9b\x5f\x86\xee\xd6\x0f\x65\x82\x0f\xf5\x38\xf5\x49\ +\x9b\xde\xff\x28\xa3\x12\xa0\xb8\xf7\x15\x36\xb9\x18\xc1\x48\x3a\ +\xec\x85\x10\x24\x52\xf0\xc8\x93\x2b\xb1\x5a\xde\xbd\x0f\xbb\xee\ +\x7f\x50\xf1\xff\x50\x0c\x00\x4e\x4a\xa1\x83\x54\xfb\x76\x48\x36\ +\xdd\xfb\xe8\x13\x6a\x30\x71\xf6\x68\xad\x90\x7d\x4d\xc8\xa1\xc6\ +\xa2\x23\x05\x15\x87\x62\x7c\x06\x32\x32\x23\x09\x69\x3e\xd9\x3e\ +\xd9\xdc\xed\xe7\xf7\x3e\xa1\x20\xd9\x64\xcf\x4d\x3a\x18\x44\xfa\ +\x6f\xa8\x06\x40\x79\x61\x00\x1c\xd1\x89\x6d\x7e\xf6\x95\x55\x42\ +\x66\xe4\x02\xd5\xb0\xdd\x98\xa1\x79\x11\x43\x5d\xe1\x87\x1a\xd7\ +\x0f\x17\x1c\x1c\xae\xa1\xf8\x64\xfb\x64\x1b\xee\x26\xa5\xe4\xb1\ +\x67\x57\x09\x5d\xc4\x36\x63\xf3\xfe\xb9\xee\xbf\x1a\x4d\x03\xe0\ +\x1a\x81\x04\xd0\x2c\xdb\xb7\x2e\xdf\x77\xb0\x9e\x58\x3c\x31\x68\ +\xb7\x3e\x9b\x0b\xdf\x97\x5b\x3f\x98\x95\x73\xb4\x56\xd2\xd1\xce\ +\x38\xf4\xf5\x5b\x87\x73\xdc\x27\xdb\xff\x96\x90\xc1\xfe\xd3\x7c\ +\x1e\xb3\x35\xc8\x3e\xeb\x9e\x58\xc2\x29\xfe\xd9\xba\x1c\x68\x66\ +\x90\xe8\xbf\xbb\x19\x43\x34\x00\x29\xa0\x43\x25\x9a\x37\xc4\xbb\ +\x9b\x0e\x3f\xf8\xcc\xb3\x95\x5f\xb9\x71\x19\xa6\x35\xb8\xc9\x35\ +\xda\x39\xff\xbe\xe2\xe7\x63\xb9\x32\x0f\x76\xbf\x4f\xc0\xc1\x4f\ +\xb6\xf4\x98\x49\xf7\xf6\x6b\xc2\xc6\x83\xdc\xbf\xe6\x96\x18\x5b\ +\xb6\xef\x64\xeb\x8e\x5d\x24\x93\x29\xc6\x8f\x1f\x47\x4d\x55\x15\ +\xd3\xa7\x4c\x1a\x50\x13\x2e\x64\xc0\xdd\x0f\x3e\x4b\xac\xb3\xe9\ +\x30\x89\xe6\x0d\x3e\xf7\x7f\xd0\x06\x60\xa8\xc3\xcd\xe5\x08\x98\ +\xa6\x15\xce\xfc\x4a\xb8\xe4\x84\x2f\xad\x7f\xf2\xe1\x3e\x78\xf2\ +\x47\x5f\x1b\x6f\x20\x29\xae\xd1\xe0\xde\x1f\xce\x71\x43\x91\x28\ +\x1f\xea\x71\x9f\x6c\xc7\xf7\xca\xad\x69\x8e\x62\x95\x6e\x3f\x0a\ +\x01\x2d\x6d\x29\x8e\x34\x36\x71\xb4\xb1\x99\x23\x8d\x4d\x34\x1c\ +\x69\xe4\x50\x43\x03\x87\x1a\x8e\xd0\xd2\xdc\x4a\x61\x61\x01\x63\ +\x8b\x8b\x18\x5b\x5c\xc4\xf8\xca\x71\xcc\x9c\x36\x85\x59\xd3\xa7\ +\x32\x76\x6c\x9e\xaf\xfc\x78\x70\xdf\x5f\x7b\xea\x75\x24\x9a\x3f\ +\xf8\x8d\xec\xd8\xf6\x4b\xd2\xdc\x7f\x83\xa6\x69\x19\x6a\xbd\x87\ +\xdb\x1c\xd4\x2a\xe3\x47\x37\x24\x93\x29\x6b\xfd\xa6\xcd\xda\xc9\ +\x73\xe7\x88\x0f\x6b\xb5\x1d\x8a\x17\x31\x54\x6f\x62\x28\xc7\x0d\ +\xb7\x8a\x71\x24\xc0\xe8\x27\xdb\xb1\x5f\xa5\x03\x2b\xa3\xcf\x68\ +\xdb\x3d\x1a\xa6\x53\x28\x64\x92\x32\x2d\x8e\x34\x36\xb1\x73\xcf\ +\x7e\x76\xed\xd9\xc7\xf6\x3d\xfb\xd8\xb9\x7b\x1f\xbb\xf6\xec\xc3\ +\x4c\xa5\x08\x47\xc2\x5e\xc5\xe0\xc4\x9a\x6a\x2e\x3c\xf7\x0c\xae\ +\xbe\xf4\x62\x4e\x5d\x30\xc3\xfe\x3c\xcb\x2e\xeb\xf6\x7f\x6f\x32\ +\x39\xf0\xf9\x09\x61\x9f\x8b\x10\x82\xb5\xef\x6e\x55\x89\x64\x4a\ +\xca\xf8\x51\x57\xf8\x73\xc0\xe6\x9f\xd1\x30\x00\x26\xd0\x49\xb2\ +\x65\xab\xa6\xe2\x0d\x2b\x57\xbf\x39\xfe\xb4\x79\x73\xb0\xe4\xe8\ +\xc7\xe7\x23\x05\xdc\x06\xeb\xaa\x8f\x66\x68\xd2\xd7\x6f\x1d\xe8\ +\xf8\x4f\xc0\xc1\x0f\x7f\xf5\xf6\xaf\xdc\x9a\xa3\x38\xbc\xff\x60\ +\x2b\x7b\xf6\x1f\x64\xf7\xfe\x03\xec\xde\x7b\x80\x3d\xfb\x0f\x50\ +\xdf\x70\x94\x78\x32\x49\x22\x91\x20\xe1\x94\x32\x27\x92\x09\x4c\ +\xa7\x32\xd0\x4c\x99\x08\x01\xa7\x2d\x98\xc7\x37\xbf\x7a\x0b\xe7\ +\x9e\x71\x0a\x95\x15\xe5\xe4\xe7\xe5\x92\x9f\x9f\x47\x24\xac\x7b\ +\x64\xac\xb1\x78\x70\xd2\x0f\xaa\x08\x49\x40\x34\x47\xd0\xdc\x12\ +\xe3\xae\x5f\xfe\x86\x67\x57\xbc\xc8\x33\x0f\xdd\xcf\x33\x2b\xdf\ +\x14\x9a\x8a\x37\xc8\x64\xcb\x56\xec\xea\x3f\xf3\x58\x1b\x00\x1c\ +\xf7\x22\x06\x34\x59\x6d\x5b\xfe\xf0\xc8\xb3\x2b\xfe\xee\xf6\x2f\ +\xdf\x9a\xb5\x20\x68\x38\x83\x7a\x28\xd5\x74\x03\x29\xea\x64\x9b\ +\x58\x83\x75\xb3\x8f\xa7\x72\xe4\x4f\xb6\x41\xc6\xd8\x19\xf1\xb5\ +\xa6\xd9\xab\x6a\x4b\x5b\x37\xad\xed\x1d\xb4\xb4\xd9\x7f\xad\x6d\ +\x1d\x1c\x6d\x6a\xa6\xfe\x48\x13\x0d\x47\x1b\xa9\x6f\x68\xe4\xf0\ +\xd1\x46\x8e\x36\xb6\xa0\xb0\x99\x80\xed\x92\x68\x5b\x97\x41\x49\ +\x85\x69\xd9\xa5\xc1\xc5\x45\x05\x4c\xac\xa9\x62\x42\x75\x15\x93\ +\x27\xd4\x70\xc2\xac\x69\xcc\x9d\x39\x8d\x99\xd3\x2a\xed\xd5\x31\ +\x65\x97\x2b\xfb\x3b\x08\x2d\x2b\xf3\xbe\x0f\x7c\xe3\x0d\xc3\x36\ +\x4c\xef\x6d\xde\xc5\xeb\x6f\xae\xe5\xf1\x67\x9e\xe3\xed\x35\x6f\ +\x81\xae\x71\xe6\xd9\x67\x30\xa6\xb8\x88\x3f\x3c\xba\x02\xab\x6d\ +\xcb\x1f\x80\x26\x67\x4e\x0e\x99\xa1\x71\x38\x06\xc0\x0b\x03\x54\ +\xcf\x81\x37\x12\x3d\x33\xea\xff\xed\xe7\xbf\xaa\xfa\xee\xd7\xbf\ +\x32\xac\x01\x3e\xd4\x89\x7c\x2c\x57\xca\xe3\xb9\x1c\xf9\x7f\xbb\ +\x4b\x9e\xf9\x9e\x2b\x27\xaf\x1c\x62\x99\x44\x22\xc9\xae\xfd\x07\ +\xd9\xb5\xf7\x20\x3b\xf7\x1e\x60\xe7\xde\x03\xec\xd8\xb3\x9f\xa6\ +\x96\x56\x04\xc2\x71\x9f\x55\x06\x1e\xa3\xd2\x14\xf0\x40\x7e\x5e\ +\xd4\x69\x97\x16\xce\xe4\xd7\x88\x84\x0d\x4e\x3d\xe9\x04\xce\x3b\ +\xeb\x34\xce\x3f\xfb\x34\xaa\x2a\xc6\x78\x31\xba\x3f\x6b\xd3\xdd\ +\x33\xf4\x49\x9e\xed\xb7\x5a\x96\x45\x32\x99\xe2\x8f\x8f\x3c\xce\ +\x7f\xfc\xec\x97\x34\xb7\xb4\xd8\x9d\x87\x4a\xa1\xe5\xe7\x21\xbb\ +\xbb\xb9\xe7\x67\x77\x71\xfb\x0f\x7e\x45\xbc\xab\xb5\x9e\x9e\x03\ +\x6f\x0c\xd7\xfd\x1f\xae\x01\x00\x3b\xcf\xd8\x09\xd4\x6b\xc9\xa3\ +\x2f\xbe\xf0\xda\x9a\x9b\xbf\xf9\xc5\x2f\xa8\x68\x4e\x58\x64\xfb\ +\xe1\x1f\x76\x11\xce\xf1\x52\x8e\xdc\xd7\xfb\x9f\x4c\xfa\xde\x83\ +\xdf\xef\x8e\xeb\x1a\xe8\xba\xa0\xbd\x53\xb1\xff\xe0\x11\xea\xea\ +\x8f\x50\x77\xe8\x08\xfb\xeb\x8f\x52\x77\xa8\x81\xce\xae\x6e\xba\ +\x7b\xe2\xf4\xc4\xe2\xf4\xc4\x62\x74\xf7\xc4\x88\x27\x12\xb6\x81\ +\xcd\xe0\x86\x08\x87\x43\x7d\xa8\x41\x29\x2c\xcb\x22\x95\x4a\x91\ +\x4c\x9a\x94\x97\x16\x73\xda\xfc\xb9\x9c\xb6\xe0\x04\x4e\x9c\x35\ +\x9d\xd2\xb1\xc5\x8c\x19\x53\xc4\xd8\xa2\x7c\x84\x96\x06\xe6\x92\ +\xc9\xd1\x6b\xf5\x75\x75\xff\xf2\x72\x05\xdb\x77\x1e\xe1\x17\xbf\ +\xbb\x8f\xd7\x56\xbf\xc5\xde\xba\x3a\x12\xf1\x84\xd3\xef\x60\xe0\ +\xb6\x69\x0b\xe0\x92\xa5\x4b\x28\xc8\x2f\x50\x4f\xae\x58\x2d\xb4\ +\xd4\xd1\x17\x25\xd4\x3b\x73\xd1\x1a\xce\x39\x0c\xd7\x00\x48\xec\ +\x7c\x63\xa3\x6c\x7b\xff\x91\xf6\x68\xf5\xa7\x9f\x7b\xf5\xb5\x9c\ +\x4f\x5f\x71\x91\x03\x6c\x1c\xdb\x9c\xfc\x87\x9d\xf3\x1f\x0a\xc7\ +\xc1\x70\x8d\xcf\xff\x24\x15\x60\x7f\xda\x2b\x33\xbf\xdd\x1d\xb3\ +\xe8\xea\xee\xa1\xb3\x3b\x46\x67\x57\x8c\xce\xee\x1e\x5a\x3b\xba\ +\x38\x74\xb8\x91\x43\x47\x9a\x38\x74\xb8\x91\x83\x47\x9a\x38\x70\ +\xe8\x28\x3d\xf1\xb8\x4d\x38\xaa\x69\xe8\x42\x20\x74\x1f\x29\x48\ +\x06\xe9\x6b\x38\x64\xf8\xc4\x60\x7c\x64\xa7\x4a\x61\x99\x16\x96\ +\xb4\x50\x0a\x87\x6f\x70\x2c\x15\x65\x63\x99\x33\x6d\x32\x0b\xe6\ +\xce\x64\xfe\xdc\x99\x54\x96\x47\x49\x9a\x90\x4a\x05\x5d\x76\x4b\ +\x06\x1d\xeb\x91\x0a\x84\x0a\x21\x30\x0c\x1b\x00\xdc\xb6\x6b\x37\ +\x6b\xd6\xbe\xcd\x7d\x0f\x3d\xca\xd6\xf7\x3e\x40\xcb\xcd\x71\x56\ +\x7b\xe9\x4d\xfc\x34\x07\x02\x58\xc9\x24\x5f\xbd\xe5\xf3\x3c\xf8\ +\xd4\xcb\xa2\xb5\xb5\x39\xae\xda\xde\x7f\x04\x68\x74\xe6\xe2\xb0\ +\x08\xda\x47\x32\xe4\x34\xa0\x00\x98\xa2\xe5\x4f\xfe\x0b\x99\x3f\ +\xe7\xeb\x1b\x5f\x78\x02\x5d\xd3\x8e\xab\xb4\x5b\xb6\xcf\x18\xee\ +\x71\xc7\x22\xc5\xf8\x71\x0e\x07\xfa\x72\xd3\x85\x80\x86\xc6\x36\ +\x76\xed\xaf\x67\x77\x5d\x83\xfd\xb8\xff\x10\x7b\x0f\x1e\xc1\x4c\ +\x59\x1e\x39\x88\x5f\x8a\x4d\x3a\x34\x68\x69\x4d\x45\x02\x13\x3d\ +\x53\x87\xc1\x93\xca\xf6\x98\xa5\xf1\xc9\xba\xa5\x25\xd8\xca\x4a\ +\x8a\x39\xff\xcc\x93\x39\xef\x8c\x85\x9c\x71\xf2\x89\x01\x22\x8f\ +\x6c\x42\x1b\xc7\xfa\x3a\xc5\x62\x31\x7e\xfa\xdb\xfb\xf8\xed\x7d\ +\x7f\x22\x96\x88\x7b\x84\x2b\x1e\x13\xb6\x0a\xb2\x49\xe3\xfe\x66\ +\x25\x29\x2b\x19\xcb\xce\x0d\xaf\x52\x38\xed\x4a\xb4\xee\xcd\x3f\ +\x95\x5d\x7b\xee\xc5\xa6\xfd\xee\x1c\xae\x01\x18\x49\xdb\xb7\x07\ +\x06\xca\x9e\x83\xab\xf5\xa2\x13\xbe\xf8\xc0\xe3\x4f\xe7\x7c\x7e\ +\xd9\x55\x62\xb0\x6e\xfd\xb1\x4a\xbb\x65\x4e\xac\xc1\x86\x11\x03\ +\x1d\x77\x2c\xc2\x86\x6c\xc6\xe9\xa3\x9b\xd0\x36\x89\x86\xeb\x92\ +\xfb\xdd\x72\x29\xa1\xa1\x29\x46\xfd\xd1\x16\x0e\x1f\x6d\xa5\xfe\ +\x68\x0b\xf5\x8d\x2d\x34\x35\x77\xd0\xd9\x1d\xa3\xa3\xab\xc7\xfb\ +\xeb\xec\xea\xc6\xb2\x6c\xc6\x52\xcd\xf9\xf3\x26\x9c\x47\x45\xee\ +\xd7\x7d\xe8\xbd\x1a\x89\x01\x02\x5a\x05\xa4\x92\x29\x92\x66\x0a\ +\x69\x49\x66\x4e\x9d\xc0\xbc\xd9\x53\x39\x69\xce\x34\x26\x56\x57\ +\x32\xae\xbc\x84\xca\xf2\x52\x8a\x0a\x42\xe9\xa6\x1b\xd9\x9f\xd1\ +\x12\xa3\x3e\xe9\x43\x21\x41\x5e\x2e\xbc\xb9\x7e\x37\x0f\x3c\xfc\ +\x04\x6b\x37\x6c\x64\xf3\xf6\x1d\xa0\xc0\xd0\xb5\x20\xb7\x22\x0e\ +\x6b\x92\x10\x01\x4e\x48\x97\xc6\x4d\x4a\xc9\xef\xff\xfb\x27\xfc\ +\xf8\xee\xa7\x95\x6e\x88\xb8\xd5\x73\x70\xf5\x48\xc0\xbf\xd1\x30\ +\x00\x2e\x16\xd0\x8e\x4c\xee\x26\x56\xf7\xdc\x1f\x9f\x7a\xf6\xda\ +\x5b\x6f\xb8\x2a\x90\xcf\x1c\xcc\x4a\x37\x1a\x13\xf2\x98\x50\x90\ +\x1d\x03\xb7\x7e\x24\xbf\x75\x24\xab\x4f\x80\x8c\xc3\x21\xd9\x30\ +\x2d\x3c\x1a\xb1\x58\x3c\x69\x3f\x8f\x27\x39\xdc\xd8\xc6\x81\x86\ +\x26\x0e\x1c\x6e\xe6\x40\x43\x13\x75\xf5\x4d\x1c\x69\x6a\xb3\xdd\ +\x3e\xe1\xb2\xfd\x3a\x40\x99\x20\x28\x88\x2a\x15\xa1\x90\x41\x48\ +\x4f\xab\x2b\x05\x75\x1d\x83\x93\x58\x64\xcc\x78\xe5\x63\x24\x76\ +\xcf\xdf\x92\x36\x5b\x70\x24\x1c\x62\x4c\x61\x1e\x85\x05\xf9\x54\ +\x8d\x2b\xe1\xe4\x13\x67\x72\xea\xbc\x59\x2c\x9c\x3b\x09\x5d\xb3\ +\xd1\xf7\x4c\x04\x3e\x9e\x38\xb6\x13\xbd\x97\x7b\xaf\x43\x4f\x3c\ +\xc5\x81\x43\x87\x79\x69\xd5\x6a\x7e\x71\xcf\xfd\x1c\xae\x3f\x4c\ +\x24\x9a\xe3\xb8\xff\xba\x47\x9d\x2e\x32\x18\xa6\x3d\x66\xe9\xc0\ +\x80\xb2\x15\xa6\xaa\xab\x2a\x59\x30\x6f\x2e\x7f\x79\xc7\xcf\x05\ +\xb1\xba\xe7\x90\xc9\xdd\xd8\x7d\xff\xd6\x48\xce\x7b\x34\x0c\x40\ +\x1c\x68\xb4\x5a\x36\x3e\x70\x48\x2f\xbf\xf8\x81\xc7\x9f\xcb\xbf\ +\xe1\xca\x4b\x87\x5c\x0f\x3f\x14\xc0\x6c\xa8\x13\x6b\xa4\xc7\x8d\ +\x36\x38\x38\x14\x80\x73\xb8\x13\xdd\xab\x2f\xd7\x04\x89\x84\x62\ +\x4f\x7d\x13\x7b\x0f\x36\xb2\xf7\x60\x23\xfb\x0e\x35\xb2\xe7\xe0\ +\x51\x5a\xda\xbb\x51\xd2\x16\x1e\x75\x79\xf1\x2c\x4b\x06\x5c\x73\ +\x97\x92\xdd\x26\xde\x70\x64\xb2\x33\x84\x58\x94\x47\x87\x9e\x5e\ +\xb7\xb3\xf0\x0c\xdb\xaf\x7b\xda\x89\x99\xeb\x39\xde\xf7\x59\x96\ +\x42\x4a\x3b\x54\x98\x37\x73\x0a\xe7\x9c\x7e\x22\xe7\x9c\x3a\x8f\ +\x09\xe3\x2b\x30\x0c\x1d\x5d\xd7\xd1\x7d\x37\x28\x9e\x18\x7a\x6e\ +\x7d\xb4\x27\x7e\x28\x24\x38\x72\xb4\x95\x3b\x7f\x7e\x37\xcf\xbc\ +\xb0\x92\x9e\x78\x1c\xcb\x32\x41\x41\x4e\x5e\xae\xe7\xf1\x78\x64\ +\xa9\x64\xf2\x1a\xf6\x61\x18\x11\x58\xf1\x18\x77\x7c\xf3\x36\x7e\ +\xff\xf0\x0b\xd4\xed\xdd\xd7\x45\xcb\xc6\x07\x9c\xd8\x3f\xfe\x51\ +\x1b\x00\x70\xd8\x82\x80\x83\xba\x6c\x59\xf1\xb3\xfb\xfe\x74\xed\ +\xd5\x17\x5f\x40\x38\x1c\x1a\xf0\x46\x1c\x0b\xb4\x7e\x24\xee\xf9\ +\x70\xf6\x3b\x96\x2c\x40\x7e\x30\x4d\x77\x73\xdb\x4e\xae\xbb\x2b\ +\x06\x4d\x2d\x9d\x1c\x6d\xed\xa2\xb1\xb5\x93\xc6\x96\x4e\x1a\x5b\ +\xba\x68\xeb\xec\xa6\xad\xa3\x87\xd6\xce\x1e\xda\xda\xbb\x69\xed\ +\xec\xa1\xab\x3b\xee\xb8\xf6\xd8\x2b\xb7\xc0\xab\x2a\x53\x2a\x43\ +\x45\xc9\x39\x49\xbf\x48\x25\x10\x1c\xc0\xfd\xde\xa8\xf4\x7c\x16\ +\x42\xf6\xe9\xc7\x5b\xd2\x61\x3b\x36\x4d\xf2\x73\x73\x98\x3d\xb5\ +\x86\x99\x93\x6b\x98\x3e\xa9\x9a\x09\xe3\x2b\xa8\x1d\x5f\x4e\x4d\ +\x65\x09\x86\x61\x83\x72\xe6\x00\xbc\x7a\x1f\xd6\xa4\x77\x15\x9a\ +\x22\x21\x5b\x02\xec\x95\xd5\x1f\xb0\xfc\xa5\x57\x79\xe3\xad\xb7\ +\xf9\x60\xdb\x0e\x0c\xc3\xf0\xdc\x7b\x02\x5d\xae\x6a\xe0\x31\xde\ +\x87\x7e\xc3\xfc\x85\xf3\xb9\x61\xd9\x15\x4c\x3b\xeb\xf3\xe8\xaa\ +\x65\x85\x65\xab\xfd\xb8\xac\x3f\x7c\xd4\x06\xc0\x72\xe2\x90\xa3\ +\x56\xcb\xbb\x8f\x77\xe6\xd6\x5c\xfb\xde\xd6\xed\x9c\x36\x7f\x6e\ +\x6f\xcb\x36\x82\x38\x7b\xa4\x1d\x7a\xc3\x3d\x6e\x28\xe5\xc8\x03\ +\xa5\x3b\xfb\x0a\x0f\x34\x8f\xef\xce\xa6\x16\x4f\x3a\x14\xe1\x29\ +\xd3\xa2\xa3\x2b\xce\x81\x86\x36\xf6\x37\xb4\x70\xe0\x70\x2b\x75\ +\x87\x5b\xa9\x6b\x68\xa6\x27\x9e\x44\x73\x26\xb1\xe6\x4c\x6c\xdb\ +\xb5\xef\x2d\x41\x9e\x1b\x0d\xf5\x92\x1a\xf3\x58\x28\xfc\x42\x1f\ +\x64\x1f\xa8\x99\xca\x43\x69\x57\xbd\x1f\x0d\x00\xe1\xca\x90\x2b\ +\xef\x2f\x9a\x13\x22\x9a\x13\x21\x37\x27\xcc\xec\xa9\xb5\x2c\x5a\ +\x30\x8b\x45\x0b\x66\x33\xa9\xa6\x88\x54\xca\x9e\xe4\x7e\x04\xde\ +\x74\x26\xfe\xf1\xb2\x69\x1a\xf4\xf4\x24\x69\x6a\x69\xe3\xe1\xa7\ +\x9f\xe7\x67\xbf\xfd\x03\xb1\x78\x9c\x48\x38\x8c\x10\x90\x93\x93\ +\x83\x70\xf5\x20\xfd\x13\x59\xf9\x65\xeb\xfc\xd7\x2a\x53\xeb\x41\ +\x05\x58\x8f\x11\x02\xcb\x32\xf9\x97\x3b\xbe\xcd\xab\x6b\x36\xd1\ +\xde\xd9\x85\xd5\xf2\xee\xe3\xd8\x6a\xbf\xb1\x91\xae\xfe\xa3\x65\ +\x00\x5c\x2f\xa0\x0d\x65\x6d\x97\x9d\xbb\x1e\xf9\xdb\x7f\xbd\xf3\ +\x53\xef\x2c\xbf\xcf\x2b\x8e\x18\x6c\x9c\x3d\xdc\x55\xf3\x58\x16\ +\xef\x0c\xc5\xad\x0f\x7e\x4f\x46\x07\x98\xb0\x01\x35\x21\xa0\xa9\ +\x35\x49\xdd\x91\x56\x0e\x36\xb4\xb3\xbf\xa1\x95\xba\x86\x56\x0e\ +\x35\xb6\x91\x4a\x3a\x7a\x00\x3e\x7d\x00\x4b\x5a\xbe\x01\x95\x16\ +\x23\xc9\xcb\x09\xa7\xa9\xb6\x7d\x1a\x87\xbd\x5d\x48\x3f\x42\xde\ +\xdb\xe5\xee\xb5\xaf\x22\x4b\xa4\x9e\x5d\x74\xc4\x75\xe9\xfd\xe2\ +\x21\x52\xda\x3a\x0a\x29\xd3\xa4\x20\x2f\xca\x99\x0b\x66\xb2\x68\ +\xfe\x4c\x4e\x3d\x69\x06\xf9\xb9\x39\x44\xc2\x61\xa2\x39\x61\xbf\ +\x17\x4c\x67\xd7\xf1\x29\xf5\xe5\xea\x1e\x46\xc2\xf0\xc1\xb6\x3a\ +\xfe\xeb\x57\xbf\x67\xed\x86\xf7\x69\x6b\xef\xc0\xb2\x4c\x5b\x3c\ +\x33\x27\x62\x6b\x2e\x3a\x37\xbf\x2f\xe5\xa5\x5e\xa2\x2b\x59\xef\ +\x53\xc0\x12\x23\xa5\xc5\xa9\x0b\xe6\x73\xe9\x85\x0b\x19\x77\xd2\ +\xe7\x91\x9d\xbb\x1e\x41\x59\xdb\xb1\x59\x7f\xcc\xd1\xf8\x8d\xa3\ +\x65\x00\x5c\xca\xb0\x46\xd9\xbe\xed\xd1\xd6\x68\xed\xd2\xbb\xee\ +\x7e\x38\xfa\x97\x37\x5e\x27\x20\xfb\xcd\x1d\x4d\xb6\xdd\xc1\x4e\ +\xdc\x91\x4c\x78\xff\x67\xe8\xce\xa4\x16\x8e\x6b\xae\x14\xb4\x75\ +\xa5\x68\xef\x8a\xd3\xd6\x15\xa7\xb5\x33\x46\x5b\x67\x9c\xb6\xce\ +\x18\xcd\x1d\x3d\xb4\xb4\xf5\xd8\x8f\xed\xdd\x34\xb7\xf7\x60\x9a\ +\x16\xba\x26\x02\x28\xb9\xf0\x21\xe3\xfe\x34\x90\x86\x66\x73\xf0\ +\x2b\x65\x0b\x64\xf8\x57\x08\x67\x14\x05\xe2\xc8\x6c\xec\xc0\xfe\ +\x41\xe8\xbe\x28\x54\x96\x7d\xfb\x50\x2a\x52\x2a\xa0\x61\x28\x15\ +\x98\x96\x85\x65\x9a\x58\x52\x52\x59\x36\x86\x49\xd5\xe5\x4c\x18\ +\x5f\xc6\xe4\x9a\x71\x4c\x9d\x50\xc9\xb4\x89\x55\x54\x96\x45\x49\ +\x99\xe9\x95\xdd\x1f\xa7\x07\x39\x24\xc4\x71\x33\xe1\x85\xb0\x27\ +\xbc\x69\xc1\xeb\x6f\xbd\xc7\x2b\xab\xd7\xb2\xe2\x95\xd5\xec\xd8\ +\xbb\x9f\x48\x28\x8c\x61\x68\x28\x25\x6d\xf2\x4e\x17\xe0\x24\x98\ +\xc9\xf0\xe7\xee\xfd\xa2\x91\x2a\xc3\xa3\x0a\x8c\xb3\x2c\xf7\x2d\ +\x1c\x0e\x73\xff\xaf\x7f\xc6\x3f\xfd\xc7\xc3\xaa\xb9\xa5\x25\x4e\ +\xfb\xb6\x47\x7d\xb1\xbf\x3c\x9e\x0c\x80\xcb\x15\xd0\x86\x4a\xed\ +\xd4\x7a\xf6\x3d\x7a\xf7\x9f\x1f\xbb\xe9\xd6\x4f\x5f\xdb\xaf\x80\ +\xc2\x50\x39\x01\x47\xbf\x3f\x20\x7d\xeb\x7a\xb3\xfb\x2a\x2c\xcb\ +\xe6\xc7\x57\xd8\x8f\xa6\x25\x39\xd2\xd2\xcd\xc1\xa3\xed\x1c\x38\ +\xda\x41\xdd\x91\x36\x0e\x1d\xed\xe0\x70\x73\x17\x42\x28\x9b\x5d\ +\x45\xd8\xc2\xa4\xc2\xd3\xd9\x0b\x2a\x1b\x87\x43\x3a\x11\x47\xc7\ +\xce\x55\x02\xb6\x43\x44\x99\x7d\x95\x15\x19\xfe\xb5\xab\x60\xdc\ +\xdf\x9d\xf0\xf6\x57\xf4\x16\xf6\xca\x10\x23\xf5\xbd\x90\x61\x57\ +\xd2\xb2\xe2\x4e\x85\x5d\xc4\x30\x08\x19\x3a\x45\x05\xb9\x9c\x7e\ +\xd2\x74\xce\x98\x3f\x9d\xd3\x4f\x9a\x41\x24\x6c\x6b\xde\x49\x2b\ +\xa8\x72\xdb\x35\x82\xf2\xd8\x8f\x62\x4b\xa6\x52\xb4\xb5\x77\xf2\ +\x8b\x7b\x1f\xe4\xde\x07\x9f\xb0\x8b\x90\x1c\xd4\x3e\x2f\x37\x0a\ +\x8e\x4e\x80\x1b\xd3\x0b\xef\x1a\x2b\x9f\x98\x6a\xd0\xbb\xf2\x80\ +\xcf\xc0\x35\x56\xbd\x74\x20\x95\xf3\x59\xee\xb4\x96\x52\xb2\xe4\ +\xfc\x0b\xc9\xcf\xcb\xe3\x27\xf7\x3c\x26\xb4\xd8\xbe\x87\xa5\x4a\ +\xed\xc4\x2e\xfb\x1d\x52\xcf\x7f\xbf\x8b\xdd\x28\x5f\xc3\x30\x50\ +\x06\xcc\x11\xe5\x8b\x7f\x76\xe2\xdc\x53\xa6\xfe\xf9\xe7\xff\x9f\ +\x30\xad\xec\x13\xba\xaf\xbe\xff\xfe\xbc\x81\xfe\xf8\x01\x06\x32\ +\x00\x7e\x10\xcd\x05\xd5\x92\x29\x68\x68\xe9\xa1\xa1\xa5\x8b\xfa\ +\x96\x6e\x0e\x37\x75\xd1\xd0\xdc\x45\x47\x4f\x82\x64\xca\xd6\x14\ +\x4c\x24\x4d\x92\x29\x5b\x47\xd0\xad\x1f\x77\x6f\x9c\xf0\x56\x8e\ +\x0c\x69\x73\xb7\xd8\xc5\x95\xe3\x76\x6e\xae\x5f\xae\x3c\xb0\xaf\ +\x93\xfb\xb5\xeb\xd2\xa5\x33\x16\x7c\x32\xdf\x52\x3a\x71\xb5\xca\ +\xf8\x0e\x99\x36\x26\x81\xf7\x33\x0b\x4c\x32\xa4\xc2\x7d\xe2\xa9\ +\x9e\x62\x8f\x74\x24\xd0\x52\xf6\xca\x3e\xb5\xb6\x9c\x93\x4f\x98\ +\xc2\xc9\x73\xa7\x30\xb9\xba\x9c\x82\xbc\x28\x05\x79\x39\xe4\xe6\ +\x84\xd2\x42\xaf\xea\xe3\xa1\xd6\x9b\x75\xf5\xd3\x21\x1c\x86\x55\ +\x6b\x3e\xe0\xd7\x0f\x3c\xca\xd6\x1d\x7b\x38\x7c\xb4\xc9\xae\xbb\ +\xd7\x48\x53\x01\xab\xb4\x3c\x7c\x20\xa5\xe9\x4d\x66\xc7\x28\xa8\ +\x0c\xd9\xf9\x6c\xfb\x4a\xe9\x44\x4c\x19\xfb\xba\xa9\x41\x67\xc1\ +\x31\x53\x29\x1a\x77\x7f\xc0\xa5\x9f\xbb\x5d\xbd\xbd\x61\xfd\x4e\ +\x1a\x5f\xbd\x0d\xf8\xc0\xf1\x00\x92\xa3\x76\x0d\x46\xf9\x9a\xba\ +\x19\x81\x43\x74\x6e\xbf\x67\xcb\xce\xb1\x3f\x5c\xbb\x71\xb3\x5a\ +\x38\x77\x8e\xf0\xf7\x33\x8f\xd4\xad\xcf\x44\xc8\x35\x5f\xda\x4b\ +\xd7\x20\x9e\x54\x74\xc7\x53\x74\xc7\x4d\xba\xe2\x29\xba\x63\x29\ +\x3a\x63\x49\x5a\xbb\xe2\x34\xb5\xc7\x68\x6e\x8f\xd1\xd4\x11\xa3\ +\xa9\x2d\x46\x47\x4f\x02\x5d\x08\x34\x0f\x25\x27\xdd\x38\x92\x31\ +\xf9\x34\x27\x81\x2e\x94\xb0\x01\x35\x57\x28\xb3\x0f\x5b\xec\x57\ +\xdb\xed\x25\xaa\xd9\x47\xa9\x8b\xa7\xb6\xab\x06\xb6\xce\xca\xf1\ +\x34\x94\xca\xf6\x0e\xbd\xd3\x6f\xae\x91\xb1\x14\xa6\xb4\xf5\x08\ +\xc3\x21\x8d\xca\xb2\x62\x2a\xcb\x8a\xa9\x2a\x2b\x66\xe6\xe4\x2a\ +\x66\x4d\x19\xcf\xac\xc9\x95\xe4\x44\xec\xbc\xba\x69\x3a\x04\x15\ +\x1e\x5d\xd5\xc7\x6b\x65\xf7\xc7\xf3\xe1\x10\x74\x74\x25\xd9\xb0\ +\x69\x1b\x2f\xbf\xb1\x9e\xc7\x9f\x7b\x89\x23\x8d\xcd\xe4\x44\xc2\ +\x68\x08\x74\x5d\x73\xc0\x3a\xe9\x5b\xc1\xb3\xbb\xea\xd9\x00\x52\ +\x25\x7d\xf7\xbd\xbf\xd5\xd6\x53\xcd\xce\x7e\x9f\xef\xfc\xfe\xf7\ +\x58\xb7\x71\x9b\x7a\x6f\xeb\x6e\x21\x3a\xb7\xdd\xa3\x46\x11\xf9\ +\x3f\x96\x1e\x80\x6b\x54\xc6\x00\xd3\xb5\xd2\x53\xbf\x3f\xa6\x7c\ +\xe6\x79\xeb\x9f\xfe\x3d\xb1\x78\xff\xee\xbd\xa6\x65\x64\x3f\x03\ +\x2e\xb9\x5f\x2d\x38\xbd\x75\xc7\x53\xd4\x37\xf7\x50\xdf\xd2\xcd\ +\xa1\xa6\x6e\xe7\xb1\x8b\x78\xd2\xf2\xd0\x70\xe1\xcf\xb1\xc8\xb4\ +\x96\x9d\x72\x8a\x54\xa4\x8b\xd2\xe2\xb8\x5f\xc2\xce\x75\xbb\x72\ +\xbf\xca\xd1\xc7\xc3\x11\xa1\x14\x7e\xbd\x3a\x6f\x95\xb5\x67\x47\ +\xda\x03\x50\xee\x2b\xe9\x7d\xa5\x72\x00\x33\xdf\xca\xeb\x20\xc6\ +\x92\xf4\xe4\x94\x52\x06\x56\xe7\xc0\xbe\xa4\xc3\x06\x0f\xd5\xf7\ +\xef\x2b\xdd\xd8\x5e\xfa\x4a\x49\xd3\x45\x26\xae\x24\xd6\xb4\x09\ +\x15\x9c\xb9\x60\x3a\x67\xce\x9f\xc6\xf4\x89\xe5\x9e\x2c\x98\xdf\ +\xb0\xfe\x4f\xda\xdc\x2c\xc4\xa1\x86\x46\xee\xfc\xc5\xef\x59\xbe\ +\xf2\x0d\x0c\x43\xf3\xca\x6c\xfd\xd7\x58\xd9\x37\xc1\xd3\x25\xb4\ +\xe7\xbc\xf4\x26\x6a\x3a\x9c\x93\x28\x47\xe1\x34\xb0\xaf\xfb\xba\ +\x4c\xd7\x53\xb8\x21\xa5\x73\x03\x03\xf5\x13\xae\x07\xe0\xdd\x6b\ +\xa5\x28\x2a\x2c\x60\xdf\x7b\xab\x98\xb4\xe8\x66\x5a\x1a\xb6\xae\ +\x94\xcd\xeb\xff\x09\xd8\xe1\xb8\xff\xe6\x68\x4f\xd6\xd1\xde\xdc\ +\x4e\xc1\xc3\xb2\x69\xfd\xaf\x9a\x8d\x92\x85\xff\x72\xd7\x3d\x05\ +\xdf\xfe\xf2\x17\x84\x3f\xc7\xec\x56\x91\xb9\x2b\xb8\xae\xd9\xde\ +\x41\x7b\xb7\xa4\xb9\x2b\x4e\x53\x47\x82\xc6\x8e\x04\x4d\x1d\x09\ +\x5a\x3b\xe3\xc4\x92\x26\xb1\xa4\x2d\xed\x1d\x4b\x9a\xc4\x13\x26\ +\x29\xd3\x76\xad\xfd\x29\x14\x81\xed\xbe\x79\x80\x99\xf7\x8e\x0a\ +\xc4\x5b\x82\x74\xed\x55\xef\x00\x5a\x78\xfe\x6d\xfa\x95\xbe\xf6\ +\x4d\xbb\x31\x69\xcb\x9f\x65\x5f\x91\xde\xcf\x1b\x10\x2a\xed\x66\ +\xf6\x8d\x1e\xcb\xb4\xd0\xb7\x63\xc8\xfa\x5a\x35\xa4\xb2\x15\x85\ +\x53\x29\x8b\x68\xc4\x60\xce\xd4\x2a\x4e\x9c\x51\xcd\xdc\x69\xd5\ +\x94\x8d\x29\x60\x6c\x51\x1e\x25\xc5\xf9\x84\x8c\xb4\x16\x60\xca\ +\x74\xa2\x57\xf1\xf1\x59\xcd\x07\x15\x8b\x86\xec\xb1\xf5\xec\xca\ +\xf5\x3c\xf4\xf4\x8b\x6c\xdb\xb9\x97\x83\xf5\x47\xd0\x0d\x8d\xb0\ +\x61\x38\x55\x0f\x7d\xa5\x71\xdc\xfb\x32\xc0\x3d\x0f\xe8\xb7\xfb\ +\xf7\xf5\x8f\x38\x2f\x1f\xea\x7d\x42\x30\x05\xa8\x7a\xa9\x21\xbf\ +\xf2\xd4\xc3\x7c\xe7\x07\xbf\x53\x4d\xcd\x8d\x9d\x34\xbf\xfd\x6b\ +\x46\xd8\xf1\xf7\x61\x1b\x00\x17\x10\x6c\x01\xb5\x4b\x8b\xed\x7f\ +\xf8\x91\xe7\x5e\xbc\xf5\x2b\x9f\xfb\xb4\xca\x89\x46\xc5\xd1\xb6\ +\x04\x09\x53\xd2\x19\x4f\xd1\xdc\x99\xa0\xb9\x23\x49\x63\x47\x82\ +\xe6\x8e\x38\xcd\x5d\x09\x4c\xcb\x56\x69\xd5\x1c\x2f\x40\x23\x28\ +\x77\xed\xc6\xd6\x02\x81\x61\x08\x0f\xd0\x96\xfe\xf4\xa9\xcc\x28\ +\x48\xc9\x04\xbe\x32\xe7\xe5\x20\x28\xc4\xd3\x2e\xe0\x20\x0a\x3a\ +\xbc\xb1\xa0\xfa\xdd\x2f\x88\x08\xab\x2c\xf4\xe8\x8a\x74\x01\xad\ +\xf2\xce\x55\x3a\xd5\x7b\x4a\x2a\x0a\xf2\x22\x8c\x2d\xcc\x65\x4c\ +\x51\x2e\x13\x2b\x4b\x38\x71\xc6\x78\x4e\x9c\x56\xcd\xa4\xea\x02\ +\x8f\x76\xca\xcc\x40\xe0\x53\xe6\xc7\xcb\x7d\x1f\xac\x7b\x6f\x18\ +\xd0\xdc\xda\xcd\x8e\xdd\xfb\x79\xe6\xa5\xd5\x3c\xfc\xf4\x8b\xc4\ +\x12\x09\x22\xe1\x90\xdd\x1a\x1c\x09\xa5\x57\x5c\x95\x7d\xe0\x7a\ +\x13\xd1\x03\x5d\xb3\xc1\xa8\x2a\xb8\x6f\x1f\xb7\xda\x5f\x0b\xa0\ +\x9c\x80\x31\x3d\x18\xd3\xd2\xe9\xee\xbe\x96\x69\xf2\x95\x5b\x6e\ +\xe2\xff\x6f\xef\x4b\xc3\xab\x2a\xcf\xb5\xef\x77\xad\x3d\x64\x4e\ +\x48\x20\xa3\x4c\x32\x8b\x4c\x2a\x4e\xe0\x54\xe7\xaa\xd8\x1e\xdb\ +\x53\xad\x9e\x5e\xb6\xf6\xd4\x7e\x76\xf8\xbe\x56\x3d\x5f\x4b\xdb\ +\xe3\x50\x71\x46\x3d\x8e\x88\xb5\x8a\xa8\x75\x42\x11\xa5\x08\x8a\ +\x0a\x12\x11\x21\xcc\xf3\x94\x40\x48\x20\x90\x39\x3b\x3b\x7b\x5a\ +\xef\x73\x7e\xac\xe9\x7d\xd7\x5a\x7b\x27\x58\x40\x86\xbd\xae\x8b\ +\x2b\x10\xde\xbd\xb2\xf7\xce\x7e\xa6\xfb\xb9\x9f\xfb\xc9\xcc\xca\ +\xa6\x57\x66\x2d\x60\x4a\xb8\xe6\x4d\x0e\xda\xae\xdb\xd2\xa1\x03\ +\xfe\x0e\x77\x09\x20\x02\x82\xbd\x01\x8c\x54\x8a\x2f\x78\x72\xd0\ +\xe0\x51\xc3\x3f\x7e\xf5\x29\xdc\xfe\xca\x46\xc4\xe2\x06\xe8\x61\ +\xd4\xcf\x1c\xdc\x6e\x35\x11\xe9\xc6\xc0\xcd\x5f\x14\xb3\x00\x33\ +\x31\x8d\x82\xd5\xfa\xe2\x46\x79\xc0\x8d\xa8\x4f\x46\x9a\x45\xb6\ +\x11\x12\x81\x1b\x93\x66\x76\x9a\x0d\xa1\x7f\x2e\x52\x51\xc9\xc0\ +\xe3\xb8\x90\x66\xdb\x67\xc1\x65\x52\x07\x37\x40\x20\x31\x95\x27\ +\x03\x10\x94\xd3\x4b\xf3\xff\xb9\xdc\x01\x30\x9f\xbb\x94\xca\x9b\ +\x80\x90\x71\xd6\x5c\xd7\x4d\x1c\x99\x01\x1f\xc6\x8f\xec\x87\xb3\ +\x46\x0f\xc4\x59\xa7\x0e\x40\x6e\x4e\x86\x80\x5b\x9c\x58\x42\x03\ +\xe2\x78\xed\xea\x0d\x3b\xf1\xc8\xb4\x99\x58\xb9\x76\x8b\xbe\xae\ +\xdc\x02\x2d\xb8\x90\x66\xdb\x22\x20\xe6\x5a\x71\x73\x72\x50\xaf\ +\xec\x89\x38\x00\x00\x20\x00\x49\x44\x41\x54\x4c\xf5\x0d\xb4\xd6\ +\xfa\x1d\x88\x65\xa2\x08\xf8\x9a\xc0\xa0\x9d\x38\x90\x3d\x9d\x48\ +\x24\x01\xbe\xf6\xe7\x40\x26\x69\x99\xdd\x21\x0e\x42\x61\x41\x3e\ +\xf6\x6c\xf8\x14\xa3\x2f\xf9\x0d\xb6\x6e\x5e\xbb\x91\x1f\x58\xfc\ +\x7f\x01\x6c\x84\x3e\xf4\x13\x3b\x1c\xef\xa1\xef\x30\xfe\x7e\x12\ +\xd0\x65\x8a\xf7\x50\xdb\x86\xe9\x3b\x77\x17\x3e\x36\xef\xf3\xe5\ +\x74\xdb\xa5\xa3\xd8\x13\x73\xb7\x5b\x2d\x11\xcf\xbe\x33\xb7\x5d\ +\x27\x09\x29\x18\x03\xb3\x0c\x52\x46\x52\xec\x5f\xa0\xfb\x2c\x49\ +\xa9\x9d\x57\x1f\xdc\x75\x5f\xc3\x79\xd8\xfc\x16\x72\x44\x09\x81\ +\xb1\xc5\x9d\x1d\x74\x92\x20\x3e\x12\x22\xb7\xf9\x44\x49\x68\xe9\ +\x99\xa0\x22\x91\xde\x66\x4c\x24\x12\x48\x24\x38\x4a\x7b\xe7\x62\ +\xd8\x80\x62\x0c\x1f\xd0\x07\x03\xca\x0b\x51\x5a\x94\x87\x92\xa2\ +\x3c\x14\x15\x04\xf5\x35\x53\x5c\x07\xe3\x4e\x44\x2d\xc1\x8c\xa0\ +\xce\xff\xff\xe7\xa7\x4b\x31\x7f\xd1\x57\x58\xb5\x7e\x0b\xea\x1b\ +\x1a\x11\xf0\xfb\xa1\x2a\xcc\x9e\xaa\xb3\x70\x1d\xd8\x5d\x15\xaf\ +\x74\xde\xea\x9e\xa4\xf8\x9c\x39\x32\x35\x7b\x5a\x4f\x3c\x4b\x12\ +\x00\x0c\xcf\x4c\xd4\x4d\xa7\x26\xa6\xdf\xe7\xad\xbf\x4f\xc3\xdb\ +\x1f\xac\xa0\xad\xd5\x75\x8c\xda\x37\x4c\x07\x50\x77\x38\x80\xbf\ +\x23\xe5\x00\x2c\x72\x10\x45\x1b\x97\xa2\xab\x6e\xe1\x9f\xa7\x3e\ +\x73\x71\xe5\x3b\x2f\xe3\x9c\xa1\x85\x58\xbc\xa9\x11\x3e\x13\x99\ +\x22\xa9\x62\x12\xad\x1f\x8c\x31\x23\x5a\xba\x53\x30\x57\x3a\x43\ +\xcc\xe0\xb3\x8b\x35\x9c\xfb\x2c\xf3\x44\x6b\x99\x84\xfc\xc2\xe1\ +\x27\xe4\xba\xdb\xe3\xac\xe1\xd5\xdd\xe0\x3e\xb3\x22\xbc\xe9\x87\ +\x4c\x39\x2b\x95\x01\xd9\x99\x01\xe4\x64\x04\x90\x97\x13\xc4\xa8\ +\xc1\xa5\x18\x37\xac\x02\xe3\x86\x57\x20\x27\x4b\xb1\x52\x78\x4d\ +\x98\x6e\x8b\xc5\x93\xb7\x39\x8f\xd7\x28\x6f\xe2\x45\x4d\xad\x21\ +\xd4\xd4\xee\xc5\xeb\xb3\x3f\xc6\x7b\x1f\x2d\x82\xaa\x32\xf8\x55\ +\x1f\xc0\x08\x99\x19\x41\xab\xd5\xe6\xac\xca\xa5\x32\x8f\xbc\xf3\ +\x68\xeb\x2c\xc9\x4d\x1a\x2f\x6e\x86\x74\x5f\x47\xc0\x12\xcf\x32\ +\x67\x2d\xc0\xc9\x13\x4f\x88\xc7\xe3\xf8\xfe\xd5\x57\x60\xf4\xc8\ +\xa1\xf8\xe1\x6d\x37\x33\xd6\xb5\x67\x3e\x8f\x36\x2d\x83\x4e\xf9\ +\xfd\xc6\x62\x1f\xdf\xb6\x03\x30\x01\xc1\x10\x80\xbd\x5a\xd3\xd7\ +\xcf\xb4\x06\x0a\x47\xfe\xe4\xf7\x7f\x2e\x79\x79\xea\x5f\x59\x6d\ +\x73\x18\xb5\x07\xc2\x72\x41\x6c\x46\x69\x0b\xc1\x17\xe3\xa8\xf9\ +\xcb\xb1\xdd\x2f\x73\xd6\x6d\x8e\xf7\xdb\xe9\x7d\x93\x22\x16\x0e\ +\x90\x80\x75\x57\x34\x51\xf2\x1a\xca\x7a\x3e\x42\xf6\xa0\xcb\x4f\ +\xe9\x6d\xb7\xbe\x25\x05\x38\x73\xe4\x49\x38\xf3\x94\x93\x30\x74\ +\x40\x1f\xf8\x7d\x0a\xfc\x3e\x15\x3e\x55\x26\x30\x74\x76\x7d\x3b\ +\xd3\x6d\x47\x93\xe1\xab\x2a\x43\xc0\xcf\xb0\x60\xf1\x1a\x3c\x3d\ +\xe3\x5d\xec\xda\xb3\x17\x91\x48\x14\x9c\x38\x32\x32\x82\x76\x1a\ +\x2d\x90\xef\x19\x27\x70\xaf\x7e\x9d\xf4\x69\x81\x80\xcc\x77\xa3\ +\x3c\xc0\x5c\xa4\xc9\x6e\x71\x1d\xe7\x07\x92\x3c\x02\x9b\x78\xbf\ +\x93\xfb\xf7\xc3\xf4\xc7\x1f\xc2\xd5\x3f\xfd\x33\x35\x35\xed\xdb\ +\xc7\x9b\x96\x3f\x07\x60\x2f\x0e\x62\xcb\xef\xd1\xea\x00\x04\x40\ +\x10\xdb\x78\xf3\x8a\xa9\x2b\xd6\x06\x1f\x79\x6b\xee\x02\xfc\xf4\ +\xd2\xcb\xf0\x97\xd7\xd6\xc0\xe7\x63\x6e\xc4\x54\xe8\xc1\x33\x21\ +\x29\xb3\x0d\x9b\x2c\xa6\x9b\xd7\xde\x66\x6b\xb2\xcd\xe1\x7d\x29\ +\x09\x92\x4b\x8e\x72\x22\x39\xea\x2b\x86\x7b\x59\xb8\x81\x1b\x29\ +\xbc\xa6\xe9\x34\xdf\x7e\xa5\xf9\xe8\x5f\x5a\x80\x01\x65\x05\xe8\ +\x5b\x92\x8f\x93\x4a\xf2\xd1\xaf\x24\x1f\xd9\x99\xcc\xa2\xc6\xf2\ +\x14\x2d\xb7\x13\xb1\x9e\x57\x14\x86\x8c\x20\xd0\xd4\x12\xc1\x27\ +\x4b\xaa\xb0\x68\xd9\x6a\x7c\xf1\xf5\x5a\xb4\xb5\x77\x20\xe0\xf7\ +\x43\x51\xec\x1a\x4e\x6c\xf3\xda\xdd\x1c\x3b\x90\x30\x82\x64\xf0\ +\xe2\x67\xc9\x0c\xa8\x3a\xc6\x67\xb3\xf4\xec\x8e\x0c\xb9\x90\x7e\ +\x66\xb5\x81\xe5\x24\xd7\x99\x21\x48\x55\xa3\x8b\xe2\x2b\x7f\x93\ +\x31\x20\x16\xee\xc2\xcb\xcf\x3c\x86\x19\x6f\xcf\xc7\x57\x55\xeb\ +\x18\x35\x2d\x7f\x04\xc0\x76\x1c\x62\xc6\xdf\xb7\x01\x02\x3a\x1d\ +\x4d\x3e\x80\xc1\x4a\xee\xa0\x9b\x78\xe6\xb0\x5f\xbf\xf7\xe2\x53\ +\x14\xf3\x17\xb1\x19\x9f\x57\x3b\xd4\x61\xb8\x63\x9a\xcd\xe8\x02\ +\x90\x1b\x48\x71\x31\xa8\x98\x09\xf2\x70\x97\x10\xa4\x8b\xc5\x65\ +\xfe\x9d\xb8\x00\xea\x09\x40\x9c\x20\x41\x45\xd2\xc0\x8d\x01\x46\ +\x12\xc1\xa7\x2a\x16\xb5\xb7\xac\x4f\x0e\x4e\x1b\x5a\x86\x71\xc3\ +\xca\x30\xbc\x7f\x2f\x1d\xd5\xd5\xf4\xdb\xda\xa3\xb5\xdd\x6f\x39\ +\x3a\xd1\x2e\xd3\x1c\x3a\x42\x61\x6c\xdf\x55\x87\x69\xaf\xce\xc1\ +\xe7\x5f\xad\x46\xd0\xef\x83\x62\x0e\x5a\x18\x32\x60\x96\x0e\x81\ +\x38\xd5\x68\x72\x22\x48\x06\xd4\xac\xcf\x94\x78\x96\xe4\xbe\x3b\ +\x1c\x6c\x4b\x51\xeb\xc0\x0e\x0c\xdc\x72\xf4\x2e\xe0\x56\xbc\xaf\ +\x05\x08\x0a\xf7\x15\xcf\x9a\x9f\x43\x81\x07\xc2\xb9\x86\xa7\x1f\ +\xbe\x0f\x23\x86\x8d\xa4\x0b\xbe\xf7\x7f\x98\xd2\xb5\xf9\x49\x1e\ +\xda\xf9\x1a\x74\x99\xaf\xc3\x5a\xfb\x1f\xa9\x0c\xc0\x59\x0a\xd4\ +\xf2\x8e\x1d\xef\xfb\xb2\x2a\x26\xfe\xf2\x4f\x53\xc6\x7e\x35\xfb\ +\x45\x2c\x5c\x97\x85\xda\xc6\x4e\x17\xe5\x9d\x04\xd0\xc5\x2b\xad\ +\xf0\x3a\x4b\x70\x33\xb0\xa8\x9b\xcc\x3f\xd5\x59\x13\xfd\x8f\x27\ +\xf4\xb6\x9b\xca\x80\x53\x06\xf6\xc6\x98\xc1\xa5\x18\x33\xb8\x18\ +\x45\xf9\x99\xc8\x08\xf8\x90\x99\xe1\x83\x5f\x55\x2c\xac\x20\x1a\ +\x77\x1a\x39\xeb\xbe\xbd\x78\x02\x45\x7a\x00\x08\xf8\x75\x16\xe7\ +\x5b\x73\xbf\xc4\xeb\xef\x7f\x82\xfa\x7d\x4d\x68\xef\xec\x04\x00\ +\x64\x65\x66\x18\xdd\x18\x9e\x74\xb2\xce\xe5\x42\x92\x64\xf2\xcc\ +\x23\x71\x23\xf2\xfe\xfd\xb3\x64\xf8\x4f\x77\x67\xbb\x29\x13\xbc\ +\x44\x40\x12\x09\x0d\x13\xcf\x19\x8f\x9b\x7e\x70\x25\x86\x9c\x7f\ +\x0b\xf3\xb1\x8e\x95\x89\xd0\xce\x39\xd0\x19\x7f\x87\xa5\xe7\xff\ +\x6d\x66\x00\xe6\xcf\xca\x04\x50\x06\xe0\x54\x94\x5c\xfa\xfc\x79\ +\x67\x9f\x5b\x3c\xed\x81\xbb\xd8\x7d\x6f\x6f\x44\x7b\x67\x54\x6f\ +\xd5\x91\x2d\x25\x65\x7f\x60\xf4\x36\x18\xc4\x48\x0e\x91\x99\x25\ +\xa0\xf6\xc6\xff\xc3\x11\xc9\x21\x44\x70\x1b\xf0\x31\xee\xc5\xc9\ +\x92\x89\x4e\x68\x1c\x79\x59\x01\x94\x15\x65\xa3\xb4\x30\x1b\x15\ +\x7d\x72\x30\xa0\xb4\x00\x03\xcb\xf2\x71\x52\x71\x96\xce\x17\xe3\ +\x76\x6f\x1d\x60\x3d\x16\x05\x75\x1a\xfe\x89\xb2\x07\xd0\xac\xe7\ +\x33\x02\xc0\xee\xfa\x36\x2c\x5b\xb3\x19\x9f\x56\xae\xc2\x27\x5f\ +\xae\x44\x22\x9e\xd0\xc5\x63\x84\xb9\x09\x58\xed\x61\x8f\xb9\x09\ +\x12\x67\x1d\x90\x7a\x6e\xc2\xa1\x6a\x04\x57\x0b\xd6\x31\xb8\xe3\ +\x9a\xb7\x48\x32\x37\x21\x70\x09\xec\x2c\x84\x64\x46\x27\xd9\x73\ +\x22\x70\x64\xa4\x60\x40\xdf\xf2\x32\x2c\x5f\x38\x1b\xd7\xfd\xe2\ +\x6e\xfa\x74\xf1\x97\x0d\xd8\xff\xf1\xad\xd0\xb9\xfe\xfb\xa0\xcf\ +\xfa\x1f\x91\x5d\xd1\xbe\x23\xf9\x39\x30\x10\xcd\x46\x00\x3b\x59\ +\xcb\xca\xa9\x5f\x56\xe5\x3c\xbc\xb0\xf2\x2b\xfc\xf2\x8a\xd3\xf0\ +\xc0\xac\x0d\x0e\xb4\x96\x41\x2f\xce\xbc\x30\x58\x92\xda\x6a\x70\ +\xd6\x80\xf0\x1a\x6f\x25\x6b\xe1\xa2\x59\x0f\x9a\x92\xd3\x3e\x85\ +\x61\xe4\xc0\x22\x8c\x1b\x5c\x8c\xd3\x86\x96\xa0\x20\x37\x60\x2d\ +\x7e\xe0\xc2\x0c\x43\x24\x26\x1b\xb5\x99\xd6\x27\xf5\x78\x27\xe8\ +\x1e\x40\x91\x74\xc4\x39\x21\x9e\x48\xa0\x6a\xe5\x56\x3c\xf1\xd2\ +\x6c\x6c\xda\xbe\x1b\x01\xbf\xaa\x0b\x63\x2a\x0a\x7c\x81\x80\x41\ +\x91\x76\x97\x05\x9e\x73\x13\x02\x91\x86\x8c\x0c\x21\x19\x8b\x52\ +\x42\xfe\x99\x97\x9a\x11\x93\x8d\x53\xf8\x68\x31\x4f\xfb\xb3\x07\ +\xbc\x4c\xd0\xd8\x2c\x13\xbd\x11\x41\x5b\xd8\x83\x59\x4d\x6a\x02\ +\xd7\x38\x66\x3c\xfb\x18\x66\xcf\x5f\x8a\x45\x5f\xad\x65\x68\xad\ +\x9a\x0a\x60\xa7\x61\x1b\xd1\x23\x65\xfc\x47\x3a\x03\x30\x2f\x3f\ +\x80\x3c\x00\x83\x58\xce\xa0\xff\x40\xfe\xa9\xbf\x9e\x35\x6d\x2a\ +\xf9\x73\x8a\xd9\xb3\xf3\xb6\xba\x3c\xbf\x54\x87\x1b\xc4\x0c\xf2\ +\xd0\x85\xb7\xce\x92\xcc\xb1\xd6\x34\xae\xf7\xd7\x35\x0d\x85\xb9\ +\x19\x38\xa5\x7f\x2f\x8c\xe8\x57\x88\x93\xcb\x0a\x90\x9b\xe5\x47\ +\x6e\x96\x1f\x39\x99\x7e\x1b\xc1\x27\x79\x11\x63\x4f\xa2\x7a\x4f\ +\xfe\xcf\xeb\xdf\xc7\x9b\x33\x10\xe7\xe9\xbb\x22\x1c\x6f\x7c\xb8\ +\x08\xf3\x3e\x5f\x8e\x5d\xf5\x07\xd0\xde\xd1\x09\x55\x65\xb0\xf4\ +\x43\xb8\x3c\x0b\x61\x41\x79\x4e\x02\x95\x15\x65\xbd\xe6\x26\x48\ +\xa0\x4a\x27\x8f\xf4\xf6\xcf\xe0\xc6\xcf\x10\xa3\xba\x33\x92\x9b\ +\x33\x14\x42\x66\xe1\xc0\x9c\x44\x0e\x07\xe7\xc2\x7d\x05\x22\x98\ +\x33\x13\x35\xef\xab\x69\x09\xcc\x7c\xee\x09\x94\x95\x9d\x44\xdf\ +\xf9\xd1\xff\x63\x68\x5b\xff\x24\x85\x76\x1c\xd1\xba\xff\xdb\xca\ +\x00\xcc\x2b\x61\xe0\x01\x7b\x28\xb4\x63\x8e\x2f\xbb\xef\x84\xdf\ +\xff\x75\xea\xb8\x8f\x5e\x79\x16\x17\x9e\x5a\x82\x8f\x57\xef\x85\ +\x5f\x65\xee\x68\x2e\x8c\xc8\x39\xa4\xe7\xf4\xd9\x7d\x22\x70\x4d\ +\x67\x11\x16\x64\x07\x51\x98\x1b\x44\xaf\xdc\x00\x06\x94\xe4\x62\ +\x50\x59\x3e\x06\x57\xe4\x23\x3f\x5b\x85\xc6\x81\x04\xd7\x85\x27\ +\x4d\x23\x37\xa7\xdb\x98\x30\x24\xff\x4d\x25\xc8\x92\xfd\xff\xf1\ +\x5a\xeb\x13\x11\x7c\xaa\xce\xc6\xab\xde\xd3\x82\xf5\x5b\x76\xe1\ +\xc3\x4f\x97\xe1\xd3\xa5\xab\xe1\x53\x55\xf8\x7d\x2a\x00\x82\x5f\ +\x55\x2d\x43\x36\xa3\x21\x73\xa2\xe7\x24\x70\x38\x2c\x23\x23\x57\ +\x67\xc6\x8e\xf8\xe4\x88\xf4\xdc\xb3\xc3\xc3\xa4\x9f\xe1\xad\xd3\ +\xe7\x12\xeb\x20\x3b\x09\x25\x07\xe2\xe4\x3a\x0b\x87\x08\x88\x47\ +\x12\xc2\x00\xc4\x62\x31\xfc\xfb\xb5\x57\xe1\x92\x0b\x26\xe2\x9c\ +\x6b\x6f\x63\x6a\xa2\x6d\x55\x22\xb4\xe3\x43\xa3\xee\x0f\x1d\xa9\ +\xba\xff\xdb\xce\x00\x44\x3c\xa0\x14\xc0\x28\xa5\xf4\xb2\xe9\xa7\ +\x8d\x3d\xbd\xf8\xed\x67\xef\xa7\xe7\xe7\xed\x60\xab\x6b\x9a\x1d\ +\x9d\x01\x32\xe8\xc2\xf6\x62\x08\x26\xd4\x78\x85\xb9\x41\x8c\x19\ +\x58\x88\xd1\x03\x8b\x30\xec\xa4\x02\xa8\xaa\xad\x3a\x93\x6c\xca\ +\xb0\xbb\x48\x9e\x0a\xad\x3f\x1c\x5a\x05\xc7\x72\xc4\x9f\xf7\x79\ +\x15\x9e\x9a\xf9\x01\x0e\x34\xb7\x59\xaa\xc4\x3d\x89\xe4\x66\xbb\ +\xce\x39\xd5\x28\x76\x6e\xec\x28\x6b\x9c\x65\xc2\x4c\x3d\x97\x3b\ +\x42\x52\x36\x61\x65\x92\xa9\xbb\x47\xba\xc0\x8a\x4d\xff\xb6\x4a\ +\x3a\x81\xea\x4b\x02\x16\x65\x95\x90\xd6\xff\x03\x5e\x74\x63\xf3\ +\x67\x89\xfb\x07\x27\x9c\x75\x06\x3e\x78\xfd\x69\xba\xe4\xfa\xc9\ +\x6c\xd9\x8a\xaa\x06\xbe\x6f\xc1\xad\x00\xd6\x1d\xe9\xba\xff\xdb\ +\xce\x00\x9c\x78\xc0\x0e\x6a\x59\xf9\xc0\xea\xf5\x59\x8f\x3f\xf4\ +\xdc\xab\xec\x0f\xbf\xba\x09\x77\xbc\xd8\x81\x50\x57\x5c\xdf\xa3\ +\x6e\x48\x55\x13\x71\xf4\xeb\x93\x8d\x93\x4b\x73\x31\xb0\x34\x17\ +\x25\xf9\x19\x28\xc8\x09\xa0\x57\x4e\x10\x59\x41\x05\x9c\xcc\x96\ +\x9b\xb7\x8f\xfb\x57\x56\x71\x7d\x53\xa9\xef\xe3\x09\xe5\x17\xfb\ +\xf4\x7b\x0f\x74\xe2\xbd\xf9\x5f\xa1\x72\xe5\x26\x6c\xde\xb1\x07\ +\xe1\x48\x04\x7e\x55\x31\x64\xc9\x49\xa0\x5b\xc3\x25\x75\xc5\x9c\ +\x28\xbb\x07\x7a\xef\x85\xbc\x27\xeb\xaf\x13\x73\xcf\xd4\xbb\xf4\ +\xf7\x52\x70\x7d\x2c\x1e\x01\x51\x8a\x7e\x90\x88\x3e\x39\x14\x3f\ +\x1d\x83\x42\xe2\x94\xa1\x29\x06\xca\x35\x8e\xf2\xb2\x12\xbc\xfb\ +\xf2\xd3\x98\xfc\xd0\x4c\xb6\x7c\xf5\x26\x50\xcb\xca\x07\x8d\xb4\ +\xff\x88\xd7\xfd\x47\x83\x03\x30\xdd\x65\x18\x40\x3d\x45\x1b\x17\ +\x6b\x8d\x95\x77\x4d\x7b\x29\x72\x57\x61\x41\x1e\xbb\xf7\xc7\x93\ +\xd8\xe3\xef\x6f\x40\xaf\x9c\x00\x06\x97\xe7\x61\x48\x69\x0e\x4e\ +\x2e\xcf\x06\x83\xdd\x5b\x17\x49\x34\x71\xad\xe7\x06\xf9\x4d\x0d\ +\xde\x6b\x83\x4f\x4f\x90\xfc\x43\xbd\x77\xe0\x48\x47\x77\xf3\x79\ +\xd6\xed\x6b\xc5\x86\x6d\xbb\xf1\xc6\xdc\x2f\xb0\x6c\xcd\x36\x64\ +\x04\x74\xf9\x6b\x4e\x84\x80\x4f\x95\xa2\xac\xf5\x1e\x72\x71\x0f\ +\x00\x79\x40\xb3\x24\xb7\xdb\x48\x20\xeb\x10\x87\xcb\x2e\x9d\x3c\ +\x7a\xd7\xdc\x48\x8a\xb3\x02\xa5\xdb\xc3\x37\xb9\xa6\xfa\x88\x79\ +\x0f\x7e\xba\x00\x47\x89\x56\xee\xa6\x21\x83\x08\x7d\x8a\x0a\xb1\ +\x62\xe1\x1c\x3c\x35\x63\x0e\xfd\xcf\xb3\xaf\x13\xeb\xac\xba\x87\ +\xa2\x8d\x8b\xa1\x8f\xf9\x86\x71\x18\xa9\xbe\x47\x6b\x09\x20\xfe\ +\x7c\x3f\x80\x02\x1d\x14\x1c\x78\x03\xe5\x8f\xf9\xcd\xb4\x29\x93\ +\x71\xc9\x84\xf1\x12\x75\x5a\xa4\x6e\xa6\x6a\xbb\x79\x19\x56\x77\ +\x12\x64\xdd\xed\xf7\xfb\x26\x69\xfd\xc1\x3e\xee\x68\xbb\x4c\x85\ +\xa6\xd7\x3f\x58\x82\x19\xef\x7d\x8a\xce\x70\x14\x09\x5d\xd9\xd3\ +\x22\xc8\x30\x71\x02\xd2\xf2\xe9\xee\xa9\x46\x18\x04\x1b\x6e\xa4\ +\xdb\x76\xaa\xef\x16\xc7\x30\x41\x3d\x3b\x75\x16\xce\x5a\x09\xb8\ +\x70\x96\xdb\x6a\x47\xf6\x00\x0e\xf7\x9c\xac\xd4\x1f\xc7\x04\xb2\ +\x19\x09\xa0\xa4\x23\x7d\x07\xb7\xcf\x12\xb9\xda\xc7\xd2\x59\x43\ +\x04\x84\x71\xf3\x71\x64\xbd\xde\x68\x34\x8a\x4d\x4b\x3f\x41\xd5\ +\xfa\xed\xb8\xe9\xb7\xf7\x83\xb5\xaf\x79\x8a\x42\xd5\xff\x30\xa2\ +\x7f\x2b\x8e\x00\xdb\xef\x68\x76\x00\xe6\x73\x08\x40\x57\x11\x1a\ +\xa4\x16\x9c\xfa\x0b\x2d\x6b\xd0\x4f\x5e\x7d\xe2\x3e\x3a\xe7\xb4\ +\x53\x59\x42\x93\x11\xf9\x43\x65\x90\xa2\x04\xd9\xc1\x2c\x09\x4d\ +\xa5\x63\xd8\x5d\x19\x70\xb4\x3a\x00\x13\xc8\x0b\x06\x80\x2d\x35\ +\x4d\xf8\xb8\x72\x2d\xbe\x5e\xb3\x0d\xab\x36\xd5\x80\x73\x0d\x7e\ +\x9f\xe2\x66\x50\x82\x1b\x75\xb3\x9b\x6d\x69\x01\x70\x82\xf1\x71\ +\x83\xad\x29\x39\x08\x23\xca\xbb\x1d\x80\xac\xa5\xe7\xe9\x2c\x60\ +\x3a\x00\x99\x09\x6a\xc9\x79\x59\x3f\x23\x75\xf7\x48\x44\xf6\x4d\ +\xc6\xa7\x9b\x8d\x4a\x96\x0a\x10\x87\x2d\x40\x63\x3b\x21\x59\xcf\ +\xcf\x7c\x5c\x34\x16\xc3\x82\x77\x5e\x41\x57\x8c\xe8\x9a\x9f\x4e\ +\x66\x6a\x78\xc7\x2b\x5a\xeb\xfa\xe9\x86\xf1\xb7\x40\x1f\xf1\xa5\ +\x6f\xdb\xf8\x70\x94\x38\x81\x20\x80\x22\x00\x83\xd4\xa2\xf1\x93\ +\x35\xb5\xf8\xf2\x8f\x5e\x7f\x9e\x4e\xee\x57\xe1\x92\x16\x3f\x14\ +\x06\x99\x2a\x1b\xf8\x26\xe0\xe0\xc1\x6e\x36\xfe\x36\x71\x01\x2b\ +\xbd\x67\x40\x42\xe3\x68\x6a\x0d\x61\xc5\xfa\x9d\x78\xf9\xbd\xcf\ +\xb0\x7d\x57\x03\x82\x7e\x15\x8a\xc2\x24\x12\x96\x6d\x44\x26\x8f\ +\x82\x7a\x48\xb7\x26\xc7\x62\x8c\x64\xa2\x99\x64\xcf\xea\x5b\xa5\ +\x80\x98\x4d\x70\x0f\x23\xe3\xb6\x21\x93\xb8\xaa\x8c\x7b\x38\x2c\ +\x72\x6f\x41\x72\xb6\x9a\x25\x43\xe6\x16\x1f\xc0\xa6\x21\xcb\x42\ +\xae\xd2\x7d\xcd\x41\x24\xc3\x41\x24\xb4\x04\xa6\x3d\x7a\x1f\x46\ +\x8d\x1c\x45\x67\x5e\x71\x0b\x53\xb5\xfd\xf3\xb5\xa6\xe5\xf7\x1b\ +\xc6\xdf\xf4\x6d\xd6\xfd\x47\xa3\x03\x00\x74\xf1\x9f\x20\x74\x55\ +\xe1\x11\x6a\x9f\x89\x77\xe5\x14\xf6\x3f\x67\xd1\x5b\x2f\x50\x76\ +\x56\x26\x3b\x5a\xd3\xfa\x64\xcf\xa5\x27\xa0\xe0\x91\x76\x02\xa6\ +\xe1\x07\xfc\x40\x67\x97\x86\x17\xdf\xf9\x0c\xff\x5c\xb4\x0a\x1d\ +\xe1\x08\x62\xb1\xb8\xc0\xa9\x22\x10\x73\xcf\x53\x98\xab\xbb\x99\ +\x20\x63\x66\x1a\xa7\x3b\x92\x0b\xe2\x18\x82\xde\x1d\x59\x6a\x3c\ +\xee\x0d\x46\xa6\xe2\x12\x27\x92\xb9\xfe\xf0\x12\xe0\x20\xbb\x9d\ +\x68\x6a\x33\x12\x59\x1a\x12\x29\x45\x40\x48\x37\x53\x46\x24\x8b\ +\x75\x08\x0e\x40\xdc\xa2\xe4\x54\x7d\x26\xc7\xea\x72\xa7\x08\x48\ +\xa4\xab\x0b\x8f\xde\x3b\x19\x3f\x9c\x74\x15\x8d\xbe\xec\xe7\x2c\ +\xd4\xbc\x6b\xa9\x76\x60\xc9\x3d\x00\x36\x41\x57\xf5\x3d\xac\x23\ +\xbe\xc7\xaa\x03\x30\x9d\x40\x06\x80\x12\x00\xc3\x94\xe2\xf3\xa6\ +\xe4\x15\xf6\x3b\xed\xa3\x57\x9e\xa6\xc2\x82\x7c\x83\x52\xcd\x0e\ +\x79\x5a\x7f\xb0\xed\xba\xee\xd2\xfa\x83\x25\x0b\x1d\x76\xa4\x57\ +\xd5\xff\xac\xdf\xde\x80\xca\x55\x5b\x51\x59\xb5\x05\x55\x1b\x6b\ +\x10\xf0\xa9\x46\x7a\xef\xa4\x5b\xcb\x51\x94\x93\x23\x05\x26\x24\ +\xa1\x5b\x8b\x8a\x37\x49\xce\x7a\xc8\x62\x9b\x5b\x85\xed\x61\x9f\ +\x14\x4a\x3a\xe4\x30\x4e\xaf\xb3\xd6\xf6\x5d\xd9\x09\x25\x8d\xe4\ +\xf0\x56\xe8\x61\x8e\xd6\xa5\xe8\x64\xa4\xfb\x0a\x4e\x31\x1e\x4f\ +\xe0\xd1\x7b\xfe\x88\x49\xdf\xbd\x9c\x4e\xbb\xfc\x16\xd6\xd6\xbc\ +\x7b\x25\xdf\xff\xc5\x9f\x00\x6c\x01\xd0\x80\x43\xb8\xd4\xe3\x78\ +\x74\x00\xa6\x13\xc8\x82\xc1\x11\xf0\x95\x5f\xf9\x6c\xdf\xbe\x03\ +\x4a\x17\xbc\xfa\xac\x01\xc0\xba\x47\x68\x0f\x95\x41\x1e\xaa\xb4\ +\xbe\xa7\x8f\x3b\x9c\x51\x9e\x01\x88\x6b\x1a\x42\xe1\x28\x3e\xae\ +\x5c\x8f\x19\xb3\xbf\x40\x53\x5b\x08\x7e\x9f\x22\xf4\xc8\x49\xe2\ +\xcc\x93\xab\xb7\x2d\xac\xac\x26\x13\xe6\xe3\x06\x39\x46\xe4\xd2\ +\x73\x77\xbd\x4c\xb2\x03\x70\xaa\xe2\x32\xc1\xc8\xc0\xb8\xc7\x5e\ +\x03\x39\x3d\x17\x8d\xcc\x34\x54\x99\xeb\xef\xf1\x1c\x84\x48\xae\ +\xab\x3a\xa7\x4e\xe5\x93\xc9\x79\x79\xed\x6f\x90\x32\x16\xe3\x6c\ +\x42\x4b\x60\xca\xe4\xdb\x71\xcb\x8d\xd7\xd1\x19\x57\xdd\xc6\x76\ +\xef\xae\xd9\x97\xa8\x9f\x77\x1b\xec\x5e\x7f\xf8\x68\x32\xfe\xa3\ +\xd5\x01\x00\x80\x6a\x38\x81\x72\x40\x19\xa7\x94\x5e\x32\x75\xf0\ +\xa0\x61\x65\x73\x5f\x7e\x12\x00\xb1\x64\x78\x40\x2a\x07\x70\x30\ +\x86\xfc\xaf\xa6\xf5\x3d\xcd\x3e\x0e\xb5\xe1\x9b\x7d\xfa\x3d\x0d\ +\x21\xcc\x98\x5d\x89\x65\x6b\xb6\xa3\xa9\x35\x84\x68\x3c\x0e\xc5\ +\xd8\xf4\x6b\x47\x72\x99\x36\xed\xac\x65\xe5\x3a\xdb\x2b\xcd\xb6\ +\x6b\x76\x1b\xb5\xe7\xd6\x8a\x32\xcb\xc8\x2c\xc0\xcc\xe0\xed\x5b\ +\xa8\x3d\x17\x84\x5c\xdd\x0b\x55\x48\x18\x06\x73\x82\x76\x4e\x67\ +\x61\x15\x23\x56\xaa\xef\x76\x00\x24\x08\xcb\xb8\xc6\x76\xad\x48\ +\x2e\xa7\xfd\xf0\x94\x6f\x87\xb4\xed\xc9\x7c\x0e\xe1\xce\x30\x9e\ +\x7f\x7c\x0a\x7e\x38\xe9\x72\x9a\xf0\xfd\xdf\x62\xf3\xd6\x2d\x7b\ +\x69\xdf\x27\xb7\x03\x7c\x95\xd0\xee\xd3\x8e\x36\x43\x3b\x9a\x29\ +\x2a\x2a\x80\x1c\x00\x15\x50\x32\xce\x52\x8a\xcf\xbf\xaf\x7f\xff\ +\x41\xe5\x6f\x3c\x7d\x3f\x15\xf5\x2a\x48\xba\x68\x44\x34\xc0\x43\ +\x59\x0e\x1c\x4c\x5a\x9f\xaa\x34\x39\xd4\x0e\xc0\xa7\xea\xf7\xde\ +\xb8\x73\x1f\xaa\x36\xd4\x60\x7e\xe5\x7a\x6c\xdc\x5e\x87\x8c\x0c\ +\x3f\x7c\x8a\x22\x03\x5f\xd4\x0d\x98\xe5\x4c\xfb\x93\x44\x40\x0b\ +\xf0\x93\xa6\x37\x93\x18\x27\x39\x32\x04\x4a\x61\x9c\x82\xf0\xaa\ +\xb8\xed\x08\xce\xb4\x5f\x98\x0c\x35\xdf\x64\xc9\x90\x89\x5b\xc2\ +\xb2\x24\x45\x72\xf1\xac\xe8\x00\x04\x70\xd3\x3c\x6b\xf0\x0b\x2c\ +\xc5\x21\xd8\xa2\xae\x64\xbc\x3e\x33\x0b\xe1\x9c\xe3\xa9\x07\xee\ +\xc2\xc5\x17\x4c\xa4\x4b\xae\xff\x3d\xab\xae\xd9\x51\x4f\xfb\x17\ +\xff\x19\x3c\xb2\x0c\xba\xae\x5f\xe8\x68\x34\xfe\xa3\xdd\x01\xc8\ +\x4e\x00\xca\x68\x5f\xf9\xe5\x8f\xe7\xe4\x15\x96\x2e\x7e\xfb\x05\ +\xca\xca\xcc\x64\x8c\xf5\x8c\xe6\x7b\xb8\xb3\x81\x7f\x35\x8b\x38\ +\xd8\xf4\x1e\x00\x34\xce\x11\xee\x8a\xe1\xed\xf9\x55\x78\x63\xde\ +\x32\xc4\x12\x09\x07\x88\xe7\x06\xed\xa4\xb4\x96\x52\x80\x59\xce\ +\x7a\x99\x91\x6b\x9c\xd5\xab\x5e\x36\x53\x79\x08\x88\x7f\xaa\x7a\ +\x99\x13\x17\xa2\xac\x70\xd6\xe9\x00\x44\x67\xc1\x1c\xcf\xa1\x9b\ +\x48\x9e\x54\x04\xc4\xf1\x3a\x88\xe4\x16\xa5\xf7\x40\x11\xb7\x77\ +\x39\x1a\xef\x71\x2c\x1a\xc5\xb4\x47\xef\xc3\xa5\x17\x4c\xa0\xb1\ +\x97\xff\x9c\x75\xb4\x37\xef\x4b\xd4\xcf\xff\x1d\xc0\xd7\x1e\xed\ +\xc6\x7f\x2c\x38\x00\xd1\x09\x94\x02\x18\xa9\x14\x9f\xf7\xa7\xdc\ +\x5e\xfd\x4e\x7b\xfb\xb9\x87\x68\xe8\xc0\x0a\x26\xae\xa9\xfa\x57\ +\xeb\xf3\x83\xed\xdd\x1f\x0a\x70\xf0\x60\xfa\xf4\x99\x41\x60\xed\ +\xb6\x46\xcc\xfa\x64\x25\xd6\x6d\xad\xc3\x9e\x86\x66\x43\xa8\x84\ +\x49\x80\x9a\x95\x92\x53\x0a\x30\x4b\xea\x7d\x53\xf2\x3a\xdb\xb5\ +\x8b\x10\xae\x85\xa7\x66\x44\xb5\xc8\x40\xe6\xdc\xbe\xb3\x0e\x87\ +\xe3\xac\x34\xb7\x0f\x4b\x04\x04\x02\x91\xc6\x7e\x0e\x1e\x53\x7b\ +\x86\x7c\x1c\xe3\xe8\xc1\xeb\xe4\x82\x0c\xbd\x3c\xb5\x27\x69\x00\ +\x20\x99\x76\x80\xed\x44\x4c\x8e\x7f\x38\x1c\xc6\xec\x57\xa6\xa1\ +\xa2\xbc\x82\x2e\xb9\xe1\x76\xd6\xd1\xb2\x7b\x25\xdf\xff\xc5\x14\ +\x00\x1b\x8c\x9a\xff\xa8\x36\xfe\x63\xc5\x01\x88\x98\x40\x09\x80\ +\xc1\x6a\x9f\x89\xff\xad\xb1\xfc\x73\x5e\x7f\xee\x41\x3a\xd7\x83\ +\x2c\x74\xa8\xd3\xfa\x64\xf7\xf0\x4a\xeb\x0f\xd6\xf9\xa4\x8a\xf4\ +\x3e\x15\x88\xc6\x38\xaa\xeb\x9a\xf0\xf5\xfa\x1a\xbc\xb7\x70\x15\ +\xf6\x34\xb4\x20\x23\xe8\x87\x6a\xcc\xc3\xa7\x04\xb3\xa4\xc1\xa9\ +\x6e\xc0\x2c\xa1\x87\x9d\x6c\x19\x29\x87\x87\x58\x87\xf3\xbe\xe2\ +\x59\xe3\x67\xcb\x6d\x3d\xee\xf9\x1c\xa4\xfb\x3a\xd7\xaf\x39\x85\ +\x3d\x5c\x7b\x18\x6c\x9e\xaf\xb4\x10\x35\x95\x08\x88\x95\x4d\xc8\ +\x83\x45\xf6\x5a\x37\xee\x18\xe6\xb1\x1d\x80\xa6\x71\x14\xf5\x2a\ +\xc0\x9c\x57\x9f\x47\xfd\xfe\x16\xba\xfa\xa6\x3b\x99\x4a\x6d\x4b\ +\xb5\x03\x4b\xee\x85\xae\xe7\xd7\x70\xb4\xd6\xfc\xc7\xaa\x03\x30\ +\x9d\x40\xa6\xc1\x13\x18\xaa\x16\x8d\xff\x9d\x16\x2c\xbf\xfc\x85\ +\x07\xff\x84\x4b\xce\x1b\x6f\x6d\xaa\x4d\x65\x90\x07\x53\x9f\x1f\ +\xa9\x72\x20\xd9\x2f\xa5\xa9\xad\x13\x2f\xcf\x59\x86\x05\x4b\x37\ +\x81\x6b\xdc\x95\x2e\x4b\xf5\x32\x52\x80\x59\x52\xbd\x6c\x18\x27\ +\xf3\x48\x81\xa5\xf6\x9b\x63\xeb\xb0\xc7\x2e\x42\x72\x28\xf0\x48\ +\x8b\xaf\x84\x54\x5e\xaa\x97\x1d\x34\x5d\x78\xec\x43\x24\x24\x99\ +\xd5\x17\x5e\xa7\x8b\x86\xec\x8c\xe4\x4c\x4c\xf5\x53\x47\x72\x7b\ +\x83\xb3\x63\xc1\x8b\xe3\x3d\xb6\x72\x03\x22\x94\x97\x95\x60\xe9\ +\xdc\x37\xf0\xd1\xa2\xe5\xb8\xe9\xb7\x53\xa0\x46\xeb\xe7\x6b\x4d\ +\xcb\x1f\x87\xbe\xbf\xef\x00\xf4\xc9\x3e\xed\x58\x31\xaa\x63\xe5\ +\x22\xe8\x5a\x02\x51\x00\x61\xea\xaa\x5f\xa7\xaa\x7e\xf5\xfd\xc5\ +\x1b\xc6\xe4\x66\x65\xd1\x79\x67\x0e\x63\xf2\xca\x2b\xf7\x57\x2f\ +\x43\x4f\x96\x01\x78\x7d\xbf\x27\x23\xc1\x07\xfb\x38\x22\x82\xdf\ +\xa7\xa3\xf7\x55\x1b\xeb\xf1\xea\xdc\xe5\x98\x3e\xab\x12\xd3\x67\ +\x7d\x89\x6d\xbb\xf7\x7b\xac\x8f\x15\x55\x71\xed\xed\xc3\x64\x6e\ +\x54\x32\xfe\x57\x9c\x6b\x67\x4c\x1c\xb4\xb1\x65\xcb\xcd\xd9\x0a\ +\xe6\x92\xd5\x13\xd4\x71\x98\x38\x05\xcf\x2c\x40\x4c\x7e\x4a\xf2\ +\x96\x62\x6b\xa4\x9f\xc8\x5e\x00\x23\x4c\xcf\x89\x23\xfe\xcc\xa1\ +\xaa\xc3\xe0\x7e\xad\xf6\x93\x86\x00\x58\x3a\x56\x78\xb9\x44\x22\ +\xec\xd7\xc2\x5c\x13\x83\xe4\x5a\xe9\x47\xc6\xcd\xdc\x0a\x43\xf6\ +\x22\x90\x48\x34\x86\x6b\x2e\xbb\x08\x73\x5f\x7b\x06\xcf\xcc\x98\ +\x43\xbf\xf9\xcb\x53\x3a\xbd\xb7\x65\xf5\x93\x46\xe4\x37\x8d\x9f\ +\x1f\x4b\x51\x15\xc7\x98\x13\xd0\xa0\x93\x29\x22\x14\xd9\xbf\x83\ +\x51\xb4\x73\xf1\xf2\xea\xf1\x9d\x51\xb0\x89\x67\x8e\xb6\x3e\xe7\ +\xc9\x8c\xae\x3b\x9a\x6f\x32\xb4\xbe\xbb\xa8\xde\xdd\xe3\xec\xef\ +\xeb\xe9\xbd\xaa\x02\x5d\xd1\x38\xf6\x36\xb6\x63\xd6\xc2\x75\xf8\ +\xaf\x27\x3e\xc4\x9c\xcf\xd7\xa1\xa6\xbe\x19\xa1\x70\x04\x8a\xa2\ +\x80\x29\xb6\x29\x33\x72\x1b\x8b\xa5\x8c\xce\x4c\x23\x64\xf6\x82\ +\x12\x71\x1e\xd6\x65\x9c\x64\x1b\x1c\x23\x69\x7b\x86\x24\xc8\x6a\ +\x21\xe3\xa6\x21\x3b\x47\x66\xc9\x61\x9c\x82\xb0\x87\xe4\x51\xdc\ +\xc2\x1e\xf6\x6a\x73\xb2\x85\x5f\x4d\xd5\x5c\x87\xf1\x5b\xb7\x10\ +\x1d\x99\x30\xb5\x27\xbe\x38\xd7\xeb\x14\x7e\x67\xa9\x84\x3d\x4c\ +\x87\x45\x2e\x81\x4f\xfd\x1f\x1a\xd7\xf0\xd3\x1b\xfe\x0d\xcf\x3e\ +\xfc\x47\xfa\xcb\xa3\x33\xd9\x03\x8f\xbd\x44\x2c\xbc\xe1\x69\xde\ +\xbe\xf5\x15\x00\xd5\xb0\xc7\x7a\xf9\xb1\x64\x50\x3e\x1c\x7b\x17\ +\x87\x3e\x44\xd1\x04\x40\xa3\x50\xf5\x3f\x58\x22\xd4\x38\xfd\xb5\ +\x8c\x7b\x96\xaf\xdd\xc8\xde\x7c\xe6\x7e\xc3\x6b\xb3\x94\x60\x5b\ +\xb2\x39\xfd\x64\xdf\xeb\x6e\xb4\xb8\xbb\xc7\x99\x7d\x7a\xbf\x8f\ +\x61\xe7\x9e\x56\xbc\xf8\xfe\xd7\x58\xbd\x79\x0f\x62\xf1\x04\x34\ +\x43\x80\x30\x23\xe8\x37\xc4\x2f\x7a\x50\x9f\x51\xea\x5a\x4e\x8a\ +\x70\x49\x46\x60\xad\xb3\x4e\x49\x66\x2e\x1a\x4c\xaa\x9f\xcd\x04\ +\xbd\xfd\x24\x4f\xcc\xfa\xc1\xce\xb3\x8e\xcd\xbb\x8e\x4d\x9b\xee\ +\x19\x7f\x4a\xf2\x7c\xc8\xb1\x88\x25\xc5\x59\xb2\xa9\xbe\xe6\x03\ +\xbc\x77\x47\x89\xbc\x02\xbd\x44\x99\xf6\xe8\xbd\xf8\xee\xc5\xe7\ +\xe3\xb2\x1b\x26\xb3\xe5\xab\x37\x81\x75\x56\xdd\x43\x91\x03\x1f\ +\x1b\xc6\xdf\x6a\x7c\x26\xf9\xb1\x66\x4c\xc7\xa2\x03\x30\x9d\x40\ +\x14\xfa\x44\x95\x46\x91\x03\x51\xed\xc0\x92\xf6\xaa\x55\xe1\x3f\ +\x5e\x7c\xc3\x6d\xc5\x4f\xdc\xfd\x7b\x1a\x77\xca\x60\x0b\x1c\x4c\ +\x65\xc8\x07\xe3\x1c\x0e\xe6\x71\x16\xef\xde\xa7\x97\xaf\x5f\xad\ +\xdb\x83\x2f\xd7\xee\x42\xd5\xc6\x3d\xd8\xd3\xd0\x02\x9f\x4f\x85\ +\xaa\x08\xa2\x91\xc2\x2a\x72\xa3\x70\xf6\x8a\x83\x1e\x36\xe8\x3d\ +\x3b\x2f\xca\x6e\x49\x9b\xae\x99\x5b\x3a\xdd\x2d\xd1\x05\x69\xe7\ +\xa2\xc7\xb7\x65\x01\xd7\x14\xb3\xf3\x92\x5d\x8b\xe9\x76\x0f\x44\ +\x40\x00\xb8\xc4\x45\xe4\x6d\x50\x1e\xef\x49\xd2\xd7\x29\xbf\x93\ +\x8c\xe4\xc5\xad\xcc\xa5\x0e\xc0\xc1\xb9\x86\x93\xca\x4b\x31\xed\ +\xe1\xbb\x01\xc5\x4f\x67\x4f\xba\x8d\x55\x57\xef\x68\xa0\x96\x95\ +\x0f\x1a\xf3\xfc\xb5\xd0\xf7\x5f\x7e\xeb\x53\x7d\x27\x02\x08\x98\ +\xec\xf9\xfb\x8d\x36\x61\x39\x80\x41\xbe\x92\x0b\xef\xd2\x7c\xf9\ +\xe3\x9e\xbd\xef\xff\xe3\xf2\x0b\xce\x31\xd2\x73\x71\xcd\x56\xcf\ +\x3a\x00\x3d\x69\xf9\xb9\x5b\x80\xf6\x1e\xbb\x70\x24\x8e\x96\xf6\ +\x2e\xcc\x5e\xb4\x01\x73\x16\x6d\x30\x5a\x79\x8a\x00\x3a\x71\x61\ +\xf1\xb7\x03\xcc\x72\x48\x69\x49\xe0\x1b\x25\x01\xb3\x9c\x3d\x77\ +\x97\xa4\xb5\xbc\xd9\xd8\x66\xf2\x09\xed\x39\x11\xb4\x13\x47\x6a\ +\x85\xb3\x62\xdb\xd0\x06\xed\x6c\x29\x2d\x32\x36\x33\x33\x27\x5b\ +\x90\xdc\x52\x5a\x24\xd0\x8d\x49\x40\xf0\xad\xc1\x1d\x0f\xba\xb1\ +\xa4\x33\x40\x1c\x70\x4c\x14\xc2\x68\x2f\x3a\x75\x06\x60\x72\x1f\ +\x9c\x34\x64\xc7\xeb\x84\xd1\xd9\x20\x22\x9c\x33\x7e\x2c\xde\x7c\ +\xfe\x11\xcc\x5e\xb0\x14\xb7\xdc\xf1\x10\xd4\x44\xdb\xaa\x44\xc3\ +\xe7\xf7\x40\x9f\xe8\xab\x37\xda\x7c\xf1\x63\xd5\xf8\x8f\x07\x07\ +\x60\xbe\x06\xb3\x4d\xd8\x1b\xba\xda\xf0\x24\xa5\x60\xf4\xaf\x27\ +\x8e\x1f\x4d\x6f\x3d\x77\x37\xeb\x8a\x1c\xac\x21\xa7\x1e\x33\x76\ +\x67\x07\xba\xee\x7d\xd0\x0f\x54\x6d\xde\x8f\xd7\xe6\xaf\x42\x4d\ +\x5d\x0b\x3a\x3a\x23\xc6\x68\xab\xd8\x5e\x73\x28\xda\x8a\x7a\xf3\ +\x29\xd4\x64\x5d\x67\x85\x91\x5a\xe7\x59\x4b\x80\x83\x92\x2b\xda\ +\x8a\x86\x21\xce\x06\x88\x23\xb5\xce\xa9\x3d\x18\xc8\x3e\x87\x63\ +\x56\x1f\xc9\x04\x38\x6c\xbc\xc1\xd6\x0e\xe8\x89\x08\x88\xd3\xa8\ +\xc5\x1d\x11\xdc\x56\xe0\x91\x76\x44\x18\xfa\x02\xa6\xad\x33\x12\ +\xf4\xfc\x1c\x33\xfe\xc9\x76\x4f\x18\xef\x61\x34\x1a\xc5\x4b\xff\ +\x33\x05\x93\x2e\x3f\x17\x93\x7e\x76\x37\x2d\xfa\x6a\x2d\xe3\xad\ +\x6b\x9f\xa2\xd0\x8e\x0f\x60\xcb\x78\x99\x6d\x3e\x3a\x96\x8d\xc7\ +\x77\x1c\x38\x00\x13\x18\xec\x34\xbb\x04\x14\xda\xd1\xc6\x63\xad\ +\xbb\x17\x55\x86\x6e\x1f\x73\xf9\x2d\x25\x7f\x7b\x78\x32\x9d\x3e\ +\x6a\x10\x8b\xc6\xbc\x99\x83\xa9\xea\x78\x2f\x90\xcf\x4c\x40\x03\ +\x3e\xa0\x33\xa2\x61\xcd\xb6\x7d\x58\xbe\xb1\x16\x4b\xd6\xec\x42\ +\x53\x6b\x27\x02\x7e\x15\x8a\xf1\xb9\x50\x98\xd4\x1d\x13\xbc\x2e\ +\xb9\xeb\x70\x01\x2d\x4f\x79\xd6\xaa\xd5\x93\xab\xd4\x4a\x9b\x6e\ +\x53\xe9\xf2\xc1\xb1\xe9\xd6\xf1\x1c\x3c\xcf\x26\xdd\x88\xeb\xf1\ +\xab\x21\xbb\x1b\xd1\xfd\xaf\xd1\x51\x4a\x71\x51\xab\xdf\xee\x43\ +\x88\xa5\xb6\xb4\x34\x96\x98\xed\xb0\x92\x9d\x35\x9f\x0c\xd9\x08\ +\x82\xf9\xfd\x44\x22\x81\x53\x86\x0e\xc2\x0b\x53\xef\x45\x6b\x47\ +\x17\x0d\x39\xff\x16\xb6\xb7\xbe\xb6\x01\xad\x55\x53\x11\x6b\x5e\ +\x0c\x9d\xd9\xd7\x22\x80\x7d\x74\xac\x1b\x8f\x8a\xe3\xe7\x92\xda\ +\x84\xd0\xba\x1a\xd0\xb9\xb3\x32\x82\xdc\xe1\xaf\xbe\xbb\xb0\xac\ +\x77\x61\x6f\x8c\x1a\x3e\x08\x3d\x19\x24\x72\x7f\x95\xb1\x84\x78\ +\x82\x63\x5f\x73\x08\xcf\xbd\xbb\x1c\x0f\xcf\xfc\x02\x5f\xac\xae\ +\xc6\xce\xba\x16\xc4\x13\x1a\xfc\x8a\x02\x66\x2d\xb1\x24\x77\x6b\ +\xcc\xa0\xd5\x32\x8f\x82\xdb\xd9\xda\x62\x44\x7a\xcf\xde\x65\x54\ +\x24\x6b\xd0\x49\x3c\x7b\x13\xf6\x26\x61\xdf\xa9\xb1\x69\x99\xd9\ +\x8b\x2e\xcd\x07\xba\x1d\x8c\xbc\xa9\x99\x91\x7c\x96\x08\xb2\x74\ +\xb7\xb9\xa1\xc7\xf1\x7d\x13\xd3\x70\x3e\x77\xf2\xd2\x5b\x84\x7c\ +\x96\x04\xc4\x5f\x5a\xe1\x2e\x76\x02\x1c\x4e\x4a\x34\x64\x0b\x2f\ +\x60\x62\x8d\x2f\x9f\x65\x24\x77\x29\x18\x80\xcb\x2f\x9a\x88\x37\ +\x9e\x7f\x14\xef\x7d\x54\x89\x1b\x7f\x79\x17\x8b\x74\xee\x5d\xc5\ +\xf7\x7f\x76\x27\xb4\xae\xe5\x00\x76\x1b\x60\xdf\x31\x87\xf4\x1f\ +\xef\x25\x40\xb2\x92\x20\xdb\x28\x09\x06\x2a\xb9\x83\xbe\x87\xbc\ +\x53\x7f\x75\xd6\xd8\x53\xe9\x1f\xcf\xfc\x95\x79\x2d\xea\x4c\x45\ +\xec\x09\xf8\x01\xbf\x0f\x58\xb4\xb2\x0e\x1f\x54\x6e\x41\xdd\x81\ +\x36\x34\xb7\x75\xe9\x4e\x03\x90\x96\x53\xb8\x35\xe8\x90\xa4\x5e\ +\x16\x48\x3a\xc4\x85\x34\x9b\x8c\x15\xd7\x90\xe4\xaf\x65\xa9\x2d\ +\xfb\xfb\x76\x7a\xed\x21\x7f\xed\x14\xbc\xf0\x98\xbf\x97\x66\x02\ +\x1c\xc4\x1b\xcf\x79\x02\x12\x49\x3d\x94\x5c\x04\xc4\x74\x5e\x5c\ +\x98\xa3\xef\xa1\x08\x08\x19\x4e\x8a\x5c\xf2\xdf\xe6\x78\xb2\x41\ +\x74\x22\x87\x82\x8f\xf4\x3a\x85\x45\x23\xcc\xc6\x18\xec\x61\x1f\ +\xfd\xbd\x4f\x24\x34\xe4\xe6\x64\x63\xc6\x93\x53\x70\xfa\xe8\xe1\ +\xb8\xe6\x67\x7f\xa6\xaf\xaa\xd6\x31\xb4\xad\x7f\x92\x87\x76\x7e\ +\x60\xa0\xfc\x07\x8e\x97\x94\xff\x78\xce\x00\x9c\x5d\x82\x04\x74\ +\x52\x46\x07\xc5\x5a\x6a\x10\x6b\xda\x52\xdf\xca\x46\xcf\x7c\xef\ +\x93\x9c\xc1\x03\x2a\xe8\x94\x21\x15\x4c\xd3\xbc\x0c\xde\x6c\xd7\ +\x01\xed\x9d\x31\x6c\xac\xde\x8f\x77\x3f\xdf\x82\xfb\x5e\x5e\x82\ +\x4f\x57\x56\xa3\xa5\x3d\x8c\x48\x5c\x83\x0a\xe8\x7d\x7a\x49\xf0\ +\xc2\x8e\x8a\x22\x9e\xc0\x92\x45\x5b\x49\x16\x9b\x2c\x94\x9b\x5b\ +\xe4\x1c\x99\xdc\x62\x23\xe2\xc2\x59\xc6\x04\xd5\x5d\x39\x99\x26\ +\xe1\x1e\x32\xc1\x85\xe4\x05\x19\xd2\x6a\x6c\x38\x22\xbd\x63\xa9\ +\xb5\x45\xec\x21\x17\xf2\x2f\x46\x72\x12\xda\x89\x5e\x8d\x36\x71\ +\x11\x88\x98\x25\xe9\x3c\x09\x59\x7a\x5b\x5c\x05\x2e\x65\x4a\x02\ +\xa3\x51\xee\x7a\x92\xeb\x75\x82\x48\xe2\x47\x10\xf4\xd5\x70\x37\ +\xff\x68\x12\xfe\xf9\xda\x23\x58\xb1\xae\x86\xae\xbe\x79\x32\xdb\ +\xb6\x7d\xdb\x3e\x6a\x5c\x7a\x37\x75\xd5\xcf\x15\xea\xfd\x63\x86\ +\xd9\x97\xce\x00\xbc\xbb\x04\xb9\xd0\x87\x89\x86\xaa\xbd\xcf\xfc\ +\x15\x65\x54\x5c\x3c\x64\x40\x05\x66\x3d\xff\x20\xe5\xe6\x64\x31\ +\x53\x69\x98\x8c\x0f\x7b\xcd\xde\x56\xbc\xfa\xd1\x5a\xac\xaf\x39\ +\x60\xa4\xc0\x49\xc4\x24\xe1\x81\x34\x27\x11\x93\x24\xa1\xa6\xb5\ +\x10\x6f\x4b\x4d\x96\xbb\x45\x37\xc4\x1a\xd5\x12\xba\x64\x82\xd2\ +\x8e\x71\xd6\x8a\xa2\x32\x98\xe5\x8a\xb2\x29\x04\x38\x9c\x62\x9a\ +\xd6\xeb\x34\x10\x75\x79\xd0\x26\x85\x00\x87\x43\x04\xc4\x7a\xbd\ +\xa2\x08\x08\xeb\x6e\xe0\x28\xc9\x7c\x43\x12\x11\x10\xfb\x67\x08\ +\x08\x3f\x4b\xae\x02\x64\x66\x09\xbd\x7b\x15\xe0\x83\x99\x4f\xc3\ +\xe7\xf7\xd3\x35\x37\xff\x81\x6d\xad\xae\x03\xeb\xaa\x5b\xa0\x35\ +\x7d\xfd\x1c\x80\x6d\xd0\x87\x79\x3a\x8e\x75\x94\xff\x44\x77\x00\ +\x62\x49\x90\x09\xa0\x10\x40\x39\x0b\xf6\x3e\x9b\xe5\x8f\xfc\x45\ +\x56\x5e\xd9\xf0\x1b\xae\xbd\x94\x1e\xf8\xc3\xcf\x58\x47\x27\xc7\ +\x03\x33\x2b\xb1\x6b\x5f\x1b\x5a\x3a\xba\xe0\x53\x14\x40\xe9\x46\ +\x4d\x56\x54\x9e\xed\x46\x4d\x96\x3c\x34\xf3\x5c\x62\x92\xe6\x4c\ +\xbd\xb4\xb3\x5e\xd0\xb1\xf3\x78\x0e\x4e\x43\x16\x75\xee\xdc\x8a\ +\xb6\x82\xb0\x87\xd8\xf2\x12\x52\xf5\xee\x44\x40\x20\xb6\xfc\x1c\ +\x02\x1c\x64\xbc\x57\x62\xc7\x83\xac\xcd\xcd\x24\xbd\x4e\x51\x3e\ +\x9b\x84\x14\xdf\x86\xf1\x91\x72\x3a\xd1\x62\xf5\x89\x5c\x7f\x0f\ +\x9d\x01\x71\x2a\x91\xc0\xa1\x25\x34\x4c\xbd\xe7\x0e\xdc\x78\xdd\ +\x77\x70\xe7\xbd\x7f\xa7\x57\x66\x7d\xcc\xc2\xed\x7b\x37\x51\xdb\ +\xfa\xe9\x14\x6d\x5a\x66\xb4\xf7\x5a\x8e\xd7\x94\xff\x44\x29\x01\ +\xbc\x4a\x02\xcd\x48\xe5\x42\xd0\xc2\x7b\xa9\x73\x57\x65\x42\xe3\ +\xb1\xaa\x4d\xf5\x83\xff\xfe\xd6\x82\xe0\x19\xa3\x87\xd1\x8d\xdf\ +\x3d\x83\xed\xac\x6b\xc1\x81\xd6\xb0\xd1\xa7\xd7\xf3\x5d\x09\xa0\ +\x12\x52\x5d\x2f\xd0\xce\x05\x66\x99\x67\x1d\xc4\x14\x3d\x4d\x26\ +\x9b\xcb\xef\x4a\x5f\xbd\xd3\x65\x27\xf0\x25\xf1\xec\x3d\xca\x09\ +\x99\xf7\x2f\xdf\x9b\xcc\x72\x82\x33\x8b\xf9\x27\xce\x03\x30\x57\ +\xa9\x42\x1e\x69\xb6\xfc\xdc\xec\x63\x3a\x46\x60\x1a\x22\x13\xd0\ +\x7c\x06\xb9\x44\x32\x0a\x7a\x8f\x99\x05\x5b\x71\x48\xaa\x4d\x04\ +\xe7\x24\xdd\x97\x91\x47\x39\x01\x90\xa6\x41\x55\x15\x9c\x3b\x7e\ +\x2c\x16\xbc\xf1\x3c\x42\xe1\x18\x5d\xf8\x83\x3b\xd8\xa2\x2f\x57\ +\x74\x24\xda\xb7\xcc\xe4\xcd\x2b\x1e\x85\xd6\xb5\xca\x00\xfa\x5a\ +\xa0\x53\xcd\x35\x9c\x20\xd1\xf1\x44\xba\xcc\x6c\x20\x08\x20\x1f\ +\x40\x19\xc0\x06\x2b\xbd\xc7\xdf\xaa\x66\x9d\x74\xd1\xe8\xe1\x83\ +\x68\xd6\xf4\x07\x58\x34\xae\xe1\xc1\x99\x95\xd8\xb4\xab\x11\xaa\ +\xc2\x84\xe8\x63\xa4\xec\xc4\x25\x72\x8c\x9d\x66\x0b\x00\x95\x29\ +\x2b\x4d\xe4\x92\x98\x72\x82\x59\x70\x4a\x69\x59\xb5\xb7\xd7\xcf\ +\x70\x48\x69\x99\xf5\xb8\x43\xd1\x16\x4e\xf9\xeb\x54\x63\xbb\xce\ +\x9d\x8b\xc6\xd4\x9e\xe7\xe8\xb0\x53\x80\x83\x79\xa7\xf2\x26\x79\ +\x49\x3a\x4b\x6e\x15\x20\x2f\x11\x10\x7b\x34\xd8\x4b\x04\x44\x9e\ +\xda\x73\x9d\x75\x8c\x0e\x6b\x5a\x02\xa3\x47\x0c\xc1\xf3\x8f\xfc\ +\x37\x7a\xe5\xe7\xe2\x9a\x9b\xff\x48\x6b\x36\xed\x60\x5a\x67\xed\ +\xa7\xbc\x69\xc5\x74\x80\xcc\x74\xbf\xcd\x40\xf8\x8f\xfb\xa8\x7f\ +\x22\x66\x00\x5e\xd9\x40\xc4\xa8\xf1\x5a\x28\x5c\xb7\x9c\x62\xad\ +\xdb\xf6\xb6\x44\xfb\xff\xed\xcd\x05\x45\x7e\x9f\x42\x0f\xfe\xee\ +\x2a\x36\xa4\x6f\x09\x76\xed\x6b\x45\x43\x53\x08\xaa\xc1\xe2\x93\ +\x07\x6d\xec\x5d\x78\x4e\xc0\x0c\x42\xa4\xb3\xce\x4a\x11\x8e\x52\ +\xb6\xa5\x20\xad\x99\x92\x41\x3b\xe9\xbe\x12\x60\x46\x32\x10\x07\ +\xe1\xac\x6b\x24\x8e\xc9\x80\x9a\x23\x92\xc3\xf1\x3a\x45\xe1\x0e\ +\xe6\xc8\x84\x98\x6b\x83\xaf\x9d\xa4\x4b\x67\x99\x3d\x21\x28\x9d\ +\xf5\x00\x4d\x5d\x54\x5f\x29\xfb\x71\x8e\xf5\x88\xaf\x53\xbf\x47\ +\xb8\xab\x0b\x67\x9f\x3e\x0a\x8f\xdd\x73\x07\xee\xb9\xf3\x26\x3c\ +\xf9\xe2\x07\x74\xd3\x6f\xa7\xb0\x9a\x9a\xad\xdb\xa8\x65\xd5\x23\ +\xd4\xb1\x75\x06\x74\xa5\xde\x3a\xd8\x74\x5e\x0d\x27\x60\x44\x3c\ +\x91\x2f\x55\x00\x09\x8b\x01\x54\x28\xf9\x23\x6f\xe2\x59\x03\xae\ +\x2b\xec\x55\x98\xf5\xdc\x94\x3b\x71\xde\x99\x23\xb1\x68\x75\x2d\ +\xde\xf8\x78\x1d\x1a\x9a\x42\x52\x5a\xeb\x6c\x7d\xb9\x00\xaa\x54\ +\x60\x96\xa4\x40\x23\x83\x59\x4e\x5a\xaf\x5c\xb3\x27\x51\xc7\x11\ +\x45\x40\xa8\x7b\x45\x5b\x59\x80\x23\xf5\x73\x90\x45\x40\x1c\x62\ +\x1d\xd2\x73\x10\xe6\xef\xc9\x43\xd8\x03\xc9\x23\x79\x32\x11\x10\ +\x72\x09\x73\x9a\xed\x51\x37\x5b\x90\xb8\xae\x28\xd4\xbf\xa2\x0c\ +\x77\xdf\x71\x2b\xce\x3b\x6b\x0c\x16\x2d\x5d\x87\xff\xfc\xaf\x47\ +\xd0\xd4\xdc\xdc\xa5\x74\xd5\xbc\xcd\xdb\x36\xbc\x0e\x7d\x1d\xf7\ +\x7e\x01\xe4\xd3\x4e\x54\x03\x38\xd1\x1d\x80\x58\x16\x64\x18\x65\ +\x41\x29\x98\x7f\x88\x92\x3f\xfc\x3a\x25\x77\xf0\x0f\xf2\x73\x73\ +\x70\xc7\x2f\x7f\x8c\x9b\x7f\x78\x05\x76\xd4\xb5\xe0\xfe\x19\x8b\ +\xb0\xbf\x29\x64\xf0\xfa\xdd\xa9\xbe\xa4\x41\x67\xa8\x94\x70\x86\ +\xe4\x60\x96\x78\xd6\x4b\x80\xc3\x4b\x34\x53\x14\xb4\xf4\x38\x4b\ +\x1e\xa9\xbc\x4b\x07\xcf\x4b\xd8\xa3\x27\x22\x20\xdc\x21\xfd\x95\ +\x4c\x05\x48\x14\xe0\xf0\x2c\x27\x1c\xc2\x1e\x49\x04\x38\xec\x54\ +\x3f\x89\x08\x88\x91\x6d\xc4\x13\x09\xe4\xe7\x64\xe3\xb9\x87\x26\ +\xe3\xac\x71\xa7\xe0\xa5\x37\x3f\xc2\x83\xcf\xbc\x8e\xb6\x8e\x10\ +\x78\xc7\xf6\x77\x78\xdb\xe6\x59\xa0\xb8\x98\xee\x47\x4e\xb4\x74\ +\x3f\xed\x00\x52\x5f\x0a\x74\x6a\x74\x16\xf4\x65\xa5\x7d\xc0\xd4\ +\xe1\x6a\xe1\xb8\xef\x69\x4a\xe1\x65\x7d\xfb\x0f\xc8\xb9\xe5\xfa\ +\xab\xe8\x57\x3f\x99\xc4\x56\x6f\x3d\x80\x59\x9f\xad\xc7\xd2\x75\ +\xbb\x10\xf4\xab\x42\x2f\xdb\xa1\x68\x2b\x19\xa7\x20\x9f\x2d\x45\ +\x59\xf2\x36\x64\x72\x28\xf4\x88\x67\x25\x43\x16\x58\x70\x8e\x28\ +\x4b\x0e\xf9\x6b\x5b\x6b\x8f\xcb\x5c\x7e\x0f\xd5\x5c\x90\x98\x21\ +\x88\x2a\x3e\x36\xcf\x1e\x0e\x82\x8d\xa8\x02\x04\x97\x83\x93\xb7\ +\xec\xb8\x66\x21\x92\xcc\x2c\xd8\xd9\x84\x7b\xf1\x87\x96\x48\x20\ +\x16\x8b\xe1\x8a\x8b\xce\xc5\x4d\xd7\x5d\x89\x0b\xcf\x1d\x83\xa7\ +\x5f\xfa\x80\xa6\xbf\xfe\x21\xdb\x5d\x5d\x13\x52\xa9\x79\x81\xd6\ +\xbc\x6a\x36\x48\xdb\x0c\x9d\xcc\xd3\x6a\xa0\xfb\x09\x1c\x47\x6c\ +\xbe\xb4\x03\x38\x3c\x65\x41\x86\xe1\x08\x8a\x01\x9c\xa4\x16\x8e\ +\xbd\x11\x99\xfd\xae\xd4\x12\x94\xf9\xe8\x5d\xbf\xc1\xbf\x5f\x7d\ +\x21\xb5\x75\xc6\xd8\x83\x33\x16\x61\xd7\xbe\x56\x44\x63\x09\x23\ +\x55\x26\x97\x04\x15\x79\xa5\xf2\x66\xc4\xf5\x02\xb3\xa4\x4d\xb7\ +\x72\xda\xcf\x0d\x03\x48\x6e\xc8\x72\x24\x97\xee\x2b\x9d\x75\x4c\ +\xc9\x09\x5d\x05\x4f\x43\x86\x97\x71\x3a\xa6\xf6\xa4\x96\xa7\xc1\ +\x93\x20\x47\x89\x20\xa5\xfa\xdc\x12\x07\x15\x25\xc5\x44\x6e\x02\ +\xf3\xc8\x58\x88\x73\x64\x66\x06\x31\x7e\xcc\x08\x3c\x76\xd7\xef\ +\xe0\xf7\xfb\xe8\xcd\x39\x9f\xb1\xdf\xdf\xf5\x14\x54\x1f\xeb\x42\ +\xd7\xee\x79\x5a\xf3\xea\xd7\x84\x54\xbf\xd5\x88\xf8\x27\x74\xba\ +\x9f\x76\x00\x07\xf7\xbe\x98\x19\x41\xa6\x51\x1a\xf4\x81\x12\x18\ +\xa4\x64\x9d\x34\x81\x72\x87\xff\x67\xaf\x82\xa2\x8c\x49\x97\x4d\ +\xc0\x03\x7f\xf8\x05\x3a\xc2\x71\x7c\xb9\xb6\x06\x7f\x9f\xb3\x02\ +\xed\xa1\x88\xb5\x6e\x2b\xa5\xa2\xad\x67\xbd\x6c\x38\x0b\x87\x03\ +\xb0\xea\x65\xc0\x31\xb6\x2b\x1b\xb5\xab\x5e\x76\xde\xd7\x6b\xa1\ +\x27\xb9\x75\xf0\xe4\xb1\x5d\xa7\xbe\xbf\x28\xaa\x91\x22\x92\x1b\ +\xfc\x02\xe2\x90\xbb\x01\x1e\x91\xdc\xb5\x54\x54\xa4\xf8\x32\xb2\ +\xb2\xa5\x58\x3c\x8e\xec\xcc\x0c\x4c\xfe\xcd\xcd\xb8\xe2\xa2\x73\ +\x90\x9f\x93\x85\x3b\xa7\x3c\x8f\xf7\x17\x54\xa2\xa5\xa5\x29\xc2\ +\x3a\x36\xbf\xc0\xc3\x7b\x2a\xc1\x63\x3b\x8c\xa0\xa3\xfd\x43\x00\ +\x00\x07\xcd\x49\x44\x41\x54\x88\xdf\x66\xb4\x7e\xcd\x88\x4f\xe9\ +\x8f\x76\xda\x01\x7c\x53\x47\x90\x01\x20\x0f\xba\x28\x69\xb9\x52\ +\x30\xfa\x07\x3c\x50\x7c\x69\x46\x56\xaf\xf2\x9b\xae\xbb\x0c\xd7\ +\x5e\x3a\x81\xce\x3b\x6b\x04\x5b\xb6\x7e\x1f\xe6\x55\x6e\xc2\xd7\ +\x1b\x6a\x11\x0e\x47\xa1\xfa\x14\xd7\xe8\xac\x0c\x66\x99\xf3\xf7\ +\xa2\xfa\xad\xe8\x00\xcc\x28\xcb\x1d\xa2\x99\x64\x0d\xfd\xe8\x53\ +\xb0\x1e\x8a\xb6\x62\xbd\x4c\xce\xb1\x5d\x7b\x43\x8f\x94\xb1\x98\ +\x91\x38\xe9\xd8\xae\x63\xbe\x81\xbc\xb4\x03\x1c\x6b\xb3\x29\xf9\ +\x2c\x84\xe7\xdc\x84\xe0\x44\x22\xb1\x18\x7a\xe5\xe5\xe0\xdc\xd3\ +\x47\xe1\x9a\x4b\x27\xe2\x8a\x0b\xc7\xa3\x72\xc5\x66\x7a\x7f\xc1\ +\x12\x36\x73\xd6\x02\x44\x42\x2d\xf5\x4a\x7c\xff\xc7\xbc\x75\xed\ +\x3b\xd0\x49\x3c\x07\x0c\x54\x3f\x92\x36\xfc\xb4\x03\x38\xd4\xa5\ +\x81\xc9\x28\xcc\x35\x1d\x01\xcb\xea\x3b\x51\x2d\x38\xe5\x3f\x38\ +\xcb\x28\x0d\x06\xfd\xea\xef\x7e\x7e\x3d\x7e\x7e\xc3\x77\x91\x95\ +\x99\x81\xf7\x3f\xdf\x80\x7f\xcc\x5f\x85\x70\x24\x0e\x4d\xd3\x6c\ +\xe1\x4e\x4a\x2d\x02\x22\x19\x91\x4b\x04\xc4\x6b\xfe\x9e\x1c\x22\ +\x20\x42\x47\xc2\xe0\x2e\xd8\x51\x56\x60\xed\x31\x03\x9f\x33\xa2\ +\x2c\x33\xe8\xc6\xd6\xea\x6e\x90\xb4\x07\xd0\xec\x16\x24\x15\xe0\ +\x20\x07\x2d\x9a\xcb\x91\xdc\xf0\x7a\x6e\x61\x0f\xd7\xd6\x5d\x5d\ +\x3c\xa5\x4f\x61\x01\x6e\xbf\xf5\x7a\x5c\x79\xd1\xd9\xe8\x08\x45\ +\xf0\xb7\x7f\xcc\xc5\x63\xd3\xdf\x40\x34\x16\xd7\x14\x8a\xec\xd3\ +\x5a\x37\xce\xa4\x70\xed\x12\xc1\xf0\x3b\x60\xf3\xf6\xd3\xa9\x7e\ +\xda\x01\x1c\x96\xf7\x8b\x19\x19\x41\xd0\x70\x04\xbd\x00\xf4\x41\ +\xa0\x70\xb8\x92\x51\x7c\x3a\x0f\x96\x5f\x95\x99\xdb\xbb\x6c\x70\ +\xff\x72\xfc\xf0\xea\x0b\xe9\x97\x3f\xb9\x96\xb5\xb4\x47\xb0\x76\ +\x6b\x1d\x66\x7f\xb6\x1e\x5f\x6f\xd8\x85\x8c\x80\x0f\x7e\x83\x57\ +\xe0\x25\x02\xe2\x74\x00\x72\xcd\xee\x10\xeb\x10\x8c\xc8\x2d\x02\ +\xd2\x83\x48\x6e\x76\x29\xb8\xc3\xb1\x24\x71\x42\x9e\x54\xe8\x24\ +\x22\x20\xd2\xf7\x4d\x4a\xb0\xf3\xbe\xc6\xd9\x58\x3c\x81\xae\x48\ +\x04\xa3\x87\x0f\xc2\xad\x37\x4e\xc2\x39\xa7\x9f\x8a\x3e\x45\x79\ +\x78\xfa\xa5\x39\xf4\xf6\x87\x9f\xb1\xed\xbb\xea\xd1\xd5\xd1\xb8\ +\x57\x89\xd6\xcf\xe5\x91\xfd\x55\x88\x35\x9b\xc0\x5e\x8b\x61\xf8\ +\x51\x23\xe2\x53\x3a\xe2\xa7\x1d\xc0\x91\xec\x1a\xf8\x85\xf2\xa0\ +\x17\x80\x5e\x2c\x58\x74\x9a\x92\x3f\xe2\x2a\x8d\x32\x47\x02\x81\ +\xde\x3f\xb8\xf6\x62\xdc\xf8\xfd\x4b\x30\xe1\x8c\x91\x00\x53\xf0\ +\xfe\xe7\xeb\xf1\xc5\xaa\x1d\xa8\xde\xd3\x88\xe6\xb6\x30\x14\x85\ +\xc1\x56\x0b\x23\x97\x94\x96\x67\xbd\x0c\xb8\x8c\xcc\x36\x64\x31\ +\x9a\x7a\x2f\xfc\x94\x52\x6e\x83\x5a\x28\xce\x1b\x78\xa6\xf2\xc2\ +\xf2\x10\xf4\x20\x95\xb7\x19\x80\xdc\x25\x45\x96\x48\x24\xc0\x39\ +\x47\x45\x69\x6f\x0c\xec\x5b\x8a\x09\x67\x8c\xc6\x35\x97\x4e\x40\ +\x9f\xc2\x5c\x2c\x5e\xb6\x0e\xaf\xbd\xfb\x09\xde\x79\x7f\x21\x80\ +\x58\xa3\xca\xba\x36\xf0\xb6\x4d\x73\x29\xda\xb4\xd2\x30\xf8\x16\ +\x21\xcd\x8f\xa7\x51\xfd\xb4\x03\x38\x5a\x70\x82\x00\xf4\x36\x62\ +\x1e\x80\x22\x00\x25\xf0\xe7\x0f\x53\x0b\xc7\xfd\x44\x09\x16\x8e\ +\xe4\x9c\xe3\xe2\x89\xa7\xd3\x2d\x3f\xba\x8a\x5d\x38\x61\x1c\x18\ +\x80\x3d\x0d\x2d\xf8\xe7\x92\x4d\xf8\xa8\x72\x03\x3a\x3a\x23\x16\ +\x1f\x80\x1c\x44\x1a\x29\x65\xb7\x8c\x8f\xdb\xda\xfd\xae\x28\x2b\ +\xa7\xec\x96\xc8\xa8\x63\xd8\x07\x1e\x3f\xc3\x6e\xf1\x39\xb4\x03\ +\x5c\xc3\x3c\xb0\x35\x01\xba\xdd\x45\x68\xeb\x09\x16\xe4\x67\xe3\ +\xc7\x93\x2e\xc1\xf5\xd7\x5c\x84\xbc\xdc\x6c\x00\xc0\x67\x95\xab\ +\xf0\xe2\x9b\x73\x69\xe1\x92\x2a\xa6\x28\x0a\x78\xb4\x79\x83\xd6\ +\xbc\xea\x15\xc4\xdb\xb6\x40\xdf\xb4\xd3\x64\x18\x7d\x18\x3a\x6b\ +\x2f\x5d\xdf\xa7\x1d\xc0\x51\x59\x1e\x28\x46\x56\x10\x34\x9c\x41\ +\x3e\x80\x5e\x50\xb3\x06\x29\xd9\xfd\x4e\xe7\xbe\x82\xf1\x50\x73\ +\xc7\x04\xb2\x0b\xb2\x07\xf7\x2f\xc7\x88\xc1\x7d\x71\xd9\xf9\x67\ +\xd0\x95\xdf\x39\x9b\xf9\x03\x41\x6c\xdf\xb5\x1f\xeb\xb7\xd7\x61\ +\xd9\xda\x6a\x2c\xdf\x50\x83\x48\x34\x0e\x9f\xca\xe0\xf3\x50\x1a\ +\x62\x90\x0d\xee\x60\x44\x40\xa4\xb1\x5d\x81\x3f\x20\xce\x13\x78\ +\x89\x80\x90\xb5\xdb\xcf\x4b\x04\x44\x6f\x21\x6a\x09\x0d\xf1\x44\ +\x02\xf1\x78\x02\x65\xc5\xbd\x30\x76\xc4\x20\x8c\x39\x65\x10\xc6\ +\x9e\x32\x18\xa7\x0c\xe9\x0f\x00\x98\xf7\xe9\x57\x34\x7f\xf1\x72\ +\xb6\x79\x7b\x2d\xb6\xef\xaa\x47\xac\xb3\xb5\x13\x5a\xc7\x1a\x25\ +\xd1\xba\x9c\x77\xee\xae\x82\x16\xde\x61\x44\xfa\x36\xc3\xe8\xa3\ +\x46\xb4\xe7\xe9\x34\x3f\xed\x00\x8e\x15\x67\x20\x72\x0a\xb2\x0d\ +\x67\x90\x0b\x20\x1f\x6a\xd6\x10\x25\x7f\xf8\x05\x2c\xd8\x7b\xac\ +\x96\x60\xbd\xa1\x21\x6f\xe0\x90\x81\xec\xdf\xae\x3c\x1f\x57\x5e\ +\x38\x9e\xfa\x55\x94\xb0\x8a\xd2\x5c\xd4\x36\x84\xb1\x66\x73\x2d\ +\xd6\x6c\xa9\xc5\xd6\x5d\x0d\x68\x0f\x75\xa1\x2d\x14\x46\x7b\xa8\ +\xcb\xa6\xf4\x0a\xbf\x48\x7b\x2c\xb7\x9b\xd1\x61\x31\x92\xc3\x39\ +\x3a\xec\x18\xa9\x75\x8c\xf0\x12\xd7\xcb\x05\x6e\x7c\x65\x0a\x43\ +\x4e\x66\x06\x7a\xe5\x65\xa3\x20\x2f\x07\xa3\x86\x0f\xc0\xd9\x63\ +\x47\xe0\xec\xd3\x46\xa0\x57\x9e\x8a\xda\xbd\x21\xec\xae\x6b\xa0\ +\x79\x9f\x7d\xcd\xde\x9d\xb7\x18\xd5\xdb\xaa\x09\x2a\xda\x55\x1f\ +\x35\x52\xb4\x71\x35\x6f\xdb\xbc\x08\x5a\x78\x9b\x61\xec\x1d\xc6\ +\xd7\x4e\xc8\xbd\xfb\xb4\xd1\xa7\x1d\xc0\x31\xfb\xfe\x2a\x86\x33\ +\x30\xc1\xc3\x0c\x23\x3b\xc8\x01\x50\x00\xe6\xef\x0d\xc5\x57\xac\ +\x64\xf7\x3f\x8b\x65\x55\x5c\xa4\x04\x0a\xfa\xf9\xfd\x3e\x64\x04\ +\xfd\x18\x3f\x66\x18\x5d\x3c\xe1\x0c\xf6\x9d\x89\xa7\x61\x70\xff\ +\x62\xc4\x13\x40\x2c\xae\x21\xa1\x69\xd8\xbc\x73\x1f\x76\xec\xd9\ +\x8f\x5d\x7b\x0e\xa0\xa6\xbe\x11\xd5\x7b\x0e\xa0\xa9\xb5\xc3\x72\ +\x04\x0a\xc4\xd1\x5e\x5b\x6a\x0b\x12\x05\x98\x5b\x2d\x45\x6e\xd6\ +\x08\xc4\xc1\x89\x2c\x4e\x3e\x91\x4e\x61\x26\xe2\x28\x2e\xca\xc7\ +\xd0\x01\xe5\x18\x32\xa0\x02\x43\x4f\x2e\xc7\xb0\x01\x27\xa1\xb4\ +\xb8\x17\x54\x55\x45\xc0\xef\x43\xc0\x0f\xec\xd8\xb5\x1f\x0b\x97\ +\xac\xc4\xc2\xca\x15\xb4\x7c\xcd\x16\x16\x89\xc6\x11\x8f\x27\xc0\ +\x63\xad\xbb\x29\x5c\xf7\x19\xef\xdc\xb5\x0c\x3c\xb1\x1f\x14\x6f\ +\x84\x4e\xd2\x09\x19\x51\x3e\x22\x80\x79\x9a\x50\xd7\xa7\x0d\x3f\ +\xed\x00\x8e\xbb\x32\xc1\xcc\x0e\x02\x82\x43\xc8\x36\x32\x84\x32\ +\x25\x67\xc0\x28\x16\x28\x1c\xac\xb1\x8c\x93\x81\x40\x3f\x20\x50\ +\x12\xc8\xc9\x57\x06\xf4\x2d\xc1\xc0\xbe\xa5\x28\x2b\x2e\x42\xff\ +\x8a\x12\x1a\xd8\xaf\x8c\x0d\xec\x5b\x8a\x81\x7d\xcb\xd0\xb7\x22\ +\x08\x4d\x03\x9a\xdb\x80\xe6\xb6\x4e\xb4\xb4\x75\xa2\x2b\x12\x43\ +\x24\x16\x47\x2c\x16\x47\x34\x9e\x40\x2c\x1e\x47\x3c\x96\xd0\xff\ +\x1e\xd3\xc5\x6e\x02\x01\x3f\x82\x7e\x1f\x02\x7e\x3f\x82\x01\xd5\ +\xf8\xea\x47\x46\xd0\x8f\x60\x20\x80\x9c\xac\x20\x7a\x17\xe6\xa3\ +\x4f\x21\x83\xea\x03\x6a\xf7\x44\x51\x5d\xbb\x17\xd5\xb5\x7b\xb1\ +\x73\xf7\x3e\xda\x5d\xd7\xc0\xf6\xee\x6f\x42\x75\xed\x3e\xd4\xd4\ +\x36\x20\x16\x6a\xe3\x40\xac\x01\x88\xed\x56\x29\xb2\x93\x62\xcd\ +\xdb\x79\xa8\x66\x1d\x80\xbd\x46\x84\xef\x14\x0c\x3e\x26\x44\xf9\ +\x74\x7a\x9f\x76\x00\x27\xdc\x7b\x6f\x96\x0a\x5e\x19\x42\xb6\xf0\ +\x35\x1b\x6a\x66\x5f\x25\x67\xc0\x58\x16\x2c\x1a\xc6\x7c\x39\x15\ +\x1c\x6a\x1e\xd7\xb8\x1f\x9c\x02\xe0\xe4\x03\x14\xb5\xb0\xa4\x08\ +\x65\xc5\xbd\x51\x5e\x52\x88\xb2\x92\xde\x28\x2f\x29\x42\x79\x49\ +\x6f\xe4\xe5\x64\x21\x23\x18\x44\x66\x46\x00\x19\x19\x01\x64\x06\ +\x83\x08\x04\xfc\x00\x80\x58\x2c\x8e\xae\x68\x14\x91\x48\x4c\x77\ +\x18\xd1\x28\xda\x43\x61\xd4\x37\x34\xa2\xbe\xa1\x09\x7b\x1b\x1a\ +\x51\xdf\xd0\x8c\xbd\xfb\x1b\xd1\xdc\xd0\x04\x80\x6b\x50\x58\x02\ +\x0a\x8b\x29\xaa\x12\x57\xa0\xb5\x53\x22\x54\x47\xd1\xa6\x2d\x3c\ +\x54\xb3\x1a\x5a\x57\xad\x61\xe4\xa6\xa1\x77\x26\x89\xf0\xe2\x30\ +\x4e\xda\xe8\xd3\x0e\x20\x9d\x1d\x18\x7f\x17\x1d\x82\x4f\x00\x15\ +\xcd\x3f\x99\x16\xae\xa0\x04\xf3\xa0\xf8\x73\x18\xf3\xe5\x40\x51\ +\xb3\x49\xcd\x2e\x62\xbe\xac\x62\xa8\x99\x7d\xa0\x04\x0b\x99\x1a\ +\x2c\x82\x12\x2c\x20\xa6\x04\x18\x14\x3f\x18\xf3\x81\x29\x3e\xc0\ +\xd8\x3e\x0a\x18\x1d\x02\xce\x41\x3c\x01\xa2\x04\x81\xc7\x19\xf1\ +\x18\x78\xb4\x95\xb4\x68\x33\x78\xb4\x09\x5a\xd7\x01\x4a\x84\xf7\ +\x33\xad\xb3\x09\x5c\xeb\x24\x4a\x84\xc0\xe3\x21\xf0\x68\xbb\x50\ +\xaf\x77\x19\x06\x1e\x15\x40\xbb\x84\xc3\xe0\x91\x8e\xf2\x69\x07\ +\x90\xbe\x0e\x2e\x43\x30\xcb\x06\xb3\x74\x50\x04\xe7\x60\x3a\x08\ +\xf3\x8f\xf9\x3d\xd5\x71\xc6\x7c\x3c\x13\xbe\x32\x87\x41\x72\xe1\ +\x2b\x17\x8c\xd7\x34\x60\xf3\xef\x71\xe1\x8f\x78\x86\x0b\xa9\xbc\ +\x33\x9d\x4f\x1b\x7c\xda\x01\xa4\xaf\xc3\xe0\x18\x98\xc3\xa8\x15\ +\xa1\xac\x70\x7e\xdf\xeb\xf1\x48\x62\xa8\xdc\xe1\x14\x34\x0f\x27\ +\x41\x8e\x3f\x69\x43\x4f\x3b\x80\xf4\x75\x14\xfd\x2e\x59\x0f\xff\ +\xed\xbd\x1f\x3b\xf9\xbf\xd3\x86\x9e\xbe\xd2\x57\xfa\x4a\x5f\xe9\ +\x2b\x7d\xa5\xaf\xf4\x95\xbe\xd2\x57\xfa\x4a\x5f\xc7\xde\xf5\xbf\ +\x5f\x56\x00\x1f\x0b\x40\xa2\xea\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x45\x67\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x05\x01\ +\x13\x37\x16\xf3\x0a\x07\x1e\x00\x00\x20\x00\x49\x44\x41\x54\x78\ +\xda\xed\x7d\x77\x9c\x15\xd5\xd9\xff\xf7\xcc\xcc\x6d\x5b\xef\xf6\ +\xca\x2e\x4b\x67\x69\xd2\x11\xac\x80\x62\xc1\xae\x31\x1a\xeb\xab\ +\x29\x1a\x6b\x4c\xd1\x18\x63\x37\xfa\xb3\x47\x4d\x62\x8f\xe5\xc5\ +\x60\xec\x8a\x4a\x13\x45\x40\xea\xd2\x77\x61\x81\xed\xbd\x97\x7b\ +\xf7\xb6\x99\x73\x7e\x7f\x4c\x3b\x73\xcb\x16\x04\xa3\x79\x9d\xfd\ +\xdc\xcf\xcc\xce\x9d\x3b\xed\xe9\xcf\xf3\x3d\xcf\x01\x7e\x5c\xfe\ +\x4f\x2f\xe4\xc7\xe7\xb6\x2c\xec\xc7\x17\xf1\xdf\xb1\x08\xda\x47\ +\xe2\x3e\x0e\x00\x36\x00\x76\xed\x7f\x51\x3b\x06\x00\x28\x00\x05\ +\x80\x0c\x20\x08\x20\x04\x20\xa0\xfd\xaf\x7f\xa8\xf6\xf9\x91\x01\ +\xbe\x87\xcf\x20\x6a\x04\x4e\x00\xa4\x4c\x90\xc4\x1c\x10\x7b\x2e\ +\x6c\xce\xdc\xa4\x8c\xbc\x31\x49\xc9\x99\x45\x0e\x57\x7c\xa6\xcd\ +\xee\x4c\xb3\xd9\x9c\x6e\x51\x92\x6c\x44\x10\x21\x08\x02\x00\x02\ +\x46\x15\x50\x46\x41\xe5\x50\x28\x14\xf2\x77\x85\x82\xfe\xf6\x80\ +\xcf\xdb\xd2\xdd\xd5\x52\xd9\xd3\x5a\x5f\x8e\x90\xbf\x01\x2c\xd8\ +\x00\xd6\xdb\x08\xc8\x2d\x00\x3c\x1a\x83\x28\x3f\x74\xad\xf1\x43\ +\x65\x00\x8e\xe0\x48\x07\xc8\x18\x24\x4c\x3c\x1b\xf6\xf4\x85\x63\ +\xc6\x8f\x4b\x5f\x78\xdc\x0c\xf1\xe4\xb9\xd3\xa5\x31\x23\x86\x0b\ +\xb5\xad\x3d\xa8\x6f\xf5\xa0\xb5\xcb\x8b\x96\x0e\x2f\x5a\x3a\x3d\ +\xf0\x07\x43\x08\x04\x82\x08\xca\x0a\xc0\x18\x04\x00\x36\x1b\x41\ +\xbc\xd3\x86\x8c\x94\x78\x64\xb8\x5d\xc8\xcb\x74\xa3\x78\x44\x16\ +\x72\xd2\x92\xb0\xab\xec\x20\x5d\xbd\xbe\x44\x5e\xb9\x76\x8b\xb2\ +\xbf\x6c\x5f\x1b\x82\x6d\xab\xe0\xd9\xf3\x11\xc0\xca\x01\xb4\x85\ +\x31\xc4\x8f\x0c\x70\x94\x6e\x55\x00\x98\x13\x80\x1b\x48\x9a\x0d\ +\x21\x67\x41\xf2\xf0\x91\xd3\x4e\x9e\x37\x77\xec\xe8\xd1\xe3\x52\ +\x93\x52\x33\x91\x96\x9e\x8d\x4e\xaf\xcc\x2a\xea\xdb\x49\x43\x4b\ +\x37\x5a\x3a\x7b\xc1\x18\x03\x01\x03\x21\x0c\x84\x31\x80\x30\x80\ +\x31\x80\x51\x00\x0c\x8c\x52\x30\x46\xc1\x18\x03\xa5\x0a\x18\xa5\ +\x50\x28\x85\xa2\x28\x90\x15\x19\x36\x51\x40\x5e\x66\x32\xf2\xb3\ +\x52\x30\x2c\x3b\x95\xa5\xbb\x5d\x24\xe8\xeb\x43\x9f\xb7\x07\x3b\ +\xf7\xec\xed\x58\xf5\xd5\xfa\xfd\xdd\x95\x87\x4a\xc0\x1a\x57\x03\ +\x3d\x9b\x00\x74\x01\xc4\xaf\x5d\xe0\x47\x06\x38\x02\xb6\xdc\x0e\ +\x20\x19\x24\x61\x0c\x89\xcf\x38\x31\x2d\x7f\xda\xb5\xd3\xa7\xce\ +\x2c\xbc\xf6\xd2\xf3\x91\x94\x92\xcd\x96\x7d\x53\x4e\xb6\xec\x6b\ +\x00\x81\x2a\xc9\x84\x30\x50\x4a\x41\xc0\xc0\x18\x05\xa5\x56\x42\ +\x5b\x88\x0e\x06\x70\xdf\xd3\xb0\xef\xc1\x98\xc6\x1c\x2a\x83\x80\ +\x51\x50\x85\x22\x28\x87\x20\x12\x60\xd1\xf1\x93\xf1\x93\xd3\x66\ +\xb1\xf6\xf6\x4e\xf2\xc2\xff\x7e\x84\xcd\x5b\xb7\x54\xb7\xd6\x96\ +\xbc\x04\x6f\xeb\x57\x60\x9e\x72\x00\xdd\x9a\x4f\x41\x7f\x64\x80\ +\x21\xdf\x17\x89\x03\x58\x36\x1c\xf9\xe7\xc2\x5e\x78\xf5\xf9\x17\ +\x9e\x57\x74\xd9\x85\xe7\xc6\xed\xa8\xf1\xa1\xac\xa6\x9b\x75\x79\ +\x7c\x24\x10\x0c\xa9\x84\xe6\x09\xc9\x11\x1d\x3c\x03\x30\x0a\x46\ +\x19\x00\xaa\x11\x58\xfb\x5e\xd3\x10\x06\x03\x30\x06\xc6\x14\x8e\ +\xf8\xea\x77\x00\x03\x65\x14\x84\x32\x30\xa8\xe7\xa5\x8c\x82\x2a\ +\x0a\x5c\x0e\x09\xa9\xc9\xf1\x6c\xc1\x9c\x09\x64\xc1\x9c\xf1\x78\ +\xfa\xa5\xb7\xfb\x96\xbe\xf5\x5e\x25\x02\xd5\xaf\x22\x58\xf7\x01\ +\x40\x9a\x00\xd6\xf7\x7d\xf4\x17\xbe\x67\x0c\x40\x08\xc0\xe2\x01\ +\x0c\x03\x0a\x2f\x9d\x78\xdc\xa9\x97\x9f\x79\xda\xe2\xc2\x71\x13\ +\xa6\xa2\xac\xbe\x8f\x6d\xd8\x53\x4b\x04\xc2\x20\x09\x30\x08\xa3\ +\x4b\x75\x2c\xa9\x87\x26\xe9\xbc\x54\x53\x46\x41\xa0\x32\x04\x65\ +\xd4\x20\xb0\x45\xea\xf9\x7d\x54\x3d\x07\xd5\xce\x41\xb4\x6d\x93\ +\xb1\xd4\xed\x40\x20\x08\x10\xe0\x9c\xf9\xd3\xd9\x31\xe3\x8b\x48\ +\x55\x4d\x1d\x3e\xf8\xf8\xb3\xea\x9d\x5f\x7d\xfe\x06\x50\xbd\x04\ +\x40\x2d\x40\xbc\xaa\x0d\xfa\x91\x01\xc2\x55\x7d\x3c\x88\x6d\x84\ +\x98\x50\x78\x6e\x62\xee\x8c\x3b\xff\x72\xc7\xad\xb6\xb8\xb4\x11\ +\xec\x9f\x2b\x4a\x89\x48\x98\x2a\xb1\xdc\x0b\xd7\xa5\x9e\x67\x00\ +\x06\x06\x12\x45\x95\xeb\xd2\xce\x33\x00\xa3\xd1\x09\x19\xf5\xbc\ +\x1c\xd1\x2d\x66\x84\x3f\x56\x3b\x2f\xb4\x6d\x85\x2a\x50\x28\xc5\ +\xc3\xbf\xbd\x9c\x05\xfd\x3e\x72\xcb\xdd\x4f\x87\x7a\x1a\xb6\x3c\ +\xa8\xf4\x56\x7f\x00\x16\xaa\x00\xe0\xfd\x3e\x98\x86\xef\x01\x03\ +\x08\x0e\x80\x66\xc3\x35\xf6\xa6\x09\x33\x17\x5e\x71\xe7\x8d\xbf\ +\x4a\x57\x9c\x19\x78\x7b\x5d\x15\xf3\xfa\x82\x44\x10\xa0\x4a\x25\ +\x55\x1d\x6c\x46\x15\x8d\x19\x28\x28\xd5\x9c\x39\x4d\x95\x43\x93\ +\x6a\xc6\xa9\x72\x93\xf8\x56\x55\xae\x9b\x03\x5d\xba\xc3\xa5\xde\ +\x38\x96\x23\x3a\x2c\x66\x22\xd2\x5f\xa0\x1c\x93\xe9\xe6\x27\x24\ +\x87\x90\x99\x9a\xcc\x4e\x9e\x3d\x91\x1c\x37\x7d\x1c\xee\x7d\xfc\ +\x85\xb6\xed\xeb\x57\xbc\x06\xff\xfe\x67\x00\xa1\x09\xa0\x81\xff\ +\x74\x38\xf5\x1f\xa2\xbb\x4d\x04\xa3\xe9\x10\xd2\xcf\xc9\x1c\x77\ +\xfa\xdf\x6e\xb9\xe9\x0f\xe7\x3c\x79\xf7\x2d\xae\xcc\xf4\x4c\x52\ +\x94\x95\x80\xbe\x80\x42\x0e\x36\x74\xab\x1c\xaa\x49\xbf\x6a\xd7\ +\xf5\x35\x34\xeb\xcf\xcc\x24\x1e\x85\x79\x9c\xe5\x78\xed\x58\xc6\ +\xef\xd3\x89\x6d\x6e\xc3\xd0\x32\xda\x6f\x74\xff\x40\xfb\xce\x72\ +\x2d\x00\xa0\xd6\x7d\x4c\xe5\x50\xcb\x39\x44\x41\x80\xcf\x1f\x20\ +\xbb\xf7\x55\x61\xd5\xfa\x1d\xb8\xfe\xaa\x0b\x5c\xb3\xe6\xcc\x9b\ +\x7b\xb0\x89\x9e\xd2\xdb\xda\xd2\x09\xf4\x35\x42\xb0\x05\x34\x8e\ +\xfc\x3f\xc1\x00\x04\x40\x3c\x18\x2d\x16\xd2\x66\x3d\x7e\xf6\x45\ +\xd7\xdf\xf1\xaf\xe7\x9e\xc8\x98\x32\x7e\x34\x51\x14\x42\xd4\xf7\ +\xca\x30\xbe\xc0\x8d\xf1\xc3\xdc\xd8\xb8\xbf\x99\x23\x9c\xfe\x9a\ +\x4d\xa2\xea\x04\x56\x43\x3c\x44\x10\x1d\x1c\x31\xf5\xdf\x11\x9e\ +\x98\x51\xbe\x0f\x27\x36\x63\x1c\xe1\x99\x4e\x68\xf3\x7a\x8c\x45\ +\x3f\x2f\xe1\x98\x50\x10\x08\x18\xa3\x58\xbf\x75\x2f\xd9\x59\x56\ +\x81\x57\x9f\xbc\x2b\xc3\x6f\xcb\x3c\xaf\xac\xaa\x73\x0c\xeb\xab\ +\xdd\x07\xa0\x57\xcb\x38\xfe\x17\x33\x00\x11\x05\x80\x65\xc0\x51\ +\x74\xfd\xa4\xe3\xaf\x78\xfe\x6f\x8f\xfc\xbf\x63\xae\xb8\xe0\x0c\ +\x50\xc6\x08\x63\x04\x84\xe8\xae\x20\x01\xc0\x90\x91\xec\xc4\xac\ +\xb1\x99\xd8\x59\xd1\x0e\xaf\x3f\xa4\xd9\x2b\xee\x85\x83\x69\xf4\ +\xe3\xa4\x96\x23\x7a\x2c\xe2\x30\xc6\xd4\x6b\x71\x8c\xa5\xeb\x13\ +\xc2\x6d\xeb\x5b\x84\xf1\xcc\xc2\x40\x0c\xed\x60\x65\x16\xcb\xb5\ +\xa3\x30\x99\xbe\x8f\x01\x78\xf7\xd3\xb5\x64\xf8\xb0\x1c\x72\xf7\ +\x6f\x6f\x1c\x57\xdd\x19\x77\x51\x7d\x4d\x93\x0c\xa5\x6b\x3f\x88\ +\xe8\xff\x2e\x9d\xc4\xef\x92\x01\x1c\x00\x1b\x2b\xa4\x4e\xbf\xef\ +\xe2\x4b\x6f\xb8\xf5\xe5\x47\xef\x72\xa6\x24\xa7\x68\xef\x96\x40\ +\x10\xd4\xc7\x16\x04\x93\x09\x18\x80\x38\x87\x84\x85\x53\xf3\xb1\ +\xbf\xb6\x13\x6d\xdd\x7d\x20\x16\x87\x90\x81\x58\xd4\x37\xe5\xf6\ +\x5b\xa5\x95\xc1\xdc\x67\x3a\x71\xbc\xc9\x30\xb5\x00\x03\xa2\x98\ +\x1a\xde\x14\x69\x51\x48\x84\x79\xd2\x99\x0e\x96\x7d\x2c\x9c\xc9\ +\x28\x20\x08\x04\x35\x0d\xcd\x78\xf7\xd3\xaf\x70\xc7\x8d\x57\x38\ +\x53\x73\x47\x2d\xdc\x55\xde\x94\xcd\x7c\xf5\xfb\x00\xf4\x7c\x57\ +\x59\x45\xf1\x3b\x52\xf9\x89\x00\x66\x08\xd9\x8b\xde\x59\xfa\xe2\ +\xab\x27\xfc\x64\xf1\xa9\x90\x15\x10\x80\x68\xd2\x0e\x4e\xfa\xc3\ +\xd7\xea\xc6\x71\x13\x73\x40\x19\xc3\xde\xca\x76\x83\x49\x78\x89\ +\x8a\x25\x79\x56\x1b\x6d\xca\xaa\xae\xa2\x19\x1b\x40\xd5\x87\x1d\ +\xab\xab\x75\x9e\xc9\x08\x47\x60\x80\xf3\x1b\xf4\x63\xb9\xb5\x91\ +\x8d\xd4\x7e\x6b\xb7\x4b\xf8\x62\x43\x09\x01\x28\xfe\xf1\xe8\xbd\ +\x53\x96\xac\x28\x5f\x0c\xcf\xa1\xcd\x00\x3a\xb5\xa2\xd4\x0f\x9a\ +\x01\x08\x80\x54\x08\x79\xbf\x9c\x7b\xe6\x8d\x2f\xbe\xf9\xcc\x93\ +\x19\x23\x0a\x72\x19\x63\x8c\x0c\x44\x78\x7e\x5b\x25\x38\xc3\x94\ +\x11\xa9\x28\xcc\x4e\xc6\xc6\xd2\x06\x93\x50\x44\x55\xdb\xe1\x52\ +\x06\x0a\x53\xea\x2d\x84\x04\x47\x48\x58\x4c\x47\x34\x55\xcf\x13\ +\x98\x81\x81\xa9\x17\xb3\x10\x3d\x9c\xb1\x78\xa7\x93\x70\xd7\xd0\ +\x19\x27\x5c\x9b\x00\x0c\x6d\x9d\xdd\xd8\xbc\x63\x2f\xfb\xcb\x1d\ +\x37\xb8\x3d\x24\xef\xe2\x8a\xb2\x83\x7d\x40\x6f\x19\x00\xff\x0f\ +\x93\x01\x88\x20\x02\x2c\x07\x89\xc5\x77\x5e\x74\xc5\x6f\xef\x7c\ +\xf6\xbe\x3f\xd8\x1c\x76\x87\x2a\xd3\x1c\x95\x09\xb1\x7e\x4c\x82\ +\xf3\xe6\x40\xe5\x25\xca\x80\x9c\xb4\x78\x2c\x9c\x5e\x80\x8d\xa5\ +\x0d\xaa\x5f\x60\xbc\x70\x6a\x55\xdf\x24\x96\xaa\xd6\xf7\x85\x11\ +\x27\x42\x9b\x58\x23\x0d\xa2\x9f\x9d\xc6\xd2\x26\xd1\x88\xce\x39\ +\xa8\x51\x98\x10\x61\x4c\xe8\xf1\xfa\xc8\xb2\x2f\x36\xe0\xb6\x5f\ +\xfc\xd4\x96\x9c\x3b\x76\xe1\xae\xd2\x4a\x17\x82\xad\xbb\x40\x84\ +\xbe\xa3\xe5\x17\x88\x47\x8f\xb1\x58\x1e\x52\x66\x3c\x73\xff\x9f\ +\x1f\xbb\xf2\xfa\xcb\x2f\x66\xb2\x0c\x08\x82\x46\xca\x98\xea\x1e\ +\x03\x6a\x05\x80\xc1\x61\x93\x70\xea\x8c\x42\x54\x37\xf5\xa0\xb1\ +\xc3\xc3\xa9\x72\x6b\xe8\x67\x51\xdf\x11\x61\x1e\x8b\xf0\xd4\xa1\ +\x69\x81\x08\xf5\xcd\x38\xd5\x1e\xf6\xdb\xa8\xe7\x0d\x63\x2e\xa6\ +\xd5\x85\xac\x4e\x22\xe5\x42\x4d\x83\x75\x21\x8a\x02\x56\xad\xdb\ +\xca\x46\x15\x66\xe3\xe6\xeb\x7e\x35\xfb\xa3\x35\xbb\x46\xc0\x57\ +\xbf\x5e\xab\x38\xb2\x1f\x02\x03\x48\x00\x8a\xc4\xcc\xe3\xff\x7e\ +\xdf\x1f\x1f\x5c\x7c\xd1\x19\x0b\x98\x42\x19\x51\x25\x9f\x4b\x03\ +\x08\xb1\x55\x3e\xaf\x11\xc2\x9d\x43\x41\x30\x4d\xc7\xf1\x93\xf3\ +\x20\x2b\x0c\x7b\xab\xda\x20\x10\x58\x88\x8e\x18\x52\xaf\xab\x6f\ +\x8b\xe7\x4e\xad\xce\x60\x64\xa4\x11\x3d\x54\xec\x2f\xd4\xb4\xe6\ +\x1c\xb4\x24\x55\xd8\xbe\xc8\xe8\xc1\x58\x93\xd2\x03\x95\x24\x24\ +\x07\xd9\xaf\xaf\xbd\x7a\xfc\xca\x8d\x95\xc5\xd4\x5b\xfd\x8d\xe6\ +\x1c\xd2\xef\x33\x03\x48\x80\x50\x6c\xcb\x59\xb8\xf4\xe9\x07\x1f\ +\x99\x7b\xda\x49\xc7\x81\x32\x46\xa2\x7b\xf9\x43\x91\xfa\xe8\xce\ +\x21\x63\x0c\x93\x8a\x32\x90\x9f\x99\x88\xcd\x7b\x1b\xb4\xac\x1f\ +\x22\xbd\xfa\x30\xa2\x5b\x1c\x3e\x2d\x9e\xef\x2f\x84\xb3\x86\x73\ +\x31\x9c\x4e\xfe\x1a\x2c\x92\xa1\x78\xd3\x11\xcb\xe9\xe4\xaf\x21\ +\x89\x02\xaa\x6a\x1b\x49\xf9\xa1\x2a\x3c\xf0\xc7\x5b\x46\x7d\xf6\ +\x4d\xed\xc9\xd4\x53\xf5\x35\xc0\xda\x8f\x24\x13\x08\x47\x98\x99\ +\x86\xdb\x72\x16\xbc\xf9\xda\x33\x7f\x9f\xe4\x8b\x1b\xc1\x1c\x92\ +\x99\x6d\x8e\x65\xc1\xf8\xfd\x64\x08\x89\x69\xc6\xf4\x50\x91\x61\ +\xde\xc4\x3c\x3c\x75\xf3\x29\x70\xd8\x44\xa3\x0e\x60\x51\xd1\x61\ +\x6a\xde\xf2\xe2\xb5\x35\xaf\x86\x75\xff\x41\xdf\x43\xc2\xfc\x5a\ +\xc2\x78\x5d\xdc\xcf\xb1\x8c\x44\x26\xdd\x99\x95\x35\xf8\x53\x84\ +\xef\x27\x84\xa0\xb1\xa5\x0d\x4f\xbd\xf0\x26\x7b\xff\xb5\xa7\x27\ +\xd9\x72\x16\xbc\x09\x60\xf8\x91\x14\xdc\x23\x73\x22\xd5\xe1\xcb\ +\x93\x32\x8f\xff\xfb\x23\xf7\x3c\x3c\x77\x43\x53\x22\xdb\x5b\xd7\ +\x43\xb6\x56\x74\x23\x23\xd9\x81\x6c\xb7\xdd\x78\xb0\x81\x9d\xbd\ +\xc8\xe3\x62\x39\x89\xba\x73\x08\x00\x09\x2e\x3b\xce\x3b\x71\x1c\ +\xca\x6b\xda\x51\xdb\xd2\x0d\x51\x20\xd6\x18\x3f\x2c\x22\xb0\x44\ +\x07\x16\x9b\x4f\x35\xe6\xe2\x35\x04\x33\xd6\x44\x67\x30\xc2\xac\ +\x26\x21\xea\xf9\xf5\xdf\x9a\xcc\x45\x08\x17\x5d\xe8\x9c\x44\x4c\ +\xbf\x81\x10\xce\x79\xd4\xf6\xf5\x7a\xbd\x64\xd3\xb6\x9d\xec\xfe\ +\x3b\x6e\xce\xfa\x74\xdd\xc1\xb1\xd4\x5b\xfd\x15\x88\xe0\x39\x12\ +\x8e\xe1\x91\x60\x00\x02\xb0\x1c\xa4\xcc\x78\xe6\xee\x3b\x1e\x58\ +\xbc\xdb\x9b\x8b\x5e\x5f\x88\x48\x22\x41\x40\xa6\xd8\x5e\xd5\x83\ +\x7d\x0d\x1e\x4c\x1d\x9e\x04\x51\xd0\x24\x88\x30\x6d\x1d\x5b\xfd\ +\xf7\x17\x16\x46\xfd\x4e\x2b\x11\x9f\x3a\x6b\x38\x14\x0a\xec\xab\ +\x6e\x33\x04\x99\x10\x33\x4b\x0c\xa2\xbe\x6f\x7e\x1f\x21\xaa\x54\ +\x13\x4d\xea\x08\x27\xb4\x84\xbb\xb6\xa0\x7f\x4f\x00\x41\xff\x9d\ +\x46\x50\x41\xcb\x5e\xea\xdb\xbc\xa9\xe2\x7f\x07\xc6\xdd\xbf\x7e\ +\x6f\x0c\x11\xd7\xe4\xff\x87\x00\x78\xbd\x7d\x64\xef\xbe\x03\xb8\ +\xe3\x37\x37\x8c\xfa\xec\xeb\xbd\x45\xf0\xd5\xaf\xd5\x1c\xc3\xff\ +\x28\x03\xa8\x71\x7e\x62\xf1\x9d\x0f\xdf\xfb\xc4\x95\xad\xf6\xf1\ +\xac\xad\x27\x40\x04\x42\xa0\xff\x09\x02\x41\xb7\x37\x84\x75\xfb\ +\xda\xe0\xf5\xcb\x98\x58\x90\xa8\x47\xd8\x51\x09\x19\xcb\x47\x88\ +\xc5\x20\xe1\xda\x40\xa1\x0c\x53\x46\x65\x61\x4c\x41\x1a\xbe\xda\ +\x59\xa9\x11\x54\x93\x30\x5d\xfa\x38\xe9\xd6\x53\xc2\xc4\x78\xeb\ +\x2a\x35\x8c\xe3\xb4\xfd\x84\xd3\xd7\xa6\xe2\x31\xa5\xda\xa4\x5e\ +\xa4\x54\xeb\x1a\x84\x44\xfc\xc6\x34\x3d\x44\xe3\xce\xa8\xcc\xa7\ +\xad\x3d\x1e\x0f\xa8\x12\x64\xbf\xbd\xe9\xd7\xe3\x3f\x5a\xfe\x8d\ +\x0d\xc1\xd6\xcd\xdf\x36\x4f\xf0\x6d\x19\x20\x11\x42\xde\x2f\x2f\ +\xbc\xfc\xb7\x77\x26\x16\x1d\xcf\xca\x1b\x3d\x44\x14\x89\xc6\xed\ +\xc4\x90\x26\x42\xd4\x28\xbd\xaa\xc5\x8b\x75\xfb\xda\x90\x9b\xe2\ +\x44\x46\x92\x43\x7d\xb1\x9a\x36\x18\xaa\x73\x18\x6b\x2d\x08\xaa\ +\xe5\xcf\x4e\x4b\xc4\xb1\x13\x0b\x50\xb2\xaf\x0e\x7d\xfe\xa0\x79\ +\x7e\xed\x65\x13\x43\x1d\x33\x4e\x22\xb5\xfd\x7a\x82\x89\x3b\x3e\ +\x5c\xcd\x13\xc6\x54\x16\x27\x9c\xba\xd6\x25\x99\x98\xda\xc4\xb2\ +\xad\x7f\x17\x46\x65\xc2\x89\x3d\x01\x33\x18\x49\xbf\x37\x7d\x2d\ +\x10\xe0\x50\x55\x2d\xb1\x49\x84\x4d\x99\x76\xdc\xec\x5d\x5b\x76\ +\x74\x00\xbd\x3b\xa1\xc2\xce\xbe\x73\x06\x70\x00\x98\x31\xef\xcc\ +\x9b\x5f\xbc\xea\xaa\x1b\x6d\x6b\xf7\xb5\x42\x10\x08\xff\x2c\x9a\ +\x3a\x34\xb9\x5e\x24\x40\x48\xa1\xd8\x5e\xd9\x89\xbd\x35\x5d\x98\ +\x3e\x2a\x15\x92\x28\x68\xd2\x49\xa2\x6a\x83\x68\x91\xc3\x40\x66\ +\x43\xad\xbc\x31\xb8\x13\x9d\x58\x34\x67\x34\xb6\x94\xd5\xa3\xab\ +\xd7\x67\x1c\xa7\xe7\xea\x75\xf5\xcb\x57\x11\xf9\xfb\x25\x86\xae\ +\xe2\x24\x92\x99\x44\x33\xee\x47\x93\x6e\x43\xaa\xb9\x42\x13\x21\ +\xc4\x74\x13\x38\xf3\x63\x24\x32\x89\xa9\x90\x88\xe1\x96\xf3\x5a\ +\x88\xd3\x3c\x04\x10\x44\x11\x07\xab\x6a\x70\xcd\x4f\xce\x20\x7d\ +\x52\xea\xdc\x8a\xd2\xaf\x56\x03\x68\x3a\xdc\xda\xc1\xe1\x31\x80\ +\x5a\xd5\x1b\x2b\x64\x2f\x7a\xe7\x77\xb7\xdd\x97\xf1\xc9\xce\x36\ +\x88\x82\x1a\xe7\x47\xfd\x30\x53\x15\xea\x65\xdb\x1e\x5f\x08\x6b\ +\x76\x37\xa1\xd7\x17\xc2\xb8\xfc\x64\xcd\x6e\x0e\x4e\x1b\xc4\xca\ +\x20\x5a\xd7\xaa\xcd\x15\x05\x01\x67\xce\x1b\x03\x59\xa6\xd8\x5e\ +\xde\x00\x49\x12\x54\xc9\x27\xe6\x4b\x35\x5c\x73\xc2\x55\x0a\x39\ +\xe2\xeb\xcc\x00\x4e\xf5\x13\xce\x1c\x10\x62\xf5\x15\xcc\xfb\x23\ +\xa6\x26\x21\x8c\xd3\x0e\xe6\xef\x2c\xcc\x4b\x78\xe1\x21\x1c\xe3\ +\x85\x99\x06\x02\xf2\xf9\x9a\x75\xf8\xdd\xf5\x57\xda\x3e\x5c\x5f\ +\x37\x1f\x9e\x43\x9f\x83\x88\xed\x87\xe3\x14\x8a\x87\xe9\xf4\x65\ +\x08\xa9\xd3\xef\x7f\xf3\x6f\xaf\x9e\x30\xaa\x30\x9f\x75\x78\x82\ +\xc4\x13\x50\x40\x01\x08\x82\x60\x31\x01\x46\x66\x4c\x57\x6f\x61\ +\xdb\xb5\x6d\x1e\x7c\xbd\xb7\x19\x05\x19\x71\x48\x4b\x74\xf6\x43\ +\xd0\xe8\x11\x41\x7f\xda\x40\xff\x9f\x32\x86\x59\x13\x72\x50\x90\ +\x95\x82\xad\xa5\xb5\x2a\x7e\xd0\x70\x02\x4d\xe9\x25\x9a\xd6\x21\ +\x11\x04\x36\xc3\xc3\xf0\xef\x10\xee\x1b\x58\x6c\x37\xa7\x49\xb8\ +\x6b\xe8\x0e\xa1\xf5\x59\x39\x22\x6b\x7e\x0b\xe1\xcd\x10\xb1\x32\ +\x85\x24\x8a\xd8\x53\x56\xce\x5e\x79\xea\x7e\xf7\x5b\x9f\x7c\x93\ +\xc0\x7c\xf5\xeb\x00\xf8\xbe\x0b\x06\x48\x80\xb3\xe8\xfa\x0b\x2f\ +\xbe\xe1\x96\x0b\x4e\x3f\x15\x2e\xbb\x40\x26\x0f\x4b\xc4\xec\x91\ +\x29\xe8\xf4\x84\xd0\xdc\x13\xd0\xd4\x28\xb1\x48\x4a\x64\xa4\x6b\ +\x3a\x41\x0a\x65\xd8\x7a\xb0\x0d\xdb\x0e\xb4\x62\xca\x88\x54\x38\ +\xed\xa2\xa1\x3e\x07\x1b\x32\xc6\x8a\x1e\x04\x41\xaf\x23\x30\x0c\ +\xcb\x4e\xc1\xa9\x73\xc6\x60\xe5\xa6\x72\x84\x14\x85\x0b\xcb\x98\ +\xe5\x7e\xad\x04\x36\x1d\x38\xa2\x87\x7d\x16\x6f\x9e\x59\x35\x89\ +\xe5\x99\xc3\xf3\x0d\x56\xa6\xe0\xaf\x67\x32\x09\x67\x9e\x38\x9f\ +\x81\x44\xd1\x7a\x1e\x8f\x97\x94\xee\x2f\xc7\x49\x27\x2f\x9a\xb2\ +\xa3\xa4\xb4\x03\x4a\xd7\xf6\xa1\x56\x10\x87\xc6\x00\x2a\x8c\xab\ +\x78\xe2\xdc\x2b\xfe\xf1\xf7\x87\xee\x72\xca\xb2\x6e\xba\x09\x44\ +\x01\x98\x52\x98\x88\xe2\xbc\x44\x30\x06\x34\x76\xfa\x55\x89\xe1\ +\x54\x2c\x21\x1a\x76\x1f\x91\x92\x44\x18\x83\x2f\x20\xe3\xcb\x5d\ +\x0d\xf0\xfa\x42\x18\x93\xef\x86\x24\x12\xc3\xe8\x0e\xc6\x09\xec\ +\x5f\x2b\xa8\xe7\x72\x3a\x6c\x38\x6d\xee\x38\x54\xd6\xb5\xa3\xae\ +\xa5\x0b\xa2\x40\x40\x18\x31\x4b\xb4\xe0\xed\xb3\xa9\xf6\xa3\x13\ +\x83\x59\x1c\xc7\x08\xe9\xe6\x42\xc2\x08\xa9\x27\xa6\x93\x08\xe3\ +\x5c\x24\x4c\xfd\x6b\xcf\xcd\x39\xd3\x16\x53\x21\x00\x1d\x5d\xdd\ +\xb8\xfa\xc2\xd3\x59\xa3\x47\x9c\x56\x7f\xf0\x9b\x65\x10\x6c\xad\ +\x43\x81\x97\x0d\x8d\x01\x18\x4d\x17\xd2\x66\x3d\xf1\xc4\xfd\xff\ +\xef\x98\x94\xa4\x14\x62\x25\x8c\x5a\xad\x8b\x77\x08\x18\x97\x9b\ +\x80\x39\xa3\x52\xd0\xdc\x13\x40\x6f\x9f\x0c\xaa\x3b\x57\x5c\x15\ +\x0e\x96\x84\x87\xf9\x70\x84\x30\xd4\xb4\xf4\x62\xe5\xf6\x5a\xe4\ +\xa7\xc7\x23\x23\xd9\x05\x41\xd0\xe2\x6d\xed\x62\x03\xa5\x95\x63\ +\x57\x19\x09\x18\x03\x6c\x92\x80\xf9\xb3\x47\xa1\xa3\xbb\x0f\x95\ +\xf5\x1d\x20\xc4\xea\xb8\x12\x30\x08\x02\xef\x81\x13\x53\x33\x18\ +\x9e\x3d\xe3\xae\xc3\x38\xa2\x73\x52\x6d\xe4\x06\xb8\xe8\x82\x8b\ +\xff\x2d\xe6\xd0\xf0\x17\x38\xe9\x87\xa9\x79\x2c\xe6\xc0\x30\x47\ +\xea\xcf\x3e\x5e\xf9\x25\x79\xe4\xae\xdb\x5c\xef\xac\xd8\x9e\xc5\ +\xfa\x6a\x57\x01\xe8\x3b\x0a\x0c\x20\x38\x20\x66\x9c\x73\xe6\x79\ +\xd7\xdd\x7e\xe9\x39\x67\x58\xac\x5d\xb8\xba\x05\x00\x51\x20\x98\ +\x32\x2c\x09\x33\x46\xba\x21\x53\x86\xea\x16\x2f\x44\xc1\x94\x2a\ +\x42\xf8\xc4\x0c\xaf\x5a\xcd\x50\xab\xe4\x40\x2b\x36\xef\x6f\xc2\ +\xc4\xe1\x69\x48\x74\xd9\x8c\x64\xeb\xb7\x09\x15\x75\x69\x64\x0c\ +\x98\x35\xa1\x10\xa3\x0a\x32\xf0\xe5\x96\x72\x23\x73\x18\xd5\xbe\ +\x1b\x92\xc7\xc7\xf3\x56\xcf\xde\x12\x26\x12\x44\x39\x8f\x1e\xe7\ +\xb3\x88\x44\x8a\xf9\x5b\x62\xe4\x11\x0c\x49\x67\x9c\xc9\x31\x2d\ +\xab\xa1\x15\x00\x02\xbb\xdd\x06\x8f\xa7\x17\xe3\x8b\xa7\x8f\xdd\ +\x5b\x52\xb2\x1b\xf0\xef\x07\x98\x72\x24\x19\x40\x00\x58\x7e\xc6\ +\xd8\xd3\xfe\xfe\xcf\x27\x9e\x48\xa7\x54\x05\x74\xc4\xb2\xcb\xfa\ +\x9a\x01\xb0\x89\x04\xe3\xf3\x12\x30\xad\x28\x05\x32\xa5\x68\xee\ +\x0a\x40\xd1\x06\x64\x5a\x5e\x38\xe1\x3d\x63\x62\x48\x96\x3f\x18\ +\xc2\x17\xdb\x6b\xe0\x0b\x84\x30\x32\xc7\x0d\x87\x5d\x88\x30\x0b\ +\x91\x4c\xd8\xbf\x39\x30\xeb\x09\x0c\xc3\xb2\x93\x31\x7b\x62\x11\ +\xb6\x96\x56\xc3\xe7\x0f\x9a\x6a\x59\x1b\x6a\x66\x44\x2e\xba\x7a\ +\x36\xc2\x55\x5e\x7a\xad\xaa\x3d\xaa\x23\xa8\x47\x39\x84\x84\x69\ +\x0d\x16\x96\x71\x24\xd6\x28\x84\x7b\xc7\x7c\xc4\x61\xc9\x67\x00\ +\xa8\xaa\xa9\xc5\xfd\xbf\xbf\x0e\xab\xb7\x55\x8d\xed\x6d\xd9\xf3\ +\x11\x54\x90\x29\x3b\x52\x0c\x90\x00\xd7\xd8\x3f\xfc\xfa\x57\x7f\ +\x38\x7b\xe2\x98\xd1\xd6\xba\x6e\x3f\x19\x3d\x5d\xda\x28\x03\x9c\ +\x76\x11\x63\x73\x13\x71\x7c\x71\x06\x3a\x7a\x03\xe8\xe8\xf5\x47\ +\x38\x5d\x20\x04\x84\x51\xd3\xf6\x6a\xdf\x8b\x02\x41\x75\x73\x0f\ +\x3e\xdb\x5c\x81\x9c\xd4\x04\x64\xa5\xc4\x43\x14\xd5\x58\x5f\x2f\ +\x0f\x0f\xc6\x1c\x44\xee\x57\x35\x41\x72\xa2\x0b\x67\x9f\x34\x05\ +\x9b\x76\x55\xa0\xc7\xd3\xc7\xa9\x7b\x4e\xea\xa2\x11\x8b\x33\x19\ +\x96\x44\x12\xe1\xed\x35\xb1\x64\x12\x09\x63\x16\x93\x63\x32\xbb\ +\x95\xf0\xe1\x7e\x80\xc6\x83\x5a\x5a\x99\x4b\x32\xe9\xa9\x69\x81\ +\xe0\xe3\xe5\xab\xc9\x55\x3f\xfb\x59\xe6\x57\x5f\xef\x50\x20\xb7\ +\x6f\x18\x4c\x82\x68\x10\x0c\x40\x08\x88\x6d\xdc\xb8\x59\x17\x3d\ +\xfe\xf0\xed\xb7\xb8\x64\xc5\xa4\xff\xc0\xa9\xd9\x28\x5e\x39\x21\ +\x98\x5c\xe8\xc6\xf4\x91\x69\x70\xd8\x45\x1c\x68\xe8\x36\xd4\xab\ +\xa1\x01\xc2\xbd\x6e\x03\x2c\x41\x50\x52\xde\x84\xed\x07\x9b\x30\ +\x3a\x2f\x05\x69\x49\x0e\x6d\x40\x08\x19\x54\xc8\x18\xab\xda\xa8\ +\x3f\xd0\xa9\x73\x8b\x11\x92\x15\xec\x2c\xaf\xd5\x12\x54\xe6\xfd\ +\x40\xab\x17\x80\x8b\xe5\xad\x64\xb2\x2a\x74\xc2\x15\x1e\x2c\x91\ +\x10\xe1\xaa\x8a\xe1\xd1\x06\x17\xea\x45\x6a\x12\xeb\x03\x10\x4b\ +\xb4\x61\x5e\x7d\xc1\xbc\x69\xac\xa9\x57\x18\xd3\x54\x55\xf2\x31\ +\xc0\x5a\x8e\x84\x06\x48\x10\x13\x47\xfc\xcf\x83\x77\x3d\x76\x46\ +\x56\x7a\x26\x89\x25\x51\x83\xa9\xeb\xf3\xbf\xb3\x4b\x02\x46\xe5\ +\x24\xe2\xb8\xf1\x59\x08\xc8\x0a\xda\x7b\x03\x08\xca\x4a\x64\x26\ +\x4e\x57\x99\x7a\x26\x0c\x80\xd7\x1f\xc4\x8a\xcd\x95\xe8\xf5\x85\ +\x50\x90\x95\x8c\x78\xa7\xa4\x3a\x9a\x9a\x93\x37\x90\x69\xea\x6f\ +\x99\x31\x71\x18\x32\x52\x92\x51\x52\x5a\x1d\x91\xe8\x31\xd5\x7e\ +\x78\x18\xc8\xc7\xf8\x8c\x33\x63\x66\xe2\x8b\x44\x84\x98\x2c\x82\ +\xc0\xa6\x39\x31\xd3\xcc\x46\xc1\x89\x10\x10\x50\x33\x52\xe0\xa2\ +\x0b\xc1\x30\x27\x04\x9b\x4b\x76\x90\x07\xee\xbc\x2d\xee\x9d\x8f\ +\x3f\x6f\x62\x81\x8e\xad\x03\x69\x81\x81\x18\x80\x00\x18\x99\x54\ +\x74\xea\x92\x3f\xfc\xf2\x97\x22\x21\xc2\x61\x55\xea\xfa\xc3\xf8\ +\x49\xa2\x80\xb1\xf9\x6e\x9c\x30\x31\x1b\x41\x59\x41\x4d\x6b\xaf\ +\xa1\x02\x19\x17\x17\x33\x98\x36\x96\x31\xc0\x6e\x13\x50\xdb\xdc\ +\x8d\x2f\x4a\x2a\x91\x92\xe8\x42\x41\x56\x32\x97\x32\x1d\x18\x70\ +\x1a\x4b\x13\x28\x14\x28\xca\x4b\xc7\xfc\x39\xc5\x58\xbd\xb1\x0c\ +\xb2\xa2\x98\xe6\x80\xa9\xa1\x97\xa9\xcd\x78\x82\x12\x4b\xe5\x91\ +\x18\x0e\xa3\x66\xa2\x38\x29\x15\x8c\xb0\x0e\x20\x1c\xc2\x09\x7a\ +\xe5\x50\x7b\x7e\x01\xd6\x90\x53\x20\x02\x57\x5b\x50\x59\x4f\xd0\ +\x4d\xa7\xb6\x4f\x91\x65\x24\xc4\x3b\x50\x5a\x13\x9a\xe7\x6f\xdb\ +\xb3\x04\x40\xfb\xb7\x60\x00\x12\x0f\x52\x78\xdd\x23\x0f\x3c\x79\ +\xf2\xc8\x82\x7c\xe3\x29\x07\x1f\x76\x0d\xc5\x3b\x27\x28\x2e\x70\ +\x63\xf6\xd8\x6c\x24\xc5\x3b\x70\xa0\xa1\x13\x8c\x72\xa1\x18\xcc\ +\xfa\x39\x2f\x29\x00\xb0\x6d\x5f\x03\xb6\x97\x37\x22\x3b\x2d\x01\ +\xb9\xe9\xf1\x50\x68\xa4\x93\x28\x0c\x01\xfa\xc2\x18\x43\x9c\xd3\ +\x8e\x53\x8e\x9d\x80\x83\xb5\xcd\x68\x69\xef\x31\x7c\x0d\x9d\xd8\ +\x02\x57\x55\x14\xf8\x67\x0f\x13\x1f\xbd\x1c\x0c\xc2\xb4\xe3\xc2\ +\x72\x0b\xbc\xe4\x87\xd5\x00\x2c\xa1\x66\x94\x63\x23\xb5\x07\x81\ +\x28\x10\xb4\xb4\xb6\xb2\xbb\x6e\xfb\xb5\xf8\xc1\x3b\x2b\x3b\xb5\ +\xa6\x15\xa1\xc3\x61\x00\x01\xc0\xb0\xd1\xb3\x2f\x7c\xfc\xce\x1b\ +\xaf\x4b\x0e\xc9\x91\x50\xee\xa1\xa4\x66\x07\x2a\xfb\xea\xd8\x0b\ +\x9b\x24\x60\x78\x76\x22\xe6\x4f\x19\x86\x80\xac\xa0\xa3\xd7\x07\ +\x7f\x50\x36\xa4\xc6\x88\x18\x38\x93\x2a\x8a\x04\x1e\x5f\x00\x6b\ +\xb7\x57\xa2\xbd\xc7\x8f\xa2\xdc\x14\xc4\xbb\x4c\xb3\x30\x54\xb4\ +\x91\xfe\x9c\x36\x49\xc4\xc2\x39\xe3\xd1\xdc\xd6\x8d\xea\x86\x56\ +\x8d\x80\x9a\x5d\xe7\x54\xbe\x11\xc6\x47\x98\x03\xab\xfd\xe6\xeb\ +\x05\x96\x9c\x40\x84\xd3\x69\x4a\x5a\xcc\x77\x1d\x35\x9d\xac\x9e\ +\xc3\xe3\xf1\x92\xf9\xc7\xcf\x64\x87\x5a\xfd\xc3\x9b\xab\xb6\xbe\ +\x07\xb5\x51\x05\x1b\x2a\x03\x38\xe0\xc8\xbf\xe2\xea\x2b\x6f\xfb\ +\x49\xf1\xe8\xb1\x46\xd2\x47\x2f\x37\x0c\x36\x35\x3b\x58\x27\xd1\ +\x52\x40\xd1\xd4\xf8\x98\xfc\x14\x1c\x3f\x29\x1f\x71\x0e\x09\x65\ +\x35\xed\x66\xc1\x48\xf7\x88\x89\x9a\x58\xd2\xc0\xc6\x90\x44\x01\ +\xf5\x2d\xdd\xf8\x62\xdb\x41\x88\xa2\x80\x71\x85\xe9\x1a\x6a\x87\ +\x0c\x89\x01\x78\x46\xa0\x0c\x98\x35\x69\x24\x72\x32\xdc\x58\xb7\ +\x6d\x1f\x24\x51\xe0\xfd\x38\x8b\x24\x0b\x9c\x86\xb0\x80\x3f\xb8\ +\x7b\x26\xfa\x71\x24\x0c\xac\x62\x54\x11\xb5\x6d\x81\x2f\x56\x85\ +\xe7\x0c\xac\x1a\x8d\x67\x1a\x5d\x20\xd6\x7c\xbd\x81\x5c\x70\xee\ +\x79\xee\xb5\x5f\x6d\xa8\x81\xd2\x53\x82\x18\xe3\x0e\xfb\x63\x80\ +\x34\x24\x4c\x7a\xf2\xd1\xbb\xef\xcd\xb4\xd9\xa4\xc3\x52\xeb\x43\ +\x75\x0e\x09\xef\x21\x73\x76\x76\x64\x6e\x32\x4e\x9c\x32\x0c\x89\ +\x71\x0e\xd4\x34\x77\x23\x28\x2b\xd0\xaa\xc8\x96\x5a\xbe\x91\x27\ +\x61\x0c\x7b\x0e\x35\x61\x4b\x69\x1d\xd2\x92\xe3\x30\x2c\x2b\x11\ +\x0a\x35\xed\xf1\x50\x17\xc6\x18\x46\x0e\xcb\xc0\xcc\x49\xa3\xb0\ +\x61\xfb\x7e\x84\x64\xd9\x8c\xcb\x11\x46\x28\xde\x61\xe4\x54\x3a\ +\x9f\x33\xb0\xf0\x0f\x61\x66\x5a\x38\xdc\xc1\x06\x31\x9d\x42\x2e\ +\x89\x65\x45\x14\x11\x0b\xa6\x40\x2f\x1a\x11\x02\x9c\x75\xea\x89\ +\xf8\xe0\xb3\x92\x3c\x04\x6b\x97\x42\xed\x47\x30\x58\x06\x20\x02\ +\x84\x84\xa9\xa7\x9d\xfb\xcb\x1b\xcf\x39\xf5\x44\xc9\xcc\xf9\x0f\ +\x5d\xad\x0f\x46\x1b\xf4\xff\x3b\x95\xb4\x92\x48\x50\x98\x9d\x8c\ +\x53\x66\x0e\x07\xa3\x0c\x2d\x9d\x5e\x04\x42\x21\x6b\x5a\x95\xb3\ +\x93\xa2\x40\xe0\xf5\x05\xf0\xcd\xee\x6a\xd4\xb7\xf4\x60\x5c\x61\ +\x06\x5c\x0e\xe9\xb0\x80\xf5\xba\x26\x70\x27\xc5\xe3\xdc\x85\x33\ +\x51\xb2\xb7\x02\x9d\xdd\xbd\x9a\x59\xb2\xc6\xf5\xd6\x5c\x3d\xb1\ +\x96\x75\x79\xe7\xcf\x38\x2e\x4a\x9e\x9f\xcf\x09\x68\xde\x9e\x15\ +\x5c\x12\xf6\x3e\x0d\x07\x94\x18\xa6\x44\x00\x41\x5c\x9c\x83\x15\ +\x8e\x1c\x97\xb0\xb7\x64\xfd\x67\x40\xa8\x2e\x9a\x19\x88\xa5\x01\ +\x5c\x88\xcb\xbb\xe4\xa1\xbb\x1e\x5d\x94\x9c\xe8\x26\x83\xab\xb8\ +\x0d\x3e\x09\x33\xd4\x90\x91\x07\x7f\x52\x0a\x8c\x1e\x96\x8a\x79\ +\x93\x86\x21\x3b\x35\x01\x3b\x0f\x36\x71\x09\x1a\x12\x06\xc5\x52\ +\x35\x48\x63\x5b\x0f\x56\x6f\x2e\x87\xd7\x17\xc4\xa4\xd1\xd9\xa0\ +\x87\xa9\x0d\x74\x73\x32\x7f\xce\x24\x84\x42\x14\xfb\xab\xea\x38\ +\x2c\x20\x89\x92\x2a\x66\x16\x7b\x0f\x1e\x7e\x86\x28\xb8\x02\x84\ +\x69\x09\x1e\x9a\xc6\x6b\x0c\x30\x40\x1f\x4d\xcd\x98\x05\x65\xc4\ +\x33\xc1\xfe\x03\x87\xc8\x83\x7f\xba\xcd\xf6\xca\x5b\x6f\x57\x20\ +\xd8\xb9\x25\x9a\x33\x18\x8b\x01\x32\xd2\x8a\xe6\x3f\x37\xfb\xc4\ +\x73\xdc\xad\x1e\x19\x4e\x9b\x80\x24\x97\xa8\xf9\x00\x83\x0b\xb3\ +\xfa\x4b\xc2\x0c\xa4\x45\x06\xf3\x3b\x51\x20\xc8\xcf\x4c\xc2\xa2\ +\x59\xa3\x10\xe7\xb4\xa3\xb9\xc3\x03\xaf\x2f\x68\x51\xcd\x66\x45\ +\x4e\x65\xfd\xf2\x9a\x16\x6c\xde\x53\x8d\xd4\xe4\x38\x14\xe6\x24\ +\x41\xa1\x43\xd7\x04\xfa\x32\x75\x7c\x21\xdc\x49\x09\xd8\x5e\x56\ +\x11\x06\xfc\x88\xc4\xf4\x01\xc4\x08\x19\x23\xe0\x67\xc4\xaa\xc6\ +\x49\x98\x9f\x60\xc6\xfa\x24\xea\xb6\x0a\x15\x23\x9c\x26\x31\xf7\ +\x53\x85\x22\x29\x21\x0e\xbb\x2b\x7a\x46\xf6\xb5\x95\xfe\xaf\x96\ +\x1e\x1e\x90\x01\x44\x20\x69\xe1\xb1\xf3\x2f\xf9\x45\x62\xfe\x44\ +\x56\xd5\xee\x25\x7b\x1a\x7b\x50\xda\xd0\x0b\x9b\x28\x20\xd1\x25\ +\x41\x14\x88\x56\xa1\xc3\xa0\xeb\xf6\x43\x03\x77\x0e\x46\x8b\x98\ +\x49\x9f\xc2\xec\x14\x2c\x9c\x59\x04\x97\xc3\x8e\xda\xe6\x2e\x84\ +\x64\xc5\x74\xbe\x38\x46\x10\x09\x43\x9f\x3f\x84\x8d\xbb\x2a\x50\ +\x5a\xd1\x8c\x49\xa3\x72\xe1\xb4\xdb\x0e\xcf\x24\x50\x86\x11\xc3\ +\xb2\x31\xad\x78\x24\xbe\xde\xb6\x57\x6b\x52\x45\x38\x33\xc0\x40\ +\x04\x62\xb4\xae\xe3\xd5\xb7\x60\x10\x32\x12\x0b\xc0\x9b\x07\x81\ +\xcb\x01\x44\x44\x0f\x5c\x72\x0c\x04\x16\xfc\xa0\x7e\x8f\xa2\x48\ +\xd0\xd6\xd1\xc1\x86\x0d\x1f\xe7\x3e\xb0\x6b\xcb\x06\x20\x50\x1e\ +\x6e\x06\xc4\xa8\xea\x5f\x1a\xfe\x8b\x7b\xef\x7a\x70\x56\xad\x07\ +\x84\x31\x06\x91\xa8\x68\xdb\x9a\xce\x3e\xec\x6d\xe8\xc1\xfe\x26\ +\x0f\x3c\x01\x05\x59\x49\x76\xb8\xec\x02\x28\xc3\x80\x75\xfb\xc1\ +\xc1\xb8\x60\x89\x34\x06\x57\xe0\x51\x19\x81\x01\x18\x91\x9b\x82\ +\xe3\x8f\x29\x42\x51\x6e\x0a\x76\x1e\x68\x84\xa2\x28\x66\x3e\x9e\ +\x99\x21\x9a\x28\x10\x74\xf4\x78\xf1\xe5\x96\x72\xb4\xf7\x78\x31\ +\x63\x42\xfe\x61\x6b\x83\xd4\xe4\x04\x2c\x9c\x7b\x0c\xb6\xed\x39\ +\x84\x5e\x4f\x9f\x1a\x76\x32\x84\x45\x01\x30\x93\x42\x5c\x64\x40\ +\xa2\x64\xdd\x40\xc2\xb5\x07\xc2\xa2\x18\x62\xa9\x3f\x80\xc7\x35\ +\xf2\xbe\x82\x96\xbe\x0e\x06\x83\xe4\x37\xbf\xba\x1a\xff\x5a\xf2\ +\x59\x1b\xd0\xbe\x26\xdc\x0c\x44\x63\x80\x94\xc4\x82\x59\xb7\x5c\ +\x73\xf5\x0d\xf9\x65\x0d\x5d\x44\xcd\xfe\xf1\x10\x2f\x82\x90\xc2\ +\xd0\xdc\x13\xc0\xd6\xaa\x6e\x54\x77\xf8\x20\x2b\x14\x36\x49\x40\ +\x82\x53\x54\xd5\x2d\x1b\x4c\x26\x70\xe8\xce\xe1\x40\xcc\xa4\x97\ +\xa1\xb3\xd3\x13\xb1\xf8\xb8\xb1\x88\x73\x3a\xd0\xde\xe3\x45\x4f\ +\xaf\x4f\x05\x7e\xf0\x21\x9b\x66\xce\x2a\xeb\x5b\xf1\xe5\x96\x03\ +\x48\x77\x27\xa0\x20\x27\x59\x6d\x37\x38\xc4\xc5\x6e\xb3\xe1\xac\ +\x93\xa7\xa1\xb5\xa3\x17\x07\xab\xea\x21\x49\x62\x64\xac\x6f\x84\ +\xb7\xe1\x51\x00\xe7\xf4\x85\x03\x4f\x08\x22\x2b\x8e\xe0\x53\xcd\ +\x84\x3b\x9e\x44\x54\x14\x09\x18\x64\x59\xc6\x05\x67\x9e\xca\xde\ +\x5f\xb3\x45\xf6\x77\x1e\x78\x3f\x3c\x1a\x10\xa3\x24\x7f\x0a\x4e\ +\x5e\x78\xc5\xef\xed\xd9\xc5\x71\xde\x40\x88\xb3\x37\x61\x83\x36\ +\x09\x81\x24\x12\xf8\x43\x14\x75\x9d\x3e\x94\x36\xf4\x62\x77\x5d\ +\x0f\x04\x42\x90\x96\x60\x33\x2a\x54\x00\xfa\x1d\x08\x32\x14\x27\ +\x31\x9a\x8f\x10\x0b\x0c\x4a\x29\x30\x3c\xd7\x8d\x93\xa6\x8f\x44\ +\x56\x5a\x22\xf6\x57\xb7\x98\x58\x40\x03\x8c\x42\x20\x12\x82\x90\ +\x2c\x63\xcb\xde\x0a\x6c\xd9\x53\x85\xd9\x93\x46\xa8\xb1\xbe\x36\ +\xf6\x70\xb0\xce\xa2\xac\x00\xb3\xa7\x8c\x46\x4e\x66\x3a\x4a\xf6\ +\x1c\x50\x81\x2f\x84\x97\x76\xad\x98\x44\x78\x80\x09\x0b\x0b\x1b\ +\xc3\x9e\x87\xf3\xf2\x2d\xfe\x82\xa5\x2c\x1c\x69\x8a\x49\x98\x59\ +\x0e\x06\x02\x24\x25\x2d\x27\xbe\x6c\xc7\xea\xa5\x5a\x6a\x98\xc5\ +\x62\x00\x11\x20\xc7\x9e\x71\xce\xaf\xaf\xee\xb5\xa7\x73\xd8\xbe\ +\x81\xd5\xa1\x1a\x2a\x31\xd4\x74\xf4\x61\x67\x4d\x37\x0e\x35\xf7\ +\xa2\xbb\x2f\x88\xb4\x04\x3b\x12\x5d\xa2\xa6\xa6\xad\xa8\x9e\x23\ +\x99\x40\x8a\x15\x39\x10\x02\xe4\x65\x26\xe3\xe4\x99\xa3\x31\x22\ +\x3f\x1d\xfb\x2b\x9b\xe1\xf5\x05\x35\x00\x88\x95\x39\x3d\x5e\x1f\ +\x56\x6f\x2a\x45\x7b\x77\x2f\x66\x4c\x28\x00\x65\x24\x42\x9b\xf5\ +\x53\x33\x85\x42\x19\x0a\xf3\x32\x31\x7d\xd2\x68\x6c\xd8\x56\x6a\ +\x9a\x20\x8b\x7a\xb7\x66\x80\x08\x8f\xf9\x0d\x8b\xf1\xf9\xec\x9e\ +\x45\xd5\x5b\x08\xcf\x67\x19\xad\xa8\x11\x9d\x61\x0e\x55\x55\xe1\ +\xc4\x13\x16\xb8\xbe\x5c\xb1\x74\x15\x80\x03\xe0\x06\x97\x8a\x11\ +\xf6\x3f\x71\xd2\xad\x67\x9d\x73\xf5\xd4\xf6\x90\x03\x92\x48\x20\ +\x49\xc4\x9a\xeb\x8e\xd0\x04\xfc\x87\x40\xd4\xf6\x07\x42\x0a\x9a\ +\xba\x7d\xd8\x72\xa8\x1d\x07\x9b\x54\xe7\xd3\x26\x0a\x88\x77\x4a\ +\xda\x10\xb1\xc1\x21\x7a\x87\x12\x2a\x0e\x84\x09\xcc\x48\x49\xc4\ +\xe2\x13\xc6\x22\x29\x21\x1e\x6d\x5d\x1e\xf4\xf4\xfa\x8c\xec\x22\ +\x01\x51\x87\x97\x51\x86\xea\x86\x36\x2c\x5f\xb7\x0b\xb9\x19\x29\ +\xc8\xce\x70\x1b\x21\xe0\x40\xda\x40\xd7\x1a\xc9\x89\x09\x38\xf9\ +\xd8\x63\xb0\xf7\x40\xa5\x99\x2f\xe0\xb5\x01\x41\x74\x0d\xc0\x60\ +\xa9\x71\x98\x7e\x04\x0f\x03\x23\x61\x83\x4f\x18\x27\xf1\xc4\xd8\ +\x16\x04\x02\x51\x10\x40\x29\x45\x4f\xaf\x17\xb3\xa6\x4d\xc3\xaa\ +\xaf\xf7\xf8\x10\x6c\x59\xc1\xfb\x01\xe1\x0c\x90\x8a\xc4\x09\x0f\ +\x9f\xff\x93\x6b\x93\x77\xd5\x78\xd0\xd3\x47\xd1\xe3\x55\x00\x42\ +\xe0\xb0\x0b\x10\x09\xd7\xd3\x87\x83\x30\xf2\x48\x76\x46\x4c\x87\ +\x44\x00\x83\x4d\x10\xe0\x0f\xc9\xa8\x6e\xf7\x62\x4f\x4d\x07\xb6\ +\x55\xb4\x41\xa1\x0c\x59\x6e\x97\x21\x85\x83\xd5\x06\x03\xf9\x14\ +\x03\x31\x00\x63\x0c\x21\x19\x18\x96\x9d\x8a\xe3\xa6\x8e\xc2\xe8\ +\xc2\x4c\xec\x39\x50\x0f\xd9\x40\x08\xeb\x15\x3a\x40\x61\x0c\x25\ +\x7b\x2b\xb0\x65\xcf\x41\xcc\x9e\x3c\x0a\x36\x9b\x34\x24\x26\x70\ +\xd8\x6d\x38\x69\xce\x31\xa8\x6f\x6e\x45\x7d\x73\x1b\x04\x62\x6a\ +\x13\x81\x84\xd7\xf9\xf5\xb1\x86\x56\xc9\x37\x8e\x07\xe1\xb2\x85\ +\xcc\x92\xed\x53\xcf\x27\x84\x69\x63\xa0\xab\xab\x17\x55\x35\x75\ +\xa8\xa9\x6b\x44\x47\x67\x17\xe6\xcd\x9a\x8a\x2f\x37\x96\xa7\xc3\ +\x57\xf5\x1a\xef\x07\x84\x31\x80\x34\x62\xc4\xe4\x45\x37\xcf\x39\ +\xee\x34\xa9\xac\xbe\xdb\x68\x83\xe3\x0b\x50\x74\xf6\xca\xe8\xf5\ +\x51\x78\x03\x14\xb2\x02\x48\x22\xe0\xb0\x11\xae\x3c\xca\xac\xc0\ +\x0e\x2e\xa1\x41\xb8\x04\x09\x65\x14\x75\x6d\x1e\x6c\x39\xd8\x82\ +\x43\x8d\xdd\xe8\xf4\xfa\x91\x1c\x6f\x87\x3b\x5e\x8a\x19\x4d\x0c\ +\xd5\x57\xe8\xaf\xe1\x94\x69\x43\x09\xd2\x53\x12\xb0\x70\x4e\x31\ +\x0a\x73\xd3\x51\xdf\xdc\x81\x8e\x6e\x0f\x24\x41\xb4\xe4\xe7\xbd\ +\x7d\x7e\xac\x58\xb7\x13\xed\xdd\xbd\x98\x38\xba\x10\xa2\x30\xb0\ +\x6f\xc0\x5f\x63\xde\xf4\x62\xb8\x93\x92\xb0\x79\x67\x99\xea\x1c\ +\xf2\x44\xe7\x51\xc6\x42\xb8\xf3\x67\xf5\xbd\xf4\x01\xa6\x02\xe7\ +\x83\xe9\x52\x1e\x0c\x05\xd1\xd9\xd5\x83\xe6\x96\x76\x34\x36\xb5\ +\xa2\xa6\xae\x09\xed\x1d\x9d\x08\x06\x65\x23\x49\x35\x62\xf8\x30\ +\xe6\x95\x1d\xf6\xf6\x9a\xed\x6f\x01\xb4\x25\x1a\x03\x08\x10\x92\ +\xa7\x9c\x79\xd6\x15\x3f\xbb\xea\xcc\x63\xa5\x93\xc7\x66\x20\xdb\ +\xed\x30\xd4\x90\xc2\x18\x7c\x21\x0a\x59\x66\xf0\x05\x29\xba\x3c\ +\x0a\xda\x7a\x14\xf8\x82\x14\x0a\x55\xab\x6e\x7a\xad\x5b\x20\x5c\ +\x51\xc4\x32\x0a\xc6\x84\x4e\x0b\x00\x7c\x41\x19\x8d\x1d\x5e\x6c\ +\x39\xd0\x84\xdd\x95\x1d\x10\x05\xc0\x69\x93\xe0\xb0\x8b\x10\x45\ +\xab\x8d\x3e\xdc\x2a\xe3\x40\xf6\x9b\x31\x86\xcc\xd4\x24\x9c\x3a\ +\x77\x2c\x72\x32\xd2\xd0\xd8\xd6\x05\x8f\xd7\x67\xaa\x55\x8d\xc1\ +\xeb\x9a\xda\xb0\x72\xc3\x0e\xe4\x67\xa7\x21\x23\x2d\x79\xd0\x4e\ +\xa2\x42\x19\x46\x16\xe4\x60\xea\x84\x31\xd8\xba\x7b\x1f\x64\x59\ +\xe6\xe2\x7f\x4e\xea\x09\xe1\xb0\x04\x66\xb8\x68\x6a\x25\xa2\x79\ +\xf5\x0a\x82\xc1\x10\x7a\x7b\xfb\xd0\xd0\xdc\x8a\x8a\xca\x7a\xd4\ +\x36\xb4\xa0\xab\xbb\x17\x3e\xbf\x1f\xa1\x90\xac\xde\x97\x05\xea\ +\xce\x90\x98\x90\x40\x8e\x9d\x3d\x87\x6d\xfe\x7a\xcd\xc7\x80\xbf\ +\x52\x77\x04\xf9\xbb\x97\x20\x66\x5d\xf6\xec\x3f\x3e\x7d\x79\xde\ +\x8c\x69\x02\xa5\x1c\xb8\x93\x31\x50\xc6\xd0\xed\x97\x51\x52\xd5\ +\x8d\x6d\x95\xdd\xf0\xf8\x65\x83\xe8\x3c\xee\x1e\x60\x90\x08\x43\ +\xbc\x93\x20\xde\x29\x20\xce\xa1\x37\x88\xd0\xfa\xe9\xea\xfd\x78\ +\x61\xf6\xee\x85\xd6\xdf\x57\xad\xec\xa9\x63\x08\x27\x17\x65\x60\ +\xde\x84\x3c\xb8\x1c\x22\x68\x8c\xbc\x40\x38\x44\x7c\x20\xa8\xf8\ +\x40\x8c\xa0\x26\x78\x28\x1a\x5a\xbb\xf0\xfc\xd2\x95\xe8\xee\xf5\ +\xaa\x00\x14\xaa\xf7\xf8\xa1\x00\x65\x70\x27\xc5\xe3\x37\x57\x9d\ +\x8d\x54\x77\xd2\xa0\x98\x40\x3f\x26\x18\x92\x71\xd7\x63\xff\x40\ +\x6b\x47\xa7\xf6\xaa\xd4\x5e\x85\x8c\xef\x31\x6c\xe9\x71\x44\xe1\ +\xf5\xfa\xd1\xd9\xdd\x83\xae\xae\x1e\x78\xbc\x3e\x30\xa6\xa8\xad\ +\xea\x8d\x46\xd8\x14\xc4\x68\x54\x1d\x39\xbf\x81\xfe\x8e\x73\x73\ +\xb2\xf0\xf4\x23\x8f\xd2\x73\x17\x2f\xbc\x06\xb4\xf9\x4d\xbd\x3a\ +\xc8\xdf\xb9\x13\xce\xc2\xdf\xac\x58\xb6\xe3\xc1\x34\xb7\x3b\x4a\ +\xbc\xad\x4a\xb4\x28\x02\x92\x00\xb4\x7b\x65\x34\x76\xf9\x51\xd7\ +\xee\x47\x45\x6b\x1f\x2a\x5a\x7c\x90\x15\x45\x75\x02\xf5\x46\x0b\ +\x8a\x4a\x54\x49\x60\x90\xb4\xdf\xd9\x44\xc0\x26\x01\x76\x11\xb0\ +\xdb\x08\x6c\x92\x56\x66\xa6\x66\x43\x67\x06\x0a\x45\x51\x67\xee\ +\xc8\x4d\x8d\xc7\xf0\xac\x64\x14\x0f\x4f\x47\x41\x66\x02\x14\x0a\ +\x4b\x65\x2f\x16\x03\x44\x73\x0c\x07\x9d\xe4\x01\x20\x8a\xc0\xae\ +\xf2\x3a\xac\xd8\xb0\x13\xfb\x0e\xd5\xc2\x6e\x93\xb4\x17\xac\x35\ +\xaa\x56\x28\xe6\x4c\x1d\x87\x0b\x4f\x3b\x0e\xf1\x4e\xfb\xa0\xab\ +\x8d\x8c\x31\xbc\xf6\xce\x32\x7c\xb1\x61\x0b\x9c\x0e\x3b\x42\xa1\ +\x20\x7c\xfe\x20\x7c\x3e\x3f\x7c\xbe\x00\xfc\x81\x20\x02\xc1\x00\ +\x02\xfe\x20\x7c\x7e\x3f\x14\x45\x31\x21\x64\xe1\x9d\xce\x39\x02\ +\x47\x6b\x7a\x4d\xb5\x76\xf9\x00\x43\x28\x18\x40\xe5\xae\x12\x14\ +\x8d\x1d\x7b\x27\x02\xd5\x4f\x40\x1b\x56\x2e\xf1\x1a\x20\x21\x35\ +\x77\x8c\xdd\x66\xb3\xbc\x50\x3e\x03\xc5\xb4\x78\x57\xa1\x40\xa2\ +\x53\x42\x62\x76\x3c\xc6\xe5\x26\x40\x12\x54\x9f\x60\x5f\x63\x1f\ +\x4a\x2a\xbb\x70\xb0\xd1\x83\xbe\x80\x0c\x9f\x46\x54\x59\x51\x3f\ +\x7a\x07\x6d\x7e\x22\x06\x4a\x29\x6c\x12\x41\x9c\x83\xc0\x69\x13\ +\xe0\xb0\xab\x4c\x21\x6a\x76\xaf\xa9\xd3\x8b\xa6\x0e\x0f\xd6\xed\ +\xa9\x46\x82\xcb\x8e\x13\x26\x17\x60\x5c\x41\x3a\xe2\x5d\x36\x03\ +\xb8\xc9\xfb\x0d\xd1\xef\x7d\x88\x45\x1f\xed\x39\xc7\x8f\xc8\xc3\ +\x31\xe3\xf2\x51\x56\xd1\x8c\x7f\x7d\xfa\x35\x5a\xdb\xbb\xd4\x0e\ +\xe5\x10\x20\x4a\xc0\x96\x5d\xfb\xb1\x71\x7b\x29\xae\xfd\xc9\xe9\ +\x98\x32\xae\x68\xd0\x66\xe1\xda\x9f\x2e\x46\x9c\xd3\x85\xbf\x3c\ +\xfb\x3a\xfc\x81\x00\xf8\x16\x36\x7c\x0b\x7b\x35\xb1\x25\xa8\xd2\ +\x4d\xf9\x7e\x02\x66\x0b\x82\xc8\x66\x37\x56\x46\x36\xe2\xbd\x40\ +\x08\x95\xd5\xd5\x48\xce\xcc\x1b\xd3\x5d\x5b\x2d\x45\xc3\x18\xb8\ +\xb3\xc6\x9e\xfd\xe1\xbb\xaf\x2c\x3d\xc1\xe9\x70\x0e\x4a\xb5\x5a\ +\xbd\x6e\x66\x38\x29\x0a\x63\x08\xca\x14\xbe\x90\x82\x5d\x55\x5d\ +\xd8\x54\xde\x8a\x9a\x56\xaf\x4a\x54\xc2\xb5\x6a\x0d\xeb\xe5\xcf\ +\xb4\xd9\x38\x74\x0e\x67\xda\xac\x1f\x24\xac\x15\xac\xc3\x26\x20\ +\x29\xde\x86\xa9\xa3\xb3\x71\xe1\xfc\x62\xa4\x26\xda\x11\x94\xa1\ +\xb5\x91\x25\x51\xb5\xc1\xe1\x2e\xbc\x69\x68\x69\xef\xc6\xab\xef\ +\xad\x42\xd9\xa1\x3a\x08\x04\x08\x86\x64\x84\x82\x32\x02\xa1\x10\ +\x5c\x0e\x1b\xfe\xf2\xbb\xab\x31\xba\x30\x1b\xb2\xd2\x3f\x13\xe8\ +\x70\xf6\x83\x55\xf5\x38\xef\x9a\xdf\x83\x52\x25\xea\x04\x14\x03\ +\xb5\xaf\x67\x1a\x63\xe8\xef\xcc\x68\x44\xc9\xb5\xd6\xa7\xda\xfb\ +\x95\xfd\x7e\x3c\xf2\xe0\x7d\x78\xf6\xe5\xb7\xd6\xd6\xee\x7e\xff\ +\x1c\x00\x5d\xe1\x4e\x60\x72\x6a\xde\xf4\x5f\x5f\x7c\xf6\xf9\xe9\ +\xa2\x28\x46\x24\x61\x06\x1e\x8a\x45\x2c\xf5\x6c\x49\x14\x10\xef\ +\x10\x31\x2a\x3b\x1e\x0b\x26\x67\x62\xfe\xe4\x1c\x8c\xce\x4d\x44\ +\x5a\xa2\x1d\xa2\x40\xd0\xeb\x0b\xc2\xeb\x0f\x85\x75\xe9\xb0\x76\ +\xe0\xd2\x87\xb8\x51\xcd\x77\xa0\x8c\x41\x56\x28\x82\x41\x19\x3d\ +\x9e\x00\x4a\x2b\x5a\xf1\xd6\x8a\xdd\xd8\x52\xda\x80\x6e\x8f\x80\ +\x8e\x5c\xee\x00\x00\x20\x00\x49\x44\x41\x54\x1f\x71\x4e\x1b\xb2\ +\x53\x5d\x10\x04\x35\x13\x78\xb8\x1a\x20\x96\x47\x9f\x10\xef\xc2\ +\xc2\xb9\x13\x90\x9b\x91\x81\xfd\x15\x8d\xd8\xb2\xf3\x00\x7a\xfb\ +\xfc\xf0\x7a\x7d\xe8\xea\xf1\x60\xc9\x87\x6b\xd0\xde\xd5\x8b\xa9\ +\xc5\x23\x11\xef\xb2\xc5\x34\x0b\xba\xa6\x48\x4b\x49\xc2\x4f\xce\ +\x5a\x88\x4d\xdb\xf7\xa2\xa9\xa5\x5d\xab\x23\x44\xe9\x44\x16\xde\ +\xd5\x2c\xac\x83\x19\xe3\x3a\xa3\x99\x5d\xcb\xac\xad\xe8\x28\x55\ +\x50\x34\xbc\x10\x75\xcd\xdd\xbe\x8e\xfa\x5d\x6f\xea\xa1\x20\xcf\ +\x00\x29\x69\xc3\x66\xdc\x7a\xd1\xe2\xb3\xe3\x45\x1e\x13\x1f\xa5\ +\x50\x33\x14\x4c\x20\xd5\xb4\x97\x40\x08\x32\xdd\x4e\x8c\xc9\x4b\ +\xc6\xb1\xe3\x32\x70\xf6\xec\x7c\xcc\x1e\x97\x05\x87\x5d\x40\x47\ +\x8f\x1f\x8a\x36\x19\x03\xa3\xe1\xfd\xf5\xc2\xe7\x09\xd0\x1e\x4a\ +\xbb\xa6\x24\x12\x74\xf5\xfa\xb0\xfb\x60\x23\x3e\x59\x57\x86\x0f\ +\xbe\x2c\x85\x28\x08\x18\x96\x95\x0c\x51\x14\x8c\x74\xf4\x50\xd2\ +\xba\xfd\x7a\xf5\x0a\x90\x93\x99\x82\xb3\xe6\x4f\xc7\xd9\x0b\xe7\ +\x60\xdb\xee\x83\xe8\xf6\xf4\x81\x2a\x14\x92\x28\xa0\xf4\x60\x0d\ +\x9e\x5f\xf2\x09\x0a\xf2\xb2\x31\x62\x58\x0e\x04\x41\x88\x7a\x6d\ +\xfd\x7f\x97\xd3\x81\x9f\x9d\xbf\x10\xbb\xca\x0e\xa1\xaa\xb6\xc1\ +\x82\x13\x60\x51\x5a\xd1\x99\xfe\x00\x60\x69\x4a\x19\xa5\x15\x1d\ +\xdf\xfe\x96\x32\x86\xbc\x9c\x6c\x74\xf5\x51\xd6\x56\x53\xf2\x12\ +\xd4\x9e\x83\x16\x13\x30\x62\xf4\x9c\xeb\xf6\x2d\x79\xe6\x59\x9b\ +\x20\x08\x11\x5e\x77\x34\x07\x6b\xa0\x24\x4e\xb4\xdf\x99\xfb\xb4\ +\x5c\xbc\xf6\x9d\xc7\x1f\x82\xc7\x17\xc2\x81\xfa\x4e\x7c\x53\xda\ +\x88\x9d\x07\x9b\xc1\x28\x85\x24\x12\x63\x2e\x20\x84\x4d\xee\x04\ +\x46\x41\x35\xcf\x9c\x8f\x32\x28\x55\x20\x89\x04\x69\xc9\x2e\x4c\ +\x1f\x9f\x8f\x9f\x9d\x3e\x0d\xf9\x59\x71\xf0\x05\x70\xd8\x60\x90\ +\x58\xa6\x01\x00\xaa\xea\x9a\xf1\xe4\xab\x1f\x60\xe5\xd7\xdb\x10\ +\xef\xb2\x83\x31\x06\x45\x91\x51\x90\x93\x81\x47\x6e\xff\x05\xa6\ +\x14\x17\x20\x10\x1c\x38\x95\xfc\xee\xb2\x2f\x70\xf3\x9f\x1f\x45\ +\x42\x9c\x93\x9b\xc5\x4c\x55\xe5\x96\x49\xac\xb4\x59\x52\xac\xb3\ +\xa0\x28\x5a\x23\x33\x1a\xd5\x9c\x28\x8a\x8c\x69\x93\x27\x21\x24\ +\xa6\x87\x76\xad\x79\x66\x1c\x80\x0a\x5e\x03\x10\x00\x19\x19\x85\ +\x73\x6f\xbe\xe0\xf4\xd3\x23\xf0\x69\x43\xa9\xd4\x0d\x25\x29\xc3\ +\x6b\x39\xbb\x4d\x44\x82\x4b\x42\x51\x4e\x12\xe6\x4f\xcd\xc5\x85\ +\x27\x8e\xc1\xa4\x11\x19\x48\x4d\x74\x42\x14\x09\x82\xb2\x82\x6e\ +\x8f\x5f\x9d\xe5\x8b\xc0\x6c\xae\x44\x63\xb8\x41\x8c\xc1\xeb\x0b\ +\xa0\xac\xb2\x19\x6f\x7c\xb2\x05\x6b\x4b\x2a\x11\x08\x86\xe0\xb0\ +\x4b\x48\x4f\x89\x87\x28\x00\xdf\x66\x8e\x0e\x9e\x89\xdc\x49\x09\ +\x38\x7f\xd1\x0c\x9c\x38\x7b\x2a\x9a\x5b\x3b\x51\x59\xd7\x08\x02\ +\x82\x1e\x8f\x17\xff\x7c\x67\x39\x9a\xdb\xbb\x31\x61\xcc\x70\xb8\ +\x93\x5c\x50\x62\xf8\x07\x8c\x31\x4c\x99\x30\x02\xc7\xcd\x9a\x8e\ +\xe5\x5f\x6e\x80\xdf\x1f\xd0\xbc\x38\xae\xcd\xac\xfe\x7c\x11\x9d\ +\x49\xcd\xd6\xf9\x2c\x5c\x7b\x72\x9a\xd3\xe5\x74\xc2\x95\x98\x25\ +\x36\x55\x7c\xf3\x37\x00\x1d\xe1\x03\x53\xc6\x8d\x3f\xfe\x96\xd2\ +\x37\x9f\x7a\xb2\xdf\xdc\x7a\x7f\x61\xd7\x60\x52\xba\xbc\x87\x3e\ +\xb8\x1e\x40\xea\x0b\x13\x05\xc0\xeb\x97\xb1\xa6\xa4\x12\xab\xb7\ +\x54\xa2\xa1\xad\x5b\xf5\x0d\x14\x59\x0b\xa9\x15\x6e\xd6\x30\x06\ +\xcb\x1c\x3f\x9c\xd3\x49\x29\x85\xd3\x26\xe2\xe2\xd3\xa6\xe3\x82\ +\x53\xa6\xc2\x69\xb7\x1d\x31\x33\xa1\xff\xbe\xd7\xd3\x87\x9b\xee\ +\x7d\x0e\xbb\xf7\x55\x40\x51\x14\x30\x46\xa1\x28\x32\xee\xbe\xe5\ +\x6a\x5c\x78\xc6\x89\x03\x5e\x8b\x52\x8a\x85\x17\xff\x12\x75\xf5\ +\x4d\x51\x9d\x40\xc4\x98\xd0\x6a\xa0\xc9\xaf\xb2\x32\xd2\x91\x5b\ +\x34\x1d\xdb\x96\x3f\x56\x0c\x60\x1f\x00\xc6\x6b\x80\xcc\xcc\xa2\ +\x79\xd7\x5f\xb0\xe8\xd4\x21\x56\xdc\x8e\x3c\x26\x30\x5a\x45\x8f\ +\x31\x06\xbb\x4d\xc4\xb8\xc2\x34\x9c\x39\x6f\x24\xce\x98\x3b\x06\ +\xc7\x4d\x29\xc0\x84\xa2\x4c\x08\x02\xd0\xd0\xda\x03\xaf\x2f\x68\ +\x69\x4c\x15\xd1\xaf\x57\x4b\x53\x87\x14\x05\xdb\x4a\xab\xf0\xaf\ +\xcf\xb6\xe0\xcb\x2d\xfb\x50\x55\xdf\x86\xfc\xac\x54\xe4\x65\xb9\ +\x20\x2b\x87\x6f\x26\x8c\x3a\x80\xc3\x8e\x0b\x4e\x9f\x87\xf9\x73\ +\xa7\xa1\xcf\xe7\x47\xc9\xee\xfd\x70\xd8\x24\xac\x5a\xb7\x05\x2b\ +\xbe\xda\x84\x11\x05\x79\x18\x53\x94\x89\x60\x28\xf2\x3a\x6a\x84\ +\x20\xe0\x92\xf3\x4e\x47\x47\x57\x37\x76\xec\xd9\xc7\x39\x87\xe0\ +\xa4\x1d\xb1\xa7\xb2\x41\x58\x47\x72\xad\x12\xeb\xb0\xdb\xe0\x4e\ +\x2f\x40\xe3\xc1\xf5\x7f\x07\xd0\x1a\x69\x02\x86\xcf\xbd\xfe\xfc\ +\x45\xa7\x5a\x30\xeb\xdf\x76\x7d\xb8\xc3\xc8\x22\xbf\x33\x4d\x06\ +\xd3\x06\x6d\x24\x27\x38\x50\x94\xeb\xc6\x49\xd3\x0a\x71\xe5\xe2\ +\xc9\x98\x77\xcc\x08\xa4\xb9\xe3\xa0\x68\x09\x1b\x4f\x5f\x00\xb2\ +\x42\x4d\x14\x0e\xe5\xbb\x86\xaa\x4b\x4f\x4f\x1f\x4a\x2b\x1a\xf0\ +\xe6\xc7\xeb\xf1\xf9\xda\x52\xcd\x31\xb3\xc3\x9d\x18\x07\x49\x22\ +\x43\x6e\xbb\xc4\x9b\xb6\xd4\xe4\x44\x9c\x71\xf2\x54\x9c\x77\xda\ +\x49\xa8\xac\x6d\x44\x73\x5b\x3b\xda\xda\xbb\xb0\xf4\xa3\x95\xa8\ +\xaa\x6f\xc5\xe4\x71\x23\x91\x9c\x14\x67\x61\x38\x33\xc1\x25\xe0\ +\xb4\x93\x67\x81\x32\x82\x2d\x3b\x76\x73\xa1\x5f\x78\xb7\x72\x1a\ +\xa5\xd3\x39\x8c\xbc\x01\xe3\x9c\x4a\x97\xd3\x81\x94\xf4\x02\x34\ +\x1c\x5c\xff\x37\x9d\x01\xa2\x9a\x80\xa1\x42\xbd\x79\x55\xce\x27\ +\x63\x06\xaa\xd4\xc5\x4a\xe9\x0e\x45\x9b\x44\xfb\x9d\xfe\x92\x64\ +\x85\x62\xc3\xce\x6a\x2c\x5b\xbb\x07\x25\xfb\x6a\x8d\xf2\x29\x8b\ +\x36\xff\x1f\x33\x67\x14\x25\x84\xc1\x26\x0a\x38\x6f\xe1\x0c\x5c\ +\x79\xde\x09\x48\x88\x73\x1c\x76\x53\x56\x5d\xd5\x33\xc6\xe0\xf3\ +\x07\xf0\xc7\x47\x9e\xc7\xaa\xaf\x37\x6b\xf7\x4e\x70\xd3\xff\x5c\ +\x84\xeb\xaf\x3c\x07\x81\x40\x6c\xad\xb3\xbb\xec\x00\xce\xfc\xd9\ +\xaf\x60\x93\x44\x6d\x8a\x3c\x6e\xea\x3a\x2e\x03\xa8\xef\x8b\x35\ +\x89\x66\x4e\x66\x06\xb2\xc3\x4c\x00\xcf\x00\xa3\xc7\xce\xbb\x69\ +\xff\x92\xbf\x3e\x85\xfe\xba\x7b\x0f\xa4\xd6\x07\xf3\xbb\xc1\xf8\ +\x16\xfd\x81\x41\x06\x1b\x69\xe8\x7e\x86\x24\x02\xfe\x00\x43\x55\ +\x43\x3b\xaa\xea\xdb\x51\x52\x56\x83\xcd\x7b\x2a\x51\xd3\xd0\x06\ +\x49\x14\x60\x93\x08\x97\xe6\x65\x46\x02\x45\x96\x43\x60\x8c\x61\ +\xcc\xf0\x6c\x4c\x2b\x2e\xc2\x99\x27\x4e\xc3\x31\xc5\x39\xf0\x07\ +\x00\x59\x3e\x3c\x33\x61\xb7\x01\xfb\x0e\x35\xe0\xad\x0f\x56\xe0\ +\xe5\xb7\x3e\x04\x08\x30\x7a\x78\x3e\x7e\xf7\xab\xcb\x70\xe6\x29\ +\xb3\xe1\xf7\x47\x9e\x57\x14\x80\xc6\x96\x0e\x5c\xf2\xcb\xdf\xa0\ +\xbc\xa2\x0a\x92\x3a\x99\x62\xcc\xa4\x11\xa5\x34\xc2\x07\xa2\x54\ +\xc1\xa8\xa2\xe1\x48\x48\x1f\x8b\xed\x2b\x9f\x18\xab\x01\x43\x58\ +\x44\x18\xf8\xd6\xb3\xcf\xda\x08\x11\x06\x95\x01\x1c\x7a\xe8\x37\ +\xb0\x36\xd0\xcf\xdf\x5f\x16\x72\x30\xcc\xd4\x9f\x34\x4a\x22\x60\ +\xb3\x01\xcd\x6d\x3e\xac\xde\x54\x86\x35\x9b\xca\xd0\xd4\xd6\x85\ +\xce\x6e\x0f\x7c\x81\x80\x01\xdd\xe2\xa7\x91\xa5\x8c\xc2\xe7\xf7\ +\x23\x27\xcd\x8d\xab\x2e\x98\x8f\xe3\x66\x8c\x47\x56\x9a\x1b\x0e\ +\xbb\x08\x85\x0e\xcd\x81\x54\xfd\x19\x82\x1e\x4f\x00\xb7\xde\xf3\ +\x24\x36\x6f\xdf\x83\xce\xee\x6e\x9c\xb9\x60\x1e\xee\xb9\xed\x57\ +\xc8\x4a\x77\x47\x05\xa9\x26\xc4\x03\x97\xfe\xea\xcf\xf8\x7c\xf5\ +\x97\x10\x45\x31\x72\x12\x4d\x84\x15\xdc\x0c\x4d\x47\xa1\xc8\x0a\ +\xa6\x4c\x2a\x06\xec\x39\xa1\x9d\x5c\x18\xc8\xdf\x71\x7e\xd1\x8c\ +\xab\x4b\x96\xfe\xed\x85\x0c\x51\x94\x06\xe5\xe5\x0f\x45\xad\x0f\ +\x2e\x9d\x7c\xe4\x22\x8d\xa1\x2e\xa1\x90\x8c\x40\x48\xc6\xfe\xca\ +\x46\x7c\xf2\xe5\x76\xac\x5c\xbf\x13\x21\x59\x81\x28\x12\x08\x8c\ +\x59\xe6\x1f\xa6\x8c\x42\x14\x08\x5c\x76\x1b\x4e\x3d\x7e\x2a\x7e\ +\x79\xe9\x19\xc8\x48\x89\x43\x48\x1e\xba\x69\x00\x00\x8f\xb7\x0f\ +\x4f\x3c\xff\x26\xfe\xf9\xf6\xc7\x70\x3a\x6c\xb8\xec\x82\x33\xf0\ +\xe7\x5b\xaf\x45\x48\x66\x16\xe7\x12\x5a\xb9\xfd\xdd\x65\x2b\x70\ +\xcb\x9d\x0f\xa8\xef\x87\x86\x4d\x9d\x1b\x65\xc6\x74\xc6\x18\xa8\ +\x1c\xc2\x19\x8b\x4e\x41\x65\x93\xbf\xb5\x6c\xdd\x8b\xd3\x00\xd4\ +\x85\x67\x02\x5d\x89\xe9\xc5\x17\x5f\xb4\xf8\xdc\x74\x03\xd5\x7a\ +\x14\x47\xfe\x1c\x4d\x4c\xe0\xe1\x44\x72\xa2\x28\xc0\x26\x89\xc8\ +\xcf\x4a\xc1\x29\x73\xc7\xe3\x17\x17\x9f\x8c\xf9\x73\x26\xa3\x78\ +\x64\x3e\x52\x92\xe3\xe1\xf7\x07\xd1\xd8\xda\x09\x45\x51\x54\x24\ +\x13\x63\x08\xca\x32\x76\xed\xab\xc4\x4b\x4b\x3f\xc3\x9a\x8d\xbb\ +\xd1\xd8\xd2\x81\x84\x38\x27\x0a\x72\xdd\x00\x41\xcc\x98\x3f\x3c\ +\x8f\x60\xb7\x4b\x38\xe5\x84\x19\x38\xef\xf4\x85\x00\x63\x78\xfe\ +\x8d\x77\xf0\xde\xb2\xd5\xc8\xc9\x4c\xc7\xa4\xe2\x42\xc8\xb2\x09\ +\x66\x61\x8c\x61\xd2\xf8\x51\x98\x3e\x79\x22\x56\x7c\xb9\x0e\xc1\ +\x60\xd0\xf0\xf2\xc3\x3d\x7f\x4b\xa6\x50\x96\x71\xea\x82\xf9\x38\ +\x50\x59\x5f\xdb\x51\xbf\xeb\x15\x3d\x15\x6c\x29\x06\x65\x8f\x3d\ +\xfb\xc3\x77\x5e\x59\x7a\x82\xc3\xa1\xe2\x01\xf5\x11\x35\xd6\x97\ +\xce\x06\xe5\x23\x1c\x0d\xb5\x3e\xd0\x8c\x23\x43\xc5\x00\x0c\x56\ +\x52\x45\x91\xc0\x26\x01\x81\x20\xb0\x62\xdd\x0e\x7c\xbc\x7a\x33\ +\x0e\x54\xd5\xc3\xeb\xf3\xc3\xe7\xf7\x1b\x59\x49\xc6\x18\x82\xa1\ +\x20\x92\x13\xe2\xf0\xf3\x9f\x9e\x81\x33\x17\xcc\x41\x72\x42\x3c\ +\x1c\x76\x15\xed\x34\x90\x99\xd0\xaf\x05\x00\x37\xfe\xf1\x61\x7c\ +\xbe\x66\x3d\xa6\x14\x8f\xc6\x73\x7f\xf9\x13\xb2\x32\x52\x8d\xc4\ +\x95\xae\x0d\x3a\xbb\xba\x71\xca\x85\x97\xa3\xa5\xb5\x5d\x75\xfa\ +\xf4\xc2\x50\x94\x59\xd0\x15\xbf\x0f\x8f\x3c\xf4\x00\x9e\x7d\x65\ +\xa9\xa5\x18\xc4\xdf\x4d\x42\x62\xde\xb1\xcf\xbe\xf6\xe2\xb2\x2b\ +\x97\x6e\x6b\x47\x9c\x5d\x44\x72\x9c\x0d\x19\x89\x76\x64\x26\xd9\ +\x91\xae\xaf\x93\xcc\x0a\x32\xe5\xeb\x13\x47\x90\x90\x83\x71\x2e\ +\x07\x03\x20\x3d\x92\x8b\x4e\x3c\xfd\x7a\x81\xa0\x8c\x1e\x8f\x0f\ +\x4d\x2d\x1d\xf8\x6c\xed\x56\x7c\xbc\x6a\x23\x5a\xda\x3b\x60\x97\ +\x44\x88\x02\x81\x42\x15\x48\xa2\x00\x77\x52\x3c\x8e\x9b\x3e\x11\ +\xd7\x5f\x79\x1e\x8a\x86\xa5\xc2\xe7\xef\x3f\xcf\xa0\x5f\x47\x10\ +\x80\x8e\xce\x1e\xbc\xf6\xf6\x07\xf8\xeb\x8b\x6f\xe2\xfc\xc5\xa7\ +\xe0\xe9\xfb\x7f\x87\x60\xd8\xe8\xbe\x40\x20\x88\xeb\x7e\xf7\x27\ +\x2c\x5b\xbe\x0a\x36\xbb\xcd\x02\x02\xa1\x5a\x94\x00\x30\x28\x5e\ +\x2f\xde\x79\xfb\x2d\x5c\x73\xe3\x6d\xaf\x75\xd7\xae\xbf\x01\xda\ +\x5c\x03\x11\x80\x90\x2f\x3e\xdf\xf9\xe0\x63\x2b\x1a\x21\x89\x5a\ +\x33\x53\xa6\x16\x12\xf4\x35\x18\x41\x92\x4b\x44\x52\x9c\x0d\xc9\ +\x2e\x09\xc9\x71\x22\x92\x5d\x12\x92\xe2\x44\x24\x38\x45\x24\x38\ +\x25\x24\x3a\xd5\xb4\x6e\xa2\x4b\x82\x24\x9a\x0c\x42\x29\x8c\x16\ +\x2f\x40\x64\x4f\x9f\xc1\xaa\xf5\xc1\x32\xd1\x77\xb1\x10\xa8\x0e\ +\xa5\xc3\x0e\x54\xd4\x76\x63\xf3\xce\x7d\x28\xd9\x5d\x8e\xd2\x03\ +\xd5\x28\x3b\x58\x05\x9f\x3f\x00\x02\x86\x50\x28\x88\x09\x63\x8a\ +\x70\xfa\x49\x73\x70\xdc\xac\x49\x98\x3a\x61\x14\x08\x41\xbf\x7e\ +\x03\x63\x0c\x76\x3b\x41\x6b\x5b\x0f\x9e\x7a\xfe\x35\x7c\xb1\x6e\ +\x13\x7e\x73\xdd\x55\xb8\xe4\xbc\x85\xf0\xf9\xad\xce\xe1\xc3\x4f\ +\xff\x13\xf7\xfd\xbf\xa7\x60\xb3\xd9\xb8\x09\xac\x4d\x7f\x80\x7a\ +\xbd\xd8\xb7\x67\x27\xc6\x4d\x9a\x7c\x27\x02\x55\x06\x20\x24\x02\ +\x12\xf6\xfc\x4b\x9f\xbd\xfc\x75\x93\x5b\xe8\xf5\x85\x06\x29\x19\ +\x54\x0b\x37\xcc\x0b\x1a\x6b\x4a\x91\xe4\x92\x90\x93\xea\x44\x4e\ +\x8a\x13\x39\xa9\x2e\xe4\xa6\xc6\x21\x37\xd5\x05\x49\x52\x23\x0d\ +\x1d\xdc\x28\x10\x44\x74\xf3\xe0\x7b\xe7\x5a\x7a\x06\xf4\x63\x46\ +\x04\x01\xff\xd1\x45\x97\x60\x51\x54\xef\x65\xfd\xd6\x7d\x78\x67\ +\xd9\x17\xf8\x7a\xf3\x4e\x04\x03\x21\x04\x43\x41\xc8\xb2\x0c\xa7\ +\xdd\x86\x6b\x2f\x3d\x1b\x97\x5d\x70\x3a\xe2\x5d\x2e\x48\x92\x18\ +\x33\x45\xac\xef\x73\xd8\x81\xdb\xee\x7e\x02\x5b\x77\xee\xc6\x5b\ +\xff\x78\x02\xa9\x29\x6e\xc3\x2f\x10\x45\x82\x5d\x7b\xf7\xe3\xac\ +\x4b\xaf\x46\x20\x10\xd0\x4c\x82\x99\x33\x48\x4d\x49\xc2\xcb\x7f\ +\x7b\x81\x9e\x73\xe6\x82\x98\x90\x30\x01\x42\xca\xc2\x2b\xaf\x7b\ +\xf4\xe3\xd4\xe2\x33\xec\x15\xcd\xbd\x83\x66\x80\xf0\x64\x8a\x05\ +\xb8\xc0\x98\x95\x29\x34\xf0\x87\x4d\x24\x70\x48\x04\x76\x49\x80\ +\x5d\x5b\x27\x38\x25\x64\xa5\xba\x90\x9d\x12\x87\xec\xd4\x38\xa3\ +\xe7\x4f\xbc\x53\x45\x21\x31\xad\x36\xa2\x6a\x23\x2b\x60\xf4\x48\ +\x82\x40\x8e\xa8\x86\x20\x6a\x1c\x1f\x92\x19\x5a\xda\xbb\xd0\xdc\ +\xda\x8e\xaf\x37\xed\xc0\xb2\xd5\xeb\x51\xb2\xbb\x0c\xf1\x2e\x07\ +\x8a\x0a\x72\x31\x73\xca\x78\xfc\xe2\xb2\x0b\x30\xa5\x38\x0f\x9e\ +\xbe\x48\x07\x52\xb7\xfb\x36\x1b\x41\x53\x4b\x27\x3e\x5d\xb9\x06\ +\xdb\x77\xef\xc5\x73\x8f\xdc\x85\x90\xac\x9a\x15\x41\x20\x68\x6e\ +\x6d\xc7\x79\x97\x5d\x83\x8a\xea\x6a\x55\x13\x68\x82\x39\x73\xea\ +\x14\xcc\x9e\xbb\x28\xf8\xd7\x07\x6f\x39\x0b\xe8\x5c\xa5\x83\x85\ +\xc2\x94\xa5\x34\x69\xe4\xec\x9f\x6f\xba\xf6\xc6\x87\x9c\x1b\xcb\ +\x5b\x06\x54\xa4\x8c\x03\x74\x1a\xb1\xa8\x56\xaa\xa4\x8c\x19\x20\ +\x4a\x70\x40\x45\x1d\xc5\x42\x41\xad\xc7\x6a\x59\x38\xaa\x28\x50\ +\xa8\x02\x85\x52\x28\x8a\x02\x45\x51\x10\xe7\x10\x91\xe9\x8e\x43\ +\x86\xdb\x85\xcc\x94\x38\xf5\x93\x1a\x8f\xa4\x38\x3b\x12\xe2\xec\ +\x48\x70\xd9\x91\x18\x67\x47\x7c\x9c\x1d\x71\x4e\x41\xc7\x99\xaa\ +\xbe\x99\xb1\x7d\x64\xca\xc0\x47\x62\xb1\x49\x80\xc3\x01\x74\x76\ +\xc9\xf8\x62\xc3\x16\xac\xfd\xa6\x04\xa5\xe5\x87\xb0\x7b\xdf\x01\ +\xa4\xb9\x93\x71\xc5\x45\x8b\x71\xe2\xb1\x33\x30\x61\xec\x48\xd8\ +\x6d\x24\xc2\x4c\x30\xc6\x60\x93\x08\x3c\x7d\x01\x3c\xfd\xfc\xab\ +\x38\x7e\xce\x4c\xcc\x9c\x36\x05\x36\x49\x32\x18\xe5\x8a\xeb\x6e\ +\xc2\xf2\x95\xab\x21\x4a\x22\x18\x63\xb8\xea\x92\x8b\xd8\xfa\xdd\ +\x2d\xfe\xfd\xeb\x5e\x98\x0d\xc8\xbb\xa3\x41\xc2\x00\x20\x0b\x69\ +\x27\x6f\x79\xf6\xb9\xb7\x87\x2d\xdf\xdb\x6e\xf4\xde\x89\x09\x9c\ +\x23\x5c\x75\x4a\x07\x2c\xf2\xb5\x7a\xbe\x42\x15\x86\x52\xe5\x53\ +\x96\x34\x2c\x35\x0b\x0d\x21\x1c\x79\x2c\x07\x73\x82\x06\x21\x63\ +\x8a\x06\x22\x51\xcf\x6d\xb7\x89\x28\xc8\x4e\x46\x61\x6e\x0a\x8a\ +\x72\x52\x30\x3c\x37\x15\x45\x79\xa9\x48\x49\x8a\xe7\x8a\x27\xd1\ +\xc3\xb1\xef\x83\xb6\x38\x54\x55\x87\x25\xef\x2d\xc3\xbb\xcb\x56\ +\x22\x10\x08\xe2\xf2\x0b\xcf\xc2\xf5\xff\x73\x09\x92\x12\xe2\x2d\ +\x39\x01\x7e\x2d\x49\xc0\x7b\x9f\xac\xc2\x49\xf3\xe6\x20\x29\x31\ +\xc1\x80\x9c\x3d\xfe\xdc\xf3\x78\xf8\x89\xbf\x02\x60\xb8\xe7\x8e\ +\xdf\xe3\x9e\x47\x5f\xaf\x45\xc7\x9a\x99\x00\x9a\x63\x31\x40\x3c\ +\x12\x27\x3d\x73\xdf\x83\xaf\x5e\xbd\xb1\x39\x1e\x36\x51\x18\x48\ +\xff\x6b\x36\x26\x92\x01\xa2\xa5\x29\x79\xaf\x94\x71\x69\x4a\x44\ +\x4b\x5e\x68\xa9\xcc\x88\x63\x29\x8d\x80\x40\x1b\x79\x71\xed\x1e\ +\xa8\x62\x42\xa7\x75\xbc\x9d\x24\x12\x24\xb8\x6c\x88\x73\xa9\x1a\ +\x23\xde\xa9\xae\x33\xd2\x12\x91\x9b\x9e\x8c\x9c\x4c\x37\x72\x32\ +\xdc\xc8\xcd\x70\x23\x23\xd5\xae\x6a\x0e\xaa\x9a\x1e\x73\x7d\x74\ +\xb5\x88\x4e\x38\x51\x54\x99\xa1\xbe\xb1\x03\x07\x2b\x6b\xb0\x63\ +\x4f\x29\xaa\x6a\x1b\x10\xf0\xfb\x71\xd9\x45\x67\xe3\xe4\xe3\x26\ +\xc3\xef\x57\xcd\x8a\x1e\x5f\x4b\x12\x41\x7b\x47\x0f\xec\x36\x1b\ +\xe2\xe2\x5c\x5a\x55\x92\x60\xf5\x57\x9b\x70\xc1\x4f\x7f\x86\x3f\ +\xdd\x75\x1f\x1e\x78\xe8\xe1\x57\xe1\xd9\x7d\x23\xb8\x91\x41\xe1\ +\x4f\x23\x01\x64\xf1\xcd\x7f\xfc\xf7\xfb\x07\xc8\x04\x48\x02\xe9\ +\x47\x5a\xb4\x32\xa3\x41\xbc\x58\x69\xc8\x81\xf3\xd4\x8c\x86\x31\ +\x4e\x18\xa1\x23\x0a\x20\x9c\x39\xe1\x7d\x8e\x88\x02\x08\x5f\x2c\ +\x09\xab\x8d\x13\xed\x1c\x0a\x55\x20\x2b\x0a\x14\x59\x36\x4c\x8e\ +\x40\x80\xdc\x4c\x37\xf2\xb2\x52\x31\x2c\x2b\x05\xf9\x39\x69\x18\ +\x96\x9d\x8e\xf4\xd4\x44\xb8\x1c\x76\xc4\xb9\x1c\x88\x73\xda\x11\ +\xe7\x74\xc0\xe5\xb2\x19\x43\xe2\x79\x93\x73\x24\x99\x42\x12\x09\ +\x1c\x0e\x15\x8e\xf6\xe1\xe7\x6b\xb1\x73\x4f\x29\xe6\xcc\x98\x8a\ +\xe2\xb1\xa3\x11\xe7\x72\x22\x3e\x2e\xce\x62\xe2\xc2\xbb\xb8\xd4\ +\xd6\x37\xe0\xf5\x77\x57\xe3\xa9\xfb\xaf\x3c\x0f\x60\x9f\x80\xeb\ +\x18\x26\x85\x63\x11\x00\x56\xbe\xff\x60\x69\xc7\xb1\xa7\x9f\x90\ +\x5a\xd1\xdc\x8b\x90\xa2\x22\x7c\x03\xb2\x5a\x5d\x23\x61\x1a\x80\ +\xc1\x4a\x10\x9e\x48\x3c\x8c\x89\x9f\x3b\x37\xda\x1c\xbc\xe0\x71\ +\x2f\x61\x33\x7b\x32\x30\x2b\x04\x9a\x45\x6f\x7a\xc7\xa2\xec\x88\ +\x39\x4b\x27\xd7\x50\xc1\x26\x8a\x90\x04\x02\xc6\x44\xc3\x54\x75\ +\x74\x79\xd0\xde\xd5\x8b\x9d\xfb\x2a\x0d\xb3\xc4\xb7\xb0\x15\xb8\ +\xe1\x70\x79\x99\xa9\x18\x59\x98\x8d\x91\x05\xb9\x18\x55\x98\x8b\ +\x91\xc3\x73\x51\x98\x9b\xae\x0d\x85\xb3\x32\xc7\x50\x7d\x11\xbd\ +\x7b\xa9\xb7\x4f\xfd\xdd\x69\xf3\x4f\xc0\x69\xf3\x4f\x80\xa2\xa8\ +\xef\xd3\x1f\xf0\xa3\xb3\xab\x1b\x29\xee\xe4\xa8\x82\x4a\x29\x43\ +\x51\x41\x2e\x0e\x1c\xaa\xe8\x00\x58\x39\xc2\xa6\x9d\x8d\x76\x27\ +\x99\x09\x85\xa7\xbf\xbf\x7b\xf5\xa7\xc7\xfa\xfc\x5a\xc7\x72\xce\ +\x12\x50\xa6\x9e\x54\xd1\xf2\x02\x94\x31\x28\x54\xfd\xa8\xdb\xd4\ +\xfc\x9f\x52\xee\x7f\x73\x2d\x6b\x83\x3e\x14\x45\xfd\x84\x14\x05\ +\x21\x59\xfb\x28\x0a\x42\x21\x05\x21\x59\x46\x50\x56\x10\x0a\x99\ +\x6b\x75\x9f\x8c\x60\x50\x46\x30\xa4\x6f\x87\xd4\xed\x90\xb9\x1d\ +\x08\x06\xa1\x28\x1c\xd1\x18\x07\x95\xe2\x62\x64\x1d\x6e\xae\x33\ +\x68\x24\x94\x8a\x1a\xdf\xeb\x93\x48\x47\x68\x35\xcd\xc4\x28\x54\ +\x81\x22\xab\x0e\x2c\x55\xd4\x31\x79\xc9\x89\x71\x48\x49\x4a\x44\ +\x4a\x52\x3c\xdc\xc9\x09\x48\x49\x4a\x40\x5a\x6a\x32\x72\x32\xd2\ +\x90\x9d\x99\x86\x9c\xcc\x34\xe4\x64\xa6\x23\x3b\x33\x11\x36\x09\ +\xda\xa0\x17\x80\x2a\xa6\xe9\xe9\x8f\x61\x62\x49\x7d\xf8\x31\x89\ +\x09\x84\x65\x4d\x38\xe3\x9b\xde\xaa\xcf\xce\x03\xd0\x12\xa6\xf2\ +\x23\x16\x8f\xa7\xbe\x62\xfb\xd6\x3d\xd5\x73\xc7\x14\x15\xaa\x5c\ +\x42\xc3\x92\x30\x20\x5a\x82\x87\x7c\xeb\x8c\x9e\xd9\x18\x59\xeb\ +\xc3\x0b\x58\xb6\xc3\x31\x88\x42\xd8\xcc\xe2\xfa\x77\xe1\x09\x23\ +\x59\x51\x53\xb7\xfe\x40\x08\xfe\xa0\xac\xad\x43\xea\x3a\x10\x84\ +\x3f\x20\xc3\x17\x08\x6a\xdb\x41\xf8\x02\x21\xf8\xfd\x01\xf8\x03\ +\x21\xf4\xf9\x03\xf0\x07\x02\xda\x88\x9d\x00\x7c\x81\x00\x7c\xfe\ +\x00\x02\x81\xa0\x46\x60\x93\xe8\xc6\xb6\xa2\x80\x52\xc5\x60\x04\ +\x4a\x55\x5f\xa4\xbb\xd7\x83\xce\xae\x6e\xf5\x58\xaa\x9a\x9a\x50\ +\x28\x84\x60\x28\x84\x50\x28\x84\x90\x1c\x02\x55\x14\x64\x65\xa4\ +\x61\x64\x41\x2e\x46\x14\xe6\x63\xe4\xf0\x3c\x8c\x2c\x1c\x86\x82\ +\xbc\x5c\xb8\x9c\x0e\x38\x1c\x76\x38\xec\x36\x38\x1c\x0e\x38\x1d\ +\x76\x48\x92\x60\xce\x9d\xcc\x06\xd6\x20\x9b\x77\x54\x93\xde\xea\ +\x8a\xed\x88\x32\xd3\x68\x34\x06\x08\x40\x6e\xfc\xe2\xf9\x25\x4b\ +\x7f\xfd\xe4\x5d\xbf\x67\x94\x1a\xed\x66\x06\xf2\x07\xa3\x26\x66\ +\x06\xb6\x71\xda\xb8\x7c\x58\x6b\x18\x46\x2b\x58\x3a\x74\xf0\x08\ +\x2f\x0d\x4e\x87\x0d\x4e\x87\x0d\x48\x74\x0d\x98\xd1\x8b\xa9\x13\ +\xc3\x9e\x93\x31\x5d\x1b\xf0\xdb\x4c\x4b\x86\x0d\xe6\x3b\x6e\x1f\ +\x55\xcb\xcc\x7d\x7d\x7e\x78\x7d\x7e\xf4\xf9\x7c\xe8\xeb\xf3\xa1\ +\xa7\xd7\x8b\xcd\x3b\x76\x21\x18\x08\x6a\xda\x2d\x88\x50\x28\x88\ +\x40\x30\x08\xa7\xc3\x8e\xfc\x9c\x6c\xe4\xe5\x66\x23\x2f\x27\x1b\ +\xf9\x39\xd9\xb0\xc7\x68\x76\x25\x0a\x60\x8f\xbf\xb0\x94\x80\x35\ +\x7e\x01\x20\x30\x18\x06\x50\x80\x9e\x8d\x25\xdb\x37\x55\x7b\xbc\ +\xfe\xc2\x38\x97\x23\xe2\xad\x84\x8f\x13\xd0\x09\xd2\x5f\x78\xc3\ +\x1f\x3f\xd0\xef\xa2\x15\x78\x62\x31\x61\x78\x43\xa9\xc3\x0d\xed\ +\x58\x4c\x47\x22\xba\x54\x1d\x69\x68\x39\x09\x6f\x1d\x4b\x10\x73\ +\xe6\x30\x23\x21\x46\x75\x93\x1c\x3b\x83\xd8\xe3\x09\x90\x6f\x36\ +\x6e\xaa\x06\x7a\x36\x22\xca\xe4\x92\xb1\xe2\xbc\xae\x8e\xc6\xed\ +\x2f\xd5\x37\x37\x23\x7c\xac\x3e\x8b\xe6\xbb\xf5\x43\xf8\xa1\xe4\ +\xe7\x79\x22\x0f\xdc\xda\x3d\x76\x59\xf9\x87\xb2\x58\x33\x7d\xb0\ +\x84\x9e\x8a\x02\xc8\xb2\x5a\x2b\x08\x85\x80\x60\x50\x37\x69\x40\ +\x20\xa0\xee\x0b\xc9\xcc\x68\x6a\xc5\xfb\x02\xfc\xf9\x6b\xea\x9b\ +\xd1\x56\xb7\xfd\x25\xbd\xfa\x37\x48\x06\x20\x7e\xf4\xb5\x7e\xf5\ +\xf2\xbf\xde\xee\x73\x39\xb5\x71\xe4\x43\x52\xeb\x83\x3f\x3e\xda\ +\x68\xa3\x81\xb4\x48\xb8\xf4\xff\xb7\x2f\x3a\x51\x45\x41\x2d\x3c\ +\x39\x1d\x80\xcb\x09\xb8\x5c\x04\x1e\x8f\x17\xbb\xf6\x96\xa1\xa1\ +\xa9\x59\x6b\x82\x65\xbe\x20\x97\x13\xec\xe9\x97\xde\xee\x43\x5f\ +\xeb\x57\x00\xf1\xf7\x6b\xfa\xa2\x2c\x59\x48\x9a\xb7\x7a\xe3\xca\ +\x55\x13\xe2\x5c\xce\x6f\x5d\xa9\x1b\x2a\x26\x70\xb0\x28\xa0\xef\ +\x6b\x0d\x60\xb0\x49\x1f\x41\x73\x78\x05\xc1\x9c\x18\xaa\xc7\x23\ +\xa3\xb3\xab\x07\x9d\x5d\xdd\x68\x6b\xef\x44\x6b\x47\x07\x5a\x5a\ +\xdb\xd0\xd7\xe7\x83\x20\x0a\x90\x44\x01\x4e\x87\x03\x69\x29\x6e\ +\x8c\x18\x5e\x80\x89\xe3\xc7\x42\x14\x88\x91\x7f\x90\x24\x15\x07\ +\xd9\xd4\xea\xc1\x98\xa9\xa7\xed\x45\xef\xfa\x05\x7c\xf6\x6f\x20\ +\x1f\x40\x5f\xba\x11\xa8\x7e\xf5\xdd\xcf\x57\x3e\x76\xf9\x79\x67\ +\xf5\xab\xd6\xfb\x93\xe0\xc3\x19\xae\x1d\xce\x0c\x47\x4a\x8b\xfc\ +\x27\x89\xcd\x3b\x87\x54\xd3\xf7\x4d\xad\xed\x28\xaf\xa8\xc6\x81\ +\x43\xd5\xd8\x5f\x51\x8d\xf2\x43\x95\x38\x54\x59\x83\x90\x2c\x43\ +\x14\x08\xec\x76\x09\x73\xa6\x4f\xc6\xc2\xe3\x8f\xc5\xb9\x67\x9c\ +\x82\xdc\xec\x34\xa3\x18\x16\xfe\x5e\x28\x83\x1a\x52\xcb\x21\xbc\ +\xf6\xea\xdb\x78\xf0\xf1\x27\xf1\xbb\xdf\xfe\x09\x08\x54\xbf\x0a\ +\x75\xbe\x00\x0c\x55\x03\x08\x00\x8a\xc6\xcc\xbe\x66\xf5\xc7\xaf\ +\xbf\x54\x10\x08\x30\x12\xad\x5c\x1b\xcb\x26\xf7\x27\xd5\x03\x69\ +\x85\xc1\x76\xfd\x88\x85\x2d\x3c\xea\xe5\x5e\xa8\x2d\x5b\x44\x01\ +\x46\xd9\x57\xd4\x22\x99\x86\x26\x0f\x6a\x1a\x5b\x50\x5b\xdf\x8c\ +\x9a\x86\x66\x54\xd7\x35\xa1\xa9\xa5\x0d\xde\x3e\x1f\x3c\x7d\x7d\ +\xf0\x7a\xfb\xe0\xf1\x7a\x8d\x96\x2e\x72\x28\x88\xcc\xf4\x54\xcc\ +\x9e\x36\x11\xb3\xa7\x4e\xc4\x94\x09\x63\x91\x9e\x9a\x82\xf4\x54\ +\x37\x52\x53\x12\x21\x10\xd3\x2f\xe0\xb9\x5c\x2f\x01\xbb\x9c\x40\ +\x59\x79\x3d\x5e\x7a\xe3\x2d\xac\xdd\xb0\x11\x07\x0e\x1d\x42\xc8\ +\xe3\xc5\x33\x4f\x3d\xc2\x5e\x5e\xba\xb2\x66\xc7\x9a\xbf\x2f\x00\ +\x50\x19\x9e\x00\x1a\x8c\x06\xa0\x00\x69\x2a\xdf\xbc\xea\x8d\x15\ +\x6b\xb7\xfc\x69\xfe\xb1\x33\x19\x8b\xc1\x30\xfd\x8d\x1e\xee\xcf\ +\x47\x18\x8c\x97\x3f\x18\x28\xd9\x91\x2c\xc6\x10\x62\xcd\x35\xc8\ +\x0a\xe0\xf1\x06\xe0\xe9\xf3\xc3\xd3\xe7\x53\x3f\x5e\x3f\x9a\x5b\ +\x3b\x51\xd7\xd4\xaa\x7e\x1a\x5a\x50\xdb\xd8\x8a\xc6\x96\x36\x30\ +\x4a\x0d\x9c\x83\xde\x1c\x4b\x4f\x95\xa7\xbb\x93\x91\x91\x96\x8c\ +\x31\x23\x0a\x30\x61\x4c\x11\xa6\x4f\x1e\x8f\xe9\x93\xc7\x21\x27\ +\xd3\x85\x40\x48\x75\xec\x14\xce\x4f\x57\x14\xd3\x6d\xe7\x0b\x3f\ +\x8a\x02\xec\x3f\x58\x81\x0d\x9b\xb7\xe1\x9f\x4b\xfe\x8d\xb2\x3d\ +\x7b\x21\x38\xec\x10\x45\x75\x24\x72\x5a\x4e\x16\x4b\x74\xe7\x90\ +\x1d\x6b\x3e\x7d\x03\x20\x4d\x5a\xf6\x6b\xc8\x1a\x40\xff\x7e\x9c\ +\x7b\xec\x4f\x77\xae\x59\xfa\xa6\xcd\x26\x89\x43\x1a\xd7\xf7\x6d\ +\x21\xe2\xfd\x27\x90\xa2\x47\x1b\x03\x87\x5d\xe6\x63\xf3\x7d\x30\ +\x83\x21\x19\x55\x75\x6d\x38\x54\xdb\x84\x8a\x9a\x66\x1c\xac\x69\ +\xc2\xa1\x9a\x46\xb4\x75\x74\x5b\xea\x0e\x46\x0f\x9e\x28\x35\x06\ +\xbe\x03\x8a\x22\x2b\xc8\x4a\x77\xe3\xc4\x39\xc7\xe0\xa4\x63\xa7\ +\xe2\xd8\x69\x13\xa0\xf6\x5d\x20\x51\x22\x80\xc1\xb4\x9f\x03\x7c\ +\xbe\x00\x9e\x7a\xfe\x15\xbc\xf8\xfa\x5b\x90\x65\x35\xb1\x64\xa9\ +\x6f\x80\x41\x0e\xc9\x38\xe7\xcc\x45\xf8\xaa\xa4\x3e\xd4\xb9\xef\ +\xad\x29\xd0\x06\x80\xc4\x3a\xaf\x34\x88\xf0\xb8\xb6\xb7\x61\xeb\ +\x83\xdb\xf7\x96\xdd\x33\x6b\xca\xc4\x21\xd9\xe5\xc3\xf5\xf2\x87\ +\xa6\x45\x4c\x0c\x9d\x28\xc0\xb2\xf6\xf6\x01\x4d\x6d\x3d\x68\x6c\ +\xeb\x41\x73\x7b\x37\x9a\xda\xba\xd0\xd4\xd6\x83\xae\x5e\x2f\x7a\ +\x7b\xfb\xd0\xed\xf5\xa9\x6b\x8f\x17\xde\x3e\xbf\x31\x2a\x48\xe0\ +\xe6\xfe\x31\x00\x9f\x30\xab\x8f\x94\x52\x2d\x8b\x27\x83\x51\x05\ +\xa3\x8b\xf2\x30\x71\xcc\x70\x4c\x1a\x5b\x84\xe1\xf9\x59\xc8\xce\ +\x48\x45\x6e\x56\x3a\x92\x13\x6d\xaa\x14\x0f\x90\xd6\x8d\xb6\x4f\ +\x92\x54\x98\xd9\xa6\x92\x03\xf8\xf7\x87\x9f\xe2\x9b\xad\x3b\xb0\ +\x67\xdf\x3e\x40\x9b\x69\x2d\x7c\xa2\x6b\x7d\x25\x88\x02\x2e\xb9\ +\xe8\x12\x7c\xfc\xc9\xc5\x0f\x02\xa8\x1d\x28\xb3\x31\xb8\x26\xa8\ +\x44\x9a\x5c\x7c\xdc\x2f\x56\x7d\xf4\xca\xb3\x69\x81\xa0\x9a\x19\ +\x1c\x0c\x48\x33\x56\x2a\x38\x5c\x82\x63\x8d\x17\xd0\xfb\xe7\xe9\ +\x6a\x19\x00\x42\x32\x45\x40\xc3\xf0\x07\x42\x32\x02\x01\x19\xbd\ +\x7d\x7e\xd4\xb7\x74\xa3\xae\xb9\x0b\x75\xcd\x9d\xa8\x6d\xee\x44\ +\x5d\x63\x27\x3c\x3e\xbf\x31\x53\x97\x60\xf4\xda\x33\x07\x7c\x58\ +\xaa\x88\x7c\x75\x52\x1f\x0c\xc2\x95\x93\xed\x36\x11\x49\xf1\x4e\ +\x24\x25\xb8\x90\x9d\xee\xc6\x8c\x49\xa3\x30\x63\xf2\x58\x4c\x2d\ +\x2e\x80\x28\xaa\xf1\xba\x2c\x1f\x5e\xc9\x98\x87\x91\xf9\xfd\x32\ +\x6a\x1b\x1a\xb1\x6a\xed\x37\x78\xe1\x8d\xb7\x51\xd7\xd0\x00\x87\ +\xcd\x66\x74\x51\xe1\x4b\xe0\x11\xa5\x78\x4a\xf1\xe8\x7d\x77\xb2\ +\xd7\xdf\x5f\xd7\xbe\xe3\x8b\xbf\x2f\x04\x93\x77\x0d\x24\xae\xd2\ +\x60\x6e\x0f\x2c\x54\x51\xba\x75\xd5\xeb\x2f\xfd\x6b\xd9\x6f\x2e\ +\x3b\xef\x0c\xf0\x7d\xfb\x86\xe2\xe5\x47\x66\x02\x4d\xac\x9f\x0e\ +\x9d\xd2\x89\xdd\xd1\x1b\x40\x6d\x4b\x0f\x6a\x9b\xbb\x51\xdb\xdc\ +\x8d\x9a\xa6\x2e\xd4\xb6\x74\x21\x14\x92\x8d\xdc\xbb\x42\x29\x14\ +\x59\xb6\x96\xa0\xb5\x35\x11\x08\x12\xe3\x1c\x51\x86\x4d\x83\x83\ +\x31\x33\x53\x80\xf4\x7e\x88\x8a\x3a\x94\x9b\x31\x86\x49\x63\x86\ +\x61\xde\xb4\xb1\x98\x3b\x6d\x3c\x0a\x72\xd2\x21\x49\x22\x24\x49\ +\x84\xc8\x71\x7d\x78\xe3\x87\xa1\x10\xdf\xc4\xfa\x11\x34\xb5\x76\ +\xe3\xd1\xe7\x5e\xc1\x27\x2b\xd7\x22\x10\x0c\x40\x0e\x85\x00\x30\ +\xc4\xb9\x5c\x1c\x46\x22\x86\x26\xe4\xfe\xe9\xf4\x8a\x64\xc7\xfa\ +\xe5\xaf\x83\x85\x2a\x06\x93\xd7\x1c\xec\xdd\x0a\x00\x0a\x32\xc7\ +\x5d\xb0\xec\xcb\xf7\xde\x19\xcf\x18\x23\xfd\x81\x34\x05\x62\xc6\ +\xb5\xba\x3a\x06\x80\x6e\xaf\x8c\x2e\x6f\x00\x9d\x9e\x00\x3a\x7b\ +\xfd\xe8\xea\xf5\xa3\xd3\xe3\x47\x8f\xd7\x8f\x6e\x8f\x1f\xdd\xda\ +\xba\xcb\xe3\x83\x1c\x52\x34\xf5\xce\x8c\xe9\xd3\xd5\xc7\x89\x0e\ +\x3a\x19\x10\x93\xc0\x1d\x2b\xcb\x0a\x64\x59\xad\x1c\x26\xb8\xec\ +\x18\x55\x98\x85\x51\xc3\x32\x31\xb2\x20\x0b\x05\x39\x69\x28\xcc\ +\x4d\xc7\xb0\x9c\x14\x88\xa2\x96\x91\x53\x8e\x2c\x18\xc4\x6e\x53\ +\x35\xdb\xba\x4d\x7b\xb1\xe2\xcb\x0d\x58\xbb\xa9\x04\xbb\xcb\xca\ +\xe1\xb4\x49\x10\x45\xc1\x68\xec\xc4\x8c\x96\x39\x56\xa9\x67\x51\ +\x90\x54\x21\xbf\x1f\x4b\x5e\xfe\x3b\xfb\xfd\x03\xcf\x95\xd6\xed\ +\x5a\xba\x18\x40\x4d\x2c\xcf\xff\x70\x18\x00\x80\xe0\x80\x90\xfe\ +\x93\xb3\x2f\xbb\xe3\xf5\x47\xef\xbc\xc5\x88\x47\x15\x4a\xa1\x30\ +\x06\x45\x31\x4b\xbe\x6d\xbd\x7e\x34\x75\xfa\xd0\xd4\xd9\x87\xa6\ +\x0e\x2f\x1a\x3a\xbc\x68\xed\xea\xe3\xa6\x86\x37\x27\x82\x24\x03\ +\xa8\x35\xbd\x0b\x56\x38\x08\x24\x1a\x08\xd5\x22\xe9\xbc\xb3\xc6\ +\x18\x1c\x36\x11\x4e\xbb\x08\xbb\x5d\xc2\xf8\xa2\x6c\xcc\x9a\x54\ +\x84\xd9\x93\x47\xa2\x20\x27\x01\x21\x19\x86\xad\x3e\xd2\xd8\x41\ +\x1e\xe7\xdf\xe7\x0b\xa2\xad\xa3\x0b\xef\x7c\xb2\x0a\x2f\x2f\x79\ +\x1f\x5e\x5f\x1f\x6c\xa2\x68\x6d\x9a\x19\x86\x8e\x02\x54\xcc\x64\ +\x7f\xe8\x28\xc6\x18\xe6\xce\x9c\x86\xec\x61\x13\xf1\xf6\x8b\x0f\ +\x5e\x01\xd6\xfe\x36\x40\x03\x83\x8a\x7c\x86\xf8\x3c\x19\x42\xda\ +\xec\x97\x97\xbe\xb2\xe4\xac\xcf\xf7\x51\x04\x64\x59\x95\x26\x85\ +\x42\xd6\x6a\xfa\xb2\x42\xcd\x9e\x36\xa0\x5a\x69\x9d\xeb\x5f\xc3\ +\xcc\x3a\x7a\x24\x88\x84\x19\x8d\xa2\x08\xc2\xa0\x5f\xd1\x5a\xa6\ +\x71\x10\x33\xbd\x3c\xab\x4a\xb7\x8c\xa4\x38\x3b\xa6\x17\x17\x60\ +\xe6\x84\x02\x1c\x33\x2e\x1f\x09\x71\x4e\x38\x1d\x12\x5c\x0e\xbb\ +\x31\xe2\x89\x1d\x45\xb0\x28\x63\xea\xcc\x24\x2e\x17\xb0\xbb\xac\ +\x1e\x7f\x7d\x65\x29\xb6\xec\x28\x45\x77\x6f\x0f\xe4\x90\xac\x99\ +\x1c\x13\x2b\x39\x10\x92\x8a\x7f\x66\x16\x76\x6c\xc8\xe3\xc1\xbf\ +\x96\xfc\x2f\x2e\xbd\xf6\xfa\x0f\x69\xfb\xe6\x9f\x43\x1b\xfb\x7f\ +\xe4\x19\x40\xb0\x89\xa0\xa1\x29\x53\x4e\xbe\x79\xd5\x1f\xef\x78\ +\xc8\xfd\xfa\x9a\x43\xc4\x50\x55\x7c\x4b\x12\x5d\x7a\x35\x54\x30\ +\x0d\x83\x71\x21\x6c\x08\x53\x38\x21\xad\x2f\x40\x07\x7f\x72\x84\ +\x96\x15\xc8\x8a\x6a\xfb\x33\x52\xe2\x91\x9f\x99\x84\xfc\xcc\x24\ +\x14\xe6\xa4\x62\x44\x7e\x2a\x46\xe6\xa7\x23\x33\xd5\x01\x85\x6a\ +\x8d\x2d\x95\xef\x0e\x15\x6c\xb7\x01\x81\x20\xc3\xe6\x1d\xa5\x58\ +\xbb\x69\x27\x3e\x5f\xb3\x01\x87\xaa\xeb\x54\xc6\x13\x48\x54\x78\ +\x5c\x44\xbf\x82\x7e\x30\x91\x11\xf0\x39\x46\xf1\xcc\x23\xf7\xb2\ +\x57\xde\x5e\xd3\xb5\xf9\xf3\xc7\x17\x40\xb0\xed\x02\x0d\x29\x83\ +\xbd\x5f\x69\x48\x4f\xa7\x9e\xb8\x7c\xe7\x37\x9f\x3c\xf9\xfe\xbb\ +\xe3\xee\xcb\x2a\x3a\x19\x4d\x9d\x6a\x8d\x81\xb0\x48\x83\xa3\xa7\ +\x1f\xf4\x89\xd5\x0c\x1c\x21\xdf\xee\x92\xc3\x01\x90\x68\xd0\x2d\ +\xa6\xb7\x83\x13\x21\x0a\x40\x52\x9c\x1d\x53\xc7\xe5\x60\x56\x71\ +\x3e\xa6\x8e\xcb\x85\xcb\x21\x98\x99\x32\x6e\xe9\xf3\x1f\xbe\x73\ +\x76\x38\xe5\xdc\x60\x30\x84\xb6\xce\x6e\xbc\xbc\x74\x19\x96\x7e\ +\xb4\x1a\x8c\x51\xad\x11\x15\x43\x42\x9c\x0b\x3a\x24\x8e\xf1\xad\ +\xef\xb8\x07\x25\x5c\x37\x0f\xf5\x7d\x32\x50\xe3\x7f\x6b\x09\xd6\ +\x78\x7d\x8c\x61\x58\x6e\x0e\xd6\x6f\xaf\x26\x9b\xd7\xbc\xf7\x18\ +\x80\xf2\xa1\x10\xff\x70\x4c\x80\xfe\x9b\x4c\x21\x75\xc6\xe3\x4b\ +\x5e\x5a\xf2\xb3\xf7\x76\x05\x99\xc7\x17\x24\x3c\xbe\xdf\xec\x63\ +\x6b\xc2\xb5\xfb\x6b\x76\xa4\x4b\x83\xac\x28\x90\x43\xaa\x74\x17\ +\x66\x27\x63\xd2\x88\x74\x4c\x1c\x99\x81\x82\xac\x64\x24\xc6\xa9\ +\xd8\xff\x38\xa7\x64\xc1\x06\xfe\x27\x4a\xc1\x3a\x2e\xdf\xe5\x04\ +\xbe\xdc\x58\x8e\xd7\xde\x5d\x81\x7d\x07\xab\xd0\xd4\xda\x61\x64\ +\x02\x23\x40\xa8\x51\xa4\x9e\x87\xbf\x5b\x4c\xa1\xa6\xf5\x06\x02\ +\xc2\xa6\xa6\x24\xb3\x17\x9e\x7a\x92\x9c\xfb\xb3\xab\xde\x50\xda\ +\xb7\xfe\x56\x53\xfd\xec\x68\x33\x00\x40\x44\x01\x4c\x29\x16\x72\ +\x16\x2d\xfb\xc7\xd3\x2f\x14\xfc\x7b\x53\x2b\x6c\x22\x22\x9a\x17\ +\x53\x16\xe9\xcc\x30\x0d\x0f\x28\x2b\x32\x6c\xa2\x80\xb4\x24\x3b\ +\xd2\x93\x5c\xc8\x70\x3b\x31\x32\xd7\x8d\x51\xf9\x29\x18\x3d\xcc\ +\x0d\x87\xcd\xec\x4b\xac\x8f\x7a\xf9\x36\xdd\xc0\x8f\x44\xe5\xce\ +\x66\x03\x7a\x7a\x83\xd8\x53\x5e\x8d\x2f\x37\xee\xc4\xfb\xcb\xd7\ +\xa1\xbd\xb3\x0b\x4e\xbb\x8d\x6b\x78\x1d\xbd\x43\x57\xb8\x89\x8c\ +\xe8\xea\x1d\xcd\xcb\xef\xc7\x07\x0a\xf8\xfd\x78\xee\xb1\xbf\xe0\ +\x86\xbb\x9e\xae\x66\x4d\xcb\xcf\x04\x11\xcb\xc0\x94\x21\x4f\x79\ +\x25\x1d\xde\x1b\x51\x28\x80\x72\xda\xb8\xfc\x8a\x37\xdf\x7c\xe1\ +\xb3\xeb\xae\xff\xbd\xeb\xb5\xd5\xe5\x8c\x9b\xd4\xdb\xda\xb4\x58\ +\x9b\x4a\x84\x00\x18\x9e\x9b\x84\x63\x46\xa4\x63\xea\xa8\x0c\x14\ +\x66\x27\x9a\xea\x9f\x98\x43\xbd\x64\xd9\xcc\x89\x93\x18\xf3\x16\ +\x1d\xcd\x12\x70\x38\xd8\x92\x31\xa0\xb2\xb6\x19\xcf\xbe\xf1\x31\ +\xd6\x7c\xb3\x43\x1b\x87\xaf\xbe\xeb\x38\x97\xc3\x18\x96\xad\x3f\ +\xb9\xda\xa4\x39\x4c\x6d\x6b\xea\xdf\xe8\xea\xc9\x49\x20\x05\x22\ +\xdb\x1c\xc2\xda\x0c\x9a\xb7\x8c\x8c\x31\xf6\xe4\x43\x7f\x26\x1f\ +\xac\xdc\xd4\xc7\x9a\x96\x5f\x01\xe0\xe0\xe1\x10\xff\xf0\x19\x40\ +\x4b\x9f\x03\x28\x59\xfb\xc9\x6b\xf7\xe6\x64\xe7\x3d\x3c\xe5\x98\ +\x53\xb1\x69\x7f\xab\x36\x3a\x87\x60\x44\x56\x02\x46\xe6\x24\xa1\ +\x28\x3b\x01\x69\x89\x0e\xb8\x13\xec\x70\x27\x38\x60\x93\x8c\x06\ +\x56\x5a\x5b\x13\xc2\x11\x72\xe0\x7c\xf8\x50\xca\xc4\x87\x05\xbc\ +\x20\x80\xc3\xae\x56\xfa\x3e\xff\x7a\x0f\x3e\x5e\xbd\x19\xfb\x0e\ +\xd5\x6a\xd3\xbe\x70\xd3\xb6\x68\x4d\x19\xcc\xf6\xad\x1c\x61\x99\ +\x09\x67\x37\xec\x3b\xb7\xcf\xb0\xf5\x7c\xa3\x47\x98\x21\x32\xbf\ +\x8f\x85\xf9\x0b\xc1\x40\x10\x67\x9f\xbe\x00\x25\xfb\x9a\xb1\xf2\ +\xdf\x2f\xdd\x07\x60\x3b\xa2\x60\xfd\x8e\xae\x09\xb0\xfe\x3e\x15\ +\x89\xc5\x77\x3f\xf6\x97\x67\x6f\x2c\x18\x3d\x95\x15\x66\xb8\x48\ +\x6e\x9a\x43\xcb\x11\x58\x07\x49\xf0\xa9\xe2\xc1\x96\x7b\x8f\x36\ +\x08\x44\x57\xef\x92\x08\x74\x74\xfb\x50\x55\xd7\x8a\x4f\xbf\xda\ +\x86\x77\x97\x6f\x40\x28\x14\x82\xdd\x26\x59\x9a\x31\x46\x1b\xc0\ +\x12\xad\x43\x57\x44\xb8\x16\x2d\x6f\xc1\x62\x87\x76\x96\x11\x55\ +\xda\xb1\x94\x52\xcc\x9d\x39\x95\x5d\x7e\xe9\xe5\xe4\x7f\x7e\x7e\ +\xcd\x33\xf0\x94\xde\x0b\xb5\xe3\x27\xfb\x4f\x31\x80\x7e\x8e\x5c\ +\xa4\xcc\x78\xf6\xe1\x7b\x1f\x39\xf7\xfc\xd3\xe6\x5b\xa6\x62\x3b\ +\x9c\x86\x52\x83\xc1\x1c\x1c\x29\x06\x90\x44\x60\x7b\x59\x0d\x9e\ +\xfb\xdf\xcf\x51\x7a\xb0\x0e\x8a\x16\x5e\xea\xd2\xc9\x13\x5d\xed\ +\x4d\x1c\x25\xdc\x0d\xb3\xdf\xd1\x7d\xa0\xb0\xa1\x71\x03\x8c\x92\ +\x62\xfc\x18\x06\xed\xfb\xa4\xf8\x38\xdc\xf1\xdb\xdf\xe3\xd6\xdb\ +\xef\xf8\x00\x9d\x5b\x6f\x00\xd0\xf0\x6d\x88\xff\x6d\x4d\x80\x69\ +\x96\x88\xd0\x84\xce\xad\x37\xdf\xf9\xc0\x3d\x2e\x77\x52\xe2\xa2\ +\x53\x8f\x9f\xa9\xe6\x72\x06\x59\x83\x1f\x2a\xfa\xe7\x70\x50\x40\ +\xfc\x18\x7b\x7f\x80\x61\xd5\x37\x7b\xf0\xe5\x96\x32\xec\x2c\xab\ +\x42\x73\x5b\x17\x6c\xa2\x60\xa4\x9b\x0d\x1b\x6e\x34\x63\xe4\x5a\ +\xaf\x1b\x93\x39\x98\x19\x4d\x1a\xd1\xa8\x91\x81\x91\x58\x1d\xcf\ +\x61\xdd\xe6\xba\x9f\xf3\xea\xd2\x08\x0b\xb5\x68\x20\x37\x2b\x93\ +\xfd\xf6\xa6\x9b\xc8\x4d\xb7\xdf\xbd\x1c\x9d\x5b\x6f\x06\x11\x9a\ +\x8c\x7e\xfa\xdf\x52\x7a\x8f\xd4\x22\x02\x28\xb2\xe5\x9c\xf2\xde\ +\x3b\x2f\xff\x63\xd2\xe4\x71\x23\x98\x42\x19\x19\x68\xa6\xf1\xc1\ +\x60\x02\x63\x55\x19\x07\x3b\x56\x41\x20\x40\x67\x8f\x0f\xf5\x2d\ +\x9d\x58\xfa\xd9\x26\x7c\xb6\x76\x27\x44\x41\x2d\xab\x86\x4b\x32\ +\x8b\x32\x16\x91\xd1\x21\x26\x69\x06\x90\xe4\xf0\xfc\x7e\xcc\x4c\ +\xa7\xa6\xfa\xf3\x72\x32\xd9\xdf\x1e\x7f\x84\x9c\xf1\xd3\xeb\x76\ +\x87\x1a\x57\x9e\xaf\x21\x7c\x14\x1c\x21\xf5\x7d\x24\x17\x09\x10\ +\x8a\x6d\x39\x0b\xde\x7c\xee\x91\x07\x27\xcd\x9f\x3b\x13\x83\x6d\ +\x05\x73\x38\xe0\x91\xfe\x18\x40\x10\x00\xbb\x04\xac\xda\x78\x10\ +\xaf\x7e\xb0\x0e\x8d\x2d\x9d\xe8\xf3\x07\xac\x33\x6b\x84\x8d\x61\ +\xa4\x31\x86\xb6\xc7\x1c\x60\x1a\x2b\xb6\x37\x7c\x04\x33\x13\x4a\ +\xc2\xae\xd1\xef\x20\x57\x8d\xc9\x14\x45\x41\x52\x62\x3c\xee\xfb\ +\xe3\xed\xb8\xe1\x0f\x0f\xec\x0e\x35\xae\xbe\x0c\xa0\xa5\xe0\x06\ +\x77\x7e\xdf\x18\x40\x37\x2b\xc3\xc5\xcc\xe3\x9f\x7d\xe8\xae\x7b\ +\x16\xfd\xf4\xec\xf9\x4c\x96\xd5\xea\xe1\xd1\xc2\x04\xea\x8e\x9c\ +\xdd\x06\x74\x74\x07\xb0\x61\x47\x05\x36\xec\x38\x84\x8d\x3b\x0f\ +\xa1\xc7\xeb\x83\x5d\x12\xd0\xdf\xc4\x4a\x44\xcb\xd2\x59\x09\xa9\ +\xa7\xab\xf5\x29\x58\x74\xe2\xa8\xfb\xa9\x1e\xfa\x51\x1a\xb3\x97\ +\x3f\xb4\x09\xb0\x28\xbf\x9f\x93\x7e\x23\x7c\x0c\x4b\x75\x33\xc6\ +\x10\x0c\xfa\x31\x6f\xe6\x54\xb6\xf8\xf4\xc5\xe4\x8e\x7b\x1f\x5a\ +\x1e\x6a\x5e\x7b\x03\x80\xaa\x23\x49\xfc\xa3\xc5\x00\xba\x39\xc8\ +\x43\xca\x8c\xa7\x1f\xb9\xf7\x2f\xe7\xfe\xe4\xac\x85\x8c\x52\x40\ +\x10\xb8\x11\x58\xdf\x0a\x22\x6e\xcd\xeb\xf7\xf9\x82\xa8\x6c\x68\ +\xc7\x6b\x1f\x6d\xc2\xc6\x5d\x15\x90\x44\x41\x1b\xb2\x4d\x07\x9c\ +\x4d\xab\xdf\x06\x8b\x51\x1c\x3e\x06\x0a\x42\x07\x9e\xa6\x2d\x56\ +\x2b\xf7\x41\xdd\x0f\xa5\xec\xcc\x53\x4e\xc4\x69\x0b\x17\x91\xff\ +\xf9\xf5\x8d\x1f\xa0\x73\xeb\xcd\x00\xea\x8f\x94\xda\x0f\x27\xd4\ +\x51\xc9\xa5\x80\x08\x1e\xf8\xea\xd7\xae\x5a\xb7\xcd\xd6\xdc\x23\ +\xcc\x3e\x73\xfe\x4c\x22\x2b\xcc\x68\x04\x35\xd8\xa9\xe4\xa3\x21\ +\x89\x6c\x92\x1a\xb6\x2d\xfb\x7a\x3f\x1e\x7d\x7d\x0d\xde\x5c\xb6\ +\x15\x1f\xae\xd9\x8d\xa6\xf6\x9e\xb0\xa6\x16\xd1\xe7\xda\x61\x61\ +\x93\x2e\x58\x1a\x2c\x72\xc7\x12\x3d\xc6\x27\x66\xcb\x75\x33\x1f\ +\xcf\x67\x6e\x98\x39\x79\x73\xc4\x64\x0e\x30\xa6\x6d\x89\x79\x3f\ +\xdc\x94\x30\x7e\xbf\x0f\x8f\xdf\xfb\x07\xd2\xdc\x25\x93\xfb\xee\ +\xfb\xd3\x33\xe8\xd9\x79\x27\x88\xd0\x08\x30\xe5\x68\x10\xea\x68\ +\x27\x52\xd5\x3c\x81\x90\x7f\xed\xf1\x8b\xaf\xb8\xfb\xf1\xbb\x7f\ +\xe7\xca\xce\x70\x33\x45\x89\x0d\x31\x8f\x5c\xab\x65\x55\x9b\x0d\ +\x68\x6c\xeb\xc3\xee\x83\x8d\x58\xb7\xbd\x02\x5f\x6f\xaf\x80\x42\ +\x29\xec\x22\xb1\x00\x42\xf8\x69\x54\x2c\x80\x0a\xad\x9d\x0c\xaf\ +\x66\x0d\xfb\x0f\x13\x37\x80\x30\x55\x4e\x19\x57\x95\xe4\xcf\x6d\ +\x5c\x83\x6b\x51\xc3\x58\xcc\xb6\x37\x56\x6d\x42\x0d\xd0\x87\xae\ +\x45\x14\xaa\x20\x23\xd5\xcd\x7e\x73\xdd\x35\xe4\xa3\x95\xdf\xf8\ +\x56\xfe\xfb\xa5\x7b\xc1\xea\x5f\xfa\xb6\x71\xfe\x7f\x9a\x01\xf4\ +\x6b\x24\x00\x98\x26\x64\x2f\x7a\xfd\xc3\x7f\x3e\x57\x30\x69\xdc\ +\xc8\x7e\x9c\x3c\xad\x21\xa3\x26\xa9\x0a\xa5\xd8\x75\xa0\x09\xaf\ +\x2d\x2b\xc1\xa1\x3a\x35\x1b\x77\xb8\x33\x66\xf0\xb3\x6c\x5a\x3d\ +\xf0\x48\xaf\x9c\xc6\x98\x9c\xb1\xbf\xd8\x9e\x27\x7a\x78\x2b\x9b\ +\x68\x44\xe7\x91\x3f\xc3\xf3\x73\xf1\x97\x3f\xfd\x0e\x8b\xaf\xb8\ +\xb5\x9a\x35\x2d\xbf\x12\x40\x09\xd4\xe1\xdc\x47\x75\x00\x9c\x88\ +\xef\x66\x09\x02\x68\x64\x9e\x43\xcb\x97\x7e\xba\x21\xb9\xa5\x47\ +\x99\xbc\x78\xe1\x4c\xcd\x39\xe4\x67\xc5\x56\xf1\x71\x21\x85\xe1\ +\xe3\x75\xfb\xf1\xe2\x47\xdb\xf0\xc6\xa7\x3b\xb0\x7c\xe3\x01\x74\ +\x7b\xfd\xea\xc4\xcd\x03\xa9\xd9\x7e\x66\xcc\x40\x94\xd4\x6c\x34\ +\xf5\xcd\xab\x6a\x7e\x12\x86\xa8\x9d\x4d\x38\x2e\x6d\x64\x01\x00\ +\x00\x04\xcf\x49\x44\x41\x54\xf5\x6d\xce\x75\x88\x88\x14\x2e\xdf\ +\xbb\x97\x71\xd7\xe8\xf5\x7a\xf1\xe4\xbd\x7f\x60\x0a\x89\x23\xb7\ +\xff\xf9\xcf\x6f\xb2\xd6\xaf\xaf\x07\xb0\x13\x80\x0f\xdf\x91\x74\ +\x7e\x77\x8b\x5a\x45\xcc\x80\x63\xe4\x2f\xa6\xcc\x3b\xf3\xd6\x87\ +\x6e\xbf\x29\x65\xea\x84\x91\x90\x15\xa0\xad\xcb\x8b\x83\xf5\x1d\ +\x58\xbd\xb5\x12\x1b\xf7\xd4\xc0\x26\x09\x90\x34\x87\xcf\x9c\x39\ +\x93\x86\xcd\x1a\x16\x19\xbf\xb3\xb0\x89\x14\x2c\x99\xba\xfe\x50\ +\x37\x86\x74\xf7\x7f\xac\x25\x7c\x0c\x6b\xc6\x18\x2d\x9e\xb7\xe4\ +\x0c\x38\x47\x33\x18\x0c\xe0\x84\xd9\xd3\x70\xe5\x4f\x2f\xc4\x13\ +\x2f\x2c\xe9\xdc\xfc\xc5\x7b\x8f\x23\x50\xf9\x22\x88\xd8\x76\xb8\ +\x85\x9d\xef\x3f\x03\x98\xd7\x8c\x07\x30\x46\x48\x9b\x7d\xcf\x79\ +\xe7\xfe\xf4\xac\x9f\x5f\x75\x19\xbb\xff\xd5\xb5\xc4\x12\x1f\x47\ +\x21\x0e\x89\xf2\xc2\x07\x3b\x63\x46\xd4\x74\x6b\x0c\xe2\xf4\x97\ +\x9a\xb5\x26\x8e\xc2\x73\x06\x0c\xa0\x8a\x76\xef\xba\xcf\xa1\x4e\ +\xda\xa8\x6a\x24\x05\x94\x32\xc8\x4a\x08\x2f\x3d\x76\x0f\x7b\xf7\ +\xb3\xf5\xe4\x9d\x77\xdf\xfa\x88\xb6\x6f\xbe\x07\x40\x39\x80\xbe\ +\xa3\xad\xf2\xbf\x0f\x0c\xa0\xb9\xf5\x36\x11\x34\x94\x06\x21\x73\ +\x51\x6e\xf1\x09\xb7\x5f\x7d\xd9\xe5\xc5\xe3\x8a\x8f\x61\xff\x78\ +\x7f\x13\x91\x15\x05\x82\x51\x72\x8d\x32\x57\xe0\x00\xd3\xac\x46\ +\x25\x64\x8c\x82\x4b\xc4\xb8\x80\x68\x49\x1a\x8e\xe8\xc4\xa2\x59\ +\xfa\x49\x14\x71\xc7\x32\x1d\xff\x20\x89\xb8\xfb\x37\xbf\x60\x8d\ +\xad\x1e\xf2\xda\x5b\x6f\x97\xd6\xed\x5e\xf3\x30\x58\xeb\xe7\x10\ +\x6c\x1d\x43\x45\xf2\xfc\xf0\x19\xc0\xe4\x04\x07\x40\xb3\xe1\x1a\ +\x7b\xd3\x94\x39\xa7\x5c\x71\xfb\x4d\x3f\x4f\x2f\xa9\xf4\x62\x67\ +\x79\x13\xeb\xe8\xf1\x12\x91\x70\x66\xc0\x92\x60\x61\x87\x8d\xba\ +\x51\xb5\x89\x89\xba\x31\x23\x82\x81\x91\xc7\x43\x75\x3a\xe5\x50\ +\x08\xa9\xee\x24\x36\x6f\xd6\x14\x72\xee\x69\x0b\x70\xff\x93\x2f\ +\xb5\xed\x58\xbf\xe2\x75\xf8\xf7\xff\x15\x10\x9a\x06\x8b\xde\xfd\ +\x2f\x66\x00\x95\x0b\x00\xc4\x83\xd8\x46\x88\x89\x85\xe7\x26\xe5\ +\xce\xb8\xf3\x89\xbb\x6f\xb5\xd9\xe2\x33\xd8\x93\x4b\xd6\x12\x41\ +\x30\x9d\xb1\xfe\x5e\x78\xcc\xa6\x93\xfd\xa9\xef\x30\xfb\xad\x3b\ +\x99\xd6\xd0\xcf\x54\xe5\x4c\x1f\x9b\x40\xad\xe8\x66\x4b\x42\x47\ +\xeb\x3f\xc8\x28\xc5\x23\x77\xde\xc0\x24\xc9\x4e\x6e\xbd\xe7\xaf\ +\xa1\x9e\x86\x2d\x0f\x2a\xbd\xd5\x1f\x68\x83\x36\xbc\x18\x04\x6e\ +\xff\xff\x0a\x03\xf0\xb5\xc1\x78\x00\xc3\x80\xc2\x4b\x27\x9f\xb0\ +\xe8\xf2\x73\x16\x9f\x51\x38\x66\xcc\x78\xec\x38\xd0\xcc\x56\x7c\ +\x53\x46\x44\x81\x40\x12\x54\x5f\x3a\xbc\x4d\x6d\x2c\xd4\x6c\xc4\ +\x20\x92\xb0\xd0\x8e\xf5\x67\x22\x06\x08\x03\xf9\xeb\x05\x82\x6a\ +\x27\xf0\xc5\x0b\x8e\x65\x27\xcc\x99\x46\x5a\x3a\x7a\xf1\xee\x87\ +\x9f\x56\xef\xfc\xf2\xb3\x37\x80\xea\x25\x00\x6a\x01\xe2\xfd\x3e\ +\xf5\x36\xf9\xbe\x76\xd6\x21\x00\x89\x03\x58\x36\xec\xf9\xe7\xc2\ +\x51\x78\xf5\xc5\x97\x9c\x5f\x74\xcd\x25\xe7\xc6\x7d\xb9\xa3\x16\ +\x3b\xca\x9b\x58\x67\xb7\x87\xf4\xf9\x83\xd6\xb1\x7e\xfd\xcc\x98\ +\x31\x10\xe8\x22\x9c\x01\x68\x4c\x10\x88\x99\xbb\xd7\x5b\xc1\xb9\ +\x9c\x36\xa4\x26\x27\xb2\x93\xe7\x4e\x27\x67\x2d\x9c\x87\xe7\xdf\ +\xf8\xa0\xef\xad\x25\xef\x54\x22\x50\xfd\x2a\x82\x75\x1f\x68\x43\ +\xb4\xbf\x73\x07\xef\x87\xcc\x00\xbc\x69\xb0\x03\x48\x06\x49\x18\ +\x43\xe2\x33\x4e\x4c\x1f\x36\xed\xda\x59\x33\x66\x16\xfe\xea\xf2\ +\x73\xe1\x8c\x4b\x62\x4b\x97\x97\x90\x0d\x3b\x0e\x02\xda\x44\x4e\ +\x2a\x38\x53\x53\xd9\x4c\x31\xc2\x47\xca\x15\x5c\xa2\x26\x74\xb4\ +\xc1\x2c\x03\x4d\x50\xad\x28\xea\xc0\x13\xc6\x28\x4e\x3d\x7e\x3a\ +\xae\xba\xf0\x34\xe6\xed\xf3\x93\x17\x96\x7c\x82\xad\xdb\xb6\x55\ +\xb7\xd6\x6e\x7b\x89\x79\x5b\xbf\x02\xf3\x94\x43\xed\xcc\x11\xfc\ +\x3e\xa8\xfa\x1f\x2a\x03\xf0\xb7\x2a\x00\xcc\x09\xc0\x0d\x24\xcd\ +\x06\xc9\x59\xe0\x1e\x31\x6a\xda\xc2\x13\xe7\x8e\x1d\x3f\x76\x5c\ +\x6a\x7c\x82\x1b\xae\xf8\x44\x74\xf4\xfa\x58\x65\x6d\x0b\xa9\xac\ +\x6b\x41\x43\x4b\x07\x37\xe4\x1b\xda\xd4\xb1\x61\x53\xd1\x73\x43\ +\xbe\x29\xa3\x60\x5a\xc3\x47\xb5\x7f\xb0\x3a\xfe\x3e\x3b\xc3\x8d\ +\x31\xc3\xf3\x30\x76\x44\x3e\x4b\x4f\x4d\x22\x3d\xbd\x7d\x50\x64\ +\x19\x65\xfb\xcb\x3b\x56\x7d\xb5\x6e\x7f\x57\xc5\xc1\x12\xb0\xc6\ +\xd5\x40\xcf\x26\x00\x5d\x6a\x43\x26\x46\x7f\x10\x6f\x15\x3f\xcc\ +\x45\x04\xe0\xd0\x52\xcc\xe9\x00\x19\x83\x84\x89\x67\xc3\x9e\xbe\ +\x70\xec\xf8\x71\xe9\xa7\x9e\x38\x53\x9c\x3f\x6f\xba\x34\xaa\x68\ +\x98\xd0\xd0\xd2\x85\xfa\xe6\x2e\xd4\x36\xb7\xa3\xb6\xb1\x03\x5d\ +\x3d\x1e\xf8\xfc\x01\xf4\xf9\xfc\xe8\xf3\xa9\xc2\xe9\x72\xa8\x5d\ +\xc4\xe3\x9c\x76\xb8\x9c\x76\x14\xe6\xa6\xa3\x28\x3f\x0b\x45\xf9\ +\x99\xc8\xcb\x4a\x47\xd9\xc1\x2a\xba\x7a\xdd\x36\x79\xc5\x57\x9b\ +\x95\xfd\x65\xfb\xda\x10\x6c\x5b\x05\xcf\x9e\x8f\xb4\xde\xbb\x6d\ +\x5a\xca\x36\x70\x34\xaa\x75\x3f\x32\xc0\xe0\x9e\x81\x63\x08\x29\ +\x13\x24\x31\x07\xc4\x9e\x0b\x9b\x2b\x37\x39\x33\x77\x4c\x52\x72\ +\x66\x91\xc3\x15\x9f\x69\xb3\x3b\xd3\x6c\x36\xa7\x5b\x90\x6c\x36\ +\x41\x10\x21\x68\x45\x08\xa3\x0f\x80\x2c\x87\x42\x21\x7f\x57\x28\ +\xe8\x6f\x0f\xf8\x3c\x2d\xdd\x5d\x2d\x95\x3d\xad\xf5\xe5\x08\xf9\ +\x1b\xc0\x82\x0d\x60\xbd\x8d\x80\xdc\x12\x46\x70\xf6\x43\x7f\x79\ +\xff\x8d\x8b\xa0\x7d\x24\xee\xe3\x00\x60\xd3\x7c\x0a\x49\x63\x1a\ +\xbd\x76\x4c\x35\x62\xca\x9a\xcd\x0e\x69\x04\x96\xb9\x0f\xfd\x3e\ +\xdb\xf2\x1f\x19\xe0\xc8\x3c\x37\xc3\x8f\xcb\x8f\xcb\xff\xa5\xe5\ +\xff\x03\xf0\xa0\xef\xd9\x8c\x36\xd3\x0b\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\xba\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ +\x01\xcb\xc7\xa4\xb9\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\ +\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x06\x2c\x49\x44\x41\x54\x78\ +\xda\x85\x57\x4b\x6f\x5d\x35\x10\xfe\x6c\x9f\x73\xef\xcd\x0d\x6d\ +\x4a\x13\xa0\xb4\x85\x22\xa4\x0a\x15\x54\x45\xac\x10\x12\x08\x84\ +\xd4\x05\x88\x25\x0b\x24\xfe\x01\xac\xf8\x01\xa0\xee\x58\xb1\x62\ +\xcb\x0a\x21\xf1\x03\x50\x25\xda\x45\xc5\x86\x3d\x0b\xba\x80\x4a\ +\x05\xa1\xf0\x08\xaf\xa4\x49\x7b\x1f\xe7\xd8\x1e\x66\xc6\x76\x7d\ +\x4a\x6f\x84\x73\x27\x33\xb6\xe7\x7a\xbe\xf9\x66\xec\x28\xee\xf4\ +\xe9\xd3\x38\x3c\x3c\xc4\x60\x4c\x58\x36\x58\x46\x49\x5c\x03\x9c\ +\x62\xf1\x2d\x0b\x6b\x88\xb8\x2c\x36\x8b\x19\x08\xaa\xfd\x3f\x63\ +\x85\xd3\xda\xf9\xf3\xe7\xaf\x5d\xbc\x78\xf1\xd9\x48\x34\x03\x11\ +\xb5\xa3\x49\xb8\xf0\xf2\x5b\xd4\x8c\xa6\x32\xa5\x48\xac\x20\x26\ +\xd8\x56\x2d\x4a\xb5\xae\x89\x11\xd5\x4f\x16\x28\x04\x22\xe7\x4c\ +\xb8\xb9\xb3\x37\xbd\xf5\xdb\xe1\xc7\x87\x8b\xf8\xe9\xfa\xa4\xb5\ +\x4d\xeb\xe2\xd9\xe3\x06\xcd\x00\x08\xb1\x3c\xb9\xbd\xbd\xfd\xe2\ +\xe5\xcb\x97\xdd\x6c\x36\x7b\xb8\x69\x1a\x63\xad\xc5\x72\x31\x07\ +\x62\x0f\x63\x1d\x1a\xe7\xc0\x6b\x59\x8c\x6a\x63\x44\x0c\xc0\x9a\ +\x83\xe9\xdc\x1a\xd6\xbc\x27\x40\x4e\x1e\x9b\x84\xcf\xaf\x7d\xe7\ +\x3e\xf8\x62\xff\xf5\xfd\x1f\x7f\xfe\xf4\xa1\x53\xc7\x71\x7c\x3a\ +\x46\x87\x33\x05\x40\x1d\x57\xaf\x5e\xa5\x9d\x9d\x1d\xe2\x03\x59\ +\x2c\x75\x8b\x19\xb6\x5f\x7a\x03\x4f\x5c\x7c\x0d\x2d\x1d\xe0\x60\ +\x21\xe9\x17\x6f\xa5\x43\x83\x34\x96\xc5\x01\x77\x97\xa4\xc1\xa9\ +\x78\x90\xac\x9b\xb8\x7f\xb7\x77\xcf\x9d\x3b\xb9\xf9\x8d\x79\x05\ +\xfe\x54\x1b\x5f\x98\x7c\x85\x59\xff\x17\xcc\x7f\x18\x78\x86\xe5\ +\x46\xae\x2f\x19\x4e\x91\x62\xc4\xf6\x9b\xef\xe3\xd5\x77\x3e\x44\ +\xe3\x6f\xe3\x60\x69\x70\x73\xb7\xc7\xb8\x31\x12\xb8\x7c\x51\x83\ +\x3e\xfd\x88\xc3\xce\x5e\xc0\xa2\xe7\xf5\xb2\x91\x34\x59\x76\x98\ +\xb8\xb8\xa0\xe5\xde\x05\x5e\xf9\x09\xb6\x15\x8e\xe8\x01\x06\x84\ +\xca\xe9\x74\xaa\x76\xef\x03\xc2\x72\x81\x3b\xbd\xc3\x1f\xfb\x73\ +\x9c\x70\x4b\x6c\x4e\x5b\xfc\xd2\x78\x84\xc0\x28\x15\xbe\x91\x60\ +\x32\x67\x1f\x8f\xc7\xd6\x2d\x83\x88\x70\x16\x8a\x22\xbb\xe8\xe8\ +\x83\x89\x66\xb4\x15\x32\x37\xfa\xb1\xb8\x7f\x28\x73\xce\x39\x95\ +\xb2\x30\x19\xb5\xf8\x67\x06\xec\xb1\x58\x8e\xfa\xf8\x46\x8b\x00\ +\xe9\x01\x07\x93\x7b\xa0\xe5\x1a\xdc\xed\x0c\x3c\x59\xac\x4f\x1c\ +\x08\xa5\x2f\x74\x5f\xfd\x9c\x35\xc1\x22\x78\xab\xdf\x8e\xcc\x5a\ +\xc4\x4a\x06\xda\xb6\x05\x53\xaf\xb6\x93\x33\x5c\x83\x11\x53\xfe\ +\xf7\x9d\x88\xb5\xfd\x88\xa7\x36\x1d\x76\x0f\x22\x22\x25\xea\x65\ +\xb0\xd2\xac\x6f\xcf\x09\x1b\x6b\x06\x4b\x2f\x7b\xba\x93\x3f\x3a\ +\x02\x5b\x7e\x18\xcf\xae\x00\x40\xdc\xfd\x70\x2c\xda\xe9\x4e\x18\ +\x69\x85\x68\x06\x61\xf1\x0b\x03\xd8\xe7\x20\xe7\x36\x1b\x04\x32\ +\x92\x95\x82\x50\xb0\xd6\x0a\xcd\xf0\xd1\x60\x6d\x64\x15\x95\x4d\ +\xfb\x64\x8c\x6a\x6f\xad\x88\xae\x13\xcf\x1f\x00\xa0\x8e\x0c\x80\ +\xc5\xe5\x43\x59\x9a\x56\x6d\xf9\x19\xb7\x16\x3f\xec\x46\x3d\x78\ +\x7d\x6c\x41\xb8\x17\xe4\x9e\xff\xbc\xe7\xb2\xb5\x65\x4d\x75\xb9\ +\x96\x5e\x41\x94\x35\xfb\x20\x00\xcd\xba\xd1\xec\x5d\x72\xd2\x7e\ +\xe0\xb9\x96\xb3\x7e\xf1\x8f\x43\x66\xe1\xa4\x82\xac\x41\x32\x80\ +\x10\xe5\x86\x28\x63\x65\xbf\x80\xf4\x6c\x07\x99\x67\x59\xd9\x03\ +\x0a\x80\x88\xb4\x71\x2c\x59\x2d\x47\x09\xa2\xfb\x0c\x66\xd6\x01\ +\x5d\x00\x4e\x1d\xb7\xd8\x65\x30\xce\xd6\x76\x77\x06\x5a\x8a\x91\ +\x03\x82\xf6\x49\x3e\x3b\xd5\x3f\xa0\x8e\xa3\x19\x70\xac\x4d\x65\ +\x20\x07\xaf\xd2\x3a\x61\x01\x5c\x12\x83\x63\x13\x23\xa5\x18\x66\ +\xab\x0d\x0a\xf1\x63\x5b\x7e\x6c\x7a\x2d\x7b\xde\x0b\x2c\x95\x81\ +\xa3\x7a\xc0\x7b\x9f\x6f\x81\x00\x68\x87\x0c\x14\xa6\x34\xbb\x3b\ +\x4b\x60\x3a\xb2\xfa\xe2\x75\x5e\x6f\x5d\xdd\x8f\xe9\x75\xec\x83\ +\xce\x85\x1f\x69\x40\x65\x20\xe6\xe7\xb4\x59\xc1\x80\xdc\x82\xfa\ +\xd6\x0b\x80\x26\x31\x40\x19\x79\x79\x5d\x5c\x2e\xc5\xc6\x1a\x94\ +\x11\x8d\x20\xc1\xf2\x3e\xd5\xeb\x59\xae\x63\xdf\x87\x40\x3d\x27\ +\x37\x1d\x8f\x41\x47\x00\xd0\x47\xa8\xfc\x91\x61\x53\xcb\xa0\x71\ +\x85\x46\xa5\xb4\xbe\x80\x42\xf5\xd2\x0b\x00\x94\xc8\xba\x56\xbc\ +\x08\x0a\x80\x22\xa9\x7f\xdf\xf2\x59\x22\xca\xc8\x0a\x00\x1a\xbc\ +\xf4\x80\x76\xf5\xa0\x07\xa8\x94\x60\x00\xa0\x31\x09\xc0\x58\x4f\ +\x92\xce\x4f\x94\x93\x06\x2c\x49\x09\x12\x9d\xf4\xf9\xfb\xf2\x9b\ +\x56\x95\x80\xca\x9f\x5a\xd4\x86\x52\x00\xb5\x01\x2b\x03\xf9\x93\ +\x4a\xd1\x1b\x3c\x34\x22\xd1\x0a\xa6\x0b\xc9\xab\xfc\xb6\xc9\xe8\ +\x29\xad\x69\x42\x91\x68\xe5\x35\xcc\xf4\x9b\x62\xb3\xb8\x6c\x17\ +\x06\x44\x0f\xbf\x93\x32\x5e\x72\xd0\xb5\x16\x58\x78\x01\x41\xe8\ +\x0b\x08\x93\x35\xe3\x12\x00\xa5\x09\xed\x8a\x5b\x50\xea\x3f\x04\ +\x23\x3d\xa0\xce\x85\x15\x94\x03\x2b\x02\xcd\x30\x50\x92\xb1\x96\ +\xc1\x72\xad\x75\x9e\x00\x27\xd5\x1b\x2a\xf5\x63\xcb\x1c\x71\x0b\ +\x06\x74\x4b\xf6\xb9\x1f\x90\x7a\xa0\x80\xab\xb1\xcb\x4c\x7d\x7c\ +\x4c\x00\x1a\x0d\xce\x19\x5a\xc9\xf6\x5e\xb9\xba\xf2\xc5\x54\x8a\ +\xa3\x7b\xa0\x32\xe0\x06\x25\x28\x0c\xd4\xe0\x25\x9d\x62\xa8\x4f\ +\xcf\x20\x46\x8e\x60\x48\x1f\x24\x7d\x9e\x33\xf5\x5d\x52\x35\x81\ +\x46\x0e\x24\xa2\x21\x03\xc3\x86\xd3\xec\x91\x7d\xd4\x4b\x7c\x4d\ +\x0e\x4a\x15\x45\x59\x33\xaa\x85\x09\xab\x2c\x18\xd2\xfe\x20\x6b\ +\x2a\x80\xe1\xf8\xff\x1e\xe0\x39\xf4\x55\x8b\x20\x16\x23\x27\x29\ +\x06\x4a\x6c\x90\x68\x01\xa6\x65\xcd\x3a\xed\xf7\x5e\x12\x10\xf7\ +\x82\xdb\x64\x00\x54\xba\xf3\x68\x06\x74\xdf\xca\x01\x4e\xd3\x8b\ +\x91\xd4\xcf\xc4\x28\x5b\x35\x78\x9a\x48\xc0\xa2\x59\xd5\x3e\x8b\ +\x41\x4a\x47\xa5\x66\x3d\x6a\x28\xdd\x57\x00\x83\x41\xc2\x40\xa1\ +\xbf\xf4\x00\x01\x95\x81\x42\xbf\x36\x71\x0d\x34\xb8\x6e\xd5\x27\ +\xeb\xa8\x6b\x0a\xae\xab\xf1\x53\x6f\x54\x00\xb5\x04\x54\x4a\x60\ +\xf5\x29\x4e\x0c\x84\x18\x04\x05\x2f\xd6\xa6\xab\x99\x8a\x1e\x06\ +\x1d\x82\xb9\xcf\xb7\xbb\x2f\x5b\x5a\x01\x20\x72\x96\x5d\xd7\xc1\ +\x7b\xaf\x76\xf0\x01\x9e\x03\x9b\x90\x19\xa0\x1a\x58\x55\xb5\x8f\ +\x06\x54\x81\xf5\xa9\xa1\x53\x19\xbf\x78\xef\x2c\xec\xd6\xd6\xd6\ +\x30\xfe\x41\xdf\xf7\x87\x3c\x30\x9f\xcf\x89\x6d\x9a\x2f\x92\xf6\ +\x21\x50\x60\xf1\x22\x5e\xc4\xb3\xed\x93\x1d\x92\xdd\x8b\xad\x3a\ +\xad\xf7\xba\xef\x8b\x96\x44\x16\xa2\xbb\xc5\x1c\x6f\xbf\x7b\x26\ +\xb1\xbc\xbb\xbb\x2b\x9a\xae\x5f\xbf\x8e\x2b\x57\xae\xfc\xcd\xc1\ +\x6e\x09\x80\xc5\x62\x21\x81\xcd\x7c\xbe\x30\x5e\x12\x37\x8d\x09\ +\x70\x26\x1a\x91\x46\x25\x64\x1d\xa1\x3a\xed\xc1\xe5\x3d\xb5\xab\ +\x86\x43\xef\x05\x8e\x01\x35\x13\x7c\xf6\xc9\xaf\xe9\x1a\x32\xcd\ +\x96\xf5\xf8\xd2\xa5\x4b\xc7\x02\x8f\x8d\x8d\x8d\x6f\xb9\x04\xcf\ +\x33\x80\xdb\x81\x69\x8f\x7e\x61\xf7\x77\x7f\xc4\xb2\x39\x61\x62\ +\x3f\x23\x63\x6c\xf9\xdf\x8c\x4a\x29\x07\xaf\xa1\x32\x5c\xcb\x60\ +\x88\x15\x69\x97\x12\xb9\x3f\xbf\xff\xfa\xf7\x1b\x5f\x7e\xf4\xe8\ +\x68\xfd\x24\xba\xbb\xff\x1c\xb2\xc3\xd2\x94\xde\x63\x69\xb3\x8c\ +\x59\xb6\xf2\x1b\x21\xe0\x46\xb6\x19\xb5\x32\xa7\x18\x2c\x11\x03\ +\x26\x1a\xfe\xfb\x5d\xc0\xc4\xac\x43\x16\x9f\xa5\xcf\x32\x93\x12\ +\x67\x9f\x2e\xaf\x85\x7f\x01\x1c\x52\xf4\x0b\xb6\xf2\xad\xef\x00\ +\x00\x00\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\ +\x00\x78\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\x48\xd5\ +\xcb\x2f\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\xca\x5c\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xe8\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ +\x12\x1e\x22\x20\x34\x3a\x31\x00\x00\x02\x68\x49\x44\x41\x54\x38\ +\xcb\x85\x90\x4b\x48\x54\x51\x18\xc7\x7f\xe7\xdc\x73\xee\x9d\x3b\ +\x5a\x93\x2f\xc2\x47\xa2\x3d\xa0\x22\x51\x2c\x48\xa3\x17\x18\x46\ +\x11\xb5\x29\x42\xd4\x1e\x86\x94\xd0\x32\x23\x88\x5a\x56\x8b\x08\ +\x37\x19\x84\x2d\x0a\x0b\x2a\x88\xa2\x08\xa2\x45\x24\xe4\x26\x22\ +\x51\x83\x32\x47\x8a\x92\x5e\x4c\x3a\xa2\x33\x77\xc6\x99\x7b\x5a\ +\x58\x91\x4d\x8f\xdf\xf2\xe3\xff\xfd\xbe\x87\x30\xc6\x20\x0a\x2a\ +\xba\x8a\xec\xaf\x07\xe2\xf1\x38\x63\xee\x12\x58\xd1\x48\xc8\x1b\ +\xa7\x71\xe0\x0a\x37\x97\xef\xe6\x4b\xd6\x7c\x7e\x30\x37\x11\xa5\ +\xa9\xff\x32\x8f\x8b\x6a\xce\x0e\x0e\x76\xb7\xab\x99\xb2\xbf\x78\ +\x63\xdd\x26\x8e\x9e\x3c\xfd\x33\xf8\xe1\x62\x27\x23\x3d\x61\xaa\ +\x87\xba\x58\xd1\x7d\x93\xc0\xc2\xc5\x4c\x7f\xfe\xc4\x8b\xa6\x5d\ +\xc4\xc6\xc2\xf8\xa1\xc2\x46\xa0\x5d\x18\x63\x10\x42\xdc\xae\x5c\ +\x55\xbb\x23\x16\x8d\x90\x2e\xa8\x26\x58\xd9\xc4\x74\xda\x67\x43\ +\xef\x25\x6a\x06\xef\x30\xe5\xe6\x70\xb7\xee\x08\x9b\x7b\x3a\xc9\ +\x9d\x18\x65\xa0\x7c\x2d\x57\xab\xf6\x8c\x7c\xbc\xd5\xba\x48\x7e\ +\x1f\xd8\x37\x2f\xbf\x90\x48\x2a\x1b\xdf\xc9\xc1\x0d\x15\x50\x56\ +\x5a\x42\x6f\xfd\x31\xfa\x57\x36\x90\x1f\x1f\x63\xff\xbd\xe3\x14\ +\x4d\x8c\x12\x5e\x5a\xcf\xc3\x1d\x67\x48\x26\xbd\x77\x00\x92\x5f\ +\xf0\x53\x29\x2c\x29\xf1\x8d\x24\x99\x82\xbc\x39\x0e\x7d\xab\x9b\ +\x11\x4e\x36\x2e\x60\x4b\xc5\xb3\x35\x2d\xd8\x8e\x83\xd6\x9a\x4c\ +\x81\x9f\xc6\xb2\x2c\x6c\xad\xf1\x52\x92\x7c\x6f\x9c\x83\xd7\xdb\ +\xc8\x4d\x4c\x32\x95\x57\x46\xc8\x4f\x71\xe8\xc6\x61\x8a\xa3\xef\ +\x51\xda\xce\x14\x18\x63\x50\x52\xe2\x68\x45\xbe\x37\x46\x73\x57\ +\x0b\x25\x91\xb7\x0c\x57\x6c\xe5\xf2\xbe\x0e\x1e\x2d\x2b\x25\x1c\ +\x9c\xe4\xd0\xb5\x56\x96\x4e\x8c\x06\x01\x14\xb3\x30\x58\x96\xc4\ +\xd6\x9a\xf5\x4f\x3a\x28\x8e\xbc\x61\xb0\x6a\x1b\xf7\x1b\xce\x41\ +\xda\xf0\xb4\xf9\x21\x00\xe3\x17\x2a\xd9\x39\xf4\xa0\x18\x4e\xcc\ +\x16\x48\x40\x29\x8b\x60\xc0\xe6\xe5\x96\xbd\xc4\xca\x37\xd0\x57\ +\xbd\x9d\x2c\x5b\x61\xfb\x06\xdf\x9f\xc9\x59\xeb\x4e\x71\xde\x59\ +\x30\xdc\xf6\xfb\x06\x52\x4a\x1c\x6d\x93\xed\x06\x48\xb8\xb5\xbc\ +\x2e\xa8\x25\x0b\x10\xc2\x10\x10\x02\xe3\x83\x0f\x0c\xaf\x6b\xc0\ +\x1a\x78\x6e\x32\x4e\x50\x5a\x33\x2f\x27\x87\x2c\xd7\xe1\x77\xa4\ +\x10\x80\xc1\x37\x06\x10\xd8\xf6\xcc\x13\x67\x09\xb4\xa5\x70\x03\ +\x01\x82\x4e\xa6\x00\xc0\x12\x06\xdf\x08\x0c\x06\xad\x9d\x4c\x81\ +\x52\x0a\x69\x0c\xae\x63\xf3\x37\x84\x30\x60\x04\xfa\x4f\x1b\x58\ +\xca\xc2\xf3\x62\x28\x65\xfd\x5d\xf0\x33\xab\x33\x05\x08\x89\x97\ +\xf0\x48\x24\xa7\xf9\x1f\x42\x58\xb3\x04\x6f\x26\x27\xc6\x89\x4f\ +\x45\x89\x7c\x8d\xf2\x2a\x3c\xf2\xcf\xe6\x64\x3a\x45\x2c\x1e\xff\ +\x08\xf0\x0d\xb5\xd2\xd7\x39\x77\xc6\x6b\x4e\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x3e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ +\x01\x00\x9a\x9c\x18\x00\x00\x00\x04\x67\x41\x4d\x41\x00\x00\xb1\ +\x8e\x7c\xfb\x51\x93\x00\x00\x00\x20\x63\x48\x52\x4d\x00\x00\x7a\ +\x25\x00\x00\x80\x83\x00\x00\xf9\xff\x00\x00\x80\xe9\x00\x00\x75\ +\x30\x00\x00\xea\x60\x00\x00\x3a\x98\x00\x00\x17\x6f\x92\x5f\xc5\ +\x46\x00\x00\x01\xb0\x50\x4c\x54\x45\x00\x00\x00\xff\xff\xff\xdf\ +\x98\x00\xe6\xa0\x0c\xe7\xa3\x10\xdf\x98\x00\xe6\xa2\x0e\xe7\xa2\ +\x10\xdf\x98\x00\xe5\xa0\x0d\xe3\x9d\x08\xe1\x9e\x01\xe1\x9f\x00\ +\xe1\x9f\x01\xe1\x9f\x0d\xe1\x9f\x12\xe3\xa1\x11\xe5\xa5\x1a\x00\ +\x56\xff\x10\x60\xef\x10\x60\xf2\x20\x99\xdd\x30\x80\xce\x50\x8b\ +\xb1\x50\xb2\xad\x8e\xb2\xa2\x8f\xad\x72\x8f\xb2\x9e\x9f\xbb\x66\ +\xc3\x4d\x02\xc4\x4f\x01\xcc\x5d\x03\xd4\x69\x02\xdc\x84\x0c\xdc\ +\x8d\x05\xe1\x90\x09\xe3\x9b\x0b\xe5\x99\x0a\xe5\xa8\x01\xe7\x9d\ +\x09\xe7\xad\x02\xe7\xae\x01\xe7\xaf\x01\xe7\xb0\x01\xe7\xb0\x03\ +\xe7\xb0\x09\xe7\xb0\x10\xe7\xb1\x1c\xe7\xb1\x1f\xe7\xb1\x33\xe7\ +\xb2\x38\xe7\xb2\x40\xe9\xb4\x43\xeb\xb6\x04\xeb\xb8\x45\xeb\xbb\ +\x20\xeb\xbc\x2d\xec\xb9\x48\xef\xbd\x3a\xef\xc4\x65\xf3\xb9\x17\ +\xf4\xb8\x14\xf5\xba\x13\xf7\xcd\x0e\xf7\xcf\x0d\xf7\xd1\x0f\xf7\ +\xd7\x18\xf7\xdc\x61\xf7\xe4\x91\xf7\xe6\xa5\xf8\xce\x11\xf8\xe7\ +\xbf\xfb\xc8\x1d\xfb\xca\x1b\xfb\xd8\x10\xfc\xcd\x1a\xfc\xfd\xac\ +\xfd\xd2\x17\xfd\xfa\x60\xfd\xfb\x7c\xfd\xfc\x7e\xfd\xfc\x84\xfd\ +\xfe\xd2\xfe\xf8\x20\xfe\xf8\x24\xfe\xf9\x37\xfe\xf9\x3b\xfe\xfa\ +\x47\xfe\xfa\x4f\xfe\xfc\x9c\xfe\xfc\xa3\xfe\xfe\xd9\xff\xd0\x1f\ +\xff\xd1\x1e\xff\xd2\x1d\xff\xd3\x1d\xff\xd4\x1c\xff\xd5\x1b\xff\ +\xd6\x1a\xff\xd6\x1b\xff\xd9\x18\xff\xda\x17\xff\xda\x22\xff\xda\ +\x24\xff\xdb\x19\xff\xdc\x16\xff\xdf\x19\xff\xdf\x41\xff\xe0\x12\ +\xff\xe2\x3c\xff\xe3\x10\xff\xe4\x19\xff\xe5\x0e\xff\xe6\x0e\xff\ +\xe7\x0d\xff\xe7\x61\xff\xe9\x20\xff\xea\x0a\xff\xea\x1a\xff\xeb\ +\x0a\xff\xed\x08\xff\xed\x67\xff\xef\x06\xff\xf0\x06\xff\xf1\x04\ +\xff\xf2\x5d\xff\xf2\x7c\xff\xf4\x53\xff\xf4\x82\xff\xf5\x03\xff\ +\xf6\x05\xff\xf7\x07\xff\xf8\x16\xff\xf8\x17\xff\xf8\x6c\xff\xf8\ +\x87\xff\xf9\x30\xff\xfa\x78\xff\xfb\x7d\xff\xfd\xaf\xff\xfd\xc0\ +\xff\xfe\xe1\xff\xff\xf2\xff\xff\xf5\xc6\x84\xb0\x01\x00\x00\x00\ +\x12\x74\x52\x4e\x53\x00\x00\x20\x20\x20\x60\x60\x60\x8f\x8f\x9f\ +\xdf\xdf\xdf\xdf\xdf\xdf\xdf\xb4\xb2\xe3\xac\x00\x00\x00\xda\x49\ +\x44\x41\x54\x18\x95\x63\x60\x44\x03\x0c\x8c\x0c\x0c\x0c\x2c\x9c\ +\x82\x26\xc6\xfc\x1c\x4c\x40\x26\x58\x80\xdd\xd2\xbd\x3f\x3a\xaa\ +\xdb\xc5\x90\x15\x22\xc0\x66\xdd\x17\xe4\x13\x10\x11\xd2\x54\x6f\ +\xc1\x0a\x12\x60\x36\xeb\x8d\x0c\xf4\xf7\x0b\x6b\x6d\xac\x28\xd3\ +\x63\x02\x0a\x70\xb9\x76\x85\x4b\x4a\x87\x05\xcb\x48\x95\xe6\x39\ +\x71\x00\x05\x04\x7a\x3a\x42\x85\x44\x5a\x9a\x85\x85\x4a\x72\xf2\ +\x79\x81\x02\x46\xed\x6d\x9d\x62\x12\x8d\x35\xe2\xa2\x95\xc5\x19\ +\x3a\x40\x01\xc3\x86\x5a\xfd\xea\xaa\x8a\xf2\x22\x2f\xab\xec\x34\ +\x6d\xa0\x00\x5f\x5d\x81\x9c\x52\x51\x61\x5e\x8e\x8a\xac\x4d\x26\ +\x0f\x50\x80\xc3\x39\xcb\x4d\x55\x41\x5d\x59\x5e\xd1\xd3\xc3\x01\ +\x64\x28\x93\x41\x6e\x4a\x8a\xaf\x9d\xad\x77\x5c\x4c\x92\x1a\xc8\ +\x5a\x06\x56\xf3\xf4\xf8\xf8\xb8\xd8\x98\x98\x64\x53\x56\x88\xd3\ +\x59\x75\x1d\x33\x13\x13\x52\xed\x35\xa0\x4e\x67\x60\x60\xe2\xe0\ +\xd1\xd2\xe4\x86\x79\x0e\x0d\x00\x00\x00\x82\x2d\xeb\x05\xb0\x41\ +\x76\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x75\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ +\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0c\x1e\ +\x10\x24\x2d\xef\x9e\xe7\xec\x00\x00\x02\xf5\x49\x44\x41\x54\x38\ +\xcb\x95\x91\x6b\x48\x53\x01\x14\xc7\xff\x77\xbb\x7b\xdc\xeb\xa6\ +\xab\xe9\x36\x75\x99\xba\xf5\x70\xa5\x58\x1a\x4e\x4d\x66\x05\x16\ +\x45\xd9\x83\x90\xc4\x04\xa5\x2c\x0c\x8b\x48\xcb\x2c\x34\xb0\x8c\ +\xe8\x4b\x21\x51\x66\x41\x04\x3d\x3e\x34\xc3\xd4\x32\x34\xa2\xb2\ +\x22\x53\x33\xb3\xf2\x95\xaf\x34\x67\xee\xa1\x7b\x34\x77\xa7\xbb\ +\x7d\x52\x0a\xbf\xe8\xf9\x74\x38\xff\xf3\xfb\x7d\x38\x87\xc0\x02\ +\xeb\x86\x00\x51\x5e\x01\x21\xb7\x68\x85\xa2\x9a\xf6\xf3\xbb\xb0\ +\x20\xb8\xae\xe2\x8c\xc4\x56\x27\xed\x2e\x5c\x2a\x64\xcb\x78\x7c\ +\xb6\x8c\xa2\x6a\x38\xf3\x85\xef\xe5\x01\xd3\xa2\x8d\x0f\x3a\xe9\ +\x72\xb5\x7e\x51\x38\x0c\x9b\x04\xe0\x7a\x33\x8b\x89\xf9\x0a\x4c\ +\x2f\x42\x0f\xf6\xff\x49\xb8\x39\x8c\x14\xc8\x15\x0a\x70\x87\x8a\ +\x2c\xa6\xde\xaa\xc8\x79\xc1\x86\x67\xca\xd5\xae\x6f\xd9\x7f\x36\ +\xe9\x22\xd9\x70\x8d\x8a\xfd\x50\x95\xed\xa9\x7d\xfe\x32\x7d\xce\ +\x62\x4e\x34\x49\xe4\x44\x71\x85\xff\xce\xfa\xf4\xb4\x97\xbb\x23\ +\xfb\x6b\x51\xee\x6e\x76\x49\x90\x8a\x7d\x7a\x3d\x9c\xfd\x5e\x11\ +\x76\x65\x26\x27\x67\x9a\xc2\x9d\x1a\x0d\x25\x51\xd4\xa8\x96\x6b\ +\x82\xd6\xef\x62\x6e\xbc\xd3\xdf\x3c\x72\xf5\x13\xe0\xaf\xde\x52\ +\xfa\xb2\x15\x9a\x87\x15\x2d\xd0\x2a\x5d\xf8\xd5\x35\x36\xd1\x56\ +\xef\x2c\x9e\x23\x58\xac\x50\xe6\xaf\x8d\x4b\x0c\x9e\x9c\xe2\x80\ +\x71\xda\xb2\x49\xa9\xaa\xcc\xf6\x56\x14\x61\xb1\xd3\x19\xb9\x25\ +\x6f\x10\x2a\x31\x21\x50\x40\xa1\xe9\xc7\x0a\x1f\xf3\x60\xd7\x65\ +\x60\x22\xf3\x3f\xc1\xaa\x30\xf5\x92\xb5\x31\x31\xe0\x7a\x49\x61\ +\x33\x1a\xe0\x1c\xa9\x4c\xe2\xf1\xe9\xc2\xac\xb3\xdd\x70\x3b\xac\ +\x48\x48\xd6\xe1\xe8\x91\x7c\x70\x48\x01\x0a\x8f\x1f\x0a\x43\x6b\ +\x0b\x00\x60\xf6\x8d\x52\x6f\xfa\x8b\x87\x99\x84\xc7\xe5\x80\xc7\ +\x69\x61\x75\xb1\x63\xa7\x2e\xde\x65\xc4\x2d\xdf\x4c\x38\x91\xca\ +\x62\xdf\xd6\xed\xe0\xf2\x45\xe0\x90\x3c\xa4\xef\xdb\x63\x99\xe1\ +\x66\x05\x1f\xdf\xbe\x2e\x1e\x1f\xee\x64\xdc\xc6\x01\x08\x5d\x77\ +\x89\xc6\x1f\x22\xdf\xdb\x4f\xac\xd8\xab\x73\x21\x62\x19\xf7\xcb\ +\xef\x81\x8e\xdb\x6e\xfb\x08\x5c\xa6\x7e\xd4\xd4\x55\x7f\x9e\x23\ +\xa8\x6b\xfe\x69\x1c\x75\x0a\xcc\xcd\x6d\xaf\x60\x32\x35\x22\xf7\ +\x1a\x01\x75\x80\x0b\x29\x89\x4e\x87\xc5\xd8\x97\x62\x36\x5a\x1a\ +\x26\x46\x06\x31\xd0\xd3\x81\xe6\xc6\xf7\xa2\xd9\x23\x6e\xdb\x91\ +\xc9\x3b\x90\x91\x9a\xa9\x0a\x09\x3c\x2c\x93\x52\x8a\xf6\x66\x1a\ +\x6d\x13\x12\x88\x29\x3d\x8e\x25\x9b\x61\x73\x6f\xe8\x0a\x4a\x38\ +\x59\x29\x71\x74\x84\x0a\x25\xbe\xb0\xda\x1d\x58\xa3\x5e\x96\x75\ +\xe9\xfe\xa3\x24\xc3\xeb\xf2\x02\x32\x6d\x7f\xda\x39\x6d\x5c\x54\ +\x81\x58\x24\x00\x49\xf2\xc1\x23\xc7\x21\xa3\x7a\x70\x3e\x27\x08\ +\x94\x6f\x0a\x1b\x22\x8b\x8e\x5c\xa4\x5e\x41\xb8\xba\x06\x01\xb7\ +\x13\xc3\xdd\xdf\x31\xd4\xd3\xc3\x17\x4b\xa4\xcb\xd9\xe0\x95\xd7\ +\x38\xfe\xfe\x7e\xe9\x00\xe0\x9e\xf2\xc0\x6e\xb7\x23\xf7\x74\x09\ +\xc6\x1c\x32\x84\xc4\x97\x42\xa5\x2d\x20\x08\x1f\x25\xc1\x78\x38\ +\xf0\x88\x03\xe1\xf1\x56\xc2\x3c\x4d\x41\x16\xb1\x01\xd6\x71\x13\ +\x84\x14\x2d\xe7\xae\x8b\xdd\xcc\x00\xe0\xda\x6c\x0e\xe2\x43\x63\ +\x13\x01\xbe\x9c\xd1\x6e\x3c\x68\x9d\x74\x73\x7a\x07\x06\x87\xea\ +\x1b\x1a\x9a\xee\x8c\x5b\x9d\x96\x51\x3b\xc7\x61\xb0\xb2\x56\x81\ +\x6c\xa5\x41\x1e\x16\xdf\xde\xd9\xfd\xb3\xf2\x71\x6d\x6b\xde\x5f\ +\xe0\xbc\x32\xda\x82\x1f\x79\x91\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x00\xf5\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x04\x03\x00\x00\x00\xed\xdd\xe2\x52\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x27\x50\x4c\x54\ +\x45\xff\xff\xff\x88\x88\x88\x88\x88\x88\x88\x88\x88\x91\x92\x90\ +\xba\xba\xb9\xc0\xc1\xc0\xc5\xc5\xc5\xd0\xd1\xd0\xec\xec\xec\xed\ +\xed\xed\xee\xee\xee\xff\xff\xff\xb9\x4f\x24\x17\x00\x00\x00\x03\ +\x74\x52\x4e\x53\x00\x3b\xd8\x4e\xcc\x71\x00\x00\x00\x00\x31\x49\ +\x44\x41\x54\x08\xd7\x63\x60\x20\x02\x08\x19\x83\x81\x22\x83\xfa\ +\xec\xdd\x40\xb0\xb3\x88\xc1\xea\x98\xc7\x19\x20\x58\xcc\x60\x7d\ +\x26\x06\xc4\xd8\x8c\x85\x01\x57\x03\xd7\x05\x37\x07\x37\x00\x00\ +\x1a\x7b\x26\x85\x0e\x97\x44\x8d\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x03\x44\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xc1\x49\x44\ +\x41\x54\x78\xda\x85\x91\x5f\x48\x53\x61\x18\xc6\x9f\xef\xec\x6c\ +\x3b\xee\xbf\x6e\x39\x19\x6e\x2a\x88\x88\x18\x4c\xbd\x48\x28\x09\ +\xed\x26\xa2\x40\xc2\xba\x91\xba\x09\xeb\xb6\x6e\x44\x4a\xca\x75\ +\x11\x14\x98\x52\x44\x24\x19\x91\x41\xa6\x54\xa2\x58\x5b\xe5\x85\ +\x98\x62\x64\x13\xff\xa4\x35\x4d\xd1\xa1\x96\xe6\x64\x67\x9b\xfb\ +\x7b\xce\xd7\x11\xa7\x04\x81\xfe\xe0\xbb\xf9\xde\xe7\x79\xbf\xe7\ +\xfd\x5e\x50\x4a\xf7\x3d\x78\x82\x93\xd9\xce\xec\xaf\x55\xa3\x55\ +\xbe\xac\xf6\xac\x29\x3c\x42\xe5\x4e\x6d\x7f\xf3\x1d\x9c\xb7\xbf\ +\xb5\x0b\x0d\x53\x0d\x34\x2e\xc4\x69\xc3\x74\x03\xb5\xbb\xec\x02\ +\x6e\xe3\xdc\x56\x9d\xc1\x1e\x10\x42\x94\xd0\xa3\x9e\x67\x78\x66\ +\x70\xa5\x0b\x14\x22\x16\x37\xba\xc0\xb2\x3c\x03\x0d\x6e\x12\x89\ +\xbd\x5f\x07\x94\x78\x86\x50\x2c\x11\xa3\xa2\x28\xd2\x7f\xc1\x73\ +\x04\x01\x68\x18\xec\x8d\x00\x82\x00\xd7\xa5\x40\x85\x73\x5b\xea\ +\xf8\x42\x50\xfa\x81\x00\x14\x7e\x00\xdc\x7e\x0d\x64\x98\xc6\x63\ +\x51\x01\x71\x46\xdc\xbe\x70\x6e\x02\x23\x31\x88\x98\x95\xb2\x01\ +\x3c\x49\x46\xc5\xfd\x9a\xf2\x52\x8d\x31\x63\x30\xb8\x19\x66\xcc\ +\x66\xa3\xf7\xec\xb5\x56\x5b\xf2\x1f\x74\xb8\x82\xeb\xe6\x7c\xf9\ +\x85\x53\x9e\x3c\xdd\x3a\xc2\x31\x67\x64\xae\x25\xfc\x00\xb5\x92\ +\x37\xba\x9b\x40\x93\x6e\x71\xa9\x35\x29\x8c\xd9\x92\x8d\x54\x73\ +\x96\xb5\xe5\xd2\xd1\x83\x90\x90\x44\x3c\x9a\xe0\xa8\x74\xe6\xea\ +\x0c\x43\xb3\x8c\xd6\x2d\xe7\xea\xf8\xc3\xc7\xb6\xcc\x90\x60\x91\ +\x44\xcd\x52\x79\x45\x79\x19\xb8\x8c\x3c\xf8\xfd\x41\x8c\x0d\xb8\ +\x4e\x03\x98\x80\xc4\xc5\x12\x95\xc6\x60\x30\x30\x67\xaa\x1d\x50\ +\x6a\x4c\xe8\x68\x7b\x6a\x43\x12\x76\x77\x58\x99\xf8\x8b\xc8\xd8\ +\x1c\x06\x22\x12\xb1\x10\x7c\x7f\x3c\x2f\x90\xc4\x62\x62\xa3\x95\ +\xc7\x4f\xd0\x9c\x82\x22\xc2\x65\xe4\xa3\x6c\x66\x7c\x03\x49\x76\ +\x47\xf8\xf4\xee\x65\xc5\xd4\xd8\x18\x12\xc1\x35\x0c\x0f\x0c\xc4\ +\x6e\xf5\xae\x79\x90\xe4\x86\xd3\xef\x0b\x87\x02\x5e\x2a\xc4\x11\ +\x5e\x9d\x87\x7b\xdc\xbd\xf2\x5f\x83\xe6\x61\x2c\x32\x46\x2b\x3a\ +\x5e\xf7\x42\xa5\xd3\xc6\x3b\x3b\x3b\x15\xd8\xc1\xe1\x60\x78\x1f\ +\x3f\x34\xff\x6d\x14\x9f\xfb\xba\x31\xe7\x99\xe4\x90\x84\x94\x94\ +\x94\xc8\xeb\x6b\xaf\x7e\x31\x9a\x6d\x85\x66\x93\x4e\x16\xf4\x79\ +\xa1\x35\x59\xb1\xb2\xb4\xb0\xb9\xbe\xfc\xb3\x59\xc9\x2f\x65\xda\ +\x8a\x8f\x54\xa7\x25\xbc\x32\x4e\xad\x43\x4f\x7b\x07\x46\x07\xfb\ +\x50\x73\xaf\x47\x1c\x7f\x75\xb7\x8e\xbc\xe9\xee\x5f\x2b\xb2\x17\ +\x98\x52\xf5\xaa\xed\x48\x0c\x41\x22\x21\x20\x21\x88\xd8\x0c\x86\ +\xc1\xac\x0e\x43\x30\xe4\x41\x1b\x98\x00\xa2\x51\xb4\x36\x36\x61\ +\x61\x61\x12\x97\xdb\xdc\x88\x4e\xbf\x8f\xb3\x46\x63\xba\x89\x65\ +\x09\x24\x3d\x08\x03\x88\x22\x05\xdd\xd9\x8c\x5e\x0d\x7f\x20\x13\ +\xca\x14\x0d\xa8\x68\x01\xd4\x14\x19\x85\x87\x10\xe2\x52\x11\x0a\ +\xf0\x90\x36\x23\x27\x8d\x0f\x3b\x47\x72\x6d\xd6\xa2\xf4\x03\x7a\ +\x46\x26\x57\x40\x88\x0b\x80\x8c\x48\x09\xe2\x74\x79\x69\x3d\x3c\ +\xf7\x7d\xf2\x63\xbe\x4d\x5d\xac\xd5\xaa\xd3\x94\x9c\x4a\x11\x89\ +\x46\x84\x68\x24\xc2\xff\x5e\xf5\x2d\xb8\xfa\x7f\xd4\xfe\x05\xde\ +\x59\x81\xd8\xd5\x95\x4d\x17\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x03\x08\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ +\x12\x1d\x10\xc3\xce\x38\x72\x00\x00\x02\x88\x49\x44\x41\x54\x38\ +\xcb\x7d\xd3\x5f\x68\xcd\x61\x1c\xc7\xf1\xf7\xf3\xfb\xfd\x9e\xdf\ +\xf9\xb3\xe1\xcc\x76\xc4\xb6\x46\x9a\xb2\x86\x49\x5a\x93\x38\x22\ +\xe4\x62\x2d\xc6\x26\x7f\xd7\xb4\xdd\x68\x29\x8d\x5a\x4a\x8c\x18\ +\xa5\x56\xb8\xd8\x86\x44\x49\x09\x0b\x29\x65\x4b\xb8\xd0\x2e\x36\ +\x84\x0e\x93\x8d\x19\x33\x9d\x63\xff\xce\x39\x3b\xff\x7e\x8f\x8b\ +\xad\xd5\x69\x87\xef\xe5\xf3\x7c\x9e\x57\x9f\x7a\xfa\x0a\xa5\x14\ +\xc2\xbd\xf4\x4a\xa6\xe9\x3f\x10\x0a\x85\xf8\xe3\x58\x04\x4b\x76\ +\xf3\xaf\xc9\x19\xed\xa3\xda\xff\x9c\x40\xfa\xbc\xa7\x6b\x33\x54\ +\xb1\x98\x00\xf2\x9f\xed\xda\xb2\xd2\x73\xf4\xf8\x59\xfe\x37\x56\ +\x3c\xcc\x82\x9f\xdb\x68\xac\xf0\x92\xf5\xc3\x02\x43\x7f\x3c\x01\ +\x08\xd1\x5a\xb0\x72\x55\x49\x70\xd8\x47\xdc\xbd\x02\x67\xc1\x1e\ +\xa2\x71\x8b\x48\x4c\x4d\x3d\x36\x0d\x8d\xea\xd5\x26\x9e\xdc\x00\ +\xfb\x0f\x9e\xa5\x6c\xae\x97\xac\xae\xe0\x2b\x63\xf2\xfe\xb5\x2b\ +\x63\x5e\x49\x9f\x2f\xcc\x4c\x5b\x1a\x8e\x59\x6e\xb2\x52\x25\xfd\ +\xfe\xf0\x14\x50\x9c\xd3\xce\xba\xd9\x9f\xe8\xf7\x97\x73\xad\xa5\ +\x89\xf0\x97\xfa\x58\x68\x63\x6b\xb9\x91\x50\x31\x16\x43\xd7\x34\ +\x2c\xa5\x11\x89\x41\xfa\x0c\x1b\x63\xe3\x71\xe6\xa7\x7c\xa5\x6e\ +\xfd\x00\x5b\x6b\xde\x30\xf8\xfb\x25\x2d\x0d\x9b\x69\x7e\xb7\xf3\ +\xf3\xcd\xfa\xfb\xdf\x12\x01\x2b\x8e\xae\xeb\x98\x52\x32\x1e\x83\ +\x99\x76\x1d\x8d\x30\xe7\x36\x75\x72\xe1\x46\x3f\x9f\x7a\x46\x69\ +\xaa\x73\xd2\xf1\xc3\x46\xbb\x37\xf0\x0b\x20\x01\x50\x4a\x61\x68\ +\x1a\x36\x39\x71\x1c\x89\xc3\xd1\xc2\x36\x7a\x7a\x87\xb8\x7d\xaf\ +\x93\xa2\xec\x30\xbd\xdd\x41\x1e\xa6\x94\x22\x8d\x1e\xa6\x01\xa0\ +\xd0\x75\x0d\x53\x4a\xec\x63\x3d\x14\x2e\xec\x63\xb9\xcb\xcb\xe6\ +\xba\x37\x2c\x74\xf9\xc8\xb2\x39\x68\xcd\x78\x81\x2e\xc0\x90\xdf\ +\xa7\x03\x1a\x60\x18\x3a\x4e\xbb\x49\x9e\x7a\xcf\xc1\xfc\x47\xec\ +\x3b\x11\x24\x1a\x18\x61\x4d\x89\x87\x8e\xec\x8b\x38\x01\x21\x04\ +\xd2\xb4\x25\x01\x34\x0d\x9b\x34\x49\x75\xd8\xa9\xca\x6d\xa6\xf1\ +\x56\x2a\x9d\x1f\x86\x39\x59\xa1\xd8\xe0\x29\xc6\xdb\x6d\xc7\x02\ +\x04\x60\x26\x03\x0c\x29\x71\xa5\xa5\x71\x29\xaf\x92\x97\x6f\x63\ +\x5c\x7d\x30\xc2\x0e\x4f\x98\xec\xdc\xc5\x9c\xef\x2f\x23\xc5\xa9\ +\xb0\x94\x02\x04\xa6\x69\x4e\x07\xa4\x6e\x70\xa4\xb0\x1b\x9f\xaf\ +\x83\xda\xcb\x69\xe4\x66\x86\x29\x5d\x07\x4f\x44\x03\x76\x69\xa2\ +\x0b\x85\xa5\x04\x0a\x85\x94\xc9\x1a\x18\x06\xca\x5d\xc4\xdb\x61\ +\x17\x33\x1c\x77\x39\x54\xe2\x67\x50\x55\x62\xa5\x2e\xc3\x31\x99\ +\x11\x42\x81\x12\xc8\x64\x0d\x74\x43\x47\x1a\x43\xcc\x71\x7c\xe6\ +\x74\x4d\x0e\xf6\x8c\x72\xda\xc4\xa9\x84\x90\x98\xca\xca\x24\xdf\ +\x28\x34\x6a\xeb\xce\x70\xec\xf0\x76\xba\xdc\x77\x18\x8f\x44\x81\ +\x68\xd2\xc5\x12\x42\x4f\x00\x7a\xc7\x46\x86\x08\x05\x86\x89\xe6\ +\xed\xe5\xfa\x60\x15\x0c\x7e\xfc\xe7\x56\x46\xe2\x31\x82\xa1\xd0\ +\x00\xc0\x5f\x20\x50\xec\x78\x0e\xd2\x32\x80\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x5a\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ +\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0c\x1e\ +\x10\x24\x17\x29\x92\x3e\x5e\x00\x00\x02\xda\x49\x44\x41\x54\x38\ +\xcb\x85\x91\x6b\x68\x53\x77\x18\xc6\x7f\xff\x73\x92\xe6\xe4\xd6\ +\xc6\x76\xb6\xcd\x22\x5d\x9a\x6a\xd3\x75\xb8\x3a\x2f\x73\x08\xf3\ +\xf6\x71\x6a\xf1\xcb\xa0\xd3\x2a\x4e\x36\x90\xae\x0e\x44\x90\x51\ +\x44\x44\x05\x41\xbc\xd4\x0f\xb2\xb9\x82\x83\x6d\xf4\x83\x28\x88\ +\xa8\x14\x8b\x46\xa5\xa2\xeb\x5a\x34\xf1\x96\xd4\xac\xd5\xb4\x5d\ +\xbc\xf4\x92\xd8\x6a\x93\x9c\x9c\x73\xf6\xc1\x45\xac\x52\x7d\xbe\ +\x3d\xef\x0b\x3f\x9e\xf7\x7d\x60\x0a\x1d\x02\xcf\x01\xb8\x7c\x08\ +\xfc\xaf\xcf\x9b\xc1\x7d\x10\x2e\x35\x43\x35\x80\x34\x15\xc0\x0e\ +\x6b\x15\x58\xac\x40\xe0\xd8\xff\x90\xdf\xc0\xad\x40\x40\x81\x25\ +\x76\xd8\xf4\x4e\x80\x15\xf6\xd9\xe0\x80\x05\xdc\x12\x04\xfe\x80\ +\x65\x12\x04\x2c\xe0\xb7\x41\xab\x02\x5b\x00\x04\xef\xd0\x71\x40\ +\x87\xfd\x06\x6c\xcd\xcd\x04\xb4\xca\xb0\xfe\x6b\xd0\xde\x0b\x00\ +\x38\x07\x1f\x66\xe0\x0e\xe0\x02\xd4\x3c\xf8\xec\xab\x97\x9e\xb7\ +\x4e\xd8\x3c\xdf\x24\x36\xcf\x93\x95\x9c\xef\x00\xb7\x19\x2e\xda\ +\xc0\x65\x83\xb0\x03\xcc\x0a\xb4\x77\x40\xd5\x6b\x89\x5e\x6a\xc7\ +\xea\xea\x6a\xab\xab\xf4\x6c\x45\x65\x75\x99\x86\xfa\x4b\x45\xd3\ +\xd1\x3d\x2a\x04\x74\xf0\x4b\xd0\x7a\x6c\x8e\xb2\xd7\x3b\x2a\xda\ +\xec\x13\x86\x67\xc1\x50\x2a\x9e\xaf\xb3\xbc\x06\xc2\xa6\x1c\xa0\ +\xb0\x74\xc6\x4f\x73\x17\x2d\xf5\xa6\xb2\x12\xa9\xf4\x58\xc3\xa3\ +\x02\xb3\xcb\x9d\x54\xfd\x02\x5a\xcf\xfb\xe4\xef\xe3\x16\x73\xaf\ +\x7d\xa6\xad\xa4\x3f\xbf\x8c\x44\xd7\x2d\x77\x5d\x7f\xaa\x11\x68\ +\x7c\x15\xbf\xfd\x70\x43\x60\x3c\x72\xc1\x98\x18\xb8\x69\x3c\x0d\ +\xb5\x19\x87\x1b\x96\xd7\x46\xa0\x3e\x02\xf2\x8f\x5f\x16\xcc\xda\ +\xb3\x75\x95\x31\xfe\x4f\x87\xf1\xfc\x61\x97\xb1\x6d\xc5\xec\x70\ +\x2f\x98\x26\xfd\xa0\x28\xdf\x76\x4b\xcf\xa4\xd0\xd3\xe3\x48\xe9\ +\xb1\x8c\xac\xbe\xb8\xe1\x87\x3f\xfd\xa0\x15\x97\x94\x26\xd7\xad\ +\xac\x55\xe5\x3c\x07\xb2\xc9\xc4\x37\x1b\xea\x7a\x7d\x90\x9d\x04\ +\xf8\xfb\xea\x95\xdd\x89\xc1\x48\x26\x3b\xdc\x47\xac\x27\x78\xba\ +\xb1\xe5\x7a\x7f\x6e\xb7\xfd\x44\xe4\xc9\xe8\x40\xdf\xaf\xea\x78\ +\x9c\xf4\xf0\x03\xda\xda\xcf\x04\xdf\x6a\xa1\xbd\xbb\x7f\xe8\xf1\ +\x84\x65\xa4\x33\x18\x66\x38\x65\x8e\xbd\x59\xe7\xd0\xd3\x78\x57\ +\x32\x1e\xe3\x61\x34\x4c\x77\xe7\x35\xc7\xab\x16\x56\xd4\x6e\x34\ +\x7f\xf7\xed\x9a\x8d\x15\xe5\x9e\x4d\xd3\x0b\x2d\x73\x06\xa3\xb7\ +\x29\xff\x64\xa1\x9a\x4c\x24\xce\xde\x0d\x85\x9a\x9d\xcf\xc3\x35\ +\x33\x6a\x96\x36\x3a\xc7\xc2\x3e\x73\xfe\x07\xf2\xbf\xb1\x3e\x4e\ +\xfd\xfe\x73\xa6\x6e\xd7\x89\x07\x8f\xae\xb4\x34\x99\xea\xd7\xd5\ +\xef\xfc\x62\xd1\xbc\x26\xa7\xc3\x02\x42\x50\x55\xe4\x01\x81\xb9\ +\xd8\x51\xb0\xda\x3a\xad\xa4\x56\x8d\x22\x0a\xbd\x95\x22\xdd\x13\ +\x03\x75\x82\xc1\xfb\xf7\x18\x88\x46\xf3\x9c\xae\xa2\x4a\xc3\x5b\ +\x75\xc4\xe4\x76\x4f\x5f\x0f\xa0\x66\x75\x24\xc0\xc8\x45\x13\x02\ +\x4d\x43\x12\x05\x1f\x91\xd1\x65\x74\xa7\x07\x64\x89\x11\xcd\x4a\ +\xf1\xa7\xcb\x78\x96\x18\x46\xb1\xda\x4a\xc4\x91\x96\x53\x3f\x7c\ +\xec\xf7\xae\xb2\xdb\x94\x99\x86\x61\x14\x6a\xba\x21\x49\x42\xa4\ +\x85\xe0\xf1\x68\x72\x2c\xd4\x13\xec\xea\x2e\xf3\xf9\x3e\xb7\x58\ +\xf2\xca\x65\x59\x38\x75\xdd\xd0\xd4\xac\xf6\x64\x64\x68\x24\x14\ +\xfc\xab\xf3\xe4\x7f\x6e\x1a\x12\x34\xb5\x87\x20\xf1\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x4f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x48\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x0a\x66\xf0\x7a\xad\xf5\x0a\x67\xf0\ +\x00\x00\x00\x09\x68\xee\x0b\x68\xee\x2f\x80\xf2\x55\x97\xf4\x77\ +\xac\xf7\x08\x67\xee\x08\x69\xee\x08\x68\xee\x08\x69\xef\x08\x68\ +\xef\x08\x67\xef\x08\x68\xef\x8b\x8b\x8b\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x8b\x8b\x8b\x4c\xd0\xce\xf3\x00\x00\x00\ +\x16\x74\x52\x4e\x53\x00\x1b\x32\x32\x34\x47\x78\x78\x78\x78\x78\ +\x79\x7a\x7b\x7c\x7d\x7e\x7f\x80\x82\x84\xb9\xf6\x5a\x93\x98\x00\ +\x00\x00\x57\x49\x44\x41\x54\x18\x19\x85\xc1\x59\x0e\x82\x40\x00\ +\x05\xb0\x2a\xf2\x00\x11\xc4\x6d\xb8\xff\x4d\x25\x2e\xc9\xfc\xd1\ +\xb2\xaf\x39\x57\x1a\x0c\x2a\x03\x7a\xaf\x47\x79\xbe\xac\x1b\x3d\ +\x3a\x07\xc5\xc1\x47\x87\xa0\xf8\x09\x82\x82\x75\x23\x08\x6d\x69\ +\x7d\x05\x51\x09\xe2\xbe\xfe\x09\xa2\x12\x44\x25\x38\xdd\x96\xe5\ +\x3a\xcf\xd3\x74\x19\xc7\x1c\xed\x7b\x03\x2c\xc0\x04\x0b\x8e\x16\ +\xcd\xfc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x7c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xf9\x49\x44\ +\x41\x54\x78\xda\x8d\x92\x4d\x6b\x13\x41\x18\xc7\x9f\x79\xd9\x97\ +\xec\xa6\xbb\xcd\xdb\x46\x52\x2b\x6d\x4a\x40\x41\xaa\xd6\x82\x07\ +\x11\xf2\x05\x04\x11\x85\x7e\x82\xa2\x07\x3d\x79\x11\xbc\xf4\xe2\ +\xc1\x8b\x9f\xc0\xb3\x62\x11\xfd\x06\x42\x41\x04\x7b\x10\xa5\x15\ +\x84\x46\x0d\x6a\x68\x0c\xd8\xa4\x6c\xb7\x99\x9d\x9d\x19\xc7\x15\ +\x2a\x94\x4d\x9b\x1f\x3c\x0c\x3c\x03\xbf\x79\xe6\x3f\x83\x94\x52\ +\x30\x8a\xf5\x17\x8f\x97\x28\x21\xdd\x0b\xd7\xee\xbe\x86\x11\x64\ +\x0a\xde\x3c\x7d\x74\x66\x38\x64\xef\xc2\x30\xca\x97\xaa\x35\x70\ +\x1c\x67\x97\xa8\xf8\xd4\xb9\xab\xb7\x07\x70\x08\x0c\x19\x48\x09\ +\xcf\x13\xa9\xf2\x12\x14\x60\xc3\x04\x2f\xa8\x79\xc4\xb4\x5f\x41\ +\x06\x14\x32\xc8\xb9\xee\xd4\xf9\xc5\x45\x40\x4e\x19\x84\xfa\x67\ +\xfc\xfc\xf3\x5b\x63\x2c\xc1\x8f\xb7\xab\xb9\x4a\xb9\x30\x40\x86\ +\x55\xa0\xa6\x0d\xa6\x61\xa5\xfd\xda\x4c\xfd\x3b\x68\x8e\xbd\xc2\ +\x16\xab\x70\xcf\x73\x3b\x80\x30\x20\x04\x1a\x05\x4a\x49\x98\xf0\ +\x26\x5a\x63\x09\x9a\xcd\x66\xa2\x12\x7e\x1f\x12\x06\x20\x19\x28\ +\x1e\xe9\x25\x4a\x08\x52\xf7\xb2\x05\x19\x14\x17\x6e\xac\xb5\xbf\ +\xb6\x12\x11\xf5\x41\xc5\x11\x6c\x7c\x5c\x67\xf9\xfa\xe5\xed\xb1\ +\x43\x4c\xb1\x0b\xfd\xcd\x4f\x1b\xe5\x98\x09\xc8\x4f\x06\xe9\xf8\ +\x63\x4f\x90\x24\x12\x9d\x9c\x3b\x5b\x68\xcc\x5f\x01\xcb\xf5\x21\ +\x98\x9e\xad\xeb\x1e\x3e\x56\xd0\x19\x88\x6a\xaf\xb7\xf7\xf0\x77\ +\x3f\xdc\x1e\xd2\x8a\xe4\xd4\x87\xe2\xf4\xbc\x32\x4a\x0d\x22\xa5\ +\x6c\x31\xc6\x1f\x70\x2e\x82\xcc\x9f\xd8\xed\x0e\x6e\x62\x4c\x9e\ +\x39\x2e\xc5\x04\x93\x34\x7d\x8c\xf1\xa1\x0f\xa6\x40\x08\x11\x1b\ +\x06\x5d\x32\x4d\xfa\xf2\x40\x30\x64\x9c\x6c\xb5\x7f\xed\x4f\x55\ +\x7d\xc3\xb6\x4c\x40\x08\xc1\x28\xf4\x04\x20\xa4\xda\xcd\xd9\x46\ +\x60\x99\x94\xa5\x47\x7c\xe9\xf4\xee\x14\x7d\xd7\xd0\x3e\xd0\xc2\ +\x23\x4b\xfe\x2d\x29\xbc\x9d\x70\xef\xfa\xc1\x2b\xec\xf4\xc2\xaa\ +\x59\x25\x52\x6f\x61\x4a\x31\x10\x9c\x99\x57\x2a\x60\x2c\x86\x30\ +\x62\x52\xe7\x34\x77\xa2\xe8\xff\xcf\x60\x65\x65\xd5\x0c\x66\x4a\ +\xcd\x4b\x0b\xb3\xb7\x72\xb6\x7d\x5a\x2a\xe1\x4a\x01\xb6\x54\x12\ +\x00\xa1\x08\xe9\xb1\xf7\x59\xbc\xf9\xfe\x43\xfb\x09\xe6\x93\x6b\ +\xcb\xcb\x17\x39\x68\xfe\x00\x58\x95\xf6\xff\x16\xb1\xc6\xc2\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x99\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ +\x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ +\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ +\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ +\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x18\x49\x44\x41\x54\ +\x28\xcf\x63\xf8\xcf\x80\x80\xc2\x7e\x0a\xc7\x94\xce\x48\x4d\xe3\ +\x14\x40\x88\x21\x49\x73\x4a\x29\x9e\xf7\xff\x1f\xf7\xdf\xfb\xbf\ +\xc2\x11\x4e\x09\x0c\x05\xa2\x5d\xaa\x1f\x6c\xff\x07\xfd\xd7\xff\ +\x6f\x0f\x54\x22\xb5\x0e\x4d\x01\x8f\xbb\xda\xcf\xc0\xff\x5e\xff\ +\x0d\xfe\x6b\x02\xa1\xd9\x7f\xe3\x1f\xbc\x9e\x28\x0a\x44\xba\x2d\ +\xfe\x3b\xfc\x57\x83\x43\x93\xff\xe2\x0b\x50\x14\x88\xef\x77\xfe\ +\xaf\xf1\x5f\x19\x0e\x35\xfe\x4b\x1d\x41\x51\x20\x76\xcb\xfa\xbf\ +\xe2\x7f\x79\x24\x28\x76\x1d\x45\x81\xf0\x11\x4d\xa0\x3e\x19\x24\ +\x28\x30\x17\x45\x01\x77\x99\xf4\x7f\x95\xff\xd2\xff\x25\xa1\x50\ +\xf8\x3e\x87\x2b\x8a\x02\x06\x16\xae\x3e\xe1\x6f\xa2\xff\x41\x50\ +\xe4\x3f\x67\x27\x13\x0f\x96\x80\x62\x4b\x11\xf8\x2b\xf4\x1f\x04\ +\x59\x03\xb1\x84\x24\xb3\x01\xc7\x46\xfe\xff\x10\xc8\x75\x82\xd5\ +\x8f\x81\x11\xae\x80\x81\x9d\xb5\x80\xfd\x88\xf0\x4f\x37\x60\x30\ +\x71\x83\xa1\xd7\x7f\xeb\x7f\xbc\x17\x58\xab\x18\xb9\x40\x96\xe7\ +\xb3\xdf\xd4\x02\x06\xae\xdb\x7f\xb9\xff\x1c\x50\xc8\xfd\x5f\xef\ +\xbf\xc7\x7f\xed\xff\xdc\x0f\x58\x2a\x18\x58\xbf\xd9\x01\xc3\x8d\ +\xef\x3f\x2b\x06\x14\x03\xfa\x8b\xf3\x17\x03\x2b\x30\x7a\x18\x71\ +\x40\x90\x32\x00\xe9\x5b\xf9\x39\xdc\xf0\x5b\x77\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x0e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\x01\ +\xcb\xc7\xa4\xb9\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ +\x12\x14\x17\x8c\x68\x16\x98\x00\x00\x03\x8e\x49\x44\x41\x54\x38\ +\xcb\x4d\x8e\x5b\x4c\x9b\x65\x00\x86\xdf\xef\xfb\xfe\xf6\x6f\x4b\ +\x4f\x6b\x29\x42\x39\x8f\x8d\xb0\x8c\x11\xad\x81\xad\x90\x11\xdd\ +\x16\x06\x86\x45\x13\x33\xa3\x31\x31\x63\x1e\x61\x73\x26\x8b\x87\ +\x18\x4f\x89\x17\x66\x17\x64\xcb\x12\x13\x8d\x17\xba\x78\x41\x62\ +\xb2\xc5\x71\xb1\x6c\x03\x36\xb6\x0a\x09\x68\x6d\x44\x91\xb1\x60\ +\x38\x15\x28\x07\x01\x5b\x7a\xfa\xfb\xff\xdf\xf7\x79\x31\x31\xbc\ +\x57\xef\xc5\x9b\xe7\x7d\x48\xf0\x64\x23\x74\x55\x03\xc9\x50\x90\ +\x2c\x43\xf4\x76\x06\x6a\x89\xe1\x68\x09\x7a\xde\xac\x1c\xfc\xfd\ +\xbd\xcd\x53\x4d\x13\x71\xaf\x63\x6c\x61\x62\xf3\xfb\x96\xce\xda\ +\x08\x6f\xba\xec\x87\xce\x7b\x28\xd0\xf5\xf6\x95\xd8\x04\x8b\x86\ +\xe6\x71\x63\xe8\x47\xd8\x6d\x56\x22\x34\x60\x57\x85\x75\x77\x53\ +\x47\xd5\xf5\xdd\xcb\x6b\xa7\x1d\xc3\xd3\x79\xae\x89\x85\x0a\xe5\ +\x44\xe9\x21\x47\xad\xeb\x95\x58\xef\xa4\x52\x3a\x32\xdb\xcd\x80\ +\x27\x2d\x80\x78\x67\x73\xf8\x26\xfb\xe9\xe1\x30\x16\xc2\x09\x0c\ +\xdd\xbe\x8f\xb9\x07\x09\x56\xdf\x59\x7a\xd5\x51\xa9\x1c\x4e\x1d\ +\xc8\x37\xd4\x8c\x41\xdc\x91\x65\x62\x1f\x9a\x47\xae\xce\xa5\x54\ +\x7d\x17\x79\x5a\xdd\xca\xe5\x9b\x81\x9e\xa5\x86\x92\xae\x78\x4b\ +\x91\x20\xc1\xb3\xf5\x20\xaa\xa4\x5c\x93\x82\x1a\xac\xd9\xd5\x40\ +\xef\xab\x56\xc6\x29\x55\xa8\x62\xa6\xa4\xee\xca\x5f\xd8\xd3\x1b\ +\xc5\x76\x62\x7b\xdd\xd1\xd2\xa9\x7f\x2a\xef\xca\x26\xf1\x15\xd9\ +\x27\x95\x5c\x5e\x1a\xd4\x26\x21\x05\x80\xa4\xb9\x2c\xc5\x0d\xa4\ +\x34\x09\xc6\x28\x31\x49\x86\xc8\x71\x17\xaa\xfb\x17\xa1\xa6\x05\ +\x04\x23\x08\x9f\x78\x2c\x7e\xfe\xe2\x39\x09\xa2\xca\x06\xff\x20\ +\x48\xe3\xd9\x00\x68\x9e\xa0\x52\x87\xa0\x9a\xe9\x88\xad\x21\x77\ +\x47\xb1\x13\x61\x56\x14\xe2\x8c\x73\xd2\xfe\xe1\x03\xb8\x16\xb3\ +\xd8\x2c\xb6\xc0\xbb\x98\x45\xce\xc6\xb2\xce\x34\x7f\xe2\xba\xac\ +\x7b\xd8\x4d\x5a\xa5\x62\x8d\xed\x42\x72\x45\x17\x93\x43\x14\x36\ +\x28\x23\xcd\xc1\xe4\x78\x9e\x97\xd6\xda\x37\x0c\xd1\xfa\xd1\x9f\ +\xc4\xb1\x98\xc5\xf4\x91\x7c\xdc\x7a\xb9\x44\xec\xbd\x3c\x4d\xdd\ +\xcb\x39\x4b\x7d\x96\xdf\x7d\x41\x1d\x3f\x36\xd6\x4d\x26\x68\xec\ +\x5a\x25\xea\x3e\xd6\x71\xb2\xd7\xa0\xad\xd7\x32\x69\xbe\x64\xba\ +\xe8\xc9\xb3\x22\xd0\xb3\x42\x7c\xd1\x0c\xd6\xda\x0a\x31\xf4\xd9\ +\x3e\x61\x29\x73\xd2\x99\xf7\x0f\x8c\x9c\x5f\xad\x51\xfb\x8b\x2d\ +\x45\xf6\x9c\xe8\x4a\xf4\x39\x40\x02\x2d\x41\x38\xb8\x13\x91\x3b\ +\xeb\xd8\x42\x18\x00\xe8\x07\x03\x6d\x7d\xe5\xd2\x75\xb4\xe8\xb7\ +\x65\x31\xd9\x6e\x27\x4b\x1b\x29\xf0\x24\x21\x6b\xc3\x7a\x9b\xbd\ +\x10\xb7\x04\x40\x0d\x0d\xc2\xfb\x6b\x0d\xc8\x8b\x4f\xbd\x8a\x85\ +\x30\x50\xf3\xf9\x12\xcc\x1e\x49\x39\x72\x62\x2b\x26\x8e\x06\x9f\ +\x2d\x1f\xb0\x9b\x9c\x72\x4d\x5f\x12\xab\x89\x2d\x16\x9f\xd6\x6f\ +\x7e\xf3\x52\xf5\x33\x53\x58\x25\xd5\x64\x56\x02\x9f\xa2\xe1\xb9\ +\x2f\x40\x00\xa0\xf1\xf8\x61\x24\xa6\x6d\x58\x99\x5f\xc7\x9a\x16\ +\x06\xe0\x36\x7f\x72\xaf\x39\x52\x50\xe2\xdc\x9f\xd1\x33\x7a\x2c\ +\xb6\x6e\x5a\x09\xa3\xd3\x55\x41\xbe\x96\x42\xd2\x5c\x5a\x88\x82\ +\x8e\x10\xc6\xdd\xe7\x1e\x01\x6a\xe9\x19\x3c\xde\x15\xc5\xe9\x77\ +\x8f\x61\xb4\x7f\x86\xaa\xaa\x59\x84\xfa\x22\x57\xab\xf7\x57\x3e\ +\x9f\xd5\x72\x46\x55\x45\x8d\x72\xe9\xc2\x97\x87\x74\x43\x1f\xcd\ +\xf7\x79\xa9\xc2\x14\x61\xc4\x3d\x18\xfb\xe3\xde\x23\xc0\xce\x9c\ +\x79\xe3\x2d\xe6\xf3\xf9\xf8\xcf\xe1\x5f\xbe\x6d\x3c\x78\xb0\xc3\ +\x5f\x5c\xce\x8b\x8a\xfd\xbc\xad\xbd\xb5\x16\xc0\x94\x55\xb5\x90\ +\x8c\x96\x95\xdb\x7b\xba\x5d\xfc\xfe\x42\xbc\xfe\xda\x29\x08\x66\ +\x60\x23\xf1\x37\xc0\x44\x32\xad\xa7\xa0\x58\x29\x99\x5b\x98\x11\ +\x00\x0c\x00\xc8\x19\x59\x94\x96\x16\xff\x7f\xb8\xd3\x80\x01\x30\ +\x33\xc6\x2c\x9c\x73\x56\x50\xe0\x2b\x0b\x04\x02\x3f\xb8\x5c\xee\ +\x3d\xb3\xb3\x73\x17\x46\x47\x47\x2e\xa9\xaa\x0a\x4d\xd3\x32\x00\ +\x34\x00\x3a\x00\xc9\x76\x00\x4c\x00\x6c\x52\x4a\x07\xa5\xd4\x9b\ +\x4c\xa6\xa4\x6a\x56\x87\x3d\x5e\xcf\x60\x28\x14\x1a\xe0\x9c\x3b\ +\x39\xe7\xdb\x7b\xfe\x9f\x91\xfc\x17\xb9\x74\x8f\xb8\x3b\x01\x1d\ +\xdc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x5f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xdc\x49\x44\ +\x41\x54\x38\x8d\xa5\x53\x4d\x6b\x13\x51\x14\x3d\xf7\xa5\xf3\xc1\ +\x64\x66\x60\x5a\x5a\x4b\xfd\x28\x96\x66\x51\xb1\xc5\x56\x02\x82\ +\x74\x11\xc4\x65\xdd\xfa\x13\x8a\xb8\x70\xe9\x4a\x14\x7f\x41\x57\ +\x2e\x0a\x82\xe0\x4a\xb2\xad\xae\x84\x86\x22\x88\x46\xe2\x47\xc1\ +\xd8\x42\x95\x68\x28\xd1\x36\xe9\x64\xd2\x24\xf3\xf5\xde\x73\x65\ +\x6a\xed\x34\x28\xde\xdd\xbd\xe7\x70\xee\xb9\xef\x71\x48\x4a\x89\ +\xff\xa9\x81\x7f\x21\xd3\x02\x9d\xd4\xf4\xd4\x05\xdb\x31\x8d\x1f\ +\xcb\x6e\x1e\x00\x28\xc9\x01\xe5\x48\x87\x89\x99\xb3\xd3\xa3\xf3\ +\x63\xe3\x43\xf3\xce\x88\x75\xde\xb1\xec\x53\x43\xb6\xa3\x0d\xa6\ +\x1d\xbc\x7a\x51\x7e\xb3\xb2\x58\xc8\x1e\xeb\x60\xf6\xda\xf8\xe2\ +\x95\x4b\xb9\x25\x06\x05\x7e\x10\xa1\xe3\x07\xe8\xb4\x7c\x7c\xa9\ +\x79\x58\x6f\xd5\x50\xa9\x7e\x6b\xf4\x3d\x41\xb1\x14\xac\xbe\x7d\ +\x87\x46\xe8\xa2\x19\x37\xe1\x86\x4d\x08\x2e\x02\x44\xf8\xc8\x38\ +\x6d\x29\x6d\xe6\xf5\x15\xf0\x29\x50\x36\xbf\x57\x5e\xfb\x6a\x54\ +\x80\x86\xf7\x50\xf1\x01\x6d\x7c\x92\xf7\x65\x3c\xf9\xe4\xc4\x65\ +\xaf\xd4\xb9\xd3\x57\xc0\x1e\xb6\x42\xb5\x50\x2f\x76\x1f\x87\xb7\ +\xff\xc4\x4c\xd2\x11\x30\x4e\x7d\x05\x0c\xa6\x33\x22\x50\x12\xa6\ +\xa5\x4c\xa6\xa7\xe2\x1e\xc6\x92\x48\x9c\x4b\x76\x0c\x84\x38\x8c\ +\x28\x12\x07\x3f\x97\xc8\x6a\x86\x5d\x70\xc1\x13\x05\xf6\xa2\x7d\ +\x74\xa2\x6e\xaf\x4f\x3c\xa1\x11\xb4\xc1\xa5\x38\x34\xcb\xed\x90\ +\x59\x5d\x43\xa6\xbe\xa1\x4e\x86\xf1\xc1\xde\x44\x07\x6e\xd0\x42\ +\x2c\xe2\x5e\x9f\x79\x40\xd7\x47\xb7\xe7\xaa\xe9\x09\x94\x54\x23\ +\x7c\xe8\x7f\xf6\xb5\x23\x0e\xe6\xf2\x34\xcc\xce\xe1\xde\x7e\x05\ +\xd3\xc1\x06\x46\xe2\x1d\xda\xfa\x85\x05\xbb\xc8\x96\xbf\x96\x2c\ +\x63\x96\xc1\x1a\xc3\x4b\x4f\x13\x37\x8f\x08\xd4\xb7\xf1\x74\x61\ +\xe6\x6a\xb6\x3c\x55\x84\xb7\xee\xc6\xed\x48\xde\x05\x00\x22\x32\ +\x00\x2c\xd7\x32\x28\x8a\x3d\xb2\xf9\x2e\xdf\x04\xd0\x22\x22\x26\ +\xa5\x14\xbd\x2c\x9c\xbe\xa5\x5e\x4c\x4f\x89\x1b\x03\x67\x10\xd6\ +\x1e\xf1\x67\xf5\x3c\x9e\x4b\x29\xfd\xc4\x97\xfc\xad\x0e\x85\x89\ +\x88\x52\x00\x08\x00\x97\x7f\x99\xf3\x9f\xf1\xc3\xc9\xfa\x1d\x76\ +\x03\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x9e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x1b\x49\x44\ +\x41\x54\x78\xda\x7d\xd1\x4f\x48\x14\x51\x00\xc7\xf1\xef\x9b\xf7\ +\xe6\x9f\x9a\xba\xea\x96\x66\x50\x87\x82\x82\x22\xf0\xa0\x75\x08\ +\x2a\x85\x40\x32\xf1\xd0\x45\xbb\x75\x0e\xf5\xd2\x25\x0a\x3c\x75\ +\x8f\x8e\x9d\x0c\xba\x75\x50\xea\xe4\xa1\xa2\x53\x1d\x54\x84\xb2\ +\x32\x63\xc1\x64\x3b\xe4\xfa\x27\x75\x76\xd7\xd9\xf7\xda\xb7\x41\ +\xec\xb0\x5b\x1f\x18\x06\x86\xe1\x3b\xbf\x99\x11\xc6\x18\x44\xfa\ +\xdc\x93\xa3\x5e\xee\x76\x14\x45\x6c\x86\xa7\xe0\xec\x18\x35\x1a\ +\xb7\x48\x0d\xcc\x71\xb5\xef\x38\x99\x6c\x96\xf9\x85\x8d\x17\xfa\ +\xfe\xe2\x90\xa2\x42\x9f\xbc\xdc\x3f\xc0\xdd\x07\x0f\xa9\x27\x36\ +\x07\x8c\x2d\x0d\x32\x72\xe6\x06\xa3\x5d\xa3\xbc\x69\x7e\x45\x7b\ +\xeb\xcb\xeb\xe2\xa9\xb8\xa3\xb0\x7e\x7e\xdc\xfa\xb0\xdc\xc2\xcd\ +\xc1\x2b\x94\xd2\x3d\x34\x9c\xbf\xc5\x41\x49\x53\x8c\x0d\xd6\xee\ +\xe1\xd7\x14\x2f\xac\x33\x97\x9d\x65\xa4\x7d\x80\xf5\xec\x5b\xa2\ +\x78\x05\x91\x17\x93\x8a\x3f\x16\x5b\x3b\xba\x86\xd7\x36\x0a\x34\ +\xfb\x29\xc2\x96\x34\xdd\x4d\x2e\xeb\xb9\x02\xd6\x5e\x7a\x87\xa9\ +\xce\x29\xc6\xfb\xc6\xb1\x7a\x8f\xf4\x63\xb5\x7d\x6a\xeb\x72\xa8\ +\xa2\xe3\x18\xe9\x38\x68\xe3\x94\x9f\x0e\xed\x87\x7c\x7c\x57\xd1\ +\xa8\x4f\x30\xf1\x75\x82\xd3\xcf\x05\xef\xd6\x66\xb8\x37\x7b\x91\ +\x4b\x33\x82\xcd\xf4\xe6\x5a\x32\xa0\x4b\x48\x29\xf1\x5c\x97\x7c\ +\xec\x10\x94\xcf\xbe\xe7\xd2\xb9\x33\x48\xe0\x1f\x23\x13\xc2\x5e\ +\x09\xb2\x21\xbc\xf7\x00\x8f\x47\x89\x80\xfd\x23\xca\x71\xec\x53\ +\x2b\x47\xb1\x24\xe8\xb0\x2b\x94\x4f\xcf\x97\x69\xc2\xdd\x3e\xae\ +\xcd\x8f\xf2\xec\x57\x86\x70\x69\x68\xd5\x0c\x9b\xc7\x8a\x04\x83\ +\x94\x8e\x5d\x50\x75\x05\x9a\x02\x59\x8e\x75\xd3\xbb\x3a\x8d\xe5\ +\x08\x58\x59\x5e\xf8\x0e\x90\x08\x38\x80\x52\x92\x86\xc0\xa3\x9a\ +\xaf\x04\x9e\x36\x68\x4d\x85\x10\x02\xd7\xf3\xa9\x0d\x54\xe6\x7b\ +\x34\x85\x01\xd5\x84\x30\x04\x42\x60\x34\x68\x40\x00\x5e\xbd\x80\ +\x72\x5d\x5a\x53\x29\x1a\x43\x9f\x24\x3b\x5b\x00\x06\x6d\x0c\x20\ +\xca\x01\xaf\x36\xe0\x4a\x45\x18\x04\x34\xf8\x3e\xf5\x48\x61\x03\ +\x02\x83\xc1\x75\xeb\x2d\x50\x0a\xc7\x18\x42\xdf\x23\x29\xf9\x3a\ +\x18\x81\x5b\x6f\x81\x54\x92\x7c\x7e\xdf\x7e\xc8\x7f\x07\xfe\xde\ +\xeb\xd6\x06\x10\x0e\xf9\x42\x9e\x42\xf1\x80\x84\xba\x4b\x64\x22\ +\x90\xd9\xdd\xd9\x22\xda\xdb\x66\x23\xb7\xcd\xe7\xd5\x6f\xfc\x4f\ +\xb1\x14\xb3\x1f\x45\x3f\x00\x7e\x03\xd0\x4f\xb5\x1d\xf3\xfe\x36\ +\xa3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x09\xa4\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ +\x01\xcb\xc7\xa4\xb9\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\ +\xff\x00\xff\xa0\xbd\xa7\x93\x00\x00\x09\x16\x49\x44\x41\x54\x78\ +\xda\xa5\x95\x79\x6c\x5c\xd5\x15\xc6\xbf\x7b\xef\x7b\xf3\x66\x73\ +\xc6\xc6\xf1\x6e\x27\x71\xbc\x60\x67\x77\x20\x61\x29\x90\x36\x6d\ +\x21\x45\xec\x81\x28\x08\x68\xd5\x4a\x48\x2d\xfc\x51\x84\xaa\xaa\ +\x82\xf2\x47\x05\x14\x24\x4a\x1b\xa9\xa5\x11\x34\x40\x49\x89\x13\ +\x12\xf6\x00\x21\x25\x90\x06\x48\x20\x6e\x20\x8b\x21\x4e\xbc\xc4\ +\x8e\xb1\xe3\x2d\xce\x78\xec\xf1\x2c\xef\xbd\x7b\x4f\xef\x1b\xd9\ +\xd5\x28\x1a\x03\x12\xbf\xf1\xf7\xce\xbd\xb2\x47\xe7\x3b\xdf\x9d\ +\x3b\x66\xc8\xc1\x86\xfb\x1e\xc2\x7d\xcf\xfe\x0d\xf9\x91\x02\x30\ +\x00\x0d\xf3\xe6\xe2\x70\xcf\x11\xa4\xfa\xa2\xf0\x88\x84\xab\x8b\ +\xcb\x6b\xf3\x6b\x22\x45\x81\x4a\x9f\xdf\x9c\x25\x5d\x65\xc7\x46\ +\x92\x7d\xfd\x27\x63\x6d\xd1\x89\x8e\x41\x68\xea\xd6\x5c\x88\x65\ +\x35\x75\x18\x1d\x49\x02\x8c\xc1\x99\x14\xb8\x72\xbd\x85\x3f\xde\ +\xf9\x26\xb2\x61\x38\x8f\xdf\xac\xff\x15\x0e\x9c\x3b\x89\x54\x22\ +\x0d\x27\xa1\x90\xc7\xc2\x28\xfc\xf9\x20\x36\xdf\xdb\x8a\x8b\x2f\ +\x5c\xb2\xa0\x66\x65\xd1\xba\xca\xfa\x82\x1f\xe7\x17\x87\x6a\x02\ +\x79\x66\x44\x98\xdc\x04\x48\x25\x27\x9d\x89\xe8\xe0\x64\xd7\x99\ +\x8e\xe8\xae\xfe\xd6\xf1\xe6\xa3\xdf\x6f\x39\xb9\x72\x72\x01\xea\ +\xe3\x4d\x48\xf7\x87\xe0\x04\x13\x30\x4f\x57\x81\xed\x7a\x0a\xdb\ +\x57\x8c\x03\x67\x66\x30\xb0\xfe\xf6\xdb\x20\x99\xc2\xe0\xe9\x18\ +\xa2\xfd\x49\x7c\xd1\xb3\x1f\x0b\xb0\xc6\x37\xeb\x9a\x89\xbb\x16\ +\xfc\xa0\xec\x81\x8a\xfa\x82\xf9\xba\x31\x11\x57\x4c\xc2\x81\x22\ +\x17\xc4\x14\x38\xe3\xe0\x24\x28\x15\x97\x6c\xa0\x23\xd6\x79\xfa\ +\xf0\xb9\x47\x6b\x0b\xab\x9b\x3f\x7c\xa6\xcb\xae\x5c\x35\x0b\x3e\ +\xc3\x42\x68\xb8\x0a\x21\x11\xc2\xf3\x9f\x3e\x86\x69\x04\xb2\xb8\ +\xe1\x96\xeb\x11\x4f\xda\x48\xc5\x09\xf1\x5e\x85\x23\xdd\x7d\x58\ +\x17\xf9\xa9\x21\xaf\xed\xbd\xbf\xe9\xc6\xca\x27\xca\x16\x44\x8a\ +\x94\xa9\xf3\x56\x0e\x1c\x65\xc3\xd5\x72\xa4\x03\x57\xcb\x71\x6d\ +\xd8\x32\x4d\xcc\x22\xca\x2f\x0f\x16\x06\x0a\xcc\xab\x4f\xf7\x0e\ +\xa4\x56\xff\xb2\xfa\xb3\xe7\x63\x3b\xe4\xbe\x8a\xb7\x50\xd1\xe0\ +\xc7\x5f\x57\x3f\x89\x1b\x9d\x9b\x70\xb2\xf3\x04\x3c\x0c\x64\x13\ +\x20\x54\x86\x0a\xb0\xf1\xd2\x27\x50\xbe\x73\x29\x43\x7a\x98\xba\ +\x1b\x0e\xde\xdc\xf0\xa3\xd9\x0f\x59\x95\xcc\x8a\x25\xc7\x15\x17\ +\x5c\x0f\xcb\xc1\x19\x88\x31\xfd\xc3\x00\x10\x30\xf5\xe4\xae\x74\ +\xb5\x29\x29\xf3\xab\xfd\xc1\x72\x19\x79\xf0\xe0\x07\xdd\x3d\xec\ +\x5f\x6c\x07\xc2\xb3\xf1\x52\xcb\x9d\xf8\xf5\x9e\xeb\xf1\x65\x65\ +\x2c\x77\x02\x17\x36\x34\x62\xc0\x19\xc5\x53\x1f\x6d\x45\x6c\x9f\ +\x1f\x75\xb3\xea\x4b\x8a\xaf\xe3\x1b\x02\x75\x7c\x7e\x32\x9d\x94\ +\xc4\x95\x70\x49\x91\x9e\x99\x39\x90\xcc\x65\x4a\xaf\x08\x12\x9e\ +\xa0\x77\x04\x2d\xd2\x7b\x6e\xbb\xae\x34\x22\x22\x90\x8c\xdb\x45\ +\xc5\x89\xb9\xbb\xac\x9e\xbc\xc9\xf6\x53\x51\xa4\x53\x02\x10\x84\ +\x8e\xcf\x4e\xe5\x48\xc0\x90\xd8\x37\xf6\x01\x6a\xab\x6b\x59\x28\ +\x5f\x91\x3f\xe4\xbf\x8a\x95\xb3\x95\x71\x77\x92\x4c\x32\xb8\x4d\ +\x0e\x18\x13\x8c\x0b\x06\xc6\x19\xbc\x0a\xa6\xd7\x40\x46\x1c\x99\ +\x35\x83\x86\x14\x71\xe2\x80\x51\x89\x4b\x65\x91\x73\x49\x7c\xe1\ +\xf0\xce\x3e\xd7\xc7\xf6\x7e\x78\x92\x6e\xff\xde\x5a\x68\x72\x18\ +\xe0\xc0\x3d\xe3\xf7\xa3\xf9\x4f\x7f\xa6\x89\x02\xa0\xfc\xe1\x0b\ +\x56\x3a\x7e\x12\xcc\x35\xa4\x4b\xae\x50\x20\x70\x2f\x7e\xc9\xa0\ +\x7d\x64\xea\x34\xa4\xc5\x3c\x79\x86\xc8\x33\xa0\x0b\x91\x72\x2d\ +\xe9\x67\xc5\xea\xe2\xc4\xed\xdd\x3b\x89\x80\x27\x9e\xfe\x3b\x5a\ +\x12\x7b\x72\x1b\x20\x05\x0c\xd9\x23\x88\x2e\x24\xbc\x07\xf0\x07\ +\xef\x5b\x56\x91\xf6\x02\x75\x25\xa4\x92\x70\x95\x82\x10\x1c\x5c\ +\x4b\x78\x26\x78\xb6\x01\x02\x11\x41\x11\xc0\x74\x35\x20\x74\x65\ +\xe4\x78\xef\x0b\xf2\xca\xd8\x9d\x40\x0c\xa0\xd6\xbf\xb4\xc2\x25\ +\x99\xdb\x00\x97\x1c\x48\x19\xf0\x18\x87\x86\x28\x73\xc2\x92\x98\ +\xf7\x04\x13\x94\x89\x5d\x64\x2a\xc0\xd9\xb4\x01\xaf\x31\x81\x3c\ +\x29\x05\x0e\x8e\xa0\x30\x61\x72\x03\x49\x96\x86\xe3\x23\x41\x8c\ +\x3c\x43\x70\x03\x69\xc0\x97\xdb\x40\xc6\x75\x71\xa2\x02\x21\x62\ +\x48\x00\xea\xb2\x7b\x96\x0f\x59\x86\x02\x37\x00\x1f\x13\x99\xe9\ +\x0d\x21\x90\x31\xc1\x39\x18\xb4\xa6\xa6\x57\x9e\x48\x41\x4a\x05\ +\x1f\x0c\x84\xb8\x1f\x82\xf1\x4c\x7a\x13\x69\xd5\x57\xf2\x1f\x86\ +\xf9\xef\x83\xcd\x49\xd7\x52\xbb\x3a\x3b\x43\x02\x8c\x63\x63\xd3\ +\x23\xa8\xbd\xb7\x8c\xb9\x93\x44\x2c\xe1\x3b\x1c\x00\xc1\x08\x78\ +\xc3\x32\x12\xc2\xbb\x81\x99\x23\xc8\x4c\xef\xbd\xb2\x0d\x48\xc9\ +\x20\xb9\x36\xa9\x0c\x10\x40\x4a\x48\xe1\x26\x95\xeb\xf4\x8b\x43\ +\xc1\x47\xe7\xc1\xba\xc0\xc0\xe3\x65\x0f\x60\xad\x73\x73\x6e\x03\ +\x92\x14\x56\x4c\x5c\x81\x64\x87\xc4\xd0\x51\x20\x39\x37\xf4\x71\ +\xe1\x55\xb2\x2b\x5c\xc6\x6b\x48\x42\xe9\xc9\x99\xd7\x5c\xfb\x00\ +\xa6\xdb\x4f\x9f\xbf\x22\x38\x1c\x70\xc8\x5b\x03\x92\x24\x81\x13\ +\xb3\xcf\xd2\x17\x89\x8f\x22\x07\xe3\x51\x0b\xf9\x4d\x44\xab\xe6\ +\xcd\x01\x09\x85\x69\x38\xb2\xf0\x22\x9b\x3f\xbb\x14\x75\xe7\x2e\ +\xa2\xeb\xe9\x13\x2c\xe9\xd9\xd3\x95\xec\x10\xaf\x58\xcc\x40\x38\ +\x68\x52\x28\x60\x42\x8b\x82\x01\x1f\x82\x7a\x1d\xf0\x0b\xf8\x3d\ +\x59\x02\xa6\x99\x31\xe6\xa5\x48\x5a\x10\x3e\x40\xa5\x25\xe2\xed\ +\x6c\x7b\xf4\x9d\xdd\x03\x15\xff\xde\x87\xcb\xcc\xd5\x28\x0c\x87\ +\x01\x97\xe5\x4e\xc0\xa3\x4c\x71\x6c\x9b\xb5\x17\x81\xc6\x26\xd6\ +\x7d\x22\x45\x8b\xe6\xf9\xff\x59\x7a\x91\x7b\x6b\xfe\x12\x73\x3e\ +\xb9\x4c\x99\x86\xc9\x0d\x6e\x00\x04\xb8\x70\x32\xb7\x43\x29\x42\ +\x8a\x48\xef\x38\x4c\xa6\x31\x98\xf2\x07\xc1\x47\x3a\x71\x6c\x64\ +\x57\xa8\xb9\xf7\xd9\xe5\xb0\x1a\x4d\x1c\x28\x7d\x0f\xbe\xae\x21\ +\xcc\xab\x58\x96\xfb\x9b\xf0\xf8\x97\x6d\xa8\x59\xbc\x08\x8b\x17\ +\xce\x41\xd5\xfb\x6b\x50\xdf\xfe\x16\x4b\xfd\xee\xc4\x88\xf3\x74\ +\x95\x51\xbe\xd4\x77\x4d\x28\xe2\xa3\xa0\x08\x20\x6c\x84\x99\xdf\ +\xb0\x20\x04\x03\x17\x00\x63\x80\x94\x04\xc7\x06\xa0\x38\x85\x82\ +\x06\x43\x42\xe1\xf4\x4e\xf5\xfb\x81\x8b\x3f\xde\x5b\x7f\x6d\x8a\ +\xed\x3e\xdb\x81\xd3\x2b\xf6\x21\xdf\xaa\x40\xf3\xd6\x6d\x33\x27\ +\x00\x02\x86\xdb\x93\x68\x9f\xfb\x1a\x46\x1b\x1a\x69\xc8\x19\x42\ +\x04\xd6\xe6\xaa\x4b\xe4\x0d\x8d\xd7\x84\x56\x99\x76\x40\xf9\x29\ +\xcc\x88\xc8\x9b\x16\x69\x00\x29\x46\x48\xeb\xb8\x85\xae\xa6\xc1\ +\x29\xe8\xe7\xfc\xab\x83\x6a\x57\xeb\xf6\x92\x1d\x63\xb8\x02\x56\ +\xd0\x47\xb7\x2e\x5d\x83\xa2\x1e\x0b\xcc\x27\x91\x0d\xc7\x79\x6c\ +\xd9\xf6\x12\xc2\x45\x06\x0e\x9c\xbc\x0d\x43\xfc\x13\x2c\xbf\x4b\ +\x30\x5a\x7e\xf8\x6c\xdb\xcb\xf6\x93\x89\x41\x95\x0c\x06\x4d\xee\ +\x83\x8f\x2c\x66\xc1\xaf\x65\x71\x13\xa6\x10\x99\x5b\x61\x30\x41\ +\xa1\x90\xe0\xe9\x61\x15\xef\x7e\x97\x36\xd8\x73\xf6\x8f\xd7\x5f\ +\x7d\x86\xf5\x24\x3e\xc0\x27\x07\xde\x45\x9e\x15\xc0\x9b\x5b\xde\ +\x46\x36\x02\x39\x58\xb1\x78\x29\xf6\xbd\x31\x88\x82\xd9\x73\xd1\ +\xf9\x5a\x10\xa3\x03\xc7\xd1\xd7\xb5\xb8\xa7\x7a\x51\xba\xb1\xac\ +\x21\xb8\xc8\x90\x7e\xc5\x94\xc1\x15\x24\x5c\x72\x32\xff\x92\x53\ +\x29\x09\x5d\x94\x4f\x70\xde\xf7\x69\xfa\xe5\x3d\xcf\x2d\xdb\xe0\ +\xc4\xee\x56\x85\x7d\x23\xb8\xec\xba\x85\x38\xf5\xc6\x87\x48\x28\ +\x85\xcf\xbf\x38\x9a\x3b\x81\x6c\x9e\xdd\xf2\xa2\xfe\x63\x17\xbb\ +\x77\xbf\x8e\xc1\xd2\x83\x68\xba\x69\x09\x2b\x59\x72\xdc\x6e\xdf\ +\x6d\xbf\x30\x7a\x26\x91\x52\xa6\x2d\x14\x29\x62\x4a\xc0\x13\x29\ +\xa6\x2b\x27\x7d\x1b\x44\x6a\x54\xda\xfd\xff\x95\x5b\x2b\x2e\xdf\ +\xe9\x2c\x5e\xfb\x30\x6b\x9f\xfb\x36\x7e\xd1\x9c\x44\x97\x11\xc3\ +\xa6\x6d\x9b\x71\x3e\x1c\x33\xe0\x23\x8e\x5b\xee\x58\x87\x9f\x5c\ +\xb9\x0a\x63\xfb\xf3\x69\xe8\x98\x3e\x96\x77\xe8\xe0\x70\x67\xe2\ +\xf3\x34\x26\x61\x53\x8a\xa4\x92\x20\x05\x30\xc9\x61\xc0\x20\x3d\ +\x3d\x26\x06\xdc\xe3\xa7\xde\x34\x5a\xfa\x0f\xe4\xc3\x3e\x51\x48\ +\x3f\x5c\xbe\x1a\xdb\xef\x8e\x20\x00\x03\x9a\x6f\x6f\xe0\x99\x2d\ +\x9b\x91\xc7\x04\x42\x86\x09\xff\x48\x09\x88\x2e\x80\xa2\x8f\xa2\ +\xd1\x7e\xf7\x4b\xcf\x40\xda\x8a\x92\x6d\x8d\xc3\x35\x12\x50\x22\ +\x05\x12\x09\x12\xc2\x45\x6a\x84\x3a\x86\xd0\x30\x0a\x3c\x07\xff\ +\x70\x09\xf2\xbc\xd6\x04\x6c\x7c\xf1\x05\xe4\xc2\xc0\xd7\x10\xb7\ +\x53\x60\xe0\x68\xc3\x0e\xd4\x5c\x5e\xcc\xe3\xf1\x90\xaa\x9a\x3d\ +\xda\xeb\x9c\x11\xa8\xa8\xc9\x03\x41\xc1\xf4\xe5\xc1\x34\x8a\x50\ +\x10\x2a\xc0\xb1\x96\x36\x74\x1e\x1e\x69\x45\xe5\x3f\x64\x59\xd9\ +\x8b\xec\xc8\x23\x09\xba\x75\xd3\x5a\x8c\xf9\xc6\x31\x13\x1c\x5f\ +\xc3\xab\x3b\x5e\x87\x47\x7e\x5e\x04\x7d\x2d\x63\x18\x6e\x9d\xc4\ +\x67\x7b\x8f\x1c\x8a\xb5\x02\x0b\xc4\x15\x8c\x9d\x98\x8d\xdd\x1b\ +\x8e\xa0\x7b\x57\x1c\xbf\x5d\xf7\x38\x1a\x23\x97\xe8\xdf\x1f\x3d\ +\x86\x3e\xe0\xdc\x11\xc5\x4a\xef\x28\x05\x63\xc0\x5b\x5b\xde\xc1\ +\x4c\x18\xf8\x06\x98\x77\xbd\x2c\x0e\x0b\x06\xec\x09\x1b\x9a\xf4\ +\xac\xc2\x30\xac\xb0\x40\xfd\xc2\x1a\x1a\x3a\x37\xc0\xee\xfa\xd9\ +\x1d\x34\x99\x8c\xf3\xc1\x91\x7e\x68\x46\xa0\xf1\x05\x0c\x98\x01\ +\x01\xc2\xd7\xc3\xf1\x0d\xbc\xbc\xfd\x15\x28\x45\x20\x9a\x36\x04\ +\x16\x3d\x17\x45\x32\x91\x82\x63\xbb\x70\x1c\x89\xba\xba\x06\x70\ +\x26\x30\x32\x9c\xe9\xcd\xa0\x71\x1d\x17\xd2\x95\x78\x65\xfb\xab\ +\xdf\xcd\x80\x47\x61\x61\x01\x88\x68\xda\x80\xe1\x19\xe2\x8c\x53\ +\xda\x4e\xb3\x64\x32\x49\xb6\x6d\xc3\x30\x0c\x72\xa5\xfc\xbf\x01\ +\xa5\x14\xaa\xab\xe7\x40\xf3\xdd\x0d\x8c\x45\x63\xde\x51\x10\x34\ +\x4a\xe1\xab\x40\xc0\x3f\x29\x04\x17\xa6\x61\xaa\xe2\xe2\x62\x16\ +\x0e\x87\xd1\xd5\xd5\x85\xe1\xe1\x61\x02\xe0\x40\xe3\xf3\xf9\x70\ +\xea\x54\x2f\xbe\x09\xf6\x2d\x0c\xb2\x69\x05\x02\x01\xe3\xb1\x47\ +\xff\x90\x6c\xde\xfa\xd2\xfa\x70\x38\x6f\x8b\x61\x9a\xe8\xef\x3f\ +\xa3\xb4\x01\xae\xc1\xd8\xd8\xd8\xbd\x6d\x6d\x6d\x9b\x84\x30\x4c\ +\xe9\xe5\x0f\x28\x2d\xca\xd6\xb7\x31\x20\xa6\x64\x4e\xc9\x97\x5d\ +\x0d\x21\xfc\x3a\xea\xf1\xba\xba\xda\xbb\x9b\x96\x2d\x7b\x20\x92\ +\x5f\x90\x31\xb0\x7f\xff\xfe\x47\x5a\x5a\x5a\x36\x99\xa6\x39\xcb\ +\x71\x1c\x7b\x2a\x89\xf3\xab\x27\x57\x4b\xce\x74\x0b\x98\x16\x9f\ +\x6a\xe8\xd7\xb2\xce\xaf\xba\xb9\x4f\x4f\x5b\xda\xd5\xd9\xf5\x7e\ +\x63\x43\x43\xa2\xc4\x6f\x55\xe9\xcf\x41\xef\xa1\x43\x87\x3e\x65\ +\x8c\x35\xea\xe6\x29\x00\xe9\x2c\xa5\xb2\x2a\xcb\x4a\x42\xcd\x94\ +\x00\x3f\x2f\x05\x23\x47\x35\x74\x33\x83\x88\xd2\x53\xd3\x08\xbd\ +\xf7\xeb\xbd\x33\xb5\x77\xa7\xa7\xcd\x9e\x3c\x6b\x7a\x85\x29\xfe\ +\x07\x0a\x65\x64\x31\x04\xd2\x8f\x09\x00\x00\x00\x22\x7a\x54\x58\ +\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x00\x78\xda\x2b\x2f\x2f\ +\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\x48\xd5\xcb\x2f\x4a\x07\x00\x36\ +\xd8\x06\x58\x10\x53\xca\x5c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x02\x31\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xae\x49\x44\ +\x41\x54\x78\xda\x8d\x90\xbb\x8e\xd3\x40\x14\x40\xcf\x78\x1e\xb6\ +\x43\xd8\x6c\xc4\xa6\x58\x68\xa1\x03\x21\xf1\x05\x20\xa8\x68\xa0\ +\xa1\x82\x8e\x6f\x80\x0a\xd1\xd2\xf0\x09\x14\xf0\x1f\x34\xfb\x07\ +\x34\x80\x28\x58\x21\x2d\xac\x28\x48\xd8\x0d\x4b\xec\xf8\x31\x97\ +\x31\x96\x23\xa2\x18\x96\xd3\xcd\xbd\xd6\xf1\x99\x51\x22\x82\x9a\ +\x5c\x79\x71\xde\xcd\x1e\x66\x59\xc6\xf7\xf4\x12\x5c\xbe\xcf\xa9\ +\xe4\xf3\x47\xb2\xf7\xe4\xb9\x69\x4f\xfe\xe2\xf5\x9b\xb7\x78\xfc\ +\xf4\x19\xff\xc3\xab\xbd\xcf\xbc\x7c\xbd\x7f\x17\x68\x05\x7c\x7b\ +\x77\xf4\xf6\xfd\x88\x7b\xb7\x6f\x50\x4f\xae\x31\xb8\xfa\x80\xb2\ +\xf6\x14\x95\xd0\xe1\x4c\x14\xce\x9e\x86\xba\x2a\xb1\xe5\x62\x17\ +\xc0\xd0\xf2\x66\x7b\x67\xf7\xce\xc1\x74\xc9\x56\x3c\x26\x1d\x4d\ +\xb8\x30\xb4\x7c\x99\x2d\xe9\x50\x0a\x46\x36\x62\x51\xb4\x92\x1f\ +\xd3\xc3\x83\x4e\xb0\xc2\x57\x15\x3a\x8a\xf0\xd2\xfc\x0d\xce\x9d\ +\x8d\x39\xc9\x6b\x3a\x6c\xa8\x88\xa5\x15\x58\x6b\xd9\x14\xf8\x1a\ +\xad\x35\x2e\x2c\xf3\x0a\xb6\x12\x4d\xe9\x23\x44\xa0\x41\x80\x41\ +\x98\x55\x35\x18\xeb\x36\x05\x22\x82\x09\x05\xb1\x6d\xc7\x45\x0d\ +\x3b\xa1\x62\x9e\xad\x2a\xc2\x5e\x85\x4a\x09\x35\x3d\x02\x90\x50\ +\x10\x35\x05\x7f\x4c\x60\x98\xe8\x20\x13\x3a\x12\x03\xa6\xef\x0a\ +\x11\x60\x8c\x0e\x99\x6e\x4d\x1b\x1b\x85\xf3\x82\xf7\xdd\x83\x2a\ +\xac\x8b\x7b\x04\xbf\xf3\x1d\xc3\x34\x59\x13\x28\x25\x24\x4a\x21\ +\x1e\x7c\x73\x06\xdc\xa6\xa0\xcd\xda\x1e\x8f\x39\x93\xb6\xcb\x35\ +\x79\x10\x40\xa8\x10\x01\x54\x10\xf4\xbc\x81\xd5\x86\x34\x49\x18\ +\xc4\x31\x7d\x68\xd5\x08\x42\x09\x82\xb5\x7d\x05\xc6\x10\x89\x90\ +\xc6\x8e\x1e\x56\xd7\x21\x48\x6c\x5f\x81\x36\x9a\x3c\x5f\x34\x0f\ +\xf9\x77\xc1\xea\x5b\xbb\x29\x40\x45\xe4\xcb\x9c\x65\x51\x72\x1a\ +\x4a\xe9\x35\xc1\xa7\x93\xf9\x11\xd9\xcf\x63\xa6\xb3\x63\x3e\x7c\ +\xdc\xe7\x5f\x14\x75\xc5\x22\xcb\xbe\x02\xfc\x02\xce\x8e\x94\x0e\ +\x4b\x04\xe7\x86\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x04\x00\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\x01\ +\xcb\xc7\xa4\xb9\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ +\x12\x19\x01\xcd\x12\xdd\x84\x00\x00\x03\x80\x49\x44\x41\x54\x38\ +\xcb\x5d\x8f\x6d\x4c\x95\x65\x00\x86\xaf\xe7\x79\x5f\xce\x2b\x07\ +\x0e\x14\x04\x1e\x3e\xa5\x46\x8a\x08\x8c\x65\x88\x90\xa0\x75\x96\ +\x7c\xb9\x69\x19\xe2\x5c\xb9\x28\x7f\x44\x65\x6b\xcd\xad\x65\xce\ +\x3e\x66\x34\x6b\x8c\xe6\xd6\x56\x8b\xa9\xeb\xe3\x4f\xd9\xc6\x16\ +\x31\x4d\xca\x48\x6a\xb3\x11\xce\xa6\x45\x80\x1f\x7c\x48\x2a\x12\ +\x70\x80\x73\xce\xfb\x9e\xf7\x3c\x4f\x3f\xcc\xcd\x75\x6f\xf7\x76\ +\xff\xb8\xb7\xfb\xba\x45\x45\x63\x25\x51\xcb\x46\x84\x25\x22\x62\ +\x30\x7e\x22\x8c\x95\xed\xfa\x2a\x1b\xef\xdf\x96\x92\x95\xf0\x88\ +\x69\xc9\xe4\xf0\x82\x33\x32\xf1\xc7\xcc\xa7\x1b\x5b\x8a\x06\xe2\ +\xd6\xb7\x3f\xe8\xf3\xe7\x7d\xe2\xf5\xfb\xbb\xbc\x69\x69\xef\x08\ +\x7d\x53\xb3\x79\x5f\x1d\x5a\x6b\x11\x9c\x8a\x68\x65\x8b\xfb\x8a\ +\x1a\xfc\x5f\xa4\x66\x27\xac\x35\x2c\xa5\x95\x88\xa2\x95\x16\xe1\ +\x60\x2c\x1c\x1a\x75\x0e\xbc\x57\xda\xdb\xfc\xfe\xae\xc5\xfc\xac\ +\x49\x05\xa6\xd1\x6d\x9c\xfe\xeb\x67\x26\xfa\x83\xf4\x9d\xe8\x65\ +\xf4\xcf\xa0\x51\xd6\x92\x73\xcc\x77\xaf\x59\xe5\x9a\x31\x37\x22\ +\xa2\xc2\xd5\x51\x5c\xed\x2a\x23\x51\xc4\xad\x4e\x6d\x08\x48\x5f\ +\x63\x4a\xeb\x0f\x43\x2c\x2b\x99\x25\x79\x26\x32\x2d\x2a\x5e\x2c\ +\x43\x58\x5a\xc6\x6c\xad\xa4\x6b\x54\x27\xaf\x91\xbd\x56\xbc\x11\ +\x93\xd2\x94\xa6\x47\x0a\x21\x85\x96\x5a\x88\x75\x66\x50\x55\xe8\ +\x42\x79\x95\x26\x96\xfa\xfd\x18\x13\x6f\xcc\x4c\x5f\xfa\xa6\xd4\ +\x74\x12\x42\x48\xaf\x46\x2b\x60\xc1\x93\xbb\x18\x73\x59\xb4\x35\ +\x86\x21\x45\x9c\x36\x10\x08\x91\x21\x1c\x76\xe6\xaf\x93\x8f\xbd\ +\x70\x86\x1b\x53\x7d\x74\x1c\xac\xd1\x37\xbd\xaf\xbc\xbc\xbf\x2d\ +\x3c\x66\x5a\x8b\x16\x12\x85\x8e\x82\xb4\xe3\x26\xbd\x1e\x8d\x99\ +\x28\x84\xc7\x34\xb5\x69\x18\xc2\xa3\x35\x6f\xe6\x96\xd2\x76\x74\ +\x8a\xa1\xcb\xf3\x7c\xfc\x9a\x97\xa4\xe8\xa9\x43\x5f\x6d\xea\xfb\ +\xec\xd7\xc9\x5a\x44\x60\x6b\x80\x85\xeb\x51\x06\xfb\x24\x5e\x4c\ +\x6f\xf5\xe7\x0b\x67\x12\xb2\x65\x91\x21\x0d\x25\xa4\x90\x3b\xac\ +\x44\x9c\x8b\x79\xec\xde\xdb\x4d\x89\xdf\xe6\xd1\xf2\xc5\xd0\x3f\ +\x63\xe1\xdc\xd3\xd5\xc5\x33\x4e\x34\xa6\x44\x21\xbb\x78\xe8\xf8\ +\x05\xb4\x6d\xc8\x98\xab\xd5\xfc\x45\xd9\x9c\xf7\xb0\xe7\xb0\x77\ +\xc6\x54\xab\x52\x5d\x59\x1d\xc9\xa0\xa6\xe5\x1c\x59\xe6\x15\x56\ +\x24\xc7\xf3\xc1\xa9\x4c\x0b\x1c\x67\xe5\x8a\x24\x92\x96\x99\x88\ +\x07\x36\x56\xe0\x8b\x25\x31\xf0\xfd\x34\xf3\xf4\x03\xc8\x57\x7b\ +\xea\xbe\x2b\x0c\x11\x78\x3c\x23\xc8\x8e\x7d\x2e\x23\x23\xd7\x78\ +\x6a\x73\x31\x67\x13\xe7\xea\x12\xfd\x1c\x57\x20\x5d\x1b\x95\xfa\ +\x5b\x01\x62\xfb\x86\x67\x99\xe8\x87\x82\xb7\x27\xf1\xa4\x68\x19\ +\xc3\x51\xf3\x7f\xab\xc0\xc1\xd2\x91\x9e\x8e\xee\xa5\x74\x74\xce\ +\xf1\xd6\xd3\x0e\x81\xf5\xaf\x93\x17\x18\x10\xc3\xdc\x10\xcb\xc5\ +\x15\x0d\xfb\x59\xb3\xa5\x15\x01\x50\x59\x53\x45\xf0\x92\x97\xeb\ +\x63\xd3\x4c\xd9\xfd\xcc\xfe\x58\xa7\xfb\x7e\x1f\xe2\xb9\x36\xc9\ +\x13\x55\x11\xea\xeb\xe3\x39\x3a\x91\xd9\x92\x9c\x27\x3e\xd2\x4a\ +\x4b\x27\xa4\x54\x7a\xf3\x4f\x9c\xbf\xeb\x25\x4c\x80\xe0\xc9\x12\ +\x4a\x9f\x1f\xe7\x99\x3d\x3b\xd1\x27\x57\xeb\xe9\xe9\x63\xec\xf9\ +\xf0\x6e\xf2\x33\x6d\xb6\x56\x3b\x9c\x0f\x37\xf2\xcb\xe1\x2f\xcf\ +\x46\xdd\x28\xf7\xa4\xa5\x62\x1a\x26\x6e\xfb\x06\xce\xcd\x1d\xba\ +\x45\x70\xa7\x7a\x3a\x8f\xe8\xf9\xb9\x41\x5a\xdb\xbf\x66\xef\xf6\ +\x6b\xc4\x25\x6f\xd1\x46\xce\x93\xd1\xba\x4d\xb5\x45\xc0\x70\xbc\ +\xb5\x44\x84\xed\x88\xbe\xdd\x37\x6f\x87\xcc\x4c\x3f\x0d\xf5\xb5\ +\xc4\x99\xb3\xa4\xc7\x8f\x70\x60\x77\x2e\x4b\x52\xb7\x31\x1a\x5c\ +\xae\x43\x13\x97\x15\xe0\x02\x38\x6e\x84\x9c\x9c\x2c\xc6\xc7\xaf\ +\xfe\x7f\x1b\x03\x88\x2f\x2b\x4e\xd3\x9d\x47\x5a\xf4\xd0\xe0\x05\ +\x5d\x5b\x5b\x33\xdc\xd4\xd4\xa4\xcb\xcb\xd7\xbe\x0b\xa4\x5b\x96\ +\x95\x0e\xf8\x00\x0f\xdc\xa2\xbf\xf3\x82\x07\x48\x00\x7c\x52\xca\ +\x24\xa5\x94\x5c\x55\x58\x98\x55\xb0\xb2\x20\xb3\xab\xeb\xdb\x01\ +\xdb\xb6\x01\x16\x81\xf9\xff\x1c\x02\xd4\xbf\xaa\x26\x7a\xee\x7a\ +\x8e\x2f\x5d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x04\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\x1e\x75\ +\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x03\x08\x0c\x2b\ +\x14\x1e\x41\x65\x08\x00\x00\x00\x02\x62\x4b\x47\x44\x00\xff\x87\ +\x8f\xcc\xbf\x00\x00\x01\x88\x49\x44\x41\x54\x18\x19\x45\xc1\x3f\ +\x4f\x53\x51\x18\xc0\xe1\xdf\x7b\xce\x29\xfd\xa3\xa5\xd6\x56\x21\ +\x48\x69\xda\x40\xec\x60\x42\xe2\xe2\x46\x4c\xfc\x0e\x7e\x08\x17\ +\x37\x75\xf1\x1b\x99\x30\xe0\x60\x88\x71\x62\x30\x31\x62\x34\xb1\ +\x40\x5a\x0b\x46\xb0\x85\xa2\xbd\xb4\xa5\xf6\xf6\x72\xcf\xab\xa6\ +\x12\x9f\x47\xb8\x64\xc9\x3d\xac\xd6\xf2\x50\x0f\x5e\xb4\x08\x88\ +\xf9\x6f\xa5\xf0\xfa\xc9\xfe\xbb\x5f\xa1\xfe\x33\x0a\x5b\xef\x5f\ +\x3d\xab\x14\x99\x7a\xbe\xd6\x3a\x1c\xea\x48\xc7\x3a\xd1\x48\x23\ +\x9d\xe8\x58\x47\x3a\xd4\xe6\xd1\xd3\xfb\x20\xa4\xb6\x77\x6f\x94\ +\x85\xbf\x3c\x1e\x10\x0c\x02\x28\xdd\xaf\x77\x6b\x6e\x26\xe9\x4b\ +\x01\x31\xa0\x18\x04\x50\xc0\x23\x58\x7c\x69\x26\xe9\xac\xd9\x95\ +\x79\x52\x18\x40\xb9\x24\x28\x63\x9a\x62\x8d\x73\x7e\x4f\x45\x0a\ +\x5c\x45\x10\xa6\x3c\xca\x80\x3e\x4d\xb5\x6a\x0c\xd7\xa5\xc1\x06\ +\x21\x25\x94\x14\x19\x3c\x0b\xa4\xd9\x60\x9f\xac\xb8\xd8\xb9\xe8\ +\xcc\x2f\x59\xe1\x23\x8e\x1d\x96\x49\xd0\x24\xe0\x84\x22\xb7\xa8\ +\xc7\x99\x0b\x93\xf2\xd7\xe4\x88\x2e\xab\xcc\x93\xe5\x94\x0e\x49\ +\x2a\xac\x72\x4a\x9b\x8c\x71\xea\xce\xed\x59\xbc\x64\x84\x3a\x96\ +\x3e\x35\x1c\x7b\x7c\xa1\xc7\x4d\x16\xa8\xc7\x7d\xeb\x2e\x12\x45\ +\x73\x48\x87\x7b\x2c\xd2\xe5\x04\x21\xcb\x6d\x86\xbc\x25\x4d\xce\ +\xc4\x09\x33\xd1\x46\xbb\x4a\x99\xcf\x1c\xd0\xa6\xc0\x1c\x3f\xa9\ +\xf3\x89\x32\x15\x0e\xda\xa1\xda\x38\x1a\xb4\x0b\x0f\x82\xd4\x1a\ +\x55\x22\x42\x42\x66\xb9\x43\x91\x2d\xce\x83\x97\x8f\x8f\x3f\x58\ +\xb4\xbb\xb3\xbd\x19\xa6\xfd\x5c\xe9\xca\x37\x59\x24\xc7\x31\x13\ +\xdd\xea\x6c\xae\xaf\x3f\xfa\xfe\x06\x2f\x4c\x25\x4c\x31\xbd\x3c\ +\xbb\x92\xcf\xa3\xbd\xde\xa0\x39\x6a\xf8\x1f\x44\xfc\xf1\x1b\x05\ +\xb0\xb1\xa2\x56\x08\x4e\xaf\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x07\x12\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ +\x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd8\x01\x03\x13\x16\x15\x72\x49\xfe\xa9\x00\x00\x06\x9f\x49\x44\ +\x41\x54\x78\xda\xed\x97\x6b\x6c\x5c\xc5\x15\xc7\xff\x33\x73\x5f\ +\xfb\xb6\x1d\xbf\xed\x8d\xed\x18\x97\x10\x1c\x37\xc5\x09\x09\x52\ +\x14\xc9\x60\x08\x04\xd3\x82\x9a\x22\x55\x72\x50\x53\x90\xa0\x05\ +\xf5\xf1\x21\x54\xa2\x6a\x1b\xb5\x15\xa5\x2a\xa5\x91\xda\x46\x48\ +\xe9\x07\x42\xf3\x05\x14\xd1\x8a\x87\x70\x02\x08\xa5\x2a\x6a\x50\ +\x22\x14\x92\x50\xa2\xa4\x06\xc7\xaf\xdd\xb5\x77\xed\x7d\xef\xde\ +\xc7\xcc\xf4\xde\x9b\x55\x64\x21\xcb\xb2\x11\x6a\xbf\xf0\xdb\x3d\ +\x33\x2b\xdd\xa3\x39\xff\x7b\xfe\x67\xb5\x7b\xf1\x25\xff\x6f\x08\ +\xbe\x60\xee\xdf\xd2\x60\x10\xe1\x7c\x8b\xb3\x40\xbf\x23\x49\xd6\ +\xe1\xfc\xb5\x93\x17\xe6\x2f\xfe\x4f\x04\xdc\xbb\xa3\xbd\x47\xe7\ +\xa5\x13\xed\xcc\xee\xcb\x8a\x10\xf2\x0e\x03\x08\x11\x9c\x8b\xa7\ +\xde\x38\x97\xfa\x2d\x96\x81\xe2\x0b\x84\x13\xeb\x05\xae\xd3\x3e\ +\xa9\x52\xd4\x69\x1c\x1b\xba\xe3\xa0\x1e\x04\xcf\xec\xdd\xde\xb9\ +\x1d\xcb\xa0\x60\x05\x5e\x79\xee\xc7\x64\x2e\x35\xff\x1d\x42\xc8\ +\xfe\x48\x34\x16\x0f\x47\x62\x49\x55\xd3\x8e\x29\x8a\xfa\xfc\x9d\ +\x0f\x3f\xc5\xb1\x84\xbb\xb6\x36\xae\x17\x70\x76\xa9\xc1\x08\xfa\ +\x6f\xd9\x8a\x5b\xb7\xed\x44\xf7\x8d\xfd\x38\xf5\xee\xbb\x38\xfa\ +\xc2\x51\x38\x0e\xdf\x0b\xe0\xfd\x55\x0b\x38\xfe\x87\x27\xdd\xe2\ +\x89\x17\x85\x94\xa3\x86\xa6\x23\x1c\xad\xc3\xba\xe6\x96\x6e\xc6\ +\x94\x1d\xf9\xec\xc2\xdd\xaf\x3f\xff\xb3\x07\x46\x1e\xfb\x95\x83\ +\x1a\x94\xa1\x3b\x12\x8d\xe2\x07\xdf\x7d\x0c\x03\x03\x5b\xc1\x02\ +\x31\x10\xaa\xe2\xce\x7b\x46\x90\x4a\x26\x71\xe2\xc4\xc9\x86\x35\ +\x75\x20\x9d\x4c\x8c\x9a\xa6\x39\x0a\x4a\xa1\x69\x12\xdc\x71\xe0\ +\x58\x16\xa0\x02\x82\x8b\x91\x72\xa1\xf4\x3d\x00\x7f\xbc\x3e\x7c\ +\x7b\x46\x9a\x29\x75\xd0\xbf\xf1\x26\x50\xc5\x00\xd5\xc3\xbe\x00\ +\x29\x1c\xec\xde\x3d\x8c\xf1\xf1\xf1\x56\x9c\x9d\x5d\xfd\x0c\x58\ +\x96\xb5\xaf\x7f\xf3\x26\xdc\x77\xff\x37\xd0\xd6\x7d\x03\x32\xb9\ +\x3c\x0a\xe5\x0a\x4c\xab\x8a\x42\x7e\x11\xd5\x4a\x79\x14\x4b\xb8\ +\x7d\xd7\xd0\xec\xed\xdb\x77\x80\x10\x0a\x4f\x34\xf1\x8f\x96\x9e\ +\x5a\xd4\xc7\x22\x78\x64\x74\xef\xe4\x9a\x3a\x40\x15\xa5\x7b\xcb\ +\xc0\x4d\x50\xc2\x4d\xd8\x15\xef\x05\x65\x9a\x7f\xb0\xe4\x36\x0a\ +\xe9\x24\xde\xfc\xfb\x2b\x5d\x58\x02\x63\xe4\x5f\x11\x25\xf0\x4f\ +\x29\xc4\x4e\x2f\x47\x58\x25\x78\x08\xbb\x02\xe9\x86\x46\xc5\xb1\ +\x35\x7d\x0b\x22\xe1\x90\x04\x65\x20\x4c\x01\x21\x04\x70\xc3\xff\ +\x4c\x19\x42\xae\xd7\xcd\xad\xcd\xec\xe2\xeb\x7f\xd2\x50\xa3\x77\ +\xd7\x43\x92\x58\x95\x03\xd2\x2a\x43\x58\x15\xf0\x6a\x1e\xbc\x92\ +\x85\x30\x0b\xb8\x3a\x31\x2e\x9f\x78\xfa\x97\xc9\x55\x0b\xb8\xf0\ +\xea\xa1\xde\x2d\x03\x1b\xe3\x40\x0d\x59\x5b\x84\x00\xa4\x84\xc7\ +\x57\x6e\x58\xdf\x28\xb9\xbd\x01\x4b\x68\xba\xe3\x89\xd3\x66\x61\ +\xf1\xa4\xb4\x4a\xae\x80\x9c\x2f\xc2\x29\x65\x71\xf4\xf8\x4b\x44\ +\x72\xce\x57\x2d\xc0\x88\xc4\x26\xc2\x91\x70\x09\x52\xc0\x0f\xc8\ +\x6b\xbb\xb0\x01\xc9\x7d\x5f\x03\xba\x36\x1e\xed\xe9\xbb\x84\xcf\ +\x90\x48\x25\xae\x14\x33\x49\x48\xaf\x0b\xe5\x3c\x26\x3f\x19\x47\ +\x72\x66\x0a\x01\xc9\xa3\xab\x16\xd0\x37\xb4\x9f\x13\x61\xff\x14\ +\xdc\x86\x74\xaa\x20\x5e\x61\x6e\x41\xba\xe1\xef\x76\x19\x9a\xae\ +\xfd\xbc\x6b\x60\x04\x9f\xa5\xa3\xb3\xab\xd9\x84\x8a\xd4\xec\x0c\ +\xe6\xd2\x19\xac\x6b\xeb\x82\xe2\x58\x08\x12\xb4\xac\x69\x08\x1b\ +\xeb\xa3\x47\x4c\xcb\x7c\xdc\xf5\x70\x80\x13\x79\x6d\x08\x09\x81\ +\xb0\x2d\xaf\xb5\x09\x45\x53\x8e\xc3\x65\x6c\x6c\xac\xd1\x30\x8c\ +\xa1\xf5\xf6\xc7\xed\x11\x9d\xec\xa4\xc1\xe8\x03\x0d\x11\x0d\x82\ +\xd7\x83\x80\x20\x97\x2b\x41\x97\x0e\xfa\x6f\xfe\xda\x93\x3f\xfa\ +\xc5\xe3\xb7\x16\x8d\xf8\x84\xe4\xce\x9b\x43\x77\x0c\x2f\xac\x38\ +\x84\xd1\x6d\xfb\x24\xe7\xce\xd3\xbc\x5a\x04\xaf\xe4\x6b\x43\x95\ +\x83\x53\x5e\x44\x26\x93\xf9\xcb\xba\xc1\x6f\x5b\xa9\xb7\x9e\x7d\ +\xf8\xe6\x0d\xad\xe3\x83\x83\x83\x2f\xab\xc1\xba\x43\x44\x09\xec\ +\x25\x84\x31\x48\x09\x52\x1b\x9e\xc5\xf9\x04\x82\x84\x20\x9f\x59\ +\x18\x6e\xe9\xec\xf9\xb5\x9b\x7b\xac\x2f\x52\xf8\x34\xf5\xf6\xef\ +\x47\x56\xea\x80\xcf\x54\x29\x30\x16\x12\x0b\x68\x8a\x71\x50\xa6\ +\x40\x4a\x89\x74\x36\x8f\xf1\x39\xf3\x6c\xea\x9d\x43\xb7\x31\x23\ +\x7a\x84\x12\x4a\x14\x45\x81\x54\x03\xa0\x5e\x87\x5c\xb1\x90\x00\ +\x0d\xc6\xfc\xb9\x49\x8d\x7f\x04\x0d\x40\x21\x3d\x8b\xc4\x74\x02\ +\x8d\xbd\x83\x80\x62\x44\xa9\x11\xfb\xeb\xfc\xa9\xc3\x71\x8a\x15\ +\xd8\x76\xcf\xbe\x9c\x8c\xc4\xad\x89\x74\x15\x1f\x4f\x24\x71\xc9\ +\x8d\x05\xdb\xc0\x8d\x1b\x37\xcd\x53\x3d\xfc\x10\x51\x75\x22\x04\ +\x87\x87\x94\x5e\x08\x50\x3d\x04\xa2\x07\x20\xfd\x99\xb1\x31\x33\ +\x3d\x03\x4b\x32\x54\x2d\x07\x53\x57\xce\xc3\x43\x72\x0e\xaa\x1a\ +\x75\x20\x74\xf7\x8a\x02\x12\xff\x7e\xaf\xae\xa3\x23\xae\x46\x1b\ +\x3b\x50\xa8\x08\x40\x8f\xa2\xb5\xad\x13\x9a\xa6\x37\x81\xd0\x11\ +\xaf\x23\x80\x84\x10\x02\x84\x69\xbe\x00\x21\x1c\x6f\xf7\x83\x0b\ +\x8e\xcb\x97\x2f\xc3\x14\x14\x16\xd1\xf0\xd1\x99\x7f\xf8\xb9\xc2\ +\xbb\xee\xb7\x49\xb9\x6f\x59\x0b\x26\x27\xd3\xd4\xe4\xce\xb0\xa5\ +\xb2\x9f\x68\x76\x82\x70\xee\x80\x10\x02\x29\x24\x24\x51\x60\xb4\ +\x6f\x7e\x91\x66\xf5\x98\xcc\x4d\xc3\x71\x38\x2a\x95\x0a\x24\xd5\ +\x00\x47\xc0\x87\x30\x3f\x3f\x9b\x49\x63\xce\xb5\x4c\x82\x80\x29\ +\x2a\x7a\x07\x87\xfc\x5c\xce\x05\x40\xa4\x1b\x64\x88\x60\x09\x17\ +\x2e\x4d\x36\x2b\x94\x3d\x6a\xe8\xda\x23\x9a\xc6\xd6\x7b\x87\xa8\ +\x0a\x45\x69\x61\x16\xc5\x5c\x06\x9a\x11\x42\x43\x5b\x37\x02\xc1\ +\xa0\xef\xb7\x63\x5b\x28\x95\x0a\xe0\x42\xa2\x34\xff\x29\xb4\xe2\ +\x34\x08\x91\x20\x4c\x85\x14\x1c\x8e\x59\xf1\x7d\xaf\x9a\x16\x9a\ +\x3b\x3a\x61\x6c\xb8\x0d\x46\x20\x84\xc4\x87\xef\xc8\x7a\x4d\x9c\ +\x4f\x2d\xf2\xdf\x5c\x17\xf0\xf6\xa9\x0b\xfb\x5b\x5b\xea\xfe\xdc\ +\x50\x17\x0e\x18\xba\xea\x16\x66\xa0\x94\x00\xfe\x9b\x40\x2e\xf3\ +\xf7\xc9\xb3\x80\x0b\xdf\x02\xef\xc7\x09\xd3\x53\xd3\x25\xc6\x10\ +\xa0\x8c\x51\xbf\x63\xd2\xbf\x26\x1d\x9b\x17\x2d\xcb\x49\x55\xab\ +\xd6\x7f\x72\xd9\xc2\xe9\x8b\x67\xce\x8d\xbd\xf1\x56\xfa\x83\xf7\ +\x3f\x78\xce\xf6\xcf\x3c\x7d\xf6\xca\x26\x4a\xe9\xb9\xce\xf6\x06\ +\x55\x55\x19\x02\x86\x86\xda\x01\xfe\xbe\x12\x9c\x0b\xcf\x06\x3f\ +\xb7\x58\xac\xfe\xee\xfb\x8f\x1e\x7e\xa6\xa5\xc9\x08\xd4\x45\x99\ +\x5e\x2e\x73\x7b\x26\x51\xa9\x2c\x64\x4b\x95\x74\x6a\xde\x9c\x4e\ +\xe5\x78\xa9\xf4\x37\x89\x25\x90\x83\x07\x5f\xc6\x9e\xaf\x0f\x1e\ +\x6a\xa8\x0f\xfd\x50\xd7\x54\xc4\xa2\x41\xef\xce\xaf\x4f\xf6\x8a\ +\xf5\x6b\x39\xa6\x65\x7b\x42\x3c\x11\x53\xc9\x54\xb6\x67\xcb\xe6\ +\x6e\x8e\x55\x42\xef\xda\xf3\xd5\x90\x7b\xd7\x0f\x12\x10\xff\x10\ +\x42\xe0\xdf\x91\x10\xb2\xd6\xc2\x95\xc3\xb7\x81\x0b\xd4\x22\xee\ +\xda\xb8\x03\x6b\x80\x56\x4d\x3e\xa4\x28\xac\x4d\x02\xe0\x42\xf8\ +\x9e\x5a\xb6\xdf\xd2\x55\x85\x10\x7e\x61\x5f\x0c\x40\xbc\xd7\x37\ +\xb1\x06\x94\xab\x33\xe9\xab\x5c\xf0\xcb\x5d\x9d\x8d\x7d\xde\xec\ +\x58\x96\xed\x77\x40\x53\x59\x6d\xf0\x96\x47\xd6\x56\xc7\x11\xd7\ +\x3b\x37\x97\xce\x67\xdc\x38\xb3\xe6\x07\x93\x67\x0f\xbf\x16\x66\ +\x54\x19\xea\xed\x69\x19\x5e\x57\x1f\xbe\x25\x1c\xd2\x7b\x5c\x31\ +\x75\x94\x10\x4d\x48\x30\x21\x04\xf1\x3d\x06\xe0\x6a\x94\x12\xd7\ +\x86\xdb\x5d\xf2\xb6\xcd\xa7\x4b\x65\xf3\xfc\x27\x57\xe7\x4e\x65\ +\x16\x4b\x63\x8a\xa9\x25\x0f\x1c\xd8\xfd\xf9\x9f\x8c\x8e\x1c\x7d\ +\x8f\xd8\xdc\xd4\xb9\x70\xa2\x52\xca\x88\xed\xf0\x88\x90\x52\x25\ +\x00\xf5\x0a\x53\x10\x87\x32\x5a\x54\x18\x2b\xb8\x5a\xf2\xc2\xb2\ +\xab\x99\x54\x50\x1c\x3c\x38\x84\x2f\xf9\x3c\xfc\x17\xd3\x96\x9e\ +\xac\xde\x63\x08\x54\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x03\xef\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\x01\ +\xcb\xc7\xa4\xb9\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x16\ +\x12\x0d\x25\xdf\xbf\xee\x00\x00\x00\x03\x6f\x49\x44\x41\x54\x38\ +\xcb\x4d\x92\x4b\x4c\x9c\x55\x1c\xc5\xcf\xfd\xdf\x3b\xdf\xc7\xbc\ +\x29\xd3\xa1\x74\x06\x0a\x42\x8b\x08\x98\x98\x31\x85\x42\x23\xa6\ +\xe2\xa3\x24\x2e\x9a\x98\xb6\xc6\x34\x51\x14\x8d\xb6\xc6\x95\xc6\ +\xc4\x44\x93\x76\xa1\x2c\x8c\x4d\x13\x16\x9a\x98\x2e\x6c\x5d\xf8\ +\x48\x25\x31\x4d\xa1\xb6\xa1\x4c\x4a\x02\xcc\x94\xc4\x16\xd3\x2a\ +\x5a\x5e\x95\x87\x14\x3a\x30\x33\x0c\xdf\xe3\xde\xeb\xa2\x25\xed\ +\x59\x9d\xc5\xc9\xef\x9c\xc5\x61\x2d\x07\x5b\xe1\x98\x16\x58\x81\ +\xc0\x36\x38\x66\xfb\x0b\x30\xcb\xdd\x60\xeb\xc1\x5d\x87\x4a\xe2\ +\xfe\xe7\x84\x49\xe1\x51\x77\x5c\x2e\x54\x65\x6a\x13\xe5\x4f\x6f\ +\x4b\xfd\x99\x5a\x98\x5e\x9d\xfe\xa4\xfb\x4c\x77\xef\x47\x5d\xaf\ +\x83\xcf\x26\x67\x70\xfe\xea\x2f\x08\xf8\xbc\x4c\x59\xc0\x96\x2a\ +\x6f\xf5\xde\xce\x9a\xde\xf8\x93\xe1\xa3\xfe\x32\x6a\xbc\x89\xbf\ +\x76\xdd\xdd\xee\xd4\x1d\xae\x7e\x75\xeb\xa9\x86\x53\xde\xac\x27\ +\x1b\xcd\xb0\xcc\xa1\xb3\xe1\xb3\x93\x97\x7f\x1a\xba\x4e\xed\x6f\ +\xbd\x80\xdb\x03\x19\xfc\xfa\x4d\xbf\x1e\x3c\x77\x9d\x97\xb6\x7b\ +\xbe\xa5\x0a\x7b\x4f\x56\xe4\xdc\x8c\x5e\xd7\xc9\xfc\x0d\xb6\x46\ +\x6b\x18\x9a\xef\x85\x86\xc2\xcc\xbd\x5e\x08\xb1\x46\x08\xe0\x44\ +\x74\x9f\x1f\xac\xe5\xfd\xdd\x60\xa6\x26\x69\x69\x45\x2e\x6f\x0b\ +\x37\xd1\xa0\xe9\xe5\x92\x48\x90\x30\x88\x9d\xcb\x0e\xa2\xf0\xda\ +\x06\x04\x09\x30\xc6\xb0\x29\xf6\x3d\xcb\xe3\x48\x57\x40\xd8\xfe\ +\x75\x90\x4f\x43\x2b\x00\x39\x63\x47\x5e\xba\xc8\x5b\x1a\x9c\x13\ +\xf3\x68\x0e\xce\x08\x45\xbd\x06\xda\x7c\xc0\x40\x87\xc6\xf1\x14\ +\xc3\x85\x0c\x00\x8d\xd5\xa6\xd8\x14\x84\x99\x37\x41\x50\xd0\x0e\ +\x40\x96\x67\xce\x67\x68\x88\x00\x63\x86\x10\x5a\x70\xce\x6a\xa6\ +\xb7\xe1\x66\xf8\x5f\x4c\xa8\xfb\xcd\x7d\xeb\x40\xda\x86\xc2\xdf\ +\xf8\x6e\x74\x2e\x01\xe1\x9d\xdf\x82\xdc\xa2\xa3\x6e\x5d\x25\xf8\ +\x20\x86\xdb\x5a\x72\xe3\xfe\x08\x35\x72\xe2\x8a\x11\x63\xcd\xa2\ +\x52\xd3\x84\x66\x19\x73\x05\x8d\x3d\x71\x00\x31\x18\xb7\xe6\x7a\ +\xcc\xf3\xfe\x13\xbb\xbf\xec\x07\xab\x47\x17\xf6\xf6\xfd\x01\x6d\ +\x71\x92\xae\x56\xd9\x7f\xa8\xb3\x6a\x9f\x71\x3a\xe8\x0b\x2a\xad\ +\x34\x15\x54\x1e\x2b\x19\x4b\xb9\x36\x23\x77\x51\x0e\x9f\x39\x92\ +\x7f\x16\xb0\xed\x27\x1e\x0f\x21\x54\x29\xc0\x12\x2f\xb6\x20\x28\ +\x43\x18\xbb\xbc\x8c\x2c\xd2\x00\x40\x1f\x5f\xea\xb8\x58\xbd\x33\ +\xd6\xae\x1d\x92\xf7\xf4\x02\xcd\x2d\xe5\x20\x73\x8c\x2d\x0d\x39\ +\x1d\x81\x32\xf4\x29\x80\x5c\x0b\x2a\x72\xad\x0e\xa2\xd6\xae\xc7\ +\x9d\x34\x70\xf8\x2b\x82\x51\xb2\x9f\x24\x6c\x35\x9b\x2a\x7c\x51\ +\x1e\x73\xdb\x03\x9e\x10\x71\xd7\x50\x26\xf7\xf0\xd5\x65\xe7\xc2\ +\x8f\xc7\xeb\xfb\x26\xf0\x1f\xab\x65\x53\x0a\xf8\x0c\x4d\x07\x3e\ +\x07\x03\x80\xd6\x97\x9e\xc1\xda\x6d\x1f\x16\x67\x96\xb1\x64\xa5\ +\x01\x14\x1b\x9f\x5e\x69\x1b\x2b\x2d\x0f\x35\x14\x9c\x82\x33\x3f\ +\xbf\xec\x59\x4c\xe3\xbd\x70\x15\xfb\x5a\x2b\x4d\xf6\xba\x52\xa5\ +\x9d\x49\x8c\x17\x7f\x70\x1f\xd0\x48\xc7\xf0\xd4\xd1\x59\xbc\xf9\ +\xe1\xf3\x18\xf9\x6d\x92\x4c\xd3\x50\xc9\x8b\x63\x3f\xd7\x36\x3c\ +\xf6\xca\x86\x65\xbb\x35\x55\x75\xe2\x64\x77\xcf\x1e\xc7\x75\x46\ +\xb6\x46\x23\x24\xb8\x50\xee\x6a\x09\x7e\xbf\x71\x05\x0f\x9f\xf1\ +\x40\xc7\xde\x79\x97\x47\xa3\x51\x39\x9a\x4e\x9d\x6e\x6d\x6e\xee\ +\x8c\xc5\x2b\xe5\xf6\x78\x4c\x76\xbc\xbc\xbf\x11\xc0\x84\xd7\x2c\ +\x62\x05\x6b\x43\x6f\xe6\x69\xd3\xc4\x62\x65\x78\xbb\xeb\x0d\x28\ +\xee\x62\x65\xed\x2e\xc0\x55\x6e\xdd\xc9\x43\x78\x89\x4d\xdf\x99\ +\x54\x00\x5c\x00\xb0\xdd\x0d\x54\x54\xc4\x1f\x3e\xf2\x91\x72\x0e\ +\xc0\xe0\x9c\x17\x49\x29\x79\x69\x69\x74\x47\x22\x91\xf8\x21\x1c\ +\x2e\xde\x39\x35\x35\xdd\x3d\x32\x32\x7c\xd2\x34\x4d\x58\x96\x55\ +\x00\x60\x01\x70\x00\x68\xfe\x08\xc0\x03\xc0\xa7\xb5\x0e\x12\x51\ +\x24\x97\xcb\x6b\xd3\x30\x87\x4a\x22\x25\x03\xc9\x64\xf2\x92\x94\ +\x32\x24\xa5\xdc\xcc\xcb\x07\x8b\xf4\xff\x53\xcc\x7a\xe6\x37\xb9\ +\xdd\x0f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x9a\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ +\x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ +\xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ +\xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ +\x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ +\xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ +\x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ +\xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ +\x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ +\x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ +\xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ +\xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ +\xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ +\xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ +\x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ +\x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ +\x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ +\x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ +\xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ +\x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ +\xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ +\x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ +\x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ +\x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ +\x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ +\xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ +\x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ +\xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ +\xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ +\xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ +\x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ +\xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ +\xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ +\xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\xd9\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x56\x49\x44\ +\x41\x54\x38\x8d\x5d\x93\x69\x4c\x9b\x05\x1c\xc6\x7f\x6f\x5b\x7a\ +\x8d\xc2\x04\x59\xc9\xca\xb6\x76\x18\x43\x09\x21\x48\x1b\x4d\x48\ +\x16\x17\x98\x23\x4e\x8c\x71\x09\x7c\xf0\xc3\x92\x7d\x61\x1e\x78\ +\xb0\x30\x0d\xc9\x92\x79\xc4\x04\xfd\xe0\x99\xa8\x9d\x31\x4d\x4c\ +\x66\x5c\x62\xc2\xcc\x74\x23\xd3\x79\x40\xd8\x22\x3d\x24\x88\x1b\ +\x30\x36\xca\xa8\xc5\x4a\x2f\x58\xe9\x0b\xe5\x6d\xff\x7e\x98\x43\ +\xe7\xf3\xfd\x39\xfe\xc7\xa3\x88\x08\xff\x87\xe2\x0d\xed\x07\x1e\ +\x07\x3e\x3b\x76\x5f\x6c\xf1\xf2\x37\x7f\xbd\xac\xae\x16\x16\x80\ +\xf7\x83\xd2\x7d\x17\x41\xf9\xaf\x80\xe2\xf7\x57\xc9\xe1\xc3\x4b\ +\xae\x8e\xd0\x47\x07\x5b\xd6\xdb\x5a\x1a\xd1\xb1\x16\xdf\x16\x8d\ +\xc6\xb6\xe4\xd3\x96\xd4\x97\xaf\xe7\x77\x37\x61\x54\x76\xb2\xb0\ +\x7a\x42\x4e\x14\xef\x12\x50\x7c\xbe\x67\x81\x47\x8f\xb9\x5c\xd7\ +\x9e\xab\xab\x7f\xaa\xbc\xac\xd4\xbe\xb8\xb8\x48\x24\x12\x61\x72\ +\x72\x12\xb3\xc9\x2c\x96\x44\x75\x77\xe0\x8d\xd4\x63\xa0\xdc\x3c\ +\xc9\x91\x97\x44\x44\x74\xff\xda\x2b\x55\x47\x5d\xae\xdd\x3d\x0d\ +\x0d\x4f\x57\x56\x6c\xb5\xe7\xf3\x79\x34\x4d\xa3\x50\x28\x60\x32\ +\x99\xa8\x73\xd7\x29\x0f\x76\xd4\xbf\x00\x62\x50\xc0\xde\xc9\xab\ +\x25\x9b\x09\x94\x90\xb2\x7d\x50\xbd\xf0\x24\x81\xc9\x0f\x6c\xaa\ +\xaa\xcb\xab\x2a\xc6\x9a\x1a\x0c\xbb\x76\x91\x52\x55\x1c\x0e\x07\ +\x4e\xa7\x13\x51\xe7\xf8\xf9\xf4\xd4\xc0\xc5\x57\xd6\x3f\xee\x86\ +\x2c\x90\x36\x28\x21\xa5\x15\xe8\x4d\x9c\xfa\xb4\x65\x9b\xef\x2b\ +\xdd\x4d\x11\x92\x40\x02\x58\x31\x99\xd8\x7f\xfc\x38\xee\x7d\xfb\ +\xd0\x34\x0d\x6b\xf1\x4f\xf6\x3c\x3c\xfa\x8c\xc3\xd2\x34\x83\x6a\ +\x38\x08\x7c\x6d\x00\xcc\x00\xf1\xd9\x6b\x4a\x95\xd9\x4c\xb9\x5e\ +\x8f\xc9\xe3\xa1\xa9\xbd\x9d\xba\xae\x2e\xb6\xbb\x5c\x14\x8b\x45\ +\xf2\xb1\xd3\x98\xec\x7b\xa8\xd0\x92\xe5\x8b\x6f\xae\x1f\x92\xa3\ +\x64\x81\x4a\x44\x04\x82\xd4\x77\xed\xd4\x75\x9e\x69\x6d\xcd\xcd\ +\x4d\x4d\x89\xa6\x69\x72\x07\xda\xad\x29\xb9\x7a\x76\xaf\x2c\x87\ +\x0f\x89\x96\x38\x2f\xc5\xdc\x0d\x49\xfe\xda\xb3\x71\xb1\xc9\xf7\ +\x44\x10\x9f\x45\x77\x12\xa5\xda\xe7\xa1\xb3\xe6\xc5\xa2\x23\x91\ +\xcb\xfd\x64\xb4\xd9\xd0\xeb\xf5\x00\x14\xd3\x3f\x90\x1f\x3f\xc0\ +\x56\xb9\xcc\xd2\x42\x90\x8d\xcc\x38\xca\x46\x1c\x4b\xc5\x03\x06\ +\x67\xef\xf8\xdb\x1e\x8e\xd4\xea\x80\x36\xc0\x5b\xd6\xc8\x23\xba\ +\x44\x22\x32\x3f\x3f\xff\x63\x2e\x97\xbb\x7d\x18\x9b\x17\xb3\xcd\ +\x81\xc5\x62\x43\xcb\x5e\x41\x4d\xfe\x82\x9a\xfe\x8d\x02\xa5\x18\ +\x6b\xd7\xee\x9f\x77\xbb\x9f\xd7\x01\xdf\x03\x97\x32\xd3\x0c\xea\ +\x4a\x4a\x8c\x13\x13\x13\xfd\xd1\x68\x74\x03\x40\x31\x94\x51\xac\ +\xee\xc1\x6c\xb5\x71\x4f\xb9\x95\xe9\xdf\x03\x64\x97\x82\x14\xd6\ +\xe2\xac\x5b\xf6\x72\xb5\xad\xed\x06\x22\x82\x88\xd0\x00\xb5\x9f\ +\x38\x9d\x7e\x11\x61\x68\x68\xe8\x54\x2c\x16\xfb\x67\x0b\x45\x29\ +\x5c\xe9\x92\xe4\x05\xbb\x4c\x7f\xa1\xc8\xec\xd9\x26\x89\x86\x07\ +\x64\x74\x74\x74\xd6\xeb\xf5\x5a\x37\x1f\x29\x0b\x7f\x4c\xa5\xd3\ +\x43\x00\xa1\x50\xa8\x7f\x66\x66\x66\x25\x93\xc9\x00\x0a\xd4\xf4\ +\x63\x30\xda\x28\xb1\x54\x91\x2b\xed\x22\x5d\x72\x20\x3c\x3c\x3c\ +\xdc\x1e\x08\x04\x72\x9b\x09\x1e\x02\xfd\x5b\xcd\xcd\xad\x83\x03\ +\x03\x55\x22\x82\xdf\xef\x7f\x6f\x64\x64\x44\x92\xc9\xa4\x2c\x2f\ +\x2f\x4b\x6a\xfa\x43\x89\xcd\x8d\xc9\xd8\xd8\xd8\xb9\xde\xde\xde\ +\x8a\x3b\x3c\xc5\x07\xaf\xd5\xb8\xdd\x1d\xf7\x7a\x3c\xb5\x5b\xac\ +\xd6\x72\x35\x9b\x55\xe3\xc1\xe0\x6c\xe4\xfa\xf5\xa1\xe2\xbb\xef\ +\x34\x3b\x9d\xae\x46\x7b\xb5\x3d\xbe\x9a\x5d\xfd\x2e\x1c\x0e\x9f\ +\xe9\xeb\xeb\xbb\x24\x22\xda\x66\x03\x3e\x87\x1e\x1d\xb4\xe7\xa1\ +\x52\xb7\x63\x07\x1b\x16\xcb\xad\x54\x22\x11\x19\x4e\xa5\xce\x7d\ +\x0b\x0b\x7a\xbd\x7e\x4b\xa1\x50\xe0\xf6\x2c\x08\x90\x07\x56\x80\ +\x25\x20\xf3\x37\x1b\x19\xb1\xb5\xb0\xfa\x5b\x79\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x36\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xb3\x49\x44\ +\x41\x54\x78\xda\x95\x93\x6d\x48\x53\x61\x14\xc7\xcf\xb3\x17\x75\ +\xb9\x77\x97\x65\x6e\xa9\x8d\x26\xb9\x25\xbe\xa0\x66\x04\x26\x34\ +\x8c\x30\x10\x8b\x04\xeb\x8b\xa1\xb2\x7d\x30\x90\xbe\x48\x49\xb2\ +\x20\x8a\xb0\x57\x28\xd4\xa0\x20\x45\x8c\x3e\x54\x04\x85\x04\xa2\ +\x54\x03\xcb\x92\xc4\x08\xf6\x21\xd6\xcb\xb0\xcd\xb9\xad\x74\x7b\ +\xe4\xde\xed\x3e\x9d\x3b\x86\x8c\xe1\x87\xfa\xc3\xef\x39\xf7\x9c\ +\x73\xcf\xe1\x9c\xcb\x7d\xc0\x6e\xb7\xd7\xc9\xe5\xf2\xe7\x00\xd0\ +\xc5\x18\x83\xff\x05\xd4\x6a\xf5\x8c\xd5\x6a\xe5\x5c\x2e\x57\xb8\ +\xb1\xb1\xb1\x25\x19\xac\x9e\xd3\x40\xe5\x6c\x3d\x5a\xb9\xe8\x57\ +\xc1\xdd\xf2\x1a\xb8\x6f\xda\xac\x81\x44\xa7\xd3\x5d\x77\x3a\x9d\ +\xfc\xd2\xd2\x92\x62\x7a\x7a\xfa\x02\x21\xc4\x08\x84\xf4\x82\x44\ +\x7a\x0e\x00\x3a\x6b\xc9\xbd\x0a\x02\x92\x4b\x0c\xb8\x9b\x36\xf2\ +\x38\x0b\x32\x24\xf3\x7a\xbd\xcf\x6c\x36\xdb\x20\x4d\x24\x4e\x18\ +\xcd\xe6\x5d\xa1\x95\x95\xa7\x51\x3e\x34\x0a\x32\x1d\x00\x61\x61\ +\x1e\x84\xa8\x14\x80\x47\x27\xb2\x07\xc2\x0a\x07\x19\x3e\x29\x80\ +\xe4\xeb\x08\xeb\x9a\x01\x14\x49\x8e\x8c\xd2\x56\x55\x7d\x56\xf2\ +\xfc\x4e\x9e\xd2\x68\x91\x5e\x3f\xfb\x5e\x76\xab\x83\xb9\xeb\x43\ +\x80\xda\x4f\x6e\xe8\xd1\xd0\x72\x50\x1d\x00\x48\x9c\x01\x3c\x18\ +\x90\xf6\x61\xd6\x1d\x93\x40\x4a\xab\x6d\x6d\xbd\xc5\x25\x25\xb1\ +\x5c\x42\xe4\x81\x40\xc0\x64\x57\x0e\x0c\x40\x4a\x6e\xd6\x1b\x42\ +\x28\x03\x61\x11\x0b\xbd\xc8\x94\x58\x0c\x28\x02\x73\x20\x76\x3f\ +\x8d\xcc\xe7\x35\xe5\x7d\xe9\xe9\xe9\x99\x1d\x1b\x1b\x33\x70\x1c\ +\xe7\xd1\x68\x34\xd7\x16\x16\x16\x1e\x42\x86\x3e\x90\x91\x62\x34\ +\xcd\xc8\xa4\x0c\x8f\x43\x48\x03\x52\x13\x0c\x06\xdb\x0c\x06\xc3\ +\x31\x8b\xc5\xf2\x60\x79\x79\xb9\x0c\x63\xfd\x85\x85\x85\x8b\x3e\ +\x9f\xef\x63\x46\x8f\x53\x48\x1d\x52\x20\xae\xf0\x16\xf9\x84\x4c\ +\x20\x80\x4d\xde\x79\x3c\x9e\xcb\x8c\xb1\xc5\x68\x34\x9a\x8f\x53\ +\x8c\xab\x54\xaa\xad\x19\x0d\xa6\x10\x2f\x32\x99\xfc\x88\x23\x40\ +\x4a\xd1\xf9\xd5\x0d\xec\x37\xa4\x84\x93\x5c\xd5\x6a\xb5\x87\xe3\ +\xf1\xb8\x46\x10\x84\x1f\xa8\x83\xf8\x6e\x1c\x44\x11\x22\x4e\x6e\ +\x42\xbc\x12\x2c\x6e\xc2\x87\x41\xe4\x0a\x92\xae\xbe\x48\x24\xf2\ +\x9d\x10\x22\x50\x4a\xf5\x65\x96\x1d\x13\x69\xb9\x2e\xe4\x36\xe2\ +\x10\x57\x88\xa7\x82\x1c\xa4\x09\x57\x11\xd0\xb4\x53\x1a\xa3\xcd\ +\xf6\xca\x62\x97\xb3\xa0\xf5\x68\xd3\xbe\xdd\xa9\x74\xf6\x86\x15\ +\x57\x18\x66\x50\x84\xe4\x6e\xf6\xab\x1e\x6f\x3d\x62\x7d\x34\x7a\ +\x27\xe8\x7e\xd2\xcd\xfa\x1c\xb5\xaf\x93\x71\x00\x19\x52\x8e\xe4\ +\xfc\xd3\x85\x41\x49\x2f\x9e\x77\xbc\x3a\xdb\x59\x2d\x94\x9a\xb7\ +\x57\xa4\xe7\xc8\xb8\xbf\x63\x6f\xd8\xbf\x4d\x8a\xc0\x06\x81\x7c\ +\x50\xaf\xad\x83\x89\xf7\x83\x91\xf3\x83\x09\x31\xf2\x01\x18\xf2\ +\xbd\xe9\xf7\xc6\x02\xb2\x17\xf3\xdf\x5a\x36\xee\xc2\xcb\x21\x77\ +\xc3\x9f\x50\xb6\x39\xb6\xba\x45\x4a\x57\x15\x32\xba\xa6\x90\xae\ +\x23\x34\x96\x2d\xcb\xe2\x78\xa9\x32\x11\x23\x4a\x81\x0a\x6a\xb6\ +\x1e\x57\x0b\x89\x88\x29\x91\xf3\x93\x10\xa2\xc5\x5a\x8a\xf0\x7f\ +\x01\x53\xb0\x92\xce\xab\xba\x16\x48\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x33\xa1\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x80\x00\x00\x00\x80\x08\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ +\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x33\x1e\x49\x44\ +\x41\x54\x78\xda\xec\x5d\x07\x80\x54\xc5\xf9\xff\xcd\x7b\xdb\xaf\ +\xdf\xd1\x7b\x09\x20\x45\x41\x40\xaa\x8a\x15\x50\xb0\x44\xa3\xb1\ +\x25\x2a\x4a\x0c\xc6\x96\x68\x8c\x12\xfd\xdb\x82\x9a\xc4\xae\x24\ +\x76\xb1\x04\x8c\x8a\x89\x04\x15\x4b\x30\x4a\x11\x04\x94\x26\x48\ +\x13\x8e\x7a\xc0\xc1\xd5\xbd\xdb\xf2\xde\xcc\x7f\x76\x76\x6e\x67\ +\xf7\x15\xf6\x30\xed\xee\xc2\x77\xf7\xdd\xbc\x79\x33\x3b\xbb\xf7\ +\x7e\x5f\x9b\x6f\xe6\xbd\x25\x8c\x31\x1c\xa1\x96\x47\x37\xfe\xf2\ +\x9e\xc2\xda\x70\xcd\xe4\x03\xfb\xf7\x9e\x77\xb0\x7c\x7f\xaf\xe1\ +\xa3\x4e\x6c\xf3\xfb\x69\x53\x29\x2c\xe4\xc1\x11\x6a\x11\xb4\x62\ +\x73\xa5\x4e\x08\x19\xa2\x11\x9c\x46\x34\x72\xea\xe0\x61\x23\x4e\ +\xb8\xfd\x86\xc9\x5e\x06\x06\x7e\x1e\xc7\x0e\x1d\x76\x09\x80\xd7\ +\x8e\x08\x40\x0b\xa2\x2f\xb7\x54\xf5\x25\x04\xa7\x6a\x84\x9c\xe6\ +\xf5\x68\x27\xf1\xe3\x02\x7e\x0c\xfe\x8b\xe1\x23\x47\xe3\xba\x9b\ +\x6f\xc3\xd3\x8f\x3f\x04\xa2\x69\xa8\xaa\x38\x78\xc5\x11\x01\x68\ +\xfe\x5a\xde\x89\x10\xc2\x01\xc7\xa9\x89\xd2\xab\x93\x0e\x84\x57\ +\xf8\x2f\x78\x5d\x96\x40\x83\x10\x5c\xfc\xa3\x2b\x50\xfa\xed\x66\ +\xfc\xfd\x83\xf7\xb1\x77\xf7\xae\xe3\xe0\x40\xcd\x3e\x06\xd0\x1e\ +\x26\x8c\x50\x02\x2d\x4e\x80\x28\x60\xd6\x31\xb0\x30\x03\x6a\x01\ +\xd4\x70\x2e\xc6\x09\xec\x05\xb6\x10\xcd\x90\x96\x6f\xae\x2c\xe2\ +\xc0\x9e\x94\x30\xeb\x12\xf8\x3e\x0a\xe0\x43\x95\xea\x38\x1e\x8f\ +\xe1\x86\x9f\x4e\xc6\xd6\xcd\x9b\x71\xe9\xe5\x57\xf4\xb8\xfd\xd6\ +\x1b\xb6\xb6\x20\x0b\x40\x88\xd7\xeb\x41\x71\x6e\x10\x79\x3e\x1f\ +\x68\x8c\x61\xff\xce\x30\xc2\x75\x31\x98\x90\x82\xcd\x70\x3b\x80\ +\x09\x68\x06\x74\xfb\x7d\x8f\x16\x94\xef\x2d\xbb\xaa\x75\x9b\xb6\ +\xa3\x2e\xbc\xec\xaa\xae\x5e\x5d\x1b\x2c\x14\x9c\xf0\x3f\x9a\x4d\ +\xcb\xb3\x94\xc9\xfe\x7e\x6f\x00\xbf\x7d\xe8\x61\x4c\xb9\xea\x2a\ +\xd4\xd6\x54\x5f\xcf\xcf\xdd\xcc\x38\xb5\x10\x01\x60\x08\xf8\x02\ +\x68\x53\x9c\x83\xfc\x80\x1f\xe1\x9a\x38\xaa\xbc\x51\x84\xb5\x18\ +\xd2\xe8\x38\xf2\x13\x72\x1a\x7b\x96\x7d\x8c\x26\x46\x93\xaf\xbf\ +\xcd\xa7\x11\x76\xe9\xc1\xf2\xf2\x8b\xf6\xee\xd9\x39\x74\xeb\xe6\ +\x8d\xc5\xf1\x58\x0c\xba\xc7\x83\xde\x7d\xfa\x62\xd8\xa8\xe3\xb3\ +\x01\xac\x4a\x25\x20\x36\x41\xe9\xd8\xb1\x1d\xa6\xfd\xf6\x7e\xbc\ +\x3e\xf3\xf5\x09\x00\x6e\x49\xb4\x33\x4e\x2d\x22\x06\x20\x84\xc0\ +\xa3\xeb\xd0\x13\xac\x19\x0e\x1d\x40\xc0\x70\x1b\x80\x26\x21\x00\ +\xcb\x36\x55\x26\x02\xb7\xd3\x9e\x79\x74\xda\x94\x8f\xdf\x7b\xe7\ +\xa8\xfa\xba\x30\x21\x44\x03\xd1\x08\x12\xa5\xd7\xeb\x13\xff\xd3\ +\xef\xef\x9d\x8a\x3f\xcc\x98\x85\x4e\x9d\x3b\x37\x5e\x08\x88\xbb\ +\x10\x0c\x1d\x72\x2c\xaa\x2b\x2b\xf2\xa6\x3f\xf5\xb0\x07\x40\xbc\ +\x45\x05\x81\x84\xb3\x26\x90\xd6\xc4\x31\xb1\x8b\xc0\xa9\xe4\xa7\ +\x64\x28\x7b\x9a\x2d\xc7\x7f\x98\xbe\xd8\x54\xd9\xa9\x21\x68\x4b\ +\x94\x5e\x0f\xe9\x90\x00\xe4\xd2\x49\x3f\xc5\xd2\x85\xff\x40\x3c\ +\x1e\x4f\x02\xaa\x84\x40\xd4\xa3\x91\x08\x7e\xf3\xeb\x5f\xe2\xa9\ +\xe7\x67\x20\x27\x14\xb2\x03\xab\x65\x77\x07\x04\x30\xea\xeb\xeb\ +\x56\xd5\x54\x57\x2d\xd8\xb1\x63\xfb\x27\x2f\xcf\x78\xfe\x53\x24\ +\x49\xe3\x6c\xb6\x18\x01\xd0\x88\x26\x99\xd8\xd0\x4f\xc9\x83\x26\ +\xac\xc0\x0f\xf0\x6f\xa6\xa5\x1b\x2b\x8a\x34\x42\x4e\x16\xd3\xb3\ +\x64\xa4\xde\xc7\x49\x73\xdb\xb5\x6d\x8b\xfb\x1e\x7a\x02\xb7\x5c\ +\x7b\x35\x4c\xd3\x74\x14\x82\x5d\x3b\x76\xe0\x91\x07\x7f\x83\x7b\ +\xa6\x3d\x00\x5d\x23\xd9\xb4\x3c\x51\x32\x0e\x76\xe9\xf6\xd2\xd2\ +\x2f\x57\xac\x58\xbe\xe2\xe9\xa7\xff\xb8\xe8\xab\xaf\xbe\x3a\x08\ +\xa0\x9e\xf3\x01\xce\x94\x33\x4b\x94\x84\x13\xe3\xd4\xdc\x67\x01\ +\xa4\xe8\x99\x10\xed\xd5\xb1\x15\xf2\x83\x41\x84\xab\xa2\xf8\x76\ +\xe3\x01\x1c\xdc\x55\x07\xa3\x8a\x36\xcc\x02\x2a\xe0\x41\x11\x74\ +\x50\xf8\xd0\x0f\x8f\x63\xc3\xbf\xf2\x7f\x5e\xba\xa1\x22\x48\x08\ +\x19\xad\x69\xa9\x48\x7d\x70\x02\x97\xc6\x06\x69\x1f\xbc\x3b\x07\ +\x8f\xfe\x76\x9a\x04\xdd\x26\x04\xa2\x9c\xf4\x93\xab\xf1\xe3\x2b\ +\x2e\x77\x1c\x27\x5c\x5b\xbb\x7f\xdb\xb6\xad\x6b\xbf\x5c\xbe\x6c\ +\xd5\x4b\x2f\xbd\xb8\x72\xc9\x92\x25\x15\x00\xa2\x9c\x13\xc0\xc7\ +\xe5\x5c\xa8\x42\x6a\x7c\x54\x9e\xa3\x2d\x26\x06\x00\x91\x16\x00\ +\x44\x5a\x00\x8b\x09\x60\xd2\xe0\xf1\x66\x50\xfc\x12\xc0\xe4\x84\ +\xf0\x83\xd3\x77\x11\x84\xdb\xee\x7d\xd4\xcb\xa3\xf4\xb1\x27\x9e\ +\x7a\xe6\x40\x42\x90\x48\xc0\x8c\xe2\xa5\xbf\x31\xfe\xd9\x69\xce\ +\x7e\xf6\xb9\xe7\x62\xfb\xd6\x2d\xf8\xdb\x5f\xff\xe2\x2a\x04\x7f\ +\x7a\xf9\x55\xf4\xeb\x7b\x14\x46\x8f\x1e\x89\x48\xa4\xbe\xb6\x74\ +\xeb\xd6\xf5\x5f\x7e\xb5\x62\xfd\x1b\x7f\xfe\xf3\xda\x0f\x3e\x98\ +\xb7\x1b\x00\x55\x80\x0b\xa0\xcb\x38\x1b\x92\x2b\xe4\xf9\x98\xbc\ +\x1a\x2c\x41\x2d\x25\x0f\x40\x8a\x9f\xcd\xa1\x7d\x3a\xb6\x41\x41\ +\x30\x88\xda\xea\x08\x36\x6f\x28\xc7\x81\x9d\x61\x65\x01\x5a\xa1\ +\x92\xf8\x51\x08\x1d\x60\x40\x1c\x26\xfa\x61\x3a\xb6\xc8\x0b\x81\ +\xc6\xd0\x4f\x6f\x9c\x3a\xa1\xb2\xe2\xc0\xe5\xfb\xca\x76\x1f\xbf\ +\x6d\xcb\xc6\x76\xa6\x61\x90\xc7\x9e\x7f\x1d\x3d\x7b\xf5\x51\xa0\ +\xdb\x00\x6f\x7c\x90\x46\x4d\x13\xb7\xfe\xe2\x17\x58\xbb\x66\x4d\ +\xa6\x10\xf0\x32\x10\x0c\xa0\x5b\xd7\xae\xe1\x82\xc2\xbc\xcd\x7b\ +\xf7\xee\x98\xf7\xe6\x9b\x6f\x96\x52\x4a\x4d\x00\xfb\xd3\x4c\xfa\ +\x4e\x59\x9a\x9c\xf7\xa6\x9d\xaf\x91\xa5\x21\x4b\xf5\x4f\xb7\x14\ +\x01\x28\xe1\x02\x70\x54\xa7\xb6\x28\x08\x04\x50\x53\x1d\xe5\x02\ +\xb0\x1f\xe5\xe9\x02\xd0\x1a\x55\x5a\x0e\x29\xd0\xfc\x04\x66\x94\ +\x82\x01\x6f\xe0\x31\x5c\x0c\x80\xb9\x09\xc1\x92\x0d\x15\x9d\x66\ +\xbd\xf4\x87\x1b\xd6\xaf\x5e\xf1\x83\xd2\xad\x9b\xba\x54\x1e\x3c\ +\xa8\x0b\x50\x34\x0d\x44\x82\xd3\xbe\x43\x27\x3c\xf5\xe2\x2c\x14\ +\x14\x16\x5a\x00\xfd\x6e\x73\xf6\xaa\xaa\x4a\x5c\x3b\xf9\x67\xa8\ +\xac\xac\x44\xd7\xee\x5d\x22\x05\x79\x79\x7b\xca\xcb\xf7\xad\x7e\ +\xef\xfd\x77\x97\xd7\xd6\x56\x45\x25\xb0\xa6\xe4\xed\x0d\xbe\x5c\ +\x68\xbb\x02\xbf\x4a\x9d\x17\x1a\x0f\x65\xee\x25\xb5\xbc\x54\x30\ +\x91\xa0\xe8\xc2\x15\x38\x44\x81\xbc\x89\xc0\x9b\xab\x27\x7a\x22\ +\x1e\x37\x2f\xc0\x8d\x78\x04\x8f\xe3\x0b\xd9\x99\x7d\xfe\x4d\x45\ +\x11\x21\x38\x39\x11\xb4\x09\xb3\xae\x93\xde\xa7\x8d\x9f\x80\x77\ +\xdf\x7a\x0d\x3c\x8a\x4e\x4d\xcd\xb4\x94\x69\x26\x38\x50\xbe\x1f\ +\x0f\xdd\xf7\x6b\x4c\x7b\xe4\x49\x78\x3d\x1e\x2b\xb0\x9c\x0f\x21\ +\x04\x5a\x46\x9d\x95\x95\xed\xd9\xfb\xf5\x9a\xd5\x5b\xba\x74\x6b\ +\xb7\x7b\xe5\x3b\x9f\x6f\x5a\xb8\xe8\xa3\x5a\x00\x15\x0a\x4c\xa1\ +\xe1\xa6\x04\x75\x87\x3c\xcf\x54\x1f\xc1\xf5\x29\x41\x90\xe4\x06\ +\x7c\x0b\xb3\x00\xb9\xb4\x5f\xe7\xf6\x28\x0c\x06\x51\x5d\x15\xc1\ +\xa6\x6f\xf6\xf1\x6c\x60\x4d\xca\x02\x90\xd6\xa8\xd1\x8b\xf4\xbc\ +\x50\x2b\x0e\x12\x25\x08\x57\xc4\x40\x41\x16\xce\xbf\x78\xc7\x6f\ +\x7c\x7e\xef\x29\x1e\x4d\x3f\x85\x83\x3a\x98\x03\xa1\x59\xb5\x72\ +\xd9\xe7\x0b\x70\xef\x6d\x3f\x07\x08\x52\x26\x59\x93\x65\x83\x8f\ +\xbe\xe0\xa2\x4b\x70\xcd\xf5\x37\x34\x36\x33\x27\xca\x4a\x4e\xeb\ +\xbe\x5e\xb3\x65\xd1\xc2\x05\xdf\xce\x9a\x35\x73\xeb\xc6\x0d\x1b\ +\x6a\x91\xa4\xfd\x29\x93\xae\x24\x59\x69\xbb\xb4\x02\xb2\x5e\x07\ +\x45\x86\x04\x9c\xc2\x85\x5a\xa4\x05\xb8\x07\xf7\x10\x40\x6a\x1c\ +\x67\x9d\x68\x8e\xd3\x40\x02\x40\xf7\x68\x08\xe4\x78\x41\xe3\x0c\ +\xe1\xda\xd8\xf1\x2b\xca\xff\x31\xef\xc4\x2e\xe3\xc5\xf4\x4a\xd3\ +\x34\xc7\x4c\xda\xe8\x13\xc7\x60\xd2\x35\x3f\xc3\xab\x2f\x3e\x27\ +\x41\xb7\x0b\xc1\x9c\xb7\x67\xa3\x5f\xff\x7e\x38\x6d\xec\x58\x7b\ +\x0c\xc0\xff\xf0\x22\x61\x45\xc2\x1b\x37\xac\xdf\xba\x64\xc9\xe7\ +\x5b\xdf\x7a\xf3\x8d\x6d\x4b\x3e\xff\xbc\x52\x82\x78\x40\x96\x3b\ +\xd2\x40\x2e\x45\x92\x88\x00\x5c\x91\x30\xef\x92\xe3\x4a\xc9\xbf\ +\xbb\x06\xb7\x90\x4c\x20\x64\x0a\xc8\x31\x09\x04\x9f\xd7\x1f\xa4\ +\x2c\x0e\x68\xfc\x38\xa0\xa3\xa4\x6d\x08\x86\x41\xf1\xf8\xb2\x5f\ +\x63\x64\xe7\x13\x10\xf0\xe4\x0b\xa0\x34\x97\x20\xed\x47\x93\xae\ +\xc6\x8e\x6d\x5b\xb1\x78\xe1\x02\x09\xba\x0c\xd2\xd2\x84\xe0\xa9\ +\xc7\x1e\x47\xaf\x5e\xdf\x43\xef\xde\xdf\x13\xe7\x0c\x9e\xcf\xdd\ +\xb8\x69\xd3\x8e\x15\xcb\xbf\xf8\xf6\xdd\xb9\x7f\xdb\xf6\xde\x7b\ +\xef\x96\x51\x4e\x02\x44\xf5\x11\x77\x48\xc0\xb7\x41\xd1\x6e\x01\ +\x70\x92\xaa\x65\x5f\x96\xf2\xe7\x4a\x48\x70\xb8\xc0\xb7\xe4\x18\ +\x40\x02\x22\x41\xb1\xf9\x38\x4d\x67\x49\xa3\x29\x80\xce\x2b\xf2\ +\x89\x60\xb0\x6c\xff\x76\xfc\x6e\xe9\xaf\xf0\xc0\xc9\x7f\x94\x56\ +\x80\xb8\x9a\xef\xdb\xef\xba\x0b\x37\x4d\x99\x82\x1d\xdb\xb7\x3b\ +\x09\x81\xe0\x19\xcf\xbf\x58\x37\x6c\xc4\xb1\x2b\x3e\x98\xf7\xfe\ +\xf6\xbf\xbc\x3d\x7b\x77\x7d\x7d\xbd\x29\xa7\x66\xa6\x02\x5c\x10\ +\x49\x33\xeb\xbb\x14\xb0\x19\x1a\x1e\x55\x82\xe2\xee\xd3\xff\xa7\ +\x05\xe0\x9a\x9b\x7e\xdd\xbd\x2e\x5c\x73\x2d\x19\x06\x4e\xc9\x4c\ +\x60\xd2\xe0\x66\x06\x82\x2c\xf1\x43\x19\x28\x15\x47\xf0\xfa\x75\ +\x74\xec\x54\x88\xb8\x41\x31\x77\xf3\xeb\x38\xa9\xdb\xe9\x38\xa7\ +\xf7\x05\xd0\x85\x79\x97\x66\xdb\x62\x09\xfc\x79\x39\x98\xf6\xbb\ +\x07\x71\xe3\x94\x9f\x21\x1c\xae\x4b\xb8\x0c\x3e\x46\x27\xa3\xa4\ +\xa4\xb0\xbc\xba\xaa\x72\xcb\x27\xff\xf8\x70\xe5\xa2\x45\x1f\x87\ +\xa7\x4f\x97\x20\x2a\xdf\x4d\x65\x7d\xab\x3c\xb7\x07\x8a\x2a\xd3\ +\x00\x8f\x40\x50\x76\xc0\xff\x67\x05\x60\xc1\xba\x83\x41\x8d\xe0\ +\xf8\x86\x9c\x7a\x61\x41\xd1\x90\x39\x6f\xbc\x42\x30\x4c\xfa\x5b\ +\x29\x04\x56\x62\x8c\x71\x06\xa8\xc9\x60\x9a\x54\x08\x42\x5e\x9e\ +\x0f\xbd\xba\xb5\x42\x2c\x6e\xe2\xee\x85\x3f\xc7\xf0\x4e\x23\xd0\ +\xb5\xa0\xab\x00\xd6\x6d\xce\x9e\x9f\x13\xac\x3a\xf7\xfc\xb3\x0f\ +\xac\x58\xb6\xbc\xf2\xf3\x25\x0b\x57\x7d\xbe\x64\xfe\xc1\xb4\x28\ +\x1c\x2a\x70\x13\xf5\x52\x59\xd2\x94\xe6\xab\xbe\x22\x2c\x80\x22\ +\x23\x0b\xe0\xff\x9b\x02\xb0\xe0\xeb\x03\x3a\x21\x64\x68\xc3\x1e\ +\x37\x9f\x87\x8c\xe2\x75\x7f\x03\x20\x17\x5d\x3e\x19\x3b\x4a\x37\ +\xe3\x23\xcc\x94\xe0\x2b\xb0\xd2\x89\x51\xca\x19\x30\xe3\x14\x71\ +\xc3\x44\xcc\x34\x60\x12\x8a\xd6\xad\x42\xe8\x1d\x6d\x85\xaf\xb7\ +\xee\xc5\x4d\x7f\xbf\x1a\xef\x5c\xf0\x21\xbc\xba\x72\x03\x75\xe1\ +\x70\xfd\xfa\x75\x6b\xb7\x2f\x5e\xb4\x70\xc7\x5f\xff\xf2\x36\xf7\ +\xe7\xcb\xaa\x01\x54\x59\x93\x2f\x76\x3f\x2e\xcd\xba\x0c\xf0\x24\ +\xd7\xb9\x68\x38\xc5\x7f\x99\x3c\x4d\x4c\xcb\xfb\xc9\x95\xb3\x44\ +\x8a\x75\x4c\xfa\x1e\x37\xa7\xf2\x96\xa9\xf7\xe2\xe3\x4f\x67\x82\ +\x40\x02\x07\x7b\x0c\x60\x50\x03\xa0\x0c\x46\x94\x21\x1e\xa3\x88\ +\x1a\x26\xea\x8d\x38\x0a\x82\x01\x74\xef\x54\x8c\x70\x7d\x0c\xab\ +\xf7\x7c\x81\x69\x0b\xef\xa0\x3f\x2c\xb9\x64\xfb\xf2\x2f\x96\xee\ +\x98\x3b\x77\xce\xce\xf9\x7f\xff\x78\x3f\xa5\xb4\x2a\x4d\x6b\x65\ +\xca\x55\x02\x6e\x15\x04\x09\xba\xec\x1b\x4e\xf3\xed\x46\x36\xc0\ +\x5b\xbe\x00\xb8\x6b\x79\x67\xb5\xc7\x4d\x68\x79\x7b\xf7\x95\x2e\ +\x7b\xe9\xf3\x86\xd4\x6a\x20\x74\x51\x3a\x91\xb0\x00\x1c\xfc\x78\ +\xd4\x44\x24\x6a\xa0\x2e\x1a\x47\x38\x10\x43\x4e\xc8\x87\xfe\x3d\ +\xda\xf2\x7a\x0c\x4f\xaf\x7a\x5c\x7b\x72\xde\xa3\x1b\xb0\x00\x2b\ +\xd2\x02\x34\xaa\x4c\xba\x24\x75\xcc\xe4\xbc\x1d\x16\x2d\x8f\xcb\ +\xd2\x71\x9a\x76\x44\x00\x24\x3d\xf1\xd2\x3b\x6b\x87\x8d\x3a\xb1\ +\xff\x7d\xbf\x98\x22\x32\x69\x1e\xaf\x0f\x1e\x8f\x8e\xbe\x83\x06\ +\xe3\xec\x0b\x2e\x82\xae\x6b\x0a\x70\xe7\x05\x15\xce\x0c\x44\xfc\ +\xc8\x5c\x80\x0c\xb2\x6d\x44\x00\x1a\x93\x16\x20\x6a\x20\xcc\x01\ +\xaf\x8e\x46\x10\xf4\x7a\x51\x92\x1b\xc2\xd1\x3d\xdb\xa3\x2e\x1e\ +\xc7\xbe\x71\xb5\x27\x9b\x15\x6c\x05\xd6\x62\xb1\x00\x55\x81\x4f\ +\x2c\x89\x1a\x26\xb5\x9c\x59\x01\x77\xf2\xe7\x47\x04\xc0\x81\xe6\ +\xbf\xf7\x56\xa0\x73\xe7\xce\x1c\x94\xa8\xe0\x06\x05\x5a\xf4\xf7\ +\x8f\xb0\x7f\xf7\x6e\x5c\x75\xdd\x75\xf0\xe7\xe4\x1c\x72\x75\x4d\ +\x34\x88\x42\xce\x02\x88\x9e\xec\x6f\x45\x9f\x31\xc0\x64\x30\xea\ +\x4d\x44\x23\x06\xea\x22\x31\xd4\xf8\x74\xf8\xbc\x1e\x2e\x7c\x3a\ +\x0a\x8a\x02\xe8\xdb\xad\x0d\x22\xdf\x1a\xbe\xca\x8b\x22\x3f\x62\ +\xcf\xb3\xbf\x61\x1b\x6a\x00\xec\x4b\x73\x01\x22\x5b\x67\x01\x9d\ +\x5a\x00\x6f\x76\xa4\xe1\xbf\x44\xad\x5b\xb5\xf9\xe4\x77\x77\xdd\ +\x0c\xd3\x34\x04\xf7\xe8\xd9\x09\xc7\x9f\x30\x84\x1f\xc7\xb1\x7e\ +\xed\x4a\xfc\xfe\xee\x3b\x71\x70\x7f\x19\x07\x88\x70\xd6\x24\x13\ +\x5b\x09\x42\xa0\xa7\xd6\x03\x60\x23\x46\x28\x4b\xb9\x81\x28\x43\ +\x2c\x62\xa2\x3e\x62\xa0\x86\xfb\xfe\xca\xba\x7a\x94\xd7\x87\x51\ +\x4b\xa3\x68\xd3\x3a\x17\xdd\xda\x15\x21\x18\xf2\x74\xc6\x24\xdc\ +\x28\xa7\x6e\xb5\x92\x0f\x72\x8e\x49\x8e\xca\x05\x16\x93\xa5\x11\ +\x38\x1d\x11\x80\xc3\xa0\x92\xd6\xed\x1f\x3f\xb8\xbf\x1c\x86\x61\ +\x08\x0e\x06\xbd\x28\xdb\xb3\x27\x55\xdf\xb5\x73\x07\xee\x9b\x7a\ +\x1b\x36\xac\x5d\x03\x9f\xce\x01\xd7\x35\x5e\x6a\xbc\x24\xa9\x12\ +\xd4\x88\x09\x43\xa0\x62\x00\xe9\x10\x08\x9c\x88\xc6\xa4\x15\xa8\ +\x33\x44\xf0\x57\x55\x17\xc5\xc1\x70\x1d\xf6\x73\x21\xa8\x23\x71\ +\xb4\x6d\x97\x87\x92\xc2\x1c\x78\x82\xda\x45\x98\x86\x33\x1c\x00\ +\x37\x9b\x1b\xe0\x4d\x7a\x31\x68\xfc\x19\xe7\x85\x6b\xaa\xaa\x43\ +\x70\x27\xb1\xd9\xf3\xea\x29\xd7\x60\xc2\x59\x13\x01\x0e\xc0\xf6\ +\xed\xdb\x76\x7d\xb5\x62\xd9\xf6\x0f\xe7\xbd\x5f\x3a\x77\xee\x3b\ +\xfb\xf2\x1e\xf5\xfc\x7c\x78\xf7\xde\x68\x9d\x9b\x8f\x8a\xca\x5a\ +\xac\x58\xf3\x2d\x76\x95\x56\x20\x5e\x65\x40\x18\xf1\x36\x60\xc2\ +\x44\x78\x80\x04\x93\x10\xa0\xe7\x6a\xf0\xe5\xeb\x08\xe6\x78\x91\ +\x93\xeb\x43\x5e\x88\x73\x30\x80\x90\xc7\x8b\xaa\xc4\x82\xd2\xb6\ +\x72\x6e\x21\xa2\xfb\x59\x1c\x47\x63\x2a\xf6\x7e\xd7\x6b\x74\x24\ +\x06\x70\x21\xc2\x09\x80\x76\xcd\xb5\x37\xaf\xfa\x6a\xd9\xf2\x91\ +\xaa\x01\x36\x32\x4c\x03\xd3\x1f\x7f\x02\x33\x5f\x79\x65\xc3\x97\ +\x5f\x2e\x7e\x67\xff\xfe\xfd\xe5\xd2\x72\x79\x75\xaf\x5e\x96\x87\ +\x3c\xb9\x1e\x00\x67\xed\x67\xa0\x20\xd0\x53\xd5\x38\x60\x46\x28\ +\x62\xba\x0c\x0f\xc0\x60\x32\x5e\x37\x4d\xd4\x07\x7c\xd0\x7d\x1a\ +\x0a\x8a\x83\x88\xec\x33\x5a\xc7\x88\xf9\x3c\x80\xb3\xd0\x08\x3a\ +\xe2\x02\x0e\x9f\xf4\xa2\xe2\xa2\x37\x13\x00\xa7\xd8\x70\x67\x8e\ +\x7b\x9f\xb6\x6d\xbb\x8d\x0f\x04\x42\x15\x72\x4e\xbe\x90\x68\xa4\ +\x54\x40\x2e\x12\x41\x92\x61\xa1\x6f\x70\x2a\xe2\x98\x9d\x0a\xd8\ +\xa8\x14\x82\x3a\x8a\x68\xad\x81\xba\x70\x1c\x35\xb5\x51\x54\xd6\ +\x46\x70\xb0\xb6\x0e\xd5\xb1\x08\x3c\x21\x0d\xfe\x90\x07\x1a\x21\ +\x13\xf1\x10\xae\x22\x84\x1c\x11\x80\x7f\x03\xd1\x77\x66\xcf\x9c\ +\x6d\x1a\x71\x34\x96\x75\x8d\x1c\xd3\xeb\x7b\xfd\xee\xec\xd0\xa1\ +\xcb\x1e\x00\xbb\x34\x9f\xb6\x03\x20\xd0\x09\x67\x01\xbe\xc3\x9e\ +\xc0\x05\xf8\x06\xcf\xe1\x7a\x6c\xc1\xc9\x88\x63\x0e\x08\x98\x12\ +\x02\x86\x58\xd8\x44\xa4\x26\x9e\x58\x22\x46\x35\x17\x82\xca\x70\ +\x3d\xea\x8c\x18\xbc\x21\x1d\xba\x57\xe4\x98\x1f\xc4\xdd\x28\x24\ +\x84\x1c\x71\x01\xff\x42\x22\x09\x5e\xbf\x7e\xdd\x81\xfe\xfd\x06\ +\xe3\x30\xa9\x4b\xd7\x2e\x3d\x3e\x7a\xf3\xcd\x3f\x63\xf8\x88\xe3\ +\xd0\xf9\xc5\x36\x52\xf3\xd5\xca\x1c\x81\xa2\xd3\x4f\x3b\xa3\x8c\ +\x31\x0a\x16\x65\x38\xa3\xdb\x78\x1c\x7d\xda\x31\x78\xe4\x8b\x87\ +\xf0\x61\xe9\x07\xc9\x45\xa2\x08\x43\xdc\x64\x30\x39\x1b\x06\x41\ +\xcc\x6b\x42\xf3\x11\x68\xe0\xec\xe7\x7f\x29\x6b\x75\xd3\x98\x5b\ +\x2a\xee\xab\x7f\x00\xb5\xf5\x71\xfc\xe4\xea\x49\xd8\xb3\x6b\x17\ +\x98\x5a\x67\x48\xa5\x06\x2e\xbb\x7c\x12\x7e\x78\xf1\x25\xf2\x9c\ +\x68\x4f\x96\xa9\x3f\x50\x6d\xb0\x94\xb2\xd3\xed\xb7\xdc\x80\x55\ +\x5f\xad\x80\x13\x8d\x3d\xf3\x6c\x5c\x77\xd3\xad\x69\x63\x32\x59\ +\xaa\xe4\x84\x3a\x61\x7f\x8f\xc5\x0b\xfe\x81\x4b\xce\x3f\x93\xfc\ +\xd7\x2d\x00\x63\x2c\xb5\x3f\xdd\x30\xe3\xb0\xb3\xe1\xca\x63\x4e\ +\x1a\x85\x3e\x47\xf5\xc0\xd5\x57\x4f\xc1\x8c\x19\xaf\x82\x90\x4c\ +\x17\x60\x27\x0a\xc6\x92\x33\x85\x93\x4e\x3e\x09\xbd\x8b\xfa\xe0\ +\xe9\xb1\xcf\x61\xc6\x19\xaf\xa1\xd8\x5f\x02\x98\xd2\x1a\xd4\x33\ +\xc4\x6b\x13\x6e\x21\x61\x11\x0c\x44\xea\x0c\x98\x94\x02\x84\xe1\ +\x8f\x6b\x9e\xc4\xf6\xea\x52\xf0\xcd\xf6\xd8\xc3\x73\x14\xcc\x49\ +\x93\x3c\x5e\x8c\x1b\x7f\x26\x28\x4b\x02\x4f\x93\xc2\x21\x18\xb2\ +\x14\x6d\x2a\xbd\x28\xfb\x72\x96\x1d\xb7\x97\x6e\x53\xe0\xdb\x89\ +\x07\xc2\xe7\xc9\x71\x98\x7c\x0f\x39\xae\x2c\xc5\x1f\xd1\x96\xf6\ +\x1e\x50\x7d\xe6\xcd\x7d\xbb\x09\x58\x00\x25\x04\x06\x21\x84\x25\ +\xfc\xfb\xe1\x50\x7d\x7d\x0c\xad\x5b\xb7\x42\x2c\x16\xc5\x37\x1b\ +\x36\x00\xbd\xa1\x76\xe9\x80\xb3\x25\x08\x5c\xb7\x7e\x83\xb8\x02\ +\x23\x46\x8d\x44\x51\x71\x09\xa8\x44\x61\x74\x87\x13\x30\xe7\xec\ +\xf7\x70\xe3\x67\xd7\x61\x45\xf9\xb2\x54\x6c\xc0\x12\xed\xbc\xa4\ +\x3a\x2f\x75\xf1\x52\x44\xcc\x08\xee\x5a\x7a\x07\xe8\x2b\xc0\xca\ +\x95\xab\xa4\x66\x0b\x10\x24\x78\xc0\x39\xe7\x9d\x8f\x50\x6e\xbe\ +\x58\x66\x66\x19\xda\x9e\xa1\xa5\xaa\xcd\xaa\xa5\x0c\x78\xea\x89\ +\xc7\xb0\x62\x85\xb3\x00\x0c\x39\x6e\x04\xda\x75\xee\x8e\x48\xcc\ +\x4c\xd3\x76\xc7\x71\x64\xc9\x32\xce\x6d\xde\xb8\x1e\xaf\xce\x78\ +\x01\xaf\xbc\xf4\x7c\x93\x5a\x0c\xa2\xe6\x61\x0a\xc0\x27\xf3\x3f\ +\x11\x53\xc3\xc9\x93\xaf\xc2\xb5\xd7\x4f\xc1\xac\xd7\x9f\x45\x12\ +\x7a\x4d\x65\x01\x89\x64\x28\xf3\xfc\xfd\xf3\x12\xda\x93\x74\x11\ +\x8c\x30\x71\xba\x4d\xa8\x1d\x5e\x1d\x3b\x0b\x8f\xac\x7c\x08\x2f\ +\x6c\x78\x06\x0c\x4a\x45\x99\x28\xd5\x58\x6f\xf1\xbd\x03\xf9\xeb\ +\x8b\x94\x80\xb1\x8c\xfc\xaf\x30\xff\x54\x01\xef\x06\x8c\x3a\x6f\ +\x71\x07\xe1\xda\x1a\xcc\x7e\xe3\x4f\x70\xa3\xcb\xae\xbc\x06\x8c\ +\x65\x1f\x07\x19\xc0\xab\x72\xe6\xcb\xcf\x36\xb9\x20\x10\x8c\x93\ +\x61\xc4\x71\x38\xec\xf3\x79\x70\xfb\xd4\x5b\x71\xed\x75\xd7\x22\ +\x10\x08\x00\x12\x7c\x11\x04\x4a\x0b\x60\xa5\x0e\x1d\x3a\x62\xd8\ +\xb0\x61\x10\x24\xb6\x6d\xeb\x20\x82\x13\xaf\xf3\xe1\xe6\x41\xbf\ +\xc2\xf4\xd1\xcf\x21\xd7\x9b\x0b\x37\x62\x60\x08\x9f\x5a\x03\x27\ +\xea\x3f\x60\x00\x06\x1e\x3b\x54\x99\x7e\xc1\xca\x34\x2b\x93\x9d\ +\x71\x3e\xa3\xff\xdb\x6f\xcc\x42\x6d\x8d\xf3\xf8\xad\x5a\xb7\xe1\ +\xfe\xff\x9c\x6c\xe3\xc8\x12\xb6\xf7\xae\xa9\xa9\xc6\xdc\xb7\x5f\ +\x6f\x62\x02\xa0\xe6\xf9\x8d\xe6\xc2\xa2\x02\x4c\x7b\xe0\x3e\xfc\ +\xe0\xc2\x0b\x04\xf8\x94\x41\x06\x7d\xca\x02\x38\xe5\x83\xcf\x3a\ +\xf7\x1c\xa9\x15\x49\xf0\x75\x8f\x87\xb3\x0e\x4d\x4f\xb0\x06\x10\ +\x0d\x63\x3a\x9c\x8a\x27\x46\x3c\x0b\x9f\xe6\x73\xff\xac\xdd\xe2\ +\x88\xf7\x8a\xc1\x4a\x97\x5e\x7e\xa5\xe3\xc5\x67\xb0\x81\x65\x8b\ +\x11\x24\x73\xd3\xfc\x0c\xdc\xe8\xc2\x4b\xae\x10\x31\x86\xeb\x38\ +\x90\xe3\xb8\x08\xdc\x9c\xd9\xb3\x50\x57\x17\x6e\xa2\x02\x60\x18\ +\x8d\xe2\xae\x5d\xbb\xe2\x81\x07\x1f\xc0\x69\xa7\x8d\xe5\xe0\x07\ +\xe5\x05\xb0\xdc\x1c\xea\xb0\x1f\xc0\xef\xf7\x63\xdc\x19\xe3\x45\ +\x5f\x26\x67\x09\x1c\xf8\xc4\x05\xe5\xec\xe3\xc7\x1e\xe8\x9c\xa1\ +\x11\x1c\xd7\x6a\x38\x1e\x1c\xfc\xa8\x48\x2b\x83\xc0\x91\xa2\xc7\ +\x45\x32\x3c\x40\x7e\x41\x01\x26\x9c\x7d\x9e\xab\xb6\xb3\xac\x5a\ +\xca\xb0\x64\xf1\x02\x6c\xda\xb0\xde\x35\x13\x7a\xe1\x65\x93\xb2\ +\x6b\xbb\x3a\x6f\x11\x06\xe0\xcf\xaf\x09\xbf\xdf\x54\x05\x20\xee\ +\xca\xa6\xe4\x21\x43\x8e\xc5\x3d\xf7\xde\x8d\xd1\xa3\x8f\x47\x20\ +\x18\x02\xa0\xfe\x61\x22\x05\x80\x48\xb6\x20\xc7\x23\xff\x53\x90\ +\x13\xca\x15\xd9\x3e\x71\x71\x1a\x6e\x22\xd1\x3c\x5c\x00\x12\xec\ +\x85\x9e\x12\x02\x1d\xa7\x74\x18\x8f\x5f\x1f\x7d\xaf\xfb\xe7\xed\ +\x19\x07\xcd\xa7\x29\xa7\x7b\x1e\x5f\xba\xf6\xfb\x83\x60\xac\xd1\ +\xda\x6e\x8b\xe4\x5f\x9b\xf1\x2c\xdc\xe8\x94\xb1\x13\xd0\xa6\x5d\ +\xc7\x46\x68\x3b\x1c\xdd\xce\x17\x8b\x3f\xc5\xd6\xcd\x1b\x9a\xee\ +\x8d\x21\xf9\xf9\x85\x0c\x9c\xce\x3f\xff\x7c\xa1\x9d\x6f\xbd\xf5\ +\x16\xd2\x48\xdc\x3f\xcf\x18\x15\xa6\xdb\x9a\x8c\x49\xe0\x5d\xfc\ +\x78\x10\xa7\xf7\x3a\x16\x1d\xf2\x4a\xb0\xaf\xb2\x12\x9f\x7d\xb5\ +\x16\xdf\x6e\xdd\x83\x58\x95\x01\x54\x03\x81\x79\x21\xab\x37\xcf\ +\x18\x47\x05\x6a\xe9\x73\x7a\xc0\x3c\xc9\x80\x71\xba\x01\xa7\xec\ +\xb2\xe7\x63\x0f\xf4\xbf\x7b\x2c\x63\x30\xb8\x12\x73\x6f\x55\xef\ +\x6b\x3f\xaf\x5e\xde\xd8\x36\xfb\x40\xea\x7f\x4a\xba\x4b\xd3\x34\ +\x49\x53\x9a\x05\x08\x4d\x4f\x10\xa5\x26\x82\xc1\x40\xb2\x2e\xc9\ +\xeb\xf5\x23\x2f\xaf\x80\x6b\x58\x40\xf8\x77\xeb\xbf\xa8\x69\x04\ +\x14\xd5\x29\x17\xa0\x3b\x84\x80\x45\x85\xc5\x19\xaf\x11\x3d\xe4\ +\x66\x12\x30\x22\x35\x8a\x02\x42\x6b\xa8\x9a\x42\x7d\xc9\x50\xd5\ +\xef\x00\xe2\x9d\xe2\xb0\x12\x3b\x8e\x21\x7f\x59\xa1\xba\xb8\x52\ +\x00\xe4\x6b\x2d\xa0\x5b\xcf\xb9\xbe\x26\xcb\x38\xcc\xf1\xfd\xb2\ +\x7f\x06\xbb\x90\x35\x31\x01\x30\x44\x39\x6b\xd6\x2c\x48\x12\xe6\ +\x98\xef\xfa\x45\x28\x27\x0f\x39\x9c\x13\x7e\xd0\x89\x34\x02\x94\ +\xa3\x06\x1a\x64\x2a\x98\xe8\x20\xc4\x6a\x61\x8a\xa5\xd8\x90\x64\ +\x1b\xd1\x52\x8b\x47\xe2\x80\xb1\x64\x6e\x00\xa2\x14\x42\xc0\x24\ +\xfb\x17\xf8\xb1\xfb\xe2\xed\x36\xed\x36\x0b\x4c\xe8\x47\x79\x11\ +\xdc\x19\x94\x17\x5e\xe5\x03\x78\x29\xeb\x0a\x04\xd5\x2e\x5d\x81\ +\x02\x33\xbd\x5d\x72\xea\x35\x0a\xcc\x86\x36\x20\xd5\x0f\x10\x2c\ +\xeb\x50\xef\x0f\x9a\x1a\x5b\x9d\x53\xe3\x37\x39\x01\x90\x1f\x5e\ +\x32\x45\x28\x94\x83\x92\xe2\x36\x1c\xfc\x1c\xae\xfd\x45\xf0\xb8\ +\x80\xcf\x84\x05\x60\x69\xdb\xc1\x9c\xef\x0b\xf0\x07\x02\xc9\x37\ +\x21\x10\xed\x44\x93\xfd\x64\x9d\x31\x05\xbe\xb8\x78\x94\xa6\x04\ +\xc1\x57\xe3\x47\xe1\xea\x12\x54\x0c\x2c\x87\x95\xea\x06\xd4\xa0\ +\x60\x5f\xa1\x02\xcc\x0a\xb4\x02\xcb\xb9\x5d\xf6\xb1\xb7\xab\x3e\ +\xaa\x6e\x05\x53\x31\x49\xd4\x49\x5a\x9d\x69\xb2\x0e\x20\xb5\xf0\ +\x21\x84\xbf\x69\x5a\x80\xc1\xc7\x8e\x14\xa5\x04\x44\xb8\x02\xa9\ +\x9e\xd0\x35\x4d\x02\xe4\x9a\x47\x90\xd3\x40\x5d\xba\x01\xdb\x2c\ +\x40\x69\x13\x95\xb2\x41\x99\x02\x3f\xa5\x45\x52\x66\x68\xc3\x07\ +\x51\x49\x96\x92\xe5\x6d\x51\xd3\xb3\x0a\x46\x6e\xa6\x2b\xa8\xe9\ +\x51\x85\x36\x0b\x3a\x40\x8b\x6a\x60\xf2\x07\x96\x84\x8c\xe0\x86\ +\x36\x6b\x3b\xa0\xda\x2d\xaf\x57\x63\xc0\x72\x4e\x8d\xa9\x22\x17\ +\x6b\x1f\xd5\x45\x35\x28\xab\xd1\xd4\x66\x01\x52\xf2\x95\x16\x10\ +\xa2\x49\x26\xa2\xee\xce\xd4\x65\x1a\x48\x6c\xe3\x2b\x56\xef\xa7\ +\xca\xf4\x0b\x4b\x32\xae\x9b\xb0\x27\x31\x82\xe2\x15\xad\x60\x25\ +\xa6\x33\x54\xf7\xae\x90\xfd\x2d\x00\xc9\xb1\xd3\x41\x64\x16\x00\ +\x6d\x18\x41\x69\xb7\xea\x93\x1d\x60\xf9\x2a\x6b\x47\x59\xb5\xe9\ +\x42\x93\x13\x00\x05\xbe\xa3\x99\xa4\x82\x9d\xc1\x57\xa0\xe9\xd0\ +\x38\xab\x2d\x61\x04\x8a\xd4\xeb\x15\x30\x50\xa0\xab\x52\x9e\x23\ +\x50\x16\xa2\x41\x0a\xf2\x36\x15\x80\xc4\xed\x97\xaa\xb6\x5b\x4d\ +\xfa\x18\xd6\x55\x39\x77\xed\x67\x16\xed\x67\x2e\xda\xaf\x00\xb6\ +\xa0\xe7\x28\x3c\x36\xb3\xc1\xec\xa0\x37\x51\x0b\xa0\x58\x01\xd5\ +\x48\x26\x50\xb7\x86\xeb\xd0\xac\x53\x45\x8b\xb6\x33\x67\x8b\xa0\ +\x40\xcc\xbc\xb0\x24\x79\x4c\x62\x1a\x72\xbf\xcd\x83\x95\x22\xed\ +\xea\x40\x09\xb5\x6b\xb8\x12\x34\xb7\x36\x17\x00\x25\x5b\xac\x47\ +\xea\x50\xb5\x2b\xe1\xc9\x62\x1d\x2c\xe6\xbf\x89\x0b\x00\x68\x36\ +\xf0\x6d\x16\x21\x7d\x47\x10\xe1\xec\x36\x3e\x38\x53\x05\x80\x73\ +\x29\xd8\xa2\x51\x72\x81\x29\x6f\x5d\x01\xac\x44\x3d\x14\xd1\xd6\ +\x91\x74\xf0\x2c\x2b\x75\xd9\xad\x83\xd2\x7e\x87\x76\xf7\xd8\x40\ +\x51\xa6\xdb\xc8\x62\xfe\x9b\x5e\x0c\x90\x0d\x70\x05\x3a\x04\x5b\ +\xdb\x52\x31\x80\xce\x59\x39\x00\x92\x29\x00\xd4\x59\xeb\x61\x3d\ +\x27\xc1\x52\xae\x80\x80\x48\x2d\x0b\xec\x0e\xc1\x53\xed\x85\x95\ +\xea\x3b\x84\x2d\xc0\x5b\xcc\xb6\x9b\xff\x17\x7f\xdc\x7d\x3f\x9c\ +\xda\x61\x7f\xbd\xbb\xdb\xb0\x4f\xfb\x78\xb5\x29\x4e\x03\x59\xba\ +\xb9\xb5\x92\xbd\xcd\xb2\xbb\x86\x80\xa8\xe5\x60\xcd\x3e\x0b\x10\ +\xe0\x8b\x03\x31\xc7\x48\xa6\x82\x19\x44\x69\x8f\x09\xd2\x63\x92\ +\x44\x3b\x4d\xcd\x10\x08\x05\x82\xbb\x82\xa8\xc9\x8f\x67\xba\x81\ +\xb6\xf5\xca\x3c\xab\xc0\x32\x0b\xf0\x8e\xbe\x3d\xbb\xf6\x33\x37\ +\x90\xdd\x7d\x3e\x63\xcd\xc3\x05\xb8\xfb\x7e\x1c\xfa\x9c\x70\x00\ +\x32\x09\xc4\xff\x02\xe9\x6e\xc0\x06\x8c\x9d\x15\xe8\x4e\xc9\x1a\ +\x21\x61\xa9\x3e\xbe\xbd\x01\x58\x29\x5e\x10\xb3\x6a\xae\x3d\x30\ +\xb4\x03\xef\xea\xdb\xc5\xdf\xec\xda\x6f\xd7\xec\xf4\x3e\xcc\xd5\ +\x05\x34\x49\x0b\xe0\xaa\xfd\xf2\xbc\x2b\x51\xca\x40\xa4\x1c\x93\ +\xd4\x0f\x52\xcc\x1c\xfe\x71\x22\x16\x84\x20\xad\x00\x9c\xb5\x5f\ +\x99\x17\x80\x22\x45\x4e\x02\x60\xe4\xc7\xd3\xb4\x5e\x69\xae\xb3\ +\x05\x70\x31\xfb\xee\x91\xbf\xbb\xf6\x33\xc1\x4e\xb1\x81\xd5\x3a\ +\x34\x71\x17\x00\x06\x58\x65\x80\xa4\x1a\x0f\x4d\x44\xae\xb9\x53\ +\x13\x94\x51\xc1\x2c\xdd\x1f\x8b\x92\xaa\x0a\x41\x46\xd0\x45\x6c\ +\xdb\xb6\x58\x5a\xdd\x1a\x1b\x00\xbe\x72\x1f\x08\x25\x60\x1a\x53\ +\x42\xe8\xa3\x30\x7d\x26\xb4\x88\x66\xd1\x7a\x4b\x60\x28\xff\xd8\ +\x03\x3f\xeb\x94\x30\xab\x75\x50\xe4\xdc\x6e\x73\x1b\x52\x10\x9a\ +\xa6\x05\x58\xb5\x6a\x69\xd6\xf8\x40\x45\xd5\x92\x52\x26\x9a\xe2\ +\xa8\x57\xba\xc2\xe4\xa5\x41\x39\xb3\x64\xa8\x98\x4e\xb3\x5e\xff\ +\x93\x88\xfe\xf9\xd2\xaf\x58\x54\x0a\xe5\x84\x44\xba\xd9\xe7\xf3\ +\x89\x35\x06\x4d\xd3\xac\xe3\x67\xe4\xd2\x0d\xd3\x44\x3c\x16\x07\ +\x7f\xe6\x0f\xea\xea\xea\x70\xee\x67\xe3\xb1\xb9\x76\x23\xd2\xe9\ +\x85\xb9\xaf\x62\x50\x9b\xc1\x32\xbb\xe8\xb8\x3d\xcb\x6d\x7b\x98\ +\x5b\x9b\x6a\xb7\xb7\xb9\x6f\xff\xca\x32\x7e\x53\x8c\x01\x0e\x1f\ +\xfc\x0c\xed\x56\xbb\x6e\x4c\x66\xf2\xd2\x74\x8f\x31\xa8\xd2\x64\ +\x35\xb6\x6d\x7c\x45\x6a\x09\x49\x3e\xfd\x33\x39\xd5\x2c\xf0\x14\ +\xc2\x4a\xe5\x91\x7d\x72\x7c\x8b\x56\x3b\x81\x0f\x49\x8e\xe0\xb8\ +\x83\x0f\x37\xf0\x55\x5b\xd6\xf1\x59\x53\x5c\x0b\x18\x30\x60\x28\ +\x88\xd5\xef\x83\xa8\xc3\x6c\x2e\xe0\x46\x80\x4a\x0b\x20\x36\x7d\ +\x58\x4c\xdd\x45\x17\x5e\x92\x38\x27\x81\x04\x88\xa6\x0b\x20\x97\ +\x2c\x5f\x22\xda\x8f\x1b\x34\x24\xfd\x82\x3a\xce\x0c\x84\x6b\xa1\ +\x54\x94\xfb\x26\xee\x01\x7a\x22\x83\x6e\xf8\xd9\x14\x04\xb7\x85\ +\x54\x10\x69\x9f\x15\xd8\x76\x11\x7f\xf5\xcd\x66\x51\x0e\xec\xd3\ +\x1d\xcc\x61\xe5\x4e\xbd\xd6\x39\x90\x85\x6c\xcb\xac\x67\x6f\xa7\ +\x94\x36\x2d\x01\x80\x00\x8d\xd8\x82\x3e\xd2\xb8\x10\x40\xf4\xe2\ +\xc0\x4b\x0b\x20\x2f\x80\xcd\x92\x30\x19\xf0\x35\x04\x81\x4c\xf4\ +\xd5\x18\x54\x7f\xb7\xe9\x20\x90\x01\xaa\x16\xb1\x8a\xa5\x02\x4d\ +\xf5\xb7\x64\x15\xad\x01\x9f\x45\x4f\xed\x11\xbf\x6d\xe6\xa0\xda\ +\x5c\x23\x7f\x87\x29\x23\x2c\x33\x83\xe6\x90\x07\x90\xa0\x2a\xa1\ +\xc8\x1a\x04\x26\x35\xd4\x94\xcc\x81\xb5\x8f\xaf\xa2\x40\x05\x84\ +\xd5\xd4\xba\x97\x4a\x8b\x64\x5a\xd8\x46\xc4\x2a\x2c\x96\xe3\x8c\ +\xe9\xa0\x0a\x14\x9d\xfa\x40\xf5\x71\x4e\xf7\xba\x07\x85\xb6\xc8\ +\x3f\xd5\x55\xb5\x36\x4d\x01\xf8\xae\x44\x24\x40\x66\x83\x0b\xe0\ +\xcc\x00\x77\x01\x20\x32\xc1\x63\x03\x44\x69\xa5\x04\xd2\x56\x12\ +\xc8\x00\x93\x3a\xfd\x0f\x56\xc0\x6d\xc0\xda\xf7\x0a\x58\x04\xd0\ +\x02\xa0\x2d\xaf\xcf\x98\xa3\x75\x50\x6d\x6e\x91\xbf\x45\xb8\x9a\ +\x70\x1e\x40\x16\x96\x10\x4c\xa1\x0d\x11\xb5\x9f\x79\xe6\x78\xbe\ +\x33\xf8\x64\xf4\xec\xd9\x13\xed\xdb\xb7\x41\x9f\x99\xdd\xe5\x06\ +\x0e\x53\x6e\xe9\x62\x4e\xab\x8d\x72\x6c\x22\xea\x44\x82\xa0\x00\ +\xcf\x52\xaa\x04\x91\x98\xf6\x59\xe9\x95\xe7\x5f\xc2\xb8\x1e\xe3\ +\xb0\x74\xe9\x17\xb8\xe0\x82\x8b\x1d\xc1\x97\x60\xb9\x04\x88\xea\ +\x3d\x90\xc5\xf4\x6f\xd8\xb0\x1e\x1d\x3b\x76\x84\x13\x95\x95\xed\ +\x45\xe2\xb1\x3b\x00\x73\x9e\x51\xa0\xc9\xe6\x01\xb2\x3a\x7a\xe8\ +\x9a\x8e\xf7\xde\xfb\x2b\xff\x07\x3b\x41\x52\x12\x70\x06\x98\x50\ +\x41\x20\xb5\x25\x3f\x2c\xcb\xb1\xc4\xea\x4b\x95\xaf\x96\x47\x87\ +\x5c\x36\xa6\x7e\xbb\x00\x74\xcb\xeb\x26\xc6\x59\xbb\xf6\x6b\x57\ +\xf0\x19\xe0\xb0\xdd\xcb\xc9\xef\x33\x57\xb7\xd0\xbf\x5f\x3f\x01\ +\xbe\x1b\xf1\xef\x07\x4a\x03\xde\x6a\x1d\x9a\xae\x05\x70\x0e\xfa\ +\x08\xd2\x80\x23\x62\xef\xe0\x9e\x3d\x65\x62\x3e\xff\xd9\x67\x0b\ +\xb0\x65\xcb\xb7\xe8\x3f\xa0\x5f\xd2\x05\x50\x15\x03\x00\xee\x31\ +\x00\x81\x70\x01\x99\x00\x64\x33\xff\x72\x8c\xd4\x4f\xc0\x12\x45\ +\x13\x0f\x3a\xe7\x75\x16\xc7\x5f\x73\x01\x70\x03\xdf\x1e\xd9\x2b\ +\x0b\xe4\xec\xdb\xed\x6e\xe1\xf4\xb1\xa7\xa7\x76\x4a\xdf\x72\xcb\ +\x2d\xa0\x54\x76\x92\x63\xae\x59\xb3\x46\x01\x6f\xf1\xff\x4d\x59\ +\x00\x1a\x9d\x02\xbe\xeb\xae\xfb\xb0\x63\xc7\x0e\x71\x01\x1a\xb6\ +\x85\xb3\x5f\x00\x66\xe2\x87\x99\xca\x02\x58\x67\x19\xa9\x31\xe5\ +\x02\x10\xb1\x04\x81\x56\xe0\xdd\x02\x42\x61\x01\x4c\xa4\x53\xbe\ +\x99\x0f\x9d\xe8\xe2\x78\xcd\xda\xb5\xd9\xc0\xb7\xe6\x6c\x5d\x16\ +\x92\x2c\xbe\x5b\x9e\x1a\x37\x76\x2c\x38\x09\x05\x78\xe6\x99\xe7\ +\x64\x1f\xeb\x3e\x44\xbb\x05\x00\x9a\xb8\x05\x90\x9e\xd9\x15\x7c\ +\x79\x82\x6b\xfd\x16\xfb\x69\x61\x01\x18\x0c\x39\x4f\x77\x0e\xd0\ +\x14\x91\x8c\x75\x7f\x71\x7c\x68\xe0\x95\x15\x11\x3f\xb4\x24\xf3\ +\x3d\xda\x7b\x3b\x88\x32\x1a\x8d\x62\xd3\xa6\xcd\x99\x3e\xdd\x12\ +\x10\xc2\x66\xf2\xed\xe0\x01\xcc\xb1\x4f\x6e\x6e\x0e\x46\x8c\x1c\ +\x21\xce\xcd\x9d\xfb\x37\xc0\x25\x6d\x6c\x9f\xf6\x35\xc3\x1d\x41\ +\x8d\x67\x39\x0d\x04\x13\xe0\x53\xca\xd9\x25\x08\x64\x4e\x89\x14\ +\xdb\x9e\x44\xc5\xea\x9c\xd2\xa4\xa2\x5e\xf9\x30\x3d\x99\x16\x60\ +\x48\x87\x21\x32\x38\xdb\x08\x23\x1e\x4f\x07\xd5\x1d\x7c\x66\xfb\ +\x84\x96\x64\x8e\x7d\xca\x77\x32\xbf\xc3\xc9\xeb\xf5\x26\x63\x8e\ +\x6e\xdd\x71\xf9\xe5\x97\xa3\x7f\xff\xfe\xf6\xd5\x42\x96\x21\x48\ +\x4d\xff\x59\xc1\x4a\xfb\xdc\x4d\x3f\xb1\xd4\x2d\x6b\x02\x02\x78\ +\x83\x9a\x22\x18\xb4\x5c\x5f\xeb\x05\x57\xb3\x00\x66\x0f\xf8\x00\ +\x8b\x2b\x50\xa0\x89\xef\x0d\xfa\xfe\x0d\xe7\x60\x5d\xe9\x5a\xa4\ +\xd3\x59\xbd\x27\x82\x10\x22\x02\xc0\x4c\x73\x0e\xa7\x4c\xa0\x65\ +\xa7\x10\x5c\x4c\xbe\xdd\x32\x8c\x4b\xf8\x7f\x49\x37\xde\x78\x83\ +\x7a\xe0\xe6\xfc\xf9\xb8\xf4\xd2\x4b\x13\xcf\x50\x72\x30\xfd\xcd\ +\xc9\x02\xc0\x79\x6f\x20\x0e\xb1\x67\x70\xd0\xa0\x81\xe0\x85\xf0\ +\xff\x06\x93\x79\x00\x9b\x1b\x48\x69\xb3\xaa\x29\x80\x5d\xde\xdf\ +\x6a\x19\x80\xfb\xee\xbd\x0b\x07\x02\x07\x90\x4e\x3a\xd5\x31\xba\ +\xfd\x68\x19\x00\xae\x75\x01\x9f\xd9\xc1\x77\x4e\x04\xb9\xe4\x02\ +\xc4\x5f\xb1\x88\x35\x6f\xde\x07\x58\xb4\x68\x11\x76\xef\xde\xad\ +\xee\x1d\x3c\xe5\x14\xee\x12\xe6\x22\x87\xb7\x5b\xdc\x42\xf3\x11\ +\x00\xb9\xb2\x77\x58\x1b\x43\x07\x0d\x3c\x86\x07\x42\xd3\xe5\x62\ +\x10\x15\x2c\x2c\x40\xe3\x5c\x8c\x65\x2b\xb7\x0b\xf0\x92\x27\x4d\ +\xba\x02\x67\x9d\x3d\x11\xab\x0f\xae\x46\x3a\x75\x35\xba\xc2\xaf\ +\xfb\x85\x05\x58\xbd\x66\x6d\x3a\x98\xe9\x40\xcb\xd2\x65\x8d\x5e\ +\x81\xaf\x3e\x9b\x2d\xd1\x03\x5c\xc1\x6f\x41\x3f\xf7\xdc\x73\x39\ +\xe0\xa7\xa2\x7b\xb7\x1e\x98\x38\x71\x22\xaa\xaa\xaa\x92\x6e\x68\ +\xc8\x10\x8c\x1d\x3b\x36\x63\xe6\xa0\xa8\x05\xee\x0a\x1e\x35\x6a\ +\x24\x5e\x7d\x6d\x06\x0a\x0b\x0b\x52\x77\xc2\x0a\x17\x40\x6d\xa6\ +\xcf\x62\x7e\xa9\x02\x58\xc2\xe0\xe2\xf7\xd5\x7b\x8d\x1e\x89\xdb\ +\x6f\xbf\x55\xb8\x99\x95\xe5\xab\x90\x4e\xa7\x74\x38\x15\x9a\xfc\ +\x22\xa9\xde\xbd\x7b\xe1\xac\xb3\x26\x4a\xcc\xac\x1a\x6f\xf1\xf3\ +\x4a\xfe\x9c\xc1\x57\x02\xe3\x1a\x18\x7e\xf0\xc1\x87\x78\xf0\xc1\ +\x07\xd1\x40\xc3\x87\x0f\xcf\x66\xfa\x9b\x43\x22\x28\xfb\x22\xd0\ +\x19\x67\x8c\xc3\xe3\x4f\x3c\x22\x02\xa2\x7d\xfb\xf7\xc9\xc5\x20\ +\xce\xd2\x0a\x58\x36\x45\x58\x72\xe3\x44\x05\x5a\xb6\xdc\x3a\x1c\ +\xa7\x82\xd7\x5e\xfb\x53\x01\xf2\xd6\xea\xad\xa8\x63\xe1\x8c\x9b\ +\x4c\xaf\x1c\x76\x45\x4a\x00\x1e\x7d\xf4\x61\x31\x0b\x78\xe7\x9d\ +\x39\x19\x60\xd9\x41\x55\xe7\x44\x25\x3b\xf8\x96\x76\x65\x45\x4a\ +\x4b\xb7\xab\x3b\x95\x6a\x6a\x60\xc1\xbe\x99\x59\x00\xa5\xa1\xae\ +\xfc\xc3\x1f\x5e\x80\x27\x9f\x7a\x4c\x80\xcf\xfd\x20\xaf\x5f\x26\ +\xd7\x02\x54\x1e\x80\x81\x5a\xdf\xc0\xbe\x2c\xaa\x00\xb0\xfa\x7f\ +\xdb\xac\xa1\xa0\xa0\x40\xe4\x1e\xe6\x6f\x9c\x8f\x74\x3a\xbe\xe8\ +\x78\xf4\x28\xe8\x21\x04\x20\x1c\x0e\x63\xe7\xce\x5d\xf8\xf4\xd3\ +\x4f\x9d\x4c\xbf\xab\x0b\x60\xae\xe0\xc3\x02\x3e\x1c\x5d\xc4\x98\ +\x31\x27\xa2\x81\x96\x7c\xbe\x24\x8b\xea\x34\xc7\x4c\xa0\x24\x8f\ +\x47\xc7\xd4\xa9\xb7\xe1\xaa\xab\xae\x14\xf5\xf5\xeb\xd7\x73\xbf\ +\xfc\x13\xec\x29\x2b\x4b\xba\x00\x50\x65\x01\x5c\xf2\x00\x84\xc8\ +\xa7\xc6\x32\x2d\xc3\x05\x40\xb9\x04\xc7\x1c\xc0\x99\x67\x4c\x4c\ +\x3e\x67\xe7\x94\x2a\x60\x18\x52\x54\xff\x5e\x14\xfa\x04\x5d\x08\ +\xc0\x93\x4f\x3c\x85\x27\x9e\x7c\xca\x39\x01\x94\x69\xfa\x2d\xda\ +\xed\x6e\x21\x24\xf8\x62\x17\x93\x69\x1a\x88\xc5\xe4\xe6\x53\xf9\ +\xd4\x90\xcb\x2e\xbb\x14\x93\x27\x4f\x16\xf5\xf2\xf2\x72\x2c\x59\ +\xba\x04\x59\xa8\x79\x66\x02\x4b\x4a\x8a\xf1\x87\x3f\x3c\x85\x91\ +\x23\x87\x8b\xfa\x81\x03\x07\xf0\xc6\x1b\xb3\xf9\xbc\xf8\x24\xd1\ +\xef\x39\x3c\x99\x96\x0a\x36\x6d\xe3\x29\xbf\x49\x52\xbe\x94\x58\ +\x00\xb0\x25\x81\x1c\x16\x83\xa2\x7d\x22\xea\xa2\xed\xf2\x60\x64\ +\xbb\x91\xa9\x2d\x65\xab\xd7\xac\x51\xef\xe3\x0a\xba\x1d\x7c\x95\ +\xc6\x75\x9f\x32\x5e\x73\xcd\x4f\xf0\x7f\xff\x77\xa7\x88\xfe\x79\ +\x06\x90\xe7\x00\xba\xe1\xbc\xf3\xbe\xcf\xaf\x4b\x89\xdc\x18\x4b\ +\xc5\x34\xb0\xba\xba\xba\xd9\x0a\x80\x65\x43\xa8\xca\xff\x27\xe8\ +\xe1\x87\x7f\x2f\xc1\x6f\x10\x88\x12\x9e\x12\xbe\x23\xb5\x18\xf4\ +\xec\x33\x5c\x00\x18\x4b\x4e\x03\xed\x7b\xe0\xed\x02\x21\xc6\xcf\ +\x6c\x67\xd6\xfe\x96\x1c\x40\xbc\x43\x14\xb4\x40\x25\x80\xfc\x8b\ +\x83\x18\x70\x45\xff\x94\x00\xac\x5a\xb5\xca\xa6\xfd\xee\xb9\x00\ +\x6b\x1a\xf8\x90\xf9\x02\xee\xe6\x2e\x44\x6e\x6e\x2e\xc6\x8d\x1b\ +\x27\x58\x91\x50\x06\xb1\x26\xf0\xe1\x87\x1f\xa2\x91\xd4\xfc\xf6\ +\x03\x1c\x7d\xf4\x80\xac\x41\x24\x95\x39\x00\x2a\x2f\xba\xeb\xae\ +\x63\xa5\x99\xea\xa2\xbb\x69\x7e\x9a\xf6\x47\xfa\x2a\xed\xd7\xcb\ +\x75\x78\xbf\xf1\x89\xcf\xc5\x17\xa6\x12\xb1\x08\x07\xe2\xa0\x5d\ +\xeb\xed\xa0\xdb\x4a\x39\xbe\xa5\x6f\xe6\xf1\xfd\xf7\xdf\x8f\x2b\ +\xaf\x9c\xc4\x67\x19\xbd\x13\x2b\xa1\xc2\xdc\x7f\xf3\xcd\x06\x2c\ +\x5e\xbc\x88\x07\x9e\x8f\xca\xa9\xa0\x2b\x35\x97\x4c\xa0\xfb\x56\ +\xf0\x41\x83\x86\xc2\x8d\x88\x46\x80\xa9\x6a\x4b\x18\x67\x05\xa4\ +\x5d\xa3\x55\x9d\x34\x08\x81\xe3\x86\x10\xd5\x5d\x0a\x48\xac\x41\ +\x00\x18\x10\x7c\x37\x24\xfa\x4c\x98\x70\x16\xc4\x50\x84\xb8\x68\ +\xbd\x63\x1a\xd8\xbe\x3e\xe1\x0e\xbe\x28\xe7\xcc\xf9\x9b\x98\x59\ +\x58\xfa\x59\x15\xa7\x25\x5a\x00\x11\xba\x35\x4a\x78\x4c\x66\xd9\ +\x0f\xe0\xfa\x1e\x44\x69\x9c\x65\xb9\x58\xfe\xda\x8e\xe3\x9d\x62\ +\xa0\x79\x54\xd4\x7c\x5f\xf9\xa1\x6f\xf3\xaa\x4f\xe7\xac\xf5\xd9\ +\xb5\xdf\x12\x28\xda\x05\xc4\xd2\xfe\xaf\x03\xbf\x99\xdd\x19\x04\ +\x96\xe5\xc5\x04\x14\x00\x6d\xb0\x00\xd4\x65\x3f\x80\x84\x9c\x58\ +\x1f\xaa\xa4\xda\x9d\x1e\xbe\xc4\x99\xa6\xb4\x9f\xd4\x68\x08\x7c\ +\x18\x4c\xf6\x23\x42\x90\x54\x69\xd7\x76\xd7\x08\x5f\x94\xd6\x44\ +\xd5\x7f\x06\xfc\xe6\xb9\x23\x88\xb8\xbe\x4e\x45\x51\x54\x30\x05\ +\xff\x71\xba\x73\xc6\x32\x1e\x81\x84\xca\x75\x29\x38\x55\xd5\x18\ +\x62\xfd\xa2\xa2\x1a\x7c\x3f\x04\x12\x25\xa9\xf1\x89\x25\xc2\xcf\ +\xaa\xf5\x8e\x99\x40\x7b\xd0\x67\xef\x6b\x1b\xb7\x65\x09\xc0\xf6\ +\x9d\xdb\xd3\x4d\xae\xcb\x5d\x40\x76\x30\x99\x9c\x02\x75\x9e\x51\ +\x22\x34\xdf\xe0\x2c\x1f\xf4\x94\xd1\xef\x85\x19\xaf\x88\x7e\x5e\ +\x9f\x8f\x47\xd3\x79\x28\x2c\x2a\x44\x41\x41\x61\x6a\xcc\xf5\x5b\ +\x4a\xd5\xf8\x50\x02\x65\x9a\x26\x5e\x5d\xff\x3c\x6e\x5b\x76\x13\ +\x4e\x6e\x33\x16\xf7\x4f\x7f\x4c\xe4\x23\x02\xc1\x20\x82\xc1\x10\ +\x7c\x5e\x1f\x34\x8f\x07\x84\x90\xef\x70\x37\x8f\x3a\xb1\xbe\xf4\ +\x40\x63\xef\x16\x92\x75\xe6\xd2\xa6\x4e\xb8\xbf\x77\x93\x0c\x02\ +\x61\x01\xc0\xbd\x4d\x9d\x56\x6d\x49\xc8\xa9\xda\x11\x94\xe5\x01\ +\x14\x8c\x26\x8e\xdd\xde\x5b\x69\x9f\x69\x18\x78\x7a\xfd\x13\xe8\ +\x91\xfb\x3d\xdc\xd9\xef\x7e\xb1\x27\x91\x67\x20\x39\x27\x6f\x29\ +\x83\xa6\xfd\xd3\x77\xf3\xb0\xc3\xbe\x9b\xc7\x5d\xb8\x60\x1b\xdf\ +\xe9\x7a\xb1\xa6\xf7\xa4\xd0\xd6\xad\xdb\x31\xd7\x3b\x81\x48\xd6\ +\x2f\x9f\x42\xfd\x5d\xd5\xe8\x52\xdc\x0e\x39\xfe\x20\xea\xea\xa2\ +\xd8\xbd\x6d\x2f\xaa\xf6\xd4\xc2\xac\xa6\x40\x0d\x90\x3f\xbf\x30\ +\x15\xb1\x11\xf5\x9d\xff\xa9\xd7\xc3\xe1\xe2\x88\xb9\x7f\xff\x28\ +\xea\xc6\x87\x91\xf3\x5c\x1e\x48\x85\x96\x1e\xf6\x49\x37\xa2\x84\ +\x25\x2f\x3f\x1f\x5f\xac\xde\x88\x58\x34\x8a\x63\x7a\x75\x06\x43\ +\xa3\x5d\x83\xa5\xdd\xd1\xef\xff\xab\x63\x2e\xd2\xe4\x82\x40\x75\ +\x51\x15\x35\xf6\xd6\x20\xc6\x94\x05\xa0\xf6\x4c\xa0\xd2\x18\xa5\ +\xf6\xf6\x19\xa7\x43\x30\x18\x19\x16\x41\xe8\xf5\x1c\x68\x15\x99\ +\x60\x13\xe2\xb4\x84\x6b\xdd\xdb\x8f\xc3\x9d\x19\xb8\xb7\x37\x9e\ +\x5a\x66\x2a\xd8\x9d\x94\xe6\x9a\x94\x33\x4b\x32\xb5\x02\xab\x24\ +\x40\xa5\x83\x45\xe1\x6e\x5a\x8d\x9e\x31\xf8\x96\xf8\xa1\x6d\xd7\ +\x33\x16\x66\x08\x81\x2d\x87\x0f\x97\xdb\xb9\x98\xb5\xad\xf1\xa0\ +\x5b\x2c\x52\x8b\x17\x00\x09\xcb\xe1\x82\xaf\xae\xb8\xd0\x7e\x83\ +\x4a\x0b\x80\x43\xa4\x82\x59\x26\x88\xc4\x16\x8d\xcb\xc3\x28\xe0\ +\xd9\xe8\x51\x20\x30\x75\x57\x51\x26\xf0\x16\xdf\x7b\xd8\xd9\xc0\ +\x7f\x89\xc9\x6f\xb1\x99\xc0\xec\xc4\x2c\xf7\x06\x3a\x6e\x08\x61\ +\x19\x4f\x08\x77\xf0\x10\xd6\x3c\x80\xd0\x7c\xe1\x5e\x68\xb2\x55\ +\x09\x0d\x73\x00\xde\x16\x3f\x64\x8e\xa5\x69\x18\x31\x62\xa4\x58\ +\xc1\xac\xad\xad\xc5\x31\xc7\x1c\x8d\xd5\xab\xd7\x60\xe8\xd0\x21\ +\xe2\x5e\x87\x65\xcb\x96\xa1\x6f\xdf\xbe\xd8\xbb\x77\x2f\x0e\x1e\ +\x3c\xc8\xfb\x8e\x40\x69\x69\xa9\x48\x33\xf7\xea\xd5\x4b\x2c\xf2\ +\xf0\x36\xf1\x3c\x83\x9d\x3b\x77\xa2\x4b\x97\x2e\xf8\xfa\xeb\xaf\ +\x91\x85\x9a\xff\x96\xb0\xc6\x33\x60\xca\xdb\x9e\xf9\x8f\xc3\xf8\ +\x82\xdd\x9e\x0a\x26\xeb\x54\xd5\x45\x9b\xe3\x9d\xb8\x6e\xcf\xfe\ +\x15\xac\x84\x2b\xb3\x6d\xde\xbc\x79\xe2\xeb\x6a\x3e\xfd\xf4\x1f\ +\x62\x16\x31\x7d\xfa\x74\xbe\xb4\x7d\xbb\x58\xd5\xbb\xf4\xd2\xcb\ +\x70\xce\x39\xe7\xe0\xc9\x27\x9f\x14\x3b\x7c\x3f\xfa\xe8\x23\x0c\ +\x1e\x3c\x38\x71\x7b\x17\xef\x33\x15\x27\x9c\x70\x02\x5a\xb5\x6a\ +\x85\x3b\xee\xb8\x03\x2f\xbc\xf0\x02\x4e\x3c\xf1\x44\xd1\xbf\x45\ +\x59\x80\xdd\xfb\xf6\x65\x9b\xef\x67\x64\xed\x94\x3f\x26\x42\xeb\ +\x3b\xbc\x58\x20\x4a\x43\x66\x02\xa9\xc5\x7b\x3e\xf3\xc2\x4b\x0d\ +\xbb\x7a\x45\xb4\x5e\x5c\x5c\x82\xc2\xc2\x22\xe4\xe4\xe6\x8a\xdc\ +\x00\xd7\xd0\x8c\x00\x54\xe4\x12\xe4\xe2\x12\xe4\x7b\x13\xb9\xeb\ +\x07\x20\xb6\xe4\x95\x2c\x1c\x37\x6d\x8c\xe4\xda\xbc\x6d\xdb\x56\ +\x3c\xf2\xc8\xc3\x1c\xcc\xe3\xd1\xa9\x53\x47\xa1\xf1\x03\x06\x0c\ +\xe0\xa0\xde\x29\x34\xfa\xe5\x97\x5f\x4e\x6c\xec\x14\x0b\x3b\xd7\ +\x5f\x7f\x3d\xae\xbb\xee\x3a\xac\x5b\xb7\x0e\x03\x07\x0e\x44\x87\ +\x0e\x1d\xf8\x12\xf0\x67\xe8\xd1\xa3\x07\xca\xca\xca\xf8\x6e\xa8\ +\x33\xf8\xed\x71\xef\xb5\x98\x6f\x0e\x05\xe1\x24\x9f\xde\xa1\xbe\ +\xf9\x22\x7d\x93\x27\xe5\x6c\x08\xff\x2e\xcc\xa5\x69\x9a\xa0\x94\ +\x0a\x8e\xf3\x3a\x35\x28\x10\x63\x30\x23\xbc\x5d\x32\x8b\x32\x20\ +\x0e\xc0\xe0\x6c\x66\x3e\x27\xd0\xee\x61\xec\x09\x17\x42\x32\x9f\ +\x08\xa2\xe9\xba\x02\xdf\x42\xcc\x72\x60\xcd\xe0\x05\x43\x41\x84\ +\x42\x21\xb1\x69\xb3\x55\xab\xd6\x09\xb3\x2e\xca\xf6\xed\xdb\x8b\ +\xd1\xb8\xc9\x17\xbb\x88\x36\x6e\xdc\x98\xb0\x0e\x62\xc5\x8f\x52\ +\x2a\xbe\xe6\x26\x27\x27\x07\x53\xa6\x4c\xc1\xd2\xa5\x4b\xc5\xff\ +\x3e\x7b\xf6\x6c\xfc\xf8\xc7\x3f\xc6\xca\x95\x2b\x9b\xeb\xb7\x87\ +\xab\x27\xf6\xf7\x9e\x8f\xf6\x5a\x1d\x7a\xd1\x08\x7a\x56\xcf\xf5\ +\x3f\xaf\x85\x18\x98\xc9\x40\x0d\xf0\x12\xa0\x09\xae\x23\xa0\x15\ +\x1a\x68\xa5\x06\xd4\x6a\x60\x35\x04\xa8\xe7\x25\x4b\xa5\xe3\x85\ +\xe6\xd6\xdf\x1c\x46\x7e\x6e\x1e\x7c\xba\x17\xf1\xa8\x81\xda\xb2\ +\x5a\x44\x0f\xc6\x78\x7f\x06\x84\x81\xc0\xa7\x21\x89\x90\x00\xd6\ +\x96\x03\x90\xa8\xd9\x63\x01\x5b\x5b\xa6\x99\x57\x60\x43\x58\x96\ +\x2f\xd7\x95\x22\x1a\x8b\xa2\x5f\xb7\x36\xb2\x4d\xf8\xff\xc4\xce\ +\x1d\x01\xf8\x2b\xaf\xbc\xc2\x37\x8d\x9e\x25\xd6\xee\xc7\x8c\x19\ +\x83\xf7\xdf\x7f\x5f\x9c\xe7\x26\x5e\x9c\xe3\xbe\x3d\xb1\xb1\x43\ +\xbc\x66\xe6\xcc\x99\x7c\xef\xff\x8d\xe0\x94\x38\x16\x16\x60\xce\ +\x9c\x39\x7c\x1f\xc4\x5d\xf8\xd5\xaf\x7e\xf5\x4f\xe7\x01\xfe\x63\ +\x02\x40\x38\x8d\xf9\xa4\x9b\xbf\xba\xed\xb6\x61\x7a\x5c\x3b\xc5\ +\x88\xb3\x93\x69\x14\x43\x11\xf3\x84\xcc\x28\x85\x11\xe1\x1c\x65\ +\xe0\xe7\x60\x4a\x66\x9c\x69\x0c\x30\x65\x29\xdb\x44\x89\x83\x1a\ +\xe8\x1e\x0f\xb0\xd7\x03\x52\xa1\x83\x98\x04\xd1\x29\xf5\xc8\xe1\ +\x5a\xe6\xd1\x3d\xbc\x9f\x89\xba\xfd\xf5\x88\x55\xc4\xc0\x6a\x19\ +\x50\x07\xf8\x17\x05\xe5\x67\x81\x12\x02\x75\xc2\x09\x74\xa9\xc1\ +\xd6\x36\xf7\x6f\xf5\xc8\x2f\x48\x08\xc0\x76\x44\xa3\x11\xf4\x15\ +\x02\x70\xe8\x3c\xc0\x61\x52\x73\x49\x04\x29\x2d\x1f\xbe\x19\x79\ +\x9e\x42\xed\xe2\x13\xf7\xf9\xce\x33\xa3\xbb\x47\x7b\xa3\x9e\x9c\ +\x3c\xad\x58\x78\x9c\x38\xa5\x88\x72\x44\xa3\x7a\x0c\x71\x2d\x06\ +\x4d\x63\xa0\x1a\x05\xd1\x21\x98\x7a\x01\xd0\x24\x13\xc6\x99\xa6\ +\x3d\xf7\xaf\x88\x82\x85\x62\xa0\x9d\x38\xc0\xf5\x00\x76\x78\xc1\ +\xaa\x92\xfb\x01\xa0\x9b\x30\x63\x26\x68\x84\x02\x11\x00\x31\xc9\ +\x4a\x73\x55\x34\x4f\xec\x53\x40\xd8\xeb\xf6\xe8\xde\xe5\x2b\x60\ +\x98\xa3\xf0\x30\xab\xb5\x68\xb9\x5f\x1e\x4d\x38\x81\x01\xa3\x36\ +\x61\xd0\xc8\xa0\x76\x8d\x96\x83\x4b\x74\xe6\xc9\xeb\xe4\xe9\x8d\ +\x10\xcb\x17\xc8\x9a\x71\x8a\x08\x8b\x83\x43\x0f\x5d\xf3\x61\x3f\ +\xdd\x0b\xcd\xa8\x46\x4d\xbc\x0e\x26\x38\xa8\x1a\x40\xf5\xa4\xdf\ +\xa6\x1e\x15\xbd\x43\x32\xd1\x78\xc1\x19\xba\x02\x92\x76\x8f\x83\ +\x6e\x05\x22\x39\x11\xf8\xdb\xfb\x05\x60\x32\x06\x48\xb2\x91\x0e\ +\x26\xb1\x27\x73\x20\xc9\xae\xdd\xae\xe6\xde\x9e\x04\xb2\x2e\xe1\ +\xba\x02\xdf\xc2\x04\x40\xf9\x74\x1c\xb7\x16\x13\xf4\x6f\xc8\x9d\ +\xcc\xa7\x0d\x6b\xcb\x3a\xa3\x90\xb4\x42\x81\x5e\x8c\x56\x7a\x47\ +\xe8\xd4\xcf\x8f\x5b\xa3\x92\x94\xa3\x86\xff\x54\xb1\x4a\x54\x9b\ +\xd5\xf0\xea\x01\x84\x3c\x80\xc1\x99\x72\x8e\xd0\x18\x90\x00\x59\ +\x57\x16\x80\x79\x45\x01\x10\xa9\xcd\x4c\xc8\x92\xe8\xa7\x71\x66\ +\x11\x80\x98\x80\x51\x17\x87\xb9\xc9\x80\xb7\x93\x4f\x7d\x63\x0c\ +\x51\x20\x2a\xb0\xac\x4f\xa1\x92\x35\x67\x4d\x97\xed\x19\x60\x3b\ +\x1f\xab\x8a\x53\x1a\xb7\xa5\x09\x80\xd2\xf8\x21\x0b\x30\xc8\x93\ +\x47\x7e\x9f\xe3\x2b\x3c\x35\x5f\x2f\x42\xa1\xa7\x04\xad\xf5\xce\ +\x1c\xf8\xf6\xe8\xe5\x1d\x08\x46\x28\xe2\xbe\x18\xc2\xd1\x30\xf2\ +\xb5\x12\x44\x61\x20\xd7\xc3\x38\xe8\x14\x25\xfe\x36\x28\x8b\xef\ +\x81\xae\x7b\x44\x74\x8c\x78\x4c\x68\xb9\x70\x05\xa6\x2c\x29\xe7\ +\x06\xa1\xf0\x4a\xd3\x6d\x28\x33\xae\x49\xab\xa0\xd5\x01\x34\xca\ +\x10\x2b\x8d\x42\xcb\xd7\xd2\x84\x20\x3b\x10\x8c\xb9\x0b\x80\x3b\ +\xe8\x36\x2d\x77\x9a\xc2\xb6\x4c\x01\x20\xf7\x10\xad\xcf\x87\x68\ +\x57\xb4\xd8\x37\xcd\x1f\x0c\xfc\x38\xa4\xe7\x6b\x85\x68\x83\xce\ +\xbe\x9e\x38\x21\x6f\x22\x3c\x9a\x37\xa5\x5d\x06\x0c\xa1\x75\x01\ +\x3d\x99\xa8\x29\xf6\xb6\xc2\x3e\xb3\x0c\x3e\x8f\x0f\x7e\x8f\x1f\ +\x01\xce\x86\x2f\x00\x83\xc6\x10\x30\x3c\x88\x9a\x86\xb0\x29\x1a\ +\x51\x00\x0a\xac\xe5\x78\x44\x9e\x23\x5e\x80\x11\x25\x04\x54\xb6\ +\x31\x1d\xa0\xd5\x14\xc4\x4f\x52\xed\x0f\x3f\x31\x5d\x7c\x39\x64\ +\xc0\x1f\x44\x41\x61\x21\x4a\x78\xd4\x5d\x54\xdc\x0a\x79\x89\x3c\ +\x80\xdf\x0f\x4d\xae\x0e\x2a\x00\x91\x7d\xae\x9f\x56\x61\x50\xe4\ +\xf3\xfa\xf1\x6d\x59\xd8\xf1\x5b\xc3\x61\x1f\xdf\xbd\x4d\x56\x5c\ +\xdb\xd4\xf8\xf6\x36\xeb\xf8\xff\xfc\x7e\x00\xa5\xf1\xb8\x07\x64\ +\xe0\x08\x9c\xa8\x6b\xda\xeb\x1e\x1a\x68\x5b\x44\xda\xe3\x94\xc2\ +\xf3\xd0\x35\xd0\x1b\x41\x3d\x17\x41\x2d\x47\x5c\xcc\x38\x62\x82\ +\x29\xa3\xf0\x12\x5f\x22\xd8\x13\x51\xba\x97\x79\xe1\xf3\x7a\x10\ +\x60\x3e\x44\x0d\x1d\xf9\x81\x3c\x5e\xd6\xc1\xc7\xdb\xe2\x1e\x0d\ +\x4c\x27\x88\x9b\x0c\x54\x93\x40\x43\x7d\x8b\x37\x85\xda\xcb\xc9\ +\x4b\xd1\x06\x5d\x5a\x87\x90\xac\x13\x80\xc5\x38\x47\xa5\xaf\xe7\ +\x4c\x13\x3f\xa6\x99\x96\xb5\x53\x4f\x0d\x91\xe4\x04\xbe\x6b\x1b\ +\x1c\xc0\x57\xbb\xda\x2c\x60\xa8\xd2\x79\x7c\x77\xf0\x1d\xdb\x70\ +\x08\xf0\x61\x01\xdf\x86\x37\xfb\x67\x2c\x00\xe3\xfc\x26\xbc\x83\ +\x86\x68\xb7\x6a\x0c\x77\xb7\xf7\x77\xd3\xfb\x16\x0e\x45\xc7\x60\ +\x0f\x74\xf0\xf4\x40\xbe\x5e\x82\x10\x17\x00\x0a\x13\x06\x33\xc4\ +\x07\x90\xeb\xef\x02\x2d\x4d\x07\x1a\xf2\x6d\x21\x1a\x42\xad\x59\ +\x05\x8f\x57\x83\x6e\x00\xba\x97\x73\x9c\x40\xd3\x08\x74\x0f\x01\ +\x35\x59\x4a\xfb\x29\x67\x9d\x28\xe0\x99\xc9\x99\x48\x17\xc1\xe4\ +\x85\xf7\x02\x1a\x2f\xa9\x4f\xc6\x0e\x39\x00\xab\x95\xc7\x04\xb8\ +\xf9\xa6\x9f\x01\x66\xca\x82\x28\x93\x22\x49\x99\x71\xa7\x3a\x73\ +\x75\x13\xcd\x93\xec\x9f\xdd\x93\x55\xf3\xef\x06\x69\xdb\x03\xc1\ +\xf6\xb9\xfa\x9f\x83\x24\x67\x42\xa1\xb7\x35\x3a\xfa\x7b\x22\x9f\ +\xb4\x42\xf7\x60\x5f\x04\xb4\x90\x40\xca\x20\x86\xf0\xf9\x06\x62\ +\xa0\xbc\x34\x11\xe7\x75\x13\xd0\xa8\x78\x90\x12\x65\x86\x98\xaa\ +\x51\x3d\x0e\xa2\x53\xce\x0c\xf0\x30\xb1\xc8\x41\x62\x14\x9a\x27\ +\xe9\xdf\x79\x57\x71\x0c\x33\xe9\xdf\x49\x03\x33\x40\xe7\x0c\x03\ +\x30\xa5\x40\x68\x9c\x4d\x2a\x03\xc3\x04\x6b\xc9\xd7\x23\x08\xb0\ +\xb0\x8c\x1f\xc0\x1a\x80\x57\x41\x20\xc3\xe1\x08\x80\xa5\xde\xb2\ +\xc8\x93\x0d\xfc\xff\x6f\xef\x5c\x62\x24\x3b\xb2\x32\xfc\x9d\x13\ +\x71\x6f\x66\x3d\xfa\x69\x37\xed\xb6\x47\xd6\xcc\x2c\xc0\x1a\x89\ +\x05\x82\x0d\x2c\x46\x48\x20\x3c\x2b\x16\x08\xb1\x64\x81\x84\x10\ +\x48\xb3\x9d\x35\xbb\x11\x6c\x58\x20\xd6\xb0\x46\x20\xb1\x9b\x05\ +\x03\xc3\x0a\x9b\x85\x05\x12\x1a\x86\xe1\x61\x6c\x33\xd3\x72\xdb\ +\xed\xee\xaa\xca\xca\xcc\xfb\x88\x38\x87\xec\xbc\xa1\x0e\x4d\xaa\ +\x53\x59\x58\x83\x85\xe4\x3a\xa5\x5f\x27\x22\x6e\x66\x56\x77\xfd\ +\xff\x79\x44\x44\x49\xf5\xe0\x67\x99\xdf\x5b\xca\x5f\x88\xeb\xd7\ +\x72\x72\xbe\x78\xf2\x06\x0f\xda\x2f\x71\xbf\x7d\x0d\xcb\xbe\x25\ +\xde\x58\x31\x7a\x8f\x06\xc5\xd5\x70\x0c\x01\x32\xe3\x04\x19\xf0\ +\x90\x30\x4b\x24\xe9\xd1\x20\x24\xed\xa1\x08\xa4\x89\x11\x2f\x61\ +\xad\x0a\x68\x69\xee\x04\xd0\x9a\x0d\x9c\x89\x74\x1f\x81\x5a\xfb\ +\xb1\x54\xc8\x8e\x40\x62\x32\x99\x50\x24\x50\x59\x2c\x82\xd8\x21\ +\xfc\xaa\x91\xfe\x79\x10\x40\x25\x9f\xbb\x34\x77\x1f\xf3\xa7\xb4\ +\xfa\xb5\x26\x1c\x73\x73\xf6\x32\x62\x33\x70\x61\x9d\xd6\x9c\xf5\ +\x4f\xb8\x29\xb7\x69\x88\xb8\x44\x72\x4e\x04\x01\x17\xdb\x22\x93\ +\xc8\x9e\xe8\x7c\x49\x96\x91\x4e\x96\x24\x99\x44\x81\xc0\x20\x1d\ +\x89\x81\xc4\x08\xd1\x20\x7a\xd9\x01\x14\xe8\x04\x04\xb4\x44\x79\ +\x4a\x13\xe9\x62\x05\x5e\x5e\x63\x3c\xaf\xfb\x68\x69\x14\x73\xbd\ +\xc9\xa3\xf8\xfa\xf7\x08\x29\xb6\x67\xdb\xf7\x39\xb1\xb8\x97\xfc\ +\x07\x84\xaf\x08\x7f\x64\xf0\x1b\x64\xc1\x5d\xc9\x49\x78\x74\xf9\ +\x21\x47\xe1\x06\x8d\xce\x99\xe9\x11\x17\xe9\x13\x8e\xe5\x84\xa8\ +\x11\x15\xc1\x4a\x9a\x1d\xac\xc3\x24\x31\xe8\x7a\x3b\x1e\x74\x03\ +\x59\xb3\x96\x45\x11\x42\xbf\x15\x43\xc7\x8a\x51\xfa\x42\xfa\x0e\ +\x22\x48\x2e\x3e\x4d\x6b\xaa\x90\x15\x24\x55\xee\xc4\x00\x2d\xa0\ +\xae\xa3\xb0\x9b\xf2\xdd\x0f\xa6\xf5\xcf\xb7\x00\x28\xe4\xff\xa4\ +\xf3\x4b\xc0\xef\xa6\x04\x66\x09\x74\x20\xca\xc0\xd8\x26\xce\xfb\ +\xb3\x29\xda\x34\x73\x43\x6f\x4e\x29\xdc\x13\xc9\x06\x54\x14\xf0\ +\x29\x03\xe8\xc8\x79\x7e\xcc\xa8\x03\x3d\x2b\x7a\x59\x6d\xa3\x7e\ +\x29\xe7\x5c\x72\x39\x65\x00\xed\x31\x4d\x10\x40\xb4\xd6\x73\xa9\ +\xf3\x8a\x5c\xd7\xbd\x10\x5f\x77\x0a\xb5\x31\x24\x83\x67\xc0\x98\ +\xcc\x6b\x26\xb8\xb6\xbd\x02\x28\xd1\xff\xe7\xc8\xcd\xef\x72\x43\ +\xee\xf1\x27\xb9\xa4\xe0\x31\x43\xee\x07\x9c\x05\xaa\x2d\x22\xc2\ +\xbc\x6d\x79\xdc\xf7\x0c\x7a\xc9\x5a\xce\x38\x6d\x4f\x89\x4d\x44\ +\x51\xba\x7c\x89\x07\x23\xd9\x48\xd2\x91\x81\x35\x17\xfe\x09\x43\ +\x58\xb3\x96\x6e\x12\x82\xae\xe9\x59\x4d\xe5\x41\x0d\x17\x2a\xe9\ +\x5a\xc9\x67\x77\x5c\x0f\x80\xa6\xd7\xfb\x24\x8c\x7a\x4b\x58\xc9\ +\x0f\x12\xf9\xfd\x6f\xfe\x01\xf3\x78\xc4\xd1\xc9\x09\x77\x6f\xdf\ +\xe5\xe5\x7b\xf7\x37\xb8\xc7\xe9\xe9\x4d\xda\xd9\x0c\x51\x41\x90\ +\xab\xed\xf7\x77\x34\xf4\xd9\xef\xf7\x3f\xf5\xe7\x1f\x16\x80\x50\ +\x52\xff\x53\xf4\xfe\x4d\xbe\xe1\xc6\x97\xcd\x21\x03\x04\x18\xd2\ +\x88\x6a\xcf\x19\x4f\x10\x35\xe4\x72\xe4\xfe\x8d\x57\xd0\x64\xb8\ +\x8e\x2c\x79\x4a\x63\x0d\x1a\x74\x22\x0b\xb8\xe4\x8c\x1c\xc6\xa9\ +\x0f\xd0\x25\xa3\x74\x3c\xe5\x63\xce\xfc\x09\x9d\xf7\x74\xd2\x57\ +\x62\xc3\x55\x50\xcb\x02\x85\x7c\x49\x80\x80\x30\xcd\x3d\x4f\x20\ +\xc1\x6b\x37\x5f\x47\x54\x71\x1c\x45\xb6\x63\x55\xad\x6f\xd8\x73\ +\x16\xb0\x63\x07\x08\x28\xf6\x59\xed\xf7\x0f\x9e\x35\x1c\xfe\x77\ +\xed\x5e\x07\x3f\x3f\xe1\xe3\x01\xe1\xa5\x73\xe6\x2f\x2b\xff\x95\ +\x23\x2f\x8d\xa5\xde\xda\x33\x94\x08\x3d\x99\x1d\x73\xe7\xf8\x06\ +\xf3\x59\xc3\x2b\xb7\x5e\xe6\x68\x33\x3f\x6a\x8f\x36\xf3\x39\x47\ +\xcd\x11\x9d\xae\x20\x80\x06\x81\xe0\xe4\x90\x38\xe7\x31\xeb\x70\ +\x49\x0a\x3d\x9d\xac\xe8\xfa\x8e\x55\xb7\x66\xec\x53\xbd\xee\x2d\ +\xa8\xf3\xfd\xeb\x36\x40\xda\xc0\x47\xb0\x0d\x72\x06\x4f\xd3\x7a\ +\xee\xc0\x16\x60\x2b\xe0\x5d\xe0\x11\x60\x9f\xfb\x52\x7f\x85\xeb\ +\xe0\xaf\x20\x80\xdc\x7e\xc2\xaf\x38\xbc\xe4\x0e\x66\x60\x40\x06\ +\x5c\x20\x28\x8c\xa9\x63\x31\x66\xa4\x3d\xe6\xe9\xe8\x58\xb8\xcd\ +\x82\xc7\xcc\x7d\x4e\xcc\x2d\xf3\x76\x8e\xb8\xb0\xb2\x0b\x30\x27\ +\xe5\x91\x31\x76\x8c\xd2\x73\xe6\x1f\xe1\x8d\x61\xe2\x58\xf0\x1f\ +\xa9\xf3\x1a\xc0\xb7\x73\x79\xde\xf1\xbb\x7a\x4d\xf5\x4a\x85\x4c\ +\x1e\x2d\x73\xab\xb5\x5f\x9e\x81\x52\x0a\x1e\x03\xc6\xb5\x51\x4d\ +\x44\x14\x70\x2f\x91\x1f\xa9\x9d\xbf\x73\x49\x23\xb7\xf9\x75\x53\ +\xb0\x0c\x59\x21\x03\xe6\x13\x09\x6e\x20\x62\x98\x8f\x2c\x87\x0b\ +\xb2\xae\x49\xd2\x31\x63\x46\xd2\x81\xc1\x36\x63\x9b\x41\x53\x53\ +\xf4\x85\x3e\x26\xfb\x88\x9b\x61\x4d\x06\x73\xbc\x12\x3a\x11\xaf\ +\x82\x07\x41\xa3\x62\xad\xe0\x08\xe6\x30\x9a\x21\xe6\xa4\x64\x55\ +\x30\x01\x88\xa0\x19\x4c\xcb\xe7\x50\xe0\x40\x12\xc8\xc0\x53\x87\ +\x74\x1d\xf9\x2f\xb0\x00\x98\x88\x98\x6f\x2c\x02\x94\x73\x7e\xe5\ +\x75\x92\x5f\xf0\x33\xee\x85\x6c\x05\x33\xf0\x00\xf8\x84\x9c\x29\ +\xa9\x41\xc8\x36\x70\xde\xf5\xb4\x34\x04\x0b\xc4\x26\x30\xb0\xa6\ +\xb7\x35\x12\x4b\x4d\x8e\x86\x63\xcf\x23\x15\x2b\x47\xbe\x1b\x90\ +\x95\x3e\x67\x42\x06\xf5\x08\x1b\x08\x01\xc3\xc9\xee\x88\x65\x92\ +\x6d\xbf\x69\xc9\x26\x06\x89\x49\x0c\x11\xc8\xf5\x52\x08\x07\xb2\ +\x4c\x0b\xd9\xf1\x77\xaf\xc9\xdf\x63\x33\x60\x28\x81\x6f\xb1\x44\ +\xbf\x00\x70\x03\xe1\x29\xc7\x3e\x71\x83\x67\xd0\x00\xd9\x4b\x74\ +\x55\x80\x39\x79\x03\x75\x18\xd2\x40\x10\x21\x21\xd3\x97\x6c\x90\ +\x1d\x57\x03\x29\x91\xee\x82\x78\x20\xa0\x28\x82\x04\x45\x9b\xc8\ +\x91\x07\x82\x46\x34\x06\x88\x8a\x8d\x90\xd4\x59\x58\x07\x59\xf1\ +\x94\xa1\x61\xfa\xbc\x04\x04\x43\xea\x6e\x00\xa3\x8c\x05\x2c\xcb\ +\xd6\xe7\x0f\x80\xf5\xb5\x00\xf6\xd8\x1c\x2a\x93\xd1\x37\xb6\x69\ +\x00\x85\x07\x08\xef\xa3\x2a\xcc\xb3\x03\x06\xd4\xc8\xc7\x6b\xcb\ +\x49\x32\x88\x50\x9b\x2b\x03\xb7\xf2\x16\x2f\x64\x8b\x12\xa4\x21\ +\xe8\x33\x2f\x34\xd2\x10\x55\x69\xb5\xa1\xa7\xa7\x89\x0d\x42\x40\ +\x89\x88\x04\x04\x61\x14\x30\x77\x42\x6b\xb8\x09\x49\x8c\x86\x91\ +\x9e\x4c\x6f\x23\x64\xa1\x4f\x19\x1d\x33\xae\x3e\x09\x4b\xc0\x93\ +\xe0\x83\x20\x02\x79\x01\xf6\xbe\x5f\x93\xbf\xdf\x5a\xa8\xbf\x37\ +\x1d\xa1\xd8\x3b\xc0\x1b\x38\xe7\x2c\x02\xdc\xcb\xa5\xbe\xb2\x13\ +\xfd\x6e\x60\x19\xc6\x0c\x6a\x40\x02\x54\x50\x09\xa8\x43\x94\x88\ +\x8a\x12\x37\x98\xe9\x24\x80\x36\x34\xa8\x06\x9a\x67\x6b\x34\xdc\ +\xd6\x9b\xb4\x31\x82\x04\x54\x15\x53\x27\x07\xa7\x1f\x32\x2b\x1b\ +\xc0\x12\xb3\x26\xa2\xe6\x58\x72\x3c\x0b\x79\xb4\x2d\x5c\x0d\x51\ +\xb6\x70\x01\x77\x01\x13\x1c\x81\xd1\xfb\xf4\x8e\xff\x1b\x99\x81\ +\xda\xbf\x8e\x40\x5f\x30\x02\x46\x95\xae\x40\xb5\x3a\xbf\xf2\x9a\ +\x43\xb5\x03\x6b\xfb\xe6\x4e\x9d\xfb\xde\x79\x85\x15\x64\x2a\x52\ +\xc1\x58\x30\x00\x1d\xb0\x02\x16\xc0\x39\xf0\x04\x78\xca\x8e\xc5\ +\x72\xfa\xe7\x5b\x38\x98\xf0\x37\x64\xbe\x1c\x05\x86\x92\x6a\x05\ +\xf0\x42\xbe\x17\x51\x58\x02\x8f\xe0\x61\x8a\x76\x31\x21\x78\xa0\ +\x95\x19\x51\x23\x47\xb1\xa5\x09\x91\x18\x02\xf3\xd0\xe2\x6a\xcc\ +\x34\x12\x35\xd0\xca\xc6\xa3\x48\x10\x40\xc8\xe6\xf4\x96\x21\x08\ +\xda\x2a\x6b\x1f\x09\x6e\x60\x23\x96\x9b\x29\xf2\xe3\x88\x06\x79\ +\xbe\x23\x20\x80\x0f\xba\x81\x94\xfa\xef\x43\xf7\xf7\xfe\x3d\x5f\ +\xfa\x72\x87\xfc\xae\x90\x3f\x50\xdb\x42\xdf\x43\xb0\x1c\x5c\xdb\ +\x6f\x5e\xfd\xd5\xd7\x76\x88\xf5\x3d\x73\xa3\xce\x33\x60\x7b\x88\ +\xaf\x02\x80\xbe\x14\xc2\x25\xb0\x28\x58\x51\x7f\x0e\x06\x10\x29\ +\x7b\x02\x41\x32\x7f\x4c\xc8\x03\xdf\x0a\xca\x6f\x5b\x2f\x88\x38\ +\x2a\x40\x89\x36\x80\xb2\x3d\x44\x1d\xfa\x11\xe6\x0a\xe4\xa9\xa6\ +\x47\x6d\x11\x94\xe0\x82\xb8\x6e\xc7\x2d\x0d\x8a\x12\x89\xcc\x69\ +\x88\x28\x47\xb2\xf1\xa2\xa8\x2a\x19\x63\xb4\x8c\x1b\x88\x09\x29\ +\x1b\x41\x95\x26\xc0\x58\x22\xbd\xcb\x3d\xd9\x13\x99\x8c\xe3\xb8\ +\x09\x79\xa9\x58\xa7\x25\x06\x6c\xe8\xfe\xce\xdf\xf2\x27\x7e\x81\ +\x4f\x2b\x3b\x3f\x84\x0e\x18\x76\x4e\x04\x84\x0a\x76\xc7\xbb\x7e\ +\x57\x14\x87\x23\xb9\xfa\xab\x46\xf5\x2e\xc9\x7b\x90\xa9\x18\xab\ +\x00\xf6\x8a\xa0\x2b\x58\x17\xd4\x4c\x08\x5e\x4b\x80\x6c\x33\xc1\ +\x78\xf6\x13\x7c\xe7\xa5\xc7\xfc\x40\x32\x5f\x68\xb2\x90\xb2\x23\ +\x01\xac\x96\x55\xac\x6e\xc1\x48\x09\x42\x02\x8d\xe0\xc9\xa1\x99\ +\xca\x00\x0e\x92\xa7\xef\x20\x06\x31\x06\x00\xc4\x05\xbc\x26\x60\ +\x91\xc9\x07\x15\xb2\x4a\xd9\xe3\x3b\xbd\xf5\xb8\x38\x46\x2e\xb7\ +\x8a\x99\x71\x4c\xf8\x38\x35\x8a\x79\x11\x11\x1c\x5f\xdb\x93\xe5\ +\xb7\x79\x2b\x7f\xec\x9f\xe0\xcf\xff\xe3\xeb\xa2\xf6\x65\xf1\x3d\ +\x30\xee\x10\xa6\x7b\x88\xbf\xaa\x28\xb8\x0a\xd9\x7b\xe6\xec\x89\ +\xf0\xbc\x33\xde\xbf\x56\x91\xae\x80\x71\x67\x6e\x40\xdd\x06\x52\ +\x2f\x82\xfc\xec\xeb\xac\x6f\x1d\xf1\x7b\x21\xf0\x57\xb9\x13\xdd\ +\x46\x73\x70\x54\x1d\x77\xb6\x10\xe1\xf9\x38\xdb\x33\x18\x21\x0b\ +\x39\x1b\x3a\x3a\xa9\x31\x24\x2b\x34\x42\xce\x99\x31\xb0\x7d\x8e\ +\x84\x2d\xd1\x9d\x25\xe6\x12\x51\x71\x10\xc8\x62\x5b\xf4\x0c\x8c\ +\x8c\x8c\x9e\x58\x7b\x47\x37\x0e\x9c\x77\x2b\x86\x9c\x19\xcd\x18\ +\x16\x81\x74\x2e\xe4\x0e\x74\xe6\x0c\xef\xf9\xbf\x2f\xbe\xed\xff\ +\xc0\x32\x9f\x63\x93\xe2\x0b\xe9\x17\xc0\x59\xf1\x8b\x22\x8a\x0c\ +\x70\x98\xe8\x3a\xbe\x82\xf7\x43\xfe\x8a\x59\xc0\xae\x84\xfd\xaf\ +\xcd\xd5\x1f\x7c\xaf\xb3\x7b\x10\x44\x59\x11\x91\x86\xbf\x24\xbc\ +\x7f\x9f\xb7\xbf\xf8\x8b\xf2\x67\xda\xf0\x5b\xe9\x52\x71\x37\xe2\ +\x31\xf8\x7c\x22\x8c\x0c\x12\x28\xdd\xbf\x93\x06\x50\x35\xfa\x30\ +\xd2\xb4\x0d\x69\x34\x34\x64\x72\x9a\x52\x76\x30\x65\xb0\x8c\x67\ +\x07\x85\x80\x30\xca\x14\x90\xae\x4e\xe7\xe3\xf6\xf9\x32\x75\x04\ +\x8f\x3c\x4d\x97\xf4\x69\x64\x6d\x23\xab\x33\x63\x5c\x08\xc3\x79\ +\x24\xaf\xc1\xb2\xe2\xd9\xba\xee\x9d\xfc\xf6\xf2\x2d\xff\x3e\x9b\ +\x31\xf6\x3c\xcd\xd5\x86\xa7\x0a\xe0\xb2\x3c\x1b\x0f\x11\x7c\x78\ +\x6d\x7f\x09\xf8\xb4\xf5\x7f\x0f\xec\xc0\x1a\xfb\x9e\x1d\x10\x1d\ +\x13\xf1\xd5\x22\xc5\xb6\xe4\x43\xc3\xc3\x0d\xce\x91\x87\x33\xfb\ +\xc3\x57\x7f\x41\x5e\x8b\xd1\xdf\xcc\x6b\x9d\xf6\xfc\x1b\xc4\x13\ +\x87\xd6\xc1\xea\x29\x1c\xf8\xf4\x3c\x65\xd6\x43\x47\x42\x49\xda\ +\x30\xda\x40\xb4\xc0\x40\x20\x66\xe5\x74\x7e\x4a\x4e\x36\x95\x14\ +\x32\xa6\x46\x0a\x89\x44\x66\xb0\xc4\xca\x7a\xfa\x21\x71\x79\x91\ +\xe8\xcf\x33\xfd\x53\x65\xb8\x10\x86\x8d\xcf\x9d\xa0\x6a\x39\xfd\ +\xa7\xfd\xc7\xc5\xdf\xe6\x7f\xca\x4f\xfd\x82\x4a\xfe\x72\x97\xfc\ +\x32\xbe\xac\x3d\x40\x49\x85\x9f\xbe\xf3\xe7\x40\x09\xe0\xd3\xee\ +\x08\xf6\xf9\xbd\xcf\xae\x3e\x66\x87\xf4\x17\x5f\x06\x89\x48\x2c\ +\x62\x68\x81\x66\x8b\x39\x47\xdc\x61\xfe\xfa\xaf\xe9\xd7\xf5\x86\ +\xfc\x8e\xb9\xa8\xb4\x60\x2a\xcc\x6e\x66\x64\x0e\x3a\x77\xa4\xd9\ +\xa0\x85\x18\x84\x30\x83\xd0\xea\xc6\x2b\x31\x06\x42\xa3\x34\x6d\ +\x40\x1a\xd9\x8e\x43\x14\x74\x03\x0b\x46\x0e\x19\x8b\x99\xac\x09\ +\x57\xc3\xce\x1a\xba\xa5\xd1\x9f\x3b\xe3\x25\x74\x1f\x09\xab\x87\ +\x11\x37\x40\xdc\xf3\x0f\xf3\x87\x67\xdf\xca\xff\x6c\x8f\xfc\x89\ +\x5d\xe6\x33\x6a\x83\x77\x49\x25\xff\xbc\x46\x7e\xa9\xff\x95\xfc\ +\xa1\x08\x20\xef\x25\xf6\xff\xd6\x9c\xc3\xe6\x57\x5f\x3f\x4c\xf0\ +\x61\xab\x02\x98\x48\xdf\xc5\x8c\x19\x47\x9c\xbe\xf6\xab\x7c\x75\ +\xf6\x05\xfd\x86\x49\x78\x35\x9b\xa0\x73\x08\x27\x06\x22\x84\xb9\ +\x11\x4f\x1d\x9d\x6d\xd0\x3a\x12\x84\x38\x73\xa4\x15\x34\x40\x33\ +\x8b\x10\x95\xd8\xb2\x15\x82\x07\x20\x38\x44\xa3\x5f\x42\x36\xb0\ +\x2c\x58\x07\xc3\x39\x2c\xde\x6d\xb1\x1e\x10\xc3\x07\x86\xf5\xf7\ +\xfd\xa3\xd5\xdb\xfe\x5e\xff\x2f\xdd\x07\x38\x3d\xf6\x9c\xf8\x55\ +\x21\xff\xa2\x0a\xa0\x10\x5f\xd3\x7e\xff\x82\xce\x38\xf1\xff\xd3\ +\x2a\x99\x9f\x81\x1d\xce\x00\x15\xed\xf6\xeb\x95\xf8\xf2\xab\x6f\ +\xf2\xe6\xec\x81\xff\xa6\x79\x78\x25\x79\x40\xc2\x44\xba\xbb\xd2\ +\xdc\xc8\x84\x63\x88\x73\x63\x76\x27\x33\xae\x03\x28\x68\x0b\x61\ +\xee\xdb\x67\xb2\xf1\xdd\xc7\x4d\xcd\x6d\xae\xa4\x41\x58\x7f\x18\ +\x21\x38\xda\x18\x9e\xdd\xfb\xff\x96\xc5\xea\x1f\xed\xe1\xe2\xaf\ +\x87\xef\x92\x3d\x31\xd2\xe3\xb6\xc6\xe8\x76\xc8\x5f\x50\xb1\x2c\ +\xe8\x0a\x86\x2d\x76\xb6\x45\xee\xd7\xbf\x16\xb4\x2b\x80\x1f\xe9\ +\x01\x76\x84\x10\x27\x5f\x70\xd4\x9c\xc4\x7b\x7a\xe7\xee\x57\xed\ +\x97\x4f\x5e\xb7\x9f\xb6\x59\xf8\x39\xd7\x70\x37\x9b\x60\xe5\xf7\ +\x06\x25\x82\xce\x8c\x30\xaf\xd7\xbd\xcf\xc4\xa0\xf3\x49\x2c\x88\ +\x90\x07\xc1\x4d\xb6\xf3\x30\x73\xcf\x0b\x5f\xf5\x8f\xb8\x18\xbf\ +\x37\xbc\x77\xf1\x1d\x7b\xe8\x03\x83\x19\x23\xbd\xaf\x71\x1b\x0a\ +\xf1\x05\xac\x0a\x2e\xa9\xa4\xaf\x0e\x10\x9f\x80\xce\xdd\xaf\x2f\ +\x87\xf7\x09\xa0\xde\x15\x57\xf2\xf7\xf8\x86\x63\xe6\xb4\xf1\x38\ +\xdc\xd2\x97\x6e\xbe\xe1\x77\x8e\x7f\x8a\x9f\x67\x1e\xbe\x64\x21\ +\xbe\xe6\x81\x3b\x04\xb9\x11\x4e\x2d\x94\xe3\x5a\xc7\x45\x72\xa7\ +\x34\x27\xb6\xb6\xde\x2f\xd3\x52\x56\xf9\xcc\x2f\xc7\x8f\x59\xac\ +\xdf\xee\xfe\x75\x78\x44\x0f\x08\x22\xe5\xd0\x7f\x83\x44\x25\xb1\ +\x1e\x68\xac\xa9\x22\x58\x53\xe7\x65\x0b\x58\x09\xdf\x79\x6f\xba\ +\x8e\xfc\xc3\x02\xa8\x8b\x1b\x03\xda\x82\xc8\x7e\x04\x8e\x99\x31\ +\x8b\x27\x2c\xd2\xc8\xad\xd9\x69\x38\xd1\x5b\x1c\xeb\x89\x37\x32\ +\xc3\x88\xf6\xc1\xfa\x87\x1c\x85\x53\x3d\x89\xb7\x99\xc9\x11\xbd\ +\x89\xfd\x60\xf8\x04\xbc\x41\x09\x18\x4a\x36\x03\x14\x23\x51\x4f\ +\xc2\xd2\x6e\xfa\x2e\xbe\x46\x79\xc5\x58\x90\x0a\xfa\x92\xee\x33\ +\xd7\xf6\xbf\x16\xc0\xae\x18\x42\x8d\xfe\x4a\xfc\x0b\xbc\x02\x91\ +\x93\xa6\x61\x39\x52\xe6\x02\x04\x22\x81\x04\x40\x2c\xeb\xa1\xac\ +\x2b\x69\x67\x5f\x3d\x21\x57\x54\x21\xec\x8e\xab\xaf\x5d\xfe\x75\ +\xb4\xff\xf8\x04\xb0\x2f\x33\x08\x10\x26\x14\x51\xd4\xb9\xee\x40\ +\xd8\xf5\x05\x75\x5e\x6d\xdf\x8d\x57\x1d\x57\xa2\x0b\x32\x60\xd7\ +\x84\x7f\x26\x02\x38\x2c\x8c\x3d\x84\xef\x13\x03\xbb\xe7\xe2\x2f\ +\xf0\x19\xf0\x9d\x31\xd7\x7c\xff\xf8\xec\x7f\x00\x9b\x12\x19\x7f\ +\x06\xa6\xf6\x06\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x03\xcf\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x4c\x49\x44\ +\x41\x54\x78\xda\x75\x53\x4d\x48\x5b\x69\x14\x3d\xdf\xcb\x33\xe6\ +\x47\x13\x4d\x34\x71\x14\x89\x12\xa5\xa9\x05\xed\xc6\x38\x95\x31\ +\xa2\x03\xaf\x2a\x43\x70\x53\xb5\x60\x53\x5a\x90\xb6\x48\x97\xa9\ +\xa5\xed\xa2\x5d\x76\x31\x1d\x98\x42\x5b\xc6\xc5\xd0\x01\x45\xe3\ +\x60\x19\x28\x48\xa3\xcc\x80\x53\xc4\x2e\x52\xa5\xf5\x17\x34\xd1\ +\x1a\x11\x6d\xcc\x7f\x62\x34\x3f\xaf\x97\xb7\x90\x76\xd1\x03\x1f\ +\xef\x2d\xbe\x7b\xee\x3d\xe7\x9e\x8f\x89\xa2\x88\xef\xa1\xb9\xb9\ +\xd9\x30\x37\x37\x77\x80\xaf\x30\x30\x30\xf0\x50\xad\x56\xff\x18\ +\x89\x44\xe2\x54\x7b\xfb\x1b\x82\xe9\xe9\x69\xb9\xdb\xed\x9e\x09\ +\x04\x02\xe7\x73\xb9\x5c\x81\xc1\x60\x60\xf4\xcd\x06\x83\xc1\x50\ +\x32\x99\x74\x8d\x8f\x8f\x0f\xfe\x31\x3c\x9c\xfc\xa9\xa9\x69\xa1\ +\x5d\x10\x2e\xda\x6c\xb6\x5f\x4f\x09\xba\xbb\xbb\x7f\x29\x2e\x2e\ +\x76\x59\xad\x56\xa5\x56\xa3\x11\xb7\xb7\xb7\x73\xd1\x48\x04\x2a\ +\xb5\x1a\x96\x33\x16\xae\xc5\x66\x63\x4f\x7e\x7b\xf2\xf9\x72\x6f\ +\x6f\x49\x95\xc9\xc4\x9c\x77\xee\xee\xce\xfc\x3b\xf3\xa7\x44\x30\ +\x38\x38\x68\xdd\xd9\xd9\x99\x7f\x70\xef\x3e\x7b\xfb\xf6\xff\xac\ +\x51\xa7\x93\xe5\xab\x54\xd0\x68\x34\x08\x85\x42\x88\x46\xa3\x58\ +\x5b\x5f\xcf\x5c\xee\xef\xe7\x7d\x5e\x9f\x38\x39\x39\x39\x27\x42\ +\x1c\x1d\x1b\x1b\x7b\x26\x11\x38\x1c\x8e\xe8\xad\x1b\x37\x0b\xbd\ +\x9b\x1b\x62\x43\x7d\x3d\x2b\xcc\x64\xa0\x2a\x2f\xc7\x29\x18\xc3\ +\xc7\xa5\x25\x2c\x2e\x2e\xe6\x7e\x16\x04\x6e\x6f\x6f\x6f\xa5\xa3\ +\xa3\xe3\x1c\x08\x5c\x5b\x5b\xdb\xa3\x6c\x36\x5b\x18\x09\x05\xd3\ +\x17\x05\x81\x29\x94\x4a\x28\x0c\x06\xc4\xd6\xd6\xc0\xc9\x64\xd2\ +\x09\xd2\x14\x0a\x85\x02\x8e\x2b\x57\xb8\xbf\x5e\xbe\x3c\x69\xb2\ +\x36\xd5\xb5\xb7\xb7\x9f\x07\x41\xd6\xda\xda\x3a\xec\xe8\x77\xe8\ +\xaa\xaa\x4c\x32\x9e\xe7\x11\x0d\x06\x91\x4f\xba\x63\x2b\x2b\xd0\ +\x9a\xcd\xd8\x3f\x38\x40\x98\xbc\x38\x4a\xa5\xb0\xfd\xe9\x13\xaa\ +\xab\xab\xd9\x1b\xb7\x9b\xf5\xf5\xf5\x71\xf4\xff\x9a\x0f\x87\xc3\ +\xe5\x99\x6c\x46\x34\x1a\x8d\x2c\x1e\x8f\xa3\x98\x74\x2b\xa9\x5b\ +\xea\xec\x59\x3c\xbf\x7a\x15\x3a\xbb\x1d\x3b\x7e\x3f\xf4\x7a\x3d\ +\xe4\x72\x39\x68\x43\x5c\x2c\x16\x83\x4a\xa1\xba\x44\x0d\x23\x3c\ +\x99\x24\x26\x12\x71\x70\x1c\x27\x99\x96\x21\xfd\x7c\x5e\x1e\xd6\ +\x77\x77\x91\x28\x2b\x43\x1e\x91\xf6\xf4\xf4\xa0\xb4\xb4\x54\x92\ +\x91\x4e\xa7\xe1\xf1\x78\xf0\xea\x9f\x57\x45\x95\x95\x95\x39\x2e\ +\x95\x4a\xed\x52\x28\xd8\x21\x8d\xce\x88\x44\x9e\x9f\x2f\x91\x95\ +\x57\x54\x20\xa5\xd3\xa1\xb3\xb3\x13\x35\x35\x35\x98\x9a\x9a\x42\ +\x22\x91\x00\x65\x03\xe4\x1b\x2c\x16\x0b\xb3\xdb\xed\x15\xdc\xe1\ +\xe1\xe1\x7f\x89\x44\x12\xef\x17\x16\x4e\x64\x64\xd8\xf1\xf1\xb1\ +\x44\xb0\xb5\xb5\x85\x92\x92\x12\xa9\xb3\x92\x8c\xf5\x7a\xbd\x18\ +\x1a\x1a\xc2\xc8\xc8\x08\x68\x74\x08\x82\x00\x6a\x7e\x81\xdf\xd8\ +\xd8\xb8\x49\x46\x5e\xa3\x20\xc9\x3f\x07\x02\xe0\x18\x83\xba\xa0\ +\x00\xd4\x4d\xba\x48\x64\xd2\x99\x9d\x9d\xc5\xf2\xf2\xb2\x94\x89\ +\x96\x96\x16\xc9\x13\x92\xab\xe7\x40\xf0\xfb\xfd\x8e\x78\x2c\x8e\ +\xdf\x9f\x3e\x15\x43\xe1\x70\x86\x0a\x60\x24\xfd\xfb\xfb\xfb\x92\ +\x27\x94\x15\x89\x8c\x02\x87\x89\x89\x09\x98\x4c\x26\xac\xd1\x9a\ +\xc9\x0f\xcf\x69\x94\xcd\x66\xf3\xe3\xeb\xd7\xae\x3b\xd3\x99\x34\ +\x4b\x1d\x1d\xe5\x6a\x6b\x6b\xb3\xf3\xef\xde\xf1\x34\x19\xa3\x9d\ +\xc3\xe7\xf3\xa1\xae\xae\x0e\x20\x50\x6e\xe0\x74\x3a\x41\x81\xba\ +\xf4\xcd\x63\xa2\xa2\x1f\xa8\xe0\x43\x91\xb6\x48\xaf\x50\x2a\xd8\ +\xe6\xe6\xa6\x34\x32\x49\x44\x57\x57\x17\xb4\x5a\x2d\x56\x57\x57\ +\x31\x3a\x3a\x0a\x2a\x7e\x41\x51\xbe\xf5\xdd\xe7\xdc\xd8\xd8\x58\ +\xd6\xd0\xd0\xd0\x49\x5e\xcc\x53\xc7\x7b\x00\x2e\x30\xc6\xf4\x74\ +\xdf\x03\xe0\x85\xcb\xe5\xfa\x1b\x84\x2f\x2c\xec\x8e\x1c\x74\xf5\ +\x29\x98\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x07\x2e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x06\xf5\x49\x44\x41\x54\x78\xda\xbd\x56\x6b\x6c\x9b\xe5\ +\x15\x1e\x1b\xfc\xd8\xd6\xe5\xb2\x5c\x3a\x27\x4e\x73\x6b\x12\xe7\ +\xe2\xa4\xb5\x13\x3b\xb1\xe3\x24\x8e\x9d\x8b\x73\x69\x93\x26\xd0\ +\xa5\x45\x5d\xa9\x54\x95\xcb\x4a\xa5\x41\x0b\x22\x1b\x63\x20\x2a\ +\x15\x21\x7a\x51\x27\x4a\x88\x26\x84\xc4\x4d\x9d\xa8\x46\x11\x1b\ +\x7f\x2a\x01\x49\x25\x54\x51\x40\x29\x69\x1b\xc7\x75\xee\xb6\x13\ +\x3b\x6d\xd2\x4b\xe2\x5c\xfc\xf0\xf4\xd0\x4f\x2b\x11\x54\x76\xd1\ +\x76\xa4\x47\xdf\xe7\xd7\xef\xf7\x3e\xcf\x39\xef\x39\xe7\x7d\x7f\ +\xa6\x58\x7c\x7c\xfc\x2a\x3e\x74\x44\xd9\xff\x10\xba\x84\x84\x04\ +\xf2\xfc\xb0\x19\xf0\x7f\x30\xf2\x18\x7f\x4c\x40\x05\x68\xd3\x81\ +\x00\x2e\x4f\x4f\xe3\xca\x4d\x5c\xbe\x8c\x99\x2b\x57\x04\xb3\x33\ +\x33\x98\xbd\xf5\xbc\x3a\x3b\x0b\x01\xdf\x09\xe5\xb7\xfc\xa7\x40\ +\xbe\xe3\xf7\x84\xac\x75\x39\x10\x50\x04\x54\xde\x51\x00\x49\x15\ +\xc2\xef\x93\x5d\xbd\x8a\x6b\x37\x71\xed\x1a\xae\xff\x30\xe4\x3f\ +\xce\x91\xb9\xfc\x46\xde\xe7\x6e\xdc\x40\x70\x7e\x5e\xd6\x0c\x4b\ +\x80\x10\xff\x18\xe9\xf5\xeb\xb8\x71\x3b\xb8\x38\xf1\xbd\x31\xce\ +\x91\xb9\xa3\xa3\xa3\xf8\xe0\x83\x93\x78\xf6\x2f\xcf\x61\xcf\xe3\ +\x4f\xca\xbc\x70\x04\x08\xb1\x42\x2a\xc4\x2b\xc8\xe6\xe6\xe6\x04\ +\xf3\x0a\xe8\x1d\x4d\xc6\x06\x9d\x4e\x79\x0f\x85\x42\xf2\x6d\x6b\ +\xcb\x66\x14\x17\x5b\x50\x6a\xb4\x85\x1f\x01\x92\x2b\xde\xae\x20\ +\x15\x32\x41\x30\x18\x94\xb0\x2e\x2d\x2f\xe1\xed\xb7\xdf\xc1\xd6\ +\xad\xdb\x90\x9f\x5f\x04\x8d\x46\x8b\x77\xde\x3d\x2e\xe4\x3e\x9f\ +\x17\x5e\xaf\x17\x4f\xfc\xe9\xcf\x68\x6a\x7c\x00\x5f\x9e\xfd\x2a\ +\x4c\x01\xfc\x78\xa5\xc7\x8a\x97\x4e\x7a\xd8\xfd\x7a\x37\x7a\x7a\ +\x7a\x14\x4f\x45\x4c\x7d\x7d\x33\x74\xeb\x4d\x30\x9b\x6b\x61\x36\ +\xd5\xe3\xe0\x2b\x7f\xc7\xf1\xe3\xc7\x71\xe4\xc8\x11\x1c\x3e\x7c\ +\x18\x1f\x9e\x3c\x89\xc9\xc9\xc9\xb0\x04\x08\xb9\x78\x49\x90\x1c\ +\x0b\x0b\x0b\x58\x5a\x5a\x42\x75\xb5\x0d\xe9\x19\x99\xc8\xce\xca\ +\x45\x52\x52\x2a\xde\x7c\xf3\x2d\xe6\xc8\xac\x2c\x3c\x32\x32\x82\ +\x3f\x6c\x7f\x18\x3b\x77\x3e\x8a\x17\x5f\xdc\x8f\xf7\xde\x7b\x97\ +\x1e\x9f\x85\x7f\x6a\x4a\x92\x90\xeb\x85\x9d\x03\x32\xb9\xbb\xbb\ +\x1b\xfb\xf7\xef\x87\x62\xcb\xcb\xcb\x22\xa6\xb6\xb6\x11\x85\x85\ +\x06\xee\x69\x35\x05\x35\xe2\xe5\x97\x5f\xc1\xa1\x43\x87\xd0\xd5\ +\xd5\x85\xd3\xa7\x4f\xc3\xe3\xf5\xca\xbc\x45\x8a\x66\x64\x04\xca\ +\xb6\xdd\xe0\x78\xd8\x02\x5e\x78\xe1\x79\x86\xd4\x8c\x7d\xfb\x9e\ +\xc1\xe2\xe2\x22\x66\x58\x19\x7d\x7d\x7d\x38\x71\xe2\x04\xfe\xf8\ +\xd8\x1e\x1c\x3b\x76\x0c\xa7\x4e\x9d\x02\x3d\x17\xc2\x65\x46\x88\ +\x51\x92\xb9\x8c\x98\x60\xa5\x80\xb9\x48\x04\xf4\xf6\xf6\xd0\xdb\ +\x36\x34\x35\x6d\xc1\xf6\xed\xbb\x70\xf4\xe8\x51\xd9\xd3\xfe\xfe\ +\x7e\x59\xfc\x36\x53\x88\x25\x1f\x6e\xb7\xdb\x85\x28\x16\x96\x00\ +\x2a\x95\x2a\x28\x35\xd5\xc0\x52\xd9\x00\x6b\xf5\x06\xec\xdd\xf7\ +\x2c\x17\x0b\xca\x3e\xea\x74\xc5\xc8\xc8\xc8\x42\x5a\x5a\x26\x9e\ +\x7a\xea\x69\x19\x63\xbf\xa0\xc0\x7f\x22\x35\x35\x5d\xfe\x53\xab\ +\xd7\xc0\xe5\x72\xc9\xf8\xc2\xe2\x02\xb7\xcb\x8e\xb8\xb8\xc4\xf0\ +\x05\x80\x96\xa7\x35\xa2\x48\x5f\x8e\xfa\x86\x36\x4c\x4d\x05\x10\ +\xa4\x37\x07\x0e\x1c\x84\xa1\xa4\x12\x06\x43\x15\x2c\x96\x5a\x19\ +\xe3\x7c\x56\xce\x75\x18\x39\xc6\x71\x94\x14\x57\xe0\xd5\x57\xbb\ +\x31\x1f\x0c\xca\x7f\x6f\xbc\xf1\x16\xf4\xba\x72\xe4\x6a\xf4\x91\ +\x09\x28\x36\x54\xc2\x6a\x73\xa0\xa7\xb7\x87\xe8\xc5\xbf\xff\xf3\ +\x31\xca\xcd\x75\xb0\xdb\x36\xc0\x6a\x6d\xc2\xb1\xd7\xba\xf1\x59\ +\x4f\x2f\x7a\x99\x7c\x7b\xf7\x76\xc2\xc6\x71\x3b\xe1\x68\x68\xc7\ +\xe7\x67\xce\x70\xbc\x07\x9f\x7c\xfa\x09\xac\x55\x0d\x32\x5e\x56\ +\x6a\x8b\x4c\x40\x42\xbc\x0a\x45\x45\x7a\x68\xb5\x3a\xac\x2b\x2c\ +\x61\xe8\x4b\xb9\x48\x05\x4c\xa6\x2a\x0a\xb1\xb2\x12\x2a\x60\x34\ +\x5a\xe8\xb9\x05\x66\x8e\x11\x30\x95\x71\xcc\x50\x8e\xf5\xeb\x4a\ +\x50\x54\xa8\x47\xa1\x56\xc7\x77\x3e\x0b\xd7\x43\xf5\xbb\xe4\x30\ +\x93\xf0\x66\xed\x07\x83\x0c\xbb\x1f\xd3\x3c\xc5\xfc\xd3\x01\x4c\ +\xf9\xa7\x31\xc9\x6d\xf0\x4e\x06\xe0\x21\x26\xbc\x01\x8c\x7b\xfd\ +\x18\xf3\x04\x70\x71\x70\x04\xc3\xe3\x7e\xb8\xc7\x26\xe1\x1a\x99\ +\x84\x73\xd8\x87\x81\x21\x2f\x2e\xb8\xbd\xe8\x77\x79\xf0\x0d\x71\ +\xce\x39\x8e\x2f\xfa\x47\x22\x8b\xc0\x9a\x35\xd9\xf4\xca\x8a\x0a\ +\x8b\x1d\x55\x95\x75\x02\xbb\xad\x89\x5d\xaf\x05\x8d\x0d\x9b\xd8\ +\x5e\xdb\xf9\xbb\x19\xa3\x13\x01\xd8\xd8\x13\x1c\x8e\x56\xd4\xd5\ +\x6e\x44\x4d\x4d\x13\xaa\xaa\xea\xb8\xef\x26\x58\xca\x6d\x28\x63\ +\x54\x4a\x4b\x2d\x58\x9b\xa9\x89\x48\x00\x93\xa6\x88\xd9\xeb\x40\ +\x67\xe7\x73\x38\xd7\xd7\x8f\xaf\xbf\x3e\x87\x8f\x3e\xfa\x18\x5b\ +\x3b\x76\xa0\x6d\xd3\x83\xb8\xbf\x7d\x1b\x9a\x9b\x36\x63\x68\x6c\ +\x8a\x82\xda\xb1\xa9\x75\x0b\x36\x6e\xd8\xcc\xf7\x36\xbc\xf4\xd2\ +\x41\x80\x56\x59\x51\x23\x5b\x95\x9f\xcf\x2d\x50\xa5\x2a\x02\x4a\ +\xef\x2c\xe0\x56\xcb\xcc\xc9\x29\xe4\xa2\x1d\xe8\xff\xe6\x3c\x5b\ +\xec\x63\xd8\xbd\xfb\x49\x4c\x8c\x7b\x30\x30\x30\x08\x12\xdf\x12\ +\xf0\x7b\xb8\x47\xa7\xd0\xe0\x68\x47\xcb\xc6\x0e\x6c\x68\xde\x8c\ +\x1d\x0f\x3d\x02\xc5\x89\xac\x2c\x2d\xf2\x72\xd7\x21\x27\x5b\x8b\ +\x94\x94\x8c\x90\xdb\x7d\x69\x82\x3c\xaa\x70\x22\xc0\x8f\x0b\x60\ +\x31\xdb\xe8\x45\x2d\xaa\xad\x0d\x12\xfe\xf7\xdf\xff\x17\xdc\xee\ +\x61\x38\xea\xef\x47\x7b\xdb\x36\x12\x76\xc0\xf5\x9d\x00\xce\x73\ +\x30\xe4\xb5\x60\xe3\xa1\xb8\x07\x41\xe3\xb9\x51\xc8\x86\xd6\xc4\ +\x3b\xc1\xdf\x42\x43\x43\x43\xf3\x31\x31\x31\x8e\xd5\xab\x57\xdf\ +\x13\x96\x80\xcc\x8c\x3c\xee\x1d\x33\xbe\xdc\x8e\x0a\xd6\xfc\x96\ +\x2d\x3b\x64\xbc\xf3\x99\xe7\x25\x02\xad\x2d\x5b\xd1\x50\xdf\xce\ +\x84\xf3\x31\xe3\x4d\x50\x6c\x45\x47\x94\xa1\x41\xe7\xc0\x62\x4c\ +\x74\x74\x2b\xc9\x7f\x21\x4c\x77\x12\xa0\x9c\x5a\x69\xa9\x39\xbc\ +\x4c\x98\xa1\xd7\x9b\xb1\x6b\xd7\x6e\xd0\x78\x46\x1c\x60\x34\x1a\ +\x51\x63\xdf\x48\xb4\xc0\x5c\x56\x83\xf3\x97\xbc\x28\xc8\x37\x80\ +\xa6\xf4\x7c\xb9\x51\xf9\x79\x4a\xba\x5d\xae\xd0\x17\x67\xce\x84\ +\x34\x1a\x4d\x07\x6f\xdd\xf7\x0a\x4b\xb8\x02\x52\xd4\x99\x92\x07\ +\x5d\x5d\xff\x40\x20\x30\x8d\xc6\xc6\x4d\xc8\xcd\xd5\x33\xa9\xac\ +\x0c\x75\x9d\x84\xdc\x68\xb0\x4a\xa9\xe5\xe6\xe8\xa1\x44\x8f\xed\ +\x57\x8e\xe1\x61\xb7\x3b\xd4\xdf\xd7\xc7\x8a\xa8\x7a\x48\x21\x8f\ +\x48\x40\x62\x82\x9a\x77\xba\x0f\xb1\xd2\xec\xf6\x66\x36\x1c\x1b\ +\x9b\x51\x0d\x8a\x75\x66\xb8\x3d\x33\xc8\x5a\x5b\x04\xe5\x3a\x17\ +\x20\xf9\xc8\xd0\x50\x68\xe0\xc2\x05\x96\x64\xcd\xce\xe8\xe8\xe8\ +\x30\xc8\x57\x5c\x48\x40\xfb\xd5\x2f\x63\x10\xf7\xdb\x24\xc4\xc6\ +\xa8\x10\x1f\xa7\xc6\xea\xc4\x54\x24\xa9\x32\x99\xd5\x3a\x86\xbc\ +\x04\xda\x02\x03\xf7\xde\xc8\xfa\x2e\x60\x96\xaf\x93\x6f\x02\x7e\ +\xbf\x90\xbb\x9c\x4e\xf6\x8b\xfa\x47\x56\xad\x5a\x25\xe4\x11\x0b\ +\x60\x37\x64\x83\xf1\x60\x6c\xc2\x87\xd1\x71\x1f\x86\xc7\x26\x59\ +\xef\x3e\x96\x9c\x0f\xae\x61\x2f\x06\x87\x59\x8e\xee\x09\x5c\xb8\ +\x34\x81\xf3\xae\x09\xf4\xb1\xd3\xd1\x84\xfc\xd2\xe0\x20\xf3\xc4\ +\xfa\x68\x54\x54\xd4\x0a\xf2\x08\x23\x70\xdf\x7d\xbf\x46\x62\x62\ +\x0a\x92\x93\xd2\x24\x1f\xd2\x52\xb3\x91\x91\xae\xa1\xc7\xf9\x0c\ +\xb9\x16\xd9\x2c\xd3\xec\x6c\x3e\xf9\xce\x8e\x27\xd9\xee\xbc\x78\ +\x91\x95\x53\xfa\x38\xb3\x5d\xc8\xef\x46\x80\xdc\x05\x40\x8b\x8a\ +\x8a\xe3\xf9\xbe\x16\xe9\xe9\x39\x24\xcd\x23\x59\x01\x34\x4c\xca\ +\x5c\x36\x96\xfc\xbc\xf5\xdc\x06\x1d\xa1\x97\x67\x67\xe7\x5f\x43\ +\x3e\x2f\xab\xa1\xa0\x60\x4f\x72\x72\xb2\x90\xff\x54\x01\x6c\x99\ +\xf7\x88\x88\x98\xd8\x44\x5e\x26\x54\x48\x48\x48\x66\x1e\xa4\xf0\ +\x54\xbb\x99\x0b\x69\x8c\x4c\x06\xd4\xc9\x99\xcc\x83\xe2\x90\xc7\ +\xe3\xa1\xd0\xf4\xdd\x6a\xb5\x9a\xe4\x77\x6f\x46\x44\x60\x4b\x4b\ +\xcb\x52\x72\x5f\x7d\x79\x36\xa0\x52\xa9\x76\x8a\xe7\x3f\xc5\xe2\ +\xe2\xe2\x7e\xc3\x87\x81\xb0\xdc\x01\xe5\xff\x85\xfc\x36\x11\xa9\ +\xb1\xb1\xb1\x3f\xbf\x5b\xde\x6f\x01\x1a\xa7\x50\x3e\xc4\x39\xe5\ +\xe6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xd2\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x4f\x49\x44\ +\x41\x54\x78\xda\xa5\x93\xcb\x4f\x13\x51\x14\x87\xbf\x3b\x33\x1d\ +\x5a\x5b\x0c\x19\xc0\x42\xa0\xe5\x61\x13\x17\x24\xa8\x71\x65\x8c\ +\x1b\x8d\x89\x3b\x57\xee\x64\xa7\x0b\x1f\x7b\x48\x7c\x9b\xe0\x42\ +\x4d\x8c\x8f\x3f\x42\x57\x2e\x5d\x68\x74\x61\x0a\xa8\x41\x40\x5d\ +\xb0\xd0\x50\x1e\xa2\xb5\x0d\x8f\x4e\xa1\x32\x33\x9d\xeb\x1d\x26\ +\x4e\x0a\x5b\x4f\x72\x72\xef\xe6\xfb\xf2\x3b\x77\xce\x08\x29\x25\ +\xff\x53\x06\xbb\x6a\x4e\x88\xc1\x55\x78\x66\xe6\x72\xc9\xa6\x5c\ +\x2e\x16\x4b\xa7\x75\xb7\x58\xac\x3b\xb3\xb3\xf6\x9e\x42\xe1\x6c\ +\x9f\x94\x9f\x77\x08\x76\xc3\xa5\x6c\x36\xdf\x79\x77\x34\xd5\x64\ +\x59\x08\xa1\x81\xa6\x21\x3d\x17\xa7\x62\x77\x2e\x0f\x0f\xe7\x11\ +\xe2\x58\xa3\x24\x18\x21\x82\x17\xbb\xbb\xf2\x3d\x37\x6e\xa6\xcc\ +\x8d\x2a\xb2\x5e\x07\xcf\xc3\x57\xa7\xef\xba\xd4\x7d\x1f\x69\xb5\ +\xb2\x74\xff\x5e\x35\xf3\x63\x39\x92\x68\xff\xe0\xb9\x8e\xf4\x58\ +\xcf\xed\x5b\x29\xbd\x5c\x42\x28\x48\x57\x2d\x2a\x15\x74\xd5\x86\ +\x82\x0d\x29\x91\xdf\xbf\x91\x1d\x19\x4e\x15\x3a\x3a\xc6\x02\x86\ +\x48\x60\x18\xcf\x7b\xaf\x5f\x4d\x6a\xf3\x0b\xe8\xbe\x4f\xdb\xb9\ +\x21\x5a\x87\x86\xd4\x3d\x10\x79\xb4\x9f\xbf\x40\xe7\xc5\x4b\x98\ +\x02\xdc\xc9\x49\x7a\xaf\x8d\x24\x03\x26\x7a\x83\x9a\xe7\x25\xaa\ +\x1f\x26\x68\x69\x69\x43\x98\x26\x38\x0e\x46\x26\x83\x75\xf9\x0a\ +\xc1\x88\x31\x75\x77\x0b\x73\xe8\xab\xab\x18\x2a\xd1\xc6\xfb\x89\ +\x6d\x26\x4a\xe0\x80\x60\xb3\x8a\x56\x59\x47\x2f\xfe\x62\x65\xf4\ +\x0e\xee\xc2\x3c\x46\x77\x46\xc1\x59\xdc\xc5\x05\xd6\x9f\x3c\x26\ +\xae\x44\xcd\x03\x03\x18\xba\xd8\x66\xa2\x04\x1e\x88\x95\xfc\x5b\ +\x9a\x8c\x66\xea\xc9\x24\x7a\x36\x1b\x3e\x22\x61\x49\xd7\x65\x63\ +\xfa\x13\xde\xf4\x14\x75\xdb\x66\x2d\x11\x32\x8d\x09\x90\x9b\x36\ +\xfc\x5c\xc6\x5d\x5f\xa3\xfd\xc1\x43\xcc\xbe\x7e\xfe\x7c\xfd\xb2\ +\xdd\x66\xff\x7e\xd2\x8f\x9e\xe2\x27\xe2\x88\x00\xd2\x43\x26\x4a\ +\x20\x61\xab\xa6\xb3\xa3\xb6\x14\xb8\x78\xfa\x24\xbe\xef\xd3\xf3\ +\xf2\x35\x9a\x69\x22\x01\x01\x54\xf4\x90\x89\xf6\x60\x4a\x88\x83\ +\xef\x62\x8c\x0f\x36\x93\xe8\xb2\x41\xdb\xd7\x1e\xda\x83\x4f\x0a\ +\xb8\x96\x05\x7a\x0c\x7e\x17\x59\x4a\xc1\x8c\x4d\xed\xb8\xcb\xd1\ +\xc3\x52\xce\x44\x8b\x14\x48\xde\x98\x8c\x1f\xd9\x4b\x22\x53\x21\ +\x8c\x2a\xc2\x53\x02\xbe\x84\xa5\x16\xc1\xc7\x35\x59\x3b\xe1\x84\ +\x70\xe3\x26\x46\x92\x57\x4a\x72\xc0\x57\x49\x52\x49\x62\xf1\x38\ +\xba\x61\x50\xf7\x3c\xca\x08\x26\x57\xca\xb5\x53\x0d\xf0\x6e\x41\ +\x24\x19\x87\x17\xea\x27\x4a\xc4\x2d\x4b\x0b\x66\xf7\x1d\x07\xaf\ +\x54\xaa\x1d\x2a\x97\xcf\x44\x70\xa3\xe0\x7f\xea\x2f\xb2\x2a\x1f\ +\x46\x55\x40\xa7\x1e\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x06\xe3\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x06\xaa\x49\x44\x41\x54\x78\xda\xbd\x57\x59\x4c\x54\x67\ +\x14\xbe\x2e\x29\x52\x90\x14\x64\xa8\x60\x37\xa3\xa9\x26\x6d\x6a\ +\x43\x0d\x2e\x11\x4d\x6c\x78\xd0\x34\x26\x4d\xed\x83\x0f\x26\x36\ +\xa9\x49\x6d\xd2\xda\x26\x6d\x1f\xda\x98\x2e\x36\xf6\xa1\x26\xb6\ +\x55\xa9\x0a\x08\x6a\x71\x0b\x58\x16\xd1\x0a\x2a\xa4\x16\x98\x91\ +\xd5\x41\xd9\x66\x85\x19\xb6\x19\x66\xd8\x61\x2e\xc3\xcc\xd7\x73\ +\x4e\xb8\xea\x83\xe2\x55\xd3\x1e\xf2\xe5\xce\xfd\xef\xbd\xff\xf7\ +\x9d\xe5\x3f\xff\x8f\xa2\x59\x7c\x7c\x7c\x34\x5d\x92\x09\x6b\xfe\ +\x43\x24\x1b\x0c\x06\xe2\x79\xb0\xa5\xe0\x7f\x30\xe2\x59\xf5\x30\ +\x01\xeb\x41\xe6\xeb\xef\x87\xdf\xe7\xc3\x00\xc3\xef\xc7\xe0\xc0\ +\x80\x60\x78\x70\xf0\x2e\x46\x86\x87\x21\xe0\xdf\xf7\xdd\xdf\xff\ +\x8e\x7c\xe7\xf7\x33\x64\x2e\x7f\x7f\xbf\x26\x60\xc3\x4c\x02\x84\ +\x74\x88\x27\x19\x1a\x12\xc8\xe4\x23\x23\x18\x25\xf0\xb3\xb1\xd1\ +\xd1\x87\x62\x94\x40\xef\xf1\xfb\x9a\x28\x6d\x1e\x16\xa4\x4b\x80\ +\xbc\x38\x34\x4d\xec\xf3\x7a\x31\x3e\x36\x06\x4f\x6f\x2f\x86\x88\ +\xdc\xe3\xf1\x30\x91\x8c\x8d\x8f\x8f\x6b\xe0\x7b\xc1\x98\x86\x07\ +\x88\xa1\xa8\xe8\x8c\x00\x09\x20\x4f\x65\xc2\xce\x8e\x0e\x4c\x4d\ +\x4d\xc1\x64\x34\x8a\xb0\xee\xae\x2e\x79\xa6\xaa\xaa\x44\x69\x62\ +\x62\x02\x81\x69\x68\xde\x06\x02\x01\x9e\x83\xef\x79\x0e\x16\xc2\ +\x82\xf8\x5e\x9f\x80\x5b\xb7\x6e\xc9\x04\x2a\x4d\xda\xd0\xd0\x00\ +\xb6\x6b\x57\xaf\x62\x90\x08\x3b\x48\x10\x41\x44\xb5\xb7\xb7\x23\ +\x1c\x0a\x41\x2c\x0c\xf1\xdc\x6e\xb3\x21\x38\x39\x89\x5e\x8a\x98\ +\xcf\xe7\x63\x61\x1c\x05\xfe\xcd\xcf\xf5\x09\xa8\xaa\xaa\x12\x01\ +\xc1\x60\x10\x15\xe5\xe5\x60\xbb\x72\xe5\x0a\x1a\xea\xeb\xd1\xd9\ +\xd9\x89\x7a\xba\xb2\x95\x95\x96\x42\x26\xfc\x56\xc1\x99\x1b\x67\ +\x89\x2c\x80\xd6\xd6\x56\x84\x48\x9c\xcb\xed\x86\xc3\xe1\xe0\x48\ +\x71\x41\xb3\x68\x4e\x85\x3e\x01\x46\xa3\x51\xbc\x9d\x22\x01\xa5\ +\xd3\x24\x97\x2f\x5f\xc6\xb5\xeb\xd7\x61\xb7\xdb\x91\x9f\x9f\x0f\ +\xb6\x0b\x17\x2e\x00\x2a\xb0\xe0\xa0\x82\x85\x5f\x2c\x04\x5b\x63\ +\x63\x23\xc2\xe1\x30\xac\x56\x2b\xcc\x66\x33\x26\x29\x1a\x5e\xaf\ +\x57\xc4\x78\xfa\xfa\xf4\x09\x30\x99\x4c\x52\x84\x21\x0a\x6f\x69\ +\x59\x99\x4c\x78\xf1\xe2\x45\x14\x15\x15\xe1\x3a\x89\x38\x71\xe2\ +\x04\xd8\x4e\xfd\x71\x0a\x53\x23\x21\x2c\x4a\x9f\x87\x98\xef\x23\ +\x90\x5e\x79\x10\x55\x37\xaa\xc0\x56\x53\x53\x23\xa9\x1c\xa6\xbc\ +\xf7\x11\x31\x09\xe0\x28\xe8\x13\x50\x5b\x5b\xcb\x85\xa3\xe5\x9e\ +\xc3\xce\xe4\x0c\xf1\xfa\xe4\xc9\x93\xe8\xa2\x62\xcc\xca\xca\xc2\ +\x60\xf7\x10\x96\x1e\x8b\xc1\xbc\xaf\x22\x90\x7a\x65\x11\xce\x95\ +\x9c\xc7\xa4\x3a\x09\x63\x75\xb5\x44\xa3\xbb\xbb\x9b\xa3\x26\xb0\ +\x59\xad\x8f\x16\x40\x85\xc2\x1f\x8a\x07\x4d\x4d\x4d\x28\x2f\x2f\ +\x17\xaf\x4b\x4a\x4a\x50\x50\x50\x80\x73\xe7\xce\x49\x04\x72\x73\ +\x73\x45\xc0\xc5\xbc\x12\xbc\x96\x6d\x80\xf2\xe1\x6c\xcc\xcf\x9a\ +\x85\x65\x67\x12\xd1\x5c\xdf\x8c\x9a\x9b\x35\x3c\x8f\xcc\xd1\xd6\ +\xd6\x06\x1b\x15\xa7\x55\xa7\x00\x8e\x00\xaf\x77\x29\xc2\x32\x4a\ +\x41\x5d\x5d\xdd\x5d\xef\x8b\x8b\x8b\x91\x9d\x9d\xcd\xa2\x44\x80\ +\xb1\xc2\x84\xa5\x47\xe7\x53\xb7\x1b\xc6\x0f\xd7\xf7\x42\xf9\x49\ +\xc1\xee\x4b\xbb\x51\x57\x53\x27\x02\x5a\x5a\x5a\x98\x58\xbf\x00\ +\x90\x55\x56\x56\x72\xee\x38\xf7\xec\x39\xd7\x02\x93\x4b\xf1\x5d\ +\xa5\x94\x64\x66\x66\xca\xb2\xca\xc8\xc8\xc0\xe4\x48\x10\xaf\xa6\ +\xc7\xc0\xdd\xeb\x46\x58\x0d\x63\xcf\xf9\x3d\x22\xa2\xa9\xae\x89\ +\x56\x4d\x83\xd4\x92\xcb\xe5\x12\x01\x4e\xa7\x53\x9f\x80\x8a\x8a\ +\x0a\x6d\xc9\xb0\xc7\x5a\xc5\xb3\x30\x0e\xa7\x10\xb3\xe5\xe4\xe4\ +\x20\x30\xa8\xe2\x8d\xa3\x06\x38\xbb\x3a\x64\x19\x3a\x9a\x1d\x48\ +\x39\x9b\x82\x7d\xa5\xfb\x58\x80\x74\xc9\x9e\x9e\x1e\x58\x2c\x16\ +\xb8\xdd\x6e\x3d\x02\xa4\xf0\x58\x00\x7b\x2e\x1e\x93\x71\xfe\x39\ +\x9f\x1c\x46\x49\x11\xdb\xe9\xd3\xa7\x25\x02\x29\x19\x2f\xc2\xe1\ +\x76\x4a\x07\xb4\xb6\x5b\x91\xdf\x96\x8f\x2d\x05\x5b\x60\xb9\x63\ +\xe1\x31\x5e\x05\x22\xbc\x4b\xaf\x80\x76\x7a\x99\xda\x26\x77\x3b\ +\x5e\x4a\x9a\x00\x5e\x4a\xbc\xa3\xc9\xfa\x06\xa5\xa7\x9a\x2a\x9d\ +\xed\xcd\x23\x49\xb0\xbb\x1c\xdc\xf5\xe8\xdb\x76\xd8\xbc\x36\x2c\ +\xce\x5c\x8c\x31\x2f\xb5\x60\x72\xc4\x4b\xdf\x50\x4b\x67\xe8\x12\ +\xc0\x6d\x94\x97\xa1\xb4\x54\x2d\x6f\x97\x2f\x5d\xe2\x6d\x9a\x97\ +\x24\xef\x07\xfc\x4c\xfa\x3e\x42\xc0\xd2\x83\x71\xb0\x76\xd8\x24\ +\xdc\x96\x76\x0b\xac\x7d\x56\x2c\x3f\xbe\x1c\xa1\xd1\x29\xe9\x82\ +\xfd\xf4\x5d\x4f\x77\x37\x7f\xab\x4b\x00\x17\xa0\xf4\x6f\x35\x10\ +\xe0\x56\xca\xdd\x4c\xfa\xf8\xa4\xaa\x4a\x77\x54\xe9\x9e\x42\xcb\ +\x1b\x91\x08\x48\x3c\xf0\x2c\x5a\x6d\x6d\xb4\xdb\x0d\xc1\x6e\xb3\ +\xa3\xf0\x76\x01\x76\x14\xef\x80\xcf\xe3\xe7\xfc\x73\xcf\xe0\xd6\ +\xcc\xbd\x40\x13\xb0\x7a\x26\x01\xec\x3d\x57\x2f\x93\x48\x58\x55\ +\xbe\x12\xb9\xca\x98\x1e\x9b\xe0\x2d\x98\x9b\x55\x00\x88\xf9\x79\ +\x0e\xcc\xcd\x66\xf4\x10\x91\xc3\x62\xc3\xb6\x3f\xb7\xa1\xb2\xb9\ +\x12\x4e\x87\x93\x9b\x8f\xa4\xf4\x76\x73\x33\x1a\x1b\x1a\xc2\x54\ +\x8c\xdd\xc4\x93\xf8\x28\x01\x52\x84\x13\x4c\x46\xd0\x88\xe9\xca\ +\x5e\x33\x24\x22\x52\xa8\xa3\x21\xcc\xa5\x65\x57\x65\xaa\x96\x7e\ +\x61\xae\x36\x63\x53\xf6\x26\xd4\x57\xd7\xc3\x54\x6d\xc4\x4d\x93\ +\x49\xc6\x1d\x76\x7b\x98\x36\xb8\x40\x54\x54\xd4\xa6\x84\x84\x84\ +\x59\x33\x09\x60\x02\x26\x66\x88\xa7\x9a\x08\xb9\x06\x54\x1a\xa3\ +\xf1\x31\xda\x66\x87\x47\xa1\xd2\x32\x54\x7e\x54\x50\x58\x52\x08\ +\x36\xd7\x84\x0b\x61\xfa\xbb\xcf\x78\xcb\x0e\x3b\x1d\x8e\xe0\xbc\ +\x88\x88\x77\x0d\x09\x09\x73\x98\x68\x26\x01\x52\x4c\x9a\x08\x0d\ +\x72\x3f\xa1\xca\xee\x67\x1e\x32\xe2\x54\xcb\x61\x1c\xf9\xfb\x17\ +\xd4\x9a\x6f\x42\xf9\x46\x41\x4e\x6e\x0e\xc8\x58\x20\xbf\x2b\x75\ +\xd4\x4f\xdd\xd4\x49\x9e\x9b\x29\xf4\x4b\x96\x2c\xd9\x16\x17\x17\ +\x37\x97\x49\xf4\x0a\xd0\x44\x48\x83\x09\x07\x01\x93\xe7\x1a\x0e\ +\xf7\x7d\x8d\x03\xde\x2f\x91\xfc\x57\x2c\xe5\x5e\x81\xb2\x8b\x90\ +\xa6\xe0\xd0\x91\x43\xd0\xa2\xc7\xa9\xe9\xf7\x7a\xe1\xea\xe8\x08\ +\x5b\xe8\x7c\x90\x9a\x9a\xfa\x81\x46\xfe\xb8\x02\x24\x05\xc1\x40\ +\x10\xa5\x96\x7c\xbc\x5f\xb6\x16\xf9\x9e\x0c\xfc\x3a\xfe\x19\xd6\ +\xd7\x3f\x87\x57\x8e\x29\x88\xfd\x9c\x04\xbc\xa7\x60\xff\xa1\xfd\ +\x60\xd3\xce\x91\xee\xce\xce\xb0\x83\xda\xef\xc6\x8d\x1b\x77\x46\ +\x47\x47\x0b\xb9\x7e\x01\x63\x63\x42\xac\x4e\x0b\xe1\x94\x26\x1f\ +\x4e\xc0\x0b\xc7\x15\xbc\x7d\x33\x0e\x1b\xdc\x11\x58\x6d\x9f\x85\ +\x15\x45\x91\x48\xf8\x4e\xc1\x33\x5b\x15\xe4\x9d\xcf\x83\x76\xa4\ +\x67\xf2\x4e\xea\x1f\x69\x69\x69\xbb\x22\x23\x23\x85\xfc\xf1\x05\ +\x10\xb4\x48\x20\x04\x6c\xfe\x3d\x19\xcf\xa7\x2b\x58\x57\x11\x85\ +\x8f\x7a\x5f\xc7\x1e\x75\x0d\x36\x37\x26\xc2\xb0\x97\x0a\xb0\x94\ +\x36\xaa\x3c\x39\x25\x49\xd8\x09\x58\x9f\x9a\xfa\x31\x55\xfc\x0c\ +\xe4\x3a\x22\x40\x60\x21\x5c\x03\x34\x36\x8e\xed\x99\xef\xe0\xa5\ +\xdf\x14\x2c\xce\x53\xb0\xa2\x30\x06\xdb\xb3\xb7\xe2\x4e\x53\x33\ +\xea\x6b\xeb\x50\x42\x27\x26\x32\x09\xfb\x5b\x2b\x57\x7e\x1a\x6f\ +\x30\x08\xf9\x13\x09\xd0\xce\xfd\x13\xf7\x84\xc8\x09\x79\x8a\x6a\ +\x61\xa0\x6b\x10\xae\x16\x37\x7c\x2e\x3f\xfc\x1e\x3f\x77\x3e\x3e\ +\xc4\xf2\x5a\x0f\x73\xdb\x5d\xb6\x6c\xd9\xee\xc4\xc4\x44\x21\x7f\ +\x2a\x01\x02\x4e\xc3\x3d\xf0\x18\xb7\x68\xde\x03\x24\xd7\x5d\x5d\ +\x6e\xb4\xd2\x81\xe3\x9f\x1b\x37\xc2\xfc\x2c\x29\x29\xe9\x13\x02\ +\x91\x3f\xb9\xad\xc2\xe3\x19\x6f\x4a\xbc\x63\xfa\xe8\x3f\xeb\x9d\ +\xe2\xf9\xd3\xd8\x82\x05\x0b\xe6\xd3\x25\x85\x90\x3a\x03\xd6\xdd\ +\x83\xdc\xaf\x25\xbc\x1c\x1b\x1b\x3b\xfb\x49\x79\xff\x05\x8b\x6a\ +\x92\x5b\xac\xd1\x40\x34\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\xa3\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ +\x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1f\x0e\x22\x3a\x65\x45\x9e\x67\x00\x00\x02\x30\x49\x44\ +\x41\x54\x78\xda\x95\x90\xdf\x4b\x53\x61\x18\xc7\xbf\xef\x7b\x7e\ +\x3b\xcf\xb6\xe3\xa6\x47\xcd\x69\xe6\x1c\x8d\x5a\xa2\x95\x8e\x44\ +\x45\x8c\xa8\x28\xf0\xa6\x9c\x57\x21\x14\x18\x44\x5d\xd7\x45\x3f\ +\x08\xfa\xf1\x17\x68\x5e\x55\x12\x5d\x44\x69\x5d\x84\x17\xe5\x55\ +\x08\x75\x53\x37\x05\xd9\xbc\x88\xa2\x1a\x3a\xdd\x71\x6e\xed\xfc\ +\xf0\x9c\x3c\x23\x24\xc2\x81\xfb\xc0\xf7\xe5\x81\xf7\xe5\xf3\x3c\ +\xcf\x4b\x50\x82\xc8\xa9\x89\xc1\x13\xbd\xe1\x71\x9e\xa5\x78\x36\ +\xfb\x65\x74\xfe\xc9\xb9\x69\x6c\x01\x45\x09\x82\x52\x6e\xdc\xd2\ +\xd3\xea\x5a\x76\x51\xad\xae\x58\x1b\x83\x4b\x39\x82\xd4\xcf\xaf\ +\x4e\xde\x56\xe0\xf0\x2a\x96\x52\xdf\x51\x0a\x06\x25\xb0\x59\x29\ +\x49\x02\x9e\xfe\x94\xf6\x23\x37\xff\xe6\xd5\xa8\xa9\x7d\xfb\x8c\ +\x72\x39\x7f\xe7\x65\xfb\xd9\x5b\x33\x6d\x70\x29\x77\x85\x86\xc3\ +\xd7\xfc\x5e\xbf\x38\xa5\x04\x2a\xa7\xc3\xa7\x1f\xf8\xca\x12\xa8\ +\x87\x2e\x22\x16\x51\xc7\x62\x7b\xea\x9b\xda\xa2\xc1\x9d\xd1\x66\ +\xff\xbd\xd6\xc4\xe4\xf6\x05\x5e\x0f\x7b\xa6\xbb\x2b\x92\xc8\xac\ +\x68\xc8\x64\x34\xc4\x63\x55\x43\x1e\x91\x8e\x6c\xeb\x13\xab\xf6\ +\x0d\x87\xfb\xfb\xf6\x3f\x0f\xd6\x28\x82\x5e\x30\xe0\xc6\xb1\x2d\ +\xf0\x1c\x19\xc8\x55\x1f\x7f\xba\xfc\x71\x2a\x5d\x72\x02\x5f\x74\ +\x90\x8b\xb4\x36\x3e\x0a\x35\xee\x90\x0b\x05\x0b\xba\xb1\x5e\x8c\ +\x5b\xd7\x2a\xb4\xb2\xb1\x86\x7b\xdc\x3a\xf4\x90\x2f\x29\x90\x65\ +\xcf\xf5\x58\xdb\xde\x4e\xc3\x02\xac\x75\x0a\xcb\x66\xfe\x86\xc2\ +\x30\x1d\xb4\xd4\xd1\x0e\x11\xd9\xdb\x5b\xae\x50\xd9\x72\xa4\xaf\ +\xa3\xf3\xe0\x44\xa0\xba\x96\xb2\x9c\x08\x96\x13\xc0\xb0\x02\x40\ +\x59\x38\x0e\x81\x69\x39\xb0\x4c\x13\x3c\x35\xe3\x05\x25\xfe\x36\ +\x93\x9c\x4d\x6e\x4e\x20\x86\x7a\x94\xa6\x5d\xcd\x93\x4a\xb0\x8e\ +\x71\x3b\x3a\x54\x00\x65\x24\x30\x1b\x22\x41\x90\xc0\xf3\x15\x60\ +\x59\x71\x43\xc4\x82\x63\x08\xf1\x55\x90\xfb\x4d\xc7\xee\xaa\x9b\ +\x82\x70\x67\xfb\x4d\xc9\x5f\x1f\x4a\x6b\x3a\x56\xf3\x36\xf2\x3a\ +\x81\x61\x32\xb0\x6d\x01\xba\xc9\x41\xcb\x01\xe9\x55\x1b\x8b\xab\ +\x16\x7e\x2d\xff\x06\xa5\xeb\x6a\x6c\x60\xf7\x65\x00\x60\xdd\x43\ +\x92\xe5\x99\x85\x77\x73\x4b\xb6\x69\x02\x8e\x45\x0e\xf4\x1e\xbd\ +\xda\xd5\x73\x12\x5e\xaf\x17\x2e\x84\x50\x7c\x7a\x3f\x8b\x0f\x73\ +\xaf\x6f\x70\xb2\x0a\x49\x69\x40\x4d\x6a\xe5\x45\xf1\x0e\xff\xd1\ +\x9d\xb8\x44\x6c\x5e\xd6\x14\x39\x20\x4b\xa2\x50\x7c\x52\xd0\x0d\ +\x98\x22\xcd\x8e\x5c\xb9\xe0\x1b\xae\x22\x0e\xfe\xe1\x0f\xc9\x22\ +\xc0\xef\x7e\x79\xda\xf6\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\x6f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\ +\x06\xec\x01\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1d\x0e\x02\x37\x24\x79\x0e\xf3\x00\x00\x01\xfc\x49\x44\ +\x41\x54\x78\xda\xa5\x90\x4f\x6b\x13\x41\x18\x87\x7f\xbb\xb3\x69\ +\x76\x37\xd9\xd5\x98\xb4\x1b\x29\xa2\x16\xd4\x83\x17\xf5\x24\x58\ +\xbc\xf8\x0d\xa4\x78\x29\x22\x82\x5e\xa5\x42\xf1\x58\xcf\x7e\x01\ +\xa1\x87\x62\xb1\x01\xf1\x52\x05\xe9\xb1\x78\x10\x91\x4a\xc1\x7f\ +\xa0\x58\x8a\x4d\x53\x93\x92\x36\xb1\x89\xbb\xee\x66\xbb\xbb\x33\ +\xbe\xae\x8b\x84\x1c\xda\xa8\x0f\xf3\x32\x33\x2f\xcc\x33\xbf\x19\ +\xfc\x2f\x12\x7a\x18\xb9\x3c\x2d\x51\x7b\x1d\x82\xe7\x84\x10\xa0\ +\x19\x22\xae\xa8\xb1\xfe\x6c\xe2\x38\x7a\x50\xd0\x03\x0f\x7d\x12\ +\x88\x23\x37\xc7\x4e\x43\x92\xa4\xb8\x40\xdc\x2f\x2d\xe9\x20\xf6\ +\x15\x44\xbb\x2e\x48\x80\x4e\xa7\xf3\xfb\x30\x95\x14\xf7\x3d\xf4\ +\x27\x08\x3c\x80\xa2\xb7\xdb\x76\x77\x02\xea\xbb\x7d\x0a\x7c\x07\ +\xc0\x2f\x81\x83\x38\x40\x92\x80\xef\x95\x60\xe8\xc2\xed\x49\xf0\ +\xe8\xae\xe0\x81\x14\xf9\x76\x9c\xc0\xb6\x5d\x30\x26\xc7\x02\x41\ +\x7b\x4a\x20\xe7\xce\x5e\xb3\x21\x38\x8d\xf8\x63\x1f\xb4\x3f\x3c\ +\xba\xa5\x20\xb6\xbb\x0d\x1e\xed\x66\x47\x8e\x5a\x30\x8c\x0c\x34\ +\x5d\x87\xc4\x06\xc0\x94\x14\x24\x59\x06\xe7\x11\x2e\x8e\x9e\x83\ +\xe3\x38\xd9\xad\xfa\x36\xd6\xbe\x94\x41\x3c\x07\x21\x27\xef\x9b\ +\xa5\xe8\x4f\x37\xab\x35\x78\x3e\xdd\x86\x34\xb8\xa4\x43\xb0\x2c\ +\x42\x68\xf8\xe1\x2b\xd8\xde\x09\x50\xf9\xda\xc2\x46\xa5\x0a\x1e\ +\x78\x33\xf6\xa7\xf9\x27\x7f\x04\x3b\x6f\xe7\xa8\xe9\xde\x68\x35\ +\x6a\xd5\x66\xf3\x1b\x09\x54\xc8\x29\x13\x29\xf5\x20\xd4\xcc\x21\ +\xe8\x46\x1e\x66\x6e\x10\x03\x29\x86\x8e\xbd\xb5\x42\x69\x27\x90\ +\x20\x23\xc1\x5e\x59\x68\x92\xf9\xea\xe6\xea\x32\x57\xd5\x34\xf2\ +\x85\x3c\x2c\xab\x80\xa2\x35\x88\xa1\x42\x01\x19\x5d\x43\xe5\xf3\ +\xeb\x40\xf0\x68\xdc\x5b\x5b\x74\x90\xc0\xd0\x45\xf8\x7d\xa3\x2c\ +\x98\xa6\xbb\xed\xfa\xe8\x99\xf3\x97\xe8\x20\xdd\x6c\x64\xc1\x05\ +\xc7\xe2\xfc\x34\x9a\xf5\xca\x94\x5f\x5b\x7a\x8c\x2e\x64\xf4\x22\ +\x30\x55\x5b\x7d\xb3\xfc\xfe\xe5\x02\x82\x30\x44\x14\x45\x78\x47\ +\xeb\xf2\xc7\x57\x2f\xc0\xc3\x7b\xe8\x07\x66\x0c\x9f\x4c\x9b\x45\ +\x7b\x6c\xf2\xa1\xb8\x72\xa7\x24\xd2\xa6\xd5\x52\x8c\xe1\x63\xf8\ +\x1b\x98\x96\xbf\x7e\xe0\xf0\x29\x61\x5a\x27\x84\xac\xe5\xc6\xf1\ +\x2f\xb0\x4c\xb1\x44\x35\x8b\x3d\xf8\x09\x7b\x1c\xef\xe9\x88\x1f\ +\x84\x20\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xe6\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x0b\x07\ +\x14\x37\x1f\x93\x56\x3a\x2c\x00\x00\x01\x66\x49\x44\x41\x54\x38\ +\xcb\xa5\x93\x41\x4e\xe3\x40\x10\x45\x5f\x39\x6d\xc7\x69\xbb\x63\ +\xdc\x2b\x38\x03\xf7\x60\x8d\xc4\x82\x05\x23\xcd\x0d\x66\x3b\xe2\ +\x04\xcc\x7e\xee\x80\x60\x91\x15\x12\x0b\xee\xc1\x35\x3a\x8a\x02\ +\x4e\xe2\xd8\x53\xb3\x48\x1c\xc2\x64\x12\x21\xa8\x55\xa9\xeb\xf7\ +\xef\xfa\xf5\xab\xe1\x8b\x21\x00\xde\xfb\x24\x84\x70\x06\xe4\x1f\ +\xbc\xf7\xe2\xbd\x7f\x0a\x21\xd4\x06\x20\x84\x70\x36\x9d\x4e\x7f\ +\x58\x6b\xa5\x43\xa8\xfe\xa1\xd7\x33\x35\x40\xdb\x36\x89\x48\xb4\ +\xb9\x5d\x55\x95\x3a\xe7\x04\x78\x30\xeb\xb3\xdc\x5a\x2b\x93\xc9\ +\x64\xd6\x81\xca\x61\x59\x9f\x9e\xcb\x05\xc0\xf3\x48\x47\xe3\xc9\ +\x38\xe9\x6a\x45\x51\x0c\x80\x0c\xc0\xec\xeb\x51\x15\x49\x93\xb7\ +\x7c\x1f\x2e\x3a\x24\x54\x01\x13\xaf\x93\x3d\x61\xb6\x35\x97\xc3\ +\xb2\xee\x5e\x13\xc3\xb2\x9f\x42\x3e\x04\x89\x59\xe6\x69\xb9\x9a\ +\xba\xa0\xaa\xcd\x60\x87\xa0\xd7\x33\xf5\xe9\xb9\x5c\x74\x6d\x9b\ +\x04\x8e\x4f\xd0\x6c\x08\xdf\x7e\xc9\x65\xdc\x87\x28\x82\xd9\x1c\ +\x6e\x7f\xea\xe3\x0e\xc1\xbf\xe6\x66\x0e\xac\x03\x77\x04\xb1\x85\ +\x7e\xfa\x46\xf0\x5f\x09\x6d\xdb\x24\xcf\x23\x1d\x6d\x4b\xb8\xba\ +\x91\xcb\x24\x83\xdf\xdf\xf5\x7e\x31\x27\x46\x57\x12\xda\xb6\x29\ +\x76\x08\x44\x22\xb6\xad\xca\xd3\x92\x24\x05\x9b\xc1\x62\x46\x5c\ +\x2d\xc7\xf1\xc6\xc6\x41\xf1\x31\x17\xa2\x68\x35\x0b\x3d\x84\xd9\ +\x5b\x10\xf4\xb5\x82\xf9\x02\xe4\x00\x47\x27\xe1\xa5\xaa\x2a\x5d\ +\x6f\xd8\xda\xd6\x66\x70\x77\xbd\x9a\x76\xdb\x36\x45\x61\x8b\x77\ +\xab\x0c\xbc\x6e\x08\xbc\xf7\x4f\xce\x39\x3e\xf1\x99\xf8\x72\xfc\ +\x05\xfa\x36\x81\x8c\x25\x97\x00\x90\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x02\x9c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x19\x49\x44\ +\x41\x54\x78\xda\x85\x90\x49\x68\x14\x41\x14\x86\xff\xea\x9e\x25\ +\x8a\xcb\x55\xec\x0e\x18\x15\x45\x04\x49\xbc\xc8\xe0\x41\x2f\x7a\ +\x17\x04\x15\x02\x62\xf0\x62\x60\xd4\x44\xe3\x32\x78\xc8\x21\x46\ +\x23\x18\x84\x0c\x06\xa2\x04\xdc\xc0\x60\xf4\x22\xb8\x44\x51\xf0\ +\x20\x9e\x3c\xe8\x68\x8f\x81\xc0\x08\x26\xb8\x1c\x9c\xc1\xc1\xb1\ +\xab\x7b\xe6\x59\xaf\xe8\x4a\x93\x31\xe0\x6b\xfe\xfe\xbb\xaa\xfa\ +\xff\xde\xa3\x04\x11\x81\x4b\x08\xd1\xaa\xcc\x51\xd2\x4b\xfc\xbf\ +\x38\x38\x9b\x30\x2b\xd7\x75\xd7\x7d\x9a\x9e\x7e\xee\xff\xf1\x45\ +\x84\x60\x28\xf4\xc3\x3b\xfa\x3b\xf6\x44\x32\x49\x4b\x5a\x5a\x76\ +\xcc\x03\x6c\xdb\x16\x81\x0c\xec\x5f\xd5\x2a\x2c\x4b\x28\xd9\x91\ +\x5b\x5a\xa2\x19\x90\x48\x10\xaf\x0c\xc0\x8c\xcd\x3f\x2b\x98\xc5\ +\x00\x76\x0e\x6a\x59\x91\x1b\x00\x7f\x73\xc5\x80\x68\x53\x4d\x12\ +\x01\x22\x71\xc0\x4c\x60\x14\x03\x84\xb5\x00\x60\x09\x1d\xd6\x10\ +\x15\x62\xf9\x52\xe2\xfa\xd8\x28\x3a\xf7\xef\x31\xfb\xec\x8b\x4f\ +\xc0\xdd\xb8\xab\xd1\xc3\xbb\x03\x08\xfc\x00\xdb\x37\x12\x66\xbc\ +\x65\xb0\xe3\x49\xf4\x79\xf3\x1d\x98\x03\x0d\x7a\x32\x39\x88\x95\ +\xfe\x63\xf4\x8d\xfc\xc4\xb1\x4e\x07\x5d\x47\xf2\x26\x64\xba\xeb\ +\xe2\x9d\xb8\x22\xc0\xd4\x83\x21\x2c\xad\x4d\xa1\x67\xf8\x3b\xf2\ +\xa7\x56\x23\x10\x2e\xda\xdb\x3b\x4c\x03\x33\x05\x2d\x7a\x89\x4f\ +\xef\x0f\x61\xb9\x7c\x81\xde\x2b\xdf\x30\x76\x6e\x0d\xbc\xaf\x0e\ +\x0e\x9f\xb8\x65\xba\xce\x3b\x11\xe1\x1f\xc0\xa3\x89\x0b\x58\x11\ +\xbe\xc6\xf1\xcb\x5f\x30\x7a\xd6\xc1\xc7\x39\x35\x7a\xef\x6d\xa4\ +\xd3\xe9\x66\x80\xa9\x18\xb0\xb5\xed\x47\x57\xfa\xf7\x33\x74\x5f\ +\x9c\xc1\x78\x7f\x1b\x3e\xcc\xb9\x38\xd4\x73\x03\xa9\x54\x0a\xa6\ +\x4a\xa5\x12\xa4\x94\xa8\xd7\xeb\x0c\x6d\x00\x90\x7a\x94\xee\x7d\ +\xad\xc3\xf7\xee\x8c\xf8\x9b\x37\xad\xa5\x97\xe3\xdb\x28\x7f\x7e\ +\x2f\x55\xab\x55\x0a\x82\x80\xc2\x30\x24\x15\xa0\x46\xa3\x41\x85\ +\x42\x41\x7b\xad\x56\xa3\x5c\xee\xcc\x4d\x00\x36\x83\xb3\x1d\x1b\ +\xf0\x7e\xf7\xae\x9d\xe1\xbb\xb7\xaf\x28\x3f\x78\x80\x2a\x95\x0a\ +\xa9\x4e\x0b\x00\x5c\x0c\xe0\x70\xdf\xe9\x93\x13\x3c\xbd\xb9\x87\ +\x55\x42\x88\xd9\x2d\xeb\x53\x9f\xaf\x5e\x3a\xd8\xdc\xd9\x74\xd7\ +\xf2\x3c\x4f\x66\x8f\x66\xaf\x01\x48\x72\x98\x25\xf8\x95\xc9\x64\ +\x9c\x62\xb1\x98\x2b\x97\xcb\x93\x00\x42\x25\x11\x09\xec\x46\xd1\ +\xd9\x1b\x95\x91\x88\xea\x2f\xfb\x5c\xf8\xbd\xf0\xc1\x4d\x21\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\x7e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x0b\x07\ +\x14\x37\x38\x36\x5c\x8f\x47\x00\x00\x00\xfe\x49\x44\x41\x54\x38\ +\xcb\xad\x93\x51\x4a\xc4\x30\x10\x86\xbf\x69\x4b\xa1\xb1\x31\x6c\ +\x60\xdf\xc5\x3b\x08\x9e\x60\x2f\xe0\x3d\x3c\x84\xf7\xf1\x49\x10\ +\xdc\xd3\x78\x82\x2c\xa5\x6b\xc4\xda\x38\x3e\xd8\x2e\x2b\x75\xa1\ +\xd8\x9d\xa7\xf0\x27\xff\x3f\x33\xff\x4c\x60\x61\x08\x80\xf7\xbe\ +\x0c\x21\x6c\x80\x7a\x26\x6f\xef\xbd\xdf\x86\x10\xba\x02\x20\x84\ +\xb0\x69\xdb\xf6\xde\x18\x23\xe3\x0b\xd5\x2f\xf2\xbc\xe8\x00\x52\ +\xea\x4b\x91\xec\xc0\x8e\x31\xaa\xb5\x56\x80\xa7\x62\xc0\x6a\x63\ +\x8c\x34\x4d\xf3\x7e\x22\xe3\x2f\xdc\x39\x57\x01\x17\x00\xd9\x52\ +\x0f\x16\x0b\x14\xc7\x3d\xaf\x2e\x57\x9d\xea\x8f\xb1\x22\xe8\x78\ +\xee\x3f\x8f\x5c\x17\x54\xb5\xaf\x26\x02\x79\x5e\x74\xb7\x22\x77\ +\x0e\x18\x6f\x6b\x60\x0d\x58\xc0\x8c\x06\x02\x0f\xaa\xcf\x13\x01\ +\x80\xbf\xc8\x37\xc0\x35\x70\x35\xe0\xaf\xa7\x5a\x48\xa9\x2f\x5f\ +\x7a\x7d\x1c\xcb\x06\xe8\x3e\x00\x1d\xca\x06\x41\xc1\x0b\x9a\x52\ +\xef\x26\x02\x22\x19\xbb\x66\x57\xce\x31\xce\x55\xee\x7c\x53\x38\ +\xdb\x18\xf7\x31\x46\x1d\x36\x6c\xd6\x2a\x03\x6f\x07\x01\xef\xfd\ +\xd6\x5a\xcb\x3f\x3e\x13\x8b\xe3\x1b\x49\xba\x63\x61\xc3\x6c\x62\ +\xd8\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xa0\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\ +\x03\x76\x01\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1d\x0d\x11\x0d\x81\xdc\x28\x8a\x00\x00\x02\x2d\x49\x44\ +\x41\x54\x78\xda\x8d\x92\x4b\x6b\x53\x41\x18\x86\xdf\x99\x73\x89\ +\x39\x27\x27\xd5\xa8\xb9\x94\x6e\x52\x53\xdb\x8d\xd5\x58\xaa\xe2\ +\x05\x74\x97\x85\x05\x05\x0b\xd5\xba\xf0\x07\x08\xf5\x27\x88\x22\ +\x88\x1b\x11\x14\x5d\x58\x14\x29\x2d\xd9\x88\x6e\x04\xc1\x85\x8b\ +\xea\xca\x85\x0b\x15\x5d\x18\xa4\x55\xc4\xa0\x6d\x9a\x73\x92\x9c\ +\xcb\x5c\x9c\xb4\xb8\x90\xc6\x98\x81\x6f\xf3\xcd\xfb\x3d\xcc\xf3\ +\x31\xe8\x76\x0a\x93\x0f\xae\xe5\x4f\xdd\xb9\xd2\x2d\xa3\xfd\xeb\ +\x62\x68\x6a\xae\x94\xb4\xc8\x3d\x03\xfe\x31\x23\x7b\xe8\x75\xbd\ +\xf2\xb2\xd2\x29\x47\x3b\x35\x77\x9f\x9d\xcf\x10\xc9\x1f\x4e\x9d\ +\x1c\x21\xe7\x4e\x8f\x51\xc9\xfd\x47\x99\xc3\x33\x3b\x7b\x02\x0c\ +\x4f\x97\x89\x54\xc3\x63\x23\x4e\x26\x69\x6b\xd8\x9a\x8c\xe1\xc8\ +\xf8\xae\x9c\x60\xfe\x6c\x6a\xdf\xf9\xff\x03\x84\x60\x97\xb6\xd9\ +\x28\x8d\x0e\xa7\xe0\xae\x35\x50\x57\x55\x1c\x1d\x44\x36\xdd\x37\ +\x01\xc1\x2f\x76\xdd\x81\xf2\x2e\x12\x19\x2e\x1c\x2f\xa6\x74\x53\ +\xd7\xc0\xb9\x40\xc4\x04\xc2\x90\x23\x97\xdd\x8e\x0f\xef\x3f\x9e\ +\xd0\xfb\x06\x9f\x06\x3f\x3f\x55\x37\xbd\x20\x3f\x71\xd3\x09\x6a\ +\xcb\xe5\x42\x86\xc5\x62\xa6\x8e\x20\x94\xaa\x80\xb0\x5d\x11\x60\ +\x98\x71\x8c\x1f\xd8\x1f\x57\x7a\xf3\x89\x42\x69\xcb\x26\x40\x58\ +\xff\x76\x37\x41\x6b\x43\x03\xb9\x14\x42\x06\x30\x41\xc1\xa5\x86\ +\x48\x68\xa8\xb9\x0c\x5f\x96\x6b\xf8\xb5\x26\x11\xb3\x9c\x3d\x52\ +\xb0\xeb\x7f\x29\xe4\x8e\xce\x4c\x46\xee\x8f\xab\xb9\xfe\x7e\x10\ +\x3d\xa1\x00\x3a\x82\x88\xa2\x19\x00\x6e\x83\xa3\xe5\x0b\x04\x4a\ +\x83\x0b\x01\x10\x0d\xab\xd5\xa5\x83\x9a\x33\xf0\x8a\xd7\x97\x2a\ +\x3a\x00\xf0\xc0\xcb\x47\xad\x55\xbc\x5b\x7c\x82\xb7\xad\x15\xc8\ +\xd0\xc3\x85\xcb\x8f\x11\x33\x4d\x10\xda\xd6\x88\xf0\xac\x7c\x1b\ +\x02\x1a\x04\x67\x90\x82\x13\x02\x79\x06\xc0\x8b\x75\x80\x16\x4b\ +\xdc\x30\x9c\xec\x7d\x6a\x58\x54\xb3\xd3\xa4\xf1\xf5\x4d\x35\x61\ +\x5b\xb0\xac\x38\x28\x25\x68\xb5\x02\x44\x81\xaf\x60\x46\x52\x40\ +\x48\x48\x00\x20\x4d\x00\x58\x07\x7c\x5f\xbc\x05\x00\x2b\x7f\xbc\ +\xac\xec\x5e\xa8\x4d\xc2\x49\xd8\x30\x0c\x5d\x41\x3c\xa8\x69\x78\ +\x9f\x9f\xbb\x3d\xfd\x44\xdd\xc9\x6e\x2c\x48\xa3\x1b\x1a\xa4\x9d\ +\xd4\xd1\x31\xdb\xb1\x69\xa7\xe1\x79\x4d\x50\x4a\x51\xd7\x1a\x70\ +\xbd\x46\xdb\xbb\x77\x00\x35\x6d\x77\x61\x6e\xd6\x11\x2c\x80\x8c\ +\x7c\xf0\xa8\x05\xc1\x23\xb7\x67\x80\x0a\xef\x90\x2c\x34\x85\x1a\ +\x64\xcc\x87\x50\x10\x48\x11\x76\xca\xfe\x06\x81\x37\xee\xc0\xcc\ +\x8e\x0a\x9c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xc7\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\ +\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd7\x0c\ +\x1e\x0e\x08\x39\x2b\x9b\x64\x90\x00\x00\x01\x5c\x50\x4c\x54\x45\ +\x00\x00\x00\x05\x11\x23\x05\x13\x27\x6b\x86\xae\xff\xff\xff\x07\ +\x1c\x3a\x07\x19\x34\x01\x05\x0b\x02\x09\x12\x0c\x26\x4b\x0d\x28\ +\x4e\x07\x18\x32\x06\x14\x29\x1c\x2e\x38\x44\x6d\xaa\x38\x65\x72\ +\x09\x1d\x3c\x08\x1b\x37\x40\x6a\xa8\x0b\x1f\x3b\x0f\x25\x41\x26\ +\x55\x9a\x26\x55\x9b\x0c\x1c\x2e\x0f\x1e\x2c\x23\x52\x99\x23\x54\ +\x9d\x23\x55\x9e\x25\x53\x99\x25\x58\xa5\x25\x58\xa5\x10\x27\x46\ +\x12\x27\x42\x5c\x7c\xab\x37\x59\x8c\x1f\x33\x44\x23\x38\x47\x23\ +\x3e\x60\x26\x3f\x5e\x35\x57\x6d\x36\x57\x6d\x1e\x36\x59\x22\x44\ +\x70\x27\x48\x73\x3a\x5e\x8f\x3c\x5f\x8f\x38\x67\x85\x38\x68\x85\ +\x70\x94\xbe\x74\x98\xc1\x38\x4d\x6a\x63\x83\xae\x63\x83\xb0\x42\ +\x60\x84\x45\x63\x86\x29\x44\x6b\x1e\x39\x62\x36\x57\x88\x3a\x57\ +\x7d\x3c\x5e\x8e\x3d\x5f\x8f\x42\x62\x8f\x43\x6c\xa2\x44\x62\x8a\ +\x48\x6f\xa4\x4d\x6d\x95\x4e\x6d\x96\x4e\x73\xa9\x4f\x6b\x8c\x4f\ +\x70\x9b\x4f\x71\x9c\x4f\x74\xaa\x50\x71\xa0\x52\x6b\x8d\x52\x6d\ +\x8e\x53\x6e\x8f\x54\x70\x91\x54\x74\x9d\x54\x74\x9e\x56\x72\x95\ +\x56\x73\x95\x57\x75\x98\x57\x78\xa2\x58\x77\xa4\x59\x74\x97\x59\ +\x78\x9b\x5a\x80\xb7\x5b\x80\xb7\x5c\x7d\xac\x5d\x83\xb8\x5d\x83\ +\xb9\x5e\x77\x97\x61\x7d\x9c\x61\x7e\x9d\x61\x81\xaf\x61\x87\xbd\ +\x62\x7e\x9d\x63\x84\xb3\x64\x8a\xbc\x65\x86\xb4\x67\x8b\xb3\x6b\ +\x8f\xb7\x6b\x91\xc2\x6c\x8a\xab\x6c\x90\xc6\x6c\x91\xc6\x6e\x8c\ +\xab\x75\x99\xce\x79\x9d\xd2\x7a\x9e\xd2\x7f\xa6\xd5\x81\xa8\xd7\ +\x88\xab\xde\x92\xb5\xe7\x93\xb5\xe7\xff\xff\xff\x3e\x97\x17\x96\ +\x00\x00\x00\x39\x74\x52\x4e\x53\x00\x00\x00\x01\x01\x05\x07\x11\ +\x11\x12\x18\x24\x28\x32\x32\x33\x40\x49\x4c\x4f\x4f\x4f\x4f\x61\ +\x64\x7f\x7f\x7f\x7f\x7f\x80\x85\x8e\x91\x96\xaa\xab\xc9\xce\xe1\ +\xe1\xe2\xe7\xe7\xe7\xe7\xe8\xe8\xe8\xe8\xe9\xf0\xf2\xf3\xf4\xfc\ +\xfe\x9e\x1c\x96\x45\x00\x00\x00\x01\x62\x4b\x47\x44\x73\x41\x09\ +\x3d\xce\x00\x00\x00\xac\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x02\ +\x66\x13\x37\x37\x57\x57\x63\x16\x06\x30\x10\x92\x94\x96\xb3\x8b\ +\x49\x88\x8d\x71\x90\x95\x92\xe1\x03\x0a\x28\xb9\x78\xfb\x04\x04\ +\x86\x86\x06\xfa\xfb\x78\x45\x2b\x02\x05\x38\x35\xad\xec\x1d\x7d\ +\x83\x82\xfc\x9c\x42\x3c\x8d\xb8\x40\x7a\x04\xcc\x6d\x3d\x22\x12\ +\x93\xe3\x82\x2d\x2d\x04\x21\xa6\xc8\x5b\x3b\x87\xc5\xc7\x87\xbb\ +\xdb\x28\x40\xf8\x0c\xac\xaa\x91\x19\xd9\xd9\x99\x51\x6a\x6c\x50\ +\x01\x06\x6e\xd3\x9c\x82\x82\x5c\x33\x1e\x06\x38\x10\x4f\x29\x2c\ +\x4a\x95\x40\xf0\x19\x98\x94\xf3\xf2\x55\x18\x91\x04\x18\x38\xd4\ +\x35\xd8\x19\x50\x00\x3f\x2f\x2a\x5f\xd4\xc0\x50\x0c\x45\x40\x27\ +\x2b\x5d\x17\x45\x40\x2b\x29\x4d\x1b\x45\x40\x44\x4f\x5f\x18\xc2\ +\x02\x00\xaf\x8a\x1d\x01\xbf\x6e\x3e\x2d\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x6c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x02\x61\x00\x00\x02\x61\x01\ +\xc1\x30\x55\xfa\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x07\ +\x13\x10\x39\xae\xa1\x50\xf0\x00\x00\x02\xec\x49\x44\x41\x54\x38\ +\xcb\xed\x94\xcd\x6b\x9c\x55\x14\xc6\x7f\xe7\xdc\xf7\x9d\x37\x33\ +\x66\xcc\xa8\xd1\x18\x75\x65\x2b\x84\x46\x05\x89\xd9\x04\x52\x41\ +\x5d\x28\x28\x16\xa1\x6e\xfc\x0b\x04\xb1\xff\x41\x41\x5c\x08\x6e\ +\x15\x5c\x29\xae\x2c\x98\x85\x50\xa9\x1f\x45\x17\x4d\x71\x8a\x0a\ +\x66\x11\xa3\x48\xd5\x12\x93\x36\x69\xda\x98\x64\xd2\x99\x4c\xe6\ +\x7e\x1c\x17\x33\x09\xe9\x54\xc1\xb5\xf4\x5c\x0e\xcf\x85\x7b\x78\ +\xee\xf9\x78\xee\x85\xdb\x76\xdb\xfe\x57\x66\xc2\x73\xef\x16\xff\ +\x25\x72\xfd\xcc\xdd\x63\xd7\xbe\xb8\xeb\xc3\xb5\xcf\xaa\xc7\xff\ +\x2d\x46\x00\x26\x26\x26\xb4\x28\x8a\xea\x42\xe5\x99\xd1\xfc\xa1\ +\x27\xfd\xab\x93\x43\x57\xe7\x16\x6f\x64\xb3\xef\xbc\xb0\x69\xf6\ +\x89\xb6\x17\x4e\x8f\x9a\x5f\x1d\x4f\xa1\x33\x4e\xec\xbc\x94\x7c\ +\xfb\xa8\x85\x96\x44\xbf\x7d\x3d\xc6\xc6\xd8\xbd\xcf\x37\xd7\x6f\ +\x21\xbe\xf2\xd5\xe3\x1f\x95\xca\x83\xc7\xda\xbe\xa2\xad\x58\x95\ +\xda\xf0\xe0\x40\xb9\x32\x94\xe5\x99\xc7\x29\x66\x08\x82\x89\x89\ +\x80\x19\x04\x4f\x0a\xbb\x24\xbf\x43\x6c\x5e\x26\xb6\x56\x66\x6a\ +\xcf\xfe\xf9\x4a\x3f\xb1\x9e\x9f\xe7\x9b\xb2\xdb\x18\x1a\xae\x6e\ +\x55\x47\xee\x2f\x0f\xd6\xee\x24\x2b\xdc\x1a\x9a\x1a\x58\xdc\x10\ +\xc2\x96\x58\xdc\x04\xbf\x85\xa4\x6d\x60\x13\xfc\x15\xac\xf5\x13\ +\x12\xd6\x50\xe5\xf8\xe6\xd9\x07\x8f\xdd\x92\xf1\xd4\xd4\x54\x36\ +\x73\x72\x7d\x79\xb8\x26\x23\x32\xe0\x10\x49\x18\x86\x25\xd8\x4b\ +\xf2\x20\x22\x60\xd1\xb0\x98\x48\xc1\xb0\x60\xa4\x18\x56\x90\xec\ +\x48\xf5\xa9\xdf\x37\xf7\x33\xae\xd7\xeb\xe1\xe7\x45\x77\x26\x91\ +\x70\xb9\xa0\x99\xa2\xb9\xa0\x39\x68\xd6\x8f\xbd\xb3\x92\xa0\x25\ +\xc5\xed\x79\x96\x8f\x2a\xf6\xc1\x4d\xad\x00\xf8\x7a\xae\x78\x7b\ +\x77\x37\x7a\x0c\xc4\x29\xea\x14\xcd\x04\xc9\xfa\x51\xba\x67\xb9\ +\xa0\x05\x68\xa1\x68\xee\x70\xb9\x43\x73\xf7\x72\x73\xf6\xd0\x89\ +\x9b\x54\x01\x30\x77\xea\xf0\xfc\x91\x31\xf7\x68\x36\x90\x21\x4e\ +\x30\x4b\x60\xbd\x88\xd4\x4b\x21\x75\x2f\x46\x0d\x48\x98\x19\xd6\ +\x11\x52\x07\xcc\x1b\x29\xa4\x5d\x8b\x36\x5d\x99\xbe\xf8\x83\xee\ +\x11\x7f\xf7\x4b\xe9\xfd\xce\xf6\x0e\xbe\xdd\x21\xec\x7a\x62\x27\ +\x92\x42\xea\x62\x4c\x24\x9f\x48\x31\x61\x31\x61\xa9\xdb\x70\x71\ +\x82\xe4\xa0\xb9\xa2\xb9\xe2\x32\x57\x38\xa7\x33\x3b\xb3\x87\x86\ +\xdc\x1e\xf1\x5f\xfe\x91\xb9\xa7\x1f\x6b\xbc\x5e\x56\x5f\x8e\x9d\ +\x44\x0a\x09\x0b\x86\x25\xeb\x0e\x2b\x81\x60\xbd\xb7\x64\xfb\xe5\ +\x8a\x28\x82\x22\x08\x22\x0a\x68\x4d\xb4\x18\xdf\x27\x5e\x5a\x5a\ +\x4a\x47\x27\xef\x9b\x78\x78\xa4\x3d\x8e\x01\xc9\x30\xeb\x95\x6b\ +\xfd\xa4\x3d\x99\xa4\x2e\x7d\x77\x39\x44\x1c\xe2\xee\xb9\x20\xe5\ +\x07\xde\xd4\x83\x93\xfc\x76\xe1\x8e\x93\xcd\x36\x21\xc5\x40\x8c\ +\x91\x14\x23\x29\x44\x2c\xec\xed\xd3\x01\xb7\x9e\x27\x62\x2c\x42\ +\xa3\x55\xf9\xed\xdc\xfc\xe8\x5b\xd3\xaf\x75\x5e\xcc\xc6\x3f\x3d\ +\x2f\xfd\xc2\xfe\xfc\xbd\xb1\x1f\x27\x0f\x5f\x7b\x42\xc5\xed\x2b\ +\x44\x54\x10\xe7\xd0\x2c\x23\x52\x8a\x3e\xb8\x66\xdb\x67\xcd\x46\ +\xab\x74\xf9\x8f\x95\xca\xf7\xa7\xce\xf2\xe5\xa5\x65\xbf\x0c\x6c\ +\x00\xd7\xeb\xf5\xfa\x8d\xac\x9f\xf8\xf4\x85\xe1\x37\xca\xd5\xe2\ +\x63\xdf\xdc\xda\xf1\xd1\x6d\xb5\x3a\xf9\x5a\xa3\x95\xad\x6e\x34\ +\xcb\x8b\xbf\x2e\x95\x2e\x2e\x5c\xb2\x25\xe0\x2a\xb0\x0a\x34\xeb\ +\xf5\x73\xf6\x4f\x9f\xd0\xdf\x24\x5a\x81\xc2\x3c\xec\x27\xcc\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xb8\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x08\x19\ +\x09\x22\x00\x87\xbb\x1a\x99\x00\x00\x02\x38\x49\x44\x41\x54\x78\ +\xda\x95\x53\x4d\x8b\x1a\x41\x10\xad\x9e\x19\xbf\x56\x05\x75\x4c\ +\x20\xff\x20\x07\xf1\xa6\x27\x61\x73\x88\xb9\xc7\xdb\xde\x16\x72\ +\x4d\x84\x40\x2e\x82\x97\x3d\x67\x21\x60\xf2\x07\x24\xbf\x40\x88\ +\xd7\x10\x82\x20\x04\x4f\xe2\x55\x02\x12\xf6\xe0\xee\xec\xe8\x8e\ +\xba\x7e\x8c\xd3\x79\xd5\x33\xa3\xc9\x42\x0e\x69\x2c\xbb\x6b\xba\ +\xde\xab\xd7\xd5\xd5\xa2\xdb\xed\x9e\x99\xa6\xf9\x31\x95\x4a\x99\ +\x84\xa1\x69\x1a\x09\x21\x94\x85\x43\x4a\x19\xce\xca\x3c\xcf\xa3\ +\xf5\x7a\x6d\x4d\xa7\xd3\x37\xa2\xdf\xef\xdf\x74\x3a\x1d\xd3\xb2\ +\x2c\x4a\x24\x12\x14\x8b\xc5\x28\x1a\x8d\x52\x24\x12\x21\x5d\xd7\ +\x19\xa7\x00\xae\xeb\xd2\x6e\xb7\xa3\xcd\x66\xc3\x60\xca\x66\xb3\ +\x54\xab\xd5\x2c\x23\x99\x4c\x9a\xe3\xf1\x98\x5e\x5e\x7c\x26\x8f\ +\xb3\xb0\x09\x80\x44\xb0\xd6\x7c\x25\x7b\x36\x64\x77\x11\xf4\x6b\ +\xe5\xd1\xcf\xcb\x57\xc4\x58\x23\xcc\xb0\xb8\xc7\x0e\x83\x02\x23\ +\x65\xf8\xd3\x78\xf6\x6d\x01\x96\x2b\xc4\xed\x24\xc8\xf6\x70\x30\ +\x40\xe0\x3b\x77\x60\x0d\x81\x6a\xe6\xcc\x42\x2a\x12\xec\xd0\xf5\ +\x46\x92\x03\x8c\xa6\x0b\xd2\x61\x07\x82\xb0\x28\x77\x4b\x84\x69\ +\x12\x60\x11\x66\x54\x24\x2b\x57\xd2\x0d\xc0\x9e\x60\x20\x91\x6e\ +\x08\x45\x02\xdc\x91\x20\x1e\x8f\x93\xbd\x74\x8f\x92\x49\xa8\x1a\ +\xd8\x1b\x8f\xee\x0f\x59\x43\x02\x0d\xbe\xe4\x5b\x3a\x12\xd8\xb6\ +\x4d\x31\xc7\x63\xb0\x22\x59\xef\x21\x77\x2b\xe1\x73\x36\xf2\xc1\ +\x46\xb0\x76\x99\x84\x68\xb5\x5a\x29\x15\x58\x92\xba\x9e\x19\x2a\ +\xe4\x11\x36\x50\x21\xfc\x14\x48\x53\x40\x5e\x23\xab\x2b\x03\x15\ +\x1e\xbe\x29\xcc\xb1\x88\x7c\xc7\x36\x6a\xb0\x06\xd2\x6f\x26\x98\ +\x11\xc8\x76\x29\x50\x71\x3c\x3f\xbe\x31\xc6\x27\x58\x2e\x97\x56\ +\xb1\x58\x34\xc7\x5f\xcf\xe9\xd1\xc9\x09\x37\x13\xd7\x84\x8d\x9b\ +\x4a\x75\xe6\x76\xbb\x0d\x1b\x88\x4d\xc9\x2f\x14\x0a\x3c\x5b\xa2\ +\xdd\x6e\x9f\xc1\xf9\x84\xce\xca\xd1\x7f\x0c\xc7\x71\x6e\x47\xa3\ +\xd1\x6b\xf1\x8f\x7d\xad\xd5\x6a\x5d\xe6\xf3\xf9\xb7\x2c\x75\x32\ +\x99\x7c\x68\x36\x9b\xef\xb8\xe7\x1e\x06\xfe\x45\xd0\x68\x34\x9e\ +\x56\xab\xd5\xf7\x90\x7d\x8a\x23\xa4\xe7\xf3\x39\x4b\xe6\xa3\xf0\ +\xdb\x58\xe0\x6d\x7c\x1f\x0e\x87\x17\xf5\x7a\xfd\x47\x88\x31\xfe\ +\x24\x40\xc6\x67\xe9\x74\xfa\x45\x2e\x97\x8b\xf2\x15\x65\x32\x19\ +\xbe\x6f\x06\x13\xfc\x14\x1e\xdc\x73\x28\xfa\x82\xd0\x03\x81\x78\ +\xa8\x08\xe0\xc7\x95\x4a\xe5\xb4\x54\x2a\x3d\x29\x97\xcb\x19\x64\ +\x17\x83\xc1\x60\xd6\xeb\xf5\xae\xbe\x61\xcc\x66\xb3\x6b\xc4\xc9\ +\x10\xf0\x1b\xf3\x85\x20\x91\x89\x08\x2c\x72\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xf3\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ +\x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ +\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ +\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ +\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x72\x49\x44\x41\x54\ +\x28\xcf\x45\x91\x4f\x2b\x04\x71\x1c\xc6\xbf\xf3\x32\xe4\x6c\xde\ +\x80\xa2\x44\x39\xbb\xec\x1f\xb3\x23\x6d\x9b\x25\x8b\x10\xfd\x76\ +\x36\xec\xa2\x31\x89\x13\x0e\x2e\xca\xfb\x98\x4d\x7b\xf0\x12\xb4\ +\x85\x83\x36\x17\x97\xb1\xa2\xe9\x47\xfd\x0e\x63\xb6\x8f\x83\xb5\ +\x9e\xe7\xf6\xf4\xf4\x1c\x9e\x8f\x20\xbf\x3e\xb1\x8f\x83\x20\xf4\ +\x23\x3f\x0a\xc2\xe3\xe0\xc4\xfe\xcb\x05\x41\x7c\xeb\x50\xd5\x4d\ +\x95\x1a\x3e\x3e\x35\xaa\xd4\xcd\xa1\xf2\xad\x7e\xa1\x61\xd5\x9b\ +\xdb\xec\xd2\xa2\xcd\x13\x1d\x1e\x68\xb1\xc3\x36\xf5\x66\xc3\x42\ +\x04\xf1\xd4\x06\x17\xdc\xf3\x4a\xcc\x27\x5f\x68\xde\x78\xe6\x9c\ +\x0d\x3c\x85\x88\xb2\x37\x8d\xc7\x23\x1f\x18\xbe\xe9\xd1\x23\x25\ +\x41\xf3\x42\x8d\x4d\xa3\x6c\x59\x0f\x16\xb9\xe5\x1d\xc3\x15\x67\ +\x1c\xa0\xd8\x42\x91\xa2\x69\xb3\xc8\xfa\x91\x54\xc2\x15\xee\xd0\ +\xa4\x5c\xd2\xa0\x82\x4b\x8e\x59\x20\xa1\xcb\x1a\x95\x50\xca\x91\ +\x47\x9b\x98\x94\x3d\x96\xc9\x31\xc5\x38\xd3\x40\x4a\xcc\x3e\xe5\ +\x48\x4a\x51\x95\x47\x34\x3d\xb2\x8c\x32\x84\x30\xc4\x28\xd0\x43\ +\x73\x40\x29\x92\x62\x58\xee\x2f\xb8\x4c\x30\xc2\x30\x23\x4c\xf4\ +\x17\x96\x29\x86\x52\x0c\x1c\x6e\xe8\x92\xb0\xc4\x0c\x93\x8c\x31\ +\xc9\x0c\x90\xd0\xc1\xa1\x78\x24\xf3\x76\xc1\xac\xf2\x8c\x26\xe5\ +\x5f\x29\x1a\x8f\x82\x99\xb7\x05\x71\x55\x96\x53\x5e\xd0\x24\xa4\ +\x83\x1f\xae\xc9\xe2\x2a\x44\x90\x39\xcb\x6d\x66\x58\xa3\x4d\x97\ +\x18\x4d\x4c\x87\x2a\x19\xdc\xe6\x9c\xd5\x87\xe5\x5a\x8e\xca\x9b\ +\x0c\x25\x76\xd8\x63\x81\x0c\x79\xe3\x28\xd7\x1a\xd0\x44\x90\x82\ +\xed\x04\xf9\x30\x17\xe5\xa2\x7c\xe8\x04\x85\x01\xee\x1f\x8d\x42\ +\x66\xb3\xf5\x8b\xfe\x99\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x01\xf5\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ +\x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ +\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ +\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ +\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x74\x49\x44\x41\x54\ +\x18\x19\x05\xc1\x41\x4b\x53\x01\x1c\x00\xf0\xff\x3b\xf5\x11\xea\ +\xda\xa1\x7d\x84\x2e\x5d\x3c\x46\x17\x75\x6d\xb3\x18\x96\x42\x9a\ +\xa8\x20\x6f\x13\x6b\x96\xcc\x87\xe8\xcd\xba\x74\xea\x63\x04\x6f\ +\x84\x41\x5f\xa0\xa8\x41\x79\x08\xf1\xe2\x65\x19\xc5\x7a\x06\xef\ +\x30\xde\xf8\xf5\xfb\x85\x10\x42\x1c\xd6\x0e\xb2\x2c\xef\x8f\xfa\ +\xa3\x2c\x3f\xc8\x0e\x6b\x42\x08\x11\x42\xf4\x93\xbd\xb4\x57\x76\ +\x6c\xeb\xeb\xdb\xd6\xd1\x2b\xf7\xd2\x7e\x22\x44\x88\xdd\xa4\x37\ +\xd8\xf2\xcc\x89\xa1\x1f\xce\x7c\x77\x62\xc7\x96\xde\x60\x37\x11\ +\x21\xba\xe9\x86\x57\xbe\xf9\x69\xec\xca\x3f\x85\x5f\xce\x1d\xdb\ +\xd0\x4d\x45\xa4\xb5\xcd\xb2\xeb\xd4\x1f\xa5\x77\xae\x4c\x55\x26\ +\x0a\x17\xb6\x6d\x96\x69\x2d\xd6\xb3\x65\x1f\xfd\x56\x9a\x3a\x76\ +\xe4\x2b\xa8\x14\x86\x96\xad\xef\xc7\x4a\xbe\xea\x8b\x42\x85\x3d\ +\xab\x1e\x78\xed\x0a\x13\x97\xd6\xac\xe4\xb1\x34\xea\x1a\x1a\xab\ +\xb0\x6a\xde\x8c\x19\x8f\x7c\x56\x19\x7b\x61\x69\x14\x8b\xa3\x8e\ +\x53\x85\x29\x6e\xbb\xee\x9a\x5b\xee\xfb\x64\xaa\xf0\xd2\xe2\x28\ +\xda\xf9\x92\xa1\xb1\x0a\x77\xdc\x74\x43\xc7\x5f\x54\xc6\x9e\x68\ +\xe7\xd1\xce\x1a\xde\xbb\x34\xc1\x3d\x77\x7d\x00\x4c\x9c\x69\x68\ +\xef\xc7\xc3\x5a\xb3\x7c\xea\x5c\xa1\xf2\x46\x01\xa8\x14\xba\x9a\ +\xe5\xc3\x5a\x88\x56\x3a\xe7\xc8\x85\xc2\x44\x65\xaa\x32\x51\x78\ +\x6b\x4e\x2b\x15\x21\x16\x92\xd6\x60\xd6\x9a\xa1\x4b\x63\x85\xb1\ +\x33\x1d\xb3\x5a\x83\x85\x44\x84\x10\xad\xa4\x91\xd6\xcb\x59\x8b\ +\x76\x3c\xf7\xd8\xac\x7a\xd9\x48\x5b\x89\x10\x21\x84\x10\xcd\x5a\ +\x23\xab\xe7\xf3\xa3\xf9\x51\x3d\x6f\x64\xcd\x9a\x10\x42\xfc\x07\ +\x7b\x2d\x6e\x9f\x2f\x2d\x37\x8c\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x01\xfa\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ +\x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ +\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ +\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ +\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x79\x49\x44\x41\x54\ +\x18\x19\x05\xc1\x41\x4b\x53\x01\x1c\x00\xf0\xff\x3b\xf5\x11\x0a\ +\x3c\x75\x68\x1f\xc1\x4b\x5f\x20\x82\x52\xd7\x36\x19\xc3\x52\x48\ +\x13\x95\xe4\x6d\x62\x4d\x93\xf9\x10\xbb\x55\x74\x0a\x22\xfa\x16\ +\x1b\x65\xd0\x17\x08\x62\x50\x1e\x42\xbc\x78\x79\x19\xd5\x7a\x09\ +\x3b\xac\x8d\x5f\xbf\x5f\x08\x21\xc4\x61\xe9\x20\xcb\xba\x9d\xbc\ +\x93\x67\xdd\x83\xec\xb0\x24\x84\x10\x21\x44\x27\xd9\x4b\xdb\xc3\ +\xa6\x2d\x1d\x1d\x5b\x9a\xda\xc3\xbd\xb4\x93\x08\x11\x62\x27\x69\ +\xf7\x36\x3d\x72\xa4\xef\x9b\x13\x5f\x1d\xd9\xb6\xa9\xdd\xdb\x49\ +\x44\x88\x56\xba\xee\xb9\x2f\xbe\x1b\xf8\xeb\x42\xe1\x87\x53\xcf\ +\xac\x6b\xa5\x22\xd2\xd2\xc6\xb0\xe5\xd8\x7b\xbf\xfc\x33\x31\x31\ +\x36\x52\x38\xb3\x65\x63\x98\x96\x62\x2d\x5b\xf2\xd1\x4f\x6f\xbd\ +\x72\x0c\xd8\x54\x57\xe8\x5b\xb2\xb6\x1f\xcb\xdd\x15\x9f\x15\x5e\ +\xda\xf5\xd0\x1b\x17\x58\x31\x6d\xe4\xdc\xaa\xe5\x6e\x2c\xe6\x2d\ +\x7d\x03\x75\x15\xb7\xd5\x35\xf5\xcd\x9b\x32\x36\xb0\x6b\x31\x8f\ +\x85\xbc\xe9\x58\x61\xda\x65\x97\x5c\x73\xc7\x27\xb7\x84\x89\xc2\ +\x13\x0b\x79\x34\xba\x8b\xfa\x06\xae\xbb\xea\x8a\xa6\x3f\x28\x9b\ +\x32\x36\x70\x5f\xa3\x1b\x8d\xac\xe2\x9d\x73\x37\xdd\xf0\x01\x70\ +\xd7\xb4\x91\x13\x15\x8d\xfd\xa8\x97\xaa\xc3\x07\x4e\xbd\xf0\x1b\ +\x00\x63\x85\x96\xea\xb0\x5e\x0a\x51\x4b\x67\x3d\x75\xa6\x30\x32\ +\x36\x31\x36\x52\x78\x6d\x56\x2d\x15\x21\xe6\x93\x5a\x6f\xc6\xaa\ +\xbe\x73\x03\x85\x81\x13\x4d\x33\x6a\xbd\xf9\x44\x84\x10\xb5\xa4\ +\x92\x96\x87\x33\x16\x6c\x7b\xec\x9e\x19\xe5\x61\x25\xad\x25\x42\ +\x84\x10\x42\x54\x4b\x95\xac\xdc\x9d\xcb\xe7\xf2\x72\xb7\x92\x55\ +\x4b\x42\x08\xf1\x1f\x89\xdc\x66\xb7\x16\x84\x77\xf6\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x0f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x8c\x49\x44\ +\x41\x54\x78\xda\xa5\x93\x3f\x4b\x9b\x51\x14\x87\x7f\xe7\xfe\x79\ +\x93\x5c\xd3\x94\x1a\xad\x28\x2e\x9a\x21\x38\x04\x6a\xa1\x85\x40\ +\x1d\x05\xc9\xa4\x11\xa1\x54\x27\x33\xb4\x73\xa5\x73\xe9\x26\x01\ +\xc1\xc5\x45\x17\xe9\xd2\x51\xfc\x16\x0e\xfd\x02\x8d\x58\x11\x41\ +\x13\x93\x9a\x28\xc6\x44\xdf\x7b\xdf\xa3\x59\x2d\x89\xd1\x3c\x70\ +\xa6\x03\x0f\x9c\xdf\x39\x87\x98\x19\xbd\x20\xf0\x00\x9a\xa5\x4c\ +\x64\x3e\xb2\xf4\x6c\x01\x18\x4b\x2b\x8b\x2b\x3f\x63\x1f\x63\x5b\ +\xf4\x83\xe8\xc9\x82\x16\x66\xc0\x50\x6e\x21\xb7\x3c\x7c\x38\xfc\ +\x9b\xa6\xa9\xff\x69\x82\x08\x50\xbc\x2c\xc2\x85\x9d\xc8\xce\x66\ +\xdf\x24\x92\x89\x3f\x94\xa1\x49\xb4\x41\xe1\x21\x7d\x40\xb1\x5e\ +\x04\xa8\xd5\x54\x22\xfd\x21\x1d\x37\x2f\xcc\x1e\xcd\xd1\x67\xde\ +\xe1\xed\x47\x05\xc2\x48\x59\xb2\x25\x04\x41\xd0\x12\x40\x5b\x4d\ +\xa3\xe3\xa3\x9e\x0e\xe9\x2d\xef\x93\x97\xf6\x93\xfe\x17\xfe\xce\ +\xdc\x5e\x10\x16\xb2\x42\x15\xf8\xe4\x43\x3b\x0d\xe5\x2b\xc8\x86\ +\x84\x8e\x68\x95\x1a\x4b\xe5\x0a\xc7\xfb\x6f\x89\xe8\x3d\xdf\xd3\ +\x56\x50\xa0\x02\x6c\x60\x81\x06\x40\x17\x04\x51\x13\x70\x65\x07\ +\x73\x63\x38\x30\x01\x75\x0c\x51\x7a\x5a\x88\x41\x01\xc4\x01\xbc\ +\x04\x38\xca\x70\x21\x87\x57\x43\xfd\xd6\xc6\x83\x5f\xcd\x91\xe6\ +\x3b\xe6\x4e\x23\x78\x42\x71\x4b\x70\x05\xc0\x02\xba\xae\xd9\x67\ +\xe7\x57\x9b\xb5\xaf\xbc\xee\x36\x1e\x0d\x91\x34\xc9\xfb\x02\x08\ +\x88\x22\xea\xc2\x0d\x73\x55\x69\x54\x67\x78\xed\x76\xaf\xab\x35\ +\x4a\xad\x24\x9f\x5a\xbc\xae\x0f\x59\x7b\x14\x1c\x54\x4e\xce\xa6\ +\x38\xcf\xe5\xae\x0f\x49\x28\x21\xc7\xfe\x25\x70\xfd\xf7\x76\xf7\ +\xbc\x5a\x9e\xe0\x55\x2e\xa3\x03\xff\x7d\xa3\xca\x87\xe6\x40\x34\ +\x68\xbf\x35\x37\xd1\x05\x3d\xbf\xf3\x1d\x7f\x4b\x95\x33\x4b\xa1\ +\xe2\xc5\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x2d\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ +\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1b\x16\x19\x10\x1f\x1b\xdd\x16\x00\x00\x02\xba\x49\x44\ +\x41\x54\x78\xda\x65\xcf\x5b\x68\xd5\x05\x00\xc7\xf1\xcf\xff\x7f\ +\xce\xd9\xce\xce\xae\xe7\x6c\x47\xcb\xe6\x6a\x63\x8b\xda\x1c\x39\ +\x2d\xa4\x07\x83\x12\x82\x2e\xf4\x12\x45\x58\x0f\x16\x12\x4a\xa3\ +\x87\x32\x32\xc9\xb1\x28\xd4\x20\x7c\xeb\xa1\x7c\xac\x48\x09\x04\ +\xe9\xa1\xcb\xc0\x20\x58\x5a\x8b\xf5\x92\x4c\xd2\x1c\x9c\xad\xe9\ +\x6e\xed\x76\xb6\x73\xb6\x73\x0b\x1f\x6d\x9f\x87\xdf\xe3\x17\x7e\ +\x01\x9b\x7d\x44\x43\x82\x7d\x31\x1e\x08\x88\x16\xc9\x14\xb8\xf8\ +\x0e\x13\xfe\xe7\x8e\xc0\x71\x6a\x1b\x18\xa8\x09\xc3\x37\x5a\x77\ +\xef\xae\x4d\xf7\xf4\x08\x63\x31\x8b\xe3\xe3\x32\xc3\xc3\xe5\x6c\ +\x2e\x77\x7e\x9d\xb7\x8f\x91\xd9\x14\x18\x60\x4b\x13\xdf\xb7\x6e\ +\xdf\xde\xd7\xd7\xdf\xaf\xae\xad\xed\x8e\xfa\xc6\xca\x8a\x2b\x67\ +\xce\xb8\x36\x32\x32\xbf\xc6\x33\x47\xf9\x15\x02\x78\x96\xe8\xe3\ +\x5c\x6c\x4b\x26\xf7\x3e\xd4\x7f\x58\xb4\x2e\x2e\x12\x06\x54\x02\ +\x4a\x94\x4b\x14\x4b\x25\x01\xae\x9f\x3d\xeb\xaf\xb1\xb1\xd9\x25\ +\xfa\x8e\xf3\x4f\x08\x8f\xf2\x6a\x92\xbd\xf7\xee\xe9\x93\x0b\xb3\ +\xee\x7a\xe5\x80\x15\x59\x1b\xcb\xd7\x14\x96\xae\x9b\x9f\xbe\x61\ +\xeb\xfe\xfd\xf2\xd5\xd5\x6e\xdf\x4a\x47\x22\xe9\x38\xa7\x10\x84\ +\x88\x24\x38\x9c\x8c\x84\x62\x4d\x79\x85\xe6\xa4\x9a\x6d\xdb\x75\ +\x1d\x3a\x66\xba\xb4\x2e\x33\x37\xae\xe3\xcd\x23\xea\x3b\x3b\xc5\ +\x7b\xbb\x2d\x4d\x4e\x48\xd5\xd7\x4b\xf0\xe2\x7b\x34\x47\x0e\x90\ +\xee\xe0\x93\x74\xbc\x12\xd4\xb7\xcc\xc8\xcf\x8c\xca\xdc\x5a\xd2\ +\xbe\xf7\x69\x5b\x1e\xd9\xa7\x69\xe7\x63\x9a\xbb\xba\x5d\xfd\xe1\ +\x82\xab\x83\x07\x35\x4c\x4f\x29\xce\x2c\xcb\x57\x44\xca\x5c\x0e\ +\xb7\x71\x4f\x35\x41\xf4\xf6\x04\xeb\x5a\x12\x0b\x4a\xbf\x9d\xf4\ +\xdd\xe9\x41\xf1\x86\xa4\x74\x57\x8f\x3f\x7f\xfa\xd1\xe8\xa9\x17\ +\xb4\xb7\xcc\xaa\x6a\xcc\x8a\xd6\x52\x8d\x2a\x5a\xc3\x75\x8a\x55\ +\x08\x4a\x94\x8b\x14\x4b\x2c\x16\x53\x7a\x9f\x7c\x0e\x40\xfb\xce\ +\x87\xc5\x3b\x7a\x55\x1a\xa9\x6a\x26\x52\x43\x0c\x31\x0a\xe1\x39\ +\x26\x42\x56\xd7\x73\xe4\x16\x19\x9f\x4f\xd9\x33\x30\xa4\x75\xc7\ +\x2e\x99\xcb\xe7\x8d\x7e\x75\x54\x6d\x32\xe5\xa9\xd3\x43\x66\x1a\ +\x77\x29\xc4\x29\x14\x08\xb0\xc6\x58\x38\xc9\x5a\x9e\x8b\x1b\x45\ +\xe6\x26\xd9\xfa\xc4\xeb\xb6\x3e\xb8\xcb\xcd\x4b\xe7\xdd\xfa\xfa\ +\x25\xd5\x57\x3f\x76\xed\x9b\x23\x6a\x1a\x53\x76\xbc\x76\xc2\xfc\ +\x3c\x6b\xcb\x94\x99\xfa\x94\xdf\x23\x28\x77\x30\xdd\xc9\xcb\x1b\ +\x79\xe1\xc2\x95\x61\x85\xd5\x29\x93\xe7\xde\x97\x88\x16\x44\xca\ +\xe4\x6e\x5c\x92\x9d\xf8\x5b\xe6\xcb\x13\xb2\x23\x79\x61\x8e\x39\ +\x3e\xfc\x82\x9f\x03\x40\xfc\x33\x06\xdb\x79\x77\x29\xa4\x92\xa4\ +\xe6\x6e\xe2\x29\x62\x75\x04\x01\xb9\x59\xb2\x57\x48\xac\xb2\xc1\ +\xd0\x01\x9e\x5f\x64\x25\x00\x40\xc3\xe7\x1c\xbb\x9f\xb7\x96\x89\ +\xad\x86\x94\xab\x11\x12\x16\x88\x6f\xd0\x84\x65\x2e\x7c\xc0\xa1\ +\x51\xa6\x51\x89\x00\x60\xfd\x5b\x7e\x89\x31\x7c\x1f\xf5\xc9\x8a\ +\x74\x5d\x51\x22\x51\xa0\xae\x64\xb5\xcc\xe5\x3f\x18\x38\xc8\xc9\ +\x9b\xfc\x8b\x0a\x04\x36\x0b\x91\x40\xaa\x9b\x96\x7a\xa2\x23\xcc\ +\x94\x59\x40\x16\x25\x00\xf8\x0f\x80\xa0\xff\x98\xbb\x5a\x5b\x51\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x2f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x0c\ +\x0f\x1f\x23\x16\x66\x68\x50\x00\x00\x02\xaf\x49\x44\x41\x54\x38\ +\xcb\x95\x92\x4d\x6b\x24\x55\x14\x86\x9f\x5b\x1f\x5d\xd5\x5d\xdd\ +\xda\x5d\x55\x19\xa3\x61\x20\xb8\x10\x61\x42\x76\xc9\x2a\x38\x2e\ +\x8c\x3b\x37\xc1\xcd\xfc\x07\x0d\x08\x6e\x02\xd9\x38\x5b\x05\x21\ +\xce\x1f\x88\xff\x20\x30\xd9\x89\x04\x09\x04\x87\x2c\x24\x04\xc4\ +\x91\x86\x18\x8c\x4c\xba\x53\x49\x77\xd7\x47\xdf\xaa\xba\x55\xd7\ +\x45\xe8\xc4\x01\x5d\xf8\xc2\xe1\x2c\x0e\xe7\x39\x87\x97\x57\xec\ +\xef\xef\x3f\x09\x82\xe0\xbb\x76\xbb\x1d\x00\x18\x86\x81\x10\x02\ +\x21\x04\x33\x69\xad\xef\xba\xd6\x9a\xba\xae\x91\x52\x46\x83\xc1\ +\xe0\x73\x71\x74\x74\x74\xb5\xb7\xb7\x17\x44\x51\x44\xb3\xd9\xc4\ +\x71\x1c\x1a\x8d\x06\xb6\x6d\x63\x9a\x26\x00\x75\x5d\xa3\x94\xa2\ +\x2c\x4b\xf2\x3c\x47\x4a\x49\xaf\xd7\x63\x63\x63\x23\xb2\x3c\xcf\ +\x0b\xfa\xfd\x3e\x4f\x1f\x7d\x4a\x10\x86\x77\x57\x51\x35\x14\x0a\ +\x8a\x02\x2a\x05\xe5\xac\x2a\xa2\xf8\x9a\xa7\xa3\x9f\xf1\x3c\x2f\ +\xb0\x66\x17\xe6\x12\x4d\xd0\x2d\xc0\x2b\xc0\x4b\x61\x98\x40\x95\ +\x40\x91\xc1\x34\x87\x44\x42\x52\xc2\xa4\xc2\x18\x8c\xa9\x1e\x56\ +\x00\x58\x00\x55\x55\x21\x8c\x31\xb8\x0a\x3e\x19\x42\x3b\x85\xb3\ +\x09\xfc\x70\x09\x64\xa0\x25\xe4\x39\x50\x83\xaa\x10\xba\xa0\xaa\ +\xe6\x6f\x01\x33\x53\x8a\xf0\x15\x97\x4d\x8d\xb8\x98\x32\xf7\xf0\ +\x1d\x44\x47\x82\xbe\x02\x62\xb0\x26\x24\xcd\x84\xeb\x3c\x01\xa1\ +\x90\x6e\x03\xad\xdf\xba\x07\xb8\xae\xcb\xf7\xc3\x33\xbc\xc4\x21\ +\xf9\x65\x82\xa1\x5f\xa2\x8b\x29\xe9\x28\xe6\xe2\x26\x25\x8a\x53\ +\xd2\x24\xc6\x50\x05\x0d\x03\x92\x7c\x82\xbf\x24\xee\x01\x37\x37\ +\x37\xfc\x78\xf1\x2b\xf3\x0f\x7c\x16\x17\x4c\xe6\x7b\x9a\xdf\xce\ +\x46\xfc\xf1\x67\xca\x24\x9e\x92\x26\x19\x85\xaa\x10\xc2\xc0\xb2\ +\x4d\xf2\x42\xe0\x66\x19\x5a\xeb\x5b\x0f\xca\xb2\xe4\xf7\xb3\x6b\ +\x5e\x8d\xc6\xbc\xbb\x50\x51\xeb\x8a\x69\x59\xf3\xf2\xd2\x20\x95\ +\x0e\xa6\xd5\xa5\x50\x05\x9d\x4e\x07\xcb\xb2\x18\x4e\x86\x84\x65\ +\x79\x6f\xa2\x52\x8a\xce\xc2\x7b\xb8\x6f\x08\x22\xab\x46\xd6\x39\ +\x63\x53\xe1\xce\x09\x2a\xd9\xc4\x69\xb5\xa8\xeb\x1a\xd3\x34\x31\ +\x4d\x93\x6e\x6b\x0e\xa5\xd4\x2d\x20\x4d\xd3\x68\x79\x79\x39\xe8\ +\xf7\xfb\xb4\x5a\x2d\xae\x06\x4d\x12\xd7\xc5\x7f\xd3\xe5\x83\x15\ +\x07\xc3\x30\x28\x8a\xe2\x2e\x40\x52\x4a\xb2\x4c\xb3\xb8\xb8\x48\ +\x96\x65\x91\xd8\xdd\xdd\x7d\xb2\xb4\xb4\xf4\xac\xd7\xeb\xf9\xfc\ +\x0f\xc5\x71\x7c\x7d\x7a\x7a\xfa\x99\xf8\x8f\xb9\xb1\xb3\xb3\xf3\ +\x4d\x18\x86\x5f\x28\xa5\x38\x3f\x3f\xff\x76\x7b\x7b\xfb\xcb\xdb\ +\x20\xbc\xae\xd7\x00\x5b\x5b\x5b\xef\xaf\xaf\xaf\x7f\x6d\x18\xc6\ +\x63\xd7\x75\x3b\xe3\xf1\x18\x29\x25\x8e\xe3\x60\xdb\x76\x62\x9a\ +\xe6\x4f\x27\x27\x27\x5f\x6d\x6e\x6e\xbe\x98\xed\x58\xff\x04\x84\ +\x61\xf8\x61\xa7\xd3\xf9\xd8\xf7\xfd\x86\xd6\x9a\x6e\xb7\x8b\x10\ +\x02\xdb\xb6\xd1\x5a\xb7\xa3\x28\xfa\x48\x29\xf5\x1c\x78\xf1\xaf\ +\x1f\x00\xc2\xf7\xfd\x07\x6b\x6b\x6b\x8f\x57\x56\x56\xde\x5e\x5d\ +\x5d\xed\x3a\x8e\x23\x8e\x8f\x8f\x47\x87\x87\x87\x7f\x1d\x1c\x1c\ +\x1c\x8c\x46\xa3\x21\xa0\x67\x0b\x7f\x03\xda\x9e\x5f\xc6\x86\x2c\ +\xf1\x02\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xe4\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x04\x00\x00\x00\xb5\xfa\x37\xea\ +\x00\x00\x00\x02\x73\x42\x49\x54\x08\x08\x55\xec\x46\x04\x00\x00\ +\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\x3a\ +\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\x77\ +\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\x65\ +\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x63\x49\x44\x41\x54\ +\x28\xcf\x45\x91\xbd\x4a\xc3\x60\x14\x86\x4f\xae\xc3\xcd\x21\x97\ +\xe0\xec\x2e\x52\x0d\x69\x44\x4a\xb5\x05\xff\xd0\x42\xf9\x9a\x62\ +\xad\x3f\xc4\x20\x75\xd3\xc1\x49\xbc\x8f\x14\x71\xf0\x12\xa4\xa0\ +\x0e\x52\x5c\x5c\x62\x45\x09\x9f\xc2\x37\xc4\xaf\x3c\x0e\xc6\x7a\ +\xde\xe1\x81\xc3\xe1\x1d\xce\x23\xc8\x6f\x7a\xee\x49\x1c\x27\x51\ +\x1a\xa5\x71\x72\x12\xf7\xdc\xbf\xbd\x20\x48\xe4\x1c\xa9\xae\x69\ +\xd1\x26\x22\xa2\x4d\x8b\xae\x39\x52\x91\x53\x1c\xec\x3b\xdd\x7e\ +\x93\x0e\x37\x0c\x78\x62\xc8\x03\x37\xec\xd2\xa4\xdb\xdf\x77\x10\ +\x41\x42\xb5\xc3\x39\xf7\xbc\x92\xf1\xc9\x17\x9a\x37\x9e\x39\x63\ +\x87\x50\x21\xa2\xdc\x86\x09\x79\xe4\x03\xc3\x37\x63\xc6\x58\x72\ +\x34\x2f\xb4\x69\x18\xe5\xca\x76\x5c\xe7\x96\x77\x0c\x97\xf4\x00\ +\xe8\x50\xc7\xa2\x19\x50\x67\xfb\x58\xd6\x93\x0d\xee\xd0\x58\x2e\ +\x68\x00\xd0\x64\x16\xc8\x19\xb1\xc5\x7a\x22\xb5\x34\x64\x40\x86\ +\xa5\xc3\x1c\x00\x35\xa6\x01\x4b\xc6\x01\xb5\x54\xaa\x69\x8b\x47\ +\x34\x63\xe6\x11\x80\x82\x63\x34\x87\x54\x53\xa9\x24\xb5\xa2\xc1\ +\x63\x0a\xa0\xa0\x25\x63\x8d\x4a\x22\x95\xd8\xe7\x9a\x11\x39\x2b\ +\xcc\x00\x14\xcc\x19\xe2\x53\x39\x96\x65\xb7\x6c\x36\x79\x46\x63\ +\xf9\x1f\x8b\x26\xa4\x6c\x96\x5d\x41\x02\xb5\xc0\x29\x2f\x68\x72\ +\xec\xe4\x0f\x57\x2c\x10\x28\x44\x90\x25\x27\xe8\x97\xd8\x62\xc0\ +\x88\x0c\x4d\xc6\x90\x16\x25\x82\xfe\x92\x53\xc8\x0a\x1c\x5f\x79\ +\xa6\x44\x95\x5d\xf6\x58\xa5\x84\x67\x7c\x15\x38\x13\x9b\x08\x52\ +\x76\xfd\xd8\x4b\x16\xd3\xc5\xd4\x4b\xfc\xb8\x3c\xd1\xfd\x03\x12\ +\x89\x6f\x33\xf6\x68\xda\x37\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x02\xcd\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x0c\ +\x0f\x1e\x0b\x3a\xc8\xf1\xeb\x00\x00\x02\x4d\x49\x44\x41\x54\x38\ +\xcb\x7d\x92\xcb\x4e\x14\x41\x14\x86\xbf\xae\x4b\x4f\xcf\x20\x99\ +\x99\x00\x12\x96\x18\x87\xc8\xce\x98\xe0\xca\x2d\x6f\x40\xd8\x22\ +\x7b\x13\x79\x03\x83\x4f\x80\x89\xec\x49\x70\x45\xd8\x93\xf8\x04\ +\x44\x8c\xac\xd8\x4d\x30\xc4\x85\x33\xd2\x4c\x37\x32\x4c\x5f\xaa\ +\xa6\xda\x05\xf6\x70\xd5\x93\x54\xea\x2c\xea\x7c\xff\x9f\x53\xbf\ +\xb7\xb7\xb7\xb7\x32\x31\x31\xb1\x51\xad\x56\x1b\x42\x08\x3c\xcf\ +\x1b\x9d\xb2\x8a\xa2\x18\xdd\xce\x39\x8a\xa2\x20\x4d\xd3\xf8\xf4\ +\xf4\x74\xcd\xdb\xdf\xdf\x8f\x3e\x6d\x6f\x37\x7a\x17\x03\x7c\xdf\ +\x47\x57\x34\x5a\xf9\x68\x25\x11\x42\x00\xe0\x9c\xc3\xda\x21\xd6\ +\x5a\x72\x63\xc8\xf3\x9c\xe6\xa3\x1a\xab\xab\xaf\x63\x55\xab\xd5\ +\x1a\x9d\x4e\x87\xa7\xad\x16\x0f\xd5\x15\x44\x42\x45\x63\xad\xc5\ +\x5a\x45\xb7\xfb\x9b\xe3\x1f\x3d\x6a\xb5\x5a\x43\x95\x0a\x51\x14\ +\x8d\x14\x85\x10\xa3\x5e\xca\x6b\x27\x59\x96\xd1\xe9\x74\x70\xce\ +\xe1\x8c\x01\x40\x15\x45\x81\xb5\x96\x5e\xaf\x77\x6b\xb8\xdc\x87\ +\x10\x02\xe7\x1c\x71\x1c\x93\x24\x09\x4a\x29\xb4\xd6\x0c\xed\x0d\ +\x40\x41\x41\x18\x86\xb7\x94\x85\x10\x48\x29\xb9\xbc\xbc\x24\x8e\ +\x63\x00\xb4\xd6\x04\x41\x80\x94\x12\xed\x57\xae\x01\x41\x10\x70\ +\x7c\xfc\xfd\x1e\x20\x8a\x22\xb2\x2c\x1b\xa9\xfa\xbe\x8f\x31\x06\ +\xa5\x14\xcd\x89\x0a\x45\x51\x5c\x01\x7a\xbd\x1e\xdd\x6e\x17\x29\ +\x25\x00\xc6\x18\xce\xcf\xcf\x51\x4a\x21\xa5\xc4\xf7\x7d\x2a\x95\ +\x0a\x59\x96\x91\xa6\x29\x41\x10\x10\x54\x6b\x57\x0e\x00\xac\x1d\ +\x12\x86\xe1\xbd\x1f\x18\x0e\x87\x23\x60\x9e\xe7\x28\xa5\x46\x2e\ +\xea\x8d\x26\x9e\xe7\x5d\x01\x8c\xc9\xf9\x5f\x19\x63\x30\xc6\x20\ +\xa5\xc4\x18\x43\x9a\xa6\x4c\xcf\xfc\x5d\x62\x92\x24\xf1\xec\xec\ +\x93\x46\x3c\x30\x28\x25\xd0\x52\xa3\x95\x44\x29\x89\x14\x12\x0f\ +\x0f\xeb\x2c\xd6\x0e\x31\xc3\x32\x4c\x96\x67\x73\x73\x24\x49\x12\ +\x7b\x5b\x5b\x5b\x2b\x0b\x0b\x0b\x1b\xcd\x66\xb3\x71\x33\xba\x65\ +\x64\xcb\x85\xde\x8d\x77\xbf\x7f\x11\x1f\x1c\x7c\x5d\xf3\xfe\xe1\ +\x5a\x6c\x6e\x6e\xbe\xa9\xd7\xeb\x1f\xf2\x3c\xe7\xe4\xe4\xe4\xed\ +\xfa\xfa\xfa\x47\xc0\xdd\x7d\x78\x0b\xb0\xbb\xbb\xfb\xbc\xd5\x6a\ +\xbd\x17\x42\xbc\x74\xce\x3d\x8e\xa2\xc8\xcb\xf3\x9c\xf1\xf1\xf1\ +\xa2\x5a\xad\xfe\x02\xbe\xb4\xdb\xed\x77\x4b\x4b\x4b\x87\xe5\x8c\ +\xba\x09\x48\x92\xe4\x95\xd6\x7a\x71\x6c\x6c\x2c\xb0\xd6\x12\x04\ +\x41\x19\x20\x4f\x4a\x39\xdd\xef\xf7\x17\x07\x83\xc1\x67\xe0\xf0\ +\x41\x07\x80\x37\x35\x35\x35\xb3\xbc\xbc\xfc\x62\x7e\x7e\xbe\x35\ +\x39\x39\x59\x07\x38\x3b\x3b\x8b\x8f\x8e\x8e\xda\x3b\x3b\x3b\xdf\ +\xc2\x30\xfc\x09\x14\xe5\xc0\x1f\xab\x1b\x27\x18\x88\x89\xee\x65\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x00\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x7d\x49\x44\ +\x41\x54\x78\xda\xa5\x53\xbf\x4b\x42\x51\x14\x3e\xc7\x7b\xdf\xd3\ +\x52\xd3\xe7\x0f\x7a\x1a\x25\x06\x11\x0d\x0a\xb9\xb5\xd4\x03\x69\ +\x68\x32\x6b\xaa\x29\xe8\x0f\x11\x5d\x5a\x42\x88\x96\xa6\xa0\xa9\ +\xa1\x66\x41\xfa\x03\x8a\xd6\xa6\xb6\x28\x43\x83\xcc\xf4\x29\x4f\ +\x7d\xd7\x77\xbb\xe8\xe2\x10\xfa\xa2\xf3\x71\x96\x8f\x73\xbe\xf3\ +\x0d\xdf\x41\xce\x39\xfc\xa7\x1c\x76\x07\x31\x8d\x01\xcc\xe0\x09\ +\x8a\x1a\xe7\xa9\xad\xe5\x1d\x4c\xa5\x92\xa9\x3b\x35\xa4\x06\x4a\ +\x8e\x52\x41\x50\x86\x6d\x07\xe2\xea\x51\x7a\x23\x7d\x9f\xdd\xcd\ +\x2a\x26\x9a\x43\xce\x96\x03\xcc\x23\x3a\x9f\x9c\x17\x19\x2d\x73\ +\x1c\x5f\x89\x93\x5a\xb3\x06\x1d\x01\x5b\x02\xb8\x8d\x01\x9f\xea\ +\x2b\x6b\x9a\xb6\xee\x51\x3c\xa4\xda\xaa\x82\x29\xa0\x53\x7d\xba\ +\x00\xee\x63\x4a\x5d\x8e\x94\x93\xf1\x84\xd2\xc5\x2e\x69\x77\xda\ +\x60\x52\x13\x98\x83\x81\x41\x8d\xc9\x02\x78\x88\x7b\xb1\x70\xec\ +\x3a\xea\x8b\x4a\x75\xa3\x8e\x0c\x18\x58\x6e\x0b\xfa\x02\x4c\x62\ +\xd0\x93\x7b\x53\x1c\x48\x84\x7c\x75\x1a\xbc\xf2\x52\x01\x2b\x64\ +\x01\x86\x10\x2c\xbf\x05\xa0\x8c\x26\x67\xc8\xec\xe4\x1c\xf0\x2b\ +\x76\xa3\x4b\xc6\xa6\x7b\xcd\xdb\x70\x79\x5d\xcc\x92\xc5\xb2\x1b\ +\x00\xbc\x30\x14\x21\x73\x64\x7a\x90\xf8\x65\xff\xb1\x85\xdf\xab\ +\x34\x2c\x3f\xfb\xbd\x0a\x03\x49\x90\xae\x91\x08\xf1\x50\x7b\x49\ +\xe4\x45\xfe\xa9\x93\x66\xa2\x07\xe6\x6d\xc4\xb5\x30\x40\x8e\x82\ +\x04\xa0\x94\xda\xcf\x01\xcf\x0d\x9f\xe4\x80\xe4\xa5\x87\x45\x79\ +\xe9\xf4\x43\xaf\x11\x62\x11\xfc\xf3\x2f\x0c\x72\xe6\xd9\xeb\xdb\ +\xfb\x56\xb0\x3e\xdf\x0e\xf6\x43\xbf\x5c\xe2\xdc\x56\x43\x01\xc2\ +\xa4\x28\x9f\x03\x00\x8e\xf3\xff\x7e\xe7\x1f\x95\x02\xa1\xe8\x5d\ +\x93\x38\x6a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x05\x66\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xcd\x00\x00\x00\xcd\x08\x00\x00\x00\x00\x3e\xd7\xab\xb5\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0b\x12\x00\x00\x0b\x12\x01\xd2\xdd\ +\x7e\xfc\x00\x00\x05\x0b\x49\x44\x41\x54\x78\xda\xed\x5d\xdb\x92\ +\xab\x30\x0c\x43\x3b\xfd\xff\x5f\xd6\x79\x38\x33\xa5\xa5\xb6\x63\ +\xe7\x42\x5b\x2a\x9e\x96\x12\x20\x5a\x22\x5b\x76\x1c\x00\xb7\x0b\ +\x6d\x7f\x9b\xd0\x08\x8d\xd0\x08\x8d\xd0\x08\x8d\xd0\x08\x8d\xd0\ +\x08\x8d\xd0\x08\x8d\xd0\x08\xcd\xf9\x68\x32\xc1\x35\xef\xed\x18\ +\xb4\x30\x1b\xd3\x68\x43\x6b\xb7\xdd\x83\xe3\x06\xf3\xc7\xe4\xb5\ +\x10\xde\x19\x5e\x63\x18\x3d\x82\xb1\x5b\x47\x23\xde\x08\xcd\xf7\ +\xa1\x69\x5b\x86\x34\x01\x3a\xb7\x5b\xfd\x26\x77\x86\xd2\xe0\x34\ +\x0e\x74\xe6\x2b\xa7\x1f\x4e\xbb\x37\xfe\xff\x1b\x51\xec\xc1\xcc\ +\x67\x83\x79\xa7\x61\xe4\x82\xe2\xcd\xf7\xa3\xe1\x3a\xc2\x26\x2d\ +\x48\xad\x07\xb7\x78\x88\xa3\x0f\x0d\x0c\x1f\x8f\x90\x33\x96\x05\ +\xa9\xf7\x40\xbc\x11\x1a\xa1\x99\xa9\x05\xb2\xc6\xc8\x95\xf1\x09\ +\xb9\xcf\x29\x3e\x73\xe2\xb3\x81\x46\x9a\xd0\xac\x46\x93\x50\xff\ +\x3c\x4b\x4b\x8c\x5b\x01\xcb\x77\x3f\x06\x03\x78\x71\xe5\x2f\xf1\ +\x02\x9e\x02\x04\x2b\x2c\xf8\x94\x91\x86\x5c\x13\x4c\x34\x2b\xe2\ +\xcd\xe5\xd1\xb0\x1a\xee\xf3\xe4\xbc\xc0\xc1\xd1\x6f\x1e\x43\xbd\ +\x14\x21\x42\x97\x7f\x38\x4a\xcf\x00\x64\x7a\x90\x7d\x36\x33\x19\ +\x9a\xb8\x11\x46\x7b\x20\xde\xfc\x1a\x1a\x76\x9d\xc1\x61\xa3\x70\ +\x1b\x16\xc7\xd6\x04\x00\xc3\xa3\xde\xb9\xa8\x4f\x14\x68\xa4\x09\ +\x8d\xd0\x2c\xd1\x02\x4c\x98\x95\x5d\xcb\x3f\x7b\xe7\xfd\x37\xeb\ +\xaf\x63\x3b\x2b\x8b\xb8\x9f\xd1\xee\xc1\x8b\xe5\x9a\xa3\x92\x90\ +\xb4\xad\xb1\xd5\xa2\x46\xda\x0f\xa2\xe9\x9d\xb2\xf7\xdc\x7b\x7a\ +\x14\xb1\x19\x34\xf8\x9a\x01\xf5\xe9\x38\xeb\x26\xa8\x88\x84\x3b\ +\x7f\x89\x90\x3c\xf0\xfe\x6d\x2e\x4b\xdf\x31\xd2\xb0\x2c\xc0\x90\ +\x15\xf8\x2e\x34\xef\x5f\x92\xc3\xce\x5e\xf9\x55\x43\x6c\x93\x0e\ +\x6d\xc6\x27\xe6\x03\x2c\x1b\x71\x38\x8d\xc8\xb9\xda\xcf\x1b\x69\ +\x18\x88\xb5\x64\x05\xae\x87\xe6\x33\x17\xef\xdd\x3a\x87\x33\xb7\ +\xd7\xf2\x1f\x37\x2c\x38\x28\x78\x37\x18\xc8\x52\xc6\x9d\x4b\x58\ +\x52\x35\xb4\xe7\xfa\x50\x67\xf2\xc8\xdd\xc5\x9b\xaf\x45\xc3\xbe\ +\x83\x56\x08\x30\xdb\x6e\x74\x54\x10\xd3\xa1\xdb\x83\x77\xce\xd6\ +\x01\xec\x97\xf2\xbc\x3d\xd1\x17\x8e\x94\x46\x1a\x3a\xa3\x9f\xd0\ +\x3c\x58\x47\x20\xde\xfc\x38\x1a\x4e\xe3\x30\x07\x8e\xa6\x46\x32\ +\x1d\x86\xd7\xb4\x7c\x22\x6b\xc0\x30\x86\x48\x9a\x11\x3f\x57\xe0\ +\x3e\x1b\x88\x37\x42\x73\xd5\xbc\xc0\xa4\x5b\xa6\x57\x13\x95\x56\ +\x04\xc5\xec\xde\xbc\x44\x40\xf6\x8c\x8f\xca\x0e\xae\x33\x3a\xb2\ +\x02\x42\x73\x8e\x91\x69\xac\x26\x72\xd7\x01\x19\xf1\xf9\x31\x1b\ +\xe0\xf1\x01\xa5\xdc\xa1\x45\xb2\x39\x79\x81\x38\x36\xc0\x44\x69\ +\xaf\xbc\x80\xd0\xac\x0e\x1a\x86\xec\x46\x3a\x22\x38\x4c\xef\x6d\ +\x7d\x24\x4e\x9a\x9b\xc6\x51\x56\x9e\x4d\x86\xec\xe2\x8d\xd0\xac\ +\x46\x33\x5e\xe1\xb7\xce\x34\xb8\xf5\x02\x84\xa7\xbd\xf7\xe5\xc0\ +\x6e\x36\x8f\x1e\x11\x13\xc9\x01\xd7\xf9\x6f\x7d\x79\x81\x2c\xd9\ +\x21\xde\x08\xcd\x38\x1a\x26\xb9\xcf\x89\xf2\x3f\x7c\xcb\x48\x77\ +\xbd\x40\x18\xb8\x3f\xe4\xf9\x5d\x03\xe0\x4e\x32\xc4\x75\x00\x6c\ +\xb7\x1b\xcf\x0b\xc0\xd8\xab\x58\x00\x0c\xdb\x11\xd5\x0b\xfc\x06\ +\x9a\x51\xbf\x7f\x9e\x6e\x70\xf3\x02\x87\xa5\x7e\xec\x9c\x28\xd8\ +\x13\x01\x07\x60\xd6\x1b\x45\x0e\x29\x06\x44\x1d\xaa\xe5\x05\xb0\ +\xd8\xef\xa3\x1a\x75\x64\xd6\x15\xc9\x0a\x08\x8d\x9d\x44\x60\x2e\ +\xe0\xe0\x70\x44\xf0\x40\x55\x2b\x25\xe0\xca\xf3\xf2\xdb\xca\x4c\ +\x6d\x11\x17\x17\x74\x6a\x01\x9c\x90\x12\x68\x2c\x27\x84\x78\x73\ +\x5d\x34\x74\x59\xbb\xce\xbf\xb3\xf8\x7b\x5e\x0b\x58\xef\xf7\x81\ +\x5b\x3b\x18\xe7\x05\xe2\x04\x22\x9a\xbd\xae\xad\x33\x7c\xc3\x1b\ +\xc7\xc4\x1b\xa1\xe9\x62\x2e\x97\x99\x82\xfa\x95\x6f\x89\xeb\x1f\ +\x6a\x7f\xef\xb2\x00\x56\xbc\xe0\xaa\x75\x6b\xd5\xa0\x11\xea\x37\ +\x22\x91\x38\xfe\xf8\xeb\x64\x3b\xca\x6a\xfd\xf9\x28\x96\x44\x22\ +\xe2\xcd\x95\xd0\x64\xb8\xcf\x6d\x5a\x9d\x60\xc9\x14\x34\x56\x13\ +\x19\x42\xfd\x28\xd9\x13\x25\x46\x5b\xb8\xbb\x17\x0f\x67\xd3\x0e\ +\xbd\xf5\x02\x38\x41\x0b\x74\x56\x18\x28\x2f\x70\x25\x34\xe9\x77\ +\x8d\x0f\x33\xb9\xef\xbd\x24\x35\x2d\x60\xbd\x53\x6c\x2f\x0e\x42\ +\x4c\xec\x30\x84\xb7\x7c\x7c\xc6\xef\xcf\xae\x1d\xcc\x84\xeb\x48\ +\xb5\x98\x6f\x55\x64\x05\xae\xa7\x05\xfa\x7e\x9b\x6d\x09\x8a\x5a\ +\x20\xbb\xc2\xd7\x55\x0f\xa1\x03\x7f\xd8\x63\x48\x35\x86\x32\xa5\ +\xf7\xd9\x0c\x17\x11\xb8\x81\x44\xdd\x02\x48\x0b\x08\xcd\x84\x94\ +\xc0\x44\x2d\x10\x2f\x0c\xf6\x73\x82\x71\xe5\x00\x92\x7d\x63\x74\ +\x51\xd6\xb5\x40\xbc\x30\xf8\xad\x39\x41\x88\x37\x57\x42\xc3\x25\ +\xac\x1d\xce\x3d\x24\x6e\x99\x99\x23\x68\xa3\x71\x17\x18\xb0\xf4\ +\xe5\x22\x37\x12\x79\xde\xe5\x92\xf7\x0b\x34\xc8\xb9\x6c\x45\x01\ +\xa4\x05\x7e\x16\x4d\x26\x22\x38\x63\x6e\x71\xe4\xdb\x44\x26\x6b\ +\xe1\xd9\x12\xd7\x6e\x20\x52\x23\x0d\xa9\xf1\x21\x23\x0d\x9d\x3c\ +\x17\x6f\xae\x89\x66\x36\x93\xb9\xce\x28\x34\xac\x40\x9b\xc9\x47\ +\x06\xc0\xf1\xdd\x7b\x48\x61\x57\x11\x3e\x9f\x86\xd3\xf2\x02\x0b\ +\xc5\xbc\xf2\x02\x42\x73\x4a\xcc\x5f\x9f\x46\xa8\xcf\x11\x74\x74\ +\x18\x49\x5b\x12\xaf\x0a\xb0\x2c\x03\xfb\xf2\x02\x1f\xbc\x29\x2f\ +\x20\x34\xdb\xac\x99\x82\x91\x73\x6f\x13\xc7\xb3\x55\x4f\x58\x2a\ +\x47\x30\x6c\x84\x9f\x9f\x3c\x43\x0b\x60\x72\x6b\x3f\x3f\x29\x2d\ +\x20\x34\x2b\xc5\xc4\xc8\xd7\x4a\x33\x5f\x06\x8a\xab\x7b\x91\x14\ +\xfe\x59\x31\x31\xf2\xb5\xd2\xd3\xbe\x4d\x24\xde\x08\xcd\x22\xaf\ +\xbd\xe6\x76\x23\xdf\x26\x3a\xd6\x0f\x1d\x5c\xb9\xb5\xbb\xb5\x8d\ +\x82\xbb\x9c\x30\x16\x18\xc3\xcf\x06\x67\x59\x06\x88\x37\x42\xf3\ +\x59\xdb\xc8\xb7\x89\xcc\x33\x8c\x32\x03\x32\x12\xf4\x96\xde\x68\ +\x7c\xb6\xd0\xfd\x58\x21\xa8\x91\x26\x34\x42\x23\x34\x42\x23\x34\ +\x42\x23\x34\x42\x23\x34\x42\x23\x34\x42\x23\x34\x42\x93\xdf\xfe\ +\x01\x5e\x85\x36\x73\x54\x77\xc4\x72\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x6e\x85\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\x90\x00\x00\x00\x56\x08\x06\x00\x00\x00\xe1\x79\xc0\xd1\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0e\x01\x00\x00\x0e\x01\ +\x01\x62\x83\xa2\x17\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x20\x00\x49\x44\ +\x41\x54\x78\x9c\xec\x5d\x77\x7c\x14\x45\xdf\xff\xce\xee\xd5\xe4\ +\x92\x4b\x27\x84\x96\x40\xe8\x55\x7a\x93\xa2\x02\x8a\x60\x2f\x60\ +\xc3\x2e\xea\xeb\x63\x7b\x2c\x8f\x3e\x76\x1f\xcb\x63\xd7\xc7\xde\ +\x1b\x8a\x88\xa2\x3e\xd2\x41\xe9\x48\xef\x9d\xf4\xde\x73\x49\xae\ +\xef\xce\xfb\xc7\xec\xdc\xcd\x6d\x2e\x95\x16\x7d\xf8\x7d\x3e\xc3\ +\x1e\xb9\xdd\x99\x9d\xb9\x99\xf9\xfe\xfa\x10\x4a\x29\xda\x12\x11\ +\x42\x08\xff\xa8\xbb\xea\x3f\x03\x00\xd5\x5d\x03\x9f\x69\x5b\xeb\ +\xd8\x69\x3a\x4d\xa7\xe9\x34\xfd\xc5\x88\x9c\xea\x7d\x56\x07\x18\ +\x92\x56\x64\xad\x48\x0d\x14\xaa\x15\x55\x28\x8a\xee\xca\xcb\x69\ +\x40\x39\x4d\xa7\xe9\x34\x9d\xa6\x13\x40\xa7\x04\x40\x34\xd0\xe0\ +\x45\x02\x60\x00\x60\x02\x60\x06\x60\x11\x8a\x49\xf8\xbb\x09\x80\ +\x11\x0c\x58\x00\xc0\x0f\xc0\xab\x2b\x1e\xad\xb8\xb5\xe2\xd1\xfe\ +\x2e\x82\xca\x69\x30\x69\x05\x09\x40\xdf\x6a\x3a\x3d\xee\xa7\x49\ +\x4f\xcd\x99\x57\x7f\xa6\x79\xf3\xbf\xb6\x4e\x4e\x2a\x80\x68\x83\ +\xcb\x25\x0c\x23\x18\x28\x58\x01\x44\x01\x88\x01\x10\x4b\x4c\x31\ +\x9d\x88\x39\x3e\x9d\xc8\xd6\xe4\x98\xb8\xc4\x76\x29\xed\x3b\xb6\ +\x4b\x6e\xd7\x3e\x36\x3e\x31\xc9\x1e\x1b\x1b\x67\xb5\x47\xc7\x18\ +\x55\xaa\xd2\x1a\x47\x85\xb7\xa2\xa2\xdc\x59\x5a\x5a\x52\x5d\x58\ +\x54\x58\x99\x97\x97\x5b\xe8\xac\xad\x2c\xa1\x7e\x57\x11\x75\x97\ +\x1c\xa0\xfe\xba\x22\x00\x15\x00\xaa\x01\xd4\x82\x01\x8a\x17\x80\ +\x0f\x0c\x50\xe8\x9f\xe9\x87\x3a\xd9\x14\x66\x21\x84\x53\x29\x86\ +\xfb\x3f\xa7\x7a\x6a\x45\xfd\xe7\xd3\xe3\xff\xbf\x45\x8d\xcc\xa9\ +\xe6\x50\xc8\x5c\x69\x0b\x73\xe7\x18\xfb\xd3\x5c\x6a\xb0\x9f\x6d\ +\x62\x0c\x4e\xc6\x3b\x08\xc0\x61\x04\x93\x2c\x22\x01\xd8\x01\xc4\ +\x02\x48\x90\x22\x52\x06\xb4\xeb\x3c\x60\xe2\xc4\x89\x53\x07\xf7\ +\xee\x3b\xc8\x6e\x30\x45\xa2\xda\xa5\xa0\xb0\xac\x06\x45\xe5\x0e\ +\xd4\x39\xdd\xf0\x2b\x0a\xa8\xaa\x80\x52\x95\x5d\x55\x15\x11\x56\ +\x03\xe2\xa2\x2c\x88\x8d\xb6\x22\x2e\xda\x8a\x08\x8b\x01\x46\x09\ +\xf0\x7b\x9c\x74\xf7\x9e\x1d\xa5\x2b\x57\x2e\xfe\xc3\x51\x72\x60\ +\x25\xf5\x54\x1c\x06\x50\x0e\xa0\x12\x80\x03\x40\x1d\x98\x74\xe2\ +\x07\xa0\xb6\x85\x1f\xa2\x2d\x90\x6e\x41\x88\x80\xa1\x2f\x08\xf3\ +\x99\x93\xde\x2e\x45\xc3\x14\xe8\x3e\xb7\x89\xc5\x70\x9a\x4e\x1c\ +\x09\x5a\x07\xa0\xfe\x5c\x6a\x0e\x85\x9b\x3f\xa7\x6c\xde\xe8\x54\ +\xef\x0d\xad\x85\x63\x25\x7d\xdf\x1a\xb4\xf9\x02\xa7\x66\x2c\x4e\ +\x28\x80\xe8\x80\xc3\x0a\x26\x65\x24\x81\x48\x29\x92\x2d\x6d\x4c\ +\x7a\xaf\xe1\x13\xc7\x8c\x3b\xaf\x6f\xbb\x0e\xdd\xcd\x25\xb5\x14\ +\x19\xf9\x95\x50\x29\x03\x07\xca\xaf\x22\x68\x50\x15\x54\x55\xeb\ +\xdf\x13\xe6\xde\xf8\x98\x48\x8c\xe8\x9f\x86\x48\x0b\xc1\xd1\xc3\ +\x87\x1c\xcb\x57\x2c\xdd\x51\x94\xb3\x7b\x85\xea\xcc\xdb\x0a\xa0\ +\x10\x40\x29\x18\x98\xb8\xc0\x80\xe4\x7f\x56\x22\x69\x60\x31\x88\ +\x2a\x46\x5e\x88\xee\x73\xb8\x8d\x40\x9c\xe4\xaa\x70\x55\xc3\xfc\ +\x3f\x1c\xb0\x9c\x06\x93\xbf\x10\x85\xb1\x71\x86\x9b\x53\x40\xf8\ +\x8d\xb7\x39\x73\xe9\xa4\xcf\x97\x30\x2a\xf8\xa6\xd6\x44\x73\x29\ +\x1c\x30\x34\xc6\x88\x9d\x72\x86\xec\x84\x00\x88\x30\xc0\x5c\xe2\ +\x88\x01\x90\x0c\xd9\xd2\xbd\x7d\xf7\x89\x37\x5e\x71\xf9\x0d\x67\ +\xc6\xa5\xf4\x34\xec\xcb\xab\x43\x69\xb5\xb3\x9e\x64\x51\x0f\x18\ +\xb4\x6b\x00\x38\x1a\xb9\x87\x52\x05\xaa\x1a\x0a\x38\x91\x56\x23\ +\x46\x0e\x4c\x47\x72\x82\x0d\x59\x99\x59\xae\x6f\xbf\xf9\x74\x41\ +\x5d\xd1\x96\xef\x00\x9a\x0d\xa0\x04\x0c\x48\xdc\xf8\x1f\x53\x6d\ +\x85\x01\x0e\xbd\xb3\x02\x77\x66\x30\x08\x9f\xc3\x39\x38\xe8\x01\ +\x44\x5c\xe8\x4a\x98\xe2\x47\xc3\x0e\x0f\x81\x85\xf0\xbf\xf2\x3b\ +\xfc\x95\x49\xd8\x0b\xf8\x7c\x32\x08\x85\xcf\xa3\x86\x36\x5c\x71\ +\x2e\x89\x73\xc7\x8f\x53\x64\xd7\x6c\xa0\x3f\x62\xbf\x1a\xeb\x4f\ +\x73\xa8\x31\xc0\x50\xc3\x94\x46\x19\xb2\x13\x3d\x2e\xc7\x1d\x40\ +\x08\x21\x7c\x60\x2d\x60\x6a\xaa\x24\x10\x29\x2d\x3a\x65\xe4\xd5\ +\x33\xae\xbd\x7b\x5a\x52\x97\x81\xc6\xed\x47\xca\xe0\xf1\xfb\x05\ +\xc0\x08\x27\x69\xe8\x40\xa3\xa1\x7b\x74\xc0\xa3\x86\x80\x49\x7d\ +\x50\xb2\xdb\x2c\xb8\xf0\xec\x61\xd8\xb7\x7f\xaf\x63\xde\x37\x1f\ +\x7e\xe9\x77\x1c\x5a\x08\x20\x17\x4c\x22\xa9\x01\x53\x6d\x29\x7f\ +\xe5\xcd\xab\x01\xcf\xb7\x70\x0b\xdc\x28\x14\xd3\xec\xd9\xb3\x3b\ +\x0d\x1a\x74\x46\xc7\xc4\x94\xae\xa9\xf6\xb8\x76\x9d\xac\x11\xb6\ +\x24\x0a\x63\x84\x4a\x8c\x56\x15\x06\x2b\x81\xea\x93\xa8\xcf\x25\ +\xc1\xef\x52\xfc\xee\xca\x9a\xaa\xf2\xfc\xf2\xe2\xec\xec\xdc\x9c\ +\x8c\xbc\xd7\x5f\x7f\xfd\x70\x69\x69\xa9\x68\x87\xe2\x85\x6f\x06\ +\x22\xa8\x9c\x06\x92\xbf\x00\xe9\x36\xdb\x80\xa3\xcc\x80\x01\x03\ +\x6c\xb2\x2c\x5b\x7d\x3e\x9f\xd1\xef\xf7\x1b\x28\xa5\x92\xaa\xaa\ +\xf5\x36\x5c\x42\x08\x24\x49\x52\x64\x59\x56\x4c\x26\x93\xd7\xef\ +\xf7\xbb\x77\xef\xde\xcd\xd7\x28\x77\x8e\x39\x69\x4c\x5f\x18\xf0\ +\x30\x01\x30\xa5\xa5\xa5\xd9\x62\x63\x63\x23\x78\x7f\x54\x55\x95\ +\x29\xa5\x2d\xde\x5b\x09\x21\xf0\xfb\xfd\x34\x23\x23\xc3\x83\xf0\ +\x52\x57\x38\x46\x4c\xbc\x8a\x4c\x19\x7f\x0e\x38\x81\xe3\x73\xdc\ +\x00\x44\x50\x57\x99\xc0\x8c\xe2\x49\x00\x52\x4d\x71\x7d\x2f\xbc\ +\xe2\xca\xdb\x67\xce\xbe\x6e\x66\xa4\xc3\x6b\xc0\x47\x8b\x0f\xa2\ +\xc6\xe5\x6e\x52\x05\x45\xa9\x0a\x55\x90\x22\x1a\x56\x69\x29\x50\ +\xc3\x82\x49\xc3\x80\xa3\xaa\x0a\xda\x27\xc6\x60\xda\xc4\x21\x58\ +\xbd\x76\x5d\xf1\x92\x5f\xbe\xf8\x50\xad\xcb\x5d\x85\x20\x90\xd4\ +\x01\xf0\x51\x4a\xd5\x06\x3b\xfc\x27\xa4\x26\x5c\xa6\x39\x50\x70\ +\x8f\x37\x73\xf7\xee\xdd\xa3\x1e\x7b\xf2\x5f\x13\xd2\xfb\x0c\x9f\ +\xec\x27\xd1\x9d\x4b\xea\x2c\x89\xe5\x75\xc6\xa8\x1a\x37\x91\x6a\ +\x5d\x14\x4e\x4f\xc3\x16\x3e\xa3\x01\x88\xb2\x10\x44\x59\x81\x28\ +\xb3\xdf\xd5\x3e\xda\x5d\x66\x95\xea\x0a\x6b\x2b\x73\xb7\xcd\xfd\ +\xf2\xbd\x5f\x3e\xfb\xec\xb3\x5c\x04\xbd\xe6\xb8\x17\x9d\x08\x28\ +\x21\x40\x72\x1a\x44\xfe\x7c\x24\xec\x09\x1c\x3c\xac\x00\x6c\x87\ +\x72\xaa\xe7\xe7\x55\x1a\x93\x29\x55\x09\xa5\x20\x00\x15\x27\x12\ +\x01\xff\x1f\x61\xff\x10\x02\x4a\x88\x44\x53\x13\xa8\xa3\x6b\x87\ +\xc8\xf3\xc0\xd6\xa7\x0b\x1a\xb3\x07\x6d\xc3\x3c\xe1\xdc\x76\xa8\ +\x13\x90\x09\x9a\x3d\x77\xe7\x81\xbc\x7f\x57\x7a\xe3\xc6\x29\x2a\ +\x25\x94\xd2\x70\xfd\x69\x8a\x42\xde\xdb\x28\xab\x0a\xa8\xea\x05\ +\x14\x0f\xa1\x8a\x97\x40\xf5\x10\x28\x1e\x99\x28\xce\xd2\x82\xcc\ +\x6d\xbf\xfe\xf4\xcd\xda\xf7\xdf\x7f\x3f\x07\xc1\x35\x23\x32\x65\ +\xa2\x84\x26\x4a\x69\x27\x84\x19\x3b\x2e\x00\xa2\x0d\x2c\x97\x3a\ +\xe2\x00\x74\x91\x6c\xa9\x53\xce\x9d\x76\xd3\xec\xbb\x6e\xba\x3e\ +\xbe\x5b\x97\x8e\x20\x04\x20\x04\xa8\xac\xf5\xe0\xdd\x5f\xf7\x22\ +\xa7\xd8\xd1\x84\x9a\x2a\x0c\x78\x34\x43\x5d\xd5\x10\x28\xa9\x0d\ +\x80\x49\x8f\xd4\x14\x4c\x1c\xd1\x1f\x3f\xff\xfa\xeb\x91\x8d\xab\ +\xe6\xbd\x45\xdd\xa5\x1b\x00\xe4\x81\x79\x6f\x79\xf0\x17\x30\xb2\ +\x87\x51\x55\x89\xaa\x29\xee\x0d\x67\x01\x60\x99\x3a\x75\x6a\xfb\ +\xfb\xff\xf1\xaf\xeb\xcc\x51\xc9\x03\x9c\x4a\x44\xca\x91\x12\x4b\ +\x42\x56\x29\x0c\xea\x71\x1a\x81\x58\x1b\x41\xef\x64\x6f\x55\xa2\ +\xcd\x5d\x22\x2b\x8e\xac\x8d\xab\x17\xcf\xbb\xef\x9e\x3b\x36\x82\ +\x6d\x08\xa2\xeb\x35\x5f\x08\xa7\xe3\x79\xfe\xa4\x24\x68\x23\xb8\ +\x0d\x34\x1a\x40\xcc\xef\xdb\x8a\x3f\xfd\xef\xee\x98\x81\x2d\xad\ +\xef\xfc\xfe\xb5\x87\x26\x0e\x8e\x9f\x09\xa0\x0a\x41\xfb\x25\x97\ +\x44\x4e\x06\x80\x70\xa6\x8b\xf7\xc7\x06\x20\x66\xfd\xb6\xa3\x2f\ +\xfe\xbc\xaf\xe3\xb9\x7e\xe5\x44\xb6\xce\x16\x6e\x92\x9d\x20\x35\ +\xc1\xeb\x48\x8c\xf4\x56\x18\x89\xab\xd4\x5b\x57\x71\x78\xeb\xc6\ +\xe5\xcb\xfe\x7e\xff\xbd\x5b\x11\x0c\x61\x08\xc7\x90\x9d\x90\x75\ +\x74\xcc\x00\xa2\x6d\x4e\x06\x00\x11\x60\x52\x47\xf7\x94\x5e\xe7\ +\xdd\xf3\xdc\x13\x2f\x4c\x1a\x79\xc6\x80\x00\x70\x88\xc5\xaf\xa8\ +\xf8\x7c\xd9\x01\xfc\xb1\xbf\x30\x28\x45\x84\x05\x88\xe6\xa8\xa9\ +\xf4\x80\x11\x06\x60\x9a\xb8\x87\xaa\x2a\x86\x0f\xea\x81\x5e\x69\ +\x1d\x95\x57\x5f\x79\xe6\x63\x67\xe9\xae\x6f\x01\x64\x80\x79\x6e\ +\xb9\xf1\x27\x56\x69\x09\xe0\x21\xaa\xaa\x44\x69\xc3\x02\x20\x62\ +\xe2\xc4\x89\xc9\x4f\xbe\xf0\xee\x3d\x6e\x39\x79\xf8\xc6\xa3\xe6\ +\x76\xd5\xce\xe6\x77\x97\x00\xb0\x98\x08\xbc\x7e\x0a\xa5\x05\x32\ +\x9b\x51\x06\xfa\x77\x52\x9d\xe9\x09\x35\x47\x7e\x5f\xfc\xed\xdb\ +\x0f\x3f\x70\xef\x46\x00\x4e\x04\xb9\x4b\xee\x29\x17\x22\x91\xfc\ +\x59\x7f\x8b\xff\x25\x12\xd4\x3d\x06\xb0\x79\x16\x05\xe6\x75\x99\ +\xb4\x6c\x63\xce\xdb\x8b\xf6\x27\xf4\x6e\x69\x9d\xe7\xf6\xa9\xce\ +\x9c\x3c\xa2\xfd\x2d\x60\x76\xcb\x0a\x04\xdd\xf3\x4f\xb8\x37\xa5\ +\xd0\x1f\x19\xac\x3f\x91\x60\xfd\x49\x5c\xb1\x6e\xf7\x33\x4b\x8e\ +\x76\x1b\x7f\xa2\x01\x24\x1c\xd9\x2c\x04\xdd\xda\xa9\xae\x1e\x89\ +\xae\xfc\xaa\x92\x23\xab\x1e\xba\xf7\xd6\xcf\x77\xed\xda\x55\x8e\ +\xf0\x0c\x99\xa8\xde\x3a\x2e\xeb\xe8\x98\x00\x44\x43\x64\x03\x18\ +\x12\xb7\x87\x64\xea\x3f\x60\xcc\x75\x4f\xbd\xf2\xd4\xb3\x3d\x3a\ +\xa5\xb4\x03\xdf\xba\xc2\x81\x08\x21\xc0\xd2\x2d\x39\xf8\xee\xf7\ +\x83\x50\xd4\xfa\x2e\xba\x0d\xa9\x9e\xc2\x83\x4a\x13\xf7\x36\x02\ +\x4e\x22\xc0\x44\xdb\x2c\xb8\xfe\xb2\x29\x78\xe3\x3f\x6f\x2d\xcf\ +\xdf\xbf\xf8\x75\x00\x87\xc0\x26\xab\x13\x80\xff\xcf\xb6\x71\xe9\ +\xbc\x45\x44\x89\xc3\x0c\xc6\x41\x45\x8e\x18\x31\xa2\xdd\x0b\xaf\ +\x7d\x74\x97\xdf\xd4\x61\xd4\x9a\x43\xe6\xe4\x1a\x57\xf8\x2e\x4a\ +\x04\xe8\x92\xa0\x2a\xa9\xb1\x35\x2e\x09\x1e\xbf\xe2\x75\xfb\xfd\ +\x3e\x97\x5f\xf1\x3a\xfd\x5e\x4f\x9d\xaf\xa2\xac\xc4\x65\x8b\x8a\ +\x36\x45\xd8\x62\x4c\xb2\xd1\x6a\x30\x98\xac\x06\x83\xd1\x6a\x90\ +\x8c\x16\x43\x59\x9d\xd5\x74\xb8\xd4\x6a\xa9\x73\x37\x5c\xf7\x19\ +\x69\x6a\x6d\x7a\x7c\xcd\x91\xc5\x0b\x3e\xfb\xcf\x93\x8f\x3f\xba\ +\x19\x4c\x4d\xe1\x44\x90\xa3\x0a\x59\x00\x7f\xb6\xdf\xe2\x7f\x8d\ +\xc2\xb8\xee\x33\x7b\x28\xd0\x61\xe1\x9a\x23\x2f\x2d\x3b\x94\x9c\ +\xde\xd2\x3a\x27\xf5\xaa\xc8\x9d\x3a\xa6\xf3\x3d\x00\xf2\xc1\xd6\ +\x65\x35\xb4\xb5\x89\x13\xcc\xe4\xe9\xd4\x71\x16\x30\x69\x2a\x01\ +\x40\xca\xc2\x95\x9b\xff\xf9\x5b\x4e\xef\x91\xa7\x02\x40\x44\x4a\ +\xb2\x13\x3a\x34\xd5\x5d\x64\xa1\x95\xfb\xe7\xcf\x79\xfb\xbd\xd7\ +\x5f\x7b\x6d\x1f\xd8\xf8\x38\x11\x0a\x24\x01\x69\xe4\x58\xc7\xac\ +\xd5\x00\xa2\x81\x87\x09\x6c\x20\x3b\x11\x53\xcc\xc8\x49\x17\xde\ +\xfb\xf4\xbf\x1e\x7e\x20\xce\x16\x61\x0d\x01\x0a\x76\x7f\xf8\xb2\ +\x2f\xbb\x1c\x6f\x2f\xd8\x8e\x5a\xa7\xa7\x99\x6a\xaa\xfa\x6e\xbd\ +\x4d\xdf\x1b\xde\x86\x52\xcf\x76\x42\x55\x48\x84\xe2\x96\x99\xd3\ +\xb1\xe0\x97\x5f\x0f\x6d\x5b\xf5\xc5\x93\x50\xbd\xbb\x01\x14\x80\ +\x71\x3b\xfe\x3f\x8b\x5d\x24\x8c\xc1\x4f\x0c\xdc\x8c\x4c\x4f\x4f\ +\x8f\xff\xe0\xb3\xf9\xf7\x50\x6b\xc7\xb1\x6b\x0e\x9a\x52\xaa\xea\ +\xea\x77\x2b\xc2\x4c\xd0\xbd\x9d\xd7\x1b\x67\xaa\xa8\xab\x2d\xcf\ +\xae\x5a\xfc\xcb\x37\x19\xf3\xe6\xce\x29\x74\xbb\xdd\x7c\x23\x07\ +\x74\xee\x83\x08\xe3\xeb\x3f\x66\xcc\x98\xd8\xab\xaf\xbf\x33\x3d\ +\x25\xb5\x4f\xbc\xdf\x90\x68\x3b\x5a\x1e\x1d\x59\x58\x59\xbf\x3d\ +\x49\x02\x86\x75\xa5\x8e\xae\xf1\x35\x87\xe7\x7f\xfd\xce\x2b\xff\ +\x7e\xf1\xf9\x9d\x08\x02\xc9\xe9\xac\x02\x7f\x22\xd2\xd9\x44\x23\ +\xc0\xb8\xf5\x64\x00\xa9\x3f\xff\xb6\xff\x99\x95\x47\x52\x52\x5b\ +\x5a\xe7\x39\x3d\xcb\x0b\xa6\x8d\xeb\xfa\x0f\x00\xd9\x60\x6b\xb2\ +\x12\x9a\xbd\x12\x4c\x02\x39\x61\x6b\xb3\x81\x90\x84\x76\x00\x3a\ +\xff\xb4\x78\xfd\x83\x6b\x0a\xfa\x0e\x39\xd5\x00\xc2\xc9\x64\x20\ +\x18\x9e\xae\x56\x27\x99\x8a\xff\xb8\x7e\xe6\x79\xcf\x64\x64\x64\ +\x94\x21\xd4\x6e\xc4\x55\x5b\xc7\x0c\x22\xad\x02\x10\x01\x3c\x62\ +\x01\xa4\x4a\x91\x9d\xa6\xde\x7c\xdb\x33\x0f\xdc\x75\xe3\x75\x66\ +\x59\x22\x61\x81\x82\x3d\x17\xbe\x94\x56\xb9\xf0\xc6\xfc\xcd\xc8\ +\x2e\xac\x6a\xc0\x03\xab\x01\xd5\x56\x38\xdb\x49\x83\x86\xf9\x30\ +\x2a\xad\x46\x80\xe6\x92\xf3\xce\x44\x4e\x6e\x7e\xc5\x7f\xbf\x7b\ +\xe3\x49\xea\xad\x5c\x07\x20\x07\x4c\xef\xea\x6b\xeb\x9b\x56\x18\ +\xef\x17\x31\x80\xd3\x36\x6b\xd6\xf5\xbd\xff\xef\xc1\x17\x9f\x5b\ +\xb8\xdb\xd2\xad\xdc\x51\xdf\xfb\x25\x2d\x49\xf5\xf7\x8c\x2d\x71\ +\xe4\x67\xed\x2d\x9b\xf3\xd9\xdb\x07\x7f\xfb\xed\xb7\x32\x04\x6d\ +\x12\x0d\xea\x55\x05\x0a\xe7\xd5\x65\x04\x60\xe8\xd0\xa1\x43\xe4\ +\x0d\x37\xdf\xd9\x75\xc8\xa8\xb3\x3b\x7a\x8c\x9d\x62\x36\x67\x45\ +\x58\x7d\x4a\xe8\xe3\xb2\x04\x9c\xd3\x5f\x2d\xab\xcd\xdf\xf2\xe5\ +\x95\x97\x4c\xf9\x0a\xc1\xe0\x4f\xae\xf3\xf6\xe1\x34\x88\xb4\x69\ +\x12\xec\xa2\x46\xb0\x79\x17\x0f\xa0\x03\x80\xae\x0b\x56\xec\x7d\ +\x6c\xe5\xd1\x94\xce\x2d\xad\xf3\xec\x1e\x65\x45\x17\x4e\xe8\xfe\ +\x04\x98\x7a\x39\x1f\x4c\xc5\x5c\x0b\x2d\xbb\xc4\x49\x00\x10\x3e\ +\x9f\x23\xc0\x6c\xbd\xed\x01\xa4\xfe\xf0\xdf\x55\xf7\xaf\x2b\x1e\ +\x38\x50\x3f\x8f\x4f\x35\xc5\xda\x24\x3a\xa5\x9f\x27\x7b\xe9\x4f\ +\x9f\xbc\xf2\xe4\x63\x0f\xaf\x45\x70\x1d\xe9\xa5\xfa\x56\x83\x48\ +\x6b\x5c\xcd\x08\x82\xe0\xd1\x2d\x32\x69\xf0\x4d\xff\x7c\xe4\xa5\ +\x59\x17\x4c\x3a\x4b\x6a\x0a\x28\x1a\xfb\xce\xe7\x57\xf0\xfe\xcf\ +\x3b\xb0\x61\x77\x4e\x03\x5e\x55\xf5\x41\xa4\x61\x95\x56\x78\xd5\ +\x56\xa3\xb6\x13\xc1\x3e\xa2\x06\xec\x22\xbd\xd1\x25\x25\xd9\xfb\ +\xce\x5b\x4f\xbf\xa0\xd6\xe5\xfc\x0c\xc6\xf9\x54\xa3\x0d\xab\xb3\ +\x74\xba\x5a\xd1\xfb\x25\x12\x80\xfd\xad\x77\x3f\x3d\xbf\xdf\x88\ +\xe9\x77\xfe\xb2\x95\xb4\xd3\x4f\xf8\xf6\xb1\x50\x07\xb5\x2f\xab\ +\x5e\xf1\xeb\xd7\x07\x5f\x7b\xe9\x5f\x07\x54\x55\xf5\x21\x68\x98\ +\xf3\x20\xd4\x6b\x2a\x9c\xb7\x14\x10\x1e\x3c\xcc\x42\xb1\x68\x57\ +\xd3\xe0\x21\x43\xe3\x1e\x7d\xfa\x8d\x61\x0e\xb9\x5b\xc2\x8e\x6c\ +\x83\x59\x6f\xa8\x1f\xd0\x05\xce\x74\x7b\xd1\xda\x0b\xa6\x8c\x7a\ +\xaa\xa6\xa6\xa6\x02\xcc\xcd\x5a\xe4\xa2\x02\x92\x50\x5b\xfd\x3d\ +\xfe\x57\x49\xd8\x70\x4d\x60\x73\x2f\x01\x40\x47\x00\xdd\x7e\x58\ +\xba\xeb\xd1\xdf\x32\x52\x3a\xb6\xb4\xce\xb3\x7b\x94\x97\x5c\x74\ +\x56\xcf\xa7\x00\x1c\x05\xf3\x98\xe4\x00\xe2\xc5\xc9\x03\x10\x23\ +\x18\x80\xc4\x03\x48\x01\x90\xf6\xfd\xcf\xbf\xdd\xbb\xbe\x78\x40\ +\xff\xb6\x06\x20\x00\xdb\x08\xc6\xf6\x42\x75\xac\x94\xbb\xea\xca\ +\x8b\xce\x7e\xa1\xa2\xa2\xa2\x1c\xa1\xeb\xe8\x98\x40\xc4\xd0\xa2\ +\x97\x09\x1a\xcc\xa3\x01\x74\x31\xc6\xf4\xba\xf2\xb1\xa7\x3e\xbe\ +\xc1\x6f\x4d\x41\x9d\x47\x81\xcd\x22\x07\x80\x22\xfc\xf3\x0d\x7f\ +\x67\x32\xca\xf8\xdb\x65\x43\x90\x9a\x1c\x8d\x39\x4b\x77\x71\x57\ +\x81\x06\xef\x0f\xf4\x55\x7f\x15\xe3\x70\x28\xe5\xd6\x22\xed\xaf\ +\xfa\x7b\xea\xff\x89\x0a\x7f\xf8\x63\xfb\x1e\x14\x16\x97\x98\xfe\ +\xfe\xd0\x73\x8f\xbc\xf4\xdc\xfd\x75\xd4\x5d\xbc\x04\x6c\xc0\x6b\ +\x09\x21\x6d\xce\xb0\x1e\x06\x3c\xcc\x60\x93\xdd\x06\x20\x76\xe1\ +\xf2\x3f\xee\xaf\x96\xbb\x4d\xf9\x7e\xa3\x1a\x2d\x3e\x17\x6b\x93\ +\xe8\xf0\xce\x15\x8e\xdd\x7f\x2c\xca\xbc\xe8\xda\x07\x76\x79\xbd\ +\x5e\xae\x37\xd5\x17\xd1\x28\x27\x6e\xe0\xe2\xc2\xd5\x07\x59\x89\ +\xc6\x7a\xab\xf6\x3e\x11\x00\x22\xb6\x6d\xdd\xe2\xbc\xf4\xfc\x31\ +\xe5\x53\xce\x3d\x3f\xe5\x8e\xfb\x9e\x1a\x9c\xef\xee\x18\xb7\x37\ +\x4f\x32\xf2\x8a\x76\x64\x22\xa2\x30\x26\xf9\xec\xe5\xeb\xf6\x77\ +\x7c\xe4\xde\x59\x0f\xad\x58\xb1\x22\x4b\xab\x57\x3f\x93\x54\x42\ +\x08\x69\x6b\xbf\xc7\x69\x0a\x50\x88\xfb\x38\xa5\x94\xa8\x6a\xcb\ +\xf7\x7a\xed\xe7\xd5\x47\x7d\x9f\x0a\x12\xfb\x23\xf3\xfe\xa8\xc7\ +\xcb\x55\xf1\x38\xd3\xaa\x7d\xb0\xb7\x8b\xe9\x34\xed\xd7\x95\xdb\ +\xbb\x4c\x9d\x38\xe8\xae\xca\xca\xca\x70\x6b\x48\x21\x84\xb4\x98\ +\x11\x6b\x36\x80\x08\x08\x6c\x03\xd0\x81\x58\x93\xcf\xba\xeb\xbe\ +\xd7\xee\xd8\x53\x15\x8d\xba\xe2\x6a\xec\xcd\x77\xe0\xec\xbe\xf1\ +\x18\xd5\x23\x16\xb2\xd4\x58\x3d\x8d\x03\xc9\x85\x67\x76\x47\x6a\ +\xfb\x68\xbc\x3e\x77\x03\xea\xea\xdc\xa0\x14\xa0\x04\xa0\x94\x40\ +\x25\x60\xff\x21\x80\x24\x11\xf6\x1d\x84\xab\x4a\x40\x25\x02\x68\ +\x57\x15\x12\x08\xa5\xa0\x90\x40\x55\x0a\x2a\xe9\xaf\x04\x14\x12\ +\x54\xe1\x1e\xa2\xbb\x27\xaf\xa0\x18\x5b\x77\xee\x31\xcc\xb8\xfe\ +\x81\xc7\xbe\xfd\xe8\xf1\x52\xea\x77\x7a\xc0\xf4\xaf\x75\x60\x1b\ +\x68\x9b\xa0\x46\xc0\x23\xba\x67\xcf\x9e\x29\x9f\xcf\x5d\xfc\xd2\ +\xba\xa3\x91\xfd\x8f\x16\xf9\x8c\xe2\x73\x43\xd3\x7c\x6e\x57\xfe\ +\x9a\xac\x6b\x2e\xb8\x7d\x8b\xc3\xe1\xa8\x05\xeb\x57\x8d\x50\xea\ +\x10\x54\x1f\x89\x81\x80\xf5\xbc\x3a\x10\x9c\x94\xe1\xe2\x4b\x78\ +\x86\xe5\x08\x30\x8e\x34\x0a\x6c\x2e\x45\x2d\x59\xfc\xab\x73\xc9\ +\xe2\x5f\x0b\xae\xba\xe6\x86\xae\xd7\xdc\xfa\xf0\x19\xcb\x0f\xd8\ +\x63\xdc\x3e\x36\x8f\x8b\x2a\x15\x79\xee\x1f\x86\x3e\x4f\xbe\x32\ +\xe7\xfd\xd1\x0b\x3e\x7e\xfe\x99\x27\x1f\x59\x8d\xf0\x1b\xc7\x69\ +\x10\x69\xdb\x24\x38\x74\x50\x50\xda\xf2\xa5\xc3\x62\x2c\x8e\x29\ +\x55\xc8\xf1\xa4\xc0\x7b\x50\x50\x42\xa9\x82\xb6\x3c\xf5\x8a\x2a\ +\x15\x69\xd1\x6e\x4b\xff\x9f\x96\xfc\xf1\xd2\x59\xa3\xfb\x3c\xe0\ +\xf7\xfb\xf9\x57\x21\x91\xee\x2d\x05\x91\x46\xb6\xfa\xb0\xf7\x46\ +\x00\x48\x26\x06\xdb\x90\xcb\xaf\x7d\xf2\x31\x47\x64\x6f\xd9\xe5\ +\x53\x21\x49\xcc\x85\x73\xe1\x8e\x12\xbc\xb9\x28\x03\x47\x8b\xeb\ +\x1a\x05\x09\xa0\x71\x10\x19\xd4\xbd\x1d\x5e\xbc\xe3\x1c\xa4\xb6\ +\x8f\x81\x24\x11\x48\x12\x01\x91\xa0\x7d\x06\x24\x42\x20\x11\x40\ +\x82\xee\x2a\x01\x84\xfd\x01\x20\xec\x19\xc2\xaf\x92\x78\x65\x05\ +\x84\xdd\x2b\xde\x23\x89\xed\xc8\x12\x64\x89\x60\xff\xe1\x0c\x98\ +\x8c\x92\x6d\xcc\x94\x5b\x9f\x01\x91\x7a\x81\x89\xe3\x66\xcd\x16\ +\x74\xca\x29\x8c\xc1\x9c\x83\x87\xdd\x66\xb3\x25\x7d\x31\x6f\xd9\ +\x5b\x3f\x6d\xb7\x0e\x3e\x52\xe0\x33\x72\x35\x1d\xa1\x2a\xce\xee\ +\xe5\xac\xfd\xed\xbb\x67\xff\xb8\xf3\x96\xab\xd7\x38\x1c\x8e\x52\ +\x00\xc5\x60\x31\x30\x39\x60\xea\xba\x1c\xad\xe4\x81\xe9\x9c\x0b\ +\x01\x14\x69\xf7\x95\x02\x28\xd3\x4a\xb9\x56\xca\x84\x6b\x29\x98\ +\xa7\x4c\xb1\xf6\x4c\x81\x56\x47\xae\xae\xfe\x3c\xad\xde\xb2\x39\ +\x5f\x7d\x7a\xe0\xe6\x19\x13\x17\x4d\xec\x9a\x57\x12\x67\x03\xe5\ +\xef\xea\x72\x2b\xf8\x66\x8d\x3f\x65\xcc\xb9\x37\x3d\x79\xd7\xdd\ +\xf7\x8f\x00\x33\x60\xda\xc0\x00\x89\xa7\xf8\x6f\x13\xbf\xc5\x69\ +\x6a\x92\x08\xa5\x34\xe8\x4e\xdf\x82\xa2\x69\x19\x4e\x35\x70\xd4\ +\xa7\x56\xf6\xe7\x64\x97\xd2\x2a\xbf\xb4\xfa\x70\xd4\xd0\x85\x2b\ +\xb6\x3c\x05\xa6\x82\x8b\x06\xdb\x27\x4c\x08\x2f\xd9\x37\x49\xcd\ +\x5a\x74\xda\x46\x69\x01\x90\x00\x22\xf5\x1a\x3d\xe5\xae\x67\x93\ +\xfb\x4d\xb5\x56\x3b\x7d\x6c\xe3\x0e\xd8\x32\x28\x4a\x1d\x6e\x7c\ +\xb4\x22\x03\xdf\xac\xc9\x81\xc3\xe5\x6b\xa2\xde\x86\xbf\x4b\x8e\ +\xb7\xe1\xd9\xdb\xcf\xc1\xa8\x01\x9d\xd9\x3e\x2f\x71\x90\x10\x37\ +\x79\x02\x59\x92\x20\xcb\x12\x24\x89\x15\x99\x68\x7f\x93\x88\x56\ +\xa0\xfd\x2d\x78\x95\x58\x8a\x04\xed\x7b\xed\x4a\xd8\x55\x22\x12\ +\x24\x99\x68\xf5\x01\x1a\x42\x61\xe9\xaa\x0d\x18\x37\x6a\x48\x87\ +\xae\x67\x5c\xfc\x08\x80\x74\x30\x23\x9a\xe9\x54\x83\x48\x03\xe9\ +\x22\x78\xd0\x56\xdc\x2f\x4b\x37\x3e\xb3\x78\xa7\xa1\x57\x85\xc3\ +\x0b\x55\x55\xa0\xaa\x0a\xcc\x06\x8a\xa9\xfd\xaa\xab\xfe\xfd\xe8\ +\x35\xcb\xbf\xfc\xec\x83\xbd\x60\x9b\x7d\x21\xd8\xe6\xce\x4b\x1e\ +\xd8\xa6\x5f\x04\x06\x04\x3c\x9b\x71\x35\x98\x31\xce\x01\x26\xa1\ +\xd4\x6a\x85\x4b\x2a\xfc\xff\x35\xda\x3d\xd5\xda\x73\xe5\x5a\x3b\ +\xc5\x5a\x5b\xf9\x5a\x1b\xbc\xbd\x7c\x00\xc5\x05\x05\x05\xc5\x97\ +\x4e\x1d\xbd\xb0\x87\x79\x5b\x56\xd7\x24\xc5\xcf\xdf\x59\x51\x15\ +\x2c\xd8\xe4\x89\xbf\xf4\xba\xfb\x9f\x18\x37\x6e\x5c\x37\x30\xb7\ +\xd0\x48\x30\xb0\x0c\xe4\x20\x0a\x77\x1e\x03\x39\x0e\x74\x2c\xbf\ +\xcf\xa9\xa6\xd6\xbe\xfb\xb1\xf4\x11\x8d\x6d\x46\x94\x06\xe6\x62\ +\x4b\x0a\xad\xe7\xab\xd1\x36\x88\x02\xad\xea\xcf\xa9\x28\xb9\x65\ +\x3e\x79\x7b\x51\xe2\xd8\x05\x8b\xd6\xfe\x1d\xcc\x8e\x5d\x8f\x11\ +\x6b\xc9\x9c\x69\x72\xf3\xd3\x2a\x33\x82\x71\x7d\xdd\xd2\xcf\xb8\ +\xf2\x9f\x97\x5d\x75\x57\x72\xb1\xc3\x13\x00\x8f\x40\x11\x24\x82\ +\x5d\xd9\x95\x78\x65\xc1\x3e\xfc\xb6\xa7\x10\x4a\x23\xba\xc1\xc6\ +\x5e\xd5\x6a\x36\xe0\xfe\xab\xc7\xe2\xea\xf3\x06\xb1\xcd\x5d\x00\ +\x11\x99\x10\xc8\x32\x09\x48\x16\x21\xc0\x12\x00\x1c\x0e\x04\x24\ +\x00\x30\x41\xe0\x00\x64\x59\x03\x19\x59\x62\x9f\xf9\x95\x3f\x43\ +\x24\x06\x30\x44\x86\x2c\x49\xf8\x62\xde\xcf\xb8\xed\xfa\x6b\x86\ +\xd9\x3b\x8e\xbc\x19\x40\x17\xb0\x4d\x5a\x3e\x19\x8b\xb4\x09\x12\ +\x0d\x7c\xfc\x7c\x95\xb8\xb9\x3f\x2e\xbb\x73\x57\x61\xec\xc8\xfc\ +\x32\xaf\xc4\xb9\x90\x84\x28\x42\x27\x74\xcd\x2f\xbe\xf1\xca\x89\ +\x0b\xff\xd8\xb8\x21\x1b\x6c\x43\x2f\x40\x10\x34\xf2\xc1\x40\xa3\ +\x14\x6c\xd3\xe7\x51\xbf\x1c\x24\xf4\x01\x4a\xe1\x8a\x68\x70\x77\ +\x69\x85\xab\xc6\xaa\xc1\x82\xc0\x4a\x11\x2a\x99\x04\xda\xf6\x7a\ +\xbd\xa5\xd7\xcd\x38\x7f\xb9\x3b\xf3\xc7\x3d\x43\xd3\xfc\xee\x80\ +\x73\x83\xa2\x62\xfe\x06\x5f\x87\xe7\x5e\xfb\xe2\xf9\xa4\xa4\xa4\ +\x76\x60\x20\x12\x81\x30\x20\x12\x66\x33\xe3\x20\x2b\xaa\xd7\xc2\ +\x15\x7d\x42\x49\xa2\xaf\xb3\xc9\x1f\xa3\x7e\xdb\xe1\x12\x54\x1e\ +\x8f\xd2\x58\x26\xd8\x40\x39\x51\x60\x12\x66\x7c\x79\x5f\xc3\xbd\ +\x87\x40\xc7\x24\x81\xb4\x3d\xa2\x08\x7a\x71\xfe\x09\xca\xd1\x02\ +\x9f\xb1\x46\xee\x7a\xce\x43\x8f\x3c\x3e\x0e\xf5\x19\xb1\xc0\x9c\ +\x69\x4e\xd7\x1b\xb5\x81\x68\x95\xc8\x5a\x03\x1d\xe3\x53\xc7\xdd\ +\xfa\xe2\x13\x2f\x0c\x4e\x4f\x6d\x8f\x9e\x1d\xdc\x58\x7b\xb8\x02\ +\x99\xa5\x2e\x36\x86\x94\x82\x82\x6a\xf6\x08\x0a\xaa\x02\x3e\x85\ +\x62\xf1\xd6\x02\x6c\x39\x54\x86\x8b\x46\x75\x42\xaf\x8e\x31\x0d\ +\xb4\xd3\xd8\x3b\x00\x97\x4c\xec\x87\xb4\x94\x18\xbc\xfe\xf5\x2a\ +\xd4\xb9\x54\x50\x4a\xc0\x52\xe8\x30\xb0\xa0\x94\x04\xec\x24\x94\ +\x00\x94\xb0\xef\xa9\x44\x40\x55\x40\xd5\xec\x22\x90\x10\x7a\x05\ +\x01\x21\x9a\x0d\x85\x10\x66\x09\x96\x08\xa0\x02\x92\x24\x31\x6d\ +\x2d\xa5\xa0\x44\x62\x57\x95\xe0\xa3\xaf\xe7\xe1\x81\xfb\x1e\xbc\ +\xec\xf1\xc7\xef\x3f\xa2\xd6\x66\x7e\x0b\xb6\x99\x9e\x12\x7b\x88\ +\x6e\x83\xe2\x76\x06\x1b\x80\x98\x97\x5e\x7b\x77\x9a\x2f\xb2\xf7\ +\xf4\x3d\x7b\xdc\x26\x7e\x7f\x74\x84\x8c\x61\xed\x73\x8a\x2e\x9f\ +\x36\x61\xb1\xcf\xe7\xab\x44\x50\xd5\x54\x86\xd0\xc3\xb7\x78\xdc\ +\x05\x37\x94\xeb\x6d\x1d\xe2\x4a\x0e\xb7\xaa\x49\x98\xcf\x62\x2a\ +\x6f\x03\x42\x4f\x8e\xe4\x20\xc3\xff\xef\x05\xe0\x7b\xec\xe1\xbb\ +\x37\xde\x76\x47\x66\xed\xa0\x73\xee\x1a\xb6\x3d\x0b\x66\x00\x70\ +\x7b\x81\x5f\xb6\xc9\xdd\xbf\x5d\xf0\xdb\xb3\x67\x8d\xee\xfb\x00\ +\x42\x0d\xf9\xdc\x32\x1b\xce\xa8\xdf\x12\xfd\xb9\xd8\xc7\x7a\x59\ +\x51\xb5\x71\x0f\x9b\x12\x42\x58\x78\xfa\x76\x25\xe1\xef\xe1\xc6\ +\xa9\xb9\x14\x6e\xec\xc3\xfd\x2e\xfa\xbe\x04\xde\xfd\xb8\x44\x20\ +\xd7\x07\x8e\x70\xe3\xca\xc1\x0d\xe2\x77\xcc\xb1\xa5\x15\x36\x90\ +\x36\x2a\x81\x70\x9b\x4e\x4b\x87\x35\x2d\x89\xd0\x2e\xd1\x65\x8a\ +\xaa\x52\x0a\x10\x4a\x08\x40\x24\x19\x44\xb6\x4a\xd5\x1e\x13\xa9\ +\xf1\x5a\xe4\x8a\x1a\x05\x95\xb5\xca\x71\x37\xd0\xaf\xdd\xeb\x8a\ +\xbc\xe6\x92\xeb\x6f\x7d\xf1\xb9\xa7\xb7\x23\xc8\xf8\x05\x3c\xb2\ +\xd0\x70\x9a\xbb\x10\x6a\xca\x88\x4e\xc0\x54\x22\xf1\xc4\x64\x1f\ +\x74\xfb\xad\x0f\x5f\x9c\x9e\xca\xdc\xb7\x3b\xc6\x59\x30\x73\x64\ +\x0a\x0a\xaa\xdc\x58\x7b\xb0\x12\x47\x8a\x6b\xc0\xd3\xa0\x11\x42\ +\xd8\xa6\x4d\x55\x48\x00\x2a\x6a\xdc\xf8\x78\xc9\x41\xf4\xe9\x6c\ +\xc7\x85\x23\x53\x91\x60\xb7\xd4\x6f\xa8\x09\x10\x19\xd2\xbb\x23\ +\x5e\xbc\x7b\x3a\x5e\xfc\x74\x39\xf2\x8a\x2b\x03\xe0\xc0\x0c\xe1\ +\x08\x80\x0a\x55\x25\x50\x99\x6d\xf6\xdc\xb8\x4e\xf8\x77\x54\xd2\ +\xc0\x4d\x02\x95\xa8\x06\x38\x04\x94\x30\x43\xba\xa4\x4a\x1a\x93\ +\xa3\x71\x48\xfc\x19\xa2\x68\x80\x04\x78\xbc\x5e\xfc\xbc\x78\x31\ +\x99\x71\xed\x9d\xff\x37\xe7\xbd\x07\x37\x81\xaa\x55\x00\x3c\x84\ +\x90\x93\x9a\x33\x4b\x07\x1e\x5c\x75\x15\x01\xc0\x7e\xd3\x2d\xb3\ +\x07\xf7\x1d\x31\xfd\xd6\xf9\xeb\x5d\x36\x7e\xbf\x2c\x11\x4c\xea\ +\x53\x57\x75\xd5\x45\xd3\x97\xfa\x7c\x3e\x51\x9d\xc4\x25\x8d\x6a\ +\x84\x06\x1b\x85\x33\x92\x87\xf4\xaf\x91\xfe\x52\x61\x23\xd5\xbb\ +\xbe\x11\x04\x33\x88\xf2\x04\x70\x7a\xa9\x25\x10\xe8\xf4\xfe\x3b\ +\xaf\xef\x7e\xad\xef\xc0\xb8\x0e\x71\xe3\x7b\xe5\x96\x29\x12\x00\ +\x94\x55\xab\x64\xfd\xd1\xc8\x33\x7e\x5c\xb8\xfa\xde\x8b\xa7\x8e\ +\x7b\x09\xa1\x09\xe4\x20\xb4\x17\x8e\xeb\xd7\x83\x89\x78\x3f\xbf\ +\x06\x8c\x8a\x61\x0a\x15\xae\x34\x0c\xa3\xa6\xb7\x47\x89\xa5\x21\ +\x20\x69\x29\xf1\x77\x0d\x77\x46\x86\xfe\x3e\xfd\xf7\x94\xb4\xc2\ +\xdb\x46\xa4\x30\x92\x95\xd8\x3f\x0e\xae\xbc\xfe\xfa\x29\xdb\x29\ +\x45\x6b\xbc\xb0\xda\x2c\x7e\x00\x68\x8d\x17\x56\x6c\x04\xa5\x4f\ +\xde\x7f\x75\xfe\xe1\xc3\x87\x79\xde\x3d\x1f\x00\xd5\x62\xb1\x90\ +\xf4\xf4\x74\x6b\x7a\x7a\xf7\x88\x1e\xbd\x07\xda\xfa\x75\xe9\x16\ +\x61\x89\xb4\x1b\x2d\x11\x76\x83\xdf\x94\x6c\xda\x99\x6b\x94\x6b\ +\x9c\xc7\xc6\xaf\xaa\x00\xfe\x38\x6a\xea\xf4\xe6\x3b\x9f\x5c\xfc\ +\xb7\x3b\x6e\x9c\x03\xc6\xb8\x85\x04\x18\x36\x67\x9e\x34\x08\x20\ +\x82\xf4\x61\x03\xd0\xa1\xc7\xc0\xe9\x77\x5c\x34\x65\xb2\xcc\xbe\ +\x0b\xde\xd7\x21\xd6\x82\x19\xa3\xda\xa3\xb0\x2a\x16\xab\x0f\x94\ +\xe1\x48\x81\x03\x2a\xd8\x8c\x09\x4a\x04\x00\x40\xb1\x2f\xbb\x02\ +\x07\x73\xcb\x71\xd6\xc0\x0e\x98\x34\xa4\x33\x8c\x06\x49\xd7\x66\ +\xe3\x9d\x4e\x49\x8c\xc6\x0b\x77\x4f\xc7\x9b\x73\x7e\xc7\xe6\xbd\ +\x59\x4c\x0a\x51\x11\xea\x55\x45\x00\x95\x12\xc1\xf3\x0a\xc1\xef\ +\x54\x02\xc8\x12\x28\xa1\xa0\x54\x82\xaa\x6a\x40\x23\x11\x10\x0e\ +\x2a\x2a\x01\x95\x25\x4d\xa2\x01\xf3\xb1\xa0\xac\x2e\x55\x95\x40\ +\x24\xa0\xa4\xac\x02\x53\x26\x24\x45\x45\xb5\x1f\x36\xb3\xa6\xe0\ +\x8f\x02\x30\xd5\x8c\x7e\x03\x3b\x19\x54\x4f\x75\x65\x30\x18\xe2\ +\xae\x9f\xfd\xf0\x43\x9f\xff\x56\x17\x4f\x85\x09\x7d\xde\x19\x52\ +\xdd\x63\x7f\xbf\x71\x45\x45\x45\x05\x07\x0e\x5e\x38\x78\x88\xc7\ +\xfe\x8a\xe9\x0e\x80\x56\x24\x60\x0b\xc3\x99\x07\xbe\x42\x70\x53\ +\xd3\x9f\xf1\x10\x2e\x93\x28\xee\xbd\xf3\x86\xd5\xdf\xff\xb2\xca\ +\x5e\x59\x9b\xd2\x81\x2f\x9c\x8c\x42\xc5\x98\x12\xdb\xe5\x9c\xfb\ +\xfe\xfe\xf0\x9a\x57\x5f\x7e\x61\x35\x84\xa3\x8a\x85\x76\x44\x2f\ +\x30\x93\x56\xb8\xaa\x4b\xdc\xc8\xf5\xe0\x11\x2e\x7d\xb6\xf8\x6e\ +\x0d\xa5\x9e\xe7\x9b\xa4\x3e\x51\xa5\x09\x41\x1d\xb3\xb8\xd1\xb6\ +\x86\x44\xf0\xe0\xef\x20\xbe\x1b\x05\x80\x89\x13\x27\x9a\x37\x6f\ +\xde\xec\xad\xad\xad\xd5\x7f\xaf\xa0\x15\xde\x36\x9c\x74\xe0\x21\ +\x8e\xaf\x11\x41\x15\x88\x98\x56\x9c\x8f\x47\x00\xb4\x19\x13\xd7\ +\x2a\x2f\xac\x16\x3f\x73\x52\x88\xb2\xfe\xd0\x16\x02\x08\x01\xa1\ +\x92\x24\x55\x81\xd9\x18\x03\x79\xbd\xdc\x6e\x37\xf6\xec\xd9\x23\ +\xed\xd9\xb3\xc7\x80\x05\x3f\x8a\xf3\xd7\x9c\x9a\x9a\x1a\x3d\xfb\ +\xae\x87\x3a\x8d\xea\x3d\xc2\xbe\x29\x3b\xda\x54\x59\xeb\x6f\xa4\ +\x85\xc6\x69\x5f\xb6\xcb\x78\xd5\xb8\x09\x17\xc4\xc4\xc4\x2c\xa9\ +\xaa\xaa\x12\x03\x0c\x45\xc6\xb1\x51\x6a\x4c\x02\x21\x60\x7a\xb1\ +\x04\x62\x69\x37\xe2\xe6\x59\xb7\xf7\x37\xc8\x72\xf0\x4b\xdd\xf4\ +\x4f\x89\xb5\x60\xe6\xe8\x8e\x28\xaa\x72\x63\xd5\xbe\x62\x1c\xca\ +\xaf\x86\x4a\x68\x80\x73\x67\x1b\x35\xa0\xaa\x14\xcb\xb6\xe5\x62\ +\xf3\xc1\x42\x5c\x34\x36\x1d\x83\xba\x25\x86\x36\xda\xc4\xb2\xb2\ +\x9a\x8d\x78\xf0\xfa\x49\x98\xb7\x6c\x2b\xbe\x5f\xba\x15\x2a\xd3\ +\x33\x31\x49\x43\x65\xaf\x2d\x71\xd7\x5f\xa2\x01\x58\x88\xab\xaf\ +\xd6\x08\x65\xc6\x74\x2a\x69\xea\x29\x10\x41\x8a\x61\x92\x09\x40\ +\xa0\x4a\x12\x40\x29\x08\x91\xd8\x63\x94\x01\xd2\xcf\x8b\x97\xe3\ +\xba\x59\x37\x5f\xf8\xf6\x8b\xdb\x7f\x86\xea\x2d\x05\xe0\x3a\x59\ +\x52\x48\x18\xe9\x23\xe0\x75\xf5\xee\x47\x5f\x5d\xb9\x6a\x9f\xda\ +\xd1\x2f\xe4\x55\x18\xd5\x53\xf6\x2c\x9c\xf7\xd6\xe6\xcd\x9b\xfe\ +\xc8\x06\x9b\xac\xdc\x93\xaa\x0c\xcc\xc6\xd1\xd0\xe4\x39\x6e\x39\ +\xa7\xc4\x7a\x34\x30\xd1\xab\x86\xc4\x0d\x5b\xe4\xf6\x09\x00\x72\ +\xeb\xac\x8b\x97\x7c\xf1\xfd\xef\x17\xff\xb0\xc5\x18\xcb\x39\xbd\ +\x35\x7b\xeb\x6c\xd7\x5e\x7a\xc3\xad\xaf\xbe\xfc\xc2\x6e\x84\xa6\ +\x3a\xe1\x64\x00\x60\xb9\xe5\x96\x5b\x3a\xdc\x7e\xef\x93\xaf\xd4\ +\x3a\xbd\x44\x55\x54\x89\x82\x12\xaa\xaa\x84\x0a\x9b\x38\x9f\x26\ +\x46\x09\x1e\xaa\xfa\x6a\xdd\xee\xba\x92\xaa\xf2\xa2\xcc\xaf\x3e\ +\xff\x68\xe3\xcf\x3f\xff\x5c\x82\xfa\x76\x1e\x31\x75\xb6\xb8\xd8\ +\xc4\xdf\xc4\xfa\xdd\x0f\xbf\x4e\xea\xd8\x75\xc0\x0d\x3e\x9f\x8f\ +\x50\x95\x12\x95\x32\x31\x97\xb6\x12\x40\xb4\xf7\x04\x21\x12\x25\ +\x20\x94\x48\x84\x5a\xcc\x26\xb2\x6a\xf1\x9c\x17\x1e\x7c\xf0\xc1\ +\x43\xda\xbb\xe0\x83\xcf\x17\x2c\x71\xb9\xdd\x39\xc3\x07\x74\xb9\ +\xd9\xed\x76\x8b\x01\xa0\x01\x2e\xb3\xa5\x20\xa2\x53\xcf\x89\x29\ +\xcd\xad\xbb\x0e\x16\x7e\x50\xe3\xf4\x19\x29\x05\x21\x84\x50\xd5\ +\x53\xbd\xe5\xcc\x91\xfd\xde\x01\xfb\x3d\x38\x78\x6a\x12\x08\x5a\ +\x27\x81\xb4\x51\x11\x84\x19\xd1\x5b\x2e\x81\x50\xc8\xd4\x60\x30\ +\x94\x23\x34\x2d\x8b\x17\xc1\x79\xcf\x35\x0b\x26\x68\xf3\x29\x2b\ +\x2b\x2b\xf2\xe1\xfb\x6f\x2f\xb2\xd9\x6c\xf6\x7f\xbf\xfe\x51\x6f\ +\x74\x1b\x64\xdf\x74\x58\x95\x1b\x68\xa2\x49\x5a\xbe\x4b\x4d\x7e\ +\xfb\x83\xaf\xae\xbd\xfa\x8a\x69\x6f\x22\xb8\x0f\x04\x98\xb1\xa6\ +\xe6\x48\x58\x00\xd1\x26\x8a\x01\xcc\x18\xdb\x71\xc8\x98\x2b\x66\ +\x9f\x3d\x7a\x54\x7d\x59\x3d\xcc\x12\x68\x1f\x6b\xc1\xcc\xb1\x5d\ +\x50\x5c\xe5\xc2\xef\x7b\x8b\x70\x20\xb7\x02\xaa\x2a\x6c\xe8\x60\ +\x1b\x70\x75\x9d\x17\x9f\x2d\xda\x8d\x1e\x9d\x62\x71\xf9\xf8\x1e\ +\x68\x17\x17\xd9\x68\xbd\xfa\x76\xaf\x98\x3c\x04\x69\x1d\xe2\xf1\ +\xf6\x9c\x95\xa8\x73\xb9\x41\x24\x0e\x14\x9a\x9a\x8a\xaa\x4c\xf2\ +\x09\x48\x16\x12\x54\x49\x61\x92\x09\x34\xbb\x86\x4a\x35\xdb\x86\ +\x04\x68\xf7\x50\x39\x68\xf3\x50\x55\x0d\x8c\x54\x89\x4d\x5d\x89\ +\x82\xa8\x0c\x74\xea\x9c\x2e\x58\x64\xbf\x39\xb9\xfb\xf8\x1b\x8a\ +\x0e\x2e\xcb\x04\x33\x34\xfb\xc9\xc9\x0b\x30\xd4\xa7\xca\x8e\x8a\ +\x89\x89\x49\x48\xeb\x39\x7c\xea\xda\xdf\xea\x02\xbf\x6b\xe7\x24\ +\xa3\xea\x29\x5c\x7f\xf4\xc3\xf7\xde\xda\x05\x06\x18\x25\x5a\x29\ +\x03\x9b\xb4\x9c\xf3\x11\x03\x03\x5b\x2c\x71\xb4\x84\x78\xbd\xda\ +\x7e\x14\xee\x24\x35\x51\x05\x22\x01\x90\x2b\x2a\x2a\x0c\x4f\x3e\ +\x74\xf3\x8a\x7b\x9f\xfa\xf4\xdc\xa5\x3b\x54\x1b\xb4\x1b\xb6\x67\ +\x19\x53\x9f\x7b\xf1\xf5\x29\x8f\x3c\x74\xcf\x02\x04\xcf\x87\xe0\ +\x33\xc8\x0c\x20\xd2\x6c\x36\xa7\x6c\x3f\xea\x1b\xbc\x7a\x77\x6d\ +\x48\x00\x65\x43\x64\x32\x48\xb0\x45\x44\xc3\x1e\x19\x4b\x67\xdc\ +\xf9\x66\xc5\xff\xfd\xe3\xcd\xf2\x08\xa3\xbf\x78\xd7\xd6\x35\x73\ +\xef\xb8\xed\x86\x55\xa8\x6f\xaf\x11\xa5\x4f\xfe\x9b\x58\x00\x44\ +\x45\x46\xc5\x0c\x9e\xbf\xce\x39\xbe\xac\xda\xdb\xba\xc1\x6a\x06\ +\xf5\xea\x0c\xd8\x6d\xb6\x79\x60\xea\x48\x15\x00\xc9\xc8\x77\xd0\ +\xd5\x7b\x9c\x63\x57\xae\xdd\xf9\xef\xd1\x43\x7b\x3e\x81\xa0\x7a\ +\x12\x10\xa4\x98\x56\x48\x22\xe1\xd4\xa6\xd1\xb9\x65\x4a\xbf\xef\ +\x56\x55\x77\xe0\x37\xcd\x3e\xcf\x66\x04\xf0\x15\xd8\x6f\x02\x08\ +\x52\x08\xa5\x7f\x31\x09\x04\x68\x95\x04\x02\x2a\x51\x83\xc1\x50\ +\x85\xe0\x11\xdb\xd5\x08\x9e\x8c\xca\xf7\x60\xf1\xb8\x05\x9e\x42\ +\xde\x5e\x5b\x5b\x1b\x73\xc7\xcd\x33\xaa\x2f\xbf\xf2\xea\x6e\xe7\ +\xce\xfc\x47\xb7\xd5\xfb\x68\x8b\x82\xc2\x39\x15\x96\xb9\xa4\x71\ +\x3d\xd3\x06\x82\x39\x04\xf1\x54\x27\x5c\x85\xdd\xa4\x14\xd2\x90\ +\x17\x56\x40\xfa\x90\x22\xbb\x9c\x35\x7b\xd6\xad\xa9\x0d\x19\xe5\ +\x1b\xda\xec\x93\x63\xad\x98\x79\x66\x1a\xee\x38\xbf\x0f\xfa\x76\ +\x8e\x83\x66\x93\x66\x31\x17\x84\x80\x10\x0a\x42\x80\xc3\xb9\xe5\ +\x78\xe1\xeb\xf5\x58\xb0\xfa\x00\x3c\x3e\x25\xa4\xde\xa6\x80\x64\ +\x58\xdf\x54\xfc\xeb\xee\x8b\xd1\xa1\x5d\x8c\xe6\x31\x45\x20\x13\ +\xc1\xbb\x4a\x73\xc5\x95\x24\x09\x24\xe0\xf2\x0b\xcd\x65\x57\x28\ +\x32\x81\x24\x6b\xee\xbb\x44\xf0\xc0\x92\x49\xe0\xfb\x60\x7d\xc1\ +\xbf\x2d\x5a\xb9\x1a\xd7\x5f\x7b\xdd\x04\x62\xb0\xf5\x05\x73\x89\ +\x33\xe2\xd8\x74\xdb\x4d\x52\x03\xd2\x47\x24\x80\xe8\xb7\x3f\xfc\ +\x7a\xd6\xf2\x5d\xde\x64\x4a\xb5\x34\x2e\x54\xc5\xf0\x34\x4f\xf5\ +\xbd\x77\xdd\xbc\x1a\x41\xcf\x27\xee\x92\x5b\x85\xf0\x6a\x2b\xca\ +\xe9\x44\xf6\x03\x08\x00\x89\x28\x7d\xf0\xd4\x29\x4e\xb0\xc9\x2c\ +\xbe\x73\xd9\x96\xcd\x9b\x72\x8b\x8f\x6c\xc8\x4c\x8c\x96\x29\xef\ +\xdf\xce\x0c\xa7\x79\xd8\x99\x53\x2f\x93\x65\x99\xc7\x86\x58\x11\ +\x4c\x9b\x62\x05\x10\x5d\x56\x56\x16\xa3\x52\x45\x12\xc7\xa5\xb1\ +\xe2\xf1\xf9\x51\x5e\xed\x41\x46\x81\x93\x2c\xde\x52\x1d\xff\xd5\ +\xca\xea\x1e\x1f\x2e\xad\x3b\xd3\x1f\x37\xee\xa5\x55\x5b\xb2\xbe\ +\x9b\x33\xef\x97\xeb\xc1\xfc\xe8\x45\x0f\x16\xae\x1e\x0b\xb1\x47\ +\xd5\x38\x1c\xb6\xe6\xb6\xdb\xea\x02\x8a\x8a\x8a\x0a\x3b\x98\x6b\ +\x79\x2c\x80\x78\xbf\xdf\x67\xc8\x2d\x71\x9b\x36\x1c\x96\xce\x9d\ +\xff\xcb\x8a\xdb\x11\x74\xd9\xb4\x42\xe7\xf7\xdf\x42\xef\x2c\x71\ +\xee\x71\xa7\x8d\x58\x55\xf1\xcb\x21\x63\xe8\xf1\x98\x10\xf4\x92\ +\xe3\xed\x69\xfb\x0d\x25\xad\xe9\x67\xdb\x25\xda\xaa\xdf\x0d\x00\ +\x35\x18\x0c\x0e\x30\x66\xae\x08\xc1\x38\xa9\x6c\x00\x59\x00\x32\ +\xc1\xf2\x7e\x1d\x05\x70\x44\xbb\xf2\x92\x09\x20\x67\xde\xdc\xaf\ +\xf7\x6c\x5c\xfc\xc1\xd1\xc1\x5d\xa1\xb4\x76\xfe\x38\xdc\xc6\x84\ +\xfe\xfd\xfb\xa7\x80\xcd\x65\x0b\x42\x8f\xe6\x6d\x94\xea\x01\x88\ +\x4e\xfa\xe8\x34\x71\xf2\xac\x1b\x87\xf4\xef\xd7\xea\x14\x25\xc9\ +\x31\x56\x5c\x35\xa1\x1b\xfe\x76\xc1\x00\x0c\x48\x8b\x87\x41\x73\ +\xb7\x15\x63\x32\x54\x50\xac\xdc\x9e\x85\xa7\x3f\x5d\x85\x4d\xfb\ +\xf3\x9b\x5d\x37\x00\x74\x48\x8a\xc5\x73\x77\x5f\x86\xc1\x7d\xba\ +\x04\x83\x04\xc1\x5c\x78\x09\xc0\xfe\x4f\x98\x5b\x2f\x03\x25\x76\ +\x4f\x88\xab\xaf\x78\xaf\x56\x02\x40\x11\x00\x19\x0d\xa0\x64\x59\ +\xfb\x5e\x82\xaa\x2a\xa8\x2c\x2f\x96\x7b\x0c\x3e\xff\x16\xb0\xc4\ +\x6a\x11\xe1\xc6\xf4\x04\x90\xde\xf6\x61\xeb\xd6\xad\x5b\xb2\x3d\ +\xa9\xe7\xd8\xbc\x12\xa7\xc4\x7d\xbe\xbb\xa7\x18\x94\x55\x4b\xe7\ +\xed\x55\x14\x45\xf4\xb8\xaa\x40\x7d\xf0\x38\x65\x67\x6d\x08\x60\ +\xc5\xd5\x56\x1c\x44\xea\xc0\x40\x84\xbf\x7b\x19\x80\x8a\x27\x1e\ +\xbd\x77\xfd\xc8\xee\x3e\x87\xe8\xdb\xbe\x66\x9f\xbf\xe3\xdb\x1f\ +\x7c\x79\x05\x18\x17\x15\x09\x36\x26\x3c\xea\x3d\xaa\xa6\xa6\x26\ +\x46\x55\x14\x72\x2c\xfe\xf3\x8a\xa2\x60\xd3\x81\x6a\xeb\x87\x8b\ +\x2a\x7a\x67\x3a\xbb\x3f\xb4\x6e\xeb\xd1\x4f\xc7\x8f\x1f\xdf\x15\ +\xa1\x41\x8d\xdc\xd6\x11\xc8\x02\xe0\xac\xab\x8d\x50\xe9\x89\xf5\ +\xed\xa7\xaa\x82\xda\xda\x5a\x1b\xd8\x86\x1d\x03\x20\xce\xef\xf7\ +\x19\x54\x55\xc1\xf6\x23\x35\xb6\x5a\xa9\xcb\x55\xff\x7e\xe5\xad\ +\xf3\xc0\x40\x24\x0a\x61\x02\x30\x9b\x02\x91\x30\xde\x65\x62\x9e\ +\xab\x18\x45\x51\x64\xf1\x9d\xbc\xde\xb0\x00\x12\x90\x40\x5a\xd3\ +\x4f\xb4\x61\x09\x84\xa9\xb0\x5a\xf8\xbb\x51\x4a\x0d\x06\x03\x67\ +\x96\x78\xac\x14\xd7\x10\x14\xa1\x7e\xbc\x94\x08\x2c\x99\xda\xff\ +\xf3\x3e\x7c\xef\xcd\x5d\x72\xf5\x8e\xd2\xa8\x08\xa9\x55\xe3\xba\ +\x33\xd3\x1f\x7d\xeb\xed\x77\x4f\x40\x10\x40\x44\x95\x63\xa3\x2e\ +\xbd\xe1\xc4\x1e\xa2\x55\x10\x27\xdb\x7b\x9d\x77\xdb\xb5\x37\x06\ +\x8c\x14\xad\x05\x11\x00\x68\x17\x6b\xc5\xcc\x09\x3d\x50\xe6\xe8\ +\x84\x15\xdb\xb3\xb1\x27\xa3\x04\x7e\x85\x00\x12\x85\xa4\xd9\x47\ +\x6a\x9d\x1e\x7c\xb9\x68\x07\xd6\xed\xcc\xc4\x8c\x49\xfd\xd1\x31\ +\xc9\xde\xac\xba\x23\x2c\x26\x3c\x74\xd3\x34\xcc\x5d\xb4\x11\x3f\ +\xaf\xdc\x04\x45\xb3\x79\x48\x9a\x2a\x0a\xdc\x3b\x4b\xd2\xdc\x8c\ +\xa9\xca\x54\x59\xdc\xf6\x01\x02\x42\x74\x69\x4e\x64\xf6\x0c\xe1\ +\x86\x75\x6e\x0f\x51\x15\x96\x46\x45\x65\x40\xb5\x66\xe3\x26\x5c\ +\x75\xf9\xa5\x43\x9f\xdc\xb9\xbc\x3f\xf5\x94\xe7\x03\xa8\x3b\x51\ +\x6a\xac\x30\x06\x4c\x1e\x34\x18\xf5\xd2\x1b\x1f\xdf\xbc\x64\x9b\ +\x33\x91\x0a\xba\xe5\x41\x9d\x3c\x55\x17\xde\xf4\xdc\x16\x30\xd0\ +\x10\x5d\x75\xf5\xba\xce\x53\x9e\x90\x90\x52\x4a\x09\x21\xfc\xe5\ +\x79\x04\xaa\x3e\x9b\xb0\xb5\xa6\xa6\xc6\x7a\x64\xf7\x9a\x23\xed\ +\xe3\xc6\x0f\x2e\x28\xf3\x10\x00\x38\x9a\xef\x94\x47\x4e\x1c\x7a\ +\x4e\x5c\x5c\xdc\x4f\x15\x15\x15\x6e\x04\xc1\xc8\x02\x20\xd2\xe3\ +\xf1\xd8\x54\x55\x95\xc4\xb1\xb9\x64\x74\xa4\xdb\xef\xae\x72\x83\ +\x68\x47\xa6\x42\x33\x89\x48\x06\x89\x12\x83\xe4\x53\x64\x39\xbb\ +\x4c\x8a\x38\x5a\xe0\x22\x6e\x6f\x28\xf7\xbb\x2f\xab\xd6\x98\x55\ +\x24\x0f\x7e\xfc\xdf\x5f\x7c\xba\x6a\xf1\x9c\xe7\x9e\x7e\xe2\x1f\ +\x6b\xc1\x1c\x29\xb8\xba\x86\xe7\xfe\x8a\x74\xbb\x5d\x56\xf0\x38\ +\x06\x8d\x6e\x3e\xd7\xee\x2a\x29\x29\xf3\x10\x42\x98\x3d\x83\xb5\ +\x4d\x39\xbf\xd7\xc4\x74\xa7\x80\xf6\xce\x92\xa4\xca\x92\xac\x44\ +\x47\x81\x7c\xb6\xa2\x50\x05\x9b\x0b\x00\x60\x51\x14\x45\xe6\x6d\ +\x2e\xdd\x52\x15\x37\x63\xc2\xd4\xbb\x67\xcd\xda\x56\xfa\xf9\xe7\ +\x9f\x6e\x47\xa8\xda\x90\x53\x73\x58\xfc\x70\x36\x10\x2b\x80\x28\ +\x55\xf5\x87\x8c\xaf\xdf\xa7\x1a\xc1\x80\xd5\x05\x36\xc7\x42\x38\ +\x5a\xda\x5a\x8b\xe8\x58\x00\x00\x20\x00\x49\x44\x41\x54\x0a\x1b\ +\x08\xa5\x6d\x33\xd9\x80\x18\x59\xdf\x32\x52\x21\x49\x92\x17\xa1\ +\x71\x52\x7c\x1e\xf1\xca\x44\xa7\x0c\x3e\xde\x35\x08\xba\xda\x2b\ +\x00\xc8\x33\x8f\xff\x7d\xf3\x6b\x1f\x2f\x9e\xf4\xeb\x56\xb5\xbe\ +\x8b\x6b\x13\x94\x53\xec\x24\x63\xc7\x9e\x31\x08\xc1\x98\x2a\x91\ +\xb9\x68\x54\xd7\x18\x0e\x40\x02\x51\xe7\xc3\x46\x9c\x77\x7e\x7a\ +\x6a\x97\x90\x2f\x9b\x02\x91\xa6\xbe\x4f\xb4\x5b\x31\x73\x62\x2f\ +\x94\x0f\xe9\x8c\x15\xdb\xb2\xb0\xe3\x48\x31\x14\xa8\x9a\xe1\x5a\ +\x05\x28\x90\x91\x5f\x89\xe7\x3f\x5f\x85\xb1\x03\x3a\xe3\xe2\x89\ +\x7d\x11\x61\x31\x36\x5c\xa9\x50\xf7\x8c\xa9\x23\x91\xda\x21\x01\ +\x1f\xcc\x5d\x0a\x97\xdb\x03\x96\x61\x57\x03\x0e\xcd\x9b\x0a\x2a\ +\xb3\x6d\x50\x89\xbb\xe8\x0a\x36\x10\x1e\xef\x41\x78\x3c\x8b\x1a\ +\x72\x4f\x20\xaf\x16\x34\x9b\x8e\x4a\x01\x0a\x94\x96\x14\x92\x84\ +\x4e\x83\xa6\x95\x1e\x59\xb1\x09\x6c\xa3\xe6\x86\xb0\x13\x41\xe2\ +\x84\xb2\x00\x88\xb4\xd9\x6c\xb1\xa6\xa8\x94\x01\xe5\x55\x95\x81\ +\x9b\xfa\x76\xb1\xfa\x17\xff\xf4\xd9\x76\x55\x55\x79\xe0\x1e\x8f\ +\x22\xd7\xdb\x3c\x4e\xa8\xbd\xa3\x25\xa4\x03\x11\x3f\x82\x92\x08\ +\x07\x90\x08\x00\x91\x4f\x3d\xf6\xc0\xfa\xaf\x17\xac\xef\xfa\x7d\ +\x89\x12\xcb\x9f\x5d\xb7\xdf\x93\xfc\xe4\xb3\x2f\x9f\xaf\xb9\x24\ +\x72\xe3\xb6\x19\x80\xc5\xe7\xf3\x69\x9b\x78\x70\x2d\xb8\x6b\x8a\ +\x3c\x57\x5f\x32\x71\x2b\xea\x67\xf7\x05\x00\xd8\xed\x76\xe3\xb4\ +\x69\x17\x24\x8d\x3f\x67\x5a\xe7\xb8\xe4\xae\xb1\x7b\xf3\x4d\xd1\ +\x07\x73\xdd\x01\x63\x65\x9d\x53\xc1\xc7\x0b\x8b\x3a\x5e\x3b\xe9\ +\xca\xc7\x67\x1e\xd8\x73\xef\x37\xdf\x7c\x7d\x00\x6c\x6c\x15\x08\ +\x46\x4f\x9f\x8f\xa7\x8f\x09\xb6\x7d\x68\xef\x56\xc7\x6d\x37\xce\ +\xd8\x1d\xa6\xed\xa6\xfc\xef\xf9\xf7\x5c\xdd\xe7\x42\x30\xe2\xbf\ +\x06\x41\xbd\x79\x84\xaa\xf8\x65\xb1\xcd\xef\x7e\x2f\x6f\x77\xc3\ +\xed\x8f\x3e\xb6\x77\xef\xee\xfb\xb6\x6c\xd9\xa2\x77\x4b\x0e\xb8\ +\x24\x37\x63\x1e\xe8\x3d\xcd\x4c\x00\xac\xaa\xa2\x4a\x62\x7b\x8a\ +\x42\xf9\xfc\x14\x37\x23\xf6\x6c\x2b\x6d\x20\x27\x58\x3b\x7c\x4c\ +\xc4\x33\x81\xb7\x88\x54\x0a\x42\x08\xff\x2d\xc5\x20\x5c\x6e\x07\ +\xe1\xc4\xbd\x06\x0d\x08\xcd\x49\xc7\x5d\xb0\xe4\xe2\xe2\x62\x73\ +\x55\xe1\xbe\x92\x48\x4b\xaf\xce\xb5\xce\x96\x7b\x66\x79\x69\x74\ +\x82\xc9\x64\x8a\xf4\x7a\xbd\x5c\x92\xd6\xbb\x65\x87\xa5\x10\x48\ +\x0f\x09\x1c\x94\x8c\xed\x47\x8f\x18\x17\x36\x67\xff\xb1\xe4\xb9\ +\xe2\xdf\x25\xd8\x23\x30\xe3\xac\x3e\x78\x70\xe6\x48\x0c\xed\xd5\ +\x1e\x46\x03\xb7\x2f\x10\x2d\x19\x23\xc5\x9a\x1d\x99\x78\xfc\xbd\ +\x25\x58\xb3\x3d\xa3\xf1\x06\x05\x1a\x39\x30\x1d\x4f\xfd\xed\x0a\ +\x24\x27\xc4\x68\x91\xe8\x41\x35\x95\x04\x04\xd4\x53\x81\x88\x75\ +\xc2\xec\x24\x44\xb8\x87\xa9\xbb\x34\xbb\x88\x44\x20\x49\xb2\x60\ +\x0f\x91\x98\x0d\x45\x66\xea\x2c\x59\x96\xb0\x7d\xf7\x6e\x9c\x73\ +\xd6\xe4\x11\x60\x39\xb2\xac\x38\x01\x6a\xac\x30\x11\xd5\xdc\xb0\ +\x66\xbb\xfb\xde\xfb\x47\xec\xce\xf2\xc6\xaa\x54\x05\x2f\xfd\x3a\ +\xb8\x2b\xdf\x7e\xeb\xd5\x5d\x60\xea\xaa\x2a\x04\xc1\x43\x3c\x47\ +\xba\xad\x9e\xee\xa7\xb7\x89\x88\xea\xac\x4a\x97\xcb\x55\xb5\x73\ +\xd3\xd2\x03\x9d\x92\x4c\x2a\xef\xef\xd1\xfc\x5a\xd2\xb5\xe7\xc0\ +\x11\x60\x2a\x9a\x08\x08\x69\xe3\x15\x45\x31\xa9\x50\x89\x38\x3e\ +\x8c\xeb\x0f\x6c\xc0\x5c\x7d\x10\xc8\xed\x55\x5d\x5d\x5d\xf6\xf5\ +\xd7\x5f\x1e\xbe\xf5\x86\x2b\xd7\x5c\x71\xfe\x88\xc5\x05\x5b\x3f\ +\xde\x3c\xf3\x4c\x63\x55\x54\xa4\x0c\xb1\x9e\xaf\x57\x94\x24\xdf\ +\x76\xef\x53\xcf\xf5\xee\xdd\xbb\x03\x82\xb9\x85\xf8\x22\x34\x29\ +\x8a\x62\x10\xef\x57\xa9\x0a\x42\x02\x6d\x73\x3b\x0f\x77\x6e\x28\ +\x6e\x66\xd1\x3b\x42\xf0\x93\xf9\x7c\x60\x8b\xdd\xa0\xaa\xaa\x24\ +\xb6\xe9\x53\x14\x7c\xb5\xb2\xa2\xf3\x2b\x6f\x7f\xf5\x6c\x5c\x5c\ +\x1c\x8f\xe2\x17\x23\x90\x65\x34\xa1\xae\x10\x48\x6f\x87\x33\x52\ +\x1a\x3a\xbe\xaa\xaa\xf2\xe0\x56\x51\x9f\xae\xb9\xdf\x51\xe8\xc7\ +\xa4\x39\xa5\xed\x4d\xd3\x20\xb5\xa6\x3f\x2a\x28\x9f\x0b\xe1\x5c\ +\xb2\xc5\x38\x29\x31\xab\x03\x97\x54\xaa\x10\x4c\x0f\x54\x0a\xa0\ +\x6c\xc1\xf7\x5f\xec\xeb\xd1\xc1\xa8\xb4\xe6\x5d\xca\x6b\x54\x6b\ +\xff\xfe\xfd\xdb\xa1\xbe\x04\xd2\xe8\x7c\xd0\x6f\x74\x9c\x83\x89\ +\x96\x6c\xa9\xa3\xd3\x7a\x0f\x95\x33\x4a\x9d\x61\x53\x91\x1c\x0f\ +\x10\x01\x80\xf8\x68\x2b\x66\x9e\xdd\x0f\x0f\x5f\x33\x16\xc3\x7b\ +\x77\x84\xd1\xa8\x6d\xde\x1a\x98\x38\xdd\x1e\xcc\x59\xb4\x0d\xcf\ +\x7f\xba\x0c\x99\xf9\x15\x8d\x37\xaa\x51\xa7\xe4\x04\x3c\x7b\xef\ +\x55\x18\xd0\x33\x35\x60\x44\x97\x24\x0d\x10\x48\x10\x40\x02\x76\ +\x0d\xcd\xce\xc1\x0c\xe9\x3c\xdd\x89\xa4\xd9\x49\x24\x2d\xd7\x97\ +\x00\x3c\x12\x81\x04\x49\xb3\xaf\x10\xd4\xd6\xd5\xa1\x47\xd7\x4e\ +\x71\xc4\x18\x9d\x0a\xb6\x28\x0d\xc7\x3b\x6d\x04\x1f\x3a\x84\xaa\ +\x75\xac\x00\x22\x47\x8e\x9d\x32\x71\x6f\xa6\xc3\x40\x35\x7d\x78\ +\x97\x24\x0b\xdd\xb4\x76\xf1\x01\xb0\x0d\x8a\x83\x07\x17\x7b\xeb\ +\x19\xcc\x4f\xc0\x7b\xb6\x9a\x84\xf7\x11\x39\x6d\x37\x18\xf8\xf1\ +\xdc\x5a\xd5\x2f\x3c\xfb\xf8\x96\x33\xba\xd0\x1a\xde\x67\xaa\x2a\ +\xf0\xaa\xd6\x24\x8b\xc5\xc2\x37\x71\xbe\x10\x0c\x94\x52\x99\xaa\ +\x2a\x11\xef\x25\x12\x51\xb5\xba\xc4\x3c\x60\x3c\xc9\xa3\x98\x0b\ +\xac\x58\x55\xd5\x8a\xf7\xdf\x7d\x73\xff\xac\x2b\xce\x59\x3e\xb9\ +\xb7\xa3\xa8\x53\x82\x51\xe5\xf5\xf8\x7c\x7e\x7c\xbd\xa2\x3c\xed\ +\xa5\x37\x3e\xb9\x0f\xf5\xed\x21\x06\x55\x55\x64\xb1\x5d\xaa\x2a\ +\x90\x24\xc9\x0f\xb6\xf1\x97\x20\x98\x46\x86\xeb\xb7\xb3\x10\xd4\ +\x71\xeb\x4b\x96\x50\xc4\x44\x94\xa5\x60\xbf\x33\x3f\xde\x95\xe8\ +\xfb\x4b\x55\x05\x75\x4e\x2f\xbe\x5f\x5b\xd3\x63\xee\x8f\xcb\x1e\ +\x07\x33\xb8\x8b\x63\x15\xd8\x30\x5a\x01\x22\x32\xf7\xac\x0a\x14\ +\xaa\x72\x66\x34\x34\x88\x50\xfb\x69\xf5\xef\xd6\x9c\xd2\x56\xdd\ +\x78\xa1\xef\x7b\x73\xfb\xa3\x19\xd2\x11\x74\x24\xd1\xbb\xb5\x8b\ +\xf1\x34\x1c\x54\x44\x95\x17\x5f\xdf\x15\x00\x2a\x96\x2f\x5b\x96\ +\xd1\x21\xc6\xe7\x6a\xcd\xbb\x54\xd5\x29\xa6\xee\xdd\xbb\x27\x22\ +\x3c\x80\x34\x38\x27\xc2\x01\x88\x19\x40\x6c\xaf\xbe\x63\x26\xe4\ +\xd7\x11\xac\x3a\x5c\x8a\xaf\xff\xc8\xc5\xf2\x7d\xa5\x38\x5a\xea\ +\x84\x5f\x00\x93\xe6\xa8\xac\x9a\xfb\x5d\x5c\xb4\x15\x33\x27\xf5\ +\xc7\x23\xb3\x26\x60\x54\xff\x4e\x30\xc9\x92\x60\xf4\x06\x72\x0b\ +\x2b\xf1\xd2\x17\xcb\xf0\xd9\xcf\x1b\x51\xeb\xf4\x84\xaf\x54\xa0\ +\x48\xab\x19\x0f\xdd\x7a\x09\xce\x9f\x30\x8c\x79\x59\x49\x12\xcb\ +\x7f\x25\xe9\xf2\x5d\x71\xef\x2a\xd1\x03\x4b\x22\x41\x89\x23\x00\ +\x34\x41\x60\x91\x35\xa0\xe1\xa0\x23\xcb\x12\x3c\x6e\x07\xac\x71\ +\x3d\xce\x02\xdb\x44\x4e\x94\x37\x96\x68\xff\xe0\x5e\x46\x36\x6a\ +\x88\x4a\xf1\x78\xfd\x9a\x21\x4f\x45\x9f\x4e\xc4\xf9\xc5\x67\x1f\ +\xee\x41\x70\xc3\x15\x75\xa6\x81\xd3\xfc\xda\x1a\x78\x70\x12\xbc\ +\xb3\x28\x42\x17\x4d\x00\x44\x3c\x1e\x4f\x35\xfc\xd5\x0e\xde\x67\ +\x55\x55\xb1\x2f\xd7\x17\x33\xfb\x8e\xbb\x06\x23\xd4\x18\x68\xa0\ +\x94\x4a\xec\x00\xb2\x60\x91\x24\x49\x01\x5b\x78\x62\x06\xe2\x2c\ +\xd4\x37\x52\xe6\x40\x4b\xf4\x58\x51\x51\x51\x76\xf9\x85\xe7\xac\ +\x18\xd5\xcd\x59\x66\x35\x49\x81\xba\xaa\x6a\x3c\xa8\xf6\x45\x0f\ +\x1c\x31\x62\x44\x2a\xd8\xa6\xcc\x3d\x9d\x0c\x94\x02\xaa\x16\x79\ +\xcd\x8b\xc1\x60\xf0\x81\x71\x8f\x45\x5a\xdb\x7a\xaf\x9b\x86\x00\ +\x84\x7f\xc7\xdf\x33\x17\x0c\x80\x38\x80\x04\xe2\x08\xa8\xd0\xa6\ +\xd9\xc8\xbc\x1e\x55\x55\x45\x51\xb9\x4b\x5a\xb5\x0f\x43\xe6\x2d\ +\x58\xfa\x37\x04\x8d\xea\x81\xf7\x45\xeb\x40\x84\x50\x5d\x1f\xb5\ +\x99\x25\x4a\xcd\xc2\x0f\x8c\x90\x7b\x9b\x5b\xda\xe6\x6c\x65\xd4\ +\xaa\xfe\xd4\x67\xcc\xeb\xb9\xb2\x6b\xc4\xc1\x45\x0c\x6a\xe5\x12\ +\x09\x5f\x13\x0e\x55\x55\x6b\xfc\xee\xaa\xba\xd6\xbc\x4b\x55\xad\ +\x6a\xec\xd8\x29\x35\x01\xc1\x79\xd0\xac\x80\x57\x3d\x80\xc8\x60\ +\x93\x29\x61\xdc\xb8\xe9\x3d\x5d\x3e\x66\x30\x56\x01\xe4\x56\xb9\ +\xb0\xea\x50\x19\xbe\xde\x98\x87\x65\x7b\x4b\x71\xb4\x24\x08\x26\ +\xc7\x0b\x44\x00\x20\x36\xca\x8a\x19\x93\x06\xe2\xb1\x9b\xcf\xc6\ +\x98\x81\xa9\x30\x1b\x0d\x81\x44\x8a\xa0\xc0\xa6\x3d\x99\x78\xfc\ +\x9d\x9f\xb0\x62\xe3\xfe\x26\x27\x14\x21\x04\x57\x4d\x1f\x8f\x3b\ +\xae\x3a\x1f\x56\xb3\x11\x44\x53\x57\x49\x10\xd4\x5a\x92\xa4\x79\ +\x69\x71\x97\x5f\xcd\x2b\x8b\x04\x81\x83\x83\x88\x24\x66\xfd\x95\ +\x43\x5d\x81\x77\xef\xdb\x87\x71\xe3\x27\x8d\x06\xe3\xec\x2c\x61\ +\xc6\xf6\x58\x49\xe4\xf8\x02\xe7\x9b\x5f\x72\xc9\x25\xdd\x72\xca\ +\xd4\x58\x91\x9b\xb0\x90\xba\x9a\xdc\xdc\xdc\x72\x04\x75\xe3\xa2\ +\xd1\x3c\x5c\xca\x8b\xb6\x4a\x9c\x13\xd3\x83\x48\x0d\x80\xda\x43\ +\x7b\xb7\x64\xa5\xc4\x9b\x03\xfd\xde\x9b\x51\x65\x38\x73\xe2\xf9\ +\x67\x22\x54\x8d\xc4\x16\x82\x8e\x4b\x94\x88\xa4\x80\x6d\xba\x65\ +\x08\x26\x94\x14\xd3\xcd\x73\x69\x84\x97\x3c\x00\x45\xaa\xaa\x56\ +\xde\x7e\xe3\xe5\xbf\x4f\x1e\x64\x0c\x91\x7e\x96\x6e\xae\x88\x7f\ +\xf8\xf1\x97\x6e\x42\x68\x8a\x6c\x03\xa5\xcc\x36\x20\x16\x59\x96\ +\x7d\x60\x12\x88\x3e\xa1\xa4\x3e\x43\xb1\xbe\xe4\x09\xa5\x00\x4c\ +\xfa\xe0\x6e\xd9\x0e\x04\xd5\x58\x2a\xa5\x41\x09\xc4\x6a\x22\x98\ +\x31\xb1\x9d\xc2\xff\x7f\x20\xdb\x61\xca\x77\x26\x4d\x7a\xeb\x9d\ +\x8f\x2f\x43\xa8\x7b\x6f\x48\xc0\x5f\x0b\xa4\x68\x22\xb6\xc7\xb8\ +\x6b\xda\xe0\xe6\x53\x4f\x5a\xf9\xb3\x4b\x20\xad\x94\xa8\x5a\xc2\ +\xbf\xe9\xbc\x15\x39\x88\x78\xc1\xd6\xb5\x13\x3c\x1b\xb6\xe2\xf3\ +\xb4\xe6\x5d\x2a\x6b\xdc\x48\xee\xd0\x25\x19\x41\xb5\x63\xb3\x8e\ +\x48\x08\xdc\x20\xba\xef\x4a\x91\x9d\x87\x74\xeb\x3d\xc8\xc8\x25\ +\x0c\xb1\x28\x94\x22\xa7\xd2\x85\xdf\x0e\x96\xe1\xcb\xf5\xb9\x58\ +\xbc\xbb\x18\x87\x8b\x6a\x5b\x9d\x71\xb7\xa1\xef\x62\x6c\x56\xcc\ +\x98\x3c\x08\x4f\xdc\x3a\x09\x63\x06\x76\x85\xd9\x24\x07\x80\xc4\ +\xe3\xf5\x63\xfe\xf2\x2d\x78\xf6\x83\x5f\x70\x28\xbb\xa8\xa9\x3e\ +\x62\xd4\xe0\xde\x78\xfc\xae\xab\x91\x14\x67\x67\x00\xc0\x63\x3e\ +\x74\xaa\xad\x50\x97\x5d\x29\xa0\xb6\xe2\x51\xe8\x21\x36\x15\x41\ +\x9d\x45\x08\x41\x69\x59\x39\x86\x0c\xec\xdb\x1e\xb2\x25\x05\x6c\ +\x03\x39\x6e\x59\x7a\xc3\x44\x00\x07\x22\x9d\x2f\x9d\x71\xc3\x59\ +\xdb\x0e\x39\xac\xdc\xa7\x3b\xc2\x22\xa1\xa2\x38\xab\x08\xa1\x69\ +\xd6\x5d\xd0\x05\x0a\xb6\x55\xe9\x83\x93\x4e\x0a\x11\x55\x59\x81\ +\x94\xf1\x5f\x7c\xfa\xfe\xae\xfe\xa9\x46\x27\xef\xbb\xd7\xe7\x87\ +\x64\x8e\x69\x8f\xa0\x1b\xaf\x11\xda\x89\x71\x7a\xdf\x77\x4d\x85\ +\x55\x8b\xfa\xe9\xe6\x79\xdc\x09\xdf\xd8\xc5\xcd\xbd\x00\x40\x49\ +\x71\x71\x71\x69\x41\xc6\xd6\xdc\x78\xbb\x31\x50\x5f\xad\xcb\x0b\ +\x6a\xb4\xa7\x21\xe8\x4a\x6c\x06\x93\x7e\x08\x74\x6d\x4b\x92\xac\ +\x84\x69\xbb\xac\x05\x85\x9f\xbf\xc2\x5d\xb2\x45\x09\x53\x53\x4f\ +\x06\x63\x13\x1c\x75\x1e\xf4\xea\x68\x50\x07\x75\x8b\x08\xc4\x0a\ +\xac\xd9\x59\x6e\x8b\xeb\x32\xe2\x9a\x7b\xee\x7b\x70\x34\x8e\xd3\ +\xf9\x2a\xfa\xd8\x94\x66\xdf\xdb\xec\xd2\x36\xa7\x2c\x13\x15\x5a\ +\x13\xbf\xd3\x6a\x3e\x4e\x0f\x22\x5c\x1a\x71\x83\xfa\xbd\xad\x79\ +\x97\x4a\x87\x1b\x09\x89\xc9\xf1\x08\xe7\xf4\xd0\x88\x14\x22\x4e\ +\x92\x80\xfd\xa3\x43\xda\x90\xf1\x4e\x1a\x01\xaf\x8f\xd6\x4f\xd9\ +\x2e\x14\x55\xa5\xc8\x2b\x77\x61\xe5\xbe\x62\x7c\xba\x3a\x03\x0b\ +\x77\xe4\xe3\x60\x81\x03\x3e\xa5\xfe\xc0\xb4\xd6\x7b\xcb\x6e\xb3\ +\x62\xc6\x94\x33\xf0\xc4\x6d\x53\x71\xe6\xe0\x74\x98\x8d\x06\x48\ +\x84\xa9\xa2\x8a\xcb\x2b\xf1\xe6\x57\x4b\xf1\xd1\xfc\xdf\xe1\xa8\ +\x75\x36\xdc\x00\x80\xce\x29\x49\x78\xfa\xbe\x59\xe8\x9d\xde\xb9\ +\x7e\xa0\x60\x40\xc2\xd0\xfd\x5f\x94\x36\x64\x39\xa8\xc6\x0a\x18\ +\xd2\x83\x80\xe3\xf1\x7a\xa1\xfa\x9d\x92\x6c\xeb\x3a\x16\x4c\x2d\ +\xc0\xf3\x02\x1d\x2f\x12\xbd\x5f\x78\xac\x81\xd5\x16\xd3\xbe\x6b\ +\xa5\xc3\x15\xf0\xe9\xee\x9f\x66\xf5\xce\xfb\xe6\xe3\xed\x08\x3d\ +\x49\x50\x7f\x04\xed\x9f\x82\x74\x81\x86\x22\xc7\x55\x07\xa0\xee\ +\xc8\x91\x23\x65\x51\x26\x57\x8d\xe8\xd3\x9e\x5d\xaa\xc4\x4c\x9b\ +\x36\x2d\x15\x82\x1d\x02\x80\xa4\x8f\x3d\x20\xac\x4e\xd1\x30\xc9\ +\x81\x89\xab\xfd\xaa\x10\x8c\x41\xe1\x80\xc2\xcf\x46\xa9\x78\xf9\ +\x85\x27\xb7\x8c\xee\x65\x76\x86\xb4\x5d\xe2\x8f\x9d\x3e\x7d\x7a\ +\x3a\x82\x12\x90\x81\xaa\xfc\xb8\x53\xa1\x6d\x06\x5e\xe1\xda\x6e\ +\x69\xa9\x43\xe8\x51\xc3\x81\x04\x98\xcc\xb3\x94\xb5\xe7\xf6\xf8\ +\xf0\xdb\xea\x3f\xdc\x49\x86\xac\xda\xb8\x68\x43\xe0\x3d\xe6\xaf\ +\x2a\x88\x9f\x7c\xe1\x8d\xf7\x9f\x77\xde\x79\x3d\x10\x6a\x54\x37\ +\x42\xf3\xfc\x69\x2e\x13\xc4\x54\x84\x42\xcc\x46\x23\x00\xd2\xea\ +\x38\x90\xb6\x2a\x81\xd0\xd6\x9d\x07\xd2\x1a\x9d\x9c\xce\x46\x28\ +\x3a\x9b\xf8\x00\x78\x9d\xce\x5a\x97\x51\x6e\xf9\xfb\xb8\xdc\x5e\ +\x58\x23\x6c\x36\x84\x4f\x3a\xda\x20\xe9\x01\xc4\x08\x20\x6a\xf8\ +\xd0\x71\x7d\xf7\xe7\xd7\xa1\xa0\xdc\x8b\xcc\x22\x0f\x0a\xca\x7d\ +\xa8\xac\x55\xe0\xf6\xb2\x77\x0f\xe1\xbe\x79\x30\x20\xa5\xc8\x29\ +\xab\xc3\xca\xdd\x05\xf8\x78\xc5\x21\xfc\xbc\x39\x1b\xfb\x72\x2b\ +\x43\xc0\xe4\x58\x0c\xef\xd1\x91\x16\x5c\x31\x79\x30\x9e\x9a\x3d\ +\x0d\xe3\x86\xf6\x80\xc5\x6c\x04\xd1\xfa\xb6\x7d\x7f\x26\x9e\x7c\ +\xfb\x7b\x2c\x5e\xb3\x03\x8d\xe5\xd8\xb1\x45\x58\xf1\xd0\xec\x99\ +\x98\x34\x76\x28\x3b\x4b\x04\xba\x13\x0e\x89\xa4\x9d\x62\xc8\x24\ +\x8e\xa0\xed\x84\x84\xda\x4e\x64\x02\x9f\xdf\x8f\x8a\xca\x6a\x64\ +\xe6\x14\x60\xf7\xbe\x23\xd8\x7f\x28\x13\x6b\x37\x6c\x42\xdf\x01\ +\xc3\x87\x83\x71\x73\xad\x4a\x2d\xd0\x04\x89\xe9\x4b\xcc\x00\x2c\ +\x6e\x9f\x1c\x25\xe6\xfa\x6f\x6f\xf7\xd7\xac\x5c\xb9\x32\x1f\x6c\ +\x63\xe1\x6e\xa2\x62\xb0\x60\x9b\x70\xd9\x6d\x01\xe9\x41\x84\xbb\ +\x39\x3a\x01\xb8\x6a\x2a\x0b\xca\xac\x26\x29\xd0\xff\xcc\x42\xb7\ +\x65\xe4\x98\x09\x3d\x10\x8c\x0e\x97\x99\x0d\x44\x77\x06\x05\xab\ +\x5b\x5c\x7c\x62\x36\x60\x9e\x62\x9e\xab\xcb\xb8\xa1\x92\x4b\x0a\ +\x95\x45\x45\x45\xe5\x46\xe2\x75\x8b\x75\xee\x3c\xe2\xb0\x4c\xbf\ +\x78\xe6\x48\x08\x46\x7c\xca\xa3\xae\x85\xfb\x34\x0f\x30\x7d\x36\ +\x62\x7d\x46\xe2\xa6\x8a\x57\x78\x5e\xcc\x9c\xac\xe9\xcb\x43\xfb\ +\x0b\xc9\x20\xdd\x73\xe7\x0d\x05\xe7\x9d\x61\x70\x4a\xda\x77\xaa\ +\xa2\xe2\xd3\x85\x39\xed\x1f\x7c\xfc\xd5\xa7\xd3\xd2\xd2\x52\x10\ +\x1e\x44\x9a\x67\x0f\xa1\x08\x6d\xaf\xd1\x19\xf6\x17\x3b\x0f\x04\ +\x68\x55\x7f\x8e\x21\xba\xbe\x21\x63\xbb\xdf\x6a\xb5\xca\x5e\x9f\ +\xbf\xc5\xef\x42\x40\xe1\xf7\x79\xfc\xa8\x7f\xbe\x4c\xa3\x24\x6e\ +\x72\x01\x1f\xf2\xa4\x84\xa4\xc8\x0b\xc7\x76\x44\x76\xb9\x0b\xd9\ +\x65\x2e\x64\x97\xbb\x50\x59\xe3\x07\x8f\x32\x30\x1b\x09\xac\x66\ +\x09\x16\x23\x81\xc5\x08\xc8\x12\x05\xa1\x5a\x6c\x84\xc4\x5c\xda\ +\x72\xcb\x6a\x90\x53\xe2\xc0\xef\xbb\x73\xd1\x21\x2e\x12\x3d\x3a\ +\xda\xd1\xab\x63\x1c\x4c\xc6\xc6\x25\xe3\xa6\xa6\xaa\x2d\xd2\x82\ +\xcb\x27\x0d\xc5\xd4\x31\xfd\xb1\x64\xfd\x6e\x6c\xd8\x79\x18\x1e\ +\x0f\x85\xcf\xe7\xc7\x7f\x57\x6d\xc5\x1f\x3b\x0f\xe2\xb2\x73\x47\ +\xa3\x6f\x7a\xa7\xb0\xcf\x4b\x84\xe0\x9a\x8b\x26\xa1\x4b\x87\x76\ +\xf8\xfa\xc7\xc5\xf0\x78\x59\x8e\x22\x0a\x68\x86\x3a\x09\x20\x14\ +\x81\x3c\x59\x92\x02\x55\x01\xdc\x1e\x0f\x6a\xeb\x9c\x70\x38\x6a\ +\x50\x55\x55\x03\xaf\xcf\xa3\x4d\x82\xa0\xff\x77\x4e\x5e\x1e\xfa\ +\xf4\x1d\x9c\xb8\x8b\xa9\x50\x4e\x94\x04\x12\xc8\x43\x64\xb7\xdb\ +\x23\xbd\x0a\x8c\xa2\x4f\x3d\x51\x5c\x9c\x23\xd5\xe7\x6a\x12\xfd\ +\xfe\xff\x6c\xa4\xe7\xb6\x02\x67\x88\xec\xdd\xb1\x29\x2b\xa5\xd3\ +\x85\x7d\x0f\xe7\x54\x03\x00\x2a\xaa\x9c\xe8\xd3\x35\xa5\x1d\x98\ +\x04\xe0\x81\xa8\x46\x12\xc7\x89\x5d\xf4\x9e\x2e\x62\xa6\x5d\x7e\ +\x1b\xbf\x87\x33\x58\xfc\xb4\xc7\x58\xaa\xb8\x5c\x62\x9d\x95\xd5\ +\x4e\xd8\x63\x13\x93\xb5\x7b\xfc\x60\x12\x88\x14\xd4\xe1\xf3\x5a\ +\x25\xfd\xc2\x17\x4b\x73\x7e\x23\xaa\xbb\xea\x3d\x78\x02\x9e\x41\ +\x9c\x24\xd9\x04\xa7\xd3\xe9\x7b\xec\xc1\xd9\x47\x1f\x7a\xe6\xc3\ +\xf4\xf9\xab\xcb\xad\x00\xe0\xf5\x2a\xf8\x6c\x51\x7e\xda\x27\x5f\ +\x2d\x78\x66\xd2\xf8\x21\xf7\xfb\x59\x16\x4e\x7d\x8c\x48\x33\x76\ +\xba\xd0\xf6\x1a\xc7\x8f\x56\xc6\x81\xb4\x59\x00\xa1\x80\xda\x8a\ +\x38\x90\x63\xef\x8f\x1e\x48\xa8\xc1\x68\x36\x2a\xfe\x96\xc7\x81\ +\x44\xdb\xcc\x28\x2b\xcd\xe3\xb1\x44\xcd\xde\xb7\xc2\x01\x88\x25\ +\x2e\x36\xde\x98\x14\x6d\x46\x3b\xbb\x19\xc3\xbb\xc6\x80\x10\xa0\ +\xac\xd6\x8b\xac\x32\x06\x28\x59\xa5\x2e\x54\xd5\xfa\x99\xfe\x4c\ +\x55\x60\x90\x29\xac\x46\xc0\x64\x00\x0c\x12\x20\x4b\x2a\x0c\x32\ +\x03\x16\x85\x52\xe4\x94\x3a\x90\x5d\x52\x85\x15\x3b\xb2\xd0\x31\ +\x3e\x0a\xbd\x3b\xc5\xa2\x57\xe7\x84\x06\xc1\xa4\x39\x42\x73\x64\ +\x84\x19\x97\x9c\x33\x14\x53\xc6\xf4\xc7\xd2\x75\xbb\xb0\x71\xe7\ +\x21\xb8\x3d\x1e\x94\x57\xd5\xe0\xfd\x6f\x16\xa3\x77\x7a\x47\x5c\ +\x39\x75\x2c\xe2\xec\x51\x61\x9f\x3f\x73\xd8\x00\x74\x4c\x4e\xc4\ +\x3b\x5f\x7c\x8f\xf2\xaa\x2a\x96\x24\x91\x00\x6e\xb7\x0f\x4e\x97\ +\x0b\x4e\xa7\x0b\x2e\xa7\x0b\x75\x2e\x17\xdc\x2e\x37\x78\xca\x08\ +\x95\xea\x22\x4e\x03\x4b\x99\xa2\xb4\xac\x1c\x89\x89\x09\x9c\x83\ +\x3b\x2e\x46\xf4\x30\xf1\x1f\x5c\x02\x31\x0d\x1c\x38\x30\xb1\xdc\ +\xe1\x35\xa9\x02\x27\x43\x55\x9f\xc8\x45\x8b\x41\x6a\x7f\x1a\xd5\ +\x95\x48\x5a\x70\x21\x0f\x66\xd2\x1b\x0f\xdd\xb9\x39\x99\x65\x03\ +\x7a\xc9\x8a\x4a\x59\x46\xd2\xea\x3a\x37\xa2\xed\x71\xb1\x60\xd2\ +\x87\x0a\x4d\x1c\x57\x29\x8b\x3d\x08\xd4\xab\x09\x63\xd0\x2d\x40\ +\xdd\x67\xd1\xf6\x14\x6a\xac\x04\xea\xfc\x5e\x67\x1d\xcf\x68\xc0\ +\xc9\xaf\x06\xa2\xd0\xbd\x60\x46\x74\xa2\x6f\x5b\x9b\x1a\xf5\x3c\ +\x6e\x78\xdb\xcd\x95\x10\xb5\x18\x02\x7d\x61\xc3\x06\x84\xb4\x29\ +\xc9\x06\x15\x80\x73\xef\x9e\xdd\xde\xef\x3f\x7f\xe9\xe0\xd9\x97\ +\xde\xd7\x7b\xf9\xd6\x0a\x33\x00\x54\x38\x5c\xe4\x87\x35\xe5\xfd\ +\x17\xfc\xfa\xfb\xc3\xd3\xa6\x8c\x7d\x16\xf5\xcf\x81\xf1\x0b\x75\ +\x87\x25\x5a\xaf\x8f\x8d\xa8\xb0\x74\xef\xd6\x5c\x6a\xc3\xf0\x11\ +\x88\xa7\x68\x09\xa9\xc7\x17\x10\xd9\x5c\x25\x46\x83\x4a\x1b\x3f\ +\x4a\x3c\x1c\xd9\x6d\x46\x14\xe6\x67\xf3\x38\x89\x66\xbf\x98\x01\ +\x08\xd9\xa4\x0c\xc4\x14\x93\x18\x1f\x1b\x1b\xd8\xc2\xf9\x66\x9e\ +\x18\x65\x42\x52\xb4\x09\x23\xba\xd9\x41\x08\x50\x5e\xeb\x45\x56\ +\xa9\x13\x19\xc5\x75\x38\x5a\x54\x83\xaa\x3a\x8f\xc6\xc1\x2b\xe0\ +\x91\xb7\x94\xaa\x30\x48\x14\x06\x19\x30\x48\x14\x46\x19\x28\xad\ +\x70\x62\x77\x46\x31\x2c\x26\x19\x5d\x93\xa3\xd1\x37\x2d\x11\x7d\ +\x53\x13\x61\x36\x85\x66\x24\x6e\xae\xf9\x39\xd2\x6a\xc6\xc5\xe7\ +\x0c\xc3\x94\xb1\x03\xb1\x6c\xdd\x4e\xac\xdb\xbe\x1f\x6e\xb7\x07\ +\xfb\x8e\xe4\xe0\xd9\xb7\xbf\xc5\xc4\x11\x03\x30\x75\xc2\x30\xc8\ +\x72\xfd\xfd\x3c\xad\x53\x7b\x3c\x71\xcf\x4d\x78\xea\x8d\x4f\xb0\ +\x72\xed\x16\xb8\x5d\x9e\xe0\xfb\x0b\x57\x95\x9f\xb6\x08\x68\x4b\ +\x93\x22\xb8\xff\x04\xaf\x3e\x9f\x0f\x91\xd6\x08\xd1\xaf\xfe\x44\ +\xd9\x40\x64\x00\xc6\x6e\xdd\xba\xc5\x56\xd4\xf8\x4c\x9c\x9b\x93\ +\x25\x02\xc5\xe7\xe6\xc0\x11\x72\x30\x13\x04\xb7\xc0\xe3\xf8\x4e\ +\x27\x8b\xc4\x8d\x5d\x8c\xdc\xf5\x64\x65\x65\x55\x8e\x8b\x80\x8f\ +\xaa\x8a\x1c\xb8\x91\x58\xb9\x0a\x46\x81\xa6\xc2\xd2\x4b\x20\x0d\ +\x2c\x91\x10\xf7\x49\x21\x5b\xb0\xe8\x83\xcf\xa5\x1f\x77\x5e\xce\ +\xd1\x92\x04\x7b\xdf\x1e\x25\x15\x4e\xa1\x02\x89\xe7\xc3\x52\x01\ +\xc8\x14\x40\x3d\x09\xa4\x75\x89\x53\x5b\x42\xb4\x9e\x04\x22\x19\ +\x54\x30\xfb\x8e\xf7\xe7\x05\xf3\xab\x7a\xf4\xea\x67\x18\xd4\x6d\ +\x62\xcf\xed\x87\xab\x8c\x00\x90\x59\xe0\x90\xb7\xda\xe3\xc7\x7e\ +\xf6\xd5\xf7\x37\x5c\x7f\xcd\x65\x1f\xa2\x3e\x88\x70\x15\x68\x03\ +\x73\x9a\x36\x67\x7c\xc3\xdf\xdb\xdc\x4e\xb5\xd9\xa9\xab\x39\x2c\ +\xb4\x58\x02\x69\x35\x4f\x47\x74\x25\x70\xb0\x97\x64\xb4\x46\x50\ +\xb5\xa6\xc5\x15\xda\x23\x65\x7a\x74\xc7\xd1\x4a\x84\x4f\x73\xd3\ +\x20\x89\x33\x59\x02\x60\x22\xc6\xa8\x76\x89\x71\xb1\x21\x37\x85\ +\x33\x72\x27\x44\x99\x90\x18\x6d\xc2\xf0\x74\x26\xa1\x94\xd7\x78\ +\x71\xb4\xa8\x06\x47\x0a\x1d\x38\x52\x58\x8d\xf2\x6a\x17\x00\x0a\ +\x9f\x5f\x85\xd7\x17\x04\x15\xce\xc1\x53\xaa\x60\xdf\xd1\x32\xfc\ +\xba\xfe\x08\xac\x26\x19\x03\xba\x25\x62\x74\xff\x8e\x18\xd2\x2b\ +\x25\x00\x26\x2d\xf1\x61\x8a\xb0\x98\x70\xe1\xd9\x0c\x48\x16\xad\ +\xda\x86\xef\x16\xad\x43\x59\x45\x35\xb6\xef\xcd\xc4\x37\xff\x5d\ +\x85\xfb\x6e\xbc\x18\x43\xfb\x77\xaf\xf7\x9c\x2d\x32\x02\x2f\xfe\ +\xe3\x4e\xbc\xf5\xc9\x77\xf8\xe0\xab\x1f\xb5\xbf\x06\x81\x81\x9f\ +\x50\x58\x7f\x38\x05\x10\x61\x1a\x67\x50\x00\x26\x93\x6c\x00\x88\ +\x05\xa0\xc7\x1b\x40\x80\xd0\x94\x06\x86\xce\xa9\xe9\xc9\xe5\xd5\ +\x1e\x99\xdb\x7d\x62\xa2\x2c\x28\x2f\xcb\xab\x44\x78\xdd\x78\x5b\ +\x5d\x7d\xcd\x25\x71\x23\x0b\x80\xc8\x81\x03\x07\x2a\x63\x6c\x06\ +\xbf\x68\xfb\x52\xa9\xc4\x01\xc4\x07\x0d\xc8\x79\x9c\x42\xb0\xb2\ +\xa6\x87\x43\x03\x11\x7d\xbb\x01\xdb\x45\x6d\x8d\xc3\x69\xb6\x4a\ +\xa1\xf5\xd2\xc0\xef\xc3\xf2\x3f\x51\x4a\xa8\xe6\x6b\x1f\xda\x95\ +\x13\x46\x81\xc9\x2b\xb6\x49\x58\xf0\x62\x15\xb4\x3c\x4b\x2f\xbf\ +\xf0\xd4\xce\xff\xbc\xd7\xcd\xda\x29\x29\x39\x2d\xbb\xa8\x56\x02\ +\x80\x3f\xf6\x96\x5a\x13\xc7\x76\xbe\xe8\x99\x7f\xfd\x3b\xe7\xb1\ +\x47\x1f\x5c\x88\xa0\x2a\x8b\x57\xc4\x55\x79\xf5\xe6\xb5\x7e\x7c\ +\x1b\x95\x40\x5a\x7b\x22\x61\x5b\x9d\xc2\x94\x39\x14\xb5\xb4\x4f\ +\xad\x01\xc4\x06\x92\x5a\xca\x00\x0c\xbd\x7b\xf7\xb6\x57\xbb\x64\ +\x5b\x6b\xc6\x36\xca\x0a\x5f\x76\x76\xb6\x03\x4d\x9c\x42\xaa\x27\ +\x0e\x20\x9c\xb3\x35\x41\x8e\x6c\x97\x10\x17\xd7\xc0\xcb\x37\x5c\ +\x51\x42\xb4\x09\x09\xd1\xf1\x18\xd9\x33\x1e\x84\x00\x95\xb5\x1e\ +\x1c\x2e\xa8\xc6\xe1\xfc\x4a\x1c\xc8\xad\x44\x49\x65\xad\xf0\x26\ +\xc1\xcd\x57\x55\x28\x6a\x9d\x1e\xac\xdb\x99\x83\xb5\x3b\x32\x61\ +\x36\x48\x18\xd2\xbb\x3d\xc6\x0e\xea\x82\xe1\x7d\x3b\xc1\x64\x6c\ +\xd9\x59\x29\x16\xb3\x09\x17\x4f\x1e\x89\xf3\xc6\x0f\xc1\x8f\x4b\ +\x37\xe0\xcb\x1f\x57\xe2\x48\x66\x01\x6e\xff\xe7\x5b\x38\x67\xcc\ +\x20\xdc\x7b\xd3\x25\x48\x8a\x0f\x3d\x9b\x5d\x22\x04\x77\xdf\x74\ +\x25\x7a\x75\xeb\x82\x47\x9e\xff\x0f\xea\x5c\x2e\x66\xff\xe0\xef\ +\x1a\x78\x67\xed\xb3\xe0\x08\x41\xf9\xbf\x5a\x7f\x64\x50\x42\x4c\ +\xf6\x78\xea\xad\x32\x40\x33\x40\x1e\x07\xae\x3f\x9c\x1a\xcb\xd0\ +\xae\x7d\xa7\xa4\x43\x47\x9d\x01\x6e\x2e\xd6\x66\x44\x61\x41\x76\ +\x39\xc2\x1f\x76\xd4\x6c\xae\xa2\x0d\x93\x28\x85\xf8\x01\xf8\x6b\ +\x6b\x6b\x3d\x26\x99\xfa\x43\xf4\xef\xc4\xc0\xe3\x3f\x64\x30\x0f\ +\x2c\x89\xd6\x93\x40\x9a\x3d\x14\x7a\x35\x57\xc0\x5e\xd1\xa3\x67\ +\xbf\xa4\x05\x5b\x1c\xa1\xba\x7f\xc5\x27\x26\x0e\x64\xe8\xa3\x6f\ +\xfb\xc4\x13\xd5\x9f\xfa\x27\xb1\x1c\x63\x3c\x5a\x5d\x05\x60\xfa\ +\xdb\x1d\xd7\xaf\x9a\xf3\xfd\x62\xeb\x4f\x35\x86\x94\xaa\x1a\x16\ +\x9c\xfb\xcb\xea\xec\x98\x9b\x2e\x98\x32\xfb\xba\x59\xfb\xf3\xbf\ +\xf8\xfc\xd3\xad\x08\x55\x7f\x36\xa8\x5c\xd7\x9f\xf1\xd1\x84\x00\ +\xf2\x17\x93\x40\xc2\x48\x99\xcd\x79\xe6\xd8\x25\x90\x80\x3a\x1b\ +\x80\xf9\xea\xeb\x6e\x3a\x63\x4f\x86\x23\xb2\x35\x63\x1b\x67\x93\ +\x7d\x07\x0e\x1c\xa8\x42\x7d\x87\x8c\x46\xa9\x9e\x04\x22\x19\x2c\ +\xf1\xf1\x31\x31\x0d\xdd\xdf\xec\x98\x8e\xb8\x28\x33\x46\xf6\x4a\ +\xc2\xa8\xde\x49\x20\x04\xa8\xaa\xf5\xe0\x60\x5e\x05\x0e\x64\x97\ +\x63\x7f\x76\x19\x0a\xcb\x1c\xda\x9d\x02\x07\x4f\x01\x97\xd7\x87\ +\x35\xdb\xb3\xb0\x7a\xdb\x51\x98\x0d\x12\x86\xf7\xeb\x84\x33\xcf\ +\x48\xc3\xb0\xbe\x9d\x61\x36\x35\x5f\xf4\xb7\x98\x8d\x98\x39\x7d\ +\x1c\x2e\x99\x32\x0a\x3f\x2e\x59\x8f\xcf\x7f\x58\x86\xa5\x6b\xb6\ +\x62\xf5\x1f\x3b\x71\xf3\x8c\xf3\x70\xcd\xc5\xe7\xc0\x68\x08\xad\ +\x6f\xca\x84\x91\x48\xeb\x9c\x82\x3b\x1f\x79\x1e\x39\x79\x85\x7a\ +\x0d\x55\xc8\x7f\x02\x00\x43\x43\x6f\x52\x55\x1f\x88\x31\x2a\x91\ +\x7a\xab\xb8\x17\xcb\xf1\xa4\x10\xae\x23\x2e\x3e\x31\xae\x6a\x47\ +\x4d\x60\x61\x45\xdb\x0c\xea\xd1\x9d\x47\xcb\x11\xd6\x2b\xe7\x4f\ +\x4f\xe2\x46\x2e\x4a\x03\x7e\x02\xbf\x2f\x74\x31\xca\x21\x00\x02\ +\x68\xbf\x57\xeb\x17\x6c\x58\xb2\x44\x46\xdb\x3c\x5e\x5d\x7a\x1d\ +\xea\xf7\x23\x84\x4b\x0f\xc6\x63\x84\x76\xa5\x9e\x1a\x22\x50\x5a\ +\x10\x3e\xd4\xf0\x8d\xba\xfe\x12\x16\x38\xe9\xd0\x8a\x0f\x80\x49\ +\x55\xd5\xa8\xdb\x6e\xb8\x7c\xc9\xa7\xdf\x2c\xbc\xe0\xb3\xc5\x85\ +\xf1\x5e\xed\x3c\x9e\x4f\x7f\x39\x98\x74\xf7\xcd\xf7\xff\x73\xff\ +\xbe\x3d\xf7\x6c\xde\xbc\x59\x2f\xc1\xaa\x08\x97\x23\x49\x3f\xbe\ +\x8d\x6e\xf6\xad\xfd\x2d\xda\xea\x34\x0e\xf7\x1b\x37\xe3\xa9\x16\ +\x02\x62\x98\xb3\x80\x02\x01\xc5\x00\x22\x06\x0e\x1d\x37\xfc\xed\ +\x1f\x32\x5b\x54\x27\x27\xab\xc1\x53\x5b\x56\x56\x56\x87\xfa\xc7\ +\x23\x37\xca\x78\xea\x01\xc4\xd0\x2e\xb9\x4b\xb2\xc1\xd0\x38\xd7\ +\xdf\x9a\xc0\xc0\xd8\x28\x33\x46\xf5\x69\x8f\xd1\x7d\xdb\x03\x00\ +\xaa\xeb\x3c\x38\x90\x5d\x8a\xfd\x59\xa5\xd8\x93\x51\x8c\xdc\xe2\ +\xaa\xd0\x07\x28\xe0\xf6\xfa\xb1\x6a\xcb\x11\xfc\xbe\xf9\x10\xcc\ +\x46\x09\xc3\xfa\x75\xc6\xf8\x21\xe9\x18\xd1\x3f\x15\x66\x53\xd3\ +\x19\x7a\x01\xc0\x6c\x32\x62\xc6\xf4\xf1\xb8\xe4\xdc\x31\xf8\x71\ +\xc9\x3a\x7c\x36\x6f\x31\xde\xfc\xf4\x07\x2c\x58\xbc\x1a\x0f\xdd\ +\x7e\x15\x46\x0f\xed\x17\x72\x7f\x8f\xae\x9d\x31\xff\xc3\x97\x70\ +\xef\x13\x2f\x63\xcd\xc6\xad\xc1\x97\xd1\x24\x0c\x4a\x45\xf5\x87\ +\x4e\x22\xa1\x80\xd7\xe3\x02\xe4\x88\x04\x04\xdd\x20\x8f\x17\xd5\ +\xd3\x77\x82\xc8\x26\x45\x09\x32\x85\x91\x66\xf8\x8b\x8b\x8b\x39\ +\x87\x59\x2f\xdb\xea\x71\x7c\x97\x53\x49\xf5\xa5\x01\xaa\xf8\xd5\ +\x10\x09\x44\xaa\x17\x08\xc5\xe3\x14\x82\x95\x34\x7b\x38\x44\x95\ +\x01\x1f\x7f\x76\x95\xcc\x56\xb1\x4e\x8b\xd9\x00\xb7\xb3\xc6\x05\ +\x1d\x70\x07\xe3\x18\xb4\xb6\x29\xd5\xd7\x27\x96\xe6\xfe\x56\xdc\ +\x1e\xd1\x40\xb0\x17\x0d\x69\x53\xcb\x72\x5c\x07\x26\x85\xb8\xc1\ +\xd6\xbe\xa7\xba\xba\x5a\x7d\xe8\x9e\x1b\x16\x3f\xf3\xf2\xe7\xd3\ +\x3f\xf9\x35\x33\x9a\xbd\x2f\xf0\xee\xfc\xfd\x9d\x5e\x7c\xfd\xe3\ +\x7f\x5d\x36\x7d\xc2\x3d\x15\x15\x15\x22\x37\xea\x43\xe8\xd8\x6a\ +\xad\x85\xb6\xd7\xe8\x8b\xd3\xe6\xdf\x1b\xfa\x5c\x8b\x1f\x39\x39\ +\x44\xeb\xff\xc6\xcd\x7a\xac\x19\x1d\xd2\x71\x13\x62\x20\x31\x77\ +\xe5\x8f\x04\x60\xfb\xe7\xe3\xcf\x8c\xdb\xb0\xcf\xd1\xae\x35\xe3\ +\x1a\x15\x69\x42\x55\x69\x6e\x31\x82\xee\xe4\x7a\x00\x69\x90\xf4\ +\x2c\xbd\x14\x13\x13\x1f\xcd\x5e\xbc\x75\x40\xd1\xd4\x77\xfc\xfb\ +\x18\x9b\x19\xa3\xfa\x75\xc4\xe8\xfe\x1d\x41\x08\x50\xe3\xf4\x60\ +\x6f\x46\x31\xf6\x1c\x2d\xc2\x9e\x23\x85\xc8\x2a\x28\x17\x06\x98\ +\xc2\xe5\xf1\x61\xd5\xe6\x43\xf8\x7d\xd3\x01\x98\x8d\x32\x46\xf4\ +\xef\x82\x09\xc3\x7a\x62\xc4\xc0\x6e\xb0\x34\x03\x4c\x4c\x46\x03\ +\xae\x9c\xc6\x80\xe4\xa7\x25\xeb\xf0\xd1\xdc\xff\x62\xf6\x23\x2f\ +\xe3\xac\xd1\x67\xe0\xc1\xdb\xaf\x46\x4a\xbb\x84\xc0\xbd\xd1\x51\ +\x36\x7c\xf0\xf2\xe3\x78\xe5\xdd\xcf\xf1\xe1\x97\xf3\xb4\x37\x10\ +\x54\x5a\x54\x77\x0d\x10\x85\xcb\xe5\x04\x91\xcd\x51\x38\xfe\xf6\ +\x0f\x4e\x81\x8d\xc7\xef\xf3\xf8\x08\x28\xf8\x59\xcc\x35\x75\x8a\ +\xa1\x43\x87\x0e\x66\xfc\xb5\x24\x0f\x91\xf4\xea\x24\x0a\x40\xa5\ +\x90\x0d\x21\x06\x4c\x35\x44\x0a\x20\x00\x57\xb1\x84\xf1\x9e\x6b\ +\x84\x84\xc5\x1b\x04\x6d\x4d\x6d\x20\x49\x92\x91\x12\x63\x84\x58\ +\x67\xff\x6e\xb1\xfe\xe5\x4b\x3e\x3a\x0c\x41\xfa\x23\x20\x54\x7f\ +\x56\x04\x65\x69\x3e\xf8\x46\xc0\x8b\x51\x68\xab\x71\xf6\x3d\x78\ +\x15\x01\x28\x74\x43\xa7\x08\x69\x93\xb0\xd3\xa4\x79\xf6\xe1\x5a\ +\xed\xcf\x6e\x00\xca\xe1\x43\x87\xc8\x27\xef\x3c\xf3\xdb\xc5\xd7\ +\x3e\x3c\xe9\x87\xdf\x73\x22\x00\xa0\xb6\xce\x83\xcf\xfe\x7b\xb4\ +\xc7\xb7\xf3\x17\x3f\x31\x79\xe2\xf0\x7f\x20\x98\x5e\xdc\x2d\xbc\ +\x67\xb0\x4d\xdd\xf8\x36\x35\xbc\xad\x39\x0f\xa4\xad\x22\x08\x53\ +\x17\xb6\xda\x88\xde\xa0\x24\xaa\x15\x91\x51\xd0\x9f\x03\x64\x03\ +\x10\x3d\x74\xe8\xd0\xce\x23\xc7\x4f\x9b\xfe\xc6\xb7\x7b\x9b\xc7\ +\x55\xeb\x68\x70\x8f\x38\xdf\xbc\x6f\x9f\xdd\x8e\xf0\x9e\x9b\x01\ +\xa7\x92\x70\xcf\x8a\x00\x42\x01\xa8\x15\x15\x25\xd5\xe2\x0d\xc7\ +\x02\x22\x2d\x79\x36\x3a\xd2\x8c\xd1\x03\x3a\x63\xcc\xc0\xce\x0c\ +\x50\xea\x3c\xd8\x73\xb4\x10\xbb\x0e\x17\x60\xd7\xc1\x3c\x1c\xc9\ +\x2d\x09\x6c\xe0\x6e\x8f\x17\xbf\x6f\x3a\x88\xdf\xfe\xd8\x07\xb3\ +\x41\xc6\xc8\x41\x5d\x31\x61\x78\x6f\x8c\x1a\xc4\x02\x0c\x1b\x23\ +\xa3\xc1\x80\xcb\xce\x1f\x8f\x8b\xa6\x8c\xc5\x4f\x4b\xd7\xe2\x83\ +\x39\x0b\x30\xfd\x86\x07\x70\xf3\x8c\x69\xb8\x71\xc6\x05\x01\xc9\ +\x46\x96\x24\x3c\x78\xe7\x0d\xe8\xd3\xa3\x2b\x1e\x7e\xe6\x15\x38\ +\x5d\xae\x7a\xea\xaa\x90\x65\xc2\x55\x5a\x44\x02\x55\x3c\x0e\x9c\ +\x18\xb7\x59\x91\x1b\x46\x79\x59\x71\x95\x3d\x32\x1a\x15\xd5\xec\ +\xa8\xeb\x4a\x87\x4b\xea\x9c\x9a\x1e\x07\x3d\xaa\xfd\x75\x49\x83\ +\x70\x62\x08\xb5\x43\x78\xb9\x58\x16\x9c\x65\x6a\x8b\x6c\x20\x1c\ +\x3b\x42\x25\xbe\x20\xd7\x67\x7e\xf8\x91\x27\x86\x6d\x3d\x50\x19\ +\x25\xd6\xd9\xab\x93\xd5\xf9\xf2\x82\x05\x39\x08\x3a\x31\x18\x02\ +\xea\x0d\xf1\xfd\x58\xaa\x73\x7e\x66\x08\x3f\xeb\x9a\xb2\xfb\x1b\ +\x04\x7e\x71\xd2\x71\x00\xe5\x24\x26\xbe\x0b\x84\xb8\xe8\x74\xe1\ +\x14\xc1\x7c\x62\xdc\x58\xca\x0f\xdf\x92\x96\x2e\x5e\x28\xa5\x77\ +\xef\x15\x3b\x76\xe0\x94\x11\x6b\xb6\x17\x99\x01\xa0\xa0\xc4\x21\ +\xfd\xba\xc1\x38\xe4\xbb\x1f\x16\xfd\xed\x8a\x4b\xce\x7b\x0d\xc1\ +\xcd\xcc\x0f\x5d\xb4\xb2\xde\x06\xd2\xa4\x0a\xab\x55\x36\xa1\xb6\ +\x3b\x95\x5b\x67\x03\xa1\x9c\x99\xd0\xcf\x33\x19\xa1\x9d\xd5\x83\ +\x87\x05\x2c\xdb\x45\x6c\x6a\x6a\x6a\x87\x17\x5f\xff\xe4\x91\x37\ +\xbe\xdd\x93\xd4\x5a\x3b\x5b\xa7\x04\x52\xf7\xdb\xca\x95\x79\xa8\ +\x7f\x3e\x4d\x93\x4c\xa8\x1e\x40\xfc\xa5\x25\x79\x45\x7e\x45\x81\ +\x51\x50\x63\x1d\xab\xb4\xd1\x9a\xef\xa2\x6d\x66\x8c\x1e\x98\x8a\ +\xd1\x03\x53\x01\xb0\xd3\x0a\x77\x1f\xce\xc7\xce\x83\xb9\xd8\x79\ +\x20\x17\x87\xb2\x0a\xa0\x28\x80\xcb\xeb\xc5\xca\x3f\xf6\x61\xc5\ +\x86\xdd\x30\x1b\x65\x8c\x1a\xd4\x1d\x67\x8d\xec\x87\xd1\x83\x7b\ +\x35\x0a\x26\x06\x83\x8c\x4b\xa7\x32\x20\xf9\x79\xe9\x5a\xbc\xf7\ +\xe5\x7c\x2c\x58\xfc\x3b\x1e\xbe\x73\x16\x26\x8e\x19\x1a\xb8\x6f\ +\xda\xa4\xf1\xe8\x96\xda\x09\xb7\xdd\xff\x38\x72\xf3\x0b\x42\xd4\ +\x55\x00\x02\x2a\x2d\x0e\x6e\x44\x92\x01\x7f\x1d\xb7\x43\x1c\x6f\ +\x10\x11\x39\x70\x5a\x98\x97\x55\x1e\x6b\x1f\x8e\xb2\xaa\x3a\x00\ +\x40\x79\x55\x1d\xfa\xf6\xe8\x1c\x87\x50\xe9\xe7\x44\x49\x42\x6d\ +\x81\x48\x4c\x4c\x8c\xc1\xed\xa5\x06\x5d\x2c\x0c\x77\x84\x0f\x4c\ +\x7e\x7e\x06\x05\x42\xbf\x68\x8a\xfb\x13\x0d\x95\x7c\xb3\x8f\x00\ +\x10\x31\x64\xd4\xd9\x67\xbe\x3d\xff\x70\x60\xfd\x18\x64\x09\xb2\ +\x5a\xeb\xf0\x78\x3c\x62\xd6\x63\x23\x08\xa1\x54\x17\x23\xa0\xa8\ +\xaa\xac\xd5\x13\x05\xa6\x56\xa2\x60\x1b\x03\x57\x1d\xe8\x49\x0f\ +\x1e\xfa\xc0\x43\x02\xdd\xb9\x1b\x2c\x0b\xb0\xaa\xaf\x83\x47\xf2\ +\xf3\x77\x74\x09\xcf\x4b\xef\xbc\xf5\xea\xb6\x17\x5f\xe9\x16\xd3\ +\x33\xb5\x63\x9f\xfd\x99\x15\x06\x00\xd8\x7d\xa4\xd4\xd4\x2e\xbe\ +\xf3\xe4\xb7\xde\xf9\x28\xf7\xae\x3b\x6e\xfe\x4e\xab\xcb\x83\xd0\ +\x8c\xad\xf5\xc6\xb7\xb1\x7d\xa7\x7e\xcc\x48\xf3\xa8\x2d\x1b\xd1\ +\x5b\x13\x07\xa2\xe5\xf7\x0a\x78\x55\x82\xcd\xb3\x80\x0b\x38\x42\ +\xa5\x4c\xf1\x64\xce\x48\x00\x31\x77\xfe\xdf\x3d\xa3\xa6\x5d\x3a\ +\xeb\xee\xf7\xe6\xef\xeb\xd8\x9c\x0c\xe5\xe1\xc8\x64\x94\xe1\x73\ +\x55\x56\x20\x7c\xe6\x8a\x66\x1b\xd1\xf9\xa4\xf4\xaa\x7e\x57\x59\ +\x79\x65\x25\x92\x13\x13\x42\x6e\x3c\x15\x20\x22\x92\x2d\xc2\x8c\ +\x51\x03\xbb\x62\xd4\xc0\xae\x00\x00\xa7\xdb\x8b\xdd\x87\x72\xb1\ +\x63\x7f\x36\xb6\xef\xcb\xc4\xfe\x8c\x3c\xb8\x3d\x3e\xac\xdc\xb8\ +\x1b\x2b\xd6\xef\x84\xd9\x28\x61\xf4\xe0\x5e\x38\x7b\xd4\x00\x8c\ +\x19\xda\x07\x16\xb3\x29\x6c\xbd\xb2\x2c\xe3\xe2\xf3\xc6\xe3\x82\ +\xc9\x63\xf1\xcb\xb2\x35\x78\xe1\xed\xcf\xf0\xcd\x82\x45\x78\xf4\ +\xee\x9b\xd1\xa5\x23\xb3\xd7\xf4\xee\xde\x15\x3f\x7d\xf9\x0e\xee\ +\x7a\xf8\x29\xac\xdd\xb8\x05\x1c\x32\xc2\xa9\xb4\x54\x0a\x50\x9f\ +\xa3\x18\xc1\xcc\xb7\xc7\x9b\x02\x00\x92\x95\x79\xa4\xa2\xcb\xb0\ +\xd1\x0a\x8f\x81\xa8\xac\x76\x22\x2e\x3e\x31\x16\xa1\x6a\x8d\xbf\ +\x12\xe9\xbd\xd1\x48\xff\xfe\xfd\xed\xe5\xd5\xae\xd0\x68\x7c\xea\ +\xe7\x07\x2b\x05\x74\xb8\xf5\x3d\xa1\x42\xd4\x07\x7a\xee\x4f\x54\ +\x5d\x89\xa7\x21\x46\x01\x88\xfe\xf0\xb3\x6f\xaf\x5a\xb6\xb9\xb4\ +\x83\x58\xdf\x59\x23\x3b\x7a\x3e\x79\xff\xa5\x75\xd0\x22\xe4\xb5\ +\x06\x4c\x04\xa0\x7a\xee\xb4\x7b\xb7\xb4\x84\x17\x5e\x7a\x63\x72\ +\xa4\xcd\x56\x1d\x61\x8d\x70\x9a\x2d\x56\xb7\xd1\x68\xf2\xc9\x06\ +\x49\x95\x88\xd4\xe0\x9c\x21\x92\x44\x25\x42\xa8\x24\xc9\xaa\xc9\ +\x64\xf4\x5b\xcc\x26\xf7\xf8\xb1\xc3\x3e\xd2\xda\x0a\xa4\x1e\x01\ +\xeb\x70\x38\x89\x80\xc7\xb4\xf0\x43\xba\x08\xb4\x23\x51\xb5\x7e\ +\x1b\x1e\xba\xff\xce\x55\x9f\x7d\xfd\x63\x54\x79\x95\x25\xb5\xb8\ +\xbc\x8e\x00\xc0\xb2\x0d\x99\xb6\x6b\xa7\xf5\xb9\xe6\xee\x7b\xee\ +\xcf\x7b\xe3\xf5\x57\xd6\x6b\xcf\x02\x62\xe2\xbd\x16\x45\x97\xff\ +\xc5\x24\x10\x21\xbb\x70\xcb\x1e\x53\xa1\xaa\x6a\xe0\xb8\x66\xb0\ +\x39\xa6\x20\x28\x89\x02\xa1\x92\x87\x19\x40\xc4\x15\x57\x5c\x91\ +\x7e\xed\x8d\xff\x77\x4b\x66\x29\x86\xbe\xf4\xc5\xb6\xa8\x63\x01\ +\xd6\x69\x63\xba\xb8\x3f\x7a\xe7\x9f\xeb\x10\xcc\xad\xa6\x3f\xad\ +\xb4\xd9\x12\x88\x0a\xc0\x0b\xc5\x59\x5c\x56\x51\x1f\x40\x80\x53\ +\x0f\x22\x22\x45\x58\x4c\x18\x31\xa0\x1b\x46\x0c\xe8\x06\x00\x70\ +\xb9\xbd\xd8\x7d\x28\x07\xdb\xf6\x66\x60\xdb\xde\x23\xd8\x7b\x28\ +\x07\xcb\xd7\xef\xc0\xb2\xb5\xdb\x60\x36\xca\x18\x33\xb4\x0f\xce\ +\x19\x33\x08\x67\x0e\xeb\x1f\x16\x4c\x64\x59\xc6\x45\xe7\x4e\xc0\ +\xf4\xc9\xe3\xf0\xeb\xb2\x35\xb8\xeb\x91\xe7\x31\x71\xcc\x50\xcc\ +\x9e\x75\x25\xac\x16\x33\x62\xed\xd1\xf8\xfc\xed\x97\xf0\xfc\xeb\ +\xef\xe2\x83\xcf\xbf\x61\x0f\x85\x51\x69\x79\x7d\x2a\xa5\x3e\x07\ +\x77\xa5\x3d\x9e\x81\x7b\x7a\xfd\xbf\x72\xe4\xc8\x91\xaa\x33\xce\ +\x32\x7a\xa9\xaa\x5a\x01\xc0\xaf\xaa\x90\x64\x93\x78\x38\x50\xb3\ +\x32\x6a\xfe\xc9\x28\x44\x1f\x9c\x9e\x9e\x1e\x53\x5e\xe5\x31\x72\ +\xfd\x33\x21\x00\x55\xbd\xfc\x4c\x69\xee\x31\x44\xa1\x42\x6f\x87\ +\x00\x42\xed\x10\x9c\xfb\x83\xf0\x1c\x3f\x77\x25\x02\x2c\x4f\x54\ +\xec\xab\x6f\xbc\x77\x49\x95\x2f\xe1\xcc\x03\x19\x19\x21\xd2\x47\ +\xc7\x18\x5f\xe9\xf2\x65\x4b\xb3\xc1\x16\xa2\x53\x7b\x47\x0b\x21\ +\x84\x52\x35\xd4\x3e\xf0\xe6\xdc\xfd\xf1\x40\xd2\xc4\x60\x97\x38\ +\xe6\xb4\x8c\xae\x99\xde\xbf\x14\xc0\x3c\x30\x40\xe0\x5c\xaa\x04\ +\x80\x70\xbd\xbc\x8e\xc4\x40\x4c\xae\xbe\xe2\xea\x3e\xfe\xbc\x7c\ +\xdb\x8d\x33\x96\x7c\xf5\xdd\xa2\x8b\x3f\xfd\x35\xbb\x9d\xd3\xcd\ +\x84\xb9\x2f\x7f\xd9\x13\x7f\xcf\x35\x57\xdf\xbf\x7f\xdf\xee\xd2\ +\xa5\x4b\x97\x66\x22\x78\x64\xb0\x11\x5a\xb2\xca\x66\xdb\x98\x74\ +\xf6\x99\x66\x53\x1b\x95\x40\x28\xd0\x2a\x1b\x08\x55\x29\x51\x14\ +\x85\xdb\x32\xec\x60\x63\x6a\x44\xf0\x48\x6c\x02\x40\x8e\x8b\x8b\ +\xb3\xdc\x71\xc7\x1d\xbd\x06\x0c\x1e\x35\xda\x1e\x97\x32\xfa\x68\ +\x7e\x6d\xc7\x8f\x7f\xc9\x8c\xae\xaa\x71\x37\x5c\x79\x33\x28\x26\ +\xda\x0a\x93\x52\x52\xb8\x61\xc3\xfa\x1c\xd4\x3f\xf6\xa1\x59\x99\ +\xbb\xeb\x01\x08\xf5\x56\x17\xef\x2f\xac\xc5\xae\xca\x02\x44\x5b\ +\x0c\xb0\x47\x18\x10\x6d\x65\x57\x5e\x2c\x8d\xa4\x20\x39\x51\x86\ +\xf7\xa6\xc8\x6a\x31\x61\xf8\x80\x74\x0c\x1f\x90\x0e\x60\x32\xdc\ +\x1e\x1f\x76\x1d\xc8\xc4\xb6\xbd\x47\xb0\x65\xd7\x21\xac\xda\xb8\ +\x13\xcb\x56\x6f\x86\xd9\x24\x63\xec\xd0\x7e\x98\x74\xe6\x50\x8c\ +\x1b\x31\xb0\x1e\x98\xc8\x92\x84\x0b\xa6\x8c\xc7\xb4\x49\xe3\xb0\ +\x70\xf9\x2a\xdc\xf9\xf0\x33\xb8\x7c\xfa\x64\x9c\x77\xf6\x38\xc8\ +\x92\x84\x7f\xde\x77\x27\xfa\xf6\xec\x8e\x07\x9f\x7c\x0e\x2e\xd1\ +\x2e\xa2\x5d\xfd\x7e\x85\x73\x78\x27\x22\x7d\x68\x88\xf7\xd1\xbe\ +\x7d\xfb\x1c\x71\xd1\x46\x45\xf4\xbc\x50\xa9\x64\x41\xa8\x0b\xeb\ +\x5f\x45\x12\xd1\xab\x95\x64\x00\x86\x8e\x9d\xd2\x12\x8b\xaa\x9c\ +\x32\x1f\x83\x98\x28\x2b\x2a\xcb\xcb\xf8\xd9\xe4\x01\xef\x21\x0a\ +\x9d\x17\x96\x4a\x09\x82\xfa\x64\xce\xfd\x01\x6c\xf1\x00\x41\xd5\ +\x95\x05\x80\x2d\x2d\x2d\x2d\xf9\x8d\x77\x3e\xbd\x77\xf3\x41\xe7\ +\xc8\x55\xab\x0e\x5b\xc5\x17\xbb\x7a\x5a\x8f\xda\x57\x5f\xfc\xfb\ +\x4a\x84\x1e\xde\xc5\x8e\x86\x06\xa8\xde\x43\xa7\xa0\x44\xe7\x71\ +\xd8\x4a\xaa\xae\x71\x52\xb0\x8d\xa7\x16\x42\xda\x16\x00\x04\x3a\ +\x4f\x27\xc1\xeb\x4c\x1f\xcd\x2f\xf6\xd7\x00\x40\xf6\x78\x3c\x86\ +\xbb\x6f\xbf\x66\xe1\x6b\xef\x7e\x7b\xf1\xbb\xf3\xf7\xc5\x70\x27\ +\x8d\xff\x7c\xb3\x35\xf9\x81\x47\x5f\x7c\x62\xff\xfe\xfd\x8f\xe4\ +\xe6\xe6\x56\x23\x78\xac\x80\xb1\x91\xf6\xea\x51\xab\xbd\xb0\x5a\ +\xfc\xc4\xc9\x22\xda\x2a\x2f\x2c\x45\x55\xa5\x87\xff\xf9\xec\x39\ +\x5e\x9f\x32\xdc\x6c\x36\xbb\x8d\x26\x93\x57\x96\x0d\x0a\x20\xc9\ +\x0a\x25\x46\x55\x85\x51\xa1\xc4\xea\xf6\xaa\xb1\x87\x73\xaa\xa2\ +\x17\xac\xaf\xb0\xe6\x15\xe5\x1c\xb7\xb7\xbe\xf0\xcc\x0e\xc6\x29\ +\x34\x21\x00\x00\x20\x00\x49\x44\x41\x54\x75\xff\xb8\xfb\xaa\xdf\ +\xc1\xe6\x2d\x3f\x4f\xc6\x8d\xd0\xf8\xb1\x46\xc9\x00\x40\x8c\xb8\ +\xf5\x51\x9f\xa3\xdc\x55\xe7\xa0\x99\x55\xb6\x06\x37\x1d\xa3\x04\ +\x44\x59\x08\xec\x56\x19\xd1\x11\x72\x00\x58\x62\x22\x8d\x88\xb5\ +\x19\x11\x6b\x33\x21\xca\x6a\x0a\x0b\x0a\xc7\x62\x78\x6f\x09\x59\ +\xcc\x46\x0c\x1f\xd8\x03\xc3\x07\xf6\x00\xae\x9a\x0a\x8f\xd7\x87\ +\x5d\xfb\x8f\x62\xcb\xae\x43\xd8\xbc\x6b\x1f\x1e\x79\xf1\x7d\x10\ +\x02\x8c\x1b\x3e\x00\x93\xc7\x0f\xc7\xf8\x11\x67\xc0\x62\x31\x07\ +\x9e\x97\x24\x82\x69\x93\x27\x60\xea\x39\xe3\xb1\x68\xe5\x6a\x3c\ +\xfb\xea\xbb\x98\x79\xc9\xf9\xe8\x96\xda\x19\x17\x9f\x3f\x19\xdd\ +\xbb\xa6\xe2\xe6\xbb\x1f\x40\x6e\x5e\x3e\xf8\x38\x53\x4a\x01\xc9\ +\xc0\xd3\xa7\x1f\x4f\x2f\xa8\x7a\xd2\x07\x00\xbf\xd3\xe9\xf4\x18\ +\x25\xea\x15\xfd\xcf\x7d\xaa\x6c\x43\xf0\x50\x18\xfd\x79\xd4\xdc\ +\xab\xe3\xcf\x4a\xa2\x31\xd1\x00\xc0\xd0\xa3\xcf\xc0\xee\x1b\x97\ +\x16\x07\x7c\xf0\xe3\x62\x2c\x28\x2c\x38\x52\x81\xa0\x8d\x40\x02\ +\x9b\xe2\x21\x7e\xfa\x2a\x55\x25\x30\xd0\xe0\xdc\x9f\x0a\xb6\x19\ +\x72\x95\x8e\x01\x80\xe9\xf6\xdb\x6f\xef\x35\x69\xea\x65\x57\x78\ +\x68\xc4\x19\x5f\x2d\x39\x9c\x5c\x58\x5a\x13\x32\x43\xcf\x3f\x33\ +\xcd\xbd\x74\xc1\x27\x6b\xb7\x6d\xdd\x92\x03\xe6\x22\xeb\x00\x5b\ +\x84\x66\x68\x39\xa4\x28\x8e\x29\xf3\x6a\x83\xa4\xaa\x8a\xa4\xbd\ +\x3f\x8f\x8e\x0f\x18\xd3\x29\xf4\x71\x19\xc2\xbf\x41\x95\x35\x0f\ +\x38\x05\x74\xe3\x5a\x50\x50\x20\xbf\xf2\xaf\x07\x97\xdd\x7a\xdf\ +\x73\xe7\x7e\xfe\xcb\xfe\x28\x00\x70\x7b\xbc\x78\x7b\xee\x8e\xb4\ +\x8f\x3e\xff\xfe\xd1\xa9\x93\x46\xbf\xa8\x28\x0a\x85\x76\x78\x16\ +\xa5\x2a\x69\x49\x1f\x5b\x35\x1e\x6d\x54\x02\x01\xe5\xf6\x8c\x96\ +\xf5\x69\xe9\xfa\x0c\xc3\x52\xa0\xcb\x09\x7a\xab\x46\x29\xad\x43\ +\x0c\xcd\x39\xbc\x25\xa3\xa8\xa8\xa8\x18\xc1\x79\x5b\x87\x50\x23\ +\x7a\xf3\x00\x44\x23\x3e\xa9\xdc\xce\xea\x42\x2f\x22\x52\xcc\xe1\ +\x1f\xa1\xf0\xfa\x55\x94\xd5\xa8\x28\xa9\xae\x9f\x37\x8a\x5f\x09\ +\x68\x00\x54\x62\x22\x4d\x88\x8d\x32\x21\xd6\x66\x42\x5c\xb4\x19\ +\x71\x51\x16\xc4\x45\x5b\x10\x17\x6d\x0d\x9b\x50\xf1\x44\x9c\x26\ +\x6e\x36\x19\x31\x6c\x60\x2f\x0c\x1b\xd8\x0b\xb7\xe3\x02\x0d\x50\ +\x8e\x60\xf3\xce\xfd\xf8\xf6\xa7\x65\x78\xea\x95\x0f\x31\xe2\x8c\ +\x3e\x98\x32\x61\x14\xc6\x8f\x1a\x02\xab\x06\x26\x92\x44\x70\xfe\ +\x39\xe3\x31\xf5\xec\x71\x58\xb1\x66\x03\x76\xef\x3b\x80\x73\xc6\ +\x8f\x45\xbf\xde\x3d\xb0\x70\xee\xe7\xb8\xed\xbe\x87\xb0\x76\xc3\ +\x26\x50\x00\x29\xc9\xed\xe0\x70\xd4\xd4\x40\x73\x8f\x3c\xfe\xbd\ +\x08\x70\xd4\x81\x74\x1a\x26\x83\xe2\x54\x55\x25\x90\x3a\xe0\x70\ +\x5e\xad\xfd\xca\x2b\xaf\x4c\x9d\x3b\x77\x6e\x2e\x42\x4f\x16\xfb\ +\xb3\x4b\x21\x7a\xe9\xc3\x08\xc0\x64\xb0\xd8\x93\x9d\xae\xec\xc0\ +\x4d\x3d\x3a\x47\x7b\x7e\xf9\x62\x05\xf7\x84\x52\xc0\xce\xb4\xa0\ +\xfa\x38\x90\xc4\x84\xb8\xc8\xff\xbc\xf7\xd9\xf4\x88\x88\x88\x5a\ +\x8b\xc5\xea\x32\x99\x4d\x1e\x93\xc9\x2c\x99\x4c\x16\x9b\xa2\xc2\ +\xa4\xa8\x88\x74\x79\x91\x78\x20\xbb\x32\xfe\xe3\xff\x66\x58\xab\ +\x1c\xf5\x55\x4c\x17\x9f\xd5\xdd\x55\x9c\xb1\x61\xd7\x37\x73\xbe\ +\xd8\x0d\x96\xee\xbd\x12\x6c\x21\x72\x37\x62\x3f\x53\x61\x85\xb6\ +\x7d\xcb\xa5\x03\x7c\x5e\xb7\xdb\x4f\x24\x49\x25\x20\x14\x84\x50\ +\xcd\xcd\x16\x8d\xfe\x4c\x04\x54\x82\x44\x21\x11\x55\x22\x92\x3a\ +\xa0\x47\x32\x37\xbe\x73\xc3\x6b\x88\xdb\x72\x03\x12\x81\xc8\x88\ +\xf8\x85\xcf\x80\x0e\x44\x36\x6d\xda\x68\xe8\xf6\xcb\xe7\x1b\xce\ +\x1b\x73\xf9\x99\xbf\xae\xc9\xb0\x02\x40\x59\x65\x0d\xbe\x5e\x72\ +\xb8\xf7\x9c\xef\x7e\xbe\xfd\xca\x4b\xcf\xff\x06\x4c\x7a\xb3\xd6\ +\x6b\xaf\x91\xcd\xbe\xf5\x12\x48\x1b\x05\x10\xb4\x2e\x0e\xe4\x54\ +\x51\xa4\xd5\x84\x0b\xcf\x6c\x5f\x3d\xe3\x92\xeb\xd7\x81\x1d\x51\ +\x50\x89\xa0\xe4\x2c\x1e\xfd\xd0\xa4\x0a\xbe\x9e\x17\x16\x80\xba\ +\xb2\xd2\x82\xba\xd8\x3e\x23\xcd\x95\x75\x61\xb2\x3a\x06\x34\x36\ +\x0d\xb9\xb4\x72\x63\xb2\x8a\x0a\x87\x1b\x65\xd5\xce\x40\x62\x45\ +\xaa\xd6\x07\x1a\x9b\xd5\x88\xf8\x68\x0b\xe2\xa2\xcc\x88\xb7\x5b\ +\x11\x67\xb7\x20\x21\x26\x02\xf1\xf6\x08\x24\xc6\x44\x22\x3e\x26\ +\x12\x91\xd6\xf0\x06\xf0\x63\x21\x06\x28\xbd\x31\x6c\x60\x6f\xe0\ +\xba\x4b\xe0\xf5\xf9\xb0\x7b\xff\x11\xfc\xb1\x6d\x37\x16\x2c\x5a\ +\x09\x7b\x54\x24\x26\x8c\x1e\x8a\x09\x63\x86\xc3\x6a\x31\x83\x10\ +\x82\x73\xc6\x8d\x06\xa5\x14\xbb\xf6\x1e\x40\x64\x64\x04\xd2\xd3\ +\xba\xe0\x9b\x8f\xde\xc1\xd3\x2f\xbe\x8a\x0f\x3e\xfb\x12\x7d\x7b\ +\xf7\x42\x5e\x7e\x5e\x09\x98\x42\xfb\x78\xab\xb0\x44\x0f\x9c\x00\ +\x80\x94\x17\xe7\xe4\xc5\xdb\xad\x1d\xcb\x2a\x99\x5d\x73\xd3\xae\ +\x3c\xf3\x35\x17\x5c\x39\x66\xee\xdc\xb9\x9b\x10\x94\x44\x02\x52\ +\xc8\x71\x4a\xad\x72\xb2\x49\xef\x07\x6f\x04\x60\x1a\x3e\x7c\x78\ +\x52\x51\xb9\x37\x46\xd4\x3d\x77\x4a\x34\xd7\x6c\xd8\xb0\xa1\x14\ +\x41\x57\x5a\x19\x5c\x02\x11\xee\x7b\xf1\x93\x8d\xd1\xb2\x2c\x0d\ +\x15\x6d\x0f\x7e\xbf\x02\xb7\xa7\xe9\x54\xd8\xb6\x48\x33\x6e\xb8\ +\xa0\x8f\xe3\x9b\x4f\xdf\x58\xf7\xf3\x4f\x3f\xec\x47\xf0\x24\xc3\ +\x0a\x30\x75\x12\x01\x4f\xe6\x48\xea\xeb\xc7\x1d\x25\x47\x6b\xfe\ +\x76\xc7\x4d\xfb\xc0\x16\x2d\xf7\x7c\xd1\xa7\x9d\xd1\x13\x97\x3c\ +\xb9\x01\x9c\x1f\xc7\xab\x8f\xf9\xe1\xe2\xb0\xce\x26\x11\x52\xa5\ +\x5e\x9a\x0d\x78\x62\x41\x50\x65\x01\x30\x7c\xf3\xf5\xe7\x7b\xd2\ +\xba\xa6\xc7\x0c\xe9\xdd\xe3\x8c\x2d\x7b\x0b\x8d\x00\x70\x24\xab\ +\x4c\xde\x1c\x63\x1d\xfc\xe2\xcb\x6f\xd6\x3e\xf4\xf7\xbf\x6d\x01\ +\x60\x53\xa9\x2a\x85\xda\x00\x9a\x72\xe3\xfd\x0b\x49\x20\x68\x9d\ +\x0d\xe4\x54\x90\xc9\x28\xe3\xd6\x8b\x7b\xd7\xde\x7b\xe7\xb5\x4b\ +\x7c\x3e\x1f\x3f\x0e\x99\x03\x88\xde\xfe\xd1\x24\xe9\x01\xc4\x07\ +\xa0\x66\xe3\xa6\x55\xbb\xaf\x1b\x35\x73\x7c\x38\x00\x61\x33\x2f\ +\x54\xef\xaf\x77\x6d\x15\xef\x0d\x97\x3f\x4a\xbc\xd6\xd4\x79\x50\ +\x5d\xe3\xc4\x51\xaa\x86\x02\x8d\x70\x35\x1b\x25\x24\xd8\x23\x10\ +\x1f\x13\x81\xf8\x98\x48\x24\xc4\x44\x22\x31\xd6\x86\x84\xd8\x28\ +\x24\xc4\xd8\x90\x14\x17\x8d\x18\x7b\x24\xa4\x63\x10\x5d\x4c\x46\ +\x23\x86\x0c\xe8\x8d\x21\x03\x7a\x03\x00\x7c\x3e\x3f\x76\xed\x3b\ +\x84\x6f\x7f\xfc\x15\x56\x8b\x05\xed\x92\xe2\x31\x72\xc8\x40\x58\ +\x2d\x16\x0c\xec\xc7\xee\xa9\xa9\xad\x43\x94\x2d\x12\x4f\x3f\xf2\ +\x00\xfa\xf5\xe9\x85\x7d\x07\x0e\x63\xd9\xca\x0f\x37\x82\x6d\x22\ +\x2d\x4f\xca\x1f\x86\x84\xac\xb0\x21\xea\x2b\x68\x87\x20\x7d\xf3\ +\xe5\x47\x5b\x2f\xb8\xf6\xd1\x41\x3f\xad\x3c\x60\x01\x80\xda\x3a\ +\x17\xcc\x91\xb1\x9d\xa0\xc5\x2b\xe0\x18\x8e\x28\x6d\x0b\xd4\xc0\ +\x71\xbe\x26\x00\x96\xeb\x6e\xb8\x75\xcc\xef\xdb\x73\x6d\xdc\xfb\ +\xc5\x6c\x32\xc0\x5b\x57\x5e\x8e\xd0\x03\x97\x0c\x84\x10\x55\x1f\ +\x07\xe2\x74\xb6\x9c\x5b\x8c\x8f\x89\xc4\xb4\x71\x5d\x9d\xb2\x52\ +\x59\xfa\xf7\x3b\xaf\x5a\x93\x9f\x9f\x5f\x0c\x76\x42\x61\x31\xd8\ +\x66\xce\xa3\xbc\x8d\x60\xaa\x1d\x95\x80\xa8\x7a\x0f\x1d\x89\x25\ +\x36\xac\x01\xd3\x3d\x8b\x47\x0e\x37\x05\x20\xaa\xd6\x2f\x27\x98\ +\xa4\x53\x8b\xe0\x89\x93\xdc\x00\xab\x2d\xd1\x26\xe3\x32\x44\x10\ +\xe1\x9b\x85\x28\xe1\x05\x24\x91\xe7\x9e\x79\x6c\xc3\xdb\xef\x7f\ +\x6e\x2f\xa9\x88\xee\x9e\x9d\x5f\x29\x01\xc0\xba\x6d\x59\x96\x4b\ +\x26\xf5\x1e\x73\xc5\x8c\xab\xbc\xdf\x7d\x3b\xa7\x82\xaa\xec\x4c\ +\xf4\x90\xda\x1b\x14\xa7\xfe\x82\xd9\x78\xf5\x71\x46\x6d\x90\x64\ +\x59\xc2\xed\x97\xf7\x77\xfe\xf3\xc1\xd9\xbf\xe5\xe4\xe4\xe4\x82\ +\xcd\xdd\x72\xb0\x79\x58\x0b\x9d\xfd\xa3\x39\x8c\x66\x38\x00\x71\ +\x14\x66\x6d\xfb\xcd\xa0\xd4\x8c\xb7\x1a\x65\xf8\x55\x0a\xbf\x4a\ +\x85\xf9\x27\xb8\xad\x42\x7f\x0d\xa6\xfa\xa0\xe1\xee\xd1\x81\x49\ +\xd8\xb4\x20\x61\xee\x75\x7b\x7c\xc8\x29\xaa\x44\x76\x61\x59\xa8\ +\x04\x23\x00\x8d\x24\x01\xf1\xd1\x11\x48\x88\x8b\x46\x42\x2c\x03\ +\x95\xc4\xb8\x68\x24\xc6\xd9\x91\x14\x6f\x47\x52\x7c\x0c\x12\xe3\ +\xec\x30\x35\x33\x05\x8a\xd1\x68\xc0\x90\x81\x7d\x30\x64\x60\x1f\ +\x00\x80\xdf\xef\xc7\xe1\xcc\x6c\x44\x58\x2c\x88\x8f\x8b\x85\x2d\ +\x32\x02\x51\xb6\xc8\xc0\xfd\x57\x5c\x34\x1d\x1f\xce\xf9\x45\x55\ +\x6b\x32\xd6\x83\x6d\x0e\x4d\x9e\xa1\xd0\x42\xd2\xab\x1e\xbc\x00\ +\x3c\xeb\xd7\xaf\x2f\xbe\xf3\x7e\x73\xad\x4a\x55\x0b\xbf\xb1\xb4\ +\xca\x17\x3b\x60\xc0\x80\xc4\x5d\xbb\x76\x95\x40\x38\xd6\x15\x2d\ +\x4b\x95\xd1\x96\x48\x2f\x7d\x58\x00\x58\x93\x52\xd2\x7a\xe5\xae\ +\xd8\x16\xb8\x69\x48\xdf\x14\x65\xc9\xc2\x1f\x76\x23\x78\x98\x96\ +\x1f\xda\xb9\x20\xf5\xe3\x14\x9a\xd1\x28\x01\xba\x76\x4a\xc0\x19\ +\xbd\x92\xdc\xed\x62\x8c\xee\x8a\x92\x9c\xd2\x67\xff\x71\xe3\xd6\ +\xbc\xbc\xbc\x4a\x30\xb0\x28\x07\x5b\x84\x25\x08\x4a\x1f\x7e\x04\ +\x0f\x94\x52\x01\x76\xee\x83\xd8\xb6\x2c\xcb\x3e\x04\x4f\x38\xac\ +\x46\x30\x2e\xa3\x31\xd7\x49\x51\x7d\xc9\x8f\xf5\xad\x41\x50\x8a\ +\xe1\xea\xac\xc0\xca\x0b\x13\xf7\x12\x8e\xf4\xa0\x25\xba\x34\x07\ +\x22\xe5\xef\xba\xfd\x86\xe5\x5f\x7c\xfb\xb3\xed\xcb\x45\xce\x0e\ +\x55\x35\x4c\x6a\xfb\x7e\xe9\xde\xc8\x3b\xae\xbc\x79\xc2\x9e\x5d\ +\x3b\x37\x50\xaa\x4a\xba\xf3\x56\x1a\xe4\xe6\xc2\xc4\xa8\x34\x8b\ +\xda\xea\xa4\xe5\x63\xdd\x9a\x3e\x9d\x2c\x92\x08\xc1\xec\xcb\x07\ +\xba\x5f\x7e\xf6\xc1\xb5\x07\xf6\xef\xcf\x40\xf0\x78\xe6\x72\x30\ +\x66\x84\x33\x31\xcd\x96\x3e\x00\x01\x40\x34\x4e\x57\x01\x50\xa3\ +\x3a\xf3\x76\x16\x1d\xde\xe0\x7e\xf8\xfa\x59\x16\x6e\xd8\xa6\xa0\ +\x50\x34\x30\x51\x54\x0a\x45\x55\xe1\x57\x55\xf6\x59\x61\x9f\xfd\ +\x8a\x0a\xbf\xa2\xc0\xaf\xa8\xf0\x29\x0a\xfb\xec\x57\xe0\xf3\xb3\ +\xcf\x3e\xbf\x02\xbf\xdf\x0f\xaf\x5f\x81\xcf\xef\x87\xcf\xe7\x87\ +\xd7\xe7\x17\x3e\xfb\xe0\xf5\xf9\xe0\xf3\xf9\xe0\xf1\xfa\xe1\xf5\ +\x79\xd9\xd5\xeb\x85\xd7\xeb\x83\xc7\xeb\x83\xd7\xe7\x01\x4b\xff\ +\x14\x0a\x38\x8a\x5f\x41\x51\x79\x35\x0a\x4b\x2b\xc3\xda\x64\x38\ +\xe0\xd8\xa3\x22\x18\xb0\xc4\xc7\xa0\x5d\x42\x0c\x92\xe2\x63\x90\ +\x14\x1f\x8b\x76\x89\x71\x68\x97\x10\x87\x76\x89\x71\x88\x8e\xb2\ +\xd5\x1f\x28\x83\x01\xbd\xbb\x77\x6b\x74\x30\x7f\x5f\xb3\x2e\x1f\ +\xaa\xb7\x10\x6c\x43\x50\x4e\x80\xaa\x48\xf4\xa0\xe1\x87\x46\xb9\ +\x7d\xae\xea\x72\xb3\x51\x4a\x70\x7b\x98\xc4\xb8\x7e\x47\x6e\xf4\ +\x4d\xb7\xdc\x71\xe6\xdd\x77\xcd\xce\x40\xf0\x68\x57\x37\x34\x8e\ +\xf0\x4f\xa6\xc6\x12\xd5\x57\xdc\xeb\xc7\x6a\xb7\xdb\xa3\xeb\xdc\ +\x88\x17\xb9\xbe\x7e\xdd\x62\x6a\xdf\x78\x7c\x5e\x06\x82\x6a\x21\ +\x05\x80\x99\x10\x52\x2f\x0e\xe4\xea\xf3\xfb\xfb\xa2\xac\x92\x8f\ +\x48\x44\x25\x84\x50\xa2\xc5\xde\x81\x2a\x8a\xaa\xf8\x15\xaa\xfa\ +\x15\xa8\x7e\xdf\xfe\xbd\xdb\x8b\x3f\x7a\xe5\x85\xec\x83\x07\x0f\ +\x72\x11\xbf\x0e\x6c\xd3\xe7\xe7\xa5\x97\x83\x81\x81\x43\x6b\x93\ +\xab\xaf\x02\x6a\x25\x36\xff\x82\x6d\xcb\x06\x83\x4f\x7b\xae\x48\ +\xbb\xea\xb9\x3f\x3d\x89\x4e\x14\xa2\x1b\xae\x0b\x41\xb5\x83\x01\ +\x21\x6a\x30\x3d\x97\x1f\xf6\xe7\xd6\x1b\xd5\x81\xe0\x3c\x09\x71\ +\x71\x56\x55\xd5\xf0\x7f\xb7\x5e\xb3\xf8\xbd\x4f\xbf\xbf\xf8\x3f\ +\xdf\x6e\x8f\xe3\x89\x17\x3f\x98\xb7\xd5\xf6\xf4\x0b\x6f\x8e\xac\ +\x70\xf8\x48\x18\x89\xe7\xb8\x4a\x20\x6d\x56\x85\xd5\xca\x38\x90\ +\x93\x45\x1d\x92\xec\xb8\xea\xbc\x9e\x75\x6f\xbc\xf4\xe4\xc6\xcd\ +\x9b\x37\x1d\x02\x50\x08\x36\xf7\xb8\xd4\xcc\xe7\x5f\xc0\x78\xde\ +\xdc\xfd\x41\x9f\x0b\x4b\x01\x9b\x94\x65\x6b\xd7\xaf\x3c\xf8\x7f\ +\xd7\xcf\x1a\xc8\xbf\x90\x08\x81\x6c\x20\x30\x0b\x9e\x52\x1c\x5c\ +\xf4\xa5\xb5\xdf\x89\xdf\x37\x46\x8a\xa2\xc2\xe7\x57\xe0\xe5\x00\ +\xa4\x5d\xbd\x7e\x3f\xbc\x5e\x9f\xf6\x77\x1f\xbc\x1c\x7c\x7c\xbe\ +\x00\x00\x79\x34\x30\xf2\xfa\xbc\xf0\x78\xbc\x70\xd4\x3a\x51\x56\ +\x51\x85\xed\x7b\x0e\xc2\xe3\x75\xc3\xe3\xf1\x42\x92\x80\x98\xe8\ +\x28\xc4\xda\xa3\x10\x6b\x8f\x66\xd7\x18\x3b\xe2\x62\xa2\xb5\x6b\ +\x0c\xcc\x3a\xf7\xdf\x6a\x47\x2d\xd6\xac\x5a\xba\x16\x6c\x43\xe0\ +\x71\x08\xc7\x93\xf4\x1b\x08\x8f\x24\x76\x2e\x5f\xf2\xd3\x8e\xa1\ +\x7d\xa7\xa6\xaf\xd9\x92\x21\x03\xc0\x91\xac\x62\x5c\x39\x65\xdc\ +\x08\x59\x96\xe7\x2b\x8a\x12\x81\xa0\xa1\x95\xab\x49\xda\xe6\x4c\ +\xd7\x51\x98\xec\xa3\xdc\xed\x36\xe2\xf9\x97\xde\x98\xbe\x68\xed\ +\xd1\x38\x31\xfe\x43\xa6\xee\x2a\xbf\xdf\xcf\x23\x6a\xdd\x08\x8e\ +\x97\xaa\xb7\x09\x44\x18\x3c\x9e\x1b\xaf\xba\x64\x27\x82\x71\x1b\ +\xdc\xfb\x44\x45\x28\xb7\x2f\x1e\x24\xc5\xb9\x7e\x0e\x20\x95\x08\ +\xba\xee\xba\x10\x54\x23\x05\x24\x09\x86\x5d\xa1\xfa\x71\x83\x6c\ +\xf0\x69\xcf\x96\x82\x71\x81\x0e\xe1\xf9\xa6\x22\xd1\x45\x26\x42\ +\xf4\xa2\xe2\x1e\x64\x82\x0a\xab\x41\x1b\x88\xbe\x6e\xfe\xa5\xa2\ +\xf5\x55\x1f\x5c\x69\x00\x60\xa8\xaa\xaa\x32\x3c\xfe\xf0\x9d\x4b\ +\xfe\xf1\xd4\x5b\xd3\xde\xf9\x76\x4b\x14\x00\x78\xbd\x2a\x3e\xfa\ +\x61\x4f\xd4\xc4\x11\xe9\x6a\x03\x36\x90\xfa\x31\x48\xfa\x77\x6b\ +\x36\xb5\x51\x00\x41\xdb\xb5\x81\x4c\x1b\xdf\xc3\x6f\x37\x56\x96\ +\x5e\x37\xe3\xfc\x0d\x2e\x97\x2b\x1f\x40\x81\x56\x8a\x11\x5e\xfa\ +\x68\xd1\x20\xeb\x01\x84\x82\x4d\xa0\xca\x83\xfb\xd6\xff\x96\x99\ +\x9b\x37\xb0\x6b\xe7\x8e\x2d\x7e\xe9\x13\x15\x70\xc8\x49\x96\x25\ +\xc8\xb2\xd4\x64\xde\xab\x93\x49\xcb\xd7\x6e\xa3\xee\xca\xc3\xbf\ +\x83\x6d\x28\x3c\x12\xfa\xb8\x50\x03\xc7\xba\x06\x00\xe4\xbb\xb9\ +\xdf\x1e\xfe\x78\xce\xac\xda\x55\x9b\x0e\xdb\xf9\x33\xbf\xae\x3a\ +\x9c\xfc\xfc\xbf\x5f\x9d\xfc\xe0\xfd\x77\x73\x4f\x19\x1e\x9b\xa0\ +\x00\x50\x19\x57\xde\x56\x59\xba\x10\xf0\x10\xd3\x89\x58\x00\x44\ +\xc6\xc7\xc7\xc7\xda\x13\x52\x87\x1f\xcd\x5e\x13\xb0\xeb\xf4\xeb\ +\xd1\x81\xee\xd8\xba\xee\x20\xd8\x26\xcf\xfd\xd9\x25\x30\x4f\x28\ +\x45\xef\xf9\xa3\x65\xa7\xad\x45\x28\x00\x88\x99\x48\xc3\x9d\x42\ +\x28\xaa\x8d\x1c\xa8\x1f\x7c\x05\xe8\xd4\x84\x3c\xa9\xa1\x1a\x62\ +\x03\x21\x8a\xd6\xb6\x03\x8c\x03\xe4\xe7\x74\x88\x59\x50\xc3\x91\ +\x5e\x12\xe1\x52\x0e\x07\x58\xa1\xdd\xe6\xc7\x65\xe8\xda\xd3\x83\ +\x48\x88\x2a\xeb\xd0\xc1\x83\xc6\x39\x9f\xbc\xba\xf6\x8a\x4b\x66\ +\x4f\xfc\x76\xe1\x6e\x0b\x00\x94\x56\x38\x30\x6f\xf1\xb6\xff\x6f\ +\xef\xba\xe3\xab\xa8\xd2\xf6\x33\x77\x6e\x7a\x72\xd3\x0b\x09\x49\ +\x48\x08\x4d\x71\xc5\x86\x8a\xae\x0d\xd0\x45\xf4\xb3\xad\x2c\xba\ +\x2a\x8a\x20\xbb\xb6\x55\x3f\xf6\xb3\x21\x28\x16\x70\x15\x2c\x28\ +\x88\xae\x20\x8b\xb8\xa2\x60\x01\x65\xe9\x25\x01\x42\x08\x04\x90\ +\xde\x42\x0d\x90\xe4\x96\xe4\xf6\x3a\xf3\xfd\x31\x73\xee\x9c\x39\ +\x77\x6e\x48\x2e\x09\x49\x5c\xdf\xdf\x6f\x98\x70\xef\xdc\x99\x39\ +\x33\xe7\x9c\xe7\xbc\xed\x79\x75\x74\x6f\x12\x9b\xf0\x81\x44\xce\ +\xc6\xdb\x31\xbb\xab\x64\xc2\xea\x58\x51\x58\x19\xa9\x89\x78\x60\ +\x68\x1f\xe7\xfc\xb9\x33\xf6\xfe\xb4\xf8\xc7\xfd\x90\x00\xe3\xb4\ +\xbc\x11\x9f\x1d\x6d\x3e\x6d\x91\xef\x83\x88\x16\x80\xf8\x00\x58\ +\x05\xfb\x91\xf2\xd2\x8a\x8a\xa7\x8a\x0b\xba\x6a\x72\xbb\xb7\x67\ +\xd2\x60\x7b\x8b\xcf\xe7\x83\xcf\xef\x47\x7c\x9c\x92\x4f\xb6\x76\ +\x7d\xb9\x49\xf4\xdb\x8f\x42\x9a\x50\xfc\x6d\x30\x39\xd3\x0e\x4f\ +\x5a\x03\x71\x78\xbd\x5e\xbb\xe9\xf4\xe1\xea\xdc\xec\xe4\x4b\x6a\ +\xce\x58\x00\x00\x5b\x77\x1f\x8f\xba\xf5\xaf\x03\x07\x47\x47\x47\ +\xff\xec\xf5\x7a\x89\xb3\x96\x98\x75\x3a\x8b\x16\xc2\x9a\xae\xe2\ +\x01\x24\xbe\xf3\xde\xf4\xe1\xf3\x97\xee\xc8\xa6\xe3\xee\x6f\x19\ +\x50\x60\x19\x79\xff\xe3\x55\x50\x03\x48\x14\x80\x00\xb1\xd8\xd1\ +\xc7\xeb\x78\xce\x0f\xc9\xf4\xa4\xa5\xc6\x93\x89\x3c\x58\x3a\x17\ +\x4a\xba\x38\x39\x3f\xf9\x3f\xad\xb9\x10\xea\x93\xe0\x44\x2f\xe1\ +\xb4\x3a\x47\x40\x06\x2f\x95\x19\x12\xa1\x14\x12\xe1\x84\x7c\x47\ +\x3b\xbe\x39\xe6\x6f\xc9\xe8\x1c\x9a\x07\x12\xfe\xa4\xea\x12\xbe\ +\x04\x44\x58\x8a\x17\x3d\x80\xa8\x15\xcb\x97\x1e\x2c\x2a\x2e\x49\ +\xbf\xa1\xff\x55\x97\xac\xa9\x38\x1c\x25\xfd\x3e\xe4\x7c\x4d\x8e\ +\xf2\x5f\x55\x3d\x10\x31\xb2\x7a\x20\x6d\x21\x17\xf5\xcc\x15\xaf\ +\xed\x97\xe3\x31\xd7\x1e\x31\x3d\xf5\xd8\xf0\x6d\x0d\x0d\x0d\xc4\ +\x47\x57\x2b\x6f\x75\x50\xc0\x23\x22\xc7\x39\x2d\x2a\x00\xa1\xfc\ +\x20\x4e\x88\x81\xda\x8d\x15\xa5\x47\x1f\x19\x76\x4f\x93\x86\xff\ +\xb6\x62\xeb\x6d\x2f\xb1\xd9\x1d\xa8\xad\x37\xe1\x4c\xbd\x11\xb5\ +\x75\x46\xd4\xd5\x9b\x10\x1b\x1b\x2d\x99\xb2\x52\x0c\x48\x4b\x49\ +\x46\x76\x66\x06\xb2\x64\xaa\x17\x7f\x20\x00\xa3\xd1\x8c\x95\xab\ +\x96\x95\x43\x7a\x31\x84\x22\xa2\xad\x84\x1e\xe0\xc1\x55\xf1\xf8\ +\x97\xc7\xae\xf9\xe8\x9f\x0b\x8b\xa7\xce\x29\x0b\x6a\x21\xdf\xad\ +\xdc\x9d\x33\xf5\x83\xe9\x77\x3d\xf9\xd7\x51\xb3\xa1\xee\x2c\x01\ +\x00\x22\xc7\x71\x42\x47\xd4\x42\x18\xed\x83\x98\xae\xe2\x00\x24\ +\x14\x16\x16\x66\xf2\xb1\x19\x57\x1c\xaf\xd9\x1d\xec\x3d\x97\x5e\ +\x98\x1f\xd8\xb2\x71\xe5\x0e\xb7\xdb\x4d\x22\x93\xc8\xaa\x0a\x08\ +\x0e\x0c\x46\x0b\x90\x0a\x2c\x99\xa0\x5e\x8d\xd1\x5a\x08\xd9\x88\ +\xa9\xc8\x43\x6d\x04\x54\xe8\x9a\xf3\x80\x92\xa8\xa9\x7a\xa6\xec\ +\xea\x94\x5a\x9d\xb3\x74\x33\xcd\x0d\x72\x10\xa1\x02\x8b\xa0\x86\ +\x10\xe4\xf2\x6a\xa1\x06\x22\xdf\x57\x10\x44\xc8\x0f\x89\x4f\x47\ +\x05\x20\x00\xa2\x3f\xfd\xe4\xa3\xaa\x89\x6f\x76\x4b\xed\x5d\x94\ +\xd1\x7d\xcf\xe1\x5a\x8d\x08\xbf\xf0\xd7\x6b\x49\xed\x10\xe6\xfe\ +\x5a\xfc\x9b\xf3\x25\xed\x99\x07\x12\x1b\x13\x85\x9b\xaf\xe9\x19\ +\xe8\x96\x1d\xed\x2a\x2f\x5d\x7e\xea\x89\x47\x3f\x3f\xe4\xf5\x7a\ +\x2d\x90\xfa\xb7\x11\x12\x68\xd4\x43\xf1\xd7\x91\x05\x65\x8b\xc3\ +\x76\x59\xd1\x2a\xf1\x27\xca\x27\xae\xaf\xdc\xb4\xec\xc7\x7d\x87\ +\xab\x9f\xeb\x53\x52\xdc\xa6\xb5\x41\xce\x87\x08\xa2\x08\xb3\xc5\ +\x8a\x5a\xa3\x19\xb5\xf5\x66\x79\x6f\xc2\x99\x3a\x13\x6a\xeb\x8d\ +\x38\x53\x67\x84\xcd\x6e\x43\xd7\x2e\x59\xe8\x5d\xd2\x4d\xde\x8a\ +\x71\xeb\xa0\xeb\x83\x49\x85\x44\xfc\x7e\x3f\xd6\xae\x2f\xc7\xe2\ +\xa5\x2b\xb0\x7c\xf5\x1a\x8c\x79\x74\x8c\x60\x3a\xb9\x6d\x31\x24\ +\xbb\x36\xe1\xb1\x69\x0b\x61\xa3\xb0\x5c\x90\x26\x4c\x9b\xd5\x6a\ +\x6d\x38\xb2\xbf\x6a\x5f\xaf\xa2\xac\x2b\xf6\x1d\x3e\xa3\x03\x80\ +\x5f\xf6\x9e\xd0\xdf\x79\xd3\x2d\x37\x26\x26\x26\xfe\x68\xb7\xdb\ +\x43\x1c\x65\x90\x40\xa4\x43\x99\xb2\x34\xc2\x76\x69\x06\xd2\xe4\ +\xd7\x27\xbd\xf7\xf0\x97\x8b\xb7\x66\xd1\xf6\xe6\xc1\x57\x16\x98\ +\xef\xbb\x67\x74\x25\x94\x5a\x17\x4e\x28\x39\x20\x01\x02\x94\xf4\ +\x6f\x74\x3a\x5d\x00\x92\xe6\x51\x0f\x09\x44\x2c\x50\x12\xa9\x08\ +\xc8\x92\x8d\x06\x13\x1a\x5c\xe8\x1c\x0c\x4d\xf0\x10\xe5\x9a\xe8\ +\xf4\xb5\x05\x89\x8d\x37\x06\x0a\x85\x0a\x29\xd2\x74\x36\x13\x96\ +\xea\xd4\xd4\x73\xd2\xc9\xe7\x8a\x81\x0c\x24\x6c\x3d\x90\xe6\xf6\ +\x48\x46\x13\x21\xa6\x52\xd6\x1f\x12\x05\x20\x7a\xfc\xcb\x63\xd7\ +\xcf\xfc\x7c\x5e\xa2\xa9\xc1\xd1\xe5\x4c\xbd\x95\x39\x51\xd3\x77\ +\x1e\x59\x1e\x08\x00\x35\x70\xaa\x0a\x71\xb5\xa0\x92\x63\xcb\xaf\ +\xaa\xbe\x6e\xe8\x21\xe7\xd1\x07\x92\x98\x10\x8b\x8b\x7a\xe6\x8a\ +\xbd\x0a\x53\xfc\x7a\xce\xeb\xf5\xb9\xad\xae\xaf\xbf\x9c\x7a\x64\ +\xf3\xe6\x8a\x33\x50\xcc\xa2\x66\x28\x91\x7e\x34\x70\x90\x84\x41\ +\x96\xb6\x3d\xa2\x79\x20\x1c\x80\xf8\x00\x58\x02\xd6\xfd\x2b\xa6\ +\xcf\xfe\xfc\xfe\x69\x6f\xbe\x99\x03\xb4\x9d\xc9\xea\x5c\xdf\xbb\ +\xc7\xeb\x43\xbd\xd9\x8a\x7a\x73\x23\xea\x4c\x8d\xa8\x33\x5a\x50\ +\x67\x6a\x40\xad\xd1\x82\x3a\x19\x30\xea\x4d\x66\xf8\xfd\x7e\x08\ +\x72\xe8\x6f\x97\xcc\x54\xf4\x2c\xce\x47\xef\xee\x05\x18\x78\xed\ +\xe5\xe8\xd5\xbd\x10\xf9\xb9\xd9\x08\xd7\x09\x7d\x3e\x1f\xca\x36\ +\x6d\xc1\xcf\xcb\x57\x63\xe9\xaa\xd5\x68\x68\x68\x84\x28\x0a\xb8\ +\x63\xc8\x60\xcc\xfb\x76\xc1\x26\xd1\xdb\xb0\x07\xd2\x0b\x6a\x0b\ +\xf3\x95\x56\x3e\x08\x89\xc4\x71\x40\xea\x34\x8d\x6f\x4c\x1c\xb7\ +\x61\xee\xfc\xff\xf4\x7c\xeb\x60\x4d\x2a\xf9\xdd\xdc\x1f\x2b\xb3\ +\x67\xfd\x6b\xfe\x5f\x87\xdd\x3d\x74\x32\x94\x15\x36\x6d\x3f\xef\ +\x88\xfe\x10\x36\x64\x37\x01\x80\xe1\xc1\x87\x1e\xbe\xd8\xec\xd4\ +\x5f\x7e\xa6\xce\x12\x3c\x70\xe0\x80\x5e\xbe\xc5\x0b\xbf\xac\x80\ +\x52\xae\x95\xf8\x33\x04\xc8\x21\xbc\x1c\xc7\x85\xe4\x45\x30\x3e\ +\x10\x0b\x94\x30\x5c\xf2\x7c\xc8\x44\x4e\x27\xdb\xd1\x7f\x8b\x50\ +\x83\x07\x10\x2e\xd4\x89\xc9\x11\xc8\xed\x92\x95\x38\x6a\xd4\xa8\ +\xbe\x06\x83\x21\xc7\x60\x30\x34\x26\x24\x24\x38\xe2\xe2\xe2\x3c\ +\x7a\xbd\x3e\xa0\xd3\xe9\x08\xad\x50\x93\xc2\x71\x9c\xc8\x71\x1c\ +\x74\x3a\x9d\x28\x08\x02\xe7\xf3\xf9\xf8\x71\xe3\xc6\x1d\x35\x1a\ +\x8d\xb1\x00\xa2\x20\x32\x79\x19\x2d\x5f\xd3\xd0\xb3\x21\x9b\xc8\ +\x19\x24\x9f\xfc\xdb\x13\x8f\xae\xfe\x74\xf6\x37\xb7\x4e\x9f\xbf\ +\x35\xd5\xe9\xf2\xd2\xbf\xa0\xfd\x35\x8c\x44\x98\x07\x22\xdd\x12\ +\x0d\x66\xb4\x79\x8d\xdc\x67\x6b\x0a\x7b\xef\x1c\xb3\x57\x0e\x8c\ +\x20\x0a\x2b\x31\x21\x16\x99\x69\x49\x21\x9f\x27\xc4\xc7\xc0\x90\ +\x18\x27\x1a\xe2\xf5\x62\x52\x62\x8c\x98\x9c\x18\x23\xc6\xc6\xe8\ +\x45\xaf\xc7\x1d\xf0\xba\x6d\xde\x06\x53\xad\x73\x43\xe9\xbc\xba\ +\xd9\x53\xd6\x1b\xe5\xf2\x01\x4e\xc8\x0b\x49\x48\xfd\xb9\x01\x52\ +\x9f\x6e\xa0\x36\x02\x1c\xac\xaf\x2f\x62\xf0\x00\x34\x00\x44\x9e\ +\xa8\xfc\xf2\x0d\x9d\x5c\xb7\xe2\x5f\x9f\x95\xdf\x33\xec\x95\x01\ +\x97\x49\x01\x59\xe7\x1b\x44\xac\x76\x37\xea\x2d\x36\x18\x2d\x36\ +\x69\x6f\xb6\xa2\xce\x44\x81\x85\xd9\x82\x46\xab\x83\xca\x09\x51\ +\x87\xef\x46\xf1\x3a\x14\x17\xe4\xe0\xca\x7e\xbd\xd1\xb3\x38\x0f\ +\x3d\x8b\xba\xa2\x57\x71\x01\x92\x12\xe3\xb5\x2f\x48\x89\xcf\xe7\ +\x47\xd9\xa6\x4a\xfc\xbc\x62\x2d\x96\xaf\x29\x45\xa3\xd5\x1a\xcc\ +\xa6\x07\x44\xe8\x74\x1c\xba\xe4\x15\x07\x16\x7e\x35\xed\x33\x48\ +\x61\x71\x64\xe2\x6a\x4b\xa1\x1d\xe9\xaa\xc8\x20\x9f\xcf\xd7\x50\ +\x5e\xb6\x6c\x7b\xff\x7e\x25\xd7\x6d\xda\x26\x47\x64\x1d\xab\xe5\ +\x2b\xf7\x64\x5e\x39\xf5\x83\xe9\x77\x3f\xf7\xb7\xc7\xe7\x41\xbb\ +\x64\xa5\xd8\x11\x42\x7b\x99\xa8\x2b\x52\x83\x23\x1e\x80\xa1\x6f\ +\xdf\xbe\x79\x77\x0c\x7b\xf4\xe9\x89\xd3\x7e\x4e\x11\xe4\xdb\xe4\ +\x79\x1d\x2e\xed\x9d\x6e\x7c\x70\xc2\x5c\x02\xde\xc4\xae\xeb\x92\ +\xcf\x13\x9c\xf8\x45\xa8\xe3\xf4\x65\x00\xa1\xfd\x1a\x76\xa8\x01\ +\x84\xce\x8f\x08\xb7\xd1\xc0\x1e\xae\x87\x8b\x6c\x8e\xc0\xfc\x65\ +\xfb\xf3\x90\x72\xc5\x03\x16\x00\x16\x72\x55\xe5\x70\x44\x30\xd9\ +\x63\xf0\xb5\x7d\xed\x7d\xfa\xf4\x79\xae\xac\xac\x4c\x04\x10\x15\ +\x5a\xff\x44\xa4\x4f\xde\xb4\x47\x5d\x09\xda\x20\x27\xf0\x21\x0c\ +\x80\xb8\xdd\x6e\xfd\xf3\xcf\x8d\x59\x35\x69\xea\x3f\x6f\x99\xfa\ +\x45\x59\x12\x79\x37\x32\x08\xd2\xcf\x90\xa3\xce\x1f\x69\x3d\x10\ +\x62\xae\x23\xb5\xc0\x63\x20\xbd\x2f\x40\x9d\x10\xd9\x1a\x42\x47\ +\xbe\xd1\x6d\xd0\x28\xde\x15\x59\x1e\xc8\xf5\xfd\x8b\xc5\x80\x65\ +\xaf\xcd\x64\x36\x7b\x74\x9c\xce\xcf\x49\xc1\x15\x01\x9b\xb1\xd1\ +\x5b\xbd\xaf\xce\x63\x36\x9b\xbd\x46\xa3\xd1\x63\x34\x1a\x3d\x76\ +\xbb\x9d\x68\xbf\xc4\x2f\x47\x02\x3b\x9c\x50\xfa\x2f\x09\xee\xb0\ +\x42\xd1\x36\x08\x4d\x3b\x01\x0e\xba\x7f\x9f\x13\x78\x00\xda\x1a\ +\x08\x20\x3d\x2c\x0f\x00\xa3\xe0\x3c\x59\x3a\x7d\xd6\x27\x07\xae\ +\xba\x74\x7a\x4f\x5e\x9e\xe5\x5b\xc3\xef\x11\x08\x08\x68\xb0\xbb\ +\x61\x6a\x74\xc0\x6c\x75\xc2\xd4\x60\x87\xb1\xd1\x81\x7a\xb3\x0d\ +\xc6\x06\x3b\x8c\x66\x2b\x8c\x16\x1b\x3c\x5e\x5f\x48\x66\xba\x20\ +\xa8\xa9\x51\xc8\xbb\x4e\x4b\x49\x44\x49\x41\x0e\x7a\x14\x76\x41\ +\x8f\xa2\x2e\xe8\xd1\x2d\x0f\xdd\xf2\xb2\xc1\xf3\xcd\x4f\xc2\xf6\ +\xfa\x7c\x28\xdb\xb4\x15\x4b\x56\x96\x62\xc5\xba\xf5\xb0\xd9\xec\ +\xc1\xeb\x92\x2e\x45\x7a\xd3\xad\x83\x06\xe2\xeb\x6f\xe7\x2f\x15\ +\x03\xae\x7d\x90\x10\xbf\x55\xa3\xaf\x58\xd1\x30\x2f\x10\x33\x96\ +\x0d\xd2\x2a\xc3\xf0\xc1\x7b\xef\x6c\xf9\xf6\xc7\x15\x17\x6d\xfd\ +\xe5\x48\x86\xd7\x27\x45\x78\x2e\x59\xbb\x23\xfe\xa9\x11\x03\x87\ +\x3d\x3a\xea\xb1\xfd\x9f\xff\xf3\xd3\x8d\xd0\xa6\xcd\x68\x57\x73\ +\x96\x3c\x61\x91\xd5\x25\x99\x20\xe2\x01\x18\x62\x62\x62\xd2\x26\ +\xbd\x3b\x63\xfc\x1b\x33\x96\xe5\xd1\x35\xe0\xef\x1d\x7a\xa9\x7b\ +\xd6\xcc\xf7\xd6\x41\x59\x65\x11\x42\x38\x52\xf3\xdb\x0f\x20\xa0\ +\xd3\xe9\x84\x90\xcc\x6c\x45\xd3\x26\x3e\x0d\x7a\x63\x13\xfa\xd8\ +\x7d\x53\xcf\x89\x9e\x70\x24\xae\x2b\x66\x75\xba\x79\xfb\xc1\x16\ +\x3c\x99\xe6\x49\x49\x41\xba\xe0\x76\xbb\x0d\x90\x0b\x59\x89\x82\ +\xc8\x69\xb4\x37\x94\xf2\x24\x8c\x68\x44\xfe\x11\x8d\x97\x8d\xcc\ +\xe2\x4f\x9f\x3e\xad\x9b\xfe\xfe\xeb\xab\x47\x8d\x7e\x7e\xd0\xcc\ +\xaf\x37\x24\x00\x00\x07\x8e\x68\x6b\x1a\x80\x15\xa1\x06\x22\x31\ +\x28\xd3\xa6\x3f\xc2\x67\x4e\xbf\xb3\xd6\x10\xfa\x19\xb1\x5a\x27\ +\xe9\xa7\x41\x6d\x84\x54\x63\x6c\x71\x9b\x44\x41\xfc\xe1\xfb\x05\ +\x67\x0e\x1c\x38\x60\x86\x7a\x92\x27\x26\xd2\x00\xb3\x27\xe0\xc1\ +\x02\x08\xd1\x40\x1c\xd4\x9e\x7c\x4e\x97\xa9\xa5\xb5\x8e\xe0\x02\ +\xa8\x65\x37\xad\x16\x4d\x00\xa1\xb4\x10\x1b\x80\x93\xdb\xcb\xbf\ +\x9d\xf9\x9f\xd5\xc3\xdf\xbd\x6d\xd0\xf5\x41\x78\x68\x0a\x28\xdc\ +\x3e\x3f\x1a\xec\x1e\x58\x6c\x6e\x69\xb3\xbb\x60\xb1\xba\x60\xb6\ +\x3a\x60\x6a\x74\xc2\xd4\xe8\x40\xa3\xcd\x29\x3b\x9e\xc2\x53\x98\ +\xd0\xe0\x20\xca\x25\x63\x45\x51\x5a\xf9\xe7\x67\x67\xa0\xa4\x30\ +\x1b\x25\xf9\x59\x28\x29\xcc\x41\x8f\x6e\x5d\x90\x96\x1c\x9a\x00\ +\xd8\x1c\x71\x7b\xbc\x28\xab\xa8\xc2\xd2\x35\x1b\xb0\xaa\xb4\x1c\ +\x76\xbb\x23\xa8\xc5\xd0\x7d\x89\xce\xb0\xe7\x75\x3a\x24\x24\x65\ +\xb8\xeb\xab\xcb\xe6\x42\xd2\x3e\xda\x2a\x79\x50\x4b\x68\x33\x16\ +\xf1\x83\x10\x53\x4c\xd2\xa4\xd7\x9e\xff\xcf\x33\xcf\x4f\xba\xeb\ +\xed\x99\xcb\x82\x0f\xe4\xa3\x2f\x56\xa6\xbe\x31\x76\xc4\xd8\xad\ +\x5b\x36\x3f\xb3\x7d\xfb\x76\xd6\xd6\x4e\x06\x20\xce\x37\x88\x68\ +\xd4\x1d\x27\x11\x57\x09\x00\x0c\x00\x52\xe7\xcc\x5b\x38\xf6\xd3\ +\xaf\x37\xf4\xb2\xd9\x9c\xc1\xdf\xf5\xbf\xb8\xc8\x2f\xd8\x8e\xed\ +\x59\xb3\x7a\xf5\x61\x28\x39\x19\x84\x92\x9a\xf8\xa1\x02\x90\xc2\ +\x78\xfd\xac\x0f\x44\xd6\x40\x58\x87\x39\xed\xf7\x08\x79\x06\xcd\ +\x78\x2e\x21\x13\x0f\xa7\xe3\x84\x90\x5a\x19\x6d\x20\xa2\x10\xe0\ +\xfc\x7e\x3f\x99\x54\x25\x06\x62\xba\xbd\xd2\x3d\xa9\xcc\x16\x68\ +\x1e\x88\x00\xca\x82\x85\x35\x65\x05\xcb\x06\x6c\xae\xd8\x24\x94\ +\xf4\xf8\x21\xe6\xce\x41\x03\xaf\xfb\x7e\xf9\xf6\x78\x4e\x17\x8c\ +\x34\x23\x8c\x0c\x04\x8c\x10\x69\x1e\x88\x28\x31\x28\x13\xf6\x64\ +\xa2\x65\xc6\x21\xc2\x1c\x86\xa6\x2e\x05\x35\x78\x90\x89\x9b\xb4\ +\x85\xe6\x97\x93\x7e\x10\x51\x4d\x74\x51\xe0\x79\xde\x0c\x29\xb4\ +\x96\x8e\x04\x24\x34\x3c\x4d\x01\x08\x89\xe0\x73\x51\x7b\x3a\x32\ +\x90\xa6\xf3\x61\x81\xa3\xc5\xd1\x56\xe1\x24\x9c\x06\x02\x28\x5a\ +\x88\x49\xf4\x98\xb6\xcc\xfc\x62\xfa\x96\xc1\xd7\x0d\xb8\xc2\x2b\ +\x70\xb0\xba\x7c\xb0\x3a\xbd\x68\x74\x78\xd1\xe0\xf0\xa0\xc1\xee\ +\x41\x83\xc3\x0d\xb3\xcd\x05\x8b\xd5\x0d\xb7\xd7\x1b\x26\x13\x5c\ +\xfa\x5b\x10\x04\x09\x10\x82\x5a\x35\xbd\xa7\xff\x2b\x22\x21\x36\ +\x06\xdd\xba\xa6\xa1\xa4\x6b\x06\x8a\xf3\x33\x50\x52\x90\x8d\xa2\ +\xbc\x0c\x44\x47\x35\x75\xeb\x67\x17\xb7\xc7\x83\xd2\x8a\xed\x58\ +\xba\x66\x23\xd6\x6e\xa8\x84\xc3\xa9\x90\x3e\xaa\xee\x45\x24\x4f\ +\x5c\x75\x63\x78\xf0\x4f\xf7\x62\xde\xfc\xf9\x0b\x20\xfa\x0f\x43\ +\x7a\xf9\xbe\xf3\x31\xf1\x86\x71\x72\x12\x3f\x88\x05\x40\x62\x55\ +\x55\xd5\xf1\x45\xdf\xce\x5a\xf7\xf0\x1f\xef\x1d\x38\xeb\x9b\xb2\ +\x58\x72\xf0\x5b\xd3\x7f\xca\x7d\xeb\xdd\x8f\x27\x3e\x34\xfc\x8e\ +\xb1\x46\xa3\x91\xed\xed\x41\x87\x1a\x99\xd3\xdb\xba\x3d\x1a\xb9\ +\x1e\x74\xb8\xae\x01\x40\xda\x87\x1f\x7f\x7a\x7f\xd9\xb6\x9a\x6b\ +\x0e\x1e\x3d\x1d\x0c\x27\x2f\xcc\xcb\x10\x07\x5c\x94\x76\xfc\xb1\ +\x91\x7f\x5e\x0b\xc5\x7f\xc1\x86\x25\xea\xe4\x36\x79\xf5\x7a\xbd\ +\xa7\xdf\x05\x85\xa2\xdb\xed\x95\xa2\x8a\x38\x88\x69\xa9\x06\x0e\ +\xca\x60\x65\x1d\xe2\xe7\x32\xc0\x68\x13\xa3\x57\xcf\xf3\xbe\x1b\ +\xae\xea\xe5\x35\x59\xac\x9c\x28\x92\x79\x1c\xd2\x6d\x70\x91\x4f\ +\x78\x1c\x38\xe2\x52\x16\x01\x0e\x7d\x7b\xe7\x73\xdf\x0a\x02\x19\ +\x14\xfe\xfc\xbc\x0c\xdd\x90\xeb\xfb\x7a\xc9\x31\x99\xe9\x29\x1c\ +\x94\x78\xff\x73\x01\x11\xe9\x8c\x6a\x5f\x04\x07\x20\xf0\xd5\x97\ +\x73\x5c\x13\xdf\xbc\x30\xa6\xff\xc5\xdd\x06\xf0\x3c\x4f\x4c\xac\ +\x21\xc9\x91\x22\x10\x51\xc4\x52\xf5\xc9\x86\x84\x19\x5f\xfc\x38\ +\x86\xd7\xf1\x01\x1d\xaf\xf3\x73\x9c\x4e\x90\x7d\x41\xad\xd7\x4f\ +\xa9\x77\x22\x33\x25\x83\xe3\x38\xe1\x77\xbd\x0b\x9c\x97\x5c\xd4\ +\xe3\x0e\x28\x01\x0f\x0a\x75\xbe\x28\x72\x02\x93\xeb\xd3\x1c\x11\ +\x45\x11\x7a\xbd\xde\x02\x29\xb1\xaf\x1e\xea\xbc\x0c\x2d\x00\xa1\ +\x73\x93\xc2\x69\xcf\xa4\x3f\x93\xdf\xb3\xe6\xd8\x56\x1d\xd7\x61\ +\x67\x61\xb9\xe3\x08\x90\x26\xa7\x9a\xea\x9d\x4b\x66\xce\x5b\xb4\ +\xe2\xd2\xe3\x62\x11\xef\x74\x13\x80\x60\xcc\x49\x6c\xd9\xd0\x50\ +\xc5\x9f\x2c\x41\x94\x2f\x44\x65\x9f\x93\x9e\x88\xa2\xdc\x54\x14\ +\x77\x4d\x47\x51\x5e\x1a\xba\x77\xcd\x40\x4e\x86\xa1\xb5\xda\x0a\ +\x97\x5b\x02\x8d\xe5\xeb\x36\x63\x6d\xf9\x56\xb8\x5c\xae\x50\x4d\ +\x83\xe2\xe0\x12\xd9\xfb\x95\xbf\xeb\x77\x61\x1f\x58\xec\x42\x83\ +\xb3\xb6\xea\x1b\x9c\x3f\xdf\x07\x2b\xf4\xea\x88\x98\xb1\x88\x6a\ +\x1f\xb7\x70\xc1\xfc\xbd\xdd\x4b\x7a\x66\xde\xfc\xfb\x0b\x2f\x59\ +\x56\xba\x33\x0a\x90\xb2\xe5\x27\xcf\x58\xda\x6b\xd6\x97\xdf\xbf\ +\x3f\x65\xd2\xb8\x97\xd6\xad\x5b\x77\x08\xca\x04\x4e\x26\xd3\x60\ +\x87\x6b\x2b\x6d\x84\x89\xb4\xa2\x4d\x22\x74\xf5\xbf\xb4\x2f\xbf\ +\xfe\xfe\xd9\xad\xfb\x4c\x37\xaf\x5c\xbf\x23\xe8\xb0\x32\x24\xc5\ +\xe3\xe1\xbb\x2e\xad\x7b\xe8\xbe\x3b\x97\x42\x89\x32\x21\x00\x42\ +\x54\x76\x51\x3e\xa7\x17\x80\xbb\xb2\xb2\xf2\x64\xcc\x8c\x49\x1f\ +\x79\x3c\x1e\x83\x28\x8a\x7a\x9e\xe7\xdd\x9b\x57\xb8\x6b\x11\x3a\ +\x58\x23\x73\x40\x48\x42\xaf\x5a\x83\xb5\xc7\x3f\xfa\x70\xca\xaa\ +\xe2\xe2\xe2\x93\x1e\x8f\x27\xcd\xe7\xf3\x25\x89\xa2\x18\x2d\x5b\ +\x87\x88\x96\x2f\xc8\xe3\x4c\x90\x9f\x4d\xb3\xae\xc3\x71\x5c\x40\ +\xa7\xd3\xf9\x79\x9e\xf7\xf0\x3c\xef\xdc\xbd\x31\xca\xb9\x6f\xdf\ +\xbe\x46\xf9\xda\xe2\xe4\x89\x2f\xcc\xd5\xeb\xf5\xf1\x00\x38\xbd\ +\x5e\xef\xaa\x5c\xe9\xae\x83\x46\xd2\x58\xb3\x1a\xa6\x1d\xde\x4b\ +\x47\x40\x91\xef\x5c\xe3\x5f\xfe\xbf\x45\x1f\x7e\xfc\x99\xf3\xc4\ +\xd1\x43\xc4\x2c\x43\xae\xa7\x44\xa9\x31\x39\x39\xcd\x95\x45\x2b\ +\xb7\x45\x43\x32\x6d\x9e\x77\x19\xf7\xe4\x1d\x87\x01\xa4\x40\x6a\ +\x93\x00\x45\x0b\x01\x80\x48\xf3\x40\x04\xbd\x5e\xdf\x00\x25\xc9\ +\x8f\x04\x72\xd0\x7d\x92\x06\x01\x16\x48\xd8\x8d\x3d\xbe\xcd\x80\ +\x83\xc8\xd9\x96\xf1\x22\xa4\x41\x68\x16\x7d\xf6\x5f\x66\x7e\xf2\ +\xea\x57\xaf\xbd\x35\xf7\xc1\xd5\xfb\xc9\x97\x0c\x42\xa8\xc8\x12\ +\x69\xd3\x8f\x62\x82\x82\x28\x22\x4a\xcf\x23\x3f\x2b\x19\xdd\xba\ +\x24\xa3\xa8\x4b\x0a\x8a\xf2\x52\x51\x94\x9b\x8a\xc4\xf8\xd6\xef\ +\x1b\x4e\x97\x07\x65\x9b\x7f\xc1\xb2\xd2\xcd\x28\xdb\xbc\x03\x6e\ +\xb7\x5b\xad\x69\x50\x00\x06\x0a\x2e\x94\xff\xaa\xbf\x8b\x8f\x8b\ +\xc5\x1f\x6e\x19\x2a\xbc\xf1\xfa\xff\xbd\x0f\xe0\x08\xe4\xcc\xf3\ +\xf3\x69\xf6\x69\x42\x0b\x69\x84\x34\x09\xc7\x02\x88\xf9\xc7\xe4\ +\xd7\xcb\x3f\x9a\x31\x2b\xe5\x64\xcf\xbc\x92\x9d\xfb\x8e\xeb\x00\ +\xe0\x74\x9d\x89\x1b\x37\x65\x61\xc9\x8b\xcf\x4c\x78\xff\xe2\x7e\ +\x3f\x4d\xfe\xf0\x83\xa9\xe5\x50\x4f\x06\xaa\x28\x24\x79\x75\x77\ +\xce\x1d\x90\x53\xcf\x8c\xb4\x29\x84\xd8\xd2\x49\xdd\x71\x43\x6e\ +\x6e\x6e\xf6\xcc\xcf\xbf\x7a\x73\xf6\x77\xe5\x97\xec\xdc\x77\x22\ +\x48\x37\xa0\xd7\xf3\x78\xee\x91\x1b\x1b\x9e\x79\x7c\xc4\x12\x9f\ +\xcf\x47\x62\xdc\xe9\x44\x40\x42\xc9\x00\x50\x51\x6a\x56\xab\xd5\ +\xbc\x64\xc9\x92\xbd\x90\xb4\x1a\x5e\xfe\x9c\x98\xbc\x22\x22\x91\ +\x0b\x23\x34\x80\xb8\x01\xd8\xab\xab\xab\x4f\x55\x57\x57\x07\x00\ +\xa4\x43\xaa\xa9\x1e\x0b\x65\xe2\x69\x91\x5f\x82\x12\x3a\xa1\xd4\ +\x0d\xc5\x06\x4e\xea\xd0\xf0\xa5\xa5\xa5\x4e\x48\x7d\x01\x90\xda\ +\x48\x7c\x44\x11\xb5\x57\xa3\xcf\x11\xce\x2c\xf2\x5e\xfd\xf2\xb9\ +\x63\x9f\x7e\x62\xf4\x5c\xf9\x6f\x9a\xa2\x85\x47\x70\x24\x45\x96\ +\x07\xd2\x9e\xe2\xf7\xfb\xa2\x00\xa4\x42\x6a\xaf\x07\xaa\x3a\x3b\ +\x91\x55\x24\x14\x21\x42\xaf\xd7\xdb\xa1\xf0\xaa\x19\xa1\x14\x24\ +\x63\x69\x75\xd8\xed\x6c\x91\x81\x6d\x0a\x1c\x44\x9a\x04\x10\x55\ +\x62\x21\x50\x63\x3b\x55\x39\xe7\x83\xa9\x2f\x96\x3c\xf2\xe4\xbb\ +\x57\x6f\x3e\xdc\xa0\x39\xc1\x2a\x3f\x96\xfe\x31\xc4\xc7\xa0\x20\ +\x3b\x01\x05\x59\x06\x14\x66\x27\xa1\x5b\x97\x64\xe4\x65\x26\x81\ +\xe7\xb9\x10\x0e\xac\xd6\x12\xa7\xcb\x83\xd2\xcd\x3b\xb1\xa2\x6c\ +\x2b\xd6\x6f\xdd\x09\x8f\xdb\x43\x39\xc2\x19\xb0\xa3\x81\x4e\x94\ +\xe1\x4e\x8b\x7a\x5e\x6e\xcf\xc3\xf7\xdf\x87\xa9\xef\xfd\xe3\x4b\ +\xc1\x71\x7c\x05\xa4\x95\x83\x1b\xcd\x1f\xf8\xad\x2d\xc4\x5c\x42\ +\x26\x12\x1b\x94\xe8\xa5\x68\x00\x51\x4f\x3f\x31\x6a\xc5\x57\xdf\ +\x2c\x4a\xb2\xda\x1c\x39\x47\x4f\xd4\x73\x00\xe0\x74\xba\x31\x7e\ +\xca\xb7\xb9\x7f\x7d\x60\xd0\x84\xf7\xa7\xf5\x9c\xf3\xcc\x53\x7f\ +\xf9\x06\x52\x5f\xa0\x1d\x79\xaa\xba\xc8\x40\x68\x9c\x7d\x53\x1d\ +\x93\x0b\x5d\x4a\xd3\xbe\x0e\xda\x64\x45\x42\x75\xe3\x01\x18\x86\ +\x0c\x19\xd2\xfd\xf1\x67\x5e\x9e\x34\x69\xfa\xe2\xee\x75\xc6\xc6\ +\xe0\x39\x78\x5e\x87\xbf\x8f\xfe\x83\xfd\xdd\xb7\xc6\x2d\xab\xad\ +\xad\x3d\x03\x75\x0d\x0e\x96\x92\x81\x80\x13\x79\x26\x7a\xb9\x2d\ +\x76\x28\xa6\x2d\x12\x78\x40\x67\xe8\x47\xa4\x81\x30\x21\xd6\x74\ +\x92\xa7\x55\xbe\xb6\x20\xdf\x5f\x3c\xa4\x77\x43\xdb\xcf\xe9\xeb\ +\x35\xf7\xda\x34\x50\x91\x6b\x11\x5b\x38\x9d\x11\x4f\xc0\xd7\x03\ +\x35\x7d\xfc\xb9\xb4\x57\x2b\xbc\x17\x50\x40\x25\x46\xfe\x8c\x68\ +\xc6\xc4\xd1\xad\x10\x4c\x8a\xe8\x90\xbc\x51\x4d\x49\x20\x10\xe0\ +\x21\x69\xc6\xc4\xbf\xa6\x07\x69\xbf\xdc\x9e\x08\x7c\x20\x22\xcf\ +\xf3\x6e\x28\xb4\x36\x24\x92\x90\xce\x0e\x0f\x17\x0d\x18\xee\x73\ +\x90\xfd\xf9\x58\xd4\x9e\xd5\x91\x20\x0f\x0e\x1f\xa4\xc1\x56\x7d\ +\xec\x97\x1f\x26\x2f\x59\x50\x38\xed\x92\xc1\x63\x0a\x8e\xd7\xd9\ +\xc8\x51\xd0\x81\x43\x56\x5a\x1c\xba\x66\x24\xa0\x6b\x66\x02\x0a\ +\x32\x13\x51\x90\x9d\x84\x94\xc4\xe8\x66\x91\x25\x9e\x2b\x88\xd8\ +\x9d\x6e\x94\x55\xee\xc6\xaa\x0d\xdb\x50\x5e\xb5\x07\x6e\x8f\x27\ +\xc4\x11\x1f\xb2\x57\xd1\xca\x87\x34\x5c\xbd\x87\x88\x9b\xae\xbb\ +\x06\x0b\x16\x2d\xd9\x60\xaf\xad\x9a\x0b\xe0\x18\xa4\x41\x79\xbe\ +\x1c\xe7\xcc\xed\x69\x6a\x21\xf4\xa4\xac\x07\xa0\x17\x04\x81\x1f\ +\xf9\xd0\xb0\x1f\xa7\xcf\xfc\xe2\xd6\xb2\xaa\x9a\xdc\xb5\x9b\xf6\ +\x48\x65\x8c\x01\x7c\x3c\x67\x69\xfa\x6d\x03\x2f\x7b\xec\x87\x9f\ +\x56\x5c\x3c\xe9\xf5\x71\x53\x2b\x2a\x2a\x6a\xa0\xac\xe4\x89\x7d\ +\x55\xcb\x8e\x2a\x02\x41\x90\xd0\x6a\xbb\x96\xb6\x41\xfb\x3a\xe8\ +\xba\x1e\x71\x90\x1d\xe6\xd3\xa6\x7f\xfa\xc7\xe4\x8c\xc2\xfb\x9f\ +\x7f\xeb\xab\x2e\x1e\xaf\x52\x8b\x26\x2d\x25\x09\x63\x47\xdf\xd2\ +\xf0\xe1\x94\xd7\x57\x6d\xdd\xba\xe5\x28\x14\x0a\x75\x23\xa4\xd5\ +\x1b\x9d\x55\x4b\x67\x85\xbb\xa1\xe4\x08\x78\x20\x01\x15\x07\x65\ +\xb5\x4c\xa2\x55\x54\xa6\xbb\x56\xf0\x7f\x90\xc9\x53\x27\x9f\xd3\ +\x03\x69\x82\x20\xf5\x59\xce\xa5\x42\x24\xb9\x37\xda\xa4\x41\x9c\ +\xaa\xa4\x94\x32\x09\x77\x25\x6d\xa7\x83\x2d\x22\x6e\x6f\x98\xc8\ +\x2c\x72\x2f\x04\x40\xa2\xe5\xf6\x91\xef\x03\xf2\x7d\xc4\x82\x1a\ +\x78\x1d\x95\xb9\x36\x9c\x04\x02\x7e\x3d\x24\x0d\xd2\x06\x85\x2b\ +\x8c\x72\xa2\xb7\x3c\x0a\x4b\x0a\x08\xd2\xd1\x94\x36\xf4\x42\x80\ +\xad\x16\x49\x4f\x5e\x61\x26\xb4\xf3\x03\x1a\xb4\x34\xcb\x13\x2d\ +\x8a\xa2\xc0\x71\x9c\x07\x80\x11\x10\xf7\x57\xae\x9a\x39\x3e\x2f\ +\xbf\xfb\xc7\xd7\xfd\xfe\x7f\x12\xf2\xd2\x63\xd1\x35\x3d\x1e\xb9\ +\x19\xf1\x88\xd6\xeb\xda\x1c\x28\x68\xb1\x3b\xdc\x28\xdd\xb2\x07\ +\xab\x37\xee\x40\xc5\xf6\xfd\xf0\xfa\xbc\xb2\x83\x9e\x5e\x09\x68\ +\x98\xa9\x82\x8a\xb4\xf2\xaf\xb6\x36\xa5\xec\x07\x5c\x79\x39\xea\ +\xcd\x8e\x63\x27\x76\x2d\x7e\x1b\x00\x89\xfc\xf1\x8a\xed\x48\x80\ +\x13\xc6\xac\x10\x12\x21\xe3\x74\x3a\xb9\x87\x1f\x1c\xf6\xd3\x2b\ +\x13\xde\xb8\x7a\xd4\x7d\x37\xf6\xfe\xec\xdf\xab\xe3\x48\x3f\x5b\ +\xb4\xb2\x32\x71\xfd\x96\x7d\x03\xc7\x3c\xf9\xca\x85\x7f\x7f\x51\ +\x57\xfa\xc2\xd8\xa7\xa7\x1f\x3a\x74\xc8\x04\xc5\x9f\x40\x6b\x23\ +\x74\x72\x5d\x53\x66\x17\xda\xc7\xc1\x3a\x5c\x09\xc0\x11\x7f\x47\ +\xc2\xe4\x7f\x4c\x19\xd4\xbb\xef\xe5\x8f\x7c\xbd\x78\x53\x71\xc5\ +\xb6\x0a\x15\x43\xe6\x45\xbd\x0b\x85\xe1\xb7\xf6\xab\x7d\x72\xcc\ +\x03\xcb\xea\xeb\xeb\xe9\x02\x4e\xa4\x06\x07\x5b\x8a\x93\x4c\xa0\ +\x74\x41\xaf\x00\xa4\x81\x19\x05\x25\x3f\x84\x68\x6d\x2d\xaa\x01\ +\x7d\x16\x61\x4d\x58\x64\xa2\x75\x43\x5a\x59\x6a\x15\xf7\x0a\x07\ +\xc2\xcd\xbd\x16\x6b\x17\x27\xe7\x62\xfd\x13\xad\xd2\x5e\xaa\xcf\ +\x01\xca\x33\xa6\x35\x2f\xb2\x32\xa7\x27\x3f\xc2\x14\x2c\x01\x16\ +\xd0\xa1\x6b\x67\x68\x89\x20\x08\x3a\x48\x20\x18\x0d\x75\xe2\x22\ +\x47\x72\x6e\x5a\xda\x26\x2a\x37\x27\x9c\x6f\x43\xcb\x4f\xa5\xb1\ +\xd6\x6d\xbf\xfc\xad\x96\x84\x32\x91\xc4\xab\x5a\x31\xe0\xda\xf6\ +\xc3\xbc\x89\xaf\xf6\x28\xc8\x99\xf4\xc7\x2c\xac\xc8\x79\x00\x00\ +\x0d\xde\x49\x44\x41\x54\x6b\xfe\xa8\xd7\x32\x43\xb5\x15\x99\xa2\ +\xd5\xee\x42\xd9\xd6\x7d\x58\xb3\x69\x17\x2a\x7f\x39\x04\x9f\xcf\ +\x4b\x39\xf3\x01\xd0\x26\xa8\x30\x55\x10\x95\x70\x5c\xea\x2b\x0d\ +\xd0\x20\x26\xad\xcb\xfb\xfd\x0e\xc9\x29\x39\xb6\xd5\x8b\xdf\x18\ +\x0f\xe0\x00\xa4\x95\xaf\xa7\x3d\xc1\x83\x11\xd6\xa1\xae\x43\xa8\ +\x93\x53\x7c\xfd\xb5\x71\x1b\x6e\xbb\xfd\x8e\xba\x89\xcf\x8e\x19\ +\x30\x69\xfa\xa2\x24\x87\x53\xb2\x2e\x98\xcc\x0d\x78\x6b\xda\x82\ +\x9c\x82\xbc\xcc\x7b\x27\xbe\x3d\xe3\x6a\xce\x6f\x5b\xf6\xd8\xa8\ +\x11\xb3\x6d\xb6\x60\x7d\x77\xb2\xba\xa5\x1d\x75\x5a\xab\x23\x22\ +\xe1\x80\x83\x38\xca\x63\x01\xc4\x3d\xff\xc2\x4b\x97\x5d\x7b\xc3\ +\x1f\x9e\x5c\xb2\x66\x7b\xc9\x27\xaf\xce\x8e\x63\xce\x81\x7b\x86\ +\x5c\xe9\xc9\x4b\x13\x8f\x3c\x30\xfc\xce\x75\x82\x20\x58\xa0\x06\ +\x0f\x42\x45\x4d\xd3\x8f\x84\xe4\xb6\xc8\x9b\x1f\xea\x15\x39\x3d\ +\x68\x59\x53\x5d\x44\xa2\x01\xe6\x2c\x98\x04\x01\x1d\xad\x93\x31\ +\xcd\x9a\x33\xd8\x36\x90\xe7\x0f\xa8\x81\xe6\x9c\xdb\xab\x01\x22\ +\x74\x5b\xd9\xf6\x91\x76\xd3\x31\xf9\x1d\xb6\x76\x46\x38\x11\x05\ +\x81\x83\x7a\x01\x20\x82\xb4\x53\x8c\x4c\x03\x81\x28\x80\xf2\x31\ +\x92\x67\x48\x6f\x2a\x13\x63\x7b\x27\xfa\x6a\x49\xb3\x01\x84\xf2\ +\x87\x38\x00\x9c\x12\xdd\xf5\xeb\xa6\x4e\x79\xf1\xc3\xa2\x82\xfc\ +\x67\x07\xff\xfe\x4a\xcd\x01\xd1\x5a\x20\xd2\x68\x77\xa1\x6c\xcb\ +\x7e\xac\xdd\xbc\x17\x5b\x77\x57\xc3\xef\xf7\x29\x15\x09\x41\xe1\ +\x84\xfa\x8e\xc9\x8d\x93\xfb\x97\x8f\xd5\x30\x39\x87\x54\x4a\x54\ +\xa2\xaf\x7e\x77\x41\x6f\xf4\xbf\xfc\x2a\xdf\x94\xc9\xff\x3b\x41\ +\x0c\xb8\xb6\x41\x9a\xc0\xda\x23\xea\x4a\x53\x98\xac\x61\xb2\x22\ +\xa4\x09\xfa\x00\x6a\x92\xf9\x69\xf1\x8f\x81\xbd\x7b\x76\x59\x26\ +\xbd\x33\x6d\xd0\xac\x6f\xd6\xa7\xed\x3d\x74\x32\xb8\x1a\x3e\x76\ +\xa2\x96\x7b\x71\xd2\xdc\xfc\xbe\xbd\x0a\x1f\xf9\xe7\xdc\xef\x07\ +\x27\xc4\xf2\x87\xf7\xef\xd9\xb1\xe8\xb5\x57\xc7\x6f\xb4\x5a\xad\ +\xb4\x6f\x24\x24\xae\x1c\xf4\x80\x0a\xcd\x15\x20\xf6\xf8\x98\x91\ +\x23\x47\x16\x0d\xb9\xed\xee\xbb\xf8\xa8\xf8\x4b\x36\xef\xa8\x2e\ +\xfc\xdb\xf8\x59\x49\x01\xc6\x76\x1c\x1f\x17\x83\xa7\x47\x0e\xb1\ +\x57\x6e\x58\x56\x35\xe5\xb5\x99\xbb\xa0\xd4\xce\xa0\xc1\x83\xb6\ +\xe7\xd3\xf6\x62\x22\xf4\xbd\x11\x70\x25\xcf\x24\xdc\x60\x3d\xa7\ +\x41\xca\x80\x08\xa8\x6b\x13\x66\xdb\x90\x0c\xe6\x73\x14\x2d\x1b\ +\x38\xfb\x1e\xc8\x71\xad\xda\x5e\xc6\xef\x03\x28\x20\xc5\xf6\x01\ +\xfa\xda\xf2\xf1\x6d\x9f\x17\xd3\xda\x22\x4a\x59\xf0\x34\xf9\x25\ +\xfd\x6d\x64\x3e\x10\x21\xa8\x81\x84\xdd\x3a\x22\x68\xd0\xd2\xa2\ +\x64\x0a\x2a\xc1\xd0\x0a\xe0\xb8\xdf\x7a\x68\xe1\xb3\x63\x47\x27\ +\x8c\x7f\xe5\x9d\xd1\x7f\xba\xfd\x16\xcd\x74\xef\x48\x41\xa4\xc1\ +\xe6\xc4\xfa\xaa\x43\x58\x5b\xb9\x0f\xdb\xf6\x1e\x43\xc0\xef\x57\ +\x72\x4a\x64\xcd\x80\x4c\xf2\xcd\x33\x53\xd1\x0d\x61\x8e\x85\xc6\ +\xb1\xa2\x88\x3e\x3d\xbb\xa3\xef\x85\x17\x7b\xa6\xbe\xf3\xf2\x1b\ +\xa2\xc7\xb8\x0e\x52\xbc\xb6\x03\xed\xe4\xf7\x08\x27\xcc\xc4\x15\ +\x80\xc2\x44\x0b\xa8\x27\x51\x3f\x00\xdf\xe1\xc3\x87\xbd\x0f\xde\ +\x77\xd7\x0f\x2f\xbf\xf2\xda\xe5\xf7\x0e\xbd\xab\x68\xee\x77\xeb\ +\x0d\x87\x8f\x9d\x09\xbe\x8d\x5f\xf6\x56\xf3\x63\x27\x56\x17\xc6\ +\x44\x47\x15\x5e\xdb\xff\x82\x6b\xdf\x9b\xf1\x55\x5d\x9a\x21\xee\ +\xb8\xc5\x74\x7a\xdd\xfc\x7f\xcf\x2d\x5d\xbd\x7a\xb5\xd1\xe7\xf3\ +\x85\x5b\xc9\xaa\x7c\x1d\x3d\x7b\xf6\x4c\x1c\x3d\xfa\xb1\xbe\x7d\ +\x2e\xba\xec\x76\x9b\xd3\xd7\x7d\xef\xc1\x9a\xec\x77\x3f\x5b\x9e\ +\x7c\xaa\xd6\x14\xd2\x8e\xd8\x98\x68\x3c\x70\xf7\x75\xae\xfc\xac\ +\x38\xe3\x7b\xef\x4e\x28\xdf\xb9\x73\xe7\x69\x28\x11\x2a\x84\x51\ +\x94\xcd\xf9\xd0\x24\x84\xa3\x26\x37\x32\x81\xb1\x80\x4a\x7f\x7f\ +\xce\xe0\x41\x84\x79\x17\xf4\x75\x59\xe0\x38\x57\x10\xd1\x58\x09\ +\x69\x6a\x82\xec\xf7\xad\xd6\x5e\x66\xf1\x42\xef\xc9\xb5\xc9\x6a\ +\x9d\x09\x27\x8d\x2c\x0f\xa4\x3d\x45\x36\x36\x68\xbd\x33\x11\x40\ +\x44\x51\x58\x82\xa2\x81\x74\x5a\x69\x71\x36\x1e\x05\x22\x8d\x00\ +\xaa\xdd\xa6\x9d\x5f\x8c\x7b\xe9\xd1\xd3\xd5\x47\x27\xbc\xf0\xfc\ +\x13\x23\x63\xf5\xfa\xd0\xf2\x21\xcd\x05\x11\x8b\xd5\x89\xf5\xdb\ +\xaa\x51\xba\xe5\x20\x76\x1c\x38\x21\x81\x86\x48\x23\x3b\x05\x05\ +\x67\x31\x41\xa9\xea\xb2\xb3\xa6\x2d\xfa\x58\x51\xfb\xd8\x9b\x6f\ +\xbc\x16\x36\x87\xdf\xf4\xf9\x47\x2f\x8f\x13\x7d\x8d\x9b\x00\x9c\ +\x84\x5c\xeb\xbc\x23\x81\x07\x11\x8d\x58\xfd\xe0\x57\x50\xb4\x93\ +\x60\x7d\x0b\x8f\xc7\xe3\x19\x3f\xee\x85\xb2\x84\x84\x84\x1d\x2f\ +\x8d\x7b\xed\xd2\xfb\xee\x18\x50\x38\x67\x41\xa9\xe1\x78\x4d\x5d\ +\xf0\x87\x6e\x8f\x07\x2b\xcb\xb6\x45\xaf\x2c\xdb\xd6\x15\x40\xd7\ +\x3e\x3d\x0a\xae\xba\xe9\xd6\x07\xc7\x0c\x1f\xf1\xb4\x47\xaf\xe7\ +\xdd\x7a\x9e\x73\x45\xe9\x79\xa7\x5e\xaf\x73\xf2\x3a\x38\x01\x2e\ +\xc6\xeb\x0b\xc4\xf9\xfc\x42\x9c\x3f\x20\xc4\xfb\x03\x42\x9c\xc3\ +\xe9\x8e\xa9\xda\x59\x9d\xf4\xe9\x77\x73\x62\x5d\x6e\x0f\xb4\x24\ +\x3a\x3a\x0a\xf7\xdf\xf9\x7b\x77\x71\x9e\xc1\x34\x63\xda\x94\x8a\ +\xca\xca\xcd\xa4\x4a\x1f\x1d\xde\x68\x82\x52\x01\x90\xf8\x67\xc2\ +\xb2\x89\x32\x0e\x5f\x7a\x55\x4e\x3f\x17\xb0\xbf\x6b\x0d\x61\x4c\ +\x3c\x5a\xd7\x26\x72\xae\x8e\xf4\x88\x7e\xd3\x9a\xed\x65\x00\x9b\ +\xbe\x0e\xad\xed\xd1\x03\x4f\x00\x22\xcb\x03\xe9\x00\xc2\x82\x36\ +\xa5\x29\x44\x90\x07\xa2\x64\x52\xab\x4c\x55\x9d\x49\x22\x4a\xe7\ +\x96\x9d\xea\x5e\x48\x03\x3a\x20\x38\x6b\x16\x7f\xfe\xf1\xd8\xda\ +\xa3\x27\x8e\x4e\x9c\xf2\xea\x4b\x99\xc9\x49\x09\x21\xbf\x09\x07\ +\x22\xe6\x46\x27\x36\xec\x38\x8a\xb2\xaa\xc3\xd8\x79\xf0\x14\x04\ +\xc1\x1f\x4c\x52\x94\xaf\x16\x34\x3d\x05\x97\x2f\x2c\x7a\xa8\x92\ +\xff\x80\x26\xc7\x07\x7b\x2c\x73\x2e\x5e\xc7\xe1\x91\xfb\x87\x63\ +\xc5\x9a\xf5\xbb\x77\x6e\x98\x37\x11\xa2\x7f\x17\xa4\x64\x41\x3b\ +\xce\x73\xbe\x47\x4b\x45\x03\x44\xe8\x15\x38\x1d\xb1\x13\xe4\xd1\ +\x71\x38\x1c\xae\x97\x5f\x1c\x5b\x66\x30\x18\xb6\xbd\xf4\xca\x6b\ +\x97\x27\xa5\x5e\xd3\x75\xc1\xcf\x9b\x0c\x07\xaa\x4f\x86\x9c\x7f\ +\xcf\xfe\x23\xba\x3d\xfb\x8f\xa4\x69\x5d\x5b\xa7\xe3\x20\x08\x2d\ +\x7b\x34\xa9\xc9\x49\xb8\xfd\xe6\x2b\x3c\x3d\xf2\x53\x4d\x9f\x7e\ +\xf2\x41\xe5\xa6\xf2\x8d\xb5\x50\x67\xd5\x13\x2a\x6a\xc2\x2c\x4a\ +\x53\x51\x9f\x95\x4d\x94\xf9\x8c\x00\x8a\xd6\x77\xad\x2e\xf4\xf9\ +\x9b\x48\x0e\x6c\xf5\x7b\xa0\x26\x74\x4e\xeb\xf3\xb6\x12\xf6\xfc\ +\x8c\x06\x48\xf7\x43\xc9\x91\xde\xc9\x34\x10\x79\xe2\x60\x7d\x13\ +\x02\xa4\x44\x50\x91\xad\x7b\xdf\xbc\x33\x0a\x84\x52\x27\xc4\xdf\ +\xd1\x59\x24\x62\x3e\x10\x19\x44\x7c\x90\x56\x84\x01\xd1\x67\x75\ +\xaf\xfc\xee\x1f\x4f\xfc\xf9\x74\xcd\x84\x69\x6f\xbf\x75\x61\x71\ +\x41\x6e\xc8\x6f\x48\x97\x36\x35\x3a\x51\xbe\xf3\x38\xd6\x6f\x3f\ +\x82\xbd\x47\x4e\x43\x08\x08\x4a\x26\x27\xa5\x09\xa8\x34\x03\xd5\ +\xc5\x95\x63\x54\x1a\x07\xa8\x63\x09\xd0\x34\x75\x2c\xe3\xfb\x48\ +\x4d\x4e\xc2\xc8\x3f\x0f\xc3\xc7\x9f\x7c\xf2\x9f\xda\x83\xab\xa6\ +\x01\x38\x08\xc9\x74\x72\x3e\x79\xae\xce\x49\x18\x10\x21\xf7\x4b\ +\x3a\xa9\x56\x89\x56\x07\x80\x64\xab\xd5\x9a\xf4\xc2\xdf\x9f\x5d\ +\x9b\x9a\x9a\x9a\xf8\xd8\x98\xc7\x7b\xdf\x77\xfb\x9d\x79\x5e\xbf\ +\x2e\x71\xcb\xce\x23\x09\x65\x15\xbb\xf4\x4e\x97\xb6\xf6\x40\xa4\ +\xb9\xe6\xdf\x0b\x7b\x75\x13\x6f\xba\xa6\xaf\x33\x33\x35\xde\x69\ +\x6f\x34\x9a\xbf\xf9\xfa\x5f\x7b\x26\x95\x6f\xac\x87\xf4\x8c\x09\ +\x9b\x28\xa9\x67\x40\x03\x07\x31\x59\x85\xf8\x3c\x5a\x12\x86\xda\ +\xbc\xbb\x6c\x5d\x69\xaf\x30\xef\xf3\x7d\xcd\x30\xc2\x2e\x62\x7c\ +\x1c\xc7\x09\x42\x27\xf3\x81\x40\x6a\x03\xeb\xff\x53\xb5\xa7\xa5\ +\x6d\x12\x01\x51\x0e\xe3\xd5\x0a\x00\xe9\x14\x72\x4e\x84\x52\x14\ +\x88\x58\x01\xf8\x21\xfa\xbd\xbb\x36\xce\x19\x3b\xfc\x91\x93\x4f\ +\xbe\xfd\xc6\xdb\x43\x6f\x1a\x70\x59\xf0\xd8\xfa\x06\x27\x2a\x76\ +\x9f\xc4\xc6\x9d\xc7\x70\xe0\x58\xbd\x14\x35\x25\x08\x50\x14\x0d\ +\x45\x13\x08\xd1\x0c\x9a\x30\x41\x29\xc9\x7f\xf4\xb1\xaa\xbb\x0c\ +\x7f\x2c\xf5\xfd\x4d\xd7\x5e\x89\x1e\xdd\xbb\x07\xde\x7c\xf3\x95\ +\x19\x1e\xf3\xbe\x05\x90\xb2\xcc\x4d\x90\x93\xb3\x3a\xd0\x80\x3c\ +\xab\x34\x11\x11\xc4\x6a\x21\x84\x0a\x3e\x05\x52\x92\x54\x92\xc5\ +\x62\x49\x7c\x7b\xf2\x9b\x8d\x00\x62\x78\x9e\x8f\x1e\x7a\xdb\x6d\ +\xd9\x7f\x1b\x31\xb4\x24\x3a\xd6\x90\x62\xb4\x38\x13\x8e\x9e\xac\ +\x8b\xaa\x35\x36\x46\x19\xe5\xba\x2b\x24\x92\x8b\x16\x3d\xcf\x23\ +\x23\x3d\x19\x99\x19\x29\xc8\xca\x48\x09\x64\x67\x24\xfb\x0a\x72\ +\xd3\x5c\x31\xbc\x60\xdb\xbb\x7b\xfb\xc9\x0f\x26\x3f\x7f\xac\xb6\ +\xb6\xd6\x01\xa6\xaa\x22\x14\xf0\x20\x09\x55\x84\x5d\x97\x68\x1d\ +\xad\x4a\x45\xfd\x9b\xb4\xb9\xd0\x83\x8c\x04\x32\x78\xba\xe5\xe7\ +\x08\x13\x9e\x1b\x6e\x13\x04\x81\x17\x04\x81\x17\x49\xf9\x5b\xb1\ +\xd5\xeb\x79\x44\x26\x32\x1f\x16\xc7\x71\xa2\x4e\xa7\x0b\x70\x9c\ +\x2e\xd0\xb7\x77\x37\x11\xea\xb0\x76\x41\xfe\xdb\xc3\xeb\xe0\x78\ +\xf9\xa9\x61\x36\x9f\xdf\xc7\x8b\x82\xa8\x13\x21\x72\xa2\x28\x72\ +\xaa\xf6\x50\xe7\xe4\x38\x4e\xd0\xe9\x74\x81\x0b\x7a\x16\x89\xdb\ +\xd7\x7f\xc7\xf2\xb1\x75\x2a\x10\xe1\x5a\x63\xfc\x51\x54\xdc\xb1\ +\x00\xd2\x00\x14\xe8\x12\xf2\x07\x0d\x1e\x3a\xe2\x2f\x63\x1e\x7e\ +\x28\x67\x59\x55\x2d\x76\x1d\x3e\x03\x96\x69\x97\x25\x5b\x0c\xe5\ +\xd5\xd2\x22\x64\xd4\xa0\x74\x67\x7f\xd3\x14\xfd\x3b\x45\x03\x2f\ +\x8a\x01\x14\x17\xe4\x62\xc8\x4d\xd7\xe1\xe7\x65\x2b\xf7\x54\x6d\ +\xfc\xfe\x63\xd1\x63\xda\x0c\xc9\xdf\xd1\x08\x39\x31\xab\xb3\x4e\ +\x52\x1a\x64\x85\x3c\x94\x3a\x0a\x84\x37\x2b\x89\xda\x0c\xf2\x3e\ +\x51\xfe\x8e\x54\xb9\x8b\x02\x10\x95\x9f\x9f\x1f\xdf\xb7\x6f\x5f\ +\x43\x5e\x5e\xd7\x84\x9c\x2e\x79\x86\xf4\xcc\xec\xc4\xb8\xb8\xf8\ +\xd8\x80\xc8\xf1\x82\x00\xbd\x8e\x83\xa0\xd3\xc1\x2f\x0a\x7e\x9f\ +\xd9\x64\x74\xd4\x9e\x39\x65\x3b\x73\xba\xc6\x76\xf4\xe8\x51\x67\ +\x65\x65\xa5\x05\xa1\xf5\x0c\x48\x2d\x03\x1b\x14\x00\x21\x7f\xd3\ +\xb5\xcd\xd9\x02\x38\x1d\x3e\x3a\xe5\xbf\x5d\xa8\x39\x41\x0f\xa9\ +\x1f\x25\x03\xc8\x02\x90\x07\x20\x5f\xde\x67\xca\x9f\xc7\x41\x83\ +\xe1\xb6\x9d\x84\xf6\x19\x12\x36\x81\x7a\x48\x5c\x55\x35\x90\x22\ +\x01\xad\xf2\x71\xf1\x90\xda\x90\x07\x20\x17\x52\xfb\x52\xe4\xcf\ +\xd9\x84\x51\x11\x14\xc5\x0d\xa4\xc5\xe9\x69\x48\x73\xcd\x49\x28\ +\x55\x31\x49\x4d\x9a\x4e\xd1\xcf\x5b\x05\x40\x00\x55\x87\x89\x82\ +\x34\x09\x65\x01\x28\xd0\x1b\x7a\x0e\xbd\xe7\xbe\x27\x46\x94\x5c\ +\xd0\x3f\x71\xc3\xae\x1a\x78\x3c\xde\x90\x49\x5c\xd0\x02\x0a\x86\ +\xc1\x57\xf3\xd8\xa6\x40\xe4\x2c\xc7\x26\xc6\xc7\xe1\x8e\x5b\xae\ +\xc7\x8e\x5d\x7b\x6a\xd6\x2d\xfb\xf7\x4c\xc1\x75\x6a\x03\x80\x13\ +\x90\x5e\xac\x03\x92\xbf\xa3\xd3\xe9\xd9\xac\x68\xd0\xa5\x93\x41\ +\x4d\x80\x84\xd0\x88\x24\x40\x02\x8e\x44\xf9\xef\x04\xa8\x41\x24\ +\x48\x8f\x02\x75\xa2\x22\x9d\x6f\x00\xa8\x6d\xdd\x64\x20\x6a\x15\ +\xc2\xa1\x4d\x68\x74\x2d\x03\x52\x35\x8d\x50\x52\xb3\x49\x55\x1d\ +\x7e\x50\xfd\x26\xaa\xc5\x0b\xc9\xfd\x49\x84\xb4\xb8\xcc\x02\x90\ +\x2d\x6f\xa9\xf2\xe7\xa4\x14\x6f\x6b\x86\x38\x47\x2a\x44\x03\xa0\ +\x39\xe6\x48\x18\x39\xa9\x2b\x6e\x97\x8f\x89\x83\xd4\x86\x4c\x79\ +\x4b\x83\x34\xf7\xd1\x80\x48\x9f\x97\x84\x74\x3b\x21\x69\xda\x46\ +\x84\xe6\x35\xd1\x5c\x65\x1d\x5e\xc3\x6e\x35\x00\x09\x9e\x90\xe3\ +\x48\xfc\x7f\x0c\x82\xab\x0e\xae\x5b\x42\xce\x65\xc3\x1e\x78\xf0\ +\xf1\xbb\xd3\xbb\xf6\x8e\x2e\xad\x3a\x02\x1f\x55\x5e\x96\x06\x13\ +\xe2\x40\x3f\x5b\x11\xa9\x50\xc0\x91\xbe\x6b\x12\x8c\xc4\x00\xf2\ +\xb2\x33\x70\xe3\xd5\x97\xe1\xd0\x91\xe3\x0d\x8b\xbf\xff\x62\xb6\ +\x60\xaf\x5e\x0e\x09\x38\x8c\x50\x68\x0a\x3a\x85\xbf\xa3\xb9\xc2\ +\xb0\xdf\xd2\x2b\x43\xba\xba\x5b\xac\xbc\xc5\x81\x62\xf5\x95\x37\ +\xf2\x1d\x61\x43\x25\x54\x29\x34\x88\x90\x6b\x10\xe0\x20\x09\x87\ +\x3e\xa8\xc1\x83\x6c\xa4\x18\x0e\x5d\xc7\x80\x4d\x5a\x64\xf9\x80\ +\x3a\xfc\x80\xfa\x4d\x14\xa1\xe6\x82\x28\x48\xfd\x28\x09\xd2\x84\ +\x4b\x36\x32\xd9\x92\x45\x49\x7b\x83\x07\x11\xda\xe4\x46\x28\x60\ +\xe8\xa2\x65\x84\x65\x20\x1a\x52\x1b\x52\xe4\x2d\x09\xd2\xb8\x21\ +\xd9\xea\x5a\xb9\x58\x84\xba\x84\xae\xe1\x43\x88\x3d\x69\x9e\xb2\ +\x4e\x61\xf9\x68\x75\x00\x01\x42\x56\x1f\x44\x7d\xcd\x86\x2e\xba\ +\x7b\x56\xf1\x75\x23\xfe\xf4\xa7\x87\x6e\xca\xc9\x2b\x8a\x3e\x74\ +\xda\x86\x5d\x07\x6b\x98\xa2\x52\x4d\x99\xb4\x9a\x06\x11\x21\xcc\ +\xb1\x51\xbc\x0e\x37\x5c\xdd\x0f\x25\xdd\xf2\x71\xe8\xc8\x71\xfb\ +\x37\x5f\xcf\x5e\xe8\xaa\xdf\xbe\x10\xc0\x71\x48\xab\x0a\x2b\x28\ +\x82\xb9\xce\xf0\xe2\x22\x11\x0d\x1a\x75\xad\x64\x3f\xa2\x99\x68\ +\x6d\x5a\x00\x42\x27\x57\x69\x45\x7d\xa9\xc2\x87\xc3\x6c\xa4\x8e\ +\x01\xed\xa4\xa4\xc9\xfe\x7e\xb5\xef\xe4\xd7\x2c\x8c\x19\x8b\xe6\ +\x3d\x23\x5a\x6e\x9c\xfc\x39\xbd\x5a\x6f\x6f\x10\xa1\x03\x4f\x68\ +\x7f\x21\x31\xb7\xd2\x05\xcb\x08\x11\x28\xd1\xd8\x89\xb6\x1e\xce\ +\x1c\x47\x33\x46\xd0\x2c\xca\xb4\x9f\x8f\xf8\x57\x3a\x45\x9f\x6f\ +\x13\x00\x09\x9e\x3c\xd4\x0e\x9a\x02\x20\x13\xe0\x72\x75\x89\x85\ +\x57\x16\x96\x5c\x72\xe3\x0d\x37\xde\xfc\xbb\xf4\xec\xc2\xf8\x3a\ +\x8b\x07\x07\x8f\xd7\xc1\xe5\x76\xcb\x60\x10\xce\xa4\xd5\x3c\x33\ +\x55\x5e\x76\x3a\x2e\xe8\x51\x80\xe8\x28\x1e\xf5\xf5\xf5\x0d\x6b\ +\xd7\xae\xa8\x34\x9f\xde\xbb\x5a\x74\x9d\xd9\x01\x29\x2c\x97\x00\ +\x47\x90\xb8\xac\x33\xbc\xb0\xd6\x90\x30\x40\xc2\x52\x8e\x04\xeb\ +\x5e\x33\x5b\xb0\x94\x29\xd4\x00\x42\x84\x36\x61\xb1\x20\xa2\xb5\ +\xd1\xb5\x0c\xc8\x6f\xe8\xd0\xcf\xdf\xb4\x8e\x4e\x2a\x4c\x8d\x7b\ +\x9a\x03\x8d\xd6\x66\x69\x2d\xb6\x23\x09\xed\x0b\xa1\x17\x40\x44\ +\x3b\x06\x94\x85\x17\xbd\xb8\x22\xe0\xa1\x95\x58\xad\x8a\x46\x83\ +\x7a\x51\xa5\xf2\xf3\x75\x96\x3e\xdf\xa6\x00\x12\xbc\x88\xda\x3f\ +\x42\xca\x95\x26\x43\x52\x63\xd3\xb9\xd8\xac\x3e\x19\x79\x7d\x6f\ +\x1c\x38\xf0\x96\xfe\xfd\x2e\xee\x97\xc6\xf1\x31\xa8\xb3\x38\x70\ +\xe2\x8c\x19\x0d\x56\x07\xac\x76\x07\x6c\x76\x27\x02\x01\x7f\x10\ +\x28\x04\x51\x40\x6c\x94\x1e\x86\xa4\x58\x24\x27\xc4\xc1\x90\x14\ +\x8b\xec\xb4\x64\xe4\xe5\xa4\xc1\xed\xf6\x08\x9b\xb7\x6c\x39\xb3\ +\x66\xf5\xb2\x0d\x2e\xf3\xc1\xb5\xa2\xaf\xf1\x08\x94\xba\x11\x6c\ +\x2e\x41\xa7\x79\x59\xad\x2d\x61\x4c\x5b\x2c\xa0\xd0\xec\xb9\x34\ +\x68\xd0\xfe\x0f\x7a\xf0\xb3\x31\xff\xb4\x39\x8b\xae\xb0\xc6\x02\ +\x06\x4b\x8b\xf2\x1b\x70\xfc\x0a\x84\x01\x11\x76\x81\xc2\x72\x83\ +\x75\x14\x10\xa1\xa3\xc7\xe8\xfe\xcb\x52\xf8\xd0\x63\x84\xd5\xc8\ +\x81\xd0\x71\x41\x9f\x93\xf6\x0f\x92\x73\x77\xba\xe8\xc2\xf3\x02\ +\x20\xc1\x8b\x29\x40\xc2\xd2\x79\x27\x42\xd2\x4e\x52\xb9\xa8\xa4\ +\x5c\x2e\x26\xbd\x3b\xf8\xb8\xac\xb8\x78\x43\x56\x5e\x5e\x41\x4e\ +\x97\x2e\x5d\xd2\xb3\xb3\xb2\x0d\x29\x29\xa9\x89\x06\x43\x4a\x4c\ +\x20\x10\x10\x6d\xd6\x06\x97\xc9\x62\x76\xd4\xd5\xd5\x36\x9c\x3a\ +\x55\x63\x3a\x75\xea\xe4\x69\x9f\xc7\x5e\x8f\x80\xab\x56\x70\xd7\ +\x1e\x40\xc0\x43\xd3\x5e\x10\xba\x6f\x1a\xe5\xff\x6b\x34\x8e\xb3\ +\x89\x06\x90\xd0\x1b\x6d\xa2\x62\xff\xa6\x6d\xbc\xc4\x84\x05\x84\ +\x26\x8f\xb1\x80\xa2\x05\x18\xc1\x77\xf1\xdb\x7b\xf9\x75\x09\x03\ +\x22\x6c\x3f\xea\x08\x8e\xf3\x70\xc2\xe6\x51\xd1\xfd\x16\xd0\x1e\ +\x23\xcd\x69\x8f\xd6\x22\x8b\xfc\xbf\x53\xf5\xff\xf3\x0a\x20\xc1\ +\x8b\xaa\xc3\x4b\xb5\xd4\x5b\xa2\xe2\xd2\xaa\x21\x1d\x01\x44\x47\ +\x34\x10\xa7\x14\xd9\x13\x6e\x7d\x0f\xf5\xb9\x8a\x1a\xb9\x33\xbd\ +\xa0\xf3\x29\x1a\x55\x03\xc9\x9e\x1d\x18\xcd\x19\x28\x5a\x60\x22\ +\x6a\x7c\x2e\xfd\xe7\xb7\x77\xf2\xab\x96\x30\x8b\x14\xa0\xe3\x82\ +\x07\x11\xad\xfe\x4a\x03\x08\xd9\xb7\xb4\x3d\x9a\x63\xa1\xb3\x8d\ +\x83\x76\x01\x10\xd5\x0d\x34\x6d\x8f\x67\x4d\x2a\x6c\x5c\x35\xcb\ +\x30\x1a\xce\x2c\xd2\xe9\x5e\x4c\x7b\x4b\x13\x15\x05\x9b\xfa\x9b\ +\x08\xfb\xac\x45\xad\xbf\x7f\x7b\x27\xff\x5d\x72\x96\x3e\xd5\x91\ +\x45\xd5\x4f\xc3\xd1\xc5\xa0\x65\xed\xd1\x3c\x67\x67\x93\xff\x07\ +\x5c\x09\x8a\x50\x39\x7d\x24\xa2\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x06\xad\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x20\x00\x00\x00\x20\x08\x06\x00\x00\x00\x73\x7a\x7a\xf4\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\ +\x01\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x06\x2a\x49\x44\ +\x41\x54\x78\xda\xc5\x57\x7b\x4c\x93\x57\x14\xbf\xb4\xa5\xef\x77\ +\xe9\x83\x52\xa0\x1f\x6d\x11\x69\x29\x53\x40\x5b\x11\xa6\x18\x74\ +\x02\x3a\x94\x49\xd4\x0d\x11\xe3\x4c\xa6\xc4\xcd\xa1\xd3\x85\x29\ +\x59\xb2\xcd\x91\x19\x03\x19\x3a\x23\x9b\x6e\x1a\x66\x82\xd9\xd4\ +\x8d\x44\x81\xb8\x38\x1f\x30\xdd\x2b\xbe\x75\xa2\x2c\x6e\xce\x49\ +\x34\x3a\xd4\x4c\x51\x39\xfb\xdd\x46\xfe\x59\x00\x15\x9b\xd8\xe4\ +\xc7\xfd\xee\xfd\xce\xbd\xe7\x77\xcf\xf9\xdd\x73\x3f\x18\x11\x3d\ +\x53\x3c\xd2\x00\x3f\x91\x5c\x2e\x17\xd0\x46\x3e\xee\xa2\xf8\x69\ +\xf8\x9c\x70\x11\x90\x68\x34\x9a\x0f\xd0\xaa\x9e\x80\x40\x34\xe6\ +\xac\x08\x0b\x01\x0e\xb3\xd9\x3c\x0f\x0b\x2e\x9d\xc4\xd8\x22\xbe\ +\xbb\x81\xec\xb2\x19\x1b\x13\x64\x6c\x94\x56\xab\xdd\xac\x54\x2a\ +\xd3\xc3\x46\x00\x3f\x83\xcb\xe5\xaa\x1f\xcf\x58\x71\x11\x63\xe5\ +\xe8\xcb\xfa\xb1\xd1\x2d\x60\x6c\xab\x99\x31\x4f\x6c\x6c\xec\x06\ +\xf4\xa5\xe1\x24\x20\x31\x18\x0c\xeb\x54\x2a\x95\x3f\x8b\xb1\x91\ +\x65\x0a\x45\xb9\x89\xb1\x52\x9b\xcd\x96\xac\xd3\xe9\x5c\x29\x8c\ +\xcd\x9d\xce\xd8\xc2\x0c\x95\xca\x86\x48\x4d\x45\x04\x56\x61\x4e\ +\x44\x38\x09\xa8\x05\x41\xe8\xc4\xe2\x05\x7c\xa7\x32\x69\xc4\x9e\ +\xd2\x42\xe3\x49\x87\x3d\xea\x5f\x8f\x60\xea\x2e\xce\x51\x9e\xc4\ +\x78\x03\x20\xb5\xdb\xed\xcb\x1d\x0e\xc7\x6e\x2e\xda\xb0\x11\x30\ +\x1a\x8d\xb1\x3e\x9f\xaf\x0d\x8b\x9a\x9a\xb6\xe7\x1d\xfe\x68\xa5\ +\x70\x27\x2b\x60\x25\x85\x42\x4e\x6a\x95\x9c\x52\xbd\x51\xb4\x7a\ +\xa1\xb8\x7b\x53\x8d\xf0\x2d\x6c\x1d\x99\x99\x99\xed\x9c\x74\xd8\ +\x08\x44\x45\x45\x45\x7b\xbd\xde\xb5\x5b\xeb\xec\x07\x7a\xbb\x86\ +\xd3\xa6\x5a\x23\x39\x9d\xce\x10\xa2\xa3\xa3\x49\xaf\xd7\xd3\x92\ +\x22\x31\xfd\xf1\x8b\x96\x56\x57\xc6\x34\xe6\xe6\xe6\xd6\x81\x80\ +\x32\x9c\x29\x90\x43\x03\x0d\xef\xcf\x17\xf7\xa6\xf9\xf4\x14\x1f\ +\x1f\x4f\xf5\xf5\xf5\x54\x5d\x5d\x1d\x7a\x06\x41\x44\x43\x41\x12\ +\x31\xa3\xb7\x4b\xd8\x3d\xbf\xdf\xbf\x86\xd7\x8f\x70\x12\x88\x00\ +\x36\xcb\x64\x32\x32\x99\x4c\x21\xa7\x35\x35\x35\x54\x55\x55\x45\ +\x71\x71\x71\xa1\x31\x14\x1e\x6e\xd8\x87\x35\xe1\xac\x84\x52\x88\ +\xaf\xac\x42\xa1\xde\x5e\x6a\x32\xf7\x16\x58\x6d\x54\x98\x26\xd0\ +\x94\xac\x61\x34\xd2\x9b\x48\x23\xbc\x2e\xca\x0f\x3a\x29\x37\xc9\ +\x4e\x05\x46\x23\xbd\xa6\x37\xde\x2f\x97\x29\x3f\x01\x59\xf7\x53\ +\x13\xe0\x61\x84\xf3\x8a\x09\x6a\xdd\xf5\xc3\x22\x4d\x6f\x27\x13\ +\xd3\xdf\x98\x72\x23\x5e\x4d\xbf\x1f\x9a\x4a\x63\x33\x03\x34\x26\ +\x18\xa0\xd6\xcf\x5e\xa0\x7f\xec\x7a\xba\xca\x18\xde\x8b\xe8\x34\ +\x53\xf6\x8e\x8d\xb2\x9e\xc6\x71\xcc\x78\xd4\x71\x1c\xcc\x79\x24\ +\xce\xfd\x44\x8b\xc5\x72\xb3\x55\xa4\xbd\x7c\x1e\x0b\x5f\x82\xf9\ +\x35\xe0\x3a\x72\x9e\xe7\xf7\x53\x6a\x6a\x2a\x65\x64\x64\x50\x26\ +\xda\x1b\x42\x02\xdd\x50\xa9\xa9\x0b\xef\x2f\xca\x14\xb4\x5f\xa4\ +\x39\x97\x92\x92\x72\x02\x6b\xa4\x3c\x11\x01\x1e\x72\x94\xd1\xc9\ +\x28\x30\xd5\x6e\xb7\xfb\xd3\x77\x64\xba\x8d\xcb\x1c\xf1\xb4\xc9\ +\x62\xc1\xee\xe0\x1c\xb9\xbe\xbb\xec\x2d\x7a\xa3\xa4\x84\x92\x92\ +\x92\x08\x82\xa3\xe1\x68\x6f\xa5\xa5\xd3\xcd\x68\x7b\x88\x60\xa3\ +\xdb\x4d\xbb\x62\x5d\x0f\x2a\xa4\xda\x55\x31\x31\x31\x6b\x13\x13\ +\x13\xeb\xa0\x95\x09\x8f\x24\xc0\x43\xce\x1d\x43\x54\xef\xf1\x33\ +\x0f\x28\x6a\xd4\xa6\x53\x38\x82\x34\xce\xe5\xa2\x3f\x25\x12\xea\ +\x16\x04\xba\xbf\x73\x27\x75\x6c\xd9\x42\x53\x12\x3d\x34\x33\x30\ +\x8a\x6a\xb3\x32\xa9\x67\x6c\x16\xdd\x76\x0a\x74\x5a\x26\xa7\xe4\ +\xe4\x64\x5a\x90\x9d\x4d\xcd\x2a\xd3\x3e\x5e\x0f\x90\x8a\xd1\x28\ +\x50\xeb\xb1\xee\x07\x3c\x25\x83\x46\x00\xe2\x71\xf1\xd2\xfb\x90\ +\x90\xbe\xd2\x64\xfe\xcb\xe3\xf1\x50\x16\xd4\x7e\x85\xe7\x5f\xad\ +\xa6\x3b\xf9\x05\x74\x65\xdc\x38\x6a\x4e\xf1\xd2\xd1\xe2\x69\xd4\ +\x53\x38\x95\x7a\x82\x99\x74\x2b\x2e\x9e\xae\x8a\x44\x94\x0e\x5b\ +\x14\x2e\xfa\xce\x33\xfc\xd7\xbe\x5b\x14\x3f\x3b\x60\x7b\x52\x11\ +\x5a\x57\xc5\x0b\xb7\x9f\xc3\x82\x5f\xe2\x9c\x5f\x86\x79\x97\x58\ +\x42\x37\x1d\xb1\x74\x29\x71\x18\x35\x27\x24\xd0\x99\x9c\x1c\xea\ +\xc9\x7e\x9e\xba\x92\x7d\xd4\x0d\x6d\x70\x21\x6e\x00\x49\x01\x91\ +\x6a\x4d\xf1\x5f\xc4\x1a\xc6\x21\x9f\x82\x34\xc6\x5c\x3f\xba\xdd\ +\xbd\x67\x23\x22\xa8\x35\x32\x92\xf2\x71\xcc\xe2\xcc\x66\x9a\x69\ +\x30\x52\x1b\xda\xdd\x66\x0b\x75\xf8\x53\x69\x3b\x42\x1f\x83\x7e\ +\x3a\x08\x70\xbb\xe3\x88\x42\x03\x08\x9f\x1f\x1d\xb8\x05\x02\x51\ +\x43\x26\x30\xd7\x60\x48\x39\x04\x85\x1f\x07\x81\x8d\x10\x1f\xaf\ +\x78\x46\x90\x70\xe9\x74\x54\x09\x07\x4d\xc8\xf7\x09\x88\xd3\x81\ +\x52\x8c\x4a\x19\x7a\x97\x80\xa2\xd4\x89\x65\x3b\x61\x73\x2a\x3b\ +\xbb\xc7\xc6\x98\xf9\x69\xea\x80\xa1\x65\x44\xda\xb5\x36\x8d\x86\ +\x1a\x21\x40\x5e\xf3\x21\x52\x4a\x44\x88\x97\x4a\xa5\xb4\x0b\xd3\ +\xcf\xa1\x3a\x46\xa3\x0f\xa1\x85\xde\xd9\x80\x0b\x18\x3f\x0b\xdd\ +\xb4\x05\x82\x1d\x5c\x84\x4f\x43\x40\xd9\xe0\xf3\x1d\x69\xb6\xdb\ +\xe9\x20\x4c\x17\xc3\x99\x01\xce\x66\xc1\xf9\x01\x44\xe5\x2b\x8c\ +\x9d\xc1\x58\x09\xfa\x38\xef\x64\x03\x56\xa2\x7f\x12\xe3\x3f\x07\ +\x02\xb4\xd3\xe7\xdb\xc3\x8f\xf5\x90\x09\xe0\x82\x09\xce\x8e\x8b\ +\xfb\xbe\x11\xbb\xc1\x6e\x43\x24\x8e\x03\xe7\x80\xa3\x40\x23\xf0\ +\x1b\x1c\x5e\xe0\xcf\xc8\xfb\x36\x00\xb2\xa7\xbd\xc0\x3e\x88\xf3\ +\x15\xab\x75\x07\x08\x68\x87\x42\xa0\xaf\x26\x6c\xc8\x53\x6a\xab\ +\x2a\xa1\x83\x02\xec\xb2\x16\xbb\x6e\xc1\x94\x76\xe0\x10\xd0\x00\ +\x9c\x02\x81\x63\x68\x7f\x02\xf6\x03\x75\x20\x31\x1e\x63\x0d\x59\ +\xd9\xf7\x05\xa3\xb1\x05\xba\x98\x3f\x54\x02\x72\x14\x8f\x46\xb4\ +\xc6\x02\xa7\x70\x99\xe7\xd8\x02\x85\xd7\x62\xca\xd7\xc0\x0e\x60\ +\x3d\x08\xed\xc6\x58\xd3\xc3\xb1\x8f\x01\x25\x9c\x5b\x70\x22\x2a\ +\x04\xcf\x0f\xdc\xb9\xd5\x6a\xe5\x6b\x88\x87\x42\x40\x8f\xf2\x79\ +\x04\xad\xa2\x88\xc9\xca\xfd\x0e\x47\x28\xcf\x39\xd8\xe1\x3a\x4c\ +\x9b\x0f\xe7\xaf\xe3\xb9\x1c\x04\x96\xa0\x5f\x03\xcc\xc0\x58\x24\ +\xfa\x79\x4e\xe7\x83\x62\xb1\xb2\x10\x95\xef\x45\x7c\x9e\xf1\x35\ +\xa4\x43\x21\xe0\xc0\x45\xc4\x55\x6c\x06\xe4\x45\x11\xd2\xf6\x04\ +\x38\x9c\x04\x27\x55\xdc\x19\x30\x19\xcf\x6e\x38\x9c\x83\xe7\xa5\ +\x40\x31\xfa\x41\x9d\x9e\x66\x89\x15\x4d\xbc\x9a\x62\xf7\xf3\xf0\ +\xed\xb0\x77\xb0\xef\xc3\x81\x9c\xcb\x50\xcf\xdf\xc5\xe7\xf5\x17\ +\x10\x62\x1c\x1f\x4b\x60\x4c\x37\x9d\x45\x1e\x29\xc3\x94\x37\x81\ +\x15\xc0\x62\x38\x5c\x04\x6d\x2c\xe0\x11\x01\x4a\x51\xe6\x8b\x58\ +\x64\x6b\xdf\xd1\xc3\x57\x73\x19\xb0\x0d\x55\x71\xe2\x40\x69\xe8\ +\xcf\xb9\x06\xdf\x7a\xab\x81\x0f\xff\x5f\x46\x1d\xe8\xe7\x32\x71\ +\xfb\x1c\x26\xba\xb7\x08\x53\x5f\x05\x5e\x46\xce\x5f\x42\x9b\xcf\ +\x44\x77\x73\x98\xb8\xa5\xcf\x79\x9f\x90\xd5\x6a\xb5\x17\xb7\xe1\ +\xe7\xb8\x9a\x67\xf7\x97\x8a\xfe\x8e\xde\x34\x4c\x9a\x31\x20\x63\ +\x44\x27\xc8\xd8\x24\x84\xff\x60\xbe\x48\xd4\x31\x5a\x22\x39\x96\ +\xca\xd8\x37\xb1\x8c\xa5\xf3\x50\x0f\x34\x07\x57\xfb\x72\x5c\xcd\ +\x89\x8f\x13\x01\x51\x9f\xf3\xc1\xc0\x6d\x00\x09\xc7\xe3\xfc\x13\ +\x32\x90\x1d\xff\xf3\x4c\xf1\x1f\xa2\x17\x92\x97\x18\xd7\x80\x27\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\xdf\x01\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x01\x72\x00\x00\x01\x72\x08\x06\x00\x00\x00\xe8\x24\x51\x09\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x0b\x1b\ +\x0f\x09\x0b\x44\x61\x23\x34\x00\x00\x20\x00\x49\x44\x41\x54\x78\ +\xda\xec\x9d\x77\x60\x1c\xc5\xd9\xc6\x7f\xbb\x77\x3a\x75\xab\xdb\ +\xb2\x5c\x64\x59\xb8\xf7\xde\xbb\xc1\x34\x03\x46\xa6\x38\xd8\xa1\ +\xb7\x50\x43\x12\x08\x81\x7c\x84\x16\x20\x40\xe8\xbd\x84\x1a\x08\ +\x20\x3a\x18\x0c\x06\x77\x1b\xf7\xde\x9b\x5c\xe4\xaa\xde\xaf\xed\ +\xf7\xc7\x9d\xa4\x2b\x5b\x4f\x27\x59\x92\xf7\x35\x87\xa4\xb9\xdb\ +\xdd\xb9\xd9\x9d\x67\xde\x79\xde\x06\xa6\x98\x62\x8a\x29\xa6\x98\ +\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\ +\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\ +\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\ +\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\x98\x62\x8a\x29\xa6\ +\x34\x8d\x08\x7a\x3f\x28\x49\x92\x39\x5a\xa6\x34\x99\xd8\x32\x73\ +\x22\x80\x74\x20\x5e\xe1\x15\xa7\xf2\x5e\xe0\x0b\xa0\x4c\xe7\xab\ +\x5c\xe5\xbd\xa3\xf6\xbc\x5c\x87\x79\x77\x4c\x69\x32\x80\x16\xf4\ +\x41\xb4\x09\xe4\xa6\x9c\x6a\xc0\x4e\x03\x7a\x02\x3d\x02\x5e\x5d\ +\x01\xab\xd1\x87\x3e\x36\x3a\x8a\xd8\xd8\x68\xe2\x62\xa2\x88\x8b\ +\x8d\x26\x36\x26\x1a\x80\x8a\xca\x2a\xca\x2b\xaa\x28\xaf\xac\xa6\ +\xa2\xa2\x8a\x8a\xaa\xea\x50\x9e\x69\x27\xb0\x17\xd8\x11\xf0\xda\ +\x6e\xcf\xcb\x3d\x61\xde\x4d\x53\x4c\x20\x37\xa5\x35\x83\x75\x24\ +\x70\x86\x0c\x58\xf7\x00\x92\x02\x3f\xdf\x2e\x35\x99\xae\x99\x19\ +\x74\x6a\xdf\x96\xb8\xd8\x68\xe2\xe3\x62\x88\x8d\xf1\x80\x73\x6c\ +\x4c\x34\xf1\xb1\xd1\x5e\xb0\x8e\xae\x6b\x8f\x8b\x8b\x26\x36\x3a\ +\xca\xef\xc1\x97\x9b\x03\xb5\x6d\x92\x24\x51\x51\xe5\x01\xf5\xf2\ +\xca\x6a\x2f\xc8\x57\x79\xff\xf6\x07\xfd\xb2\x8a\x4a\xca\x2a\xaa\ +\x38\x94\x7f\x9c\xdd\x79\xf9\x1c\x3b\x51\x28\xf7\x35\x8b\x64\x00\ +\x7e\x07\xb0\xdb\x9e\x97\x5b\x63\x3e\x05\xa6\x98\x40\x6e\x4a\x4b\ +\x02\xed\x4c\x60\x12\xd0\xdf\x07\xac\xbb\x00\x16\xdf\xcf\x45\x47\ +\x45\x92\xd5\x29\x83\xae\x99\x19\x64\x77\xce\xa0\x6b\x66\x07\xb2\ +\x33\x33\xe8\xda\x39\xa3\x4e\x8b\x0e\x04\x63\x49\x82\xb2\xca\x1a\ +\x4a\x2a\xaa\x29\x29\xaf\xa6\xba\xc6\x89\xc3\xe9\xc2\xe1\x74\xe1\ +\x74\xba\x70\xb8\x5c\x38\x9c\x6e\xec\x0e\x9f\xbf\x1d\x2e\x44\x51\ +\x20\x3a\xd2\x4a\x74\x64\x04\xd1\x51\x11\x44\x47\x46\x10\x13\xe5\ +\xfd\xdb\xaf\x2d\x02\x5b\x84\xf6\x26\xa0\xbc\xb2\x8a\xbd\x79\xf9\ +\xec\xc9\xcb\x67\xcf\xfe\xc3\xec\xf6\xfe\xbe\x37\x2f\x9f\xaa\xea\ +\x20\xcc\x76\x01\xfb\x7d\x80\x7d\x23\xf0\xab\x3d\x2f\x37\xcf\x7c\ +\x5a\x4c\x31\x81\xdc\x94\xe6\x02\xdc\xe9\x5e\xe0\x9e\xec\x7d\x75\ +\xf5\x7d\x08\x33\xda\xa5\xd2\xd5\x0b\xd4\x5d\x3b\x67\x90\xdd\xd9\ +\xf3\xb3\x7d\xbb\x14\xbf\x87\xb4\xb2\xda\xc1\x91\x82\x32\x8e\x16\ +\x94\x53\x58\x5a\x45\x49\x79\x35\xc5\xe5\xd5\x75\x3f\x8b\x4b\xab\ +\x28\xad\xa8\xc6\xe5\x76\xe3\x79\x14\x25\xbc\xbf\x20\x21\x41\x6d\ +\x9b\xdf\xb3\x2a\xf9\xfd\xee\xf9\xcf\xf7\xb3\x52\xfd\xb9\xbc\x2b\ +\x85\x20\x52\x07\xf0\x31\x91\x11\x44\x47\x59\x89\xb2\x45\x10\x17\ +\x63\xa3\x7d\x6a\x02\x1d\xd3\x13\xe9\xd4\x2e\x91\x4e\xed\x92\x48\ +\x88\x8f\x0e\x9a\x23\x47\x8e\x17\xb0\x67\x7f\x3e\xbb\xf3\x0e\xd7\ +\x01\xfd\x9e\xbc\x7c\x0e\x1f\x3d\x19\x38\x87\xf6\x02\xbf\x78\x5f\ +\xbf\xda\xf3\x72\x8f\x9a\x4f\x93\x29\x26\x90\x9b\xd2\x54\xc0\x9d\ +\x0c\x4c\xf4\x01\xee\x5e\xb5\xef\xa5\x25\x27\x32\x72\x48\x5f\x46\ +\x0f\xe9\xc7\x80\x5e\xdd\xe8\xd2\xa9\x3d\x51\x91\xb6\x3a\xad\xda\ +\xe1\x74\x73\xac\xb0\x9c\x23\x05\xde\xd7\xc9\x32\x8e\x14\x94\x93\ +\x7f\xa2\x94\x92\x8a\x1a\x59\x60\x95\x7c\x7e\x0f\x04\x69\x75\x20\ +\x0f\xf8\xbc\xec\x67\x8d\x5f\x4f\xf2\x59\x14\xe2\x62\x6c\x74\x4c\ +\x4f\xaa\x03\xf6\x4e\xe9\x49\x74\x4c\x4f\xa2\x43\xdb\x44\x22\xac\ +\x7e\x1b\x10\xaa\x6b\xec\xec\x3b\x70\x84\x75\x5b\x76\xb1\x64\xd5\ +\x26\x96\xad\xda\xcc\xf1\x82\x62\xdf\x8f\x6c\xf3\x01\xf6\x05\xf6\ +\xbc\xdc\x42\xf3\x69\x33\xc5\x04\x72\x53\xc2\x05\xdc\xf1\xc0\x38\ +\x1f\xe0\x1e\x00\x88\x00\x89\x09\xf1\x8c\x1c\xd4\x87\x91\x83\xfb\ +\x32\x6a\x70\x3f\xba\x65\x75\xac\x3b\xce\xee\x70\xb1\xff\x68\x09\ +\x7b\xf2\x8b\xd8\x73\xb8\x98\xbd\x87\x0b\x39\x56\x54\x89\xe4\x76\ +\x6b\x68\xd0\xf5\x20\x5b\xa7\x41\xeb\x04\x56\xcf\xa7\x7d\xce\x1d\ +\x74\xbc\xf7\x2f\xd9\xeb\xf9\x00\xb9\xc2\xa2\x20\x7f\xbd\xfa\x73\ +\xd7\x5e\x4f\x10\x04\xd2\x53\xe2\xe9\x94\x9e\x4c\xc7\xf4\x24\x3a\ +\xa7\x7b\x40\xbe\x73\xfb\x14\x92\x13\x62\xeb\xc6\x68\xd7\xbe\x43\ +\x1e\x50\x5f\xbd\x99\x65\xab\xb7\x50\x54\x52\x56\xfb\x96\x1b\xd8\ +\xe0\x03\xec\x8b\xed\x79\xb9\x65\xe6\xd3\x68\x02\xb9\x09\xe4\xa6\ +\xe8\x05\x6e\x9b\x17\xb8\x6b\xe9\x92\x61\x78\xbd\x47\xe2\x62\xa3\ +\x19\x3e\xb0\x0f\xa3\x06\xf7\x65\xd4\x90\x7e\xf4\xcc\xce\x44\x10\ +\x04\x5c\x6e\x89\x43\x27\xca\xd8\x97\x5f\xcc\x9e\xfc\x62\xf6\xe4\ +\x17\x71\xe8\x58\x29\x6e\x49\x09\x58\xe5\x80\x50\x0f\x15\xa2\x03\ +\x58\xe5\x8e\x57\xbd\x9e\x7e\xed\x5e\xff\xf5\xe4\x17\x0e\x49\x92\ +\xe8\x98\x9e\xc4\xe0\x5e\x9d\x19\xd4\x2b\x93\x41\x3d\x3b\xd7\xd1\ +\x33\x92\x24\xb1\x6d\x57\x1e\x4b\x56\x6d\x62\xe9\xea\xcd\xac\x58\ +\xb3\x85\xb2\x8a\xaa\xda\xdb\xe2\x04\x56\xd5\xd2\x30\x5e\x60\xb7\ +\x9b\x4f\xab\x09\xe4\x26\x90\x9b\x12\x08\xe0\xa3\x80\x39\xc0\x65\ +\x40\x32\x78\x0c\x92\x43\xfa\xf5\x64\xd4\x90\x7e\x8c\x1c\xdc\x97\ +\xbe\x3d\xb2\xb1\x88\x22\x92\x24\x71\xe0\x78\x29\x9b\xf7\x9d\x64\ +\xd3\xde\x93\xec\x3e\x54\x84\xdd\xe9\xd2\x41\x4d\xa8\x01\xab\x1a\ +\x15\xa2\xa6\x41\x07\x00\xb1\x11\x20\x97\xeb\xaf\x1e\x20\xd7\x5a\ +\x78\x14\xae\x17\x44\x0b\x09\xd0\xb5\x63\x1a\x83\x7b\x65\x32\xb8\ +\x77\x26\xfd\x7b\x74\x22\x36\x3a\x12\x00\x97\xdb\xcd\xc6\x6d\x7b\ +\x58\xb6\x6a\x33\x4b\x56\x6d\x62\xe5\xfa\xed\xbe\x86\xd4\x42\xe0\ +\x7f\xc0\xfb\xf6\xbc\xdc\xe5\xe6\xd3\x6b\x02\xb9\x09\xe4\xa7\x37\ +\x78\x67\x79\xc1\x7b\x0e\x1e\xf7\x40\xba\x74\x6c\xcf\xf9\x53\xc7\ +\x32\x66\xe8\x00\x06\xf6\xee\x8e\xd5\x6a\x41\x10\xe0\x64\x49\x15\ +\x5b\xf6\x15\xb0\x79\xff\x49\xb6\xee\x3f\x49\x79\x95\x43\x99\x0a\ +\x51\xa0\x4d\xf4\x52\x13\xc6\x80\x5c\xed\x7a\x32\xc0\xaa\x45\xdd\ +\x28\x5d\xcf\x10\x4d\x13\xda\x6e\x42\x10\xa0\x67\x56\x7b\x06\xf7\ +\xce\x64\x70\xef\x2e\xf4\xed\xd6\x89\x48\x9b\xc7\x8b\xc6\xe1\x74\ +\xb1\x6e\xf3\x4e\x16\xad\xd8\xc0\x17\x3f\x2e\x61\xdf\x81\x23\xb5\ +\xb7\x71\x37\xf0\xbe\x17\xd4\xf7\x99\x4f\xb5\x09\xe4\x26\x90\x9f\ +\x1e\xe0\x9d\x08\x5c\xea\x05\xef\x31\x80\x90\x10\x1f\xc7\xb9\x93\ +\xc7\x70\xd1\xb4\x09\x0c\xee\xdb\x03\x00\xbb\xd3\xcd\xe6\x7d\x27\ +\xd9\xbc\xbf\x80\xad\xfb\x0b\x38\x56\x58\x11\x02\x78\xa9\x69\xd0\ +\x7a\xa8\x09\x35\x60\x0d\xbf\xc7\x4a\xe8\xbb\x09\x3d\x7d\x33\xbe\ +\x9b\xb0\x5a\x45\xfa\x76\xeb\xc8\xe0\xde\x5d\x18\xdc\xbb\x0b\xbd\ +\xb2\x3b\x60\xb5\x88\x00\xac\xd9\xb8\x83\x4f\xbf\x5b\xc8\x57\xf3\ +\x96\x52\x52\x5a\x5e\x7b\xe2\xa5\x5e\x50\xff\xc4\x9e\x97\x5b\x6c\ +\x3e\xed\x26\x90\x9b\x40\xde\xba\xc0\x3b\x02\x38\x1b\xf8\x3d\x30\ +\x1d\x88\xb4\x5a\x2d\x4c\x18\x31\x98\x8b\xa6\x4d\x64\xd2\xe8\x21\ +\xd8\x22\x22\x70\xb8\xdc\x6c\xda\x7b\x92\x55\x3b\x8e\xb1\x61\xef\ +\x09\x6a\x6a\x5c\xfa\x39\x6d\x23\xe0\x25\x47\xa5\x34\xd0\x83\x24\ +\xc8\xd0\x19\x12\x4d\xd3\x18\xbb\x09\x8d\x85\xc3\xc0\x6e\x22\x2a\ +\xca\xc6\xa8\x01\x67\x70\xf6\xd8\x01\x0c\xef\x9f\x8d\xc5\x22\x62\ +\xb7\x3b\xf8\x69\xf1\x1a\x3e\xfd\x6e\x01\xbf\x2e\x5d\x8b\xc3\xe9\ +\x02\xa8\x01\xbe\x01\xde\x03\x7e\x30\xd3\x0a\x98\x40\x6e\x02\x79\ +\xcb\x06\xf0\x61\x5e\xcd\x7b\x16\x90\x0a\xd0\xb7\x47\x36\x17\x4d\ +\x9b\xc8\xf4\xa9\x63\x49\x4a\x68\xe3\xd5\xbc\x0b\x58\xb5\xe3\x18\ +\x1b\xf7\x9e\xa4\xda\xee\xd4\x0d\x5e\x9a\xda\xb6\x12\xb5\xa0\xa5\ +\xd1\x86\x6a\xe8\x6c\x6a\x8f\x95\x90\x77\x13\x1a\x0b\x8f\xd2\xd8\ +\xfb\x8c\x4f\x62\x7c\x2c\x53\x47\xf7\xe5\xec\x71\x03\xe8\x91\x95\ +\x01\x40\x61\x71\x29\x5f\xfe\xb0\x84\x4f\xbf\x5b\xc0\x86\xad\x7b\ +\x6a\x1f\x83\x93\xc0\x47\x5e\xea\x65\x95\x39\x2b\x4c\x20\x37\x47\ +\xb5\x65\x80\x77\x7b\xe0\x6a\x2f\x80\xf7\x04\x48\x4f\x4b\xe1\x82\ +\x33\xc7\x73\xd1\xb4\x89\x64\x67\x76\xc4\xe9\x72\xb3\x69\x7f\x01\ +\xab\x76\x1c\x67\xe3\xde\x93\xd4\x38\x5c\xfa\x0d\x79\x46\x0c\x8f\ +\xba\x3d\x56\x42\xf5\xf9\xd6\x03\xac\xa1\xee\x26\x42\x35\x74\xa2\ +\xe8\xb1\xa2\xaf\x6f\xfa\xae\xe7\xbb\x28\x74\xe9\x98\xca\xb4\xb1\ +\x03\x99\x36\xb6\x3f\x6d\x53\x12\x00\x8f\x6b\xe3\xa7\xdf\x2e\x20\ +\x77\xee\x22\x8e\x1c\x2b\xa8\x7d\x3c\xb6\x7b\xa9\x97\xff\xd8\xf3\ +\x72\x8f\x98\xb3\xc5\x04\x72\x53\x9a\x1f\x80\x67\x02\xf7\x00\xd7\ +\x00\x91\xd1\x51\x91\x4c\x1b\x3f\x8a\x0b\xa7\x4d\x64\xe4\xa0\xbe\ +\x88\xa2\xc0\xf1\xe2\x2a\x16\x6d\xca\x67\xf9\xd6\xa3\x94\x55\xd9\ +\x65\x34\x44\x1a\xe8\x41\x62\x94\x0a\xa1\xe1\x1e\x2b\x0a\x34\x8d\ +\x26\x58\x1a\xa4\x42\xb4\xfa\xa6\x6e\x58\x0d\xcd\x1f\x5d\x71\x37\ +\xa1\xb0\x1b\x11\x11\x18\xd4\xbb\x0b\x67\x8f\x1f\xc8\xc4\xe1\x7d\ +\x88\x89\x8e\xc4\xed\x96\x58\xb6\x7a\x33\x9f\x7e\xb7\x80\xef\xe6\ +\x2f\xa7\xb2\xaa\xa6\x96\x7a\x79\x1b\x78\xc2\x4c\x15\x60\x02\xb9\ +\x29\xcd\x03\xc0\xbb\x03\xf7\x02\x57\x00\x11\x59\x9d\x32\xb8\x6e\ +\xd6\x0c\xce\x9d\x34\x86\xe8\xa8\x48\x9c\x2e\x89\xf5\x7b\x4f\xb2\ +\x78\x53\x3e\x3b\x0e\x15\xfb\x01\x92\x31\x6a\x42\x0d\x58\x43\xa5\ +\x42\x08\xcd\x63\x25\x0c\x86\xce\xa6\xf5\x58\x69\xa8\xd1\x57\x0d\ +\xc8\xe5\xc7\x22\xd2\x66\x65\xfc\xb0\x5e\x9c\x33\x7e\x30\xc3\xfa\ +\x65\x23\x8a\x22\x95\x55\x35\x7c\x3d\x6f\x29\x2f\xbd\xfb\x05\x7b\ +\xf2\xf2\x01\x1c\xc0\x87\xc0\x63\xf6\xbc\xdc\x9d\xe6\x6c\x32\x81\ +\xdc\x94\xa6\x07\xf0\x7e\xc0\xdf\xf0\x78\xa0\x88\x3d\xcf\xc8\xe2\ +\xc6\x2b\x2e\x66\xda\x84\x51\x88\x82\x47\xfb\x5e\xbc\xe5\x28\x2b\ +\xb6\x1d\xa3\xac\xd2\x1e\x66\x2a\x44\x0f\xb0\x1a\x03\xaf\xc0\xcf\ +\x86\x0e\xe4\x8d\x1f\x9a\xdf\xd8\x46\xdf\x06\x03\x79\x40\x7f\x53\ +\x92\xe2\x38\x6b\xec\x40\xce\x19\x3f\x88\x33\x32\xdb\xe3\x76\x4b\ +\x7c\xf7\xcb\x72\x9e\x7f\xfb\x73\xb6\xec\xd8\x07\x9e\x48\xd2\x4f\ +\x80\x7f\xda\xf3\x72\x37\x99\xb3\xcb\x04\x72\x53\x1a\x1f\xc0\x87\ +\x01\xf7\x01\x17\x00\xc2\xc0\xde\x3d\xb8\x69\x76\x0e\x13\x46\x0e\ +\x01\x01\x36\xed\x2b\x64\xfe\x86\xc3\xec\x3a\x58\x82\x3b\x10\x0c\ +\xc2\x08\x5e\x81\xda\xb6\x6e\xb0\x6c\x8a\xd0\x7c\xc2\xe5\xb1\xd2\ +\xd0\xdd\x44\x68\x63\xa1\x6e\xe8\x6c\xd8\xbd\x1b\xd6\xff\x0c\xae\ +\xce\x99\xcc\xa0\xde\x9e\xdc\x66\x3f\x2f\x59\xc3\x73\x6f\xe5\xb2\ +\x66\xe3\x8e\xda\x0b\x7c\x0d\x3c\x6a\x1a\x46\x4d\x20\x37\xa5\x71\ +\x00\x7c\xbc\x17\xc0\xcf\x02\x18\x39\xb8\x1f\x37\xcd\x9e\xc9\x88\ +\x81\x7d\x71\xb9\x25\x56\xef\x3a\xc9\xbc\xb5\x87\x38\x52\x58\xe9\ +\x3f\x99\x1b\x89\xd3\x36\xe4\xb1\xd2\x14\xa1\xf9\x61\xdd\x4d\x9c\ +\x2a\x8f\x15\x35\x43\xa7\x1e\xed\x5e\xad\x6f\xfe\x8b\xc2\x80\x9e\ +\x99\x5c\x3d\x73\x2a\x23\x07\x76\x07\x60\xe9\xea\xcd\x3c\xf7\xd6\ +\x67\x2c\x59\x59\xa7\x90\xcf\xf3\x02\xfa\x22\x73\xf6\x99\x40\x6e\ +\x4a\xc3\x01\x7c\x9a\x17\xc0\xc7\x09\x82\xc0\xc4\x91\x43\xb8\xf1\ +\x8a\x99\x0c\xe8\xdd\x0d\xbb\xc3\xcd\xd2\xad\xc7\x98\xbf\x21\x9f\ +\xa2\xf2\x1a\x43\xee\x7d\x21\x81\x81\x91\x45\xe1\xb4\xf4\x58\xd1\ +\x17\x9a\x1f\x36\xa3\xaf\xd6\xf1\x9a\xf7\x4e\xa2\x57\xd7\x8e\x5c\ +\x35\x73\x0a\xe3\x87\xf5\x41\x10\x04\xd6\x6e\xde\xc5\x73\x6f\x7d\ +\xc6\xcf\x8b\xd7\xd4\x9e\x67\xb1\x17\xd0\x7f\x34\x67\xa3\x09\xe4\ +\xa6\x18\x03\x6f\xc1\x4b\x9d\xdc\x0f\x0c\x15\x05\x81\x69\x13\x46\ +\x73\xc3\x15\x39\xf4\xe8\x9a\x49\x79\xb5\x93\x45\x9b\x8f\xb2\x70\ +\xd3\x11\x2a\xaa\x9d\x34\x34\xf4\xbc\x61\x1e\x24\xa1\x52\x21\x34\ +\x6d\x68\x7e\xa8\x54\x48\x13\x84\xe6\x87\xee\xb1\xa2\x6d\xf4\xd5\ +\xd2\xee\x6b\xaf\x97\xdd\x39\x9d\xab\x2e\x9e\xc2\xd4\xb1\x03\x11\ +\x05\x81\x6d\xbb\xf2\x78\xee\xed\x5c\xbe\xfd\x79\x19\x6e\xb7\x04\ +\xb0\x1a\x78\x04\xf8\xda\x9e\x97\x6b\x82\x81\x09\xe4\xa6\x68\x80\ +\xf8\x48\xe0\x25\x60\xb0\xd5\x6a\x61\xfa\xd4\x09\x5c\x3f\x6b\x06\ +\x5d\x3a\x7a\x82\x3e\xb6\x1f\x2a\xe1\x8d\x1f\x76\x50\xe3\x74\x1b\ +\x00\x56\xa3\xc6\xb2\x53\x0d\x5e\xa7\x36\x34\x5f\x1e\xc8\x9b\xc6\ +\xe8\x1b\x3e\x20\x0f\x2d\xf0\xaa\x53\xfb\x54\xae\xbc\x78\x0a\xe7\ +\x4c\x1c\x82\xd5\x62\x61\x6f\x5e\x3e\x2f\xbc\xf3\x05\x9f\x7f\xbf\ +\xb0\x36\x6a\x74\x2d\x70\x8b\x3d\x2f\x77\x85\x39\x5b\x4d\x20\x37\ +\x25\x18\xc0\x53\x80\xc7\x81\x6b\x2d\xa2\x28\xcc\x3c\xef\x4c\xae\ +\x9f\x75\x31\xed\xdb\xa6\x06\xd5\x9e\x5c\xb8\xf9\x28\xb9\xcb\xf2\ +\x70\xbb\xdc\x1a\x5b\x7d\x42\x34\x74\x36\x6d\x5e\x91\x86\x72\xf7\ +\x81\x0b\x47\x93\x7a\xac\x68\x66\x50\x0c\xe7\x6e\x02\xc3\x1e\x2b\ +\x5a\xf6\x08\x25\xee\xbe\x7d\x5a\x22\x73\x66\x4c\xe1\x82\xa9\x23\ +\xb0\x45\x58\x39\x7c\xf4\x24\x2f\xfc\xe7\x73\x3e\xfc\xfc\x27\x5c\ +\x1e\x15\xfd\x2d\xe0\xaf\xf6\xbc\xdc\x02\x73\xf6\x9a\x40\x6e\x02\ +\xb8\x87\x46\xb9\xd6\x0b\xe2\x29\x03\x7a\x75\xe7\xff\xee\xbc\x81\ +\x9e\xd9\x59\xde\x1b\x29\x77\x73\x61\x57\x7e\x29\x6f\xfe\xb8\x93\ +\xf2\x2a\xbb\x41\x5e\x94\xb0\x7b\xac\x68\x79\x90\x34\xa9\xc7\xca\ +\x29\x2a\x26\x61\x8c\xc6\x0a\xdd\x63\x45\x8b\xbb\x37\xea\xd1\xa3\ +\xa5\xdd\xa7\x24\xc6\x33\xfb\xa2\x49\x5c\x3c\x6d\x0c\xd1\x51\x36\ +\xb6\xec\xd8\xc7\x5f\x1f\x7b\x9d\x35\x9b\x76\x02\x14\x00\x7f\x05\ +\xde\x32\xe9\x16\x13\xc8\x4f\x67\x10\x1f\x04\xbc\x0c\x8c\x4c\x6c\ +\x13\xcf\x1f\xaf\x9b\x4d\xce\x39\x53\x74\x57\x82\x2f\x2a\xb7\xf3\ +\xfa\xdc\xed\x1c\x38\x51\x1e\xa0\x85\xaa\x83\x57\x48\x60\xd0\x28\ +\xa1\xf9\x7a\xa8\x90\x96\x5f\x4c\x02\x5d\xc0\x6a\xd0\x63\xc5\x88\ +\xa1\xd3\x88\x1b\xa3\x42\xdf\x92\xda\xc4\x71\xcb\x9c\xf3\xb9\x60\ +\xea\x48\x00\x3e\xfa\x6a\x3e\x8f\x3e\xff\x41\x6d\x55\xa3\x15\xc0\ +\x1f\xec\x79\xb9\xeb\xcc\x59\x6d\x02\xf9\xe9\x04\xe0\x09\x78\x0c\ +\x47\x37\x0b\x82\x60\x99\x71\xf6\x64\xee\xba\x6e\x0e\x49\x09\xf1\ +\x8a\xa0\xad\xd4\xe6\x70\xb9\xf9\xef\x82\x3d\xfc\xb6\xfd\x38\x86\ +\x3d\x56\x1a\xec\xf5\xd0\x50\x9a\xa6\x39\x16\x93\x08\x83\x7b\x5f\ +\x48\x3b\x1d\x83\xbb\x09\x5d\xda\x7d\x08\x46\x6a\x0d\x9a\xa6\x5f\ +\xcf\x2c\xfe\x7a\xe3\x25\x74\xef\xda\x91\xa2\x92\x32\x1e\x79\xfe\ +\x7d\x3e\xfe\xea\x17\x24\x49\x72\x01\xaf\x00\xf7\xdb\xf3\x72\x4b\ +\xcc\x59\x6e\x02\x79\x6b\x07\xf1\x39\xc0\x93\x40\xbb\x9e\xd9\x59\ +\xfc\xfd\xf6\xeb\x19\xd0\xbb\x87\x2e\xd0\x56\x6b\xfb\x75\x63\x3e\ +\xb9\x4b\xf7\xe1\x76\x49\x21\xe5\xe9\x08\x2d\x98\xc6\x2c\x26\xd1\ +\x60\xa3\x6f\xa3\x18\x3a\x0d\xf6\x57\xd5\x96\x12\xfc\xac\x88\x82\ +\xc8\xa5\xe7\x8d\xe3\xe6\x2b\xce\x27\x36\x26\x8a\x35\x1b\x77\xf0\ +\xd7\xc7\xdf\xa8\x8d\x12\x3d\x06\xfc\xc5\x9e\x97\xfb\xbe\x39\xdb\ +\x4d\x20\x6f\x8d\x00\xde\xc7\x4b\xa3\x8c\x8f\x8b\x89\xe6\xd6\xab\ +\x66\xf1\xbb\x0b\xcf\x41\x14\x45\xc3\xa0\xad\xd4\xb6\xf3\x50\x09\ +\x6f\xfc\xb0\x9d\x32\x2f\x6f\x7e\x6a\x3c\x56\x4e\x55\x31\x09\x35\ +\x8d\x54\xad\x6f\xcd\xab\x98\x44\xe3\x7b\xac\x18\x1d\x1f\xe5\xeb\ +\x25\x27\xb6\xe1\xae\x6b\x67\x70\xf6\x84\x61\xb8\xdc\x6e\xfe\xf3\ +\xbf\xb9\x3c\xf9\xca\x47\xb5\xb5\x46\x17\x79\xe9\x96\x2d\xe6\xec\ +\x37\x81\xbc\x35\x00\x78\x1c\xf0\x00\x70\x27\x60\x3d\x77\xd2\x58\ +\xfe\x7c\xe3\x55\xb4\x4d\x49\x6a\x10\x68\x2b\xb5\x15\x96\xd5\xf0\ +\xca\x77\x5b\x39\x78\xa2\xbc\x11\x3d\x56\xcc\x62\x12\x4d\x55\x4c\ +\xc2\x98\x3d\xc2\x58\xb0\x91\xee\xfc\xf1\x1a\xdc\xfd\xd0\xfe\xdd\ +\xf8\xeb\x4d\x97\x93\xd5\x29\x9d\x63\x27\x8b\x78\xf0\x99\x77\xf8\ +\xf2\x87\x25\xe0\x29\x1a\xfd\x2c\xf0\xa0\x3d\x2f\xb7\xdc\x44\x03\ +\x13\xc8\x5b\x2a\x88\xcf\xf4\x3e\xc8\x1d\xb2\x3a\x75\xe0\xbe\xdb\ +\xae\x67\xc4\xc0\x7e\x61\x01\x6c\xb5\x36\x87\xd3\xcd\xfb\xf3\x77\ +\xb2\x72\xc7\x71\xc2\xeb\xb1\xd2\x18\xc5\x24\x1a\x23\x34\x1f\x5a\ +\x63\x31\x89\x86\x72\xf7\xca\x40\xde\x70\xed\xde\x6a\xb1\x70\xc5\ +\x45\x93\xb9\x61\xd6\x79\x44\x45\xda\x58\xb2\x6a\x13\x7f\x7b\xfc\ +\x0d\x76\xef\x3f\x0c\x70\x18\xb8\xd3\x9e\x97\xfb\x99\x89\x0a\x26\ +\x90\xb7\x24\x00\x8f\xc5\x63\xf8\x99\x13\x15\x19\xc9\x8d\x57\xcc\ +\xe4\xca\x99\x17\x10\x61\xb5\x86\x1d\xb4\xd5\xda\x7e\x5e\x7b\x88\ +\xdc\x25\x7b\x71\xb9\xa5\x86\x81\x81\x59\x4c\x42\x03\x2c\x09\x4b\ +\x31\x89\xc0\xbe\x69\xfb\x7c\xd3\x78\x1e\x2b\x06\xfd\xd1\x6b\xaf\ +\x97\x9e\x9a\xc4\x5f\x6e\xbc\x94\x49\xa3\x06\xe2\x70\x38\x79\xf5\ +\x83\xaf\x79\xf6\xcd\xcf\xa8\xaa\xae\x01\x4f\x51\x8b\x9b\xed\x79\ +\xb9\x15\x26\x4a\x98\x40\xde\xdc\x41\xbc\x2f\x9e\x94\xa0\xbd\x06\ +\xf5\xed\xc5\xe3\xf7\xdc\x4e\x46\xbb\xb6\x8d\x0e\xda\x4a\x6d\xdb\ +\x0f\x16\xf1\xda\x77\x5b\xa9\xa8\x76\x18\x03\x83\xa6\x08\xcd\x07\ +\xb3\x98\x44\x03\x8b\x49\x84\xdf\x63\x45\x67\x7f\x35\xc6\x67\xec\ +\xb0\x3e\xdc\x7d\xd3\x2c\x3a\xa6\xa7\x72\x30\xff\x38\xb7\xfd\xfd\ +\x79\x56\xae\xdf\x06\xb0\x0d\xb8\xd4\x9e\x97\xbb\xd9\x44\x0b\x13\ +\xc8\x9b\x2b\x88\x5f\x03\xbc\x28\x08\x42\xf4\xb5\x97\xcd\xe0\x96\ +\xdf\x5f\x8e\xd5\x6a\x69\x32\xd0\x56\x6a\x2b\x28\xad\xe6\xa5\x6f\ +\x36\x73\xe8\x78\x99\x59\x4c\xa2\x31\x3c\x56\x5a\x72\x68\x7e\x88\ +\xb4\x99\x9e\xfc\xf1\x11\x11\x11\x5c\x7b\xe9\xd9\x5c\x73\xe9\x39\ +\x20\xc0\x93\xaf\x7c\xcc\x8b\xef\x7c\x81\x24\x49\x55\xc0\xad\xf6\ +\xbc\xdc\xb7\x4d\xd4\x30\x81\xbc\x59\x52\x29\x49\x09\x6d\x78\xec\ +\xee\x3b\x18\x3d\x74\xe0\x29\x01\x6d\xa5\x36\xbb\xd3\xc5\xbb\xf3\ +\xb6\xb3\x72\xc7\x31\x95\xed\xb4\x59\x4c\x42\xdf\x6e\x42\x0f\x4d\ +\x73\x6a\x8b\x49\x84\xc7\x63\x45\xf9\xfb\x19\xf1\x47\xef\xd7\xbd\ +\x0b\x8f\xdf\x7b\x23\x19\xed\x52\x58\xb0\x7c\x3d\xb7\xfd\xfd\x39\ +\x0a\x8a\x4a\x4d\xaa\xc5\x04\xf2\x66\x47\xa5\x7c\x0a\xf4\x1c\xd2\ +\xaf\x37\xff\xba\xf7\x8f\xa4\xa5\x24\x9f\x52\xd0\x56\x6b\xfb\x61\ +\xf5\x01\x3e\x5f\xbc\x07\xb7\xdb\x6d\x18\xbc\x9a\x75\x31\x89\xb0\ +\xf9\xa3\xb7\xbe\x62\x12\x8d\xe3\xb1\xa2\x61\xf4\x0d\x38\x3e\x2e\ +\x36\x86\x87\xfe\x74\x15\x93\x46\x0d\xe2\xd8\x89\x42\x6e\xfe\xdb\ +\x33\xac\x58\xbb\x15\x3c\x05\xa1\x2f\x31\xa9\x16\x13\xc8\x4f\x25\ +\x88\x5f\x0b\xbc\x20\x0a\x42\xf4\x75\xb3\x72\xf8\xc3\x9c\xcb\xc2\ +\xea\x17\xde\x58\x6d\x5b\xf3\x0a\x79\xed\xdb\xcd\x54\x54\x3b\xcc\ +\x62\x12\xa7\x51\x31\x89\x50\x42\xf3\x0d\xdd\x3b\x1d\xcf\xca\x15\ +\x17\x4e\xe5\xce\xeb\x66\x22\x8a\x22\x4f\xbf\xf6\x3f\x9e\x7f\x3b\ +\x17\xb7\x5b\xaa\x02\x6e\xb3\xe7\xe5\xbe\x65\xa2\x8a\x09\xe4\x4d\ +\x4d\xa5\xbc\x0a\xcc\x4e\x4e\x4c\xe0\x9f\x77\xdf\xc1\xe8\x21\x03\ +\x9a\x25\x68\x2b\xb5\x9d\x28\xa9\xe2\xc5\x2f\x37\x72\xe8\x44\x99\ +\x06\xb0\x36\x75\x68\xbe\x1e\x9a\xa6\x31\xfc\xdf\x4f\x9f\x62\x12\ +\xa1\x84\xe6\x87\xb3\xf0\x48\xef\xee\x5d\x78\xf2\x6f\x37\xd3\x21\ +\x3d\x95\x45\xbf\x6d\xe0\xd6\xfb\x9f\xe3\x64\x61\x09\xc0\x07\xc0\ +\x4d\x26\xd5\x62\x02\x79\x53\x80\x78\x3f\x3c\x5e\x29\x3d\x87\x0d\ +\xe8\xcb\xe3\xf7\xdc\x49\x6a\x72\x52\xb3\x06\x6d\xa5\x36\xbb\xd3\ +\xc5\xdb\x73\xb7\xb2\x6a\xc7\x51\x63\x60\x62\x16\x93\x68\x15\xc5\ +\x24\xd4\xa8\x90\xf0\x79\x1b\xc9\x5f\x2f\x36\x26\x8a\x07\xef\xba\ +\x86\xa9\x63\x87\x70\xec\x64\x11\xb7\xde\xf7\x2c\x4b\x57\x6f\xae\ +\xa5\x5a\x2e\x35\x8b\x40\x9b\x40\xde\x24\x54\xca\x0d\x57\x5c\xc2\ +\x8d\x57\x5c\x8a\xe8\x1d\xe8\x96\x08\xe4\xb5\x6d\xdf\xff\xb6\x9f\ +\xdc\x45\xbb\x71\x4b\xee\xc6\x05\xaf\x46\x09\xcd\xd7\x43\xd3\x98\ +\xc5\x24\x42\x4f\xab\xa0\x66\xe8\xd4\x43\xd3\x04\xef\x26\x7c\xfb\ +\x3b\xeb\x82\x29\xdc\x75\xc3\xe5\x58\x2d\x16\x9e\x79\xe3\x13\x9e\ +\x79\xf3\x53\x93\x6a\x31\x81\xbc\xd1\x00\x3c\x0e\x8f\x57\xca\xec\ +\xd4\xa4\x44\x1e\xbb\xe7\x4e\x86\x0f\xec\xd7\x22\x41\x5b\xa9\x6d\ +\xd3\xbe\x02\x5e\xfb\x66\x23\x15\xd5\xf6\x56\x54\x4c\xa2\x71\xf2\ +\xb1\xb7\xd6\x62\x12\x7a\xc7\xa7\xe1\x34\x8d\xff\xf5\x7a\x66\x77\ +\xe6\xa9\xfb\x6f\xa1\x53\x46\x5b\x96\xac\xda\xc4\xad\xf7\x3d\xcb\ +\xf1\x82\xe2\x5a\xaa\xe5\xe6\xd3\x39\xbc\xdf\x04\xf2\xf0\x81\x78\ +\x3b\x60\x2e\x30\x68\xc4\xc0\x7e\x3c\x76\xcf\x9d\xa4\x24\x25\x6a\ +\x82\xe4\xa9\x02\xe8\x86\x9c\xeb\x44\x49\x25\xcf\x7f\xbe\x8e\x43\ +\xc7\xcb\x69\x68\x68\xbe\x59\x4c\x42\x7d\x7c\x9a\x73\x31\x89\x86\ +\x19\x3a\x8d\x17\x1e\x91\x24\x89\xb8\x98\x28\x1e\xf8\xe3\x35\x4c\ +\x9b\x30\x9c\x13\x85\xc5\xdc\x72\xdf\xb3\x2c\x59\xb9\x09\x60\x1d\ +\x70\x8e\x3d\x2f\xf7\x98\x09\xe4\x26\x90\x87\x0a\xe2\xd9\xc0\x8f\ +\x40\xf6\x95\x33\x2f\xe4\x8e\x6b\xe6\x60\x11\x85\x16\xad\x79\x6b\ +\xb5\x55\xdb\x5d\xbc\xf9\xdd\x26\x56\xef\x38\x7a\x0a\x8b\x49\x34\ +\x46\x68\xbe\x4e\xf0\x0a\x03\x15\xd2\x5a\x8a\x49\x84\xcf\xd0\xa9\ +\xff\x59\xb9\x74\xfa\x64\xee\xbe\xf9\x0a\xac\x16\x0b\xff\x7c\xe1\ +\x7d\x5e\x7e\xef\x2b\x80\x3d\xc0\x34\x7b\x5e\xee\x1e\x13\xc8\x4d\ +\x20\x37\x0a\xe2\x83\x80\xb9\x82\x20\xb4\xbb\xeb\xba\x2b\x99\x73\ +\xf1\xf4\x56\x07\xda\x6a\x6d\xdf\x2c\xdf\x4b\xee\xc2\x9d\x75\x93\ +\xda\x2c\x26\x71\x8a\x8a\x49\x34\x59\x68\xbe\xce\xfe\x1a\xba\x5e\ +\x68\xcf\x4a\x8f\xec\xce\x3c\xfb\x8f\x3b\xe8\x90\x9e\xc6\x6b\x1f\ +\x7c\xc3\x43\xcf\xbe\x8b\x24\x49\xc7\xbc\x9a\xf9\x3a\x13\xc8\x4d\ +\x20\xd7\x0b\xe2\x93\x81\x2f\xad\x56\x4b\xfc\x83\x7f\xbc\x95\xf3\ +\x26\x8f\x6f\xd5\xa0\xad\xd4\xb6\x61\xcf\x09\x5e\xfd\x7a\x03\x95\ +\xd5\xf6\x53\x17\x9a\x1f\x2a\xc7\x6c\x16\x93\xd0\x09\xe4\xa1\x66\ +\xb4\x84\x70\xa4\x71\x50\x1a\x8b\xd4\xa4\x36\xbc\xfa\xd8\xdd\xf4\ +\xc8\xee\x4c\xee\xf7\x8b\xb8\xeb\xc1\x17\x71\x38\x5d\x65\xc0\x45\ +\xf6\xbc\xdc\x5f\x4c\x20\xf7\x17\x11\x53\x02\x41\xfc\x12\x60\x6e\ +\x74\x54\x64\xfc\x73\x0f\xdc\xeb\x07\xe2\xa7\x9b\x0c\xc8\x4e\xe3\ +\x1f\x57\x8d\xa2\x43\x6a\x9c\xd6\x32\xaf\x47\x13\x08\xad\x13\xaa\ +\xc7\xf9\x00\x89\x4a\x6f\x82\xff\x96\x74\x5c\x42\xcf\x77\x32\x7a\ +\x5c\x63\x2a\x43\x06\xaf\x2b\x85\x76\xce\xc0\xb1\x6a\xe8\xd8\x2b\ +\xdd\xf3\x93\x85\x25\x5c\x75\xd7\x23\xac\xde\xb0\x8d\x9c\x73\xc7\ +\xf3\xce\x33\xf7\x12\x13\x1d\x19\x0f\xcc\xf5\xce\x51\x53\x4c\x20\ +\x57\x04\xf1\x5b\x80\x8f\x13\xda\xc4\xdb\x5e\x7b\xec\x41\xc6\x0c\ +\x1d\x74\xda\x8f\x49\x7a\x72\x2c\x0f\x5c\x35\x9a\xa1\x3d\xda\x19\ +\xc7\x22\x49\x01\x0c\x0c\x02\xab\x6e\x30\x90\x0c\x20\x95\x14\x22\ +\x20\x4a\xa1\x00\xb2\xa4\xe3\x10\x29\x34\xbc\x97\x0c\x00\xb8\xa4\ +\x07\x68\xfd\x5b\x25\xc5\x71\xd5\x71\xdd\x06\x3e\x2b\xe5\x15\x95\ +\xdc\x70\xcf\xbf\xf8\x79\xf1\x2a\x26\x8d\x1e\xc4\x27\xaf\x3e\x48\ +\x52\x42\xbc\x0d\xf8\xd8\x3b\x57\x4d\x31\x81\x3c\x08\xc4\x1f\x06\ +\x5e\x4c\x4f\x4b\x15\xdf\x79\xf2\x51\xfa\xf7\xec\x16\x32\x45\x11\ +\xfe\xed\xd5\xa9\x69\xab\x95\x28\x9b\x95\xdb\x67\x0e\x21\x67\x42\ +\x77\x04\x42\x04\x03\x34\xc0\x40\x0a\x51\x7b\x0d\xf5\x38\x23\x00\ +\xae\x6b\x37\x11\x3e\xad\x37\x78\xc9\x52\x06\x56\xad\xb1\x0f\x79\ +\x77\x20\x85\x38\x86\x52\x78\xc7\xde\xee\xb0\x73\xd7\x83\xcf\xf1\ +\xc9\xb7\xf3\x19\xdc\xb7\x1b\x5f\xbd\xfd\x28\x1d\xd2\x53\x45\xe0\ +\x45\xef\x9c\x35\x05\x93\x23\xc7\x96\x99\x63\xc1\xe3\x23\x7e\x7d\ +\x76\x66\x27\x5e\x7e\xe4\xff\x68\x9b\x92\x7c\x5a\x71\xe1\x46\xda\ +\xd6\xef\x3e\xc6\xcb\x5f\xac\xa3\xb2\xc6\x61\x16\x93\x68\x51\xc5\ +\x24\x4e\x55\x68\x7e\xfd\xb9\x1b\xfa\xac\xfc\xe1\xca\x1c\xfe\x70\ +\x65\x0e\x47\x8f\x17\x32\xeb\xd6\x87\xd8\xb1\xe7\x20\xc0\x1b\x78\ +\x7c\xcd\x5d\xad\x12\xa0\x4d\x8e\x5c\x17\x88\x47\x01\x9f\x01\xd7\ +\x0f\xec\xdd\x93\xb7\x9f\x7c\x84\xb6\x3e\x99\x0b\x4d\x09\x96\x41\ +\xdd\xda\xf1\xd0\xb5\x63\xc9\xf0\xe5\xcd\x8d\x50\x1a\x0d\xd2\x10\ +\x1b\x99\xd2\xd0\xb1\xdb\xd0\x47\x85\x48\x06\xbe\x93\x0a\x69\x14\ +\x56\xee\xbe\xa1\x07\x48\x06\x0f\x91\x34\x8f\xd3\xe2\xd7\x03\xe5\ +\xe5\x77\x73\x79\xf8\xd9\xb7\x69\x9b\x96\xc4\x97\x6f\x3e\xc2\xb0\ +\x01\x3d\x01\xae\x07\x3e\xf3\xce\x65\x93\x5a\x39\x0d\x41\x3c\x11\ +\x98\x07\x5c\x34\x61\xc4\x50\x5e\xfd\xe7\x03\xb4\x89\x8b\xc3\x14\ +\x6d\x69\x9f\x12\xc7\x43\xd7\x8c\x63\x70\x8f\xf4\x30\x50\x21\xe8\ +\xa0\x34\x24\x4d\xf2\xc1\x38\xde\xeb\xa1\x42\x54\xf8\x7d\x49\xcf\ +\x32\x10\x2a\x4d\x63\x9c\x82\x69\x8a\x85\x2e\x7c\x5d\x97\x8c\xdd\ +\x7e\x9f\x7b\xfd\xf1\xd7\x3f\xf1\xa7\x07\x9f\x25\x3a\x3a\x92\xff\ +\xbd\xf2\x00\x67\x8e\x1f\x0a\x70\x11\x30\xcf\x3b\xa7\x4d\x20\x3f\ +\x8d\x40\x3c\x03\x58\x04\x8c\xbb\xe0\xcc\xc9\x3c\x7d\xff\xdd\x44\ +\xda\x6c\x26\x42\x1b\x90\xe8\x48\x2b\x77\x5d\x36\x9c\x8b\x27\x74\ +\xd7\xb6\x13\x48\x92\x8a\xc6\x1b\x26\x74\x90\xf4\x61\x88\xba\x61\ +\xd5\x80\x21\xcf\x70\x57\x1b\x81\x9a\x6c\x14\xee\x5e\xff\x18\xa8\ +\x6a\xd4\x52\xe8\x1e\x2b\x5a\x32\x6f\xe1\x6f\xdc\x78\xcf\xe3\x38\ +\x5d\x2e\xde\x7a\xea\x6e\x2e\xbb\x60\x32\xc0\x38\x60\x91\x77\x6e\ +\x9f\x76\x72\xda\x71\xe4\xde\x1b\xbd\x04\xc8\xba\x6a\xe6\x0c\x6e\ +\xbf\x7a\xb6\xc9\x7d\x37\xb0\x6d\xed\xce\xa3\xbc\xf4\xf9\x6a\xaa\ +\x6a\x9c\x66\x31\x89\x30\x86\xe6\xb7\xf4\x62\x12\xba\xaf\x17\x52\ +\x69\x3a\xe8\x91\x9d\xc9\x1b\x4f\xfe\x8d\x94\xa4\x04\x1e\x7d\xe1\ +\x03\x5e\x7a\xe7\x0b\x80\x7d\xc0\x58\x7b\x5e\x6e\x7e\xab\x00\x68\ +\x93\x23\x57\xa4\x53\x7e\x00\xb2\xee\xb8\x7a\x0e\xb7\x5f\x3d\x9b\ +\x13\x65\x76\x0e\x17\x55\x87\x0d\xd4\xf4\xdf\xa0\xe6\xdd\x66\xa4\ +\xcf\x43\x7a\xa4\xf3\xc8\xf5\x13\xc8\x48\x89\xd3\xc1\x31\x87\x46\ +\x69\xe8\xd3\x3a\x1b\xea\x79\x12\x46\xad\xb7\xc1\xbb\x09\x49\xa7\ +\x77\x50\xb0\x9e\xac\xdc\xf5\x50\xb9\xfb\x30\x50\x3f\x21\x5d\x43\ +\xfd\xb8\xed\xbb\xf7\xf3\xbb\x5b\xee\xe7\x60\xfe\x31\xee\xbb\x6d\ +\x36\xf7\xdf\x3e\x07\x20\x0b\xf8\xe1\x74\xa3\x59\x4e\x1b\x20\xf7\ +\x1a\x43\xbe\x06\xfa\x5d\x35\x73\x06\x57\xce\xbc\x88\xa2\x0a\x07\ +\xff\x59\x78\x98\x57\xe7\x1f\xe4\xcb\x35\xc7\xa9\xb4\x37\xdc\xf0\ +\x7d\xaa\x5c\x14\xc3\xaf\x09\x18\xfb\x7c\x46\x6a\x3c\x0f\x5f\x3f\ +\x81\xc1\xdd\xd3\x1b\x04\x5e\x9a\x93\x3a\x0c\x7e\xec\x0d\xc7\x65\ +\x79\x40\x0c\xa4\x69\x1a\x0a\xc4\x21\x2d\x74\x21\x1b\x48\x1b\x2f\ +\x60\xcb\xf8\x02\xa1\xff\x59\x39\x98\x7f\x8c\x59\xb7\xdc\xcf\xf6\ +\xdd\xfb\xf9\xc3\x95\x17\x71\xcb\x55\x33\x00\xfa\x01\x5f\x9f\x4e\ +\x06\xd0\xd3\x02\xc8\xbd\x2e\x86\x1f\xe1\xe5\xc4\x6f\xbf\x7a\x36\ +\xa5\x55\x4e\xfe\xb3\xe8\x30\x65\xd5\x4e\x24\x09\x56\xef\x2d\xe1\ +\x99\xb9\x79\xac\xdc\x53\x82\x99\x7a\x3d\x34\x89\x89\x8a\xe0\x2f\ +\xbf\x1b\x45\xce\xc4\x9e\xf2\x0b\x41\x83\x82\x70\xc2\x8e\xc6\x04\ +\x7a\x9e\x48\xa1\x68\xc4\x8d\xe5\xff\xde\x2c\xb8\x7b\x49\x47\xdf\ +\x42\xeb\x8b\x66\x44\xa8\x62\x04\x69\xf0\xb9\x0b\x8b\x4a\xb8\xfe\ +\x2f\x8f\x70\x20\xff\x28\xf7\xdd\x36\xdb\x97\x33\xff\xc8\x3b\xf7\ +\x5b\xbd\x9c\x16\x1c\xb9\x2d\x33\xe7\x75\xe0\xfa\xf1\x23\x86\xf2\ +\xf4\x7d\x77\x53\xe3\x84\x37\x17\x1e\xe2\x44\xa9\x5d\x5e\xbb\x4c\ +\x8a\x64\xfa\xa0\xb6\x74\x4e\x8d\x6a\x31\x54\x48\x73\x6b\x5b\xb9\ +\x35\x9f\x57\xbe\x58\x45\x65\xb5\xc3\x0f\x29\x9b\x53\x31\x89\xf0\ +\x66\x50\x0c\x77\x31\x09\x5a\x6d\x31\x09\xc5\xb1\x37\x92\x78\x4b\ +\xc6\xff\xbd\x53\x46\x1a\xff\x7d\xe9\x51\x12\xda\xc4\x73\xed\x9f\ +\xff\xc5\x4f\x8b\x56\x03\xbc\x61\xcf\xcb\xbd\xa1\xc5\x02\xb4\x99\ +\x34\xab\x0e\xc4\x1f\x06\xee\x1f\xd0\xbb\x27\xaf\x3e\xfa\x00\x92\ +\x60\xe5\x3f\x0b\x0f\x71\xa4\xa4\x46\x7d\x60\x24\x18\xd8\x25\x9e\ +\x69\xfd\xd3\x88\x8b\xb2\x98\x00\x1d\x42\xdb\xa1\xe3\xa5\x3c\xf5\ +\xe1\x32\x8e\x14\x96\x13\x0e\x43\x9e\x22\x18\xb4\xca\x62\x12\xf8\ +\xf5\x4d\x09\xbc\x54\x0d\x9d\x34\xdf\x62\x12\xfa\x4b\xd3\x19\xbb\ +\x77\x3d\xb2\xbb\xf0\xde\x73\x0f\x61\xb5\x5a\xb8\xec\xe6\x07\x59\ +\xb5\x61\x3b\xc0\x23\xf6\xbc\xdc\xbf\x9b\x40\xde\x42\x81\xdc\x9b\ +\x8f\xe1\xc5\xec\xce\x9d\x78\xf3\x5f\x8f\x10\x13\x13\xcb\xbb\x8b\ +\x0f\x73\xa0\xa0\x4a\xf7\xde\xd3\x66\x15\x99\xd2\x27\x85\xd1\xdd\ +\x13\xeb\xca\xba\x99\xa0\xad\xbf\xad\xa2\xda\xc1\x0b\x9f\xfe\xc6\ +\xfa\x9d\x47\x75\x66\xc5\xd3\x09\x06\x66\x31\x09\x6d\xb0\xc4\x68\ +\x06\xc5\x50\x8b\x49\x84\x9a\x41\x31\xd4\xdd\x84\xfa\x58\x0e\x1f\ +\xd8\x87\xd7\x9e\xbc\x8f\xaa\xaa\x1a\x2e\xba\xee\xfe\xda\x08\xd0\ +\x5b\xed\x79\xb9\x2f\x99\x40\xde\xc2\x80\xdc\x9b\x21\xed\xe3\xf4\ +\xb4\x54\xf1\x3f\x4f\x3d\x46\x6a\x72\x12\x1f\x2e\xcb\x67\xf7\xb1\ +\x4a\x03\x1c\x62\xfd\x03\xd2\xae\x4d\x24\xd3\x87\xb4\xa5\x6b\xdb\ +\x18\x13\xb0\x0d\xb6\x81\xc4\xc7\x3f\x6f\xe1\x8b\x05\xdb\xea\xb7\ +\x3b\xad\xbc\x98\x44\x60\xdf\x08\xd0\x96\xd5\xdd\xfb\x38\xad\x8a\ +\x49\x34\xb8\xf0\x08\xc1\xf7\x6e\xea\xb8\x11\xfc\xfb\x1f\x7f\xe2\ +\xf8\xc9\x22\xa6\x5f\x7d\x2f\x87\x8f\x9e\x74\x03\x97\xdb\xf3\x72\ +\x3f\x35\x81\xbc\xe5\x80\xf8\x64\x60\x6e\x42\x7c\xbc\xed\xed\x27\ +\x1f\xa5\x73\x87\x0e\x7c\xba\xf2\x08\xdb\xf2\x0d\x96\xfe\x93\x79\ +\x20\xfb\x75\x8e\xe7\xdc\x01\xed\x48\x88\xb5\x9a\xa0\x6d\xb0\x6d\ +\xc5\xe6\x43\xbc\xfc\xf9\x2a\xaa\x6b\x1c\x3a\xa9\x90\x00\x30\x68\ +\xc1\xc5\x24\x50\xd5\xee\xd5\xf8\x71\x3d\xda\x7d\xa8\xc5\x24\x74\ +\xee\x46\x42\xa4\xb1\x04\x41\x6d\xa1\x0b\xdf\xf5\x94\x68\x9a\xcb\ +\x2e\x38\x8b\xbf\xdf\x75\x3d\xbb\xf7\x1f\xe6\xc2\x6b\xee\xa3\xa8\ +\xa4\xcc\x8e\xa7\x38\xc5\x2f\x26\x90\x37\x7f\x10\x1f\x04\x2c\x8c\ +\x8e\x8a\x8c\x7f\xf5\xd1\x07\xe9\xd3\xa3\x1b\x5f\xae\x39\xc6\x86\ +\x03\xa5\x06\xcf\xa4\x3c\x01\x6c\xa2\xc8\xe4\xbe\x29\x8c\xed\x99\ +\xe2\x57\xfa\xcd\x04\x6d\xed\xb6\x03\xc7\x4a\x78\xea\xc3\xa5\x1c\ +\x2b\x2c\x6f\x40\x31\x09\x9a\x59\x31\x89\x70\x1b\x3a\x4f\x7d\x31\ +\x09\x1a\xb5\x98\x04\x06\x69\x9a\xd0\x77\x13\x37\x5f\x75\x09\xb7\ +\x5c\x75\x29\x6b\x37\xef\xe2\xd2\x9b\x1e\xa0\xb2\xaa\xa6\x0c\x98\ +\xd0\x52\x2a\x0d\x9d\x96\x40\xee\xad\xb1\xb9\xd4\x6a\xb5\xb4\x7b\ +\xe6\xef\xf7\x32\x7a\xc8\x20\xbe\xdf\x70\x82\x55\x7b\x4b\x42\x38\ +\x9b\x36\x18\xa4\xc4\x47\x30\x7d\x48\x3a\xdd\xdb\xc7\x99\xa0\x6d\ +\xa0\xad\xa2\xca\xce\xf3\xff\xfb\x8d\x75\xbb\xf3\x43\xf4\x58\xe1\ +\x94\x7a\xac\x08\x72\xda\x3d\xa1\xec\x26\x08\xcd\x63\x25\xe4\x2c\ +\x85\x7a\x16\x9e\xf0\x7b\xac\x48\xb2\x3b\x13\x23\x34\x4d\xc3\x4a\ +\xd3\xdd\xff\xc7\x1b\xb8\xec\x82\xb3\xf8\x75\xd9\x3a\xae\xfa\xe3\ +\x63\x38\x9c\xae\x63\xc0\x98\x96\x50\x03\xf4\xb4\x03\x72\x6f\xb5\ +\xfb\xa5\x82\x20\x64\x3f\x74\xd7\xed\x9c\x3b\x69\x3c\x2b\xf6\x14\ +\xf3\xe3\xa6\x93\x21\x9e\x51\xbf\x86\xd8\xa7\x43\x1c\xe7\x0d\x69\ +\x4f\x72\x5c\x84\x09\xda\x06\x78\xf3\xff\xce\xdb\xc8\x57\x0b\xb7\ +\xeb\xa2\x26\x42\x2f\x37\x46\xd3\x84\xe6\xa3\x77\x37\xa1\x87\xd3\ +\x6e\x08\x90\x9f\x82\xd0\x7c\x4d\x9a\x46\x01\xc8\x8d\x18\xa9\x0d\ +\xd0\x58\x81\xd7\x13\x04\x78\xfa\x1f\x7f\xe2\xcc\xf1\xa3\xc8\xfd\ +\x7e\x11\xb7\xff\xdf\xf3\x48\x92\xb4\xc7\x0b\xe6\xc7\x4c\x20\x6f\ +\x3e\x20\x1e\x87\x27\x09\xd6\xa0\x3f\x5e\x7b\x15\xb3\x67\x4c\x67\ +\xcf\xf1\x4a\xfe\xbb\x2c\x1f\x77\xc8\x67\xd5\xeb\x85\xe0\xf9\x3d\ +\x42\x10\x98\xd0\x37\x95\x89\xbd\xd3\xb0\x5a\x9a\x1f\xdd\x62\x24\ +\xe2\xb4\x29\xfb\xb7\x6c\xd3\x01\x5e\xcd\x5d\x45\xb5\xdd\x81\x6e\ +\xaf\x87\xb0\x79\xac\x10\x22\x15\x12\xaa\xc7\x8a\x1a\xf5\x12\x66\ +\xee\x3e\xac\x1e\x2b\x46\xa9\x10\x9d\x63\x11\xd2\x6e\x02\x79\xa3\ +\xb1\xc6\xb3\x12\x11\x11\xc1\xab\x4f\xdc\xc7\xf0\x41\x7d\x79\xed\ +\x83\x6f\x78\xf0\x99\x77\x00\xd6\x01\xe3\xed\x79\xb9\xe5\x2d\x1d\ +\xc8\x5b\x4b\x64\xe7\x2b\xc0\xa0\xdf\x5f\x7c\x21\xb3\x67\x4c\xa7\ +\xb0\xdc\xc1\xe7\xab\x8f\x22\x79\x57\xaa\x90\x5e\x92\xb1\xcf\x3b\ +\xdd\x6e\x7e\xde\x78\x9c\x7f\x7f\xb3\x93\x6d\x07\x4b\x9b\xa1\x06\ +\xac\xf7\xc1\x69\xda\xb6\xd1\xfd\x3a\xf3\xf0\x4d\x53\x68\x9b\x1c\ +\xa7\xc9\x74\xe9\x6c\xf4\x7f\xcf\x88\x02\x12\x62\x08\xb9\x76\x69\ +\x3a\x85\xbf\xb5\x92\x8f\x37\x52\x0e\x1a\xc1\xf7\x9f\x14\xf0\xb7\ +\xec\x3f\xb9\x67\xde\x63\xcc\x54\x7f\xc9\x7c\x06\xad\x63\x84\xfa\ +\x17\x82\xff\xdf\x82\xe0\x79\x76\x7c\x0e\x90\x02\x4e\x20\x09\xde\ +\x1e\xfa\xb4\x09\x82\x80\xd3\xe9\xe0\xce\xbf\x3f\xc1\xf6\xdd\xfb\ +\xb8\x71\xf6\x74\xfe\xf0\xfb\x0b\x01\x06\x79\xb1\xa3\xc5\x4b\x8b\ +\xd7\xc8\x6d\x99\x39\xd7\x02\x6f\x0e\x1f\xd0\x8f\x17\x1f\x7e\x00\ +\xa7\x5b\xe2\xad\x85\x87\x38\x59\x66\x6f\x18\xa8\x35\xc8\xc8\x22\ +\xd1\x23\xa3\x0d\xd3\x87\xb6\x27\xb5\x4d\xa4\x49\xab\xe8\x68\xab\ +\xa8\xb2\xf3\xcc\x47\x4b\xd9\xb8\xfb\xa8\x3f\xb5\xa0\xc6\xab\x86\ +\x23\x4b\x21\xc6\x0d\x79\xba\x7c\xbe\x75\xf7\xad\x85\x7a\xac\x10\ +\x5a\x46\x4b\xad\x9d\x8e\x51\xda\x4c\xcb\xe8\x1b\x68\xbc\x4d\x4e\ +\x4a\xe0\x83\x97\xfe\x49\x46\xbb\xb6\x5c\x7e\xcb\x83\x2c\x59\xb9\ +\x09\xe0\x3a\x7b\x5e\xee\x5b\x26\xb5\x72\xea\x40\xbc\x1f\xf0\x5b\ +\x4a\x52\x62\xf4\x47\xcf\x3f\x4d\x52\x42\x22\x9f\xac\x3c\xc2\xae\ +\x63\x15\x0d\x3c\xb3\x36\x18\xe8\x31\x5e\x59\x45\x18\xd7\x2b\x8d\ +\xc9\xfd\xda\x61\xb3\x8a\x26\x68\x6b\xb4\xb9\xdd\x12\x1f\xce\x5d\ +\xcf\xd7\x8b\xb7\x07\xe7\xd6\x30\x60\xc8\x6b\xa8\xc7\x4a\x10\xb0\ +\xa8\x52\x13\xa7\xca\x63\x25\xd4\xf4\xaf\x6a\x7c\x7c\xf0\xc2\xa1\ +\xc5\x57\x1b\xf7\x58\x51\x18\x0b\x42\xf0\x58\xd1\x65\xf4\x0d\x9e\ +\xd3\xdd\xb3\x32\xf9\xe8\xd5\xc7\x29\x29\xab\xe0\xcc\xcb\xff\xc4\ +\xf1\x82\xe2\x2a\x60\x84\x3d\x2f\x77\x93\x49\xad\x34\x3d\x88\xc7\ +\x02\x9f\x88\x82\x10\xfd\xc8\x9f\xef\x24\x39\x31\x91\x5f\xb7\x15\ +\x84\x01\xc4\xfd\x57\xb9\x60\xba\x45\xd2\x4d\xb7\xb8\x5c\xb0\x60\ +\xf3\x09\xfe\xfd\xd5\x76\x36\xe6\x15\x63\x8a\xc6\xc3\x28\x0a\xcc\ +\x39\x6f\x10\x77\xcc\x1a\x45\x94\xcd\xea\x37\x96\xb2\xd4\x82\x59\ +\x4c\x42\x7f\x7f\xc3\x54\x4c\x42\xb5\x35\xd4\x62\x12\x06\xc6\xc9\ +\x8f\xf2\x11\xd4\x5e\xf8\xfc\xf4\xa7\x74\x76\xed\xcb\xe3\x89\x17\ +\xde\x26\x2d\x39\x91\x17\x1f\xbd\x13\x51\x14\xa2\x81\x4f\xbc\x98\ +\xd2\x32\xe7\x4e\x0b\x9e\xf7\xaf\x02\x3d\xaf\xbb\xfc\x12\x86\xf5\ +\xef\xc7\xe6\xc3\x65\x2c\xdb\x5d\xd4\x08\x13\x47\xcf\x03\xa9\x5e\ +\x15\xbe\xb8\xc2\xc1\x87\x0b\xf7\xf3\xfa\x4f\xbb\x39\x56\x5c\x6d\ +\x22\xb6\x86\x8c\x1d\xd0\x85\x87\x6f\x3a\x93\xb4\xe4\x38\x2f\x27\ +\x2a\xe9\xe4\x58\x55\x26\x36\x4a\x13\x3d\xf8\xe5\x77\xb1\x50\x28\ +\xe9\x20\x4e\x3a\x80\x5b\x46\x46\x21\xf0\xfb\x0e\x7a\xb8\x62\x35\ +\xf0\xaa\x3f\x8e\x80\xf7\x08\xfa\xae\xfe\x63\x48\xd0\x18\x6b\x70\ +\xe1\xc8\x7d\x46\x47\x3f\xf1\xe9\xaf\x22\x2f\x2f\xd3\x6a\x24\xf3\ +\xa2\x4a\xb6\xcd\x4f\xbf\x9d\xc7\xdc\x5f\x96\x30\x76\x58\x3f\xfe\ +\x78\xdd\x25\x00\x3d\xbd\x98\x62\x72\xe4\x4d\xcd\x8b\x0f\xed\xdf\ +\x97\x97\x1f\xf9\x07\xc7\x4a\xec\xbc\xbf\xf4\x10\x0e\xb7\x14\x36\ +\xf4\xd6\xf6\x42\x90\xd9\x4e\xeb\xd8\xde\x5a\x04\x18\xd3\x33\x8d\ +\x33\x07\xa6\x13\x19\x61\xd1\x4d\x3f\x34\x95\x41\xb4\xb9\x78\xcf\ +\x08\x02\x94\x55\xd4\xf0\xef\x0f\x97\xb0\x69\xef\x11\x1d\xe1\xdd\ +\x72\xf7\xae\x31\x42\xf3\x8d\x7b\xac\x68\x86\xe6\xcb\x3d\x77\x01\ +\x74\x8b\x3a\xc7\xac\xe6\xb1\x22\x05\x2b\x24\x4d\x92\x63\xa5\xa1\ +\xa1\xf9\x68\xd2\x34\xfa\xbd\x9b\x02\xc6\xda\x7b\x8d\xd8\x98\x28\ +\x3e\x7e\xf5\x49\x3a\xb6\x4f\xe7\xb2\x9b\xff\xc1\xd2\xd5\x9b\x9b\ +\x1d\x5f\xde\x6a\x39\x72\x5b\x66\x4e\x5f\x60\x65\x72\x42\x42\xf4\ +\x7f\x9f\x7f\x9a\xa8\xd8\x36\xbc\xb3\xe8\x20\xa5\xd5\xce\xb0\x6e\ +\x5f\xa5\x80\xad\x6c\xb8\x27\x40\x7c\x74\x04\xe7\x0e\xc9\x60\xc8\ +\x19\x29\x26\x3f\xae\xd2\xe6\x76\x4b\xbc\xf7\xdd\x1a\xbe\x5b\xb2\ +\x03\xff\x64\x50\xa1\x86\xe6\x87\xea\x37\x2d\xf9\xd7\xb6\x08\xa5\ +\xf4\x5a\x08\x8b\x02\x46\x0d\x9d\x28\xf1\xe3\x84\xc8\x31\x37\x30\ +\x78\xc7\x88\x91\xda\xf7\xf3\xb2\x0b\x8f\xbe\xd0\x7c\x59\x65\x0a\ +\x79\x23\x6c\xaf\x33\xba\xf0\xfe\x4b\x8f\x53\x54\x52\xce\x99\xb3\ +\xfe\xc4\xc9\xc2\x92\x2a\x60\xb8\x3d\x2f\x77\xb3\xc9\x91\x37\x2e\ +\x2f\xfe\xa9\x28\x08\xd1\x0f\xff\xf9\x0e\x52\x93\x93\xf8\x6e\xfd\ +\xf1\xf0\x82\x78\xb8\xb8\x18\x0d\x7e\xb3\xb4\xd2\xc1\xc7\x8b\xf7\ +\xf3\xd2\xf7\x3b\x38\x5c\x50\x89\x29\xca\xbc\xf9\x55\xd3\x87\x72\ +\xdb\xe5\xa3\xb1\xd9\x2c\x1a\x76\x09\x2d\xfb\x45\xc0\x96\x5d\xf2\ +\xf9\xcb\xc7\xb5\x2d\x90\x66\x09\xa2\x22\xd0\xe1\x66\xa7\xeb\x15\ +\x70\x1c\xc1\x34\x89\x0e\x5e\x23\x98\x1b\x09\xf8\xc6\x7e\x2e\x84\ +\x9a\x76\x1e\x49\xa1\x6f\x5a\xb4\x89\x36\xa5\x42\xc0\x67\x82\xc6\ +\x96\x40\x37\x43\xff\xbe\xa0\x34\x86\xe8\xa0\x75\x14\xa8\x9b\xed\ +\xbb\xf7\xf3\xf4\xcb\xef\xd0\x2e\x35\x89\x17\x1f\xb9\xa3\x96\x2f\ +\xff\xb4\xa5\xf1\xe5\x2d\x8d\x23\x7f\x05\xe8\x79\xf5\xa5\x39\x8c\ +\x18\x38\x00\x80\x0b\x07\xb7\x63\x5c\x8f\x64\xa2\x6d\x16\x9d\x3c\ +\xa2\x41\x23\x89\xcc\xc4\x23\xc0\x87\x56\x96\x67\xf4\xa5\x59\x55\ +\xde\xcf\x3b\x5e\xce\xf3\xdf\x6c\xe3\x8b\xe5\x07\xa8\x0a\x43\xa9\ +\xb9\xd6\x2a\xe3\x07\x65\xf1\xf0\x4d\xd3\x48\x49\x8a\x09\x5e\x36\ +\x55\x68\x51\x49\xc3\xe7\x5b\x73\xf1\x55\xfd\x48\x98\xfd\xd8\x8d\ +\x28\x0b\x86\x4b\xde\xe9\xec\xaf\xca\x58\xa9\xf9\xc7\xfb\x3d\xd7\ +\x8a\x0b\x9d\x1c\xc0\x12\xda\x3c\x55\x3c\xce\xa8\x1f\xbb\xc0\xff\ +\xbe\xfe\x91\x9f\x16\x2e\x63\xfc\x88\x01\xdc\x7e\x4d\x4e\x2d\x5f\ +\xde\xa2\xfc\xcb\x5b\x0c\xb5\x62\xcb\xcc\xb9\x06\x78\x6b\x50\x9f\ +\xde\xbc\xfa\xe8\x83\x58\x2c\xfe\x6b\x50\x8d\xd3\xcd\xea\xfd\xc5\ +\xac\xda\x53\x42\x95\xc3\xdd\xa0\x49\x12\xde\x02\x01\xfe\xdb\x3f\ +\xd9\xad\xbe\xf7\xff\xb1\x91\x56\xce\x19\xdc\x81\xe1\x3d\xd3\x82\ +\x6e\x8c\x49\xb7\x78\xda\x4a\x2b\xaa\x79\xea\x83\xc5\x6c\xdb\xe6\ +\x7f\x68\xc2\x00\x00\x20\x00\x49\x44\x41\x54\x73\x54\x9d\x9a\xd0\ +\xb5\xd5\x6f\x68\x31\x09\x94\xaf\x17\xe2\xb3\x12\xb6\xd0\x7c\x30\ +\x1c\x6d\x8a\x4e\x3b\x8f\xbf\x3f\xb9\x5a\xdf\xe4\xc6\x4a\x0f\x15\ +\xd2\xd0\x7b\x67\x24\x3e\xc0\x23\xf1\xb1\xd1\x7c\xf4\xea\x93\xb4\ +\x4f\x6f\xcb\x25\x37\x3e\xc0\x8a\xb5\x5b\x01\xae\xb5\xe7\xe5\xbe\ +\x6d\x72\xe4\x61\xe6\xc5\x93\x12\xda\x44\x7f\xf8\xdc\xd3\xa4\x25\ +\x27\x2b\x4e\x74\xbb\xd3\xcd\xea\xfd\x25\xac\xdc\x53\x4c\xa5\xdd\ +\xdd\x30\x20\x0f\x43\x81\x00\x39\xdf\x64\x25\x20\xaf\x6d\xeb\x94\ +\x1a\xcb\x8c\xd1\x99\x74\x4a\x8d\x35\x81\x5c\xa6\xcd\xe5\x76\xf3\ +\xce\x37\xab\xf9\x61\xe9\xf6\xf0\x17\x93\xf0\x39\x97\x80\xd0\xc4\ +\xc5\x24\x7c\xf5\xdc\x10\x8b\x49\x84\xcd\x1f\x3d\x78\x11\xa2\xa1\ +\xa1\xf9\x18\xf5\x7f\xa7\xc9\x0a\x8f\x48\x92\x44\xaf\xee\x59\xbc\ +\xf7\xfc\xe3\x14\x16\x97\x32\x75\xd6\x9f\x28\x28\x2a\x3d\xe5\x7c\ +\x79\xab\x01\x72\x2f\x57\xb5\x4a\x10\x84\x5e\xcf\x3d\x70\x3f\xa3\ +\x06\x0f\x94\x9d\xe8\x81\x7f\x3b\x5c\x12\x6b\xf6\x17\xb3\x72\x6f\ +\x09\x15\x35\x06\x28\x8b\x46\x49\x32\x84\x32\x18\x28\x5c\x4f\x00\ +\x86\x77\x4f\xe5\xdc\xa1\x9d\x89\x8b\x6e\xfc\xdc\xe7\x0d\x39\xfe\ +\x54\x01\xfb\xc2\xd5\x7b\x78\xed\x8b\x15\xd8\x1d\x4e\x19\x60\x95\ +\x07\x2f\xff\x85\x95\x46\x2f\x26\x21\x85\x52\x4c\x02\x2d\x6d\xbb\ +\x29\x8a\x49\x28\x00\x79\xa8\xc5\x24\x30\xe2\xb1\x22\x07\xe4\x8d\ +\x5c\x78\xc4\x93\x3c\x9d\xcb\x2f\x38\x87\x7b\x6e\xbf\x8e\x05\xcb\ +\xd7\x73\xc5\x6d\x8f\x20\x49\xd2\x36\x60\x98\x3d\x2f\xb7\xa2\x39\ +\x03\x79\x4b\xe0\xc8\x5f\x01\x7a\x5d\x99\x33\x43\x11\xc4\xe5\x24\ +\xc2\x22\x30\xea\x8c\x24\xfe\x30\x25\x93\x29\xbd\x53\x88\x8d\xb4\ +\x86\xc6\x45\x1a\x7a\x5b\x67\xf0\x83\xa4\xcd\x3b\x4a\x12\xfc\xb6\ +\xe3\x04\x4f\x7c\xba\x81\x25\x5b\x8f\xd2\xd8\xeb\x68\x53\xe4\x71\ +\x09\xb7\x4c\x1c\x96\xcd\xc3\x7f\x98\x46\x6a\x42\x8c\xd7\x90\xa7\ +\xec\x7f\x5c\x6b\xe0\x42\x26\xcc\x28\xa8\x59\x25\xf1\x8e\xee\x3c\ +\x21\x81\xc6\x3c\x02\x8d\x7b\x04\xbc\x1f\xc0\xe3\xa2\x33\xf8\x4c\ +\xf2\x31\x6b\xea\x32\x3c\xa2\x83\x9b\x96\xe7\x95\xd5\x3b\xa2\xe1\ +\xff\xae\x99\xcb\x45\x90\x09\xf6\x51\x36\x24\x13\xe0\xc7\xae\x69\ +\x48\x0d\x1c\x7b\xfc\xfb\x5b\x2b\x1f\x7f\x35\x97\x9f\x17\x2d\x67\ +\xe2\xa8\x81\xdc\x7a\xd5\x0c\x80\x5e\x2d\x81\x2f\x6f\xd6\x1a\xb9\ +\x2d\x33\x67\x26\xf0\xe9\xc0\xde\xbd\xbc\xbc\xb8\x25\x64\xd0\x71\ +\xba\x24\xd6\xe5\x95\xb0\x62\x4f\x09\xe5\x8a\x5e\x2e\x0d\x09\xcd\ +\xd7\xc1\x8b\x2a\x6c\xe9\xf4\x6c\xbd\x3b\x24\xc7\x30\x63\x4c\x16\ +\x59\xed\xe2\x4d\xaa\x25\xa0\xad\xa4\xbc\x9a\xa7\xde\xfb\x95\x6d\ +\x7b\x8f\x87\x16\x9a\x8f\xbe\xe2\x0c\xa8\x86\xe6\xd3\x44\xa1\xf9\ +\x4a\x54\x01\x41\xae\x87\xaa\x54\x88\xaf\x19\xb8\xc1\xa9\x82\x25\ +\x5d\x3e\xdf\xca\xbb\xd4\x10\x76\x13\x84\x90\xa6\x40\x42\xd7\x6e\ +\x22\x2e\x36\x86\xff\xbe\xfa\x14\xe9\x6d\x53\x99\x79\xc3\x03\xac\ +\x5c\xbf\x0d\xe0\x12\x7b\x5e\xee\x67\x26\xb5\x62\x1c\xc4\xe3\x80\ +\xed\x51\x91\x91\x1d\x3e\x79\xe9\x59\xda\xb7\x6d\x1b\x96\xc9\xef\ +\x96\x24\xd6\xe5\x95\xb2\x62\x77\xb1\x8c\xdb\xa2\xb6\xaf\x6f\x60\ +\xee\x06\x1a\x34\x39\x8d\xa4\x2c\xf5\x68\x5f\x83\xba\xa5\x30\x7d\ +\x44\x17\xda\xc4\x98\xb9\xcf\x7d\xdb\x5c\x6e\x37\x6f\x7f\xb5\x92\ +\x1f\x97\x6d\xd7\x69\x2c\x6b\x68\x60\x91\x76\xba\x58\x9a\x73\x31\ +\x09\xd4\x63\x25\x1a\x9e\xf3\x44\xab\x98\x04\x84\x5c\x4c\x02\x23\ +\x46\x5f\xbd\x40\xee\x7f\xbd\x9e\xdd\xba\xf2\xde\x0b\x8f\x71\xe4\ +\x78\x21\x13\x2f\xb9\x93\xaa\xea\x9a\xc3\x40\xcf\xa6\x4e\x79\xdb\ +\x1a\xa8\x95\x07\x80\x0e\xd7\x5e\x36\xd3\x0f\xc4\x1b\x2a\x16\x51\ +\x60\x68\x56\x02\x37\x4f\xe9\xcc\xd9\xfd\x52\x49\x88\x8e\x50\x25\ +\x47\x24\x5d\xae\x5e\x52\x03\xe9\x16\x7d\xc7\x49\xc0\x9a\x5d\x27\ +\x79\xfc\x93\x75\x2c\xd8\x98\x8f\xdb\x2d\x61\x4a\xed\x7d\x15\xb9\ +\x7e\xc6\x48\x6e\xbe\x64\x0c\xb6\x08\x8b\x7f\xf8\xb7\xa2\x7b\xa9\ +\x12\xad\x20\x29\x84\x9e\xcb\x50\x0e\x41\x54\x87\x7a\xf2\xd7\xba\ +\x15\x48\xc6\x4f\x35\x34\x5f\x74\xad\xd0\x7c\x15\x9f\xed\x00\x92\ +\xc9\x3f\x75\xb3\xa4\x90\xae\xd6\x98\xef\x78\x50\xda\x03\xe4\x07\ +\x4e\x93\xae\xd2\xa4\x69\x14\xf2\xb0\xa0\x42\x19\xc9\x52\x48\x9e\ +\xcf\x6e\xdf\xb5\x97\xd7\xdf\xff\x84\x4e\x19\x6d\xb9\xf3\xba\x99\ +\x00\x1d\xbc\x98\x64\x52\x2b\x06\xb4\xf1\x3e\xc0\xfa\x2e\x1d\x3b\ +\x58\xff\xfb\xfc\xbf\x89\xb0\x5a\x1b\x4d\xb3\x73\x4b\x12\x1b\x0f\ +\x96\xb1\x6c\x57\x31\x25\x95\xf6\x00\x2f\x84\x50\xc2\xbb\x7d\xb6\ +\x74\x60\x50\x93\x01\x23\x91\x7c\xed\x92\xa2\x99\x31\x3a\x8b\x6e\ +\x1d\x12\x4d\xba\xc5\x47\x76\x1d\x38\xc1\x93\xef\xfe\x42\x61\x69\ +\x65\x13\x87\xe6\xa3\xef\x7a\x6a\xd4\x8d\xe6\xce\x4c\x9e\xd2\x33\ +\x6c\x78\x34\x12\x99\x8c\x91\xeb\xa9\xd1\x34\xca\xd7\x93\xdb\xbd\ +\x08\xde\xa2\x7a\xda\xf7\x0e\x7d\x1e\x2b\xaa\xf4\x66\x70\xdf\x6c\ +\x56\x2b\x9f\xbc\xf9\x2c\xe9\x6d\xd3\x98\x72\xf9\x5d\xec\xde\x7f\ +\xd8\x09\x0c\xb4\xe7\xe5\x6e\x31\x35\x72\x7d\xf2\x32\x60\xbd\xfb\ +\xa6\xeb\x1b\x15\xc4\x6b\x35\xf4\x41\x99\x6d\xb8\x79\x4a\x67\xce\ +\x1b\xd8\x96\xa4\x58\x9b\xf1\xde\x6a\x15\x08\x08\x7a\x5b\x92\x59\ +\x51\x05\x95\x55\x55\x92\x53\x99\x38\x56\x5c\xc9\x2b\xdf\x6d\xe1\ +\xbd\x9f\xb7\x53\x52\x51\x63\x82\xb8\x57\xba\x75\x4e\xe3\x89\x3b\ +\x2e\xa0\x47\x97\xb6\x6a\xb6\x39\x83\x49\xb8\x50\x89\x42\x14\x7c\ +\x8c\x7d\x1a\x41\x62\xc8\x69\xbd\x3e\xad\x52\xa0\x9a\x4a\x90\x36\ +\xad\xae\x61\x4a\x1a\xd1\xa6\x21\x04\xe1\xf8\x15\xa1\x50\x19\x4b\ +\xa5\xe0\x1f\xb4\x03\xf0\x02\x07\xca\x1f\xc0\x24\x8d\x5d\xb3\xd2\ +\xa6\xb8\x61\x01\x5b\x76\xa7\x83\x27\x5e\x7c\x83\x88\x08\x2b\xff\ +\xfc\xeb\xf5\x00\x56\x2f\x36\x35\x3b\x69\x76\x40\x6e\xcb\xcc\x99\ +\x03\x8c\x9f\x36\x7e\x2c\xc3\xfa\xf7\x6b\xba\x81\x10\x60\x40\xe7\ +\x36\xdc\x34\xa5\x33\x17\x0c\x69\x47\x6a\x5c\x84\xc1\xe8\x68\x49\ +\xc7\xd6\x5b\xf2\xdb\x02\xe2\xb7\x31\x0c\xce\xaf\xa8\x2f\xb2\x4e\ +\x62\xfd\xde\x93\x3c\xf6\xbf\x35\xfc\xb4\xee\x20\x2e\x93\x6e\x01\ +\x20\xa9\x4d\x34\x0f\xde\x74\x0e\x53\x47\x76\xd7\x0f\x06\x68\x80\ +\x81\x22\xfd\x65\xcc\xbb\x49\xd5\x63\x25\x30\xf4\x5c\x71\xdb\xec\ +\x0f\xfa\xba\xc0\xd8\x50\xda\x00\xbd\x99\x17\x91\xa7\x36\x7c\x40\ +\x1f\x41\x29\x12\x5a\x8b\x8a\xc1\xaf\xca\x4f\xa8\xdf\x09\xbf\x05\ +\x09\x90\xb4\x52\xe1\xd6\xf7\x6d\xc5\x9a\x0d\xfc\xbc\x68\x39\x63\ +\x87\xf5\xe3\xa2\xb3\xc7\x02\x8c\xf7\x62\x94\x49\xad\xa8\x80\x78\ +\x02\xb0\x23\x36\x26\xba\xdd\xa7\x2f\xbf\x40\x5a\x72\xd2\x29\xd3\ +\xf6\x24\x09\xb6\x1c\x2e\x65\xc9\x8e\x42\x4e\x96\xda\x15\xb7\x7f\ +\xda\xdb\x37\x34\xaa\x9b\x18\xcf\xa0\xe8\x6f\x2c\xc3\xef\xf8\xb4\ +\xc4\x48\x66\x8c\xce\xa6\x57\xe7\xe4\xd3\x56\x23\x0f\x94\x9f\x56\ +\xec\xe0\x3f\x5f\x2e\xc7\xe1\x74\xf9\xdc\x3e\x9d\xc1\x22\x72\x51\ +\x8c\x9a\xd4\x02\x8d\x5c\x4c\x22\xd8\x58\xe8\xdb\xb7\x86\xd6\xd5\ +\xf4\x9b\xea\xe1\x28\x26\x81\x51\x5a\x48\xde\x40\x1a\xba\xd1\x17\ +\x1d\x46\x5f\xe5\x8c\x8d\xed\xd2\x52\xf8\xec\xed\x17\x28\x2d\xaf\ +\x64\xfc\xc5\xb7\x51\x56\x51\x75\x0c\xe8\x61\xcf\xcb\x2d\x31\xa9\ +\x15\x79\x79\x04\x68\x77\xe3\xef\x66\x91\x9a\x94\x74\x6a\x57\x38\ +\x01\xfa\x76\x6c\xc3\x8d\x53\xba\x70\xf1\xf0\x74\xda\x06\x94\x6c\ +\xd3\xa4\x52\x34\x73\xfb\x87\x21\xe1\xbe\x8c\x86\x78\xa2\xb8\x9a\ +\xd7\xbf\xdb\xcc\x5b\x73\xb7\x50\x50\x6a\xe6\x3e\x07\x38\x73\x64\ +\x0f\x1e\xb8\xe9\x1c\x92\xda\xc4\x04\x38\x5f\x2b\x17\x66\x95\xcd\ +\xb1\xad\xf5\x4f\x12\x14\xe8\x06\xb4\xe9\x0e\x43\x79\x45\x64\xb4\ +\x4e\xc5\x07\x4e\x49\x63\xd7\x69\xf4\x55\xf3\xe1\xf6\x6a\xe3\x68\ +\x24\xc7\x92\x1f\x2b\x34\xc6\x0a\x99\xfc\xf0\x2a\xda\xb9\xaa\x1f\ +\xbb\xda\xce\x5a\xcd\x8f\xdd\x73\xec\xb1\x93\x05\xbc\xfe\xfe\xc7\ +\xb4\x4b\x4d\xe2\x2f\x37\xcf\x02\x68\xe7\xc5\x2a\x53\x23\x97\xd1\ +\xc6\x07\x01\xab\xba\x67\x65\x59\xde\xfb\xf7\xbf\x10\x45\xb1\x79\ +\x69\x7b\x02\x6c\x3f\x5c\xc6\xe2\xed\x27\x39\x56\x52\xad\xa0\x85\ +\x19\xd0\x2c\x94\x8c\x65\xa8\xb9\x50\x61\xc8\x65\xcb\x6a\x11\x99\ +\x3c\xb0\x23\x67\x0e\xe9\x8c\xd5\xd2\xfa\x4b\xcd\x69\x49\x61\x69\ +\x25\x4f\xbd\x3b\x9f\x5d\x79\xc7\x34\xd3\xcd\x06\xa7\x55\x40\xe3\ +\xde\xc9\xf9\x39\xab\x68\x91\x41\x3e\xe8\xe1\xcb\x2b\x22\x6b\x40\ +\xc7\xc8\x4e\x50\xbb\xae\xa6\x31\x43\xa7\x96\x06\xad\xb0\x9b\xd0\ +\x15\x6b\x11\xa8\xb1\x1b\x30\x52\xfb\xce\x1b\x8d\x5a\x03\x56\x8b\ +\xc8\x07\xaf\x3c\x4d\x97\xce\x1d\x38\x7b\xf6\xdd\x6c\xd9\xb1\xcf\ +\x85\x27\xe2\x73\x5d\x73\xd0\xc8\x9b\x05\x90\xdb\x32\x73\x04\x60\ +\x99\x20\x08\x23\xdf\x7c\xfc\x51\xfa\xf5\xec\xd1\xac\x81\x63\x7b\ +\x7e\x19\x4b\xb6\x9d\xe0\x48\x71\x0d\x86\x8a\xd0\xea\xf6\xbd\x45\ +\x66\x01\x30\x90\x64\x28\x60\x02\x24\xc7\x47\x72\xd1\x98\x6c\xfa\ +\x77\x4d\x53\xdc\x7d\xb4\xa4\xb6\x86\x44\x97\x3a\x5d\x6e\xde\xcc\ +\x5d\xca\xfc\x55\x3b\x02\xb6\xf7\x06\xa8\x10\x99\x00\x21\xc3\x85\ +\x47\xb4\x68\x1a\xad\x62\x0b\x61\x0c\xcd\x0f\x54\xe3\xc3\x5f\x4c\ +\xc2\x28\x15\xa2\x63\xe1\xd1\x04\x72\x7d\xa1\xf9\xf2\x7d\x93\x5f\ +\x44\x06\xf7\xeb\xcd\x6b\x4f\x3f\xcc\x9a\x8d\x3b\xb8\xe0\x9a\xfb\ +\x90\x24\x69\x05\x30\xda\x9e\x97\x2b\x9d\x6a\x20\x6f\x2e\xd4\xca\ +\xb5\xc0\xc8\xe9\x53\x27\x37\x7b\x10\x07\xe8\x99\x11\xcf\xf5\x53\ +\xbb\x72\xf9\xe8\x8e\x64\x24\x45\xe9\xa4\x42\xa4\x10\xeb\x38\xea\ +\xf3\x63\x57\x33\xde\x15\x96\x55\xf3\xd6\xdc\xcd\xbc\xfa\xf5\x46\ +\x4e\x14\x57\xb6\x7a\xcd\x5b\x4d\xac\x16\x91\x9b\x2e\x1d\xc7\x75\ +\x33\x46\x63\x15\x45\x3f\x8d\x46\x39\x37\x77\xc0\x56\x3f\xc0\xff\ +\x5b\x92\xdd\xfe\x6b\xa4\x31\x0e\x30\x7c\xd7\x53\x33\x42\x70\xee\ +\x74\x39\x4a\x05\x1d\x86\x4a\x9d\xe9\x5f\x03\x07\x59\xd9\xd3\xc7\ +\x28\xa5\xa1\xc7\x7f\x5b\x2b\xa4\x3f\x20\xab\x7a\x50\x9a\x83\xe0\ +\x4e\x07\xd2\x32\xc1\xde\x46\xe8\x48\x65\x1d\xec\xb8\xb0\x6e\xd3\ +\x56\xbe\xfd\xe9\x57\x86\xf4\xef\xc1\xe5\x17\x4e\x06\x18\xe9\xc5\ +\x2e\x93\x5a\xb1\x65\xe6\xa4\x00\x3b\x12\xe2\xe3\x53\x3e\x7b\xe5\ +\x05\x12\xe2\x5b\x5e\x08\xfa\xee\x23\x65\x2c\xdc\x76\xc2\xa7\x40\ +\x84\x76\x35\x15\x29\x60\x9b\xaa\xea\x8f\x6e\xd8\xa7\x39\x78\xe1\ +\xa8\xbd\x9e\x45\x14\x98\x38\xa0\x13\xd3\x86\x65\xd6\x05\xce\x9c\ +\x0e\xb4\x8a\x9c\x6c\xdb\x77\x94\x7f\xbf\xf7\x33\xc5\x65\x55\xda\ +\x95\x65\xa4\xc0\xb9\xa0\x4c\x2d\x10\x40\xd3\x34\x28\xa2\x53\x89\ +\xa6\xd1\xca\x1a\x18\x44\xd3\xe8\xa7\x42\x90\x94\xd2\xd5\xea\x7c\ +\x36\x0d\xd0\x34\xe1\x0e\xcd\x47\x95\xb2\x92\xbc\x90\x67\xb4\x34\ +\x5d\xfd\xf1\x49\x89\x89\x7c\xf6\xf6\x0b\x38\x9c\x2e\xc6\xce\xb8\ +\x8d\xa2\x92\xb2\x02\x3c\x86\xcf\x82\xd3\x5d\x23\x7f\x1c\x48\xb9\ +\xf5\xca\xd9\x75\x20\xde\xd2\xe4\x8c\xf6\xf1\x5c\x3b\xb9\x2b\xb3\ +\xc7\x77\xa1\x53\x6a\x8c\x42\x35\x71\x7d\xca\xb7\x6e\x2d\x5d\xef\ +\x71\x01\x1a\x8b\xcb\xed\x66\xfe\xba\xfd\x3c\xfa\xe1\x0a\xd6\xee\ +\x3a\xce\xe9\x2c\xbd\xb2\xd2\x79\xe2\xce\x19\x9c\xd1\xa9\xad\x81\ +\xaa\x32\x92\xa6\x0f\x75\xdd\x6a\xa3\xf0\xd2\xaf\xad\x06\xb8\xb1\ +\x4a\x0a\x86\x43\x59\x97\x40\x3d\x06\x56\x19\xed\x3c\x60\xfb\x20\ +\x09\xa8\x6a\xec\xc8\x44\x45\x6a\x46\x7d\x82\xfe\xef\x1e\x78\x9c\ +\xc6\xf7\xaf\xff\xe2\xc8\x14\xba\x10\x42\x9c\x4b\xf5\x8d\x85\xc5\ +\xc5\xbc\xf8\xd6\xfb\x24\x25\xc4\x73\xdf\xed\xb3\x01\x52\xbc\x18\ +\x76\xfa\x6a\xe4\xb6\xcc\x9c\x91\xc0\xb2\xbe\x3d\xba\x0b\x6f\x3d\ +\xf1\x4f\xbf\x81\x6e\xc9\x9a\xe2\xbe\x63\xe5\x2c\xd8\x72\x9c\x03\ +\x27\xcb\x65\x56\x7a\x50\x8e\x0a\xd4\x4a\x59\x1a\xa0\xd5\xf9\x68\ +\x5e\xa1\xd6\x4a\xec\xd6\x21\x89\x4b\x26\x76\x27\x3d\x39\xee\xb4\ +\xa5\x5b\x9c\x4e\x17\xaf\x7d\xb6\x98\x85\xab\x77\xe9\xcb\xf3\x11\ +\xe4\xbe\xa6\x56\x40\x41\x3e\xbd\xad\xf1\x62\x12\x28\x3f\x2b\xde\ +\xc5\xc5\x4f\xc3\xf5\xd5\xb6\x55\xf8\xe6\x60\x0d\x5a\x4d\xa3\x0d\ +\xee\x1b\x1a\xda\xbd\xe4\xbf\x95\x09\x53\x31\x09\xf4\xe5\x7f\x97\ +\xd9\xb9\xca\x46\xd0\x6a\x5e\xcf\x7f\xa7\x2c\x8a\x02\x6f\x3f\xf7\ +\x38\x3d\xbb\x75\xe5\x82\xab\xff\xc6\x9a\x4d\x3b\x25\x2f\x57\xbe\ +\xe2\x54\x69\xe4\xa7\x0c\xc8\xbd\x06\xce\xd5\xa2\x28\x0e\x7e\xef\ +\xdf\xff\xa2\x7b\x56\x56\x8b\xdf\xde\x07\xb6\xed\x3f\x5e\xce\xc2\ +\x2d\xc7\xd8\x7f\xbc\x22\x08\x0c\x34\x27\x40\x43\x93\x0c\x29\x3d\ +\x90\x04\x1b\x75\x44\x60\x5c\xff\x8e\x9c\x3b\x32\x9b\x28\x9b\xf5\ +\xb4\x03\xf2\x5a\x99\xbb\x64\x0b\xef\x7f\xbd\x1c\xa7\xdb\xa5\x42\ +\x63\x61\xac\x98\x04\x06\x8a\x49\xc8\x56\xe9\x31\xf0\xac\x28\xd1\ +\x34\x72\x40\x6e\xa4\x8a\xbd\xaf\x02\xa1\x92\x08\x4b\x15\xc8\x0d\ +\x67\x29\x0c\x01\xc8\x75\x64\xb4\x54\x1a\x37\xa3\x1e\x3d\xbd\xba\ +\x67\xf3\x9f\xe7\x9f\x60\xeb\xce\xfd\x9c\x3d\xfb\x6e\x5c\x6e\xf7\ +\x5a\x60\x68\xb8\x0d\x9f\x2d\x81\x5a\xb9\x00\x18\x7c\xd1\x59\x67\ +\x06\x81\x78\x93\x6c\x45\x9a\x00\x34\xba\xb4\x8d\xe3\xaa\xc9\xd9\ +\x5c\x3d\x25\x9b\xec\xf4\x38\x8c\x1b\x3a\xf5\x1d\x22\x19\xfc\x3b\ +\xb0\xd1\x25\xc1\x82\x0d\x07\x79\xe4\xfd\x65\xac\xdc\x96\xdf\xac\ +\xc7\xbe\x31\xf3\xa1\x9f\x33\xb6\x0f\xf7\xdf\x78\x1e\x09\xf1\x31\ +\x2a\xa1\xf9\xa8\x86\xe2\x2b\xfa\x9e\x4b\x72\x06\x3c\xb5\x9c\xdf\ +\xc1\x39\xb6\xf5\x14\x2c\xd6\x8e\x30\xd6\x13\xad\x19\x68\x58\x55\ +\xa6\x67\x02\xbf\x80\x3c\x35\x25\x17\xd2\x2f\xe9\xf0\xa3\x57\xa2\ +\x80\xd4\x6b\x70\xd6\xfb\x87\xcb\x51\x2f\xf5\xc6\x5d\x41\x31\xad\ +\x82\x76\x4e\xf3\xed\xbb\xf6\x90\xfb\xed\x8f\xf4\xe9\x91\xc5\x15\ +\x17\x9f\x09\x30\xd8\x8b\x69\xa7\x17\xb5\x62\xcb\xcc\x59\x65\xb5\ +\x58\x86\x7e\xfe\xda\xcb\xa4\xa7\xa5\xb6\x3a\x6d\x5c\xae\xed\xe0\ +\xc9\x0a\x16\x6e\x3e\xca\xae\x23\xa5\x9a\x5b\x6f\x49\x92\xd9\x0a\ +\x22\xaf\xa9\x69\xd3\x34\xa8\x68\x98\xc1\x5a\x56\x56\x46\x02\x97\ +\x4c\xec\x49\xc7\xb4\x36\xa7\x8d\x36\xee\x2b\x05\xc5\xe5\x3c\xf9\ +\xce\x3c\xf6\x1d\x3a\x81\xe1\xfc\xf1\x7e\x9a\xb5\x8e\x08\x52\x0d\ +\x8d\x16\x39\x9a\xc6\x68\x5d\x4d\x39\x8d\x1d\x0d\x4a\x4f\xd7\xb3\ +\x22\xe3\x63\xae\x87\xd2\x23\xf8\xd9\x14\xd0\xd8\xfd\xa0\x95\x8f\ +\x5d\x6d\x2c\x90\xa5\xc4\xf4\xef\x74\x7c\x63\x09\xea\x8f\x8b\x8b\ +\x8b\xe3\xab\xf7\x5e\xa5\xa8\xa4\x9c\xd1\x17\xfe\x01\x87\xd3\xb5\ +\xda\x9e\x97\x3b\xec\xb4\xd1\xc8\x6d\x99\x39\xd3\x80\xa1\x67\x4f\ +\x9c\x10\x04\xe2\xad\x59\x3a\xa5\xc6\x32\x67\x52\x36\x37\x4c\xeb\ +\x4e\xf7\x8c\x36\x88\x0a\x2e\x63\x10\xac\x29\xd4\x2f\xb9\x92\x46\ +\x8e\x2e\x7d\x91\x80\x6a\x91\x87\xfb\x8e\x94\xf0\xd4\xc7\xbf\xf1\ +\xc9\x2f\x5b\xa9\xac\x71\x70\xba\x49\x4a\x62\x1c\x0f\xdf\x7a\x21\ +\xe3\x06\x77\xab\xd3\x76\x82\xdd\x11\xc3\x60\xc8\xd3\xaa\x92\xe3\ +\x9b\xf2\x15\x64\x23\x51\x35\x35\x5a\x35\xf7\x45\x64\xdc\x20\x75\ +\x27\xd3\x92\xd7\x8a\xfd\xd5\x6e\x85\xaa\x3d\xb5\xdf\xcd\x27\x12\ +\x56\xe6\xc9\x56\xd8\x8c\x1a\x54\x28\x43\xf5\x32\x90\xb4\x0f\x29\ +\x2b\x2b\xe7\xd3\xaf\xbf\xa7\x43\x7a\x2a\x17\x9f\x3b\x01\x60\xa8\ +\x17\xdb\x4e\x0f\x8d\xdc\x96\x99\xb3\x48\x14\x84\x71\xff\x7b\xe9\ +\x79\x32\x3b\x64\xb4\x4a\xed\x5b\x4f\x5b\x7e\x61\x25\x0b\x36\x1d\ +\x61\xc7\xe1\x62\x3f\x03\x59\xe8\x79\x3a\x90\xd5\x36\x8c\xe7\x15\ +\xa9\xff\x5f\x6c\xb4\x95\xf3\x47\x77\x63\x4c\xdf\x4e\x7e\x7d\x6f\ +\xcd\x1a\xb9\xaf\x7c\xb7\x68\x23\x1f\x7e\xbb\x02\x97\xcb\x85\xbc\ +\x91\x39\x60\xec\x54\x8b\x37\x1b\xcc\xb1\xa2\x27\x98\x06\xe5\x20\ +\x25\xf9\xbc\x29\xca\xd7\xd3\x76\x05\x44\x63\x37\xa2\x6e\xe7\x41\ +\xaf\x9d\x87\x10\x8d\xbe\x92\x01\x23\xb5\x4c\xe0\x11\x86\x6b\xa2\ +\x42\x72\x52\x22\x5f\xbc\xf3\x0a\x87\x8e\x9c\x60\xfc\xcc\xdb\x71\ +\xbb\xa5\xc5\xf6\xbc\xdc\xf1\xad\x5e\x23\xb7\x65\xe6\x8c\x07\xc6\ +\x4d\x19\x33\x9a\xce\x19\x19\x9c\xce\x92\x91\x1c\xc3\xef\x26\x64\ +\x73\xf3\xb9\xbd\xe8\xdd\x29\x11\x51\x90\x34\x52\x84\x6a\xb9\x7a\ +\xc9\x01\x9d\x56\x86\x3e\xf5\xc0\x93\xca\x6a\x07\xff\x9b\xbf\x95\ +\x27\x3f\x5e\xce\xfe\xa3\xc5\xa7\xdd\x3d\x3a\x6f\x7c\x7f\xee\xbb\ +\xfe\x3c\xda\xc4\x45\x7b\x34\xca\x20\xce\x57\x52\xc8\x1b\xa2\x90\ +\x86\x35\xd4\xc2\x23\x5a\x2a\xa3\x0e\xa5\x52\x06\x8e\x15\x52\x30\ +\x4b\xfa\xaf\x1b\x36\xad\x38\x94\xe3\xa4\x46\xb8\xb8\xbe\x31\xa8\ +\x7d\xb7\xb0\xa8\x98\x2f\xbe\xff\x91\xae\x99\x19\x9c\x3f\x75\x34\ +\xc0\x38\x2f\xc6\xb5\x6e\x8d\xdc\x96\x99\xf3\xa3\x20\x08\x67\x7d\ +\xf0\xcc\xd3\x9c\xd1\x25\xd3\x2c\x86\xe0\xd3\x76\xac\xb8\x8a\x05\ +\x1b\xf3\xd9\x72\xa0\xd0\x9f\x1b\x94\xe5\x29\x51\xd6\x9c\x0c\xf2\ +\xb8\xf2\x99\xe0\x82\xb5\x2c\x01\x81\x11\xbd\x33\xb8\x70\x5c\x0f\ +\xe2\x63\x6c\xa7\x85\x46\x5e\x2b\x27\x8a\xca\x78\xea\x9d\x1f\xd8\ +\x7f\xf8\x24\x6a\x85\x47\xd0\x0c\xbe\x01\xdd\x61\xfc\xaa\x1a\x22\ +\xca\xa1\xf2\xa8\x79\x69\xa8\x95\xb6\x0b\x25\x34\x1f\xff\xdd\x81\ +\x81\x50\x79\xe4\x3c\x64\x94\x3c\x48\xd0\x48\x69\x61\x64\xe7\x89\ +\x5a\x9a\x02\x79\xed\x5e\xd1\x2e\x05\xb4\x4b\x4d\xe1\xd3\xb7\x5f\ +\x62\xd7\xbe\xc3\x4c\x9d\xf5\x27\x24\x49\x9a\x67\xcf\xcb\x0d\x0b\ +\xc5\xd2\x2c\x35\x72\x5b\x66\xce\x30\xe0\xac\xb1\x43\x87\x70\x46\ +\x97\xcc\xf0\xaf\x4a\x2d\x1c\x34\xda\x25\x46\x73\xd9\xf8\x6c\x6e\ +\xbb\xa0\x2f\xfd\xb3\x92\x11\x05\x41\x3e\x94\xdb\x27\x38\x85\x00\ +\xed\x5d\xb1\xa0\x81\x2f\x4f\xe9\xc3\xe3\x2a\x27\xbd\x0e\x38\xb7\ +\xb7\x6d\xc5\xd6\xc3\x3c\xfc\xce\x42\x16\xac\xdd\xef\x5f\x4f\xb4\ +\x15\x83\x38\x40\x5a\x52\x3c\x8f\xdc\x76\x31\x63\x06\x75\x33\x42\ +\xa3\xfa\xef\xdc\x75\xf3\xb1\x8d\xa0\x45\x86\xa0\x88\xe9\x2b\x42\ +\x11\x10\x24\xa5\x2b\xab\x23\x41\x1e\x24\x68\x04\x03\x29\x5a\x14\ +\x7c\x9e\x63\xed\x34\x05\x18\x48\x53\xe0\x6f\x33\x50\xcb\xba\x78\ +\xfc\x64\x01\xdf\xce\xfb\x85\x5e\xdd\x32\x99\x3a\x6e\x08\xc0\x59\ +\x5e\xac\x6b\x32\x69\x6a\x6a\xe5\x3e\x80\xab\x2f\x99\xd9\x62\x27\ +\x75\x53\x80\x53\xdb\x84\x68\x2e\x1d\x97\xcd\xed\x17\xf6\xa3\x7f\ +\x56\x2a\xa2\x28\x68\xa4\x58\x55\xca\x8f\x61\x24\x6d\xa8\x24\x3b\ +\x11\xfc\x66\x98\x57\x2a\x6b\x9c\x7c\xb6\x60\x1b\x8f\x7f\xb0\x94\ +\x3d\x87\x0a\x4f\x1b\x9a\x25\xc2\x6a\xe1\xf6\x2b\xa6\x32\xfb\xfc\ +\xd1\x58\x2c\xa2\x6c\x7a\x57\xc5\x15\x35\xc8\x1d\x51\xee\x7e\xe8\ +\xa8\x8f\xa9\x2b\x35\x2b\x75\x05\x14\x54\x50\x52\xd9\x65\x51\x73\ +\x7e\x69\x2f\x1c\x9a\x2e\xb1\x52\x88\x54\x88\xce\x7c\x45\x41\xbb\ +\x85\xb0\xd0\x34\xca\x0b\xe4\x87\xb9\x5f\xe1\x76\xbb\xb9\xe3\xda\ +\x99\x7e\x58\xd7\xea\xa8\x15\x5b\x66\x4e\x3f\x60\xc3\xb0\xfe\xfd\ +\x84\x17\x1f\xfa\xc7\x69\x4d\xa1\x18\x6d\x2b\x28\xab\xe6\xd7\x8d\ +\x87\xd9\xb4\xf7\x24\x2e\x49\x52\x31\x74\xea\xdc\x6e\xa2\x27\x20\ +\x83\xe0\xed\xad\x5c\x5e\x11\x01\x86\x76\xcf\xe0\xe2\x49\xbd\x48\ +\x88\x8d\x6c\xb5\x1a\x79\xa0\x6c\xda\x79\x88\xe7\x3e\x98\x47\x79\ +\x65\xb5\x7e\x6a\x22\x88\xd2\xf2\xa7\x18\x74\x51\x0b\xb2\xae\x79\ +\xa1\x14\x93\x40\xde\x50\xaa\x40\xd7\xf9\x83\xa1\x8e\x62\x12\x86\ +\x6b\x7e\xea\x29\x26\x81\x6e\xa3\xaf\xd4\x00\xa3\x2f\x32\xb5\x54\ +\x35\x8d\xdc\x48\xdc\x77\xe7\x2d\x9c\x7b\xe6\x24\x2e\xbd\xf9\x1f\ +\x2c\x59\xb9\x49\x02\x06\xd8\xf3\x72\x37\xb5\x36\x6a\xe5\x6f\x80\ +\x50\xab\x8d\x9b\xa2\x5f\x52\xe2\xa3\xb8\x64\x6c\x36\x7f\xbc\x78\ +\x20\x83\xcf\x48\xc3\xe2\xcd\x2d\x1e\xe8\xea\x25\x57\x1c\x52\x51\ +\xe3\x0a\xd4\xdc\x83\xca\x5f\x69\x55\x91\xf7\xe6\x15\x91\x60\xf5\ +\x8e\x7c\x1e\x7e\x7b\x01\x3f\xad\xda\x8b\xfb\x34\x29\x35\xd7\xaf\ +\x7b\x47\x1e\xbb\x73\x26\x9d\xdb\xa7\x10\x76\xe3\xa0\x6e\x2a\x44\ +\x52\xa4\x71\x42\xef\x8b\x0e\xa7\x3f\xd9\x5c\x42\x52\xa8\xa7\x6e\ +\xa0\x28\x1b\x7d\xb5\xb3\x1a\x2a\x65\x6c\x0c\xde\xb6\xfa\x19\xb9\ +\x15\xa8\xa3\x0f\x73\xbf\x44\x92\xa4\x5a\xad\x5c\xf0\x62\x5e\xeb\ +\xd1\xc8\x6d\x99\x39\xdd\x81\x6d\xfd\x7a\xf4\x10\xdf\x7c\xe2\x9f\ +\xa6\xa6\xdd\xc0\xb6\xe2\x8a\x1a\x7e\x5d\x7f\x88\x75\x7b\x4e\xe0\ +\x74\xbb\x3d\xef\x4b\x3a\xc3\xc3\xfd\x14\x72\xad\x2c\x7e\x0a\x2e\ +\x5b\x0a\x99\xf9\x24\x09\xd2\x93\xe3\xb8\x64\x72\x1f\x7a\x66\xa6\ +\xb6\x6a\x8d\xbc\x56\xec\x0e\x27\xaf\x7c\x3c\x9f\x15\x1b\x76\xcb\ +\x68\xa1\x01\x63\xaf\xa5\x85\x4a\x92\x82\xd6\x17\xa8\x85\x06\x6a\ +\xb9\x1a\x55\xe5\xd1\x5b\x56\x50\x86\x36\xd1\x9d\x41\x11\x1d\x86\ +\x55\xb9\x7c\xec\xe8\x08\x2c\x32\xb0\xf3\x44\xdb\xd0\x59\xff\xfd\ +\xf5\x8f\x8f\xdf\x9c\x50\xd4\xce\xe1\xc1\x7b\xee\x64\xca\xf8\x31\ +\x4c\xbf\xfa\x6f\xac\xd9\xb8\xc3\x0d\xf4\xb2\xe7\xe5\xee\x6c\x2d\ +\x1a\xf9\xbd\x80\x78\xf5\x25\x39\xa6\x7a\x1d\x06\x49\x8c\x8d\x64\ +\xc6\x98\x6c\xfe\x3c\x73\x10\x23\x7a\xb4\xc3\x66\x09\x05\xe1\xb4\ +\xb5\x48\x6d\x2d\x2c\xf8\xb8\xa3\x85\x65\xbc\xf0\xd9\x72\xde\xf8\ +\x7a\x35\x45\xa5\x55\xad\xfe\x5e\xd8\x22\xac\xdc\x31\x67\x1a\x97\ +\x9f\x37\x0a\xd1\x22\xa2\x37\x9b\x9e\x96\x06\xad\xe6\x3a\x28\x67\ +\xfc\xab\x77\x21\xd5\xc8\x22\x88\xbe\x00\x1f\x39\x40\xd1\x0e\xa3\ +\x0f\xce\x36\xa8\x1a\x38\xa5\x90\xa6\x40\x08\xdc\x65\x1a\xc9\x1d\ +\x8e\x46\x61\x65\xaf\x46\x60\x24\x34\x3f\x28\x4d\x80\x9c\x76\xee\ +\x1d\xfb\x0f\x3e\xf9\x02\x80\x3b\xae\xcd\xa9\xc5\xd7\x7b\x5b\x85\ +\x46\x6e\xcb\xcc\xc9\x04\x76\x75\xcf\xca\x8a\x78\xff\x99\xa7\x0c\ +\x6b\x5d\xcd\x2d\xf0\xa4\x39\xf6\xb9\xb4\xc2\xce\x82\x0d\x07\x59\ +\xbd\xe7\x38\x4e\x87\x4b\x83\xd3\x54\xd0\x52\x90\xd3\x10\x65\x8e\ +\xd7\x55\x6e\xcc\x7b\xef\x6d\x22\x67\x0d\x3f\x83\xb3\x86\x9f\x51\ +\x67\x1c\x6c\x4d\xda\x78\xa0\x6c\xd8\x71\x80\x17\x3e\x9c\x47\x45\ +\x45\xb5\x46\xfe\x78\xf4\xe7\x04\x97\xb5\x5d\xe8\x28\x8f\x16\x8e\ +\x2a\x3d\x92\xc2\xd2\xad\x3b\xdb\x26\xfa\xb2\x7b\xa2\x1e\x9a\x6f\ +\xac\x52\x96\xd1\x0a\x43\x72\xb6\x07\xf9\xeb\xca\x8e\x3d\x04\x69\ +\xf7\x8f\xfd\xfd\x6e\xc6\x8e\x18\xc6\x99\xbf\xfb\x33\x5b\x76\xec\ +\x73\x00\xdd\xec\x79\xb9\x79\x2d\x5d\x23\xbf\x07\x88\xb8\x6a\xe6\ +\xc5\x2d\x7e\xb2\x36\xd7\x3e\xb7\x89\xb5\x71\xc1\xe8\x6c\xfe\x32\ +\x73\x08\xa3\x7b\xb7\x27\xc2\x2a\x1a\xe4\x26\x1b\xa3\x10\x34\xd4\ +\xd8\x5d\x7c\xb3\x64\x3b\x0f\xbd\xf5\x2b\x9b\xf7\x1c\x6b\xf5\xda\ +\xf9\x80\x1e\x9d\xf9\xe7\x1d\x97\xd0\x29\x3d\x45\xa3\x82\x8e\x5c\ +\x88\xbc\x42\xc1\x61\x82\x73\x6c\xa3\xa5\x71\xfb\x15\x82\x16\x74\ +\x14\x82\x16\x34\x34\xf6\xe0\x1b\xad\xa6\xf5\x12\x18\xa0\x16\x98\ +\x68\x2b\xa0\x12\x10\x01\xfb\x0b\x50\xf0\x06\xc2\xa8\x76\x2e\xe3\ +\xbd\xa5\x9a\x94\x4b\x8e\x03\x0f\xee\x8c\x6c\x52\x30\x9f\x8f\xbc\ +\xfb\x71\x2e\x00\xb7\x5f\x73\x31\x40\x84\x17\x03\x5b\xae\x46\x6e\ +\xcb\xcc\x69\x0f\xec\xcb\xec\x90\x11\xf9\xf1\x8b\xcf\x23\xb6\x92\ +\x7c\xe3\xcd\xbd\xad\xbc\xca\xc1\xc2\x0d\x07\x59\xb9\xe3\x28\x76\ +\xa7\x4b\x57\x80\x84\xb2\xa5\x5f\x39\x20\x43\x5e\x63\x47\x31\xe1\ +\x52\xdf\xec\x74\x2e\x9d\xda\x97\xd4\x84\xd8\x56\xa9\x91\xd7\x2f\ +\x60\x4e\x5e\xfe\x68\x1e\x2b\x37\xed\x35\x16\x9a\x1f\x34\xdf\xf4\ +\x54\xc2\x91\x02\x9c\x4e\xb4\xee\x5d\x70\x7e\x7c\x63\x55\x7a\xa4\ +\x20\xce\x4d\x3b\x05\xb3\x96\x76\x8f\xea\xf5\xe4\x2b\x30\xa1\xb1\ +\x9b\xd0\xb0\xf3\xa0\xd1\x5f\x55\xbb\x92\xd2\xbd\xab\xbf\xde\x53\ +\x0f\xde\xc7\xd0\x81\x03\x98\x30\xf3\x76\xf6\xe4\xe5\xd7\x00\x59\ +\xf6\xbc\xdc\x23\x2d\x55\x23\xbf\x1a\x88\x9c\x33\x63\x86\x1f\x88\ +\x9b\xd2\xb8\x12\x17\x1d\xc1\x79\x23\xbb\x72\xf7\x65\xc3\x18\xd7\ +\xaf\x03\x91\x11\x16\x75\x8b\x3b\x06\xaa\xd4\xf8\xf0\xb1\x7e\xd3\ +\x32\xc8\x15\x26\xd8\x1f\x7d\xf3\x9e\x63\x3c\xfc\xd6\xaf\x7c\xbd\ +\x68\x1b\x0e\xa7\xab\xd5\x8e\x7f\xa4\xcd\xca\x1f\xaf\x3c\x97\x4b\ +\xcf\x1e\x81\x28\x6a\x78\x4b\x04\xa5\x7d\xf5\x18\xae\x95\x03\x6c\ +\x08\xa8\x84\x23\x68\x73\xbe\x4a\x49\xb9\x82\xb4\x58\x3d\x35\x3f\ +\x03\xaa\x10\xa1\xc5\x89\xa3\xa2\xdd\x37\x60\x83\x28\xf7\x41\x29\ +\xa4\x93\x68\x5f\x5c\x25\x60\x4b\xc9\x3f\xfe\xdd\x8f\x73\x11\x45\ +\x81\x5b\xae\x9c\x01\x10\xe9\xc5\xc2\x16\xab\x91\x6f\x8b\x8e\x8a\ +\xec\x39\xf7\x9d\xff\x10\x1d\xd5\xf4\x3e\xc6\x66\x5b\x6d\xbe\x14\ +\x27\x0b\x37\x1e\x60\xc5\xb6\x23\xd4\xd8\x1d\x0a\x5a\x98\x3a\x67\ +\xab\x9c\x84\x3f\x40\xe3\x93\xd5\xd8\x83\xd3\x06\x24\x25\xc4\x70\ +\xc9\xa4\xbe\x0c\xea\x19\x7a\xd2\xb4\x96\x20\xeb\xb6\xed\xe7\xe5\ +\xff\xfe\x48\x45\x95\x1d\x7d\x1e\x12\xe8\x2b\x26\x81\x72\x31\x09\ +\xc3\xa1\xf9\xe8\x09\xcd\x47\xf1\x59\x41\xd5\xff\x9d\x10\x8a\x49\ +\x10\xcc\x89\x2b\x55\x64\x0a\xd2\xd2\x8d\x84\xe6\xfb\x3e\xbd\xfa\ +\x53\x25\xc8\x8f\x45\xb0\x27\xd1\x6b\xff\x7e\x9c\xce\x1d\x3b\xd2\ +\xff\xcc\xab\xa9\xac\xaa\xd9\x6e\xcf\xcb\xed\xd5\xe2\x34\x72\x6f\ +\x88\x6a\xcf\x49\xa3\x46\x05\x81\xb8\x29\x4d\x2b\x31\x51\x56\xce\ +\x19\xde\x95\xbf\x5e\x3e\x82\x49\x83\x32\x89\x8a\xb4\xaa\x54\x4a\ +\x97\x54\x78\x53\x39\xad\x4f\x0a\x08\xd3\x0e\x4c\x2b\xe5\x79\xbc\ +\x03\x79\xd9\xa2\xd2\x4a\x5e\xff\xea\x37\x9e\xff\x78\x29\xc7\x0a\ +\xcb\x5a\xed\xd8\x0f\xea\xd5\x85\x47\xee\xb8\x8c\x8c\xb6\x89\xc1\ +\x3a\x9c\x4e\xdd\x48\x8f\xb7\x50\xd8\x45\x0a\xd1\x6e\xa2\xcb\x8f\ +\x5d\xff\xb9\x25\x9d\x97\x0d\xf5\x3b\x19\x2e\xca\x22\x67\xab\x90\ +\xe3\xcd\x05\x81\xb9\x3f\xff\x4a\x4c\x74\x24\xe7\x4d\x19\x05\xd0\ +\xb3\x31\xc3\xf6\x1b\x93\x5a\x99\x03\x70\xee\xa4\x89\xa6\x56\xdc\ +\x4c\xda\xa2\x23\xad\x9c\x3d\x2c\x8b\x7b\x67\x8d\x64\xca\xe0\x4c\ +\xa2\x23\xad\x9a\xdb\x54\xf5\x6c\x8c\x4a\xf9\xb8\x83\x0d\x6a\xc1\ +\x1b\x41\xcf\x6b\x5b\xde\x71\x1e\x7d\xeb\x17\x72\x7f\xd9\x84\xdd\ +\xe1\x6a\x55\xda\x78\xad\xb4\x4b\x4d\xe4\x91\x3b\x2f\x67\x48\xdf\ +\xae\xca\xc5\x92\x05\x41\xbb\xd2\x90\xae\xca\x3b\x01\x0d\xa8\x51\ +\x1e\x92\x72\x71\x67\x55\x43\xa2\x4a\x1a\x07\x39\xaa\x48\x89\x7a\ +\xc1\xc0\x18\xf8\x9a\x45\x55\x0c\x9d\x04\x1a\x2a\x11\x34\x68\x1f\ +\x63\xf9\xd8\x8d\x2c\x74\x0b\x97\x2d\xc7\xe5\x76\x73\xc9\x79\x13\ +\xfd\x30\xb1\xc5\x50\x2b\xb6\xcc\x9c\x08\x20\xbf\x6d\x4a\x4a\xea\ +\x57\x6f\xbe\x16\xc4\x8f\x9b\x20\xdb\x3c\xda\x6a\x1c\x2e\x16\x6f\ +\x3c\xc0\xd2\xcd\x87\xa9\xa8\xb6\xeb\xcb\xe2\x47\xe0\xf6\x5c\x9f\ +\xa1\x53\x4f\x2e\xe8\xc4\xb8\x68\x2e\x9e\xdc\x97\xe1\x7d\x3a\xb5\ +\x2a\x20\xf7\x95\xcf\xe7\xfd\x46\xee\x4f\x2b\x91\x24\xb7\x46\x68\ +\x3e\x8a\x95\x69\xd4\x5d\x0f\x83\xa9\x10\x4d\x9a\x46\x92\x3c\x20\ +\xa5\xe5\x2a\xa9\x2b\x34\x1f\x59\x7a\x47\x36\x45\x84\xa6\xa1\xd3\ +\x60\xc6\x46\x19\xca\xc7\x68\x68\xbe\x14\x90\x09\x51\xcb\x48\x8d\ +\xa2\x5b\xa8\xe7\xf3\x0f\xdf\xf7\x17\x46\x0f\x1b\xca\xb0\xf3\x6f\ +\xe4\xc8\xb1\x82\x93\x40\x86\x3d\x2f\x57\x77\xb5\x96\x53\x4d\xad\ +\x9c\x0d\xa4\x9e\x3d\x61\xbc\x69\xe4\x6c\xc6\x12\x19\x61\x61\xea\ +\x90\x2c\xfe\x76\xc5\x28\xce\x1e\xde\x95\xf8\xe8\x88\x3a\x2d\x45\ +\xb1\x12\x8d\x5c\xd2\xa7\x50\x35\xf6\x00\x02\xa6\xb8\xbc\x8a\xb7\ +\xbf\x5e\xc5\xd3\x1f\x2c\xe4\xf0\x89\x92\x56\x39\xe6\x17\x9f\x35\ +\x82\x3f\x5d\x75\x1e\xb1\xd1\x91\xfe\xfb\x93\xa0\xcc\x7c\x6a\x1a\ +\xaa\x02\xfd\x85\x32\x0d\xe6\x7b\x83\xe4\x6a\x7e\x06\x40\x97\xfc\ +\x3e\x2d\xe4\xd0\xfc\xc6\x48\x53\xd0\x78\x79\xdc\xd5\xdf\x37\xc6\ +\x87\xfd\xf8\xcb\x42\x44\x51\x20\xe7\x9c\xf1\x00\xa9\x5e\x6c\x6c\ +\x31\xd4\xca\xef\x95\x68\x15\x53\x9a\x9f\xd8\x22\x2c\x4c\x19\xdc\ +\x85\x7b\x67\x8f\xe1\x9c\x11\xd9\xc4\x45\xdb\x54\x1e\x4e\x35\x9e\ +\x51\xc9\x95\x4e\x8b\x87\xf4\x6f\xd9\x75\xe0\x24\x8f\xbe\x35\x9f\ +\x8f\x7f\x5c\x4f\x55\x2b\x2c\x35\x37\xb8\x4f\x57\x1e\xba\xfd\x32\ +\x3a\xb4\x4b\xf6\x49\xa1\x2a\x04\x13\x4f\x4a\x19\x10\xfd\xa2\x14\ +\x03\xdd\x9c\xe5\xe2\x3d\x03\xfc\xc9\x51\xf6\x86\xd1\x4c\x53\x0b\ +\x1a\x14\x84\x46\x74\xa7\x5c\x01\x6a\x02\x23\x24\x0d\xf8\x8a\xcb\ +\x2e\x64\x6a\xa5\x0e\x75\xfa\x93\x0b\xf2\xfe\xe4\x6a\xfd\x82\xe0\ +\x58\x80\x55\x6b\xd7\x53\x5e\x51\xc9\x25\xe7\x4f\xf4\xc3\xc6\x66\ +\x0f\xe4\xb6\xcc\x9c\x44\x60\x7a\xaf\x33\xb2\xe9\xd2\xb1\xa3\x89\ +\x92\x2d\x48\x22\xac\x22\x93\x06\x75\xe1\xde\xd9\x63\x99\x3e\xba\ +\x1b\x09\xb1\x91\xde\xba\x91\xfe\xea\xb3\x14\xa4\xad\x4b\x0a\x55\ +\xe3\x95\xaa\xa6\xab\xa4\x6a\xf5\x82\x93\x5b\x92\x58\xb0\x66\x37\ +\x0f\xbc\xfa\x03\x4b\x37\xec\x6f\x75\x63\xdd\x3e\x2d\x89\x87\xef\ +\xb8\x9c\x41\xbd\xb3\xd4\xd3\x88\x07\x2e\x95\xa1\xa6\x7f\x0d\x55\ +\x7b\x95\x8c\x7d\x5c\xbb\x2f\x61\xac\xea\x23\xf9\xd3\x6f\x82\x6f\ +\xe2\x38\x02\x83\x77\x50\x70\xd3\x54\xa9\x29\x8a\x0e\xd7\x51\xd5\ +\x85\x43\xc0\xee\x70\x30\x7f\xd1\x12\xba\x65\x75\x64\x40\xef\x6c\ +\x80\xe9\x5e\x8c\x6c\xf6\x1a\xf9\xa5\x40\xe4\xb9\x13\x5b\xa6\x36\ +\xde\x12\x99\xa0\x70\x1b\x08\x23\x2c\x22\x13\x06\x66\x72\xef\xec\ +\xb1\x5c\x30\xa6\xbb\x17\xd0\x03\x77\xe8\x7a\x0b\x04\x48\x8a\x85\ +\x85\xe5\x33\xca\xf9\x4f\x9a\xb2\xca\x1a\xde\xfb\x6e\x35\x4f\xbc\ +\x33\x9f\xbc\x23\x45\xad\x0a\xcc\xa3\x22\x6d\xfc\xf9\x9a\x0b\xb8\ +\xf8\xac\x11\x58\xc4\x80\xb1\xf4\xf3\xff\x96\xd3\xd2\x51\xf4\xd3\ +\xae\xd7\x6e\x83\x17\xd8\x60\xc3\xa4\x9c\x61\x15\x1d\x1a\xb7\xa4\ +\x4b\x3b\xf7\x8d\x2b\x40\x29\xe7\x8b\x42\x84\xa4\x7c\x51\x94\x40\ +\xe0\xf5\x52\x81\x61\xa7\x60\x08\xdb\x82\x33\x7f\xd1\x12\x80\x5a\ +\xa3\x67\xa4\x17\x23\xc3\x8b\x01\xfa\xe9\x2a\x7d\x9d\xb6\x65\xe6\ +\x2c\xb6\x5a\x2c\x63\xbf\x7d\xfb\x4d\x92\x12\xda\x84\x0c\x3a\x66\ +\x5b\xf3\x69\x73\xb9\xdc\x2c\xdf\x7a\x88\x85\x6b\xf7\x53\x5c\x5e\ +\x15\x50\x84\x17\x85\x5c\xd2\x1a\xa5\xe9\x14\x32\x28\xaa\xe5\xe9\ +\x10\x05\x81\xd1\x03\xba\x90\x33\xa5\x3f\x31\x51\xb6\x56\x05\xea\ +\xab\x37\xef\xe1\xd5\x8f\x7f\xa4\xb2\xaa\xa6\x6e\x2c\x04\x50\x8f\ +\xe8\x24\x70\xac\x1a\x90\x57\x04\xad\x7b\xa7\x60\xd4\x96\xcd\x09\ +\x8e\xae\xfc\xe8\xc1\xdb\x0c\x29\xb8\xc4\xa1\xaa\xa1\xd3\x67\x2c\ +\x64\x33\x28\xfa\x7f\x2f\xd5\x58\x09\x3f\x9b\xa5\x82\xc1\x3e\x60\ +\x97\xa2\xab\xcc\x9f\x24\x21\x88\x22\xef\xbf\xf2\x1c\x91\x91\x51\ +\x0c\x9a\x76\x1d\x0e\xa7\x6b\x89\x3d\x2f\x77\x9c\x3e\x25\xed\x14\ +\x18\x3b\x6d\x99\x39\x59\xc0\x98\x51\x43\x06\x93\xd8\xa6\x8d\xc9\ +\x55\xb4\x12\xb1\x58\x44\xc6\xf5\xef\xcc\xbd\xbf\x1f\xc7\x8c\x09\ +\xbd\x49\x8e\x8f\x56\xf6\x43\x0f\xdc\xeb\xfa\xa5\xd4\x93\xe4\xf3\ +\x84\x04\xe6\xd9\xf0\xd1\xce\x7c\x53\x8d\x48\xb8\x59\xb2\x7e\x2f\ +\x7f\x7f\xf9\x7b\x16\xac\xde\x8d\xd4\x8a\x52\x9f\x0f\xed\x9b\xcd\ +\x43\xb7\x5f\x4e\xfb\xb4\xa4\xba\x5d\x4c\x78\x35\xc4\x60\x1f\x6e\ +\xa9\x81\x86\xbc\x70\x6b\xbd\x52\x38\x28\x18\x29\xfc\xe3\xd4\xd0\ +\xb1\x97\xdc\x6e\x7e\xf8\x65\x01\xc9\x89\x6d\x98\x34\x66\x30\xc0\ +\x18\x2f\x56\x36\x5b\x6a\x65\x0e\x20\x9c\x3b\x71\x22\x76\xa7\x9b\ +\xf9\xdb\x4f\xb0\xf7\x44\x25\xae\xd3\xa4\xd8\x40\xab\x07\x74\x51\ +\x60\x4c\xbf\x4e\xdc\x3b\x67\x1c\x33\x27\xf6\x21\xb9\x4d\xb4\xa6\ +\xe1\x52\x16\x6c\x05\xb9\xed\xbd\xa4\x9d\xf0\xc8\xbb\xad\xae\xa8\ +\xb6\xf3\xf1\xbc\xb5\x3c\xf6\xd6\x3c\xf6\x1e\x2a\x68\x35\xe3\x9b\ +\xd1\x36\x99\x47\xee\xfc\x1d\x03\x7a\x76\xd5\xf6\x2b\xf7\x4d\x65\ +\x2b\x09\x9a\x21\xfd\x6a\xc1\x5d\xb5\x8b\x29\x28\xf9\x84\x23\x63\ +\x58\x15\x82\x38\xe6\xc0\x7a\xb2\xfe\x34\x9c\xce\x14\xb4\x8a\x5e\ +\x38\x72\x05\x4f\x34\x12\x7d\x05\x79\xeb\xa0\xe1\xc7\xae\xe5\xbb\ +\xaf\x94\x84\x4c\xd0\x48\x3c\x06\x0b\x96\x2c\xf3\xa5\x57\x04\xc2\ +\xec\x53\x1e\x56\x6a\xc5\x96\x99\xb3\x2b\x3e\x2e\xee\x8c\xef\xdf\ +\x7e\x93\xfd\x45\x76\x16\xef\x3e\xe9\xe1\x5c\x45\x81\x8c\xa4\x28\ +\xb2\x52\xe3\xc8\x4a\x89\xc6\x22\x9a\x7e\xe5\xad\xa1\x0d\x24\x56\ +\x6e\x3d\xcc\xfc\x35\x7b\x28\x28\xa9\xd4\xdc\x7a\x07\xe7\xe1\x0e\ +\x0e\xe9\x0f\xf6\x47\x47\xa5\x20\x81\xe7\xe7\x88\xbe\x5d\x98\x39\ +\x75\x20\xf1\xb1\xad\x27\x82\xf8\x93\xb9\x4b\xf9\x76\xfe\x4a\x5c\ +\x75\xdb\xfb\x80\x64\x51\xaa\x89\xb7\x7c\x7d\xba\xf5\x84\x9e\xa3\ +\xe8\xdb\x4f\x28\xc5\x2b\xea\xca\x00\x0a\x32\xf7\x4e\x85\x92\x93\ +\x2d\x26\x81\x3f\x15\x82\x81\x67\x45\x89\xf6\x40\x85\x86\x52\xa0\ +\x95\x14\x53\x5a\x04\x8c\x89\x5a\xe2\xad\xe7\x1e\x7b\x88\x6e\x59\ +\x59\x0c\x98\x76\x1d\x25\xa5\xe5\xbb\xed\x79\xb9\xdd\x9a\x1d\xb5\ +\x62\xcb\xcc\x19\x05\x9c\x71\xe6\x98\x31\x44\x44\x44\x70\xa0\xa8\ +\xb2\xee\x3d\x87\x5b\x22\xaf\xa0\x8a\x05\x3b\x4e\xf0\xc1\x8a\x83\ +\xfc\xbc\xed\x38\x7b\x4c\x4d\xbd\xc5\x8b\x20\x08\x8c\xe8\xd3\x91\ +\x7b\xe7\x8c\xe7\xf2\xa9\xfd\x49\x4b\x8a\x55\x70\x6f\x43\x31\x22\ +\xb1\x4e\x9d\x90\x2b\x5b\xa7\x96\xbc\x4b\xaa\x4f\xdc\xf5\xdb\xa6\ +\xfd\xfc\xdf\x2b\xdf\x32\xff\xb7\x1d\x0d\xae\x2d\xdb\x5c\xe4\xd2\ +\x73\xc6\x70\xeb\xef\xcf\x27\x3a\xca\x16\x10\x41\x49\xb0\x6f\xbf\ +\xa2\x3f\x39\x0a\xa9\x59\x05\x75\x03\x69\xdd\xbd\xf1\xbf\x98\x6e\ +\xed\x35\x30\x0a\xb2\x51\x69\x9a\xd0\xfc\xd8\x0d\x87\xe6\x87\x81\ +\x82\xf9\x71\xfe\x02\x6c\xb6\x08\x2e\x3c\x6b\x0c\xc0\x19\x5e\xcc\ +\x6c\x76\xd4\xca\x1c\x80\x73\x26\x4d\xc0\x2d\x49\x1c\x2d\xa9\x92\ +\xdd\x16\x3a\x25\x89\xbc\xc2\x2a\x16\xec\x3c\xc1\x87\xbf\x1d\xe4\ +\xa7\x6d\xc7\xd9\x7d\xa2\x12\x67\x23\x82\x7a\x4b\x4c\x95\xda\x92\ +\x8a\x30\x08\x82\xc0\xb0\x5e\x1d\xb8\x67\xf6\x78\x7e\x77\xd6\x00\ +\xda\x25\xc7\x1a\xe0\x22\x8d\xce\x59\xf9\xe3\xaa\xaa\x1d\x7c\xfa\ +\xd3\x3a\x1e\x7e\xfd\x07\x76\xe6\x1d\x6f\x15\x60\x3e\xbc\x7f\x37\ +\xfe\x71\xeb\xe5\xa4\xa7\x24\xca\x86\xb3\xcb\x07\x6d\x11\x50\x81\ +\x47\x01\xdc\xb5\xb2\x1c\x2a\x84\xc8\x07\xd1\x0d\x82\x9e\x73\x12\ +\x9c\x87\x5d\xc3\xfb\x86\x00\x2a\x85\x40\x5b\x8a\x6c\x0e\x74\x5f\ +\x07\x2a\x41\x65\xa1\xd3\x59\xc5\xc8\x90\x47\x8f\x36\xdd\xb2\x6c\ +\xe5\x2a\x9c\x2e\x17\x97\x9c\x37\xc1\x0f\x33\x9b\x0d\xb5\x62\xcb\ +\xcc\xb1\x01\x47\x3a\xb5\x6f\x9f\xfc\xe9\xcb\x2f\x72\xb0\xb8\x8a\ +\xf9\xdb\x8c\x4d\x26\xab\x28\xd0\x21\x31\x9a\x2e\x69\xb1\x64\xa5\ +\x44\x63\xb5\x98\xf4\x4b\x4b\x6d\x93\x24\x58\xb7\xf3\x30\x3f\xaf\ +\xda\xcd\xd1\x82\x72\x82\x72\x5d\x2b\x66\xba\x0b\xc8\x44\x27\x5b\ +\x79\x5e\x3b\x15\x80\x20\xc0\xe0\x5e\x9d\xb9\xf4\xcc\xc1\x24\xc4\ +\x47\xb7\x78\x40\xaf\xac\xaa\xe1\xc5\xf7\xbf\x63\xe3\xce\xfd\x28\ +\x7b\x69\xa8\x65\xe6\x93\xa1\x26\xfc\x58\x04\x7d\x69\x15\x50\xc9\ +\xe3\xad\x48\xd3\x48\x6a\xf9\xd1\x69\x40\xc6\x46\x50\xf3\x58\x51\ +\xab\x30\x14\x64\xcb\x91\xeb\xaf\x2f\x38\xea\xa1\x95\x02\x32\x28\ +\x12\xd8\x5f\xef\x67\xef\xff\xf3\x9d\x8c\x1f\x35\x82\x31\x33\x6e\ +\x65\xdf\x81\x23\x85\x40\x7b\x7b\x5e\xae\xbd\xb9\x50\x2b\xe3\x80\ +\xe4\xb3\xc6\x8d\x05\xe0\x40\x41\xa5\xe1\x13\x38\xdd\x12\x79\x85\ +\x95\x2c\xf4\xd2\x2f\x3f\x6d\x3d\xc1\xee\xe3\x15\x38\x5d\x26\xfd\ +\xd2\xf2\x28\x17\x18\xdc\xa3\x03\x77\xcf\x9e\xc0\x95\xe7\x0e\x26\ +\x23\xb5\x4d\x1d\x15\x22\x6f\xbc\xaa\xf5\x50\xf1\xf7\x7b\xa6\xce\ +\x90\x27\xa0\x94\x77\x4b\x29\xdc\x7c\xed\xd6\x03\x3c\xf0\xea\xb7\ +\xfc\xb0\x74\x0b\xee\x16\x4e\xe1\xc5\x44\x47\xf2\x97\xeb\x67\x70\ +\xfe\xa4\x61\x88\x7e\x69\x0e\x82\xfd\xaa\x95\xab\x08\xa9\x07\xbb\ +\x04\xe5\x8f\x57\x32\x1c\x06\x80\x8c\x6e\x3f\x76\x55\xad\x18\x03\ +\x89\xbe\x64\x76\x1c\x8a\x3b\x04\x7f\x8d\xdd\xcf\x88\x1b\xe4\xbb\ +\x2e\xb3\x2b\x08\x85\xde\x91\xd4\x29\x98\x79\xf3\x17\x00\x30\x63\ +\xda\x58\x80\x64\x2f\x76\x36\x58\xac\x61\x7a\xd6\x26\x01\x0c\x1f\ +\x38\x00\x80\x7c\x2f\xad\x12\xaa\xb8\x24\x89\x03\x85\x95\x1c\x28\ +\xac\x64\xa9\x28\x92\x91\x18\x45\xd7\xb4\x18\xba\xa4\xc4\x04\x69\ +\xea\xa6\x34\x6f\x19\xd8\xbd\x3d\x03\xbb\xb7\x67\xc3\xae\x23\xfc\ +\xf4\xdb\x2e\xbf\x1c\x2a\x92\x12\xcf\x18\xa6\x02\x01\xd5\x35\x0e\ +\xbe\xfc\x75\x3d\xcb\x37\xec\xe5\xb2\x69\x43\xe9\x9d\xdd\xbe\x05\ +\x2f\x8e\x02\x97\x9f\x37\x8e\x2e\x1d\xdb\xf2\xe6\xc7\x3f\x52\xed\ +\xb0\xeb\x20\xaa\x14\x32\x5a\x7a\x7c\x39\xeb\x1b\xfd\x26\xab\x14\ +\xbc\x62\x4a\x72\x7b\xf7\x80\x1d\x40\xd0\x39\x34\xce\x29\xf7\x96\ +\x20\x77\x6c\xe0\x39\x03\xbf\x93\xcf\x67\x05\xb5\xeb\x0a\xfa\x38\ +\x74\x21\xf8\x3b\x7b\x7e\xad\xbf\xbe\xff\x55\x04\x85\x1e\x4b\xb2\ +\xd7\x5d\xbf\x65\x0b\x4e\xa7\x93\xf1\x23\x07\xf0\xef\x37\x3e\xad\ +\xc5\xce\xf9\xcd\x05\xc8\x27\x47\x45\x46\xd2\xa7\x7b\x77\x4e\x94\ +\xd7\x50\x69\x0f\x5f\xf5\x17\xa7\xdb\x5d\x07\xea\x16\x2f\xa8\x67\ +\x7b\x41\x3d\xc2\x6a\x82\x7a\x4b\x91\x01\xdd\xda\x33\xa0\x5b\x7b\ +\x36\xef\x3d\xca\xbc\xe5\x3b\x39\x74\xbc\x38\x78\x92\x09\xbe\x93\ +\x40\x52\x67\x03\x7d\xb7\xc3\x7e\x87\x07\x4f\xa0\xe3\x85\x65\xbc\ +\xf0\xd1\x2f\xf4\xef\xde\x91\xcb\xcf\x1e\x4a\x52\x9b\xd8\x16\x3b\ +\x8e\x23\x07\xf4\x20\xa3\x6d\x0a\xcf\xfd\xe7\x4b\x8e\x17\x16\xfb\ +\x7f\x5f\x39\x7c\x94\x6a\x01\x2e\x10\x52\x34\xec\x17\x21\xad\x9f\ +\xa1\x86\xf4\x1b\x5c\xb4\x0d\x1e\x27\x85\x74\x5c\xa8\xfe\xe4\xea\ +\xdd\x75\xd8\x1d\x6c\xd8\xb2\x8d\x41\x7d\x7b\x13\x1d\x15\x49\x55\ +\x75\xcd\xe4\xb0\x2c\xf4\xba\x3b\xa3\xc0\x91\xdb\x32\x73\xe2\x81\ +\xc2\x11\x03\x07\x58\x9f\x7b\xe0\xff\x58\x73\xa0\x88\xcd\xf9\xa5\ +\x8d\xfe\x40\x5b\x7d\x35\xf5\xd4\x18\x22\x2c\x42\xb3\xe0\x87\xcd\ +\x36\x7d\x6d\x5b\xf7\x1d\xe3\x87\xe5\x3b\x38\xe0\x13\x76\x2f\x1f\ +\xc9\x27\xe3\x0e\x26\xe3\x6e\x27\x20\x04\x54\xa6\x91\x49\xdf\x2a\ +\x81\x2d\xc2\xca\xd4\x91\x3d\x39\x67\x6c\x3f\xac\x96\xa6\xa8\x3d\ +\xde\x38\x52\x51\x55\xcd\x0b\xef\x7d\xc3\xd6\x5d\x79\xf5\x63\xa1\ +\x50\x41\x48\x8e\x2b\x0e\xae\x53\x89\xaa\x9b\xa7\x6a\xba\x59\x29\ +\x78\xf1\xad\x3f\x9f\x5a\x1d\x4f\x02\xee\xad\x7c\xa4\x6f\x60\xdf\ +\x35\xeb\x6a\x06\xd4\x28\x55\xae\xf9\x29\xe7\x01\xfc\x91\x22\x00\ +\x00\x20\x00\x49\x44\x41\x54\x22\xab\xde\x37\x4d\x3b\x8f\xaf\x22\ +\x22\xc9\x1d\x0f\x39\x17\x9c\xcb\xf5\xbf\x9f\xcd\xac\x5b\x1e\x62\ +\xe1\x8a\x0d\x4e\x20\xd9\x9e\x97\x5b\xa6\xb4\x13\xd3\x23\xe1\x78\ +\x92\xc7\x01\xd6\xa1\xfd\xfa\x01\x70\xb8\xb8\x5a\x33\x39\x7b\x38\ +\x5e\x2e\x49\xe2\x60\x51\x15\x0b\x77\x16\xf0\xc1\x8a\x43\xfc\xb8\ +\xd9\xc3\xa9\x3b\x02\x38\xf5\xe6\xe4\xe9\x71\xea\xfc\xbd\x9b\x5f\ +\x9f\x7b\x67\xb5\xe3\xae\xdf\x8d\xe7\xa6\x9c\x51\x74\xe9\x90\x54\ +\xa7\x55\x28\xe6\x74\x51\xaa\x06\x4f\xad\x1b\xa2\xa4\x4b\x7b\xb3\ +\x3b\x9c\x7c\xbf\x78\x13\xff\x78\xf9\x6b\x36\xec\x3c\xd8\x62\x81\ +\x3c\x36\x3a\x8a\x7b\x6e\x98\xc9\xd9\x13\x86\xf8\x4c\x76\x3d\x5a\ +\xa4\xc1\x34\xae\xba\x4e\x23\x85\x78\x5c\x88\x9f\x0d\xf2\x58\x91\ +\xf1\x70\x51\xf1\x48\x09\x24\xe8\x55\x5d\x37\x0d\x79\xac\x08\x1a\ +\x45\x2a\x3c\x9f\xdb\xb4\x75\x3b\x00\x63\x87\xf5\xab\x65\x45\x1a\ +\xcc\x93\x87\x83\x5a\x99\x0c\x30\xa4\x5f\x5f\x4a\xab\x1d\x14\x57\ +\x35\x7d\xda\x51\x97\xdb\x03\xea\x07\x8b\xaa\xb0\xec\x2a\x24\x23\ +\x21\x8a\xec\xb6\x1e\x4d\xdd\xd6\x00\xfa\xa5\x25\xb9\x00\x36\xd6\ +\xf7\x68\x6c\xe9\xd9\xa5\x2d\xbd\xb2\xda\xb2\x33\xef\x04\x73\x97\ +\x6d\x67\x6f\x7e\x81\x3f\xe5\x29\x37\x9b\x55\x39\xdd\xc0\x1d\xbe\ +\x50\xc7\x72\xfa\x26\x57\x2a\x28\x29\xe7\xd5\x4f\x16\xd0\x27\x3b\ +\x83\xcb\xcf\x1e\x4e\x6a\x52\x7c\x8b\x03\x73\x41\x10\xf8\xdd\xf4\ +\x49\x64\x75\x68\xc7\x5b\x9f\xcd\xc3\xee\xad\xc7\xea\xcf\x7f\xfb\ +\x36\x09\x2a\x5b\xf1\x00\x3e\x39\x88\x43\x97\x02\xe8\xeb\xfa\x71\ +\x0d\xc6\x74\xa9\x8e\x6a\x06\xa1\xce\x93\xc8\x57\x5f\xf6\x5d\x7c\ +\xeb\x4f\x2b\xf8\x6b\xcb\x82\xdc\x02\x2d\xc8\xb3\x03\xa1\x86\xe6\ +\x6b\xd1\x2d\x52\x08\xe7\xd4\xf8\xcc\xde\xbc\x03\x54\x57\xd7\x30\ +\x7a\x58\x5f\x5f\x0c\xfd\xfe\x94\x03\x79\x6c\x4c\x34\x3d\xb3\xb3\ +\xd9\x9c\x5f\xc6\xa9\xc6\x2f\xb7\x5b\xe2\x50\x51\x15\x87\x8a\xaa\ +\x58\xb2\xab\x90\xf6\x5e\x4e\x3d\x2b\xad\x9e\x7e\x31\xa5\xf9\x49\ +\xf7\xcc\x34\xba\x67\xa6\xb1\xeb\xe0\x49\x7e\x58\xba\x8d\xdd\x87\ +\x4e\xaa\x4e\x17\x5d\xa9\x00\x74\x4c\xae\x2d\xbb\xf3\x79\xf0\xd5\ +\xaf\x99\x3c\xbc\x17\xd3\x27\x0c\xc0\x6a\xb5\xb4\xb8\xb1\x1b\x35\ +\xb8\x37\x1d\xda\xa5\xf2\xec\xbb\x5f\x50\x50\x54\xea\x0f\xd3\x52\ +\xb0\x91\x50\x22\x18\x90\x7d\xfd\x82\x24\x7c\x72\xbd\x48\x3e\xc6\ +\x3c\x41\xe6\x7d\x25\xa6\xd6\xf7\xba\x82\x5e\x36\xb7\x76\xb1\xf0\ +\x5b\x7d\x7c\xfa\x1b\xb0\x1c\x49\x82\xb2\x5d\xb4\xde\xb2\x4b\x90\ +\x01\x55\xf2\x3f\x5f\x50\xdf\x64\x0d\xb0\x7a\xfb\x1e\xbc\xd0\x05\ +\x76\xcd\xe5\x72\xb2\x6e\xd3\x66\x86\x0f\x19\x44\x7c\x6c\x34\x65\ +\x15\x55\x0d\xe6\xc9\x1b\x44\xad\xd8\x32\x73\x92\x81\x01\x83\xfa\ +\xf4\x41\x14\x45\x0e\x15\x57\xe9\x54\x25\x9a\xe6\xe5\x92\x3c\xa0\ +\xbe\x70\x67\x01\x1f\x2c\x3f\xc8\xdc\x8d\xc7\xd9\x71\xb4\x1c\x87\ +\xcb\x6d\x22\x67\x33\x95\x6e\x9d\x52\xb9\xed\xf2\x71\xdc\x31\x6b\ +\x3c\xdd\x33\xd3\x64\xab\xda\xc8\x57\x24\x52\x2f\x10\xe0\xef\xcc\ +\xe0\xbf\x85\x76\xb9\xdc\xcc\x5b\xbe\x99\x07\x5e\xfa\x92\xb5\x5b\ +\xf3\x5a\xe4\xb8\x75\xee\xd0\x96\x87\xee\xbc\x92\x1e\x5d\x3b\x05\ +\xe7\x30\x0f\x89\x0a\x09\x4f\xc0\x96\x2e\xaa\x54\x57\x31\x09\x63\ +\x9f\xd1\xaf\x79\x4b\x2a\x5f\x57\xd2\x8e\x00\x95\x8c\x8d\x62\x6d\ +\xff\xd6\x6f\xda\x84\x45\x14\x19\x39\xa4\x0f\xc0\x00\x2f\x96\x9e\ +\x1a\x20\x07\x26\x02\xe2\x90\xbe\x7d\x91\x24\x3c\xb4\x8a\x1e\x90\ +\x3d\x05\xe2\xf2\x6a\xea\x8b\x76\x9c\xe4\xfd\x25\x87\xf8\x61\xe3\ +\x51\x76\x1c\x2d\xc3\xe9\x05\x75\xe5\x04\x45\xda\x2f\x53\xc2\x2f\ +\xd9\x1d\x53\xb8\xf5\xb2\xb1\xdc\x75\xc5\x44\x7a\x76\x69\xeb\x03\ +\xc6\x3e\x79\xad\x51\x28\x44\x2c\xc7\x91\x42\x50\x91\x5e\xdf\x67\ +\x51\x40\xa0\xa8\xac\x82\x37\x3f\x5f\xc8\xb3\xef\xcf\xe3\xe8\xc9\ +\x96\x57\x6a\x2e\x2e\x26\x8a\xbf\xde\x74\x19\x67\x8d\x1b\x8c\x28\ +\x0a\x2a\x63\x21\x9f\xff\xdb\xdf\x1e\x21\xe7\x17\xae\xc7\x77\xdb\ +\x33\xae\x82\x28\x22\x88\xa2\xd7\x67\xdb\x73\x9c\x28\x08\x88\xa2\ +\xf7\x25\x08\x88\xa2\xe8\xf3\x12\x7c\x7e\xfa\xbe\xbc\xef\x0b\x3e\ +\x2f\xbf\x63\xbc\xe7\x0a\x7c\x89\xa2\xc7\xe7\x5e\xa8\xbf\x6e\xb0\ +\x7f\xbc\x5c\xf1\x66\x41\x3b\x95\x81\x4a\x41\xe7\xfa\x0c\x63\xd4\ +\x8f\x96\xcf\xb8\xd6\x42\xfb\xe6\xed\x3b\x00\x18\x33\xb4\x6f\x2d\ +\x0e\x4f\x3c\x95\xd4\xca\x64\x80\xa1\xfd\xfb\x71\xb2\xbc\x06\xb7\ +\x24\xd1\x9c\x70\x4d\x2e\x88\x44\x00\xdc\x48\x1c\x2e\xaa\xe1\x50\ +\x51\x35\xcb\x77\x17\xd2\x3e\x31\x92\xae\x69\xb1\x64\xb7\x8d\x25\ +\xc2\x2a\xea\xe2\x91\x25\x49\x99\x5b\x96\xcc\x18\xa6\xb0\x49\x97\ +\x8c\x64\xfe\x70\xc9\x58\x0e\x1c\x2d\xe2\xbb\x25\x5b\xd9\xbe\xef\ +\x88\xfe\xf1\x0d\xf1\x3e\xec\xd8\x7f\x84\x47\x5e\xff\x86\x09\x43\ +\x7a\x70\xc1\xa4\x41\x44\xda\xac\x4d\xf3\xbc\xea\x4d\x4f\xa2\xf2\ +\xbd\x44\x41\x60\xf6\x85\x53\xe8\xd2\xa1\x1d\xef\xe6\xfe\x84\xdd\ +\x61\x0f\xc3\x58\x49\x3a\xfa\x2e\xf8\xff\xee\xed\xa4\x20\x88\x1e\ +\x6d\x51\xf0\x74\x5c\x10\x04\x1f\x6a\xa6\x36\xea\xd3\x87\xd6\x91\ +\xf5\x6e\x91\x64\xf4\x64\xef\xfb\x92\xdb\x73\x72\xa9\xde\xab\xc9\ +\xed\x6d\x93\xdc\xb5\xde\x2c\x6e\xcf\x67\x6b\xa9\x7f\x2f\xdd\x22\ +\xef\x89\x27\x43\xc3\xc8\xd2\x2c\x72\x28\xa3\xe4\xc7\x1e\x7c\x63\ +\x0f\x1c\x3c\x44\x79\x45\x45\xad\xc1\xb3\x16\x4b\x3f\x3f\x65\x40\ +\x9e\x10\x1f\xcf\x19\x99\x99\x6c\x3d\x5a\xd6\xfc\x00\x3c\xc0\x3d\ +\xb9\x4e\x2b\xab\xe3\xfc\x3c\x2b\xe5\xb1\xd2\x6a\x8e\x97\x56\xb3\ +\x6a\x9f\x87\x53\xef\x92\x1a\x43\x56\x5a\x2c\xb6\x08\x31\x68\xa2\ +\x49\x92\xfa\xa4\x93\x24\x10\xc5\xe0\xb6\xe6\xe4\xb1\xd2\x12\x5d\ +\x16\x3b\xa7\x27\x71\xf3\xcc\x31\x1c\x3c\x5a\xcc\xf7\x4b\xb7\xb0\ +\x75\xef\xd1\x00\xf7\x43\xef\x1d\xf6\xa3\x2a\x7d\x8c\x69\x3e\x0f\ +\x85\xff\xfb\x42\x80\xbb\x99\x77\xb1\x77\xb9\xf8\x75\xe5\x56\xd6\ +\x6c\xdd\xcb\x8c\x29\x43\x19\xd1\x3f\xfb\x94\x01\xb7\xda\x71\x4a\ +\xa0\x3e\x76\x68\x5f\x3a\xa6\xa7\xf1\xfc\xbb\x5f\x50\x50\x5c\x8a\ +\xbf\x7b\xa0\x1c\x07\x2d\x05\xcc\x1f\x41\x19\x98\x24\x9f\xb1\x14\ +\xfc\x0d\x97\xbe\x91\x99\x75\x1a\xb1\x88\x4f\x44\xaa\x10\x70\x2d\ +\x29\xa0\xc6\x84\x7c\x8a\x06\x29\x80\x1a\x92\x6a\xc1\xb9\x16\x90\ +\xbd\x9f\x71\x4b\x12\x16\x49\x44\x92\x24\x24\x51\xc2\x2d\x49\x1e\ +\x1c\xf7\x2a\x99\x6e\xc9\x77\xd0\x04\xef\x1a\xd0\x50\xaa\xc9\xb8\ +\x27\x90\xdb\xed\x66\xed\x86\x8d\x8c\x1b\x35\x92\xa4\x84\x78\x8a\ +\x4a\xca\x26\x87\x05\xf3\xb4\xb5\x00\x29\x90\x1f\x4f\x07\x8e\x4c\ +\x1a\x35\x92\xc7\xee\xfe\x0b\x0b\x77\x9f\xe0\x50\x51\x55\xb3\x01\ +\xf0\xba\xfc\xc9\x5e\x6f\x85\xc0\xea\xed\xa2\x20\x20\x88\x12\x22\ +\x20\x06\x95\x26\x13\xb0\x58\x04\xda\xb6\x89\xa4\x73\x4a\x0c\x9d\ +\x53\x62\xfc\x34\xf5\x40\x80\x96\x24\xe5\x49\xe5\x0b\xfc\x81\xef\ +\x9b\x3e\xe5\xa1\x2f\x48\x87\x8e\x15\x33\x77\xc9\x16\xb6\xec\x3d\ +\xe2\xd1\xc0\xfc\x14\x39\x19\x1f\xe3\xa0\x82\x0a\x92\xbc\x4f\x74\ +\x50\x50\x8b\xe7\x8f\xac\x4e\x69\xcc\x3a\x67\x34\x1d\xdb\x25\x85\ +\x1d\xc4\x43\x05\x74\xd9\x22\x3b\x01\x52\x56\x51\xc5\xf3\xef\x7d\ +\xc1\xae\xbd\x87\x50\x4e\xc7\x8a\xbf\x9f\x36\xfe\x63\x21\x05\xf0\ +\xdf\x92\xac\x7f\x38\xf5\xda\xb6\x20\x20\x0a\x60\xb1\x08\x88\x82\ +\x88\xc5\x22\x60\x11\x45\x2c\xa2\x05\x51\xac\x55\xa6\x64\x98\x7c\ +\x09\x8d\x8a\x46\x9e\xfe\x7b\xfe\x74\x7b\x7f\x77\x7b\xdd\xd5\xdd\ +\x48\x92\x84\xdb\x2d\xe1\x96\x5c\x48\xee\xda\xdf\x25\xdc\x6e\x37\ +\x92\xdb\xed\xf9\x5d\x72\x7b\x35\x75\x77\x1d\xc0\x4b\x7e\xda\x3d\ +\x7e\x13\x5a\xb6\xb0\xb8\xe4\xbb\x9b\xf0\xbf\x21\xc1\x15\x9d\x82\ +\xcf\x50\xfb\xd9\x69\x53\x26\x71\xdb\xf5\xd7\x72\xfd\xdd\x4f\xf2\ +\xdd\xfc\x15\xe0\xc9\xbb\x72\x54\x69\xa7\xd3\x58\x1a\xf9\x24\xf0\ +\xb8\x1d\x02\x14\x57\x3a\x9a\x21\x80\x7b\x40\x5a\x14\x05\x0f\x60\ +\x8b\x02\x16\xb1\xb6\xcd\x53\x28\xa1\xf6\xa7\x80\xe4\xe5\xdb\xbc\ +\x5c\x96\x20\x51\xe9\x70\xb0\xe3\x48\x09\xbb\x8e\x95\x90\x1c\x67\ +\x23\x23\x29\x86\x0e\xc9\x31\x58\xbd\xf9\xd4\x7d\x81\x5c\x92\xb4\ +\x27\x97\x1c\x2d\x63\x4a\x68\xd2\xb1\x5d\x22\xd7\xe7\x8c\x21\xff\ +\x44\x09\xdf\x2f\xd9\xcc\xe6\xdd\x5e\x40\x0f\xf2\xa8\x08\xf4\x44\ +\x90\xfc\x34\x42\x39\x7d\x46\x92\xd1\x3e\xf7\x1d\x38\xc1\x13\x6f\ +\x7e\xcd\xe8\x41\xdd\x99\x31\x65\x28\x51\x91\x11\x0d\x06\x71\xa5\ +\x9f\xa1\x00\xb8\x9c\xa2\x00\x10\x1f\x1b\xcd\xbd\x37\xcd\xe2\x83\ +\x2f\x7e\xe6\x97\xe5\x6b\x8d\xa9\x8d\x92\xb6\xb7\x90\x3f\xe0\xf8\ +\x82\xb8\x48\x84\x45\xc4\x6a\xb5\x62\x8b\xb0\x10\x11\x61\xc5\x6a\ +\xb1\x78\xc0\x5d\x14\xeb\x76\xc5\xb5\xc0\xaf\x04\xe4\xee\xba\x2f\ +\xe9\x7d\xa7\x16\x6b\xa9\x05\x64\x0f\x60\x7b\x80\xda\xed\x01\x6f\ +\xb7\x0b\xb7\xcb\x8d\xcb\xe5\xc6\xe9\x76\xe3\x72\x79\xfe\x76\xbb\ +\xdd\xb8\xdc\x2e\x5c\x6e\x37\x6e\xb7\x67\xd1\x71\xe3\x01\x7a\x01\ +\x90\x04\xd1\x7b\x69\xb7\xdf\x7e\xcd\xf3\x87\xa0\xa2\xfe\x4a\x81\ +\xdb\x3e\x75\x9a\xc5\x0b\x1c\xdb\x76\xee\x04\x60\xf4\xd0\xbe\xb5\ +\x40\x3e\x09\xf8\xa8\xa9\xa9\x15\x0f\x3f\xde\xaf\x1f\x65\xd5\x4e\ +\x76\x1d\xa9\x22\xda\x26\x12\x13\x29\x62\x8b\x10\x9a\x16\xc4\x7d\ +\x26\x82\x40\xed\x56\xce\xa3\x75\x5b\x44\x10\x2d\x60\x15\x04\x2c\ +\x5e\x20\xb7\x5a\xc0\x22\xe2\xd5\x14\xbc\x80\xee\x05\x77\xd1\x0b\ +\xea\x1e\x03\x85\x84\xdb\xe9\xa4\xba\xaa\x8a\x1a\xa7\xc8\xbe\x13\ +\xa5\xec\x3f\x59\x46\x62\x4c\x04\x6d\x13\xa2\x48\x4f\x88\xc1\x62\ +\x11\xfc\x40\x3c\xf0\xf7\xda\x97\x2f\xe0\x9b\x06\xd2\xf0\x49\x46\ +\x5a\x02\xd7\xcd\x18\xc3\xd1\x82\x52\xbe\x5f\xbc\x99\xcd\xbb\x0e\ +\xe3\xf4\x57\x93\xfc\x1c\xeb\x02\x7c\xef\x7c\xc0\x5d\xe6\xc9\x92\ +\x6a\x7f\x78\xce\xe7\x72\xbb\x59\xbc\x66\x3b\xeb\xb6\xed\xe3\x82\ +\x49\x43\x18\x3b\xb8\x47\x83\x40\xdc\xaf\x66\xb5\x60\x0c\xc8\x03\ +\x41\x5b\x8b\x37\xff\xfd\xc5\x67\x92\xd5\xb1\x1d\xef\x7f\x39\x0f\ +\xbb\xc3\xa5\x08\xe8\x1e\xbe\x5a\xaa\xd3\x8a\x04\x79\xa2\x38\x68\ +\xfc\x04\x9f\x6b\x59\x2c\x22\x11\x56\x0b\x36\x9b\x95\xc8\xc8\x08\ +\xa2\x23\x6d\x44\x45\x45\x10\x19\x61\xc5\x6a\xb5\x60\xb5\x58\xea\ +\x2b\xdb\xcb\x2e\x9f\x92\xec\x6a\x22\x49\x1e\x0d\xdb\x03\xe8\x1e\ +\x0d\x5c\xf2\x6a\xdc\xb5\x00\xee\x72\x4b\xb8\x5c\x2e\x9c\x4e\x17\ +\x4e\xa7\x13\xa7\xcb\x85\xd3\xe1\xf2\xfc\x74\xb9\x70\x3a\x9c\x38\ +\x5d\x4e\x5c\x2e\x0f\xc0\xbb\xdc\x6e\x5c\x2e\xa1\xee\x3c\xf5\x13\ +\x54\x0a\x1e\x63\x0d\x5b\x85\x64\xc0\x30\xe3\x70\x38\x59\xbf\x69\ +\x1b\x85\x45\xc5\x81\x3c\x79\xd3\x03\x79\x4a\x62\x22\x5d\x3a\x76\ +\x64\x5b\x7e\x39\x55\x35\x6e\xaa\x6a\xdc\x14\x96\x79\x80\x31\x3a\ +\xd2\x03\xea\xd1\x91\x22\x8d\xe1\x9a\xeb\xa7\x85\xfb\x68\xe0\x16\ +\xb1\xf6\x61\xf2\x80\x74\x84\x45\xc0\x6a\xf1\xfc\x1d\x61\xf1\xa4\ +\xcb\xb5\x5a\xbd\x3f\x2d\x02\x35\x55\xe5\x6c\xdd\xb0\x9a\x13\xc7\ +\x8f\x50\x52\x54\x48\x71\x71\x01\xc5\x45\x85\x14\x17\x15\x50\x54\ +\x54\x48\x79\x59\x29\x92\x24\x61\xb1\x5a\x49\x4c\x4c\x26\x29\x29\ +\x99\xc4\xa4\x64\x12\x92\x92\x49\x4a\x4c\xa6\x5d\xdb\xb6\x0c\x1f\ +\xd8\x9f\x49\xa3\x86\x62\xb5\x58\x14\x81\x5c\x09\xdc\x4d\x0d\x3d\ +\x3c\x92\x9e\xd2\x86\x6b\x2e\x1a\xcd\xf1\xc2\x52\xbe\x5f\xbc\x85\ +\x0d\xbb\x0e\xe1\x72\xb9\x75\x0c\xb0\xf1\x9c\x1a\xe5\x15\xd5\xfc\ +\xf7\xdb\xa5\x2c\x59\xbb\x83\x59\xe7\x8d\x26\xb3\x7d\xaa\x61\x30\ +\xaf\x7d\x6d\xd9\xb6\x9d\xea\x9a\x6a\xbf\x72\x6a\x5a\x5d\xad\xa5\ +\x79\x3b\x66\x64\xd0\x36\xad\xad\xa6\x56\x5e\x2b\xe3\x86\xf7\xa7\ +\x63\xfb\x34\x5e\x78\xef\x0b\x8a\x4a\xca\x64\x8c\x38\xc1\x09\xa9\ +\xea\xe9\x70\x6f\x50\x55\x60\xa6\x3f\xc1\xa7\xce\xaa\x20\x20\x5a\ +\x44\x2c\xa2\x88\x2d\xc2\x4a\x74\x64\x04\xd1\xd1\x91\x94\x95\x16\ +\xe1\x72\xd8\x70\x45\x46\x10\x51\x0b\xe4\x5e\xaf\x1a\xd5\xdc\x5a\ +\x32\xd4\x85\x67\xb5\x80\xa8\xc8\x48\x62\xa2\xa3\x89\x8a\x8a\x02\ +\x04\x8f\xb6\xed\x05\x66\xa7\xd3\x89\xd3\xe9\xc2\xe1\x74\xe2\x70\ +\x38\xb1\x3b\xea\x7f\xda\xed\x76\x1c\x0e\x07\x0e\xa7\x0b\xbb\xdd\ +\x81\xd3\xe9\xc2\x55\x0b\xec\x6e\xc1\xa3\xd9\xbb\x25\x8f\xea\x2f\ +\xfa\x1a\x45\x7d\x35\x73\x89\xc0\xdc\x36\xf2\x5a\xb8\xff\xf7\x28\ +\xaf\xa8\xa4\xb4\xb4\x9c\xd2\xd2\x72\x2a\xab\xaa\x91\x90\x58\xfa\ +\xdb\x6a\xa6\x9f\x3d\x95\xb6\x29\x89\x1c\x2f\x28\x9e\xdc\x60\x3c\ +\x34\xc2\x91\xdb\x32\x73\x32\x81\xfd\x67\x8d\x1b\xcb\x43\x77\xfd\ +\x91\x79\x9b\x4f\xf0\xdb\xde\x62\xc5\x63\x6d\xd6\x7a\x60\x8f\xb2\ +\x89\x41\xc6\xc0\x50\xb5\x70\x5f\x97\x32\x51\xf0\xe4\x5f\xb1\x58\ +\x04\xac\x16\xb0\x5a\x04\x22\x2c\x02\x36\xab\x07\xb0\x23\xac\x02\ +\x11\x56\x88\xb0\x0a\x1c\xce\xdb\xc3\xfa\xb5\xcb\x58\xbb\x6a\x39\ +\x3b\xb6\x6d\xf2\xac\xc4\x0d\x94\xf8\x36\x09\x0c\x1f\x36\x82\xc9\ +\x13\x26\x30\xfd\xac\x49\xb4\x4d\x49\xa1\x76\x81\x57\x7a\xc9\x6d\ +\x93\x4f\x77\x3e\x3c\x5c\xbb\x95\x93\x45\xe5\x7c\xbf\x78\x33\xeb\ +\x77\x1e\xa8\x73\x31\x45\x96\x0b\x97\x02\x52\x70\xc8\x95\x1b\x93\ +\x02\x52\x74\xd4\x1f\x2f\x88\x30\xb2\x7f\x37\x2e\x3e\x73\x38\xb1\ +\xd1\x91\x86\xb4\x71\x51\x84\x61\x13\xcf\x66\xd7\x9e\x7d\x21\x7d\ +\xc7\x7f\xdc\xfb\x27\xee\xb8\xf9\x06\xd9\xe7\x4a\x4d\xca\xca\x2b\ +\x79\xee\x9d\x5c\xf6\xe4\xe5\x6b\xe6\x20\x97\x2f\xff\xe6\xcf\x69\ +\xd7\xae\x01\xa2\x08\xa2\xc5\x82\xcd\x6a\x21\x3a\x2a\x82\xf8\xb8\ +\x68\x22\x23\x44\x9e\x7d\xf6\xd9\x46\x5d\xc4\xa3\xa2\x22\x89\x8b\ +\x8d\x25\x36\x36\x86\xd8\x98\x68\xda\xb5\x6b\x4b\x56\x97\xce\x74\ +\xee\xdc\x91\x84\x36\x6d\xb0\xdb\x9d\xd8\xed\x0e\xaa\xec\x76\xec\ +\x35\x76\xaa\x6b\xec\xd4\xd4\x38\xa8\xae\xa9\xc1\x6e\x77\xe0\x70\ +\x38\xb0\x3b\x9c\x1e\x4d\xde\xe1\xac\xe3\xd9\xdd\x2e\xa9\x6e\x7c\ +\x24\x49\x0a\xb6\x15\xa0\x5e\x9a\xae\xa6\xc6\x41\x69\x59\x19\xa5\ +\x65\xe5\x94\x95\x56\xe0\x74\xbb\x7c\xc6\xd0\xf3\xf9\xdf\x5f\x96\ +\xc3\xe3\x0f\xfc\x8d\x3f\xdc\xf7\x0c\x5f\xfe\xb0\x04\xa0\x8b\x3d\ +\x2f\x37\xaf\xa9\x38\xf2\x49\xb5\xb4\x0a\xc0\xc1\xa2\x6a\xd5\x0f\ +\xdb\x9d\x12\x76\xa7\x8b\x92\x0a\x17\x82\x00\x51\x5e\x0a\xa6\x96\ +\x86\x11\x74\xae\x27\x81\x5c\x78\xad\x45\xbc\x9e\x32\xf1\x80\x77\ +\x84\x55\xc0\x16\x21\x60\xb3\x7a\xce\x1f\x21\xc2\xa6\xf5\xcb\x58\ +\xf3\xdb\x22\xd6\xae\x5e\x4e\x61\xc1\xc9\xb0\x3f\x4c\x65\xa5\x25\ +\xcc\x9f\x3f\x8f\xf9\xf3\xe7\x71\xff\x03\x22\xbd\x7a\xf5\x66\xc2\ +\xb8\xb1\xcc\x99\x79\x31\x5d\xbb\x64\xd6\x81\x7a\x20\xb8\xfb\x82\ +\xb8\x28\x9a\x06\xd1\x70\x49\x6a\x52\x1c\xbf\xbf\x60\x24\xe7\x95\ +\xf4\xf5\x00\xfa\xf6\x03\x38\x5d\x2e\x1f\xaa\xd3\xc7\x5d\xce\x27\ +\x43\xa0\xaf\x47\x46\xf0\xc3\x17\x4c\x31\x48\x92\xc4\xf2\x0d\xbb\ +\xd8\xb8\x23\x8f\xf3\x26\x0c\x62\xc2\xb0\x3e\x9a\xdf\x2b\x9c\x31\ +\x08\x81\x5a\xb8\x96\x56\x0e\x10\x1f\x17\xc3\xdf\x6e\x99\xcd\xfb\ +\xb9\x3f\xb2\x60\xe5\x7a\x54\xc2\x23\x7d\x7e\x15\x82\x86\xa5\xd6\ +\x8d\xb0\x7e\x81\xf2\x68\xe3\x16\x8b\x47\x23\x8f\xb4\xd9\x88\x8e\ +\x6a\x7c\xd7\xcd\xea\xea\x1a\xaa\xab\x6b\x38\x59\x50\x08\xc0\xd6\ +\xed\xbb\xf8\x75\xe1\x52\x00\xda\xb4\x89\x27\x3b\x2b\x93\xac\x2e\ +\x9d\xc9\xca\xca\x24\xbd\x5d\x3b\xaa\xab\x6b\xa8\xaa\xaa\xa1\xb2\ +\xba\x86\xaa\xea\x1a\xaa\x6b\x6a\xa8\xa9\xa9\xc1\x6e\x77\xe2\xb0\ +\x88\x38\x1c\x4e\x5c\x2e\x01\x97\xe0\xe1\xd5\x71\xbb\x91\x04\xc1\ +\x6b\x83\x91\xdb\x46\x78\x9f\x05\xb7\x44\x59\x59\x05\x25\x65\xe5\ +\x94\x96\x96\x51\x55\x6d\x47\xde\x80\x5e\x2f\x4b\x56\xac\x02\x3c\ +\x79\x57\xbc\x40\x3e\x09\x78\xa7\xa9\xa8\x95\xfe\x00\xbd\xbb\x75\ +\xc3\xe9\x92\x38\x5a\x52\xa3\xfb\x40\x49\xa2\x8e\x86\x29\xc0\x9f\ +\x86\x89\x89\x12\x15\xf3\x8d\x07\x52\x29\x62\xad\x51\x45\x14\xb0\ +\x5a\xeb\xb5\x6f\x5b\x84\x40\x64\x84\x48\x64\x84\xe7\xef\x8d\x6b\ +\x97\xf2\xc9\x07\x6f\xb0\x77\xcf\xce\x06\x4c\x16\xb1\xde\xa2\xad\ +\xeb\x3b\xba\xd9\xba\x75\x33\x5b\xb7\x6e\xe6\xf5\x37\xdf\xe0\xac\ +\x69\xe7\x71\xcb\x8d\x37\x30\xa0\x47\x36\x16\x8b\x58\x07\xe2\xbe\ +\xa0\x6e\x64\x22\x9a\xa2\x5f\x52\x12\xe2\x98\x73\xfe\x48\xce\x1f\ +\xdf\x8f\xb9\x8b\x37\xb1\x66\xdb\x01\x1c\x2e\xa7\x62\x24\x9f\x36\ +\xaf\x21\xff\x99\x8a\xaa\x1a\x3e\xf9\x61\x39\x4b\xd7\xed\xe0\xf2\ +\x73\xc7\x90\xdd\xa9\x9d\x2e\xad\xbc\xa1\x20\x5e\xfb\x32\xfa\xcc\ +\x88\x82\xc0\x95\x33\xcf\xa6\x4b\xa7\x74\x3e\xfc\xf2\x27\x1c\x4e\ +\x97\x8e\xba\x95\xca\x34\x54\x5d\xb9\x35\x24\x0f\x98\x5b\x2d\xd8\ +\x22\xac\x44\x45\xda\x4e\xe9\xfd\x2f\x2d\x2d\x63\xdd\x86\xcd\xac\ +\xdb\xb0\x19\x80\x8e\x1d\x32\x98\x38\x7e\x14\x03\xfa\xf7\x21\xce\ +\x19\x43\x65\x65\x15\x15\x95\xd5\x54\x55\x55\x53\x59\xe5\x01\x75\ +\xd1\x62\xc7\x61\x77\x20\x38\xc1\x2d\x08\xb8\x00\x41\xf2\x6c\xbf\ +\x24\xb7\x3f\xcd\x52\x5d\x53\x43\x49\x49\x39\x25\xa5\xe5\x94\x55\ +\x54\xe0\x76\xb9\x65\xc7\x49\x76\x6c\x25\xd8\xbb\x3f\x8f\xe3\x27\ +\x0b\x18\xd4\xa7\x9b\x1f\xb6\x36\x15\x90\xf7\x10\x04\x81\x4e\x19\ +\xed\xc9\x2f\xae\x6e\x50\x05\x16\x97\x5b\xa2\xbc\xca\x45\x79\x95\ +\xab\x8e\x86\xa9\x05\xf5\x68\x9b\x58\xcf\xa5\xe1\x1f\x7d\x56\x6b\ +\xac\xac\x05\xf0\x5a\xf0\x8e\xb2\x79\x7e\x6e\xdb\xb8\x92\x8f\x3f\ +\x78\x9d\x5d\x3b\xb6\x6a\x6b\x6f\x69\xed\xe8\x3f\x70\x08\x29\x29\ +\x69\x24\x24\xa5\x90\x90\x98\x44\x42\x62\x0a\x49\x49\xc9\x24\x24\ +\xa6\x60\x8b\x8c\xa4\xbc\xb4\x84\xe2\x62\x0f\x77\x5e\x52\x5c\x40\ +\x49\x71\x21\xc5\x45\x85\xe4\x1f\x3e\xc0\xc6\x0d\x6b\xb1\xd7\xc8\ +\x2f\x66\x2e\x97\x8b\xb9\xdf\x7f\xcd\x4f\xf3\xe6\x32\xf5\xac\x73\ +\x99\x3d\xe7\x6a\xba\x65\x76\x24\x3d\x21\x16\xab\x45\xf4\xd3\xd4\ +\x03\xe9\x15\x13\xd0\xc3\x27\x49\x6d\x62\xf9\xdd\x79\x23\x39\x77\ +\x7c\x7f\xe6\x2e\xd9\xc4\x9a\x2d\xfb\xeb\xc1\xcb\x87\xac\x0d\x36\ +\xee\x49\x0a\x1a\xa9\x24\x03\x70\x02\xf9\xc7\x8b\x78\xe6\x9d\x6f\ +\x18\xd2\x27\x9b\x99\xd3\x46\x12\x1f\xdb\x34\xa5\xe6\x42\x55\x00\ +\x26\x8c\x18\x48\x87\xf4\x34\x5e\x7e\xef\x4b\x8a\xca\x4a\xeb\xb5\ +\xa5\x20\xba\xd7\x97\x5a\xf0\x4f\x19\x5d\x5f\x09\x88\xba\xa8\x4b\ +\x8b\x28\x12\x11\xe1\xf1\x58\x69\x4e\x72\xe8\x70\x3e\x1f\x7c\x94\ +\xcb\x17\x5f\x7d\xcf\x98\x51\xc3\x19\x31\x62\x08\x69\x29\x49\x94\ +\x97\x57\x60\xb3\x55\x51\x51\x69\xc1\x52\x65\xa1\x46\x10\xb1\x8b\ +\x1e\x2e\x1d\x49\xc2\xe9\x76\x23\x48\x12\x35\x0e\x27\x65\xe5\xe5\ +\x5e\xcd\xbb\x02\xbb\xdd\x2e\x53\x4a\x4f\x43\x93\x0d\x90\x5d\x7b\ +\xf6\x32\x64\xe0\x00\x8f\xfb\xa6\x24\xf5\x68\x52\x20\x6f\x97\x9a\ +\x4a\xa4\xcd\x46\x71\x65\x29\x16\x51\xc0\x15\xa6\x72\x5a\xb5\x34\ +\x4c\xb1\x97\x86\xa9\xf5\x84\x89\x8d\x12\x89\x8e\xb4\x20\x08\x1e\ +\x0a\xc5\x22\x52\x47\x9d\x44\xd9\x3c\x00\x1e\x15\x21\xb2\x7b\xfb\ +\x5a\xfe\xf7\xc1\x1b\x6c\xdb\xb2\x41\xe5\xa1\x17\xe8\xde\xa3\x37\ +\x43\x86\x8f\x61\xf0\xf0\x31\x74\xea\x9c\xed\xb5\x76\x4b\xb8\x25\ +\xcf\xe2\x22\x79\x03\x0c\x6a\x5c\x12\x35\x95\x2e\xb0\xc6\x92\x90\ +\x16\x4b\x52\x5a\x27\x10\xea\x3d\x5d\x2c\xa2\x80\xcb\x59\xc3\xd6\ +\x4d\x6b\x59\xb7\x7a\x39\xab\x57\x2e\xa7\xa0\xe0\x44\xd0\x35\x9d\ +\x4e\x07\x3f\x7c\xff\x15\xbf\xfc\x3c\x97\x33\xcf\x9e\xce\x79\x17\ +\xce\x22\xbd\x6d\x1a\x69\xf1\x31\x64\x24\xc7\x11\xe1\xd5\xd4\xb5\ +\xf8\x72\x53\x1a\x26\x89\xf1\x31\xcc\xfa\x7f\xf6\xce\x3b\x4e\x8a\ +\x2a\xed\xc2\x4f\x55\x75\xee\x89\xcc\x0c\x03\x43\x98\x40\xce\x39\ +\xa9\xa0\x62\xc2\x9c\xc5\x9c\x5d\x13\x2a\xe6\xb0\xdf\xba\x86\x75\ +\xd5\x55\x57\x05\xb3\xa2\x18\x50\x77\xcd\x39\x07\x44\x31\x80\x28\ +\x12\x24\xcc\xc0\x90\x06\x98\x1c\x3a\x77\x85\xef\x8f\xaa\xee\xe9\ +\x38\xb9\x11\x58\xaf\xd6\xaf\x99\xee\xea\xea\xea\xea\x5b\xe7\xbe\ +\xf7\xdc\xf3\x9e\xf7\xf0\x49\x1c\x31\x75\x24\x1f\x7f\xbb\x82\x25\ +\x2b\x37\x10\x90\x95\xf6\x05\xe7\x2d\xed\x64\xe0\xfe\xd2\x95\x65\ +\xac\x58\xbf\x99\xc3\xa7\x8e\xe6\xe0\x29\x23\x13\x72\x9d\x5d\x45\ +\xad\x74\x76\x16\xd7\xbf\xb0\x17\xb7\x5d\x7d\x2e\x73\xe6\xbf\xc1\ +\x86\xcd\xdb\x92\xcd\x85\x13\xcc\x4e\x9a\x25\x87\xa1\x59\xb2\x60\ +\xc8\x7d\x25\x49\x5f\xaf\x32\x9b\x4d\xbb\x65\x3f\x70\x7b\xbc\x7c\ +\xfa\xc5\x42\x3e\xfb\xf2\x1b\xf6\x99\x3c\x9e\xa3\x8f\x38\x0c\x9b\ +\xdd\x82\xc5\x62\xc6\x6c\xf6\xe0\x96\x44\xf0\x82\xc7\xeb\xa3\xae\ +\xbe\x91\xfa\x46\x37\x8d\x8d\x4d\xf8\xfd\x81\x66\x85\x4b\x0b\x3d\ +\x21\x91\x23\x64\xb2\x56\xb6\x71\x13\xfb\x4e\x9a\x40\xaf\x1e\xb9\ +\x6c\xdd\x5e\xb5\x6b\x80\xdc\x52\x78\xa2\x15\x28\x2a\xec\x55\xa0\ +\xcf\x03\xfa\x64\x30\xb4\x57\x3a\xdb\x6a\x7d\x6c\xaa\xf5\xb2\xa9\ +\xda\xc3\xd6\x5a\x1f\x72\x17\x01\xbb\x37\xa0\xe2\x0b\xaa\xd4\xb9\ +\x05\x2c\x92\x4c\x9a\x5d\x24\xcd\x2e\x91\xee\x90\xb0\x98\x05\x03\ +\xe0\x45\xcc\xa2\xc2\xf3\x4f\xdd\xc7\xa7\x1f\xbd\x93\xf4\x58\x03\ +\x06\x0e\xe1\xf0\xa3\x4e\x60\xe4\xb8\x29\x38\xd3\xb2\x91\x15\x15\ +\x59\xd1\x68\x74\x2b\xc8\xaa\x8a\xaa\x62\x24\x10\x18\xf2\x26\x62\ +\x53\x84\x9b\xfd\x29\x42\x12\x47\x5d\x17\x2b\x31\x60\xd8\x04\x86\ +\x8c\x9c\xc8\x39\x17\x5d\xcd\x96\xcd\xa5\xfc\xfc\xe3\xb7\x7c\xf0\ +\xde\x1b\xb8\x5d\xae\xe8\x81\x2a\x10\xe0\x83\x77\xdf\xe0\xeb\x2f\ +\x3e\xe1\xca\x6b\xfe\xca\xc0\x61\x63\x59\xb5\xb9\x1a\x87\xd5\x4c\ +\x41\x76\x1a\x85\x79\x19\xe1\x28\x26\x36\xe1\xe8\xcf\xd6\x75\x2d\ +\x33\xcd\xce\xcc\x19\x13\x39\x62\xea\x08\x3e\xfe\x76\x25\x3f\xad\ +\x2c\x23\x10\x94\x63\x38\xe0\x58\x4f\xc0\x48\x09\x7a\x62\x0e\x3d\ +\x32\x2a\xf3\xfb\x83\xbc\xf3\xc5\x4f\xfc\xb8\x7c\x3d\xa7\x1c\xb1\ +\x0f\x83\x8a\x0a\xba\x14\xcc\x13\x2d\x14\x77\xb4\xaf\x64\xa4\x39\ +\xb9\xe5\xb2\x33\x99\xff\xc6\x47\x7c\xbb\xe4\xb7\x36\x0d\x58\xc9\ +\x82\x24\x22\x6a\x75\x8a\xe2\xee\x5d\xbc\x43\xd3\x34\xbe\xfb\x7e\ +\x09\x6b\xd7\x95\x72\xe6\xe9\x27\x91\x91\x91\x49\x63\x93\x8b\xfa\ +\x06\x17\x3b\x2a\xab\x68\x6c\xf2\xe0\xf1\x78\xf1\xf9\xfd\x28\xb2\ +\x8a\x28\x0a\xa8\x2a\xa1\xe8\xb9\x0d\x63\x7c\xeb\x74\x5d\xd9\xc6\ +\x72\x00\xfa\x15\x16\xb0\x75\x7b\x55\x91\xa5\xf0\x44\x6b\x60\xd3\ +\x1b\xfe\x94\x02\x39\xd0\x1f\x90\xfa\xf6\xea\xd5\x7c\x10\x51\xa0\ +\x30\xd7\x4e\x51\x9e\x1d\x06\x75\x43\x51\x35\xb6\xd5\xf9\xd8\x54\ +\xe3\x65\x53\xb5\x97\x2d\xb5\xde\xb8\x82\x0f\x6d\xed\xa4\xa1\x0e\ +\x21\x89\x3a\x78\x06\x15\x0d\x5f\x40\x8d\xea\xb4\xae\x86\x6a\x9e\ +\x7c\xe8\xff\x28\x5d\xbb\x2a\xe1\xb1\x0a\x7a\xf5\xe1\x8c\x73\x2f\ +\x61\xfc\xa4\x03\x90\x15\x08\xc8\x2a\x4d\x1e\x85\xa0\x01\xe4\xb2\ +\xa2\x4b\x8e\xf4\x48\xdc\xe0\xad\x43\xd9\x5f\x91\x29\xbd\x82\x10\ +\x5e\x18\xd3\x93\x87\xb4\x70\xfa\xb1\x14\x56\xca\x88\xe4\xf6\x28\ +\xe6\xa8\x13\x4b\x98\x71\xe4\x89\xbc\xfb\xd6\xcb\x7c\xf8\xde\x9b\ +\xfa\x14\x2c\x32\x22\x70\xbb\xb8\xe7\x1f\x7f\x65\xe6\xe9\xe7\x72\ +\xf8\xb1\xa7\xe2\xf5\x07\x59\xb1\xa9\x8a\xa5\xeb\x77\x92\xe9\xb0\ +\xd2\x27\x2f\x83\xfe\x3d\xb3\xb0\x59\xa4\x56\xad\x01\x76\xf7\xc8\ +\x7d\x77\xf6\x43\x4f\x77\xda\x39\xf9\xb0\x09\xcc\xd8\x6f\x04\x9f\ +\x2c\x5e\xc9\x8f\xbf\x95\x11\x08\x06\xf5\x62\xc4\x49\x23\x53\x2d\ +\xec\xdd\x11\xb9\x06\xaa\x19\x12\xd8\xd0\x28\xac\x19\x59\x2f\x3b\ +\xaa\xeb\x79\x6c\xc1\x47\x8c\x19\x52\xc2\x49\x33\x26\x93\x91\x66\ +\xdf\x2d\x7f\x27\x51\x14\x39\xff\xe4\x23\x29\xee\xdd\x93\x57\xdf\ +\xfd\x5c\x5f\x4b\x88\xc2\x1d\x21\x21\xb5\x14\x6d\xa6\x65\x24\xe0\ +\x09\x62\x38\x42\xdf\x13\x5a\x75\x4d\x1d\x0f\x3f\xf2\x0c\x53\x26\ +\x8d\x67\xcc\x98\x51\xa4\x39\xed\x64\x65\x66\x84\x53\x0c\xf4\x80\ +\x2e\x40\x30\xa8\xa1\x09\x4a\x78\xd0\x8a\xb6\x14\x68\xf3\xf0\x11\ +\x13\x91\x1b\x40\x5e\xd4\x8b\x85\x3f\x2c\x97\x0c\x8c\x5d\x95\x6a\ +\x20\x1f\x04\x10\x8a\xc8\x13\xdd\x84\x92\x28\xd0\x37\xc7\x4e\x61\ +\xae\x1d\x06\xe9\x1e\xe1\xdb\xea\xfd\x6c\xaa\xf6\x50\x5e\xed\x65\ +\x4b\xad\x8f\x80\xac\xb6\x11\x04\x9a\x15\x29\x16\xb3\x88\xcd\x22\ +\xe0\xb4\x4a\x38\xed\x22\xe9\x76\x89\xed\xe5\x2b\x78\x66\xce\xad\ +\x34\xd4\xd7\xc6\xf3\xa2\xdd\x72\x39\xf9\xb4\x0b\xd8\xff\x90\xa3\ +\xd0\x34\x11\xb7\x4f\x35\xa8\x1b\x15\x59\xd6\x8c\xac\x2f\x1d\xc0\ +\xf5\xec\x30\xdd\xfa\x56\xcf\xf8\x55\x13\x4e\x98\x42\x40\x2e\x84\ +\xb3\xd8\x8c\x47\x51\xc0\x24\x0a\x48\x26\xb5\x79\xe1\xd5\x64\xe3\ +\x84\x53\x2f\xe2\xd0\x23\x4f\xe0\x8d\x57\x9e\xe3\xab\x2f\x3e\x89\ +\x9a\x92\x69\x9a\xca\xab\x0b\x9e\x65\x63\xd9\x3a\xfe\x32\xeb\x7a\ +\xd2\x1c\x16\x04\x51\xa1\xde\xe3\x63\xc7\x7a\x37\x8b\x57\x6f\x23\ +\x37\xd3\x41\x49\x8f\x4c\x06\xf5\xce\xc6\xd6\x8e\x69\xea\xde\xa8\ +\x44\x49\x2d\xa0\xdb\x38\xe9\x90\xf1\x1c\xbe\xdf\x08\x3e\x59\xbc\ +\x82\x1f\x97\x97\xe2\x0b\x04\x5b\xe5\x37\xdb\x1e\xf9\xc1\x8a\x75\ +\xe5\x6c\xaa\xa8\xe4\x90\x7d\x47\x32\x75\xfc\x60\x60\xf7\xbc\x58\ +\x07\x4e\x19\x4b\xef\x1e\x79\x3c\xf6\xe2\x5b\x34\x34\xb9\xe2\xef\ +\x01\x41\x88\x87\xae\xb8\x8a\x4d\xe8\xeb\x5b\x7b\x50\x87\xd0\x34\ +\x8d\xc5\x3f\x2c\xa1\x6c\x43\x39\xc7\x1c\x7d\x38\xa2\x98\x1d\xfe\ +\x85\xf4\xd4\x7e\x43\x86\x2d\x37\x27\x22\x45\x45\xe6\xed\xb1\x0a\ +\xd6\xa2\xa9\x95\x50\x44\x1e\x81\xb1\xbb\x08\xc8\x0b\x7a\xb5\x63\ +\xa4\x17\xe8\xd3\xcd\x46\x9f\x6e\x36\xa6\x0e\xd2\xe9\x8b\x8a\x7a\ +\x3f\x9b\xaa\xbd\x94\x57\x79\xd9\x5c\xeb\xc5\x1f\x54\xe3\xc0\x40\ +\x8c\x04\x71\x93\x10\x06\xf1\x34\xbb\x48\xba\x43\x62\xc9\x37\x6f\ +\xf3\xda\x0b\x73\x51\x62\x22\x07\x49\x92\x38\xe6\xe4\xf3\xd8\xff\ +\xb0\x53\x90\x35\x0b\x65\x15\x01\x82\x8a\x86\xa6\x36\x67\x6c\x4a\ +\x86\xd8\x5f\x51\xf5\xe7\x43\x8b\xd1\x8a\xa1\x4e\x09\xaf\x4e\xc7\ +\x9a\xa9\x84\x13\x37\xb4\xe6\x45\x1e\x40\x14\x54\x82\x22\x48\xb2\ +\x40\x50\x82\x80\x24\x62\x31\x09\x98\x83\x1a\x56\x7b\x36\xe7\x5d\ +\x72\x1d\x47\x1d\x77\x0a\xcf\x3e\xf9\x30\x2b\x7e\xfb\x35\xea\x7c\ +\x7f\xfc\xe1\x5b\xb6\x6d\xdd\xcc\xd5\x37\xde\x46\x56\xb7\x02\xc4\ +\x90\xac\x0b\xa8\x6c\xf0\x50\x51\xd3\xc4\xa2\x15\x5b\xc8\xcf\x72\ +\x30\xa0\x77\x36\x83\xfb\xe4\x60\xb7\x98\xf8\xb3\x75\x7d\x73\xda\ +\xad\x9c\x70\xd0\x78\x66\xec\x3b\x92\x4f\xbf\x5b\xc1\xf7\xcb\xd7\ +\xe3\xf3\x07\x92\x0c\x52\x2d\x18\x4a\x09\x42\x82\x99\x25\x04\x82\ +\x41\xbe\x59\xb2\x8a\x2d\x3b\x74\x40\xdf\x5d\xdb\x80\xe2\x3e\xdc\ +\x76\xf5\xf9\xcc\x79\xee\x75\xca\xb7\x56\x44\x38\x16\xb6\xb1\x1a\ +\xfd\x1e\xdc\x76\x56\x56\xf1\xce\xbb\x1f\x72\xe2\x09\xc7\x84\xb3\ +\x47\x15\x55\x45\x55\xf4\xec\x51\x4d\x53\x51\x42\x20\xae\xb6\x5d\ +\xeb\x93\xec\xef\xcd\xdb\x2a\x08\x04\x02\xf4\x2f\xec\x15\x85\xb1\ +\xbb\x04\xc8\xfb\xf6\x2a\xe8\xf8\x14\x4e\x10\xe8\x9d\x6d\xa3\x77\ +\xb6\x8d\x7d\x07\x64\xa3\x01\x3b\xea\x7d\x94\x47\x00\x7b\x40\xd6\ +\x69\x0b\x93\x18\x02\x71\x31\x0c\xe2\x19\x0e\x89\xb7\x5e\x7a\x80\ +\x45\x5f\xbc\x1b\x7f\x23\xa6\xa5\x73\xf1\xd5\xff\xa0\xb0\xff\x18\ +\xdc\x7e\x05\x8f\x4f\xc1\xeb\x57\xf0\x05\x55\x02\x01\x95\x80\xa2\ +\xa2\x18\xd1\xb8\x24\xea\x9a\x73\xab\xd9\xd8\x4c\x7a\x64\x1d\x59\ +\xb8\x36\x5a\x6e\xa4\x85\x75\xc8\xa1\x98\x44\x30\xec\x39\xc5\x90\ +\xe1\x56\x68\xf0\x11\x35\x82\x92\x80\xc9\xa4\x11\x94\x55\x82\xb2\ +\x40\x76\x6e\x6f\x6e\xbc\xf5\x5f\x2c\x98\xff\x18\x1f\xbd\xff\x76\ +\xd4\x79\x6f\xdd\xba\x99\xbf\xdd\x38\x8b\x6b\x6f\xba\x83\xa2\x7e\ +\xc3\x22\x2c\x39\x35\xd0\x44\x82\x9a\x42\x45\x9d\x9b\xad\xd5\x2e\ +\xbe\x5e\xbe\x85\x9e\xd9\x4e\x06\xf6\xee\xc6\x90\xc2\x1c\x1c\xd6\ +\x3f\x41\xbd\xab\x9b\xc3\x66\xe1\xb8\x83\xc6\x71\xd8\xbe\x23\xf8\ +\xec\xfb\x95\x7c\xff\xeb\x3a\x3c\xbe\x08\x7a\x4c\xd0\x62\x14\x2e\ +\x31\x99\x8a\x21\x33\x26\x04\x04\x31\xc4\x1d\x37\x87\xad\x0d\x4d\ +\x6e\xbe\x59\xb2\x32\x3e\xea\xdf\x9d\xd6\x11\xd2\xd3\xb8\xe5\xf2\ +\xb3\x99\xff\xfa\x87\x2c\xfe\xf9\xb7\xc4\x36\xae\x9a\x10\xee\xf7\ +\xa1\xef\x18\xfe\xaa\x6d\xce\x10\xd9\xfd\x5a\x65\x55\x35\xef\xbd\ +\xff\x11\xc7\x1e\x7d\x44\xb3\x47\x8b\xa2\xa2\x28\xb2\x91\x45\xaa\ +\xcf\xd8\x55\xcd\x30\x28\x88\x90\x27\x27\x85\xf2\x24\x03\x9d\xaa\ +\xaa\x6c\xdc\xbc\x85\x7e\x45\x05\xbb\x16\xc8\x6d\x56\x2b\xdd\x73\ +\x72\xba\x8e\x9b\x13\xa0\x20\xdb\x46\x41\xb6\x8d\x7d\x06\xe8\xee\ +\x72\x95\x4d\x7e\xb6\xd4\xfa\xd8\x56\xe7\xa5\xca\x15\xc0\x24\xa1\ +\xd3\x29\x0e\x89\xaf\x3f\x7c\x21\x21\x88\xf7\x28\xe8\xcb\x65\xd7\ +\xdf\x8b\x33\xab\x80\x7a\xb7\x8c\xc7\xaf\xe0\xf1\x69\xf8\x83\x0a\ +\x81\xa0\x66\x2c\x6e\xaa\x28\x8a\x3e\x45\x0a\x68\x1a\x6e\x6f\xf3\ +\x02\x95\xa6\xaa\x98\x4c\x02\x76\xb3\x80\xcd\x2c\x61\xb3\x08\x58\ +\x2d\x22\x7a\xb1\xf5\xe8\xa8\x5c\x8b\xf0\x7f\x08\xd7\x11\x14\x34\ +\x44\x41\xf7\x57\x56\x55\x5d\xfd\xa2\xd3\x37\x22\xb2\x22\xa0\x28\ +\x1a\x36\x8b\xc8\x99\xe7\xcd\xa2\x4f\xef\x42\xe6\x3d\xfd\x08\x8a\ +\xd2\xac\x98\xf0\x78\x3c\xfc\xfb\xde\xdb\xb8\xf3\x9e\x39\x64\xe6\ +\x14\x44\x00\x39\xa0\xa9\x08\x1a\xc8\x86\x35\x67\x45\xad\x8b\x8a\ +\x9a\x26\x16\xfe\xb6\x99\x1e\x39\x4e\x06\xf5\xea\xc6\xd0\xc2\x5c\ +\xec\x7f\x82\x7a\x97\x36\xbb\xcd\xc2\x31\x07\x8e\xe5\xd0\x7d\x47\ +\xf0\xf9\xf7\x2b\xf9\xee\x97\x35\x78\xbc\x81\xa8\x7b\xb4\x59\x2e\ +\xda\x5c\x04\x59\x8b\x91\xe8\x25\x13\x8e\x2b\xbb\x79\xb5\x2a\x49\ +\x12\xb9\x60\xe6\x51\x14\xf6\xce\xe7\xb5\xf7\xbf\x44\x4e\xaa\xc1\ +\xdf\xfb\xda\xd6\x6d\xdb\xf9\xf8\xd3\x2f\x38\xf4\x90\xe9\x04\x83\ +\x32\xc1\x80\x8c\x1c\x0c\x12\x94\xf5\x2c\x50\x2d\xc4\x97\x6b\x2d\ +\xf0\x27\x6d\xac\xf9\x59\xb6\xb1\x9c\xc3\x0f\x9e\x8e\xdd\x66\xc5\ +\xeb\xf3\xef\x1a\x20\xef\x5b\x50\x90\x32\xee\x2b\x74\xd8\x9e\x59\ +\x56\x0a\xb2\xad\x88\x62\x26\xa2\x04\x2e\x7f\x90\x7a\x6f\x80\x4f\ +\x3e\xff\x98\xf7\x5e\x7f\x36\xee\x7d\xc3\x46\x4e\xe0\xfc\x2b\xee\ +\x40\x11\xec\x34\xb8\x15\x3c\x3e\x3d\xe9\xc8\x1b\x50\x09\xca\x2a\ +\xb2\xac\xa2\x18\x1c\xb8\x1a\xb2\xaf\xd4\x88\x5b\xac\x08\xca\x1a\ +\x81\x80\x4a\x03\x0a\x21\x9f\x05\x9d\x9f\x17\xb0\x48\xa1\x08\x5e\ +\x34\x38\xf0\x30\x83\xa6\xaf\x03\x69\x1a\x8a\x20\xa0\x0a\x1a\x82\ +\xa6\xa1\x8a\x20\xab\x18\x3c\xbc\xa0\x2f\xa8\x2a\x2a\x8a\xaa\x31\ +\xed\xe0\xa3\xe9\xd9\xab\x37\xf7\xdf\x7b\x7b\x94\xb2\xc5\xed\x76\ +\x71\xdf\xdd\x7f\xe3\x8e\xbb\xe7\x60\xb7\xd9\x75\x3f\x65\x4d\x43\ +\x55\x45\x54\x4d\x45\x44\x30\x7c\xf2\x9b\xcf\xbf\xa2\xa6\x89\xed\ +\xd5\x2e\x16\xae\xdc\x4c\x41\x76\x1a\x03\x7b\x77\x63\x68\x51\x6e\ +\x5c\xa4\xbe\x2b\x39\xed\xd6\x6c\x5a\xbb\xea\x5c\x76\xd5\x6c\xde\ +\x66\x31\x73\xd4\xfe\x63\x38\x64\xca\x08\xbe\xf8\x61\x05\xdf\x2e\ +\x5b\xa3\x67\xee\x85\xfd\x22\x34\xc4\x70\xbe\xba\x10\x61\x95\x1b\ +\xe2\x95\x43\x14\x5c\xcb\x25\x90\x77\xd7\x76\xf0\xbe\x13\xe8\xd3\ +\x33\x9f\x27\x17\xbc\x45\x63\x93\x3b\x0a\x84\x84\xa8\xd2\x4c\x84\ +\xab\x02\xed\x0d\xad\x6c\x43\x39\x8b\x16\x2d\x66\xca\x94\x49\x7a\ +\x06\x68\x20\x40\x20\xa8\x7b\xb4\xe8\x66\x5d\x4a\x78\x26\x92\x98\ +\x2b\x6f\x03\x49\x0e\x94\x6e\x2c\x47\x10\x04\x4a\x0a\x0b\x58\xb5\ +\x76\x63\xbb\x81\xbc\x5d\xda\x20\x4b\xe1\x89\x79\x40\x76\x67\x68\ +\x95\xb6\x82\x40\x48\xe2\xa7\xab\x41\x20\x37\xc3\x8c\xaf\xa6\x8c\ +\x39\x0f\xde\x11\x27\xfb\x39\xe8\xb0\x63\xb9\xe4\xba\xfb\x08\x62\ +\xa7\xd1\xa3\xd0\xe4\x51\x70\xf9\x14\x3c\x7e\x15\x7f\x50\x5f\xe0\ +\x94\x15\x0d\x59\x8d\x58\xd8\x8c\xd1\x6c\x6b\x71\x59\x96\xcd\x3b\ +\xc8\x8a\x86\xc7\xa7\x50\xef\x92\xa9\xac\x0f\xb0\xa5\xd2\x4b\x59\ +\x85\x87\xdf\x37\xbb\x58\xb7\xd5\x4d\xf9\x4e\x2f\xdb\xab\xfd\x54\ +\xd7\x07\x69\x74\x07\xf1\xf9\x0c\xf3\x1e\x43\x9b\x1e\x54\x54\x02\ +\x41\x15\xaf\x5f\x3f\x27\x8f\x4f\xc1\xed\x95\xe9\x37\x78\x34\xf7\ +\xdc\xff\x28\xf9\xf9\x3d\xa2\xbe\xcf\xf6\x8a\x6d\x3c\x7c\xff\x9d\ +\xd8\xcc\x60\xb7\x49\xd8\x2c\x12\x16\x8b\x84\xd9\x64\xa4\x40\x47\ +\x6a\x76\x43\xa5\xac\x24\xfd\xdf\x3b\xeb\x5d\x7c\xb7\x6a\x0b\xcf\ +\x7e\xf4\x2b\xaf\x2f\xfa\x9d\xe5\x65\x3b\xf0\x05\xe5\x76\x95\xab\ +\x6b\x4b\x29\xbb\x64\x40\x1c\xfb\x9e\x44\x9f\x65\x54\x00\x6b\xf5\ +\xb9\xb6\x64\x3f\xee\xea\x32\x7c\x56\x8b\x89\x23\xa6\x8d\xe1\xb6\ +\xcb\x4f\xe6\xb0\xfd\x46\xe1\xb4\xdb\xc3\x4e\x9b\x21\xfd\xb4\x49\ +\x14\x31\x49\xa1\x4d\x68\xb6\x47\x16\x52\x3c\x7a\xa6\xb8\x0d\x2a\ +\xe9\xcb\xad\x57\x9d\x4f\xdf\x5e\x3d\xa2\x4a\xbe\x11\x53\x37\x93\ +\x98\x52\x70\x7b\x7a\x5b\xb9\x7a\x0d\x4d\x8d\x0d\x64\x67\xa6\x93\ +\x91\xee\xc4\x6e\xb3\x62\xb5\x9a\x91\x24\xbd\xf4\x5c\x22\xbf\xb1\ +\xb6\x02\x78\xe8\xcf\xb2\x0d\xe5\x40\x78\xc1\x33\xdb\xc0\xda\x94\ +\x45\xe4\x83\x01\x0a\x0b\x0a\x3a\x14\x5d\xb5\xf6\x5c\x22\x53\xa1\ +\x10\x98\xef\xac\xda\xce\x79\x97\x5f\x8a\xcf\x17\xed\xeb\x72\xf0\ +\x01\x07\xf0\xdc\x83\xf7\x50\xef\x51\xd9\x52\xed\x67\x63\xa5\x97\ +\xd2\xed\x5e\xbc\x7e\x85\xa0\xac\x83\xa8\xae\x0b\xd7\x69\x0a\x2d\ +\x12\xbc\xe3\x4a\x48\xd1\xee\xbf\x43\xf2\x45\x0f\x8a\x5e\x85\x44\ +\x68\xa6\x60\x4c\x26\x11\x9b\x49\xc0\x66\x98\x85\xd9\xac\x12\x69\ +\x36\x09\x55\x35\x85\x39\xd4\xac\x9c\x9e\xdc\x72\xeb\x3f\xb9\xe9\ +\xba\xcb\xf1\x7a\x9b\x0b\x73\xac\x5c\xf1\x2b\x2f\xcc\x9b\xcb\xd9\ +\x17\xce\x46\x0d\x29\x6b\xb4\x90\x8f\xb2\x80\xa6\x68\xcd\x75\x19\ +\x43\xd6\xbd\x46\x0d\xc3\x90\xf7\x4c\x9d\xcb\xcb\xd2\x75\x3e\x96\ +\x95\x6e\x27\x2f\xd3\x41\x49\x8f\x2c\x06\xf6\xc9\xc1\x96\x80\x7e\ +\x49\x58\xaf\x36\x64\x36\x27\xb6\x2d\xf2\x4d\xe4\xab\x9d\x48\x46\ +\xdc\xde\x68\xbc\xb5\x52\x7a\x2d\x9d\x5b\xaa\xb2\x64\x2d\x66\x13\ +\x33\xf6\x1b\xcd\x41\x93\x46\xb0\x70\xe9\x2a\x16\xff\xb2\x16\xaf\ +\xdf\x8f\x64\x78\x6d\xeb\xf3\x3c\x5d\xe9\xa0\xaa\x2a\x1a\x1a\x92\ +\x20\x46\xd4\xd2\x6c\x75\xe9\x70\xb7\x6c\x59\x19\xe9\xfc\x75\xd6\ +\x39\x3c\xf7\xda\xfb\xfc\xb0\x6c\x65\xd2\xfd\x54\x55\xc3\x1f\x08\ +\xe2\x91\x3a\x77\xe1\x2f\xbd\xe8\x6c\xba\xe7\xe7\xe1\x71\xfb\xf0\ +\xf9\x03\x04\x65\xc3\x00\xcb\xeb\x23\x10\x08\xe0\x0f\xf8\xf1\xb8\ +\xbd\xec\xdc\xb9\x93\x6d\x15\xdb\xa9\x6f\x68\x4c\xc9\xf7\x5e\xb8\ +\x68\x31\x27\x1e\x7f\x0c\x6e\x8f\x17\x97\xdb\xab\x47\xe6\x81\x20\ +\x8a\xac\xa0\x68\x6a\xf8\xf7\x8c\x9d\xe1\xb7\xd5\x09\x22\xa4\x5c\ +\xe9\xdf\xac\x5c\x19\x0c\x54\xa5\x0a\xc8\x8d\x85\xce\x5e\x29\xeb\ +\x28\x89\x40\xdc\xe7\xf7\x70\xde\xa5\x97\x50\x59\x15\x6d\x76\xd5\ +\xbf\xa4\x98\x47\xee\xbb\x1f\x4d\x13\x71\x9a\x45\x06\xe6\x9b\xe8\ +\x9f\xe7\xe4\xa0\x21\x50\xe3\x0a\xb0\x61\xa7\x97\x8d\x95\x1e\x36\ +\x54\x7a\xa8\x77\x07\x75\x3a\x42\x6d\x6d\xee\xa3\xb5\xeb\xe9\xd8\ +\x1d\xb4\x08\xb1\x4b\x50\x56\x09\x06\x35\x5c\xbe\x66\xcd\xb9\x59\ +\x12\x31\x9b\x04\xd2\xed\x12\x59\xe9\x66\xb2\xd2\x2d\x74\x4b\xef\ +\xc1\xa5\x57\xde\xc8\x83\xff\xba\x3d\x6a\x70\xf9\xfc\xd3\x8f\xe8\ +\x59\xd0\x87\xe9\x87\x1d\x6f\xf0\xfb\x92\x91\x7d\xda\x4c\xaf\x84\ +\x7c\x9d\xc3\x56\xbd\x26\x41\x8f\x04\x4d\x02\x52\xb8\xe8\x2b\x78\ +\xfc\x01\x56\x6c\xda\xc9\xaa\xcd\x95\xe4\x64\xd8\xe9\x9b\x9f\x45\ +\xbf\x9e\x59\xd8\xac\xa6\x68\x51\x4e\x92\xa4\x92\xd6\x00\x31\x91\ +\x87\x48\x4b\x11\x7f\x57\xd0\x36\x6d\x05\xe7\x54\xda\x1e\x98\xcd\ +\x12\x87\xec\x33\x92\xe9\x93\x87\xb3\xf8\x97\xb5\x2c\x59\xb1\x1e\ +\x8f\x37\x80\x20\x10\xb1\x48\x26\xa2\x68\x0a\x62\xa8\x00\x71\x84\ +\xd5\xc4\x9e\xd8\x24\x49\xe2\xc2\x53\x8f\xa5\xb0\x57\x4f\x16\xbc\ +\xf5\x11\x4d\x6e\x1f\x7e\x7f\x10\x59\x96\xd1\x50\x91\x44\x13\x99\ +\xe9\x76\x0a\x7a\x74\x23\x3f\x27\xa3\x53\x9f\x95\x9f\xdf\x9d\xbc\ +\xbc\xee\xd4\x98\x9a\xc0\xe5\x46\xf3\xf9\x41\x54\x30\x59\x9c\x86\ +\x55\x87\x80\x24\x49\x8c\x1e\xa3\xd7\x56\x55\x14\x99\x2d\x5b\xb6\ +\xb0\xec\x97\xe5\xac\x5b\xbf\xa1\x8d\x65\xdc\x5a\x6f\xdb\x77\x54\ +\xb2\x69\xd3\x66\x72\x72\x73\x68\x72\x79\xf0\x7a\xbd\xf8\x7c\x01\ +\xe4\x60\x10\x51\x11\xf4\x7a\xa0\x2d\x26\x08\x69\x2d\x06\x87\xa5\ +\x11\x5a\xf2\x08\xac\x5d\x94\x52\x20\x2f\x4c\x01\xb5\x12\x79\xf3\ +\x87\xa6\xd9\x21\x30\x7f\xf0\xd1\xb9\xac\x5a\xb3\x26\x6a\xff\x8c\ +\xf4\x74\x9e\x7b\xec\x71\x1c\x8e\x74\x14\x45\xf7\x2a\xd1\x17\x31\ +\xf5\x2d\xdb\x61\x61\x5c\xb1\x85\xb1\x45\x99\x08\x02\xd4\xba\x82\ +\x6c\xa8\x74\xb3\x61\xa7\x87\x8d\x95\x6e\xea\xdc\xc1\xd6\x91\x5a\ +\x6b\x37\x9a\x47\xd3\x35\xc6\x92\x97\xa6\xa9\xa8\x46\x14\xad\x97\ +\xa4\x12\x68\xd2\x40\x56\x35\x7c\x7e\x05\x8f\x57\xa6\x47\xd1\x18\ +\x8e\x3c\xee\x74\xde\x7f\x6b\x41\xd4\x71\x16\xbc\xf0\x0c\x83\x87\ +\x8f\x23\x3d\xbb\xa7\x6e\x15\x2a\x08\x98\x44\x11\x4d\x52\x51\x55\ +\x31\xdc\x99\xc3\xdc\xbd\x59\xc4\x6a\xd6\x69\x18\x53\xa8\x50\x86\ +\x10\x5d\x79\x25\xa0\xc8\xac\xdf\x56\xc5\xfa\x6d\x55\x64\xa7\xd9\ +\x28\xc8\xcd\xa0\x28\x3f\x13\x4b\x84\x4e\xbd\x3d\x45\x31\x12\x01\ +\x77\xe4\x80\xdc\x15\xfc\x78\xa2\x28\xbc\xbd\x99\x8c\xa9\xc8\x94\ +\x0d\x9d\xb7\x49\x12\xd9\x7f\xc2\x10\xa6\x8e\x1b\xc4\xb2\xd5\x1b\ +\xf9\x79\x75\x19\x8d\x4d\x1e\x64\x59\x21\x10\x94\x31\x2c\x3b\xf4\ +\x4c\xc7\xbd\xc4\x7b\xe1\x90\xa9\x13\xe9\xd9\x3d\x97\xab\xef\x98\ +\x4b\x55\x55\x2d\x92\x49\xc4\x66\x31\xe3\x70\xd8\xba\xec\x33\xdc\ +\x6e\x1f\xa2\xa9\x89\xca\xea\x3a\x1a\x1a\x5d\xb8\x3d\x5e\x02\x41\ +\xd9\x30\xa7\x22\x5c\x71\xc8\x64\x92\xb0\x5a\xcc\xd8\x2c\x66\xba\ +\xe5\x76\xe7\xb8\x63\x8e\x41\x91\x03\x2c\xfe\xe1\x47\x16\xff\xb0\ +\xb4\xcb\xa2\xf2\xd3\x4f\x3d\x99\x34\xa7\x03\x97\xdb\x83\xc7\xe3\ +\xc3\x27\x49\x88\xa2\x8c\xaa\x46\xdc\x04\x9a\xd6\x4e\xcc\xd0\x68\ +\x68\x6c\xa4\xa6\xb6\x2e\x56\x4b\x4e\x4a\x81\xbc\x6f\x41\x6a\x38\ +\xf2\x48\x00\x90\x24\x7d\xdb\x51\x59\xc1\x73\x0b\x5e\x8a\x26\xf6\ +\x45\x91\x47\x1f\x78\x80\xa2\x80\x81\x7d\x52\x00\x00\x20\x00\x49\ +\x44\x41\x54\xbe\xc5\xc8\xb2\x0e\xe0\x21\x30\x8f\xbc\xe9\x23\xaf\ +\x67\xb7\x34\x33\xdd\xd2\xb2\x18\x5f\x92\x05\xe8\xa5\xe9\x36\xec\ +\x74\x53\xb6\xd3\xcd\x86\x9d\x6e\x6a\x9b\xfc\xed\x9b\x0b\xc5\xbe\ +\xa6\xb5\x06\x1e\x06\xad\x13\x92\x33\x1a\x2a\x17\x41\x33\xb2\x44\ +\x45\x38\xe0\xb0\x53\xa8\xd8\xb2\x91\x65\x4b\x17\x47\x4c\x51\x55\ +\x5e\x7b\x65\x3e\xa7\x9c\x7b\x3d\xb5\x8d\x7e\xea\x5d\x01\x5c\x9e\ +\x20\xc1\xa0\x02\x08\x98\xcd\x60\xb3\x98\x48\xb3\x4b\x64\x38\xcd\ +\x2c\x5d\xfc\x15\x9a\xe2\xd3\x81\x5c\xd2\x15\x37\x42\x04\x89\x17\ +\xa6\x4b\x24\x89\xb4\xb4\x74\x9c\xce\x34\x9c\x69\xe9\xa4\xa7\x67\ +\x30\xa0\xa4\x84\x1e\x39\xe9\xf4\xe9\x9e\x81\xc5\x64\x4a\xea\x6f\ +\x9d\x08\xd0\x23\x7f\xbb\xe5\x2b\x57\xf2\xcd\x77\x8b\x93\xd2\x2d\ +\x5d\xd1\x42\xe7\x95\x9e\x9e\xce\xf9\x67\x9e\x16\x75\x5e\xaf\xbf\ +\xfd\x1e\x2f\xbf\xf6\x16\xaf\xce\x7f\x12\x8b\xd9\x1c\x07\xe2\x5d\ +\x05\xe6\xb1\x03\x98\xaa\x2a\xcc\x7d\x72\x5e\x78\x8a\x5d\x53\x55\ +\x47\x5a\xb7\x9e\xd8\x6c\x19\xf8\x03\x41\x54\x55\x09\x5b\x3b\x34\ +\xf3\xc9\x7b\x76\x1b\x3e\xa8\x84\x57\x1f\xb9\x8d\xeb\xfe\xf1\x08\ +\xbf\xfd\x5e\xda\xee\x80\xa7\xb5\xe6\xf3\xfb\xc1\xe5\xa6\xbe\xd1\ +\x45\x5d\x5d\x23\x2e\xb7\x17\x9f\x41\x69\x34\x07\x7e\x22\x26\x93\ +\x5e\x5a\xce\x62\xd1\x8b\x59\x38\xed\x36\xd2\xd3\x1c\x4c\x9b\x36\ +\x8d\xa1\x43\x06\xf3\xc6\x5b\xef\x51\x57\xdf\xd0\xa9\x73\x69\x6c\ +\x72\xb1\x6e\xdd\x7a\x0a\x7a\xf5\xc2\x61\xb7\xe1\xb2\x58\x30\x9b\ +\xfd\x04\x83\x41\x04\x21\x26\x39\xa8\x1d\x8a\x95\xd0\x3f\xcb\x36\ +\x96\x33\x74\xc8\xe0\x5d\x03\xe4\xb9\xdd\xba\xe1\xb0\xdb\xbb\x1c\ +\xc0\x13\xd1\x2a\xa2\x08\x0f\xcc\x9d\x13\x97\xde\x7e\xfd\x95\x57\ +\x70\xe0\xd4\xfd\x91\x65\x1d\xbc\x13\xd9\xc1\xb6\x76\xa3\x66\x3b\ +\xcd\x8c\x2b\xc9\x62\x9c\x01\xec\x0d\x21\x60\xdf\xe1\xa2\x6c\xa7\ +\x8b\xea\x46\x7f\xeb\x00\xae\xb5\x11\xea\x23\xc0\x5c\x05\x74\x41\ +\x8c\x06\x41\x8c\x5a\xa2\x72\x38\xf1\xe9\xd4\xf3\xaf\xa6\xa2\x62\ +\x33\x3b\x2a\xb6\x86\xdf\xff\xeb\xcf\xdf\x73\xc0\xa1\xa5\x64\xe4\ +\x16\xe3\x0f\x2a\xba\x0a\xc7\x90\x52\xaa\x41\x40\xd3\x01\xc2\x6c\ +\x12\xf9\xfa\xd3\xb7\xa9\xaf\xab\xea\xd0\xef\xe0\x74\x3a\x19\x3c\ +\x78\x18\x83\x87\x0e\x63\xf2\xe4\x29\x4c\x1c\x3d\x9c\x3e\x79\x7a\ +\xa4\xde\xd6\xc2\x05\x82\x00\x3f\x2e\xfd\x99\xdb\xef\x79\x60\x97\ +\x00\x49\x9f\xde\x05\x5c\x70\xd6\x69\xe1\x6b\xac\x53\x5a\x41\xbe\ +\x5a\xf4\x1d\xd7\xdc\x7c\x2b\x8f\x3e\x70\x77\xc2\xba\xaa\xa9\x88\ +\xcc\x65\x45\x8e\xfb\xde\x8f\x3e\x70\x37\x43\x86\x8d\xe2\xbb\x65\ +\x6b\xa9\x6b\x68\xd2\x29\x15\x51\x0c\x57\x95\xdf\x1b\x5a\x4e\x76\ +\x26\x4f\xdf\x7b\x13\x0f\x3c\xf5\x32\xef\x7e\xba\xa8\x23\x13\xd8\ +\xa4\x2d\x10\x90\x51\x05\x3f\x6e\x8f\x97\x26\x97\x97\x26\xb7\x07\ +\x9f\x3f\x80\x22\xcb\x11\xb6\x15\x9a\x0e\xe6\x92\x88\xd9\x6c\xc6\ +\x6a\x35\xe3\xb0\x59\xf5\xa8\xd9\xe7\x27\x27\x3b\x93\x4b\xfe\x72\ +\x1e\xf3\x9e\x7b\x91\xca\xaa\x9a\x4e\x9d\xcf\xda\xf5\xa5\x0c\x1a\ +\x34\x00\x87\xdd\x8a\xd5\x66\xc6\xe4\x95\x90\x24\x11\x39\x68\x50\ +\x65\x6a\x5b\x80\x3b\xf1\x85\x29\xdd\x58\xce\xc4\x71\x63\xc8\xcf\ +\xeb\xc6\xce\xaa\xda\xd4\x00\xb9\xa5\xf0\x44\x33\x50\xd2\x95\xb4\ +\x4a\x22\x75\x43\x24\x88\xaf\x2b\x5d\xc7\xeb\xef\x44\x9b\x60\xf5\ +\x2a\x28\xe0\xd2\x0b\x2e\x0a\x47\xe0\x91\x40\x9e\x08\xc4\xdb\x3a\ +\x8d\xcf\x74\x98\x19\x5b\x92\xc5\x58\x03\xd8\x1b\xbd\x41\x1d\xd4\ +\x8d\xad\xb2\xde\xd7\x0e\x92\x35\xde\xd0\x52\x37\xda\x09\x81\xb9\ +\x9e\x11\xa6\x29\xaa\x51\xf4\x59\x0b\x7b\xb5\x58\x4c\x16\x8e\x3b\ +\xe9\x5c\x9e\x98\xf3\x8f\xa8\xf7\x7f\xf0\xe6\xf3\x5c\x70\xe5\x9d\ +\xf8\x02\x12\xfe\x80\x42\x30\xa8\x73\x16\x22\x3a\x80\x5b\xcd\x12\ +\x0e\x9b\xa9\x53\x91\xaf\xdb\xed\xe6\xe7\x9f\x7f\xe2\xe7\x9f\x7f\ +\x62\xc1\x8b\xcf\x31\x74\xf8\x68\x0e\x9e\x71\x2c\x13\xc6\x8e\xa7\ +\x77\xf7\x4c\xfa\xf7\xee\x86\xd5\x6c\x8e\x4f\x76\x8d\x55\x9d\xec\ +\x62\x20\x49\xf6\x9d\x17\xfc\xf7\x4d\x06\xf6\x2f\x61\xf6\x65\x17\ +\xa5\x8c\x66\x89\x5d\x13\x88\x6d\xa2\x08\x63\x87\x95\x30\x6a\x48\ +\x31\xcb\x56\x6d\xe0\xfb\x5f\xd7\x10\xe8\xa2\x24\xa0\xb5\x1b\xb6\ +\x52\x53\xd7\x48\x76\x66\xc6\x1f\x0e\xe6\x26\x93\xc4\x4d\x97\x9f\ +\xc5\xf0\x81\x25\x3c\xf6\xc2\x1b\x2d\xdc\x09\xed\x6b\xb2\xa2\xa0\ +\x05\xf5\x05\x4e\x9f\x3f\x80\xd7\xe7\xc7\xef\xd7\xab\xfa\x84\x24\ +\xc4\xcd\xfe\x2e\x3a\x7f\x6f\x36\x9b\xf0\x5a\x7c\x78\x7d\x3e\xfc\ +\x81\x20\xc1\x40\x90\xbc\xdc\x2c\xce\x3e\xe3\x54\x9e\x9a\xf7\x3c\ +\x8d\x71\xb6\x03\x6d\x6f\xdb\x2a\x76\xa0\xaa\x0a\x36\x9b\x15\xab\ +\xc5\x82\xd9\x64\xd2\x7d\x65\x44\x81\x76\xa7\x04\xc4\xa4\xf4\x87\ +\x3c\x57\xfa\x17\x16\xb0\xb3\xaa\xb6\xc4\xc0\xdc\x60\x97\x02\x39\ +\xd0\x03\x30\xf5\xec\xde\xbd\x43\x7c\x67\x6b\x32\xb6\x44\x40\x7e\ +\xcf\x83\x0f\xc4\xd9\x45\x5e\x7d\xd9\x65\x48\x92\x39\x69\x34\xde\ +\xd1\x1b\x33\xf6\xfc\x32\xec\x66\xc6\x96\x64\x33\xb6\x44\x4f\x50\ +\x6a\xf2\xca\x94\xed\x68\xa2\x6c\x47\x13\xa5\xdb\x5d\xec\xa8\xf3\ +\xb4\x4e\xc1\xc4\xfc\x50\x71\x34\x8b\xa2\x21\x03\xfe\xa0\x8a\x28\ +\x2a\xba\x47\x8b\x59\x64\xc0\xb0\x09\x14\x95\x0c\xa0\x7c\xc3\xfa\ +\xf0\xbb\xd7\xaf\x5d\xc5\x86\xb5\xbf\xd0\xb3\x68\x04\x3e\x9f\x44\ +\xc0\xac\x18\x6e\x7c\x1a\x26\x09\x83\x1b\x17\xbb\x74\xba\xbe\x7a\ +\xe5\xaf\xac\x5e\xf9\x2b\x25\xfd\x07\x73\xe2\xe9\x97\x60\x71\x64\ +\x91\x97\xe9\x64\x60\x9f\x1c\x86\x16\x77\xc7\x6e\x35\x27\x1c\x8c\ +\x77\x35\x92\xc7\x0e\xdc\x91\xe7\x74\xdb\xdd\x0f\xd0\xbf\xa4\x90\ +\xa3\x0f\x3f\x94\xd8\x8a\x7e\x5d\x4d\xb3\xb4\xd4\xc7\x45\x41\x60\ +\xdc\xb0\x7e\x8c\x1d\x5a\xc2\xf2\x35\xe5\x2c\x5a\xba\x8a\xcd\xde\ +\xda\x88\x32\x74\xed\x6f\x0d\x4d\x1e\x1e\x79\xf1\x3d\x86\x0d\x2c\ +\x66\xc6\xd4\x09\x58\x2d\xe6\x3f\x1c\xd0\x8f\x3a\x64\x5f\xfa\x97\ +\xf4\xe2\xe1\x79\xaf\x76\xc9\xf1\x54\x0d\x34\x45\xd1\xf3\x40\x8c\ +\xa2\xca\xc1\xa0\x1c\xd6\x71\x6b\x91\x3a\x7d\x41\x40\x10\x83\x98\ +\x82\x12\xc1\x48\xbd\xb7\xa2\x9b\xec\xf5\xe8\x9e\xc3\xa9\xa7\x1c\ +\xcf\x53\xf3\x5e\xec\xd4\x39\x6d\xdd\xba\x8d\x9c\x9c\x3c\xac\x16\ +\x33\x66\xb3\x09\x93\xc9\x64\xd0\x2b\x7a\x96\x6b\x32\x39\xb9\x16\ +\xcf\xa6\x44\xb5\xf2\xcd\x5b\x00\xe8\x5d\xd0\x3d\x84\xcd\x3d\x80\ +\x2d\x5d\x0d\xe4\xe9\x00\x4e\x7b\xd7\x3b\xb7\xc5\x2e\x74\x8a\x22\ +\x2c\x59\xb6\x84\xcf\xbf\xfe\x3a\x6a\xbf\xe2\xc2\x42\x4e\x3a\xee\ +\x84\xa8\x68\xbc\x3d\xb5\x0a\x3b\xd3\xd2\xed\x26\x46\x17\x67\x33\ +\xc6\x00\x76\xb7\x4f\xa6\x74\x47\x13\xa5\x15\x4d\x94\x6e\x6f\xa4\ +\xa2\xc6\x93\xc4\x76\x58\x8b\x07\x0f\x42\x60\xae\xfb\xb8\x07\x65\ +\x0d\x51\x10\xf0\x4a\x0a\x16\xb3\x82\xcd\x2c\x72\xc4\x71\x67\xf0\ +\xd8\xbf\x6f\x8b\x7a\xef\xfb\x6f\xbe\xc0\x15\x37\x3d\x80\xcd\x2a\ +\xe1\x0b\x4a\xba\x9c\x52\x15\xc2\x7a\x65\xb3\x49\x8c\x03\x13\xb3\ +\xd9\xcc\xe0\xc1\x43\x9a\xed\x79\x8d\x04\xa3\x40\x30\x88\xdb\xd5\ +\x84\xdb\xd5\x84\xc7\xe3\x6e\x71\xc5\x7d\x43\xe9\x1a\x1e\xbd\xff\ +\xaf\x9c\x72\xe6\x25\x50\x3c\x9c\xd2\xad\x35\xbc\xf6\xd5\x2a\xfa\ +\x74\xcf\x64\xf4\x80\x9e\x8c\x19\xd8\x93\x34\x47\x33\x88\x24\xc2\ +\xb3\xa1\x83\x06\x90\x93\x93\xdd\x76\xfa\xb0\x8d\xad\x7b\x5e\x6e\ +\x3c\xa0\x46\x5d\x6f\x8d\x8b\xae\xb8\x81\x8f\xdf\xea\xc5\xe8\x11\ +\xc3\xe2\xd6\x51\x52\x3e\x5b\x88\xeb\xeb\x02\x63\x86\x16\x33\x76\ +\x58\x11\x1b\xb7\xee\xe0\xa9\xc7\x3a\x67\xf3\xaa\x28\x2a\x1f\x7d\ +\xbd\x94\x0f\xbf\x5a\xca\xe9\x47\x1f\xc8\xb4\x89\x23\xfe\x70\x30\ +\x1f\xd2\xbf\x88\x7f\xdd\x72\x39\xf3\x5f\x7b\x1f\xb7\xa7\xa9\xb3\ +\xc3\xb4\x51\x78\x45\x77\x28\xd5\x5d\x4a\x15\xa3\xae\xa6\x51\x28\ +\x39\xa4\xde\x32\x8a\x61\xa8\x72\x73\x21\xe6\x50\xbf\x96\x24\x01\ +\x8b\xd9\x44\xaf\x82\x3c\x06\xf6\x2f\x61\x5d\xe9\x86\x0e\x9f\x51\ +\xe9\x86\x72\x7a\xf5\xea\x85\xcd\x66\xc1\x62\x36\xe9\x7a\xf2\x08\ +\x83\xb0\x38\x8b\xdb\x36\x76\xb6\x86\x46\xfd\x5a\x45\x14\x23\x49\ +\x4f\x05\x47\xae\x03\xb9\xc3\x91\x52\x6a\x25\x04\xe6\xf7\xcf\x9d\ +\x13\xb7\xff\x35\xb3\x66\x21\x0a\x12\xb2\x92\x9c\x1b\xdf\x55\xcd\ +\x69\x33\x31\xaa\x28\x9b\x51\x45\xd9\x08\x02\x78\xfc\x32\xa5\xdb\ +\x9b\x28\xad\x68\x64\x7d\x45\x23\x5b\x6b\x5c\x49\xcf\x4b\x0b\x75\ +\x38\x55\x45\x40\x40\x31\xa4\x8a\xfe\xa0\x80\xcf\xaf\xe0\xb5\x88\ +\x14\x0f\x1c\xcd\x80\x41\xc3\x58\x1f\x61\xcd\x5b\xb1\x75\x13\xbf\ +\xff\xf6\x3d\x45\x03\x27\x62\x35\x8b\x28\xaa\x88\xaa\x68\x48\x92\ +\xa1\x1d\x4f\x50\x26\x2f\xbb\x5b\x37\x6e\xbf\xeb\x3e\x5c\x9e\x20\ +\x6e\xaf\x8c\x2f\x20\x13\x94\x95\x70\x55\x27\x51\x10\xd0\x54\x99\ +\x8a\xad\x1b\x28\xdf\xb0\x96\xb5\xab\x97\xb3\x66\xf5\x8a\xb8\xe3\ +\x78\x3c\x6e\xe6\x3f\xf5\x00\x27\xcc\x3c\x9f\x21\xa3\xf7\x43\xd3\ +\x34\xca\x2b\xea\x58\x5b\x5e\xc5\x7f\x3e\xfb\x8d\x61\xfd\xf2\x98\ +\x3c\xac\x37\x23\x07\x24\x2e\x71\xf6\xf7\x9b\x67\x73\xd4\x8c\x83\ +\xbb\x64\xe0\x8d\x9d\x7d\xc5\x2d\xbe\xc6\x5c\x06\x8f\xd7\xcb\xcc\ +\x73\x2f\xe1\xeb\x0f\x5f\xa7\x67\x7e\x7e\x98\xe6\x4a\x45\x54\xde\ +\xda\x6b\xcd\xbc\xae\x40\xff\xc2\x9e\x38\x1d\xd6\x2e\xe9\x8f\xd5\ +\xb5\x8d\xdc\x39\xf7\x65\x86\x0e\x28\xe4\xaa\xf3\x8e\xa3\xb8\x77\ +\x8f\x3f\x14\xcc\xb3\x32\xd3\xb9\xea\x82\x53\x78\xff\xf3\x85\x9d\ +\x9e\x6e\x69\xe1\x4d\x0d\xd3\x29\x6a\xc4\xbf\x43\x03\x76\x28\x8f\ +\x43\x45\xd0\x95\x62\xc6\x8b\xa2\x28\x60\x36\x4b\xd8\xac\x16\xd2\ +\xd2\x1c\x1c\x78\xc0\xd4\x4e\x01\x79\xd9\x86\x4d\x1c\xb8\xff\x54\ +\xcc\x66\x33\x26\x93\x64\x00\xb9\x48\xc8\x67\xa6\x59\x4a\xde\x16\ +\x99\x73\xf3\x3e\x6e\x8f\xc7\x00\x72\x47\xea\x81\xdc\x91\xa2\x88\ +\x3c\x32\x1a\xaf\xa9\xad\xe6\x87\x25\x4b\xa2\xf6\x19\xd8\xbf\x3f\ +\xc7\x1e\x71\x54\xd2\x48\xfc\x8f\xae\xa8\xe3\xb0\x9a\x18\x59\x94\ +\xcd\xc8\x22\x3d\xea\xf4\x05\x64\xca\xb6\x37\xb1\xae\xa2\x81\xf5\ +\x15\x8d\x6c\xa9\x74\x35\xfb\xa6\x84\x68\x16\x63\xea\x28\xa8\xa0\ +\xa0\x9b\x6b\xf9\x82\x32\x1e\xbf\x88\xcd\x2f\x72\xe4\xf1\x67\xf2\ +\xd0\x3d\x37\x47\x7d\xce\x6f\x3f\x2f\x66\xd0\xf0\x29\x58\x2d\x12\ +\x41\x45\x45\x41\x0d\xf3\x83\x62\xc2\xac\x1e\x70\x7b\x65\x1a\xdd\ +\x01\x9a\x3c\x41\xbc\x3e\x19\x7f\x50\x09\x7b\x7c\x08\x46\xb4\x92\ +\x9e\x53\xc8\xf8\x1e\x25\xec\x7b\xc0\x91\xd4\x54\x6e\xe5\xcb\x4f\ +\xdf\x61\xc9\x0f\xdf\xc6\x1d\xee\xed\xd7\x9f\x27\x27\x2f\x9f\xdc\ +\x9e\xfd\xc3\xd1\x90\x2c\xab\xac\xdf\x5c\xc3\x8e\x9a\x26\xbe\xfb\ +\x6d\x23\x9b\x37\x57\x25\x04\xdf\x64\x75\x4a\x3b\x43\xa5\xc4\xaa\ +\x51\x92\xb5\xed\x3b\x2a\x39\xe5\x9c\x4b\xf8\xf4\xad\x97\xb1\xd9\ +\xec\x88\x62\x7c\x79\xbd\xce\xd0\x72\xad\x81\x78\x6a\x82\x8d\xf8\ +\x83\xfe\xbc\xb2\x94\x33\x66\xdf\xcb\xcc\x23\xf7\xe7\xa2\x53\x67\ +\xe0\xb0\xdb\xfe\xb0\x7b\x42\x92\x24\x0e\xda\x6f\x7c\x4a\xbe\x67\ +\x73\x9f\x6a\x56\x81\x45\xa6\xe1\x28\xaa\x86\x26\x43\x00\x01\x93\ +\x14\xc0\xe3\xf1\xe1\xb2\xfb\x68\x6a\x72\xd3\xb7\x77\x3e\x59\x59\ +\x99\xd4\x77\x50\xc5\x22\xcb\x32\xf5\xf5\xf5\x58\xcc\x66\x4c\x26\ +\x13\x92\x28\x85\xf3\x39\x5a\x3a\xdf\xa4\xaf\x85\xea\x2a\xb8\x75\ +\x20\x77\x76\x20\x22\x17\xdb\x0f\xe4\xb6\x94\x80\x78\xe4\xf6\xe5\ +\x37\x0b\xe3\xa6\xfa\x57\x5e\x7c\x31\x82\x20\xc6\x2d\x70\xee\xae\ +\xce\x99\x76\xab\x89\xe1\x45\xd9\x9c\xb0\x4f\x11\x37\x9e\x34\x92\ +\xfb\x2f\x9c\xc4\xac\xa3\x87\x72\xe8\xd8\xde\x14\xf7\x48\x47\x14\ +\x9b\x33\xc1\xf4\xe9\xa2\xaa\xfb\xbc\x04\x55\xfc\x01\x05\x9f\x5f\ +\xa1\x4f\xf1\x50\x06\x0c\x1a\x1a\x75\xdc\xdf\x57\xfe\x82\x24\xa8\ +\x58\x2d\x22\x16\x49\x97\x5d\x85\x32\x3a\x13\x4d\xe5\x35\x4d\xc3\ +\xeb\x97\x71\x79\x65\x1a\x5d\x01\xea\x1a\xfd\xd4\x36\xf8\xa8\x35\ +\x1e\x6b\x1a\x7c\xd4\xd4\xeb\x8f\xd5\xf5\xfa\xbf\xed\x19\x3d\x98\ +\x79\xd6\x2c\x2e\xba\xec\x5a\x6c\xb6\xe8\xdf\x5b\x55\x14\x16\x3c\ +\x3b\x07\xd9\xdf\x48\x9a\xc3\x8c\xc3\xa6\xd7\x65\x0c\x9d\x87\x06\ +\x34\xb8\xe2\x8b\x9b\x04\x65\x35\x6e\x00\x8e\xfc\x2d\xdb\xb3\x45\ +\x1e\xa3\x3d\x7d\x60\xf9\x8a\xd5\x5c\x30\xeb\x5a\x40\x4d\x98\xca\ +\x9f\x92\x40\xe0\x0f\x08\x2e\x54\x45\x65\xc1\x3b\x5f\x70\xe2\xa5\ +\xff\xe0\xc3\xaf\x7e\x62\x6f\x69\x5a\x02\xca\x25\x9e\xba\x6c\xf6\ +\x20\xd2\x5d\x0a\x75\x1d\xbf\xdf\xc8\x06\x75\x7b\x7d\x78\x3c\x3e\ +\x06\xf6\x2f\xe9\xd4\xb9\xf8\x03\x7e\x4c\x66\x29\x1c\x91\x87\x2d\ +\x09\x92\x76\x22\xad\x55\x3c\x77\xb9\xf5\x45\xd8\xb4\x66\x1d\x7e\ +\xea\x80\xbc\x35\x8e\xbc\xad\x0b\x9d\xb1\x89\x22\x91\x11\xf9\x67\ +\x5f\x7d\x11\x3d\x6d\x90\x24\x0e\x3e\xe0\xc0\xf0\x8d\x9c\x2c\x2a\ +\xeb\xe8\xb9\xec\x8a\xe7\xec\x56\x89\x61\x85\xd9\x1c\xbf\x6f\x11\ +\x37\x9c\x3c\x9a\x07\xff\x32\x85\x2b\x8f\x1b\xc1\x8c\xf1\x7d\x28\ +\xee\x91\x81\x20\x18\x7c\x79\x50\xf7\x87\xf1\x05\x55\xfc\x01\x95\ +\x51\x63\xa7\x44\x77\x20\xbf\x8f\xf2\xd2\x15\x58\x4c\x12\x16\xb3\ +\x68\xd4\x2f\x15\x92\x66\x0a\x6a\x80\x2f\xa0\xe0\xf5\xc9\xb8\xbd\ +\x41\x5c\xde\x20\x4d\x9e\x20\x4d\xee\x00\x0d\xee\x00\x8d\xae\x00\ +\xf5\x2e\x3f\x75\x4d\x7e\xea\x1a\x0d\x80\x6f\xf4\x53\xdb\xe8\xa3\ +\xdf\xe0\xb1\x5c\x7b\xf3\x5d\x71\x60\xee\xf1\xb8\x59\xf8\xe9\x5b\ +\x38\x6d\x66\xec\x56\x13\x56\x8b\x84\x59\x12\x8d\x3a\xa6\x89\x65\ +\x75\xdf\x2d\x2f\xe7\xad\xaf\x56\xb1\x74\xf5\x36\x9a\x3c\x81\xa4\ +\x80\xdc\xde\x2d\x32\xda\x6f\x4b\x7b\xff\xe3\x2f\xb8\xf5\xae\xfb\ +\xc3\x7d\x6d\x97\x80\xf9\x1f\x04\x77\x55\xb5\x0d\xfc\xed\xdf\xcf\ +\x73\xc1\x8d\xff\x66\xdd\xc6\xad\xfc\xaf\x34\x9d\x82\xc1\xe0\xd0\ +\x55\x64\x59\x41\x0e\x2a\xf8\x03\x41\xfc\xfe\x00\x5e\x5f\x80\xa2\ +\xc2\x3e\x9d\xfa\x0c\x9f\xd7\x8f\x49\x32\x21\x19\xc5\xa6\x23\xef\ +\xbf\xa4\x60\xae\xb5\xfc\x9b\xb9\xdd\xba\x19\x59\xda\xae\xe0\xc8\ +\x1d\x36\x7b\x9b\x38\xc1\x8e\x44\xe4\xa2\x08\x81\x80\x3f\x9c\x4c\ +\x12\x6a\xe3\xc7\x8e\x25\x2d\x2d\x9d\x60\xb0\x6b\x14\x2a\xbb\x43\ +\xb3\x9a\x25\x86\xf6\xcd\x66\x68\x5f\x9d\x8a\x09\x2a\x0a\xe5\x3b\ +\x9a\xd8\xb8\xa3\x91\x6d\x35\x2e\x1a\xbd\x3e\xfc\x41\x99\x41\xc3\ +\xc6\x02\xf3\xa2\xde\xbb\xea\xb7\x25\x14\x0d\x1c\x85\xcf\x2f\xa2\ +\x18\x84\xaf\x98\x2c\xc1\x44\x0b\xf1\xef\x8a\x3e\x40\x04\x64\x7c\ +\x7e\x85\xa0\x62\xf0\xe4\x5a\xb3\x87\xba\x5f\x12\xf1\x07\x65\xfc\ +\x41\x19\x45\x36\xa3\x6a\x1a\x59\xd9\x3d\x39\xf3\xbc\x4b\x79\xe6\ +\xf1\x07\xa3\x0e\xbb\xf4\xa7\x6f\x39\xe0\x90\x63\xb0\xd9\xb2\xc2\ +\x46\x64\xa6\x16\x2a\xc2\xc8\xb2\x4a\xe9\x96\x1a\x16\x2f\xdf\x4c\ +\x93\x3b\x40\x9f\xfc\x2c\xc6\x0e\xee\xc5\xc4\x61\x7d\x48\x77\x5a\ +\x3b\xdd\x87\xda\xd3\x1e\x7e\x7c\x1e\x03\xfa\x15\x73\xf6\x69\x27\ +\x27\xf4\x71\xd9\x33\xeb\xa4\x26\x3f\xe1\x5f\x57\x97\x72\xc6\x55\ +\xf7\x70\xd2\x11\x53\xb9\xec\xac\x63\x22\x17\xd3\xf6\xf4\xaf\x96\ +\x74\x47\x4d\x0b\x65\x55\xeb\x80\x2e\xcb\xba\xd2\x25\x10\x08\xe2\ +\x0f\x04\xc8\xe9\xd6\xad\x53\xa7\xe4\xf5\x7a\xf5\x68\x5c\x94\x8c\ +\xa0\x20\x46\x31\x16\xd3\x89\xda\xe2\xdb\x14\xe2\xc8\xd3\x1c\xa9\ +\x05\xf2\xb4\xae\xe6\xc8\x13\xa5\xe5\x7f\xff\xd3\x0f\x78\x22\xcc\ +\xa3\x00\x0e\xda\x7f\xff\x84\x11\xdc\xde\xd4\xcc\x92\xc4\xc0\xde\ +\x59\x0c\xee\x9b\xa5\xf3\xb7\x9a\x4a\x55\x83\x87\x7a\x77\x4f\x9e\ +\xc9\xef\xc9\xce\x9d\xdb\x9b\x79\xf2\x5f\x7e\xe2\xd8\x99\x17\x61\ +\x36\x89\xc8\x8a\xa8\xcb\x10\x8d\x48\x38\x51\x07\x51\x8c\x92\x76\ +\x21\x3b\xdf\xa0\xb1\xe9\x2e\x90\xcd\x55\x8f\x4c\x92\x82\xac\x88\ +\xc8\xb2\x8a\x51\x13\x01\x49\x10\x18\x32\x62\x22\x63\xc6\x4e\xe4\ +\x97\x65\xcd\xd3\x74\x55\x55\xf9\xe6\xcb\x0f\x38\xfc\xf8\x73\x90\ +\x15\x8d\xa0\xac\xe8\x86\x51\x49\x84\xe4\xaa\xa6\x9f\x87\xac\xa8\ +\xf8\x83\x32\xbf\xae\xad\xe0\xc7\x15\x9b\x79\xf4\xbf\x8b\x19\x56\ +\x9c\xcf\xbe\x63\x8a\xd8\x67\x64\x21\xe9\x4e\x5b\xbb\xfb\x4f\x6b\ +\x6d\xc4\xb0\x41\x34\xb9\xdc\x94\x6f\x6a\x8e\x4a\xaf\xbe\xf9\x36\ +\x8a\x0b\xfb\x32\x75\x9f\x49\xbb\x5c\xc9\x92\x52\x7c\x4b\x52\x6e\ +\x4c\x55\x55\xfe\xf3\xfe\xd7\x7c\xba\x68\x29\x57\x9c\x73\x1c\xc7\ +\x1e\xb2\xcf\x1e\x9a\x59\xda\xf6\x12\x6a\x3a\x4e\xa8\xa0\xe9\x16\ +\xd0\x8a\x11\x9d\x2b\x8a\x82\xa5\x93\xa2\x0d\xb7\xc7\x13\xa6\x34\ +\x45\x41\x4c\xd0\xe7\xdb\x12\x6d\x46\xbf\xa6\xc8\x2a\x3e\x9f\x3f\ +\x92\x23\x4f\x4b\x21\x47\xde\xf5\x59\x9d\x91\xdb\xa7\x5f\x7d\x19\ +\xb7\xcf\x41\x07\x1c\x90\x74\xa1\x6c\x6f\xac\x30\xaf\x69\x20\x89\ +\x22\xbd\x72\xd3\x18\x59\x92\xc7\xd1\x87\x4d\x8f\x7a\xbd\xa1\xbe\ +\x96\xca\x8a\x8d\x46\x1a\xbe\x60\xf8\x4d\x24\xcf\xc4\xd1\x22\x64\ +\x87\x8a\x1a\xb1\x19\xce\x8d\x7a\xe7\xd6\xad\x76\x7d\x01\xbd\xa2\ +\x92\xc7\xa0\x62\xdc\xbe\x20\x1e\x9f\xcc\xf4\x43\x8f\x8a\x3b\xee\ +\xaa\x15\xcb\xb0\x9a\x75\x8a\xc7\x6c\x12\x8d\xf3\x48\x7c\x1a\x9a\ +\xa6\x7f\x9e\x2e\x21\x53\xc3\x8f\x41\x59\xe1\xe7\x35\x5b\x99\xf3\ +\xf2\xb7\x9c\x7e\xcb\x02\x6e\x79\xe4\x23\x3e\xfa\xee\x77\x1a\x5c\ +\xbe\x36\x5d\xa7\x44\x8f\xb1\x2d\x18\x94\x59\xf0\xcc\x43\x98\x23\ +\xbc\x64\x82\x41\x99\x33\x2e\x9c\x45\xd9\xc6\xf2\x5d\xc7\x97\xff\ +\xe1\x11\x2b\xd4\x35\xb8\xb8\xe3\xe1\x17\x39\xe7\x9a\x7b\x58\xbd\ +\x7e\xd3\x5e\x73\xc3\x24\x8b\x78\x35\xa3\xa6\x80\xaa\x35\xf7\x3b\ +\x45\x51\xb1\xd8\x3a\x37\x0b\x74\xbb\xbd\x51\x92\xc3\xa8\xe0\x42\ +\xeb\xf8\x0f\xe6\x72\xbb\x3b\x14\x91\xff\xe1\x40\x1e\x0b\xe8\x9f\ +\x7d\xf5\x55\xd4\xf3\x05\x3d\x7b\x32\xb0\xdf\x80\x84\xbc\xe8\xde\ +\xc9\xef\xc5\xff\xfb\x90\xe9\xfb\xc7\x53\x15\xb5\xa5\x9c\x38\xad\ +\x3f\x53\x47\xf6\xa6\xa4\x47\x06\x16\x93\x48\xb2\x5c\x1c\x8d\x88\ +\x45\xa0\x50\xf7\x36\x3a\x77\xe8\x9a\x2a\x8a\xde\xc1\xf5\x68\x5d\ +\xc1\x1f\x90\xc3\xdc\xba\xd7\x2f\xd3\xa7\x68\x20\xdd\x63\x7c\xd3\ +\x9b\x1a\x1b\xa8\xa9\xdc\x86\xc5\x6c\x70\xe4\xc6\x80\x92\x18\x04\ +\xb5\xa8\x20\x25\x94\x14\x15\x16\x1d\xa0\x2f\xf8\xfe\xb2\x66\x0b\ +\x73\x5e\x59\xc4\xe9\x37\xbf\xc0\xcd\x73\xde\xe7\x83\x45\xab\x69\ +\x70\x79\x3b\x75\x4d\x6b\x6a\xea\x18\x3f\x66\x04\x77\xdd\x7a\x7d\ +\xd4\xf3\xf5\x0d\x8d\x9c\x74\xf6\x5f\x68\x68\x6c\x88\xcb\x4e\xdd\ +\x13\xc0\x7c\xf8\x80\x42\x06\x15\xf7\xea\x50\x07\x5b\xb9\xae\x9c\ +\xb3\x66\xdf\xcd\x9d\x73\x5e\xa4\xbe\xd1\xb5\xfb\xdf\x17\x9d\x1c\ +\xc1\xc2\xf8\x61\xf4\x7d\x8b\xd9\x6c\x48\x06\x3b\xd6\x42\xac\x41\ +\x78\x81\x53\x6b\x8b\x77\x4e\xeb\xc6\x7c\x2e\xb7\xbb\x43\x1c\x79\ +\x07\x16\x3b\x3b\xaf\x5a\x49\xe6\x96\xd7\xe4\x6a\x64\xc7\xce\x9d\ +\x51\xfb\x1e\xbc\xff\xfe\x1d\x56\x29\xec\xc9\x60\x1e\x39\x60\xed\ +\x37\x79\x12\x36\x6b\x74\x04\xb1\x76\x7d\x29\xf9\xdd\x1c\x4c\x18\ +\x9c\xcf\x09\xd3\x06\x70\xe1\x91\x23\x38\x62\x4a\x09\x66\x93\x98\ +\xb4\x0b\x85\x6c\x7c\x35\x2d\x32\x92\x89\xf8\x4f\xc3\x50\xd0\x18\ +\xc5\x30\x02\x8a\xce\xad\x07\xf4\xad\x67\x41\xef\xb8\xe3\x96\xad\ +\x5f\xa5\x47\xe3\x21\xf5\x4c\x2b\xa9\x9d\xcd\x37\x54\x04\x98\x1b\ +\x37\x57\x64\x71\x0f\x45\xd1\xf8\x65\xcd\x36\xe6\xbc\xf2\x0d\xa7\ +\xde\xf8\x02\x37\x3d\xfc\x1e\x1f\x2c\x5a\x45\x43\x53\xfb\x41\xbd\ +\xa6\xae\x1e\x45\x51\xb9\xe2\xe2\x73\x39\x32\x66\x76\x53\xb6\x61\ +\x13\xa7\x5f\x30\x0b\x45\x91\xf7\xb8\xc8\xdc\xe9\xb0\x71\xc6\x71\ +\xd3\xf9\xbf\x59\xa7\x31\x71\xd4\xa0\x88\x93\xd5\xda\x84\x77\xaa\ +\xa6\xf1\xe6\xc7\x8b\x38\xee\xa2\xff\xe3\xb5\x0f\xbe\x0e\xeb\xae\ +\xf7\x84\x29\x88\xd6\x4e\x43\xaa\x68\xfa\x5a\x40\x56\x94\xb8\xac\ +\xf1\xf6\x34\x9b\xcd\x6a\xa8\x1e\xa3\x79\xf9\x36\x01\xb8\x96\x78\ +\xee\xd0\x1c\x91\xef\x02\xd5\x4a\x28\x22\xef\x4a\x55\x47\xe8\xc6\ +\xa9\xaa\xae\x8e\xdb\x77\xc8\xa0\x41\x51\xc0\x16\xf9\xde\x44\xcf\ +\x75\xf6\x5c\xfe\xc8\xe7\x92\x45\xe7\x56\xab\x8d\x92\xe2\xc2\xa8\ +\xd7\xaa\xaa\xa3\xcd\x7f\x44\x51\x20\x2f\xd3\x8e\x29\x06\xc8\x2d\ +\x26\x91\xbe\xf9\x19\xd8\xcc\xa6\xa4\x1d\x2b\x2a\x5a\x81\xf0\xf4\ +\x53\x56\x9a\xf9\xf4\xa0\xac\xd2\x3d\xbf\x67\x3c\x48\x56\xed\x44\ +\x12\x05\x4c\x82\x80\x24\x88\xd1\x05\x88\xe3\x6f\xbf\xf8\xfe\xdc\ +\x42\xca\x72\x68\x7f\x55\x55\xf9\x65\xcd\x56\xe6\xbc\xbc\x90\x99\ +\x37\xce\xe7\x86\x07\xdf\xe1\xfd\x6f\x56\xb6\x39\x52\x57\x55\x95\ +\xba\xfa\x46\x34\x0d\x9e\x9e\x73\x2f\xfd\x4b\xa2\xaf\xe5\xb7\xdf\ +\xff\xc4\x55\x37\xde\x9a\xb0\x52\xd1\x9e\x10\x99\x17\xf6\xca\xe3\ +\xa6\x4b\x4e\xe1\xc9\x7f\x5c\xc1\xfe\x93\x46\x82\x20\xc4\xdb\xfe\ +\x92\xbc\x88\x4a\x43\x93\x9b\x7f\x3e\xb2\x80\xd3\xaf\xb8\x93\xe5\ +\xab\xcb\xf6\x50\x0a\x29\xb1\x21\x95\x10\x51\xad\x48\x77\x9e\xd4\ +\x03\x0e\xbf\xdf\xdf\xc9\x41\xd4\x11\x5e\x63\x8a\x05\xf3\xd6\x52\ +\xf3\x5b\xa4\x6c\x3c\x9e\xd4\xeb\xc8\x05\x41\xc0\x6e\xeb\x7a\x1d\ +\x79\xe8\xb1\xaa\x3a\x3e\x91\x24\x2f\x37\xf7\x7f\x2a\x1a\x8f\x05\ +\xf1\xd0\x63\x7e\x5e\x74\xe5\xa7\x9d\x95\x55\x6d\x02\x1b\x93\x49\ +\x64\xc6\xc4\x62\x66\x9f\x32\x9e\x2b\x4f\x9c\xc0\x49\x07\x0c\x62\ +\xcc\xc0\x1e\x38\x6d\x96\xc4\x37\x82\x1a\xca\x9c\xc3\xe0\xd1\xd5\ +\x30\xa8\xe7\x76\xef\x91\x80\x2b\x6c\x6a\x4e\x51\x16\x41\x10\x85\ +\x94\x5e\x13\x55\xd5\xf8\x75\xed\x56\xe6\xbe\xfc\x35\xa7\xdd\x34\ +\x9f\x5b\xe6\xbe\xcb\xa7\x8b\x7f\xa7\xb1\x15\x4e\xbd\xc9\xe5\x41\ +\xd3\x20\x33\x33\x83\x37\x5e\x7a\x9a\xec\xac\xcc\xa8\xd7\x5f\x7c\ +\xf5\x0d\x1e\x7a\xec\xe9\xa4\xe5\xe2\xba\xba\x38\x46\x2a\x5a\xbf\ +\xc2\x9e\xdc\x75\xdd\x39\xbc\xfc\xd0\x8d\x1c\xbc\xef\x58\x63\x76\ +\xa4\xb5\x09\x20\x35\x60\x4d\xd9\x66\xce\xbd\xf6\x1e\xfe\xf6\xc0\ +\x3c\x6a\xea\x1a\x77\x93\x1b\xa1\xe3\xef\x0b\x5b\x05\x0b\x1a\xa2\ +\x20\x22\x89\x7a\xbe\x83\x24\x49\xc8\x9d\x34\x2e\x73\x3a\xed\x06\ +\xe7\xae\x86\xb3\x4c\x5b\xe4\x49\x69\x29\x60\x89\xbc\x9f\x3c\x38\ +\xed\xb6\x10\x4d\x93\x1a\xf9\xa1\xdd\x66\xeb\xb2\x95\xee\x44\x25\ +\xde\x2a\x93\x00\x79\x0b\xd7\xe4\x7f\x06\xcc\xf3\x72\x73\xa2\x5e\ +\xab\xac\xae\x69\xe7\xf5\x16\xe8\x95\x97\x46\x41\x6e\x1a\x07\x8e\ +\x2d\x42\xd3\x60\xd3\x8e\x06\x7e\x2f\xaf\x66\x75\x79\x15\xbf\x97\ +\x57\xd3\xe4\xf1\x37\x07\xd3\x11\x89\x15\x21\xcf\x8a\xbc\xee\xf1\ +\x11\xb9\xab\xa9\x29\xec\xaf\x1d\xaa\x22\x2f\xb4\xeb\x0e\xd5\xda\ +\x79\x23\x47\x2a\x31\x34\x96\xaf\xdd\xc6\xda\x8d\x3b\x79\xe5\xe3\ +\x25\x4c\x18\xde\x97\xfd\x46\x17\x13\x08\x2a\x09\xa2\xf2\xe6\xe9\ +\x78\xbf\xe2\x42\x5e\x9e\xf7\x08\xc7\x9c\x7a\x1e\xc1\xa0\x1c\xde\ +\xe7\xef\xff\x7c\x80\xfe\x25\x45\x1c\x35\xe3\x90\x94\x1a\x6c\xa5\ +\xba\x95\xf4\x2d\xe0\xee\x1b\xce\x63\xe3\x96\xc3\x79\xe6\x3f\x1f\ +\xf1\xe9\xc2\xa5\x28\x9a\xd6\xa6\x30\x51\xd3\x34\xde\xfb\x6c\x31\ +\x5f\x7c\xb7\x8c\xcb\xce\x3a\x8e\xd3\x8e\x39\x08\x49\x12\x77\x97\ +\x3b\xa2\xcd\x2f\x87\x3c\xf8\x75\xc3\x32\x51\xaf\xa5\x2a\x89\x58\ +\xcc\x66\xac\x16\x33\x8d\x4d\x9d\xf3\x80\xb1\xdb\xed\x28\x06\x88\ +\xab\x5a\x6c\x64\xae\xb5\xa1\x32\x51\x62\xba\xc5\xe5\x72\x23\x08\ +\x02\x4e\xbb\x0d\x97\xc7\x9b\x9a\x88\x3c\x55\x0b\x9d\x21\x30\xaf\ +\xac\x4a\x00\xe4\x39\xb9\x6d\x56\x27\xec\x6d\x00\x1e\xd9\xba\xc7\ +\x44\xe4\x5e\xaf\x17\x97\x91\x40\xd0\x91\xb1\x55\x10\xa0\xb0\x47\ +\x26\x33\x26\xf7\xe3\xda\xd3\x26\xf3\xf4\x4d\x47\x71\xff\xac\x43\ +\x38\xff\xe8\xd1\x4c\x1a\xd6\x8b\x0c\xa7\x35\x66\xca\x08\x19\x19\ +\x59\x71\xc7\xf1\xfb\x7d\x44\xa2\xb7\xd0\xd9\x9b\xb1\x83\x3f\xb0\ +\xa6\x6a\xac\x2f\xdf\xc9\xfb\xdf\xac\x64\xd1\xb2\xd2\xa4\x87\x0d\ +\x6d\xfb\x4d\x99\xc8\xc3\xf7\xde\x11\x07\x62\x17\xce\xba\x9e\x5f\ +\x57\xac\x8a\x5b\xf8\xdc\x9d\x23\xf1\x64\xad\xb8\x4f\x0f\xee\xba\ +\xee\x3c\x5e\x7f\xe2\xef\x1c\x39\x7d\x52\x84\x85\x43\xeb\x92\x38\ +\xb7\xc7\xcb\x7d\x4f\xbc\xc2\x29\x97\xdd\xca\xd2\xe5\x6b\x76\xeb\ +\x9b\x45\x4b\xd0\xb9\x43\x00\x2e\x8a\x22\x92\x49\xc2\x6c\x32\x61\ +\xb5\x58\xb0\x5a\xf5\xad\xbc\x7c\x73\xa7\x3e\xd6\x66\xb3\x85\xd5\ +\x5e\x8a\xa2\xa2\xa9\xaa\x21\x75\x6c\xa5\xe4\x5b\x8b\x45\x0c\xb4\ +\xf0\x3d\x6d\xd0\x2b\xa9\x01\x72\xa7\x3d\x75\xb4\x0a\x24\xe6\xc8\ +\xf3\x0c\x00\xfb\x5f\x8c\xc8\xa3\xa8\x95\xee\xb9\x71\xaf\x55\x56\ +\x55\x77\x19\xb0\x08\x02\xf4\xc9\xcf\xe0\xd0\x89\xfd\x98\x3d\x73\ +\x12\x8f\x5d\x7f\x24\x77\x5d\x32\x9d\x99\x07\x0f\x67\x44\xff\x7c\ +\xd2\xec\x16\x6a\x6b\xe2\x07\x5a\x87\xc3\x49\x64\xbd\x59\x2d\x29\ +\x4c\x44\x54\x5a\x37\x00\x3f\xa4\x7d\x0f\xd5\x5a\x17\x04\x2d\x21\ +\xb5\xa1\x6f\x31\xaf\x85\x86\x8c\x36\x56\x74\x5a\x57\xbe\x13\xb7\ +\x37\x10\x25\x63\x3d\xeb\xd4\x13\x99\x7d\xd9\x85\x51\xfb\x85\x0c\ +\xb6\xb6\xef\xdc\x99\x90\x62\xd9\xd3\xc0\x1c\xa0\xb0\x57\x77\xee\ +\xbc\xe6\x5c\xde\x7a\xf2\x76\x8e\x39\x64\x9f\x24\x11\x76\xe2\x08\ +\xb1\xb4\x7c\x1b\x17\x5c\x7f\x2f\x37\xfc\xf3\x71\x2a\xab\xeb\x76\ +\xf9\xb9\x8f\x1e\x31\x18\x21\x46\x5d\xa2\xb5\x40\x3a\x37\x47\xe2\ +\x86\xc6\x5b\x12\x31\x9b\x24\x2c\x56\x33\x36\x9b\x05\x87\xdd\x8a\ +\xd3\x61\x63\x7d\xd9\xc6\x4e\x9d\x97\xd5\x6a\x09\x27\x19\xa9\x4a\ +\xb3\x02\x2b\x1e\xc4\xdb\x32\xf3\x6c\x7e\x2d\x04\xe4\xc6\x82\xe7\ +\x9e\x13\x91\x47\x82\xf9\xce\xca\xca\x68\x1e\xca\xe1\x68\x55\xee\ +\xd8\x95\x8b\x8b\x7f\x64\x6b\xe9\xfc\x34\x2d\x3e\x22\x4f\x36\xf0\ +\x75\x65\x2b\xc8\x4d\x67\xbf\x51\x7d\x99\x79\xd0\x70\x2e\x3a\x6e\ +\x1c\x3d\x32\xe2\x57\xf9\xd3\xd2\xd3\x23\xa4\x8c\x6a\x8b\xd1\x48\ +\x88\xb3\x0c\x27\x52\x20\x34\x73\xeb\x11\x5e\x15\xd1\x5b\x82\xd7\ +\x34\xbd\xd8\xad\x10\xbe\x6e\xad\x97\x2f\xf8\x7e\xf9\x06\x1e\x7c\ +\xe1\x73\x9e\x7c\xed\x1b\xbe\x5b\x56\x4a\x43\x93\x0f\x55\x85\xdb\ +\x6f\xb9\x96\xa3\x67\x1c\x1c\xb5\xef\xf6\x1d\x95\x9c\x72\xf6\x25\ +\xf8\x7c\xde\xa4\x60\xbe\x27\xb6\x3e\x05\x79\xdc\x36\xfb\x6c\xde\ +\x7e\xfa\x4e\x8e\x3f\x6c\x3f\x4c\x26\x89\xb6\x94\xb9\xd2\xd0\xf8\ +\xf8\xeb\x1f\x39\xe6\x82\x9b\x78\xf6\x3f\x1f\x10\x94\xe5\x5d\x76\ +\xce\x03\x4b\x0a\x99\x75\xfe\x4c\x32\xd3\xd2\xe2\x4e\x32\xbe\x6f\ +\x34\x17\x99\x90\x8c\x48\xdc\x62\x32\x61\xb3\x5a\x70\xd8\xac\xa4\ +\x39\xed\xa4\x39\xed\xb8\xdd\x6e\xb6\xef\xd8\xd9\xe1\x73\x12\x45\ +\x91\xac\xcc\x4c\x02\x01\xbd\xe0\xb4\xa2\xca\x86\x37\x7a\xdb\xd6\ +\x23\x5a\xba\xe0\xe1\xec\xce\x54\x46\xe4\xa9\x50\xac\x44\x3e\x57\ +\x19\x03\x4c\xdd\xf3\xf2\xe2\x8a\x06\xa4\xa2\x70\xee\xee\xf0\x5c\ +\x6b\xec\x42\xac\xef\x36\xc0\xce\xaa\xea\x76\x0d\x52\xed\x3d\xbf\ +\x58\x99\xe8\xd6\xad\xf1\x7e\x1d\xfd\x0a\x0b\xe8\xd7\xbb\x1b\x4e\ +\xbb\x25\x5c\x8e\x34\xd1\x8f\xd4\x7c\x83\xe9\x5b\xa8\x34\x57\x68\ +\x93\xa4\xd8\xbf\x85\xe8\xbf\xc5\xe6\xc7\x90\xcc\x51\x8c\x1a\x00\ +\x5a\xfe\xee\xaa\xaa\x67\x9f\xae\x29\xdb\xc1\x4b\xef\xff\xc0\x8d\ +\xff\x7e\x83\xb9\x0b\xbe\xe0\xc7\xdf\xca\x79\xf8\xbe\xbb\x18\x3d\ +\x62\x58\xd4\xfe\xcb\x57\xea\x06\x5b\x9a\xa6\x26\x54\xb2\xec\xc9\ +\xad\x57\x7e\x2e\xb7\x5e\x75\x16\xef\x3e\xf3\x0f\x4e\x3a\x62\x7f\ +\x4c\x26\x53\x1c\x70\x27\x02\x1a\x8f\xd7\xc7\x43\xcf\xfc\x97\x13\ +\xfe\xf2\x57\x16\x2f\x5d\xb1\xcb\xce\x77\x40\x71\x5f\xee\xfd\xdb\ +\x6c\x06\xf6\x2b\x32\x54\x28\x91\x6a\x94\x50\xa9\x37\xc1\xe8\x5f\ +\x12\x26\x51\xc2\x64\x36\x61\xb5\x98\xb1\xdb\xac\x38\x1c\x36\xd2\ +\xd3\xed\x64\xa4\x3b\xc9\xcc\x48\xe3\x9b\x45\x8b\x3b\x75\x3e\x45\ +\x7d\x7b\x23\x08\x02\x81\x60\x90\x60\x50\x46\x51\xf4\x45\x4f\x0d\ +\x0d\xb5\x95\xa5\x88\xd6\x52\xf5\x43\x0e\x88\x46\x52\x50\x4a\x80\ +\xfc\xcf\xf6\x3f\xd0\x12\x81\x78\xe8\xb1\xb4\xac\x3c\x6e\xff\x7d\ +\x27\x8c\x62\xfa\xf8\x7e\x5c\x70\xcc\x78\x2e\x38\x7a\x1c\x07\x8e\ +\x2f\x21\x37\xcb\x19\xb7\x9f\x24\xea\x85\x2f\xcc\x26\x09\xb3\x59\ +\xc2\x62\xd1\x33\x42\x2d\x66\x09\xab\x59\xc2\x6a\x89\xdd\x4c\x58\ +\xcd\x26\xfd\xd1\xa2\x3b\x2c\x9a\x4d\x92\x9e\xcd\x6a\x12\xc2\x4a\ +\x99\x28\x93\xae\x16\x54\x1a\x2a\xa1\x84\x27\x3d\xd9\xc9\xe3\x0d\ +\xb0\x7c\xcd\x56\x5e\xfe\xe0\x47\xe6\x2c\xf8\x8a\x33\xce\xf9\x0b\ +\xb9\x31\x0b\xca\xef\x7f\xfc\x05\xb7\xdd\xfd\x40\x42\x59\xe2\xde\ +\x00\xea\x3d\xbb\xe7\xf0\xd7\x59\x67\xf2\xfe\x73\xff\x64\xe6\xd1\ +\x07\x62\x31\x9b\xda\x10\x4d\x6a\x94\x6f\xd9\xce\xc5\x37\xfd\x8b\ +\xd9\xb7\x3d\x4c\xc5\xce\xea\x5d\x72\xae\xb9\xdd\xb2\x98\x73\xd7\ +\x4d\x1c\x71\xf0\x7e\x7a\xb4\x2d\x89\x61\x25\x8a\x24\x4a\x48\x82\ +\x88\xd9\x64\xc2\x64\x96\xb0\x58\xcc\x7a\x14\x6e\xb7\x91\xe6\xb4\ +\x93\x99\x91\x46\x76\x66\x06\xdd\xb2\x33\xf0\xf9\x3c\xfc\xfa\xdb\ +\xaa\x4e\x9d\x4b\xbf\x7e\x45\x46\xc9\xb9\x00\xc1\x10\xbd\xa2\x6a\ +\x1d\x2a\x26\x11\xdb\x14\x45\xe9\xd8\x2c\xa1\x1d\xfb\x36\xc5\x7a\ +\xa0\x74\x75\xeb\x9e\x9b\x1b\xc3\x01\x57\xed\xd1\x8b\x4d\x5d\x39\ +\x5b\xa8\xac\x8a\xbf\x61\xf2\x13\x44\xe9\x5d\xf9\x99\x91\x80\xa5\ +\x69\x2a\xab\xd7\xae\x8b\x7b\xcf\x81\x53\xf7\x09\x2f\x20\x66\xa4\ +\xd9\x18\x5c\x94\x47\x51\x41\x76\xfc\x74\xce\x69\xc5\x6a\x36\x61\ +\xb7\x9a\x70\xd8\x4c\x38\x6d\x66\x1c\x76\x33\xce\xf0\x66\x89\xd9\ +\x9a\x5f\x73\xd8\xf4\xd7\x1d\x76\x13\x76\x9b\x39\x0c\xec\x26\x29\ +\xda\xc2\xb7\xc5\xfe\x61\x58\x02\xc8\x06\x98\xfb\x02\x32\x1e\x5f\ +\x00\x97\xdb\x4f\x43\x93\x8f\x8a\x1a\x1f\x27\x9d\x76\x3e\x16\x4b\ +\xb4\x2c\xf3\xa1\xc7\x9e\xe1\xc5\x57\x5f\xdf\x6b\xf8\xf2\x44\x2d\ +\x3f\x37\x9b\x9b\x2f\x3b\x83\x0f\xe6\xdf\xc3\x19\xc7\x1d\x8c\xd5\ +\x62\x69\x8d\x13\x00\xe0\x8b\x6f\x97\x72\xcc\xf9\x37\xf0\xc4\x8b\ +\x6f\xe3\xef\xa2\x3a\xa4\x2d\x05\x16\x56\x8b\x99\xdb\xaf\xbf\x9c\ +\x1b\x66\x9d\x87\xd5\x62\xc6\x64\x96\x90\xcc\x7a\x8d\x4e\x8b\xc5\ +\x8c\xd5\x6a\xc1\x66\xd5\x39\xf0\x34\xa7\x8d\xcc\x74\x27\xd9\x59\ +\xe9\xe4\x64\x67\x92\xdb\x2d\x13\x87\xdd\xc2\xab\xff\x7d\xab\x6d\ +\x14\x48\x0b\xad\x6f\xdf\xde\x78\xbd\x7e\x7c\xfe\x00\x81\xa0\x8c\ +\x1a\x4a\x2e\xd2\x68\x85\x5e\x4c\xc2\x97\x47\xfc\x69\xb5\xea\xd7\ +\xde\xe5\xf1\x02\xb4\x59\x5a\xd3\x1e\xf9\x61\x93\xc7\xeb\xcd\xe9\ +\xea\x1f\x2a\x52\x49\x90\x1f\x53\x0f\xd4\xed\xf1\xe0\xf1\x7a\x31\ +\x9b\xec\xfc\x2f\xb7\xa4\x8a\x9e\x08\x69\x66\x7b\x00\x25\xb2\x10\ +\x43\x32\x6a\x25\xd6\x95\xf2\xbd\x8f\x3e\x63\xc7\xce\xe8\x73\xe8\ +\x5f\x52\x44\xaf\x82\x82\x36\xa9\x89\x26\x0e\xeb\xc3\xf4\xfd\x27\ +\x50\xbe\xbd\x9e\xf5\x9b\xab\x59\x53\x5e\xc5\xb6\x9d\x0d\xba\x84\ +\x4b\xd5\xf9\xf5\xc8\x4e\xad\x19\xe2\xe6\xb0\x57\x86\xaa\xe9\x35\ +\x1b\x15\x95\x60\x50\x21\x20\x2b\x28\xb2\x82\xa6\xd1\x1c\x99\x0b\ +\xad\xf7\x35\x9d\x62\x51\x09\x04\x65\x40\x3f\x2e\x02\x08\x22\x64\ +\x67\xe4\x71\xd2\xcc\xb3\x79\xe5\xa5\x79\x51\x37\xe3\x55\x37\xfe\ +\x9d\x1e\x3d\xf2\x39\xe4\x80\xa9\x74\x22\x19\x70\xb7\x6f\x79\x39\ +\x59\x5c\x7f\xc9\x69\x9c\x37\xf3\x08\xe6\xbf\xf6\x31\xaf\xbd\xff\ +\x25\x3e\x5f\xa0\xc5\x10\xdd\xef\x0f\xf0\xe8\xf3\xaf\xf3\xee\x67\ +\x8b\xb8\xe9\xf2\x33\xd9\x7f\xf2\x98\x94\x07\x37\x67\x9e\x78\x24\ +\x03\xfb\x15\x72\xcb\x5d\x0f\xd3\xd8\xe4\x32\x06\x73\xdd\x46\xd9\ +\x6c\xcc\xe2\xec\x36\x2b\x69\x69\x76\x32\xd3\x9d\xe4\x64\x67\x92\ +\x99\xe1\xe4\xa5\x97\xff\xcb\xce\xca\xce\xcd\x20\xf2\xf2\x72\xb0\ +\x98\x2d\x78\xbd\x75\x04\x02\x01\x9d\x5a\x51\xd5\xb8\xc4\xa0\xd6\ +\x06\xc1\x64\xb2\xda\xd0\x20\xea\x72\xa7\x10\xc8\xdd\x5e\x5f\x97\ +\x83\x78\x22\x60\x8a\x6c\x55\x55\x55\x14\xf4\xec\xfb\x3f\x13\x89\ +\x27\x02\x54\x20\x61\x07\xec\x9e\x97\x9b\x92\x35\x83\x48\x2a\x41\ +\x17\x0c\x68\xcc\x79\x62\x5e\xdc\xfe\x27\x1d\x7b\x64\xd4\x40\xdc\ +\xd2\x1a\x86\x20\x80\xd3\x61\x66\x48\x71\x1e\x83\x8b\xf2\x38\x7a\ +\xda\x10\x5c\xde\x00\xe5\x15\x75\x94\x6f\xab\xa5\xbc\xa2\x86\xaa\ +\x3a\x57\x44\xe1\x5a\x2d\x2c\xe5\xd2\x34\xd5\x30\xf8\xd2\xad\x02\ +\x7c\x81\x20\x7e\xbf\xee\x2f\xad\x28\x1a\x82\x88\xae\x65\x27\xa4\ +\x63\x17\x12\xf4\xb5\xb0\xcb\x0c\xaa\xaa\x21\xcb\x8a\x61\x0b\xa0\ +\xe7\xb3\x0a\xe8\x15\x96\x7a\x17\x0d\xe2\xb0\x23\x8e\xe5\xe3\x0f\ +\xde\x0e\xbf\x57\x96\x65\xce\xba\xe8\x4a\x6e\xf9\xeb\xad\x4c\x1c\ +\x3d\x82\x41\xc5\x05\x64\xa4\x39\xfe\xf0\xaa\x54\x29\xa3\x31\xb2\ +\x33\xb9\xee\x2f\x33\x39\xff\x94\xc3\x99\xff\xda\x47\xfc\xe7\xbd\ +\x2f\xf1\xfa\x5a\xbe\xf7\xb7\x6d\xaf\x64\xf6\xdf\x1f\x62\xfa\x3e\ +\x63\xb9\xf6\x92\xd3\xe9\x53\x90\xd7\x45\x9d\x32\x71\xc0\x31\x69\ +\xcc\x70\x5e\x7e\xfc\x6e\xfe\x7e\xdf\x63\x94\x6f\xde\x8a\x24\xe9\ +\xd4\x9b\xc5\x62\x32\xa2\x72\x6b\x98\x13\xf7\xf9\x3c\x3c\xf7\xfc\ +\x02\xb6\x55\xec\xe8\xf4\xe9\x0c\x1a\xd0\x0f\x97\xdb\x8b\xc7\xeb\ +\xc3\xe7\x0f\x34\x73\xe4\x9a\x9a\xa0\xef\xb7\xc5\x2a\x21\xfa\x49\ +\xab\x61\xc5\xe1\xf2\xf8\x52\x1a\x91\xa7\xac\xf3\x24\x55\x66\xd4\ +\x54\xd3\xab\xa0\x6f\x5c\x96\x5d\x67\x8b\x49\xa4\x9a\x0a\xe9\xcc\ +\x73\x89\x3a\x6e\x6c\x44\x6e\xb7\xdb\x49\x73\x3a\xdb\x14\x21\xb6\ +\xc4\xeb\xc6\xd2\x04\x91\x5c\x70\xe8\xdf\x0f\xcc\x7d\x9c\x25\xcb\ +\x96\x47\xbd\x2f\x33\x23\x83\xcb\x2e\x3a\xb7\xcd\xd9\xb6\xa5\x1b\ +\xca\x59\xb2\xec\xd7\xe8\xe8\xdd\xf8\x77\x8f\x34\xe8\x31\x30\x0d\ +\x7f\xd0\x46\x55\x9d\x9b\xca\x3a\x17\x55\xb5\x2e\x1a\x9a\x3c\x7a\ +\x15\x75\xad\xd9\x32\xc0\xef\xd7\xeb\x8e\x4a\x96\x34\xac\x16\x0b\ +\x41\x59\xd6\x1d\x77\xc5\x66\x85\x4b\xd2\xb8\x28\x22\x71\x43\x55\ +\x35\x64\x55\x35\x6e\x42\x03\xc8\x8d\x85\xd8\xd1\xe3\xf6\xa5\xba\ +\x6a\x27\x4b\x7f\xfa\x3e\xfc\x5e\x8f\xc7\xc3\x43\x0f\xfd\x9b\x73\ +\x2f\x9c\xc5\x7b\x5f\x2f\x23\x37\x2b\x83\x11\x03\xfb\x32\x66\x68\ +\x11\xd9\x19\x0e\xf6\xc6\xd6\x2d\x2b\x83\x6b\x2e\x9a\xc9\xf9\xa7\ +\x1c\xc1\x0b\x6f\x7c\xcc\x2b\xef\x7c\x1e\x9a\xf2\x47\xdd\xb7\x91\ +\x7d\xe8\xbb\xa5\xbf\xb1\xfa\xba\x8d\x9c\x77\xca\x11\x9c\x72\xf4\ +\x81\x5d\x81\xe3\xe1\xbe\x18\xea\xeb\xa1\xcf\xeb\x99\x9f\xcb\xdc\ +\x7f\xde\xcc\x33\x0b\x5e\xe7\xe7\xe5\x2b\x31\x9b\xcd\x58\xad\x66\ +\x9c\x76\x1b\x4e\x87\x0d\x93\x24\xf2\xf3\xb2\x5f\xf8\xf2\xab\x45\ +\xba\x6f\x7f\x27\x9b\xdd\x6e\x63\xe8\x90\xc1\x54\x55\xd7\xe1\xf1\ +\xfa\xf0\xfb\x83\x28\xb2\x8c\xa2\x28\xc9\x23\xf2\x56\x8a\x49\xc4\ +\xb6\x10\xb5\xe7\x4e\x65\x44\xae\x8f\xca\x86\x51\x75\x27\x01\x2b\ +\xb2\x03\x84\xbe\x7f\xf7\xdc\xe4\x12\xbb\xae\x06\xe3\x54\xab\x4e\ +\xba\xfa\x5c\x63\xbd\x55\xba\xe7\xe6\xb4\xfb\x18\xc9\xf8\xdd\x44\ +\x91\x78\x33\xa5\xf2\x09\x77\xdd\x3f\x37\xee\x78\xb3\x2e\x3e\x8f\ +\x8c\xf4\x8c\xb0\x26\xbb\xb5\xeb\xf2\xd7\x3b\xee\xeb\xd2\x6b\x32\ +\x79\xff\xa3\x28\x1c\x38\x41\x8f\xd6\xe3\x9c\xe7\xb4\x16\x02\x86\ +\x90\x05\x81\x86\xaa\x18\xf6\xa6\x31\x40\x2e\x8a\x02\x07\xcf\x38\ +\x9e\xba\xda\x6a\xca\x4a\xd7\x87\xdf\x5b\x5d\x55\xc9\x5b\xaf\xbd\ +\xc8\x29\xa7\x5f\x48\x75\x5d\x23\x1f\x2c\x5c\xc6\xbb\x5f\x2e\x65\ +\x40\x51\x0f\x26\x0c\x2f\x66\x50\x71\xfe\x5e\x09\xe8\x59\x99\xe9\ +\x5c\x79\xfe\xc9\x9c\x73\xf2\x11\xbc\xf8\xc6\xc7\x2c\x78\xeb\xd3\ +\xb0\xba\x22\x51\x0b\x06\x83\xbc\xf1\xe1\x97\xac\x2d\xdb\xc8\xf1\ +\x33\xf6\xeb\x74\xdf\x0f\x81\x78\x48\x4e\x1e\x89\x97\x76\x9b\x99\ +\x2b\x2f\x3c\x8d\x6f\x7f\x5a\xc6\xc2\xef\x96\x20\x08\x1a\x3b\x76\ +\xec\xe0\xfb\xef\x17\xb3\x72\xd5\xef\xc8\xb2\xd2\x65\xd7\x61\xda\ +\xbe\x93\xf1\x07\x82\xb8\xdc\x1e\xbc\x5e\x2f\x81\x60\xd0\x30\xdf\ +\xd2\x22\xdc\x3c\xdb\x57\x4c\x22\xb6\x6f\xda\x2c\x16\x34\x4d\xc3\ +\x60\x3f\x52\x03\xe4\x9a\xa6\xe1\xf5\xf9\x52\x62\x65\xab\xa7\xa1\ +\x27\x06\xf2\x58\x19\xdc\xff\x4a\x72\x50\x14\xb5\x12\x13\x91\xe7\ +\x77\xcf\x6b\x93\x2f\xbb\x0e\x50\x2d\x53\x5a\x89\x80\x1c\x54\xee\ +\xba\x6f\x0e\xf7\xcf\x7d\x22\x2e\xd2\x18\x35\x7c\x28\xb3\x2e\x3a\ +\x2f\x8e\x56\xd9\x95\x2d\x3b\xc3\x81\xd9\x24\x12\x08\x8a\x68\xaa\ +\x1a\xa1\x29\x6f\x4b\x5f\x8b\xb0\xf1\x55\x55\x54\xc0\x1f\x30\xbe\ +\xbf\x71\xcd\x25\x51\xe4\xf8\x53\xce\x61\xfe\xd3\x73\xa8\xae\x6a\ +\xce\x6f\x28\x2b\x5d\xcf\x67\x1f\xbd\xc5\x61\x47\x9d\x88\x49\x12\ +\x09\x04\x65\x76\x54\xd7\xf1\xc5\x0f\x6e\x7e\xfa\x6d\xed\x5e\xdd\ +\x1f\x33\xd3\x9d\xcc\x3a\xf7\x44\xce\x39\xe9\x70\x5e\x7a\xf3\x13\ +\x5e\x7c\xf3\x23\x1a\x9b\x3c\x49\x07\xcf\xda\x86\x46\xde\xff\xfc\ +\xdb\x4e\x7d\xe6\xef\xeb\x4a\xb1\x59\x2d\x11\x09\x37\x10\x94\x65\ +\x5c\x2e\x37\x4d\x2e\x37\x6e\xb7\x87\xda\xba\x7a\x56\xae\x5e\xc3\ +\x92\x5f\x7e\x63\xc3\xc6\xcd\x9d\x5e\xcc\x4c\xd4\xf2\x72\xbb\xd1\ +\xbf\x7f\x09\x15\x3b\xaa\x70\xb9\xbd\x78\x7d\x7e\x43\x47\xae\x44\ +\xd0\x2a\xed\x2f\x26\x11\xfb\xa7\xc5\x62\xc1\xed\xf5\x85\xbe\x43\ +\x6a\x80\x1c\xf4\xcc\xb7\xae\x06\xf2\xd0\x0f\x94\x88\x23\xff\x7d\ +\xed\xda\xbd\x46\xbf\xdb\x9e\x59\x42\xe4\xbf\xfd\x7e\x1f\x1b\x36\ +\x6e\x8a\xe9\x58\x39\x49\xa7\xb7\xc9\x06\x84\xd8\x88\x26\xf6\xf3\ +\x04\x01\x64\x45\xe6\xf5\xb7\xdf\xe3\xe1\xc7\x9f\x61\xcd\xba\xf8\ +\x54\xf7\xfc\xee\xb9\xbc\xf2\xec\xe3\xd8\x6c\xf6\xa8\x68\x7c\x57\ +\x17\xfb\x98\x36\xb6\x3f\xe7\x9e\x75\x3c\xeb\x36\x56\xf2\xfb\xc6\ +\x1d\x94\x6d\xa9\xa2\xb6\xa1\x7d\xbe\xda\x9a\x51\xa2\x2e\xe4\xab\ +\x1b\xd2\xba\xeb\xa5\xef\x04\xc4\x4c\x07\xa7\x9d\x79\x21\xcf\x3c\ +\xf9\x10\x5e\x4f\x73\x04\xba\x74\xc9\x0f\x74\xcf\xef\xc1\xc4\xc9\ +\x53\xf1\x05\xf4\xe4\x18\x9b\xd5\x84\xd9\x24\xc5\x7d\xc6\xe6\x8a\ +\x6a\x1a\x5d\xde\xc8\x62\x01\x7b\x7c\x4b\x4f\x73\x70\xe9\xd9\xc7\ +\x73\xd6\x49\x33\x58\xf0\xe6\x27\xbc\xf8\xc6\xc7\x34\xb9\x5c\x6d\ +\x99\x10\xb5\xbb\x5d\x75\xc3\xed\xbb\xc5\x77\xde\x7f\xda\xbe\x34\ +\x34\xba\x69\x6c\xd2\x07\x0f\x9f\x21\x3d\x0c\x2d\xd4\x6b\xaa\xd6\ +\xf6\xd4\xfc\x16\x9a\xcd\x6a\x0d\xd1\x2a\xa9\x05\x72\xb7\xd7\x47\ +\x67\x45\x6f\x2e\x7b\x6f\x03\x00\x00\x20\x00\x49\x44\x41\x54\x91\ +\x0b\x63\x91\x5b\x7a\x5a\x06\x3d\xf2\xf3\xa3\x3c\xc9\x3f\x5f\xb8\ +\x90\x7f\x26\xd0\xef\xee\xcd\x51\x79\xec\x0c\xe4\xdb\x1f\x7e\xc4\ +\x17\x63\xbb\x39\x78\xe0\x80\x36\xf3\xd3\xa1\x28\xdb\x28\xef\x19\ +\x7e\x8f\x3f\x10\xa0\xb1\xa9\x91\x9a\x9a\x3a\x96\x2c\xfb\x85\x6f\ +\xbf\xff\x89\x85\xdf\x7d\x9f\x74\x65\x3f\xa7\x5b\x36\xaf\x3c\xfb\ +\x04\x3d\xf2\x7b\xc4\x55\x6b\x6a\xed\x37\x71\xd8\xed\x98\xcd\xa6\ +\xce\xdf\xe3\xc6\x01\x2c\x56\x0b\x36\x8b\x99\x11\x03\x7b\x31\x62\ +\xa0\x5e\x5c\x21\x28\xcb\x54\x54\xd5\xf1\xf2\x6b\xdb\x5a\x7d\x7f\ +\x68\xe9\x53\x31\xbe\x84\xa6\xaa\xe1\x67\x43\xb3\x18\x51\x14\xc8\ +\xca\x48\x63\xe6\xe9\xe7\xf1\xe2\x73\x4f\x44\x69\x7c\x3f\xfa\xe0\ +\x1d\xf2\xf3\xbb\x33\x70\xd0\x70\x34\x34\x7d\xa1\xcd\x14\x3f\x9a\ +\xae\xd9\x50\xc1\xbf\x9e\x79\x87\x0c\xa7\x83\xe1\x03\xfa\x32\x7e\ +\x44\x7f\x72\xb2\xd2\xf6\x8a\x7e\x9a\xe6\xb0\x73\xf1\x99\xc7\x71\ +\xe6\x09\x33\x78\xf5\xdd\xcf\x78\xf9\xcd\x8f\xf1\xf8\x7c\x7b\xdd\ +\xfd\x38\x68\x60\x3f\xba\x65\x67\x53\xb1\xa3\x8a\xa6\x26\x37\x1e\ +\xaf\x11\x8d\x07\x15\x14\x55\x69\xe5\x1e\x6c\xbb\x62\x45\x8f\xc8\ +\xcd\xa1\x85\xce\xd4\x47\xe4\xa9\x6a\x9a\x06\x87\x1c\x78\x20\x2f\ +\xbe\xfa\x6a\xf8\xb9\x8a\xed\xdb\x59\x57\xb6\x9e\x7e\x45\x03\x12\ +\xda\x8a\xee\x6d\x80\x9e\xa8\xe8\xc6\x67\x5f\x2e\x8c\xdb\xef\xf0\ +\x83\xa7\xc7\x7b\x4e\x27\xb8\x16\x5b\xb6\x6d\xa7\x60\xd0\xf8\xb8\ +\x3e\x13\x08\x04\xe2\x06\x87\x96\xda\xa4\xf1\x63\x78\xee\xb1\x87\ +\xe8\x91\xdf\x23\x6e\x00\x6e\xcb\x6c\x69\xfe\x13\xf7\x73\xd4\x8c\ +\x83\x93\xda\x11\x6b\xed\xf0\xd2\x4a\xf6\xf9\x56\x8b\x89\x7e\x7d\ +\xf2\xe8\xd7\x27\x3e\xd4\xc8\xcf\xcd\x64\x5b\xb5\x3f\xea\x22\x84\ +\x95\x2c\x9a\x86\x8a\x5e\xcc\x22\x20\x28\x88\x7e\x1d\xc8\x25\xc3\ +\xbb\x3a\xa7\x7b\x1f\x8e\x39\xee\x14\xde\x7a\xe3\x95\x28\x7a\x66\ +\xc1\x8b\xf3\xb9\xe6\xda\x1b\xe8\xdd\xa7\x8f\xae\x69\x17\x12\x67\ +\xb4\xa2\x69\x94\x6d\xde\xc1\xaf\xab\x37\xf2\xc2\xdb\x0b\x19\x36\ +\xa0\x37\xd3\x26\x0c\x61\xdc\xf0\xe2\xbd\xa2\xcf\x3a\x1d\x36\x2e\ +\x38\xf5\x68\xce\x38\xfe\x50\xde\xf8\xf0\x2b\xde\xfe\xe8\xab\xbd\ +\xe6\x7e\xec\xdb\xa7\x17\x07\x4c\x9b\x4a\x75\x4d\x1d\xf5\x8d\x2e\ +\x5c\x6e\x0f\x3e\xbf\x5f\x4f\xcd\x57\xd4\xa8\x05\xf4\xb6\x53\x28\ +\xc9\xfd\x57\xac\x56\x6b\x48\x7a\xf8\xc7\x03\x79\x7b\x16\x0d\x63\ +\x6f\xca\x43\x0f\x9c\x1e\x05\xe4\x00\x5f\x7c\xfd\x35\x03\xce\x1f\ +\x10\xb7\x60\x97\x8c\xeb\x6d\xed\xb9\x8e\x50\x1d\xbb\xf2\xb9\xd8\ +\x2c\xc2\xcf\xbe\x8a\x06\xf2\x1e\xdd\xf3\x18\x3d\x72\x44\xd2\x82\ +\x1b\xb1\x7c\x70\x63\x63\xc7\x2d\x3b\xd3\xd2\x9c\x5c\x7a\xc1\x39\ +\xdc\x30\xfb\x72\x24\xd1\x14\x55\xa8\x38\x12\x58\xdb\xa6\xe1\x4e\ +\xec\x2b\xdf\x9e\xc1\x38\x51\xb9\xbf\xb6\x7c\xfe\x51\xd3\x46\x92\ +\x9f\xdf\x83\xf5\x9b\xaa\x58\xbe\x66\x2b\xcb\x56\x6f\xe2\xb7\xb5\ +\x5b\x08\xfa\x02\x61\x99\xa3\x02\x20\x2b\x04\x8c\xb0\x5c\x40\xb7\ +\x01\x90\x44\x91\x01\x43\x46\x33\x75\xff\x4a\x16\x2d\xfc\x22\x7c\ +\xcc\x40\x20\xc0\x93\x4f\x3c\xca\x6d\xb7\xfd\x9d\xec\x8c\x1c\x20\ +\x5e\x19\x11\xe2\xee\x43\x92\x48\x4d\xd3\x28\xdb\xb4\x9d\xba\x86\ +\x26\x7e\x5e\xb9\x1e\xb7\xc7\xbf\xd7\x80\x9e\xdd\x66\xe5\xcc\x13\ +\x66\x70\xca\xd1\xd3\xf9\x62\xd1\x4f\x7c\xff\xcb\x6f\x7b\xf4\xf7\ +\xc9\xef\x9e\xc7\x91\x87\x1f\x42\x5d\x7d\x13\x75\xf5\x8d\xd1\xd1\ +\xb8\xac\xa0\x6a\x4a\x84\x5c\x36\x01\x6e\x77\x20\xc8\xb4\x59\xad\ +\x91\xca\xa0\x94\x00\xb9\x2b\x11\x90\x77\x06\x28\x23\x29\x96\xd0\ +\x4d\xbe\xcf\xa4\xc9\x38\xec\xf6\xa8\xcf\xf9\x72\xe1\x42\x2e\xbd\ +\xe0\xa2\xf0\xea\x75\xe4\x34\xbe\x23\x34\xcb\xee\x68\xaa\x95\xcc\ +\xdf\x64\x7d\x59\x19\x9b\xb6\x44\x7b\x9c\xcc\x38\x78\x3a\x84\x81\ +\x21\x35\x54\x53\xf7\xbc\x5c\x2e\x39\xff\x6c\x2e\x38\xfb\xb4\xb0\ +\x3a\x25\x96\x13\x6f\xa9\x6a\x53\x32\x00\x4e\x56\x24\xa4\xbd\x60\ +\x1e\xdb\x87\xda\xd2\xcc\x26\x89\xc1\xc5\x3d\x18\x58\xd8\x83\x93\ +\x0e\x1d\x4f\x50\x56\x58\x5d\x56\xc1\xaf\xbf\x6f\x66\xf9\xda\xcd\ +\xac\x2e\xdd\x86\xdf\xf0\x27\x17\x04\x0d\xaf\x01\xe4\x21\x9d\xfa\ +\xbe\xfb\x1f\x4a\x6d\x4d\x15\xab\x56\x36\x03\x54\x5d\x5d\x1d\x73\ +\xe6\xcc\xe1\x9e\x7f\xde\x81\xd9\x64\x6d\x57\xc7\x0a\x79\xbd\xef\ +\x6d\xcd\x6a\xb1\x70\xd4\x21\xfb\x71\xf8\x41\x53\xf8\x61\xe9\x2f\ +\xdc\xbf\x07\x7e\x87\xec\xec\x2c\x8e\x3d\xe6\x70\x1a\x9b\x3c\xd4\ +\xd4\x36\x50\xdf\xd8\xa4\x47\xe3\x3e\x3f\xc1\x60\x30\x22\x91\xad\ +\x6d\xa9\xf9\x6d\x51\xac\x00\x74\xcb\xce\x62\xf3\xf6\xfa\x28\xcc\ +\x4d\x49\x44\xee\xee\x62\x6a\x25\xf2\xa6\x56\x55\xb0\x58\xac\x4c\ +\xdb\x77\x1f\x3e\xfe\xbc\x39\xf2\x59\xb2\x6c\x19\x2e\x77\x13\x76\ +\x5b\x7a\xab\x51\xf9\xde\x46\xab\x7c\xfe\x75\x3c\xad\x32\xe3\x90\ +\xe9\xed\x8e\x88\x5b\xec\x04\x26\x89\x9c\xec\x6c\xc6\x8d\x19\xc9\ +\x94\x89\xe3\xd9\x67\xd2\x04\x46\x0e\x1b\x86\x24\xe9\x8b\x77\x8a\ +\x42\x9b\x13\x7f\x5a\x62\x0a\x23\x7f\xe7\xce\x78\xcb\xb7\x34\x58\ +\xb4\xa7\x99\x4d\x12\x23\x07\xf6\x61\xe4\xc0\x3e\xc0\xbe\x04\x65\ +\x85\xb5\x1b\xb7\xf3\xdb\xda\x2d\xac\x5c\xbf\x85\x75\xe5\x15\x78\ +\x7c\x41\x5d\x96\x28\xe8\x46\x5e\x47\x1e\x33\x93\xfa\xba\x3a\xb6\ +\x6d\xdb\x12\x3e\x4e\x59\xd9\x06\x1e\x7b\xec\x49\x6e\xbe\x71\x76\ +\x92\xdf\xd4\x48\x54\x12\x84\x88\xa8\x7d\xef\x97\x5e\x99\x4d\x12\ +\x63\x46\x0c\xdc\xf3\x40\x3c\x2b\x93\xe3\x8e\x3e\x1c\xb7\xdb\x47\ +\x55\x4d\x1d\x75\x0d\x4d\x34\xb9\x3c\x78\xbc\xbe\x70\x02\x90\x12\ +\xe9\x76\xd8\xe6\xf0\xbb\xf5\x04\xa1\xee\x79\xb9\xac\x2e\xdb\xbe\ +\x7b\x50\x2b\xed\x89\xc6\x63\x01\x5d\x55\xe1\xd0\xe9\x07\x45\x01\ +\xb9\xac\x28\x7c\xfe\xf5\x57\x1c\x7b\xc4\x31\x09\xa3\xf2\xbd\x05\ +\xc0\x63\x41\x5c\x10\xe0\xfd\x8f\x3f\x8b\xda\xd7\xe1\xb0\x33\x6d\ +\x9f\x29\x6d\xe6\xa8\xf3\xbb\xe7\xf2\xea\x73\x8f\x62\x78\xde\x87\ +\xa9\x11\xb3\xd9\x4c\x56\x66\x26\xd9\x59\x99\x64\xa4\xa7\xc7\x45\ +\xb9\x7a\x01\xe4\xc4\x03\x6e\x67\x7f\xf7\x44\x34\xc9\xee\x02\x3c\ +\xc3\x07\xf4\x66\xf8\x80\xde\xc0\x14\x54\x55\x65\xfd\xe6\x9d\xac\ +\xd9\xb0\x8d\x8d\x5b\x2b\xd9\x51\x55\x8b\x28\x8a\xcc\x3c\xe3\x3c\ +\xe6\x3d\xf9\x30\x0d\x0d\x0d\xe1\xf7\x7e\xb5\x70\x11\xc5\x45\x7d\ +\x12\x50\x2b\xcd\xf6\xaa\x5a\xec\xec\x85\x3f\xdb\xee\xd6\xc6\x8d\ +\x19\xc9\x84\x09\xe3\xa8\x6f\x68\xa2\xb6\xae\x81\xda\x3a\x9d\x52\ +\x71\x7b\x7c\x04\x02\x86\xdb\xa1\xaa\x6b\xc7\xf5\x3e\xdc\x96\x19\ +\x55\xcb\xc5\x24\xc2\x60\x2c\x49\x64\x67\x65\xed\x2a\x8e\xbc\xeb\ +\xd3\xf4\x63\xb7\x03\xa7\xed\xaf\x67\xe8\x45\xdc\xe5\x73\x9e\x78\ +\x92\x63\x8f\x38\x0a\x51\x14\x11\xc5\xc4\x03\xc1\x9e\x0e\xe6\xb1\ +\xdb\xe2\x1f\x7f\xe2\xc7\xa5\xcb\xa2\xf6\x9b\x3e\x6d\x3f\x2c\x16\ +\x6b\x38\x4a\x6e\xed\xbb\x5b\x2d\x16\xc6\x8f\x19\x1d\x45\x8d\xc4\ +\xbe\x2f\x74\xac\xc8\xc1\x31\xd1\x6c\x31\xf6\xb1\xbd\xb3\x80\x44\ +\xb4\x4c\xaa\x06\xc4\xae\x68\xa2\x28\x32\xb8\xb8\x27\x83\x8b\x7b\ +\x86\x7d\xcf\xb7\xee\xac\x61\x5b\x65\x0d\xdd\xd2\x6f\xe0\x8e\x3b\ +\x6f\x27\x10\x68\xf6\x22\x79\xf6\xf9\x97\x5b\x3f\xa7\x3f\xd1\x7b\ +\xb7\x6c\x19\xe9\x69\x1c\x3e\xe3\x60\xb2\xb3\xb3\xa9\xa9\x6d\xa0\ +\xa6\xb6\x5e\x5f\xdc\x74\xb9\xf1\x78\x7c\x04\x02\x01\x64\x59\x6e\ +\xd6\x8c\xb7\x58\x09\xa8\x7d\xc5\x24\x42\x2d\x37\x27\x07\x41\x10\ +\x3a\xa4\x5a\x69\x97\xfb\x61\x57\x46\xe4\x89\xc0\x3c\x04\x36\x39\ +\xd9\xb9\x4c\x9e\x30\x21\x6a\x9f\x75\xa5\xa5\xbc\xf3\xc1\xfb\x86\ +\x2c\x2c\x32\x71\x65\xef\x8b\xc6\x43\xdf\xef\x9f\x0f\x3c\x14\xb7\ +\xff\xb1\x47\x1e\x9e\x90\x67\x6e\x09\x1c\x23\xaf\xad\xa2\x34\x6f\ +\x91\xcf\x85\xfe\x1d\xbb\x25\xfa\x9c\x8e\x0e\x9e\xb1\xd4\xd1\x9e\ +\xf7\x5b\x09\xf4\xed\x99\xcb\x3e\xa3\x07\x71\xe5\xf9\x27\x31\xff\ +\xf1\x07\xda\x51\xc3\xb6\xeb\x11\x7c\xd5\xfa\x4d\x2c\xfe\x79\x35\ +\xb5\xf5\x4d\xfc\xd9\x3a\xde\x46\x0e\x1f\xca\x19\xa7\x9d\x8c\xdd\ +\xee\xa4\x62\x7b\x15\x95\x55\xb5\xd4\xd6\x35\xd2\xd8\xe8\xc2\xed\ +\xf1\xe1\xf7\xfb\x23\x7c\xc7\xb5\xb0\xff\x4f\xbb\x78\xc5\x36\xf4\ +\x83\x50\xcd\x81\x8e\xe8\xc8\xdb\x0d\xe4\x2e\xaf\xa7\xc5\x08\xa8\ +\xbd\x8a\x95\x58\x50\x08\x01\xc8\x75\x57\x5c\x19\xf7\x9e\x07\x1e\ +\x79\x04\x55\x53\x90\xa4\x68\x30\x8f\x4c\x76\xe9\xe8\xb9\xfc\x11\ +\xcf\x85\xce\x39\x32\x0a\x97\x24\xfd\xf1\xcb\x6f\x16\xf1\xc3\x92\ +\x9f\xa3\xf6\x1f\x32\x68\x00\xc7\x1e\x71\x78\x52\x7f\x95\x64\x98\ +\x12\x02\xe4\x48\x60\x4e\x04\xd6\x2d\x01\x77\x4b\x34\x4e\x7b\x0a\ +\x5b\xb4\x44\x23\x75\x66\x4b\x55\x4b\x26\x79\xd4\x34\x38\x6a\xc6\ +\xa1\xdc\x7e\xcb\xb5\xad\xbc\xbf\xf3\x49\x22\xc9\x9a\xdb\xe3\xe3\ +\xe3\x85\x4b\xb9\xf1\xde\x79\xdc\x78\xef\x3c\x5e\xfb\x60\x11\x3b\ +\xaa\xea\xfe\x44\xe6\x36\xb4\xf4\x34\x27\x17\x9c\x7d\x2a\x77\xde\ +\x7a\x03\x93\x26\x4d\xa0\xba\xb6\x81\xed\x3b\xaa\xa9\xaa\xa9\xa3\ +\xb6\xae\x81\x86\x46\x17\x6e\x8f\x17\xbf\xcf\x1f\x76\x38\x0c\x27\ +\xff\xc4\xfc\xa6\xad\x29\x56\xb4\x36\xfe\xea\xdd\xf3\xf4\x24\xbf\ +\xa6\x66\xfb\x83\x14\x26\x04\x79\x52\x13\x91\xc7\x4a\x11\x27\x8e\ +\x9b\xc0\xc1\x07\x1c\xc0\xe7\x5f\x7f\x1d\xde\x6f\xe3\xa6\x4d\xbc\ +\xf6\xf6\x9b\x9c\x7a\xc2\xc9\x51\xfe\x0b\x21\x00\xda\x13\x79\xf3\ +\x58\xbb\xd8\xd0\xe3\xdd\x09\xa2\xf1\x5b\x6f\xbc\x16\x41\x10\x13\ +\x26\xe3\xb4\x04\x15\x91\x20\x1d\x29\x1f\x8c\xbd\xfe\xc9\x40\xac\ +\x4b\xbe\x27\xc9\xfd\x5e\xba\xe2\x73\x52\x0d\xe6\xb1\xe7\x19\xea\ +\x7b\x57\x5f\x7e\x11\xeb\xcb\x36\xf2\xe2\xab\x6f\x24\x7c\xef\xa4\ +\x51\x03\x18\x39\x7a\x1c\xcb\x7f\xdf\xc4\xcf\xab\x37\xd2\xd0\xe0\ +\xea\xd2\xe8\x3c\x54\x3a\xaf\xb4\x7c\x1b\x3f\xaf\x58\xcf\xc3\xf3\ +\xdf\x62\x60\x51\x2f\x0e\xdc\x67\x34\x07\xed\x33\x86\x1e\x79\xdd\ +\xfe\x44\xed\xc8\x60\x68\x60\x7f\x2e\x3a\xef\x74\x4e\x3b\xf1\x38\ +\x9c\x4e\x27\x9a\xa6\xf1\xe6\xfb\x9f\xf1\xdc\x2b\x6f\xd0\xe4\xf2\ +\xe0\xf5\xfa\xc2\x86\x58\xb2\xac\x27\xfd\xc8\xaa\xd2\x82\x5e\xbc\ +\xf3\x37\x4c\xe8\x98\x79\x39\x21\x20\x4f\x2d\x47\xbe\x03\x90\xb7\ +\x57\x56\x9a\x52\x75\x93\x84\x80\x46\x51\xf4\x9b\xe4\xe6\x6b\xae\ +\xe5\xcb\x6f\xbe\xd1\x4d\xdb\x8d\xf6\xe0\xa3\x8f\x71\xf2\xb1\xc7\ +\x21\x8a\x66\x24\x29\xde\x7c\x6b\x4f\x01\xf3\x64\xae\x83\xa2\x08\ +\x1f\x7d\xf6\x39\xbf\xfc\xb6\x32\x6a\xff\x29\x13\xc7\x73\xc8\x81\ +\x07\x76\x4a\x41\x92\x8c\x22\x49\xd6\x07\xbb\x12\x1c\x63\x07\xac\ +\xae\x50\xdc\xc4\x96\x01\xdc\xd5\x60\x1e\xea\xaf\x0f\xdf\x7b\x07\ +\xe5\x9b\xb6\xb0\xe8\xfb\x9f\xe2\xde\xe7\x74\xd8\x98\x34\x6a\x00\ +\x13\x46\x0c\xe0\x02\x0d\xb6\xed\xac\x65\x7d\x79\x05\x15\x95\xd5\ +\x74\xd6\x16\x5a\x10\x04\x44\x49\x30\xca\xe0\x49\x98\x0c\x2b\xd7\ +\x75\x1b\xb6\xf2\x7b\xd9\x66\x1e\x7d\xe1\x1d\x86\xf6\xeb\xcb\xf4\ +\x7d\x47\x33\x7d\x9f\xb1\xf4\xec\xde\xad\xcb\xaf\xc9\xee\xde\xb2\ +\xb2\x32\x98\x30\x76\x14\x93\xc7\x8f\x65\xda\xbe\x93\x98\x3c\x61\ +\x5c\xcc\x0c\x54\xe0\xd8\xc3\x0f\x25\xb7\x5b\x0e\xb7\xfc\xe3\x01\ +\x9a\x5c\x1e\x83\x0f\x57\x50\x8c\x82\x11\x9a\x46\x14\x88\x6b\x2d\ +\x85\xdf\x49\x67\x5d\x6d\x53\xac\x00\x6c\xad\xa8\x04\x90\x0d\xcc\ +\xed\x5a\x20\x0f\x6c\x7a\x23\x68\x29\x3c\x71\xc3\xa6\x6d\x15\x03\ +\x53\x75\xa3\x44\x6e\x8a\x02\x03\xfb\x0f\xe4\xa4\x63\x8f\xe5\xbf\ +\x6f\xbd\x15\xde\x6f\x5b\x45\x05\x8f\xcd\x7b\x9a\x2b\x2f\xbe\x0c\ +\x4d\xd3\xa9\x08\x62\xa2\xce\xdd\x1d\xcc\x13\xc9\x0c\x43\x54\x91\ +\xd7\xeb\xe1\x8e\x7b\xe3\x95\xb7\x7f\xbf\xe9\xba\xa4\xdc\x78\x6b\ +\x52\xcc\xd6\xf8\xf3\x54\x47\xb4\x91\xdf\x35\x04\xe2\x5d\xe1\xcd\ +\xd2\x19\x09\x63\x57\x80\x79\x28\x2a\x37\x99\x4c\x2c\x98\xf7\x08\ +\xd3\x8f\x3a\x99\xd2\x0d\x9b\xe2\x6e\xd8\xc8\xf3\x2c\xe8\xde\x8d\ +\x5e\xf9\xdd\xc2\xbf\xf7\x93\x8f\x3d\xd8\xe1\xf3\x11\x45\x01\x8b\ +\xc9\x84\xc5\x6c\xc2\x6a\x35\x61\x0b\x98\xd1\x34\x15\x49\x10\x50\ +\x0c\xff\x8f\xb2\xcd\x15\x94\x6d\xde\xc6\x53\x2f\x7f\xc0\x90\x01\ +\x7d\x39\x70\xf2\x68\xf6\x9f\x3c\xaa\x4b\x22\xf5\xdd\x65\x9d\xc3\ +\x6c\x36\x91\x95\x99\x49\xb7\xec\x4c\xb2\x32\x33\x19\x3c\xb0\x1f\ +\x93\xc6\x8f\x65\xd2\xf8\xd1\x0c\xe8\x57\x62\x08\x27\xa2\x95\x58\ +\xb1\xf7\xd0\x94\x09\xe3\x78\x6e\xee\xbf\xb8\xf4\x86\x5b\x59\xb7\ +\x7e\x23\xaa\x66\xd4\xe1\x34\xfc\xea\xa3\xb5\xe2\x6d\xa1\xc6\xda\ +\x97\x9a\x0f\xcd\xfe\x49\xa5\x9b\x2a\x00\x36\x04\x36\xbd\x11\x6c\ +\xeb\x1a\x4c\x7b\xa3\xeb\xb5\xd5\xb5\xb5\x03\x3d\x5e\x2f\xf5\x7e\ +\x81\x15\x5b\x9b\xc8\xb0\x9b\xc8\xb0\x99\xc8\xb0\x9b\x48\xb7\x99\ +\xc8\x70\x98\x30\x89\x42\x87\x6f\x90\x10\x20\x0b\x82\x7e\xd1\xaf\ +\xbb\xf2\x4a\xde\xfe\xe0\x83\x28\x75\xc0\x7d\x0f\xcf\x65\xc4\xd0\ +\x61\x1c\xb0\xdf\xfe\x71\xef\xe9\x6c\x94\xb7\xab\x41\x3c\x7a\xf1\ +\x56\xe3\xb2\x6b\x6f\x60\x7d\xd9\xc6\xa8\xf7\x1c\x35\xe3\x10\xc6\ +\x8f\x19\x13\x5e\x94\x4c\x44\xab\xb4\x37\xc5\x3d\xa5\x00\x98\xe0\ +\xb8\xb3\x6f\xba\x83\xff\xbb\xf3\xfe\x94\x7c\xee\xa0\x01\xfd\x58\ +\xf0\xcc\xa3\x2d\x53\x4c\x1d\xb4\x05\x68\x0d\xcc\x43\x7d\x2f\x2b\ +\x33\x93\xd7\x5e\x78\x8a\x03\x8f\x3c\x99\xfa\x86\xc6\x36\x47\xaf\ +\x92\xd8\xf1\x8e\x6a\x92\x44\x6c\x36\x33\x0e\xbb\x05\x87\xcf\x8a\ +\xaa\x6a\x98\x24\x51\x8f\x26\xa3\x8c\x9c\x74\xeb\xde\xad\xdb\x2b\ +\x79\xf1\xad\x4f\x78\xf1\xcd\x4f\x18\x50\xd2\x9b\xa9\x13\x46\x30\ +\x75\xc2\x48\xf2\xf3\xb2\x3b\x1c\x81\xa7\x7a\x10\xbd\xff\x1f\xb7\ +\x30\x62\xd8\x10\x2a\xab\x6b\xf9\x7d\xfd\x46\x2a\xab\x6b\x51\x14\ +\x55\xaf\xcd\x69\xb6\xe2\x74\xd8\x39\x68\xda\x14\x26\x8f\x1b\x85\ +\x68\x2c\x3a\xc5\xae\x6b\xc4\xd2\x89\xc9\x66\xa6\x45\x7d\x7b\xf3\ +\xda\xbc\xb9\xcc\xfe\xeb\x5d\x7c\xf6\xf5\xa2\x88\x6b\xa7\x75\xbc\ +\xf3\x6b\x6d\xbc\x41\xd0\x4b\x5d\xba\x3c\x5e\x76\x56\xd5\x02\xb4\ +\xcb\x4a\xb3\xdd\x40\x0e\x1c\xbd\xb9\xa2\x82\xac\xdc\xde\xfc\x58\ +\x56\x9f\x70\x27\x87\x45\xd2\x01\xde\x00\xf7\x4c\x87\xf1\x68\x37\ +\x91\x6e\x3c\x6f\xb7\x88\x49\x6f\xb6\x10\x28\xab\x2a\xf4\xcc\x2f\ +\xe0\xfc\x33\xcf\xe4\x89\x67\x9f\x8d\xe0\x27\x55\x2e\xbb\xe6\x5a\ +\x3e\x7c\xfd\x35\x0a\xfb\x44\xfb\x55\xc4\x2e\x04\xee\x4e\x91\x79\ +\x4b\x20\x2e\x8a\x70\xff\xdc\x47\xe3\x74\xe3\x92\x24\xf1\x7f\xd7\ +\x5f\x93\x50\x3e\x98\x10\xa0\x13\xac\xac\xb4\x44\xa9\xa4\x82\x1e\ +\x4b\xd4\x2a\xb6\xef\x4c\xd9\x75\xb5\x59\xad\xb4\xd1\x8e\xbc\x4b\ +\xbe\x7f\x64\xa0\x10\xb9\x4e\xd3\xaf\xb8\x88\x05\xcf\x3c\xc2\x71\ +\xa7\x9f\x4f\xd0\xc8\x10\xd5\x52\xd8\x07\xcd\x66\x13\xe9\x4e\x1b\ +\x5e\x9f\x03\x45\x55\xb1\x98\x4d\xf8\xfd\x01\x64\xd9\xa8\x58\x63\ +\x44\x93\x21\x20\x6f\xee\x10\x50\x5b\xdf\xc0\x3b\x9f\x7e\xcb\x3b\ +\x9f\x2e\xa2\xa4\x6f\x01\x93\x46\x0f\x61\xd2\x98\x21\xe4\x76\xcb\ +\x6a\x73\x04\x9e\x68\x50\xeb\xea\x00\x6a\xe4\xf0\x21\xec\x37\x65\ +\x22\xaa\x0a\xc7\x69\xf0\xfb\xba\x0d\x7c\xf8\xc5\xb7\x94\x96\x6f\ +\xc6\xe5\x76\x51\x5d\xd7\xc4\xd3\x2f\xbd\xc9\xbb\x9f\x2c\xe4\xf4\ +\xe3\x8f\x62\xd8\xe0\xfe\x71\xbf\x73\x5b\x14\x57\xa1\xbf\x9d\x0e\ +\x27\x4f\xfd\xfb\x2e\x1e\x7e\xe2\x59\x1e\x7c\xf2\xb9\x98\xa4\x9f\ +\xb6\x44\xe2\xb4\xbb\x98\x44\xe8\xb5\x82\x9e\x3d\xd9\xa0\x47\xe3\ +\xbb\x04\xc8\xd9\xb4\xad\x82\xfe\xc5\x25\x49\x77\xf2\x04\x14\x3c\ +\x01\x85\x1d\x0d\xc9\x7d\x24\x2c\x26\x31\x0c\xee\x19\x76\x89\x4c\ +\xa7\x0e\xf8\x99\x0e\x13\x59\x4e\x33\x59\x4e\x13\x99\x0e\x09\x45\ +\x81\xab\x2f\xbf\x82\x45\x8b\x17\xb3\x6a\xcd\x9a\xf0\xfb\x1b\x9b\ +\x9a\x38\xf7\xd2\x4b\x79\xff\xbf\xaf\xe1\x74\xa4\x27\x04\xf3\xd8\ +\x8e\xf6\x47\x2a\x56\x62\x41\x3c\x52\x79\x23\x8a\xf0\xf1\xe7\x9f\ +\xf3\xaf\x87\x1e\x49\x40\xa9\x5c\x4b\xbf\xe2\x92\x28\x6e\x3c\x11\ +\x3f\xdc\x16\x6a\x25\x19\xe0\x76\xc5\xf7\x8d\xa2\x78\xfe\x80\x41\ +\xb2\x75\xcf\x99\xae\x07\xd4\x44\x54\xcb\x7e\x53\x26\xf1\xe0\xdd\ +\xb7\x33\xeb\xba\xbf\xc6\x5d\xfb\xae\x6e\x69\x0e\x3b\x59\x99\x4e\ +\x54\x0d\x2c\x66\x13\x1e\xaf\x8f\x40\x40\xd1\x8b\x1d\x68\x6a\x84\ +\xd6\x39\x1a\xc1\xb4\x08\x40\x07\xf0\x05\x7c\x2c\xfc\xe9\x17\x16\ +\xfe\xb4\x8c\x3e\x3d\xbb\x33\x6a\x68\x7f\x46\x0e\xee\x47\x4e\x76\ +\x46\xd2\x41\xb0\x25\x10\xef\x4a\x30\x8f\x5d\xa8\x1f\xd8\xaf\x84\ +\x81\xfd\x4a\x58\xb6\xe2\x77\x5e\x7d\xeb\x23\x7e\x5f\x57\x86\xa2\ +\xaa\x6c\xab\xa8\x62\xe9\x2f\xab\xd8\x67\xc2\x18\x2e\x3e\x7b\x26\ +\xdd\xf3\x72\x5a\x9d\x81\x25\x2f\x4b\x28\x30\xfb\xd2\x0b\x18\x3a\ +\x78\x20\xb3\x6f\xb9\x3d\x42\x45\xa2\xb5\x0a\xcd\x1d\x29\x26\x11\ +\x6a\x03\x4a\x8a\xf9\xea\x87\xdf\x76\x25\x90\x6f\xc3\x2c\x09\x64\ +\xda\x4d\x34\x78\xe5\x0e\xfd\x40\x01\x59\xa5\xc6\x15\xa0\xc6\x15\ +\x88\xea\x00\x92\x28\x60\x92\x04\xac\x66\x81\x34\x9b\x44\xf7\x2c\ +\x33\x3d\xb2\x2c\xcc\xbe\xe9\x3e\x6e\xbc\xe6\x5c\x6a\x6b\x9b\x2b\ +\xe5\x94\x6e\xd8\xc8\xac\xeb\xae\x63\xfe\xe3\x8f\x23\x49\x62\xd2\ +\x28\xf5\x8f\xa4\x59\x12\x81\x78\x6c\x24\xbe\xbe\x6c\x3d\x97\x5c\ +\x7d\x7d\xdc\x14\xee\xcc\x99\x27\x71\xd9\x85\x17\xc4\x2d\x70\xb6\ +\x04\xd4\x89\xda\xae\xb2\xf3\x08\x9f\xc3\x2e\x46\x72\x2d\xe6\x37\ +\x57\xb5\x96\xf7\xe9\xca\xa8\x3c\x11\xb8\x9d\x39\xf3\x24\xd6\xae\ +\xdf\xc0\xdc\x27\xe7\xa5\x74\x46\xa8\x29\x7e\xf2\x33\x2d\x98\x09\ +\x20\x2a\xe0\xf7\x78\x09\x78\x3d\xe1\xa4\x15\x2d\xe1\x34\xac\xe5\ +\xa8\x70\xf3\xe6\x8d\x6c\xda\xb4\x91\x77\x3f\xfa\x94\xec\xcc\x0c\ +\xfa\xf4\xcc\xa3\x57\x8f\x3c\x9c\x11\x7e\xea\xb1\x99\xe9\xa3\x86\ +\x0f\xc7\xe1\x70\xa4\x66\xb6\x47\x62\x69\xec\xe8\x61\x43\x18\x35\ +\x74\x08\x4b\x7f\x5d\xc9\xb3\x2f\xbf\xc9\x2f\x2b\x57\xa3\x69\xf0\ +\xee\xc7\x5f\xf1\xd1\x97\xdf\x72\xee\xcc\xe3\x39\x67\xe6\x71\x98\ +\xcd\xe6\x0e\xcf\xca\x0e\x3d\x70\x2a\xef\x2e\x78\x86\x0b\xae\xba\ +\x91\x0d\xe5\x9b\x5b\x86\xf2\x4e\x14\x93\x00\xe8\x96\x9d\x4d\x56\ +\x56\x26\x65\xe5\xdb\x76\x09\x90\xaf\x01\xd8\xbc\x4d\x0f\xff\x73\ +\xd3\x2d\x1d\x06\xf2\x64\x37\x85\xaa\x82\x22\x68\x04\x65\xf0\x06\ +\x54\xaa\x1b\x83\xf8\x83\x2a\x19\xce\x74\xfe\x72\xcd\xdd\xfc\xfb\ +\x8e\x2b\x08\x04\x9a\x23\xfd\xcf\xbf\xfe\x9a\xb3\xaf\xba\x91\x73\ +\x2e\xbc\x0e\x41\x90\x10\x10\x30\x89\x22\x36\x93\x84\xc3\x2c\xe1\ +\xb4\x99\x48\xb3\x99\xb0\x99\xa5\x5d\xba\x08\xda\x92\x5e\x3a\x12\ +\xc4\x37\x6e\xda\xc8\x69\xe7\x5f\x8c\x3b\xa6\x74\xd6\x7e\x93\x27\ +\x72\xdf\x3f\x6e\x8f\xd3\x7b\xb7\xc4\x7b\xab\x2a\xdc\x76\xf3\x4d\ +\x78\x3c\xee\x66\x9a\xcb\xe1\x8c\xf3\x37\x49\x55\x54\x1a\x7a\x3c\ +\x70\xda\xbe\x3c\xf6\xef\xbb\x9b\xbf\x3b\x40\x17\x67\x38\x46\x02\ +\x73\x76\x56\x56\x14\x40\x4f\x9e\x30\x2e\xfc\xf9\xe1\x1b\x25\x2b\ +\x3b\xe5\x11\x79\x64\xbb\xed\xe6\xeb\xa8\xac\xaa\x26\xdd\xb0\x3f\ +\x48\xc5\xa2\xf2\xbc\x17\xfe\xcb\xbc\x17\xfe\xfb\x87\x53\x86\xdf\ +\x7e\xf2\x36\xc3\x86\x0c\x49\xd9\x28\xdd\x92\xe1\xda\xb8\x51\xc3\ +\x19\x37\x6a\x38\x4b\x7e\x5d\xc1\xe3\xf3\xff\xc3\x8f\xcb\x96\xa3\ +\x79\xbc\xfc\xfb\xf1\xf9\xfc\xf7\x9d\x8f\xb9\x79\xf6\xc5\x1c\xb0\ +\xcf\xc4\x0e\x7f\x7c\xff\x92\x22\xde\x7f\x65\x1e\x57\xdc\x78\x1b\ +\x5f\x7c\xf3\x6d\xcc\x89\xb5\x93\x2f\x6f\xa1\x0d\xe8\xa7\x53\xc4\ +\xa5\xcd\xd4\xca\x9a\x76\xe1\x4d\xdb\x3b\xad\x7e\x52\x96\xc2\x13\ +\x6b\x07\x16\x17\x67\xbf\xf4\xd0\xfd\x7c\xbc\xa2\x2a\x29\x4f\xde\ +\x99\xe8\x55\x14\xf4\xa8\xdc\x6c\x12\xb0\x59\x04\x9c\x36\x89\x74\ +\xbb\x44\xa6\x53\x62\xed\xf2\x85\x3c\x33\xe7\xef\x71\xd1\xeb\xb0\ +\x91\xe3\x39\x6f\xd6\x6d\xc8\x38\x70\x7b\x65\xdc\x7e\x15\x8f\x4f\ +\xaf\xba\x1e\x90\xf5\x52\x60\x4e\x9b\x89\x74\xab\x89\x0c\x87\x59\ +\x3f\x9e\xc3\x4c\xa6\xd3\x4c\xa6\xdd\x4c\xa6\xc3\x4c\xba\xdd\x9c\ +\x54\xc6\xd6\xde\x24\x9f\xc8\xd7\x23\xa5\x85\xa1\x4d\x92\x60\xd1\ +\xe2\xc5\x9c\x77\xd9\x55\x34\x34\x46\x2f\x8e\x95\x14\x15\xf2\xc9\ +\x5b\xaf\x91\x91\x9e\x19\x95\xbc\x13\x4b\x8f\x24\xab\xb5\x99\x88\ +\xcb\x6c\x49\x29\xd2\xd5\xb4\x51\x64\xd6\x6d\x2a\xa6\xdb\x89\x06\ +\xb1\xd6\xbe\x8f\x96\xc2\xb5\x82\x96\xea\xa0\x26\xfa\x9c\xc8\x7e\ +\x30\x6e\xda\x0c\xd6\x95\x6e\x64\x4f\x6e\xdf\x7e\xfa\x36\xc3\x87\ +\x0c\x89\x1b\xb0\x44\x11\x5c\xee\x46\x7a\x0d\x9a\xd0\xe1\x63\x7f\ +\xfc\xe6\x8b\xec\x33\x69\x62\x9b\xd6\x88\x00\x96\xfe\xba\x92\xb9\ +\xf3\x5e\xe2\xfb\x25\xbf\x18\x75\x34\x35\x0e\xd8\x67\x12\x7f\xbb\ +\xf6\x32\x0a\x7b\x17\x74\xf8\x3c\x54\x55\xe5\x81\xc7\x9e\x66\xce\ +\x93\xf3\x8d\xac\x4e\xcd\xf8\x3f\xba\x43\x69\x91\x32\xa5\xf0\xda\ +\x84\x16\x9e\xbe\x68\xe1\x7d\xa3\x3d\xf1\x4f\x3f\xf9\x04\x1e\xfc\ +\xe7\x1d\x1c\x72\xfa\x75\xac\x5a\xbb\xb1\x2e\xb0\xe9\x8d\x6e\x21\ +\x9a\x27\x15\x11\x39\xc0\xda\xcd\x15\x15\x93\x35\x4d\x23\x37\xcd\ +\x92\x92\x9b\x53\x45\x43\x51\x01\x39\x04\xec\x2a\xa2\xd1\x31\x06\ +\x8f\xde\x9f\xa3\x4f\x3a\x9f\x77\x5f\x9b\x17\xf5\xbe\x55\xbf\x2d\ +\xe5\xfe\xdb\x2e\xe5\xd2\x6b\xef\x21\x33\xab\x27\x92\xa4\x20\x89\ +\x60\x92\xc0\x14\x10\xf0\x07\x15\x1a\xbd\x41\xea\x9a\x02\x61\xe7\ +\x32\x45\xd5\x8c\x2a\x5f\xc6\x85\x16\x34\x32\x6c\x3a\x47\x9f\xe9\ +\x30\x93\xe1\xb0\x90\xe9\x34\x93\xe5\xb4\x18\xbc\xbd\xfe\xb7\x39\ +\x86\xc6\x49\x56\x99\x3e\x51\xa2\x4f\x68\x7b\xee\xa5\x05\xdc\x72\ +\xc7\x5d\x71\xc5\x61\x33\x33\x32\x78\x79\xde\x93\x64\x66\x64\x86\ +\x29\x95\x64\x1e\x29\x89\x12\xa9\x92\x01\x79\x6b\x11\x64\x57\x73\ +\xc5\xb1\x95\x9c\x52\x09\xe4\xc9\xf8\xdb\x44\xdf\x3f\x55\x94\x52\ +\x4b\xc0\xbd\xab\x24\x9e\x7f\x54\xfb\x75\xe5\x5a\x7a\xf4\xe8\x49\ +\x4e\x56\x56\x4a\x07\xeb\xb6\xd0\x23\xe3\x47\x0f\xe7\xf9\xb9\xf7\ +\xb0\xec\xb7\x55\xcc\x7d\xe6\x25\x16\x7e\xbf\x84\x2f\x17\x7d\xcf\ +\xb7\x3f\x2e\xe5\x2f\x67\xcd\xe4\xb2\xf3\x4f\xc7\x66\xb5\xb6\xfb\ +\x3c\x44\x51\xe4\xfa\x59\x17\x33\x7c\xf0\x20\x66\xdf\x72\x1b\x6e\ +\x8f\xa7\x9d\x14\x4a\xcb\xfe\x2b\x03\x4a\x8a\xd1\x34\x2d\xb4\xd8\ +\xd9\xee\xe2\xaf\x1d\x02\x72\x9f\xdf\x3f\xb9\xb2\xa6\x86\xdc\x74\ +\x67\xca\x00\x41\xe7\x75\x35\x64\x19\xfc\x82\x1a\x8e\xd4\x05\xe0\ +\x80\x23\xce\xa2\xae\xb6\x92\x45\x5f\xbc\x17\xf5\xfe\x1d\x15\x5b\ +\xf8\xd7\xdf\x2f\xe1\xe2\xd9\xb7\xd3\xa7\xdf\x68\x4c\x12\x98\x4d\ +\xe0\x95\x04\x4c\x12\xf8\x65\x0d\x59\x54\x91\x55\x90\x15\x0d\x41\ +\x51\x9b\xf5\xa5\x06\xb1\xda\xe4\x0d\xd2\xe8\x09\x1a\xda\x51\x62\ +\x46\x4e\xbd\xda\x7a\x9a\x55\x22\xc3\x69\x21\x2b\xcd\x42\xb6\xd3\ +\x42\x66\x9a\x99\x6c\xa7\x95\x2c\xa7\x85\x6e\xe9\x16\xb2\xd2\xcc\ +\xd8\xad\xa6\x84\x20\xae\x6a\x0a\x37\xdf\xf6\x0f\xe6\xbd\x18\x6f\ +\xb0\x94\x9e\x96\xc6\xf3\x4f\x3c\x42\x49\x51\x71\x1c\x27\x98\x8c\ +\xf3\x4f\xc6\xd5\x26\x8b\x0a\xdb\x02\x66\x1d\x89\xd0\x13\x81\x59\ +\xaa\x00\xac\xbd\x32\xb8\xae\x90\x1d\xb6\xf5\x9c\x5a\x03\xf4\xbd\ +\x11\xcc\x7f\x5e\xb1\x86\x1f\x96\xaf\x27\xcd\xe1\x64\xec\x88\x41\ +\xec\x37\x71\x34\x3d\xbb\xe7\xa4\x6c\xd0\x6c\x4b\x1b\x3b\x72\x18\ +\xcf\xcd\xb9\x9b\x5f\x57\xfe\xce\x9c\xa7\x5e\xe0\xab\xef\x7e\x64\ +\xee\xd3\x2f\xf0\xc6\xfb\x9f\xf0\xb7\x6b\x2f\x63\xc6\xf4\x69\x1d\ +\xfa\xfc\xc3\x0f\x3e\x80\x7e\x45\xcf\x72\xfe\x95\xd7\xb3\x71\xd3\ +\x96\x78\xdc\xee\x50\xdf\xd2\xe8\x5f\x52\xcc\xf6\xca\x1a\xbc\x3e\ +\xff\xae\x03\x72\xd0\x95\x2b\xc3\x06\x0f\x4b\x59\x74\xa3\x6a\x1a\ +\xa8\x02\xb2\xa0\xe9\x39\x4e\xa8\x11\x37\x81\xc6\xb1\x67\x5c\x4b\ +\xaf\x3e\xfd\x78\xed\xc5\x47\x50\x94\x66\x9e\xde\xed\x6a\xe2\xe1\ +\xbb\xaf\xe7\xe8\x93\xce\x61\xda\xa1\xa7\xe8\xc9\x12\x26\x15\xaf\ +\x5f\xc0\x17\x54\xf0\x07\x04\x82\x32\x04\x15\x7d\x90\x50\x54\x7d\ +\xda\x24\x1a\xb3\x25\x55\x8d\x90\x8c\x45\x48\xb6\x34\xad\xf9\x0e\ +\xf4\x05\x15\x7c\x0d\x5e\xaa\x1a\xbc\xe1\xca\xeb\xa2\x51\xb8\xd7\ +\x6c\x02\xb3\x24\xe2\xb4\x49\xe4\x64\x58\x8d\xcd\x42\x76\x86\x95\ +\xba\xaa\x2d\x3c\xf4\xf0\x03\x2c\x59\xba\x34\x01\x47\x56\xc2\x0b\ +\x4f\x3e\x4a\xbf\xe2\x92\xa8\x69\x64\xac\x77\x77\x5b\x2a\xf1\x84\ +\x00\xa5\xa3\xa0\x9d\x8a\xc8\x74\x57\xcb\x40\xff\x08\xcd\x73\xa2\ +\xcf\xf8\x5f\x28\x1a\x6e\x32\x49\x68\x8a\xc8\xe6\x6d\x3b\x58\xb5\ +\x6e\x03\x2f\xbc\xfe\x21\x23\x87\xf4\x63\xfa\xbe\xe3\x18\xd2\xbf\ +\xcf\x1f\x7a\x6e\xa3\x87\x0f\xe1\xd9\x39\x77\xb3\xe2\xf7\x75\xcc\ +\x79\xea\x79\x3e\x5b\xf8\x1d\x97\x5c\x77\x2b\x53\x27\x8d\xe3\xf6\ +\x1b\xaf\xa2\xa4\xa8\x6f\xbb\x8f\x39\xb0\x7f\x09\x1f\xfe\x67\x3e\ +\x97\x5d\xf7\x7f\x7c\xf5\xed\xe2\x4e\x17\x93\xd0\xb9\xf8\x62\xca\ +\xca\x3b\x26\x3d\xec\x24\x90\x6f\x63\xe2\xa8\x91\xd8\xcc\x22\xbe\ +\xa0\xda\xe5\x37\x43\x24\x98\x87\x8b\xe2\x0a\x1a\xa0\x00\x22\x9a\ +\x06\xe3\xa6\x1e\x4b\xaf\xbe\xfd\x79\x66\xce\xad\x34\xd4\xd7\x86\ +\xdf\xaf\x28\x0a\x6f\xff\xe7\x59\xbe\xfe\xf4\x1d\x8e\x3a\xf1\x1c\ +\xc6\x4d\x99\x81\xd5\x6c\xc2\x17\x14\xf0\xf9\x55\x02\x41\x01\x7f\ +\x50\x45\x56\x04\x64\x45\x43\x96\x05\xdd\x14\x47\x23\x9c\x92\x1b\ +\xb6\xab\x8c\x3c\x27\xa3\x60\x97\x80\x06\xa2\xee\x38\xa6\x97\x02\ +\x13\x10\x05\x30\x9b\x04\x2c\x26\x11\xb3\x49\xc0\x6a\x11\xd1\x50\ +\x71\xfb\x03\xd4\x6e\xda\xc1\xa7\xef\xbd\xcc\x0f\xdf\x7e\x11\x65\ +\x37\x10\x6a\x13\x26\xed\xcb\xe5\x57\xde\x48\x45\x93\x8d\xca\x55\ +\x3b\xb0\x99\x4d\xd8\x2d\x66\x32\x9c\x56\x32\x1c\x16\x4c\x92\xd8\ +\x2a\x08\x25\xe3\x88\x5b\xe3\x8e\x53\x09\x64\xbb\xfa\xf3\x76\xc7\ +\xd6\x9e\x2a\x4a\x7b\x6a\xd3\xfd\x5e\xc4\x08\x4a\x51\x60\xe3\xe6\ +\x0a\xde\xf3\xb8\xf9\xe1\xe7\x8c\xdd\xe2\x1c\x47\x0c\x19\xc8\xd3\ +\x0f\xde\xc5\xea\xb5\xa5\x3c\xfc\xd4\xf3\x7c\xfa\xd5\x22\x0e\x39\ +\xf9\x3c\x2e\x3c\xf3\x64\xae\xbc\xe8\x9c\x28\x55\x4e\x5b\x5a\x46\ +\x7a\x3a\x2f\x3c\xfe\x20\xff\x9a\xf3\x38\x73\x9f\x7a\xae\xc5\x68\ +\xbb\x45\x34\x47\xaf\x0d\x50\xd8\xa7\x37\x0b\x7f\x5a\xfd\x47\x00\ +\x79\xb3\x72\x65\x6b\xad\x2f\x85\x37\x82\x86\x62\x80\xb9\x80\xaa\ +\x47\xc6\xaa\x86\x6a\x6c\x79\xbd\x87\x71\xfd\x1d\x4f\xf3\xec\xdc\ +\xbf\xb1\x61\xfd\xea\xa8\xf7\xd6\xd7\xd5\xf0\xd2\x33\xff\xe6\xb3\ +\x0f\xfe\xcb\xb1\xa7\x5c\xc0\xd0\x51\x53\x09\x58\x34\xfc\x41\x05\ +\x7f\x50\x23\x10\x54\x08\x2a\x2a\xb2\xac\x21\x2b\x82\x1e\x9d\x2b\ +\x82\x0e\xe8\x9a\x68\x38\x9d\x45\xde\x8d\x21\xf3\x27\x0d\xd1\x90\ +\x4a\x8a\x22\x98\x24\x01\x93\x28\x60\x36\x89\x58\x4c\xba\x74\xd2\ +\x62\x91\x50\x65\x0f\x5f\x7e\xf0\x3a\x5f\x7f\xf6\x2e\xc1\x60\x20\ +\xe1\x0d\x70\xe4\x71\x67\xb0\xcf\x41\xc7\xb3\x6e\x9b\x17\x97\xa7\ +\x09\xb7\x2f\x88\xc7\x2b\xe3\x0d\xc8\x04\x65\x95\x60\x50\xc5\x61\ +\x95\xc8\x74\x5a\xc8\x4e\xb3\x91\x9d\x61\x23\x2b\xcd\x4a\xb7\x74\ +\x1b\xdd\x32\x6c\x64\xa7\xdb\xc8\xc9\xb0\xe1\xb0\x99\x77\x3b\xa0\ +\xd0\xfe\xf4\xde\xfe\x9f\xb8\x36\x42\x78\xa0\x6a\xa6\x21\x43\xd4\ +\xa4\xb6\x9b\x19\xb0\x0f\x1d\xd4\x9f\x27\x1f\xb8\x93\x35\xeb\x37\ +\x30\xe7\xe9\xe7\x79\x72\xfe\x2b\xbc\xfd\xc1\xa7\xdc\x72\xf5\x65\ +\x1c\x7b\xf8\xc1\xed\x3a\x96\x28\x8a\xdc\x34\xfb\x72\x86\x0f\x19\ +\xc4\xd5\xb7\xdc\x8e\xdb\xeb\x49\x8c\xd8\xad\xa4\xe6\x17\xf5\xed\ +\x83\x24\x49\x94\x6d\xda\xb5\x11\x79\x29\xa0\x6c\xda\xb6\x4d\x02\ +\xc8\x4d\x4b\x0d\x90\x47\x73\xbf\xcd\x60\x1e\x5a\xf5\x55\x34\x50\ +\x8c\x05\x4b\xa7\x2d\x8b\xcb\x6e\x7c\x98\x77\x5e\x9e\xc3\xa2\x2f\ +\xdf\x8b\x3b\xd6\xce\xed\x5b\x79\xea\xe1\xdb\x29\xee\x37\x88\x69\ +\x07\x1f\xcb\xe0\xe1\x13\x71\xa4\x67\x12\x94\x45\x03\x2c\x35\x82\ +\x8a\x8a\xa2\x6a\x28\x8a\x86\xaa\xa9\xfa\x42\xa3\xb1\x02\xdd\x1c\ +\x55\xe9\x1c\xb9\x20\x82\x64\x50\x29\x26\x49\x4f\x95\x36\x1b\x2a\ +\x1b\x8b\x49\xa4\x72\xfb\x06\x7e\xfa\xf5\x07\xbe\xfa\xf4\x5d\x3c\ +\x9e\xc4\x65\xf7\x1c\x0e\x27\x67\x5e\x78\x1d\x7d\xfa\x8d\xa4\xc1\ +\x25\xe3\xf6\x06\x71\x79\x83\x78\xfd\x0a\xfe\x80\x4c\x20\xa8\xea\ +\x19\x7a\xaa\x46\x83\x27\x48\x83\xdb\xcf\xa6\x9d\x4d\x10\xc3\xdd\ +\x63\xdc\x34\x16\xb3\x44\x6e\x86\x4d\x07\xfb\x10\xc8\x67\xd8\xc8\ +\xc9\xb0\x1b\x60\x6f\x27\x2b\xdd\xda\x0e\xff\xec\x3f\x5b\x2a\xfa\ +\xf3\xde\xd8\x0e\x3b\x60\x32\x41\x55\x62\xc9\xaf\xbf\xf3\xcb\xca\ +\x75\xf8\x03\xc1\x66\x40\xef\x82\x11\x2b\x15\x8b\xd5\x83\x07\x94\ +\xf0\xd8\xbf\x6e\x67\xfd\x86\x72\xe6\x3c\x35\x9f\xd9\x7f\xbd\x93\ +\x05\xaf\xbf\xcd\x9d\x37\x5f\xc3\xa0\xfe\x25\xed\x3a\xd6\x51\x87\ +\x1d\x4c\xff\xe2\x22\xce\xbb\xe2\x1a\x36\x6d\xde\x9a\x34\xf2\x4e\ +\x46\xa0\x0f\xea\xdf\x0f\x20\xa4\x21\x57\x0c\x8c\x4d\x2d\x90\x07\ +\x36\xbd\xe1\xb7\x14\x9e\x58\xbe\x79\x5b\x45\xbf\x50\x44\x9e\xea\ +\xce\x1f\x09\xe6\x9a\x2e\x6b\x41\xd1\x14\x54\x4d\x44\x55\x34\x64\ +\x45\xc3\x61\x13\x39\xfa\xf4\xab\x19\x33\x69\x3a\x1f\xbe\xf9\x2c\ +\xa5\x6b\x57\xc4\x1d\x6f\x63\xd9\x5a\x36\x96\xfd\x0b\x41\x10\x28\ +\xee\x37\x98\x11\x63\xa6\x30\x74\xd4\x24\xf2\x0b\x4a\x74\x20\x57\ +\x54\x5d\xc7\xae\xea\x8f\xaa\x16\x2d\x11\x12\xd0\x23\x71\x04\x01\ +\x49\x02\x49\xd0\x81\x5c\x53\x64\xca\xd6\xfd\xc2\xea\xe5\x3f\xb1\ +\x72\xf9\x4f\xd4\xd5\x56\x27\xfd\x4e\x66\xb3\x85\xfd\x0e\x38\x9c\ +\xfd\x0e\x3a\x1e\xd1\x92\x46\x7d\x53\x00\xb7\x4f\xc6\xe3\x93\xf1\ +\x05\x64\xfc\x01\x95\xa0\xac\x22\x2b\xc6\xac\x23\x24\x5b\x6a\xa5\ +\x63\x04\x02\x0a\x15\xd5\x2e\x2a\xaa\x5d\xd1\xd9\x7c\x11\x99\x7c\ +\x92\x20\x90\x95\x66\x25\x3b\xd3\x4e\x37\x03\xdc\x73\x32\xed\x64\ +\x67\xd8\xc9\xc9\xb0\xd3\xcd\xf8\xdb\x62\x96\xfe\x44\xde\x3f\x23\ +\xf3\x36\xb7\x1e\xdd\x73\x18\x36\x78\x08\x87\x4e\x9b\x42\x20\x28\ +\xb3\xae\x6c\x33\x6b\x37\x6c\xa2\x62\xe7\x4e\x1a\x1b\xeb\x77\xeb\ +\x73\x1f\x50\x52\xc4\xdc\x7b\x6e\x63\xf6\xc5\xe7\x31\xf7\xe9\x17\ +\x38\xf2\xff\xdb\x3b\xef\xf0\xb6\xaa\xf3\x8f\x7f\x24\x79\xef\x21\ +\xcf\xd8\x91\x67\xe2\x4c\x08\x24\x94\x5d\x08\x3b\xec\x26\xac\x96\ +\x51\x0a\xb4\xec\x96\x1f\x85\xd2\x02\x2d\x50\x4a\x27\x65\x95\x52\ +\x46\x80\x12\x28\x53\xec\x30\xb2\x97\xb3\x9d\x61\x3b\x7b\x38\xca\ +\x70\xe2\xbd\x87\xae\xc6\xfd\xfd\x71\xaf\x6c\xd9\x96\xb5\x2c\x79\ +\xe5\xbc\xcf\xa3\x47\xd2\xd5\x95\x74\x75\x75\xee\xe7\xbc\xe7\x7b\ +\xde\xf3\xbe\x37\xfc\x8c\x1b\xaf\xb9\x9a\x07\xef\xbe\x8d\xd8\x98\ +\x18\xef\x3b\x86\x71\x05\x7c\xf7\xf1\xbb\xdc\xf9\x7f\xbf\x65\x79\ +\xf1\x1a\xaf\x00\xee\xb0\x69\x53\xa7\x28\x20\x57\x3c\xf2\x03\x92\ +\xc9\x68\xf6\x67\x54\xe4\xb5\xc4\xe1\xb0\x30\xc3\xec\xf9\x1a\x8d\ +\x66\xd6\x8a\x8f\xfe\x47\x65\x93\x95\x77\x8a\x8f\x04\x59\x83\xeb\ +\xbe\xd7\x68\xba\xb5\xe9\xd0\x10\x0d\x61\x3a\x08\x0f\xd5\x12\x11\ +\xae\x21\x32\x4c\x4b\x54\xb8\x96\xc8\x30\x0d\x15\xbb\x36\x31\xdf\ +\x38\x97\x8a\x7d\x9e\xe3\xea\x93\x92\x53\x29\x9a\x34\x8d\x84\x24\ +\x3d\xb1\xf1\x89\xc4\xc4\x26\x12\x1b\x97\x48\x5c\x7c\x12\xb1\xf1\ +\x09\x84\x84\x86\xd3\xde\xd6\x42\x4b\x73\x3d\x2d\x8d\xf5\x34\x37\ +\x37\xd0\xda\xdc\x40\x4b\x53\x03\xd5\xc7\x0e\xb3\x73\xdb\x96\x1e\ +\x8b\x94\x5c\xf6\x98\x21\x21\x9c\xfe\xc3\x8b\x38\xf7\xc2\x39\xe8\ +\x22\xe2\x69\x57\xe1\xdd\xde\xa9\xc8\x28\x66\xb3\x4d\x91\x7a\xac\ +\x32\x56\x35\xeb\x9a\x52\x17\x50\xd1\xee\x5d\xc6\xa6\x3a\xc7\xb2\ +\x3a\x6d\xeb\xeb\xb1\x43\x8f\x58\x56\xa7\xcf\x72\x15\x0b\x1b\x13\ +\x15\x46\x72\x5c\x04\x49\xf1\x51\x2a\xec\xa3\x48\x8e\x8f\x54\x6f\ +\x51\x24\xc7\x47\x11\x13\x15\xd6\xef\xff\xe4\x69\xdb\xf1\x6a\xae\ +\x16\x85\x9d\x7c\xf6\xc5\x7d\x92\xa4\x8d\x34\x2b\x5e\xa8\xc4\x91\ +\x3b\x4f\xcc\x3b\x7e\x63\x63\x53\x13\x86\x49\xfe\x2f\xc8\xf9\xe6\ +\x93\x79\x9c\x71\xea\x29\x7d\x16\xc5\x05\xab\x03\xac\x38\x78\x88\ +\x97\x5e\xfb\x2f\xab\xd6\x6e\xe0\xa1\xfb\x7f\xc1\x9c\xcb\x2f\xf1\ +\x69\x14\x6b\xb3\xd9\xf9\xf3\x73\x2f\xf1\xf2\x1b\x6f\x3b\x5d\x63\ +\xee\xaf\xc1\xcf\xde\x7b\x9b\x93\x4e\x38\x81\xfc\x33\x7e\x8c\x2c\ +\xcb\xdf\x48\x26\xe3\xa5\xce\xf2\x6b\xb0\xa4\x15\x80\x5d\xb2\x2c\ +\xcf\x3a\x54\x79\x14\x43\x76\x36\x5a\x8d\xa6\xcb\x7b\x0d\xb6\x67\ +\xae\xe8\x6f\x1a\x05\x3e\x56\xb0\xdb\xc0\x66\xb7\x29\x13\x97\x56\ +\x3b\x92\x45\x4b\x67\x98\x86\x8c\xdc\x13\xb9\xf7\xd1\x97\xd9\x53\ +\xbe\x96\xf9\x9f\xbe\xc5\xa1\x03\xfd\x8f\x56\xea\xeb\xaa\x59\xbd\ +\xe2\x7b\x37\x17\xa0\xc6\xef\x21\xa2\x56\xa7\xe3\xd4\x33\xce\x67\ +\xe6\xc5\xd7\x10\x11\x93\x4c\x87\xd9\x4a\x73\x8b\x99\x0e\xb3\x8d\ +\xce\x4e\x2b\x9d\x16\x3b\x92\xba\x68\xc9\xe6\x18\x15\x38\xe5\xc8\ +\x70\xeb\x89\xfb\x9c\x94\xcd\x9b\x5c\x11\x32\x2d\xed\x66\x5a\xda\ +\x3a\x39\x70\xb4\xb1\x17\xf4\xbb\x1b\x64\x78\x68\x48\x1f\xb8\xeb\ +\x13\x94\xfb\xe4\x84\x68\xf4\xf1\x51\x24\xc6\x45\x0a\x29\xe7\x38\ +\x1f\x6d\x68\xb5\x03\xfb\xff\x3f\xfd\x66\x21\xf5\xcd\x1d\x9c\x30\ +\x69\x02\x99\x69\xa9\x41\x3f\xe6\xdc\xb1\xd9\xfc\xf3\xe9\xc7\x38\ +\x78\xb8\x92\x97\xde\x78\x9b\x0f\x3f\xfd\x8a\x27\x7e\xf3\x00\x93\ +\x27\x78\x97\xbd\x5b\xa7\xd3\xf2\xd8\xaf\x7f\xc9\x94\x89\x45\x3c\ +\xf0\xbb\x27\xe8\xe8\xec\xf0\xb0\xbf\x8e\x13\xa7\x4c\xa6\xe2\xe0\ +\x51\xc7\xb5\xb6\xcb\x9f\xe3\xf6\x17\xe4\xa5\x00\xdb\xf6\xec\xa1\ +\x20\xc7\x40\x7a\x42\x38\x95\x0d\x9d\x41\x6f\x14\x5d\x19\xe7\x64\ +\x59\xc9\xec\x66\x07\xbb\x56\x91\x1f\x6c\x36\x0d\x56\x1b\x48\x16\ +\x19\xb3\x1a\x95\x12\x2e\x69\xc9\x2a\x98\xc1\x7d\x8f\x9e\xc2\xde\ +\xed\xeb\xd9\xb6\xb9\x98\x6d\x5b\xd7\xd1\xd8\x50\xe7\xe3\x77\xfb\ +\x06\x71\x8d\x46\x43\x4e\xfe\x78\x26\x4c\x9a\xce\xd4\x19\x67\x13\ +\x1d\x97\x42\xa7\x64\xa3\xbe\x45\xa2\xd3\x6c\xa5\x53\x52\x57\x9c\ +\x5a\x6c\x8a\x46\x6f\x55\xf4\x79\x87\x94\x22\xf7\x2b\xa7\xf4\xdd\ +\xe6\x5d\x92\x1e\xd9\xcd\x20\xcf\xc5\x42\x05\xd9\xb3\xb6\x67\x96\ +\xac\x54\xd6\x34\x73\xa4\xa6\xa9\xbb\x93\xe8\xe5\xdd\xeb\xb4\x1a\ +\x12\xe2\x22\xd1\x27\x44\xa1\x8f\x8f\x26\x39\x21\x0a\x7d\x42\xb4\ +\x02\xfd\xc4\x68\x75\x5b\xf4\x71\x25\xe5\x78\x93\x29\x72\x24\xfe\ +\x26\x57\x2b\x87\x03\xb1\xf8\xec\xc8\xd1\x1a\xde\x33\xce\xe7\xf9\ +\xd7\xde\x23\x55\x9f\xc4\x59\x3f\x98\xce\xf9\x67\x9f\x4e\x4e\x76\ +\x66\x50\x7f\xd3\xd8\xac\x4c\xfe\xfe\xc4\xef\x38\x5c\x79\x94\x7f\ +\xbf\x39\x8f\xd0\xd0\x50\x1e\xb8\xf3\x36\x12\xe2\xbd\x8b\xc2\xb9\ +\x72\xd6\x45\x14\xe4\xe5\xf2\xb3\x7b\x1f\xe0\xe0\xa1\xfe\x75\xf3\ +\xa2\xc2\x02\xa2\x22\x23\xd9\xbc\x6d\x4f\x0f\xb6\x0e\x16\xc8\x97\ +\x02\x6c\x2c\x2d\xe3\xca\x0b\xce\x67\x6c\x52\x44\xd0\x41\xde\x35\ +\x9c\x92\x15\x41\xc8\xb1\x02\x54\x56\xb5\x6c\x45\xdb\x06\xab\xcd\ +\x8e\x64\x05\xc9\x02\x61\xa1\x5a\x3a\x43\x34\x84\x85\x6a\x18\x93\ +\x37\x9d\xdc\xf1\x33\xf8\xd1\x4d\x1a\xaa\x2b\xf7\xb3\xb3\x6c\x3d\ +\xdb\xb6\xae\x67\xff\x9e\x6d\x2e\x43\x02\x7d\xb5\xe8\x98\x38\x26\ +\x4e\x39\x99\xa2\xc9\x27\x53\x50\x34\x8d\xd0\xf0\x18\x24\xab\x1d\ +\xb3\x64\xa3\xbe\x59\x52\x22\x65\x24\x1b\x66\xc9\x8e\x64\x55\x00\ +\x6e\xb5\xda\xb1\xda\xec\xd8\x6c\xca\x50\xcb\xee\x94\xe8\xa8\x67\ +\x62\x22\x6f\xae\x06\xd9\xab\x4d\xfd\xbe\xe8\xc3\xe4\x8c\xb7\xef\ +\xb3\xd9\xed\xd4\x36\xb6\x51\xdb\xd0\xea\xd4\x11\xf5\x5d\xd2\x1c\ +\x17\x15\x41\x72\x42\x14\x29\x89\xd1\x24\xc7\x47\x2b\x90\x4f\x88\ +\x26\x39\x21\x86\x94\xc4\x68\xf4\x09\x31\xc4\x44\x85\x33\x5a\x6c\ +\xb0\x0b\x62\x04\xfd\xf7\xd8\x5d\x2f\x02\x0b\x44\x67\x65\xb3\xd9\ +\x31\x77\x76\x62\x96\x2c\xec\xd8\x5d\xc1\xa6\xd2\x9d\x3c\xfb\xef\ +\xb7\x29\xc8\x1d\xcb\xc5\x33\xcf\xe4\x92\xf3\xce\x26\xcf\x90\x15\ +\xb4\xdf\x96\x95\x99\xc1\x33\x8f\x3d\x4c\xe5\xb1\x2a\xde\x98\xf7\ +\x01\x86\xec\x31\xcc\xbe\xfc\x92\xae\xdc\xe7\xee\x6c\x52\xd1\x38\ +\xbe\xfb\xe4\x7f\xfc\xe2\x57\x0f\xb1\x62\xcd\x3a\x97\x17\xcc\xc9\ +\x27\x9e\x00\xc0\xaa\x0d\x65\x3d\xd8\xea\xb3\x6c\xe7\xaf\x57\x1a\ +\x66\x98\xbd\x2f\x39\x31\x21\xef\xdb\xb7\xe7\xb2\xa3\xb2\x95\x8f\ +\xd6\x1f\x1d\xb4\xab\x40\x46\x56\xbc\x73\xc7\x24\xa4\xfa\x2b\x74\ +\x1a\x19\xad\x1a\xd3\x1d\xa2\x43\x8d\x24\x51\xa2\x4a\xc2\x42\x1c\ +\x71\xde\x4a\x74\x89\x23\xca\xc4\x62\x6e\x63\xdf\xce\x2d\x34\xd4\ +\x1d\xa3\xa5\x49\xd1\xbf\x9b\x1b\xeb\x69\x6e\x52\xee\xdb\xda\x5a\ +\x90\x65\x19\x9d\x2e\x84\xb8\xf8\x44\xe2\x12\x12\x95\xfb\xb8\x44\ +\x62\xe2\x13\x89\x8d\x4d\x24\x73\x6c\x3e\x99\xd9\x85\x58\x6d\x72\ +\x97\x87\x2d\x59\xec\x48\x56\x3b\x92\xc5\x86\xd9\xc9\xf3\xb6\x58\ +\xec\x58\xed\x4a\xc8\xa3\xdd\x6e\x57\x3b\xa1\xee\x02\x00\x76\xbb\ +\x97\xb9\x1b\xfa\xcb\xf5\xd0\x8f\x14\xe2\x29\xd7\x83\xe7\xef\xa3\ +\xfb\xf3\x5c\xbd\xbf\xc7\xf1\xf4\xf3\x7d\xfd\xe6\xa6\xe8\xfe\x4d\ +\x7d\x57\xd3\x2a\xfb\x86\x87\x85\x90\x9c\x10\xdd\x05\x76\x7d\x42\ +\x34\xfa\xc4\x58\xf4\x09\xd1\xa4\x24\xc5\xa0\x4f\x88\x21\x29\x3e\ +\x7a\xd8\x4b\x39\xbd\x13\xa8\x6d\xdb\xb1\x93\x4e\x73\x67\xff\xc9\ +\xc5\x86\x25\xb9\xbb\xef\xec\x76\x98\x54\x34\x9e\x88\x88\x48\x97\ +\x8b\xa1\xec\x76\x1b\x9b\x4b\xcb\x94\x15\xce\xde\x50\xc7\xe9\xb3\ +\x65\x19\xc6\x15\xe4\x53\x5d\xdb\xc8\x86\x2d\xdb\x59\x57\x52\xca\ +\x9a\x8d\x5b\xa9\xad\x6b\x50\xea\x68\x2a\x93\x47\x14\x15\xe4\x71\ +\xc9\x79\x67\x31\xeb\xfc\xb3\xc9\x33\x04\x77\x01\xd2\xb1\xea\x1a\ +\x56\xad\xd9\xc0\xc4\xa2\x42\x26\x8e\x2f\xf4\xba\x33\x7a\xfa\x1f\ +\xcf\xf1\xca\xdc\xff\xf6\x69\xdb\xcf\xff\xe5\x8f\xdc\x30\xfb\x6a\ +\x4e\xbc\xf0\x36\xaa\xeb\x1a\xf7\x4b\x26\x63\x7e\xef\xd1\x7d\xb0\ +\x41\xfe\x3a\x70\xfb\x47\x2f\xbf\x80\x3e\x25\x9d\x67\xbf\xad\x18\ +\x9c\x16\xd4\x0b\x06\x1a\x4d\x37\x0c\xb4\x6a\x2c\xab\x02\x73\x25\ +\x4a\x43\xa7\x03\x9d\x4e\x43\x88\x16\x42\xd5\xc7\xa1\x3a\x25\x29\ +\x97\x12\x3a\xa8\xc4\x80\x2b\x0b\x7b\x94\xd8\xf0\xee\xe4\x5d\x34\ +\x17\xe9\xf1\x00\x00\x20\x00\x49\x44\x41\x54\x60\xb3\x59\x91\xcc\ +\x1d\x44\x44\x46\x3b\x15\xbe\x50\x74\x6c\x9b\x5d\x09\x53\xb4\xaa\ +\xda\xb6\xc5\x6a\xc7\xa2\xde\x5b\xad\xdd\xcf\xad\x6a\x14\x8a\xd5\ +\x6a\xc7\x6a\x97\xbb\x4a\x48\xd9\x65\xe5\xe6\x00\x9d\x92\x42\xba\ +\x67\x95\x88\x9e\x1e\xb9\xa7\x89\x4e\xfa\x8d\x58\xf1\x0d\xac\xae\ +\x92\xfe\xb8\x02\x6f\x4f\x90\xbb\x84\xba\xa7\x8e\xc7\x4d\x92\x21\ +\xaf\xcf\x85\xa3\x43\xd7\x42\x72\x5c\x0c\xfa\xc4\x68\x52\x12\x63\ +\x48\x4e\x8c\x21\x25\x31\x96\x94\xc4\x18\xf4\x09\xb1\xa4\x24\xc5\ +\xa2\x4f\x8c\x21\x2c\x34\x64\x48\x41\xde\x1b\xe8\xce\xcf\x5d\xed\ +\x3b\x9c\x46\x11\xae\x46\x15\xfd\xa5\x51\xee\xdd\x69\x79\xfb\x9b\ +\xdc\x7d\xb6\xdd\x2e\xb3\xb7\xc2\xc4\xda\x4d\xa5\xac\x2f\x29\x63\ +\xdd\xa6\xad\xd4\xd5\x37\x76\xb5\x95\xf1\xf9\x39\xcc\x3a\xff\x6c\ +\x2e\xbd\xe0\x9c\xa0\x42\xbd\xa6\xae\x9e\xba\xfa\x06\xc6\x66\x65\ +\x12\x15\xe9\xdd\x62\xa2\x4f\xbf\xfa\x86\xff\x7b\xf4\xf7\x74\x76\ +\x9a\xbb\xae\xd3\x55\xdf\x7d\x05\xda\x30\x7e\x38\xe7\x97\x00\x6f\ +\x48\x26\xe3\x1d\x83\x0d\xf2\x1b\x80\xff\x3d\xfc\x8b\xdb\xb9\xe6\ +\xd2\x4b\x78\x61\xc1\x01\x1a\xda\x2c\x83\x0e\x72\xa7\xfe\xbb\xc7\ +\x8f\xd2\x68\x64\xb4\xea\xc5\xad\xd5\xa8\x71\xdf\x3a\x05\xd4\x3a\ +\x4d\x37\xdc\xb5\x5a\x15\xf6\x28\xaf\x6b\x35\xea\x4a\x35\x8d\xdc\ +\x23\x25\x80\x63\x61\x90\xb2\xfa\x53\xee\x4a\xba\x65\x53\xe3\xcf\ +\x1d\x12\x89\xd5\xa6\x40\xdb\x31\x71\x69\xb5\xcb\xd8\x6d\x76\x6c\ +\x32\xd8\x6d\x4a\xe5\x16\xbb\x4c\x97\x37\x21\xab\x00\xf7\xec\xd1\ +\x7a\x03\x56\xdf\x22\x56\x5c\xc5\xa3\xe3\xd3\xf7\xf5\xec\x38\x5c\ +\x7b\xf7\xee\x8e\xcd\xdf\xd1\x44\xff\x32\x8d\xc7\x73\x21\xcb\xc4\ +\xc5\x44\x90\x92\xa8\x40\x5d\x9f\x18\xab\xc0\x3e\x29\x16\x7d\x62\ +\x2c\xa9\x49\x71\xe8\x13\x63\x89\x8d\x8e\x18\x14\x98\xbb\xba\x1f\ +\x49\xf2\x90\x33\x70\x7d\xf9\xad\xbe\xc2\xbc\xbf\x0e\x05\x60\x6f\ +\xc5\x41\xd6\x6d\x2a\x65\xfd\xa6\xad\xac\x2b\xd9\x4a\x75\x6d\x1d\ +\xb2\x0c\xe3\x0b\x72\xb9\xf4\x82\x1f\x32\xeb\xfc\x1f\x92\xef\xc7\ +\x52\x7c\x6f\xcc\x62\xb1\xb8\xcc\x79\xde\x9f\x95\x6d\xdf\xc1\x4f\ +\xef\xfe\x25\x87\x8f\x54\x12\x17\x1b\xc3\xee\x92\x35\xbc\xfd\xf1\ +\x77\x3c\xfa\xd7\x37\x00\x7e\x2c\x99\x8c\xef\x0f\x36\xc8\xd3\x81\ +\xa3\x33\x4f\x3f\x95\xbf\x3e\xf2\x10\x9f\x95\x54\xb1\xf5\x60\x73\ +\xd0\x41\xde\x37\x2d\x64\xf7\x63\x45\x97\xeb\x96\x5b\x34\xca\xba\ +\x7a\x75\x21\x8f\x0a\x67\x34\x68\xb5\x8a\xd7\xae\x53\x5f\x73\xc8\ +\x31\x5a\x4d\x77\xfe\x6c\x8d\xfa\x5a\x6f\x68\x39\x74\x6c\xd9\xc9\ +\x2b\xb7\xab\xf9\x5a\x6c\x36\x19\x9b\xac\x82\xdb\x09\xf6\x76\x7b\ +\xb7\x6c\x62\xef\xf2\x86\xe5\x2e\x0f\xc3\x5b\x78\xf5\xf6\xb6\xbd\ +\x86\x65\xbf\x1e\xf4\x40\x65\x1a\xb9\xdf\x89\x4e\xef\x64\x9a\x60\ +\x8c\x26\x5c\x9c\x0b\x57\xc7\xeb\xe1\xf7\x45\x84\x85\x90\xec\x80\ +\x7c\x72\x1c\x29\x09\xb1\xa4\x24\xc7\x92\x92\x18\x47\x4a\x92\x72\ +\x4b\x4a\x88\x41\xeb\x27\x7d\x5d\xa5\xbe\x1d\xc9\x7a\x7f\xef\xe7\ +\x81\x18\x5d\xf8\x9b\xaf\xa7\xe2\xe0\x61\xd6\x95\x28\x50\x5f\x5b\ +\xb2\x99\xa3\x55\xb5\x8c\x2f\xc8\x61\xd6\xf9\xe7\x70\xd9\x85\xe7\ +\x06\x0d\xea\xde\x5a\x7d\x43\x03\xb7\xdf\xff\x20\x21\x3a\x1d\x1f\ +\xbd\xfd\x3a\x77\x3c\xfc\x77\xe6\x2f\x5e\x0b\x90\x21\x99\x8c\xc7\ +\x06\x15\xe4\x2a\xcc\xb7\xc7\xc7\xc6\x4e\x58\xf8\xee\x5b\x6c\x32\ +\x35\xf3\xd5\xe6\xea\x21\x05\xb9\xe3\x38\x95\x9c\x2c\xdd\x30\xd0\ +\x38\x79\xe9\x5d\x90\x57\x33\x19\x6a\x34\xaa\xd7\x4e\xf7\x32\x63\ +\x4d\xd7\xc9\x91\xd5\x33\xd4\xed\x35\xcb\x4e\x12\x88\x2c\xcb\x5d\ +\x13\x95\xca\x76\x05\xe4\x72\x0f\x78\xd3\x9d\x49\x51\xb6\x77\xc1\ +\x47\xb6\xfb\xae\x69\xf7\xef\x6d\xbb\x00\x99\x57\xde\xbd\x3b\x29\ +\xc4\x1b\xb0\xfa\xfa\x7d\xde\x7b\xf7\xfe\xc4\xbf\x7b\xce\x05\xed\ +\xc5\xf7\xf5\xd3\xd1\xb9\x3a\xf7\x3a\xad\x86\xe4\xf8\x18\x52\x92\ +\x15\x2f\x3e\x35\x39\x9e\x94\xc4\x38\x52\x93\x1d\xb0\x8f\x27\x25\ +\x29\xae\x5f\x29\x67\x34\x45\x66\x7a\xf2\xc8\x83\xf1\xd9\xde\x9a\ +\xe9\x70\x25\xeb\x4a\xb6\xb0\xae\x64\x2b\x6b\x36\x6c\x26\x26\x26\ +\x8a\x4b\xcf\x3f\x87\x4b\x2f\x3c\x97\x82\x5c\xc3\x90\x9c\x2f\xab\ +\xcd\x46\x69\xf9\x36\xa6\x4d\x9d\xc2\xe4\xf3\x6e\xa5\xa1\xa9\x65\ +\x87\x64\x32\x4e\xec\x7b\xfe\x82\x1b\x47\xee\xb0\x25\x4d\x2d\x2d\ +\x13\xf6\x1e\x30\x31\x56\x9f\x39\x08\xad\xa5\xdf\x27\x7d\xff\xf8\ +\x1e\x99\xf8\x7a\x5e\xa4\x5d\x50\x57\x73\x90\x6b\x6c\x8e\x5c\x2e\ +\xdd\x17\xb1\xa6\xc7\xb7\xf4\x84\x81\xa3\xa8\x6d\xb7\xdc\x22\x77\ +\x49\x25\x3d\x23\x4f\x7a\xc2\xc0\xee\x4f\xe8\xe0\x00\x4b\x48\xf9\ +\xff\x3e\x2f\xbe\x37\x00\x71\xec\xbe\x1e\x6a\xff\x3b\xc8\x6e\x2e\ +\x7e\xd9\xfd\xb9\x96\x3d\x87\x6d\xba\x7a\xa3\xcd\x66\xa7\xba\xbe\ +\x89\xea\xfa\xa6\x7e\x3a\x45\x65\x5b\x42\x6c\x14\xfa\xa4\x38\x52\ +\x93\xe3\x49\x55\x01\x9f\xaa\x57\xef\x93\xe3\x49\x49\x8a\x27\x26\ +\x2a\x72\xc4\x81\xdd\x1b\xc0\xfa\x9b\x0d\x32\x90\x11\x3d\x86\xac\ +\x4c\x0c\x59\x99\x5c\x7b\xe5\x2c\x00\x0e\x57\x1e\x63\x6d\xc9\x16\ +\x5e\x7d\xfb\x7f\xd4\x37\x36\x31\x65\xe2\x78\x2e\xbb\xe0\x5c\x0a\ +\xf2\x72\x06\xed\xdc\x85\xe8\x74\x9c\x74\xc2\x54\xb6\xef\x3e\x40\ +\x43\x53\x0b\xc0\x92\x01\x7d\xde\x40\x41\x0e\xdc\xb3\xa1\xb4\x8c\ +\x1b\xae\xcc\x21\x32\x4c\x47\x87\x64\x1b\x4c\x9a\x7b\x6c\x0c\x0e\ +\x7e\x38\xbc\xf1\x1e\x50\x77\xb8\xeb\xb2\x5d\x05\x77\x4f\x28\x78\ +\xf2\x96\xed\xf6\x9e\x9e\x9e\xbd\x8f\x66\xdb\x4f\x0c\xba\xec\x1e\ +\x42\x81\x29\x21\x15\x9c\x4a\xdf\xfe\xe6\x5b\xf6\x69\x9f\x3e\x5f\ +\x23\x7b\xd9\xe9\xf9\xdf\x56\xbc\xef\xe8\x64\xef\x3b\x3a\xd5\x1a\ +\x5b\xda\x68\x68\x6e\x63\xcf\x81\x4a\xd5\x49\xd0\x74\xfd\x22\x87\ +\xf3\x10\x19\x1e\x86\x3e\x29\x96\xd4\xe4\x04\x52\x93\xe2\xd1\x27\ +\xc7\x93\x9a\x14\xaf\x3c\x4f\x8e\x23\x25\x29\x81\xc4\x84\x58\xbf\ +\xa5\x9c\x91\x04\xff\x60\x5b\x56\x66\x3a\x73\x32\x2f\x66\xce\xe5\ +\x17\x03\x50\x79\xac\x9a\xb5\x25\x9b\x59\xbe\x7a\x1d\xc9\x49\x89\ +\x4c\x2e\x1a\x37\x68\x50\x77\x0a\x3b\x1c\x52\x90\x2f\x03\xec\x1b\ +\xcb\xca\xb5\x3f\xbe\xf2\x72\xb2\x93\x22\xd8\x7d\xac\x6d\x08\x00\ +\x2e\xbb\x94\x7f\xe4\x7e\xa0\xee\xf0\x0c\xba\x81\xee\x10\x05\xfc\ +\x1f\x7a\xd3\x67\x42\x46\x76\x33\x80\xf0\x26\xe6\x5b\xf6\xf3\xb4\ +\xc8\x81\xbf\x8a\xbc\x78\x9f\x8c\xec\x16\xac\x72\xbf\xfb\xcb\x6e\ +\xbe\x62\x60\x71\xec\x83\x4f\x14\xd9\xcb\xaf\x76\x92\x79\x54\xe9\ +\xae\xad\xc3\x4c\xdb\x91\x4e\x4c\x47\x6a\xfa\x95\xcd\x74\x5a\x6d\ +\x97\x64\x93\xaa\x4f\xe8\x02\x7d\x4a\x72\x02\x69\x7a\xe5\x3e\x25\ +\x29\x61\x48\xa3\x72\x46\xa2\x65\xa6\xa7\xf2\xa3\x4b\x2f\xea\x7a\ +\x5e\x55\x53\xcb\x8e\xdd\x7b\xd1\x27\x25\x92\x98\x98\x40\x88\x2e\ +\x78\x0b\xd6\x8a\x37\x96\x03\xd8\x55\x96\xfa\x6d\x03\xd2\xc8\x01\ +\xc2\x0c\xb3\x37\x45\x47\x45\x4e\x5b\xf2\xbf\x77\xb0\xd8\xa1\xd3\ +\xa2\x2e\x72\xb1\xcb\x58\xed\x72\xcf\x7b\x9b\xfa\x58\x9d\x14\xb4\ +\xd8\x7a\x6d\xb7\x77\xbf\x6e\xb5\xab\xd1\x1f\xea\x36\xab\xcd\xae\ +\x14\x83\x70\x8a\x12\xb1\xa8\x11\x22\xce\xdb\xfa\x6a\xa8\xfd\x68\ +\xb6\x2e\x2e\x16\x34\x9e\x26\xcb\xe8\x13\x43\xed\x36\x5c\xce\xa7\ +\x28\x8d\x60\x46\xac\xb8\x9b\xe8\xc4\xaf\x08\x92\xde\x1d\x9d\xef\ +\xf1\xe8\x03\x88\x58\x71\xf5\xfe\x01\x4c\xfa\xfa\xd3\x56\x7a\xce\ +\x0f\xf8\x10\xaf\xef\x87\x76\xdf\xff\x7f\xe7\x2a\x1c\x57\x43\x7c\ +\x5c\x34\x69\xc9\x09\xaa\x37\x9f\x40\xaa\x3e\x91\xd4\xe4\x04\xd2\ +\xf4\x89\xa4\xea\x95\x7b\x5f\xf3\x6f\x0b\x0b\xbc\xd9\xec\x76\x26\ +\x9e\x73\x33\x2d\x6d\x1d\x9b\x25\x93\xf1\x24\x97\x80\x1e\x24\x8d\ +\x1c\x60\x49\x5b\x7b\xc7\xb4\x1d\x7b\xf7\x31\x69\x5c\x21\x11\xa1\ +\x5a\x17\x07\xc3\xa0\x6c\x93\x65\xba\x3a\x00\xab\xda\x59\x58\x9d\ +\x60\xaf\x6c\xb3\x2b\x89\xa9\xd4\xd0\x40\x65\xbb\xf2\x9a\xa5\xeb\ +\xb1\x1d\x9b\xdd\x69\xbf\xae\x4e\xc3\xa6\x56\x16\xb2\xa9\xfb\xab\ +\xf7\x56\x5b\xd7\x3e\x16\x8b\xad\xab\x63\x09\xe4\x88\x43\xee\xe5\ +\xe2\x7a\xbd\x34\xdf\x17\x99\x46\xf6\xe5\x68\x7d\x5b\xd2\x3f\xe0\ +\xd1\x84\x0f\x23\x33\xdf\x0f\x45\xf6\xe2\xb4\xc8\x1e\x64\x1c\x2f\ +\xbf\x58\xf6\xe1\xe0\xfa\x9d\x8a\x70\x37\x3f\x64\xa7\xa1\xb1\x85\ +\x86\xc6\x66\x76\xee\x3b\xd8\xef\x24\x75\x54\x44\xb8\x0a\xf6\x44\ +\x52\x93\x15\xc0\xa7\xeb\x93\x54\xd0\x27\x91\xaa\x4f\x24\x29\x21\ +\x4e\xe4\xca\x09\xa2\x95\xee\xd8\x47\x4b\x5b\xc7\x80\x65\x95\x80\ +\x81\x1c\x78\x70\x63\x59\x39\x93\xc6\x15\x0e\xe9\x89\xd1\x68\x94\ +\x32\x6b\x8e\xd4\x1d\x83\xd5\x81\xf4\xdb\xa9\x74\x75\x00\xf6\x5e\ +\x1d\x82\x23\x55\x6d\xcf\xc7\xca\xe2\x21\x5b\xd7\x22\x22\x8b\x4d\ +\x5d\xca\x6f\x73\xac\x0c\xed\x7e\x4d\xb2\xda\x7a\x6e\xb7\xda\xba\ +\xdf\x63\xb1\x75\xbd\x2e\x59\xec\xd8\x6c\x36\x9f\x60\xe0\x95\x0e\ +\x3c\xd8\x92\x86\x0f\x93\xbe\xb2\xd7\x53\x0e\x3e\x6a\xe1\xfd\x74\ +\x3c\x9e\x4b\x7a\xf9\xd9\xd1\x05\x5c\x7c\xee\xde\xa7\xbd\xc3\x4c\ +\xc5\xa1\xa3\x4a\xb2\xa6\x7e\x46\x23\x21\x21\xba\x6e\x8f\x5e\x9f\ +\x44\xba\x7a\x9f\x96\x92\xa4\x76\x02\x0a\xf0\x43\x43\x84\x94\xe3\ +\x8f\xad\xde\x50\xee\xcc\xd0\x21\x07\xf9\x4a\xc0\xba\xb1\xb4\x2c\ +\xe4\x96\xd9\x57\x8b\x7f\xc7\xb9\x53\x09\xd1\x12\x1a\xa2\x1d\x26\ +\x9d\x8a\x92\x61\xd1\xda\x6b\xf4\xe0\xe8\x1c\x94\x8e\x40\xe9\x18\ +\x24\x47\xc7\x60\x53\x12\x7b\x59\xad\xca\x7b\x95\x0e\xc3\xda\xd5\ +\x79\x28\x49\xbf\xac\x58\xad\x76\xcc\x16\x6b\x57\x87\x62\xb1\x5a\ +\x95\xd7\xd4\xcf\x97\x2c\x56\x24\xab\xf2\xba\xd5\x62\xf3\xd3\x7b\ +\xf5\xb3\xe3\xf0\xd4\x85\x79\x9a\x58\x1d\x34\xed\xde\x9b\x04\x2c\ +\xc1\x8c\x52\xea\x6b\x56\xab\x95\xca\xaa\x5a\x8e\x1c\xab\xe9\x57\ +\x36\xd3\x68\x20\x21\x3e\x8e\xf4\x94\x44\xd2\xf4\x49\x8a\x37\x9f\ +\x92\x4c\x7a\x8a\xf2\x38\x2d\x35\x99\x34\x7d\x92\x90\x72\x5c\x98\ +\x3a\xd1\x69\x55\x19\x3a\xb4\x20\x97\x4c\xc6\x96\x30\xc3\xec\x0d\ +\x5b\xb6\xef\x3c\xcd\x6a\xb3\x11\x1a\x22\x8a\x12\x0c\xcf\x4e\x45\ +\xa7\xfe\x37\xa1\x43\xd6\xa9\x38\x58\xd0\x0d\x7c\x47\x67\xd0\x0d\ +\x7c\x8b\xb5\x7b\x44\x61\xb1\x58\x91\x1c\xfb\x38\x75\x14\x66\x8b\ +\x55\xed\x24\xac\x48\x92\xb5\x7b\x5f\x8b\xb5\xbb\x13\xb1\x2a\xcf\ +\x1d\xaf\x4b\x16\x8b\xf2\x1e\x8b\x15\xb3\x64\xe9\xea\x70\x02\x27\ +\x7f\xe1\x67\x88\xa5\x1c\xa0\x0e\xcb\x57\xd9\x4c\x76\xd5\x6d\x79\ +\x1c\x4d\xf4\xde\xdf\x2e\xcb\xd4\x37\x34\x51\xdf\xd0\xc8\xf6\xdd\ +\x15\xdd\xfa\x7e\x2f\xef\x3e\x26\x3a\x8a\x34\x7d\x22\x69\x29\xc9\ +\xa4\xa5\x24\x91\x9e\x92\xac\x02\x3f\x99\xb4\x94\x64\xd2\x53\x93\ +\x49\x8c\x3f\x7e\xa4\x1c\x8b\xd5\xc6\xfa\x2d\x3b\x01\x36\x48\x26\ +\x63\xcb\x70\xf0\xc8\x01\x96\x74\x9a\xcd\xa7\x95\xef\xda\xcd\xb4\ +\x49\x13\x82\x0e\x25\x6f\xa1\x31\x9c\x40\x2a\x7e\x47\xf7\x6b\x61\ +\xa1\xba\x61\x91\xba\x56\xe9\x54\xac\x6a\xc7\xa1\xde\x3b\x46\x0f\ +\xea\x63\x47\x07\xd1\xe3\x66\x55\xb7\x4b\xdd\x9d\x87\x59\xb2\xa8\ +\xef\xb1\x74\xed\x67\xb1\x58\x31\x5b\x2c\x48\x52\xf7\x63\x8b\x64\ +\x45\xb2\x5a\x30\x9b\xad\x58\xac\x16\x24\x8b\xf2\xd8\x6a\xb3\x7a\ +\x37\x9a\xf0\x00\x56\xcf\xf1\xf1\x43\x23\x7f\xb5\xb6\xb5\xd1\xda\ +\xd6\xc6\xde\x03\x87\x7a\x1c\x9c\xf3\x44\x6f\x68\xa8\x8e\x54\xbd\ +\x02\xf7\xf4\xd4\x64\xd2\xf4\x0e\xc8\xeb\xbb\xee\x53\xf5\x49\x84\ +\x8c\x02\x29\x67\x73\xf9\x6e\x3a\x3a\xcd\x01\x91\x55\x02\x09\xf2\ +\xa5\xc0\xa3\xeb\xb7\x6c\xed\x03\xf2\x60\x78\x75\xc1\x86\xce\x50\ +\x1d\xf3\x68\xfe\x1d\xc3\xb5\x63\x0a\x0b\x0d\x21\x2c\x34\x84\x68\ +\x86\x36\x4d\xae\x2c\x2b\x93\xe6\x4a\x87\xe0\xe8\x34\xba\x3b\x05\ +\x49\xb2\x74\x77\x0e\x92\x45\xe9\x4c\x24\x2b\x66\x8b\xa4\x6c\x97\ +\xd4\x4e\xc3\x62\x51\xf6\x95\xba\xdf\x6f\x96\x24\xa5\x03\xb1\x58\ +\x30\x4b\x52\xf7\x67\x4b\x4e\xcf\xcd\x92\xf2\xba\xc5\x82\xd5\xe2\ +\xc3\x48\x25\x80\x93\xbe\x16\x8b\x95\xc3\x95\x55\x1c\xae\x3c\xd6\ +\xd5\x31\xf4\x8e\xe8\xd1\x68\x20\x39\x31\xc1\x09\xf0\x7a\x32\xd2\ +\xd4\xfb\x54\x3d\x69\xa9\x7a\xd2\x53\x53\x88\x8a\x8c\x18\xd6\x6d\ +\x6f\xc5\xda\xad\xce\xec\x1c\x78\x5b\xf6\xa5\xa1\xf5\x67\x61\x86\ +\xd9\x61\xc0\xd1\xb1\x99\x19\x49\x9f\xbe\xfa\xaf\x61\x0b\x22\xb1\ +\x4d\x74\x02\xc2\x3c\x9b\x5d\x96\xb1\x48\xdd\x9d\x80\x33\xf8\x25\ +\x75\x84\xe1\xd8\x6e\x96\x24\x24\xc9\x82\xc5\x62\x51\x3a\x18\xc9\ +\x31\xca\x90\xd4\x8e\xc4\xe9\xb1\x64\xa1\x53\x92\x94\xcf\x96\x2c\ +\x98\x25\x73\xd7\x7b\x94\xcf\x93\x30\x9b\x1d\x8f\x95\xf7\xd9\x6c\ +\x56\xaf\x53\x30\x3b\xa7\x71\x88\x8d\x89\x22\x3d\x35\x85\xb4\x54\ +\x3d\x19\xa9\x29\xa4\xa7\xe8\x49\x4f\x4b\x21\x3d\x55\x4f\x46\x5a\ +\x0a\x69\xa9\x29\x24\x25\xc4\x0f\xd9\x39\x3e\xe3\xea\x7b\xa9\x38\ +\x78\xb4\x1e\x25\xbf\x8a\xd4\xbf\xb3\x31\x78\xe1\x87\x48\x26\xa3\ +\x14\x66\x98\xfd\xe1\xc1\xca\xa3\x77\x95\xee\xdc\xc5\xd4\xa2\xf1\ +\xe2\x6a\x10\x26\x6c\x84\x9a\x56\xa3\x21\x3c\x3c\x8c\xf0\xf0\x30\ +\x62\x89\x1a\xd2\x63\xb1\xd9\xed\x7d\x3b\x07\x07\xf8\xd5\x4e\xc4\ +\xd1\x99\x98\x2d\x92\xb2\x8f\x64\x51\x3b\x85\xee\xd7\xcd\x66\x89\ +\x7d\x07\x4c\xec\xd8\xb5\x97\x4e\xc9\x8c\x24\x59\x00\x99\xc4\x84\ +\x78\x92\x12\xe2\x49\x4a\x48\x20\x31\x51\x7d\x9c\x98\x40\x72\x62\ +\x02\x09\x09\xf1\x41\x59\x0c\x54\x52\xba\x8b\x8a\x83\x47\x01\x3e\ +\x74\x07\xf1\xa1\x90\x56\x00\xe6\x01\x77\xcd\x5f\xb2\x5c\x80\x5c\ +\x98\x30\x61\x01\x31\x9d\x56\x4b\x64\x44\x38\x91\x11\xe1\x10\x3b\ +\x3a\x7e\xd3\xc7\xf3\x97\x3b\x33\x33\x30\x9d\x6f\xa0\x3e\x48\x32\ +\x19\xd7\x00\x7b\x17\xae\x2c\x46\xb2\x58\x44\x0b\x14\x26\x4c\x98\ +\xb0\xde\x9c\x94\x2c\x7c\xb1\xa0\x18\x60\xaf\xca\xcc\xe1\x05\x72\ +\x47\x0f\xd3\xdc\xda\xca\xaa\x0d\x25\xfd\xee\x30\x5a\xf4\xd8\x91\ +\xf8\x3b\x84\x3e\x2e\x4c\xd8\xd0\xda\xc2\x95\x25\x34\x35\xb7\x06\ +\xd4\x1b\x0f\x0a\xc8\x01\xf9\xeb\x25\xcb\x04\x64\x87\xe1\xef\x10\ +\x26\x4c\xd8\xd0\xda\xc7\xf3\x97\x81\x32\x5b\x3b\x7c\x41\x2e\x99\ +\x8c\x15\x40\xf1\xea\x92\x4d\x34\x36\x37\x8b\x7f\x4d\x98\x30\x61\ +\xc2\x54\xab\x6f\x6c\x66\x69\xf1\x26\x80\x62\x95\x95\xc3\xd6\x23\ +\x07\x98\x67\xb5\xda\xf8\x7e\xf9\x2a\xf1\xcf\x09\x13\x26\x4c\x98\ +\x6a\x9f\x7f\xb7\x0a\x8b\xd5\x46\xa0\xbd\xf1\x60\x81\xfc\x23\xc0\ +\x3c\x7f\xe9\x32\xf1\xcf\x09\x13\x26\x4c\x98\x6a\xaa\xac\x62\x56\ +\x19\x39\xbc\x41\x2e\x99\x8c\x8d\xc0\x57\xdb\xf7\xec\xa3\xe2\xd0\ +\x61\xf1\xef\x09\x13\x26\x6c\xd4\x98\xec\x67\xfa\x82\x3d\x15\x87\ +\xd9\xba\x7d\x1f\xc0\x57\x2a\x23\x03\x6a\xc1\x4a\x5a\xf0\x0e\x30\ +\xe7\xeb\x25\xcb\xb8\xef\x96\x1b\xbb\x36\x0e\xa7\x49\xc8\xd1\xb2\ +\x12\x52\xac\xe8\x14\x26\x2c\x30\xd6\xdc\xd2\xca\xd1\xaa\x2a\x8e\ +\x55\xd5\x70\xb4\xba\x06\xb3\xd9\x4c\x52\x62\x02\x49\x09\x09\x24\ +\x25\x2a\x8b\x86\x92\x93\x12\xfd\xca\xf5\xf2\xf1\xd7\xcb\x9c\xd9\ +\x18\x70\x0b\x16\xc8\xbf\x03\x6a\xbf\x5d\xba\x42\x7f\xcf\xcd\x3f\ +\x19\xd4\x3a\x83\xa3\x05\x30\x02\x94\xc2\x84\x05\xc6\x6c\x76\x3b\ +\xb5\x75\xf5\x1c\xad\xaa\xa1\xaa\xba\x86\xa3\x55\x35\x1c\xad\xae\ +\xa6\xaa\xaa\x86\x63\xd5\x35\x54\xd5\xd4\x12\x11\x1e\x46\x4e\x76\ +\x16\x13\x8b\x0a\x99\x38\xbe\x90\x1f\x9e\xfe\x03\x32\xd2\x52\x03\ +\xf2\xfd\x76\xbb\x8c\xf1\xdb\x15\x00\xb5\x2a\x1b\x47\x06\xc8\x25\ +\x93\xd1\x12\x66\x98\xfd\x7e\x55\x6d\xdd\x7d\x1b\x4b\xcb\x39\xe5\ +\x84\x29\xa2\x35\x09\x13\x26\x2c\xe0\xd6\x69\x36\x53\x55\x5d\xcb\ +\xd1\xea\x1a\x8e\x55\xd7\x2a\x8f\x55\x40\x1f\xab\xae\xe1\x58\x55\ +\x35\xd5\xb5\x75\xd8\x6c\x76\x40\x26\x3a\x2a\x92\xf1\x05\x79\x4c\ +\x1c\x5f\xc8\x8c\x93\xa6\x32\x61\x5c\x21\x45\x85\x79\x44\x45\x06\ +\x2f\x5f\xfa\xea\x8d\xe5\x1c\xad\xaa\x03\x78\x5f\x32\x19\x83\xb2\ +\x5a\x32\x98\xf9\x20\xe7\x01\xf7\xcd\x5f\xbc\x4c\x80\x5c\x98\x30\ +\x61\x3e\x5b\x63\x53\x33\x47\xab\x6b\xa9\xaa\xa9\xe5\x58\x75\x9d\ +\x72\x5f\xa5\x00\xfb\x98\xfa\xb8\xa9\xb9\xa5\xdf\xfa\xb0\x19\x69\ +\x29\x4c\x9e\x30\x8e\xa2\x71\xf9\x4c\x2c\x2c\x60\x62\x51\x01\x86\ +\xac\x31\x83\x96\xf3\x5c\x56\x6b\xa8\xaa\x93\x9c\x0e\x26\x06\x67\ +\x04\xef\xcb\x41\xf9\x6a\x61\x86\xd9\x3b\x22\x23\xc2\x8b\x16\xbe\ +\xfb\x16\x91\x11\xe1\x22\x0b\x20\x22\xeb\xa1\x30\x61\x36\x9b\x8d\ +\xea\xda\x06\x8e\xd5\xd4\x52\x55\x53\x47\x55\x75\x1d\xc7\x6a\x6a\ +\xba\x60\x7d\xb4\xba\x96\xea\x9a\x3a\xcc\x66\xb3\x03\xcd\x4e\x85\ +\xae\xfb\x16\x39\x0f\x09\x0d\x61\x5c\x6e\x0e\x13\xc6\xe5\x33\x61\ +\x5c\x1e\x13\xc7\x15\x50\x54\x98\x47\x42\x7c\xdc\xa0\xff\xb6\xaa\ +\x9a\x5a\xe6\x7f\xbf\x90\xaf\xbf\x5f\xc4\x9f\x7f\xff\x5b\xb2\xb3\ +\xb2\x99\x7a\xc1\xad\xb4\x77\x98\x77\x4a\x26\xa3\xcf\xc5\x1a\x06\ +\x35\xfb\xa1\x3b\xaf\xbc\xa3\xd3\xfc\xa7\x05\x2b\x8b\xb9\xf2\x82\ +\x99\xa2\x05\x0b\x13\x36\xca\xad\xbd\xa3\x93\xaa\x9a\xfa\x2e\x48\ +\x57\xd7\xd4\x2b\x5e\x75\x6d\x3d\x55\xd5\xb5\x1c\xab\xa9\xa3\xae\ +\xa1\x01\xbb\xcd\x91\x8e\xb6\x57\x61\x71\x47\x0e\xf2\x1e\x5e\x64\ +\xf7\xc3\xa4\xc4\x78\x8a\x0a\xf3\x14\x60\x17\xe6\x33\x61\x5c\x3e\ +\xf9\x39\xd9\x43\x5a\x6c\xe2\x58\x55\x35\x5f\x2f\x58\xc4\x57\xdf\ +\x2e\x60\xc3\xe6\xad\xd8\xed\x36\x66\x9e\x75\x26\xe3\x0b\x0b\xf8\ +\xe0\x8b\x25\xb4\x77\x98\x83\xea\x8d\x0f\x06\xc8\xdf\x02\x7e\xff\ +\x5f\xe3\x67\xe1\x57\x5c\x70\x2e\x9a\x5e\x03\x00\xe1\xb1\x0a\x6f\ +\x5c\xd8\xc8\x30\x59\x96\x69\x68\x6a\x51\x21\x5d\x47\x75\x6d\x3d\ +\x55\x35\xf5\x8a\xdc\x51\x53\x4f\x55\xad\xe2\x59\xb7\xb6\xb5\xf7\ +\x29\x06\xd1\x3b\x6f\x78\x57\xb1\x67\x37\xa6\xd5\x68\xc8\x35\x64\ +\x29\xd0\x56\x6f\x45\x85\x79\xa4\xa5\x24\x0f\x8b\xf3\x51\x79\xac\ +\x8a\xaf\xbf\x5f\xc4\xd7\xdf\x2d\x64\xe3\x96\xad\xca\x6f\x94\xbb\ +\xbb\xa0\x7b\xef\xb8\x15\xbb\x5d\xe6\xe5\xff\x7e\x06\x4a\xec\xf8\ +\x5b\x23\x16\xe4\x92\xc9\x78\x34\xcc\x30\xfb\x4d\xd3\xe1\xca\xbb\ +\x16\x17\xaf\xe1\x82\x33\x4f\x17\x57\x84\x30\x61\xc3\xcc\x2c\x56\ +\x2b\x35\xb5\x8d\x1c\xab\xad\x57\x00\xed\x80\x74\x6d\x3d\xd5\x2a\ +\xb8\x6b\x6a\x1b\xb1\x58\x2d\x4e\x60\x76\xf6\xa0\xbb\x65\x8f\xbe\ +\x3d\x80\xc7\x0d\x44\x47\x45\x52\x54\x90\xc3\x84\x71\x79\x14\x15\ +\xe4\x52\x54\x98\xcb\xf8\xfc\x5c\x22\xc2\xc3\x86\xd5\x79\x3a\x5c\ +\x79\x94\xaf\xbf\x5f\xcc\xd7\xdf\x2d\x64\x73\x59\x39\xb2\x6c\xef\ +\x39\x9a\x50\x6d\xda\x94\xc9\x9c\xfe\x83\x19\x7c\xb5\x68\x35\xfb\ +\x4c\x95\x00\x6f\x4a\x26\xe3\xd1\x91\xec\x91\x03\xfc\x15\xb8\xfd\ +\xcd\x0f\x3f\x0d\x15\x20\x17\x26\x6c\x70\xad\xb5\xad\x83\xea\xba\ +\x06\xaa\x6a\x1a\xa8\xaa\x6b\xa0\xba\xb6\x81\xaa\x1a\x07\xb0\x1b\ +\xa8\xaa\xa9\xa3\xa1\xb9\x15\xd9\x6e\x77\xef\x41\xcb\xae\x41\x2c\ +\xbb\xc2\xb4\xcb\x9a\xcf\xca\xa3\xcc\xf4\x54\x26\x14\xe6\x52\x54\ +\x90\x43\x51\x41\x2e\x13\xc6\xe5\x91\x95\x91\x36\x6c\x8b\x2e\x1f\ +\x3c\x5c\xc9\xfc\x05\x0a\xbc\xb7\x94\x6f\xef\x35\xb1\xea\xfa\x44\ +\xdc\x73\xc7\xcf\x00\x78\xf1\xcd\x4f\x01\x2c\x2a\x03\x83\x6a\x41\ +\x07\xb9\x64\x32\x9a\xc2\x0c\xb3\xdf\xdb\xb5\xbf\xe2\xa7\x2b\x37\ +\x94\x70\xd6\x8c\x93\xc5\xd5\x25\x4c\xd8\x00\x4d\xa9\x5e\xdf\x4c\ +\x75\x5d\x23\x55\xb5\x0d\x54\xd7\x35\x50\x5d\xab\x3e\xae\xad\x57\ +\xb6\xd7\xd4\xd3\xd1\x69\x76\x0a\x54\x90\x7b\x3c\xee\x31\x71\xe8\ +\x59\x5c\xf1\xe2\xe5\xee\x7d\xc2\x42\x43\x29\xcc\xcb\x66\x7c\x7e\ +\x8e\xe2\x6d\x17\xe6\x32\xbe\x20\x87\xb8\x98\xe8\x61\x7f\x6e\x0f\ +\x1c\x3c\xcc\xfc\x05\x8b\x99\xbf\x60\x31\x5b\xb7\xed\x70\xea\xd4\ +\x64\x8f\xa7\x24\xcf\x90\xcd\xac\x0b\x66\xb2\x68\x55\x09\xdb\x76\ +\x55\x00\xbc\x27\x99\x8c\xa6\x11\x0f\x72\xd5\xfe\x0c\xdc\x3c\xf7\ +\x03\xa3\x56\x80\x5c\x98\x30\x0f\xce\x8f\x64\xa1\xba\xbe\x89\xea\ +\xda\x06\xaa\xeb\x9a\xba\x60\x5d\x53\xd7\xa8\x7a\xd5\x8d\xd4\xd6\ +\x37\x76\xc5\x46\x77\x0f\xef\xfb\x56\xa6\xf7\x1a\xc4\xf4\x70\xc2\ +\x9d\xde\xe5\xc6\x03\x57\x77\x4e\x4e\x8c\xa7\x28\xdf\x40\x51\x81\ +\x81\xa2\xc2\x5c\x8a\xf2\x73\xc8\x1d\x9b\x89\x2e\x08\x65\xd2\x82\ +\x65\xfb\x4d\x07\x99\xbf\x60\x09\x5f\x7f\xbf\x98\x6d\x3b\x77\xfb\ +\x20\x15\xf5\x7c\xe1\xae\xdb\x7e\x8a\x56\xab\xe5\x85\xb9\x46\x00\ +\xbb\xca\xbe\xa0\xdb\xa0\x80\x5c\x32\x19\x77\x87\x19\x66\x7f\x54\ +\xba\x73\xd7\xf5\x1b\x4a\xcb\x99\x31\x75\xf2\x80\x3e\x6f\xb4\x4c\ +\xac\x89\x15\xa7\xc7\x9f\x35\xb7\xb6\x77\xc1\xb9\x46\xbd\x57\x6e\ +\x4d\xd4\xd4\x35\x50\x55\xdb\x48\x53\x4b\x9b\x93\x07\xed\x02\xd2\ +\x3d\x64\x8f\x9e\x2c\xe9\x2b\x75\x78\x01\x70\x2f\x43\x8b\x75\x5a\ +\x2d\x86\xec\x8c\x2e\x68\x8f\xcf\x37\x50\x54\x90\x83\x3e\x29\x61\ +\x44\xfe\x17\xfb\x2a\x4c\x7c\xbd\x60\x09\xf3\x17\x2c\x61\xc7\xee\ +\x3d\x3d\x65\x25\xe7\x73\xeb\xea\x5c\xbb\x78\x9e\xa2\xd7\x73\xdd\ +\xd5\x57\x50\xbc\xb1\x9c\x92\xd2\x5d\x00\x1f\x49\x26\xe3\xee\x51\ +\x03\x72\xd5\x9e\x01\xae\x9b\xfb\xe1\x27\x9a\x19\x53\x27\x07\x3c\ +\x1a\x62\xb4\x44\x75\x88\x48\x94\x91\x69\x36\x9b\x9d\xba\xc6\x16\ +\x6a\xea\x9b\x14\x28\xd7\x37\x51\x53\xd7\x44\x95\xfa\xd8\x01\xee\ +\x4e\x49\x72\x11\xd1\xd1\x7b\xe2\xd0\x7f\x49\xc3\x6b\x99\xc4\xc3\ +\xfb\x62\xa2\x23\x19\x9f\x3b\x96\xf1\x05\x63\x15\x60\xe7\x1b\x28\ +\xc8\xcd\x26\x3c\x2c\x74\x44\xff\x4f\xbb\xf7\x55\x30\x7f\xe1\x52\ +\xe6\x7f\xbf\x84\x5d\xfb\xf6\xf7\xe8\xfd\x7c\x3e\xf7\xbd\xf6\xb9\ +\xfd\xe6\x1f\x13\x16\x16\xc6\x0b\x73\x3f\x71\xbc\xf0\xcc\x60\xfd\ +\xae\x41\x03\xb9\x64\x32\x96\x85\x19\x66\x7f\xb9\x7e\x4b\xd9\x95\ +\xe5\xbb\xf6\x30\xa5\xa8\x50\x5c\xfd\xc2\x46\x84\x75\x9a\x25\x6a\ +\xea\x9b\xa9\xae\x6f\xa6\xa6\xae\x49\x7d\xdc\x44\x4d\x9d\x7a\x5f\ +\xdf\x44\x7d\x43\x0b\xf6\xde\x51\x0c\xce\x31\xd1\xb2\xec\x2d\x0f\ +\x7c\x03\xb2\x2f\xaf\xc9\xae\x3a\x6b\x0d\x99\x69\x7a\xc5\xc3\xce\ +\xcb\x66\x5c\xfe\x58\x8a\xf2\x0d\x8c\x49\x4f\x19\x35\xff\xdf\xce\ +\x3d\xfb\x15\x78\x2f\x5c\xca\xde\xfd\x07\xfa\x97\x4d\xdc\x0d\x6d\ +\xdc\x9d\x4c\x19\x62\xa2\xa3\xb9\xe5\x86\x6b\xd9\x54\xbe\x87\x55\ +\xeb\xcb\x00\xbe\x94\x4c\xc6\xb2\x51\x07\x72\xd5\xfe\x04\x5c\xf9\ +\xc6\x87\x9f\xf0\xc2\x1f\x7e\x2b\x08\x21\x6c\x48\x4d\x96\xa1\xa9\ +\xa5\x9d\x9a\x86\x66\x6a\xea\x1d\x37\xc5\xab\x76\x3c\xaf\xae\x6f\ +\xa2\xb5\xad\x93\x3e\x11\x1d\x3d\xf4\x68\x9f\xc4\x54\x9f\x25\x0d\ +\xdf\xde\xd7\xff\x84\x5c\x78\x78\x18\x05\x39\x99\x8c\xcb\xcb\x66\ +\x7c\xde\x58\x8a\xf2\xc7\x52\x98\x97\x4d\x4c\x54\xe4\xa8\xfb\x6f\ +\xb7\xef\xda\xcb\x37\x8b\x96\x31\x7f\xc1\x52\xf6\x9b\x0e\xf6\x91\ +\x4d\xbc\xed\xe8\xbc\xdd\xe9\xc6\xeb\x66\x13\x1f\x17\xcb\x0b\x73\ +\xff\xe5\xcc\xba\x41\xb3\xa0\x2e\xd1\x77\x65\x61\x86\xd9\xdf\x6b\ +\x34\x9a\x0b\x3f\xfc\xd7\xb3\x14\xe6\x1a\x46\xbc\x3c\x22\xb6\x0d\ +\x4f\x09\xc6\x6a\xb3\x53\xd7\xd0\x42\x4d\x43\x8b\x02\xe7\x86\x66\ +\x6a\x1b\x5a\xa8\xae\x6f\xa6\xb6\xbe\x85\x9a\xfa\x66\x6a\x1b\x9a\ +\x91\xac\xb6\x6e\x30\xf6\x88\x89\xee\x1d\x7a\xe7\x0a\xe4\xea\xfe\ +\x2e\xf2\x7c\xf4\xab\x69\xbb\x8d\xc1\x96\xbd\x5b\x4c\xe3\xc5\xf7\ +\xe9\x13\xe3\x14\x0f\x3b\x37\x9b\xf1\xf9\xd9\x8c\xcb\xcb\x26\x27\ +\x2b\x1d\xad\x56\xcb\x68\xb5\xf2\x9d\x7b\x98\xbf\x70\x29\xdf\x2e\ +\x5c\xc6\x81\x43\x47\xfa\x39\x97\xbd\xce\xbd\xd7\xff\x5d\xaf\xfd\ +\x9d\xfe\xbb\x88\xf0\x30\xd6\x2c\x9c\x4f\x43\x53\x3b\xe7\xdf\xf0\ +\x20\xb2\x2c\x2f\x90\x4c\xc6\x8b\x02\x02\xe8\x61\xb2\x44\xdf\xa5\ +\x57\x2e\xcb\xf2\x85\x73\x3f\x34\xf2\x97\x47\xfe\x4f\xb8\x85\xc2\ +\x7c\xb6\xf6\x0e\x89\x9a\xc6\x16\x05\xc8\x0d\xad\xd4\xaa\xc0\x56\ +\x9e\x2b\xb7\xc6\xe6\x56\x94\xc5\x76\xfd\x84\xdb\xc9\x9e\x57\x17\ +\x0e\x6c\xe8\xed\xca\x89\xf3\x4d\x0a\xf1\x26\x82\x44\xa7\xd3\x92\ +\x9b\x95\xce\xb8\xbc\x31\x8a\xa7\x9d\xab\x40\x3b\x29\x21\xf6\xb8\ +\x68\x0b\x65\xdb\x77\x31\x7f\xd1\x72\xbe\x5d\xb8\x0c\xd3\x91\xa3\ +\x3d\x3a\x61\x77\x52\x88\xeb\xd7\xe4\x7e\x77\x91\xdd\x7c\xc4\x2f\ +\x6e\xbd\x99\xf4\xd4\x14\x9e\x78\xee\x9f\x8e\xf6\xf6\xa7\xc1\x3e\ +\x0f\x83\xee\x91\xab\x5e\xf9\x0a\xad\x46\x73\xd6\xa7\xaf\xbd\x88\ +\x61\x4c\x66\x40\xbc\xbf\xa1\xf0\x3c\x83\xe1\xc5\x8e\x96\xdf\xe1\ +\x9f\x62\x20\xd3\xd0\xd2\x41\x6d\x43\xab\x7a\x6b\xa1\xa6\x51\x7d\ +\x5c\xdf\x42\x6d\x63\x2b\xd5\xf5\xcd\x74\x74\x5a\x70\x9b\xa7\xa3\ +\x5f\x0f\xda\x69\x79\xb8\x8c\x5b\x2f\xcb\xa5\x47\xee\xd2\x83\xee\ +\xd9\x29\xc8\xae\x3c\x3c\xb7\xde\xb6\x2b\x8f\xdd\xb5\x87\x18\x13\ +\x1d\xc1\xb8\xdc\x2c\xc6\xe7\x65\x31\x2e\x37\x8b\xc2\xbc\x2c\xf2\ +\xc7\x66\x12\x16\x1a\xc2\xf1\x62\xb2\x2c\xb3\x75\xdb\x4e\xbe\x5d\ +\xbc\x82\x6f\x16\xad\xe0\x70\xe5\x51\xaf\x46\x3a\xde\xff\x1f\xbd\ +\xff\x3b\xf7\x23\x33\x7d\x72\x22\x6b\x16\x7c\x45\x75\x6d\x13\x67\ +\xcf\xb9\x1f\xbb\x5d\x5e\x29\x99\x8c\x67\x07\x0c\xd0\xc3\xd8\x23\ +\x07\xf8\x93\x5d\x96\xbf\x7b\xeb\xa3\xcf\x78\xe2\x81\x7b\x02\xf0\ +\x63\x47\x87\x7c\x30\x9a\x65\x10\xc9\x62\xa3\xae\xa9\x8d\xba\xc6\ +\x36\xc5\x8b\x6e\x6c\xa5\xae\xa1\x95\x9a\x86\x36\x6a\x1b\x5b\xa8\ +\x6d\x68\xa3\xae\xb1\x15\xab\xcd\xe6\xc6\x83\x76\x93\xa7\xc3\x5f\ +\x7d\xb3\x8f\x97\x25\x7b\xe5\x85\x79\xfc\x62\xd9\x87\x83\xeb\x15\ +\x35\xa1\xd1\x68\x18\x93\x96\xcc\xb8\xdc\x31\x0a\xb0\x73\xc7\x30\ +\x3e\x2f\x8b\xf4\x94\xa4\xe3\x72\x04\x26\xcb\x32\x5b\xca\x77\x30\ +\x7f\xd1\x0a\xbe\x5b\xbc\x82\xca\x63\xd5\xf4\x59\xdc\xe4\xe1\xe4\ +\xca\x1e\xd6\xf2\xc8\xee\xdc\x6f\x37\x9f\xfd\xe0\x3d\x77\x12\x13\ +\x1d\xcd\xe3\xff\x78\x1b\xbb\x7d\x68\xbc\xf1\x21\xf3\xc8\x55\xaf\ +\x7c\x43\x48\x88\x6e\xfa\x57\x73\xff\x4d\x7a\x8a\x5e\xe8\xca\x23\ +\x78\x5b\x6b\xbb\x99\xda\xc6\x76\x05\xce\x8d\xed\xd4\x36\xb6\x29\ +\x5e\x74\x53\x1b\xb5\x8d\xad\xd4\xd6\xb7\xd1\xdc\xd6\xe1\x95\xe7\ +\xe4\x49\x0a\x91\xfb\xf1\x5e\x5d\x79\xdb\xfd\x7e\x5f\x3f\x2b\x1d\ +\xfb\x7a\x6c\xfd\x7b\xdb\x2e\xbd\x7b\x0f\x11\x2b\xae\xbc\xba\x88\ +\xf0\x50\xf2\xb3\x33\x18\x97\x97\x49\x61\x8e\x02\xec\x02\x43\x26\ +\x51\x91\xe1\xc7\xb5\x7c\x26\xcb\x32\x25\x5b\xb7\xf1\xed\x92\x95\ +\x7c\xb7\x64\x25\x47\xab\x6a\x5c\x9c\x4b\x57\xa3\x97\x81\x8e\xcc\ +\xdc\x38\x10\xbd\xbe\x2f\x3f\xd7\xc0\xb2\xaf\x8d\x54\xd5\x34\x70\ +\xfa\x95\x77\x63\xb1\xda\x36\x4a\x26\xe3\x8c\xc0\x3a\x77\xc3\xdb\ +\x23\x07\x78\xda\x6a\xb5\x7d\x3e\xf7\xc3\x4f\x79\xf4\xde\x9f\x23\ +\x6c\xf8\x99\xdd\xae\x48\x1d\x75\x4d\x0a\x9c\xeb\x9b\xda\xa9\x55\ +\xbd\xea\xda\xc6\x76\xea\x1a\x5b\xa9\x6d\x6a\xc7\x6c\xb6\x78\xb8\ +\x00\x5c\xfb\x41\x5e\x49\xc7\x1e\xf5\xcd\xfe\x5f\x70\xbf\x58\x46\ +\xf6\xc2\x69\xf6\x26\xf2\xc4\xfb\xf7\xa5\x24\xc5\x31\x2e\x47\x01\ +\x76\x61\x4e\x26\xe3\x72\xc7\x90\x9d\x99\x32\xa8\xa5\x10\x87\x7b\ +\x7b\x2b\xd9\xba\x8d\x6f\x16\xaf\xe0\xfb\xa5\xab\xa8\xaa\xa9\xc3\ +\xe7\x79\x0c\xd9\xb7\xd8\x6f\xef\xfe\x6a\xd7\xee\xfc\x63\x0f\xfe\ +\x92\x10\x9d\x8e\x97\xde\xfa\x14\x8b\xd5\x06\xf0\xf4\x50\x9d\xbb\ +\xa1\x04\xf9\x97\xc0\xa6\x4f\xbf\x5b\x78\xd2\x9c\x59\x17\x50\x94\ +\x9f\x2b\x5a\xf2\x20\x9a\xd9\x62\x53\xc1\xdc\x4e\x43\x73\x3b\x75\ +\x4d\x1d\xd4\x35\xa9\x80\x6e\x6a\xa7\xbe\xa9\x8d\x86\x96\x0e\x75\ +\x19\xb8\x27\x2f\x34\x10\x17\x8e\xec\x71\xe5\x9c\xeb\x6e\x40\x1e\ +\xe0\x45\xed\x07\xc0\x3d\x0c\xbd\x43\x74\x3a\x72\xc6\xa4\x52\x90\ +\x93\xa1\x00\x3b\x27\x93\xc2\x9c\x4c\x12\xe2\xa2\x45\xc3\xeb\x65\ +\x36\xbb\x9d\x0d\x9b\xcb\xf9\x76\xc9\x2a\x16\x2c\x5b\x45\x4d\x6d\ +\x7d\xdf\xd6\xe0\x29\x83\xa2\xd7\x8e\x80\xec\xbf\xfc\xd5\xcb\x7e\ +\x30\xfd\x24\x2e\x3e\xff\x5c\xb6\xed\xaa\xe0\xbd\x4f\x17\x02\x6c\ +\x52\x99\x36\x24\x36\x64\xd2\x8a\x2a\xaf\x9c\x0a\xac\x9e\x52\x34\ +\x4e\xf3\xce\x3f\x9f\xe9\x33\x8c\x10\xd2\x85\x7f\xdb\x5a\xda\xcd\ +\xd4\x37\x77\x50\xdf\xdc\x41\x5d\x53\x07\xf5\xcd\x2a\x9c\x9b\x15\ +\xef\xba\xae\xa9\x9d\xb6\x0e\x09\xef\x27\x75\x3c\x65\xc5\x93\xbd\ +\x93\x16\x7c\x99\x78\x74\x96\x3d\xbc\xfe\x3e\x6f\xa4\x10\x3c\x86\ +\x93\xf9\x32\xd1\x19\x17\x1d\x49\x61\x4e\x06\x05\x86\x74\x0a\x73\ +\x32\x29\xcc\xc9\x20\x37\x2b\x8d\xd0\x10\x9d\xa0\xb4\x1b\x78\xaf\ +\xdb\x54\xc6\xb7\x8b\x57\xb2\x70\xf9\x1a\xea\xea\x1b\x7c\x6f\x2b\ +\x3e\xc9\x58\xbe\xc9\x66\xde\xc8\x34\xdf\x7c\x34\x8f\x13\xa7\x4c\ +\xe2\x8a\x5b\x7f\x47\x49\xd9\x6e\x19\x38\x5d\x32\x19\xd7\x06\x1c\ +\xd0\x23\x40\x5a\x41\x32\x19\xd7\x86\x19\x66\xcf\x2d\xdb\xb9\xfb\ +\xf6\xcf\xbe\x5f\xcc\x8f\x2e\x3e\xdf\x67\x80\x05\xfe\xc4\x0d\xcd\ +\x36\x6f\x2f\x80\x86\x16\x33\x8d\x2d\x1d\xd4\x35\x77\xd0\xd0\xdc\ +\x41\x5d\x4b\x27\xf5\x2a\xa4\x1b\x9a\x3b\xa8\x6b\x6e\xc7\x62\xb5\ +\x7b\x09\x56\x4f\x1e\xb0\x9f\xc3\x54\x0f\x9e\xb7\xe7\xf7\xc9\x41\ +\x58\xe9\xe8\x8d\x4c\xd3\xff\xfb\xb5\x1a\x0d\x99\xe9\x49\x0a\xb0\ +\x0d\x19\x14\x1a\x32\x28\xc8\xc9\x20\x2d\x39\x5e\x90\xd9\x9b\xb6\ +\x6b\xb3\xb1\xa6\xa4\x94\xef\x96\x14\xb3\x70\xc5\x6a\xea\x1b\x9a\ +\xbd\xf0\xac\xbd\x6b\x2b\x1e\x47\x72\x2e\xbf\x46\xf6\x42\xad\x73\ +\xfd\xca\x95\xb3\x2e\x62\xda\xd4\xc9\xfc\xef\xf3\x45\x94\x94\xed\ +\x06\x98\x1b\x0c\x88\x8f\x18\x8f\x5c\xf5\xca\x93\x81\x5d\xf1\x71\ +\xb1\xc9\x5f\xbe\xfe\x12\xf1\x71\xb1\xc7\xa5\x47\x6d\xb6\x58\xa9\ +\x6f\xe9\xa4\xa1\xb9\x53\xb9\x6f\xe9\x54\xbc\xea\x96\x4e\x1a\x54\ +\xef\xba\xa9\xad\xb3\x87\x67\xe1\xb5\x47\xdb\x4f\x56\x3c\x9f\x16\ +\xa7\x78\xf2\x68\x7d\xf4\xee\x7d\x9f\xe8\x74\x33\xc1\xe5\x65\x78\ +\x5f\xdf\xef\x73\xed\xdd\x47\x84\x85\x92\x37\x36\x8d\x42\x43\x1a\ +\x85\x63\x33\x28\x30\xa4\x91\x6f\x48\x27\x72\x98\x15\x3a\x18\xee\ +\x66\xb5\xda\x58\xb3\x71\x2b\xdf\x2d\x2d\x66\xe1\xca\xb5\x34\x36\ +\x36\xbb\x6c\x2b\x5e\x87\x74\x7a\x3d\xd1\x89\x6f\x93\xd4\xce\xfb\ +\xbb\x9d\xe7\x91\x09\x0d\x0d\x61\xc5\xfc\x4f\x89\x8b\x8b\xe7\xcc\ +\xab\xef\xa3\xa1\xa9\xa5\x0e\x18\x2f\x99\x8c\x75\xc1\x71\x2c\x47\ +\x80\x47\xae\x7a\xe5\x75\x61\x86\xd9\x8f\x34\x35\xb7\xbc\xfe\xfc\ +\x9b\xf3\xf8\xc3\xaf\xee\x1e\x55\x8d\x59\x06\x5a\xda\x24\x1a\x5a\ +\x3b\xa9\x6f\x31\xd3\xd8\xd2\x49\x43\xab\x0a\x6a\x27\x70\x77\x4a\ +\x16\xd7\x0d\xb2\x07\x18\xfd\xf4\x4c\x07\x61\x22\xcf\x1f\x9d\xd1\ +\xb7\xb7\xc8\x6e\x9c\x25\x1f\xf4\x75\xb9\xa7\x57\x96\x92\x14\x47\ +\xa1\x21\x8d\x82\xb1\xe9\x14\x18\xd2\x28\x34\xa4\x93\x99\x96\x24\ +\x26\x20\xfd\x34\x8b\xc5\xca\x6a\x15\xde\x8b\x56\xae\xa3\xb9\xb9\ +\xb5\x9f\xb1\x9d\x1c\xe4\xab\xce\x87\xd7\x7c\x98\xe7\xb9\xf5\xc7\ +\xd7\x61\xc8\xce\xe2\xc1\x3f\xfe\x9b\x86\xa6\x16\x80\x47\x82\x05\ +\x71\x5f\x6c\xb8\xac\x24\x98\x0b\xdc\xf6\xf9\x82\x25\xa7\x5e\x7d\ +\xd1\x79\x4c\x9d\x30\x7e\x64\x78\x1c\x36\x3b\x8d\x6d\x92\x22\x77\ +\xb4\x9a\x69\x6c\x33\x2b\x90\x6e\x56\xef\x5b\x15\x70\xdb\xec\x76\ +\x2f\x3c\x0b\x2f\x86\x94\x7e\xc4\x26\xfb\xdc\xc8\x07\x94\x4d\xcf\ +\x07\x10\x7b\x0b\x5e\x3f\xa5\x90\xde\xbb\x85\x86\xe8\x30\x64\xea\ +\x29\x18\x9b\x46\xc1\xd8\x54\x0a\x0c\xe9\x14\x8c\x4d\x23\x2e\x66\ +\xf4\xe5\x19\x19\x74\x67\xcc\x62\xa1\x78\xfd\x16\xbe\x5f\xb6\x86\ +\xc5\x2b\xd7\xd1\xdc\xda\xde\x35\xd2\x71\xf5\xcf\xcb\x3e\xb6\x15\ +\xef\x9b\xa1\x7f\x39\x68\xbc\x3d\x96\x94\xe4\x64\x1e\xb8\xfb\x0e\ +\x4a\x4a\x77\xf1\xc1\x17\x4b\x00\xd6\xaa\xec\x1a\x72\x1b\x72\x69\ +\xc5\x49\x62\x99\x06\x6c\x18\x9f\x97\xab\x7b\xff\xa5\xbf\xa1\xd3\ +\x69\x87\x54\xf6\xe8\x30\x5b\x15\x48\xb7\x4a\x34\xb5\x99\xd5\xc7\ +\x9d\x34\xb6\x4a\x34\xb6\x2a\xa0\x6e\xe9\xb0\xf4\x33\x59\x36\x40\ +\x69\xc2\x6f\x29\x04\x9f\x63\x61\xbd\xcd\x2b\xe2\x5e\xa6\xe9\x3b\ +\xbc\xf5\x24\x85\x78\x96\x85\xdc\x1d\x9b\xec\x66\xf4\x02\x71\x31\ +\x11\xe4\x67\xa7\x3a\x41\x3b\x0d\x43\xa6\x9e\x10\x9d\x56\x50\x37\ +\x40\x66\x96\x2c\xac\x5a\xbf\x85\xef\x97\xae\x66\xc9\xea\x0d\xb4\ +\xb6\xb6\xfb\xdd\x56\xdc\x4f\x32\x0f\x70\x35\xae\x5b\xe9\xa5\xef\ +\xf1\xf6\x6d\xc7\xdd\xdb\x5e\x7b\xfe\x6f\x5c\x72\xc1\x4c\x2e\xbe\ +\xf1\x61\xb6\xed\xaa\xb0\x01\x33\x24\x93\x71\x73\x50\x01\x3d\x52\ +\xa4\x15\x27\x89\x65\x73\x98\x61\xf6\x2b\xbb\xf6\x57\xdc\xfb\xfe\ +\x97\xdf\x72\xe3\xd5\x97\x06\xe5\x7b\xec\xb2\x4c\x4b\x87\x95\xa6\ +\x36\x89\xc6\x36\xa9\xeb\xbe\x51\x85\x75\x63\xab\x99\xc6\x56\x09\ +\xc9\x6a\xf3\x9c\xa7\xc3\xd3\xe4\xcc\x60\x4b\x1a\xb2\xbb\x5c\x11\ +\xb2\xf7\xce\x4b\x00\x3c\x19\xd9\x83\x14\x12\x08\xcd\x45\x59\x01\ +\x99\x48\x41\x56\x0a\xf9\x63\x53\x15\x68\x8f\x4d\x45\x9f\x18\x2b\ +\x48\x1b\x04\xeb\x34\x4b\xac\x5c\xb7\x99\xef\x97\xad\x65\xd9\x9a\ +\x8d\xb4\xb5\x75\xf4\xfa\xa7\x07\xee\xf5\x7a\x35\xf2\x1c\xc0\xc8\ +\xcc\xeb\xf7\xf5\x92\x33\x67\x5d\x30\x93\xcb\x2e\x3a\x9f\x37\xde\ +\x9f\xef\x28\xe1\xf6\x4a\xb0\x21\x3e\x22\x3d\x72\xd5\x2b\x8f\x07\ +\x76\x45\x47\x45\xa6\x7d\xf9\xc6\x4b\xe8\x93\x12\xdd\x7a\xcf\xbd\ +\xb7\x5b\x6c\x76\x9a\xdb\x2d\x34\xb6\x5b\x68\x6a\xb3\xd0\xd4\xde\ +\x0d\xeb\xa6\x76\x0b\x8d\x6d\x12\xcd\x6d\x16\xec\xb2\x1d\xbf\x57\ +\xf2\x79\x0a\x53\x72\x6e\x04\xae\x32\xe5\xf5\xe3\x59\xf8\x94\x2b\ +\xc2\xf9\xfb\x3c\xe5\x8a\x70\x9b\x85\xcf\xdd\xb1\xf9\x3b\x9a\x70\ +\x77\x6c\xfe\x8f\x26\xc2\xc3\x43\xc8\x1b\x93\x42\x7e\xb6\x9e\x82\ +\xb1\xa9\xe4\x67\xa7\x90\x97\x95\x42\x44\x78\xa8\x20\x6c\x50\xe1\ +\x6d\x66\xc5\xda\xcd\x7c\xb7\x6c\x2d\xcb\xd7\x94\xd0\xd1\xd1\x39\ +\x34\x6d\xa5\x9f\xb6\xed\x6e\x64\xd6\xff\x04\xba\x6f\x21\xaf\xf1\ +\xb1\x71\x2c\x9f\xff\x09\x32\x5a\xce\xfe\xd1\x7d\xb4\xb4\x75\x54\ +\xa1\x4c\x70\x36\x05\x1d\xd0\x23\xcd\x23\x57\xbd\xf2\xa6\x30\xc3\ +\xec\x87\xda\xda\x3b\xde\xf9\xc7\x6b\x6f\xf3\x97\x47\x1e\xe8\x7a\ +\xad\xdd\x6c\xa3\xa9\xdd\xa2\xdc\x3a\xac\x34\xb7\x49\x34\xb6\x5b\ +\x68\x56\xb7\x35\xb6\x49\xb4\x9b\x6d\xee\xe1\xe5\xec\x45\x07\x78\ +\x22\xcf\xbf\x68\x39\x1f\x72\x45\x78\x90\xa4\xbd\x9a\x4c\x92\x07\ +\x7a\xd4\x83\x93\x63\x3b\x25\x31\x86\xbc\xec\x14\xf2\xb3\x53\x28\ +\xc8\xd6\x93\x9f\x9d\x42\x66\x6a\xc2\xb0\xad\xb4\x3e\xda\xac\xa3\ +\xd3\xcc\xb2\x35\x9b\x58\xb0\x7c\x2d\x2b\xd6\x6e\xa1\xa3\xb3\x33\ +\x68\x6d\xc5\xb7\x45\x60\xae\x55\xf7\x3e\x7b\x04\x78\x9e\xe7\xc9\ +\xdf\x3e\x48\xaa\x3e\x99\xbb\x1f\x7d\x8e\x16\x25\xd5\xc4\x43\x83\ +\x01\xf1\x11\xeb\x91\x3b\x79\xe6\xcb\x81\xb3\x5f\xff\xcb\x13\xcc\ +\x38\x71\x0a\xaf\x2d\x3a\x40\x45\x75\x7b\x77\x4f\xed\x4b\xb8\x9d\ +\x0b\xad\xab\x7f\xaf\xb0\x1f\xcf\xc0\x93\x8e\xeb\xd6\xbb\x77\xa7\ +\x1b\xfa\xeb\xdd\x7b\x08\xa1\xc2\xcf\x90\x2d\x67\x9d\xd1\xe7\xac\ +\x81\x9e\xf3\x8a\xf4\xfe\xbe\x10\x9d\x96\xb1\xe9\x89\x14\x64\xeb\ +\xc9\xcb\x52\x80\x9d\x9f\xad\x27\x36\x3a\x42\xd0\x74\x90\xad\xad\ +\xbd\x93\xe5\x6b\x37\xf1\xfd\xb2\x75\xac\xda\xb0\x85\xce\x4e\xb3\ +\xcb\xb6\x12\xfc\x7c\xec\x7e\xb6\x63\x5f\xf2\xc7\xf7\x13\x82\xea\ +\xea\x78\xcf\x39\xf3\x34\xde\x7b\xed\x25\x56\x6d\x28\xe3\xda\x3b\ +\x9f\x00\x58\x21\x99\x8c\x3f\x1c\x34\x40\x7b\xe9\xbc\x0c\x57\x90\ +\x4f\x02\xb6\xe4\x66\x8f\x09\xf9\xf8\x95\x7f\xd2\xd4\x61\xe7\x85\ +\x6f\xf7\x23\x59\x6c\x01\x93\x42\x06\xf6\x07\xbb\x9b\x9c\x73\xd7\ +\x29\xe0\x73\x81\x00\xdf\x65\x1a\x1f\x27\x3a\xbd\x90\x69\x02\x91\ +\x64\x28\x36\x2a\x82\xbc\xac\x64\xf2\xb3\xf4\xe4\x65\x2b\xf7\x63\ +\x33\x92\xc4\x04\xe4\x10\x5a\x6b\x7b\x87\xea\x79\xaf\xa3\x78\x43\ +\x29\x66\xb3\xe4\x7d\x87\xec\x85\x73\xe3\x9b\x33\xe5\x6e\xa2\x13\ +\xff\x56\xe3\x32\xb0\x62\x12\x31\xd1\x91\x2c\xf9\xf2\x63\x52\xf5\ +\x7a\xce\xbb\xfe\xff\xd8\x7b\xe0\x88\x15\x38\x51\x32\x19\xb7\x0d\ +\x37\x90\x0f\xcb\x44\xc6\x92\xc9\xb8\x2d\xcc\x30\xfb\xf9\x8a\x43\ +\x47\x7e\xfd\x8e\xf1\x4b\x6e\xbb\xee\x47\x5c\x36\x2d\x95\x4f\xd7\ +\x1f\xf5\x6e\x08\xe6\x95\xf4\xe0\x62\x6b\x40\x52\x73\x04\x63\x72\ +\x26\x88\x79\x45\xbc\x78\x9f\xab\x82\x06\xfd\x45\x05\x6a\x34\x1a\ +\x32\x53\x62\xc9\xcb\xd2\xab\xe0\x4e\x26\x6f\x4c\x32\xfa\xc4\x18\ +\x41\xce\x61\x60\x2d\xad\xed\x2c\x5d\xb3\x89\x85\x2b\xd6\xb3\x7a\ +\x63\x19\x66\xc9\xe2\x43\x7b\x1c\xbc\x84\x54\x01\xbf\x30\xfd\x28\ +\x26\xf1\xbb\x07\x7f\xc9\x98\x8c\x74\x5e\x7a\xeb\x53\xf6\x1e\x38\ +\x02\xf0\xfc\x60\x42\xdc\x17\x1b\xce\x19\xe9\x9f\x04\x6e\x78\xed\ +\x7f\x9f\x8c\xb9\xe4\x9c\x33\x39\x75\x5c\x2a\x3b\x8e\xb4\xb2\xe3\ +\x48\xf3\xa0\xff\xc1\xde\xb5\xd7\x60\x2e\xc2\xf1\xed\x0d\xbe\x46\ +\xac\xf4\xbf\xbf\xfb\x68\x82\x88\xb0\x10\x72\xc7\x24\x91\x3b\x26\ +\xa9\x0b\xd8\x39\x63\x92\x88\x08\x3b\x7e\x0a\x1d\x8c\x04\x6b\x6e\ +\x6d\x63\xe9\xea\x4d\x2c\x58\xbe\x9e\x35\x9b\xb6\x61\xb1\x58\x02\ +\xd8\x1e\x03\x9f\x90\xca\xdb\x4e\xc1\xd3\x52\x7b\xd9\xef\x6b\x50\ +\xe6\xd4\xe9\x27\x71\xf3\x75\xb3\x39\x54\x59\xcd\xf3\x6f\x7c\x02\ +\x70\x44\x65\xd2\xb0\xb4\x61\x29\xad\x38\x49\x2c\x73\x80\x8f\xa7\ +\x4d\x9e\xc0\x9b\x7f\x7b\x92\x0e\x8b\xcc\xb3\x5f\xef\xa5\xad\xc3\ +\xe2\x46\x0a\xc1\xb3\x66\xeb\x4b\xad\xc4\xa0\x47\xac\x04\x57\xbb\ +\x0f\xd4\xd2\x7c\x7d\x42\x34\x79\x63\x12\xc9\xcd\x4c\x22\x2f\x4b\ +\xb9\x65\xea\xe3\xc4\x04\xe4\x30\xb5\xc6\xe6\x56\x05\xde\x2b\x37\ +\xb0\x6e\xf3\x36\xac\xaa\x2c\xe9\x5f\x5b\xf1\xf2\xba\xf1\x31\x62\ +\xa5\x77\x3b\xf6\x4e\x0a\x09\xfe\x3c\x4f\x44\x78\x18\x8b\x3f\xff\ +\x80\xac\x31\x99\xcc\xf9\xf9\x1f\x58\xbf\x65\x07\xc0\x35\x92\xc9\ +\xf8\xc9\xa0\x03\x7a\x24\x4b\x2b\x4e\x12\xcb\x27\x61\x86\xd9\xf3\ +\x36\x97\xef\xb8\xe9\xe5\x77\x3e\xe0\xfe\x5b\x7f\xc2\x9c\x1f\x64\ +\xf2\xdf\x65\x26\x37\xbd\x7e\x30\x96\x90\xfb\x16\xb1\xe2\x95\xac\ +\x13\xd4\x61\xaa\xff\xe7\x20\x44\xa7\x25\x2b\x35\x5e\x81\xb6\x13\ +\xb8\x63\xa3\xc2\x9d\x1a\x97\x00\xe5\x70\x85\xc8\xb9\x64\x86\x00\ +\x00\x1e\x39\x49\x44\x41\x54\xf7\xe2\xe2\x12\x16\xae\xd8\xc8\xfa\ +\xad\xdb\xb1\x59\xed\xfd\x57\x54\xf2\xa9\xad\xc8\x3e\x0e\x32\xfd\ +\x8b\x6e\xf2\xeb\x3a\xea\xbd\x47\x00\x92\xad\x3d\x7c\xdf\x5d\xe4\ +\x8c\xcd\xe6\xcf\xff\x7a\xcf\x01\xf1\x79\x43\x01\xf1\xd1\x22\xad\ +\x38\xec\x2e\x60\xfa\xdc\x0f\x3f\x9b\x30\x7d\xca\x24\x4e\x9f\x7e\ +\x22\xa7\x14\x24\xb1\x6e\x6f\xbd\x0f\x70\x96\xdd\xaa\x29\xfd\x0f\ +\xc9\xbc\x6f\xe4\xbe\xc8\x2d\xb2\x8f\x0d\xcb\xef\x61\xaa\x87\xf7\ +\xc5\x46\x85\x93\x9b\x91\x80\x21\x33\x91\xbc\x4c\x05\xdc\x63\xd3\ +\xe2\x7b\xac\xaa\x15\xd0\x1e\xde\x56\xdf\xd8\xc2\xe2\xe2\x12\x16\ +\xad\xdc\xc8\x86\xd2\x5d\xd8\x9c\x4b\xe5\xf9\xcd\x32\xef\xf2\xb1\ +\xfb\x9a\x3f\x5e\x96\xbd\xbd\xa6\x7c\xe5\x70\xe0\x9c\xa2\x99\x67\ +\x9f\xc1\xcf\x7f\xfa\x13\x96\xad\xd9\xc2\xbf\xde\xfe\x0c\x60\x87\ +\xca\xa0\x61\x6d\xc3\x5a\x5a\x71\x92\x58\x26\x03\xeb\x13\xe3\xe3\ +\x22\x3f\x79\xe5\x59\xe2\xe2\x13\x78\xee\xeb\x3d\xd4\x35\x9b\x19\ +\xf2\x88\x15\x5f\x64\x1a\x5f\x22\x56\x02\xb8\x98\x06\x0d\x64\x24\ +\x45\x93\x93\x99\x48\x4e\x46\x02\xb9\x19\x89\xe4\x8e\x49\x20\x39\ +\x3e\xaa\xd7\x30\xce\xd5\xd0\xce\xbb\x6d\xc2\x06\xcf\xea\x1a\x9a\ +\x59\x5c\xbc\x89\x85\x2b\x37\x52\x52\xbe\x1b\xbb\xcd\x8e\xdb\xfc\ +\xf1\x5e\x47\x90\x0c\x34\x62\x25\x18\x4b\xf3\xf1\x33\x62\xc5\xb7\ +\xa5\xf9\xc8\x90\x99\x91\xc6\x02\xe3\x7b\x98\x25\x2b\xe7\xdf\xf0\ +\x20\x75\x0d\xcd\x1d\xc0\x29\x92\xc9\x58\x3e\x64\x80\x1e\xc9\xe1\ +\x87\xfd\xc0\xfc\x67\xc0\xdc\x93\xa7\x4c\x64\xee\xdf\x9e\xe4\x70\ +\x7d\x27\x2f\x7f\xbb\x0f\xbb\x6c\x0f\xfa\x1f\x1c\x98\x10\xaa\xe0\ +\xe4\x15\xe9\x7d\xbc\xe1\xa1\x21\x8c\x4d\x8b\x23\x27\x33\x81\x9c\ +\xf4\x04\x72\x32\x12\x30\x64\xc4\xf7\x99\x80\x1c\x89\x05\x9c\x8f\ +\x67\xab\xa9\x6f\x52\xe1\x5d\xc2\x96\x6d\x7b\xb0\xdb\xed\xc1\x9f\ +\xe7\xf1\xa2\xb0\x06\x83\x59\x78\x24\x88\xc5\x24\x42\x42\x42\xf9\ +\xec\x9d\x57\x99\x3a\x79\x22\xd7\xfc\xe2\x0f\xac\xdd\xb4\x1d\xe0\ +\x36\xc9\x64\x7c\x73\x48\x3d\xed\xd1\xa0\x91\x3b\x9b\x64\x32\xbe\ +\x19\x66\x98\x7d\x4e\x49\xd9\xf6\x9b\xfe\x3d\xef\x43\xee\xfb\xe9\ +\x0d\x9c\x37\x35\x95\x85\x5b\x8f\x0d\x4e\xee\x85\xa0\x4a\x21\xfe\ +\x69\xf7\xc9\x71\x11\x18\x32\xe2\x31\xa4\x27\x60\x48\x8f\x27\x27\ +\x23\x81\x8c\xe4\x68\xaf\x2a\x2d\x09\x88\x0f\x7f\xab\xaa\x6d\x60\ +\xf1\xea\xcd\x2c\x5a\xb5\x89\xad\xdb\x15\xa7\xc5\xaf\x30\x53\x7f\ +\x25\x8d\x80\x64\x29\x0c\x4e\xe1\x91\x40\x17\x93\xf8\xfd\x43\xbf\ +\x64\xda\xd4\xc9\xfc\xed\x95\xf7\x1d\x10\x9f\x37\xd4\x10\xf7\xc5\ +\x46\x5a\x9c\xd8\x5d\xc0\x8c\x37\xde\x37\x16\x4d\x9f\x3a\x91\x0b\ +\xa6\x4d\x65\xcf\xd1\x16\x2a\xaa\xda\xbc\x6f\x58\x01\x9c\x9c\x19\ +\xb8\xc9\x5e\x84\x02\x82\x4e\xa7\x25\x2b\x25\x06\x43\x5a\x1c\x86\ +\xf4\xf8\xae\x5b\x6c\x54\x98\x80\xf1\x28\xb3\x63\x35\xf5\x2c\x5e\ +\xbd\x85\x45\x2b\x37\x51\xba\x6b\xbf\xe2\x35\xf6\x9b\xa4\xcd\x9b\ +\x76\x3e\xd0\xdc\xdc\xc1\x49\x48\xe5\x6f\xfe\xf8\x81\x75\x58\xae\ +\xdf\x74\xd9\x85\xe7\xf1\xb3\x9f\x5c\xcb\x8a\x75\x5b\x79\xf1\x4d\ +\x23\xc0\x4e\x46\x80\x2e\x3e\x22\xa5\x15\x27\x89\x65\x32\xb0\x3e\ +\x29\x21\x3e\xf2\x93\xff\x3c\x4b\x44\x64\x2c\xcf\x7d\xbd\x8b\xa6\ +\x36\x37\x95\xdc\x7d\x09\xb7\xc3\xcf\xa5\xf9\xbe\xc8\x34\x6e\x86\ +\xb7\xd1\x91\xa1\x18\xd2\xe2\x18\x9b\x16\x87\x21\x5d\xb9\xcf\x4e\ +\x89\xed\x93\xd6\x77\x38\x55\x37\x12\x36\x30\xab\xac\xae\x67\x71\ +\xf1\x66\x16\x15\x6f\xa2\x7c\xd7\x81\x00\x49\x21\xfe\xa6\x71\x70\ +\xdd\xb6\xbd\x6f\xc7\xde\x25\xa4\x0a\x7c\x55\x20\xff\x96\xe6\xe7\ +\xe5\x64\xf3\xcd\x87\xef\xd0\xd6\x61\xe6\x82\x1b\x1e\xa4\xb6\xbe\ +\x69\xc8\x75\x71\x7f\xa4\x95\x11\x07\x72\x15\xe6\xb7\x01\x6f\x9c\ +\x72\xc2\x64\x5e\xff\xdb\x13\x1c\xa9\xeb\xe0\x5f\xdf\xee\xc5\x6a\ +\xb3\x79\xd4\xb4\x07\x9a\x7b\xc1\x73\xb9\x31\xef\x1a\xa4\x46\xa3\ +\x21\x2d\x31\x92\xec\xd4\x38\xc6\xa6\xc5\x2a\xf0\x4e\x8d\x23\x39\ +\x3e\x62\xd8\x00\x5a\x80\x3c\x78\x76\xe4\x58\x9d\x2a\x9b\x6c\x66\ +\xfb\x5e\x93\x8f\xf0\xf2\x9c\xc6\xc1\xd7\x79\x1e\x4f\xb0\x0c\xde\ +\xd2\x7c\x17\xce\x54\xc0\x72\xe9\xbb\x5f\x9a\x1f\x11\x1e\xc6\xd7\ +\x1f\xbc\xc9\xb8\xfc\x7c\xae\xbb\xeb\x09\x8a\x37\x96\x03\xdc\x2e\ +\x99\x8c\x73\x87\x4b\x3b\x19\x75\x1a\xb9\xb3\x49\x26\xe3\xdc\x30\ +\xc3\xec\x73\xd6\x6f\x2d\xbf\xf1\x3f\xef\x7e\xc4\xdd\x37\x5d\xc7\ +\x75\x67\x64\xf3\xde\x8a\x03\x4e\x43\x32\x77\x83\xb1\x60\xe6\x4d\ +\xee\x1b\x8e\x18\x1e\xaa\x23\x4b\x1f\xc3\xd8\xb4\x18\xb2\x53\xe3\ +\x30\xa4\xc6\x92\x95\x1a\x4b\x44\x98\xa8\xb4\x7e\x3c\xd9\xa1\xa3\ +\xb5\x2c\x2e\xde\xcc\xe2\xd5\x5b\xd8\xb9\xef\x50\x8f\x6c\x9c\x7d\ +\x25\x36\xd9\xbb\x26\x1a\xa0\x79\x1e\xb7\xdf\x17\x94\x35\x0f\xbe\ +\x48\x3f\xbe\x5e\xaf\xde\x1d\xef\x33\x8f\x3f\x4c\x51\x61\x01\xcf\ +\xbe\xfa\xa1\x03\xe2\xef\x0e\x27\x88\xfb\x62\x23\x79\x2d\xf5\x9d\ +\xc0\xf4\x57\xdf\xfd\xb8\xe8\xe4\x29\x13\x39\x75\xda\x14\x2a\xeb\ +\xdb\x59\x52\x56\x3d\xe0\x3f\x78\x20\x5a\x60\x62\x4c\x38\xd9\x29\ +\xb1\x8c\x4d\x8d\x21\x3b\x35\x96\xec\x94\x58\xd2\x12\x23\xd1\x6a\ +\x85\x2b\x7b\x3c\x9a\xe9\x48\x35\x4b\xd6\x6c\x65\xd1\xaa\x2d\xec\ +\x3e\x70\xb8\x27\x18\x07\x90\xc6\xc1\x53\x1a\x06\x97\x9f\x29\xfb\ +\xbb\x06\xc1\x5f\xe7\x66\xa0\x4e\x51\x00\x3a\xac\x7e\xde\x77\xfd\ +\xd5\x97\x73\xed\x55\x97\xb1\x6a\x43\x19\xcf\xbd\xf1\x31\x28\xba\ +\xf8\x9d\x23\xb5\x9d\x8d\x48\x69\xc5\x49\x62\x99\x02\xac\xd3\x27\ +\x25\x44\x1a\xff\xf3\x2c\x49\x09\x09\xbc\xb6\x70\x2f\x3b\x0f\x37\ +\xfb\x10\x92\xe4\x5f\xc8\x96\x4e\xab\x21\x33\x29\x8a\xac\x94\x68\ +\xb2\x53\x62\xc9\x4e\x89\x21\x2b\x25\x86\xd8\xa8\x50\xaf\xe5\x88\ +\x60\xcb\x1e\x42\x56\x19\x1a\x3b\x70\xb8\x8a\x45\xab\xb7\xb2\x64\ +\xf5\x56\xf6\x9a\x2a\xbd\x1c\xea\xbb\x93\x42\x82\x3b\xcf\x33\x6c\ +\x0b\x8f\x04\xa9\x98\xc4\xa4\x09\xe3\xf8\x7c\xde\xeb\xb4\xb4\x75\ +\x70\xc1\xf5\x0f\x52\x5d\xd7\xd8\x01\xfc\x40\x32\x19\xcb\x86\x1d\ +\xa0\x47\xb3\x46\xde\x0b\xe6\xb7\x01\x6f\x9c\x3a\x6d\x0a\xaf\xfd\ +\xf5\x0f\x98\x2d\x76\x9e\xfb\x6a\x27\x35\x8d\x9d\x7d\x41\xee\x73\ +\x8e\x15\x65\xff\xe8\xf0\x10\xb2\x53\xa2\xc9\xd2\x47\x93\x95\x12\ +\x43\xb6\x3e\x9a\xf4\xa4\x28\x42\x43\x86\xb6\xae\xe8\x70\xd8\x26\ +\x4c\xb1\xfd\x87\x8e\xb1\x78\x75\x29\x8b\x57\x6f\xa1\xe2\x50\x55\ +\x80\x16\xd3\xf8\x90\x57\xc4\xe7\xb5\x0b\xee\x16\xef\x78\xd1\x71\ +\xf8\x5c\x79\xc7\xdd\x35\x48\x10\x27\x3a\x7b\x1e\xdb\x98\x8c\x34\ +\xbe\x78\xf7\x0d\x52\xf4\xc9\x5c\x7f\xcf\x93\xac\x5a\x5f\x06\xc3\ +\x4c\x17\x3f\x2e\x41\xae\xc2\x7c\x1e\x70\xe3\xad\xd7\x5e\xc9\x83\ +\x77\xdc\x4c\x75\x53\x27\xcf\x7d\xb1\x93\x4e\x8b\xd5\xed\xcc\x7b\ +\x6f\x90\x6b\x34\xa0\x8f\x8b\x20\x4b\x1f\x45\x56\x72\x34\x59\x2a\ +\xbc\x13\x63\xc2\x8f\x3b\x40\x0b\x90\x7b\xb6\xbd\xa6\xa3\x2c\x59\ +\x53\xca\xe2\xd5\xa5\x1c\x38\x52\xe5\x02\x3e\xde\xc0\xcb\x5f\x90\ +\x0f\x5e\xe1\x91\xd1\x52\x4c\x22\x2e\x26\x86\xcf\xde\x79\x95\x71\ +\x05\x79\x3c\xfd\xc2\x3b\xfc\xfb\x9d\x2f\x40\xd1\xc5\x6f\x1a\xb6\ +\x92\xc9\x68\x9e\xec\x74\x61\x77\x01\x93\xde\xfa\xe8\x8b\x69\xfa\ +\xc4\x44\x6e\x99\x73\x39\x37\xcf\xcc\xe5\xf5\x05\x7b\xfa\x95\x05\ +\xc3\x42\x34\x64\x26\x47\x93\xa5\x8f\x62\x4c\x72\x34\x59\xc9\x51\ +\x8c\x49\x8e\x22\x2c\x54\x27\x80\x25\xac\x5f\xdb\x73\xa0\x92\xc5\ +\x6b\xca\x58\xb2\xa6\x94\x83\x95\x35\xf4\x5b\x84\xdb\xeb\x45\x38\ +\x03\x98\xc8\xeb\x77\x1d\x8f\xfb\x89\x52\xff\x26\x56\x03\x93\x90\ +\xca\xe3\x39\xf0\x2b\x3d\xb4\xe7\xef\x0d\x0d\x09\xe5\x8d\x17\xfe\ +\xca\xb8\x82\x3c\x5e\x7d\xf7\x2b\x07\xc4\x37\x33\xc2\xe2\xc5\x47\ +\x35\xc8\x25\x93\xb1\x35\xcc\x30\xfb\x12\xa0\xf8\x1f\xaf\xfd\x37\ +\x3f\x39\x31\x9e\xcb\xcf\x3f\x9b\x4b\xa7\x67\xf1\xd5\xfa\xc3\x24\ +\x44\x87\x31\x26\x39\x8a\xcc\xa4\x48\x15\xdc\x51\xa4\xc4\x45\xa0\ +\xd1\x08\x2f\x53\x98\x67\xdb\xb9\xff\x08\x4b\xd7\x96\xb3\x78\x75\ +\x29\x47\xaa\xea\x70\xb5\x90\xcb\x7b\xc8\xb8\xc8\xfa\xe7\x23\x58\ +\xbd\xce\x1f\xef\xee\x4b\xbc\x1f\x8a\xfb\x07\xeb\x61\x54\x4c\x42\ +\xa3\xd1\xf0\xcf\xa7\x1f\xe3\xb4\x19\x27\x61\xfc\x66\x05\x4f\x3d\ +\xff\x5f\x80\x7d\xc0\x25\x92\xc9\xd8\x3a\x1a\xda\xe8\xa8\x90\x56\ +\x9c\x24\x96\x7c\xa0\x38\x24\x44\x97\xf6\xf2\x1f\x7f\xcb\x99\x33\ +\xa6\xd1\x6e\xb6\x12\x15\x1e\x22\xa4\x10\x21\xad\xf8\x64\x3b\xf6\ +\x1d\x66\xc9\xda\x32\x96\xae\x29\xa7\xb2\xba\xde\xed\xf0\xdf\xeb\ +\x89\x47\xe7\xfd\x7d\x91\x26\x9c\xa5\x05\x3f\xe7\x79\x02\x9b\x4b\ +\xdf\xdf\xa4\x70\x7e\x7e\xdf\x00\xb4\x7b\x90\x79\xe4\x57\x77\x71\ +\xf7\xcf\x6e\x62\xe9\xea\xcd\xfc\xf4\x81\x3f\x63\xb1\xda\xaa\x80\ +\x33\x24\x93\x71\xdf\xb0\x07\xf4\xf1\xa4\x91\xf7\x82\xf9\x34\x60\ +\x79\x64\x44\x78\xec\x9b\x7f\x7f\x92\xa9\x13\x0a\x87\x25\xfc\x86\ +\x4b\xd4\x89\x80\x78\x77\xfb\xde\xbe\xf7\x30\x4b\xd7\x6d\x63\xc9\ +\xda\x32\x8e\xd5\x34\x7a\x0d\x2f\xaf\xeb\x46\x0e\xc3\xa2\xe1\x81\ +\x2a\x3c\xd2\xe3\x78\xdd\x74\x1c\xfd\x1f\x5b\x70\x8a\x49\xdc\x78\ +\xed\xd5\x3c\xf3\xd8\xaf\xd9\x54\xbe\x87\x6b\xef\xfc\x03\xed\x1d\ +\xe6\x16\xe0\x87\x92\xc9\xb8\x79\x44\x78\xda\xc7\x2b\xc8\x55\x98\ +\xcf\x04\xbe\x4d\x88\x8b\x0d\x7b\xf7\x85\x3f\x91\x9b\x3d\x46\x78\ +\xcf\x02\xe4\x2e\xdb\x74\xf9\x9e\x43\x2c\x5d\xbb\x8d\xa5\xeb\xb6\ +\x51\x5d\xd7\xe8\x12\x06\x03\xca\xc2\x17\x94\x89\x4e\x37\x1d\x87\ +\x2f\x13\x9d\x5e\xa4\x9b\x75\x19\x20\x30\x42\x22\x56\xce\x3f\xfb\ +\x0c\x5e\x7f\xe1\x2f\x54\x1c\x3c\xca\x95\x3f\x7b\x94\x86\xa6\x16\ +\x49\x95\x53\x96\x8c\x18\xc9\xe4\x78\x06\xb9\x0a\xf3\x6b\x80\x0f\ +\x32\x52\xf5\xda\xf7\x5e\xfc\x33\xe9\x29\x49\x02\xc6\x02\xe4\xd8\ +\x65\x99\xb2\x5d\x07\x59\xb6\x7e\x3b\xcb\xd6\x6d\xa7\xa6\xbe\x69\ +\x00\xe9\x5f\xfd\x95\x42\x02\x00\xaf\x7e\xa4\x09\xd7\x91\x59\x0c\ +\x3c\x62\xc5\xa3\xb7\x1d\xc8\xd1\x04\x03\x8e\x58\x39\x71\xf2\x04\ +\x3e\x9c\xfb\x12\x4d\xcd\xed\x5c\x7e\xeb\x6f\x39\x72\xac\xd6\x0e\ +\x5c\x2f\x99\x8c\x1f\x8f\x28\xed\xfb\x78\x07\xb9\x0a\xf3\x7b\x80\ +\x7f\x15\xe4\x64\xf3\xee\xf3\x4f\x13\x17\x1b\x23\x60\x7c\x1c\x82\ +\xdc\x2e\xcb\x6c\xdd\x69\x62\xd9\xba\xed\x2c\x5f\xbf\x83\xda\xc6\ +\x96\x01\x4a\x21\x43\x04\x2f\x2f\xa4\x10\x51\x4c\x02\xc6\x66\x65\ +\xf0\xc5\xbc\xd7\x08\x09\x09\xe5\xaa\xdb\x1f\x63\xd7\xbe\x43\x00\ +\xf7\x4a\x26\xe3\xcb\x23\xad\xed\x0a\x90\x77\xc3\xfc\x8f\xc0\x63\ +\x27\x4d\x2e\xe2\x8d\xbf\xfd\x81\x88\xf0\x30\x01\xe3\xe3\x00\xe4\ +\x76\xbb\xcc\x96\x9d\x26\x96\xae\xdb\xc6\x8a\x8d\x3b\xa9\x6f\x6c\ +\xf5\x12\x26\xfe\x4a\x21\xfe\xc1\xcb\x3b\xef\xde\xdd\xb1\x89\x62\ +\x12\xce\xdf\x97\x95\x99\xc1\x47\x73\x5f\x22\x39\x29\x89\xeb\xee\ +\x7a\x92\x0d\x5b\x77\x02\x3c\x2d\x99\x8c\x8f\x8f\x44\x7e\x09\x90\ +\xf7\x84\xf9\x6b\xc0\x1d\xe7\x9e\x36\x9d\x17\x9f\x7c\x18\x9d\x4e\ +\x27\x60\x3c\x0a\x41\x6e\xb3\xd9\xd9\xbc\xc3\xc4\xb2\xf5\x3b\x58\ +\xb1\x71\x07\x8d\xcd\xed\x41\x87\xd7\xc0\x23\x56\x3c\x2c\xcd\xf7\ +\x37\x62\xc5\x2f\x29\x64\x90\x22\x56\x82\xb4\x34\xdf\x90\x3d\x86\ +\x0f\x5e\x7f\x91\xd4\x94\x64\x6e\xfb\xf5\xdf\x58\xb8\x62\x23\xc0\ +\xeb\x92\xc9\xf8\xf3\x91\xca\xae\xe3\x6d\x41\x90\x27\xbb\x0b\x48\ +\x59\xba\x66\xe3\x55\xbf\xff\xe7\x7f\xf8\xd3\x43\xf7\x08\x10\x8f\ +\x12\x88\x5b\x6d\x76\x36\x6d\x3f\xc0\xb2\xf5\x3b\x58\x59\xb2\x8b\ +\xe6\x96\xf6\x5e\x30\xe8\xe1\x8e\xb8\x8e\xc9\xf6\x58\x98\xdb\xa9\ +\xb2\x8c\x5f\x15\x6d\xf0\x7f\x31\xcd\xf1\x58\x4c\xa2\x9f\x73\xdf\ +\xff\x31\xc8\xe4\x19\xb2\xf9\xe0\x8d\x17\x49\x4b\xd1\xf3\xc0\x93\ +\x2f\x3b\x20\xfe\x39\xa3\x64\xc1\x8f\xf0\xc8\xbb\xbd\xf2\x08\x60\ +\x01\x70\xd6\xed\xd7\x5f\xcd\x83\x3f\xbf\x51\x00\x7a\x84\x82\xdc\ +\x62\xb5\x51\xb2\xed\x00\xcb\x37\xec\x64\xe5\xa6\xdd\xb4\xb4\x76\ +\xf8\xee\x21\xfa\x12\xd1\x11\x50\x29\x84\xc0\x2e\xcd\x1f\x46\xc5\ +\x24\xfa\x14\xfd\x1e\xa4\x62\x12\x05\xb9\x63\xf9\xe0\xf5\x17\x49\ +\xd1\x27\xf1\xa7\x97\xde\xe5\xe5\xb7\x3f\x03\x58\x09\x5c\x28\x99\ +\x8c\x9d\x23\x1a\xd0\xc2\x23\xef\x69\x92\xc9\xd8\x19\x66\x98\x7d\ +\x05\xb0\xe2\x8d\x0f\x3e\x9b\x92\x10\x17\xc3\x6d\xd7\x5f\x85\xb0\ +\x91\x61\x16\xab\x8d\x0d\xe5\x15\x2c\xdf\xb0\x8b\xe2\xcd\x7b\x68\ +\x6d\xeb\xec\xeb\x61\xfb\xb4\xbc\xdb\xbb\xda\x90\x3e\x7b\xd3\x5e\ +\x97\x1b\x0b\x50\x8e\x6d\xb9\xff\xf1\x86\xa7\xa5\xf9\xde\x7d\xb9\ +\xec\xc3\x6f\xea\x35\xfa\x09\x40\xba\x81\xfe\xbc\x7b\x87\x8d\x2f\ +\xc8\xe5\xfd\xd7\x9e\x27\x39\x29\x91\x7f\xff\xf7\x73\x07\xc4\xcb\ +\x80\x2b\x46\x3a\xc4\x85\x47\xee\xde\x33\xcf\x04\x56\x01\xb9\xb7\ +\xdf\x70\x35\x0f\xde\x71\xa3\xf0\xb4\x87\xa9\x47\x2e\x59\xac\x6c\ +\x28\x3f\xc0\xb2\x0d\x3b\x59\xbd\x65\x2f\xed\xed\x66\x2f\xb3\xf0\ +\xe1\x67\xd4\x43\x30\x23\x56\xdc\x4d\x74\xe2\xd5\x44\xde\xa0\x46\ +\xac\x0c\xf2\xa4\xaf\xc7\x78\x74\x17\xef\x2f\x2a\xcc\xe3\x7f\xaf\ +\x3d\x4f\x52\x42\xbc\xb3\x27\x5e\x01\x9c\x29\x99\x8c\x95\xa3\x02\ +\xd0\x62\xb2\xd3\x23\xcc\xbf\x03\xa6\xfc\xe8\xe2\x99\x3c\xf5\xe0\ +\x9d\xe8\x74\x3a\x01\xe8\x61\x00\x72\xb3\x64\x65\x7d\x59\x05\xcb\ +\x37\xee\x62\xed\xd6\x7d\xb4\x75\x48\xf8\x9b\xb2\xd4\x67\x90\xfb\ +\x08\xaf\xde\x32\x8d\xef\x31\xdf\x03\x95\x69\x06\x7b\x69\x3e\x41\ +\x8c\x58\xf1\x6d\x69\xfe\xa4\xa2\x42\xde\xfd\xcf\x3f\x89\x8d\x89\ +\xe6\xa1\xa7\xff\xc3\x87\x5f\x2e\x71\x78\xe2\x17\x8f\x16\x88\x0b\ +\x90\x7b\x07\xf3\x04\xe0\x4b\xe0\xac\x73\x4f\x9b\xce\x3f\x7f\xff\ +\x20\x91\x11\x61\x01\x83\xdd\x50\x15\x93\x08\xf4\xb6\xc1\x80\xb8\ +\x59\xb2\xb2\xae\x74\x3f\xcb\x37\xee\x66\x4d\xe9\x7e\x3a\x3b\x2d\ +\xf8\x57\x08\xc4\x37\x18\x78\x07\xaf\x00\x2c\xcd\x77\xde\x5f\x14\ +\x93\x60\xa0\x11\x2b\x53\x27\x8c\x63\xde\x2b\xcf\x12\x1e\x1e\xce\ +\x2f\x1e\x79\xd6\x31\xb1\xb9\x52\x95\x53\x1a\x47\x95\x64\x22\x40\ +\xee\x15\xcc\x23\x80\xf7\x81\xab\x4e\x9a\x5c\xc4\x7f\x9e\xf9\x6d\ +\x8f\x45\x43\xc2\xf3\x0e\x1e\xc8\x3b\xcc\x16\xd6\x95\x56\xb0\x7c\ +\xe3\x6e\xd6\x95\x55\x60\x36\x5b\xfa\xc0\xc0\x53\xfe\x78\xbf\x61\ +\xe0\x53\xce\x13\x7f\xa5\x10\x51\x4c\x22\x18\x4b\xf3\x4f\x3e\x61\ +\x32\x6f\xbf\xf4\x57\xec\x76\x99\x9b\x7f\xf5\x67\x47\x9c\xf8\xe7\ +\xc0\x0d\xa3\x51\x13\x17\x20\xf7\x1e\xe6\x3a\xe0\x15\xe0\x8e\x82\ +\x9c\x6c\xe6\xfe\xfd\xf7\xa4\xe9\x93\x04\xb4\x83\x00\xf2\xf6\x4e\ +\x89\xb5\x5b\x2b\x58\x51\xb2\x87\x0d\xe5\x07\x30\x4b\x56\xb7\x30\ +\xf0\x69\xa8\xef\x8b\x87\x38\xe0\xc5\x34\x03\x8d\x58\x09\xd0\xe2\ +\x9d\xe3\xac\x98\xc4\xe5\x17\x9d\xcb\x3f\x9e\x7c\x84\x86\xc6\x56\ +\x6e\xb8\xf7\x29\xc7\x8a\xcd\xd7\x81\xbb\x24\x93\xd1\x36\x1a\xf9\ +\x24\x40\xee\x3b\xd0\xff\x08\x3c\x96\x91\xaa\x67\xee\xdf\x7f\x4f\ +\xde\x58\x91\x68\x2b\x10\x20\x6f\xeb\x50\xe0\xbd\xbc\x64\x0f\x1b\ +\xb6\x99\xb0\x58\xac\xee\x61\xe0\x53\x16\x3e\x1f\x40\xee\xb5\x14\ +\xc2\xf0\xcb\x2b\xe2\xf6\xfc\x78\x23\xd3\x04\x63\x34\xe1\xee\xd8\ +\x02\xbf\x34\xff\xbe\x3b\x6e\xe6\x81\x3b\x7f\xca\x3e\x53\x25\x37\ +\xdc\xf3\x14\x47\x8e\xd5\xc2\x08\x5e\xb1\x29\x40\x1e\x5c\x98\xdf\ +\x03\xbc\x98\x10\x17\xab\x7d\xf5\x2f\x8f\x72\xe2\xc4\x42\x01\x72\ +\x3f\x40\xde\xda\x6e\x66\xcd\xd6\x0a\x56\x6c\xda\xcb\xc6\xed\x07\ +\xb1\x5a\x6c\x1e\x87\xde\x7d\x61\xe2\x7b\xca\xd2\xe0\x47\xac\x04\ +\x63\x69\x3e\x5e\x45\xac\x04\x6e\x34\xc1\x10\x45\xac\xf8\x37\x9a\ +\x08\x0d\x0d\xe1\xaf\x8f\xff\x9a\xab\x2f\xbd\x90\x4d\xe5\x7b\xb8\ +\xe9\xfe\x3f\xd1\xd0\xd4\x62\x07\xee\x1f\x89\xb9\x53\x04\xc8\x07\ +\x0f\xe6\xd7\x00\xef\x46\x46\x84\x87\xbd\xf4\xd4\x43\x9c\x75\xca\ +\x34\x01\x72\x2f\xac\xa5\xcd\xcc\x6a\x15\xde\x9b\x77\x1c\xc2\x6a\ +\xb5\xb9\x87\x81\x2f\xf0\x72\xde\x7f\x48\x22\x56\x46\x50\x31\x09\ +\x5f\x26\x1e\x7d\x92\xb1\x06\xbf\x98\x44\x62\x7c\x2c\xaf\x3e\xfb\ +\x47\x66\x4c\x9b\xc2\xd2\xd5\x9b\xb9\xe3\xe1\xbf\xd3\xde\x61\x96\ +\x80\x1b\x47\x5a\x16\x43\x01\xf2\xa1\x81\xf9\x4c\xe0\xf3\x90\x10\ +\x5d\xec\x9f\x7f\x73\x2f\x57\x5c\x70\x76\x40\xe0\x37\x5c\xa2\x4e\ +\x02\x05\xf1\xe6\xb6\x4e\x8a\xb7\x54\xb0\x6a\xd3\x3e\x36\xef\x3c\ +\x82\xd5\x66\xc3\xf7\xc9\x32\x7c\x58\x85\xe9\x6f\xc4\x4a\x3f\xde\ +\xb2\xc7\xf4\xaf\xa2\x98\xc4\x50\x15\x93\xc8\x1d\x9b\xc5\x9b\x2f\ +\x3c\x83\x21\x7b\x0c\xc6\x6f\x56\xf0\x7f\x4f\xfe\x0b\x8b\xd5\xd6\ +\x02\x5c\x35\x92\xf2\x89\x0b\x90\x0f\x3d\xcc\xa7\x01\xdf\x6a\x34\ +\x9a\xb4\xdf\xdc\x75\x0b\xb7\x5e\x7b\xb9\xf0\xc6\x81\xa6\x56\x05\ +\xde\x2b\x37\xed\x63\xeb\xee\x4a\x6c\x36\x3b\x03\x8b\x7a\x70\x0d\ +\x03\x5f\x27\xf2\xbc\xae\x2c\x33\xe0\xa5\xf9\xc1\x94\x26\x44\x31\ +\x09\x80\x53\xa7\x9f\xc0\x2b\x7f\x7b\x82\xf8\xb8\x58\x5e\x7d\xf7\ +\x2b\x9e\x7a\xfe\xbf\xc8\xb2\x5c\x85\x52\x14\x62\xf3\xf1\xc4\x21\ +\x01\xf2\xc0\xc0\x3c\x1f\xf8\x1e\xc8\xbf\xfd\xfa\x2b\xf9\xf5\x2f\ +\x6e\x42\xab\xd5\x1c\x77\x20\x6f\x68\xe9\x60\xf5\x96\x0a\x56\x6c\ +\xda\x4f\xd9\xde\xa3\xd8\x6d\x76\x8f\x52\x88\xa7\xa1\xb7\x27\x58\ +\x06\x6f\xa2\x73\xa0\x1a\xb3\x28\x26\x11\xcc\x49\xdf\x39\x57\x5c\ +\xcc\x33\xbf\xfb\x15\x5a\xad\x8e\x67\x5e\x9a\xe7\xa8\x76\xbf\x0f\ +\xb8\x68\x24\xd4\xd8\x14\x20\x1f\xbe\x30\x4f\x03\xbe\x05\xa6\x9d\ +\x76\xf2\x14\x9e\x7d\xfc\x57\xe8\x13\x13\x46\x3d\xc8\xeb\x9b\xdb\ +\x29\xde\x72\x80\x55\x5b\x2a\x28\xdf\x7b\x14\xd9\x2e\xfb\x24\x85\ +\x78\x3f\xf4\xf6\x75\xe2\xd0\x77\xef\x7e\x68\x97\xe6\xf7\x85\x57\ +\xef\x7d\xdd\x83\xf5\xf8\x28\x26\xa1\xd3\x6a\x79\xf0\xee\x5b\xb9\ +\xf3\x96\xeb\xa9\xa9\x6f\xe4\x9e\x47\x9f\x67\xd5\xfa\x32\x80\xcd\ +\xaa\x27\x5e\x75\x3c\xf2\x47\x80\x3c\xb0\x30\x8f\x41\x89\x35\xbf\ +\x31\x25\x29\x81\x67\x1f\xff\x15\xa7\x9e\x34\x65\xd4\x81\xbc\xae\ +\x49\x85\xf7\xe6\x0a\xb6\x55\x54\x21\xdb\x65\x02\xb6\xdc\xba\x3f\ +\x18\xf8\x12\xb1\xe2\x0b\xbc\x7c\x01\xb9\x28\x26\x31\xa4\xc5\x24\ +\xd2\x52\xf5\x3c\xff\xf4\x23\x9c\x32\x6d\x2a\xab\x36\x94\x71\xef\ +\xa3\xcf\x3b\xea\xa7\xbe\x8b\x12\x23\xde\x7a\xbc\xb2\x47\x80\x3c\ +\x38\x40\xbf\x0d\x78\x49\xab\xd5\x44\xde\x73\xf3\x35\xdc\x73\xcb\ +\xb5\xe8\x74\x9a\x11\x0d\xf2\xda\xc6\x36\x8a\xb7\x1e\x60\xd5\x96\ +\x03\xec\x3c\x50\xad\xc2\x3b\x40\x05\x02\xbc\x96\x42\x06\x1a\xb1\ +\xe2\x7e\x69\x7e\xa0\xf3\x8a\x88\x62\x12\x81\x2b\x26\x71\xde\x99\ +\x3f\xe0\xaf\x7f\x78\x88\xf8\xd8\x58\x9e\x7b\xfd\x23\x9e\x7b\xe3\ +\x63\xec\x76\xb9\x03\xb8\x4f\x32\x19\xe7\x1e\xef\xcc\x11\x20\x0f\ +\x1e\xcc\xa7\x00\x1f\x01\x45\xa7\x4e\x9b\xcc\x3f\x7f\xff\x2b\x52\ +\x92\x13\xdd\x82\x33\xd0\x30\x1e\xe8\x67\x55\xd7\xb7\x52\x5c\x6a\ +\xa2\x78\xcb\x01\x76\x1f\xac\x41\xb6\xfb\x36\x79\xe5\x76\x38\xee\ +\x97\x14\xe2\x6f\xc4\xca\x00\x2a\xcb\x0c\xb7\xa5\xf9\xfe\x6a\xcc\ +\x83\xb1\x34\xdf\xdf\x88\x15\x37\x1d\x64\x68\xa8\x8e\xdf\xde\xff\ +\x73\x6e\xb9\xee\x2a\xaa\x6a\x1b\xb8\xf7\xd1\xe7\x29\xde\x58\x0e\ +\xb0\x13\xb8\x56\x32\x19\xcb\x04\x6d\x04\xc8\x83\x0d\xf3\x68\xe0\ +\x3f\xc0\x8d\xc9\x89\xf1\x3c\xfb\xf8\x2f\x39\x63\xfa\x09\xc3\xda\ +\xf3\x3e\x56\xd7\xca\xea\x52\x13\xab\x4b\x4d\xec\x39\x58\xeb\x47\ +\x14\x82\x97\xf0\xf2\x17\x96\x01\xf2\x96\xbd\xeb\x14\x40\x14\x93\ +\x70\xdd\xd1\x0d\x46\x31\x89\x9c\xac\x4c\x5e\x7a\xe6\x77\x4c\x1c\ +\x5f\xc0\x8a\x75\x5b\xb9\xf7\xb1\x17\xa8\xad\x6f\x72\x48\x29\x77\ +\x4a\x26\x63\x9b\xa0\x8c\x00\xf9\x90\x48\x2d\x77\xde\x38\x9b\xfb\ +\x7f\x76\x1d\x21\x3a\xed\xb0\x01\xf9\xb1\xba\x16\x8a\x4b\x0f\xb2\ +\x66\xab\x89\xbd\x47\xea\xfc\x5c\x4c\xe3\xa3\x14\xe2\x8b\xb7\x3d\ +\xdc\x96\xe6\x0f\xa3\xbc\x22\xde\x4a\x21\xbe\x7a\xf7\x9e\xa4\x90\ +\x60\x4f\xfa\x5e\x75\xc9\x4c\x9e\x7a\xf8\x3e\xc2\x23\xc2\x79\xf6\ +\xd5\x0f\x79\xf1\x4d\xa3\x90\x52\x04\xc8\x87\x05\xcc\x27\x03\x1f\ +\x03\x45\x33\x4e\x98\xc8\x0b\x4f\x3c\x40\xaa\x9a\x74\x6b\x28\x40\ +\x7e\xa4\xa6\x99\x35\x65\x87\x28\xde\x7a\x90\x03\x47\xeb\xbd\x82\ +\xd7\x40\x97\x5b\xbb\x06\xb9\xbf\x32\xcd\x68\x8a\x58\x11\xc5\x24\ +\x1c\x9f\x18\x19\x11\xce\x53\x0f\xdf\xcb\xd5\xb3\xce\xa7\xaa\xa6\ +\x9e\xbb\x7e\xf7\x1c\x6b\x37\x6d\x77\x48\x29\xd7\x48\x26\x63\xb9\ +\xa0\x89\x00\xf9\x70\x90\x5a\x5e\x01\x6e\x4a\x4a\x88\xe3\xd9\xc7\ +\x7f\xc9\x59\xa7\x9c\x38\x68\x20\x3f\x5c\xdd\xcc\x9a\xf2\x43\xac\ +\x29\x3d\x88\xe9\x58\x63\x1f\x0f\xd3\x93\x14\x12\xf4\x02\x01\x7d\ +\xc0\x3a\x52\x96\xe6\xf7\x85\x97\x27\xed\x5e\x14\x93\xe8\xfb\x7d\ +\x13\xc6\xe5\xf1\xe2\xd3\xbf\x23\x77\xec\x18\x96\xad\xd9\xc2\x7d\ +\x8f\xbf\x40\x5d\x43\x33\xc0\x3c\x94\xa8\x14\x21\xa5\x08\x90\x0f\ +\x2b\xa0\xff\x0c\xf8\x97\x46\xa3\x89\xfc\xc5\x8d\x57\xf3\xc0\x6d\ +\xd7\x07\xad\xf2\xd0\xc1\xaa\x26\xd6\x96\x1f\x62\x75\xe9\x21\x0e\ +\x55\x37\xf9\x78\x71\x0e\x42\x81\x80\x00\xc9\x34\xa2\x98\x84\x37\ +\xc7\x36\x3c\x8b\x49\x84\x85\x84\x70\xd7\xad\xd7\xf1\x8b\x9b\xae\ +\x45\xa3\xd5\xf0\xf7\x57\x3e\xe0\x5f\x6f\x7f\x86\x2c\xcb\x1d\xc0\ +\xbd\x92\xc9\xf8\xa6\xa0\x86\x00\xf9\x70\x96\x5a\x3e\x02\x26\x4c\ +\x9f\x3a\x81\x7f\x3c\x7e\x3f\xd9\x19\xa9\x01\x81\xb8\xe9\x58\x13\ +\x6b\xb7\x1d\x62\x4d\xd9\x21\x8e\xd4\xb4\xf8\xaf\x31\x0f\x60\xb9\ +\xb5\xd7\xf0\x0a\xd0\xd2\xfc\xe0\x15\x93\x08\xc2\xd2\x7c\x10\xc5\ +\x24\xd4\xed\xa7\x9d\x3c\x95\xa7\x7e\x73\x1f\x39\xd9\x99\x1c\xaa\ +\xac\xe6\xbe\xc7\x5f\x64\xfd\x96\x1d\x00\x3b\x50\xa2\x52\x84\x94\ +\x22\x40\x3e\x72\xa4\x96\xc8\x88\x70\xee\xb9\x65\x0e\xb7\x5f\x7f\ +\x05\xa1\xa1\x21\x3e\x83\xfc\xc0\xd1\x46\xd6\x6c\x3b\xc2\xda\xb2\ +\x43\x1c\xad\x6b\x71\x33\xbc\xf5\x01\x06\x3e\x4b\x13\xc3\x34\x62\ +\x45\x14\x93\x18\x76\xc5\x24\x12\x13\x62\x79\xe4\xbe\xdb\xf9\xd1\ +\xac\xf3\xb0\x58\xac\xfc\xe7\xdd\x2f\x79\xfe\x8d\x4f\xe8\xe8\x34\ +\x0b\x29\x45\x80\x7c\xc4\x02\x7d\x0e\xf0\x3c\x30\x26\xdf\x30\x86\ +\x27\xff\xef\x0e\x4e\x3b\x79\x8a\x47\x90\xef\xaf\x6c\x60\xed\xb6\ +\x23\xac\xdb\x76\x84\xaa\xfa\x56\x2f\xa5\x09\x5f\xa5\x10\x6f\xbc\ +\x50\xdf\x63\xbe\x07\xb6\x34\x3f\xb0\xde\xbd\x28\x26\x11\xe8\xd1\ +\x84\xbb\x63\x93\xb9\xfa\x92\xf3\xf8\xed\xfd\xb7\x93\x10\x1f\xcb\ +\xaa\x0d\x65\xfc\xee\x2f\xaf\xb3\xf7\xc0\x11\x80\x23\xc0\xaf\x24\ +\x93\xf1\x13\x41\x05\x01\xf2\x91\x0a\xf3\x18\xe0\x0f\xc0\xaf\x80\ +\x90\xcb\xcf\x3f\x93\x47\xef\xff\x29\xa9\x4e\x8b\x88\x7a\xc3\xbb\ +\xba\xb1\x9d\xc0\x2c\xa6\x09\x7e\xc4\x4a\x60\x65\x1a\x51\x4c\x62\ +\x24\x16\x93\xc8\x19\x9b\xc9\x53\x0f\xdf\xcd\xa9\x27\x4d\xa5\xaa\ +\xb6\x81\x27\x9f\x7b\x9b\xcf\xbf\x5b\x05\x60\x55\x1d\x99\x27\x8f\ +\xe7\x65\xf6\x02\xe4\xa3\x0b\xe8\x93\x80\x7f\x03\x67\xc7\x44\x47\ +\xf2\xc0\xed\x37\x70\xf3\x9c\x4b\xd0\x69\xb5\x7c\xbb\x76\x1f\xef\ +\x2f\xda\x86\xd5\x66\xf7\x98\x57\x64\x58\x14\x08\xf0\x65\xe2\xd1\ +\xab\xd1\x84\x87\x8e\x43\x14\x93\xf0\xe2\xbf\x1b\xfc\x62\x12\x21\ +\xa1\x3a\x7e\x71\xe3\x6c\xee\xbc\xe5\x5a\x74\x3a\x1d\x6f\x7d\xf8\ +\x2d\x7f\x7f\xe5\x7d\x5a\xda\x3a\x00\x56\x00\x77\x4b\x26\xe3\x36\ +\x71\xf5\x0b\x90\x8f\x46\xa0\xdf\x04\xfc\x1d\x48\x9b\x58\x98\xcb\ +\x53\xbf\xbe\x83\x93\x26\x8f\xa7\xba\xa1\x8d\xf7\x17\x6d\x63\xed\ +\xb6\x23\x03\x18\xde\x06\xb7\x40\x80\x5f\x11\x2b\x23\xa8\x98\x44\ +\xef\x4e\xa1\x7f\x90\x8b\x62\x12\xa7\x4d\x9f\xca\xe3\x0f\xfc\x9c\ +\xfc\x9c\x6c\x4a\x4a\x77\xf1\xc8\x5f\x5e\x67\xdb\xae\x0a\x80\x2a\ +\xe0\x21\xc9\x64\x9c\x27\xae\x76\x01\xf2\xd1\x0e\xf3\x78\xe0\x69\ +\xe0\x2e\x8d\x46\xa3\xbb\xf6\xb2\x99\xfc\xe6\xee\x9b\x48\x8c\x8f\ +\x65\xf7\xa1\x7a\xe6\x7d\x57\xca\x9e\x43\xf5\x04\x26\x8e\xd7\x1b\ +\xb0\x0e\xf6\xd2\x7c\x44\x31\x89\xc1\x2c\x26\x11\x80\xa5\xf9\x8e\ +\x6d\x93\xc6\xe7\xf1\xe0\x9d\x37\x73\xc6\x8c\x13\x69\x68\x6a\xe1\ +\xe9\x17\xe7\xf1\xc1\x17\x4b\x90\x65\xd9\x86\x32\xc1\xff\x98\x64\ +\x32\x36\x89\xab\x5c\x80\xfc\x78\x02\xfa\x34\x55\x6e\x39\x35\x31\ +\x3e\x96\xdf\xdc\x75\x23\xd7\x5e\x7e\x1e\x1a\x8d\x86\xb5\xdb\x0e\ +\xf3\xfe\x82\x72\x8e\x35\xb4\x0d\xb0\x20\x81\x8f\xf0\x1a\x80\x14\ +\x22\x8a\x49\x40\xa0\x22\x48\x86\x5b\x31\x09\x43\x56\x26\x0f\xfc\ +\xfc\xc7\x5c\x74\xce\xe9\x00\xbc\xff\xc5\x62\xfe\xf4\xe2\xbb\x34\ +\x34\xb5\x00\xac\x55\x65\x94\xcd\xe2\xaa\x16\x20\x3f\x5e\x61\xae\ +\x01\x6e\x03\xfe\x02\x24\x4f\x9b\x34\x8e\xa7\x1f\xfe\x39\x93\xc6\ +\xe5\x62\xb5\xd9\xf9\x6e\xed\x3e\x8c\xcb\x76\xd0\xd6\x61\x1e\xf4\ +\x89\xce\xc1\x8d\x58\x11\xc5\x24\x86\xac\x98\x84\x9b\x4e\x28\x2d\ +\x25\x89\x7b\x6e\xbd\x8e\xd9\xb3\x66\xa2\xd3\xe9\xd8\xb6\xab\x82\ +\x47\xfe\xfc\x1a\x25\x65\xbb\x01\xea\x80\x47\x80\xb9\x92\xc9\x28\ +\x00\x21\x40\x2e\x2c\xcc\x30\x3b\x59\x85\xf9\x6d\x3a\xad\x56\x73\ +\xfd\x95\x17\x70\xcf\x2d\x3f\x22\x33\x4d\x4f\x6b\x87\x84\x71\xe9\ +\x0e\xbe\x5f\xb7\x0f\x8b\xd5\x1a\x00\x90\x0f\xc1\xd2\x7c\x51\x4c\ +\x82\x81\xc5\xa3\x0f\x6e\xc4\x4a\x5c\x5c\x0c\x3f\xff\xc9\xd5\xdc\ +\x38\xfb\x52\xc2\xc3\x42\x39\x72\xac\x96\x97\xde\xfa\x94\xf7\x3e\ +\x5d\x88\xcd\x6e\x97\x81\xb9\xc0\x23\x92\xc9\x58\x27\xae\x5e\x01\ +\x72\x61\x7d\x81\x7e\x2a\xf0\x32\x70\x52\x48\x88\x8e\xab\x2f\xfe\ +\x21\x77\xdf\x74\x35\xb9\x63\x33\x69\x6a\xeb\xe4\xeb\xe2\xdd\x7c\ +\xbf\x76\x2f\x1d\x9d\x96\x61\x55\x20\x40\x14\x93\x18\x1d\x4b\xf3\ +\x23\xc3\xc3\xb9\xf9\x9a\x4b\xb9\xed\xc7\x57\x11\x1b\x1d\xc5\x7e\ +\x53\x25\x2f\xbd\xfd\x19\x9f\x7e\xb3\x1c\x8b\xd5\x06\xb0\x09\xb8\ +\x47\x32\x19\xd7\x8a\xab\x55\x80\x5c\x98\x67\xb9\xe5\x0a\xe0\x31\ +\x60\xba\x56\xab\x61\xd6\xcc\xd3\xb9\xf7\xa7\xb3\x99\x50\x60\xa0\ +\xbd\xd3\xc2\x77\x6b\xf6\xf0\xf5\xea\xdd\x34\xb5\x74\x32\xb0\x28\ +\x04\x51\x4c\x42\x14\x93\x90\x89\x8c\x8c\x60\xce\xa5\x33\xb9\xe3\ +\x27\x57\xa3\x4f\x4a\x60\xc7\x1e\x13\x2f\xbc\x69\xe4\xeb\x45\xab\ +\x51\x1c\x70\x36\xa2\x4c\xd0\x7f\x29\x64\x14\x01\x72\x61\xbe\x43\ +\xfd\x22\xe0\x51\xe0\x2c\x8d\x46\xc3\x79\x67\x9c\xcc\xbd\xb7\xce\ +\x61\xda\xa4\x42\x2c\x56\x1b\x8b\x36\xec\xe7\x8b\x15\x3b\xa8\x69\ +\x68\x1d\x21\x11\x2b\xc3\xb8\x98\x44\x50\x96\xe6\xbb\x03\xeb\xd0\ +\x17\x93\xc8\x4c\x4b\xe1\xc6\xd9\x97\x30\xfb\xd2\x99\xc4\x46\x47\ +\xb1\xa9\x7c\x0f\x2f\xcc\xfd\x84\x45\x2b\x4b\x1c\x9f\xb1\x12\xf8\ +\x93\x64\x32\x7e\x2f\xae\x46\x01\x72\x61\x03\x07\xfa\xd9\x2a\xd0\ +\x2f\x04\x38\x63\xc6\x14\xee\xbb\x75\x0e\xa7\x9f\x3c\x19\x9b\x5d\ +\x66\xe5\xe6\x03\x7c\xba\x6c\x3b\x87\xaa\x1a\xbd\x94\x26\x82\x59\ +\x4c\x22\x18\x31\xcd\x88\x62\x12\x7e\x7b\xf7\x7d\xf3\xc7\x9f\x38\ +\x69\x1c\xb7\x5c\x73\x29\xe7\x9d\x75\x0a\x3a\xad\x96\xe2\x8d\xe5\ +\xbc\x30\xf7\x13\x47\xe5\x7a\x80\x05\x2a\xc0\x57\x88\xab\x4f\x80\ +\x5c\x58\xe0\x81\x3e\x43\x05\xfa\x15\x80\xe6\xe4\x29\xe3\xb9\xef\ +\xd6\xd9\xcc\x3c\xe3\x64\x64\x19\x36\x6c\x3f\xc4\x97\x2b\x77\xb2\ +\x6d\x5f\x95\x28\x26\x11\xe8\x88\x95\x41\x5a\x9a\x1f\xac\x88\x15\ +\x9d\x56\xcb\x45\xe7\x9c\xca\x2d\x73\x66\x31\xb9\x28\x1f\x80\x45\ +\xab\x4a\x78\x61\xae\x91\x92\xd2\x5d\x8e\x37\x7d\xa9\x02\x7c\x83\ +\xb8\xda\x04\xc8\x85\x05\x1f\xe8\x53\x80\xdf\x01\xd7\x02\xda\x49\ +\xe3\x72\xb9\xf7\xa7\x3f\x62\xd6\xcc\xd3\xd0\x6a\x35\x54\xd6\x34\ +\xb3\x60\xdd\x5e\x96\x6c\xd8\x47\x53\x6b\x47\xff\x30\x10\xc5\x24\ +\x3c\x4a\x21\x23\xbd\x98\x44\x5c\x6c\x34\xd7\x5c\x76\x1e\x3f\xbe\ +\xea\x42\xd2\x52\x92\xb0\xdb\x65\xe6\x2f\x59\xc3\x8b\x6f\x7e\xea\ +\x58\x8d\x69\x47\x49\xbd\xfc\x8c\x28\x7a\x2c\x40\x2e\x6c\x68\x80\ +\x3e\x0e\xf8\x2d\xf0\x13\x20\x34\xdf\x90\xc9\x5d\x37\x5d\xcd\xe5\ +\x17\x9c\x41\x54\x64\x38\x36\x9b\x9d\xf5\xdb\x0f\xf1\xfd\xda\xdd\ +\x6c\xde\x79\x14\x59\xb6\x0f\xa3\x62\x12\xc1\x58\x9a\xef\x59\xbb\ +\x3f\x5e\x8a\x49\x4c\x1a\x9f\xcb\xec\x4b\xce\xe1\x8a\x0b\xcf\x22\ +\x22\x3c\x9c\xf6\x0e\x33\x5f\x2e\x28\xe6\xe5\xff\x7e\xc6\x3e\x53\ +\x25\x80\x05\x78\x0f\xf8\xb3\x64\x32\xee\x16\x57\x93\x00\xb9\xb0\ +\xa1\x07\xba\x01\xf8\x0d\xf0\x33\x20\x3c\x2a\x32\x9c\x59\xe7\x9e\ +\xc6\x9c\xcb\xce\xe1\xf4\x93\x27\xa3\xd5\x6a\xa8\x6e\x68\x65\xe1\ +\xda\x3d\x2c\x5a\xb7\x97\x9a\xc6\x56\x86\x2e\x62\x45\x14\x93\x08\ +\x56\x31\x09\xc3\x98\x34\x66\xcd\x3c\x8d\x59\xe7\x9d\x4e\x4e\x56\ +\x06\x76\xbb\xcc\xea\x8d\xe5\x7c\x3c\x7f\x19\xf3\x17\xaf\xa1\xbd\ +\xc3\x0c\x60\x06\xde\x04\xfe\x2a\x99\x8c\x26\x71\xf5\x08\x90\x0b\ +\x1b\x7e\x40\xcf\x00\x6e\x05\x6e\x02\x8a\x00\x32\x52\x93\xf9\xd1\ +\xac\xb3\x99\x33\xeb\x1c\x0a\x73\xb3\x90\x65\x99\x92\x1d\x87\xf9\ +\x7e\xcd\x6e\x4a\x76\x1c\x46\xb2\x58\x03\x20\x85\x80\x28\x26\xe1\ +\x43\xc7\x11\xc0\x62\x12\xc9\x49\xf1\x5c\x72\xce\xa9\xcc\x9a\x79\ +\x1a\x93\xc7\xe7\x01\xb0\xa7\xe2\x30\x1f\x7f\xbd\x0c\xe3\xb7\x2b\ +\x38\x5a\xd5\xb5\x66\x67\x27\x4a\x71\x87\xb7\x24\x93\xf1\xa8\xb8\ +\x5a\x04\xc8\x85\x8d\x0c\xa8\xcf\x50\x81\x7e\x03\xa0\x07\x98\x3a\ +\x21\x9f\x6b\x2e\x3b\x87\xab\x2e\x3a\x93\xa4\x84\x38\x3a\xcc\x16\ +\x4a\xb6\x1f\x66\x75\xa9\x89\xf5\xe5\x26\xda\x3b\x25\x51\x4c\x62\ +\x04\x14\x93\x88\x89\x8a\xe0\xbc\x33\xa6\x73\xe9\x79\xa7\x71\xca\ +\x89\x13\xd0\x6a\xb5\xd4\x37\x36\xf3\xf9\x77\xab\xf8\x78\xfe\x32\ +\xb6\x6e\xdf\xe7\x68\x06\xb5\xc0\xfb\xc0\x3c\x31\x81\x29\x40\x2e\ +\x40\x3e\xb2\x81\x1e\x0a\x5c\x0c\xdc\x0c\x5c\x0e\x84\x87\x84\xe8\ +\x98\x79\xfa\x49\xcc\xb9\xec\x1c\x2e\x38\xf3\x64\xc2\xc3\x43\xb1\ +\xda\xec\x6c\xd9\x75\x84\xe2\x2d\x07\x58\x53\x7a\x80\xc6\x96\x0e\ +\x51\x4c\x62\x18\x15\x93\x88\x8c\x08\xe7\xb4\x93\x26\x31\x6b\xe6\ +\xa9\x9c\xfd\x83\x13\x09\x0f\x0b\x45\x92\x2c\x2c\x5c\x59\xc2\xc7\ +\xf3\x97\xb1\xb4\x78\x93\x63\xf5\xa5\x19\xf8\x0a\x78\x07\xf8\x4e\ +\x32\x19\x2d\xe2\x2a\x10\x20\x17\x20\x1f\x5d\x50\x4f\x40\x89\x74\ +\xb9\x09\x38\x03\xd0\xc4\xc7\xc5\x70\xe5\x85\x67\x70\xcd\xa5\x3f\ +\xe4\xe4\xa9\xe3\xbb\xfe\xef\xed\xfb\xab\x28\xde\x5c\x41\xf1\xd6\ +\xfd\x1c\xab\x6d\x61\xd8\x16\x93\xf0\x49\x63\x1e\x39\xc5\x24\xb4\ +\x1a\x28\x2a\x34\x70\xda\x49\x93\x38\xed\xa4\x49\x9c\x38\xb1\x80\ +\x90\x10\x1d\x00\x25\xa5\xbb\xf8\x78\xfe\x72\xbe\x58\x50\x4c\x53\ +\x73\xab\xe3\x4b\x8a\x55\xe9\xe4\x23\xc9\x64\x6c\x14\xad\x5d\x80\ +\x5c\x80\xfc\xf8\x80\x7a\xae\x0a\xf4\x9b\x80\x02\x80\xdc\xb1\x19\ +\x5c\x7d\xd1\x99\x9c\x7d\xea\x09\x4c\x9b\x3c\x8e\x50\x15\x1c\x15\ +\x47\xea\xd8\xb2\xeb\x08\x65\x7b\x2a\x29\xdb\x53\xd9\x15\xd2\x28\ +\x8a\x49\x04\x76\x69\x7e\x7a\x6a\x32\xa7\x9d\x34\x81\xd3\x4e\x9a\ +\xc4\x29\x27\x4e\x20\x3e\x36\x1a\x00\x8b\xd5\xc6\xe6\xf2\xdd\xac\ +\x58\xbb\x95\xcf\xbe\x5f\x45\xc5\xc1\x2e\x89\x7b\xaf\x0a\xef\x79\ +\x92\xc9\x58\x21\x5a\xb5\x00\xb9\x00\xf9\xf1\x0d\xf5\xd3\x54\xa0\ +\x5f\x07\x24\x01\x44\x46\x84\x73\xca\x89\x45\x9c\x39\x63\x0a\xa7\ +\xcf\x98\xcc\xd4\x09\xf9\xe8\xb4\x5a\x64\x19\x0e\x1e\xab\x57\xa0\ +\xbe\xbb\x92\xd2\x3d\x47\xa8\x6d\x68\xf5\x1e\x5e\x7e\xc9\x34\xae\ +\xf5\xe6\x91\x5e\x4c\x22\x2a\x22\x82\xe9\x27\x8c\xe3\xb4\x93\x26\ +\x72\xea\xb4\x89\x18\xc6\xa4\x01\x60\xb3\xdb\x29\xdd\xb1\x8f\xd5\ +\x1b\xca\x59\xb5\xa1\x8c\xf5\x5b\x76\x3a\x2a\xd1\x03\xd4\x03\x1f\ +\xaa\xf0\x5e\x23\x5a\xaf\x00\xb9\x00\xb9\xb0\xde\x40\x0f\x03\xce\ +\x02\xce\x05\x66\x02\x33\x80\x10\x80\xd8\xe8\x48\x4e\x3d\x79\x12\ +\x67\x4c\x9f\xcc\x99\x33\xa6\x30\xa1\xd0\xd0\xd5\xd0\x8e\xd6\x34\ +\x51\xb6\x47\x81\x7a\xe9\xae\xc3\x54\xd6\x34\x79\x05\xcb\xe3\xa9\ +\x98\x44\x44\x78\x18\x05\xb9\x99\x14\xe5\x65\x33\x3e\x2f\x9b\x09\ +\x05\xd9\x8c\xcb\xcd\x46\xa7\xd3\x22\xcb\x32\x3b\xf6\x98\x58\xb5\ +\xa1\x8c\xe2\x8d\xe5\xac\x2d\xd9\xe6\xa8\x7d\x09\x4a\x11\xe3\x0d\ +\xc0\x12\x60\x29\xb0\x52\x32\x19\x25\xd1\x5a\x05\xc8\x05\xc8\x85\ +\x79\x0b\xf6\x58\x15\xec\x33\xd5\xdb\x09\x80\x16\x20\x31\x3e\x96\ +\xd3\xa7\x4f\xe2\x74\x15\xec\x85\xb9\x59\x5d\xef\x6b\xeb\x30\x73\ +\xe0\x48\x1d\x15\x47\xea\xd8\x7f\xb8\x86\x8a\xc3\xb5\x54\x1c\xa9\ +\xa5\xb9\xad\xe3\xb8\x28\x26\x11\x17\x13\xc9\xb8\xdc\x2c\xc6\xe7\ +\x67\x51\x94\x97\x4d\x51\x7e\x36\x86\x31\xa9\x68\xb5\xda\xae\x73\ +\xb4\xa7\xe2\x30\xab\x36\x94\xb1\x7a\x63\x39\xab\x37\x6e\x73\x54\ +\xdb\x01\x65\xa5\xe5\x56\x15\xdc\x4b\x54\x70\xb7\x88\xd6\x28\x40\ +\x2e\x40\x2e\x2c\x50\x60\x4f\x02\xce\x71\x02\xfb\x04\xc7\x6b\xa9\ +\xc9\x09\x9c\x3e\x43\x81\xfa\xb4\x49\x85\xe4\x8e\xcd\x20\x22\x3c\ +\xac\xc7\xfb\xeb\x1a\x5b\xd9\xaf\x42\xbd\xe2\x70\x0d\xfb\x0e\xd5\ +\x70\xe8\x58\x1d\x9d\x66\xcb\x88\x2b\x26\xa1\xd3\x6a\x48\x49\x8a\ +\x27\x3d\x25\x91\xb4\xe4\x04\xb2\x32\xf4\x8c\xcf\xcb\x62\x7c\x5e\ +\x16\x19\xa9\x49\x3d\x7e\x77\xa7\x59\xa2\xe2\xe0\x51\x36\x6f\xdb\ +\xa3\xc0\x7b\x43\x39\xd5\x75\x3d\xe6\x23\x77\x38\x81\x7b\x99\x64\ +\x32\xd6\x8b\xd6\x26\x4c\x80\x5c\xd8\x60\x81\x3d\xdd\x49\x86\x99\ +\x09\xe4\x39\x37\xc2\x31\xe9\x7a\xf2\x0d\x99\xe4\xe7\x8c\x21\xdf\ +\x90\x49\x81\x61\x0c\xf9\x39\x99\x64\xa4\x26\xf7\x68\xa4\xad\xed\ +\x66\xea\x1a\x5b\xa8\x69\x68\xa5\xb6\xbe\x85\xda\xc6\x16\x6a\x1b\ +\x94\x5b\x8d\x7a\x5f\xdf\xd8\x82\xcd\xee\xa3\xa6\x3d\x80\xf4\xb8\ +\x09\x71\xd1\xa4\xea\xe3\x49\xd7\x27\x92\x96\x1c\x4f\x5a\x4a\x82\ +\xf2\x58\xaf\xdc\x27\x27\xc5\xa1\x75\xfa\x0d\xb2\x2c\x73\xb4\xba\ +\x8e\x7d\x07\x2a\xd9\x6b\x3a\xc2\x3e\x53\x25\xfb\x0e\x28\xf7\x47\ +\x8e\xd5\xf6\xbe\x86\xf6\x3b\x81\x7b\xa9\x64\x32\x1e\x13\xad\x49\ +\x98\x00\xb9\xb0\xe1\x02\x76\x83\x0a\xf6\xa9\xc0\x78\xf5\x96\x03\ +\xe8\x9c\xf7\x8b\x8c\x08\x27\xcf\x90\xa9\xc2\xbd\x1b\xf4\x79\x86\ +\x4c\x62\xa2\x22\x5d\x7e\xb6\x5d\x96\x69\x68\x6a\xa3\xb9\xb5\x1d\ +\xb3\xc5\x86\x24\x59\xe8\x94\x2c\x48\x16\x2b\x66\xc9\x82\x59\xb2\ +\x22\xa9\xf7\x66\xc7\x76\xb3\x12\x42\x1d\x1e\x1e\x42\x44\x58\x28\ +\xe1\x61\xa1\xea\xe3\x30\xc2\xc3\x42\x88\x08\x57\xb7\x85\x85\x12\ +\x11\x1e\xaa\x6e\x0f\x25\x26\x3a\x82\xb0\xd0\x10\x97\xc7\xd1\xda\ +\xde\xc1\x7e\x53\x65\x17\xa8\xf7\xaa\x8f\xf7\x9b\x2a\x9d\x27\x24\ +\x1d\x66\x03\x0e\x00\xbb\xd4\x5b\xa9\x0a\x6e\xb1\x34\x5e\x98\x00\ +\xb9\xb0\x11\x05\xf7\x70\x94\xf0\xc6\xf1\x2e\x6e\x89\xbd\xf7\x4f\ +\x4b\x49\xa2\xc0\x90\x49\x56\x66\x2a\xb1\xd1\x91\xc4\x46\x47\x11\ +\x1d\x1d\x49\x4c\x54\x04\x31\xd1\x91\xc4\x44\x45\xaa\xcf\x23\xd5\ +\xe7\x11\x44\x47\x47\x12\x1d\x19\xe1\x75\xc3\x97\x65\x99\xb6\x8e\ +\x4e\xda\xda\x3a\x68\x6d\xef\xa4\xb5\xad\x83\xd6\xf6\x0e\xf5\x79\ +\x87\xfa\x5c\x79\xbd\xa5\xad\x9d\x96\xb6\x0e\x0e\x57\x56\xb3\xd7\ +\x54\x49\x55\x8d\x4b\xd5\xa3\xc1\x09\xd6\xce\xb7\xbd\x92\xc9\x68\ +\x16\xad\x40\x98\x00\xb9\xb0\xd1\x0c\xf9\x14\x94\x9c\x30\xbd\x01\ +\x9f\x87\x1a\x2d\xe3\x4b\xa3\x8f\x8e\x8c\xe8\x03\x7d\x87\x17\xed\ +\x0c\xe7\xb6\x8e\x4e\x7f\xda\xb4\x55\x95\x44\x7a\xc3\x7a\xa7\x64\ +\x32\xd6\x88\x7f\x53\x98\x00\xb9\x30\x61\x3d\x01\x1f\x0a\xa4\x03\ +\xb1\xfd\xdc\x62\xdc\xbc\xd6\xfb\x06\xd0\xe2\xe5\xad\xd5\xcd\x6b\ +\xc7\xc4\x72\x77\x61\xc3\x11\xe4\xc2\x84\x09\x13\x26\x4c\x98\x30\ +\x61\xc2\x84\x09\x13\x26\x4c\x98\x30\x61\xc2\x84\x09\x13\x26\x4c\ +\x98\x30\x61\xc2\x84\x09\x13\x26\x4c\x98\x30\x61\xc2\x84\x09\x13\ +\x26\x4c\x98\x30\x61\xc2\x84\x09\x13\x26\x4c\x98\x30\x61\xc2\x84\ +\x09\x13\x26\x4c\x98\x30\x61\xc2\x06\xcb\xfe\x1f\xb5\x2a\x3a\xdb\ +\x50\xaf\x4d\x17\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x02\x9a\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ +\x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ +\xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ +\xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ +\x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ +\xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ +\x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ +\xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ +\x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ +\x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ +\xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ +\xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ +\xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ +\xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ +\x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ +\x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ +\x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ +\x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ +\xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ +\x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ +\xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ +\x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ +\x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ +\x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ +\x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ +\xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ +\x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ +\xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ +\xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ +\xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ +\x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ +\xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ +\xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ +\xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x95\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ +\x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x0a\x00\x0b\x07\x14\x32\xc7\x3a\x00\x00\x04\x22\x49\x44\ +\x41\x54\x78\xda\xb5\x93\x5f\x4c\x5b\x55\x1c\xc7\xcf\xb9\xff\x7a\ +\x7b\x6f\x4b\x4b\x4b\xd9\xa4\x30\x86\xd0\x0d\xa1\xb4\xfc\x19\xb4\ +\x19\x38\x91\x0d\x35\x8e\x05\xf6\xe2\x32\x9d\x33\x99\x02\x0f\xf2\ +\x20\xc9\x12\xdf\x7c\xc2\x25\x1a\x63\x64\xf1\x4d\xcd\xb6\x84\xec\ +\xc9\xa1\x04\xb6\x6c\xa3\x26\xcb\x26\x3a\x60\x3e\x08\x48\xa4\xfc\ +\xa7\x54\x0a\x85\x02\x97\xfb\xa7\xf7\xf6\x9e\x7b\xbd\x24\x3e\x18\ +\x97\x75\xd3\xe0\x27\xf9\xe6\xe4\xbc\x7c\xf2\x3b\x39\xdf\x1f\xf8\ +\xbf\x80\xe0\x1f\x74\x77\x77\xdb\xbd\x5e\xdf\x29\x96\x65\x8e\x12\ +\x24\xe9\x52\x55\x75\x53\x92\xa4\xd1\xe9\xf0\x74\x5f\x5b\xdb\x7b\ +\xab\xff\x5a\xcc\xb2\x2c\xbc\x7a\xed\x5a\x9b\xc3\xe1\xec\xba\x3f\ +\xba\xe0\x18\x0b\xc7\x41\x82\x97\x75\x0b\x4d\xc0\x82\x1c\x2b\xac\ +\xaf\x3e\x20\x50\x24\xf6\xe9\xdb\xe7\xde\xba\xb4\xbd\xbd\x8d\x9e\ +\x55\x0c\xaf\x5c\xb9\xfa\x99\x0a\x2d\x1f\x7c\xf5\x7d\x58\xc7\xac\ +\x59\xe8\x78\xa3\x0f\xf0\x00\x43\x0e\x33\x01\x86\x7e\xfc\x5d\x4f\ +\x44\xfe\x20\x5f\xa9\xb4\xe0\xde\x42\xdb\xb7\xef\x9c\x3f\xff\x66\ +\x2a\x95\x4a\x2b\xc7\x81\x41\x57\xd7\xc7\x67\x31\xca\xf6\xc9\x97\ +\xdf\x2d\xa1\x82\x0a\xef\x56\x5d\x53\x40\x28\x2d\xcb\xd3\xd5\x4c\ +\x3b\x77\x38\x3f\x0b\x65\x1e\xcc\xe1\x08\xda\xcc\xdf\x1b\x8e\xe1\ +\x36\x4a\x29\x6f\x69\x6a\x50\xee\xdc\xbe\xfd\xe0\x69\x62\x53\x73\ +\x73\xcb\x8d\xbe\x87\xbc\x85\xc9\x2f\x8c\x56\x9d\xa8\x88\x65\xe7\ +\xd8\x64\x8b\x95\x16\xe6\x10\x8c\x3a\x19\x32\x85\x48\x62\x9b\xb5\ +\x67\xac\x13\x34\x2d\x3e\x18\x5a\x64\x6a\x3c\xe6\xa3\xeb\xeb\xf1\ +\xaf\xa3\xd1\xa8\xf4\x24\x31\x76\xe1\xc2\xbb\x35\x8a\x46\x1e\x98\ +\x8e\x6b\x9b\x19\x65\x9e\x5f\xd7\x20\x31\xbd\x8e\xe1\xe1\x09\x05\ +\x4e\xcb\x34\xb5\x3e\x96\xc2\xe6\x36\x71\x22\x3a\x87\xb0\xb0\xfc\ +\xdc\xbe\x09\x39\x23\x73\x76\x7e\x4d\xb3\x1e\x7b\xe9\xd8\x49\x90\ +\x06\x82\xa2\x48\xef\x96\x00\x71\x7a\x7f\x76\x54\x34\xd1\xab\xa1\ +\x6f\x6e\xb5\xc1\x8c\x03\x10\x92\x0c\x40\x7c\x0c\xa0\xad\x45\x80\ +\xa4\x4d\xa0\x25\xb7\x40\xf9\xc5\x0f\xbf\xb0\x1c\x74\x47\x36\xc4\ +\xb9\x62\x37\x45\x79\xd3\x89\x31\x00\x20\x0b\x20\xae\x53\x56\xcb\ +\x0e\xc6\x90\x32\xb7\x83\x80\x88\x18\x88\x68\x27\x84\x34\x0b\x35\ +\x82\x82\x72\x0a\x41\x9e\x13\x00\xc9\x9a\x92\x94\xdd\xc2\x63\x04\ +\xa9\x1a\xd0\x69\x27\x36\xaa\xb3\xe0\x29\x25\x34\xb4\xa8\x50\x1a\ +\x04\xe8\xe4\xa5\x73\x1f\x39\xcd\x84\x68\x25\x31\xd9\x84\x79\x90\ +\xaa\x9f\x80\xa2\xaa\x53\x9b\x32\xa2\x97\x37\x04\x46\x53\x11\xb6\ +\xcf\x4e\x9a\x76\x22\x42\x24\xed\xc4\xbd\xbd\xbd\x43\x14\x10\x84\ +\xe7\x2d\xd8\x7e\x24\xa5\x28\x01\x69\xa9\x14\x04\x12\x4e\x40\xde\ +\x64\x82\x1c\x45\xc1\x1d\x0d\x07\x62\x12\x00\x45\x53\x54\xc2\xc4\ +\x71\xb9\x85\xd9\x38\x36\x3c\x32\x32\x98\x56\x2c\xcb\xc9\xd5\x99\ +\xd9\x99\x9e\x26\x9f\xc9\x2d\x85\x97\xf3\xa5\x6d\x89\x4d\x22\x9d\ +\xd8\x6d\x38\x4b\x42\x05\x87\x50\x53\x34\x1d\x13\x65\x95\x92\x97\ +\x13\xae\x53\x45\x94\x6f\x69\x7e\xea\xee\xe8\xc8\xc8\x6f\x4f\xab\ +\x9b\x3e\x31\x3e\xfe\xa8\x2e\x58\xf1\x6a\xdd\x21\x77\xe5\xd4\x92\ +\x24\xf1\x34\xcd\x21\x8a\xd0\x44\x15\x10\x1b\x49\x8d\x89\x71\xb2\ +\x4d\x9c\x89\x79\x9a\x59\xa1\xa5\xc4\x99\xcc\xf4\xfb\xfc\x6c\x51\ +\x51\xe1\x60\x28\x14\x5a\x4d\xbb\x20\xc6\x16\x09\x93\x93\x93\x77\ +\xbc\x1e\xf7\x91\xd3\xfe\xdc\xc6\x3c\x00\x0a\x48\x09\x65\xcb\x5b\ +\x92\xdb\x99\x4c\x7a\xfd\x2a\xff\xf2\x6b\x19\x7c\xc3\xca\xc4\x7d\ +\x65\x64\xf8\xa1\xb9\xb8\xe4\x85\x8c\xca\xca\xca\x33\x65\x65\x65\ +\x8f\x06\x06\x06\xe6\x9f\x28\xde\x85\xe3\xb8\xad\x50\x68\xb0\x57\ +\x12\x76\xc2\x76\x4c\xcc\xcb\x41\x89\x92\x43\x70\xb3\x98\x8d\xcf\ +\x64\x25\xc2\xbf\x2c\x0f\xde\xec\xfb\xfc\xf2\xe5\xee\xf7\x6d\x36\ +\x5b\xf6\x72\x24\x52\x9e\xe5\x72\x99\x03\x81\xe0\x1b\xc1\x60\x60\ +\x6e\x61\x61\x61\x62\x65\x65\x05\x3c\x0b\x84\x91\x4c\x23\xb9\x46\ +\x9c\x46\x28\xf0\x17\x79\x79\x79\x78\x4b\x4b\x4b\x77\x47\x47\x87\ +\xde\x73\xfd\xba\xbe\x14\x89\xa8\xfd\xfd\xfd\x17\xeb\xeb\xeb\xe1\ +\xe3\x13\x3f\x8e\x66\x24\x69\x84\x33\x22\x19\x41\x7f\x7b\x99\xce\ +\xf3\xfc\x5d\x87\xc3\x81\x8b\x82\xf0\x62\x22\x91\xc0\x6a\x6b\xeb\ +\x1a\xfd\x7e\x9f\x3d\x16\x8b\xfd\x30\x3b\x3b\xab\xa5\x11\xa7\x67\ +\x57\x6e\x1c\xf7\x58\x96\xe5\x29\x8a\x3a\xbe\xb8\xb0\x88\x55\x1d\ +\xa9\x0a\xd6\x54\x57\x17\x2b\x8a\x72\x73\x6c\x6c\x4c\xc5\xc1\x7f\ +\x24\x1e\x8f\x83\xf1\xf1\xf1\x9f\x0b\x0a\x0a\x96\x5d\x2e\xd7\xeb\ +\xe1\xa9\x29\xfc\x70\x71\x71\xa9\x21\xaf\x65\x18\xa6\x1f\x82\x3d\ +\xa0\xbd\xbd\xfd\xb4\xd1\x92\x1e\x51\x14\x99\x40\x20\x00\x34\x4d\ +\xfb\x09\x82\x3d\xc2\xf8\xcc\x86\x60\x30\x78\x63\x6d\x6d\xcd\x62\ +\x5c\xcf\x82\xbd\xa4\xb3\xb3\xb3\xb2\xb5\xb5\xf5\x0c\x30\xf8\x13\ +\x74\xaa\xde\x46\xd5\x46\x63\x32\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x02\xd6\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x06\xec\x00\x00\x06\xec\x01\ +\x1e\x75\x38\x35\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd8\x0b\x11\ +\x17\x19\x36\xe0\x1f\xbc\x7d\x00\x00\x02\x56\x49\x44\x41\x54\x78\ +\xda\x8d\x91\x5d\x48\x53\x71\x18\x87\x9f\x73\x66\x52\xe1\x32\x95\ +\x30\xb2\xd5\x12\xc2\x30\xa8\x30\xbd\x31\x2f\xba\xd1\x8b\x90\xc0\ +\xa0\x4f\xa2\x20\xb2\x4c\xab\x8b\x8c\x60\x41\x12\x18\x41\x82\x91\ +\x60\x81\x1f\x45\x17\xd2\xf7\x45\x17\x61\xa4\xa1\x61\x28\xa1\xa8\ +\x91\x59\x4a\xea\x14\x5d\x73\xb6\x4c\xcf\xce\x74\xba\xb3\xfd\x3b\ +\x1c\xd8\x58\x5b\x50\x0f\xbc\xbc\xef\xb9\x78\x9f\xdf\xcb\xff\x48\ +\x60\xb0\x16\xd8\xce\x7f\x50\xb0\x5b\x5e\x79\x7b\x63\x41\x9d\xe6\ +\x9a\x1b\x23\x21\xe1\x44\x48\x90\x2f\x84\x68\xe1\x1f\x04\xfc\x8b\ +\x78\x7a\x8b\x78\x79\xdf\x4e\x46\x7b\x80\x05\x97\xab\x33\x0e\x30\ +\xd0\x05\xfc\x70\xbb\x91\x65\xd9\x28\x49\x92\x90\xf5\xd2\x07\x63\ +\x86\x20\xcb\x5f\x4b\x79\xdd\xfa\x85\xeb\xad\x32\x07\x2c\x53\x5a\ +\x96\x47\x24\xc9\x44\x60\x32\x99\xc2\x02\x53\xa8\x9b\x4c\xc6\xec\ +\xb7\x57\xd1\xdb\xd3\xc5\x8d\xa6\x78\x76\x6e\x76\x73\xfa\xac\xe4\ +\x6a\xc9\x92\xcf\xc5\x41\x18\x23\xd1\x48\xd7\x4b\x9f\xc3\xdd\x37\ +\xf5\x08\xc7\xb7\x37\xd8\xea\xe3\x59\x6f\x9e\xe1\x56\xe9\x6a\x2a\ +\xea\x97\x6a\x9e\xb7\x69\xd3\x91\x17\xfc\x99\x1e\x4a\x9e\x7d\x8f\ +\x32\xfe\x84\x0b\xd5\x3e\x56\x48\x1e\x6a\x2e\x06\x59\x48\xad\x40\ +\x5f\xf6\x00\x93\x61\x81\x14\x4a\x8c\x90\x04\xd4\x21\xb4\xe9\xc7\ +\x5c\xb9\xeb\x61\x5e\x51\xa9\x2e\x51\xd0\x52\xcb\x50\xe5\x1d\x00\ +\x0e\x60\x31\xe6\x82\x90\x24\xe0\x73\x12\x9c\x7e\x88\xed\xce\x18\ +\x9f\x87\xdd\xdc\x3c\x35\x87\x79\xd3\x41\x66\x02\x79\x58\xad\x56\ +\x80\x25\x63\x27\xea\x0d\x8c\x12\x9a\x82\xd0\x97\xab\x1a\x07\x79\ +\xd7\xed\xc4\x76\x74\x8e\x2d\xdb\x72\x19\xf5\x15\x92\x96\x96\x86\ +\xc5\x62\x01\x20\x46\x60\xfc\x2e\xe1\x27\xe0\xa8\xe3\xc1\xb3\x7e\ +\x9e\x36\x4f\x50\x52\xe8\x21\x37\x27\x9d\xfe\x5f\x47\x48\x4e\x4e\ +\x21\x33\x33\x13\x01\x61\xe2\xa2\x05\xf3\x93\x6d\xb4\x35\xb7\x53\ +\xdb\x34\x49\x51\xde\x22\x87\x0a\x12\x79\x31\xb8\x9f\x29\xe7\x00\ +\xe6\x35\x49\xf4\xf5\xf5\xb1\xca\x9c\x08\xa0\xfd\x55\xa0\x7a\x25\ +\xbc\x41\x2b\x7b\x77\x8d\x51\x7e\x58\xe6\x95\xfd\x38\xc3\x23\xdf\ +\xa9\xac\xac\xd4\x2f\x48\x46\x55\x55\x2e\x95\x97\xbf\x05\xba\x62\ +\x04\x3f\x67\x1c\xcc\x3a\x3f\x90\xbe\xce\x49\x46\x51\x36\xe3\xf1\ +\xfb\xc8\xd9\x93\x8d\x39\x65\xc8\x58\xf6\x7a\xbd\xd8\xae\xda\x06\ +\x1a\x1b\x1a\x4e\x02\x3e\x22\xc8\x17\x3a\xf7\x6a\x6b\xc4\xb5\xcb\ +\xc7\x84\x63\xa4\x53\xf8\xfd\xcb\x22\x18\x0c\xea\xdd\x2f\x3a\x3a\ +\x3a\x84\xa2\x28\xa2\xec\x7c\xd9\x27\x60\x2b\x21\xa2\x05\x13\xf6\ +\x51\x11\xcd\xb2\x16\x10\xdd\x1f\x07\x44\xf1\x99\xe2\x16\x60\x03\ +\x51\x48\x60\x90\x02\x64\x85\xbf\x63\xd1\x80\x4e\x60\x89\x28\x7e\ +\x03\x99\xc3\x0a\xf4\x03\x8f\xf6\xf6\x00\x00\x00\x00\x49\x45\x4e\ +\x44\xae\x42\x60\x82\ +\x00\x00\x02\x7e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xfb\x49\x44\ +\x41\x54\x38\x8d\x95\x92\x4f\x6b\x1a\x51\x14\xc5\x7f\xef\xa9\x38\ +\xcd\x7a\x16\x5d\x14\xa4\xd0\x65\x9b\x92\x45\x05\x91\xe2\xae\xed\ +\xb6\x76\xd7\x64\x95\x0f\x60\x3f\x44\x0b\xfd\x43\xc1\x76\x15\x42\ +\x20\x10\xb2\xf6\x3b\xe8\xc2\x8a\x28\x86\x5a\x90\x11\x0c\x74\x21\ +\xb3\x10\xd4\x2c\x26\xe3\x8c\xa3\x73\xbb\x88\x63\x75\x48\x0a\x3d\ +\x70\x37\xef\x71\xce\x3d\xf7\xde\xa3\x80\x47\xc0\x2e\xff\x87\xae\ +\x88\x0c\x00\x92\xc0\xee\x68\x34\xaa\x84\x22\x68\xad\xd1\x5a\xa3\ +\x94\xda\x2a\x80\xcb\xc1\x80\x76\xbb\xcd\xde\xde\x1e\xd9\x6c\xf6\ +\x0d\x30\x00\xd0\x00\xa1\xfc\xbb\xdd\xd5\xd5\x15\xc3\xe1\x90\x83\ +\x83\x03\x5a\xad\x16\x85\x42\xe1\x69\xf4\xa7\x01\x12\x09\x4d\x22\ +\x91\x58\x3b\xd0\x5a\x93\xd8\xa8\x45\x10\x60\x9a\x26\x3b\x3b\x3b\ +\x1c\x1e\x1e\x92\xcb\xe5\xde\x95\x4a\xa5\x27\x00\x0a\x28\x8e\x27\ +\x93\x0a\x22\xa8\x48\x40\x29\xc2\x30\xa4\xd3\xe9\xe0\xba\x2e\x8e\ +\xe3\xe0\x38\x0e\xfb\xfb\xfb\x18\x86\x81\x65\x59\xfd\xa3\xa3\xa3\ +\x7b\xae\xeb\xe6\x14\x50\x9c\x4c\xa7\x15\xe0\xaf\x83\xd5\xdc\xa9\ +\x54\x6a\xed\x2c\xda\x45\x84\x5e\xaf\x57\x2b\x97\xcb\xa3\x64\x44\ +\xbc\x4d\xe0\x36\x62\x1c\x37\x02\x11\x41\xa9\x9b\xd2\x9a\xe5\x72\ +\x49\xbd\x5e\xe7\xfa\xfa\x7a\x6b\x84\x74\x3a\x8d\x65\x59\xfd\xe3\ +\xe3\xe3\x87\xc0\xdb\x24\x80\x8a\x3b\xd0\x37\x4b\xcd\xe7\xf3\x28\ +\xa5\xb0\x6d\x1b\xdb\xb6\x49\xa7\xd3\xf8\xbe\xcf\xd9\xd9\xd9\x7d\ +\x11\x79\x7e\x72\x72\x62\x27\xa3\x4d\x46\x37\x8f\xc6\x61\xe3\xcd\ +\x30\x0c\xc6\xe3\x31\x9e\xe7\x71\x7a\x7a\x4a\xa3\xd1\xf8\x5e\xad\ +\x56\x7f\xad\xcf\x48\x8c\x1c\x0f\x92\x69\x9a\x64\x32\x19\xce\xcf\ +\xcf\xc9\x66\xb3\x52\xab\xd5\x2e\xb6\x72\x10\x27\xc4\x53\xe8\x79\ +\x1e\x4a\x29\x5e\xbc\x7a\xc9\x8f\x66\xb3\x09\xfc\xdc\x5c\x64\xd1\ +\x75\x5d\xf1\x3c\x4f\xe6\xf3\xb9\x04\x41\x20\x8b\xc5\x42\x96\xcb\ +\xa5\x84\x61\x28\x41\x10\x48\xb7\xdb\x95\xf9\xdc\x97\x0f\x5f\x3e\ +\xf7\x81\xc7\x80\x12\x11\x44\x64\x25\x30\x9b\xdd\x29\xe0\x38\x8e\ +\x0c\x2e\x2f\xe5\xfd\xa7\x8f\x7d\xe0\x19\xa0\x23\x72\x24\xf0\xda\ +\x9d\xcd\x42\xdf\xf7\x25\x08\x82\x2d\x01\x11\x91\xc9\x74\x1a\x7e\ +\x2d\x7f\x6b\xac\x3a\x6f\x91\x45\x04\x05\x3c\x58\x29\xdf\x95\x98\ +\x70\x35\xf3\x6f\x89\x5a\x6e\xe0\x0f\xd5\xf2\x24\x09\x1c\xd8\x9f\ +\xe3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x33\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xb0\x49\x44\ +\x41\x54\x78\xda\xa5\x93\x3f\x48\xc3\x40\x18\xc5\x5f\xa2\xd8\x74\ +\xab\xda\xc1\x3a\xd6\x55\xc4\xcd\x41\x10\xff\xd0\xad\x45\xa1\xe2\ +\x24\xae\x8e\xea\xe0\x20\xc5\x4d\xb0\xe8\xac\xb8\xbb\xa8\xb8\xd9\ +\xc1\x41\x67\x37\x05\xc7\x42\xc1\x0e\xd6\x52\x41\xcd\x35\x7f\x9a\ +\xb6\x97\x78\x5f\x22\xe1\x42\x1d\x0a\x7d\xb9\x7c\x97\xc0\xbd\xdf\ +\x3d\xbe\x5c\x14\xcf\xf3\x30\x88\x86\xa9\xe4\xb2\xd9\xef\x56\xcb\ +\x49\xec\xec\xed\x43\x96\xa2\x52\x55\xa1\xaa\x0a\x14\x05\x50\x10\ +\xdc\xa7\x27\x45\x68\x5a\xec\xe7\xae\x54\x1a\xf5\x01\x96\x69\x25\ +\x26\x52\x13\x58\x58\x5c\x82\x27\x03\x80\xc0\x28\x0a\x41\xc4\xf0\ +\xe7\xdb\x9b\x2b\x54\x2a\x95\x44\x98\xc0\x75\x5d\x68\x31\x0d\xda\ +\xc8\x10\x2e\x1f\x5e\xa3\x29\xfc\x42\x23\x48\xb1\x95\x99\x01\xe7\ +\xdc\xf7\x84\x00\x2e\x5e\xba\xdd\xae\xa0\x03\x9b\x2b\xd3\xb4\x3e\ +\x4c\x42\x3d\x72\xbd\xbf\x59\x3c\x98\x4e\x87\xd6\xfa\x9e\x48\x02\ +\xa2\x36\xed\x36\x99\x43\x79\x01\x81\x06\x5c\x02\x04\x90\xde\x04\ +\x2e\xe7\x3e\xd5\x10\x80\xeb\xfb\x27\xc8\x0a\xbf\x12\xa5\x10\x57\ +\x3e\x33\x47\x6b\xc9\xd3\x9b\x80\x19\x36\x32\xf3\xb3\xb2\x1b\x9e\ +\x64\x26\x56\xd3\x74\xfe\x49\xe0\x72\x70\x41\x3d\xdc\xdd\x46\x9f\ +\x22\x8f\xd4\x44\x1e\x34\xb1\x7f\x05\x9e\x68\x0f\x3a\x1d\x90\x8e\ +\x8a\xc7\x88\xc7\xe3\x61\x7c\x3a\x03\x24\x8a\xbd\x91\x5f\xf7\xe7\ +\xa9\x74\x3a\xda\x83\x8e\xd8\xdd\x69\xb7\x41\x2a\x97\xcb\xb8\x38\ +\x3b\x87\x65\x5b\x38\x28\x14\x20\x2b\x35\x39\x89\xda\x47\x8d\x3e\ +\x21\x79\x24\x80\xd8\xdd\x71\x1c\x90\x18\x63\x30\x4d\x13\x86\x61\ +\x40\xd7\x75\xc8\xf2\x84\xd1\x15\xd1\x93\xc9\x24\xde\xaa\xd5\x48\ +\x13\xbf\x18\xd3\xc7\xe8\x34\x32\x9d\xc1\xb6\x6d\x4a\xd4\x03\x20\ +\x30\x6d\x66\x5b\x16\xb8\x9c\x40\xe1\x7c\x99\x35\x9b\x8f\xba\xce\ +\xc6\x1b\x9f\x0d\xe4\xd6\x56\x41\xaa\xd7\xeb\x90\xf5\x5e\xab\x51\ +\x0e\x3c\xbf\xbc\x40\x1d\x52\x7f\x20\x34\xf0\xef\xfc\x0b\xfb\xd2\ +\x1e\xf6\x17\x50\x4f\x5c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\x13\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xe4\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x42\x88\xdb\x42\x88\xdb\x42\x87\xdb\x41\x87\xdb\x21\x64\xb2\x23\ +\x6b\xbf\x23\x6c\xc1\x29\x71\xc4\x31\x66\xa6\x31\x77\xca\x3a\x7e\ +\xcf\x41\x87\xdb\x43\x85\xd5\x48\x7c\xbe\x4b\x8c\xda\x54\x93\xe0\ +\x55\x84\xc1\x68\x90\xc4\x6e\x95\xc8\x72\xa5\xe4\x78\xa8\xe6\x79\ +\xa8\xe4\x7e\x96\xb3\x7e\x97\xb4\x85\x9a\xb3\x8b\xb6\xec\x94\xa5\ +\xb7\x95\xb7\xe1\x98\xbc\xeb\xa0\xc5\xf2\xa1\xc2\xed\xa4\xc5\xec\ +\xa5\xc6\xec\xa6\xc6\xec\xa9\xc7\xee\xad\xca\xed\xaf\xcb\xed\xaf\ +\xcb\xef\xb1\xcc\xf0\xbc\xd3\xf1\xbf\xd6\xf4\xc0\xd8\xf1\xe3\xe4\ +\xe5\xe6\xe7\xe8\xe7\xe8\xe8\xe9\xea\xeb\xeb\xec\xec\xec\xed\xed\ +\xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\ +\xf1\xf1\xf1\xf2\xf2\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf5\ +\xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\ +\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\ +\xfe\xfe\xff\xff\xff\x08\x2e\x0f\x60\x00\x00\x00\x09\x74\x52\x4e\ +\x53\x00\x1f\x3c\x3e\x3f\xfa\xfc\xfd\xfe\x0a\x2f\x02\x16\x00\x00\ +\x00\x8c\x49\x44\x41\x54\x18\x19\x05\xc1\x41\x4a\x03\x51\x14\x04\ +\xc0\xea\xfe\x2f\x82\x89\x88\x20\xb8\xf4\x3c\x1e\xd9\x03\x09\x82\ +\x3b\x03\x6e\x74\x32\x63\x55\x48\x09\x1c\xf6\xc3\xd0\x37\x00\xef\ +\x37\x73\xba\xdc\x7c\xa4\x4d\x92\x67\x4c\x5e\xbf\xb5\xed\x6a\xe2\ +\xbc\x8c\xdf\x5d\x3b\x6b\xad\xf0\xf4\xf0\x39\xd9\x76\x9d\x99\x95\ +\xb0\xdf\x4c\x42\xe7\xd4\x26\x60\x24\x66\xb5\x49\x22\xe4\x62\x0f\ +\x80\xa3\x26\x8f\xdb\xcb\x0e\xe8\xd7\x5c\xa7\xfb\xf6\xf7\x0b\xb8\ +\xdb\xda\x49\xd6\x6c\x80\x59\xc9\xf4\xb4\xf7\x0c\xd0\x53\xa7\xd3\ +\x1f\x00\xf7\xed\xe4\x0a\x00\x92\x24\x02\x70\x1c\xc7\x3f\xb4\x2c\ +\x21\xd5\x80\x04\x87\x89\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\xf9\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x76\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x4d\x4f\x53\x41\x14\x86\xdf\x73\xe6\xf6\ +\xce\xdc\xb6\x6a\x7b\x6b\x4b\x43\xc2\x87\x0b\x74\xa5\x86\xb8\xd1\ +\x20\x84\x18\x56\x6c\x70\x83\x11\x13\x51\xc3\xce\x04\x71\x61\x20\ +\xc4\x1f\xd0\x05\x41\x13\x16\x86\x0d\x3b\x03\x28\xc6\x88\x0b\x16\ +\x86\xb8\x13\xf0\x17\x18\x97\x20\x41\x04\x9a\x36\xb4\xbd\xb7\x17\ +\xed\x8c\x1b\xb8\x14\x5c\x3a\xc9\x9b\xcc\xc7\x99\x67\xde\x39\x67\ +\x86\x8c\x31\xf8\x9f\x66\x9d\x9e\x68\x6b\x6b\x93\xd1\x64\x72\xc8\ +\xe2\xc8\x40\x3a\x93\x69\x20\x32\xe7\x8a\x85\xc2\x37\x80\xe7\xb5\ +\x2d\x16\xbe\x2e\x2f\xe7\xeb\xe3\xa9\xde\x41\xfb\xf5\x8e\xbe\x94\ +\x9b\x98\xee\xee\xec\xcc\x5e\x68\x6d\x45\xb1\x50\x00\x88\xe0\xba\ +\x2e\x7e\x6c\x6e\x62\x75\x6d\x2d\x5f\xa9\x94\xfb\x3e\x2d\x2d\x7d\ +\xf9\x07\x70\xa3\xab\xab\xa3\xa9\xa9\xf9\xf3\xad\xee\x6e\x3b\x62\ +\x59\xd8\xdb\xdd\xc1\xd8\xe8\x28\x00\x60\x62\x72\x12\x0d\xd9\x2c\ +\xb4\xd6\x58\x59\x5d\x39\xd8\xde\xfd\x75\xe7\xe3\xc2\xfb\x45\x00\ +\x60\x00\xe8\xe9\xe9\x49\x65\xd2\x99\xc5\x6b\xed\xed\xb6\xe7\x55\ +\xb0\x5f\xda\x47\xd9\xf3\x42\x67\x9e\xe7\xa1\x5c\xda\x87\xef\x79\ +\xb8\x7a\xf9\x8a\x9d\x4e\xa5\xa7\x7b\x9f\xf4\xca\x30\x07\x2c\x65\ +\x7f\x4b\x4b\x73\xca\xaf\xfa\x08\x02\x80\x98\xe1\xfb\xc7\x00\xdf\ +\xf7\x50\xae\x54\x40\xc4\x60\x26\x34\x35\x36\x66\xf5\xc6\xc1\x10\ +\x80\x57\x16\x00\x44\x63\xb1\x01\x21\x18\x3b\xdb\x3f\xc1\xcc\x20\ +\x16\xf0\xeb\x1c\x14\x8b\x45\x68\x6d\xc0\x0c\x80\x18\xf1\x33\x31\ +\xc4\xe2\xf1\x7b\x21\x20\x22\xf8\xe2\xc6\xfa\x3a\xde\xbd\x79\x0b\ +\xad\x35\x6a\xb5\x1a\xb4\xd6\x21\xe0\xe5\xe4\x8b\xb0\x6f\x60\x30\ +\xf2\x74\x04\xb1\x78\xcc\x0d\xaf\xa0\x1c\x59\x08\xfc\x20\x4b\x44\ +\x10\x42\x40\x08\x71\xa2\xb4\x8e\xe3\x9c\xac\xbd\x25\xa0\xa4\x4c\ +\x86\x00\x69\xcb\xbc\x23\x15\x06\x1f\x3d\x00\x13\x81\x98\x10\x54\ +\x03\xcc\xbe\x9e\x05\x00\x0c\x3e\xbc\x8f\x58\x3c\x0e\x26\x02\x33\ +\xc3\x4d\xb9\xb0\x2c\xeb\xfb\x31\x40\xc9\x39\xc1\x7c\x33\x1a\x75\ +\xc0\xcc\x10\xcc\x28\x97\x2b\xe1\x89\x89\x44\x02\xc9\x64\x02\xcc\ +\x7c\x28\x82\x20\x9a\x0f\xcb\x28\x34\xcd\x28\x69\x6f\x29\x25\xa1\ +\x94\x84\x54\x12\xb6\x1d\x09\x01\xb6\x1d\xc1\xd1\x9a\x6d\x47\x60\ +\x59\xd6\x9e\x31\xd6\x42\x08\x98\x9a\x9a\x0a\x1c\x5b\x3e\x76\xa4\ +\x0c\x94\x94\x50\xd2\x3e\x01\x88\x58\x16\x98\xf9\x68\x18\x68\xd0\ +\xed\xf1\xf1\xf1\x3c\x70\xea\x29\xe7\x26\x72\x1d\x0c\xf3\x81\x88\ +\xce\x3b\x2a\x8a\x6a\x50\x85\x92\x0a\xd1\xa8\x83\x52\xb9\x84\x20\ +\x08\xb6\x40\xe6\xf1\xd8\xb3\xe7\x8b\x47\x7b\xe8\xf4\x6f\xcc\xe5\ +\x72\x29\x12\xba\x1f\x44\x77\x99\xe8\x12\x40\x05\x03\x9d\x27\x6d\ +\xe6\x1c\xe7\xec\xcc\xf0\xf0\x70\x50\x1f\x1f\x02\x88\xc8\x06\xa0\ +\xea\x24\x0f\x93\xcc\x00\x6a\x00\x7e\x03\x38\x00\x50\x3d\x94\x6f\ +\x8c\xf9\xf3\x17\xb1\x57\xd8\xfd\x23\x30\x24\x2d\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x70\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\ +\x01\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xed\x49\x44\ +\x41\x54\x78\xda\xb5\x95\x3d\x48\x5b\x51\x18\x86\xdf\x9b\x7b\xf3\ +\xe7\x4f\x89\x15\x21\xd1\x41\x6b\x25\x85\x06\xd3\xa9\x43\x70\xa8\ +\x89\x50\x3b\x77\xeb\xda\xc5\xcd\xcd\xc5\xad\x14\x04\xe9\xe6\xe8\ +\x22\x88\xd0\xc1\xdd\x59\x1c\x2b\x1d\x1a\x74\x68\x35\x6d\x21\xd4\ +\x04\xff\x62\x34\xb9\x31\x3f\xe6\xf4\x7b\xaf\xde\x78\xbd\xe2\x1f\ +\xb4\x2f\x7c\x5c\x38\xf9\xce\x73\xbe\xf3\x7e\xe7\x9c\x68\x4a\x29\ +\xb8\xa5\x69\xda\x10\x80\x38\xee\xa7\xb4\x30\xb6\xe1\x16\xc1\xee\ +\x10\xbd\x55\xf7\xd4\x45\x2e\xdc\xe1\xc1\xff\xd1\xcd\xe0\x46\xa3\ +\xf1\x6f\xc1\xcb\xcb\xcb\xfa\xc8\xc8\xc8\xf3\x6a\xb5\x76\x27\x9c\ +\xbf\x33\x97\x73\xe0\x92\x01\x97\x6a\xb5\xda\xbb\x54\x2a\xf5\xb1\ +\x54\x2a\xe3\xec\xac\x09\xbf\xdf\x0b\x5d\x37\x24\x3c\x6c\x2a\xfd\ +\xe3\xb8\x44\x03\xd5\x6a\x1d\xcc\x95\x39\xbf\x01\x2c\xdd\x0a\x36\ +\x0c\x23\xb8\xb3\xb3\x83\x93\x93\x12\x2b\x92\x85\xfc\xf0\x7a\xbd\ +\x32\xae\xdb\x60\x19\x3f\x43\xbd\x5e\x17\x70\x15\xcc\x8d\xc5\x62\ +\xc1\x6b\x9c\xd9\xd9\xd9\x27\x00\x7e\x42\xd4\xde\xde\x6e\xc5\xfe\ +\xfe\x3e\x8e\x8e\x8a\x02\xad\x23\x10\xa8\x09\x98\x15\xeb\x8e\x8a\ +\x09\x6e\xe0\xf4\xb4\xca\x5c\x16\x30\xbf\xb8\xb8\x38\x7f\x7c\x7c\ +\x8c\x72\xb9\x4c\xd4\x20\x2b\x1e\x93\x10\x40\x00\x9d\x9d\x9d\x28\ +\x16\x8b\xd8\xdd\xdd\x45\xa1\x70\xc4\x8a\xc4\x0a\x3f\x7c\x3e\xcb\ +\x0e\x07\x98\x3b\x39\xaf\x98\xb9\x9c\xd3\xdb\xdb\x6b\x2f\x2a\x0b\ +\x9e\xa6\x08\x4e\x79\x3c\x9e\x56\xb5\xa5\x52\x09\xa1\x50\x08\x33\ +\x33\x1f\x98\x78\xe5\xac\x53\x84\x33\x6c\x49\x2e\xed\x43\x47\x47\ +\x07\x2b\xa7\x45\xec\xd3\x98\x91\x1a\x7b\x15\x1f\x7a\xfa\x0c\xb6\ +\xf6\xf6\xf6\xd0\xdf\xdf\x8f\x87\x28\x1a\x8d\xa2\xa7\xa7\x07\xb6\ +\xb6\x33\xdf\xe3\x46\xb0\xad\x4d\xb6\xea\x83\x2d\x6e\x4b\xfc\xc2\ +\x43\x34\x35\x35\x85\xbe\xbe\x3e\xd8\x12\x26\x9b\xed\x73\x82\xe9\ +\x91\xf8\x5b\x80\x2d\x36\x2d\x1c\x0e\x3b\xad\xa0\xaf\xdc\xb2\x73\ +\xce\x15\x06\x99\xda\xd6\xd6\xf6\x46\x3e\x9f\x8b\x35\x9b\x4d\x50\ +\xf2\xa5\x47\xce\x49\x6c\x06\x9c\x62\xa3\xb9\xa0\x2d\x42\xd9\x27\ +\x8a\xdf\x70\x38\xb2\x69\x68\x9a\xce\x73\x08\x5b\x84\x54\x2a\x15\ +\x38\x75\xc3\x0b\x78\xb9\xf5\x60\xd0\x5a\x6c\x6d\x6d\x0d\x89\x44\ +\x42\xee\x80\x09\x23\x9b\xfd\x23\x7e\x5c\x26\xcd\xcd\xcd\x61\x75\ +\x75\x15\xa6\x69\xba\x4e\xc4\x75\x28\xbf\x84\x26\x93\x49\x4c\x4e\ +\x4e\xb2\x28\x81\x9e\x20\x9b\xcd\x43\x5b\x58\xf8\xbc\x11\x8f\x47\ +\x59\x32\x2d\xb0\xfc\x1c\x1f\x7f\x23\xc7\xed\x13\xb7\xc8\x5b\x67\ +\x5f\x10\x06\x61\x12\x5c\x90\xa1\x30\x31\xf1\x1e\x2b\x2b\x2b\xc8\ +\xe7\xf3\x2d\x9f\xd3\xe9\x1f\x9b\xc6\xe1\x61\xc1\x1a\xa4\x78\xe0\ +\x23\x91\x08\x1f\x16\x74\x77\x3f\x96\xcb\x61\x35\x96\xe7\x94\xc1\ +\xf7\xc2\xf6\xb2\xd5\x8f\xd1\xd1\xa4\xb5\x58\x2e\x97\xb3\x2e\x13\ +\x45\xa6\xfb\x1f\x44\x2a\x9d\x51\x03\x03\x83\x6a\x78\xf8\x85\x76\ +\x0e\xf6\x5e\x40\x75\x42\x25\x68\x03\x43\x09\x58\x61\x7d\xfd\x8b\ +\x4a\xa7\xbf\x69\xd3\xd3\xd3\xda\xad\x8f\xd0\xc1\xc1\x01\x08\x0d\ +\x85\x1e\x09\xf4\x3a\xd8\x6d\x45\x57\x57\x97\xc6\x39\x77\xfe\x35\ +\x89\x5e\x67\x32\xbf\x8a\xf2\x08\x29\xd3\xac\x28\xf1\x5d\xc9\x91\ +\x53\x37\x49\x9a\x55\x04\x30\xee\xe6\xd0\x0a\x56\xa1\x03\xa0\x41\ +\x41\x89\x41\x89\x97\x12\x5e\x8e\xb9\x82\x06\x37\xd8\x0e\xf6\xda\ +\xf1\xfd\x2a\x91\x91\x30\x25\x2a\xcc\xf9\x0b\x3e\xfb\xf9\xce\xd4\ +\xa5\xbf\x61\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x9e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ +\x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x0b\x09\x1f\x15\x7e\x48\x3d\xcd\x00\x00\x04\x2b\x49\x44\ +\x41\x54\x78\xda\xb5\x93\x5d\x4c\x5b\x65\x18\xc7\xdf\xf7\x7c\xf5\ +\xe3\x94\x7e\xad\x85\x0d\x28\xa3\x02\xb3\xb2\x02\x1b\x0c\xda\x8c\ +\xb9\x21\x13\x63\x36\x08\xec\x46\x32\x75\x33\x4e\x81\x0b\xb9\x10\ +\x63\xc2\x85\x77\x93\x99\x68\x8c\x09\xd3\x1b\xa3\xc9\xb6\x84\x2c\ +\x31\x71\x6c\x04\x96\xb0\xb1\x91\x09\x32\x47\x99\x1f\xc0\x64\xa3\ +\x80\xb4\x14\x68\xd7\x42\x4b\xdb\x73\x7a\xe8\xe9\x39\xe7\xf5\x5c\ +\x70\x61\x9c\xd6\x69\xf0\x97\xfc\xf3\xe6\xbd\xf9\xbd\xcf\x9b\xe7\ +\x79\xc0\xff\x05\x04\x7f\xa2\xbb\xbb\x5b\x6f\xb7\x97\x36\xd0\xb4\ +\xfa\x20\x41\x92\x66\x41\x10\x22\x1c\xc7\x4d\xcc\xb9\xe7\xfa\x5a\ +\x5b\xdf\x7e\xfc\xaf\xc5\x34\x4d\xc3\x8b\x97\x2e\xb5\x1a\x8d\x3b\ +\xba\x46\x26\x3c\xc6\x29\x77\x08\x84\x99\x24\xd2\x28\x09\x68\xcd\ +\xce\x80\x35\x95\x79\x2c\x45\x62\x9f\x9c\x7a\xfd\xb5\x8f\xa2\xd1\ +\xa8\xf8\xb4\x62\x78\xe1\xc2\xc5\x4f\x05\xa8\x79\xf7\xab\x6b\x6e\ +\x84\x65\x98\xc4\xa3\x75\xa5\x80\x01\x98\x68\x54\x11\x60\xec\xfb\ +\x47\x28\xec\x5b\x25\x5f\x2a\xd7\xe0\xf6\x02\xdd\xb7\x6f\x9c\x3e\ +\xfd\x6a\x2a\x95\x4a\x2b\xc7\x81\x4c\x57\xd7\xb9\x93\x18\xa5\xfb\ +\xf8\x8b\xab\x4b\xa2\x75\xbf\x7d\xe3\x50\xbd\x83\xdd\x5b\x62\x41\ +\x92\x41\x17\xdf\x93\x67\x92\x0c\xf9\xd9\x51\x42\xa9\x62\xee\x8c\ +\x07\x70\x1d\xc5\xef\x6b\xaa\xaf\xe5\x6f\x0c\x0e\x8e\xfe\x93\x58\ +\xd1\xd8\xd8\x74\xa5\xef\x1e\xa3\x51\xef\x2e\x58\xa9\x78\x71\x7f\ +\xc0\x9c\xa5\x49\xfd\x34\x32\x66\x9e\x74\xfd\x6c\x1c\xfd\x6e\x5c\ +\x5d\xfe\x82\x73\x4e\xad\xd7\x86\x08\xa5\x32\x31\x3a\xe6\x55\x57\ +\x15\xa9\x0e\xae\xad\x85\xbe\x5e\x59\x59\xe1\xfe\x4e\x8c\x9d\x39\ +\xf3\x56\x15\x2f\x91\x79\x73\x21\x29\xa2\xb5\x17\x4d\xfa\x10\xf6\ +\x70\xec\xee\x7d\xce\x1b\x58\x93\x98\x38\x07\x44\x41\x04\xeb\x38\ +\xee\x7d\x98\x82\x33\xc9\x5d\x59\xd3\x49\xad\x61\x61\x31\x28\x65\ +\x1c\x3e\x72\xf8\x38\x48\x03\x46\x51\xa4\x7d\x83\x85\xb8\x72\x67\ +\xe6\x4a\x4c\xa9\xf0\x87\x15\x0a\x2f\x2c\x2c\x18\xad\x79\xb3\xf9\ +\x9b\x18\x03\x40\x5c\x96\xc7\x00\xe6\xe6\x68\xe5\x6a\x84\x24\x83\ +\x9a\xfc\x1c\xdf\x7a\x02\x4f\x2a\x28\xca\x9e\x4e\x4c\x00\x00\x69\ +\x00\x71\x44\x65\x68\xe2\xb8\x8a\x4a\x12\xb4\x22\x41\x65\xe6\xae\ +\xf9\x25\x0c\xf9\x23\x4a\x90\x0a\x86\xc0\x26\x02\x41\x42\x49\x10\ +\x24\x2d\xeb\xf4\x1a\x06\xe3\x49\x41\x46\x99\xb6\x62\x79\x74\x3c\ +\x46\x2d\x21\x89\x3c\x4f\x41\x0c\x20\x82\xc4\x04\x35\x01\x53\x34\ +\x09\x93\x49\x2a\x17\x70\x09\x01\xd0\x04\x96\xa2\x70\x4c\x80\x14\ +\x2e\x4a\x82\x88\x65\xe9\x49\x05\xcb\xb2\xbe\xb4\xe2\xde\xde\xde\ +\x31\x0a\xb0\xec\x33\x1a\x6c\xa7\xc8\xa5\x28\x24\x21\x48\x40\x28\ +\x19\x48\x0c\x49\x8c\x1f\x20\x24\x02\x0d\x09\xe4\x37\x01\x90\x78\ +\x81\x50\xc4\x62\xb9\x05\x99\x38\x36\xee\x72\x0d\xa5\x15\x27\x93\ +\x9b\x8f\xe7\x17\xe6\x7b\xea\x4b\x15\x39\x9c\x7b\x79\x37\x17\xe5\ +\x68\x84\x90\xf2\x83\x86\xf7\xbe\x14\xd6\x1f\x01\x24\x70\xe0\x5c\ +\xdd\xa9\xcf\xc5\x94\xa8\x4a\x2e\x87\xcd\x0d\x85\x54\xe9\xd2\xe2\ +\xec\xcd\x09\x97\xeb\xd7\xb4\x0b\xb2\xb5\x75\x99\x67\xcf\x7e\x38\ +\x68\xcc\xaf\x28\xbc\xba\x46\x0f\x23\x9b\xe5\x97\xbc\xec\x8c\xa8\ +\x5e\x81\x73\x9b\x02\x22\x82\x71\x5e\x1b\x76\xfb\xad\xc7\xa8\x78\ +\x63\x11\xbd\x61\x32\xe8\xf4\xab\xc3\xc3\xb7\x8f\x77\x76\x76\x4e\ +\xa6\x5d\x10\x79\x8b\xd8\x99\x99\x99\x1b\xf6\xa2\x9c\x03\x27\xca\ +\x72\xeb\x2c\x00\x58\x61\x42\x34\xb1\x11\x6e\x97\x9e\xdb\x2c\xb6\ +\xa7\xe2\x47\x5e\xd6\x32\xb5\xfe\x07\x23\xbc\x6b\xfc\x9e\xca\x56\ +\xfc\x9c\xb6\xbc\xbc\xbc\xb9\xa4\xa4\xe4\xfe\xc0\xc0\xc0\xe2\x5f\ +\x8b\xb7\x88\xc5\x62\x1b\xb7\x6e\x0d\xf5\x72\x6c\xdc\xad\xc7\x12\ +\x96\x6c\x31\x5c\xbc\x07\x46\x6c\x74\x68\xde\x14\x76\xff\xb8\x3c\ +\x74\xbd\xef\xb3\xf3\xe7\xbb\xdf\xd1\xe9\x74\x99\xcb\x3e\xdf\x3e\ +\x93\xd9\xac\x72\x38\x9c\xaf\x38\x9d\x8e\xdf\x3c\x1e\xcf\x03\xbf\ +\xdf\x0f\x9e\x06\x42\x8e\x41\x4e\xae\x9c\x1d\x72\x28\xb0\x85\xc5\ +\x62\xc1\x9b\x9a\x9a\xba\xdb\xdb\xdb\x51\xcf\xe5\xcb\x68\xc9\xe7\ +\x13\xfa\xfb\xfb\xdf\xaf\xa9\xa9\x81\x4f\x56\xfc\x24\x92\x9c\x4d\ +\x39\x31\x39\x9c\x1c\xf1\x0f\x3f\x43\x0c\xc3\xdc\x34\x1a\x8d\x78\ +\x82\x65\x9f\x0f\x87\xc3\x58\x75\xf5\xa1\xba\xb2\xb2\x52\x7d\x20\ +\x10\xb8\xbd\xb0\xb0\x20\xa5\x11\xa7\x61\x4b\x2e\x1f\x77\xe4\xa6\ +\x33\x14\x45\x1d\xf5\x7a\xbc\x58\xc5\x81\x0a\x67\x55\x65\xa5\x8d\ +\xe7\xf9\xeb\x53\x53\x53\x02\x0e\xfe\x23\xa1\x50\x08\x4c\x4f\x4f\ +\xff\x60\xb5\x5a\x97\xcd\x66\xf3\x31\xf7\xec\x2c\xfe\xac\xcd\xb6\ +\x57\x96\x57\xab\xd5\xea\x7e\x08\xb6\x81\xb6\xb6\xb6\x13\xf2\x94\ +\xf4\x24\x12\x09\xb5\xc3\xe1\x00\x92\x24\xdd\x85\x60\x9b\x90\x9b\ +\x59\xeb\x74\x3a\xaf\x04\x83\x41\x8d\x7c\x3d\x09\xb6\x93\x8e\x8e\ +\x8e\xf2\x96\x96\x96\x66\x20\xf3\x3b\xa7\x36\xda\x5d\x07\xdf\x7a\ +\xe1\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x41\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\x42\x28\ +\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x01\x16\x02\x14\ +\x1d\x79\x4f\xdb\xf8\x00\x00\x01\xa7\x50\x4c\x54\x45\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x02\x02\x02\x09\x09\x09\x09\x09\x09\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x02\x02\x02\x00\x00\x00\x01\x01\x01\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x02\x02\x02\x00\x00\x00\x30\x30\ +\x30\x00\x00\x00\x00\x00\x00\x3d\x3d\x3d\x00\x00\x00\x9a\x9a\x9a\ +\x10\x10\x10\x9b\x9b\x9b\x5d\x5e\x5e\x35\x36\x36\x80\x80\x81\xb0\ +\xae\xaf\xc5\xc5\xc6\xe9\xea\xea\xf1\xf1\xf1\x50\x52\x53\x51\x52\ +\x53\xfc\xfd\xff\xfd\xff\xff\xfe\xfe\xfe\x18\x18\x1a\x1c\x47\x9c\ +\x1d\x1e\x1f\x1f\x49\x9e\x2f\x56\xa4\x40\x70\xc3\x43\x71\xc4\x51\ +\x7d\xc9\x57\x8d\xe5\x59\x90\xe7\x67\x9d\xee\x74\x76\x78\x88\x9e\ +\xc8\x8a\x8b\x8d\x8a\x9f\xc9\x8d\x8d\x8e\x8d\x8d\x91\x8e\x8e\x8f\ +\x8e\xa3\xca\x90\x91\x92\x94\x95\x96\x96\x95\x97\x97\x99\x9b\x99\ +\x9a\x9b\x99\x9b\x9b\x9c\x9e\xa0\xaa\xab\xae\xcf\xd0\xd3\xd3\xd5\ +\xd9\xd6\xd5\xd2\xda\xdd\xdf\xdb\xde\xe1\xdd\xe1\xe3\xe0\xe2\xe5\ +\xe0\xe3\xe5\xe1\xe2\xe6\xe1\xe3\xe6\xe2\xe3\xe8\xe3\xe5\xe7\xe6\ +\xe8\xea\xe8\xe9\xea\xe8\xea\xec\xe8\xea\xed\xe8\xeb\xed\xe9\xea\ +\xee\xe9\xeb\xec\xea\xe8\xe4\xea\xeb\xee\xea\xed\xf3\xeb\xed\xee\ +\xeb\xee\xf5\xec\xed\xef\xec\xee\xef\xec\xef\xf5\xed\xee\xef\xed\ +\xef\xf2\xef\xf0\xf1\xef\xf1\xf1\xf0\xf2\xf2\xf1\xf1\xf1\xf1\xf2\ +\xf3\xf2\xf2\xf2\xf2\xf4\xf6\xf3\xf5\xf6\xf3\xf5\xf9\xf4\xf3\xf0\ +\xf4\xf4\xf5\xf4\xf5\xf6\xf4\xf5\xf7\xf4\xf6\xf7\xf5\xf3\xf1\xf5\ +\xf4\xf2\xf5\xf5\xf5\xf5\xf6\xf7\xf5\xf7\xf9\xf6\xf3\xf0\xf6\xf6\ +\xf7\xf6\xf8\xfa\xf7\xf7\xf8\xf8\xf9\xfa\xf8\xfa\xfc\xf9\xf7\xf4\ +\xf9\xfa\xfb\xf9\xfb\xfc\xfa\xfb\xfc\xfb\xfb\xfc\xfb\xfc\xfd\xfb\ +\xfd\xfd\xfb\xfd\xff\xfc\xfc\xfd\xfc\xfd\xff\xfd\xfd\xfe\xfd\xfe\ +\xff\xff\xff\xff\xd0\x32\x98\xa6\x00\x00\x00\x2f\x74\x52\x4e\x53\ +\x00\x01\x02\x03\x06\x08\x0d\x0f\x13\x1e\x24\x30\x33\x38\x3a\x3b\ +\x3c\x3f\x40\x46\x49\x4a\x4d\x53\x5b\x5d\x61\x63\x69\x6f\x6f\x73\ +\x91\x93\x96\x9f\xaa\xb8\xce\xde\xf2\xf7\xfe\xfe\xfe\xfe\xfe\xc1\ +\x92\xd1\x86\x00\x00\x00\x01\x62\x4b\x47\x44\x8c\x6c\x0b\xd2\x43\ +\x00\x00\x00\xd8\x49\x44\x41\x54\x18\xd3\x63\x60\x00\x02\x36\x05\ +\x25\x76\x06\x24\xc0\x22\xdd\xd3\x23\xc7\x8a\xe0\x33\x09\x68\xe8\ +\xe9\x69\x8a\x30\xc3\x05\xb8\xd4\x5a\x6a\x6b\x9b\xd5\xb9\x19\xa1\ +\x7c\x0e\xe5\xd6\x6c\x20\xa8\x53\xe5\x84\xf0\xf9\x14\xeb\x75\x13\ +\x80\x40\xa7\x47\x45\x84\x5f\x40\x80\x87\x41\xd4\x5e\x4b\xbf\x32\ +\x2c\xac\xd2\x50\xdb\xca\xa7\xa0\x34\x9f\x97\x41\x28\x2a\xc8\x35\ +\x3a\x20\x20\xc2\x23\x38\xd6\xc2\xd2\x3c\x5e\x90\x41\x38\x37\xcd\ +\x3b\xd0\xdf\xd7\xcf\x2b\xb2\xca\xc4\xcc\x34\x51\x98\x41\xac\xdd\ +\xc6\xc5\xc9\x33\x24\x34\x26\xae\xc1\xc0\xd8\x28\x45\x8c\x41\xbc\ +\xa6\xb8\xb8\x24\x3b\x35\x39\x29\xb9\xcc\xd6\xd1\xba\x46\x9c\x41\ +\xa2\x29\x3d\x3d\xa3\x22\x2f\xaf\xba\xa8\x28\x33\x27\xab\x4d\x82\ +\x41\xaa\x33\x3b\xbb\xd1\xc1\xcd\xdd\xce\xcd\x39\x3c\x3b\xbb\x5b\ +\x8a\x41\xa6\xa7\xb0\xb0\xbc\x03\x04\xba\xaa\x0b\x0b\x7b\x64\x18\ +\x64\x7b\x50\x80\x2c\x83\xa4\x3c\x0a\x90\x04\x00\x22\x75\x40\x01\ +\xd9\xb4\x9c\x69\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x04\xa7\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x09\x84\x00\x00\ +\x09\x84\x01\xaa\xe2\x63\x79\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x0a\x00\x1d\x28\xa3\x7b\x4f\xb4\x00\x00\x04\x34\x49\x44\ +\x41\x54\x78\xda\xb5\x95\x5f\x4c\x5b\x55\x1c\xc7\xcf\xfd\xdf\x7f\ +\x30\xda\x15\x18\xa4\xa3\xfc\x13\xba\x6e\x02\x2d\x6d\xa1\x64\x74\ +\x9b\xc9\x70\x66\x01\x4d\x14\x87\x66\xea\x83\xf3\xc5\xc4\x48\x8c\ +\x26\x64\x66\x4b\x7c\x24\xf1\x41\x33\x1f\x8c\x09\x26\x53\x1f\x37\ +\x14\x90\x6c\x1a\x23\xdb\x94\x09\x99\x16\x86\xb4\x1d\xdd\xca\x9f\ +\x42\xa1\xb7\xff\xe8\xa5\xed\xbd\xbd\xbd\xff\x3c\x0f\x7b\x30\x21\ +\x14\xcd\xf4\x93\x7c\x5f\x4e\xee\xf7\x9b\x5f\xce\x3d\xdf\x73\xc0\ +\xff\x05\x02\xfe\x86\x5e\xaf\x47\x46\x46\xbe\x6c\x2d\xaf\xa8\xe8\ +\xa3\x48\xaa\x09\x41\x11\xbc\xc0\x17\xd6\xd2\x4c\xfa\x87\x57\x5f\ +\x19\xb8\xc5\x30\x8c\xfc\xaf\x83\x87\x87\x87\xab\xdb\xdb\x1d\x9f\ +\xc7\x92\xd9\xb3\x53\xf7\xc2\x48\x98\xce\xca\x82\x20\x81\x83\xa5\ +\x24\xe2\x3a\x56\x89\xb4\x5a\xaa\xbd\xe1\x70\xf8\xad\x0b\x17\xde\ +\x9c\xfb\xc7\xc1\x97\x2e\x5f\xae\xb3\xdb\xec\xb7\x26\x7f\x5d\x37\ +\x79\x57\x04\xb9\xae\xd9\x2c\x5b\xdb\x6a\x15\x5e\x52\x24\x26\xce\ +\x00\x9f\x77\x19\x55\x09\x09\xe2\x8d\xb3\x0d\x5c\x32\xbe\xd5\x37\ +\x38\xf8\xee\x14\xd8\x07\x0c\x8a\x78\xed\xfc\xf9\x1b\x37\x67\x13\ +\x4d\x7f\xd2\x04\xe7\x38\xed\x4a\x79\x7a\xda\xc4\x85\xc0\xaa\x2a\ +\x93\xcb\x22\xcf\xf4\x38\x18\xd2\x68\xd8\x4e\x32\x92\xf0\xcb\xcc\ +\xaa\xae\xe3\xa8\xa1\xcf\xa0\xd7\x7f\x7d\xff\xfe\x7c\x16\x14\x01\ +\xbd\x78\xf1\xc3\x81\x38\x23\xdb\xee\x06\x85\x9c\xe3\x4c\xc7\x72\ +\x95\xb5\x66\xa3\x44\xaf\x49\xac\xae\x27\xc8\xe5\x95\x28\x85\xeb\ +\x54\x31\xdd\xe1\xf2\xb0\xab\xc7\xb1\xac\x18\xaa\x22\xb3\x01\xf6\ +\x80\xc5\xd2\xfc\x01\xd8\x07\x94\x24\x89\xfe\xb9\x50\x5e\xd4\x35\ +\x98\xfd\x79\x43\x59\x90\x46\x71\xff\x8a\x84\x2e\xed\x70\x14\xd8\ +\xc9\x08\xc0\x2f\xa0\xa1\x0c\x49\xac\x85\x14\xfc\x81\xfa\x48\xe3\ +\xdc\xfc\x86\xcc\x90\x24\xf9\x22\xf4\x92\xa0\x08\xb8\xac\x28\x4f\ +\x6d\x73\xb8\xa8\x3e\x66\x5a\xf3\xcf\x2e\x9a\x53\x91\x7c\x27\xaa\ +\x3b\x04\x14\xb1\x04\x88\x6c\x0a\x5c\x1d\xfc\xf8\x05\x89\x4b\x03\ +\x43\x63\xcd\x3d\xe3\xf1\x67\x7f\xdf\x01\x54\x02\x23\x89\x06\xe8\ +\x2d\x85\x4a\xec\x39\x31\x50\x14\x8a\xa0\x28\x81\x28\xd5\xb0\x7c\ +\x41\x16\x99\x1c\x82\xf0\xb8\x01\x91\x55\xd0\x47\xa9\x81\xa0\x20\ +\x48\x2e\x97\x47\xf2\x5c\x5e\xc4\x34\x04\x8f\xeb\xd4\xf0\x0b\x0c\ +\x60\x18\x46\x15\x9d\x58\x92\x24\x5a\xaf\xc3\x0c\x19\x59\x41\xcc\ +\x7d\xc7\xa7\x1c\x46\xcd\x77\x15\x14\x56\x18\xff\xc2\x7b\x05\xe8\ +\x08\xf0\xfa\x47\xef\xbf\x9d\x14\x64\x3c\xc1\x8a\x9a\xd4\x4a\xb2\ +\xc2\xa0\xa5\x28\x54\x61\x32\xd0\x97\x29\xba\xc7\xe9\x74\xfa\xa7\ +\x16\x33\xa5\x61\x37\x62\x46\x91\x17\x31\xd8\x00\x09\x43\x91\x42\ +\xc4\x17\x04\xe1\xc5\x20\x20\x31\x94\x07\x08\x10\x25\x59\x01\x62\ +\x2e\x4f\x39\x6b\xa8\xaa\x58\x2c\x76\x17\x7a\x73\x45\x83\x27\x26\ +\x26\x46\x4a\x09\x86\x71\x68\xf9\x36\x2e\x9a\xd6\xb3\xbc\x48\xf2\ +\x8a\x02\x9c\xae\xca\x6f\x3a\x3d\x96\xaf\x24\x44\x91\xf3\xa2\x82\ +\x73\x69\x4e\x5b\x46\xc7\x5a\xdb\x4d\xf2\x81\x99\x99\xdf\x3e\x81\ +\x5e\xa9\xe8\x39\x66\x20\x1a\x8d\x96\xee\xf5\x1c\x1d\x40\xb3\xc8\ +\xc1\xe5\x8c\x92\x14\xb4\x2a\xbe\xd6\xd9\xf8\xd0\x64\x6f\x5e\xa5\ +\x59\x49\x47\xd3\x19\xa3\x69\x8b\x3e\xf1\x52\x0d\xdf\x65\xae\x32\ +\xe0\xf0\xb8\xe5\x58\x96\xfd\x31\x18\x0c\xca\xc5\x0a\x02\xfc\x7e\ +\xdf\x22\xac\xe0\xe6\x69\x7b\xed\xf3\x5d\xe5\xba\x76\xbd\xa0\x1c\ +\x92\x32\x85\x4a\xc0\xb0\xf5\xb5\x7c\xde\xe9\x41\x99\xe7\x5a\x09\ +\xba\xee\xe6\xf8\x75\x91\x65\x73\xe4\x89\x93\xa7\x9c\xd6\x23\x96\ +\xa7\x65\x59\x9e\x5c\x58\x58\x28\xec\x19\x0c\x51\x7c\x3e\xdf\xfc\ +\x9d\x3b\xb7\xbf\x35\x96\x52\xb8\x5e\x4c\x35\xd5\xc9\xdb\x96\xc3\ +\x3c\x5d\xaf\xac\x2f\x12\x8f\xe6\x67\x7e\xfe\xec\xca\xa7\xef\x44\ +\x22\x1b\x57\x0b\x3c\xdf\x1b\x8d\x6e\xe9\x3a\x3a\xdd\x16\xbb\xad\ +\xed\x64\x59\x59\xd9\xf7\xd3\xd3\xd3\xb9\x3d\x2e\xa1\x5d\x6b\x6a\ +\xa8\x12\x28\x14\x2a\x03\xc5\x42\xc9\x00\xe2\x74\x3a\xad\x2d\x2d\ +\x2d\x37\xe0\x0d\x58\xf3\xf2\xb9\x73\x40\x4d\x51\x0f\xc6\xc6\xc6\ +\x7a\x87\x86\x86\x1e\xed\x9e\x78\x37\xc2\xe3\xbf\x9e\x85\x2a\x40\ +\x29\xe0\x31\x9b\x9b\x9b\x71\xd8\xbc\xf1\x72\xa3\xf1\x4c\x70\x69\ +\xc9\x58\x6d\x32\x19\xbb\xdc\xee\x7e\x8b\xc5\x72\x7b\x72\x72\x72\ +\xb3\x48\xf0\xfe\x44\x22\x91\x6d\x41\x10\xae\xd7\xd7\xd7\x9f\x0a\ +\xaf\xad\x55\xa9\xd4\xea\x92\x4e\xb7\x7b\xc0\xe5\x72\x2d\x8c\x8e\ +\x8e\x3e\x2c\x12\xbc\x3f\xd1\x68\x34\x0b\x3b\x70\xcd\x6a\xb5\xba\ +\xb7\x53\x29\x33\xc7\x71\x14\xdc\xa6\xfe\xee\xee\xee\x48\x36\x9b\ +\x9d\xc7\xc0\x13\x10\x8f\xc7\x39\x9a\xa6\xaf\xb5\x40\x60\x13\x9b\ +\x60\x71\x30\x9b\xcd\xd6\x0b\x5f\xa2\x00\x06\x9e\x90\x44\x22\x51\ +\x08\x85\x42\xa3\x76\xbb\xbd\x46\xab\xd5\xb6\x7a\xbd\xde\x3f\x02\ +\x81\xc0\x25\xf0\x5f\x61\x32\x99\xb0\xf7\x20\x1e\x8f\xc7\x08\x20\ +\x7f\x01\x05\xd6\xf6\x6e\x13\x0f\xa3\xe1\x00\x00\x00\x00\x49\x45\ +\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x74\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xf1\x49\x44\ +\x41\x54\x38\x8d\x95\x93\x3f\x6f\xd3\x50\x14\xc5\x7f\xef\xc5\x55\ +\x90\x53\x67\xcc\x84\xba\x84\xa1\x09\xa8\x4b\x93\x2c\xcd\x58\xa9\ +\x4b\x16\xda\xaf\x90\xa5\x9f\x03\x24\xfe\x08\x09\xb6\x6e\xf9\x06\ +\x0c\xc0\x02\x6b\x55\x84\xb2\xb5\x69\x15\xb5\x12\x55\x28\x63\x14\ +\xd1\x01\x63\x3b\xf6\xf3\xbb\x2c\xb5\xb1\x69\x19\xb8\xd2\x1d\x9e\ +\xf4\xce\xb9\xe7\x9c\xab\xab\x44\x04\x00\xa5\xd4\x03\x60\x83\xff\ +\xab\x89\x53\x78\x6c\xcc\xe7\xf3\xb7\xbf\x82\x80\xf1\x78\x4c\xdd\ +\xf3\xd8\xec\x74\x58\x59\x59\x41\x29\x85\x52\x2a\x1b\x04\x80\xd6\ +\x1a\x6f\x75\x75\x4f\x17\xe9\xac\xc0\xe7\xa3\x23\x3a\x9b\x9b\xac\ +\xad\xad\x31\x9d\x4e\xc9\x14\x66\x60\x05\x79\x03\x14\x15\x50\xa9\ +\x68\xa2\x28\xa2\xd1\x68\x50\xad\x56\x09\xc3\x90\xef\x57\x57\x34\ +\x9b\xcd\x3f\x2a\x32\x92\x4c\xd1\x70\x38\xfc\xe8\x38\xce\x8e\xeb\ +\xba\xb8\xae\x4b\xbd\x5e\xa7\xdb\xed\xb2\xb5\xb5\x85\x31\x86\xd3\ +\xb3\x33\x5a\xeb\xeb\x38\x8e\x93\x83\x01\x94\xd6\xdc\xab\x56\xf7\ +\x1c\x60\xe7\xe0\xe0\xa0\x94\x8c\xb5\x16\x6b\x2d\x95\x4a\x85\x87\ +\xed\x36\x69\x9a\xa2\xb5\xbe\x33\x8b\x92\x85\xa2\x57\x6e\x3e\x2b\ +\xa5\xd0\x5a\xa3\xb5\x2e\x01\xb3\x72\x80\x4f\xfb\xfb\xfb\x25\x0b\ +\xbd\x5e\x8f\x7e\xbf\x8f\x15\xe1\xfc\xfc\x9c\x56\xab\x75\x6b\x72\ +\x5e\x22\x92\x25\xbd\xfb\xd3\xf7\x65\x34\x1a\x89\xef\xfb\x62\x8c\ +\x91\xe3\xe3\x63\x99\x4e\xa7\x92\x24\x89\x18\x63\xc4\x18\x23\x69\ +\x9a\xe6\x0d\xec\x96\x2c\x28\xc0\x75\x5d\x16\x8b\x05\x71\x1c\x13\ +\x04\x01\xed\x76\xfb\x4e\xef\x45\x0b\x45\xf3\x6c\x6f\x6f\x73\x78\ +\x78\x88\xe7\x79\xf4\xfb\xfd\x5b\xe1\x65\x01\x27\x89\x11\xc0\x96\ +\x15\x28\x45\xad\x56\x63\x30\x18\xe4\xa0\x22\x38\x8a\x22\x66\xb3\ +\x19\x35\x6f\x95\x77\xef\x3f\x8c\x81\x93\x52\x06\x41\x10\x48\x14\ +\x45\x12\xc7\x71\xee\x3b\x4d\x53\xb1\xd6\x4a\x92\x24\x32\x99\x4c\ +\x24\x8e\x97\xf2\xf4\xe5\x8b\x0b\xe0\x11\xa0\xca\x04\x61\xf8\x4f\ +\x02\xdf\xf7\xe5\xeb\xe5\xa5\x3c\x79\xfe\xec\x02\xe8\x02\x5a\x44\ +\x4a\x5b\x78\x1c\x84\xa1\x5d\x2e\x97\x92\x24\x49\x89\x40\x44\xe4\ +\xc7\xf5\xb5\x7d\xf5\xfa\xcd\x97\x9b\xc9\x3a\xc3\xa9\xc2\x39\xdf\ +\xbf\x61\xfe\x6b\xd1\x79\x59\xe0\x04\xf8\x26\x85\x0b\xfb\x0d\xc2\ +\xe3\x2f\xb3\xa8\x69\x9b\xe3\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x03\x2f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xda\x03\x0c\ +\x0f\x1f\x23\x16\x66\x68\x50\x00\x00\x02\xaf\x49\x44\x41\x54\x38\ +\xcb\x95\x92\x4d\x6b\x24\x55\x14\x86\x9f\x5b\x1f\x5d\xd5\x5d\xdd\ +\xda\x5d\x55\x19\xa3\x61\x20\xb8\x10\x61\x42\x76\xc9\x2a\x38\x2e\ +\x8c\x3b\x37\xc1\xcd\xfc\x07\x0d\x08\x6e\x02\xd9\x38\x5b\x05\x21\ +\xce\x1f\x88\xff\x20\x30\xd9\x89\x04\x09\x04\x87\x2c\x24\x04\xc4\ +\x91\x86\x18\x8c\x4c\xba\x53\x49\x77\xd7\x47\xdf\xaa\xba\x55\xd7\ +\x45\xe8\xc4\x01\x5d\xf8\xc2\xe1\x2c\x0e\xe7\x39\x87\x97\x57\xec\ +\xef\xef\x3f\x09\x82\xe0\xbb\x76\xbb\x1d\x00\x18\x86\x81\x10\x02\ +\x21\x04\x33\x69\xad\xef\xba\xd6\x9a\xba\xae\x91\x52\x46\x83\xc1\ +\xe0\x73\x71\x74\x74\x74\xb5\xb7\xb7\x17\x44\x51\x44\xb3\xd9\xc4\ +\x71\x1c\x1a\x8d\x06\xb6\x6d\x63\x9a\x26\x00\x75\x5d\xa3\x94\xa2\ +\x2c\x4b\xf2\x3c\x47\x4a\x49\xaf\xd7\x63\x63\x63\x23\xb2\x3c\xcf\ +\x0b\xfa\xfd\x3e\x4f\x1f\x7d\x4a\x10\x86\x77\x57\x51\x35\x14\x0a\ +\x8a\x02\x2a\x05\xe5\xac\x2a\xa2\xf8\x9a\xa7\xa3\x9f\xf1\x3c\x2f\ +\xb0\x66\x17\xe6\x12\x4d\xd0\x2d\xc0\x2b\xc0\x4b\x61\x98\x40\x95\ +\x40\x91\xc1\x34\x87\x44\x42\x52\xc2\xa4\xc2\x18\x8c\xa9\x1e\x56\ +\x00\x58\x00\x55\x55\x21\x8c\x31\xb8\x0a\x3e\x19\x42\x3b\x85\xb3\ +\x09\xfc\x70\x09\x64\xa0\x25\xe4\x39\x50\x83\xaa\x10\xba\xa0\xaa\ +\xe6\x6f\x01\x33\x53\x8a\xf0\x15\x97\x4d\x8d\xb8\x98\x32\xf7\xf0\ +\x1d\x44\x47\x82\xbe\x02\x62\xb0\x26\x24\xcd\x84\xeb\x3c\x01\xa1\ +\x90\x6e\x03\xad\xdf\xba\x07\xb8\xae\xcb\xf7\xc3\x33\xbc\xc4\x21\ +\xf9\x65\x82\xa1\x5f\xa2\x8b\x29\xe9\x28\xe6\xe2\x26\x25\x8a\x53\ +\xd2\x24\xc6\x50\x05\x0d\x03\x92\x7c\x82\xbf\x24\xee\x01\x37\x37\ +\x37\xfc\x78\xf1\x2b\xf3\x0f\x7c\x16\x17\x4c\xe6\x7b\x9a\xdf\xce\ +\x46\xfc\xf1\x67\xca\x24\x9e\x92\x26\x19\x85\xaa\x10\xc2\xc0\xb2\ +\x4d\xf2\x42\xe0\x66\x19\x5a\xeb\x5b\x0f\xca\xb2\xe4\xf7\xb3\x6b\ +\x5e\x8d\xc6\xbc\xbb\x50\x51\xeb\x8a\x69\x59\xf3\xf2\xd2\x20\x95\ +\x0e\xa6\xd5\xa5\x50\x05\x9d\x4e\x07\xcb\xb2\x18\x4e\x86\x84\x65\ +\x79\x6f\xa2\x52\x8a\xce\xc2\x7b\xb8\x6f\x08\x22\xab\x46\xd6\x39\ +\x63\x53\xe1\xce\x09\x2a\xd9\xc4\x69\xb5\xa8\xeb\x1a\xd3\x34\x31\ +\x4d\x93\x6e\x6b\x0e\xa5\xd4\x2d\x20\x4d\xd3\x68\x79\x79\x39\xe8\ +\xf7\xfb\xb4\x5a\x2d\xae\x06\x4d\x12\xd7\xc5\x7f\xd3\xe5\x83\x15\ +\x07\xc3\x30\x28\x8a\xe2\x2e\x40\x52\x4a\xb2\x4c\xb3\xb8\xb8\x48\ +\x96\x65\x91\xd8\xdd\xdd\x7d\xb2\xb4\xb4\xf4\xac\xd7\xeb\xf9\xfc\ +\x0f\xc5\x71\x7c\x7d\x7a\x7a\xfa\x99\xf8\x8f\xb9\xb1\xb3\xb3\xf3\ +\x4d\x18\x86\x5f\x28\xa5\x38\x3f\x3f\xff\x76\x7b\x7b\xfb\xcb\xdb\ +\x20\xbc\xae\xd7\x00\x5b\x5b\x5b\xef\xaf\xaf\xaf\x7f\x6d\x18\xc6\ +\x63\xd7\x75\x3b\xe3\xf1\x18\x29\x25\x8e\xe3\x60\xdb\x76\x62\x9a\ +\xe6\x4f\x27\x27\x27\x5f\x6d\x6e\x6e\xbe\x98\xed\x58\xff\x04\x84\ +\x61\xf8\x61\xa7\xd3\xf9\xd8\xf7\xfd\x86\xd6\x9a\x6e\xb7\x8b\x10\ +\x02\xdb\xb6\xd1\x5a\xb7\xa3\x28\xfa\x48\x29\xf5\x1c\x78\xf1\xaf\ +\x1f\x00\xc2\xf7\xfd\x07\x6b\x6b\x6b\x8f\x57\x56\x56\xde\x5e\x5d\ +\x5d\xed\x3a\x8e\x23\x8e\x8f\x8f\x47\x87\x87\x87\x7f\x1d\x1c\x1c\ +\x1c\x8c\x46\xa3\x21\xa0\x67\x0b\x7f\x03\xda\x9e\x5f\xc6\x86\x2c\ +\xf1\x02\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xd0\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\ +\x1b\xaf\x01\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x09\x1c\x09\x10\x1f\x1c\x2b\x28\x4a\x00\x00\x02\x5d\x49\x44\ +\x41\x54\x78\xda\xc5\x52\x4b\x6b\x13\x51\x14\xfe\x32\x77\xf2\x6a\ +\x3a\x4d\x22\x48\x93\xd8\xa6\x69\xb4\x26\xad\xb6\x41\x5d\x88\x20\ +\xd8\x2e\x7c\x81\x15\x1f\x08\xe2\x3f\x10\xac\xbf\xc3\xfe\x01\xe9\ +\x5a\xb0\x5d\xb9\x74\xa3\x2e\x14\x41\x62\x10\x0a\x42\x63\x93\x91\ +\xd0\xe6\xd1\x36\xe9\x98\x64\xda\xbc\x27\xcd\xf5\xdc\xc1\x94\x6c\ +\x5c\x8a\x1f\x7c\xdc\x99\x7b\xee\xf9\xce\x77\xce\xbd\xf8\xef\xb0\ +\xf4\x3f\x22\x91\x08\x5b\x5d\x7d\x7d\x75\x74\x74\x74\xc1\x6e\x77\ +\x9c\x95\x24\xe9\x24\xc0\x87\x7a\xbd\x1e\x8e\x8e\x8e\x9a\x86\x61\ +\xec\xb7\xdb\xad\x74\xa5\x52\xf9\xb8\xb4\xf4\xfc\x73\x3c\xfe\xb5\ +\x8b\x3e\x96\x97\x5f\xf8\x93\x3f\x36\xe2\xa5\x52\x91\xb7\x5a\x2d\ +\xde\xe9\x74\xcc\xb5\xd1\x68\xf0\x5a\xad\xc6\x0f\x0e\x74\x5e\xad\ +\x96\xb9\xa6\x95\xf8\xee\x6e\x81\xab\x6a\xea\xdb\xca\xca\xcb\x31\ +\x10\x24\x10\x26\x27\x43\x4f\x95\x61\xe5\xb2\xd5\x6a\x1d\x30\xc7\ +\xc1\xb9\x60\xef\xd8\xac\xc5\x62\x81\x2c\xcb\x50\x14\xe5\xd2\xf8\ +\xf8\xf8\xb3\xbe\x80\xd5\xed\xf1\xdc\x10\x41\x01\xb2\x2c\x12\x4d\ +\x76\xbb\x5d\x61\xdf\xdc\x1b\x80\x29\xe4\xf1\xb8\xaf\x8b\x5c\x69\ +\x7e\xfe\x5a\xf0\x84\xd7\x7b\x71\x20\xfe\x27\x89\x83\xe6\x00\xc2\ +\xb1\xe0\x00\x48\xc0\x13\x5b\x5c\xbc\x73\x5a\xbe\x77\xff\xee\x03\ +\x2b\x41\x1c\x38\x3c\xac\x41\xd7\x0f\xcc\xca\xcd\x66\x13\xe5\x72\ +\x19\x36\x9b\x0d\x5e\xaf\x07\x8c\x31\xaa\x2c\x51\x0b\x0c\x76\xbb\ +\x8d\xfe\x65\x76\xeb\xf6\xcd\x87\x72\xa9\xf8\xeb\x82\xa6\x95\x21\ +\x48\x3a\xa6\xbd\xf5\xf5\x75\x6c\xa6\x36\x11\xf0\x07\x30\x11\x9a\ +\x80\xd1\x31\x10\x08\x04\x30\x32\x32\x22\xda\x31\x0b\xf4\x68\x36\ +\xfb\x25\x6d\x56\xde\xde\xde\x66\xf5\x7a\xdd\x4c\xa6\xe9\xa3\x50\ +\x28\x40\xfd\xa9\x62\x7a\x7a\x1a\xb9\xec\x0e\xde\xbf\xfb\x00\xbf\ +\xdf\x07\xba\x3e\xcc\xcc\xcc\xf4\xdb\x32\x45\xf2\xf9\x02\x98\xcf\ +\xe7\x7b\x44\xc1\x73\x99\x4c\x06\x82\xe9\x74\x1a\x7a\x55\x47\xa5\ +\xda\xc6\xe3\x27\x4b\x08\x06\xc7\xb0\xb6\xf6\x0a\x21\x72\x42\xce\ +\x44\xef\x94\x98\x37\x85\x52\xa9\xd4\x86\xec\x74\x3a\xf9\xdc\xdc\ +\x1c\xfa\x57\xa8\xaa\x2a\x12\x89\x04\xb4\x4a\x03\x6f\x3f\x7d\x41\ +\xad\xae\xc3\xe9\x52\x4c\xeb\xb1\x58\xcc\x5c\xdd\x6e\x37\xe8\x9d\ +\xa0\xdd\x6e\x83\x85\xc3\xe1\x00\x6d\x4c\x91\x80\xc2\x08\x22\xa8\ +\xeb\x3a\x72\xb9\x2d\xe4\xab\x74\xa8\x75\x88\x85\x2b\xb3\x18\x56\ +\x86\xe1\x70\x38\x84\x80\x48\x36\x34\x4d\xdb\xca\x66\xb3\x6f\x2c\ +\x00\x04\x5d\x64\x29\x18\x8d\x46\xcf\xd3\x53\x9e\x72\xb9\x5c\xa7\ +\xf6\x8a\x7b\x3e\x99\xc9\x67\x86\x5c\x43\x4d\x12\xcd\x30\x89\x55\ +\x48\x78\x87\x12\xd5\x64\x32\xf9\x9d\xaa\xe7\x00\xd4\x2d\xf8\x3b\ +\x24\xa2\x8d\xd8\x23\x1a\x44\x8e\x7f\x81\xdf\xa3\x70\x33\x35\x18\ +\x40\x99\x79\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xe1\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x02\xa8\x49\x44\x41\x54\x78\xda\x85\x93\x5f\x48\x53\x51\ +\x1c\xc7\x17\x24\xc5\x0a\x91\x84\xfe\x58\xad\xa7\x0c\x8a\x90\x10\ +\xa3\x29\x65\x3e\x14\xd9\x93\x06\x9a\x86\x11\x65\xcd\x69\x43\x2b\ +\x85\x5a\x56\x0f\xb9\x34\x34\xd7\x28\x87\xf9\x50\x09\x81\x81\xe0\ +\x83\x92\xe6\x60\x56\x8e\x4c\x1f\x54\x6a\x9a\xe1\xb4\x6c\xa1\xb9\ +\x7f\x6e\xbb\xbb\x77\x77\x6e\xbb\xbb\xdf\xce\xee\xe6\xd4\x30\x3a\ +\xf0\xe1\xf0\x83\xf3\xfd\xfc\x7e\x70\xce\x11\x01\x10\x20\x2b\x81\ +\x20\x8d\x92\xfe\x7f\x84\x73\x09\x2b\x05\x52\x9b\xcd\x06\x8b\xd5\ +\x0a\x9b\xdd\x0e\xc7\xc2\x02\x16\x9c\x4e\x38\x5d\x2e\xb8\xdc\x6e\ +\xb8\x29\x4a\x80\xf2\x78\x04\x68\x86\x81\x20\x59\x21\x48\xb7\x58\ +\xff\x29\x88\x85\x3d\x51\x98\x88\x20\x7d\x95\xc0\xee\x70\x80\x10\ +\x0e\xc7\x82\x14\x45\x09\x01\x9a\xa6\x85\x10\xe3\xf5\xc2\x4b\x60\ +\x59\x36\x22\x50\xe6\xee\x4c\x5c\x12\x84\x3b\x8e\x0e\xbc\x45\x9b\ +\xe6\x2a\xea\xe4\xa9\xb8\x9d\x2f\x41\x83\x42\x0a\xdd\xeb\x7a\x98\ +\xa7\xbe\x80\xf5\xf9\xe0\x8b\xb2\xe8\xf7\x47\x04\x0f\xe5\x69\x46\ +\x65\x7e\x52\xd5\xfe\xdd\xe2\x9c\x47\x15\x47\xd1\xf9\x38\x03\xe6\ +\xa1\x22\x50\x33\xa5\x08\xb8\xaa\xe0\xf9\x29\x87\x79\xb0\x10\xba\ +\xe6\x2c\xbc\xac\x2d\x82\x8f\xf5\x22\x10\x08\x20\x18\x0c\x46\x04\ +\xcd\x95\x07\x38\x7d\xcb\x71\xbe\xe6\x62\x72\xc8\xa4\x2f\x84\xef\ +\x77\x19\xa1\x64\x0d\x4a\xf1\xfd\x43\x01\xd4\x8a\x43\xa0\x5c\xf6\ +\x65\x81\xf6\xda\x3e\x8e\x36\xc9\xe1\xfe\x56\x0a\x7a\xba\x44\x80\ +\x1a\x2b\x86\xa3\x3f\x17\xf3\x5d\x87\x61\x7f\x7f\x12\x9e\xf1\x4b\ +\x60\x4c\x57\x04\x66\x3f\x9e\x83\xba\xfc\xd8\xb2\xe0\x69\x79\x32\ +\xe7\x32\x16\xc3\x39\x4e\xf8\x5a\x8c\xd9\xbe\x0c\x4c\x3c\x4f\x40\ +\xcf\xbd\x78\xbc\x52\xc4\xe3\x4d\x95\x18\x93\xea\x4d\xb0\xea\x4e\ +\xc1\x3d\x72\x41\x40\xaf\xcd\x80\xa1\xeb\x59\x44\xf0\x44\xb1\x97\ +\xb3\x0d\x17\xc1\xfe\xf9\x3c\x7e\xf5\x4b\x31\xd1\x11\x8f\xc6\x92\ +\x1d\xe8\x6d\xab\xc7\x94\x71\x00\x1d\x2d\xb7\xa0\x29\x4b\xc1\xe8\ +\x03\x31\xac\xbd\xd9\x64\xb2\x7c\x58\xdf\xe5\xe1\x4e\xc1\xae\xc8\ +\x3b\x50\xcb\x24\xdc\x9c\x21\x1b\xf3\x23\x67\x30\x37\x92\x85\x99\ +\x21\x09\xda\x55\x89\x30\x0e\x76\x0b\x63\x72\x1c\x07\xda\xed\x40\ +\x7b\xcd\x09\x98\x5b\x0f\x12\x49\x0e\x2c\x3d\xa7\xd1\x5c\x91\x12\ +\x16\xa4\x89\xee\x9e\xdd\x6e\x69\xbc\xbc\x95\xd7\x94\x25\xf1\x4d\ +\xd7\xf7\x40\x5b\x29\x41\xd3\x8d\x6d\xd0\x2a\x33\xe1\x71\xd9\x11\ +\x0a\x85\xc0\xf3\x3c\xfa\xda\x1b\x31\xdc\x9a\x87\x81\x2e\x0d\x8c\ +\x43\xdd\x68\x50\xdd\x1c\x23\x82\x38\x82\x68\x9d\x4c\x96\x1a\xb7\ +\x79\xe3\xfa\x4c\xca\xed\x04\x43\x53\xb1\x6b\x22\xdd\x63\x82\x4f\ +\x3d\x2f\x60\xe8\xd4\x0a\x75\x43\x5d\xf5\x34\xc9\x89\x01\x88\x56\ +\xfd\x05\x96\xf5\x82\xf5\x7a\xe0\xf7\xfb\x57\x09\x16\x7d\x0c\xc6\ +\x0c\x6d\x18\x1d\xd4\xa3\x56\x55\x6d\x22\x67\xb7\x08\xb9\xbf\x04\ +\x47\x58\x96\xe1\x17\x7d\x34\x99\xc0\x1f\x46\x10\x04\xc9\xee\xb4\ +\xfc\x80\x65\x52\xc7\xab\xee\x2b\x87\x97\x3a\xaf\x25\xd8\x10\x96\ +\xac\xfd\xa5\x85\x3a\x8d\x10\x17\x0b\x47\xf9\x03\x3a\xca\x9b\x53\ +\x60\x80\xcc\x4d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x02\x43\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xc0\x49\x44\ +\x41\x54\x78\xda\x8d\x8f\xbd\x6b\x53\x51\x18\x87\x9f\x73\x72\xc1\ +\xb6\x41\x90\x82\x52\x2a\xc5\x39\xdd\x8c\x93\x75\xab\x83\x9b\xbb\ +\x53\xbb\xe4\x3f\x68\x07\x11\x8a\x25\xd4\x82\x43\x87\xa2\x20\x0e\ +\x15\x07\xe9\x6a\x16\xc5\x3d\xb5\x88\xa1\x1f\x42\xd3\x4d\x25\xe8\ +\xcd\x87\x83\x12\x92\x9b\x8f\x9b\x9c\xd7\xe6\xe0\xe1\x70\x89\x5f\ +\x3f\xf8\x71\xce\x19\x9e\xe7\x7d\x8f\x02\x2e\x00\xf3\xfc\x2b\xab\ +\xdc\xce\x5c\xcb\x2c\x65\x2f\x67\xa7\x0f\xab\x87\xf5\x72\xbb\xfc\ +\x40\x96\xe5\x49\x30\x82\x1b\x8d\xc6\x9e\x11\x41\x6b\x6d\xab\x94\ +\x4a\xf4\xd9\xc7\x1d\x76\x7f\xec\xb2\x78\x69\x91\xcd\xf9\x4d\xee\ +\x95\xef\xce\xa5\xbf\xa5\x1f\xab\x1d\x25\x1a\xc0\x08\x7f\xcd\xf6\ +\xe9\x36\xd5\x4e\x95\xfd\x4f\x05\x00\x3e\x57\x0b\x98\x41\x4d\x63\ +\x58\x0d\x00\x52\x29\xeb\xb1\xd3\xdc\x06\xda\x6f\x40\xed\x7b\x8d\ +\xe8\x4e\x84\xcb\x8b\x9b\x65\x00\xd4\x23\x35\x1b\x00\x16\x42\x04\ +\xf5\xeb\x0b\x16\x76\xe7\x59\x67\xae\xcc\x10\x3c\x57\x5c\x05\xde\ +\x2f\x09\xb9\x82\xe2\x40\x80\x8b\x84\xda\x4d\x76\xb0\x6b\xca\xdf\ +\x59\xc9\xac\x20\xe7\x35\x61\x0a\x9b\x0f\xc0\xb1\xc1\x30\xc5\x43\ +\xbf\x01\x78\x81\xff\x8a\x6d\x6e\x2e\x07\x1a\xb6\xbe\x6e\x91\x7e\ +\x99\x26\x0a\xf8\xc2\x04\x79\xb9\x25\x4f\x15\xb0\xd0\x6c\x36\xf7\ +\xbc\xc0\xd7\x6d\xe7\x4e\x97\x20\x08\x6e\x88\xc8\x5b\x7b\x07\x50\ +\x7e\x03\x57\x0f\x26\xce\x64\xbc\x00\xdc\xba\x6e\xb2\x83\xfe\x4f\ +\x40\x12\x76\x60\x42\x60\x8c\xb1\x6d\xb7\x23\x01\x62\x2f\x18\x03\ +\xc6\xe1\x4a\xa5\x42\x18\x86\x4c\x4c\x4e\xf2\xea\xf5\x9b\x77\xc0\ +\x11\xf8\x2c\x44\x51\x24\xdd\x6e\x57\xfa\xfd\xbe\xc4\x71\x2c\x83\ +\xc1\x40\x86\xc3\xa1\x18\x63\xec\xbb\x58\x2c\xda\xf7\xfd\x8d\x8d\ +\x13\x60\x4a\x44\x70\xc5\x0a\x3a\x9d\x3f\x0a\x5a\xad\x96\x94\x4a\ +\x25\x59\xcb\xe7\x47\xf0\xb4\x87\xbd\xe0\xfa\x99\xc0\xf4\x7a\xbd\ +\x11\x9c\x10\x8c\x52\xaf\x37\xcc\xda\xfa\xfa\xbe\x9f\x9c\xac\x02\ +\xce\x01\x59\x40\xf1\xfb\xc4\xc0\x91\x88\xc4\x30\x9e\x9f\xaf\xc9\ +\x06\x51\x54\x9d\xd3\x94\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\x0f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x8c\x49\x44\ +\x41\x54\x38\x8d\x8d\x92\xbb\x4e\x2b\x41\x0c\x86\x3f\xdb\x2b\x85\ +\x02\xf2\x04\x48\x34\xa7\xa0\xe2\x0d\xd8\x77\x80\xbc\x09\x05\x20\ +\x85\xee\x34\xa7\x3d\x05\x3d\x12\x75\x24\xa0\x41\x88\x9a\x0e\x9a\ +\x40\x09\x81\x2a\x0a\x2b\xa2\x54\x89\x94\xcd\xc5\x14\x7b\xc9\x64\ +\x97\x82\x91\xac\xd1\x78\xc7\x9f\xff\xf9\xbd\x02\xfc\x01\xf6\xf8\ +\xdd\xea\xba\xfb\x6b\x98\x88\x80\xbd\xcf\x24\xe9\xb8\x83\x99\xa2\ +\x22\x88\x2a\x22\x92\x05\x80\x08\xaa\xca\xd6\xe6\x66\x0b\xa8\x01\ +\xc8\xef\x00\x90\x24\x09\xbd\xf7\x77\x34\x4f\x88\x48\x06\xc8\xce\ +\xbb\x22\xb2\x1f\xd4\x7f\x44\x00\x66\x06\xee\xa8\x2a\xdd\x6e\x97\ +\x38\x8e\x11\x35\xcc\x56\x4a\x54\x84\xd1\x68\xf4\x57\x44\xbc\xe8\ +\x78\xd6\x6e\xff\x8b\x8a\x2e\xa2\x8a\xe6\xd2\x1d\x50\xa1\x54\x10\ +\x84\x12\x3c\xab\xd9\x6c\x36\x22\xa0\x2c\xd4\x1c\x62\x66\x98\x59\ +\xe9\x47\xf9\x3d\x07\x15\x0a\x44\x84\x35\x80\x05\x80\x02\xa6\xba\ +\x32\xb6\x0a\x28\x4d\x54\x55\x24\xdf\xab\x61\xa1\x02\xd5\xda\x5c\ +\x33\x0f\xa0\x1c\x1d\x80\xe6\x97\x2d\x00\x49\xd0\x3d\xdc\x4b\x13\ +\x35\xe8\x50\xc8\xad\x16\x57\x01\x2b\x05\xe1\xdb\x02\x05\x95\x09\ +\xd4\xee\xad\xfd\x48\xe1\x2a\x67\xff\x03\xc4\xdd\x49\xd3\x94\x69\ +\x9a\xfa\xf3\xcb\x73\x3f\x02\x1c\x11\x57\x55\x09\x25\x86\x9d\xc2\ +\xe2\x7e\xbf\x4f\xa3\xb1\xc1\xff\xf3\xf3\xfb\xeb\xab\xeb\x4b\x80\ +\x1d\xe0\x00\x38\x04\x0e\xf7\xe3\xf8\x62\x32\x99\xf8\x74\x3a\xf5\ +\x34\x4d\x7d\x3e\x9f\xfb\x62\xb1\xf0\xe5\x72\xe9\xe3\xf1\xd8\x07\ +\x83\x81\x1f\x9d\x9c\x3e\x00\xdb\xee\x0e\xee\xbe\x16\xad\x56\xeb\ +\xa8\x00\xcc\x66\xb3\x35\xc0\xd7\x70\xb8\x3c\x6e\x9f\xdd\x01\xdb\ +\x90\xd5\xd6\x3c\xe8\x74\x3a\xb7\x00\x66\x56\x1b\xfa\x5b\xaf\x37\ +\x7c\x7a\x7c\xbc\x71\xf7\x61\x91\xfb\x06\x81\x94\x9d\xac\xac\xe0\ +\x78\xdb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x2d\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\ +\xa7\x93\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\ +\x0d\xd7\x01\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\ +\xd7\x0c\x1b\x16\x19\x10\x1f\x1b\xdd\x16\x00\x00\x02\xba\x49\x44\ +\x41\x54\x78\xda\x65\xcf\x5b\x68\xd5\x05\x00\xc7\xf1\xcf\xff\x7f\ +\xce\xd9\xce\xce\xae\xe7\x6c\x47\xcb\xe6\x6a\x63\x8b\xda\x1c\x39\ +\x2d\xa4\x07\x83\x12\x82\x2e\xf4\x12\x45\x58\x0f\x16\x12\x4a\xa3\ +\x87\x32\x32\xc9\xb1\x28\xd4\x20\x7c\xeb\xa1\x7c\xac\x48\x09\x04\ +\xe9\xa1\xcb\xc0\x20\x58\x5a\x8b\xf5\x92\x4c\xd2\x1c\x9c\xad\xe9\ +\x6e\xed\x76\xb6\x73\xb6\x73\x0b\x1f\x6d\x9f\x87\xdf\xe3\x17\x7e\ +\x01\x9b\x7d\x44\x43\x82\x7d\x31\x1e\x08\x88\x16\xc9\x14\xb8\xf8\ +\x0e\x13\xfe\xe7\x8e\xc0\x71\x6a\x1b\x18\xa8\x09\xc3\x37\x5a\x77\ +\xef\xae\x4d\xf7\xf4\x08\x63\x31\x8b\xe3\xe3\x32\xc3\xc3\xe5\x6c\ +\x2e\x77\x7e\x9d\xb7\x8f\x91\xd9\x14\x18\x60\x4b\x13\xdf\xb7\x6e\ +\xdf\xde\xd7\xd7\xdf\xaf\xae\xad\xed\x8e\xfa\xc6\xca\x8a\x2b\x67\ +\xce\xb8\x36\x32\x32\xbf\xc6\x33\x47\xf9\x15\x02\x78\x96\xe8\xe3\ +\x5c\x6c\x4b\x26\xf7\x3e\xd4\x7f\x58\xb4\x2e\x2e\x12\x06\x54\x02\ +\x4a\x94\x4b\x14\x4b\x25\x01\xae\x9f\x3d\xeb\xaf\xb1\xb1\xd9\x25\ +\xfa\x8e\xf3\x4f\x08\x8f\xf2\x6a\x92\xbd\xf7\xee\xe9\x93\x0b\xb3\ +\xee\x7a\xe5\x80\x15\x59\x1b\xcb\xd7\x14\x96\xae\x9b\x9f\xbe\x61\ +\xeb\xfe\xfd\xf2\xd5\xd5\x6e\xdf\x4a\x47\x22\xe9\x38\xa7\x10\x84\ +\x88\x24\x38\x9c\x8c\x84\x62\x4d\x79\x85\xe6\xa4\x9a\x6d\xdb\x75\ +\x1d\x3a\x66\xba\xb4\x2e\x33\x37\xae\xe3\xcd\x23\xea\x3b\x3b\xc5\ +\x7b\xbb\x2d\x4d\x4e\x48\xd5\xd7\x4b\xf0\xe2\x7b\x34\x47\x0e\x90\ +\xee\xe0\x93\x74\xbc\x12\xd4\xb7\xcc\xc8\xcf\x8c\xca\xdc\x5a\xd2\ +\xbe\xf7\x69\x5b\x1e\xd9\xa7\x69\xe7\x63\x9a\xbb\xba\x5d\xfd\xe1\ +\x82\xab\x83\x07\x35\x4c\x4f\x29\xce\x2c\xcb\x57\x44\xca\x5c\x0e\ +\xb7\x71\x4f\x35\x41\xf4\xf6\x04\xeb\x5a\x12\x0b\x4a\xbf\x9d\xf4\ +\xdd\xe9\x41\xf1\x86\xa4\x74\x57\x8f\x3f\x7f\xfa\xd1\xe8\xa9\x17\ +\xb4\xb7\xcc\xaa\x6a\xcc\x8a\xd6\x52\x8d\x2a\x5a\xc3\x75\x8a\x55\ +\x08\x4a\x94\x8b\x14\x4b\x2c\x16\x53\x7a\x9f\x7c\x0e\x40\xfb\xce\ +\x87\xc5\x3b\x7a\x55\x1a\xa9\x6a\x26\x52\x43\x0c\x31\x0a\xe1\x39\ +\x26\x42\x56\xd7\x73\xe4\x16\x19\x9f\x4f\xd9\x33\x30\xa4\x75\xc7\ +\x2e\x99\xcb\xe7\x8d\x7e\x75\x54\x6d\x32\xe5\xa9\xd3\x43\x66\x1a\ +\x77\x29\xc4\x29\x14\x08\xb0\xc6\x58\x38\xc9\x5a\x9e\x8b\x1b\x45\ +\xe6\x26\xd9\xfa\xc4\xeb\xb6\x3e\xb8\xcb\xcd\x4b\xe7\xdd\xfa\xfa\ +\x25\xd5\x57\x3f\x76\xed\x9b\x23\x6a\x1a\x53\x76\xbc\x76\xc2\xfc\ +\x3c\x6b\xcb\x94\x99\xfa\x94\xdf\x23\x28\x77\x30\xdd\xc9\xcb\x1b\ +\x79\xe1\xc2\x95\x61\x85\xd5\x29\x93\xe7\xde\x97\x88\x16\x44\xca\ +\xe4\x6e\x5c\x92\x9d\xf8\x5b\xe6\xcb\x13\xb2\x23\x79\x61\x8e\x39\ +\x3e\xfc\x82\x9f\x03\x40\xfc\x33\x06\xdb\x79\x77\x29\xa4\x92\xa4\ +\xe6\x6e\xe2\x29\x62\x75\x04\x01\xb9\x59\xb2\x57\x48\xac\xb2\xc1\ +\xd0\x01\x9e\x5f\x64\x25\x00\x40\xc3\xe7\x1c\xbb\x9f\xb7\x96\x89\ +\xad\x86\x94\xab\x11\x12\x16\x88\x6f\xd0\x84\x65\x2e\x7c\xc0\xa1\ +\x51\xa6\x51\x89\x00\x60\xfd\x5b\x7e\x89\x31\x7c\x1f\xf5\xc9\x8a\ +\x74\x5d\x51\x22\x51\xa0\xae\x64\xb5\xcc\xe5\x3f\x18\x38\xc8\xc9\ +\x9b\xfc\x8b\x0a\x04\x36\x0b\x91\x40\xaa\x9b\x96\x7a\xa2\x23\xcc\ +\x94\x59\x40\x16\x25\x00\xf8\x0f\x80\xa0\xff\x98\xbb\x5a\x5b\x51\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x01\xcc\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x49\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x21\x4f\xc4\x40\x10\x85\xdf\xdb\x16\xe8\ +\xa5\xa8\x25\x4d\x10\x20\xc9\x89\x8a\x2a\x44\x2f\xa9\xa0\x16\x59\ +\x4d\x93\xdb\x04\xc7\x0f\xe0\x97\x90\x9c\x39\x89\xa8\xc0\x61\x70\ +\x88\xaa\x43\xf6\x1c\x0a\x12\x1c\xb5\x04\x52\xb6\x27\x2e\x3d\x7a\ +\xed\x1e\xe1\xc2\x26\x93\x4c\x32\xf3\xbe\x99\x9d\xd9\x65\x51\x14\ +\x27\x24\x05\x0c\x27\xcb\xb2\xcb\x20\x08\xee\x86\xc3\xe1\xbb\x29\ +\x0e\x00\x9c\x4c\x26\x6f\x96\x65\xed\x99\x82\x75\x5d\x0f\x00\x7c\ +\x91\xfc\x36\xc5\xb5\xd6\x95\xed\x79\xde\x6e\x14\x45\x92\xe4\x0f\ +\xb5\xe5\x03\x18\x74\xa0\x2b\x3f\xcf\xf3\x52\x74\x92\xb7\x3a\x24\ +\x61\x37\x4e\x03\xda\x16\x68\x37\xe2\xbf\x02\x48\xae\x5d\xe3\xff\ +\x1d\x6c\x02\x98\x40\xed\xca\x46\x40\xd7\x4c\x80\xb6\xad\x86\x28\ +\x84\x80\x10\xa2\x27\x6e\x43\x9a\xea\x8d\x58\x6b\xbd\xec\x80\xe4\ +\x1a\x40\x08\xb1\x12\x77\x01\xdd\xea\x00\x60\xcf\xe7\xf3\x57\xc7\ +\x71\x7a\x4f\x99\x24\xaa\xaa\x1a\x58\x96\xf5\x49\x52\x9b\x66\x50\ +\x14\xc5\x4b\x8f\xdc\xb6\x34\x4d\xaf\xc7\xe3\xf1\xe1\x6f\x39\xc6\ +\x4f\x04\x00\x4a\xa9\x63\xdf\xf7\x4f\xb5\xd6\x17\x4a\xa9\x9d\x4d\ +\x79\xec\xb6\xa5\x94\xf2\x46\xa3\xd1\x55\x9e\xe7\x1f\x65\x59\x1e\ +\xb8\xae\xfb\x10\x45\xd1\xf9\x6c\x36\x7b\x02\x70\x3b\x9d\x4e\xb5\ +\x71\x35\x00\x18\x86\xe1\x4d\x18\x86\xf7\x71\x1c\x1f\x01\x70\xa5\ +\x94\x8f\x52\xca\x04\xc0\x7e\x92\x24\x67\x71\x1c\x3f\x4b\x29\x03\ +\x2c\xd7\xcf\xba\xae\xb1\x00\x35\xf4\xac\x81\x7c\x6a\x79\x61\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x4f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x05\ +\x15\x38\x05\x8e\x43\x17\x2a\x00\x00\x02\xcf\x49\x44\x41\x54\x78\ +\xda\x8d\x93\x5b\x48\x93\x61\x1c\xc6\x9f\x6f\xf3\xb0\x96\xd3\x29\ +\xd3\xa1\x17\x82\x8e\x9c\xcd\x16\x88\x05\x05\x89\x90\x95\x68\x8a\ +\x61\xe4\xe1\xc6\x43\xa4\x35\xcd\x41\xba\x2e\x9a\xa9\x0d\xb3\xc2\ +\x84\xd0\xe5\x70\xa0\x16\x08\x1e\x52\x03\xbd\x28\x0d\xbb\xf2\x90\ +\x82\x74\x91\x4d\x27\x09\xdb\xac\x5c\xe9\x06\x2d\x21\xdb\xb7\x6f\ +\xbe\x7d\xdf\x24\x29\x2a\xed\x07\x7f\x78\x6f\xfe\xcf\xfb\x3c\xcf\ +\xcb\x4b\x61\x0f\xaa\xaa\xaf\x49\xf3\xf2\xf2\x35\x14\x85\xa3\x4e\ +\xa7\x73\xe3\xc3\xc7\xf7\x7d\x15\xe5\x95\x3d\xb4\x9b\x26\xd8\x8b\ +\xcc\xac\x0c\x89\x79\x69\xc9\xe2\xf5\x7a\x89\xd5\x6a\x21\xb5\x75\ +\x37\x5d\x29\x29\xc9\x0f\x00\x04\xe2\x7f\x50\x55\x5c\x51\xdb\x3f\ +\xad\x92\xef\x9b\xdf\xc8\xe0\xd0\xe0\x3a\x00\x25\x00\x3e\x7e\x81\ +\x87\x5d\xf0\xd0\xb4\xc2\x62\xb1\xc0\x4d\xbb\x71\x30\x3e\xde\x5f\ +\xa1\x50\xac\x02\xf0\x82\xa5\xe1\xb6\x2e\x6c\x2f\x01\x4a\xa9\x3c\ +\x74\x60\x66\x66\x06\x0c\xe3\x45\x64\x64\x64\x88\x4e\x57\x3f\xda\ +\xd0\xa8\xcb\x9a\x7e\x35\xd5\x05\x42\x0d\x03\xf0\xdf\x4d\x20\x20\ +\x26\x56\x96\x40\x08\x81\xb6\xb6\x0e\x76\xbb\x1d\x72\xb9\xfc\x88\ +\x70\xdf\xfe\x11\x71\x88\xb8\x64\x68\xe8\xe9\x3c\x00\xe6\x9f\x02\ +\x25\x25\x85\x0a\x69\x84\x54\xfa\x6c\x6c\x1c\xa1\xa1\x61\x30\x76\ +\x74\x42\x14\x1c\x8c\xa0\xa0\x20\x34\x37\x37\x23\x3a\x3a\xfa\x98\ +\x4a\xa5\x6a\xe7\xff\xb5\xfd\xcc\x8c\xc0\x6a\x8d\xe6\x71\x5c\x9c\ +\x3c\xf6\x8b\xcb\x85\x8d\x8d\xaf\x10\x0a\x02\x41\xbb\xdd\x30\x99\ +\x16\x90\x9e\x9e\x81\xd2\xd2\xd2\xc8\x95\x95\x95\xc4\x3f\x1c\x14\ +\x14\xe4\x07\x68\x34\xd7\x7b\xd6\x3e\xaf\xa5\xae\xaf\xaf\xe3\xc2\ +\xf9\x1c\x86\x0f\x32\x6d\x6c\x37\xde\xea\xed\xed\x43\x7d\x5d\x3d\ +\xac\x56\x2b\xeb\x2a\x14\x62\xb1\x98\xfa\x4d\xa0\xec\x72\x69\x40\ +\x5e\x5e\x6e\xff\xa2\x79\x31\xa7\xcd\x60\xe0\x5e\xc1\xab\xae\x54\ +\x6b\x9b\x9a\xee\x9f\x49\x4c\x4c\x6c\x66\x8b\xf4\x45\x98\x9d\x9d\ +\x05\x9f\xcf\xc7\xd6\xd6\x16\xf1\xdb\x59\x2e\xbb\x24\x48\x4e\x3e\ +\x31\xf0\x6e\x79\x39\xb3\xb5\x55\x8f\x7b\x77\xef\x60\x64\x78\x64\ +\x40\x22\x91\xbc\x56\xab\xd5\x9d\x9b\x9b\x9b\xfe\x6e\x36\x02\x07\ +\x45\x51\xbe\x61\x18\x06\x3e\x8a\x8b\x8b\x82\xa6\xa6\x26\x5e\x3c\ +\x34\xe8\x49\x78\x44\x38\xc9\xcf\xcf\x25\xfd\x4f\x7a\x6d\x00\x62\ +\xb4\x5a\x6d\xa3\xc3\xe1\x20\x34\x4d\x13\x8f\xc7\x43\x38\x0a\x0b\ +\x0b\x7d\xe7\x96\x96\x16\x2f\x4f\x91\xa0\xf0\x53\x95\xab\xfa\x08\ +\x45\x9d\xee\xea\x7c\x04\x99\x2c\x16\xd9\xe7\xb2\x19\xbd\xbe\xed\ +\x06\x00\x6b\x52\x52\x12\x84\x42\xa1\xef\x36\x76\x61\xc7\x01\x07\ +\x61\xf1\x2b\xb9\x58\x74\x9c\x61\x3c\x67\x4d\x6f\x17\x10\x15\x15\ +\x85\xec\xec\x2c\x8c\x8f\xbf\xec\x9b\x9c\x98\x1c\x02\x40\x64\x32\ +\x19\x97\x95\x2d\xb7\x00\x73\x73\x73\x30\x9b\xcd\x10\x89\x44\x60\ +\xff\x07\x38\xfc\x5c\x2e\x97\xd3\xe1\x74\x90\xb4\xb4\x34\xea\x54\ +\xea\x49\x8c\x8e\x3d\x37\x75\x76\x74\x71\xb7\xfb\x02\x0b\x04\x02\ +\x70\x74\x77\x77\x43\xaf\xd7\xa3\xa6\xa6\x06\x6c\x1c\xb0\x7b\xdb\ +\x5d\x70\x8e\xda\x8d\x06\xb5\x52\x79\xb8\x92\xa6\x3d\xcb\x6c\x61\ +\x55\xf3\x6f\xe6\x17\x80\x6d\x6c\x36\xdb\x55\x1e\x8f\xd7\xca\x96\ +\xc8\x59\xfe\x69\x9d\x1b\xce\x99\xed\x07\x39\xf7\x48\x74\xc8\xf9\ +\xb8\x6a\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x03\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x03\x00\x00\x00\xf3\x6a\x9c\x09\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x03\x76\x00\x00\x03\x76\x01\ +\x7d\xd5\x82\xcc\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\x93\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x04\x04\x03\ +\x11\x11\x11\x16\x16\x16\x25\x25\x24\x00\x00\x00\x00\x00\x00\x26\ +\x26\x26\x28\x28\x28\x00\x00\x00\x13\x13\x13\xb9\xb9\xb8\xbc\xbc\ +\xbb\xc2\xc3\xc2\xc4\xc4\xc3\xc5\xc6\xc4\xae\xae\xae\xaf\xaf\xaf\ +\xb0\xb0\xb0\xb1\xb1\xb1\xb2\xb2\xb2\xd2\xd2\xd2\xd3\xd3\xd3\xd7\ +\xd7\xd7\xd8\xd8\xd8\xdd\xde\xde\xe5\xe6\xe6\xe7\xe7\xe7\xe9\xe9\ +\xe9\xef\xef\xef\xf4\xf4\xf4\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf7\xf7\ +\xf7\xf7\xf7\xf7\xf8\xf8\xf8\xf8\xf8\xf8\xf9\xf9\xf9\xf9\xf9\xf9\ +\xfa\xfa\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\xfe\ +\xfe\xff\xff\xff\x57\x14\x14\x76\x00\x00\x00\x13\x74\x52\x4e\x53\ +\x00\x13\x18\x24\x27\x30\x31\x37\x4c\x4d\x65\x65\x83\x93\xf2\xf5\ +\xf9\xfa\xfb\x76\x57\x39\x25\x00\x00\x00\xc3\x49\x44\x41\x54\x78\ +\xda\x5d\x8e\x41\xb2\x02\x21\x0c\x44\x3b\xad\x0b\xe7\x02\xba\xf5\ +\xfe\x57\xb2\xdc\x7c\xdd\xba\xb2\x14\x45\x49\x3e\xd3\x15\x4a\x1d\ +\x58\x84\x3c\x9a\x17\x0c\xb6\xc1\xf7\x7a\x04\x00\xac\xb1\xd9\xbf\ +\x09\x9a\x01\x36\xef\x43\x81\x30\xaa\x9b\xb1\x73\x06\x02\x06\x24\ +\x66\x74\x4a\x62\x8e\xff\x60\x96\x7b\xb6\x66\xab\x69\xf6\x0b\xaf\ +\xca\x76\xe1\xef\x18\xe4\xd2\x2f\x89\x2f\xfd\xc2\x46\xf9\xd9\xab\ +\xc9\x2f\xac\x44\xf7\x73\xf1\x13\x8d\x21\x55\xd5\x8d\x34\xe4\xb7\ +\xe4\x99\x16\x60\xd2\xbc\xe0\x38\x88\x6a\x5c\x28\x9d\x6c\xa4\xdd\ +\x2b\x85\x87\x50\xb4\x95\x16\x1e\xfa\x37\x3e\xce\x76\x09\xf0\xf6\ +\xea\xf8\x79\x04\x68\xa1\xb8\x97\xd8\xc5\xa9\xb4\x8e\xfd\x06\x4c\ +\x82\x30\x6f\x16\xe7\x7b\xcd\x91\xc3\xef\xd5\xf9\x57\x9e\x18\x78\ +\xc8\xe9\xd7\xf2\x52\x2f\xca\x29\x1f\x45\x7d\xab\xfe\x03\x9f\x0f\ +\x4a\x81\xbc\x9d\xe1\x83\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +\x00\x00\x02\xac\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x29\x49\x44\ +\x41\x54\x78\xda\x8d\x91\xbf\x4f\x13\x61\x1c\x87\x9f\xf7\xee\xfd\ +\xd1\x16\x28\xad\x80\x0a\x8b\x89\xc1\x84\x41\x42\xc2\xe0\x64\xa2\ +\xa6\xea\xe0\x22\x8b\x83\xc1\xc4\x18\xff\x01\x17\x9d\x8c\x8b\x31\ +\x2e\x0c\x26\x0e\x2c\x98\xe8\x3f\x60\x5c\x4c\x1c\x30\xda\xd9\x01\ +\x13\x14\xc2\x20\x1a\xa0\x44\x0c\xa5\xa5\x42\xef\xa0\x77\xf7\x7a\ +\xb4\x56\x21\x5c\xa2\xcf\xf2\xe6\xfd\xde\x27\xcf\x7d\xbe\x77\xc2\ +\x5a\x8b\xe8\x1b\x9e\x1a\xd0\x1b\xb7\x3d\xcf\xa3\x92\x3e\x05\xa7\ +\xc7\xf9\x27\x7e\xed\xae\x2d\xde\x9f\x90\x34\x89\x06\xcf\x17\x2e\ +\x72\xef\xc1\x63\xfe\x87\x17\xc5\x15\x9e\x4f\x2f\x8e\x01\xbf\x05\ +\xeb\x73\xd5\xcf\xf3\xdd\x5c\xbb\x72\x81\xb0\x6f\x94\xcc\xc8\x0d\ +\x1a\x61\xc4\x6e\x60\x69\xa3\xa5\x13\xdf\x23\x00\xc2\xa0\x81\x6a\ +\xd4\xfb\x01\x24\x2d\x3e\xe6\x7a\xfb\xaf\x2e\x97\x77\xc8\x9a\x3c\ +\xe9\xee\x3e\x2e\x0f\xe5\x18\x3d\x99\x25\x08\x2d\xd9\x8c\x4b\x67\ +\x4a\x32\x35\xbd\xc2\x5c\xa9\x0e\xc0\xcf\xf2\xea\x32\x80\xc3\x3e\ +\xa2\x20\xc0\x75\x1c\x72\x1d\x9a\x87\xd7\x07\x59\x58\xf5\x78\xfa\ +\xa6\xc4\xa3\x97\x4b\x7c\xfd\xe1\xf3\xe4\xd6\x10\x19\xa3\x30\x4a\ +\xa2\x94\xe2\xb0\x20\x0a\x71\x5d\x97\xb1\x33\xc7\xc8\x68\x27\x0e\ +\xba\x18\xad\xd0\x71\xf8\xd5\x87\x0a\xc7\x73\x9a\x4b\x23\x3d\xcd\ +\xbb\x54\x1a\x00\xc9\x3e\xac\xb5\xc8\xb8\xc1\xeb\x99\x2a\xbd\x5d\ +\x9a\xd9\x25\x3f\x3e\x0d\x35\x2f\xa4\x30\x9c\x07\x01\x4b\xeb\x41\ +\xab\x81\x4c\x10\x80\x8d\x1b\x38\x04\x91\xcb\xb3\xf7\x65\x00\x8c\ +\x74\xe8\xe9\x92\xdc\x3c\x77\x34\x5e\x67\x8d\xb5\x5a\x44\x4a\xef\ +\x35\x50\x87\x05\x0e\x20\xa5\x4b\x26\xa5\xd9\xcf\xf8\xd9\x3c\xd3\ +\x9f\xb6\x78\x37\xef\x35\x9f\x09\x21\x50\xda\x24\x08\x9c\xbd\xbd\ +\x35\x9d\xe9\x14\x6d\x3a\x8d\xc3\xc0\x11\xc3\xe4\xdb\x2a\xd9\x78\ +\x1e\x01\x02\xd0\x09\x82\x66\xad\x5c\x3e\x4f\x47\xda\xd0\xe6\x44\ +\xaf\x64\xb6\x14\xc6\x6f\x4e\x01\x96\xc8\x5a\x40\xa0\x75\xc2\x37\ +\x50\xae\x24\x1d\x07\x33\xc6\xfc\x9d\x49\x87\x95\x8a\x25\xa5\x35\ +\xae\xd8\x13\x08\x2c\x16\xa5\x92\x1a\x48\x89\x63\x2d\x69\xa3\x69\ +\xd3\x88\xc0\x0a\x68\x97\x12\xc2\x36\x07\x2a\xa9\x81\x2b\x5d\x7c\ +\xbf\x8e\x8c\x4f\x80\x0e\x03\x77\x0a\x82\x8d\x6d\x98\x2c\xda\x96\ +\xe0\x4f\x36\xe1\x2f\x20\x1c\xfc\x1d\x9f\x9d\xdd\x46\x2b\x04\x94\ +\x2a\x2a\x5e\x21\x8a\x67\xe1\xc1\xa8\x70\x0f\x08\xbe\x6d\xd5\xaa\ +\x78\xdb\x9b\x94\x37\x36\x59\xf8\xb2\x48\x9b\x99\x79\x0e\xb1\x1b\ +\x06\xd4\x3d\xef\x3b\xc0\x2f\xbb\xd9\xb9\x56\x43\x7d\x15\xe6\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x08\x2c\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x10\x06\x00\x00\x00\x4f\x63\x23\x22\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ +\x01\xcb\xc7\xa4\xb9\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ +\x10\x00\x00\x00\x10\x00\x5c\xc6\xad\xc3\x00\x00\x00\x06\x62\x4b\ +\x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\xf7\xdc\x00\x00\x07\x89\ +\x49\x44\x41\x54\x18\x19\x65\xc1\x79\x3c\x14\x88\x1e\x00\xf0\xdf\ +\x8c\xbc\x14\x6a\x52\x84\x0e\xdd\xdb\xeb\x40\xa1\xb7\xbc\x3e\x14\ +\xa5\x83\xa8\xad\x61\xa8\x6d\xa7\xf2\x42\xf5\x96\x50\xba\x56\x92\ +\x23\xa4\xc6\x2d\x11\x9e\xb3\x75\x94\x2b\xe5\x88\x1c\x63\xca\x91\ +\x26\x39\x47\x1a\x26\xd3\x98\xc1\x30\x87\xc1\x98\xdf\xf6\xb1\xef\ +\xbf\xbe\x5f\xc8\xd6\xbb\x57\xe1\xc1\x03\x88\x9e\xf5\xaa\x70\x3c\ +\x04\x10\x6b\xe4\xa3\x42\x49\x07\x62\xec\x0d\x1f\x67\x8a\x00\x20\ +\x36\xd4\xc7\xcf\x69\x05\x58\x3e\xfe\x70\x43\x44\xf5\x84\x84\x60\ +\x15\xf2\x9a\xc3\x0e\x40\x34\x77\x36\x6e\x53\x39\x03\x2a\x56\x5b\ +\xff\x35\xa2\x56\x04\x60\xc5\xdc\xf5\x7c\xd1\x73\x02\xc5\x6a\x8f\ +\xe9\x73\xd5\x2a\x88\x38\xe0\xb9\xd3\x8d\xf4\x02\xe0\xe0\xf3\x6d\ +\x45\x1a\x4f\x08\xaa\xb6\xba\x06\x1f\x34\xeb\xa1\xc3\xa6\xd5\x20\ +\x54\xf3\x26\x80\x2d\xc9\xa0\x55\xb3\x02\x54\x80\x66\xe3\xb1\xeb\ +\xc4\x20\x00\xed\x8a\xc7\x25\xf2\x7a\x50\xa5\xc5\x78\xc4\x92\x8f\ +\x03\x44\xa5\x5c\x0e\x75\x5c\x4a\xc8\x0d\x2f\x76\xaf\xb4\xd7\x21\ +\x78\xea\xdd\x82\x39\xf5\x4e\x39\x2f\xa2\xf6\x13\x2f\xbe\x78\x16\ +\x67\xef\xd7\x0c\x47\x0f\x9d\xff\x29\x4e\xd9\x00\x12\x1c\x92\x77\ +\x7a\x92\x0c\x00\xce\x19\x9a\x26\xe8\xea\xea\x75\x5b\x6b\x6e\x49\ +\xd3\xf0\xdf\x5f\xb9\xa7\x66\xf3\xf0\xd2\x0a\xd2\x17\x43\x2b\x6d\ +\x47\x25\x04\x30\x5d\xa4\x17\xb1\x20\x19\xee\x9b\xe5\xaf\x91\x2f\ +\xfc\x03\x00\x62\x7f\xf6\x39\xeb\x54\x0c\xc4\x18\x9a\xcf\x12\xa7\ +\x4b\x00\xd1\x64\x6f\x3d\x0a\x19\x8e\x3e\x9a\xf4\xfa\x78\xb2\x05\ +\xf4\xa2\xd6\x7a\x4f\x3a\x2d\x27\x7a\xde\x59\x4d\x75\xdd\x7f\x64\ +\xfe\xbc\x68\xe6\x35\xeb\x13\x99\x00\x0e\x5a\xfb\x3e\xaf\x53\x22\ +\x32\x4c\x4c\x76\xd0\xd5\x7b\x01\x4c\x73\x8d\x5c\x49\xb9\x66\x67\ +\xc8\x85\x3b\x0a\x95\xd5\xc4\x66\x2e\xaf\xcc\x47\x57\x7d\x44\xb4\ +\xb9\xb7\xe3\xb2\xf6\x83\x8f\xfb\x2c\x8f\xaf\x7d\xaa\x0c\xa4\xdf\ +\xcc\xff\xb1\xe6\x88\x72\x2b\xc0\x61\xb2\x3e\x69\x99\x16\x8c\x43\ +\xe8\x4a\x37\x2d\x3b\x7f\x80\x50\x2b\xb7\xad\x76\x64\xc2\xb5\xbb\ +\xcc\xb3\x05\x07\xe5\x00\x61\x5e\xee\xfb\xec\x7f\xde\x96\x14\xfd\ +\xc7\xe5\x69\xc7\x55\xf4\x99\x17\xcf\x12\x7c\xfd\xb5\xb9\x0d\x75\ +\xab\xb2\x1a\x69\xc4\xc0\x74\x8d\x03\xf0\x1d\x51\x64\xcd\xf8\xb7\ +\xc9\x62\x29\xc0\x01\x43\x33\x0b\x8d\x55\xf1\x1b\x53\xfd\xee\xdd\ +\x38\x47\x45\x94\x9a\xb3\x3c\x6a\x65\x32\xaf\x64\x69\xa0\xf7\x85\ +\xfb\x88\x46\x0f\xb4\xb2\x00\x6c\xaf\x6c\xdf\x45\xa2\xc0\x77\x56\ +\x9d\x3f\x75\xab\x97\x28\xa9\xc0\x49\x91\xa9\xc6\x3a\x00\xbd\xb1\ +\x26\xe6\xc6\xa2\x83\x84\x85\x13\x67\x3f\x7e\x2b\x1a\x01\x48\xdf\ +\x14\xd0\xed\xba\xbf\xba\xf6\xd9\x3f\x23\x6f\xfb\x0a\x11\xcb\xc2\ +\x92\xe6\x07\x51\x67\x0a\x2b\x5d\x52\xa8\x21\xb7\x10\x53\x2a\xfd\ +\x8a\x5d\xd6\x1e\x8b\xa9\xb2\x7f\x6c\x70\x3d\x1c\xa0\x5c\x92\xdc\ +\x73\xed\x42\x66\x93\xd4\xb8\x37\xa2\x7a\x33\xa2\x62\x6a\xc2\x8c\ +\x63\x37\x4d\x15\x50\x98\xb5\x65\x5f\x11\x0b\x76\x84\x37\x5f\xb0\ +\x3c\x7e\xb3\x60\x7e\x18\xc5\x95\x09\x50\x72\x2d\x5a\xcd\xeb\x81\ +\x92\x3e\xf8\xce\x27\xbf\xde\x9d\x00\x2f\x55\x7d\x61\x8e\x1a\x03\ +\xbe\x5b\x48\x6d\x4e\xc9\x33\x8d\xa8\x66\xbb\x4d\x2f\x1b\x34\x69\ +\x2a\x47\x9c\xb8\xca\x9e\x6e\x1b\x9f\xaa\xe3\x7e\x6e\x9b\x2e\xcf\ +\x45\x2c\x9c\xa4\xf1\x7c\x76\xdf\x92\x37\xe7\x64\xbe\x0b\xb0\x02\ +\x18\x4b\x6a\x7c\x96\x2a\xb5\xf9\x24\xbc\xc9\x74\x2d\x72\x44\x94\ +\x1a\x7e\x09\x61\xf0\x11\xbf\x6d\x7b\x1b\x9a\x9d\x33\x45\xae\xd2\ +\x7f\x5c\xed\xb9\x6c\xc3\x99\xc2\x93\x41\x0b\x6d\xb4\x01\xe8\x5e\ +\x69\x01\xde\x4b\x09\x89\x40\x7f\x92\x51\x11\x70\x8a\xb0\xa4\x38\ +\xef\x61\xc7\xc5\x63\x00\xa5\xc1\x51\xbe\xbf\x27\x2c\xd5\x1c\x6c\ +\xae\xcd\x4b\xb3\xe3\x1f\x10\x07\xf4\x31\x1b\xd7\x21\xca\x36\x70\ +\x4d\x3e\xe5\xce\xd4\x8b\x44\x7d\x4e\xf4\xf3\x88\xfd\xe1\x55\xcb\ +\x13\xf5\x6f\x5b\x70\xbc\x6b\x9c\x92\x68\x00\x38\x07\x60\x40\xab\ +\xe2\x79\x8c\xe5\xbb\xfd\x13\xd5\xef\x6d\x72\xd7\x22\x66\x1c\xbe\ +\xeb\xe7\x7c\x4a\x62\x08\x73\x56\xeb\xc1\xff\x85\x69\xff\x3e\xba\ +\xef\x2d\xf1\x2b\x28\x9a\xbb\xbc\x8a\x89\x00\x22\xee\x7b\x93\x3f\ +\x57\x13\x3d\x44\xfa\xcd\xa2\xac\xf3\x00\xfc\x01\x3a\x2f\xb5\x2e\ +\x22\x42\xe4\xdf\xb1\xbd\x2c\x1f\x51\x6a\xfe\xb9\x9d\x6e\x86\xb7\ +\x45\xeb\x3e\x15\x96\xf9\x8b\x13\x79\xb4\x1a\x6e\xdc\xdb\x35\xf9\ +\xf5\xe2\x56\xbb\xae\xdb\xba\xcb\xb9\x93\x75\x4f\x93\xff\xb4\x7d\ +\x30\xa4\x5e\x97\x91\xe2\x38\x58\x26\xd8\xfb\x4e\x25\xdb\x17\x31\ +\x29\xd5\x57\x62\xff\x0a\xc3\x83\xa6\x5d\x38\xe6\x81\xae\x69\x38\ +\x67\x45\x2f\xfc\xed\x24\x74\x06\x35\x2e\x28\x5f\x0c\xd0\xa1\xff\ +\x7a\x5e\xb6\x23\x51\xa7\xad\x87\x26\x3d\xe8\x0b\xd0\x55\x57\xfa\ +\x90\x66\xbd\xa1\x94\x9b\x5f\xe7\x9e\x7c\x58\x3c\x2b\xb4\x68\x6e\ +\xc8\xa6\x21\xb2\xcc\xca\x33\xe3\xb7\xa5\x7f\x1d\x4a\x7b\x1d\x1b\ +\x4b\x39\x69\xc8\xa3\xb3\xf9\xdd\x6c\xc4\x61\x5e\x73\x51\x41\x22\ +\x3a\x8f\x84\x33\xfe\x97\x2e\xc6\x37\xb2\xad\xdd\x79\xaf\x42\x10\ +\xe3\x95\xcf\xe9\x18\x5b\x63\x52\x56\x49\xe0\xac\xeb\x08\xa2\xc8\ +\x96\x57\xd3\xef\x32\x3d\x33\x98\x50\x7c\xf4\x4e\x18\xe5\x25\xd0\ +\x63\x9a\xa3\xfb\xac\xa1\xa2\x4f\xb3\x2b\xba\xb3\x8a\x20\x9f\x39\ +\x25\xde\xc0\x8f\x04\x98\xbd\x2e\x55\x15\x04\x6b\x40\x47\x75\xb5\ +\x49\x56\x3e\xaf\xba\x86\x99\xb1\x36\xf8\x23\x62\x3b\xa5\xaa\x24\ +\x33\x33\x4d\xc8\xdf\x54\x2b\x7a\xb4\x97\xb1\x97\xdf\xc4\x31\x65\ +\x05\x20\x0a\x0c\xdb\xc8\xc5\xee\x33\x2b\xc7\x2e\x32\x8e\xa4\x8c\ +\xcf\x94\x09\xb6\x37\x1e\x4a\x93\xcb\xdf\x79\x1a\x98\x7a\x92\x2c\ +\xe4\x77\x7c\x15\xf6\xde\x3b\x0f\x4d\x45\x0a\x7b\x39\xe9\x9d\xab\ +\x11\xf9\x75\x75\x8c\xc4\x85\x2d\x8d\x40\xb3\x4b\xf0\x2a\x89\x01\ +\x28\x93\x56\x79\xbe\xcf\x5f\x90\xd7\xb3\xa2\x6f\x39\xd7\xc8\x41\ +\xe7\x9b\xcb\x70\xd4\x84\x7a\xcd\xb2\xc1\x94\x1e\x2d\xe6\x1e\xc4\ +\x77\x57\xca\x37\xe6\xaa\x21\x0a\x5a\xb9\xfe\x83\xec\xe9\x5f\x84\ +\xc3\x83\xc6\x1d\x3d\xd3\x9c\xa1\xb2\xc1\x17\xec\x63\xc8\x1d\xe0\ +\xb7\x38\x97\x6d\xc6\x09\x5e\x4c\x53\x49\xde\x75\x9c\xed\x0f\xa9\ +\xd5\xc9\x18\x46\x8c\x09\xf6\xd4\x3f\xb6\x13\x59\xf9\x21\x89\x46\ +\x61\x8b\x10\xfb\xf6\x32\x1f\x31\x3e\x29\x3e\xb3\xed\x2a\xb6\xc4\ +\x6b\xd7\x09\xe0\x91\x55\x5a\x42\x65\x94\xda\xbd\xf6\xa7\x5d\xd6\ +\x83\xd2\x86\x1a\xc1\xc8\xe8\x5d\x51\x39\xa2\x38\x5b\x12\x2c\xeb\ +\x51\x5c\x95\xd4\x4f\xde\x9f\x79\x8a\x38\xe9\x36\x45\x9d\xad\x45\ +\x94\x72\x64\x0f\xe5\x67\xf0\xad\x74\x60\x2a\x5e\x51\xa4\xb0\x98\ +\x70\x13\x93\x64\x59\x88\xfd\x46\xfd\xc9\x1c\x2b\x56\x5b\x75\x4e\ +\x55\x61\xad\x61\xa0\x79\xe3\xbc\x06\x2b\x06\x27\xb2\x9b\xb9\xa5\ +\xed\x54\xbb\x5b\x50\x70\x5b\x16\xd3\xaf\xd7\xdd\x15\x73\x5e\x66\ +\x58\xe6\x6b\xed\xe0\xed\xd3\xd6\x1a\xd1\x8d\x57\x8a\x83\xd6\x06\ +\x66\xfb\x97\x2d\xff\xfd\xed\x8b\xee\x00\x9d\x1f\x86\x28\xe6\x4a\ +\xfa\xa7\xe6\xc9\xfc\xc4\x6f\x24\x8f\x65\x9d\xd3\x24\x31\x55\xa2\ +\x2e\x5b\x23\xaf\x11\x53\xc4\x13\x93\x5c\x79\xb9\x78\x9b\x98\x2d\ +\x53\x95\x9f\x96\xa8\x4b\x7c\x64\x1b\x67\xce\x08\xdb\xc7\x67\xa4\ +\x8b\x11\x87\x2b\x05\x1d\xa2\xdd\x23\xbf\x8c\xf2\xc7\xfd\x64\x4b\ +\x96\x07\x8c\x54\x09\x3d\x27\xa9\x00\x82\xa1\xb1\x2b\x52\x0b\xc2\ +\x86\x21\x07\x59\x13\x22\x80\xc2\x99\x15\x99\x12\x07\xa0\x18\xe0\ +\x84\xe4\xa4\xc1\x17\xa0\xfb\x37\x51\x7a\xa6\x92\xfa\xbb\x98\x2c\ +\x83\xa1\xaf\x88\xc3\xd6\x02\xed\xf1\x31\xc5\x95\x31\x53\x61\xae\ +\x44\x0b\x71\x2c\x6e\x7c\x9e\x84\x8a\x38\x8a\xc2\xeb\xe2\x69\xc4\ +\xb1\x4d\xc2\x27\x92\x25\x88\x63\x77\x85\x28\xb1\xc5\x5a\xae\x0f\ +\xef\xbe\xd0\x18\x23\x59\x27\xfa\x4f\x7c\x13\x20\x76\xa6\xf4\x94\ +\x72\x52\x2c\x2c\xda\x83\x59\x30\xf6\x00\xa0\x4f\xcc\x52\x65\x39\ +\x29\xd7\x7c\x7a\xd4\xce\xee\x68\x52\x32\x28\x79\x5f\xf0\xb4\xc8\ +\x9f\xa8\x1e\x76\xf5\x3f\xa5\xa7\xcb\xc0\x0e\x7e\x0d\xba\xa0\x13\ +\x7d\x41\xb9\xb8\x30\xfb\xa5\x65\xcb\x0d\x53\x41\xd3\x40\x1b\xf9\ +\xf3\x1f\x97\x82\xda\x54\xda\x57\xb3\x0d\xee\xad\x6b\x74\x69\xb6\ +\xe8\x4d\x8d\x8d\x79\x73\x9e\x5e\xda\x99\x9b\x60\xcc\xf0\x69\x59\ +\xc9\x5a\x1f\xf9\xac\x65\xe7\x87\xd4\x7e\xf7\xdb\xd6\xf5\x81\x6f\ +\x73\xbb\xf9\xa7\x0a\xb2\xa2\x0b\x54\x1b\xfa\xd6\x7b\xe0\x1c\x00\ +\x9c\x03\x54\xf8\x1b\xf1\xf8\xc6\x5f\xb3\x82\x09\xf0\x23\x69\xed\ +\x64\x9c\x4c\x01\x4b\x47\x1d\x84\xa7\x45\x26\x00\xa3\x65\xc2\x2c\ +\x91\x1b\x80\xf0\xf8\x38\x5b\x6c\x07\x3f\x40\x05\xca\x11\x01\x50\ +\x8c\x7c\x94\x03\xe0\x04\x7e\x43\x39\x00\x8a\x90\x87\x72\x50\xc1\ +\x52\x0c\xc1\x3e\xd0\xc0\xaf\xd8\x86\x32\x00\x1c\xc4\x16\x9c\x04\ +\x02\x76\x63\x05\x8a\xe1\x07\x7f\x01\x1f\x8b\x3e\x7c\xd8\x51\xe0\ +\x08\x00\x00\x00\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\x77\x61\x72\ +\x65\x00\x00\x78\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\ +\x48\xd5\xcb\x2f\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\xca\x5c\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x72\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xef\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x31\x6b\x53\x51\x14\xc7\x7f\x27\x2f\x89\ +\xa6\x0d\x28\xc1\xa9\xa1\x06\xe9\x7b\x45\xc8\xe4\x62\x06\x6d\x88\ +\x01\x41\x67\x87\x42\x21\x43\x11\x2c\xb4\x90\xb1\x4b\x97\x6e\x7e\ +\x01\x97\x0c\x8f\x40\xf2\x01\xfa\x01\x32\x14\x27\x89\x38\x28\x2e\ +\x82\x04\xb1\x84\x8a\xfa\x42\x30\x4f\x52\xdb\xdc\x77\x8f\x43\x43\ +\x30\x6d\x9a\xc5\x03\xff\xe9\x9e\xfb\xbb\xe7\xfc\xf9\x5f\x51\x55\ +\xfe\xa7\xe2\xf3\x0e\x6b\xb5\xda\x14\x7d\x6b\x6b\x4b\x2e\x35\xa9\ +\xea\x44\x80\x00\x39\xa0\xec\xfb\xbe\x76\xbb\xdd\x29\xf9\xbe\xaf\ +\x40\x79\xdc\x23\xaa\x7a\x09\x90\xcb\x66\xb3\x87\xae\xeb\x9a\xc1\ +\x60\xa0\xb3\xe4\xba\xae\xc9\x66\xb3\x87\x40\x4e\x55\xcf\x57\x48\ +\x24\x12\x2f\x4b\xa5\x52\x1a\x38\x48\xa5\x52\x6b\xed\x76\xdb\x69\ +\x36\x9b\x33\xd7\x6a\xb7\xdb\x4e\xa1\x50\x58\x03\x56\x80\xaf\x71\ +\x80\x52\xa9\xb4\x18\x86\x61\x39\x9d\x4e\xf7\x45\xc4\xc9\x64\x32\ +\x6c\x6f\x6f\xcf\x04\x9c\x1a\x8b\x88\x38\x80\x33\x31\xb1\xd5\x6a\ +\x55\x45\xe4\xd5\xd2\xd2\xd2\x33\x63\x0c\xc7\xc7\xc7\xd4\xeb\xf5\ +\xa9\x8b\x9b\x9b\x9b\xbc\xed\x26\x78\x94\xbf\x31\xdb\x44\x20\x05\ +\xbc\xf6\x3c\x4f\x7b\xbd\x9e\x5e\x2c\x6b\xad\x9e\x9d\x9d\x69\x7f\ +\xf0\x5b\x3d\xcf\x53\xe0\xf1\xc4\x83\x31\xe8\x44\x44\x6a\xc6\x98\ +\xe2\xee\xee\x2e\xb9\x5c\x8e\x58\x2c\x06\x80\xb5\x96\x4a\xa5\xc2\ +\x9b\x23\x87\x87\xab\x8b\x53\x03\x5c\xcc\xc1\x4f\xc7\x71\x08\x82\ +\x80\xe5\xe5\x65\xf6\xf6\xf6\x30\xc6\x4c\xf4\xf4\xa6\xe5\xd4\xd8\ +\xb9\x00\x44\x84\x62\xb1\x48\xa3\xd1\xe0\xf3\xa7\x8f\xac\xac\xe6\ +\xb1\xd6\xb2\xb1\xb1\xc1\xbb\x6f\xd7\x79\xe0\x2d\xcc\x07\x00\xec\ +\xec\xec\xd0\xff\xfe\x05\xe9\x7f\xa0\x5a\xad\x21\x22\xa8\x2a\x4f\ +\x6e\x59\xfe\x8c\xa2\xf9\x80\xe1\x70\x48\xa7\xd3\xe1\xd7\x89\xd0\ +\xeb\xa7\x79\xf1\xbc\xc2\xdd\xfc\x3d\xd6\xd7\xd7\x79\xff\x63\x81\ +\xfb\x77\xae\x31\x1c\x0e\xaf\x04\x44\x61\x18\x46\xc9\x64\xd2\xd9\ +\xdf\xdf\xc7\x18\xc3\x68\x34\x22\x1e\x8f\x13\x45\x11\xe5\x8c\x25\ +\x08\x02\xc2\x30\x8c\x80\xf3\x51\x2e\x46\x59\x44\x0e\x45\xc4\x88\ +\x88\x5e\x21\x23\x22\x93\x28\xcb\xbf\xdf\x59\x44\x04\xb8\xcd\x79\ +\x4c\x9d\x59\xfe\x8c\x5f\xee\x00\x47\xaa\xaa\x7f\x01\xf5\xbc\x25\ +\x53\xe5\xdd\x28\x92\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x05\x08\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x10\x06\x00\x00\x00\x4f\x63\x23\x22\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x37\x5c\x00\x00\x37\x5c\ +\x01\xcb\xc7\xa4\xb9\x00\x00\x00\x09\x76\x70\x41\x67\x00\x00\x00\ +\x10\x00\x00\x00\x10\x00\x5c\xc6\xad\xc3\x00\x00\x00\x06\x62\x4b\ +\x47\x44\xff\xff\xff\xff\xff\xff\x09\x58\xf7\xdc\x00\x00\x04\x65\ +\x49\x44\x41\x54\x78\xda\x8d\xcf\x79\x50\xd4\x75\x1c\xc6\xf1\x67\ +\xf7\xa7\xb0\xe1\x45\x5a\x93\x4d\xcc\x28\x96\x39\x66\x76\x98\xa3\ +\x64\x5a\x0e\x96\x93\x84\x69\x08\x98\x14\xac\xb5\x6e\xb0\x1c\x0a\ +\x2c\xc7\x98\xa2\x89\x72\xc4\xb5\xc8\xb1\x18\x32\xb9\x6c\x2c\x9a\ +\x0a\xc8\x86\x4e\xa9\x78\x24\x88\xa9\xa5\x90\x93\x17\xe7\x10\x53\ +\x99\x5a\x33\x3a\x32\xab\xe8\x27\x9e\xd9\xa5\xa6\x1c\x27\xde\xaf\ +\x3f\x9e\xf9\xfd\xf3\xfd\x7e\x7f\x18\x6c\xfa\x4a\x02\x52\x2f\x13\ +\x94\xd6\x33\x6d\xc6\x76\x03\x90\x5f\xb7\x79\xc2\xe6\x3b\x2a\x7d\ +\x75\x76\x75\xe1\x1e\x2f\x60\x59\xeb\xb2\xcb\x21\x93\x17\xa7\x7d\ +\xe2\xbf\xc1\x9a\xba\xe5\x6c\x7d\x5e\x8a\xc9\xc7\x64\x12\x29\xb1\ +\x97\xac\x2c\x59\xf8\xe1\x81\xa2\x33\x45\x61\x45\x13\x01\xb3\xd9\ +\x1c\x6f\x5e\x3e\x34\x08\x83\x2d\x5a\x4b\x40\x9c\x9e\x80\xc4\xb4\ +\xc4\xf8\xc4\x60\x75\x44\x8c\x39\x66\x51\x74\x3b\xa0\xef\xd2\xef\ +\xd7\x27\x6a\x37\x5a\x22\x2d\x75\xe5\x33\x44\xaa\x2e\xd4\x64\xd7\ +\x1a\x45\x76\xed\xd8\x3d\x6b\xf7\x7b\x1f\xf7\x26\xdc\x4e\xfa\x25\ +\xf9\x2d\xc0\x14\x9e\x3f\x3f\xbf\x4c\x59\x96\x9b\x9c\xf3\x6e\xf6\ +\x55\x78\x62\xb0\xe9\xba\x09\x98\x3d\x9e\xd0\x84\x7f\x35\x22\xcc\ +\x56\x6e\xb3\xda\x2a\xda\x7f\x6e\xcb\x6e\x4b\x6f\x4b\x11\x31\x4f\ +\x2f\xee\x2d\x3e\x51\x72\xd4\xd4\xdc\x7f\x61\x22\x90\xf3\x5a\xce\ +\x91\x9c\xbb\x43\x7b\xe0\xaa\x74\x6f\xe9\x9a\xd2\x30\x5d\xce\xff\ +\xff\xf9\x12\x02\x12\x3a\x08\x08\x9f\x49\x6a\xf7\x05\xdf\x10\xf0\ +\xce\xe1\x7e\x47\xa6\x4f\x3a\xd9\x42\xf7\xd6\x3b\x62\x1c\x2b\x1d\ +\xb1\x22\x96\x2e\xcb\xef\x96\x1b\x35\x5b\x45\x18\x90\x1e\x9c\x79\ +\x3d\x6b\x0a\x50\x7d\xab\x26\xbd\xa6\x62\x4d\xd2\xe6\xdc\x82\xf9\ +\x05\xdb\x44\xf0\xa0\x62\x83\x08\x30\x5c\x26\xa8\x93\x84\x80\xa4\ +\x40\x52\x55\xbe\xec\x43\x80\xee\x92\xee\xa2\xee\xa2\xb7\xdb\xa1\ +\x0e\xea\x2d\xb8\x56\x45\x22\x57\x62\xaf\xac\xba\xb2\x4a\xc4\x5a\ +\x62\xb5\x5a\x77\xd6\xb4\x9a\x37\x98\xe7\x98\x3d\xb6\x98\xab\x8b\ +\xf7\xbc\x69\x7f\x4e\x24\xf5\xf9\x8d\x6b\x37\xc5\x9f\x5a\x80\xff\ +\x96\x90\x41\x80\x61\x2b\x41\x1d\x18\x43\x18\xc8\xbb\xa1\x8b\x94\ +\xb4\x86\xab\x04\x54\x1c\xa5\xe4\x25\x0d\xaf\x92\x48\xe7\x2c\xba\ +\xab\xb9\x96\xdf\xcf\x24\x8f\x39\xac\x8e\x2f\x1c\x36\x29\x6c\xed\ +\x6a\x6d\x6b\xfd\x51\xa4\x6c\x74\x99\xae\xec\xba\x48\x88\x6f\x88\ +\x5f\xc8\xe7\x41\xa3\x31\x50\xaa\x0f\x01\xc6\x29\x04\x55\x70\x3d\ +\x61\xa0\x31\x8d\x0b\x48\xa9\x3c\xed\x4b\xc0\xee\x3c\x4a\x38\x5c\ +\x7b\x94\x44\xba\x27\xd1\xdd\xf6\x13\x0f\x53\x9f\xb2\xf7\x4f\xea\ +\xd5\x9d\x8a\xec\x67\x10\xb1\x65\xd9\xb2\x6d\xb9\xbf\xce\xd1\x9e\ +\xd3\x6e\xd7\xbe\xbf\x7c\x42\x9a\x57\x5a\x4f\x46\x00\x80\xf4\xf5\ +\x04\xc4\x97\x12\x54\x0b\xbd\x08\x03\x69\xbe\x2d\x26\x65\x5f\xd3\ +\xdb\x04\x54\x77\x52\xec\x21\xbb\x86\x44\x3a\x03\xe8\x76\x61\xe3\ +\x26\x12\x89\x78\x89\x56\x2f\x0e\x5d\x47\x63\xb7\x07\x5d\xa0\x99\ +\xb9\x23\x8f\xd0\xa8\xe3\x9e\x3f\x78\x9e\xf7\xbc\x04\x04\xdc\x0e\ +\x68\x0f\x38\xa7\x3a\x08\x43\x1b\x41\xe5\x93\x40\x80\x08\x03\xf6\ +\x2f\x25\xe5\xd8\xe1\x60\x02\xec\x79\x14\xdd\x68\xf7\x27\x91\x8e\ +\x7b\x74\xc7\xfd\xf8\x6f\x24\x12\x6e\xa1\xa4\x4f\x6b\x73\x09\x38\ +\x51\x4a\xaa\x8c\x81\xf3\xea\xfd\xea\x03\xeb\x57\x60\xb5\xb1\xcc\ +\x98\x69\x34\xa8\x57\xc1\x99\x27\xdc\xcf\xd2\x3f\x17\xef\x69\x21\ +\xa5\xb9\xde\x8d\x80\xba\x24\x8a\xb8\x56\x3b\x99\x44\xda\xbf\xa7\ +\x3b\xa9\x4d\xfe\x24\x12\xf1\x22\xc5\xfb\x7c\x19\x4a\xc0\x67\x6f\ +\x90\x92\x17\xfd\x15\xa9\x0a\xa2\x23\x48\x3d\xd5\xf7\x6b\x42\x4b\ +\x68\x0a\x01\x2b\x1c\x84\x21\x7f\x5f\x6c\x0d\x25\xe5\x9e\xbd\x87\ +\x80\xaa\x0e\xd2\x7b\xee\x7a\x96\x44\x2e\x5e\xa5\x3e\xcd\x77\x4f\ +\x90\x48\xd4\x0c\x8a\xf9\x63\xc7\x0d\x02\xcc\x3f\x91\x52\x0b\x67\ +\xcf\x8c\x6b\x26\x60\xda\x5c\x82\xfa\x15\x7f\xc2\xfd\xe5\xe4\x91\ +\x12\x57\x11\x46\xc0\xb6\xed\xf4\x41\xa0\xa5\x98\x44\x5a\x42\xa8\ +\xaf\xe8\x78\x38\x89\x24\xcc\x21\xc3\xc9\xca\xb1\x04\x98\x4f\x93\ +\x72\x10\xce\xbc\x1e\x5d\x44\xc0\xd4\x06\x82\x7a\xf6\x70\xc2\x83\ +\x1b\x38\x28\x37\x8e\x22\x47\x14\x66\x93\x48\x53\x1d\xf5\x35\x1e\ +\xf2\x23\x91\x38\x23\x7d\x34\x6c\xeb\xeb\x04\x64\x54\xd3\x90\x27\ +\xe1\xcc\x0f\x99\xa0\x79\x38\x03\xf2\x85\xb3\x17\x5c\xeb\xed\xda\ +\x47\x5c\xab\x71\xad\x1a\xfa\x0e\x9a\x57\xbf\xf6\x18\xd9\xbc\xf7\ +\x65\xd1\xcd\xb9\xf6\x5e\x12\x89\x3c\x40\x5a\x53\x66\x0f\x01\x55\ +\x9d\xa4\x0e\xe8\x1c\x43\x80\x08\xbb\x6f\x07\xdf\xf2\x9d\x94\xac\ +\x89\xca\x22\x20\x45\x4b\x95\xa7\xc3\xca\x29\x6e\x54\xcd\x42\x02\ +\x9e\x6e\xa2\x91\x51\x00\xf3\x28\xc2\x53\xe4\x31\x11\x0a\x3d\x34\ +\x0f\x60\xee\x7d\xce\x75\x4b\x73\xee\x90\x5b\xce\x55\x62\x9c\xab\ +\x1e\x06\x67\xdd\xae\x9d\x8a\xa8\x59\x64\xea\xf6\x5b\x47\xeb\x4e\ +\x4e\xb9\x49\x4b\x7d\x01\x36\xae\xd9\x6d\x03\xf9\x34\x01\x6c\x66\ +\x39\x3c\x68\x86\x07\xc0\xa6\x85\xba\xce\x59\xe2\xdc\x49\xae\xef\ +\xf1\xe7\x9d\xfb\xb8\xeb\x41\x63\x34\xce\x1d\xee\xef\xdc\xa1\xae\ +\x87\xa9\x96\xfe\x05\xce\x1a\x01\x31\x96\x9d\x3e\xc8\x00\x00\x00\ +\x22\x7a\x54\x58\x74\x53\x6f\x66\x74\x77\x61\x72\x65\x00\x00\x78\ +\xda\x2b\x2f\x2f\xd7\xcb\xcc\xcb\x2e\x4e\x4e\x2c\x48\xd5\xcb\x2f\ +\x4a\x07\x00\x36\xd8\x06\x58\x10\x53\xca\x5c\x00\x00\x00\x00\x49\ +\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x20\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x9d\x49\x44\ +\x41\x54\x78\xda\x75\x92\xcf\x6b\x13\x41\x14\xc7\xdf\x64\x37\x3f\ +\xba\x35\x4d\xda\x6a\x6d\x6b\x1b\xa3\x20\xb5\x56\x42\x7f\x80\x7a\ +\x10\x44\x41\x0a\x22\xa8\x88\x78\x11\x45\xc4\x93\x47\x8b\xfe\x0f\ +\xde\x3d\x78\xf3\x20\x78\x28\x7a\xd0\x22\xa2\x78\x13\x3c\x08\xa2\ +\x56\x44\xaa\xb5\x87\x96\x34\x69\x77\x93\x34\xfb\x7b\x77\x66\x9e\ +\x6f\x77\x21\xe4\x60\x67\xf3\xf8\xce\xbc\x79\x9f\x2f\xdf\xc0\x30\ +\x44\x84\xff\xad\xbb\xef\xe7\x94\x7c\x66\xf8\xd9\xb9\xd2\xcd\x2b\ +\x1e\xf7\xd3\x1b\xd6\x1f\xfd\xeb\xd6\xd2\xad\xa7\xf3\x5f\xde\x76\ +\xcf\xa9\xb0\xcb\x0a\x04\xde\xbb\x74\xe4\xc1\xb5\x72\xfe\x90\x62\ +\x85\x16\x8c\x17\x26\x87\x7e\xb7\x56\x5e\xd2\x95\xb6\xab\xc1\x8d\ +\x37\xb3\x39\xa4\x1e\x22\x20\x69\xff\xc7\xda\x87\xb0\x2f\x73\x39\ +\x32\xc0\x86\x6f\xb0\x75\x73\xd5\xb8\xfa\x6a\x66\x92\x2e\x37\xe9\ +\x1e\x49\xbd\xce\x5f\xb8\xbe\x34\xab\x1d\xec\xaf\x6c\x4d\x0c\xcc\ +\xf4\x0a\xc9\x61\x74\x4f\x39\x1c\xed\x2d\x29\xad\xb0\x95\xb2\x29\ +\x81\xcb\x1d\x60\x14\xac\xe9\x6e\xa7\x9a\xbe\xa1\xda\xdc\x84\x15\ +\x63\xd9\x50\xbb\x22\x17\xca\x85\xa3\xda\x99\x03\xf3\x60\x71\x13\ +\x6d\x6e\xa5\x8d\xa0\x1e\xed\xc1\xe1\x16\xd0\x39\xee\xd9\x82\xf6\ +\x60\xa1\x43\xa5\xa8\xb9\xc1\x2e\x03\xd0\x54\x55\x91\xad\x50\x4f\ +\x39\x22\x02\xec\x18\x24\x00\xdd\xe8\x4c\xe5\x48\x9b\xca\x8a\x2b\ +\x04\x0f\x3c\x74\x21\x36\x38\xbf\x38\x53\x41\x80\x52\x2e\x9d\xe5\ +\xa6\x68\x64\x1c\x6e\x92\x01\x0d\x92\x89\x2b\x2d\x46\x86\xa4\xb1\ +\x01\xfa\x04\x06\x40\xa9\xa0\x0d\x56\x48\x06\x67\x17\xa7\x17\xee\ +\x9f\x7c\xf8\xe8\x47\xe3\x3b\x94\xfa\xc6\xb1\xcd\x75\xe6\xd2\x60\ +\x04\xb8\x18\x43\x91\x12\xe6\xd0\xb7\x03\x66\xb8\xe3\x57\x75\x3f\ +\xdb\xdb\x03\x6e\x10\x20\x53\x8f\x0f\x4f\x2d\xec\xcd\x17\xd8\x5c\ +\xcf\x14\xb6\x44\x8d\x79\x04\x53\x81\x8d\x26\x58\xb2\x05\x6d\x61\ +\x90\x89\x09\xbe\x70\x00\x18\x62\x75\x3b\x84\x8d\x7a\x38\x86\x00\ +\x65\x44\x58\x57\x99\x22\x06\x3f\xb7\x5f\x4b\x47\xb4\xc1\xe3\x36\ +\xf3\xa5\x0b\x01\x05\x15\x22\x04\x22\x00\x30\x91\x2c\x4b\x45\x5b\ +\xe6\xf9\x41\x7d\xf9\xf6\xb7\x2a\x75\xa3\x02\xf5\x67\xed\x6f\x3d\ +\x9d\xcd\x8f\x48\x94\x34\xcc\xa2\x61\xd2\x14\x10\x12\xc3\xdd\x26\ +\x8c\x12\xa4\x99\x18\x2d\x3f\xa9\x9c\xa0\xd6\x31\x44\x78\xa1\x68\ +\x17\x86\x06\x40\xc2\xa9\x6a\x8b\x2b\x59\x55\x71\x25\x42\x3a\xe4\ +\x00\x5c\x30\x16\x69\x28\x00\x02\x2a\x1e\x2b\x42\x21\xa7\xf2\xb4\ +\x92\xba\x73\x78\x48\xbb\xb8\xa6\xfb\x8d\xf8\x21\x91\xe3\x69\x92\ +\xe2\xf4\x78\xe1\x79\xa1\x27\x15\x3f\x55\x89\x94\x39\x5a\x88\x9d\ +\x60\xa4\x74\x48\x02\x45\xdc\xa7\x55\xf3\x5d\xe7\x25\x8e\x3c\xae\ +\x8c\x4d\xec\x2f\xae\x15\x35\x19\x83\x92\x31\x16\x4f\x26\x4c\x62\ +\x40\xd5\x65\x80\xbf\x6a\x4e\xb3\xfb\x21\x79\x21\x85\x6b\xba\x76\ +\xe2\x48\x48\x07\x60\x98\x68\x72\xa0\x5f\x92\xcc\x97\x90\xef\x18\ +\xf8\x02\xad\x15\x5d\xd7\x33\x2a\xdb\x17\x81\x28\x93\xdc\xf1\x3e\ +\x99\xef\x2c\x89\x18\x25\x60\x1e\x87\xcd\x7f\xa4\xf5\xbb\xd8\x41\ +\x74\xba\x21\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x6b\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x07\x15\ +\x01\x20\x18\xab\x28\x4a\x39\x00\x00\x03\xeb\x49\x44\x41\x54\x78\ +\xda\x9d\x93\x7f\x68\x55\x65\x18\xc7\x3f\xef\xbd\x77\xf7\x78\xef\ +\x9d\xc3\xb1\x2d\xcd\xa6\x6d\xae\x74\x15\x84\x95\x5a\xf9\x6b\x86\ +\xe8\xaa\x15\x8c\x16\x59\xb0\x25\x99\x41\xff\x64\x09\x52\x24\x91\ +\x84\x10\x56\x56\x4a\x41\x03\x23\xab\xcd\x8a\xb5\xb9\x68\x10\xdb\ +\x1f\x32\x59\xa5\xa5\xa1\x98\x59\x18\xcb\x70\x33\x23\xbb\x53\x77\ +\x77\xee\x3d\xbf\xee\x39\x4f\xc7\x83\xd7\x4b\xeb\x3a\xab\x0f\xbc\ +\xbc\xe7\x3d\xef\xf3\x3c\x7c\xf9\x9e\xef\x51\x2c\x07\xf6\x70\x89\ +\xf6\xf6\x76\xf1\x01\xa0\xa5\xa5\x45\x71\x19\xda\xda\xda\x04\x40\ +\x29\x45\x73\x73\x73\xbe\x6e\x19\xb0\x17\x14\x00\x75\x34\x85\x8c\ +\xd0\x12\xef\x8c\x67\xc9\xaf\xf2\xac\xeb\xba\x84\xc3\x61\xd4\xcd\ +\xea\x4d\x3c\x14\x42\x1e\x05\x84\x11\x39\x22\xeb\x2f\xd5\x55\xab\ +\x57\x55\x85\xd2\x24\x26\xbd\x0c\xd0\x9b\x2b\x83\xf9\x7c\x12\x7d\ +\x22\xba\xca\x3e\x66\xd3\xbb\xb8\x57\x4c\xd7\x54\xb1\xa2\x62\x79\ +\x3d\xb9\x49\xd5\xd7\x2f\xa2\x22\x31\x85\x12\x2d\x81\xe1\xd8\x8c\ +\x64\xce\xd3\xf1\x69\x1f\x2f\x54\x6d\x91\x8c\xad\xab\x44\x34\x21\ +\x2b\xf6\xad\x50\x91\x32\x8d\x7b\x7f\xbe\x67\xdf\xf6\x07\xb7\x2e\ +\x6d\x1d\xd8\xe1\x2a\x00\xe6\xf1\xb1\x6a\x56\x0f\x47\x42\x0a\x46\ +\x3d\x12\xbe\x8a\xc9\x71\x8d\x19\xb3\xca\x29\x89\x6a\x94\xc4\x34\ +\xe2\x45\x45\x58\xae\xcb\x98\x61\x91\xb2\x2d\x4e\x9e\x48\xa2\xa7\ +\x2d\x74\xd7\xc1\x2b\x81\x97\x86\x62\x6c\xdc\x6a\xb0\xe0\xf6\x05\ +\xee\xe2\x45\x8b\xab\x23\xe4\x70\xc1\xf3\x84\x78\xa9\x3f\x64\x52\ +\x94\xb8\xa6\x61\x99\x2e\x06\x59\x14\x21\x4c\xdb\xc5\xf5\x04\xc3\ +\xce\x62\x5a\x59\x12\x65\x31\xdc\xe2\x30\x8e\x61\xd1\x3a\x75\x03\ +\x53\xbc\x9d\x94\x95\x7b\x72\xe8\xd0\xd1\xd0\xc1\x03\x07\xbb\x43\ +\xe4\xf0\xc0\x75\x05\x27\xeb\x62\xfa\xcd\x19\xc7\x21\x6d\xdb\xa4\ +\xfc\xc6\xb3\xe9\x34\x49\x3d\xe3\xef\x19\x46\x0d\x13\xdd\xb2\x49\ +\xfb\x35\x67\x4d\x87\x6d\x15\x73\x98\x53\xdd\xc4\xb4\xba\x3e\xa6\ +\x55\x94\x48\xc7\xe6\x18\xb1\x28\xc7\x82\xc1\x08\xae\x38\x02\x06\ +\x98\xa6\xdf\x60\x18\xfe\x90\x31\xdf\xcf\x31\x92\x69\x7f\xe9\x3a\ +\x67\xc6\x52\x9c\xd1\x53\x24\x73\xef\xfd\x9a\xe7\x12\x8a\xa6\xaa\ +\x1b\x58\xff\xf4\x5a\x0c\x33\xc3\x47\xbb\xde\x53\xd3\xa7\x4e\xfe\ +\x2a\x63\xc9\x6a\x05\x01\x77\x88\xc8\x7e\xfe\x0b\xc3\x9d\x60\x7d\ +\xcd\xbc\xa6\xcf\x38\x95\x0c\xb3\xe3\xf9\x49\x12\xa9\x5c\x97\x1c\ +\xb4\x1e\xbf\xba\xf6\xb7\x88\xcb\x45\x96\x88\x4f\x36\x9b\x95\x7f\ +\xc3\xe8\xa9\x3e\x91\x5f\xd6\xc9\xfd\x2b\x6f\x91\xe9\x95\xb3\xe4\ +\xfd\xcd\x37\xc9\x9f\xdf\x3c\x24\xc0\x5d\x5c\x24\x42\x9e\x20\x93\ +\x9d\x9d\x9d\x14\xf9\x09\x18\x8f\x52\x0a\x04\xa2\x9c\x62\xc5\x75\ +\xfd\x3c\xf5\xda\x30\x87\x7f\x1a\x65\x4d\x43\x88\xfa\x05\x0e\xe5\ +\xf3\x77\x02\x1d\x26\x79\xf2\x8a\x6d\xdb\x96\x89\xb0\x33\x49\xf1\ +\xbe\x5f\x2e\x5b\x37\xd6\xf9\x4a\xab\xe5\xd1\x07\x66\xcb\x1f\x5f\ +\xde\x27\xe7\x7e\xff\x2e\xb8\x07\xee\x2c\xa8\x38\x12\x89\x14\x54\ +\x1c\x88\xf5\xe0\xee\xca\x2d\xb4\xf7\xa5\x78\xe3\x43\x8b\x1b\xab\ +\xc2\xbc\xf2\x64\x11\xde\x55\x8f\xf9\xd1\x9b\x4b\x8e\x82\x8a\x2d\ +\xcb\x92\xcb\x61\x1c\x5c\x28\x7b\x5a\xab\xe5\x9a\x99\xb5\x72\xdb\ +\xdc\xeb\x65\xe8\x8b\x5a\x19\x3e\xfa\x41\x70\x67\x9a\xe6\x95\x15\ +\x77\x77\x77\x13\x0a\x85\xf2\xbe\x86\xe2\xd4\xaa\x4d\x18\xe7\x07\ +\x59\xfd\x72\x29\x31\xcd\xa3\x6d\xa3\xc9\x8f\x23\x4b\xb0\xdd\x69\ +\x7c\x7b\xbc\x8b\xc6\xc6\xc6\x89\x15\x1b\x86\x21\xe3\x19\x3c\xd2\ +\x23\x27\x3a\x8b\xa5\xa6\xa6\x46\x66\x56\xcd\x96\xfd\xef\x96\xc9\ +\xe1\x9e\x55\x92\x27\xe8\xbb\xb2\xe2\xae\xae\xae\x60\x27\x38\x17\ +\x11\x76\xcf\x91\x1a\xdb\x40\x2a\xdd\xc6\x3b\xcf\x8c\x70\xde\x99\ +\x4e\x36\xb4\x86\xa1\xcf\x7b\x00\xc1\xf3\x3c\x1a\x1a\x1a\x18\x8f\ +\x22\xaf\x78\xc0\xf7\x0a\x4d\xd3\x08\x2c\x00\x46\xce\x9e\x63\xf0\ +\xc0\xdb\x38\xa9\x1f\xb0\xf4\x21\x9c\xcc\x69\x96\xad\x3d\x4e\x38\ +\x12\x06\x09\xac\x0a\x06\xfb\xf9\x27\x1e\x8f\x5f\x38\x2f\x04\xf6\ +\x17\xcc\xf1\xee\xdd\xbb\x2f\xa4\x22\x68\xea\xf2\x9f\x6f\xbd\x76\ +\x98\xd2\xc9\x1e\xa6\xb6\x92\x47\xd6\xbc\x88\x27\x36\x9e\xed\x30\ +\x8e\x89\x3d\xd6\x75\x3d\x48\x46\x2e\x1d\x75\x75\x4b\x65\xdb\xf6\ +\xb7\x24\xeb\x5d\xc8\xb8\x23\xe9\x74\xba\xe0\xf2\xfb\x26\xf6\x58\ +\x44\xb0\x6d\x1b\x20\xd8\xfb\xfb\xf7\x62\x18\x19\x8c\xb4\xfe\xb7\ +\x3f\x70\x22\x0a\x0e\x2e\x2e\x2e\x66\x3c\xf1\x78\x82\xff\x83\x82\ +\x80\x2a\x60\x46\x4e\x38\x79\x84\x7f\x22\x14\x46\xfc\x6f\x74\xda\ +\x75\xdd\x93\x00\x7f\x01\x45\x27\xaf\x59\x55\xa5\x8e\x0e\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x4d\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x16\x00\x00\x00\x16\x08\x06\x00\x00\x00\xc4\xb4\x6c\x3b\ +\x00\x00\x00\x01\x73\x52\x47\x42\x00\xae\xce\x1c\xe9\x00\x00\x00\ +\x06\x62\x4b\x47\x44\x00\xff\x00\xff\x00\xff\xa0\xbd\xa7\x93\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x1b\xaf\x00\x00\x1b\xaf\x01\ +\x5e\x1a\x91\x1c\x00\x00\x00\x07\x74\x49\x4d\x45\x07\xd9\x01\x04\ +\x03\x32\x2d\xe1\x0e\xef\xfd\x00\x00\x03\xcd\x49\x44\x41\x54\x78\ +\xda\x9d\x93\x6b\x4c\x93\x67\x14\xc7\xcf\xdb\xf6\x6d\x29\xa3\xd2\ +\x95\x44\x4a\x69\x55\x70\x8b\x09\xac\xb4\x23\x23\x63\x86\xb9\x76\ +\xa3\x33\x23\xcb\x5c\xc2\x30\x5b\x36\x2f\x21\x20\x2e\xdb\x90\xf5\ +\xa2\x36\x59\x84\xc4\x1b\x51\xdc\xb2\x01\x9b\x92\x98\x52\x34\x31\ +\x26\x04\x9b\x08\xd8\x02\x51\x54\x3e\xcc\x81\x26\x58\x19\x1a\x1d\ +\xa0\x64\xd6\xae\x17\xe8\x4a\x97\xb5\xef\xe5\xd9\xc1\x84\xc4\x0f\ +\x33\xb6\x3d\xc9\x3f\x79\x72\xce\x3f\xbf\xf7\xbc\xe7\x3c\x0f\x05\ +\xa9\x07\x65\xb5\x5a\xf4\x26\x93\xa9\x31\x33\x33\xb3\x9c\xe3\x39\ +\x71\x34\xfa\xf7\x83\x50\x28\x78\xde\xe1\x70\x9e\xbd\x3a\x7a\x2d\ +\x01\xe9\x40\x9b\x9b\x0f\xd4\xfa\x9e\xf8\x12\x1c\xc7\x92\x48\x24\ +\x42\x66\xe7\x66\xc9\xcd\x5b\x13\xa4\xef\x42\x2f\x6f\xb1\x7d\xdb\ +\x8e\x1e\x51\xca\xd4\x77\x2b\x8d\xeb\x2f\xb9\x07\xff\x09\x04\x03\ +\x24\xfe\x6f\x9c\x2c\xc5\x96\x48\x6b\xeb\x51\xae\xac\xec\x8d\xfb\ +\x34\x4d\xff\x80\x96\x37\x51\x42\x48\x95\x2e\x7b\x29\x6b\x4b\x76\ +\xb6\x4c\xca\x71\x1c\x30\x6c\x02\x28\x8a\x82\x41\xb7\xfb\xcc\xf8\ +\xf8\x84\x1d\xcb\x01\x14\xbb\xe2\x15\xa4\xc0\x15\xca\x5f\x96\xbf\ +\x35\x33\x33\x07\x84\x10\x60\x18\x06\x58\xfc\x80\x4a\xa9\x9c\xc6\ +\xda\x93\x15\x68\x3a\x60\x69\x51\x51\x51\xd9\xf4\xf4\xef\xc0\xb2\ +\x0c\x8a\x05\x96\x61\x61\xdb\xf6\x6d\x95\x6b\xd7\xad\xa5\x9f\x35\ +\x9a\xad\x4d\xd9\xc2\x64\xa9\x6f\x6f\xaa\x78\xad\xaa\xaa\xca\x16\ +\x0c\x86\x28\x69\x86\x14\x54\x2a\x15\xe0\x02\x21\x23\x53\x5a\x88\ +\xe3\xd9\x58\xac\x2d\x1a\x6d\x6c\x6c\x5c\xdf\xb0\xbb\xe1\xd0\xc2\ +\xc2\xe2\xe1\x64\x3b\xa6\x0c\x06\xc3\x87\x08\xa3\xf2\xf3\xf3\xa1\ +\xef\x82\x0b\x8e\x1e\x6b\xc3\xae\x11\x2c\x91\x80\x5a\xad\x79\x2f\ +\x43\x22\xbd\xbb\xe1\xd5\x0d\x13\xaa\x3c\x55\xed\xf5\x6b\xd7\x17\ +\x92\x05\x4b\xb4\x5a\x6d\xf5\x83\x3f\x66\xa1\xcf\xd5\x0f\xfa\xd2\ +\x52\xe8\x77\xbb\xe1\xb6\xd7\x0b\x40\x00\x34\x1a\x0d\x64\x65\x65\ +\x49\x69\x09\x4d\xfd\x7a\xe3\x06\x3b\x34\x34\x7c\x2e\x19\x30\xd5\ +\xd2\xd2\x5c\xa3\xd7\xe9\x4b\xb4\xc5\xc5\xf0\xa7\xcf\x07\x42\x81\ +\x00\x0a\x0b\x0a\xe0\x7c\x6f\x2f\xf0\x3c\x0f\x72\xb9\xfc\xe9\x0d\ +\xb9\x77\xf7\x1e\xb1\xef\xb3\x7b\x30\x77\x4e\xf4\x22\x68\x67\x67\ +\xc7\x67\xe5\xe5\xe5\xa7\xfc\x7e\x3f\x60\xd7\xf0\xc1\x66\xd3\xf2\ +\x15\x83\x75\xea\x7c\xd0\xeb\x4a\x40\x2c\x11\x43\x20\xe0\x87\x70\ +\x28\xcc\x7c\xde\xf2\xc5\x40\x22\x91\xb0\x03\x80\xff\xb9\x4f\xba\ +\x44\xa7\x15\x5a\xcc\xe6\xef\x84\xb4\xf8\xc0\x19\x67\x8f\x60\x31\ +\xb2\x08\xc7\x8f\x1d\x07\x35\x02\x1f\xcd\x3f\xe2\xbb\x4e\x75\xc5\ +\x7c\x8f\x7d\x21\x02\x30\x3f\x36\x36\x36\x89\xf3\x1e\x07\x00\x0f\ +\xea\x2f\x14\xf9\xdf\x8e\x1b\x76\xd7\xcb\x36\xbd\x63\x70\xdc\xf1\ +\xde\xa9\xf6\x78\x3c\x90\xa3\xc8\xc1\x39\xae\x01\x65\x9e\x92\xef\ +\xec\xfc\xf9\xb7\xf6\xf6\xf6\x8b\xd8\xd9\x4d\xb4\xce\xa2\x82\xa8\ +\x25\x14\x83\x22\xf0\xbc\xb0\x58\xcd\xaf\x38\x7b\x1c\x93\x5b\x3e\ +\xfe\x88\x68\xd6\x68\x88\x4e\xaf\x23\x46\xa3\x91\x0c\x0e\x0e\xf0\ +\x7b\x9a\xf6\xf4\xa2\xa5\x10\x25\x7c\xe1\x62\x9e\x3d\xdb\xf6\x5a\ +\x36\x17\x14\x16\x9c\x75\x76\xf7\xe4\xcc\xcd\x3d\x04\x11\x2d\x82\ +\x55\xb2\x55\xb0\x73\xe7\x0e\x5c\x12\xb9\x6a\xdf\x6f\xaf\x45\xdf\ +\x0c\x24\x11\x2b\xa3\xa0\xcd\x96\x26\x8b\x22\x47\x71\xf0\xe4\xc9\ +\x2e\x51\x30\x10\x02\x01\x6e\x9e\x63\x39\xd0\xbd\xae\x03\x85\x42\ +\x71\xbf\xbe\x6e\x97\xed\xe9\xaf\x27\x19\x22\xa5\x32\x57\xf2\xf5\ +\x37\x5f\x76\xac\xce\x55\xd6\x4d\x4d\x4d\x61\x87\x32\x48\xc4\x13\ +\x10\x8b\xc5\x70\x51\x6a\x78\xbf\xd2\x14\xb2\x5a\x6c\x7b\xd1\x7b\ +\x0b\x45\x92\x05\x0b\x2c\x36\xf3\x3e\x96\xe3\xb7\x76\x3b\x9c\xfb\ +\xc3\xe1\xf0\x27\x5b\x3f\xad\x99\x5f\xbe\x97\xf8\xc2\x70\x04\xdb\ +\xe3\x27\xda\xbe\x3f\x8c\xf9\x4b\xe8\xe5\x20\x95\x70\x38\x4f\x7b\ +\x2b\x2a\x36\x0e\xe3\x51\x8e\xa2\xda\x4e\xb4\x7e\xb5\xab\xa1\x9e\ +\xfc\xd4\xf1\x23\x67\x34\x1a\x3a\x30\x97\x0d\x69\x84\x40\x22\x96\ +\x44\x95\x79\x79\xb9\x78\x5e\x96\x30\xce\x30\xab\x4b\x4b\xf5\xe4\ +\xf2\xc8\x88\xeb\xca\x95\xd1\x23\x98\x8b\xa4\x03\x16\x45\xa3\xd1\ +\x5f\x6a\x6a\xaa\x1d\x1a\x8d\xfa\x34\x25\xa0\x1e\xe2\x8c\xab\x47\ +\x46\x2e\x0f\xb8\x5c\x17\xad\x58\x7f\x0c\x69\x06\x85\x12\x1c\x3a\ +\x72\x70\x07\xc3\x24\xea\x70\x61\xd4\xed\x49\x6f\xff\x90\x67\xb8\ +\x1b\xf3\x3e\x14\x49\x17\xfc\x1f\x0d\x85\x8c\x2f\xad\xa0\x3f\x12\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x84\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\x01\ +\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\x35\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x3a\x42\x3a\x00\x00\x00\x2c\x32\x2c\ +\x00\x00\x00\x20\x20\x20\x00\x00\x00\x15\x15\x12\x00\x00\x00\x05\ +\x05\x05\x3d\x3e\x3c\x00\x00\x00\x3d\x3e\x3b\x63\x63\x63\x00\x00\ +\x00\x01\x01\x01\x30\x31\x2f\x02\x02\x02\x24\x25\x24\x02\x02\x02\ +\x18\x18\x17\x04\x04\x04\x0d\x0d\x0d\x01\x01\x01\x02\x02\x02\x04\ +\x04\x04\x05\x05\x05\x06\x06\x06\x07\x07\x07\x08\x08\x08\x0c\x0c\ +\x0c\x0d\x0d\x0d\x10\x10\x10\x14\x14\x13\x14\x14\x14\x19\x19\x19\ +\x20\x20\x20\x21\x22\x21\x22\x22\x22\x27\x27\x26\x2f\x30\x2e\x31\ +\x31\x31\x32\x33\x31\x37\x37\x37\x3a\x3a\x3a\x3d\x3e\x3b\x3f\x3f\ +\x3f\x41\x41\x41\x41\x42\x3f\x44\x45\x43\x45\x45\x45\x47\x47\x47\ +\x4a\x4a\x4a\x4a\x4b\x48\x4b\x4b\x4b\x4d\x4e\x4b\x4e\x4e\x4e\x4e\ +\x4f\x4d\x50\x50\x50\x53\x53\x53\x54\x54\x54\x56\x56\x55\x56\x57\ +\x54\x58\x59\x56\x59\x59\x59\x5b\x5b\x5b\x64\x64\x63\x64\x66\x62\ +\x66\x68\x64\x68\x68\x68\x6a\x6a\x6a\x6a\x6b\x67\x71\x71\x71\x75\ +\x75\x75\x79\x79\x79\x7a\x7a\x7a\x84\x84\x84\x86\x86\x86\x8a\x8a\ +\x8a\x90\x90\x90\x9f\x9f\x9f\xac\xac\xac\xae\xae\xae\xb2\xb2\xb1\ +\xb7\xb8\xb7\xc1\xc1\xc1\xc4\xc5\xc4\xc6\xc6\xc6\xcf\xd0\xcf\xd4\ +\xd4\xd4\xde\xde\xde\xe1\xe1\xe1\xe7\xe7\xe7\xe9\xe9\xe9\xea\xea\ +\xea\xed\xed\xed\xf0\xf0\xf0\xf3\xf3\xf3\xf4\xf4\xf4\xfa\xfa\xfa\ +\xfb\xfb\xfb\xfc\xfc\xfc\x75\x4a\xf7\xaa\x00\x00\x00\x18\x74\x52\ +\x4e\x53\x00\x1f\x1f\x2e\x2e\x3f\x3f\x54\x54\x65\x65\xb8\xca\xca\ +\xd4\xe5\xe5\xe5\xf0\xf0\xf8\xf8\xfd\xfd\x0a\xa9\xac\x9a\x00\x00\ +\x00\x9d\x49\x44\x41\x54\x18\x19\x9d\xc1\x03\x16\x02\x01\x00\x05\ +\xc0\x9f\x6d\xdb\xb6\x6d\xdb\x76\x5b\x7b\xff\x23\x84\x3d\x40\xef\ +\x35\x03\xfc\x89\x2e\x0a\x53\x04\xf8\x62\xca\xea\xe3\x41\xbf\x37\ +\xec\xb4\x7d\xf8\x60\x2b\x8a\x33\x62\x52\x1f\x11\xf3\xa2\x1b\x6f\ +\x5c\x55\xaa\xb6\x7f\xdc\x17\x04\x79\xc9\xd9\x01\xf0\x35\xd1\x4c\ +\xb2\x74\x78\x3c\xc9\x5b\x21\x62\x04\x20\xf1\x47\x42\xc1\xe0\x94\ +\x24\x9f\x53\x8f\x53\x0b\x80\xa7\xb6\x58\x6d\x89\xc3\xf5\x74\x3d\ +\xe6\x74\x3a\xbc\x71\x94\x06\xfd\xf6\xbc\x29\xaf\xcf\x3b\x97\x1e\ +\x1f\x2c\xb9\x23\xbe\xcc\xc7\x2a\xab\x46\xc0\x80\x2f\x86\xd4\x9b\ +\xae\x36\xbb\xad\x6a\xd6\x04\x0a\x4d\x68\xa6\x88\xf1\xdb\x0b\x5c\ +\x72\x1c\x18\xbd\x2b\x0f\x2f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ +\x42\x60\x82\ +\x00\x00\x03\xd9\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x56\x49\x44\ +\x41\x54\x38\x8d\x5d\x93\x69\x4c\x9b\x05\x1c\xc6\x7f\x6f\x5b\x7a\ +\x8d\xc2\x04\x59\xc9\xca\xb6\x76\x18\x43\x09\x21\x48\x1b\x4d\x48\ +\x16\x17\x98\x23\x4e\x8c\x71\x09\x7c\xf0\xc3\x92\x7d\x61\x1e\x78\ +\xb0\x30\x0d\xc9\x92\x79\xc4\x04\xfd\xe0\x99\xa8\x9d\x31\x4d\x4c\ +\x66\x5c\x62\xc2\xcc\x74\x23\xd3\x79\x40\xd8\x22\x3d\x24\x88\x1b\ +\x30\x36\xca\xa8\xc5\x4a\x2f\x58\xe9\x0b\xe5\x6d\xff\x7e\x98\x43\ +\xe7\xf3\xfd\x39\xfe\xc7\xa3\x88\x08\xff\x87\xe2\x0d\xed\x07\x1e\ +\x07\x3e\x3b\x76\x5f\x6c\xf1\xf2\x37\x7f\xbd\xac\xae\x16\x16\x80\ +\xf7\x83\xd2\x7d\x17\x41\xf9\xaf\x80\xe2\xf7\x57\xc9\xe1\xc3\x4b\ +\xae\x8e\xd0\x47\x07\x5b\xd6\xdb\x5a\x1a\xd1\xb1\x16\xdf\x16\x8d\ +\xc6\xb6\xe4\xd3\x96\xd4\x97\xaf\xe7\x77\x37\x61\x54\x76\xb2\xb0\ +\x7a\x42\x4e\x14\xef\x12\x50\x7c\xbe\x67\x81\x47\x8f\xb9\x5c\xd7\ +\x9e\xab\xab\x7f\xaa\xbc\xac\xd4\xbe\xb8\xb8\x48\x24\x12\x61\x72\ +\x72\x12\xb3\xc9\x2c\x96\x44\x75\x77\xe0\x8d\xd4\x63\xa0\xdc\x3c\ +\xc9\x91\x97\x44\x44\x74\xff\xda\x2b\x55\x47\x5d\xae\xdd\x3d\x0d\ +\x0d\x4f\x57\x56\x6c\xb5\xe7\xf3\x79\x34\x4d\xa3\x50\x28\x60\x32\ +\x99\xa8\x73\xd7\x29\x0f\x76\xd4\xbf\x00\x62\x50\xc0\xde\xc9\xab\ +\x25\x9b\x09\x94\x90\xb2\x7d\x50\xbd\xf0\x24\x81\xc9\x0f\x6c\xaa\ +\xaa\xcb\xab\x2a\xc6\x9a\x1a\x0c\xbb\x76\x91\x52\x55\x1c\x0e\x07\ +\x4e\xa7\x13\x51\xe7\xf8\xf9\xf4\xd4\xc0\xc5\x57\xd6\x3f\xee\x86\ +\x2c\x90\x36\x28\x21\xa5\x15\xe8\x4d\x9c\xfa\xb4\x65\x9b\xef\x2b\ +\xdd\x4d\x11\x92\x40\x02\x58\x31\x99\xd8\x7f\xfc\x38\xee\x7d\xfb\ +\xd0\x34\x0d\x6b\xf1\x4f\xf6\x3c\x3c\xfa\x8c\xc3\xd2\x34\x83\x6a\ +\x38\x08\x7c\x6d\x00\xcc\x00\xf1\xd9\x6b\x4a\x95\xd9\x4c\xb9\x5e\ +\x8f\xc9\xe3\xa1\xa9\xbd\x9d\xba\xae\x2e\xb6\xbb\x5c\x14\x8b\x45\ +\xf2\xb1\xd3\x98\xec\x7b\xa8\xd0\x92\xe5\x8b\x6f\xae\x1f\x92\xa3\ +\x64\x81\x4a\x44\x04\x82\xd4\x77\xed\xd4\x75\x9e\x69\x6d\xcd\xcd\ +\x4d\x4d\x89\xa6\x69\x72\x07\xda\xad\x29\xb9\x7a\x76\xaf\x2c\x87\ +\x0f\x89\x96\x38\x2f\xc5\xdc\x0d\x49\xfe\xda\xb3\x71\xb1\xc9\xf7\ +\x44\x10\x9f\x45\x77\x12\xa5\xda\xe7\xa1\xb3\xe6\xc5\xa2\x23\x91\ +\xcb\xfd\x64\xb4\xd9\xd0\xeb\xf5\x00\x14\xd3\x3f\x90\x1f\x3f\xc0\ +\x56\xb9\xcc\xd2\x42\x90\x8d\xcc\x38\xca\x46\x1c\x4b\xc5\x03\x06\ +\x67\xef\xf8\xdb\x1e\x8e\xd4\xea\x80\x36\xc0\x5b\xd6\xc8\x23\xba\ +\x44\x22\x32\x3f\x3f\xff\x63\x2e\x97\xbb\x7d\x18\x9b\x17\xb3\xcd\ +\x81\xc5\x62\x43\xcb\x5e\x41\x4d\xfe\x82\x9a\xfe\x8d\x02\xa5\x18\ +\x6b\xd7\xee\x9f\x77\xbb\x9f\xd7\x01\xdf\x03\x97\x32\xd3\x0c\xea\ +\x4a\x4a\x8c\x13\x13\x13\xfd\xd1\x68\x74\x03\x40\x31\x94\x51\xac\ +\xee\xc1\x6c\xb5\x71\x4f\xb9\x95\xe9\xdf\x03\x64\x97\x82\x14\xd6\ +\xe2\xac\x5b\xf6\x72\xb5\xad\xed\x06\x22\x82\x88\xd0\x00\xb5\x9f\ +\x38\x9d\x7e\x11\x61\x68\x68\xe8\x54\x2c\x16\xfb\x67\x0b\x45\x29\ +\x5c\xe9\x92\xe4\x05\xbb\x4c\x7f\xa1\xc8\xec\xd9\x26\x89\x86\x07\ +\x64\x74\x74\x74\xd6\xeb\xf5\x5a\x37\x1f\x29\x0b\x7f\x4c\xa5\xd3\ +\x43\x00\xa1\x50\xa8\x7f\x66\x66\x66\x25\x93\xc9\x00\x0a\xd4\xf4\ +\x63\x30\xda\x28\xb1\x54\x91\x2b\xed\x22\x5d\x72\x20\x3c\x3c\x3c\ +\xdc\x1e\x08\x04\x72\x9b\x09\x1e\x02\xfd\x5b\xcd\xcd\xad\x83\x03\ +\x03\x55\x22\x82\xdf\xef\x7f\x6f\x64\x64\x44\x92\xc9\xa4\x2c\x2f\ +\x2f\x4b\x6a\xfa\x43\x89\xcd\x8d\xc9\xd8\xd8\xd8\xb9\xde\xde\xde\ +\x8a\x3b\x3c\xc5\x07\xaf\xd5\xb8\xdd\x1d\xf7\x7a\x3c\xb5\x5b\xac\ +\xd6\x72\x35\x9b\x55\xe3\xc1\xe0\x6c\xe4\xfa\xf5\xa1\xe2\xbb\xef\ +\x34\x3b\x9d\xae\x46\x7b\xb5\x3d\xbe\x9a\x5d\xfd\x2e\x1c\x0e\x9f\ +\xe9\xeb\xeb\xbb\x24\x22\xda\x66\x03\x3e\x87\x1e\x1d\xb4\xe7\xa1\ +\x52\xb7\x63\x07\x1b\x16\xcb\xad\x54\x22\x11\x19\x4e\xa5\xce\x7d\ +\x0b\x0b\x7a\xbd\x7e\x4b\xa1\x50\xe0\xf6\x2c\x08\x90\x07\x56\x80\ +\x25\x20\xf3\x37\x1b\x19\xb1\xb5\xb0\xfa\x5b\x79\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xde\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x5b\x49\x44\ +\x41\x54\x78\xda\xa5\x93\x31\x68\x14\x41\x14\x86\xff\x37\x33\x3b\ +\x7b\x9b\xcb\x5d\x2e\xb9\xd3\x5c\x52\x29\x44\x93\x42\xb0\x50\x2c\ +\xbc\x4a\xec\x2c\x8c\x85\x91\x44\x04\x8b\x34\x12\xd0\x56\x02\x62\ +\x63\x21\x68\x23\x16\x92\x26\xa0\x55\x42\x62\xe1\x69\x91\x2a\x76\ +\x82\x36\x2a\x36\x62\x08\x16\x1a\xc3\x5d\xdc\x35\xe2\x5d\xee\x6e\ +\xf7\x6e\x77\x9c\x5d\xd7\xcd\x69\xec\xfc\xe1\x63\x87\x37\x3b\xff\ +\xbc\xf7\x78\x43\x4a\x29\xfc\x8f\x04\xfe\x12\x9d\x59\x31\x91\x6d\ +\x4e\x13\x63\x53\xc3\x03\xe9\xc1\x00\xe8\xab\xfc\x68\xbf\x57\xc0\ +\x22\xc8\x5c\x56\x8f\x4e\x3b\xe8\xd2\x1f\x19\xd0\xe4\xb3\xf1\x42\ +\x9f\x9c\x3b\x7b\xac\x58\x1c\x1d\xee\x85\x5d\xf3\x40\x00\x06\xb2\ +\x29\xac\x55\x9a\x28\xbf\xb1\x1d\xa7\xee\x8f\xab\x87\xa7\x5e\xec\ +\x31\xa0\x4b\x2b\xa5\x91\x62\xcf\xf3\xf3\x27\x86\xa4\xe0\x0c\xdf\ +\x6a\x2e\xee\x4c\x8d\x81\x08\x98\x5d\x5a\x43\xb6\xd7\x42\x27\x50\ +\x78\xfc\xda\xf1\xd6\x6d\xef\x82\x9a\x3b\x59\x86\x16\xd3\x80\x2e\ +\xaf\xe6\xf3\x39\xab\x5c\x1a\x2b\x48\xbb\xe1\xa3\x52\xef\x20\x9f\ +\x31\x90\x36\x39\x7a\x24\xc7\x50\x2e\x85\x4a\xcd\x87\xdd\x08\x50\ +\x3a\xd4\x2f\x0b\x59\x6b\x8e\xae\xad\x9b\xbb\x3d\x10\x34\x71\x70\ +\x30\x93\x77\x1a\x0a\xa0\x40\x43\xf8\xf8\xb5\x85\xa5\x57\x55\x70\ +\x0e\xac\xae\xd5\x90\xb2\xac\x30\x1e\x71\x60\x7f\xba\x68\x6f\xd4\ +\xa7\x01\x3c\x88\x0c\x0c\x69\x4e\x81\x0b\x54\xb5\x41\x28\xdf\x0f\ +\xd0\x70\x7d\xdc\x78\xfa\x29\x3a\x90\xe9\xed\x01\x0f\xb7\x28\x44\ +\x01\x4c\xc0\x10\xe6\xc5\xc4\xa0\x4d\xe2\xf0\xbb\x6a\x1b\x39\x4b\ +\xc0\x34\x38\xdc\x96\x8b\xea\xdd\xe3\xf8\xad\xc1\xeb\x6f\x61\xa6\ +\x8d\xc8\x40\xfb\xe2\x7b\xcb\x47\x9b\x19\x03\x49\x0f\xc0\x8d\x6d\ +\x4f\x09\x6c\x35\x09\x1b\x75\xc0\x6e\x4b\xb0\x2b\x2f\x13\x03\x5d\ +\x0d\xbe\xec\x00\x1b\x3b\x84\xad\x16\x83\x47\x06\x20\x8c\xfe\xae\ +\x1e\x48\xe7\x57\x7d\x0c\x8a\x28\x02\x2a\x48\x0c\x14\x71\x28\x26\ +\x01\xa2\x18\xa6\xc1\x87\xae\x0c\xe4\x82\x26\xcc\x24\x46\x46\x75\ +\x26\xe2\x22\xbc\x31\x46\xc6\x5f\x73\x71\xd7\xc0\x63\xf3\x3a\xb8\ +\x99\xfc\x40\x2c\xec\x24\x12\x85\x6b\xa2\x68\x2f\x32\x63\xcc\x86\ +\x34\x97\x13\x03\x75\x7f\xc4\x05\x97\x33\x1a\x37\xca\xa0\xe3\xe9\ +\xd8\xd1\xdd\x12\xee\x1d\x01\xbc\x26\x62\xb9\x20\x7e\x4e\xcd\x66\ +\x9c\xbd\xa3\x7c\x6b\xab\x04\xc5\x9e\xb0\xc0\x2f\x14\x45\x13\xc3\ +\x19\x86\x7d\x69\xd2\x83\xa5\xf0\xb9\x65\xc1\xf6\xd8\x26\x80\x19\ +\x75\x33\x5f\xde\x33\xca\x49\xe0\x76\x2d\x8f\x8e\x3b\x01\x45\x93\ +\x8c\x30\xaa\xd9\xd6\x23\x1c\x36\x79\x01\xb9\xed\x79\x75\x75\xc4\ +\xfd\xe7\x63\x22\x22\x09\x20\xd5\x85\xa9\x11\x71\x99\xbe\xa6\xad\ +\xf1\x34\xad\x98\xa6\x3e\xdb\xf9\x09\xcf\x9a\xe3\x95\x25\xec\x84\ +\x76\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\xb9\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x36\x49\x44\ +\x41\x54\x78\xda\x4d\x93\x3d\x6f\x1c\x55\x18\x46\xcf\xbd\x33\x3b\ +\xbb\xb3\xb6\xd7\xf6\xee\x3a\xb6\x63\x3b\x61\x63\xb0\x85\x6d\xd6\ +\x14\x88\x00\x12\x04\x51\x50\xd1\xc0\x0f\x08\x14\x34\x20\x21\x41\ +\x9a\x54\x60\x5b\x08\x09\x29\x92\x05\x2d\x12\x7f\x81\x82\x16\x84\ +\x28\x88\x42\x11\x05\x14\x1c\x1b\x30\x38\xfe\x5c\xaf\xe3\x8f\xd9\ +\xaf\x99\xd9\x99\x3b\x73\x2f\x1b\x8a\xc8\xa7\x79\xaa\xf7\x3c\x7a\ +\x8a\x57\x18\x63\x38\xcf\x58\x65\x65\xae\x54\x76\x97\x5d\xd7\x79\ +\xc5\xf7\xe3\xa2\x10\x42\xa6\x3a\x3d\x0e\x83\xe8\x4e\xd4\x35\x9f\ +\x1f\x6d\x2f\xff\xc1\x39\x9e\x08\xa6\xa6\x6e\x64\x87\x2e\x8e\xdf\ +\x72\x73\xce\x07\x6f\xbc\x3e\x63\x37\x9b\x21\x27\x9e\x8f\x8a\x0d\ +\x71\xac\x48\x8c\x66\x77\xc7\x4b\x5b\xcd\xce\x37\x56\xd4\xf9\x64\ +\x6f\x6f\x35\x7a\x22\x78\x7c\x9c\x1d\x2a\xdf\x5d\x5c\x98\x98\x7f\ +\xfb\x9d\x45\x71\x61\xa2\xc8\x8f\x3f\xfd\xc5\x6f\x1b\x47\x5c\x99\ +\x1d\xc7\xf7\x9a\x10\x29\x94\x86\xed\x7f\x4f\xd8\x7b\x78\xfc\xb7\ +\x15\xb5\xaa\x8f\x25\x12\x20\x3f\x3c\xfa\x45\x75\x7e\x72\xbe\xba\ +\x38\x21\xc6\xa7\x4a\x64\x72\x0e\x99\x81\x3c\x93\x95\x32\xbd\x19\ +\xd4\xbd\x98\x03\xaf\xcb\xfe\x71\x9b\x85\x17\xaf\x50\xbc\x50\x98\ +\xe9\xca\xfc\xd7\x00\x72\x70\x6c\x65\x4e\x5a\xd6\x47\x0b\xcf\x8d\ +\x8a\xe9\xd9\x51\x0a\x43\x79\xc2\xd4\xd0\xe8\xa6\xcc\xcc\x4f\xd2\ +\x8a\x63\x9a\xb1\x22\x10\x92\x47\x6d\xc5\xd6\x81\x47\x90\xa4\x38\ +\xd9\xdc\xfb\x83\xa3\xcb\x55\x59\xe8\xb3\x3f\x9c\xae\x0c\x3b\x1a\ +\xc9\x33\x33\x63\xc4\x1a\x52\x04\x2f\x5f\xad\xf4\x9a\x43\x6a\x9d\ +\x94\xd4\x71\x68\x26\x1a\xe9\xf6\x32\xd4\x4c\x3f\x5f\x61\xac\x52\ +\xb6\x1c\x47\x7f\x2a\x8d\xe1\xda\xe1\x23\x9f\xed\x7a\x9b\x4e\xa8\ +\x48\xb4\xc1\xcd\x65\xd0\x68\xfc\x28\xc2\x38\x36\xca\xc9\x20\x5c\ +\x17\xe3\xe6\x48\x84\xee\x4d\xe8\xa7\x3c\x59\xc2\xb2\xac\xab\xb6\ +\x8a\xf5\x14\x19\xc1\xda\xd6\x09\x5b\xfb\x0d\xea\xad\x98\x91\x91\ +\x3e\x0e\xce\x42\x46\x47\x0b\xcc\x5b\x36\x0f\x76\xcf\xd0\x81\xc2\ +\xb6\x21\x6f\x65\xc9\x17\x06\x88\x83\x08\xa5\x28\xdb\x18\x61\x82\ +\x50\x91\xeb\x77\xb9\x7d\xbf\xc6\x4b\x2f\x5c\xe6\xc0\x0b\xd9\x3c\ +\xeb\xe2\x45\x09\x5d\xa5\xff\x6f\x16\x58\x20\x05\x41\xac\x48\x75\ +\x42\x62\x0c\x02\x81\x2d\xa4\xd8\x49\x94\x19\x8a\x52\x43\xed\x2c\ +\xe0\xbb\x5f\x77\xa8\x3c\x55\xa6\x91\x82\x2f\x2d\x54\xc6\x22\x3b\ +\x20\x31\x52\xa0\x4d\x4a\x9f\x23\x59\xdb\xa8\x13\xd5\x4e\xd0\xa9\ +\x3e\xb4\x05\xf2\xe7\x34\x4c\x17\x07\x1c\x8b\x66\x98\x30\x52\xb2\ +\xd9\x38\x0e\xf8\xf8\xad\x67\xe9\x28\xc3\x2f\x3b\x4d\xfe\x3c\x68\ +\xd2\x35\x82\x62\xd6\xc2\x3b\x6c\x10\xf8\x3e\x69\x3b\x22\xea\xaa\ +\x3b\x56\x14\xbe\xba\x8b\x31\xef\xe5\x4a\x39\xa7\x6b\x49\xfa\x86\ +\xfb\xa9\xce\x8e\xb0\x70\xa9\x08\x96\x45\xa9\x90\xa3\x5c\xc8\x72\ +\xa9\xe8\x52\x7b\xd4\xa6\xd9\x08\x48\x1a\x3e\xde\x86\x17\x87\x0d\ +\x79\x5d\xc6\xf1\xd2\xba\x52\xe6\x96\x5f\x0b\x74\xd6\xb6\x68\x77\ +\xba\x6c\xd6\x3b\xec\xb7\x42\x86\xf3\x36\x63\x83\x59\xaa\x17\x07\ +\xf0\x13\x68\x07\x11\xb6\xd1\xb4\xb6\x5a\x26\x68\xc5\x5f\x29\xb5\ +\xb4\x26\x01\x5a\x9e\xf7\x65\xa3\xd6\xb9\xdb\xde\x38\xd5\x39\xd7\ +\x21\x50\x29\xf5\x76\xcc\x78\x7f\x86\x91\x9e\x24\x4e\x52\x52\x93\ +\x20\xa4\xc5\xc9\xbd\xba\x69\x6d\x37\x7f\x8f\xfc\xce\x67\x00\x36\ +\x80\x31\xab\x91\x10\x37\x5e\xd3\x9b\xdc\x6c\x1f\xdd\xbb\x79\xf9\ +\xda\xd3\xf9\xa3\xe1\x3e\xb6\x7a\xcd\xa7\x71\xca\x83\xfb\x75\xd6\ +\x6f\x3f\xe4\x9f\xef\xd7\xa2\xf0\xd4\x5f\x8d\x3a\xed\x15\x63\xce\ +\x3d\xd3\x79\x84\x58\x99\xcb\xe5\x79\x37\x93\xb5\xde\x94\x99\x4c\ +\x25\x31\x5a\x48\xad\x77\xa2\x20\xfe\x21\x0e\xe5\xb7\xc6\x2c\xad\ +\x73\x8e\xff\x00\x18\x8f\xb3\xf0\x58\xa2\x3f\xb8\x00\x00\x00\x00\ +\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\xaf\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x03\x2c\x49\x44\ +\x41\x54\x38\x8d\x65\x93\xcf\x4b\x23\x77\x18\xc6\x9f\x99\xcc\x37\ +\x33\x49\x1c\x35\xc9\x68\xd4\x91\x74\xa3\x11\x2d\x83\x84\x24\xe4\ +\x60\xda\xaa\xb9\xe8\xa9\x67\xf5\x52\xc5\x56\xf6\xda\xbf\xa0\xb0\ +\x7b\x2a\x58\xaa\xd0\x4b\x77\x0f\xee\xa1\x47\x41\x84\xae\x07\x11\ +\x8d\x22\x6c\xd5\x29\x15\xb3\x48\x41\x83\x07\x95\x0c\x18\xfc\xc5\ +\xcc\x38\x3a\xbf\xbe\xbd\xec\x8a\xd4\x07\x1e\x78\x0e\xcf\xfb\x39\ +\xbd\x0f\x43\x29\xc5\x53\x75\x74\x74\x44\x1a\x1a\x1a\x7e\xf0\x3c\ +\xef\x9b\xbe\xbe\xbe\x2c\xc7\x71\x82\x69\x9a\x1f\x0f\x0e\x0e\x3e\ +\xf0\x3c\xff\xee\xfc\xfc\xfc\xec\x69\x9f\x79\x0a\x68\x6a\x6a\x1a\ +\xee\xec\xec\x7c\x97\x4c\x26\x5f\x44\xa3\x51\xc4\x62\x31\xc4\xe3\ +\x71\x84\xc3\x61\x78\x9e\x87\x8b\x8b\x0b\x6b\x6d\x6d\xed\xc7\xc3\ +\xc3\xc3\xb7\x9f\x6f\xb8\xcf\x41\x92\xa4\xef\xd3\xe9\xf4\xdb\x54\ +\x2a\xc5\x2a\x8a\x82\x7a\xbd\x0e\x4a\x29\x7c\xdf\x87\xe3\x38\x48\ +\xa5\x52\x88\xc7\xe3\xa1\x5a\xad\xf6\x46\x14\xc5\xbc\xae\xeb\x2f\ +\x1f\x01\x81\x40\xe0\x0b\x45\x51\x7e\x6d\x6b\x6b\x63\x67\x66\x66\ +\x90\x4c\x26\xb1\xb0\xb0\x00\xc3\x30\x70\x7f\x7f\x0f\xcf\xf3\x50\ +\x28\x14\x40\x29\x85\x61\x18\x38\x39\x39\x99\x11\x45\xf1\x4f\x5d\ +\xd7\xdf\xb3\x00\x10\x89\x44\xde\x24\x12\x89\xc6\xe9\xe9\x69\xc8\ +\xb2\x8c\xad\xad\x2d\xd4\x6a\x35\x10\x42\x70\x77\x77\x07\xdf\xf7\ +\xb1\xbe\xbe\x0e\x86\x61\x50\x28\x14\xa0\xeb\x3a\xe3\x79\xde\xef\ +\x2d\x2d\x2d\x84\x8d\xc5\x62\x5c\x77\x77\xf7\x60\x7b\x7b\x3b\xd2\ +\xe9\x34\x2a\x95\x0a\x56\x56\x56\x40\x08\x81\xa2\x28\x18\x1a\x1a\ +\x82\xe3\x38\xd8\xde\xde\xc6\xfc\xfc\x3c\x38\x8e\x43\xb1\x58\x04\ +\xcf\xf3\xf2\xd5\xd5\x55\x9e\x05\x90\x65\x18\x26\xd4\xd3\xd3\x03\ +\x00\x50\x55\x15\x0f\x0f\x0f\xb0\x2c\x0b\x5d\x5d\x5d\x18\x18\x18\ +\x80\xa6\x69\x58\x5a\x5a\x42\xb9\x5c\x86\xeb\xba\xc8\x66\xb3\xa0\ +\x94\x22\x91\x48\x7c\xcd\x0a\x82\xd0\x1f\x8d\x46\xc1\xf3\x3c\x08\ +\x21\xd0\x34\x0d\x81\x40\x00\x94\x52\x10\x42\xc0\xf3\x3c\x2a\x95\ +\x0a\x00\xa0\x5a\xad\x22\x10\x08\x20\x1c\x0e\x43\x10\x04\x98\xa6\ +\xf9\x25\xcb\x30\xcc\xbf\xa1\x50\x08\x8e\xe3\x20\x18\x0c\x22\x14\ +\x0a\xc1\xb2\x2c\x58\x96\x05\x96\x65\x41\x08\x81\x65\x59\xf0\x7d\ +\x1f\x92\x24\x21\x1e\x8f\x83\x10\x02\x8e\xe3\xe0\xfb\xfe\x31\x1b\ +\x0c\x06\xff\x76\x1c\xc7\xd9\xdf\xdf\x07\x21\x04\xa5\x52\x09\x86\ +\x61\xa0\x5e\xaf\x63\x63\x63\x03\xcb\xcb\xcb\x30\x4d\x13\x00\x30\ +\x36\x36\x86\xe6\xe6\x66\xa8\xaa\x0a\x8e\xe3\x20\x8a\xe2\x5f\xa0\ +\x94\x62\x70\x70\x50\x1d\x19\x19\xa1\xe5\x72\x99\x5e\x5f\x5f\xd3\ +\xd9\xd9\x59\xda\xdf\xdf\x4f\x53\xa9\x14\x15\x04\x81\xb6\xb6\xb6\ +\xd2\x89\x89\x09\xaa\xeb\x3a\xd5\x34\x8d\xe6\x72\x39\x9a\x4e\xa7\ +\xaf\x01\xf0\x0c\xa5\x14\x8d\x8d\x8d\xca\xe4\xe4\xe4\x3f\xd5\x6a\ +\x35\x38\x37\x37\x87\xde\xde\x5e\xa8\xaa\x8a\xd5\xd5\x55\x98\xa6\ +\x89\x4c\x26\x83\xd1\xd1\x51\x50\x4a\x31\x35\x35\x85\x9b\x9b\x1b\ +\xec\xee\xee\x7e\x67\xdb\xf6\x1f\x8f\xaf\x9c\xcb\xe5\x7e\x2a\x16\ +\x8b\xaf\xce\xce\xce\x30\x3e\x3e\x8e\xe1\xe1\x61\xb8\xae\x0b\xdb\ +\xb6\xe1\xfb\x3e\xf6\xf6\xf6\xb0\xb8\xb8\x08\xc7\x71\x70\x74\x74\ +\xf4\xfe\xf8\xf8\xf8\xdb\x67\x5b\x28\x95\x4a\x2f\xf3\xf9\xfc\x2f\ +\xb7\xb7\xb7\x0d\x97\x97\x97\x10\x04\xe1\x11\x60\xdb\x36\x58\x96\ +\x75\x76\x76\x76\x7e\xae\xd7\xeb\xaf\x28\xa5\xde\x33\x00\x00\xc8\ +\xb2\x2c\x65\x32\x99\xd7\xb2\x2c\x7f\x25\x49\x52\x17\xcb\xb2\x44\ +\xd3\xb4\xea\xe6\xe6\xe6\x07\xd7\x75\x7f\x3b\x3d\x3d\xfd\xf8\x6c\ +\x8d\x0c\xc3\x00\x40\x04\x80\xf8\x3f\x47\x00\x04\x01\xd8\x00\x2c\ +\x00\x06\x00\xfd\x93\x6f\x00\x98\xff\x01\x68\xa5\x71\xa1\x90\xf8\ +\x3b\x1c\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xfa\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x77\x49\x44\ +\x41\x54\x38\x8d\x8d\x51\x5d\x48\x53\x61\x18\x7e\xbe\x1d\x27\xc5\ +\x38\xb2\xf2\x0f\xe7\xdc\xa6\xce\x99\x90\x08\x5e\x14\x87\x4c\xdc\ +\xa0\xa0\x2e\x02\x2f\x0a\x4f\x21\x11\xb4\xba\x0a\x8e\x81\x5d\x19\ +\x84\x79\x37\x08\xaa\x0b\x85\xf0\xa2\xc2\x20\xc8\x9b\xa8\x0c\xbb\ +\x31\xc1\x18\xd1\x4d\x08\x05\x2d\x2d\x37\x9b\xba\xb9\xb5\xce\xce\ +\xe6\x99\x9e\x73\xde\x2e\xdc\x16\x53\x09\x1f\x78\xf9\xf8\xbe\xef\ +\x79\xde\x9f\xe7\x65\x44\x84\x9d\x60\x8c\x31\x00\x0d\x00\x3c\xf9\ +\xa7\x6f\x00\x22\xb4\x17\x99\x88\x76\x05\x80\xd6\x40\x20\x30\x21\ +\xcb\x72\x42\x96\xe5\x44\x20\x10\x98\x00\xd0\xba\x27\x77\x0f\xb1\ +\x45\x14\xc5\x61\xc3\xd0\x75\xe5\xf7\x42\x26\x9b\x5a\xcc\x1a\x86\ +\xa1\x8b\xa2\x38\x0c\xc0\xf2\xdf\x04\x79\x08\xb1\x68\x68\x55\xcb\ +\x46\x48\x59\x1c\x25\xe5\xc7\x38\x69\x1b\x2b\x94\x58\x0b\xad\x03\ +\x10\x76\x76\x6d\xda\x31\x11\x2f\x49\x92\x58\x5d\xe7\xae\x55\x57\ +\x5e\x42\x57\x57\xa1\xab\x51\xe4\xd6\xa6\x70\xb8\xc6\x5d\x29\x49\ +\x92\x08\x80\x2f\xf1\xab\x50\x99\x31\x06\xab\xd5\xda\x3d\xff\xf9\ +\xe3\xd3\x1a\xfe\x8f\x43\x59\xb8\x8f\xf1\x37\x07\xc1\x71\x1c\xae\ +\x9c\xd1\x60\x69\xbc\x86\x84\xc2\x2f\xdb\x1c\x6d\x7d\x00\xe6\x8a\ +\x1d\x17\x5a\x31\x9b\xcd\xfc\xd0\xd0\xd0\x28\x11\x51\x6c\xd6\x47\ +\x2b\xd3\xad\xe4\xf5\x7a\xa9\xab\xab\x8b\xa2\x53\x4e\x8a\xcd\x7a\ +\x89\x88\x48\x92\xa4\x07\x00\xf8\x12\x0f\x00\xc0\x6e\xb7\xf7\x44\ +\x97\xbf\x2f\xe7\x12\x1f\x28\x32\x09\x8a\x4c\x82\x5c\x2e\x17\xb9\ +\x5c\xae\xe2\x5d\x8d\xcf\x50\x34\xfc\xe5\x17\x80\x13\x85\xe2\x26\ +\x00\xe8\xed\xed\xad\xf4\xfb\xfd\x7d\x75\xf5\xcd\xf5\xe9\xd0\x3d\ +\x80\x71\xdb\x86\xf0\x3c\x78\xfe\xdf\xc8\xf2\xd7\x3b\xa8\x6b\x68\ +\xb3\x0d\x0c\x0c\x5c\x28\x78\x61\x02\x60\xc9\x64\x32\xc7\xaf\xfb\ +\xfb\xcf\x6d\x26\x83\x50\x57\x5f\x03\xa4\x03\x00\x3a\x9b\x15\x74\ +\x36\x2b\xc5\x04\xb9\xf8\x0c\x72\xeb\xef\x71\xeb\xe6\xd5\xf3\x00\ +\xda\x19\x63\xe0\x04\x41\x70\x57\x54\x54\xf8\x4f\x9d\x3e\x7b\x32\ +\xf9\xe9\x32\x34\x25\x54\x14\xf8\x3a\x52\xf0\x75\xa4\x4a\xd6\xa4\ +\x67\x7f\xa2\xb6\x7d\x90\x97\x65\x39\x13\x0c\x06\xe7\x98\xc7\xe3\ +\xf1\xbd\x9b\x7e\xfb\xa8\xd6\x12\x6e\x8a\xcf\xf6\x94\x90\x6f\xdc\ +\xdd\x3e\x1f\xde\x2e\xdd\x75\x75\xf7\x0c\xe2\xd9\xfa\xa5\x06\x67\ +\xcb\x45\x53\x55\x55\xd5\x51\x87\xb3\xb1\x29\x15\x7e\x95\xc5\x3e\ +\xa1\x84\x9f\xeb\x76\x87\xdb\x29\x08\xc2\xb1\x32\x55\x55\x73\x86\ +\x61\x68\x16\xf7\xe0\x96\x5a\x7e\x48\x2d\xe7\xb6\x0e\x14\x88\x8f\ +\x9f\xed\x16\x6f\x6a\xe6\x8d\x32\xdb\x25\x95\x88\xac\x86\x61\x68\ +\x00\xd0\x32\x32\x32\xf2\x24\x95\x4a\xc5\x68\x9f\x48\xa7\xd3\xc9\ +\xb1\xb1\xb1\x17\x00\x8e\x30\x00\x0c\x80\x0d\x40\x1b\x80\x1a\x00\ +\xe5\x00\xcc\x00\xca\x00\x70\xf9\x7f\x02\xa0\xe5\x63\x0b\x40\x12\ +\xc0\x3c\x80\xa5\xbf\x0f\xbe\x92\x25\xee\x27\x61\x5e\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x7f\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x01\xfc\x49\x44\ +\x41\x54\x38\x8d\x8d\x53\x3d\x68\x53\x51\x14\xfe\xae\xef\x25\x31\ +\xf0\x5e\x93\x97\x64\x78\x31\x21\x16\x12\x41\xda\x42\x9e\x24\x4e\ +\x12\xd0\x20\xd4\xa8\xc5\x51\x34\x8b\x54\x5c\xda\xa1\x93\xd2\xad\ +\x2d\x92\x0c\x0e\x16\x1c\xd4\xd5\x21\x9b\x34\x8b\x4b\x07\xd1\x21\ +\x43\xd0\x5a\x22\x21\x42\x23\x1a\xa3\xd2\x54\x48\x08\x84\xe8\xfb\ +\x69\x5e\x8f\x43\x1b\x09\x69\x78\xf1\x83\xc3\xe1\x72\x2e\xdf\x39\ +\xdf\x77\xee\x65\x44\x84\x41\xb8\xdd\x6e\x71\xf9\xc1\xf2\x6d\xbf\ +\x7c\x4a\xa9\x7c\xaa\x4c\x7f\xab\xd7\x9a\x36\xbb\xed\x49\x2e\x97\ +\x7b\x8b\x11\xe0\x07\x0f\xd9\x6c\x76\x29\x9f\xcf\xdf\xd7\x35\x3d\ +\x50\x2c\xbe\x3b\x70\x7b\xa4\x5f\xfc\xcf\x1f\xbc\xe4\x96\xd2\x00\ +\x46\x12\x80\x88\x40\x44\xc8\x64\x32\x1b\xdb\x5b\x5b\x07\xfb\x86\ +\x41\xcf\x9e\x3e\xa7\xf5\xc7\xeb\x77\xfa\x35\xab\x38\x01\x00\xa9\ +\xd4\xd5\xe9\xc9\xd3\x93\xd7\xc4\x89\x09\x53\x55\x55\xba\x94\xbc\ +\x08\x63\xdf\xe8\x8c\xec\x38\x04\xb6\xb2\xb2\x7a\xcf\xef\x97\x1f\ +\x69\x9a\x2e\x10\xd1\x1b\xc3\xd0\xe5\x2b\xb3\xb3\x7a\x28\x14\xf2\ +\x5e\x9f\x9b\x4b\x15\x0a\x85\x1d\x4b\x86\x85\x85\xc5\xed\x52\xe9\ +\x23\xcd\xcf\xdf\x7d\xd1\x1f\x2b\x1a\x8d\x9e\xaf\x94\xcb\x2d\x55\ +\x55\x1b\x89\x44\x62\xca\x52\x82\x24\x49\xc9\xb5\xb5\xd5\xbc\xc3\ +\xe1\x58\xec\x93\x96\x4a\xa5\xf7\xb7\xd2\xe9\xcb\x7b\xbb\xbb\xbc\ +\x8d\xe7\x37\x45\x51\x7c\xcd\x18\x73\x58\x9a\x38\x2a\x5c\x2e\xd7\ +\x43\x45\x51\x28\x16\x8b\x91\x24\x49\x65\x00\xf2\xf0\x9d\xb1\x2e\ +\x0b\x82\x50\x54\x14\x85\xe2\xf1\x38\xc9\xb2\xfc\x05\x80\x32\x58\ +\x67\xc3\x0f\xe9\x98\xcb\x8c\x9d\x14\x04\xe1\x43\x38\x1c\x9e\xe2\ +\x38\x0e\xed\x76\xfb\x7b\xad\x56\xbb\x49\x44\x45\x00\x87\x6b\xb4\ +\x02\x11\x69\xdd\x6e\x37\x59\xaf\xd7\xbf\xf6\x7a\x3d\x78\xbd\xde\ +\x50\x24\x12\x79\xc9\x18\xbb\x00\x60\xfc\x04\x03\x93\x84\x3d\x1e\ +\xcf\xab\x60\x30\x78\xd6\x6e\xb7\xa3\xd3\xe9\xec\x55\xab\xd5\xd4\ +\x7f\x13\x1c\x91\x9c\xf1\xf9\x7c\x1b\x81\x40\x60\x86\xe3\x38\x68\ +\x9a\x56\x18\x2b\x61\x48\xce\xe7\x66\xb3\x79\xa3\xd1\x68\xec\x98\ +\xa6\xa9\xb7\x5a\xad\xcd\xb1\x5b\x18\x15\x00\x44\xa7\xd3\x79\xee\ +\xdf\x16\x18\x63\x0c\x00\x87\xc3\xdf\xc9\x03\xb0\x1d\x65\x6e\x20\ +\xf7\x61\x02\x30\x00\xfc\x06\xf0\xe7\x2f\xfa\x13\x63\xcc\xb4\xaf\ +\x0c\xf0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xcc\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x49\x49\x44\ +\x41\x54\x78\xda\x8d\x53\x3d\x48\x1b\x61\x18\x7e\xde\xef\x2e\x77\ +\x26\x56\x49\x85\x08\x05\x5b\x28\x2e\x8d\x50\x52\x9b\x41\xec\x1e\ +\x68\x71\x71\x76\xd0\xa5\x3a\x74\x70\xaa\x93\xb4\x42\xbb\xb4\x50\ +\x70\x16\xe9\xd0\xc5\xd5\x49\x28\x74\xee\x68\x35\x04\x74\x0a\x05\ +\x31\x21\x62\xab\x62\xa2\x97\xfb\xfb\xde\xbe\xdf\xa5\x1c\x0a\xa5\ +\xe4\x81\xe7\xb8\xbb\xef\x7b\x9f\xfb\xde\x7b\x9e\x97\x98\x19\x37\ +\xf1\x45\xa9\xa2\x06\x16\x14\xf0\x14\x40\x09\x3d\x54\x35\xf0\x43\ +\xc9\xf2\x82\xd6\x87\xb8\x81\x54\x60\x97\x48\x55\x89\x5e\x8f\x8c\ +\x8f\xbf\x2f\xce\xcd\x39\xf9\x89\x09\xe4\xc6\xc6\x60\xe0\x1d\x1f\ +\xe3\xfc\xe0\x00\x87\x5b\x5b\xc1\x59\xbd\xfe\xa6\xc4\xfc\xa9\xcc\ +\xac\x53\x01\x53\xbc\x4f\xf4\x75\x72\x71\xb1\xf2\x70\x76\x16\x96\ +\x52\x50\x44\x20\x21\x84\xcc\x9c\x30\xd2\x1a\x3f\xb7\xb7\xb1\xb7\ +\xb9\xf9\xed\x09\xf3\x73\x23\x62\x43\x20\xc5\x2b\x8f\x66\x66\x2a\ +\xf7\xa7\xa6\x80\x93\x13\xb0\x6d\x43\x8b\x08\x59\x56\x7a\x54\x8e\ +\x63\x90\x08\x3c\x98\x9e\x86\xd7\x6c\x56\xf6\x77\x76\x56\xca\xc0\ +\x47\xda\x20\x2a\xe6\x80\xbd\x67\xcb\xcb\xee\xd0\xe8\x28\x2c\xc7\ +\x81\x12\x92\x88\x28\x21\x88\x00\x66\xe8\x28\x02\x0b\xe3\x20\x40\ +\xbb\xd5\xc2\xf7\xf5\x75\xff\x8a\x79\xd2\x76\x81\xf9\x3c\xe0\xaa\ +\xd3\xd3\xde\x57\xb3\x59\xd0\xc0\x00\x94\x2b\x2b\x99\x4c\x2a\x40\ +\x61\x08\xed\xfb\xe0\x6e\x17\xf6\xc5\x05\xf2\x96\xe5\x46\x51\x34\ +\x6f\x5a\x28\x0f\x02\x88\x6a\x35\xfc\x5e\x5d\x45\x3f\xc8\x2d\x2d\ +\x61\x48\xda\xfb\x15\xc7\x65\x23\x50\x1a\x00\x10\x1f\x1d\xa1\x50\ +\x28\xa0\x1f\xb4\x1b\x0d\x64\xcd\xe9\x82\xa0\x64\xa7\x6f\x95\xea\ +\x5b\xa0\x23\x7b\x21\x34\x30\xd7\xaa\x0f\x40\x6b\x8d\x7e\x61\xf6\ +\x76\xa3\x08\xa6\xd6\x36\x19\xea\x10\x55\x46\xe4\x45\x5d\x82\xe3\ +\xe4\xf3\xc8\x18\x0e\x0f\x43\xe5\x72\xc6\x89\xc4\x01\x7d\x7d\x8d\ +\xf0\xf2\x12\xa1\xfc\xc0\xc0\x38\x21\xb6\x82\x79\xd7\x7a\x41\xd4\ +\x94\xdb\x97\x83\xcc\xb6\x6b\x02\x64\x59\xbd\x00\x99\x13\x19\xdb\ +\x7c\x3f\x29\x8e\xae\xae\x12\x06\x9d\x0e\xce\xdb\x6d\x34\x3d\xcf\ +\xf7\x98\x5f\xd9\x4b\x92\xed\xcf\x4a\xad\xb5\xe2\xf8\x83\xe3\x79\ +\x20\xa5\x7a\xbe\x07\x81\xb1\x32\x79\x66\xad\x13\x0b\x43\x59\xbf\ +\x94\xe2\x86\x08\x76\xb5\x5e\x33\xb5\xb7\xa2\x7c\x57\xa9\xca\x3d\ +\xf9\xbb\x43\x92\x03\x47\x68\xc9\xbd\x08\x24\x3d\x07\x92\x83\xb6\ +\x08\x34\x84\xe7\x61\x98\x46\xf9\xd6\x30\xd5\x64\x98\x2c\xa2\x77\ +\x23\x44\xee\x1d\xe9\x3d\xfb\x37\x89\x5d\xe9\xb7\x23\x22\x67\x51\ +\xe4\xcb\x3c\xbc\x7d\x7c\x63\x98\xfe\x3b\xce\x44\x54\x82\x80\xcd\ +\x38\x33\xff\x73\x9c\xff\x00\x0d\xa5\x3c\x12\x46\x2e\x37\x1f\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\xf5\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x72\x49\x44\ +\x41\x54\x78\xda\x75\x93\x4d\x48\x54\x51\x14\xc7\x7f\xe7\xf9\xc6\ +\xe7\x28\x8e\x9f\x84\xcc\xb8\x52\x29\x52\x48\x72\x32\x68\x51\xbb\ +\x81\xa2\x4d\xd1\xae\x85\xd5\xa2\x55\xdb\x5c\x96\x58\xab\xa0\x6d\ +\xab\x16\x51\x8b\x56\x41\x21\x14\x81\xab\xf6\x7e\x60\x0b\xfb\xc0\ +\x8c\x42\xa7\x51\x19\x75\xd4\x99\x79\xef\xcd\x7b\xf7\xe4\xe3\x89\ +\x8d\x84\x7f\xb8\xdc\xc5\x39\xe7\xc7\xbd\xe7\x9c\xbf\xa8\x2a\xf5\ +\xb2\xee\x58\xa7\x1b\xe1\x96\x5a\x8c\x08\x0c\x03\x28\x2c\x88\x61\ +\xce\x87\x97\xe6\x85\xf9\x42\x9d\x0e\x01\x72\x46\xac\xc4\x39\xb9\ +\x7f\x32\xdd\xff\x78\xec\xd2\xcd\xc6\xc1\xcc\x20\xe9\xf6\x5e\x00\ +\xf2\xdb\x2b\x2c\xe6\x17\x79\xf5\xe9\xb5\xff\x3d\xff\xe3\x41\x6d\ +\x46\x9f\xea\x67\x35\x87\x80\xa8\xd8\x1e\x91\x8f\xf7\xae\xdc\xcd\ +\x5d\x1f\xbd\x86\x6d\x0b\x62\x01\x42\x2c\x05\x55\x08\x6a\xca\xdb\ +\x99\x77\x3c\xfb\xf0\x7c\x3a\x98\xd3\xcb\x11\xc4\x06\x68\xc8\xca\ +\xf8\x8d\x0b\x57\x73\x17\x87\xce\xb3\x55\xcb\x83\xa1\x0e\x50\x07\ +\x31\x10\xe5\x14\x4a\xf9\xdc\x1b\x79\x3f\x0e\x3c\xb1\xa3\x3f\x37\ +\x35\x32\x39\xd4\xd7\x47\xb1\xb6\x8a\x00\x62\x22\x6a\x0c\x89\x15\ +\x17\x13\x82\x31\x30\x34\xd0\xc7\xd4\x0c\x93\xfb\xb5\x53\xd1\x6b\ +\xc7\x52\xed\x38\xbb\xba\x46\x83\xef\x82\x02\x36\x54\x37\xa3\x23\ +\x20\xd0\xdc\xad\x24\xdb\x62\x80\x06\xb0\x2b\x25\x52\x5d\x38\x41\ +\x81\x31\x5b\x84\x6c\x53\xab\xf2\xb5\x34\x4b\x7f\xf2\x14\x08\x94\ +\x8b\xb0\xf9\x53\xc0\x22\x56\x01\xba\x06\x94\x96\x8e\x18\xb0\xbc\ +\xf7\x8d\x64\x4a\x91\x75\xc9\xda\xc0\xb0\xe3\xc0\x6a\x65\x89\x60\ +\xa7\x4a\x77\xfb\x09\x56\x97\x05\x6f\x0f\xb0\x40\x00\x05\xb6\x96\ +\x20\x93\x55\x36\xcb\xeb\x14\xdc\x55\x9c\x16\x40\x18\xb6\x01\x90\ +\xf8\x6c\xec\x07\xb6\xcb\x6b\x14\x36\x9b\x09\xca\x09\x6c\xbb\x01\ +\x04\x42\x13\x62\x07\x35\xdc\x6a\x85\xc0\x0f\x10\xf9\xd7\x60\x1b\ +\x58\xf0\x5c\x72\x2d\x06\x00\xc2\x30\x20\xd1\xbb\xc3\xc6\xbc\x1c\ +\x79\x41\x66\x48\x09\x43\x40\xe3\x46\x7a\x55\x40\x59\xb0\x54\x99\ +\x75\xf7\x84\xd0\x07\x3d\x68\x52\x5b\x0f\xa4\xb3\x4a\xb2\x1d\x92\ +\x1d\x90\x19\x55\xda\xd2\xa0\x7e\x1c\x0f\x5d\xa8\x96\x04\x35\xcc\ +\x8a\xdc\x96\x68\x8c\xf3\x99\x01\x75\x52\x3d\x60\xb5\x80\x34\x81\ +\x38\x20\x09\xc0\x02\x0c\x68\x0d\xd4\x03\x53\x86\x9d\x3f\xb0\xb2\ +\x28\x9e\xeb\x71\xd6\x8a\x76\xdb\xf7\x99\x28\xe6\x85\xea\x36\x84\ +\x15\x30\x2e\x68\x25\x4e\x36\x7b\x07\x77\x05\xc2\x72\x3c\xde\xe2\ +\x2f\xc1\xf7\x98\x88\x6a\x8f\xac\x72\x6b\x27\xb9\xae\xb4\xd2\xdc\ +\x09\x0d\x4d\x60\xd9\x80\xc4\x7f\x36\x1e\x54\xb6\xa0\xf8\x5b\xd8\ +\x2d\x32\x5d\x3b\x58\xe5\xff\xcc\x64\x27\x78\x94\xea\xc4\x89\xe6\ +\xec\x34\xc7\x00\xaf\x02\xee\xae\x50\x2a\xe2\x05\x3e\x0f\xeb\xcd\ +\x74\xac\x9d\xc5\x62\x44\xad\xd8\xce\x62\x58\xd0\x63\xec\xfc\x17\ +\x16\xf8\x44\x5c\xdf\x90\xee\x0a\x00\x00\x00\x00\x49\x45\x4e\x44\ +\xae\x42\x60\x82\ +\x00\x00\x03\x5e\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\xdb\x49\x44\ +\x41\x54\x38\x8d\x85\x93\x3d\x6c\x5b\x65\x18\x85\x9f\xef\xbb\xdf\ +\xbd\xd7\xd7\x76\x6c\xc7\x76\x92\x0a\xa2\x26\x10\x28\x85\x40\xa9\ +\x9a\x3a\x80\x14\xa1\x24\xa8\x81\x22\x16\x2a\x15\x18\x33\x95\x09\ +\xa6\xce\x14\x65\xe9\x00\x02\xc4\x02\x95\x58\x40\x2c\xb0\x74\x20\ +\x02\x41\xab\x0a\x75\xa8\x28\xad\x5a\x51\x0a\x74\x41\xd0\x90\x10\ +\x93\xc4\xbe\xc1\xf8\xef\xfe\xbe\x0c\x08\x24\x7e\x1a\x8e\x74\x96\ +\x77\x78\x86\xf3\x9e\xa3\x16\x5f\x2e\x95\x46\x6e\x9b\x10\x5f\xe8\ +\x9e\x3a\x76\x39\x9a\x9b\x53\x66\x7c\xb6\x94\x2f\x17\x6e\xd7\x85\ +\x16\xed\x13\x27\xae\x87\xec\x20\xed\xd8\x45\xef\x5a\x9c\xff\xf0\ +\xc7\x38\xfb\xe9\x13\xaf\x1d\xbc\xe3\xb7\x3d\xa8\x81\xc1\x4a\xe6\ +\x3b\xb7\xfa\xf1\x85\x6a\xf9\xfc\xe1\x37\xf6\xdf\xb5\x23\xc0\x57\ +\x52\xcc\xda\xb9\x99\xa7\xee\x99\x9b\x8e\x9d\xdc\xc5\xd2\xde\xa9\ +\xf9\x7a\xd0\xaf\x38\xc6\x7d\xe0\xc8\x83\x87\xa6\x62\xbb\xf8\xc5\ +\x63\x6f\x4e\x3f\x7e\x4b\x40\x5f\xfa\x74\xc3\x28\x3b\x5a\x29\xe5\ +\x8e\xdc\x37\x33\xe4\xba\xc5\x8f\xb6\xed\xe1\xc5\x20\x09\xb3\xbb\ +\xab\x59\xb3\x38\xbd\x50\xc9\x67\xca\xcb\x8f\xbe\xfe\xd0\x71\xf5\ +\x8c\xb2\xfe\x05\x90\x08\x49\x62\xf0\xdb\x0d\x72\x9e\xf0\xf4\xbe\ +\x29\xbb\x52\x18\x3e\x2e\x12\xd3\xe9\x37\x70\xec\x0e\xcf\x1e\xa8\ +\x99\xb1\xea\xae\x57\x1e\xae\xd5\xde\x7f\xf2\xa5\x89\x81\xbf\x01\ +\xba\x03\xb1\x1d\x26\x21\xad\x5e\x83\x76\xd0\x40\x74\x8b\x85\xc9\ +\x3b\xd9\x37\x52\xd9\xec\x27\x3e\xfd\xd8\x27\x48\x36\x99\xbf\x7b\ +\x8c\xda\xc4\xee\xe7\xb6\xf2\x83\xe7\x67\x4e\x4e\xfe\x95\x8b\x1e\ +\x71\x52\x2b\xec\x84\xb4\xfa\x4d\x7a\x91\x4f\x90\x34\x89\xa5\xc1\ +\xbd\x63\x99\xa1\x58\xf9\xc4\x34\x89\xc5\xa7\x13\xd6\x19\x2f\xd8\ +\x2c\x4c\x8e\xef\x4f\xc5\xbb\x38\xbd\x54\x3b\x0c\xa0\x3d\x2b\xb1\ +\x9b\xbe\xcf\xf7\xf5\x6b\x6c\x77\xd7\x10\xd5\x02\xab\x89\x36\x4d\ +\x2c\xd3\x04\xcb\x27\xd5\x4d\x62\x7c\x82\x74\x03\x93\x6e\x31\xb3\ +\x77\xb8\x6c\x52\xf5\x1e\x80\xc9\x79\x89\xd3\x6b\xb5\xd9\x68\xfd\ +\x82\x72\x7e\x20\x32\x16\xa3\xd5\x32\x5a\x19\xd0\x90\x24\x8a\x6e\ +\xac\xe8\x04\x01\x7e\x27\x64\xb5\x1e\xb2\xd5\x86\xcd\x66\x45\x00\ +\x8c\x07\x26\xea\x45\xb8\x8e\xc2\xcb\x28\x2a\x25\xa1\x54\x6a\x60\ +\xbb\x06\xad\xa1\xdf\x13\x12\x11\x3a\x61\x4a\x3f\x4c\x09\xb0\xf9\ +\xfa\x72\xa1\x45\x26\x7e\x1e\x40\xa7\x92\x98\xa0\x1b\xe1\x38\x30\ +\x90\x83\xac\x23\x68\xa5\x39\xb3\x9c\xb6\x87\x2a\x9a\xc1\x82\xe0\ +\x66\x52\x50\xf0\xd3\x9a\xcb\xb9\x4f\xb2\x37\x23\xd4\x23\x1b\xef\ +\xde\x3c\x0d\xa0\xcb\x05\xc9\x96\xdc\x80\x8c\x0d\x49\x0c\xeb\x1b\ +\x16\x6f\xbd\x0d\x57\xaf\x26\x79\xd2\x84\x24\x85\x7e\xa8\x59\x3e\ +\x6d\x38\xfb\x99\x7d\x41\x72\xfa\x7e\xff\x83\xd5\x6f\xff\xfc\x82\ +\xc1\x12\x93\xb7\x23\xda\x6d\xa1\xbe\x06\x97\x3e\x17\xd9\x33\xa9\ +\xcf\x16\xb2\x72\xe8\xe7\x7a\xca\xf6\xaf\xc2\xc9\x25\x64\xb3\xe7\ +\xbe\x13\x9c\xd9\x3a\xf6\xcf\x22\x99\x2f\xaf\x5b\xeb\xab\x2b\x92\ +\xb4\x2c\xc2\x95\xaf\xc4\x38\x55\xe7\xc5\xd1\x5d\xc1\x95\x2b\x97\ +\xf4\xfc\x37\x37\x12\x79\x75\x09\x91\x01\xef\x85\xe8\x5c\xe3\xd4\ +\x7f\x76\xf9\xe8\x51\x2c\x55\xf3\x56\x38\x90\x59\x67\xae\x78\x50\ +\x44\x98\x9d\xc5\xe8\x9a\xb7\xa2\xa6\xbc\x75\x35\xff\xc7\xed\x56\ +\x56\x22\xb2\xd3\xd8\xfe\x57\xbf\x03\xd4\x0b\x53\x31\xe2\x01\x62\ +\x9f\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x03\x10\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x8d\x49\x44\ +\x41\x54\x38\x8d\x9d\x91\x4d\x68\x94\x57\x14\x86\x9f\xf3\xcd\xfd\ +\x7e\x92\x7c\x33\x43\xc6\x2a\x9d\x80\x34\xa4\xd0\x4d\x08\x84\x61\ +\xda\x46\x24\xe2\x4e\x2d\x45\x10\x42\x57\xdd\xb5\x74\x57\xb2\x28\ +\x59\x74\x55\xba\x71\xe3\xce\xac\x45\x2d\xed\xa2\x10\x6a\x88\x59\ +\x54\x88\x10\x89\x10\x34\x5d\x88\x81\x89\x10\x25\x5a\x62\x17\x63\ +\xa3\x33\x93\x16\xe6\xe7\xde\x7b\xdc\x98\x2f\xc6\xec\xbc\x70\x39\ +\x67\x73\x9f\xf7\x79\xb9\xa2\xaa\xbc\xcf\x39\x35\x2e\xe7\xc3\xd2\ +\x64\x47\x54\x95\x4a\xa5\xd2\x88\xe3\x78\xa0\xdb\xed\xfa\xe1\xe1\ +\x61\x99\x9e\x9e\x0e\xc3\x30\x24\x4d\x53\xe2\x38\x66\x63\x63\x43\ +\x6b\xb5\x9a\x1f\x19\x19\xd1\xd9\xd9\xd9\x17\x83\xa9\x3b\x76\xe6\ +\xf4\x68\xe7\xfa\x2f\xbf\xd5\x02\x00\xef\x7d\x11\x30\xaa\x1a\xa9\ +\x6a\x08\xd0\xd7\xd7\x47\xb1\x58\x64\x70\x70\x90\xad\xad\x2d\x59\ +\x58\x58\xc8\x19\x63\x4c\x12\x76\xcb\x9f\x8d\x3c\xcb\x3d\xdf\x7e\ +\xd2\xff\xc7\x95\x6f\x7f\xde\x03\xb0\x37\xf7\x2a\x25\x49\x42\x7f\ +\x7f\x3f\x71\x1c\x63\x8c\x41\x55\x31\x41\x8f\x2f\xaa\xff\xf2\xf8\ +\x1f\x43\xb3\xf5\x1f\xc7\x4f\xcc\x2e\x1a\x00\x55\x45\x44\x50\x55\ +\xda\xed\x36\x41\x10\x10\x86\x21\xc6\x18\xa2\x28\xa2\x52\xa9\x60\ +\x7b\x6d\xd2\xff\x7f\x67\xad\xe6\x29\x7f\x78\x84\x7b\x8f\x22\x00\ +\x44\x55\x19\x1d\x1d\xd5\x28\x8a\x88\xe3\x18\x55\x25\x4d\x53\x72\ +\xb9\x1c\x22\xf2\x06\xec\xb8\xf0\xf9\x73\x6e\xaf\x75\xf9\xe4\xa3\ +\x3e\x6e\x3f\x18\x40\x44\x58\x5d\x5d\x95\xcc\xc0\x7b\x4f\x3e\x9f\ +\xcf\x1e\xbd\x7d\xcf\x8d\x3f\x65\xe9\x2f\xcf\x64\xf5\x28\x4b\x0f\ +\x3e\x00\x5e\x64\x55\xcd\x5e\xf7\x99\x99\x19\xa6\xa6\xa6\xf0\xde\ +\x63\xad\xcd\x66\xfd\xe1\x45\x2e\x5f\x6b\x71\xf9\xe2\x97\xb4\x0b\ +\x5f\x71\xce\x5a\xe6\xe6\xe6\x98\x9f\x9f\xdf\x07\xa8\x2a\xa5\x52\ +\x89\x56\xab\x45\xbd\x5e\xc7\x5a\x8b\x73\x8e\xa7\x0f\x7f\xe5\xc6\ +\xc2\x12\x3f\x7e\x7f\x86\xcd\xe6\x04\x76\x67\x8b\x34\x4d\xc9\xe7\ +\xf3\x87\x0d\xac\xb5\xc4\x71\x4c\xb9\x5c\xc6\x5a\xcb\xfd\xe5\xab\ +\xdc\x5c\xbc\xc5\x4f\x3f\x5c\x40\x8f\x7e\xcd\x31\x0f\xce\x39\xac\ +\xb5\x99\xe1\x01\x03\xef\x3d\x8d\x46\x83\x7a\xbd\x4e\xe3\xd5\x4b\ +\x0a\xa5\x8f\x99\xa8\x1c\x67\xbb\x33\x89\xfd\x7b\x3b\x0b\x49\xd3\ +\xf4\xc0\x77\x1f\x30\x88\xa2\x88\x72\xb9\xcc\xdd\x3b\x7f\x32\x60\ +\x5e\x71\xf2\xfc\x25\x82\x20\x77\x20\xd9\x39\x87\x73\x2e\x33\x08\ +\xde\x36\xb0\xd6\xb2\x76\xff\x1e\x3b\x3b\x2f\x39\x75\xf6\x3b\x44\ +\x02\xac\xb5\xf4\x7a\x3d\x7a\xbd\x5e\xb6\x1f\x32\xa8\x56\xab\x88\ +\x08\xcd\x66\x93\x7c\xa1\xc8\xa7\x13\xa7\x59\x5f\x5f\xa7\xd3\xe9\ +\x64\xa9\x22\x42\x10\x04\x14\x0a\x05\x44\x84\xb1\xb1\xb1\x7d\x40\ +\x92\x24\x38\xe7\x88\xa2\x88\xa1\xa1\xa1\x43\xca\xef\xee\xaa\x4a\ +\x92\x24\xfb\x80\xe5\xe5\xe5\x6f\x44\xe4\xe4\xca\xca\x4a\xea\xbd\ +\xcf\x79\xef\x8d\xaa\x1a\x55\x0d\xbc\xf7\xf2\xa6\xa6\x13\x11\x0f\ +\xf8\xdd\xdd\xdd\xc6\xe6\xe6\xe6\x1a\xc0\x6b\x0c\x31\x88\xff\xa8\ +\x35\xfb\x15\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x9a\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x06\x00\x00\x00\x1f\xf3\xff\x61\ +\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ +\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x01\xbb\x00\x00\x01\xbb\ +\x01\x3a\xec\xe3\xe2\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ +\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ +\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x02\x17\x49\x44\ +\x41\x54\x38\x8d\xa5\x93\x3d\x68\x13\x71\x18\xc6\x9f\x37\xcd\x11\ +\x9b\x8f\x5e\x92\x4b\x52\xf3\x71\xf9\x20\xc1\xd2\x52\x3b\x1c\x15\ +\xc1\x82\xb5\x08\x35\x89\x10\x35\x38\x0b\x4e\x82\x60\x47\x89\x5b\ +\xea\xd4\x41\x08\x14\x1d\x1c\xd2\xbd\x08\xa5\x5c\x16\x17\x1d\x0c\ +\x38\x88\x20\x68\x87\x22\xd8\x56\x93\xab\x62\xed\xa9\x6d\x4c\xc9\ +\xe5\x7a\x7f\xa7\x0b\x67\xda\x45\xfa\x8c\xff\xf7\x7d\x7e\x3c\x2f\ +\x0f\x7f\x62\x8c\xe1\x24\xb2\x9d\xc8\xdd\x0f\x58\x21\x92\xde\xdc\ +\xbe\xf5\x7d\x95\xe3\x72\xfd\x8b\xab\x1c\x97\xfb\xf0\xe0\x7e\x73\ +\x85\x48\x3a\x16\xb0\x4c\x24\xf9\x27\xc7\x5e\x9d\x19\x1d\x0b\x46\ +\x8b\x59\xf9\x19\x51\xd6\x32\xcb\x85\xb3\xd3\x72\x3c\x18\x8c\x9e\ +\xbe\x32\x5d\x5f\xb6\x40\x7a\x00\x0d\x58\x4a\x4e\x9e\x77\x1d\x34\ +\xb7\x11\x4b\x8e\xda\xc3\xf9\x4b\xb5\x2a\x51\xbe\x42\x74\xcd\x79\ +\xf9\x42\x4d\x1c\x99\xb0\xb7\xb7\x1a\xc8\xcc\xe6\x9d\x1a\xb0\x64\ +\xfa\xec\x16\x40\x69\xad\xfe\xb2\x96\x1c\x3f\x67\x07\xb3\x21\x10\ +\x4e\xd9\x37\x2e\xb6\xe4\x5d\xc3\xa0\xd9\x44\xc6\xa6\x36\x14\x0c\ +\x38\x1d\xf8\xf6\xe2\xbd\xae\x01\x25\xd3\x47\xd6\x16\x9e\x12\x65\ +\x87\x47\xa2\x72\x4c\xcc\x70\x86\xc6\x60\xf3\xba\x71\xc0\x0c\x38\ +\x3b\x06\x1c\x89\x08\xb6\xde\xbe\xee\x2a\xef\x3e\x16\xee\x30\xf6\ +\xfc\x58\x00\x00\x2c\x12\x65\x23\x99\x61\x39\x12\x8c\x72\x87\x1a\ +\x81\x1c\x0e\xe8\xac\x83\xaf\xca\xa7\xee\xce\x97\x5f\x85\x39\x8b\ +\xf9\x9f\x13\x4c\x75\x00\x68\x5a\x17\xfa\xfa\x3a\xf4\x9f\x6d\x10\ +\x80\x01\x9f\x13\xcc\x73\x0a\x9d\xfe\xe5\xfe\x04\x0b\x44\x59\x31\ +\x21\xc8\xe3\xfb\x1d\x0e\x6a\x0b\x6d\xbf\x1b\x04\x60\x50\x6d\x01\ +\x7e\x37\xd6\x3c\x83\xdd\xc6\xe7\x9d\x42\xc9\x92\xa2\xd7\xc2\x3c\ +\x51\x4e\x4c\x45\xe4\xa9\x96\xce\x09\x6a\x0b\x2e\xc1\x8b\x27\x3c\ +\xcf\x16\x79\x2f\x73\x05\x7c\x10\xd4\x16\xa6\xfe\x1c\x72\x62\x3a\ +\x2e\x2f\xf0\xfc\xd5\x23\x00\x16\x0f\x3d\x9e\x19\xf2\x72\xa1\xdd\ +\xdf\x70\x07\xfc\xa8\x78\x79\x43\xd8\x54\x8a\xbe\xcd\xe6\xcd\x0a\ +\xcf\x1b\xee\xa0\x80\xd0\x0f\x15\x33\x9e\x21\x8e\x17\xc5\x47\xbd\ +\xd8\x8c\x31\x30\xc6\x50\x06\xa4\x6a\x22\xb6\xa7\x48\x67\x59\x39\ +\x9d\xd2\xe7\x80\xeb\xe6\xec\x2e\x50\x9c\x4f\xa7\x74\x45\x9a\x60\ +\xd5\x44\x6c\xaf\x0c\x48\xe6\xac\x07\x30\x21\x0f\x33\xd1\x8d\x7b\ +\xc0\x0d\xeb\xbb\x09\xa9\xe7\x73\xdb\x56\x33\x63\xec\x68\x8d\xff\ +\xab\x13\xff\xc6\xbf\x7b\x12\xeb\x18\x4c\xd6\x48\xe1\x00\x00\x00\ +\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x02\x13\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\x10\x00\x00\x00\x10\x08\x03\x00\x00\x00\x28\x2d\x0f\x53\ +\x00\x00\x00\x03\x73\x42\x49\x54\x08\x08\x08\xdb\xe1\x4f\xe0\x00\ +\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\x01\ +\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\x74\ +\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\x70\ +\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xe4\x50\x4c\x54\ +\x45\xff\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x42\x88\xdb\x42\x88\xdb\x42\x87\xdb\x41\x87\xdb\x21\x64\xb2\x23\ +\x6b\xbf\x23\x6c\xc1\x29\x71\xc4\x31\x66\xa6\x31\x77\xca\x3a\x7e\ +\xcf\x41\x87\xdb\x43\x85\xd5\x48\x7c\xbe\x4b\x8c\xda\x54\x93\xe0\ +\x55\x84\xc1\x68\x90\xc4\x6e\x95\xc8\x72\xa5\xe4\x78\xa8\xe6\x79\ +\xa8\xe4\x7e\x96\xb3\x7e\x97\xb4\x85\x9a\xb3\x8b\xb6\xec\x94\xa5\ +\xb7\x95\xb7\xe1\x98\xbc\xeb\xa0\xc5\xf2\xa1\xc2\xed\xa4\xc5\xec\ +\xa5\xc6\xec\xa6\xc6\xec\xa9\xc7\xee\xad\xca\xed\xaf\xcb\xed\xaf\ +\xcb\xef\xb1\xcc\xf0\xbc\xd3\xf1\xbf\xd6\xf4\xc0\xd8\xf1\xe3\xe4\ +\xe5\xe6\xe7\xe8\xe7\xe8\xe8\xe9\xea\xeb\xeb\xec\xec\xec\xed\xed\ +\xed\xee\xee\xee\xef\xef\xef\xf0\xf0\xf0\xf0\xf0\xf0\xf1\xf1\xf1\ +\xf1\xf1\xf1\xf2\xf2\xf2\xf3\xf3\xf3\xf3\xf3\xf3\xf4\xf4\xf4\xf5\ +\xf5\xf5\xf5\xf5\xf5\xf6\xf6\xf6\xf6\xf6\xf7\xf7\xf7\xf8\xf8\xf8\ +\xf9\xf9\xf9\xfa\xfa\xfa\xfb\xfb\xfb\xfc\xfc\xfc\xfd\xfd\xfd\xfe\ +\xfe\xfe\xff\xff\xff\x08\x2e\x0f\x60\x00\x00\x00\x09\x74\x52\x4e\ +\x53\x00\x1f\x3c\x3e\x3f\xfa\xfc\xfd\xfe\x0a\x2f\x02\x16\x00\x00\ +\x00\x8c\x49\x44\x41\x54\x18\x19\x05\xc1\x41\x4a\x03\x51\x14\x04\ +\xc0\xea\xfe\x2f\x82\x89\x88\x20\xb8\xf4\x3c\x1e\xd9\x03\x09\x82\ +\x3b\x03\x6e\x74\x32\x63\x55\x48\x09\x1c\xf6\xc3\xd0\x37\x00\xef\ +\x37\x73\xba\xdc\x7c\xa4\x4d\x92\x67\x4c\x5e\xbf\xb5\xed\x6a\xe2\ +\xbc\x8c\xdf\x5d\x3b\x6b\xad\xf0\xf4\xf0\x39\xd9\x76\x9d\x99\x95\ +\xb0\xdf\x4c\x42\xe7\xd4\x26\x60\x24\x66\xb5\x49\x22\xe4\x62\x0f\ +\x80\xa3\x26\x8f\xdb\xcb\x0e\xe8\xd7\x5c\xa7\xfb\xf6\xf7\x0b\xb8\ +\xdb\xda\x49\xd6\x6c\x80\x59\xc9\xf4\xb4\xf7\x0c\xd0\x53\xa7\xd3\ +\x1f\x00\xf7\xed\xe4\x0a\x00\x92\x24\x02\x70\x1c\xc7\x3f\xb4\x2c\ +\x21\xd5\x80\x04\x87\x89\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\ +\x60\x82\ +" + +qt_resource_name = "\ +\x00\x07\ +\x00\x47\x69\x53\ +\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\ +\x00\x09\ +\x04\xec\x63\x15\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\ +\x00\x05\ +\x00\x7b\x66\x33\ +\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\ +\x00\x06\ +\x07\xb0\xaa\xbd\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\ +\x00\x07\ +\x0d\xc4\xc8\xbc\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\ +\x00\x08\ +\x08\x86\xe2\x63\ +\x00\x67\ +\x00\x72\x00\x61\x00\x70\x00\x68\x00\x69\x00\x63\x00\x73\ +\x00\x07\ +\x08\xc4\x6a\x23\ +\x00\x72\ +\x00\x65\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x73\ +\x00\x06\ +\x07\xa2\xfa\xc3\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x73\ +\x00\x08\ +\x0c\x9c\xf6\xe3\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x73\ +\x00\x05\ +\x00\x73\xba\xf1\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\ +\x00\x06\ +\x07\xae\xc3\xc3\ +\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x73\ +\x00\x05\ +\x00\x7a\x64\xe3\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x73\ +\x00\x04\ +\x00\x06\xfa\x5e\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\ +\x00\x06\ +\x06\x8f\x92\xc3\ +\x00\x62\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\ +\x00\x07\ +\x0e\x10\x88\x53\ +\x00\x77\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x73\ +\x00\x07\ +\x0c\xf7\x69\x73\ +\x00\x65\ +\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\ +\x00\x07\ +\x07\x3b\xe0\xb3\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x73\ +\x00\x0a\ +\x09\x73\xc0\x28\ +\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\ +\x00\x16\ +\x01\x5e\x44\xe7\ +\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x77\x00\x61\x00\x72\x00\x6e\x00\x69\x00\x6e\ +\x00\x67\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x0e\xdd\x52\x87\ +\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x63\x00\x72\x00\x69\x00\x74\x00\x69\x00\x63\ +\x00\x61\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x0c\xda\x40\x27\ +\x00\x6d\ +\x00\x65\x00\x73\x00\x73\x00\x61\x00\x67\x00\x65\x00\x62\x00\x6f\x00\x78\x00\x5f\x00\x69\x00\x6e\x00\x66\x00\x6f\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x11\ +\x08\x64\x3d\x47\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x61\x00\x6c\x00\x65\x00\x72\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x10\ +\x06\xf1\xde\xc7\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x08\xe4\x8f\x67\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x73\x00\x65\x00\x6e\x00\x74\x00\x61\x00\x74\x00\x69\ +\x00\x6f\x00\x6e\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x05\x69\xb4\x27\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x73\x00\x6f\x00\x6e\x00\x67\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x07\x76\x57\x47\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x10\ +\x08\xfb\x75\xe7\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x73\x00\x6f\x00\x6e\x00\x67\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x03\x15\xa7\xe7\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x62\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x11\ +\x0c\x15\x3e\x27\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x69\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x11\ +\x0a\x8b\xe1\x87\ +\x00\x70\ +\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x63\x00\x75\x00\x73\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x0f\ +\x0b\xa5\xa8\xe7\ +\x00\x65\ +\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x01\x07\xbe\x80\ +\x00\x77\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x63\x00\x72\x00\x65\x00\x61\x00\x74\x00\x65\x00\x74\x00\x68\x00\x65\x00\x6d\ +\x00\x65\x00\x2e\x00\x62\x00\x6d\x00\x70\ +\x00\x15\ +\x0a\x89\x19\xa0\ +\x00\x77\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x6f\x00\x6e\x00\x67\ +\x00\x2e\x00\x62\x00\x6d\x00\x70\ +\x00\x14\ +\x02\x09\x38\x60\ +\x00\x77\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x66\x00\x69\x00\x72\x00\x73\x00\x74\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x2e\ +\x00\x62\x00\x6d\x00\x70\ +\x00\x16\ +\x05\xd5\x61\xe0\ +\x00\x77\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x62\x00\x69\x00\x62\x00\x6c\ +\x00\x65\x00\x2e\x00\x62\x00\x6d\x00\x70\ +\x00\x15\ +\x00\x89\x19\xa0\ +\x00\x77\ +\x00\x69\x00\x7a\x00\x61\x00\x72\x00\x64\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x73\x00\x6f\x00\x6e\x00\x67\ +\x00\x2e\x00\x62\x00\x6d\x00\x70\ +\x00\x1b\ +\x02\xb1\x94\xa7\ +\x00\x62\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x72\x00\x65\x00\x66\ +\x00\x65\x00\x72\x00\x65\x00\x6e\x00\x63\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x06\xf5\xc0\x67\ +\x00\x62\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x65\x00\x78\ +\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x02\x0c\xd3\x27\ +\x00\x62\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x75\x00\x70\x00\x67\x00\x72\x00\x61\x00\x64\x00\x65\x00\x5f\x00\x61\x00\x6c\ +\x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x0f\xa0\xc1\x47\ +\x00\x62\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6c\x00\x6f\x00\x63\ +\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x07\x0d\x29\x27\ +\x00\x62\ +\x00\x69\x00\x62\x00\x6c\x00\x65\x00\x73\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x75\x00\x6e\x00\x6c\ +\x00\x6f\x00\x63\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x00\x76\xd9\xc7\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x33\x00\x32\x00\x78\x00\x33\x00\x32\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x00\x68\xdb\x07\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x34\x00\x38\x00\x78\x00\x34\x00\x38\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x00\x84\xc7\x87\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x36\x00\x34\x00\x78\x00\x36\x00\x34\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x00\x5a\xdd\x47\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x31\x00\x36\x00\x78\x00\x31\x00\x36\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x06\x01\xfa\x07\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x32\x00\x35\x00\x36\x00\x78\x00\x32\ +\x00\x35\x00\x36\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x07\xd0\x5e\x07\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\x00\x2d\x00\x31\x00\x32\x00\x38\x00\x78\x00\x31\ +\x00\x32\x00\x38\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x0d\xa9\x66\x87\ +\x00\x62\ +\x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x00\x8e\xa2\x87\ +\x00\x62\ +\x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x0e\x4b\x25\x27\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x74\x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x0f\ +\x0e\xea\xff\x07\ +\x00\x61\ +\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x09\x45\x3c\x47\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x74\x00\x69\x00\x74\x00\x6c\x00\x65\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x0e\xf9\x8d\xc7\ +\x00\x61\ +\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x09\xcb\x7d\x87\ +\x00\x62\ +\x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x01\x10\xd4\xc7\ +\x00\x61\ +\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x16\ +\x09\xf5\x86\x07\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x6c\x00\x79\x00\x72\x00\x69\x00\x63\ +\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x07\xde\x82\x27\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x61\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x09\x35\x9e\x47\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x61\x00\x75\x00\x74\x00\x68\x00\x6f\ +\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x03\x95\xc6\xa7\ +\x00\x74\ +\x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x0a\xad\x32\x47\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x73\x00\x65\x00\x61\x00\x72\x00\x63\x00\x68\x00\x5f\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x0c\ +\x0a\x8b\x95\xe7\ +\x00\x62\ +\x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x0f\xc6\x09\x07\ +\x00\x74\ +\x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\x00\x65\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x07\x52\x49\x67\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x62\x00\x6f\x00\x6f\x00\x6b\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x0e\ +\x07\xd8\x62\xe7\ +\x00\x74\ +\x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x0d\x19\x6f\x07\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\x00\x65\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x01\x98\xb7\xc7\ +\x00\x61\ +\x00\x75\x00\x74\x00\x68\x00\x6f\x00\x72\x00\x5f\x00\x6d\x00\x61\x00\x69\x00\x6e\x00\x74\x00\x65\x00\x6e\x00\x61\x00\x6e\x00\x63\ +\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x01\x6a\xa4\x07\ +\x00\x74\ +\x00\x6f\x00\x70\x00\x69\x00\x63\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x0b\xd5\xa4\x07\ +\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x01\x12\x20\xe7\ +\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x06\x80\x22\x87\ +\x00\x74\ +\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x1e\ +\x0f\x35\xab\x87\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x72\x00\x6f\x00\x6c\x00\x6c\x00\x65\x00\x72\x00\x5f\x00\x6d\ +\x00\x75\x00\x6c\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x0b\x6a\xa6\xe7\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x74\x00\x69\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x0f\x71\x40\x47\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x76\x00\x69\x00\x64\x00\x65\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x0c\x3d\xa6\xe7\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x73\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x0f\x31\x28\xc7\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x61\x00\x75\x00\x64\x00\x69\x00\x6f\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x08\xfd\x86\xa7\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x0f\x4c\x4e\x47\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x64\x00\x6f\x00\x77\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x0d\x35\xf0\x27\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x61\x00\x6e\x00\x64\x00\x5f\x00\x61\x00\x6c\ +\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x04\x17\xba\xa7\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x6e\x00\x6f\x00\x74\x00\x65\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x18\ +\x0b\x13\x1e\x87\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x63\x00\x6f\x00\x6c\x00\x6c\x00\x61\x00\x70\x00\x73\x00\x65\x00\x5f\ +\x00\x61\x00\x6c\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x0f\xfa\xba\x47\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x75\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x06\x49\x09\xe7\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x62\x00\x6f\x00\x74\x00\x74\x00\x6f\x00\x6d\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x16\ +\x0c\x1a\xa1\x47\ +\x00\x73\ +\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x5f\x00\x69\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x6e\x00\x6f\x00\x74\x00\x65\ +\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x0c\x3e\x65\xa7\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x64\x00\x65\x00\x73\x00\x6b\x00\x74\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x17\ +\x05\x96\x0e\x47\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x73\x00\x74\ +\x00\x6f\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x07\xc2\xc7\xc7\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x73\x00\x74\ +\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x02\x02\x37\x87\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x6e\x00\x65\ +\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x09\x02\x2d\x47\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x6e\x00\x65\x00\x78\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x09\xc3\x0b\x87\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x07\x63\x6a\x27\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x03\xc5\xdf\x87\ +\x00\x6d\ +\x00\x65\x00\x64\x00\x69\x00\x61\x00\x5f\x00\x70\x00\x6c\x00\x61\x00\x79\x00\x62\x00\x61\x00\x63\x00\x6b\x00\x5f\x00\x70\x00\x61\ +\x00\x75\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x0b\x1d\x0d\xa7\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x62\x00\x6c\x00\x61\x00\x6e\x00\x6b\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x04\xc0\x24\x27\ +\x00\x73\ +\x00\x6c\x00\x69\x00\x64\x00\x65\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x6f\x00\x75\x00\x73\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x12\ +\x03\xdc\xbb\x47\ +\x00\x61\ +\x00\x6e\x00\x64\x00\x72\x00\x6f\x00\x69\x00\x64\x00\x5f\x00\x61\x00\x70\x00\x70\x00\x5f\x00\x71\x00\x72\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x15\ +\x06\x79\xc9\xa7\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x61\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2d\x00\x6c\x00\x6f\x00\x67\x00\x6f\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x09\xb2\xd9\xa7\ +\x00\x65\ +\x00\x78\x00\x63\x00\x65\x00\x70\x00\x74\x00\x69\x00\x6f\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x0e\xf7\x81\x87\ +\x00\x6f\ +\x00\x70\x00\x65\x00\x6e\x00\x6c\x00\x70\x00\x2d\x00\x73\x00\x70\x00\x6c\x00\x61\x00\x73\x00\x68\x00\x2d\x00\x73\x00\x63\x00\x72\ +\x00\x65\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x07\x1e\x3d\x27\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x64\x00\x65\x00\x6c\x00\x65\x00\x74\x00\x65\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x14\ +\x09\xd9\xa5\x67\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x75\x00\x74\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x02\x1c\xed\x07\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x0d\x2d\xfb\x87\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x65\x00\x78\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x10\ +\x01\xdf\xeb\x47\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x73\x00\x61\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x0f\xda\xea\xa7\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x0e\x36\xec\xe7\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x01\xec\x8b\x07\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x70\x00\x72\x00\x69\x00\x6e\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x19\ +\x07\x4d\x72\x87\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x6f\x00\x72\x00\x69\x00\x67\ +\x00\x69\x00\x6e\x00\x61\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x06\x44\xfc\x07\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x65\x00\x6d\x00\x61\x00\x69\x00\x6c\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x13\ +\x0e\x30\xb8\x47\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x7a\x00\x6f\x00\x6f\x00\x6d\x00\x5f\x00\x69\x00\x6e\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x12\ +\x0d\x2c\x6d\x87\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x69\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x13\ +\x04\x16\x6d\xa7\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x70\x00\x72\x00\x65\x00\x76\x00\x69\x00\x65\x00\x77\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x10\ +\x09\xdf\xea\x07\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x6c\x00\x69\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x07\x2b\x7c\xe7\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x72\x00\x65\x00\x76\x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x0f\ +\x0d\x5b\xec\x87\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x07\xff\xf0\x07\ +\x00\x67\ +\x00\x65\x00\x6e\x00\x65\x00\x72\x00\x61\x00\x6c\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x6e\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x10\ +\x03\x10\x21\x87\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x03\xd3\xe4\x67\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x6d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x6d\x00\x61\x00\x6e\x00\x61\x00\x67\ +\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x1e\ +\x01\x34\xc5\x07\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x5f\ +\x00\x73\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x03\xb2\x2b\x67\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x5f\x00\x63\x00\x6f\x00\x70\x00\x79\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x18\ +\x0f\xfa\xb9\xa7\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x68\x00\x65\x00\x6c\x00\x70\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x74\x00\x65\ +\x00\x6e\x00\x74\x00\x73\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x03\xa9\xec\x27\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x76\x00\x6f\x00\x6c\x00\x75\x00\x6e\x00\x74\x00\x65\x00\x65\x00\x72\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x19\ +\x0c\x67\x4a\x47\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x73\x00\x65\x00\x72\x00\x76\x00\x69\x00\x63\x00\x65\x00\x6d\x00\x61\x00\x6e\ +\x00\x61\x00\x67\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x13\ +\x05\xf9\x90\x47\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x73\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x2e\x00\x70\ +\x00\x6e\x00\x67\ +\x00\x18\ +\x09\xa7\x07\x87\ +\x00\x73\ +\x00\x65\x00\x74\x00\x74\x00\x69\x00\x6e\x00\x67\x00\x73\x00\x5f\x00\x70\x00\x6c\x00\x75\x00\x67\x00\x69\x00\x6e\x00\x5f\x00\x6c\ +\x00\x69\x00\x73\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0e\ +\x04\xce\x3f\xc7\ +\x00\x74\ +\x00\x61\x00\x67\x00\x5f\x00\x65\x00\x64\x00\x69\x00\x74\x00\x6f\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x0a\xe6\xf8\x67\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x63\x00\x6f\x00\x6e\x00\x66\x00\x69\x00\x67\x00\x75\x00\x72\x00\x65\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x12\ +\x0d\x73\x66\x27\ +\x00\x63\ +\x00\x6c\x00\x65\x00\x61\x00\x72\x00\x5f\x00\x73\x00\x68\x00\x6f\x00\x72\x00\x74\x00\x63\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\ +\x00\x67\ +\x00\x17\ +\x09\x41\x2f\xc7\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x74\x00\x68\x00\x65\x00\x6d\x00\x65\x00\x6d\x00\x61\x00\x6e\x00\x61\x00\x67\ +\x00\x65\x00\x72\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x03\x5f\x3a\xc7\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x61\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x16\ +\x07\x0b\x20\x87\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x6f\x00\x6e\x00\x6c\x00\x69\x00\x6e\x00\x65\x00\x5f\x00\x68\x00\x65\x00\x6c\ +\x00\x70\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x0a\x5e\xd0\xe7\ +\x00\x73\ +\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x5f\x00\x65\x00\x78\x00\x69\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0f\ +\x00\xe4\x12\x87\ +\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x5f\x00\x61\x00\x6c\x00\x65\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x0d\ +\x01\x6b\x24\x07\ +\x00\x74\ +\x00\x6f\x00\x6f\x00\x6c\x00\x73\x00\x5f\x00\x61\x00\x64\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x03\xba\x72\x47\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\x00\x5f\x00\x69\x00\x6e\x00\x61\x00\x63\x00\x74\x00\x69\ +\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x15\ +\x08\xf6\x54\xe7\ +\x00\x73\ +\x00\x6f\x00\x6e\x00\x67\x00\x5f\x00\x75\x00\x73\x00\x61\x00\x67\x00\x65\x00\x5f\x00\x61\x00\x63\x00\x74\x00\x69\x00\x76\x00\x65\ +\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x17\ +\x00\x6a\xdb\x47\ +\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x5f\x00\x74\x00\x6f\x00\x5f\x00\x6c\x00\x69\ +\x00\x73\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x06\xf0\x43\x87\ +\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x73\x00\x65\x00\x6c\x00\x65\x00\x63\x00\x74\x00\x61\x00\x6c\x00\x6c\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x05\xcc\x59\x67\ +\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x72\x00\x65\x00\x6d\x00\x6f\x00\x76\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x0f\ +\x0b\xa4\x5a\x27\ +\x00\x69\ +\x00\x6d\x00\x70\x00\x6f\x00\x72\x00\x74\x00\x5f\x00\x6c\x00\x6f\x00\x61\x00\x64\x00\x2e\x00\x70\x00\x6e\x00\x67\ +" + +qt_resource_struct = "\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x12\x00\x00\x00\x01\ +\x00\x00\x00\xe6\x00\x02\x00\x00\x00\x06\x00\x00\x00\x85\ +\x00\x00\x00\x00\x00\x02\x00\x00\x00\x04\x00\x00\x00\x81\ +\x00\x00\x00\xb4\x00\x02\x00\x00\x00\x05\x00\x00\x00\x7c\ +\x00\x00\x00\xd6\x00\x02\x00\x00\x00\x14\x00\x00\x00\x68\ +\x00\x00\x00\x2c\x00\x02\x00\x00\x00\x02\x00\x00\x00\x66\ +\x00\x00\x00\x14\x00\x02\x00\x00\x00\x02\x00\x00\x00\x64\ +\x00\x00\x00\xf4\x00\x02\x00\x00\x00\x05\x00\x00\x00\x5f\ +\x00\x00\x01\x2e\x00\x02\x00\x00\x00\x09\x00\x00\x00\x56\ +\x00\x00\x00\x8c\x00\x02\x00\x00\x00\x0a\x00\x00\x00\x4c\ +\x00\x00\x00\xc4\x00\x02\x00\x00\x00\x03\x00\x00\x00\x49\ +\x00\x00\x00\x3c\x00\x02\x00\x00\x00\x10\x00\x00\x00\x39\ +\x00\x00\x00\x62\x00\x02\x00\x00\x00\x03\x00\x00\x00\x36\ +\x00\x00\x00\x78\x00\x02\x00\x00\x00\x01\x00\x00\x00\x35\ +\x00\x00\x01\x42\x00\x02\x00\x00\x00\x03\x00\x00\x00\x32\ +\x00\x00\x00\x9e\x00\x02\x00\x00\x00\x08\x00\x00\x00\x2a\ +\x00\x00\x01\x1a\x00\x02\x00\x00\x00\x01\x00\x00\x00\x29\ +\x00\x00\x00\x4e\x00\x02\x00\x00\x00\x11\x00\x00\x00\x18\ +\x00\x00\x01\x06\x00\x02\x00\x00\x00\x05\x00\x00\x00\x13\ +\x00\x00\x04\x4c\x00\x00\x00\x00\x00\x01\x00\x0a\xa7\x31\ +\x00\x00\x03\x8a\x00\x00\x00\x00\x00\x01\x00\x00\x23\xa9\ +\x00\x00\x03\xec\x00\x00\x00\x00\x00\x01\x00\x05\x65\x6d\ +\x00\x00\x04\x1a\x00\x00\x00\x00\x00\x01\x00\x08\x06\x4f\ +\x00\x00\x03\xbc\x00\x00\x00\x00\x00\x01\x00\x02\xc4\x8b\ +\x00\x00\x0f\x84\x00\x00\x00\x00\x00\x01\x00\x10\xce\x94\ +\x00\x00\x0f\xf4\x00\x00\x00\x00\x00\x01\x00\x10\xd5\xdf\ +\x00\x00\x0f\x34\x00\x00\x00\x00\x00\x01\x00\x10\xc9\x38\ +\x00\x00\x10\xd2\x00\x00\x00\x00\x00\x01\x00\x10\xe8\x5d\ +\x00\x00\x10\x54\x00\x00\x00\x00\x00\x01\x00\x10\xdd\xf5\ +\x00\x00\x0e\xdc\x00\x00\x00\x00\x00\x01\x00\x10\xc2\x01\ +\x00\x00\x11\x24\x00\x00\x00\x00\x00\x01\x00\x10\xee\x64\ +\x00\x00\x10\x1c\x00\x00\x00\x00\x00\x01\x00\x10\xd9\x53\ +\x00\x00\x11\x72\x00\x00\x00\x00\x00\x01\x00\x10\xf3\x90\ +\x00\x00\x0f\x06\x00\x00\x00\x00\x00\x01\x00\x10\xc4\x9f\ +\x00\x00\x10\xfe\x00\x00\x00\x00\x00\x01\x00\x10\xeb\x90\ +\x00\x00\x10\xa8\x00\x00\x00\x00\x00\x01\x00\x10\xe5\xe5\ +\x00\x00\x0f\x5a\x00\x00\x00\x00\x00\x01\x00\x10\xcc\x12\ +\x00\x00\x11\x4e\x00\x00\x00\x00\x00\x01\x00\x10\xf1\x49\ +\x00\x00\x10\x7c\x00\x00\x00\x00\x00\x01\x00\x10\xe1\x3a\ +\x00\x00\x0f\xd0\x00\x00\x00\x00\x00\x01\x00\x10\xd2\xe2\ +\x00\x00\x0f\xaa\x00\x00\x00\x00\x00\x01\x00\x10\xd0\xcb\ +\x00\x00\x03\x66\x00\x00\x00\x00\x00\x01\x00\x00\x21\x92\ +\x00\x00\x0b\x9c\x00\x00\x00\x00\x00\x01\x00\x0f\x43\x79\ +\x00\x00\x0c\x1c\x00\x00\x00\x00\x00\x01\x00\x0f\x4a\x3f\ +\x00\x00\x0b\x20\x00\x00\x00\x00\x00\x01\x00\x0f\x3c\x75\ +\x00\x00\x0b\xc4\x00\x00\x00\x00\x00\x01\x00\x0f\x46\x19\ +\x00\x00\x0c\x46\x00\x00\x00\x00\x00\x01\x00\x0f\x4d\x0a\ +\x00\x00\x0b\x6a\x00\x00\x00\x00\x00\x01\x00\x0f\x41\x8f\ +\x00\x00\x0b\x44\x00\x00\x00\x00\x00\x01\x00\x0f\x3f\x1c\ +\x00\x00\x0b\xfa\x00\x00\x00\x00\x00\x01\x00\x0f\x47\x9b\ +\x00\x00\x01\x5c\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x01\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x05\xe6\ +\x00\x00\x01\x8e\x00\x00\x00\x00\x00\x01\x00\x00\x02\xfe\ +\x00\x00\x0e\x2c\x00\x00\x00\x00\x00\x01\x00\x0f\x68\x58\ +\x00\x00\x0e\x56\x00\x00\x00\x00\x00\x01\x00\x0f\x6d\xc2\ +\x00\x00\x0e\x86\x00\x00\x00\x00\x00\x01\x00\x0f\xdc\x4b\ +\x00\x00\x0e\xa6\x00\x00\x00\x00\x00\x01\x00\x0f\xe2\xfc\ +\x00\x00\x11\xf4\x00\x00\x00\x00\x00\x01\x00\x10\xfa\xa4\ +\x00\x00\x11\x9a\x00\x00\x00\x00\x00\x01\x00\x10\xf5\xa3\ +\x00\x00\x14\x10\x00\x00\x00\x00\x00\x01\x00\x11\x24\xa9\ +\x00\x00\x12\x9a\x00\x00\x00\x00\x00\x01\x00\x11\x02\xae\ +\x00\x00\x12\x36\x00\x00\x00\x00\x00\x01\x00\x10\xfd\xf7\ +\x00\x00\x11\xc0\x00\x00\x00\x00\x00\x01\x00\x10\xf8\xd4\ +\x00\x00\x13\x62\x00\x00\x00\x00\x00\x01\x00\x11\x15\x84\ +\x00\x00\x13\x00\x00\x00\x00\x00\x00\x01\x00\x11\x0d\x54\ +\x00\x00\x14\x36\x00\x00\x00\x00\x00\x01\x00\x11\x27\x8b\ +\x00\x00\x13\xdc\x00\x00\x00\x00\x00\x01\x00\x11\x20\xcc\ +\x00\x00\x13\x2c\x00\x00\x00\x00\x00\x01\x00\x11\x12\x60\ +\x00\x00\x14\x68\x00\x00\x00\x00\x00\x01\x00\x11\x2b\x48\ +\x00\x00\x13\x84\x00\x00\x00\x00\x00\x01\x00\x11\x19\xf3\ +\x00\x00\x12\xc8\x00\x00\x00\x00\x00\x01\x00\x11\x0a\xde\ +\x00\x00\x13\xb2\x00\x00\x00\x00\x00\x01\x00\x11\x1e\x44\ +\x00\x00\x12\x64\x00\x00\x00\x00\x00\x01\x00\x10\xff\xfe\ +\x00\x00\x0a\x10\x00\x00\x00\x00\x00\x01\x00\x0e\xec\xf7\ +\x00\x00\x0a\x30\x00\x00\x00\x00\x00\x01\x00\x0e\xf0\xd4\ +\x00\x00\x09\xea\x00\x00\x00\x00\x00\x01\x00\x0e\xea\x59\ +\x00\x00\x0d\x0a\x00\x00\x00\x00\x00\x01\x00\x0f\x57\x26\ +\x00\x00\x0d\xa8\x00\x00\x00\x00\x00\x01\x00\x0f\x61\x9b\ +\x00\x00\x0e\x02\x00\x00\x00\x00\x00\x01\x00\x0f\x66\x54\ +\x00\x00\x0c\xa0\x00\x00\x00\x00\x00\x01\x00\x0f\x53\x36\ +\x00\x00\x0d\x84\x00\x00\x00\x00\x00\x01\x00\x0f\x5e\x68\ +\x00\x00\x0c\xd4\x00\x00\x00\x00\x00\x01\x00\x0f\x55\x2d\ +\x00\x00\x0d\x3e\x00\x00\x00\x00\x00\x01\x00\x0f\x59\x24\ +\x00\x00\x0d\x60\x00\x00\x00\x00\x00\x01\x00\x0f\x5b\x37\ +\x00\x00\x0d\xde\x00\x00\x00\x00\x00\x01\x00\x0f\x63\x83\ +\x00\x00\x0c\x78\x00\x00\x00\x00\x00\x01\x00\x0f\x50\x7a\ +\x00\x00\x02\xee\x00\x00\x00\x00\x00\x01\x00\x00\x1b\x20\ +\x00\x00\x02\x72\x00\x00\x00\x00\x00\x01\x00\x00\x11\xc5\ +\x00\x00\x02\x16\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x03\ +\x00\x00\x02\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x15\x7b\ +\x00\x00\x01\xee\x00\x00\x00\x00\x00\x01\x00\x00\x09\x05\ +\x00\x00\x02\x3c\x00\x00\x00\x00\x00\x01\x00\x00\x0f\x9a\ +\x00\x00\x02\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x18\xbd\ +\x00\x00\x03\x3e\x00\x00\x00\x00\x00\x01\x00\x00\x1f\x8c\ +\x00\x00\x03\x16\x00\x00\x00\x00\x00\x01\x00\x00\x1d\x72\ +\x00\x00\x04\xea\x00\x00\x00\x00\x00\x01\x00\x0d\x51\x59\ +\x00\x00\x04\x7c\x00\x00\x00\x00\x00\x01\x00\x0d\x48\x13\ +\x00\x00\x04\xb8\x00\x00\x00\x00\x00\x01\x00\x0d\x50\x06\ +\x00\x00\x05\x52\x00\x00\x00\x00\x00\x01\x00\x0d\x56\x1f\ +\x00\x00\x05\x20\x00\x00\x00\x00\x00\x01\x00\x0d\x54\x57\ +\x00\x00\x14\xd0\x00\x00\x00\x00\x00\x01\x00\x11\x34\x7c\ +\x00\x00\x15\x04\x00\x00\x00\x00\x00\x01\x00\x11\x37\x4c\ +\x00\x00\x14\x8c\x00\x00\x00\x00\x00\x01\x00\x11\x2e\xfb\ +\x00\x00\x14\xb0\x00\x00\x00\x00\x00\x01\x00\x11\x31\xf9\ +\x00\x00\x06\xde\x00\x00\x00\x00\x00\x01\x00\x0e\xaa\x8e\ +\x00\x00\x07\xc4\x00\x00\x00\x00\x00\x01\x00\x0e\xbb\x82\ +\x00\x00\x09\xca\x00\x00\x00\x00\x00\x01\x00\x0e\xe6\x66\ +\x00\x00\x09\x98\x00\x00\x00\x00\x00\x01\x00\x0e\xdf\x50\ +\x00\x00\x08\x7e\x00\x00\x00\x00\x00\x01\x00\x0e\xc4\x50\ +\x00\x00\x09\x1e\x00\x00\x00\x00\x00\x01\x00\x0e\xd7\x0f\ +\x00\x00\x09\x48\x00\x00\x00\x00\x00\x01\x00\x0e\xd9\x44\ +\x00\x00\x08\x1e\x00\x00\x00\x00\x00\x01\x00\x0e\xc0\x33\ +\x00\x00\x08\x4c\x00\x00\x00\x00\x00\x01\x00\x0e\xc2\xb3\ +\x00\x00\x07\x52\x00\x00\x00\x00\x00\x01\x00\x0e\xb4\x35\ +\x00\x00\x07\xa4\x00\x00\x00\x00\x00\x01\x00\x0e\xb8\x76\ +\x00\x00\x07\xec\x00\x00\x00\x00\x00\x01\x00\x0e\xbe\xe0\ +\x00\x00\x08\xd0\x00\x00\x00\x00\x00\x01\x00\x0e\xca\xc5\ +\x00\x00\x08\xa4\x00\x00\x00\x00\x00\x01\x00\x0e\xc8\x62\ +\x00\x00\x09\x6a\x00\x00\x00\x00\x00\x01\x00\x0e\xdd\x48\ +\x00\x00\x06\xb0\x00\x00\x00\x00\x00\x01\x00\x0e\xa3\xd0\ +\x00\x00\x07\x02\x00\x00\x00\x00\x00\x01\x00\x0e\xad\x7a\ +\x00\x00\x07\x2e\x00\x00\x00\x00\x00\x01\x00\x0e\xb0\xbc\ +\x00\x00\x07\x82\x00\x00\x00\x00\x00\x01\x00\x0e\xb5\x2e\ +\x00\x00\x08\xee\x00\x00\x00\x00\x00\x01\x00\x0e\xcd\x67\ +\x00\x00\x0a\x94\x00\x00\x00\x00\x00\x01\x00\x0f\x27\xb3\ +\x00\x00\x0a\xda\x00\x00\x00\x00\x00\x01\x00\x0f\x32\xb8\ +\x00\x00\x0a\xfc\x00\x00\x00\x00\x00\x01\x00\x0f\x35\x8e\ +\x00\x00\x0a\x52\x00\x00\x00\x00\x00\x01\x00\x0e\xf4\x0e\ +\x00\x00\x0a\xb6\x00\x00\x00\x00\x00\x01\x00\x0f\x2b\x86\ +\x00\x00\x15\x34\x00\x00\x00\x00\x00\x01\x00\x11\x3a\x45\ +\x00\x00\x15\x96\x00\x00\x00\x00\x00\x01\x00\x11\x40\xbb\ +\x00\x00\x15\x68\x00\x00\x00\x00\x00\x01\x00\x11\x3d\xa7\ +\x00\x00\x15\xbe\x00\x00\x00\x00\x00\x01\x00\x11\x43\x59\ +\x00\x00\x06\x18\x00\x00\x00\x00\x00\x01\x00\x0d\x91\xaf\ +\x00\x00\x05\xb8\x00\x00\x00\x00\x00\x01\x00\x0d\x62\x6f\ +\x00\x00\x05\x88\x00\x00\x00\x00\x00\x01\x00\x0d\x57\xdb\ +\x00\x00\x05\xe8\x00\x00\x00\x00\x00\x01\x00\x0d\x77\xa4\ +\x00\x00\x06\x48\x00\x00\x00\x00\x00\x01\x00\x0d\x95\xcc\ +\x00\x00\x06\x7c\x00\x00\x00\x00\x00\x01\x00\x0e\x5e\x65\ +" + +def qInitResources(): + QtCore.qRegisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +def qCleanupResources(): + QtCore.qUnregisterResourceData(0x01, qt_resource_struct, qt_resource_name, qt_resource_data) + +qInitResources() diff --git a/openlp/core/theme/__init__.py b/openlp/core/theme/__init__.py index e033fbf87..468baf091 100644 --- a/openlp/core/theme/__init__.py +++ b/openlp/core/theme/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/theme/theme.py b/openlp/core/theme/theme.py index db9356666..fe6cf443c 100644 --- a/openlp/core/theme/theme.py +++ b/openlp/core/theme/theme.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py index adcd669ed..e81d83a36 100644 --- a/openlp/core/ui/__init__.py +++ b/openlp/core/ui/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/aboutdialog.py b/openlp/core/ui/aboutdialog.py index d8d7ba6e8..fb0a4d1c2 100644 --- a/openlp/core/ui/aboutdialog.py +++ b/openlp/core/ui/aboutdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -108,36 +109,47 @@ class Ui_AboutDialog(object): contributors = [u'Gerald "jerryb" Britton', u'Samuel "MrGamgee" Findlay', u'Scott "sguerrieri" Guerrieri', u'Matthias "matthub" Hub', u'Meinert "m2j" Jordan', - u'Armin "orangeshirt" K\xf6hler', u'Edwin "edwinlunando" Lunando', + u'Armin "orangeshirt" K\xf6hler', u'Erik "luen" Lundin', + u'Edwin "edwinlunando" Lunando', u'Brian "brianmeyer" Meyer', u'Joshua "milleja46" Miller', u'Stevan "ElderP" Pettit', u'Mattias "mahfiaz" P\xf5ldaru', u'Christian "crichter" Richter', u'Philip "Phill" Ridout', u'Simon "samscudder" Scudder', u'Jeffrey "whydoubt" Smith', u'Maikel Stuivenberg', - u'Dave "Dave42W" Warnock', u'Frode "frodus" Woldsund'] + u'Dave "Dave42W" Warnock', u'Frode "frodus" Woldsund', + u'Martin "matysek" Zibricky'] testers = [u'Philip "Phill" Ridout', u'Wesley "wrst" Stout', u'John "jseagull1" Cegalis (lead)'] packagers = ['Thomas "tabthorpe" Abthorpe (FreeBSD)', u'Tim "TRB143" Bentley (Fedora and Android)', u'Matthias "matthub" Hub (Mac OS X)', + u'Joseph "jdmulloy" Mulloy (openSUSE)', u'Stevan "ElderP" Pettit (Windows)', - u'Raoul "superfly" Snyman (Ubuntu)', + u'Raoul "superfly" Snyman (Debian, Ubuntu)', u'Garrett "floft" Wilson (Arch Linux)'] translators = { u'af': [u'Johan "nuvolari" Mynhardt'], + u'cs': [u'Martin "matysek" Zibricky'], + u'da': [u'Henrik "Hsonesson" Sonesson'], u'de': [u'Patrick "madmuffin" Br\xfcckner', u'Meinert "m2j" Jordan', u'Andreas "googol" Preikschat', u'Christian "crichter" Richter'], u'en_GB': [u'Tim "TRB143" Bentley', u'Jonathan "gushie" Corwin'], - u'en_ZA': [u'Raoul "superfly" Snyman'], + u'en_ZA': [u'Raoul "superfly" Snyman', + u'Johan "nuvolari" Mynhardt'], + u'el': [u'Alexander Siozos'], + u'es': [u'Josu\xe9 Z\xfa\xf1iga',u'Christian Gonzalez'], u'et': [u'Mattias "mahfiaz" P\xf5ldaru'], - u'fr': [u'Stephan\xe9 "stbrunner" Brunner'], + u'fr': [u'Stephan\xe9 "stbrunner" Brunner', u'Jeremie'], u'hu': [u'Gyuris Gell\xe9rt'], - u'ja': [u'Kunio "Kunio" Nakamaru'], + u'ja': [u'Kunio "Kunio" Nakamaru', u'Chris Haris'], u'nb': [u'Atle "pendlaren" Weibell', u'Frode "frodus" Woldsund'], u'nl': [u'Arjen "typovar" van Voorst'], - u'pt_BR': [u'Rafael "rafaellerm" Lerm', u'Gustavo Bim', - u'Simon "samscudder" Scudder'], - u'ru': [u'Sergey "ratz" Ratz'] + u'pt_BR': [u'David Mederiros',u'Rafael "rafaellerm" Lerm', + u'Eduardo Levi Chaves', + u'Gustavo Bim', u'Rog\xeanio Bel\xe9m', u'Samuel' + u'Simon "samscudder" Scudder', u'Van Der Fran'], + u'ru': [u'Sergey "ratz" Ratz'], + u'sv': [u'Erik "luen" Lundin'] } documentors = [u'Wesley "wrst" Stout', u'John "jseagull1" Cegalis (lead)'] @@ -160,12 +172,20 @@ class Ui_AboutDialog(object): 'Translators\n' ' Afrikaans (af)\n' ' %s\n' + ' Czeck (cs)\n' + ' %s\n' + ' Danish (da)\n' + ' %s\n' ' German (de)\n' ' %s\n' + ' Greek (el)\n' + ' %s\n' ' English, United Kingdom (en_GB)\n' ' %s\n' ' English, South Africa (en_ZA)\n' ' %s\n' + ' Spanish (es)\n' + ' %s\n' ' Estonian (et)\n' ' %s\n' ' French (fr)\n' @@ -182,13 +202,15 @@ class Ui_AboutDialog(object): ' %s\n' ' Russian (ru)\n' ' %s\n' + ' Swedish (sv)\n' + ' %s\n' '\n' 'Documentation\n' ' %s\n' '\n' 'Built With\n' ' Python: http://www.python.org/\n' - ' Qt4: http://qt.nokia.com/\n' + ' Qt4: http://qt.digia.com/\n' ' PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/' 'intro\n' ' Oxygen Icons: http://oxygen-icons.org/\n' @@ -205,9 +227,13 @@ class Ui_AboutDialog(object): ' He has set us free.')) % (lead, u'\n '.join(developers), u'\n '.join(contributors), u'\n '.join(testers), u'\n '.join(packagers), u'\n '.join(translators[u'af']), + u'\n '.join(translators[u'cs']), + u'\n '.join(translators[u'da']), u'\n '.join(translators[u'de']), + u'\n '.join(translators[u'el']), u'\n '.join(translators[u'en_GB']), u'\n '.join(translators[u'en_ZA']), + u'\n '.join(translators[u'es']), u'\n '.join(translators[u'et']), u'\n '.join(translators[u'fr']), u'\n '.join(translators[u'hu']), @@ -216,6 +242,7 @@ class Ui_AboutDialog(object): u'\n '.join(translators[u'nl']), u'\n '.join(translators[u'pt_BR']), u'\n '.join(translators[u'ru']), + u'\n '.join(translators[u'sv']), u'\n '.join(documentors))) self.aboutNotebook.setTabText( self.aboutNotebook.indexOf(self.creditsTab), @@ -225,10 +252,12 @@ class Ui_AboutDialog(object): 'Portions copyright \xa9 2004-2012 %s')) % (u'Raoul Snyman', u'Tim Bentley, Gerald Britton, Jonathan Corwin, Samuel Findlay, ' u'Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, ' - u'Armin K\xf6hler, Edwin Lunando, Joshua Miller, Stevan Pettit, ' - u'Andreas Preikschat, Mattias P\xf5ldaru, Christian Richter, ' + u'Armin K\xf6hler, Erik Lundin, Edwin Lunando, Joshua Miller, ' + u'Brian T. Meyer, Stevan Pettit, Andreas Preikschat, ' + u'Mattias P\xf5ldaru, Christian Richter, ' u'Philip Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, ' - u'Martin Thompson, Jon Tibble, Dave Warnock, Frode Woldsund') + u'Martin Thompson, Jon Tibble, Dave Warnock, Frode Woldsund, ' + u'Martin Zibricky') licence = translate('OpenLP.AboutForm', 'This program is free software; you can redistribute it and/or ' 'modify it under the terms of the GNU General Public License as ' diff --git a/openlp/core/ui/aboutform.py b/openlp/core/ui/aboutform.py index 465286fa7..496e5d494 100644 --- a/openlp/core/ui/aboutform.py +++ b/openlp/core/ui/aboutform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -62,5 +63,5 @@ class AboutForm(QtGui.QDialog, Ui_AboutDialog): Launch a web browser and go to the contribute page on the site. """ import webbrowser - url = u'http://openlp.org/en/documentation/introduction/contributing' + url = u'http://openlp.org/en/contribute' webbrowser.open_new(url) diff --git a/openlp/core/ui/advancedtab.py b/openlp/core/ui/advancedtab.py index 6514de8db..8086f262f 100644 --- a/openlp/core/ui/advancedtab.py +++ b/openlp/core/ui/advancedtab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -29,12 +30,12 @@ The :mod:`advancedtab` provides an advanced settings facility. """ from datetime import datetime, timedelta - -from PyQt4 import QtCore, QtGui - import logging import os import sys + +from PyQt4 import QtCore, QtGui + from openlp.core.lib import SettingsTab, translate, build_icon, Receiver from openlp.core.lib.settings import Settings from openlp.core.lib.ui import UiStrings @@ -483,8 +484,14 @@ class AdvancedTab(SettingsTab): QtCore.QVariant(True)).toBool() self.serviceNameCheckBox.setChecked(default_service_enabled) self.serviceNameCheckBoxToggled(default_service_enabled) - self.x11BypassCheckBox.setChecked( - settings.value(u'x11 bypass wm', QtCore.QVariant(True)).toBool()) + # Fix for bug #1014422. + x11_bypass_default = True + if sys.platform.startswith(u'linux'): + # Default to False on Gnome. + x11_bypass_default = bool(not + os.environ.get(u'GNOME_DESKTOP_SESSION_ID')) + self.x11BypassCheckBox.setChecked(settings.value( + u'x11 bypass wm', QtCore.QVariant(x11_bypass_default)).toBool()) self.defaultColor = settings.value(u'default color', QtCore.QVariant(u'#ffffff')).toString() self.defaultFileEdit.setText(settings.value(u'default image', diff --git a/openlp/core/ui/exceptiondialog.py b/openlp/core/ui/exceptiondialog.py index 07f43057b..8f402b593 100644 --- a/openlp/core/ui/exceptiondialog.py +++ b/openlp/core/ui/exceptiondialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/exceptionform.py b/openlp/core/ui/exceptionform.py index 3c59fcabf..49ec2818f 100644 --- a/openlp/core/ui/exceptionform.py +++ b/openlp/core/ui/exceptionform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/filerenamedialog.py b/openlp/core/ui/filerenamedialog.py index 4c041418a..7edfccbde 100644 --- a/openlp/core/ui/filerenamedialog.py +++ b/openlp/core/ui/filerenamedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/filerenameform.py b/openlp/core/ui/filerenameform.py index 960cfc824..d47c5e81e 100644 --- a/openlp/core/ui/filerenameform.py +++ b/openlp/core/ui/filerenameform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimeform.py b/openlp/core/ui/firsttimeform.py index 7ee3807e2..efb69ffa4 100644 --- a/openlp/core/ui/firsttimeform.py +++ b/openlp/core/ui/firsttimeform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -177,8 +178,10 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): return FirstTimePage.Progress elif self.currentId() == FirstTimePage.Themes: Receiver.send_message(u'cursor_busy') + Receiver.send_message(u'openlp_process_events') while not self.themeScreenshotThread.isFinished(): time.sleep(0.1) + Receiver.send_message(u'openlp_process_events') # Build the screenshot icons, as this can not be done in the thread. self._buildThemeScreenshots() Receiver.send_message(u'cursor_normal') @@ -188,10 +191,11 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): def onCurrentIdChanged(self, pageId): """ - Detects Page changes and updates as approprate. + Detects Page changes and updates as appropriate. """ # Keep track of the page we are at. Triggering "Cancel" causes pageId # to be a -1. + Receiver.send_message(u'openlp_process_events') if pageId != -1: self.lastId = pageId if pageId == FirstTimePage.Plugins: @@ -227,10 +231,12 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): self.cancelButton.setVisible(False) elif pageId == FirstTimePage.Progress: Receiver.send_message(u'cursor_busy') + self.repaint() + Receiver.send_message(u'openlp_process_events') + # Try to give the wizard a chance to redraw itself + time.sleep(0.2) self._preWizard() - Receiver.send_message(u'openlp_process_events') self._performWizard() - Receiver.send_message(u'openlp_process_events') self._postWizard() Receiver.send_message(u'cursor_normal') Receiver.send_message(u'openlp_process_events') @@ -263,8 +269,8 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): """ Receiver.send_message(u'cursor_busy') self._performWizard() - Receiver.send_message(u'openlp_process_events') Receiver.send_message(u'cursor_normal') + Receiver.send_message(u'openlp_process_events') Settings().setValue(u'general/has run wizard', QtCore.QVariant(True)) self.close() @@ -342,6 +348,7 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): Receiver.send_message(u'openlp_process_events') # Loop through the songs list and increase for each selected item for i in xrange(self.songsListWidget.count()): + Receiver.send_message(u'openlp_process_events') item = self.songsListWidget.item(i) if item.checkState() == QtCore.Qt.Checked: filename = item.data(QtCore.Qt.UserRole).toString() @@ -350,6 +357,7 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): # Loop through the Bibles list and increase for each selected item iterator = QtGui.QTreeWidgetItemIterator(self.biblesTreeWidget) while iterator.value(): + Receiver.send_message(u'openlp_process_events') item = iterator.value() if item.parent() and item.checkState(0) == QtCore.Qt.Checked: filename = item.data(0, QtCore.Qt.UserRole).toString() @@ -358,6 +366,7 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): iterator += 1 # Loop through the themes list and increase for each selected item for i in xrange(self.themesListWidget.count()): + Receiver.send_message(u'openlp_process_events') item = self.themesListWidget.item(i) if item.checkState() == QtCore.Qt.Checked: filename = item.data(QtCore.Qt.UserRole).toString() @@ -379,6 +388,10 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): self.progressPage.setTitle(translate('OpenLP.FirstTimeWizard', 'Setting Up')) self.progressPage.setSubTitle(u'Setup complete.') + self.repaint() + Receiver.send_message(u'openlp_process_events') + # Try to give the wizard a chance to repaint itself + time.sleep(0.1) def _postWizard(self): """ @@ -416,8 +429,11 @@ class FirstTimeForm(QtGui.QWizard, Ui_FirstTimeWizard): 'Enabling selected plugins...')) self._setPluginStatus(self.songsCheckBox, u'songs/status') self._setPluginStatus(self.bibleCheckBox, u'bibles/status') - self._setPluginStatus(self.presentationCheckBox, - u'presentations/status') + # TODO Presentation plugin is not yet working on Mac OS X. + # For now just ignore it. + if sys.platform != 'darwin': + self._setPluginStatus(self.presentationCheckBox, + u'presentations/status') self._setPluginStatus(self.imageCheckBox, u'images/status') self._setPluginStatus(self.mediaCheckBox, u'media/status') self._setPluginStatus(self.remoteCheckBox, u'remotes/status') diff --git a/openlp/core/ui/firsttimelanguagedialog.py b/openlp/core/ui/firsttimelanguagedialog.py index 7c4b4ae0b..b431bd2ec 100644 --- a/openlp/core/ui/firsttimelanguagedialog.py +++ b/openlp/core/ui/firsttimelanguagedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimelanguageform.py b/openlp/core/ui/firsttimelanguageform.py index d8a35ad87..aada5a63d 100644 --- a/openlp/core/ui/firsttimelanguageform.py +++ b/openlp/core/ui/firsttimelanguageform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/firsttimewizard.py b/openlp/core/ui/firsttimewizard.py index 1ce523cbc..3eec05895 100644 --- a/openlp/core/ui/firsttimewizard.py +++ b/openlp/core/ui/firsttimewizard.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -82,13 +83,13 @@ class Ui_FirstTimeWizard(object): self.imageCheckBox.setChecked(True) self.imageCheckBox.setObjectName(u'imageCheckBox') self.pluginLayout.addWidget(self.imageCheckBox) - self.presentationCheckBox = QtGui.QCheckBox(self.pluginPage) - if sys.platform == "darwin": - self.presentationCheckBox.setChecked(False) - else: + # TODO Presentation plugin is not yet working on Mac OS X. + # For now just ignore it. + if sys.platform != 'darwin': + self.presentationCheckBox = QtGui.QCheckBox(self.pluginPage) self.presentationCheckBox.setChecked(True) - self.presentationCheckBox.setObjectName(u'presentationCheckBox') - self.pluginLayout.addWidget(self.presentationCheckBox) + self.presentationCheckBox.setObjectName(u'presentationCheckBox') + self.pluginLayout.addWidget(self.presentationCheckBox) self.mediaCheckBox = QtGui.QCheckBox(self.pluginPage) self.mediaCheckBox.setChecked(True) self.mediaCheckBox.setObjectName(u'mediaCheckBox') @@ -214,10 +215,11 @@ class Ui_FirstTimeWizard(object): self.bibleCheckBox.setText(translate('OpenLP.FirstTimeWizard', 'Bible')) self.imageCheckBox.setText(translate('OpenLP.FirstTimeWizard', 'Images')) - self.presentationCheckBox.setText(translate('OpenLP.FirstTimeWizard', - 'Presentations')) - if sys.platform == "darwin": - self.presentationCheckBox.setEnabled(False) + # TODO Presentation plugin is not yet working on Mac OS X. + # For now just ignore it. + if sys.platform != 'darwin': + self.presentationCheckBox.setText(translate('OpenLP.FirstTimeWizard', + 'Presentations')) self.mediaCheckBox.setText(translate('OpenLP.FirstTimeWizard', 'Media (Audio and Video)')) self.remoteCheckBox.setText(translate('OpenLP.FirstTimeWizard', diff --git a/openlp/core/ui/formattingtagdialog.py b/openlp/core/ui/formattingtagdialog.py index 1eb03e13c..f3ae06fe0 100644 --- a/openlp/core/ui/formattingtagdialog.py +++ b/openlp/core/ui/formattingtagdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/formattingtagform.py b/openlp/core/ui/formattingtagform.py index 3af107224..3bbcbc9ad 100644 --- a/openlp/core/ui/formattingtagform.py +++ b/openlp/core/ui/formattingtagform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/generaltab.py b/openlp/core/ui/generaltab.py index 086709668..a88a2243c 100644 --- a/openlp/core/ui/generaltab.py +++ b/openlp/core/ui/generaltab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/maindisplay.py b/openlp/core/ui/maindisplay.py index 306bb7511..5302e8413 100644 --- a/openlp/core/ui/maindisplay.py +++ b/openlp/core/ui/maindisplay.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -31,6 +32,7 @@ and play multimedia within OpenLP. """ import cgi import logging +import os import sys from PyQt4 import QtCore, QtGui, QtWebKit, QtOpenGL @@ -135,8 +137,14 @@ class MainDisplay(Display): self.setStyleSheet(u'border: 0px; margin: 0px; padding: 0px;') windowFlags = QtCore.Qt.FramelessWindowHint | QtCore.Qt.Tool | \ QtCore.Qt.WindowStaysOnTopHint + # Fix for bug #1014422. + x11_bypass_default = True + if sys.platform.startswith(u'linux'): + # Default to False on Gnome. + x11_bypass_default = bool(not + os.environ.get(u'GNOME_DESKTOP_SESSION_ID')) if Settings().value(u'advanced/x11 bypass wm', - QtCore.QVariant(True)).toBool(): + QtCore.QVariant(x11_bypass_default)).toBool(): windowFlags |= QtCore.Qt.X11BypassWindowManagerHint # TODO: The following combination of windowFlags works correctly # on Mac OS X. For next OpenLP version we should test it on other diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 585aba15b..24980d00c 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -816,7 +817,10 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): return Receiver.send_message(u'cursor_busy') screens = ScreenList() - FirstTimeForm(screens, self).exec_() + firstTime = FirstTimeForm(screens, self) + firstTime.exec_() + if firstTime.downloadCancelled: + return self.firstTime() for plugin in self.pluginManager.plugins: self.activePlugin = plugin @@ -971,6 +975,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow): setting_sections.extend([self.themesSettingsSection]) setting_sections.extend([self.displayTagsSection]) setting_sections.extend([self.headerSection]) + setting_sections.extend([u'crashreport']) # Add plugin sections. for plugin in self.pluginManager.plugins: setting_sections.extend([plugin.name]) diff --git a/openlp/core/ui/media/__init__.py b/openlp/core/ui/media/__init__.py index c5e5d9a9c..d782e36fb 100644 --- a/openlp/core/ui/media/__init__.py +++ b/openlp/core/ui/media/__init__.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/media/mediacontroller.py b/openlp/core/ui/media/mediacontroller.py index d56538331..2480aef28 100644 --- a/openlp/core/ui/media/mediacontroller.py +++ b/openlp/core/ui/media/mediacontroller.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -106,11 +107,6 @@ class MediaController(object): AppLocation.get_directory(AppLocation.AppDir), u'core', u'ui', u'media') for filename in os.listdir(controller_dir): - # TODO vlc backend is not yet working on Mac OS X. - # For now just ignore vlc backend on Mac OS X. - if sys.platform == 'darwin' and filename == 'vlcplayer.py': - log.warn(u'Disabling vlc media player') - continue if filename.endswith(u'player.py'): path = os.path.join(controller_dir, filename) if os.path.isfile(path): @@ -149,13 +145,18 @@ class MediaController(object): if not self.curDisplayMediaPlayer.keys(): self.timer.stop() else: + any_active = False for display in self.curDisplayMediaPlayer.keys(): self.curDisplayMediaPlayer[display].resize(display) self.curDisplayMediaPlayer[display].update_ui(display) if self.curDisplayMediaPlayer[display].state == \ - MediaState.Playing: - return - # no players are active anymore + MediaState.Playing: + any_active = True + # There are still any active players - no need to stop timer. + if any_active: + return + + # No players are active anymore. for display in self.curDisplayMediaPlayer.keys(): if self.curDisplayMediaPlayer[display].state != MediaState.Paused: display.controller.seekSlider.setSliderPosition(0) @@ -294,7 +295,8 @@ class MediaController(object): """ player.resize(display) - def video(self, controller, file, muted, isBackground, hidden=False): + def video(self, controller, file, muted, isBackground, hidden=False, + isInfo=False, controlsVisible=True): """ Loads and starts a video to run with the option of sound """ @@ -352,14 +354,16 @@ class MediaController(object): elif Settings().value(u'general/auto unblank', QtCore.QVariant(False)).toBool(): autoplay = True - if autoplay: + # Start playback only for visible widgets. If we need just load a video + # and get video information, do not start playback. + if autoplay and not isInfo: if not self.video_play([controller]): critical_error_message_box( translate('MediaPlugin.MediaItem', 'Unsupported File'), unicode(translate('MediaPlugin.MediaItem', 'Unsupported File'))) return False - self.set_controls_visible(controller, True) + self.set_controls_visible(controller, controlsVisible) log.debug(u'use %s controller' % self.curDisplayMediaPlayer[display]) return True diff --git a/openlp/core/ui/media/phononplayer.py b/openlp/core/ui/media/phononplayer.py index 94865d16b..681cf5de8 100644 --- a/openlp/core/ui/media/phononplayer.py +++ b/openlp/core/ui/media/phononplayer.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -52,7 +53,7 @@ ADDITIONAL_EXT = { u'video/x-matroska': [u'.mpv', u'.mkv'], u'video/x-wmv': [u'.wmv'], u'video/x-mpg': [u'.mpg'], - u'video/mpeg' : [u'.mp4', u'.mts'], + u'video/mpeg' : [u'.mp4', u'.mts', u'.mov'], u'video/x-ms-wmv': [u'.wmv']} diff --git a/openlp/core/ui/media/vlc.py b/openlp/core/ui/media/vlc.py index dbab7e2ea..9948fcd81 100644 --- a/openlp/core/ui/media/vlc.py +++ b/openlp/core/ui/media/vlc.py @@ -48,9 +48,9 @@ import sys from inspect import getargspec __version__ = "N/A" -build_date = "Mon Sep 10 16:51:25 2012" +build_date = "Fri Oct 5 21:35:59 2012" -if sys.version_info.major > 2: +if sys.version_info[0] > 2: str = str unicode = str bytes = bytes @@ -680,6 +680,19 @@ class LogCb(ctypes.c_void_p): \note Log message handlers must be thread-safe. """ pass +class VideoLockCb(ctypes.c_void_p): + """Callback prototype to allocate and lock a picture buffer. +Whenever a new video frame needs to be decoded, the lock callback is +invoked. Depending on the video chroma, one or three pixel planes of +adequate dimensions must be returned via the second parameter. Those +planes must be aligned on 32-bytes boundaries. +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] +\param planes start address of the pixel planes (LibVLC allocates the array + of void pointers, this callback must initialize the array) [OUT] +\return a private pointer for the display and unlock callbacks to identify + the picture buffers + """ + pass class VideoUnlockCb(ctypes.c_void_p): """Callback prototype to unlock a picture buffer. When the video frame decoding is complete, the unlock callback is invoked. @@ -687,7 +700,7 @@ This callback might not be needed at all. It is only an indication that the application can now read the pixel values if it needs to. \warning A picture buffer is unlocked after the picture is decoded, but before the picture is displayed. -\param opaque private pointer as passed to libvlc_video_set_callbacks() [IN] +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] \param planes pixel planes as defined by the @ref libvlc_video_lock_cb @@ -698,7 +711,7 @@ class VideoDisplayCb(ctypes.c_void_p): """Callback prototype to display a picture. When the video frame needs to be shown, as determined by the media playback clock, the display callback is invoked. -\param opaque private pointer as passed to libvlc_video_set_callbacks() [IN] +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] """ @@ -710,7 +723,7 @@ and the chain of video filters (if any). It can opt to change any parameter as it needs. In that case, LibVLC will attempt to convert the video format (rescaling and chroma conversion) but these operations can be CPU intensive. \param opaque pointer to the private pointer passed to - libvlc_video_set_callbacks() [IN/OUT] + L{libvlc_video_set_callbacks}() [IN/OUT] \param chroma pointer to the 4 bytes video format identifier [IN/OUT] \param width pointer to the pixel width [IN/OUT] \param height pointer to the pixel height [IN/OUT] @@ -730,7 +743,7 @@ in the video decoders, video filters and/or video converters. pass class VideoCleanupCb(ctypes.c_void_p): """Callback prototype to configure picture buffers format. -\param opaque private pointer as passed to libvlc_video_set_callbacks() +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() (and possibly modified by @ref libvlc_video_format_cb) [IN] """ pass @@ -806,6 +819,18 @@ class CallbackDecorators(object): \param args variable argument list for the format \note Log message handlers must be thread-safe. ''' + VideoLockCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ListPOINTER(ctypes.c_void_p)) + VideoLockCb.__doc__ = '''Callback prototype to allocate and lock a picture buffer. +Whenever a new video frame needs to be decoded, the lock callback is +invoked. Depending on the video chroma, one or three pixel planes of +adequate dimensions must be returned via the second parameter. Those +planes must be aligned on 32-bytes boundaries. +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] +\param planes start address of the pixel planes (LibVLC allocates the array + of void pointers, this callback must initialize the array) [OUT] +\return a private pointer for the display and unlock callbacks to identify + the picture buffers + ''' VideoUnlockCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p, ListPOINTER(ctypes.c_void_p)) VideoUnlockCb.__doc__ = '''Callback prototype to unlock a picture buffer. When the video frame decoding is complete, the unlock callback is invoked. @@ -813,7 +838,7 @@ This callback might not be needed at all. It is only an indication that the application can now read the pixel values if it needs to. \warning A picture buffer is unlocked after the picture is decoded, but before the picture is displayed. -\param opaque private pointer as passed to libvlc_video_set_callbacks() [IN] +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] \param planes pixel planes as defined by the @ref libvlc_video_lock_cb @@ -823,7 +848,7 @@ but before the picture is displayed. VideoDisplayCb.__doc__ = '''Callback prototype to display a picture. When the video frame needs to be shown, as determined by the media playback clock, the display callback is invoked. -\param opaque private pointer as passed to libvlc_video_set_callbacks() [IN] +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() [IN] \param picture private pointer returned from the @ref libvlc_video_lock_cb callback [IN] ''' @@ -834,7 +859,7 @@ and the chain of video filters (if any). It can opt to change any parameter as it needs. In that case, LibVLC will attempt to convert the video format (rescaling and chroma conversion) but these operations can be CPU intensive. \param opaque pointer to the private pointer passed to - libvlc_video_set_callbacks() [IN/OUT] + L{libvlc_video_set_callbacks}() [IN/OUT] \param chroma pointer to the 4 bytes video format identifier [IN/OUT] \param width pointer to the pixel width [IN/OUT] \param height pointer to the pixel height [IN/OUT] @@ -853,7 +878,7 @@ in the video decoders, video filters and/or video converters. ''' VideoCleanupCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p) VideoCleanupCb.__doc__ = '''Callback prototype to configure picture buffers format. -\param opaque private pointer as passed to libvlc_video_set_callbacks() +\param opaque private pointer as passed to L{libvlc_video_set_callbacks}() (and possibly modified by @ref libvlc_video_format_cb) [IN] ''' AudioPlayCb = ctypes.CFUNCTYPE(ctypes.c_void_p, ctypes.c_void_p, ctypes.c_void_p, ctypes.c_uint, ctypes.c_int64) @@ -2483,9 +2508,22 @@ class MediaPlayer(_Ctype): ''' return libvlc_media_player_stop(self) + def video_set_callbacks(self, lock, unlock, display, opaque): + '''Set callbacks and private data to render decoded video to a custom area + in memory. + Use L{video_set_format}() or L{video_set_format_callbacks}() + to configure the decoded format. + @param lock: callback to lock video memory (must not be NULL). + @param unlock: callback to unlock video memory (or NULL if not needed). + @param display: callback to display video (or NULL if not needed). + @param opaque: private pointer for the three callbacks (as first parameter). + @version: LibVLC 1.1.1 or later. + ''' + return libvlc_video_set_callbacks(self, lock, unlock, display, opaque) + def video_set_format(self, chroma, width, height, pitch): '''Set decoded video chroma and dimensions. - This only works in combination with libvlc_video_set_callbacks(), + This only works in combination with L{video_set_callbacks}(), and is mutually exclusive with L{video_set_format_callbacks}(). @param chroma: a four-characters string identifying the chroma (e.g. "RV32" or "YUYV"). @param width: pixel width. @@ -2498,7 +2536,7 @@ class MediaPlayer(_Ctype): def video_set_format_callbacks(self, setup, cleanup): '''Set decoded video chroma and dimensions. This only works in combination with - libvlc_video_set_callbacks(). + L{video_set_callbacks}(). @param setup: callback to select the video format (cannot be NULL). @param cleanup: callback to release any allocated resources (or NULL). @version: LibVLC 2.0.0 or later. @@ -4382,9 +4420,26 @@ def libvlc_media_player_stop(p_mi): None, MediaPlayer) return f(p_mi) +def libvlc_video_set_callbacks(mp, lock, unlock, display, opaque): + '''Set callbacks and private data to render decoded video to a custom area + in memory. + Use L{libvlc_video_set_format}() or L{libvlc_video_set_format_callbacks}() + to configure the decoded format. + @param mp: the media player. + @param lock: callback to lock video memory (must not be NULL). + @param unlock: callback to unlock video memory (or NULL if not needed). + @param display: callback to display video (or NULL if not needed). + @param opaque: private pointer for the three callbacks (as first parameter). + @version: LibVLC 1.1.1 or later. + ''' + f = _Cfunctions.get('libvlc_video_set_callbacks', None) or \ + _Cfunction('libvlc_video_set_callbacks', ((1,), (1,), (1,), (1,), (1,),), None, + None, MediaPlayer, VideoLockCb, VideoUnlockCb, VideoDisplayCb, ctypes.c_void_p) + return f(mp, lock, unlock, display, opaque) + def libvlc_video_set_format(mp, chroma, width, height, pitch): '''Set decoded video chroma and dimensions. - This only works in combination with libvlc_video_set_callbacks(), + This only works in combination with L{libvlc_video_set_callbacks}(), and is mutually exclusive with L{libvlc_video_set_format_callbacks}(). @param mp: the media player. @param chroma: a four-characters string identifying the chroma (e.g. "RV32" or "YUYV"). @@ -4401,7 +4456,7 @@ def libvlc_video_set_format(mp, chroma, width, height, pitch): def libvlc_video_set_format_callbacks(mp, setup, cleanup): '''Set decoded video chroma and dimensions. This only works in combination with - libvlc_video_set_callbacks(). + L{libvlc_video_set_callbacks}(). @param mp: the media player. @param setup: callback to select the video format (cannot be NULL). @param cleanup: callback to release any allocated resources (or NULL). @@ -5878,10 +5933,9 @@ def libvlc_vlm_get_event_manager(p_instance): return f(p_instance) -# 3 function(s) blacklisted: +# 2 function(s) blacklisted: # libvlc_printerr # libvlc_set_exit_handler -# libvlc_video_set_callbacks # 17 function(s) not wrapped as methods: # libvlc_audio_output_list_release diff --git a/openlp/core/ui/media/vlcplayer.py b/openlp/core/ui/media/vlcplayer.py index 6203ca696..28c1a84df 100644 --- a/openlp/core/ui/media/vlcplayer.py +++ b/openlp/core/ui/media/vlcplayer.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -72,7 +73,7 @@ VIDEO_EXT = [ u'*.avi', u'*.flv', u'*.mov', - u'*.mp4', + u'*.mp4', u'*.m4v', u'*.ogm', u'*.ogv', u'*.mkv', u'*.mka', u'*.ts', u'*.mpg', @@ -87,7 +88,8 @@ VIDEO_EXT = [ u'*.dts', u'*.xa', u'*.iso', - u'*.vob' + u'*.vob', + u'*.webm' ] @@ -123,18 +125,21 @@ class VlcPlayer(MediaPlayer): display.vlcWidget.resize(display.size()) display.vlcWidget.raise_() display.vlcWidget.hide() - # the media player has to be 'connected' to the QFrame + # The media player has to be 'connected' to the QFrame. # (otherwise a video would be displayed in it's own window) - # this is platform specific! - # you have to give the id of the QFrame (or similar object) to - # vlc, different platforms have different functions for this + # This is platform specific! + # You have to give the id of the QFrame (or similar object) + # to vlc, different platforms have different functions for this. + win_id = int(display.vlcWidget.winId()) if sys.platform == "win32": - display.vlcMediaPlayer.set_hwnd(int(display.vlcWidget.winId())) + display.vlcMediaPlayer.set_hwnd(win_id) elif sys.platform == "darwin": - display.vlcMediaPlayer.set_agl(int(display.vlcWidget.winId())) + # We have to use 'set_nsobject' since Qt4 on OSX uses Cocoa + # framework and not the old Carbon. + display.vlcMediaPlayer.set_nsobject(win_id) else: # for Linux using the X Server - display.vlcMediaPlayer.set_xwindow(int(display.vlcWidget.winId())) + display.vlcMediaPlayer.set_xwindow(win_id) self.hasOwnWidget = True def check_available(self): @@ -154,6 +159,13 @@ class VlcPlayer(MediaPlayer): # parse the metadata of the file display.vlcMedia.parse() self.volume(display, volume) + # We need to set media_info.length during load because we want + # to avoid start and stop the video twice. Once for real playback + # and once to just get media length. + # + # Media plugin depends on knowing media length before playback. + controller.media_info.length = \ + int(display.vlcMediaPlayer.get_media().get_duration() / 1000) return True def media_state_wait(self, display, mediaState): @@ -219,6 +231,7 @@ class VlcPlayer(MediaPlayer): display.vlcWidget.setVisible(status) def update_ui(self, display): + # Stop video if playback is finished. if display.vlcMedia.get_state() == vlc.State.Ended: self.stop(display) controller = display.controller diff --git a/openlp/core/ui/media/webkitplayer.py b/openlp/core/ui/media/webkitplayer.py index ecf39dfbe..0f4d91e61 100644 --- a/openlp/core/ui/media/webkitplayer.py +++ b/openlp/core/ui/media/webkitplayer.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/mediadockmanager.py b/openlp/core/ui/mediadockmanager.py index 0f39964b8..57c325eb9 100644 --- a/openlp/core/ui/mediadockmanager.py +++ b/openlp/core/ui/mediadockmanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/plugindialog.py b/openlp/core/ui/plugindialog.py index 32eae63db..685689e2d 100644 --- a/openlp/core/ui/plugindialog.py +++ b/openlp/core/ui/plugindialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/pluginform.py b/openlp/core/ui/pluginform.py index 6259f7986..ce42d19d5 100644 --- a/openlp/core/ui/pluginform.py +++ b/openlp/core/ui/pluginform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/printservicedialog.py b/openlp/core/ui/printservicedialog.py index 437b7b3c0..190b0bce4 100644 --- a/openlp/core/ui/printservicedialog.py +++ b/openlp/core/ui/printservicedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/printserviceform.py b/openlp/core/ui/printserviceform.py index 78a84f3fb..1d2ac8dd8 100644 --- a/openlp/core/ui/printserviceform.py +++ b/openlp/core/ui/printserviceform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/screen.py b/openlp/core/ui/screen.py index f5a8a8707..67aa88ca8 100644 --- a/openlp/core/ui/screen.py +++ b/openlp/core/ui/screen.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/serviceitemeditdialog.py b/openlp/core/ui/serviceitemeditdialog.py index 2a0b60ff6..127906671 100644 --- a/openlp/core/ui/serviceitemeditdialog.py +++ b/openlp/core/ui/serviceitemeditdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/serviceitemeditform.py b/openlp/core/ui/serviceitemeditform.py index 77423e893..5dcde6bd5 100644 --- a/openlp/core/ui/serviceitemeditform.py +++ b/openlp/core/ui/serviceitemeditform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/servicemanager.py b/openlp/core/ui/servicemanager.py index a3d9692f5..187e25b4f 100644 --- a/openlp/core/ui/servicemanager.py +++ b/openlp/core/ui/servicemanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -483,59 +484,62 @@ class ServiceManager(QtGui.QWidget): path) service = [] write_list = [] + missing_list = [] audio_files = [] total_size = 0 Receiver.send_message(u'cursor_busy') # Number of items + 1 to zip it self.mainwindow.displayProgressBar(len(self.serviceItems) + 1) + # Get list of missing files, and list of files to write for item in self.serviceItems: - self.mainwindow.incrementProgressBar() - service_item = item[u'service_item'].get_service_repr() - # Get all the audio files, and ready them for embedding in the - # service file. - if service_item[u'header'][u'background_audio']: - for i, filename in \ - enumerate(service_item[u'header'][u'background_audio']): - new_file = os.path.join(u'audio', - item[u'service_item']._uuid, filename) - audio_files.append((filename, new_file)) - service_item[u'header'][u'background_audio'][i] = new_file - # Add the service item to the service. - service.append({u'serviceitem': service_item}) if not item[u'service_item'].uses_file(): continue - skipMissing = False for frame in item[u'service_item'].get_frames(): - if item[u'service_item'].is_image(): - path_from = frame[u'path'] - else: - path_from = os.path.join(frame[u'path'], frame[u'title']) - # Only write a file once - if path_from in write_list: + path_from = item[u'service_item'].get_frame_path(frame=frame) + if path_from in write_list or path_from in missing_list: continue if not os.path.exists(path_from): - if not skipMissing: - Receiver.send_message(u'cursor_normal') - title = unicode(translate('OpenLP.ServiceManager', - 'Service File Missing')) - message = unicode(translate('OpenLP.ServiceManager', - 'File missing from service\n\n %s \n\n' - 'Continue saving?')) % path_from - answer = QtGui.QMessageBox.critical(self, title, - message, - QtGui.QMessageBox.StandardButtons( - QtGui.QMessageBox.Yes | QtGui.QMessageBox.No | - QtGui.QMessageBox.YesToAll)) - if answer == QtGui.QMessageBox.No: - self.mainwindow.finishedProgressBar() - return False - if answer == QtGui.QMessageBox.YesToAll: - skipMissing = True - Receiver.send_message(u'cursor_busy') + missing_list.append(path_from) else: - file_size = os.path.getsize(path_from) write_list.append(path_from) - total_size += file_size + if missing_list: + Receiver.send_message(u'cursor_normal') + title = unicode(translate('OpenLP.ServiceManager', + 'Service File(s) Missing')) + message = unicode(translate('OpenLP.ServiceManager', + 'The following file(s) in the service are missing:\n\t%s\n\n' + 'These files will be removed if you continue to save.') + ) % "\n\t".join(missing_list) + answer = QtGui.QMessageBox.critical(self, title, + message, + QtGui.QMessageBox.StandardButtons( + QtGui.QMessageBox.Ok | QtGui.QMessageBox.Cancel)) + if answer == QtGui.QMessageBox.Cancel: + self.mainwindow.finishedProgressBar() + return False + Receiver.send_message(u'cursor_busy') + # Check if item contains a missing file. + for item in list(self.serviceItems): + self.mainwindow.incrementProgressBar() + item[u'service_item'].remove_invalid_frames(missing_list) + if not item[u'service_item'].validate(): + self.serviceItems.remove(item) + else: + service_item = item[u'service_item'].get_service_repr() + if service_item[u'header'][u'background_audio']: + for i, filename in enumerate( + service_item[u'header'][u'background_audio']): + new_file = os.path.join(u'audio', + item[u'service_item']._uuid, filename) + audio_files.append((filename, new_file)) + service_item[u'header'][u'background_audio'][i] = \ + new_file + # Add the service item to the service. + service.append({u'serviceitem': service_item}) + self.repaintServiceList(-1, -1) + for file in write_list: + file_size = os.path.getsize(file) + total_size += file_size log.debug(u'ServiceManager.saveFile - ZIP contents size is %i bytes' % total_size) service_content = cPickle.dumps(service) diff --git a/openlp/core/ui/servicenoteform.py b/openlp/core/ui/servicenoteform.py index 046be31e4..4a29a283f 100644 --- a/openlp/core/ui/servicenoteform.py +++ b/openlp/core/ui/servicenoteform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/settingsdialog.py b/openlp/core/ui/settingsdialog.py index f9003bb36..7d81fc052 100644 --- a/openlp/core/ui/settingsdialog.py +++ b/openlp/core/ui/settingsdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/settingsform.py b/openlp/core/ui/settingsform.py index 550ebac4b..9e7caf0c9 100644 --- a/openlp/core/ui/settingsform.py +++ b/openlp/core/ui/settingsform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/shortcutlistdialog.py b/openlp/core/ui/shortcutlistdialog.py index a52b987bc..555507c04 100644 --- a/openlp/core/ui/shortcutlistdialog.py +++ b/openlp/core/ui/shortcutlistdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/shortcutlistform.py b/openlp/core/ui/shortcutlistform.py index 26aa9e7f7..cf4bdb189 100644 --- a/openlp/core/ui/shortcutlistform.py +++ b/openlp/core/ui/shortcutlistform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/slidecontroller.py b/openlp/core/ui/slidecontroller.py index 7c80a495c..3b7a97459 100644 --- a/openlp/core/ui/slidecontroller.py +++ b/openlp/core/ui/slidecontroller.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -847,7 +848,11 @@ class SlideController(Controller): else: label = QtGui.QLabel() label.setMargin(4) - label.setScaledContents(True) + if serviceItem.is_media(): + label.setAlignment(QtCore.Qt.AlignHCenter | + QtCore.Qt.AlignVCenter) + else: + label.setScaledContents(True) if self.serviceItem.is_command(): label.setPixmap(QtGui.QPixmap(frame[u'image'])) else: @@ -1338,7 +1343,7 @@ class SlideController(Controller): Respond to the arrival of a media service item """ log.debug(u'SlideController onMediaStart') - file = os.path.join(item.get_frame_path(), item.get_frame_title()) + file = item.get_frame_path() self.mediaController.video(self, file, False, False, self.hideMode()) if not self.isLive or self.mediaController.withLivePreview: self.previewDisplay.show() diff --git a/openlp/core/ui/splashscreen.py b/openlp/core/ui/splashscreen.py index 0ae655361..692bd5001 100644 --- a/openlp/core/ui/splashscreen.py +++ b/openlp/core/ui/splashscreen.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/starttimedialog.py b/openlp/core/ui/starttimedialog.py index 0eb011750..590fd1954 100644 --- a/openlp/core/ui/starttimedialog.py +++ b/openlp/core/ui/starttimedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/starttimeform.py b/openlp/core/ui/starttimeform.py index c92eb51e9..30a667857 100644 --- a/openlp/core/ui/starttimeform.py +++ b/openlp/core/ui/starttimeform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/themeform.py b/openlp/core/ui/themeform.py index be8f9bde1..3a3a59939 100644 --- a/openlp/core/ui/themeform.py +++ b/openlp/core/ui/themeform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -157,7 +158,8 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): u'outlineColorButton', self.outlineColorButton) self.mainAreaPage.registerField( u'outlineSizeSpinBox', self.outlineSizeSpinBox) - self.mainAreaPage.registerField(u'shadowCheckBox', self.shadowCheckBox) + self.mainAreaPage.registerField( + u'shadowCheckBox', self.shadowCheckBox) self.mainAreaPage.registerField( u'mainBoldCheckBox', self.mainBoldCheckBox) self.mainAreaPage.registerField( @@ -168,8 +170,10 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): u'shadowSizeSpinBox', self.shadowSizeSpinBox) self.mainAreaPage.registerField( u'footerSizeSpinBox', self.footerSizeSpinBox) - self.areaPositionPage.registerField(u'mainPositionX', self.mainXSpinBox) - self.areaPositionPage.registerField(u'mainPositionY', self.mainYSpinBox) + self.areaPositionPage.registerField( + u'mainPositionX', self.mainXSpinBox) + self.areaPositionPage.registerField( + u'mainPositionY', self.mainYSpinBox) self.areaPositionPage.registerField( u'mainPositionWidth', self.mainWidthSpinBox) self.areaPositionPage.registerField( @@ -202,7 +206,8 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): """ Updates the lines on a page on the wizard """ - self.mainLineCountLabel.setText(unicode(translate('OpenLP.ThemeForm', + self.mainLineCountLabel.setText(unicode(translate( + 'OpenLP.ThemeWizard', '(approximately %d lines per slide)')) % int(lines)) def resizeEvent(self, event=None): @@ -224,6 +229,19 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): self.previewBoxLabel.setFixedSize(pixmapWidth + 2 * frameWidth, pixmapHeight + 2 * frameWidth) + def validateCurrentPage(self): + background_image = BackgroundType.to_string(BackgroundType.Image) + if self.page(self.currentId()) == self.backgroundPage and \ + self.theme.background_type == background_image and \ + self.imageFileEdit.text().isEmpty(): + QtGui.QMessageBox.critical(self, + translate('OpenLP.ThemeWizard', 'Background Image Empty'), + translate('OpenLP.ThemeWizard', 'You have not selected a ' + 'background image. Please select one before continuing.')) + return False + else: + return True + def onCurrentIdChanged(self, pageId): """ Detects Page changes and updates as appropriate. @@ -521,7 +539,7 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): images_filter = u'%s;;%s (*.*) (*)' % ( images_filter, UiStrings().AllFiles) filename = QtGui.QFileDialog.getOpenFileName(self, - translate('OpenLP.ThemeForm', 'Select Image'), u'', + translate('OpenLP.ThemeWizard', 'Select Image'), u'', images_filter) if filename: self.theme.background_filename = unicode(filename) @@ -603,14 +621,14 @@ class ThemeForm(QtGui.QWizard, Ui_ThemeWizard): self.theme.theme_name = unicode(self.field(u'name').toString()) if not self.theme.theme_name: critical_error_message_box( - translate('OpenLP.ThemeForm', 'Theme Name Missing'), - translate('OpenLP.ThemeForm', + translate('OpenLP.ThemeWizard', 'Theme Name Missing'), + translate('OpenLP.ThemeWizard', 'There is no name for this theme. Please enter one.')) return if self.theme.theme_name == u'-1' or self.theme.theme_name == u'None': critical_error_message_box( - translate('OpenLP.ThemeForm', 'Theme Name Invalid'), - translate('OpenLP.ThemeForm', + translate('OpenLP.ThemeWizard', 'Theme Name Invalid'), + translate('OpenLP.ThemeWizard', 'Invalid theme name. Please enter one.')) return saveFrom = None diff --git a/openlp/core/ui/themelayoutdialog.py b/openlp/core/ui/themelayoutdialog.py index e08069d42..4d610dd42 100644 --- a/openlp/core/ui/themelayoutdialog.py +++ b/openlp/core/ui/themelayoutdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/themelayoutform.py b/openlp/core/ui/themelayoutform.py index e10dacf5a..2751e102a 100644 --- a/openlp/core/ui/themelayoutform.py +++ b/openlp/core/ui/themelayoutform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/thememanager.py b/openlp/core/ui/thememanager.py index 8e6fccffe..b4c9e6d64 100644 --- a/openlp/core/ui/thememanager.py +++ b/openlp/core/ui/thememanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -30,7 +31,6 @@ import os import zipfile import shutil import logging -import locale import re from xml.etree.ElementTree import ElementTree, XML @@ -46,7 +46,8 @@ from openlp.core.lib.ui import UiStrings, critical_error_message_box, \ create_widget_action from openlp.core.theme import Theme from openlp.core.ui import FileRenameForm, ThemeForm -from openlp.core.utils import AppLocation, delete_file, get_filesystem_encoding +from openlp.core.utils import AppLocation, delete_file, locale_compare, \ + get_filesystem_encoding log = logging.getLogger(__name__) @@ -284,6 +285,7 @@ class ThemeManager(QtGui.QWidget): plugin.renameTheme(old_theme_name, new_theme_name) self.mainwindow.renderer.update_theme( new_theme_name, old_theme_name) + self.loadThemes() def onCopyTheme(self): """ @@ -456,10 +458,9 @@ class ThemeManager(QtGui.QWidget): QtCore.QVariant(theme.theme_name)) self.configUpdated() files = SettingsManager.get_files(self.settingsSection, u'.png') - # Sort the themes by its name considering language specific characters. - # lower() is needed for windows! - files.sort(key=lambda file_name: unicode(file_name).lower(), - cmp=locale.strcoll) + # Sort the themes by its name considering language specific + files.sort(key=lambda file_name: unicode(file_name), + cmp=locale_compare) # now process the file list of png files for name in files: # check to see file is in theme root directory diff --git a/openlp/core/ui/themestab.py b/openlp/core/ui/themestab.py index ed7e64f0b..7e84892e6 100644 --- a/openlp/core/ui/themestab.py +++ b/openlp/core/ui/themestab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/themewizard.py b/openlp/core/ui/themewizard.py index 08d1718af..48592dc79 100644 --- a/openlp/core/ui/themewizard.py +++ b/openlp/core/ui/themewizard.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/ui/wizard.py b/openlp/core/ui/wizard.py index 33db718c0..722d8d22d 100644 --- a/openlp/core/ui/wizard.py +++ b/openlp/core/ui/wizard.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/utils/__init__.py b/openlp/core/utils/__init__.py index 41a097a15..f3a36b475 100644 --- a/openlp/core/utils/__init__.py +++ b/openlp/core/utils/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -488,10 +489,30 @@ def format_time(text, local_time): return re.sub('\%[a-zA-Z]', match_formatting, text) +def locale_compare(string1, string2): + """ + Compares two strings according to the current locale settings. + + As any other compare function, returns a negative, or a positive value, + or 0, depending on whether string1 collates before or after string2 or + is equal to it. Comparison is case insensitive. + """ + # Function locale.strcol() from standard Python library does not work + # properly on Windows and probably somewhere else. + return QtCore.QString.localeAwareCompare(string1.lower(), string2.lower()) + + +# For performance reasons provide direct reference to compare function +# without wrapping it in another function making te string lowercase. +# This is needed for sorting songs. +locale_direct_compare = QtCore.QString.localeAwareCompare + + from languagemanager import LanguageManager from actions import ActionList __all__ = [u'AppLocation', u'get_application_version', u'check_latest_version', u'add_actions', u'get_filesystem_encoding', u'LanguageManager', u'ActionList', u'get_web_page', u'get_uno_command', u'get_uno_instance', - u'delete_file', u'clean_filename', u'format_time'] + u'delete_file', u'clean_filename', u'format_time', u'locale_compare', + u'locale_direct_compare'] diff --git a/openlp/core/utils/actions.py b/openlp/core/utils/actions.py index 556f1860d..54ff6570a 100644 --- a/openlp/core/utils/actions.py +++ b/openlp/core/utils/actions.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/core/utils/languagemanager.py b/openlp/core/utils/languagemanager.py index a0b5e31b2..fd8615727 100644 --- a/openlp/core/utils/languagemanager.py +++ b/openlp/core/utils/languagemanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/__init__.py b/openlp/plugins/__init__.py index 91ee4668d..01d839fdb 100644 --- a/openlp/plugins/__init__.py +++ b/openlp/plugins/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/__init__.py b/openlp/plugins/alerts/__init__.py index 24e206e5d..c8a9511b0 100644 --- a/openlp/plugins/alerts/__init__.py +++ b/openlp/plugins/alerts/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/alertsplugin.py b/openlp/plugins/alerts/alertsplugin.py index 2d7fd8296..2d58a3ce9 100644 --- a/openlp/plugins/alerts/alertsplugin.py +++ b/openlp/plugins/alerts/alertsplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -105,6 +106,7 @@ CSS = """ font-size: %spt; color: %s; background-color: %s; + word-wrap: break-word; } """ diff --git a/openlp/plugins/alerts/forms/__init__.py b/openlp/plugins/alerts/forms/__init__.py index fc7bcd1c4..4ee0cdc01 100644 --- a/openlp/plugins/alerts/forms/__init__.py +++ b/openlp/plugins/alerts/forms/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/forms/alertdialog.py b/openlp/plugins/alerts/forms/alertdialog.py index df4209e9d..6e61277bd 100644 --- a/openlp/plugins/alerts/forms/alertdialog.py +++ b/openlp/plugins/alerts/forms/alertdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -35,7 +36,7 @@ class Ui_AlertDialog(object): def setupUi(self, alertDialog): alertDialog.setObjectName(u'alertDialog') alertDialog.resize(400, 300) - alertDialog.setWindowIcon(build_icon(u':/icon/openlp.org-icon-32.bmp')) + alertDialog.setWindowIcon(build_icon(u':/icon/openlp-logo-16x16.png')) self.alertDialogLayout = QtGui.QGridLayout(alertDialog) self.alertDialogLayout.setObjectName(u'alertDialogLayout') self.alertTextLayout = QtGui.QFormLayout() diff --git a/openlp/plugins/alerts/forms/alertform.py b/openlp/plugins/alerts/forms/alertform.py index ab4b6583e..26938ab86 100644 --- a/openlp/plugins/alerts/forms/alertform.py +++ b/openlp/plugins/alerts/forms/alertform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -80,6 +81,10 @@ class AlertForm(QtGui.QDialog, Ui_AlertDialog): item_name = QtGui.QListWidgetItem(alert.text) item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(alert.id)) self.alertListWidget.addItem(item_name) + if alert.text == unicode(self.alertTextEdit.text()): + self.item_id = alert.id + self.alertListWidget.setCurrentRow( + self.alertListWidget.row(item_name)) def onDisplayClicked(self): self.triggerAlert(unicode(self.alertTextEdit.text())) @@ -112,7 +117,6 @@ class AlertForm(QtGui.QDialog, Ui_AlertDialog): alert = AlertItem() alert.text = unicode(self.alertTextEdit.text()) self.manager.save_object(alert) - self.alertTextEdit.setText(u'') self.loadList() def onSaveClick(self): @@ -125,6 +129,7 @@ class AlertForm(QtGui.QDialog, Ui_AlertDialog): self.manager.save_object(alert) self.item_id = None self.loadList() + self.saveButton.setEnabled(False) def onTextChanged(self): """ diff --git a/openlp/plugins/alerts/lib/__init__.py b/openlp/plugins/alerts/lib/__init__.py index 5b31ed9fc..84a95d653 100644 --- a/openlp/plugins/alerts/lib/__init__.py +++ b/openlp/plugins/alerts/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/lib/alertsmanager.py b/openlp/plugins/alerts/lib/alertsmanager.py index 018b38af2..acae972c6 100644 --- a/openlp/plugins/alerts/lib/alertsmanager.py +++ b/openlp/plugins/alerts/lib/alertsmanager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -57,8 +58,6 @@ class AlertsManager(QtCore.QObject): """ if message: self.displayAlert(message[0]) - else: - self.displayAlert(u'') def displayAlert(self, text=u''): """ @@ -68,14 +67,15 @@ class AlertsManager(QtCore.QObject): display text """ log.debug(u'display alert called %s' % text) - self.alertList.append(text) - if self.timer_id != 0: - Receiver.send_message(u'mainwindow_status_text', - translate('AlertsPlugin.AlertsManager', - 'Alert message created and displayed.')) - return - Receiver.send_message(u'mainwindow_status_text', u'') - self.generateAlert() + if text: + self.alertList.append(text) + if self.timer_id != 0: + Receiver.send_message(u'mainwindow_status_text', + translate('AlertsPlugin.AlertsManager', + 'Alert message created and displayed.')) + return + Receiver.send_message(u'mainwindow_status_text', u'') + self.generateAlert() def generateAlert(self): """ diff --git a/openlp/plugins/alerts/lib/alertstab.py b/openlp/plugins/alerts/lib/alertstab.py index 8970c6a67..4b8d24243 100644 --- a/openlp/plugins/alerts/lib/alertstab.py +++ b/openlp/plugins/alerts/lib/alertstab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/alerts/lib/db.py b/openlp/plugins/alerts/lib/db.py index da5886297..6e4296a4c 100644 --- a/openlp/plugins/alerts/lib/db.py +++ b/openlp/plugins/alerts/lib/db.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/__init__.py b/openlp/plugins/bibles/__init__.py index 2c57e2124..e37655849 100644 --- a/openlp/plugins/bibles/__init__.py +++ b/openlp/plugins/bibles/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/bibleplugin.py b/openlp/plugins/bibles/bibleplugin.py index ca2b29da0..b75d5123a 100644 --- a/openlp/plugins/bibles/bibleplugin.py +++ b/openlp/plugins/bibles/bibleplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/__init__.py b/openlp/plugins/bibles/forms/__init__.py index a574e7794..2f6678311 100644 --- a/openlp/plugins/bibles/forms/__init__.py +++ b/openlp/plugins/bibles/forms/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/bibleimportform.py b/openlp/plugins/bibles/forms/bibleimportform.py index 0a1d4cc23..c0ff694cf 100644 --- a/openlp/plugins/bibles/forms/bibleimportform.py +++ b/openlp/plugins/bibles/forms/bibleimportform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -30,7 +31,6 @@ The bible import functions for OpenLP """ import logging import os -import locale from PyQt4 import QtCore, QtGui @@ -39,7 +39,7 @@ from openlp.core.lib.db import delete_database from openlp.core.lib.ui import UiStrings, critical_error_message_box from openlp.core.lib.settings import Settings from openlp.core.ui.wizard import OpenLPWizard, WizardStrings -from openlp.core.utils import AppLocation +from openlp.core.utils import AppLocation, locale_compare from openlp.plugins.bibles.lib.manager import BibleFormat from openlp.plugins.bibles.lib.db import BiblesResourcesDB, clean_filename @@ -523,7 +523,7 @@ class BibleImportForm(OpenLPWizard): """ self.webTranslationComboBox.clear() bibles = self.web_bible_list[index].keys() - bibles.sort(cmp=locale.strcoll) + bibles.sort(cmp=locale_compare) self.webTranslationComboBox.addItems(bibles) def onOsisBrowseButtonClicked(self): diff --git a/openlp/plugins/bibles/forms/bibleupgradeform.py b/openlp/plugins/bibles/forms/bibleupgradeform.py index db8266419..ff192ac6c 100644 --- a/openlp/plugins/bibles/forms/bibleupgradeform.py +++ b/openlp/plugins/bibles/forms/bibleupgradeform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/booknamedialog.py b/openlp/plugins/bibles/forms/booknamedialog.py index a28e96353..82c3bc416 100644 --- a/openlp/plugins/bibles/forms/booknamedialog.py +++ b/openlp/plugins/bibles/forms/booknamedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/booknameform.py b/openlp/plugins/bibles/forms/booknameform.py index d69bb8fb7..774afa6ee 100644 --- a/openlp/plugins/bibles/forms/booknameform.py +++ b/openlp/plugins/bibles/forms/booknameform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/editbibledialog.py b/openlp/plugins/bibles/forms/editbibledialog.py index fc22d5479..b686e0a4a 100644 --- a/openlp/plugins/bibles/forms/editbibledialog.py +++ b/openlp/plugins/bibles/forms/editbibledialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/editbibleform.py b/openlp/plugins/bibles/forms/editbibleform.py index aa9350012..0a71ce299 100644 --- a/openlp/plugins/bibles/forms/editbibleform.py +++ b/openlp/plugins/bibles/forms/editbibleform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/languagedialog.py b/openlp/plugins/bibles/forms/languagedialog.py index 6fefc7161..444293df9 100644 --- a/openlp/plugins/bibles/forms/languagedialog.py +++ b/openlp/plugins/bibles/forms/languagedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/forms/languageform.py b/openlp/plugins/bibles/forms/languageform.py index 03a3ce6e7..5b38932c4 100644 --- a/openlp/plugins/bibles/forms/languageform.py +++ b/openlp/plugins/bibles/forms/languageform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/__init__.py b/openlp/plugins/bibles/lib/__init__.py index 73e5ebe8b..de7f68bdc 100644 --- a/openlp/plugins/bibles/lib/__init__.py +++ b/openlp/plugins/bibles/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -355,37 +356,8 @@ def parse_reference(reference, bible, language_selection, book_ref_id=False): log.debug(u'Matched reference %s' % reference) book = match.group(u'book') if not book_ref_id: - book_names = BibleStrings().BookNames - # escape reserved characters - book_escaped = book - for character in u'\\.^$*+?{}[]()': - book_escaped = book_escaped.replace( - character, u'\\' + character) - regex_book = re.compile(u'\s*%s\s*' % u'\s*'.join( - book_escaped.split()), re.UNICODE | re.IGNORECASE) - if language_selection == LanguageSelection.Bible: - db_book = bible.get_book(book) - if db_book: - book_ref_id = db_book.book_reference_id - elif language_selection == LanguageSelection.Application: - books = filter(lambda key: - regex_book.match(unicode(book_names[key])), book_names.keys()) - books = filter(None, map(BiblesResourcesDB.get_book, books)) - for value in books: - if bible.get_book_by_book_ref_id(value[u'id']): - book_ref_id = value[u'id'] - break - elif language_selection == LanguageSelection.English: - books = BiblesResourcesDB.get_books_like(book) - if books: - book_list = filter( - lambda value: regex_book.match(value[u'name']), books) - if not book_list: - book_list = books - for value in book_list: - if bible.get_book_by_book_ref_id(value[u'id']): - book_ref_id = value[u'id'] - break + book_ref_id = bible.get_book_ref_id_by_localised_name( + book, language_selection) elif not bible.get_book_by_book_ref_id(book_ref_id): book_ref_id = False ranges = match.group(u'ranges') diff --git a/openlp/plugins/bibles/lib/biblestab.py b/openlp/plugins/bibles/lib/biblestab.py index 218553236..5dc9f729c 100644 --- a/openlp/plugins/bibles/lib/biblestab.py +++ b/openlp/plugins/bibles/lib/biblestab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/csvbible.py b/openlp/plugins/bibles/lib/csvbible.py index 16d756a30..562be3521 100644 --- a/openlp/plugins/bibles/lib/csvbible.py +++ b/openlp/plugins/bibles/lib/csvbible.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/db.py b/openlp/plugins/bibles/lib/db.py index acf7cf461..e8a14da47 100644 --- a/openlp/plugins/bibles/lib/db.py +++ b/openlp/plugins/bibles/lib/db.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -29,6 +30,7 @@ import chardet import logging import os +import re import sqlite3 from PyQt4 import QtCore @@ -44,6 +46,8 @@ import upgrade log = logging.getLogger(__name__) +RESERVED_CHARACTERS = u'\\.^$*+?{}[]()' + class BibleMeta(BaseModel): """ Bible Meta Data @@ -352,6 +356,53 @@ class BibleDB(QtCore.QObject, Manager): book, book_id, language_id) return book_id + def get_book_ref_id_by_localised_name(self, book, + language_selection): + """ + Return the id of a named book. + + ``book`` + The name of the book, according to the selected language. + + ``language_selection`` + The language selection the user has chosen in the settings + section of the Bible. + """ + log.debug(u'get_book_ref_id_by_localised_name("%s", "%s")', + book, language_selection) + from openlp.plugins.bibles.lib import LanguageSelection, \ + BibleStrings + book_names = BibleStrings().BookNames + # escape reserved characters + book_escaped = book + for character in RESERVED_CHARACTERS: + book_escaped = book_escaped.replace( + character, u'\\' + character) + regex_book = re.compile(u'\s*%s\s*' % u'\s*'.join( + book_escaped.split()), re.UNICODE | re.IGNORECASE) + if language_selection == LanguageSelection.Bible: + db_book = self.get_book(book) + if db_book: + return db_book.book_reference_id + elif language_selection == LanguageSelection.Application: + books = filter(lambda key: + regex_book.match(unicode(book_names[key])), book_names.keys()) + books = filter(None, map(BiblesResourcesDB.get_book, books)) + for value in books: + if self.get_book_by_book_ref_id(value[u'id']): + return value[u'id'] + elif language_selection == LanguageSelection.English: + books = BiblesResourcesDB.get_books_like(book) + if books: + book_list = filter( + lambda value: regex_book.match(value[u'name']), books) + if not book_list: + book_list = books + for value in book_list: + if self.get_book_by_book_ref_id(value[u'id']): + return value[u'id'] + return False + def get_verses(self, reference_list, show_error=True): """ This is probably the most used function. It retrieves the list of diff --git a/openlp/plugins/bibles/lib/http.py b/openlp/plugins/bibles/lib/http.py index bd08e1a41..05844de18 100644 --- a/openlp/plugins/bibles/lib/http.py +++ b/openlp/plugins/bibles/lib/http.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -93,7 +94,8 @@ class BGExtract(object): """ if isinstance(tag, NavigableString): return None, unicode(tag) - elif tag.get('class') == 'versenum': + elif tag.get('class') == 'versenum' or \ + tag.get('class') == 'versenum mid-line': verse = unicode(tag.string)\ .replace('[', '').replace(']', '').strip() return verse, None @@ -160,10 +162,12 @@ class BGExtract(object): verse = verse.strip() try: verse = int(verse) - except (TypeError, ValueError): + except ValueError: verse_parts = verse.split(u'-') if len(verse_parts) > 1: verse = int(verse_parts[0]) + except TypeError: + log.warn(u'Illegal verse number: %s', unicode(raw_verse_num)) verses.append((verse, text)) verse_list = {} for verse, text in verses[::-1]: @@ -194,6 +198,10 @@ class BGExtract(object): try: clean_verse_num = int(str(raw_verse_num)) except ValueError: + verse_parts = str(raw_verse_num).split(u'-') + if len(verse_parts) > 1: + clean_verse_num = int(verse_parts[0]) + except TypeError: log.warn(u'Illegal verse number: %s', unicode(raw_verse_num)) if clean_verse_num: verse_text = raw_verse_num.next @@ -272,14 +280,8 @@ class BGExtract(object): page_source = unicode(page_source, u'utf8') except UnicodeDecodeError: page_source = unicode(page_source, u'cp1251') - page_source_temp = re.search(u'.*?'\ - u'
', page_source, re.DOTALL) - if page_source_temp: - soup = page_source_temp.group(0) - else: - soup = None try: - soup = BeautifulSoup(soup) + soup = BeautifulSoup(page_source) except HTMLParseError: log.error(u'BeautifulSoup could not parse the Bible page.') send_error_message(u'parse') @@ -288,8 +290,9 @@ class BGExtract(object): send_error_message(u'parse') return None Receiver.send_message(u'openlp_process_events') - content = soup.find(u'table', {u'class': u'infotable'}) - content = content.findAll(u'tr') + content = soup.find(u'table', u'infotable') + if content: + content = content.findAll(u'tr') if not content: log.error(u'No books found in the Biblegateway response.') send_error_message(u'parse') diff --git a/openlp/plugins/bibles/lib/manager.py b/openlp/plugins/bibles/lib/manager.py index 66e0d93bc..f4b67334c 100644 --- a/openlp/plugins/bibles/lib/manager.py +++ b/openlp/plugins/bibles/lib/manager.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -277,8 +278,9 @@ class BibleManager(object): """ log.debug(u'BibleManager.get_verse_count("%s", "%s", %s)', bible, book, chapter) - db_book = self.db_cache[bible].get_book(book) - book_ref_id = db_book.book_reference_id + language_selection = self.get_language_selection(bible) + book_ref_id = self.db_cache[bible].get_book_ref_id_by_localised_name( + book, language_selection) return self.db_cache[bible].get_verse_count(book_ref_id, chapter) def get_verse_count_by_book_ref_id(self, bible, book_ref_id, chapter): @@ -366,15 +368,20 @@ class BibleManager(object): """ log.debug(u'BibleManager.get_language_selection("%s")', bible) language_selection = self.get_meta_data(bible, u'book_name_language') - if language_selection: - try: - language_selection = int(language_selection.value) - except (ValueError, TypeError): - language_selection = LanguageSelection.Application - if language_selection is None or language_selection == -1: + if not language_selection or \ + language_selection.value == "None" or \ + language_selection.value == "-1": + # If None is returned, it's not the singleton object but a + # BibleMeta object with the value "None" language_selection = Settings().value( - self.settingsSection + u'/bookname language', + self.settingsSection + u'/book name language', QtCore.QVariant(0)).toInt()[0] + else: + language_selection = language_selection.value + try: + language_selection = int(language_selection) + except (ValueError, TypeError): + language_selection = LanguageSelection.Application return language_selection def verse_search(self, bible, second_bible, text): diff --git a/openlp/plugins/bibles/lib/mediaitem.py b/openlp/plugins/bibles/lib/mediaitem.py index 5176e7d47..d9295e525 100644 --- a/openlp/plugins/bibles/lib/mediaitem.py +++ b/openlp/plugins/bibles/lib/mediaitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -27,7 +28,6 @@ ############################################################################### import logging -import locale from PyQt4 import QtCore, QtGui @@ -38,6 +38,7 @@ from openlp.core.lib.settings import Settings from openlp.core.lib.ui import UiStrings, set_case_insensitive_completer, \ create_horizontal_adjusting_combo_box, critical_error_message_box, \ find_and_set_in_combo_box, build_icon +from openlp.core.utils import locale_compare from openlp.plugins.bibles.forms import BibleImportForm, EditBibleForm from openlp.plugins.bibles.lib import LayoutStyle, DisplayStyle, \ VerseReferenceList, get_reference_separator, LanguageSelection, \ @@ -381,7 +382,7 @@ class BibleMediaItem(MediaManagerItem): # Get all bibles and sort the list. bibles = self.plugin.manager.get_bibles().keys() bibles = filter(None, bibles) - bibles.sort(cmp=locale.strcoll) + bibles.sort(cmp=locale_compare) # Load the bibles into the combo boxes. self.quickVersionComboBox.addItems(bibles) self.quickSecondComboBox.addItems(bibles) @@ -538,7 +539,7 @@ class BibleMediaItem(MediaManagerItem): data = BiblesResourcesDB.get_book_by_id( book.book_reference_id) books.append(data[u'name'] + u' ') - books.sort(cmp=locale.strcoll) + books.sort(cmp=locale_compare) set_case_insensitive_completer(books, self.quickSearchEdit) def onImportClick(self): diff --git a/openlp/plugins/bibles/lib/openlp1.py b/openlp/plugins/bibles/lib/openlp1.py index cd2bf26b4..5d564112e 100644 --- a/openlp/plugins/bibles/lib/openlp1.py +++ b/openlp/plugins/bibles/lib/openlp1.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/opensong.py b/openlp/plugins/bibles/lib/opensong.py index b31064596..2ce2b015a 100644 --- a/openlp/plugins/bibles/lib/opensong.py +++ b/openlp/plugins/bibles/lib/opensong.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -97,21 +98,42 @@ class OpenSongBible(BibleDB): book_details = BiblesResourcesDB.get_book_by_id(book_ref_id) db_book = self.create_book(unicode(book.attrib[u'n']), book_ref_id, book_details[u'testament_id']) + chapter_number = 0 for chapter in book.c: if self.stop_import_flag: break + number = chapter.attrib[u'n'] + if number: + chapter_number = int(number.split()[-1]) + else: + chapter_number += 1 + verse_number = 0 for verse in chapter.v: if self.stop_import_flag: break + number = verse.attrib[u'n'] + if number: + try: + number = int(number) + except ValueError: + verse_parts = number.split(u'-') + if len(verse_parts) > 1: + number = int(verse_parts[0]) + except TypeError: + log.warn(u'Illegal verse number: %s', + unicode(verse.attrib[u'n'])) + verse_number = number + else: + verse_number += 1 self.create_verse( db_book.id, - int(chapter.attrib[u'n'].split()[-1]), - int(verse.attrib[u'n']), + chapter_number, + verse_number, unicode(self.get_text(verse))) self.wizard.incrementProgressBar(unicode(translate( 'BiblesPlugin.Opensong', 'Importing %s %s...', 'Importing ...')) % - (db_book.name, int(chapter.attrib[u'n'].split()[-1]))) + (db_book.name, chapter_number)) self.session.commit() Receiver.send_message(u'openlp_process_events') except etree.XMLSyntaxError as inst: diff --git a/openlp/plugins/bibles/lib/osis.py b/openlp/plugins/bibles/lib/osis.py index 78f2a75a9..b9e1139a4 100644 --- a/openlp/plugins/bibles/lib/osis.py +++ b/openlp/plugins/bibles/lib/osis.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/upgrade.py b/openlp/plugins/bibles/lib/upgrade.py index ee80f585a..215c981e6 100644 --- a/openlp/plugins/bibles/lib/upgrade.py +++ b/openlp/plugins/bibles/lib/upgrade.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/bibles/lib/versereferencelist.py b/openlp/plugins/bibles/lib/versereferencelist.py index aee2bf9dc..18e234dad 100644 --- a/openlp/plugins/bibles/lib/versereferencelist.py +++ b/openlp/plugins/bibles/lib/versereferencelist.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/__init__.py b/openlp/plugins/custom/__init__.py index f2bb46fe9..02429c312 100644 --- a/openlp/plugins/custom/__init__.py +++ b/openlp/plugins/custom/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/customplugin.py b/openlp/plugins/custom/customplugin.py index 560da6880..090368672 100644 --- a/openlp/plugins/custom/customplugin.py +++ b/openlp/plugins/custom/customplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/__init__.py b/openlp/plugins/custom/forms/__init__.py index aae47b657..bdd573613 100644 --- a/openlp/plugins/custom/forms/__init__.py +++ b/openlp/plugins/custom/forms/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/editcustomdialog.py b/openlp/plugins/custom/forms/editcustomdialog.py index e29f4431a..a9eba86c0 100644 --- a/openlp/plugins/custom/forms/editcustomdialog.py +++ b/openlp/plugins/custom/forms/editcustomdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -36,7 +37,7 @@ class Ui_CustomEditDialog(object): customEditDialog.setObjectName(u'customEditDialog') customEditDialog.resize(450, 350) customEditDialog.setWindowIcon( - build_icon(u':/icon/openlp.org-icon-32.bmp')) + build_icon(u':/icon/openlp-logo-16x16.png')) self.dialogLayout = QtGui.QVBoxLayout(customEditDialog) self.dialogLayout.setObjectName(u'dialogLayout') self.titleLayout = QtGui.QHBoxLayout() diff --git a/openlp/plugins/custom/forms/editcustomform.py b/openlp/plugins/custom/forms/editcustomform.py index 13d722b18..b0b3e7d7a 100644 --- a/openlp/plugins/custom/forms/editcustomform.py +++ b/openlp/plugins/custom/forms/editcustomform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/editcustomslidedialog.py b/openlp/plugins/custom/forms/editcustomslidedialog.py index afbf0e776..e203a3f36 100644 --- a/openlp/plugins/custom/forms/editcustomslidedialog.py +++ b/openlp/plugins/custom/forms/editcustomslidedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/forms/editcustomslideform.py b/openlp/plugins/custom/forms/editcustomslideform.py index 541c9a81a..bb6844432 100644 --- a/openlp/plugins/custom/forms/editcustomslideform.py +++ b/openlp/plugins/custom/forms/editcustomslideform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/__init__.py b/openlp/plugins/custom/lib/__init__.py index 1b13bd169..54c3fd42a 100644 --- a/openlp/plugins/custom/lib/__init__.py +++ b/openlp/plugins/custom/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/customtab.py b/openlp/plugins/custom/lib/customtab.py index 63bd8862e..4367cc641 100644 --- a/openlp/plugins/custom/lib/customtab.py +++ b/openlp/plugins/custom/lib/customtab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/customxmlhandler.py b/openlp/plugins/custom/lib/customxmlhandler.py index 6798e890c..c81033267 100644 --- a/openlp/plugins/custom/lib/customxmlhandler.py +++ b/openlp/plugins/custom/lib/customxmlhandler.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/custom/lib/db.py b/openlp/plugins/custom/lib/db.py index 6f3155f48..f4ec51821 100644 --- a/openlp/plugins/custom/lib/db.py +++ b/openlp/plugins/custom/lib/db.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -34,12 +35,21 @@ from sqlalchemy import Column, Table, types from sqlalchemy.orm import mapper from openlp.core.lib.db import BaseModel, init_db +from openlp.core.utils import locale_compare class CustomSlide(BaseModel): """ CustomSlide model """ - pass + # By default sort the customs by its title considering language specific + # characters. + def __lt__(self, other): + r = locale_compare(self.title, other.title) + return True if r < 0 else False + + def __eq__(self, other): + return 0 == locale_compare(self.title, other.title) + def init_schema(url): """ diff --git a/openlp/plugins/custom/lib/mediaitem.py b/openlp/plugins/custom/lib/mediaitem.py index 663c5489d..74c2a13a4 100644 --- a/openlp/plugins/custom/lib/mediaitem.py +++ b/openlp/plugins/custom/lib/mediaitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -27,7 +28,6 @@ ############################################################################### import logging -import locale from PyQt4 import QtCore, QtGui from sqlalchemy.sql import or_, func @@ -109,10 +109,7 @@ class CustomMediaItem(MediaManagerItem): # Sort out what custom we want to select after loading the list. self.saveAutoSelectId() self.listView.clear() - # Sort the customs by its title considering language specific - # characters. lower() is needed for windows! - custom_slides.sort( - cmp=locale.strcoll, key=lambda custom: custom.title.lower()) + custom_slides.sort() for custom_slide in custom_slides: custom_name = QtGui.QListWidgetItem(custom_slide.title) custom_name.setData( diff --git a/openlp/plugins/images/__init__.py b/openlp/plugins/images/__init__.py index 4255e5e36..f426b6047 100644 --- a/openlp/plugins/images/__init__.py +++ b/openlp/plugins/images/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/imageplugin.py b/openlp/plugins/images/imageplugin.py index 97ce850f4..633db6366 100644 --- a/openlp/plugins/images/imageplugin.py +++ b/openlp/plugins/images/imageplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/lib/__init__.py b/openlp/plugins/images/lib/__init__.py index e7d0ba4d0..a05a18552 100644 --- a/openlp/plugins/images/lib/__init__.py +++ b/openlp/plugins/images/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/lib/imagetab.py b/openlp/plugins/images/lib/imagetab.py index 8ed8baa02..dfb294e1c 100644 --- a/openlp/plugins/images/lib/imagetab.py +++ b/openlp/plugins/images/lib/imagetab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/images/lib/mediaitem.py b/openlp/plugins/images/lib/mediaitem.py index 0fdb1537c..a9087a731 100644 --- a/openlp/plugins/images/lib/mediaitem.py +++ b/openlp/plugins/images/lib/mediaitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -28,7 +29,6 @@ import logging import os -import locale from PyQt4 import QtCore, QtGui @@ -37,7 +37,8 @@ from openlp.core.lib import MediaManagerItem, build_icon, ItemCapabilities, \ Receiver, create_thumb, validate_thumb from openlp.core.lib.ui import UiStrings, critical_error_message_box from openlp.core.lib.settings import Settings -from openlp.core.utils import AppLocation, delete_file, get_images_filter +from openlp.core.utils import AppLocation, delete_file, locale_compare, \ + get_images_filter log = logging.getLogger(__name__) @@ -126,10 +127,10 @@ class ImageMediaItem(MediaManagerItem): if not initialLoad: Receiver.send_message(u'cursor_busy') self.plugin.formParent.displayProgressBar(len(images)) - # Sort the themes by its filename considering language specific - # characters. lower() is needed for windows! - images.sort(cmp=locale.strcoll, - key=lambda filename: os.path.split(unicode(filename))[1].lower()) + # Sort the images by its filename considering language specific + # characters. + images.sort(cmp=locale_compare, + key=lambda filename: os.path.split(unicode(filename))[1]) for imageFile in images: filename = os.path.split(unicode(imageFile))[1] thumb = os.path.join(self.servicePath, filename) diff --git a/openlp/plugins/media/__init__.py b/openlp/plugins/media/__init__.py index d57e62efb..d24f48edc 100644 --- a/openlp/plugins/media/__init__.py +++ b/openlp/plugins/media/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/media/lib/__init__.py b/openlp/plugins/media/lib/__init__.py index cde3b4ca2..c73f19af4 100644 --- a/openlp/plugins/media/lib/__init__.py +++ b/openlp/plugins/media/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/media/lib/mediaitem.py b/openlp/plugins/media/lib/mediaitem.py index fe66b90d8..032b09694 100644 --- a/openlp/plugins/media/lib/mediaitem.py +++ b/openlp/plugins/media/lib/mediaitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -28,7 +29,6 @@ import logging import os -import locale from PyQt4 import QtCore, QtGui @@ -39,12 +39,15 @@ from openlp.core.lib.ui import UiStrings, critical_error_message_box, \ create_horizontal_adjusting_combo_box from openlp.core.ui import Controller, Display from openlp.core.ui.media import get_media_players, set_media_players +from openlp.core.utils import locale_compare log = logging.getLogger(__name__) -CLAPPERBOARD = QtGui.QImage(u':/media/media_video.png') -#TODO: Add an appropriate Icon for DVDs, CDs, ... +CLAPPERBOARD = u':/media/slidecontroller_multimedia.png' +VIDEO = QtGui.QImage(u':/media/media_video.png') +AUDIO = QtGui.QImage(u':/media/media_audio.png') DVD_ICON = QtGui.QImage(u':/media/media_video.png') +ERROR = QtGui.QImage(u':/general/general_delete.png') class MediaMediaItem(MediaManagerItem): """ @@ -203,11 +206,20 @@ class MediaMediaItem(MediaManagerItem): 'The file %s no longer exists.')) % filename) return False self.mediaLength = 0 - if self.plugin.mediaController.video( \ - self.mediaController, filename, False, False): + # Get media information and its length. + # + # This code (mediaController.video()) starts playback but we + # need only media information not video to start. Otherwise + # video is played twice. Find another way to get media info + # without loading and starting video playback. + # + # TODO Test getting media length with other media backends + # Phonon/Webkit. + if self.plugin.mediaController.video(self.mediaController, + filename, muted=False, isBackground=False, isInfo=True, + controlsVisible=False): self.mediaLength = self.mediaController.media_info.length service_item.media_length = self.mediaLength - self.plugin.mediaController.video_reset(self.mediaController) if self.mediaLength > 0: service_item.add_capability( ItemCapabilities.HasVariableStartTime) @@ -218,7 +230,7 @@ class MediaMediaItem(MediaManagerItem): service_item.add_capability(ItemCapabilities.RequiresMedia) # force a non-existent theme service_item.theme = -1 - frame = u':/media/image_clapperboard.png' + frame = CLAPPERBOARD (path, name) = os.path.split(filename) service_item.add_from_command(path, name, frame) return True @@ -284,16 +296,21 @@ class MediaMediaItem(MediaManagerItem): u'media', self.getFileList()) def loadList(self, media): - # Sort the themes by its filename considering language specific - # characters. lower() is needed for windows! - media.sort(cmp=locale.strcoll, - key=lambda filename: os.path.split(unicode(filename))[1].lower()) + # Sort the media by its filename considering language specific + # characters. + media.sort(cmp=locale_compare, + key=lambda filename: os.path.split(unicode(filename))[1]) for track in media: track_info = QtCore.QFileInfo(track) - if not track_info.isFile(): + if not os.path.exists(track): filename = os.path.split(unicode(track))[1] item_name = QtGui.QListWidgetItem(filename) - item_name.setIcon(build_icon(CLAPPERBOARD)) + item_name.setIcon(build_icon(ERROR)) + item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(track)) + elif track_info.isFile(): + filename = os.path.split(unicode(track))[1] + item_name = QtGui.QListWidgetItem(filename) + item_name.setIcon(build_icon(VIDEO)) item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(track)) else: filename = os.path.split(unicode(track))[1] @@ -306,8 +323,8 @@ class MediaMediaItem(MediaManagerItem): def getList(self, type=MediaType.Audio): media = SettingsManager.load_list(self.settingsSection, u'media') - media.sort(cmp=locale.strcoll, - key=lambda filename: os.path.split(unicode(filename))[1].lower()) + media.sort(cmp=locale_compare, + key=lambda filename: os.path.split(unicode(filename))[1]) ext = [] if type == MediaType.Audio: ext = self.plugin.audio_extensions_list diff --git a/openlp/plugins/media/lib/mediatab.py b/openlp/plugins/media/lib/mediatab.py index 4ac258ed9..7bf8d9267 100644 --- a/openlp/plugins/media/lib/mediatab.py +++ b/openlp/plugins/media/lib/mediatab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/media/mediaplugin.py b/openlp/plugins/media/mediaplugin.py index b4dc96742..1cbdde9af 100644 --- a/openlp/plugins/media/mediaplugin.py +++ b/openlp/plugins/media/mediaplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/__init__.py b/openlp/plugins/presentations/__init__.py index 49e756774..ce699483a 100644 --- a/openlp/plugins/presentations/__init__.py +++ b/openlp/plugins/presentations/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/__init__.py b/openlp/plugins/presentations/lib/__init__.py index afa393cde..43de2fa67 100644 --- a/openlp/plugins/presentations/lib/__init__.py +++ b/openlp/plugins/presentations/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/impresscontroller.py b/openlp/plugins/presentations/lib/impresscontroller.py index a85f43592..8c714c485 100644 --- a/openlp/plugins/presentations/lib/impresscontroller.py +++ b/openlp/plugins/presentations/lib/impresscontroller.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -153,7 +154,7 @@ class ImpressController(PresentationController): desktop = None try: desktop = self.manager.createInstance(u'com.sun.star.frame.Desktop') - except AttributeError: + except (AttributeError, pywintypes.com_error): log.warn(u'Failure to find desktop - Impress may have closed') return desktop if desktop else None @@ -284,6 +285,8 @@ class ImpressDocument(PresentationDocument): props = tuple(props) doc = self.document pages = doc.getDrawPages() + if not pages: + return if not os.path.isdir(self.get_temp_folder()): os.makedirs(self.get_temp_folder()) for idx in range(pages.getCount()): @@ -359,7 +362,7 @@ class ImpressDocument(PresentationDocument): log.debug(u'is active OpenOffice') if not self.is_loaded(): return False - return self.control is not None + return self.control.isRunning() if self.control else False def unblank_screen(self): """ @@ -380,7 +383,7 @@ class ImpressDocument(PresentationDocument): Returns true if screen is blank """ log.debug(u'is blank OpenOffice') - if self.control: + if self.control and self.control.isRunning(): return self.control.isPaused() else: return False @@ -436,7 +439,11 @@ class ImpressDocument(PresentationDocument): """ Triggers the next effect of slide on the running presentation """ + is_paused = self.control.isPaused() self.control.gotoNextEffect() + time.sleep(0.1) + if not is_paused and self.control.isPaused(): + self.control.gotoPreviousEffect() def previous_step(self): """ diff --git a/openlp/plugins/presentations/lib/mediaitem.py b/openlp/plugins/presentations/lib/mediaitem.py index 290882e26..cc0ab992c 100644 --- a/openlp/plugins/presentations/lib/mediaitem.py +++ b/openlp/plugins/presentations/lib/mediaitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -28,7 +29,6 @@ import logging import os -import locale from PyQt4 import QtCore, QtGui @@ -38,10 +38,13 @@ from openlp.core.lib import MediaManagerItem, build_icon, SettingsManager, \ from openlp.core.lib.ui import UiStrings, critical_error_message_box, \ create_horizontal_adjusting_combo_box from openlp.core.lib.settings import Settings +from openlp.core.utils import locale_compare from openlp.plugins.presentations.lib import MessageListener log = logging.getLogger(__name__) +ERROR = QtGui.QImage(u':/general/general_delete.png') + class PresentationMediaItem(MediaManagerItem): """ This is the Presentation media manager item for Presentation Items. @@ -169,54 +172,63 @@ class PresentationMediaItem(MediaManagerItem): if not initialLoad: Receiver.send_message(u'cursor_busy') self.plugin.formParent.displayProgressBar(len(files)) - # Sort the themes by its filename considering language specific - # characters. lower() is needed for windows! - files.sort(cmp=locale.strcoll, - key=lambda filename: os.path.split(unicode(filename))[1].lower()) + # Sort the presentations by its filename considering language specific + # characters. + files.sort(cmp=locale_compare, + key=lambda filename: os.path.split(unicode(filename))[1]) for file in files: if not initialLoad: self.plugin.formParent.incrementProgressBar() if currlist.count(file) > 0: continue filename = os.path.split(unicode(file))[1] - if titles.count(filename) > 0: - if not initialLoad: - critical_error_message_box( - translate('PresentationPlugin.MediaItem', - 'File Exists'), - translate('PresentationPlugin.MediaItem', - 'A presentation with that filename already exists.')) - continue - controller_name = self.findControllerByType(filename) - if controller_name: - controller = self.controllers[controller_name] - doc = controller.add_document(unicode(file)) - thumb = os.path.join(doc.get_thumbnail_folder(), u'icon.png') - preview = doc.get_thumbnail_path(1, True) - if not preview and not initialLoad: - doc.load_presentation() - preview = doc.get_thumbnail_path(1, True) - doc.close_presentation() - if not (preview and os.path.exists(preview)): - icon = build_icon(u':/general/general_delete.png') - else: - if validate_thumb(preview, thumb): - icon = build_icon(thumb) - else: - icon = create_thumb(preview, thumb) + if not os.path.exists(file): + item_name = QtGui.QListWidgetItem(filename) + item_name.setIcon(build_icon(ERROR)) + item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file)) + item_name.setToolTip(file) + self.listView.addItem(item_name) else: - if initialLoad: - icon = build_icon(u':/general/general_delete.png') - else: - critical_error_message_box(UiStrings().UnsupportedFile, - translate('PresentationPlugin.MediaItem', - 'This type of presentation is not supported.')) + if titles.count(filename) > 0: + if not initialLoad: + critical_error_message_box( + translate('PresentationPlugin.MediaItem', + 'File Exists'), + translate('PresentationPlugin.MediaItem', + 'A presentation with that filename already exists.') + ) continue - item_name = QtGui.QListWidgetItem(filename) - item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file)) - item_name.setIcon(icon) - item_name.setToolTip(file) - self.listView.addItem(item_name) + controller_name = self.findControllerByType(filename) + if controller_name: + controller = self.controllers[controller_name] + doc = controller.add_document(unicode(file)) + thumb = os.path.join(doc.get_thumbnail_folder(), + u'icon.png') + preview = doc.get_thumbnail_path(1, True) + if not preview and not initialLoad: + doc.load_presentation() + preview = doc.get_thumbnail_path(1, True) + doc.close_presentation() + if not (preview and os.path.exists(preview)): + icon = build_icon(u':/general/general_delete.png') + else: + if validate_thumb(preview, thumb): + icon = build_icon(thumb) + else: + icon = create_thumb(preview, thumb) + else: + if initialLoad: + icon = build_icon(u':/general/general_delete.png') + else: + critical_error_message_box(UiStrings().UnsupportedFile, + translate('PresentationPlugin.MediaItem', + 'This type of presentation is not supported.')) + continue + item_name = QtGui.QListWidgetItem(filename) + item_name.setData(QtCore.Qt.UserRole, QtCore.QVariant(file)) + item_name.setIcon(icon) + item_name.setToolTip(file) + self.listView.addItem(item_name) Receiver.send_message(u'cursor_normal') if not initialLoad: self.plugin.formParent.finishedProgressBar() diff --git a/openlp/plugins/presentations/lib/messagelistener.py b/openlp/plugins/presentations/lib/messagelistener.py index cb8f7b7b8..78b0ca2b8 100644 --- a/openlp/plugins/presentations/lib/messagelistener.py +++ b/openlp/plugins/presentations/lib/messagelistener.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -49,6 +50,7 @@ class Controller(object): """ self.is_live = live self.doc = None + self.hide_mode = None log.info(u'%s controller loaded' % live) def add_handler(self, controller, file, hide_mode, slide_no): @@ -67,6 +69,7 @@ class Controller(object): # Inform slidecontroller that the action failed? return self.doc.slidenumber = slide_no + self.hide_mode = hide_mode if self.is_live: if hide_mode == HideMode.Screen: Receiver.send_message(u'live_display_hide', HideMode.Screen) @@ -78,7 +81,7 @@ class Controller(object): else: self.doc.start_presentation() Receiver.send_message(u'live_display_hide', HideMode.Screen) - self.doc.slidenumber = 0 + self.doc.slidenumber = 1 if slide_no > 1: self.slide(slide_no) @@ -88,100 +91,134 @@ class Controller(object): Use the last slide number. """ log.debug(u'Live = %s, activate' % self.is_live) + if not self.doc: + return False if self.doc.is_active(): - return + return True if not self.doc.is_loaded(): if not self.doc.load_presentation(): - return + log.warn(u'Failed to activate %s' % self.doc.filepath) + return False if self.is_live: self.doc.start_presentation() if self.doc.slidenumber > 1: if self.doc.slidenumber > self.doc.get_slide_count(): self.doc.slidenumber = self.doc.get_slide_count() self.doc.goto_slide(self.doc.slidenumber) + if self.doc.is_active(): + return True + else: + log.warn(u'Failed to activate %s' % self.doc.filepath) + return False def slide(self, slide): """ Go to a specific slide """ log.debug(u'Live = %s, slide' % self.is_live) + if not self.doc: + return if not self.is_live: return - if self.doc.is_blank(): + if self.hide_mode: self.doc.slidenumber = int(slide) + 1 + self.poll() + return + if not self.activate(): return - self.activate() self.doc.goto_slide(int(slide) + 1) - self.doc.poll_slidenumber(self.is_live) + self.poll() def first(self): """ Based on the handler passed at startup triggers the first slide """ log.debug(u'Live = %s, first' % self.is_live) + if not self.doc: + return if not self.is_live: return - if self.doc.is_blank(): + if self.hide_mode: self.doc.slidenumber = 1 + self.poll() + return + if not self.activate(): return - self.activate() self.doc.start_presentation() - self.doc.poll_slidenumber(self.is_live) + self.poll() def last(self): """ Based on the handler passed at startup triggers the last slide """ log.debug(u'Live = %s, last' % self.is_live) + if not self.doc: + return if not self.is_live: return - if self.doc.is_blank(): + if self.hide_mode: self.doc.slidenumber = self.doc.get_slide_count() + self.poll() + return + if not self.activate(): return - self.activate() self.doc.goto_slide(self.doc.get_slide_count()) - self.doc.poll_slidenumber(self.is_live) + self.poll() def next(self): """ Based on the handler passed at startup triggers the next slide event """ log.debug(u'Live = %s, next' % self.is_live) + if not self.doc: + return if not self.is_live: return - if self.doc.is_blank(): + if self.hide_mode: + if not self.doc.is_active(): + return if self.doc.slidenumber < self.doc.get_slide_count(): self.doc.slidenumber = self.doc.slidenumber + 1 + self.poll() + return + if not self.activate(): return # The "End of slideshow" screen is after the last slide # Note, we can't just stop on the last slide, since it may # contain animations that need to be stepped through. if self.doc.slidenumber > self.doc.get_slide_count(): return - self.activate() self.doc.next_step() - self.doc.poll_slidenumber(self.is_live) + self.poll() def previous(self): """ Based on the handler passed at startup triggers the previous slide event """ log.debug(u'Live = %s, previous' % self.is_live) + if not self.doc: + return if not self.is_live: return - if self.doc.is_blank(): + if self.hide_mode: + if not self.doc.is_active(): + return if self.doc.slidenumber > 1: self.doc.slidenumber = self.doc.slidenumber - 1 + self.poll() + return + if not self.activate(): return - self.activate() self.doc.previous_step() - self.doc.poll_slidenumber(self.is_live) + self.poll() def shutdown(self): """ Based on the handler passed at startup triggers slide show to shut down """ log.debug(u'Live = %s, shutdown' % self.is_live) + if not self.doc: + return self.doc.close_presentation() self.doc = None @@ -190,21 +227,30 @@ class Controller(object): Instruct the controller to blank the presentation """ log.debug(u'Live = %s, blank' % self.is_live) + self.hide_mode = hide_mode + if not self.doc: + return if not self.is_live: return - if not self.doc.is_loaded(): - return - if not self.doc.is_active(): - return if hide_mode == HideMode.Theme: + if not self.doc.is_loaded(): + return + if not self.doc.is_active(): + return Receiver.send_message(u'live_display_hide', HideMode.Theme) - self.doc.blank_screen() + elif hide_mode == HideMode.Blank: + if not self.activate(): + return + self.doc.blank_screen() def stop(self): """ Instruct the controller to stop and hide the presentation """ log.debug(u'Live = %s, stop' % self.is_live) + self.hide_mode = HideMode.Screen + if not self.doc: + return if not self.is_live: return if not self.doc.is_loaded(): @@ -218,9 +264,13 @@ class Controller(object): Instruct the controller to unblank the presentation """ log.debug(u'Live = %s, unblank' % self.is_live) + self.hide_mode = None + if not self.doc: + return if not self.is_live: return - self.activate() + if not self.activate(): + return if self.doc.slidenumber and \ self.doc.slidenumber != self.doc.get_slide_number(): self.doc.goto_slide(self.doc.slidenumber) @@ -228,7 +278,9 @@ class Controller(object): Receiver.send_message(u'live_display_hide', HideMode.Screen) def poll(self): - self.doc.poll_slidenumber(self.is_live) + if not self.doc: + return + self.doc.poll_slidenumber(self.is_live, self.hide_mode) class MessageListener(object): @@ -278,7 +330,7 @@ class MessageListener(object): item = message[0] log.debug(u'Startup called with message %s' % message) hide_mode = message[2] - file = os.path.join(item.get_frame_path(), item.get_frame_title()) + file = item.get_frame_path() self.handler = item.title if self.handler == self.mediaitem.Automatic: self.handler = self.mediaitem.findControllerByType(file) diff --git a/openlp/plugins/presentations/lib/powerpointcontroller.py b/openlp/plugins/presentations/lib/powerpointcontroller.py index 54b9c2144..2c8fc03f8 100644 --- a/openlp/plugins/presentations/lib/powerpointcontroller.py +++ b/openlp/plugins/presentations/lib/powerpointcontroller.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -94,9 +95,9 @@ class PowerpointController(PresentationController): self.docs[0].close_presentation() if self.process is None: return - if self.process.Presentations.Count > 0: - return try: + if self.process.Presentations.Count > 0: + return self.process.Quit() except pywintypes.com_error: pass @@ -210,6 +211,13 @@ class PowerpointDocument(PresentationDocument): self.presentation.SlideShowSettings.Run() self.presentation.SlideShowWindow.View.State = 1 self.presentation.SlideShowWindow.Activate() + if self.presentation.Application.Version == u'14.0': + # Unblanking is broken in PowerPoint 2010, need to redisplay + slide = self.presentation.SlideShowWindow.View.CurrentShowPosition + click = self.presentation.SlideShowWindow.View.GetClickIndex() + self.presentation.SlideShowWindow.View.GotoSlide(slide) + if click: + self.presentation.SlideShowWindow.View.GotoClick(click) def blank_screen(self): """ @@ -253,6 +261,8 @@ class PowerpointDocument(PresentationDocument): renderer = self.controller.plugin.renderer rect = renderer.screens.current[u'size'] ppt_window = self.presentation.SlideShowSettings.Run() + if not ppt_window: + return ppt_window.Top = rect.y() * 72 / dpi ppt_window.Height = rect.height() * 72 / dpi ppt_window.Left = rect.x() * 72 / dpi @@ -286,6 +296,8 @@ class PowerpointDocument(PresentationDocument): """ log.debug(u'next_step') self.presentation.SlideShowWindow.View.Next() + if self.get_slide_number() > self.get_slide_count(): + self.previous_step() def previous_step(self): """ diff --git a/openlp/plugins/presentations/lib/pptviewcontroller.py b/openlp/plugins/presentations/lib/pptviewcontroller.py index 2e3b28f6e..0b3605b3e 100644 --- a/openlp/plugins/presentations/lib/pptviewcontroller.py +++ b/openlp/plugins/presentations/lib/pptviewcontroller.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/pptviewlib/README.TXT b/openlp/plugins/presentations/lib/pptviewlib/README.TXT index 6cbf18cb0..e9f50f4a1 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/README.TXT +++ b/openlp/plugins/presentations/lib/pptviewlib/README.TXT @@ -1,6 +1,6 @@ PPTVIEWLIB - Control PowerPoint Viewer 2003/2007 (for openlp.org) -Copyright (C) 2008-2011 Jonathan Corwin (j@corwin.co.uk) +Copyright (C) 2008-2012 Jonathan Corwin (j@corwin.co.uk) This library wrappers the free Microsoft PowerPoint Viewer (2003/2007) program, allowing it to be more easily controlled from another program. diff --git a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py index 98f916136..777ade7ad 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/ppttest.py +++ b/openlp/plugins/presentations/lib/pptviewlib/ppttest.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp index 01351d209..a40a7e8a5 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp +++ b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.cpp @@ -1,14 +1,14 @@ /****************************************************************************** -* PptViewLib - PowerPoint Viewer 2003/2007 Controller * * OpenLP - Open Source Lyrics Projection * * --------------------------------------------------------------------------- * -* Copyright (c) 2008-2011 Raoul Snyman * +* Copyright (c) 2008-2012 Raoul Snyman * * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * -* Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, * -* Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, * -* Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon * -* Tibble, Dave Warnock, Frode Woldsund * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * +* Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, * +* Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, * +* Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, * +* Frode Woldsund, Martin Zibricky * * --------------------------------------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the Free * diff --git a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h index b6d76b10c..21460e7f0 100644 --- a/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h +++ b/openlp/plugins/presentations/lib/pptviewlib/pptviewlib.h @@ -1,14 +1,14 @@ /****************************************************************************** -* PptViewLib - PowerPoint Viewer 2003/2007 Controller * * OpenLP - Open Source Lyrics Projection * * --------------------------------------------------------------------------- * -* Copyright (c) 2008-2011 Raoul Snyman * +* Copyright (c) 2008-2012 Raoul Snyman * * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * -* Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, * -* Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, * -* Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon * -* Tibble, Dave Warnock, Frode Woldsund * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * +* Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, * +* Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, * +* Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, * +* Frode Woldsund, Martin Zibricky * * --------------------------------------------------------------------------- * * This program is free software; you can redistribute it and/or modify it * * under the terms of the GNU General Public License as published by the Free * diff --git a/openlp/plugins/presentations/lib/presentationcontroller.py b/openlp/plugins/presentations/lib/presentationcontroller.py index b72e1e9d4..7caa4db72 100644 --- a/openlp/plugins/presentations/lib/presentationcontroller.py +++ b/openlp/plugins/presentations/lib/presentationcontroller.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -260,16 +261,17 @@ class PresentationDocument(object): else: return None - def poll_slidenumber(self, is_live): + def poll_slidenumber(self, is_live, hide_mode): """ Check the current slide number """ if not self.is_active(): return - current = self.get_slide_number() - if current == self.slidenumber: - return - self.slidenumber = current + if not hide_mode: + current = self.get_slide_number() + if current == self.slidenumber: + return + self.slidenumber = current if is_live: prefix = u'live' else: diff --git a/openlp/plugins/presentations/lib/presentationtab.py b/openlp/plugins/presentations/lib/presentationtab.py index a09e19a94..354823e06 100644 --- a/openlp/plugins/presentations/lib/presentationtab.py +++ b/openlp/plugins/presentations/lib/presentationtab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/presentations/presentationplugin.py b/openlp/plugins/presentations/presentationplugin.py index 6ab93f0a5..f01bd9c3d 100644 --- a/openlp/plugins/presentations/presentationplugin.py +++ b/openlp/plugins/presentations/presentationplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/__init__.py b/openlp/plugins/remotes/__init__.py index f20d893f9..26b39d018 100644 --- a/openlp/plugins/remotes/__init__.py +++ b/openlp/plugins/remotes/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/html/index.html b/openlp/plugins/remotes/html/index.html index dad2f8351..22fd90c13 100644 --- a/openlp/plugins/remotes/html/index.html +++ b/openlp/plugins/remotes/html/index.html @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -66,10 +67,10 @@ ${refresh}
@@ -97,10 +98,10 @@ ${refresh}
@@ -127,10 +128,10 @@

${alerts}

@@ -148,10 +149,10 @@

${search}

diff --git a/openlp/plugins/remotes/html/openlp.css b/openlp/plugins/remotes/html/openlp.css index 4db82a963..a99e74539 100644 --- a/openlp/plugins/remotes/html/openlp.css +++ b/openlp/plugins/remotes/html/openlp.css @@ -1,27 +1,28 @@ -/***************************************************************************** - * OpenLP - Open Source Lyrics Projection * - * ------------------------------------------------------------------------- * - * Copyright (c) 2008-2012 Raoul Snyman * - * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * - * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * - * Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan * - * Pettit, Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip * - * Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin * - * Thompson, Jon Tibble, Dave Warnock, Frode Woldsund * - * ------------------------------------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; version 2 of the License. * - * * - * This program 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 General * - * Public License for more details. * - * * - * You should have received a copy of the GNU General Public License along * - * with this program; if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - *****************************************************************************/ +/****************************************************************************** +* OpenLP - Open Source Lyrics Projection * +* --------------------------------------------------------------------------- * +* Copyright (c) 2008-2012 Raoul Snyman * +* Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * +* Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * +* Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, * +* Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, * +* Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, * +* Frode Woldsund, Martin Zibricky * +* --------------------------------------------------------------------------- * +* This program is free software; you can redistribute it and/or modify it * +* under the terms of the GNU General Public License as published by the Free * +* Software Foundation; version 2 of the License. * +* * +* This program 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 General Public License for * +* more details. * +* * +* You should have received a copy of the GNU General Public License along * +* with this program; if not, write to the Free Software Foundation, Inc., 59 * +* Temple Place, Suite 330, Boston, MA 02111-1307 USA * +******************************************************************************/ .ui-icon-blank { background-image: url(images/ui-icon-blank.png); @@ -30,3 +31,8 @@ .ui-icon-unblank { background-image: url(images/ui-icon-unblank.png); } + +/* Overwrite style from jquery-mobile.css */ +.ui-li .ui-btn-text a.ui-link-inherit{ + white-space: normal; +} diff --git a/openlp/plugins/remotes/html/openlp.js b/openlp/plugins/remotes/html/openlp.js index 26c13d2f1..34f4c11e2 100644 --- a/openlp/plugins/remotes/html/openlp.js +++ b/openlp/plugins/remotes/html/openlp.js @@ -1,27 +1,28 @@ -/***************************************************************************** - * OpenLP - Open Source Lyrics Projection * - * ------------------------------------------------------------------------- * - * Copyright (c) 2008-2012 Raoul Snyman * - * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * - * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * - * Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan * - * Pettit, Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip * - * Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin * - * Thompson, Jon Tibble, Dave Warnock, Frode Woldsund * - * ------------------------------------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; version 2 of the License. * - * * - * This program 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 General * - * Public License for more details. * - * * - * You should have received a copy of the GNU General Public License along * - * with this program; if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - *****************************************************************************/ +/****************************************************************************** + * OpenLP - Open Source Lyrics Projection * + * --------------------------------------------------------------------------- * + * Copyright (c) 2008-2012 Raoul Snyman * + * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * + * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * + * Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * + * Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, * + * Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, * + * Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, * + * Frode Woldsund, Martin Zibricky * + * --------------------------------------------------------------------------- * + * This program is free software; you can redistribute it and/or modify it * + * under the terms of the GNU General Public License as published by the Free * + * Software Foundation; version 2 of the License. * + * * + * This program 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 General Public License for * + * more details. * + * * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., 59 * + * Temple Place, Suite 330, Boston, MA 02111-1307 USA * + ******************************************************************************/ window.OpenLP = { getElement: function(event) { @@ -55,7 +56,9 @@ window.OpenLP = { ); }, loadService: function (event) { - event.preventDefault(); + if (event) { + event.preventDefault(); + } $.getJSON( "/api/service/list", function (data, status) { @@ -150,6 +153,10 @@ window.OpenLP = { OpenLP.currentSlide = data.results.slide; OpenLP.currentItem = data.results.item; if ($("#service-manager").is(":visible")) { + if (OpenLP.currentService != data.results.service) { + OpenLP.currentService = data.results.service; + OpenLP.loadService(); + } $("#service-manager div[data-role=content] ul[data-role=listview] li").attr("data-theme", "c").removeClass("ui-btn-up-e").addClass("ui-btn-up-c"); $("#service-manager div[data-role=content] ul[data-role=listview] li a").each(function () { var item = $(this); @@ -307,7 +314,7 @@ window.OpenLP = { } ); }, - escapeString: function (string) { + escapeString: function (string) { return string.replace(/\\/g, "\\\\").replace(/"/g, "\\\"") } } diff --git a/openlp/plugins/remotes/html/stage.css b/openlp/plugins/remotes/html/stage.css index 8b45a3b43..ebc1f8890 100644 --- a/openlp/plugins/remotes/html/stage.css +++ b/openlp/plugins/remotes/html/stage.css @@ -1,27 +1,28 @@ -/***************************************************************************** - * OpenLP - Open Source Lyrics Projection * - * ------------------------------------------------------------------------- * - * Copyright (c) 2008-2012 Raoul Snyman * - * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * - * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * - * Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan * - * Pettit, Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip * - * Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin * - * Thompson, Jon Tibble, Dave Warnock, Frode Woldsund * - * ------------------------------------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; version 2 of the License. * - * * - * This program 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 General * - * Public License for more details. * - * * - * You should have received a copy of the GNU General Public License along * - * with this program; if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - *****************************************************************************/ +/****************************************************************************** +* OpenLP - Open Source Lyrics Projection * +* --------------------------------------------------------------------------- * +* Copyright (c) 2008-2012 Raoul Snyman * +* Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * +* Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * +* Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * +* Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, * +* Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, * +* Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, * +* Frode Woldsund, Martin Zibricky * +* --------------------------------------------------------------------------- * +* This program is free software; you can redistribute it and/or modify it * +* under the terms of the GNU General Public License as published by the Free * +* Software Foundation; version 2 of the License. * +* * +* This program 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 General Public License for * +* more details. * +* * +* You should have received a copy of the GNU General Public License along * +* with this program; if not, write to the Free Software Foundation, Inc., 59 * +* Temple Place, Suite 330, Boston, MA 02111-1307 USA * +******************************************************************************/ body { background-color: black; diff --git a/openlp/plugins/remotes/html/stage.html b/openlp/plugins/remotes/html/stage.html index 6fdde26d1..10c28efb6 100644 --- a/openlp/plugins/remotes/html/stage.html +++ b/openlp/plugins/remotes/html/stage.html @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/html/stage.js b/openlp/plugins/remotes/html/stage.js index 38bd0fe01..6a191481d 100644 --- a/openlp/plugins/remotes/html/stage.js +++ b/openlp/plugins/remotes/html/stage.js @@ -1,27 +1,28 @@ -/***************************************************************************** - * OpenLP - Open Source Lyrics Projection * - * ------------------------------------------------------------------------- * - * Copyright (c) 2008-2012 Raoul Snyman * - * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * - * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * - * Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan * - * Pettit, Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip * - * Ridout, Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin * - * Thompson, Jon Tibble, Dave Warnock, Frode Woldsund * - * ------------------------------------------------------------------------- * - * This program is free software; you can redistribute it and/or modify it * - * under the terms of the GNU General Public License as published by the * - * Free Software Foundation; version 2 of the License. * - * * - * This program 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 General * - * Public License for more details. * - * * - * You should have received a copy of the GNU General Public License along * - * with this program; if not, write to the Free Software Foundation, Inc., * - * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * - *****************************************************************************/ +/****************************************************************************** + * OpenLP - Open Source Lyrics Projection * + * --------------------------------------------------------------------------- * + * Copyright (c) 2008-2012 Raoul Snyman * + * Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan * + * Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, * + * Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. * + * Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, * + * Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, * + * Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, * + * Frode Woldsund, Martin Zibricky * + * --------------------------------------------------------------------------- * + * This program is free software; you can redistribute it and/or modify it * + * under the terms of the GNU General Public License as published by the Free * + * Software Foundation; version 2 of the License. * + * * + * This program 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 General Public License for * + * more details. * + * * + * You should have received a copy of the GNU General Public License along * + * with this program; if not, write to the Free Software Foundation, Inc., 59 * + * Temple Place, Suite 330, Boston, MA 02111-1307 USA * + ******************************************************************************/ window.OpenLP = { loadService: function (event) { $.getJSON( @@ -139,8 +140,10 @@ window.OpenLP = { "/api/poll", function (data, status) { OpenLP.updateClock(data); - if (OpenLP.currentItem != data.results.item) { + if (OpenLP.currentItem != data.results.item || + OpenLP.currentService != data.results.service) { OpenLP.currentItem = data.results.item; + OpenLP.currentService = data.results.service; OpenLP.loadSlides(); } else if (OpenLP.currentSlide != data.results.slide) { diff --git a/openlp/plugins/remotes/lib/__init__.py b/openlp/plugins/remotes/lib/__init__.py index 8dadd9287..f01d8981b 100644 --- a/openlp/plugins/remotes/lib/__init__.py +++ b/openlp/plugins/remotes/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/lib/httpserver.py b/openlp/plugins/remotes/lib/httpserver.py index cd2802542..c5eeb960d 100644 --- a/openlp/plugins/remotes/lib/httpserver.py +++ b/openlp/plugins/remotes/lib/httpserver.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -308,7 +309,9 @@ class HttpConnection(object): 'add_and_go_to_service': translate('RemotePlugin.Mobile', 'Add & Go to Service'), 'no_results': translate('RemotePlugin.Mobile', 'No Results'), - 'options': translate('RemotePlugin.Mobile', 'Options') + 'options': translate('RemotePlugin.Mobile', 'Options'), + 'service': translate('RemotePlugin.Mobile', 'Service'), + 'slides': translate('RemotePlugin.Mobile', 'Slides') } def ready_read(self): diff --git a/openlp/plugins/remotes/lib/remotetab.py b/openlp/plugins/remotes/lib/remotetab.py index ec440e24a..b4688e52e 100644 --- a/openlp/plugins/remotes/lib/remotetab.py +++ b/openlp/plugins/remotes/lib/remotetab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/remotes/remoteplugin.py b/openlp/plugins/remotes/remoteplugin.py index f1fad4318..8a6eb5c3e 100644 --- a/openlp/plugins/remotes/remoteplugin.py +++ b/openlp/plugins/remotes/remoteplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/__init__.py b/openlp/plugins/songs/__init__.py index 2b683d8bc..5903a26ff 100644 --- a/openlp/plugins/songs/__init__.py +++ b/openlp/plugins/songs/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/__init__.py b/openlp/plugins/songs/forms/__init__.py index 084495561..ff2ebf593 100644 --- a/openlp/plugins/songs/forms/__init__.py +++ b/openlp/plugins/songs/forms/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/authorsdialog.py b/openlp/plugins/songs/forms/authorsdialog.py index 6c10f296e..220e308ee 100644 --- a/openlp/plugins/songs/forms/authorsdialog.py +++ b/openlp/plugins/songs/forms/authorsdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/authorsform.py b/openlp/plugins/songs/forms/authorsform.py index 8dede69a7..d804f03b7 100644 --- a/openlp/plugins/songs/forms/authorsform.py +++ b/openlp/plugins/songs/forms/authorsform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editsongdialog.py b/openlp/plugins/songs/forms/editsongdialog.py index 29aafdfd4..7619fa17a 100644 --- a/openlp/plugins/songs/forms/editsongdialog.py +++ b/openlp/plugins/songs/forms/editsongdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editsongform.py b/openlp/plugins/songs/forms/editsongform.py index a0f347f3e..2b720f7e7 100644 --- a/openlp/plugins/songs/forms/editsongform.py +++ b/openlp/plugins/songs/forms/editsongform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editversedialog.py b/openlp/plugins/songs/forms/editversedialog.py index 62a4286e3..1bbf28f55 100644 --- a/openlp/plugins/songs/forms/editversedialog.py +++ b/openlp/plugins/songs/forms/editversedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/editverseform.py b/openlp/plugins/songs/forms/editverseform.py index 376a023ec..59a0a0815 100644 --- a/openlp/plugins/songs/forms/editverseform.py +++ b/openlp/plugins/songs/forms/editverseform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/mediafilesdialog.py b/openlp/plugins/songs/forms/mediafilesdialog.py index 563a75d85..d0da42626 100644 --- a/openlp/plugins/songs/forms/mediafilesdialog.py +++ b/openlp/plugins/songs/forms/mediafilesdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/mediafilesform.py b/openlp/plugins/songs/forms/mediafilesform.py index 7cd6b3c14..ad057fb0b 100644 --- a/openlp/plugins/songs/forms/mediafilesform.py +++ b/openlp/plugins/songs/forms/mediafilesform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songbookdialog.py b/openlp/plugins/songs/forms/songbookdialog.py index d4e7d91c9..6f2edb76a 100644 --- a/openlp/plugins/songs/forms/songbookdialog.py +++ b/openlp/plugins/songs/forms/songbookdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songbookform.py b/openlp/plugins/songs/forms/songbookform.py index ccd9d2070..806ced052 100644 --- a/openlp/plugins/songs/forms/songbookform.py +++ b/openlp/plugins/songs/forms/songbookform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songexportform.py b/openlp/plugins/songs/forms/songexportform.py index c483c91b6..52d63e964 100644 --- a/openlp/plugins/songs/forms/songexportform.py +++ b/openlp/plugins/songs/forms/songexportform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -29,7 +30,6 @@ The :mod:`songexportform` module provides the wizard for exporting songs to the OpenLyrics format. """ -import locale import logging from PyQt4 import QtCore, QtGui @@ -38,6 +38,7 @@ from openlp.core.lib import build_icon, Receiver, SettingsManager, translate, \ create_separated_list from openlp.core.lib.ui import UiStrings, critical_error_message_box from openlp.core.ui.wizard import OpenLPWizard, WizardStrings +from openlp.core.utils import locale_direct_compare from openlp.plugins.songs.lib.db import Song from openlp.plugins.songs.lib.openlyricsexport import OpenLyricsExport @@ -252,7 +253,8 @@ class SongExportForm(OpenLPWizard): # Load the list of songs. Receiver.send_message(u'cursor_busy') songs = self.plugin.manager.get_all_objects(Song) - songs.sort(cmp=locale.strcoll, key=lambda song: song.title.lower()) + songs.sort( + cmp=locale_direct_compare, key=lambda song: song.sort_string) for song in songs: # No need to export temporary songs. if song.temporary: diff --git a/openlp/plugins/songs/forms/songimportform.py b/openlp/plugins/songs/forms/songimportform.py index c871cfa87..8d4e21d5e 100644 --- a/openlp/plugins/songs/forms/songimportform.py +++ b/openlp/plugins/songs/forms/songimportform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songmaintenancedialog.py b/openlp/plugins/songs/forms/songmaintenancedialog.py index 5cf82bf3a..c33b79cb9 100644 --- a/openlp/plugins/songs/forms/songmaintenancedialog.py +++ b/openlp/plugins/songs/forms/songmaintenancedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/songmaintenanceform.py b/openlp/plugins/songs/forms/songmaintenanceform.py index c80399253..0adeace7b 100644 --- a/openlp/plugins/songs/forms/songmaintenanceform.py +++ b/openlp/plugins/songs/forms/songmaintenanceform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/topicsdialog.py b/openlp/plugins/songs/forms/topicsdialog.py index 079459cf4..8d1b6d23e 100644 --- a/openlp/plugins/songs/forms/topicsdialog.py +++ b/openlp/plugins/songs/forms/topicsdialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/forms/topicsform.py b/openlp/plugins/songs/forms/topicsform.py index 2bddf320e..d2046cf41 100644 --- a/openlp/plugins/songs/forms/topicsform.py +++ b/openlp/plugins/songs/forms/topicsform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/__init__.py b/openlp/plugins/songs/lib/__init__.py index d984d5a8d..67a6cd80a 100644 --- a/openlp/plugins/songs/lib/__init__.py +++ b/openlp/plugins/songs/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -81,7 +82,7 @@ DESTINATIONS = frozenset(( u'msSupPr', u'mstrikeBLTR', u'mstrikeH', u'mstrikeTLBR', u'mstrikeV', u'msub', u'msubHide', u'msup', u'msupHide', u'mtransp', u'mtype', u'mvertJc', u'mvfmf', u'mvfml', u'mvtof', u'mvtol', u'mzeroAsc', - u'mzeroDesc', u'mzeroWid', u'nesttableprops', u'nextfile', + u'mzFrodesc', u'mzeroWid', u'nesttableprops', u'nextfile', u'nonesttables', u'objalias', u'objclass', u'objdata', u'object', u'objname', u'objsect', u'objtime', u'oldcprops', u'oldpprops', u'oldsprops', u'oldtprops', u'oleclsid', u'operator', u'panose', diff --git a/openlp/plugins/songs/lib/cclifileimport.py b/openlp/plugins/songs/lib/cclifileimport.py index 7a98e1d3d..3d881fe67 100644 --- a/openlp/plugins/songs/lib/cclifileimport.py +++ b/openlp/plugins/songs/lib/cclifileimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/db.py b/openlp/plugins/songs/lib/db.py index d79d177fd..46a7a3909 100644 --- a/openlp/plugins/songs/lib/db.py +++ b/openlp/plugins/songs/lib/db.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -30,12 +31,16 @@ The :mod:`db` module provides the database and schema that is the backend for the Songs plugin """ +import re + from sqlalchemy import Column, ForeignKey, Table, types -from sqlalchemy.orm import mapper, relation +from sqlalchemy.orm import mapper, relation, reconstructor from sqlalchemy.sql.expression import func +from PyQt4 import QtCore from openlp.core.lib.db import BaseModel, init_db + class Author(BaseModel): """ Author model @@ -63,7 +68,34 @@ class Song(BaseModel): """ Song model """ - pass + def __init__(self): + self.sort_key = () + + def _try_int(self, s): + "Convert to integer if possible." + try: + return int(s) + except: + return QtCore.QString(s.lower()) + + def _natsort_key(self, s): + "Used internally to get a tuple by which s is sorted." + return map(self._try_int, re.findall(r'(\d+|\D+)', s)) + + # This decorator tells sqlalchemy to call this method everytime + # any data on this object is updated. + @reconstructor + def init_on_load(self): + """ + Precompute a tuple to be used for sorting. + + Song sorting is performance sensitive operation. + To get maximum speed lets precompute the string + used for comparison. + """ + # Avoid the overhead of converting string to lowercase and to QString + # with every call to sort(). + self.sort_key = self._natsort_key(self.title) class Topic(BaseModel): diff --git a/openlp/plugins/songs/lib/dreambeamimport.py b/openlp/plugins/songs/lib/dreambeamimport.py index f2fd76b12..3684e098d 100644 --- a/openlp/plugins/songs/lib/dreambeamimport.py +++ b/openlp/plugins/songs/lib/dreambeamimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/easyslidesimport.py b/openlp/plugins/songs/lib/easyslidesimport.py index c7c169a1e..c08b8d69d 100644 --- a/openlp/plugins/songs/lib/easyslidesimport.py +++ b/openlp/plugins/songs/lib/easyslidesimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/ewimport.py b/openlp/plugins/songs/lib/ewimport.py index 97567f270..35a1f3551 100644 --- a/openlp/plugins/songs/lib/ewimport.py +++ b/openlp/plugins/songs/lib/ewimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/foilpresenterimport.py b/openlp/plugins/songs/lib/foilpresenterimport.py index 0397d41cb..a7b1e9f45 100644 --- a/openlp/plugins/songs/lib/foilpresenterimport.py +++ b/openlp/plugins/songs/lib/foilpresenterimport.py @@ -1,4 +1,4 @@ - # -*- coding: utf-8 -*- +# -*- coding: utf-8 -*- # vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 ############################################################################### @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/importer.py b/openlp/plugins/songs/lib/importer.py index a8de7172e..772b93dee 100644 --- a/openlp/plugins/songs/lib/importer.py +++ b/openlp/plugins/songs/lib/importer.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/mediaitem.py b/openlp/plugins/songs/lib/mediaitem.py index 88999dce4..cb6933b6f 100644 --- a/openlp/plugins/songs/lib/mediaitem.py +++ b/openlp/plugins/songs/lib/mediaitem.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -27,7 +28,6 @@ ############################################################################### import logging -import locale import re import os import shutil @@ -40,7 +40,7 @@ from openlp.core.lib import MediaManagerItem, Receiver, ItemCapabilities, \ check_directory_exists from openlp.core.lib.ui import UiStrings, create_widget_action from openlp.core.lib.settings import Settings -from openlp.core.utils import AppLocation +from openlp.core.utils import AppLocation, locale_direct_compare from openlp.plugins.songs.forms import EditSongForm, SongMaintenanceForm, \ SongImportForm, SongExportForm from openlp.plugins.songs.lib import OpenLyrics, SongXML, VerseType, \ @@ -50,6 +50,44 @@ from openlp.plugins.songs.lib.ui import SongStrings log = logging.getLogger(__name__) + +def natcmp(a, b): + """ + Natural string comparison which mimics the behaviour of Python's internal + cmp function. + """ + log.debug('a: %s; b: %s', a, b) + if len(a) <= len(b): + for i, key in enumerate(a): + if isinstance(key, int) and isinstance(b[i], int): + result = cmp(key, b[i]) + elif isinstance(key, int) and not isinstance(b[i], int): + result = locale_direct_compare(QtCore.QString(str(key)), b[i]) + elif not isinstance(key, int) and isinstance(b[i], int): + result = locale_direct_compare(key, QtCore.QString(str(b[i]))) + else: + result = locale_direct_compare(key, b[i]) + if result != 0: + return result + if len(a) == len(b): + return 0 + else: + return -1 + else: + for i, key in enumerate(b): + if isinstance(a[i], int) and isinstance(key, int): + result = cmp(a[i], key) + elif isinstance(a[i], int) and not isinstance(key, int): + result = locale_direct_compare(QtCore.QString(str(a[i])), key) + elif not isinstance(a[i], int) and isinstance(key, int): + result = locale_direct_compare(a[i], QtCore.QString(str(key))) + else: + result = locale_direct_compare(a[i], key) + if result != 0: + return result + return 1 + + class SongSearch(object): """ An enumeration for song search methods. @@ -260,10 +298,7 @@ class SongMediaItem(MediaManagerItem): log.debug(u'display results Song') self.saveAutoSelectId() self.listView.clear() - # Sort the songs by its title considering language specific characters. - # lower() is needed for windows! - searchresults.sort( - cmp=locale.strcoll, key=lambda song: song.title.lower()) + searchresults.sort(cmp=natcmp, key=lambda song: song.sort_key) for song in searchresults: # Do not display temporary songs if song.temporary: diff --git a/openlp/plugins/songs/lib/mediashoutimport.py b/openlp/plugins/songs/lib/mediashoutimport.py index f81b208ac..d50b4e8ff 100644 --- a/openlp/plugins/songs/lib/mediashoutimport.py +++ b/openlp/plugins/songs/lib/mediashoutimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/olp1import.py b/openlp/plugins/songs/lib/olp1import.py index c0a209642..231c09c02 100644 --- a/openlp/plugins/songs/lib/olp1import.py +++ b/openlp/plugins/songs/lib/olp1import.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/olpimport.py b/openlp/plugins/songs/lib/olpimport.py index 7a9d98c98..d71c7957e 100644 --- a/openlp/plugins/songs/lib/olpimport.py +++ b/openlp/plugins/songs/lib/olpimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -63,10 +64,14 @@ class OpenLPSongImport(SongImport): SongImport.__init__(self, manager, **kwargs) self.sourceSession = None - def doImport(self): + def doImport(self, progressDialog=None): """ Run the import for an OpenLP version 2 song database. + + ``progressDialog`` + The QProgressDialog used when importing songs from the FRW. """ + class OldAuthor(BaseModel): """ Author model @@ -101,13 +106,14 @@ class OpenLPSongImport(SongImport): """ pass - + # Check the file type if not self.importSource.endswith(u'.sqlite'): self.logError(self.importSource, translate('SongsPlugin.OpenLPSongImport', 'Not a valid OpenLP 2.0 song database.')) return self.importSource = u'sqlite:///%s' % self.importSource + # Load the db file engine = create_engine(self.importSource) source_meta = MetaData() source_meta.reflect(engine) @@ -224,7 +230,11 @@ class OpenLPSongImport(SongImport): file_name=media_file.file_name)) clean_song(self.manager, new_song) self.manager.save_object(new_song) - if self.importWizard: + if progressDialog: + progressDialog.setValue(progressDialog.value() + 1) + progressDialog.setLabelText( + WizardStrings.ImportingType % new_song.title) + else: self.importWizard.incrementProgressBar( WizardStrings.ImportingType % new_song.title) if self.stopImportFlag: diff --git a/openlp/plugins/songs/lib/oooimport.py b/openlp/plugins/songs/lib/oooimport.py index 49e6c2a70..2ee49df4b 100644 --- a/openlp/plugins/songs/lib/oooimport.py +++ b/openlp/plugins/songs/lib/oooimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -27,6 +28,7 @@ ############################################################################### import logging import os +import time from PyQt4 import QtCore @@ -123,6 +125,7 @@ class OooImport(SongImport): try: uno_instance = get_uno_instance(resolver) except NoConnectException: + time.sleep(0.1) log.exception("Failed to resolve uno connection") self.startOooProcess() loop += 1 diff --git a/openlp/plugins/songs/lib/openlyricsexport.py b/openlp/plugins/songs/lib/openlyricsexport.py index 9329b0a95..5ca21f085 100644 --- a/openlp/plugins/songs/lib/openlyricsexport.py +++ b/openlp/plugins/songs/lib/openlyricsexport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/openlyricsimport.py b/openlp/plugins/songs/lib/openlyricsimport.py index 87d77a524..3ae185179 100644 --- a/openlp/plugins/songs/lib/openlyricsimport.py +++ b/openlp/plugins/songs/lib/openlyricsimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/opensongimport.py b/openlp/plugins/songs/lib/opensongimport.py index e7f35b467..54a882b65 100644 --- a/openlp/plugins/songs/lib/opensongimport.py +++ b/openlp/plugins/songs/lib/opensongimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/powersongimport.py b/openlp/plugins/songs/lib/powersongimport.py index f406cc616..c9ff415e7 100644 --- a/openlp/plugins/songs/lib/powersongimport.py +++ b/openlp/plugins/songs/lib/powersongimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/sofimport.py b/openlp/plugins/songs/lib/sofimport.py index d6fd6aa77..7a499c409 100644 --- a/openlp/plugins/songs/lib/sofimport.py +++ b/openlp/plugins/songs/lib/sofimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songbeamerimport.py b/openlp/plugins/songs/lib/songbeamerimport.py index 3e06f01a5..1756b71a0 100644 --- a/openlp/plugins/songs/lib/songbeamerimport.py +++ b/openlp/plugins/songs/lib/songbeamerimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songimport.py b/openlp/plugins/songs/lib/songimport.py index 134cbdfdc..a35c6fc4e 100644 --- a/openlp/plugins/songs/lib/songimport.py +++ b/openlp/plugins/songs/lib/songimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -273,9 +274,10 @@ class SongImport(QtCore.QObject): """ Repeat the previous verse in the verse order """ - self.verseOrderListGenerated.append( - self.verseOrderListGenerated[-1]) - self.verseOrderListGeneratedUseful = True + if self.verseOrderListGenerated: + self.verseOrderListGenerated.append( + self.verseOrderListGenerated[-1]) + self.verseOrderListGeneratedUseful = True def checkComplete(self): """ diff --git a/openlp/plugins/songs/lib/songproimport.py b/openlp/plugins/songs/lib/songproimport.py index 44bf0cb44..7f08fcdad 100644 --- a/openlp/plugins/songs/lib/songproimport.py +++ b/openlp/plugins/songs/lib/songproimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songshowplusimport.py b/openlp/plugins/songs/lib/songshowplusimport.py index 2f8fdd121..11e826430 100644 --- a/openlp/plugins/songs/lib/songshowplusimport.py +++ b/openlp/plugins/songs/lib/songshowplusimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/songstab.py b/openlp/plugins/songs/lib/songstab.py index 3053b3973..37c99e499 100644 --- a/openlp/plugins/songs/lib/songstab.py +++ b/openlp/plugins/songs/lib/songstab.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/sundayplusimport.py b/openlp/plugins/songs/lib/sundayplusimport.py index fcf324d41..46e17abdd 100644 --- a/openlp/plugins/songs/lib/sundayplusimport.py +++ b/openlp/plugins/songs/lib/sundayplusimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -154,18 +155,20 @@ class SundayPlusImport(SongImport): # If any line inside any verse contains CCLI or # only Public Domain, we treat this as special data: # we remove that line and add data to specific field. + processed_lines = [] for i in xrange(len(lines)): - lines[i] = lines[i].strip() - line = lines[i] - if line[:4].lower() == u'ccli': + line = lines[i].strip() + if line[:3].lower() == u'ccl': m = re.search(r'[0-9]+', line) if m: self.ccliNumber = int(m.group(0)) - lines.pop(i) + continue elif line.lower() == u'public domain': self.copyright = u'Public Domain' - lines.pop(i) - self.addVerse('\n'.join(lines).strip(), verse_type) + continue + processed_lines.append(line) + self.addVerse('\n'.join(processed_lines).strip(), + verse_type) if end == -1: break i = end + 1 diff --git a/openlp/plugins/songs/lib/test/test_import_file.py b/openlp/plugins/songs/lib/test/test_import_file.py index 06825cd9e..44f992dba 100644 --- a/openlp/plugins/songs/lib/test/test_import_file.py +++ b/openlp/plugins/songs/lib/test/test_import_file.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/test/test_importing_lots.py b/openlp/plugins/songs/lib/test/test_importing_lots.py index d21e654e2..b5e7272af 100644 --- a/openlp/plugins/songs/lib/test/test_importing_lots.py +++ b/openlp/plugins/songs/lib/test/test_importing_lots.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/test/test_opensongimport.py b/openlp/plugins/songs/lib/test/test_opensongimport.py index a05f43e01..8cb9e427b 100644 --- a/openlp/plugins/songs/lib/test/test_opensongimport.py +++ b/openlp/plugins/songs/lib/test/test_opensongimport.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/ui.py b/openlp/plugins/songs/lib/ui.py index 8d72232ac..eb73485fe 100644 --- a/openlp/plugins/songs/lib/ui.py +++ b/openlp/plugins/songs/lib/ui.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/upgrade.py b/openlp/plugins/songs/lib/upgrade.py index e4ea4715b..46fcb7746 100644 --- a/openlp/plugins/songs/lib/upgrade.py +++ b/openlp/plugins/songs/lib/upgrade.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/wowimport.py b/openlp/plugins/songs/lib/wowimport.py index a491c4a07..3ac298775 100644 --- a/openlp/plugins/songs/lib/wowimport.py +++ b/openlp/plugins/songs/lib/wowimport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/lib/xml.py b/openlp/plugins/songs/lib/xml.py index 72f0ccd7a..7f465d199 100644 --- a/openlp/plugins/songs/lib/xml.py +++ b/openlp/plugins/songs/lib/xml.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -260,7 +261,7 @@ class OpenLyrics(object): IMPLEMENTED_VERSION = u'0.8' START_TAGS_REGEX = re.compile(r'\{(\w+)\}') END_TAGS_REGEX = re.compile(r'\{\/(\w+)\}') - VERSE_NUMBER_REGEX = re.compile(u'[a-zA-Z]*') + VERSE_TAG_SPLITTER = re.compile(u'([a-zA-Z]+)([0-9]*)([a-zA-Z]?)') def __init__(self, manager): self.manager = manager @@ -325,10 +326,22 @@ class OpenLyrics(object): # Process the song's lyrics. lyrics = etree.SubElement(song_xml, u'lyrics') verse_list = sxml.get_verses(song.lyrics) + # Add a suffix letter to each verse + verse_tags = [] for verse in verse_list: verse_tag = verse[0][u'type'][0].lower() verse_number = verse[0][u'label'] verse_def = verse_tag + verse_number + verse_tags.append(verse_def) + # Create the letter from the number of duplicates + verse[0][u'suffix'] = chr(96 + verse_tags.count(verse_def)) + # If the verse tag is a duplicate use the suffix letter + for verse in verse_list: + verse_tag = verse[0][u'type'][0].lower() + verse_number = verse[0][u'label'] + verse_def = verse_tag + verse_number + if verse_tags.count(verse_def) > 1: + verse_def += verse[0][u'suffix'] verse_element = \ self._add_text_to_element(u'verse', lyrics, None, verse_def) if u'lang' in verse[0]: @@ -742,28 +755,28 @@ class OpenLyrics(object): if lines.get(u'break') is not None: text += u'\n[---]' verse_def = verse.get(u'name', u' ').lower() - if verse_def[0] in VerseType.Tags: - verse_tag = verse_def[0] - else: + verse_tag, verse_number, verse_part = \ + OpenLyrics.VERSE_TAG_SPLITTER.search(verse_def).groups() + if verse_tag not in VerseType.Tags: verse_tag = VerseType.Tags[VerseType.Other] - verse_number = OpenLyrics.VERSE_NUMBER_REGEX.sub(u'', verse_def) # OpenLyrics allows e. g. "c", but we need "c1". However, this does # not correct the verse order. if not verse_number: verse_number = u'1' lang = verse.get(u'lang') + translit = verse.get(u'translit') # In OpenLP 1.9.6 we used v1a, v1b ... to represent visual slide # breaks. In OpenLyrics 0.7 an attribute has been added. if song_xml.get(u'modifiedIn') in (u'1.9.6', u'OpenLP 1.9.6') and \ song_xml.get(u'version') == u'0.7' and \ - (verse_tag, verse_number, lang) in verses: - verses[(verse_tag, verse_number, lang)] += u'\n[---]\n' + text + (verse_tag, verse_number, lang, translit) in verses: + verses[(verse_tag, verse_number, lang, translit, None)] += u'\n[---]\n' + text # Merge v1a, v1b, .... to v1. - elif (verse_tag, verse_number, lang) in verses: - verses[(verse_tag, verse_number, lang)] += u'\n' + text + elif (verse_tag, verse_number, lang, translit, verse_part) in verses: + verses[(verse_tag, verse_number, lang, translit, verse_part)] += u'\n' + text else: - verses[(verse_tag, verse_number, lang)] = text - verse_def_list.append((verse_tag, verse_number, lang)) + verses[(verse_tag, verse_number, lang, translit, verse_part)] = text + verse_def_list.append((verse_tag, verse_number, lang, translit, verse_part)) # We have to use a list to keep the order, as dicts are not sorted. for verse in verse_def_list: sxml.add_verse_to_lyrics( diff --git a/openlp/plugins/songs/lib/zionworximport.py b/openlp/plugins/songs/lib/zionworximport.py index 06a45127d..b813b1551 100644 --- a/openlp/plugins/songs/lib/zionworximport.py +++ b/openlp/plugins/songs/lib/zionworximport.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songs/songsplugin.py b/openlp/plugins/songs/songsplugin.py index 8b7bd36e8..110b5745e 100644 --- a/openlp/plugins/songs/songsplugin.py +++ b/openlp/plugins/songs/songsplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # @@ -29,6 +30,7 @@ import logging import os from tempfile import gettempdir +import sqlite3 from PyQt4 import QtCore, QtGui @@ -82,7 +84,7 @@ class SongsPlugin(Plugin): unicode(UiStrings().Tools)) QtCore.QObject.connect(Receiver.get_receiver(), QtCore.SIGNAL(u'servicemanager_new_service'), - self.clearTemporarySongs) + self.clearTemporarySongs) def addImportMenuItem(self, import_menu): @@ -235,31 +237,37 @@ class SongsPlugin(Plugin): If the first time wizard has run, this function is run to import all the new songs into the database. """ + Receiver.send_message(u'openlp_process_events') self.onToolsReindexItemTriggered() + Receiver.send_message(u'openlp_process_events') db_dir = unicode(os.path.join( unicode(gettempdir(), get_filesystem_encoding()), u'openlp')) if not os.path.exists(db_dir): return song_dbs = [] + song_count = 0 for sfile in os.listdir(db_dir): if sfile.startswith(u'songs_') and sfile.endswith(u'.sqlite'): + Receiver.send_message(u'openlp_process_events') song_dbs.append(os.path.join(db_dir, sfile)) + song_count += self._countSongs(os.path.join(db_dir, sfile)) if not song_dbs: return + Receiver.send_message(u'openlp_process_events') progress = QtGui.QProgressDialog(self.formParent) progress.setWindowModality(QtCore.Qt.WindowModal) progress.setWindowTitle(translate('OpenLP.Ui', 'Importing Songs')) progress.setLabelText(translate('OpenLP.Ui', 'Starting import...')) progress.setCancelButton(None) - progress.setRange(0, len(song_dbs)) + progress.setRange(0, song_count) progress.setMinimumDuration(0) progress.forceShow() - for idx, db in enumerate(song_dbs): - progress.setValue(idx) - Receiver.send_message(u'openlp_process_events') + Receiver.send_message(u'openlp_process_events') + for db in song_dbs: importer = OpenLPSongImport(self.manager, filename=db) - importer.doImport() - progress.setValue(len(song_dbs)) + importer.doImport(progress) + Receiver.send_message(u'openlp_process_events') + progress.setValue(song_count) self.mediaItem.onSearchTextButtonClicked() def finalise(self): @@ -287,3 +295,15 @@ class SongsPlugin(Plugin): songs = self.manager.get_all_objects(Song, Song.temporary == True) for song in songs: self.manager.delete_object(Song, song.id) + + def _countSongs(self, db_file): + connection = sqlite3.connect(db_file) + cursor = connection.cursor() + cursor.execute(u'SELECT COUNT(id) AS song_count FROM songs') + song_count = cursor.fetchone()[0] + connection.close() + try: + song_count = int(song_count) + except (TypeError, ValueError): + song_count = 0 + return song_count diff --git a/openlp/plugins/songusage/__init__.py b/openlp/plugins/songusage/__init__.py index 3fed6406a..4e3b4a055 100644 --- a/openlp/plugins/songusage/__init__.py +++ b/openlp/plugins/songusage/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/__init__.py b/openlp/plugins/songusage/forms/__init__.py index c9773aaad..e2438ea42 100644 --- a/openlp/plugins/songusage/forms/__init__.py +++ b/openlp/plugins/songusage/forms/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedeletedialog.py b/openlp/plugins/songusage/forms/songusagedeletedialog.py index 9ee4d1604..ea50352ef 100644 --- a/openlp/plugins/songusage/forms/songusagedeletedialog.py +++ b/openlp/plugins/songusage/forms/songusagedeletedialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedeleteform.py b/openlp/plugins/songusage/forms/songusagedeleteform.py index ef40e69c3..02b064c24 100644 --- a/openlp/plugins/songusage/forms/songusagedeleteform.py +++ b/openlp/plugins/songusage/forms/songusagedeleteform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedetaildialog.py b/openlp/plugins/songusage/forms/songusagedetaildialog.py index c2ac38bc8..f4276ed79 100644 --- a/openlp/plugins/songusage/forms/songusagedetaildialog.py +++ b/openlp/plugins/songusage/forms/songusagedetaildialog.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/forms/songusagedetailform.py b/openlp/plugins/songusage/forms/songusagedetailform.py index 1a39b9fcf..5259f0dfd 100644 --- a/openlp/plugins/songusage/forms/songusagedetailform.py +++ b/openlp/plugins/songusage/forms/songusagedetailform.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/lib/__init__.py b/openlp/plugins/songusage/lib/__init__.py index a5551c569..f6250a6d3 100644 --- a/openlp/plugins/songusage/lib/__init__.py +++ b/openlp/plugins/songusage/lib/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/lib/db.py b/openlp/plugins/songusage/lib/db.py index dd4d851bd..20add7181 100644 --- a/openlp/plugins/songusage/lib/db.py +++ b/openlp/plugins/songusage/lib/db.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/lib/upgrade.py b/openlp/plugins/songusage/lib/upgrade.py index 18bfce251..c14d21214 100644 --- a/openlp/plugins/songusage/lib/upgrade.py +++ b/openlp/plugins/songusage/lib/upgrade.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/openlp/plugins/songusage/songusageplugin.py b/openlp/plugins/songusage/songusageplugin.py index 39046b89c..c9daffc8b 100644 --- a/openlp/plugins/songusage/songusageplugin.py +++ b/openlp/plugins/songusage/songusageplugin.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/__init__.py b/resources/__init__.py index 377413191..193021890 100644 --- a/resources/__init__.py +++ b/resources/__init__.py @@ -7,10 +7,11 @@ # Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/debian/Makefile b/resources/debian/Makefile deleted file mode 100644 index 1fe02b479..000000000 --- a/resources/debian/Makefile +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/make -f -# -*- makefile -*- - -build: - mkdir -p resources/i18n/qm - for TSFILE in resources/i18n/*.ts; do\ - lrelease-qt4 $$TSFILE -qm resources/i18n/qm/`basename $$TSFILE .ts`.qm;\ - done - -install: - mkdir -p $(DESTDIR)/usr/share/openlp/i18n - cd resources/i18n/qm && for QMFILE in*.qm; do\ - mv $QMFILE $(DESTDIR)/usr/share/openlp/i18n;\ - done - -clean: - rm -fR resources/i18n/qm diff --git a/resources/debian/debian/changelog b/resources/debian/debian/changelog deleted file mode 100644 index 1d22843f1..000000000 --- a/resources/debian/debian/changelog +++ /dev/null @@ -1,389 +0,0 @@ -openlp (1.9.4+bzr1355-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sun, 06 Mar 2011 00:10:03 -0500 - -openlp (1.9.4+bzr1355-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sun, 06 Mar 2011 00:07:03 -0500 - -openlp (1.9.4+bzr1355-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sun, 06 Mar 2011 00:05:27 -0500 - -openlp (1.9.4+bzr1355-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sun, 06 Mar 2011 00:03:17 -0500 - -openlp (1.9.4+bzr1350-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sat, 05 Mar 2011 00:08:15 -0500 - -openlp (1.9.4+bzr1350-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sat, 05 Mar 2011 00:06:40 -0500 - -openlp (1.9.4+bzr1350-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sat, 05 Mar 2011 00:05:09 -0500 - -openlp (1.9.4+bzr1350-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sat, 05 Mar 2011 00:03:14 -0500 - -openlp (1.9.4+bzr1347-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Fri, 04 Mar 2011 00:04:49 -0500 - -openlp (1.9.4+bzr1347-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Fri, 04 Mar 2011 00:04:15 -0500 - -openlp (1.9.4+bzr1347-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Fri, 04 Mar 2011 00:03:34 -0500 - -openlp (1.9.4+bzr1347-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Fri, 04 Mar 2011 00:02:43 -0500 - -openlp (1.9.4+bzr1344-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Thu, 03 Mar 2011 00:03:56 -0500 - -openlp (1.9.4+bzr1344-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Thu, 03 Mar 2011 00:03:30 -0500 - -openlp (1.9.4+bzr1344-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Thu, 03 Mar 2011 00:03:05 -0500 - -openlp (1.9.4+bzr1344-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Thu, 03 Mar 2011 00:02:26 -0500 - -openlp (1.9.4+bzr1342-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Tue, 01 Mar 2011 00:03:44 -0500 - -openlp (1.9.4+bzr1342-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Tue, 01 Mar 2011 00:03:28 -0500 - -openlp (1.9.4+bzr1342-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Tue, 01 Mar 2011 00:03:03 -0500 - -openlp (1.9.4+bzr1342-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Tue, 01 Mar 2011 00:02:28 -0500 - -openlp (1.9.4+bzr1341-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sun, 27 Feb 2011 00:04:05 -0500 - -openlp (1.9.4+bzr1341-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sun, 27 Feb 2011 00:03:48 -0500 - -openlp (1.9.4+bzr1341-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sun, 27 Feb 2011 00:03:20 -0500 - -openlp (1.9.4+bzr1341-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sun, 27 Feb 2011 00:02:34 -0500 - -openlp (1.9.4+bzr1337-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sat, 26 Feb 2011 00:04:02 -0500 - -openlp (1.9.4+bzr1337-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sat, 26 Feb 2011 00:03:44 -0500 - -openlp (1.9.4+bzr1337-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sat, 26 Feb 2011 00:03:18 -0500 - -openlp (1.9.4+bzr1337-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sat, 26 Feb 2011 00:02:32 -0500 - -openlp (1.9.4+bzr1332-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Fri, 25 Feb 2011 00:04:00 -0500 - -openlp (1.9.4+bzr1332-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Fri, 25 Feb 2011 00:03:41 -0500 - -openlp (1.9.4+bzr1332-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Fri, 25 Feb 2011 00:03:16 -0500 - -openlp (1.9.4+bzr1332-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Fri, 25 Feb 2011 00:02:36 -0500 - -openlp (1.9.4+bzr1328-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Thu, 24 Feb 2011 00:03:47 -0500 - -openlp (1.9.4+bzr1328-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Thu, 24 Feb 2011 00:03:31 -0500 - -openlp (1.9.4+bzr1328-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Thu, 24 Feb 2011 00:03:07 -0500 - -openlp (1.9.4+bzr1328-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Thu, 24 Feb 2011 00:02:28 -0500 - -openlp (1.9.4+bzr1324-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Wed, 23 Feb 2011 00:03:48 -0500 - -openlp (1.9.4+bzr1324-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Wed, 23 Feb 2011 00:03:33 -0500 - -openlp (1.9.4+bzr1324-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Wed, 23 Feb 2011 00:03:08 -0500 - -openlp (1.9.4+bzr1324-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Wed, 23 Feb 2011 00:02:28 -0500 - -openlp (1.9.4+bzr1322-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Tue, 22 Feb 2011 00:04:06 -0500 - -openlp (1.9.4+bzr1322-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Tue, 22 Feb 2011 00:03:52 -0500 - -openlp (1.9.4+bzr1322-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Tue, 22 Feb 2011 00:03:28 -0500 - -openlp (1.9.4+bzr1322-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Tue, 22 Feb 2011 00:02:42 -0500 - -openlp (1.9.4+bzr1320-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Mon, 21 Feb 2011 00:03:59 -0500 - -openlp (1.9.4+bzr1320-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Mon, 21 Feb 2011 00:03:45 -0500 - -openlp (1.9.4+bzr1320-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Mon, 21 Feb 2011 00:03:21 -0500 - -openlp (1.9.4+bzr1320-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Mon, 21 Feb 2011 00:02:41 -0500 - -openlp (1.9.4+bzr1316-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sun, 20 Feb 2011 05:32:08 -0500 - -openlp (1.9.4+bzr1316-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sun, 20 Feb 2011 05:31:51 -0500 - -openlp (1.9.4+bzr1316-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sun, 20 Feb 2011 05:31:28 -0500 - -openlp (1.9.4+bzr1316-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sun, 20 Feb 2011 05:30:49 -0500 - -openlp (1.9.4+bzr1315-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 16:24:12 -0500 - -openlp (1.9.4+bzr1315-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 16:23:51 -0500 - -openlp (1.9.4+bzr1315-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 16:23:28 -0500 - -openlp (1.9.4+bzr1315-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 16:22:49 -0500 - -openlp (1.9.4+bzr1314-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 15:35:36 -0500 - -openlp (1.9.4+bzr1314-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 15:35:21 -0500 - -openlp (1.9.4+bzr1314-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 15:34:53 -0500 - -openlp (1.9.4+bzr1314-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 15:34:10 -0500 - -openlp (1.9.4+bzr1313-0ubuntu1~natty1) natty; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 13:58:14 -0500 - -openlp (1.9.4+bzr1313-0ubuntu1~maverick1) maverick; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 13:57:40 -0500 - -openlp (1.9.4+bzr1313-0ubuntu1~lucid1) lucid; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 13:57:11 -0500 - -openlp (1.9.4+bzr1313-0ubuntu1~karmic1) karmic; urgency=low - - * Autobuild - - -- Sat, 19 Feb 2011 13:56:17 -0500 - -openlp (0.0.0+bzr664-0ubuntu1) karmic; urgency=low - - * Initial release - - -- Michael Gorven Fri, 06 Nov 2009 09:46:40 +0200 diff --git a/resources/debian/debian/compat b/resources/debian/debian/compat deleted file mode 100644 index 7ed6ff82d..000000000 --- a/resources/debian/debian/compat +++ /dev/null @@ -1 +0,0 @@ -5 diff --git a/resources/debian/debian/control b/resources/debian/debian/control deleted file mode 100644 index a00f5c86f..000000000 --- a/resources/debian/debian/control +++ /dev/null @@ -1,20 +0,0 @@ -Source: openlp -Section: python -Priority: extra -Maintainer: OpenLP Developers -Build-Depends: cdbs, debhelper (>= 5), python-setuptools, python-support, - python, qt4-dev-tools -Standards-Version: 3.8.3 -Homepage: http://openlp.org/ - -Package: openlp -Architecture: all -Depends: ${shlibs:Depends}, ${misc:Depends}, ${python:Depends}, python-qt4, - python-qt4-phonon, python-qt4-gl, python-sqlalchemy, python-chardet, - python-beautifulsoup, python-lxml, python-sqlite, python-enchant, - python-mako, python-migrate -Conflicts: python-openlp -Description: Church lyrics projection application - OpenLP is free church presentation software, or lyrics projection software, - used to display slides of songs, Bible verses, videos, images, and even - presentations for church worship using a computer and a data projector. diff --git a/resources/debian/debian/copyright b/resources/debian/debian/copyright deleted file mode 100644 index 54e52a356..000000000 --- a/resources/debian/debian/copyright +++ /dev/null @@ -1,10 +0,0 @@ -Format-Specification: http://wiki.debian.org/Proposals/CopyrightFormat -Upstream-Name: OpenLP -Upstream-Maintainer: OpenLP Developers -Upstream-Source: http://openlp.org/ - -Files: * -Copyright: (c) 2008-2009 Raoul Snyman -License: GPL-2 -X-Comment: On Debian GNU/Linux systems, the complete text of the - GPL-2 License can be found in /usr/share/common-licenses/GPL-2 diff --git a/resources/debian/debian/docs b/resources/debian/debian/docs deleted file mode 100644 index dfcaa10d3..000000000 --- a/resources/debian/debian/docs +++ /dev/null @@ -1 +0,0 @@ -documentation diff --git a/resources/debian/debian/openlp.install b/resources/debian/debian/openlp.install deleted file mode 100644 index 5ef4e79ce..000000000 --- a/resources/debian/debian/openlp.install +++ /dev/null @@ -1 +0,0 @@ -resources/openlp.desktop /usr/share/applications diff --git a/resources/debian/debian/pycompat b/resources/debian/debian/pycompat deleted file mode 100644 index 0cfbf0888..000000000 --- a/resources/debian/debian/pycompat +++ /dev/null @@ -1 +0,0 @@ -2 diff --git a/resources/debian/debian/pyversions b/resources/debian/debian/pyversions deleted file mode 100644 index b3dc41ebc..000000000 --- a/resources/debian/debian/pyversions +++ /dev/null @@ -1 +0,0 @@ -2.5- diff --git a/resources/debian/debian/rules b/resources/debian/debian/rules deleted file mode 100755 index c8fe91ecc..000000000 --- a/resources/debian/debian/rules +++ /dev/null @@ -1,21 +0,0 @@ -#!/usr/bin/make -f - -DEB_PYTHON_SYSTEM := pysupport -DEB_MAKE_BUILD_TARGET := build -DEB_MAKE_INSTALL_TARGET := install -DEB_MAKE_CLEAN_TARGET := clean - -include /usr/share/cdbs/1/rules/debhelper.mk -include /usr/share/cdbs/1/class/python-distutils.mk -include /usr/share/cdbs/1/class/makefile.mk - -binary-post-install/openlp:: - for SIZE in 16x16 32x32 48x48 64x64 128x128 256x256; do \ - mkdir -p debian/openlp/usr/share/icons/hicolor/$$SIZE/apps && \ - cp resources/images/openlp-logo-$$SIZE.png debian/openlp/usr/share/icons/hicolor/$$SIZE/apps/openlp.png; \ - done - - mkdir -p debian/openlp/usr/share/icons/hicolor/scalable/apps && \ - cp resources/images/openlp-logo.svg debian/openlp/usr/share/icons/hicolor/scalable/apps/openlp.svg - - cd debian/openlp/usr/bin/ && mv openlp.pyw openlp diff --git a/resources/fedora/191/OpenLP.spec b/resources/fedora/191/OpenLP.spec deleted file mode 100644 index 16c140ab8..000000000 --- a/resources/fedora/191/OpenLP.spec +++ /dev/null @@ -1,91 +0,0 @@ -%{!?python_sitelib:%global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")} - -Summary: Open source Church presentation and lyrics projection application -Name: OpenLP -Version: 1.9.1.1 -Release: 1%{?dist} -Source0: http://downloads.sourceforge.net/openlp/openlp/%{version}/%{name}-%{version}.tar.gz -License: GPLv2 -Group: Applications/Multimedia -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildArch: noarch - -URL: http://openlp.org/ - -BuildRequires: desktop-file-utils -BuildRequires: python2-devel -BuildRequires: python-setuptools - -Requires: PyQt4 -Requires: phonon -Requires: python-BeautifulSoup -Requires: python-chardet -Requires: python-lxml -Requires: python-sqlalchemy -Requires: hicolor-icon-theme - -%description -OpenLP is a church presentation software, for lyrics projection software, -used to display slides of Songs, Bible verses, videos, images, and -presentations (if OpenOffice.org is installed) using a computer and projector. - -%prep -%setup -q - -%build -python setup.py build - -%install -rm -rf %{buildroot} -python setup.py install --skip-build -O1 --root %{buildroot} - -install -m644 -p -D resources/images/openlp-logo-16x16.png \ - %{buildroot}%{_datadir}/icons/hicolor/16x16/apps/openlp.png -install -m644 -p -D resources/images/openlp-logo-32x32.png \ - %{buildroot}%{_datadir}/icons/hicolor/32x32/apps/openlp.png -install -m644 -p -D resources/images/openlp-logo-48x48.png \ - %{buildroot}%{_datadir}/icons/hicolor/48x48/apps/openlp.png -install -m644 -p -D resources/images/openlp-logo.svg \ - %{buildroot}%{_datadir}/icons/hicolor/scalable/apps/openlp.svg - -desktop-file-install \ - --dir %{buildroot}/%{_datadir}/applications \ - resources/openlp.desktop - -mv %{buildroot}%{_bindir}/bible-1to2-converter.py \ - %{buildroot}%{_bindir}/bible-1to2-converter -mv %{buildroot}%{_bindir}/openlp-1to2-converter.py \ - %{buildroot}%{_bindir}/openlp-1to2-converter -mv %{buildroot}%{_bindir}/openlp-remoteclient.py \ - %{buildroot}%{_bindir}/openlp-remoteclient -mv %{buildroot}%{_bindir}/openlp.pyw %{buildroot}%{_bindir}/openlp - - -%post -touch --no-create %{_datadir}/icons/hicolor ||: -gtk-update-icon-cache -q %{_datadir}/icons/hicolor 2> /dev/null ||: - -%postun -touch --no-create %{_datadir}/icons/hicolor ||: -gtk-update-icon-cache -q %{_datadir}/icons/hicolor 2> /dev/null ||: - - -%clean -rm -rf %{buildroot} - -%files -%defattr(-,root,root) -%doc copyright.txt LICENSE -%{_bindir}/bible-1to2-converter -%{_bindir}/openlp-1to2-converter -%{_bindir}/openlp-remoteclient -%{_bindir}/openlp -%{_datadir}/applications/openlp.desktop -%{_datadir}/icons/hicolor/*/apps/openlp.* -%{python_sitelib}/openlp/ -%{python_sitelib}/OpenLP-%{version}*.egg-info -%doc documentation/*.txt - -%changelog -* Sun Mar 28 2010 Tim Bentley 1.9.1.1 -- Initial build version - Alpha 1 Release diff --git a/resources/forms/about.ui b/resources/forms/about.ui index 4ef04a281..65e2207fe 100644 --- a/resources/forms/about.ui +++ b/resources/forms/about.ui @@ -299,7 +299,7 @@ This General Public License does not permit incorporating your program into prop Contribute - + :/system/system_contribute.png:/system/system_contribute.png diff --git a/resources/gentoo/openlp-1.9.4.ebuild b/resources/gentoo/openlp-1.9.4.ebuild deleted file mode 100644 index 4e87a27b3..000000000 --- a/resources/gentoo/openlp-1.9.4.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Copyright 2010 Jaak Ristioja -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -EAPI=2 -RESTRICT_PYTHON_ABIS="3.*" -inherit python - -DESCRIPTION="Free church presentation software" -HOMEPAGE="http://openlp.org/" -SRC_URI="mirror://sourceforge/${PN}/${PV}/OpenLP-${PV}-src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 x86-fbsd x86-freebsd amd64-linux x86-linux x86-macos x86-solaris" - -RDEPEND=">=dev-lang/python-2.5.0 - dev-python/beautifulsoup - dev-python/chardet - dev-python/lxml - dev-python/pyenchant - dev-python/PyQt4[X,multimedia] - dev-python/sqlalchemy" -DEPEND="${RDEPEND}" - -PYTHON_DEPEND="2:2.5" -PYTHON_MODNAME="openlp" - -S=${WORKDIR}/OpenLP-${PV}-src diff --git a/resources/i18n/af.ts b/resources/i18n/af.ts index acfe9eadb..82cd92aa4 100644 --- a/resources/i18n/af.ts +++ b/resources/i18n/af.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert W&aarskuwing - + Show an alert message. Vertoon 'n waarskuwing boodskap. - + Alert name singular Waarskuwing - + Alerts name plural Waarskuwings - + Alerts container title Waarskuwings - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Waarskuwing Mini-program</strong><br/>Die waarskuwing mini-program beheer die vertoning van moederskamer inligting op die vertoon skerm. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Waarskuwing Boodskap - + Alert &text: Waarskuwing &teks: - + &New &Nuwe - + &Save &Stoor - + Displ&ay V&ertoon - + Display && Cl&ose Vert&oon && Maak toe - + New Alert Nuwe Waarskuwing - + You haven't specified any text for your alert. Please type in some text before clicking New. Daar is geen teks vir die waarskuwing gespesifiseer nie. Tik asseblief teks in voordat 'n nuwe een bygevoeg word. - + &Parameter: &Parameter: - + No Parameter Found Geen Parameter Gevind nie - + You have not entered a parameter to be replaced. Do you want to continue anyway? Daar is nie 'n parameter gegee om te vervang nie. Gaan steeds voort? - + No Placeholder Found Geen Plekhouer Gevind nie - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Die attent-teks bevat nie '<>' nie. Gaan steeds voort? @@ -118,32 +119,32 @@ Gaan steeds voort? AlertsPlugin.AlertsTab - + Font Skrif - + Font name: Skrif naam: - + Font color: Skrif kleur: - + Background color: Agtergrond kleur: - + Font size: Skrif grootte: - + Alert timeout: Waarskuwing verstreke-tyd: @@ -151,510 +152,510 @@ Gaan steeds voort? BiblesPlugin - + &Bible &Bybel - + Bible name singular Bybel - + Bibles name plural Bybels - + Bibles container title Bybels - + No Book Found Geen Boek Gevind nie - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Geen passende boek kon in hierdie Bybel gevind word nie. Gaan na dat die naam van die boek korrek gespel is. - + Import a Bible. Voer 'n Bybel in. - + Add a new Bible. Voeg 'n nuwe Bybel by. - + Edit the selected Bible. Redigeer geselekteerde Bybel. - + Delete the selected Bible. Wis die geselekteerde Bybel uit. - + Preview the selected Bible. Voorskou die geselekteerde Bybel. - + Send the selected Bible live. Stuur die geselekteerde Bybel regstreeks. - + Add the selected Bible to the service. Voeg die geselekteerde Bybel by die diens. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bybel Mini-program</strong<br />Die Bybel mini-program verskaf die vermoë om Bybelverse vanaf verskillende bronne te vertoon tydens die diens. - + &Upgrade older Bibles &Opgradeer ouer Bybels - + Upgrade the Bible databases to the latest format. Opgradeer die Bybel databasisse na die nuutste formaat. - + Genesis Genesis - + Exodus Eksodus - + Leviticus Livitikus - + Numbers Numeri - + Deuteronomy Deuterononium - + Joshua Josua - + Judges Rigters - + Ruth Rut - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Konings - + 2 Kings 2 Konings - + 1 Chronicles 1 Kronieke - + 2 Chronicles 2 Kronieke - + Ezra Esra - + Nehemiah Nehemia - + Esther Ester - + Job Job - + Psalms Psalms - + Proverbs Spreuke van Salomo - + Ecclesiastes Prediker - + Song of Solomon Hooglied van Salomo - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klaagliedere van Jeremia - + Ezekiel Esegiël - + Daniel Daniël - + Hosea Hosea - + Joel Joël - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Miga - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Sefanja - + Haggai Haggai - + Zechariah Sagaria - + Malachi Maleagi - + Matthew Matteus - + Mark Markus - + Luke Lukas - + John Johannes - + Acts Handelinge - + Romans Romeine - + 1 Corinthians 1 Korintiërs - + 2 Corinthians 2 Korintiërs - + Galatians Galasiërs - + Ephesians Effesiërs - + Philippians Filippense - + Colossians Kolossense - + 1 Thessalonians 1 Tessalonisense - + 2 Thessalonians 2 Tessalonisense - + 1 Timothy 1 Timoteus - + 2 Timothy 2 Timoteus - + Titus Titus - + Philemon Filemon - + Hebrews Hebreërs - + James Jakobus - + 1 Peter 1 Petrus - + 2 Peter 2 Petrus - + 1 John 1 Johannes - + 2 John 2 Johannes - + 3 John 3 Johannes - + Jude Judas - + Revelation Openbaring - + Judith Judit - + Wisdom Wysheid van Salomo - + Tobit Tobit - + Sirach Sirag - + Baruch Barug - + 1 Maccabees 1 Makkabeërs - + 2 Maccabees 2 Makkabeërs - + 3 Maccabees 3 Makkabeërs - + 4 Maccabees 4 Makkabeërs - + Rest of Daniel Byvoegings tot Daniël - + Rest of Esther Byvoegings tot Ester - + Prayer of Manasses Gebed van Manasse - + Letter of Jeremiah Brief van Jeremia - + Prayer of Azariah Gebed van Asarja - + Susanna Susanna - + Bel Bel en die Draak - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verse|verses;;-|to;;,|and;;end @@ -663,32 +664,32 @@ Gaan steeds voort? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Dit is nodig dat 'n weergawe naam vir die Bybel gespesifiseer word. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 'n Kopiereg moet vir jou Bybel ingestel word. Bybels in die Publieke Domein moet sodanig gemerk word. - + Bible Exists Bybel Bestaan - + This Bible already exists. Please import a different Bible or first delete the existing one. Hierdie Bybel bestaan reeds. Voer asseblief 'n ander Bybel in, of wis eerstens die bestaande een uit. - + You need to specify a book name for "%s". 'n Boek naam moet vir "%s" gespesifiseer word. - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -698,12 +699,12 @@ en moet gevolg word deur een of meer nie-numeriese karrakters. - + Duplicate Book Name Duplikaat Boek Naam - + The Book Name "%s" has been entered more than once. Die Boek Naam "%s" is meer as een keer ingevoer. @@ -711,39 +712,39 @@ karrakters. BiblesPlugin.BibleManager - + Scripture Reference Error Skrif Verwysing Fout - + Web Bible cannot be used Web Bybel kan nie gebruik word nie - + Text Search is not available with Web Bibles. Teks Soektog is nie beskikbaar met Web Bybels nie. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Daar is nie 'n soek sleutelwoord ingevoer nie. Vir 'n soektog wat alle sleutelwoorde bevat, skei die woorde deur middel van 'n spasie. Vir 'n soektog wat een van die sleutelwoorde bevat, skei die woorde deur middel van 'n komma. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Huidig is daar geen Bybels geïnstalleer nie. Gebruik asseblief die Invoer Gids om een of meer Bybels te installeer. - + No Bibles Available Geeb Bybels Beskikbaar nie - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -766,79 +767,79 @@ Boek Hoofstuk%(verse)sVers%(range)sHoofstuk%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Vers Vertoning - + Only show new chapter numbers Vertoon net nuwe hoofstuk nommers - + Bible theme: Bybel tema: - + No Brackets Geen Hakkies - + ( And ) ( En ) - + { And } { En } - + [ And ] [ En ] - + Note: Changes do not affect verses already in the service. Nota: Veranderinge affekteer nie verse wat reeds in die diens is nie. - + Display second Bible verses Vertoon tweede Bybel se verse - + Custom Scripture References Aangepasde Skrifgedeelte Verwysing - + Verse Separator: Vers Verdeler: - + Range Separator: Reeks Verdeler: - + List Separator: Lys Verdeler: - + End Mark: End Merk: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -847,7 +848,7 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -856,7 +857,7 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -865,7 +866,7 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -874,29 +875,29 @@ Hulle moet geskei word deur 'n vertikale staaf "|". Maak asseblief hierdie redigeer lyn skoon om die verstek waarde te gebruik. - + English Engels - + Default Bible Language Verstek Bybel Taal - + Book name language in search field, search results and on display: Boek naam taal in soek veld, soek resultate en op die vertoning: - + Bible Language Bybel Taal - + Application Language Program Taal @@ -904,42 +905,42 @@ soek resultate en op die vertoning: BiblesPlugin.BookNameDialog - + Select Book Name Selekteer Boek Naam - + Current name: Huidige naam: - + Corresponding name: Ooreenstemmende naam: - + Show Books From Wys Boeke Van - + Old Testament Ou Testament - + New Testament Nuwe Testament - + Apocrypha Apokriewe - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Die volgende boek name kon nie intern gepas word nie. Kies asseblief die ooreenstemmende naam van die lys. @@ -947,7 +948,7 @@ soek resultate en op die vertoning: BiblesPlugin.BookNameForm - + You need to select a book. Kies asseblief 'n boek. @@ -955,18 +956,18 @@ soek resultate en op die vertoning: BiblesPlugin.CSVBible - + Importing books... %s Boek invoer... %s - + Importing verses from %s... Importing verses from <book name>... Vers invoer vanaf %s... - + Importing verses... done. Vers invoer... voltooi. @@ -974,69 +975,69 @@ soek resultate en op die vertoning: BiblesPlugin.EditBibleForm - + Bible Editor Bybel Redigeerder - + License Details Lisensie Besonderhede - + Version name: Weergawe naam: - + Copyright: Kopiereg: - + Permissions: Toestemming: - + Default Bible Language Verstek Bybel Taal - + Book name language in search field, search results and on display: Boek naam taal in soek veld, soek resultate en op die vertoning: - + Global Settings Globale Instellings - + Bible Language Bybel Taal - + Application Language Program Taal - + English Engels - + This is a Web Download Bible. It is not possible to customize the Book Names. Hierdie is 'n Web Aflaai Bybel. Dit is nie moontlik om die Boek Name aan te pas nie. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Om eie boek name te gebruik, "Bybel taal" moet in die Meta Data blad gekies wees, of wanneer "Globale instellings" geselekteer is, op die Bybel bladsy OpenLP Instelling. @@ -1044,38 +1045,38 @@ Dit is nie moontlik om die Boek Name aan te pas nie. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registreer Bybel en laai boeke... - + Registering Language... Taal registrasie... - + Importing %s... Importing <book name>... Voer %s in... - + Download Error Aflaai Fout - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie af te laai. Gaan die Internet konneksie na en as hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. - + Parse Error Ontleed Fout - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Daar was 'n probleem om die vers seleksie te onttrek. As hierdie probleem voortduur, oorweeg dit asseblief om 'n gogga te rapporteer. @@ -1253,17 +1254,17 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. BiblesPlugin.LanguageDialog - + Select Language Kies 'n Taal - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is nie in staat om die taal van hierdie vertaling Bybel te bepaal nie. Kies asseblief die taal van die lys hieronder. - + Language: Taal: @@ -1271,7 +1272,7 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. BiblesPlugin.LanguageForm - + You need to choose a language. Kies asseblief 'n taal. @@ -1279,92 +1280,92 @@ vraag afgelaai word en dus is 'n internet konneksie nodig. BiblesPlugin.MediaItem - + Quick Vinnig - + Find: Vind: - + Book: Boek: - + Chapter: Hoofstuk: - + Verse: Vers: - + From: Vanaf: - + To: Tot: - + Text Search Teks Soektog - + Second: Tweede: - + Scripture Reference Skrif Verwysing - + Toggle to keep or clear the previous results. Wissel om die vorige resultate te behou of te verwyder. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Enkel en dubbel Bybel-vers soek-resultate kan nie gekombineer word nie. Wis die resultate uit en begin 'n nuwe soektog? - + Bible not fully loaded. Die Bybel is nie ten volle gelaai nie. - + Information Informasie - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Die tweede Bybel het nie al die verse wat in die hoof Bybel is nie. Slegs verse wat in beide Bybels voorkom, sal gewys word. %d verse is nie by die resultate ingesluit nie. - + Search Scripture Reference... Soek Skriflesing Verwysing... - + Search Text... Soek Teks... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,7 +1377,7 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ongeldige Bybel lêer @@ -1384,7 +1385,7 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Invoer %s %s... @@ -1393,12 +1394,12 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Bepaal enkodering (dit mag 'n paar minuute neem)... - + Importing %s %s... Importing <book name> <chapter>... Invoer %s %s... @@ -1407,122 +1408,122 @@ Hierdie Bybel sal weer ingevoer moet word voordat dit gebruik geneem kan word. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Kies 'n Rugsteun Ligging - + Bible Upgrade Wizard Bybel Opgradeer Gids - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Hierdie gids sal help om die bestaande Bybels vanaf 'n vorige weergawe van OpenLP 2.0 op te gradeer. Kliek die volgende knoppie hier-onder om die opgradeer proses te begin. - + Select Backup Directory Kies Rugsteun Ligging - + Please select a backup directory for your Bibles Kies asseblief 'n rugsteun liging vir die Bybels - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Vorige weergawes van OpenLP 2.0 is nie in staat om opgegradeerde Bybels te gebruik nie. Hierdie sal 'n rugsteun van die bestaande Bybels maak sodat indien dit nodig is om terug te gaan na 'n vorige weergawe van OpenLP, die Bybels net terug gekopiër kan word. Instruksies oor hoe om lêers te herstel kan gevind word by ons <a href="http://wiki.openlp.org/faq">Gereelde Vrae</a>. - + Please select a backup location for your Bibles. Kies asseblief 'n rugsteun ligging vir die Bybels. - + Backup Directory: Rugsteun Ligging: - + There is no need to backup my Bibles Dit is nie nodig om die Bybels op te gradeer nie - + Select Bibles Kies Bybels - + Please select the Bibles to upgrade Kies asseblief die Bybels om op te gradeer - + Upgrading Opgradeer - + Please wait while your Bibles are upgraded. Wag asseblief terwyl die Bybels opgradeer word. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Die rugsteun was nie suksesvol nie. Om die Bybels op te gradeer word skryf-toestemming benodig vir die gegewe lêer. - + Upgrading Bible %s of %s: "%s" Failed Opgradeer Bybel %s van %s: "%s" Gevaal - + Upgrading Bible %s of %s: "%s" Upgrading ... Opgradeer Bybel %s van %s: "%s" Opgradeer ... - + Download Error Aflaai Fout - + To upgrade your Web Bibles an Internet connection is required. Om die Web Bybels op te gradeer is 'n Internet verbinding nodig. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Opgradeer Bybel %s van %s: "%s" Opgradering %s... - + Upgrading Bible %s of %s: "%s" Complete Opgradeer Bybel %s van %s: "%s" Volledig - + , %s failed , %s het gevaal - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Opgradeer Bybel(s): %s suksesvol %s @@ -1530,27 +1531,27 @@ Neem kennis dat verse van Web Bybels op aanvraag afgelaai word en dus is 'n Internet verbinding nodig. - + Upgrading Bible(s): %s successful%s Opgradeer Bybel(s): %s suksesvol %s - + Upgrade failed. Opgradeer het gevaal. - + You need to specify a backup directory for your Bibles. 'n Rugsteun Ligging moet vir die Bybels gespesifiseer word. - + Starting upgrade... Opgradering begin... - + There are no Bibles that need to be upgraded. Daar is geen Bybels wat opgradering benodig nie. @@ -1558,65 +1559,65 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Aanpas Skyfie Mini-program</strong><br/>Die aanpas syfie mini-program verskaf die vermoë om aangepasde teks skyfies op te stel wat in dieselfde manier gebruik word as die liedere mini-program. Dié mini-program verskaf grooter vryheid as die liedere mini-program. - + Custom Slide name singular Aangepasde Skyfie - + Custom Slides name plural Aangepasde Skyfies - + Custom Slides container title Aangepasde Skyfies - + Load a new custom slide. Laai 'n nuwe aangepasde skyfie. - + Import a custom slide. Voer 'n aangepasde skyfie in. - + Add a new custom slide. Voeg 'n nuwe aangepasde skyfie by. - + Edit the selected custom slide. Redigeer die geselekteerde aangepasde skyfie. - + Delete the selected custom slide. Wis die geselekteerde aangepasde skyfie uit. - + Preview the selected custom slide. Skou die geselekteerde aangepasde skyfie. - + Send the selected custom slide live. Stuur die geselekteerde aangepasde skuifie regstreeks. - + Add the selected custom slide to the service. Voeg die geselekteerde aangepasde skyfie by die diens. @@ -1624,12 +1625,12 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.CustomTab - + Custom Display Aangepasde Vertoning - + Display footer Vertoon voetspasie @@ -1637,62 +1638,62 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.EditCustomForm - + Edit Custom Slides Redigeer Aangepaste Skyfies - + &Title: &Titel: - + Add a new slide at bottom. Voeg nuwe skyfie by aan die onderkant. - + Edit the selected slide. Redigeer die geselekteerde skyfie. - + Edit all the slides at once. Redigeer al die skyfies tegelyk. - + Split a slide into two by inserting a slide splitter. Verdeel 'n skyfie deur 'n skyfie-verdeler te gebruik. - + The&me: Te&ma: - + &Credits: &Krediete: - + You need to type in a title. 'n Titel word benodig. - + You need to add at least one slide Ten minste een skyfie moet bygevoeg word - + Ed&it All Red&igeer Alles - + Insert Slide Voeg 'n Skyfie in @@ -1700,7 +1701,7 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.EditVerseForm - + Edit Slide Redigeer Skyfie @@ -1708,68 +1709,71 @@ word en dus is 'n Internet verbinding nodig. CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Wis sekerlik die %n gekose aangepasde skyfie uit?Wis sekerlik die %n gekose aangepasde skyfies uit? + + Wis sekerlik die %n gekose aangepasde skyfie uit? + Wis sekerlik die %n gekose aangepasde skyfies uit? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Beeld Mini-program</strong><br/>Die beeld mini-program verskaf vertoning van beelde.<br/>Een van die onderskeidende kenmerke van hierdie mini-program is die vermoë om beelde te groepeer in die diensbestuurder wat dit maklik maak om verskeie beelde te vertoon. Die mini-program kan ook van OpenLP se "tydgebonde herhaling"-funksie gebruik maak om 'n automatiese skyfe-vertoning te verkry. Verder kan beelde van hierdie mini-program gebruik word om die huidige tema se agtergrond te vervang hoewel 'n tema sy eie agtergrond het. - + Image name singular Beeld - + Images name plural Beelde - + Images container title Beelde - + Load a new image. Laai 'n nuwe beeld. - + Add a new image. Voeg 'n nuwe beeld by. - + Edit the selected image. Redigeer die geselekteerde beeld. - + Delete the selected image. Wis die geselekteerde beeld uit. - + Preview the selected image. Skou die geselekteerde beeld. - + Send the selected image live. Stuur die geselekteerde beeld regstreeks. - + Add the selected image to the service. Voeg die geselekteerde beeld by die diens. @@ -1777,7 +1781,7 @@ word en dus is 'n Internet verbinding nodig. ImagePlugin.ExceptionDialog - + Select Attachment Selekteer Aanhangsel @@ -1785,44 +1789,44 @@ word en dus is 'n Internet verbinding nodig. ImagePlugin.MediaItem - + Select Image(s) Selekteer beeld(e) - + You must select an image to delete. 'n Beeld om uit te wis moet geselekteer word. - + You must select an image to replace the background with. 'n Beeld wat die agtergrond vervang moet gekies word. - + Missing Image(s) Vermisde Beeld(e) - + The following image(s) no longer exist: %s Die volgende beeld(e) bestaan nie meer nie: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Die volgende beeld(e) bestaan nie meer nie: %s Voeg steeds die ander beelde by? - + There was a problem replacing your background, the image file "%s" no longer exists. Daar was 'n probleem om die agtergrond te vervang. Die beeld lêer "%s" bestaan ine meer nie. - + There was no display item to amend. Daar was geen vertoon item om by te voeg nie. @@ -1830,17 +1834,17 @@ Voeg steeds die ander beelde by? ImagesPlugin.ImageTab - + Background Color Agtergrond Kleur - + Default Color: Verstek Kleur: - + Visible background for images with aspect ratio different to screen. Visuele agtergrond vir beelde met 'n aspek verhouding wat verskil met dié van die skerm. @@ -1848,60 +1852,60 @@ Voeg steeds die ander beelde by? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Mini-program</strong><br/>Die media mini-program verskaf speel funksies van audio en video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Laai nuwe media. - + Add new media. Voeg nuwe media by. - + Edit the selected media. Redigeer di geselekteerde media. - + Delete the selected media. Wis die giselekteerde media uit. - + Preview the selected media. Skou die geselekteerde media. - + Send the selected media live. Stuur die geselekteerde media regstreeks. - + Add the selected media to the service. Voeg die geselekteerde media by die diens. @@ -1909,57 +1913,57 @@ Voeg steeds die ander beelde by? MediaPlugin.MediaItem - + Select Media Selekteer Media - + You must select a media file to delete. 'n Media lêer om uit te wis moet geselekteer word. - + You must select a media file to replace the background with. 'n Media lêer wat die agtergrond vervang moet gekies word. - + There was a problem replacing your background, the media file "%s" no longer exists. Daar was 'n probleem om die agtergrond te vervang. Die media lêer "%s" bestaan nie meer nie. - + Missing Media File Vermisde Media Lêer - + The file %s no longer exists. Die lêer %s bestaan nie meer nie. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Daar was geen vertoon item om by te voeg nie. - + Unsupported File Lêer nie Ondersteun nie - + Automatic Automaties - + Use Player: Gebruik Speler: @@ -1967,22 +1971,22 @@ Voeg steeds die ander beelde by? MediaPlugin.MediaTab - + Available Media Players Beskikbare Media Spelers - + %s (unavailable) %s (onbeskikbaar) - + Player Order Speler Orde - + Allow media player to be overridden Laat toe dat media speler oorheers word @@ -1990,17 +1994,17 @@ Voeg steeds die ander beelde by? OpenLP - + Image Files Beeld Lêers - + Information Informasie - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Krediete - + License Lisensie - - Contribute - Dra By - - - + build %s bou %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Hierdie program is gratis sagteware; dit kan verspei en/of verander word onder die terme van die GNU Algemene Publieke Lisensie soos deur die Gratis Sagteware Vondasie gepubliseer is; weergawe 2 van die Lisensie. - + This program 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 below for more details. Hierdie program word versprei in die hoop dat dit nuttig sal wees, maar SONDER ENIGE WAARBORG; sonder die geïmpliseerde waarborg van VERHANDELBAARHEID of GESKIKTHEID VIR 'N SPESIFIEKE DOEL. Sien hieronder vir meer inligting. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Kopiereg © 2004-2012 %s +Gedeeltelike kopiereg © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is gratis kerklike aanbieding of liedere projeksie sagteware, wat gebruik word om skyfies van liedere, Bybel verse, videos, beelde en selfs aanbiedinge (as Impress, PowerPoint of PowerPoint Viewer geïnstalleer is) te vertoon deur gebruik te maak van 'n rekenaar en 'n data projektor. + +Vind meer uit aangaande OpenLP: http://openlp.org/ + +OpenLP is geskryf en word onderhou deur vrywilligers. As jy meer gratis Christelike sagteware wil sien, oorweeg dit asseblief om ook vrywillig te wees deur die knoppie hieronder te gebruik. + + + + Volunteer + Vrywilliger + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2103,269 +2141,255 @@ Final Credit bring this software to you for free because He has set us free. Projek Leier - %s - + %s + Ontwikkelaars - %s + %s Bydraers - %s + %s Toetsers - %s + %s Verpakkers - %s + %s -Vertalers - Afrikaans (af) - %s - Duits (de) - %s - Engels, Verenigde Koningkryk (en_GB) - %s - Engels, Suid-Afrika (en_ZA) - %s - Estonian (et) - %s - Frans (fr) - %s - Hongaars (hu) - %s - Japanees (ja) - %s - Noors Bokmål (nb) - %s - Nederlands (nl) - %s - Portugees, Brazilië (pt_BR) - %s - Russies (ru) - %s +Vertalers +Afrikaans (af) + %s +Szech (cs) + %s +Deens (da) + %s +Duits (de) + %s +Grieks (el) + %s +Engels, Verenigde Koningkryk (en_GB) + %s +Engels, Suid-Afrika (en_ZA) + %s +Spaans (es) + %s +Estonian (et) + %s +Frans (fr) + %s +Hongaars (hu) + %s +Japanees (ja) + %s +Noors Bokmål (nb) + %s +Nederlands (nl) + %s +Portugees, Brazilië (pt_BR) + %s +Russies (ru) + %s +Sweeds (sv) + %s Dokumentasie - %s + %s +Gebou Met +Python: http://www.python.org/ +Qt4: http://qt.nokia.com/ +PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro +Oxygen Ikone: http://oxygen-icons.org/ -Gebou Met - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Ikone: http://oxygen-icons.org/ +Finale Krediet +"Want so lief het God die wêreld gehad, +dat Hy sy eniggebore Seun gegee het, +sodat elkeen wat in Hom glo, nie verlore +mag gaan nie, maar die ewige lewe kan +hê." -- Johannes 3:16 -Finale Krediet - "Want so lief het God die wêreld gehad, - dat Hy sy eniggebore Seun gegee het, sodat - elkeen wat in Hom glo, nie verlore mag gaan - nie, maar die ewige lewe kan hê." -- Johannes 3:16 - - En laaste maar nie die minste nie. Finale - krediet gaan aan God ons Vader, wat Sy - Seun vir ons gestuur het om aan die kruis - te sterf en ons vry te maak van sonde. Ons - bring hierdie sagteware gratis voort omdat - Hy ons vry gemaak het. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is gratis kerk aanbieding sagteware of lirieke projeksie sagteware wat gebruik word vir die vertoning van liedere, Bybel verse, video's, beelde tot ook aanbiedings (as Impress, PowerPoint of PowerPoint Viewer geïnstalleer is) vir kerklike aanbidding deur middel van 'n rekenaar en 'n data projektor. - -Vind meer uit oor OpenLP: http://openlp.org/ - -OpenLP is geskryf en word onderhou deur vrywilligers. As u graag wil sien dat meer Christelike sagteware geskryf word, oorweeg dit asseblief om by te dra deur die knoppie hieronder te gebruik. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Kopiereg © 2004-2012 %s -Gedeeltelike kopiereg © 2004-2012 %s +En laaste maar nie die minste nie. Finale +krediet gaan aan God ons Vader, wat Sy +Seun vir ons gestuur het om aan die kruis +te sterf en ons vry te maak van sonde. +Ons bring hierdie sagteware gratis voort +omdat Hy ons vry gemaak het. OpenLP.AdvancedTab - + UI Settings GK (UI) Verstellings - + Number of recent files to display: Hoeveelheid onlangse lêers om te vertoon: - + Remember active media manager tab on startup Onthou die laaste media bestuurder oortjie wanneer die program begin - + Double-click to send items straight to live Dubbel-kliek om die items regstreeks te stuur - + Expand new service items on creation Sit die nuwe diens items uit wanneer dit geskep word - + Enable application exit confirmation Stel die program in staat om die uitgang bevestiging te vertoon - + Mouse Cursor Muis Wyser - + Hide mouse cursor when over display window Steek die muis wyser weg wanneer dit oor die vertoon venster beweeg - + Default Image Verstek Beeld - + Background color: Agtergrond kleur: - + Image file: Beeld lêer: - + Open File Maak Lêer oop - + Advanced Gevorderd - + Preview items when clicked in Media Manager Skou items wanneer gekliek word in die Media Bestuurder - + Click to select a color. Kliek om 'n kleur te kies. - + Browse for an image file to display. Blaai vir 'n beeld lêer om te vertoon. - + Revert to the default OpenLP logo. Verander terug na die verstek OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Diens %Y-%m-%d %H-%M - + Default Service Name Verstek Diens Naam - + Enable default service name Laat verstek diens naam toe - + Date and Time: Datum en Tyd: - + Monday Maandag - + Tuesday Dinsdag - + Wednesday Woensdag - + Thurdsday Donderdag - + Friday Vrydag - + Saturday Saterdag - + Sunday Sondag - + Now Nou - + Time when usual service starts. Tyd wanneer gewone diens begin. - + Name: Naam: - + Consult the OpenLP manual for usage. Konsulteer die OpenLP handleiding vir gebruik. - + Revert to the default service name "%s". Herstel tot die verstek diens naam "%s". - + Example: Voorbeeld: - + X11 X11 @@ -2375,82 +2399,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Werk om X11 Venster Bestuurder - + Syntax error. Sintaks fout. - + Data Location Data Ligging - + Current path: Huidige pad: - + Custom path: Eie pad: - + Browse for new data file location. Blaai vir nuwe data lêer ligging. - + Set the data location to the default. Stel die data ligging na die verstek ligging. - + Cancel Kanselleer - + Cancel OpenLP data directory location change. Kanselleer OpenLP data lêer ligging verandering. - + Copy data to new location. Kopiër data na nuwe ligging. - + Copy the OpenLP data files to the new location. Kopiër die OpenLP data lêers na die nuwe ligging. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WAARSKUWING:</strong> Nuwe data lêer ligging bevat OpenLP data lêers. Hierdie lêers SAL vervang word gedurende kopiëring. - + Data Directory Error Data Lêer Fout - + Select Data Directory Location Selekteer Data Lêer Ligging - + Confirm Data Directory Change Bevestig Data Lêer Verandering - + Reset Data Directory Herstel Data Lêer - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2459,47 +2483,96 @@ This location will be used after OpenLP is closed. Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. - + Overwrite Existing Data Oorskryf Bestaande Data + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP data gids was nie gevind nie + +%s + +Hierdie data gids was voorheen verander vanaf die OpenLP verstek ligging. As die nuwe op verwyderbare media was, moet daardie media weer beskikbaar gemaak word. + +Kliek "Nee" om die laai van OpenLP te staak, en jou toe te laat om die probleem op te los. Kliek "Ja" om die data gids na die verstek ligging te herstel. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Verander die ligging van die OpenLP data gids sekerlik na: + +%s + +Die data gids sal verander word wanneer OpenLP toe gemaak word. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + WAARSKUWING: + +Die ligging wat gekies is + +%s + +blyk of dit OpenLP data lêers bevat. Wil jy graag hierdie lêers vervang met die huidige data lêers? + OpenLP.ExceptionDialog - + Error Occurred 'n Fout het opgeduik - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Oeps! OpenLP het 'n probleem ondervind en kon nie daarvanaf herstel nie. Die teks in die boks hieronder bevat inligting wat van hulp kan wees aan die OpenLP ontwikkelaars, so stuur dit asseblief per e-pos na bugs@openlp.org saam met 'n gedetaileerde beskrywing van wat gedoen was toe die probleem plaasgevind het. - + Send E-Mail Stuur E-pos - + Save to File Stoor na Lêer - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Voer asseblief 'n beskrywing in van waarmee jy besig was toe de probleem ontstaan het (Mimimum 20 karrakters) - + Attach File Heg 'n Lêer aan - + Description characters to enter : %s Beskrywende karakters om in te voer: %s @@ -2507,24 +2580,24 @@ Hierdie ligging sal gebruik word nadat OpenLP toegemaak is. OpenLP.ExceptionForm - + Platform: %s Platvorm: %s - + Save Crash Report Stoor Bots Verslag - + Text files (*.txt *.log *.text) Teks lêers (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2555,7 +2628,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2590,17 +2663,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Lêer Hernoem - + New File Name: Nuwe Lêer Naam: - + File Copy Lêer Kopieër @@ -2608,17 +2681,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Kies Vertaling - + Choose the translation you'd like to use in OpenLP. Kies die taal wat gebruik moet word in OpenLP. - + Translation: Vertaling: @@ -2626,192 +2699,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Liedere - + First Time Wizard Eerste Keer Gids - + Welcome to the First Time Wizard Welkom by die Eerste Keer Gids - + Activate required Plugins Aktiveer nodige Miniprogramme - + Select the Plugins you wish to use. Kies die Miniprogramme wat gebruik moet word. - + Bible Bybel - + Images Beelde - + Presentations Aanbiedinge - + Media (Audio and Video) Media (Klank en Video) - + Allow remote access Laat afgeleë toegang toe - + Monitor Song Usage Monitor Lied-Gebruik - + Allow Alerts Laat Waarskuwings Toe - + Default Settings Verstek Instellings - + Downloading %s... Aflaai %s... - + Download complete. Click the finish button to start OpenLP. Aflaai voltooi. Klik op die klaar knoppie om OpenLP te begin. - + Enabling selected plugins... Skakel geselekteerde miniprogramme aan... - + No Internet Connection Geen Internet Verbinding - + Unable to detect an Internet connection. Nie in staat om 'n Internet verbinding op te spoor nie. - + Sample Songs Voorbeeld Liedere - + Select and download public domain songs. Kies en laai liedere vanaf die publieke domein. - + Sample Bibles Voorbeeld Bybels - + Select and download free Bibles. Kies en laai gratis Bybels af. - + Sample Themes Voorbeeld Temas - + Select and download sample themes. Kies en laai voorbeeld temas af. - + Set up default settings to be used by OpenLP. Stel verstek instellings wat deur OpenLP gebruik moet word. - + Default output display: Verstek uitgaande vertoning: - + Select default theme: Kies verstek tema: - + Starting configuration process... Konfigurasie proses begin... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Hierdie gids sal bystand verleen in die proses om OpenLP op te stel vir eerste gebruik. Klik die volgende knoppie hieronder om die seleksie proses te begin. - + Setting Up And Downloading Opstel en Afliaai - + Please wait while OpenLP is set up and your data is downloaded. Wag asseblief terwyl OpenLP opgestel en die data afgelaai word. - + Setting Up Opstel - + Click the finish button to start OpenLP. Kliek die voltooi knoppie om OpenLP te begin. - + Download complete. Click the finish button to return to OpenLP. Aflaai voltooi. Klik op die klaar knoppie om na OpenLP terug te keer. - + Click the finish button to return to OpenLP. Kliek die voltooi knoppie om na OpenLP terug te keer. - + Custom Slides Aangepasde Skyfies - + Finish Eindig - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2820,7 +2893,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Om weer die Eerste Keer Gids te gebruik en hierdie voorbeeld data om 'n latere stadium in te voer, gaan jou Internet konneksie na en begin weer hierdie gids deur "Gereedskap/Eerste Keer Gids" vanaf OpenLP te begin. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2832,37 +2905,37 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.FormattingTagDialog - + Configure Formatting Tags Konfigureer Formattering Etiket - + Edit Selection Redigeer Seleksie - + Save Stoor - + Description Beskrywing - + Tag Etiket - + Start HTML Begin HTML - + End HTML Eindig HTML @@ -2870,32 +2943,32 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.FormattingTagForm - + Update Error Opdateer Fout - + Tag "n" already defined. Etiket "n" alreeds gedefinieër. - + New Tag Nuwe Etiket - + <HTML here> <HTML hier> - + </and here> </en hier> - + Tag %s already defined. Etiket %s alreeds gedefinieër. @@ -2903,82 +2976,82 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.FormattingTags - + Red Rooi - + Black Swart - + Blue Blou - + Yellow Geel - + Green Groen - + Pink Pienk - + Orange Oranje - + Purple Pers - + White Wit - + Superscript Bo-skrif - + Subscript Onder-skrif - + Paragraph Paragraaf - + Bold Vetdruk - + Italics Italiaans - + Underline Onderlyn - + Break Breek @@ -2986,122 +3059,122 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.GeneralTab - + General Algemeen - + Monitors Monitors - + Select monitor for output display: Selekteer monitor vir uitgaande vertoning: - + Display if a single screen Vertoon as dit 'n enkel skerm is - + Application Startup Applikasie Aanskakel - + Show blank screen warning Vertoon leë skerm waarskuwing - + Automatically open the last service Maak vanself die laaste diens oop - + Show the splash screen Wys die spatsel skerm - + Application Settings Program Verstellings - + Prompt to save before starting a new service Vra om te stoor voordat 'n nuwe diens begin word - + Automatically preview next item in service Wys voorskou van volgende item in diens automaties - + sec sek - + CCLI Details CCLI Inligting - + SongSelect username: SongSelect gebruikersnaam: - + SongSelect password: SongSelect wagwoord: - + X X - + Y Y - + Height Hoogte - + Width Wydte - + Check for updates to OpenLP Kyk vir opdaterings van OpenLP - + Unblank display when adding new live item Verwyder blanko vertoning wanneer 'n nuwe regstreekse item bygevoeg word - + Timed slide interval: Tyd-gedrewe skyfie interval: - + Background Audio Agtergrond Oudio - + Start background audio paused Begin agtergrond oudio gestop @@ -3111,12 +3184,12 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k Diens Item Skyfie Limiete - + Override display position: Oorheers vertoon ligging: - + Repeat track list Herhaal snit lys @@ -3144,12 +3217,12 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.LanguageManager - + Language Taal - + Please restart OpenLP to use your new language setting. Herlaai asseblief OpenLP om die nuwe taal instelling te gebruik. @@ -3157,7 +3230,7 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.MainDisplay - + OpenLP Display OpenLP Vertooning @@ -3165,287 +3238,287 @@ Om die Eerste Keer Gids heeltemal te kanselleer (en verhoed dat OpenLP begin), k OpenLP.MainWindow - + &File &Lêer - + &Import &Invoer - + &Export Uitvo&er - + &View &Bekyk - + M&ode M&odus - + &Tools &Gereedskap - + &Settings Ver&stellings - + &Language Taa&l - + &Help &Hulp - + Media Manager Media Bestuurder - + Service Manager Diens Bestuurder - + Theme Manager Tema Bestuurder - + &New &Nuwe - + &Open Maak &Oop - + Open an existing service. Maak 'n bestaande diens oop. - + &Save &Stoor - + Save the current service to disk. Stoor die huidige diens na skyf. - + Save &As... Stoor &As... - + Save Service As Stoor Diens As - + Save the current service under a new name. Stoor die huidige diens onder 'n nuwe naam. - + E&xit &Uitgang - + Quit OpenLP Sluit OpenLP Af - + &Theme &Tema - + &Configure OpenLP... &Konfigureer OpenLP... - + &Media Manager &Media Bestuurder - + Toggle Media Manager Wissel Media Bestuurder - + Toggle the visibility of the media manager. Wissel sigbaarheid van die media bestuurder. - + &Theme Manager &Tema Bestuurder - + Toggle Theme Manager Wissel Tema Bestuurder - + Toggle the visibility of the theme manager. Wissel sigbaarheid van die tema bestuurder. - + &Service Manager &Diens Bestuurder - + Toggle Service Manager Wissel Diens Bestuurder - + Toggle the visibility of the service manager. Wissel sigbaarheid van die diens bestuurder. - + &Preview Panel Voorskou &Paneel - + Toggle Preview Panel Wissel Voorskou Paneel - + Toggle the visibility of the preview panel. Wissel sigbaarheid van die voorskou paneel. - + &Live Panel Regstreekse Panee&l - + Toggle Live Panel Wissel Regstreekse Paneel - + Toggle the visibility of the live panel. Wissel sigbaarheid van die regstreekse paneel. - + &Plugin List Mini-&program Lys - + List the Plugins Lys die Mini-programme - + &User Guide Gebr&uikers Gids - + &About &Aangaande - + More information about OpenLP Meer inligting aangaande OpenLP - + &Online Help &Aanlyn Hulp - + &Web Site &Web Tuiste - + Use the system language, if available. Gebruik die sisteem se taal as dit beskikbaar is. - + Set the interface language to %s Verstel die koppelvlak taal na %s - + Add &Tool... Voeg Gereedskaps&tuk by... - + Add an application to the list of tools. Voeg 'n applikasie by die lys van gereedskapstukke. - + &Default &Verstek - + Set the view mode back to the default. Verstel skou modus terug na verstek modus. - + &Setup Op&stel - + Set the view mode to Setup. Verstel die skou modus na Opstel modus. - + &Live &Regstreeks - + Set the view mode to Live. Verstel die skou modus na Regstreeks. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3454,108 +3527,108 @@ You can download the latest version from http://openlp.org/. Die nuutste weergawe kan afgelaai word vanaf http://openlp.org/. - + OpenLP Version Updated OpenLP Weergawe is Opdateer - + OpenLP Main Display Blanked OpenLP Hoof Vertoning Blanko - + The Main Display has been blanked out Die Hoof Skerm is afgeskakel - + Default Theme: %s Verstek Tema: %s - + English Please add the name of your language here Afrikaans - + Configure &Shortcuts... Konfigureer Kor&tpaaie... - + Close OpenLP Mook OpenLP toe - + Are you sure you want to close OpenLP? Maak OpenLP sekerlik toe? - + Open &Data Folder... Maak &Data Lêer oop... - + Open the folder where songs, bibles and other data resides. Maak die lêer waar liedere, bybels en ander data is, oop. - + &Autodetect Spoor outom&aties op - + Update Theme Images Opdateer Tema Beelde - + Update the preview images for all themes. Opdateer die voorskou beelde vir alle temas. - + Print the current service. Druk die huidige diens. - + &Recent Files Onlangse Lêe&rs - + L&ock Panels Sl&uit Panele - + Prevent the panels being moved. Voorkom dat die panele rondgeskuif word. - + Re-run First Time Wizard Her-gebruik Eerste Keer Gids - + Re-run the First Time Wizard, importing songs, Bibles and themes. Her-gebruik die Eerste Keer Gids om liedere, Bybels en tema's in te voer. - + Re-run First Time Wizard? Her-gebruik Eerste Keer Gids? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3564,43 +3637,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Her-gebruik van hierdie gids mag veranderinge aan die huidige OpenLP konfigurasie aanbring en kan moontlik liedere byvoeg by die bestaande liedere lys en kan ook die verstek tema verander. - + Clear List Clear List of recent files Maak Lys Skoon - + Clear the list of recent files. Maak die lys van onlangse lêers skoon. - + Configure &Formatting Tags... Konfigureer &Formattering Etikette... - + Export OpenLP settings to a specified *.config file Voer OpenLP verstellings uit na 'n spesifieke *.config lêer - + Settings Verstellings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Voer OpenLP verstellings in vanaf 'n gespesifiseerde *.config lêer wat voorheen op hierdie of 'n ander masjien uitgevoer is - + Import settings? Voer verstellings in? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3613,50 +3686,77 @@ Deur verstellings in te voer, sal permanente veranderinge aan die huidige OpenLP As verkeerde verstellings ingevoer word, mag dit onvoorspelbare optrede tot gevolg hê, of OpenLP kan abnormaal termineer. - + Open File Maak Lêer oop - + OpenLP Export Settings Files (*.conf) OpenLP Uitvoer Verstelling Lêers (*.conf) - + Import settings Voer verstellings in - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sal nou toe maak. Ingevoerde verstellings sal toegepas word die volgende keer as OpenLP begin word. - + Export Settings File Voer Verstellings Lêer Uit - + OpenLP Export Settings File (*.conf) OpenLP Uitvoer Verstellings Lêer (*.conf) - + New Data Directory Error Nuwe Data Lêer Fout + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Die lêer wat gekies is blyk nie 'n geldige OpenLP instellings lêer te wees nie. + +Seksie [%s] is ongeldig. + +Verwerking is getermineer en verandering was gemaak nie. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + OpenLP data word na 'n nuwe data gids - %s - gekopiër. Wag asseblief totdat dit voltooi is. + + + + OpenLP Data directory copy failed + +%s + Kopiëring van OpenLP Data gids het gevaal + +%s + OpenLP.Manager - + Database Error Databasis Fout - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3665,7 +3765,7 @@ Database: %s Databasis: %s - + OpenLP cannot load your database. Database: %s @@ -3677,73 +3777,73 @@ Databasis: %s OpenLP.MediaManagerItem - + No Items Selected Geen item geselekteer nie - + &Add to selected Service Item &Voeg by die geselekteerde Diens item - + You must select one or more items to preview. Kies een of meer items vir die voorskou. - + You must select one or more items to send live. Kies een of meer items vir regstreekse uitsending. - + You must select one or more items. Kies een of meer items. - + You must select an existing service item to add to. 'n Bestaande diens item moet geselekteer word om by by te voeg. - + Invalid Service Item Ongeldige Diens Item - + You must select a %s service item. Kies 'n %s diens item. - + You must select one or more items to add. Kies een of meer items om by te voeg. - + No Search Results Geen Soek Resultate - + Invalid File Type Ongeldige Lêer Tipe - + Invalid File %s. Suffix not supported Ongeldige Lêer %s. Agtervoegsel nie ondersteun nie - + &Clone &Kloon - + Duplicate files were found on import and were ignored. Duplikaat lêers gevind tydens invoer en is geïgnoreer. @@ -3751,12 +3851,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> etiket is vermis. - + <verse> tag is missing. <verse> etiket is vermis. @@ -3764,42 +3864,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Mini-program Lys - + Plugin Details Mini-program Besonderhede - + Status: Status: - + Active Aktief - + Inactive Onaktief - + %s (Inactive) %s (Onaktief) - + %s (Active) %s (Aktief) - + %s (Disabled) %s (Onaktief) @@ -3807,12 +3907,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Pas Blaai - + Fit Width Pas Wydte @@ -3820,77 +3920,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options Opsies - + Copy Kopieër - + Copy as HTML Kopieër as HTML - + Zoom In Zoom In - + Zoom Out Zoem Uit - + Zoom Original Zoem Oorspronklike - + Other Options Ander Opsies - + Include slide text if available Sluit skyfie teks in indien beskikbaar - + Include service item notes Sluit diens item notas in - + Include play length of media items Sluit die speel tyd van die media items in - + Add page break before each text item Voeg 'n bladsy-breking voor elke teks item - + Service Sheet Diens Blad - + Print Druk - + Title: Titel: - + Custom Footer Text: Verpersoonlike Voetskrif Teks: @@ -3898,12 +3998,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Skerm - + primary primêr @@ -3911,12 +4011,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Begin</strong>: %s - + <strong>Length</strong>: %s <strong>Durasie</strong>: %s @@ -3924,7 +4024,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Hergroepeer Diens Item @@ -3932,287 +4032,298 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Skuif boon&toe - + Move item to the top of the service. Skuif item tot heel bo in die diens. - + Move &up Sk&uif op - + Move item up one position in the service. Skuif item een posisie boontoe in die diens. - + Move &down Skuif &af - + Move item down one position in the service. Skuif item een posisie af in die diens. - + Move to &bottom Skuif &tot heel onder - + Move item to the end of the service. Skuif item tot aan die einde van die diens. - + &Delete From Service Wis uit vanaf die &Diens - + Delete the selected item from the service. Wis geselekteerde item van die diens af. - + &Add New Item &Voeg Nuwe Item By - + &Add to Selected Item &Voeg by Geselekteerde Item - + &Edit Item R&edigeer Item - + &Reorder Item Ve&rander Item orde - + &Notes &Notas - + &Change Item Theme &Verander Item Tema - + OpenLP Service Files (*.osz) OpenLP Diens Lêers (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Lêer is nie 'n geldige diens nie. Die inhoud enkodering is nie UTF-8 nie. - + File is not a valid service. Lêer is nie 'n geldige diens nie. - + Missing Display Handler Vermisde Vertoon Hanteerder - + Your item cannot be displayed as there is no handler to display it Die item kan nie vertoon word nie omdat daar nie 'n hanteerder is om dit te vertoon nie - + Your item cannot be displayed as the plugin required to display it is missing or inactive Die item kan nie vertoon word nie omdat die mini-program wat dit moet vertoon vermis of onaktief is - + &Expand all Br&ei alles uit - + Expand all the service items. Brei al die diens items uit. - + &Collapse all Sto&rt alles ineen - + Collapse all the service items. Stort al die diens items ineen. - + Open File Maak Lêer oop - + Moves the selection down the window. Skuif die geselekteerde afwaarts in die venster. - + Move up Skuif op - + Moves the selection up the window. Skuif die geselekteerde opwaarts in die venster. - + Go Live Gaan Regstreeks - + Send the selected item to Live. Stuur die geselekteerde item Regstreeks. - + &Start Time &Begin Tyd - + Show &Preview Wys &Voorskou - + Modified Service Redigeer Diens - + The current service has been modified. Would you like to save this service? Die huidige diens was verander. Stoor hierdie diens? - + Custom Service Notes: Aangepasde Diens Notas: - + Notes: Notas: - + Playing time: Speel tyd: - + Untitled Service Ongetitelde Diens - + File could not be opened because it is corrupt. Lêer kon nie oopgemaak word nie omdat dit korrup is. - + Empty File Leë Lêer - + This service file does not contain any data. Die diens lêer het geen data inhoud nie. - + Corrupt File Korrupte Lêer - + Load an existing service. Laai 'n bestaande diens. - + Save this service. Stoor die diens. - + Select a theme for the service. Kies 'n tema vir die diens. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Die lêer is óf korrup óf is nie 'n OpenLP 2.0 diens lêer nie. - - Service File Missing - Diens Lêer Vermis - - - + Slide theme Skyfie tema - + Notes Notas - + Edit Redigeer - + Service copy only Slegs diens kopie. - + Error Saving File Fout gedurende Lêer Stooring - + There was an error saving your file. Daar was 'n probleem om die lêer te stoor. + + + Service File(s) Missing + Diens Lêer(s) Vermis + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Die volgende lêer(s) in die diens is vermis: +<byte value="x9"/>%s + +Hierdie lêers sal verwyder word as jy voortgaan om te stoor. + OpenLP.ServiceNoteForm - + Service Item Notes Diens Item Notas @@ -4220,7 +4331,7 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.SettingsForm - + Configure OpenLP Konfigureer OpenLP @@ -4228,67 +4339,67 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.ShortcutListDialog - + Action Aksie - + Shortcut Kortpad - + Duplicate Shortcut Duplikaat Kortpad - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Die kortpad "%s" is alreeds toegeken aan 'n ander aksie, kies asseblief 'n ander kortpad. - + Alternate Alternatief - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Kies 'n aksie en kliek een van die knoppies hieronder om 'n primêre of alternatiewe kortpad vas te vang. - + Default Verstek - + Custom Aanpasing - + Capture shortcut. Vang kortpad. - + Restore the default shortcut of this action. Stel die verstek kortpad terug vir hierdie aksie. - + Restore Default Shortcuts Herstel Verstek Kortpaaie - + Do you want to restore all shortcuts to their defaults? Herstel alle kortpaaie na hul verstek waarde? - + Configure Shortcuts Konfigureer Kortpaaie @@ -4296,172 +4407,172 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.SlideController - + Hide Verskuil - + Go To Gaan Na - + Blank Screen Blanko Skerm - + Blank to Theme Blanko na Tema - + Show Desktop Wys Werkskerm - + Previous Service Vorige Diens - + Next Service Volgende Diens - + Escape Item Ontsnap Item - + Move to previous. Skuif terug. - + Move to next. Skuif volgende. - + Play Slides Speel Skyfies - + Delay between slides in seconds. Vertraging tussen skyfies in sekondes. - + Move to live. Skuif na regstreeks. - + Add to Service. Voeg by Diens. - + Edit and reload song preview. Redigeer en herlaai lied voorskou. - + Start playing media. Begin media speel. - + Pause audio. Stop oudio. - + Pause playing media. Halt spelende media. - + Stop playing media. Stop spelende media. - + Video position. Video posisie. - + Audio Volume. Oudio Volume. - + Go to "Verse" Gaan na "Vers" - + Go to "Chorus" Gaan na "Koor" - + Go to "Bridge" Gaan na "Brug" - + Go to "Pre-Chorus" Gaan na "Pre-Koor" - + Go to "Intro" Gaan na "Inleiding" - + Go to "Ending" Gaan na "Einde" - + Go to "Other" Gaan na "Ander" - + Previous Slide Vorige Skyfie - + Next Slide Volgende Skyfie - + Pause Audio Hou Oudio - + Background Audio Agtergrond Oudio - + Go to next audio track. Gaan na die volgende oudio snit. - + Tracks Snitte @@ -4469,17 +4580,17 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Voorstelle - + Formatting Tags Uitleg Hakkies - + Language: Taal: @@ -4487,615 +4598,627 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.StartTimeForm - + Hours: Ure: - + Minutes: Minute: - + Seconds: Sekondes: - + Item Start and Finish Time Item Begin en End Tyd - + Start Begin - + Finish Eindig - + Length Lengte - + Time Validation Error Tyd Validasie Fout - + Finish time is set after the end of the media item End tyd is na die einde van die media item gestel - + Start time is after the finish time of the media item Begin tyd is na die eind tyd van die media item - + Theme Layout Tema Uitleg - + The blue box shows the main area. Die blou boks wys die hoof area. - + The red box shows the footer. Die rooi boks wys die voet area. - - OpenLP.ThemeForm - - - Select Image - Selekteer Beeld - - - - Theme Name Missing - Tema Naam Vermis - - - - There is no name for this theme. Please enter one. - Daar is nie 'n naam vir hierdie tema nie. Voer asseblief een in. - - - - Theme Name Invalid - Tema Naam Ongeldig - - - - Invalid theme name. Please enter one. - Ongeldige tema naam. Voer asseblief een in. - - - - (approximately %d lines per slide) - (ongeveer %d lyne per skyfie) - - OpenLP.ThemeManager - + Create a new theme. Skep 'n nuwe tema. - + Edit Theme Redigeer Tema - + Edit a theme. Redigeer 'n tema. - + Delete Theme Wis Tema Uit - + Delete a theme. Wis 'n tema uit. - + Import Theme Voer Tema In - + Import a theme. Voer 'n tema in. - + Export Theme Voer Tema Uit - + Export a theme. Voer 'n tema uit. - + &Edit Theme R&edigeer Tema - + &Delete Theme &Wis Tema uit - + Set As &Global Default Stel in As &Globale Standaard - + %s (default) %s (standaard) - + You must select a theme to edit. Kies 'n tema om te redigeer. - + You are unable to delete the default theme. Die standaard tema kan nie uitgewis word nie. - + Theme %s is used in the %s plugin. Tema %s is in gebruik deur die %s mini-program. - + You have not selected a theme. Geen tema is geselekteer nie. - + Save Theme - (%s) Stoor Tema - (%s) - + Theme Exported Tema Uitvoer - + Your theme has been successfully exported. Die tema was suksesvol uitgevoer. - + Theme Export Failed Tema Uitvoer het Misluk - + Your theme could not be exported due to an error. Die tema kon nie uitgevoer word nie weens 'n fout. - + Select Theme Import File Kies Tema Invoer Lêer - + File is not a valid theme. Lêer is nie 'n geldige tema nie. - + &Copy Theme &Kopieër Tema - + &Rename Theme He&rnoem Tema - + &Export Theme Vo&er Tema uit - + You must select a theme to rename. Kies 'n tema om te hernoem. - + Rename Confirmation Hernoem Bevestiging - + Rename %s theme? Hernoem %s tema? - + You must select a theme to delete. Kies 'n tema om uit te wis. - + Delete Confirmation Uitwis Bevestiging - + Delete %s theme? Wis %s tema uit? - + Validation Error Validerings Fout - + A theme with this name already exists. 'n Tema met hierdie naam bestaan alreeds. - + OpenLP Themes (*.theme *.otz) OpenLP Temas (*.theme *.otz) - + Copy of %s Copy of <theme name> Duplikaat van %s - + Theme Already Exists Tema Bestaan Reeds + + + Theme %s already exists. Do you want to replace it? + Tema %s bestaan alreeds. Wil jy dit vervang? + OpenLP.ThemeWizard - + Theme Wizard Tema Gids - + Welcome to the Theme Wizard Welkom by die Tema Gids - + Set Up Background Stel die Agtergrond Op - + Set up your theme's background according to the parameters below. Stel jou tema se agtergrond op volgens die parameters hier onder. - + Background type: Agtergrond tipe: - + Solid Color Soliede Kleur - + Gradient Gradiënt - + Color: Kleur: - + Gradient: Gradiënt: - + Horizontal Horisontaal - + Vertical Vertikaal - + Circular Sirkelvormig - + Top Left - Bottom Right Links Bo - Regs Onder - + Bottom Left - Top Right Links Onder - Regs Bo - + Main Area Font Details Hoof Area Skrif Gegewens - + Define the font and display characteristics for the Display text Definieër die skrif en vertoon karrakters vir die Vertoon teks - + Font: Skrif: - + Size: Grootte: - + Line Spacing: Lyn Spasiëring: - + &Outline: &Buitelyn: - + &Shadow: &Skaduwee: - + Bold Vetdruk - + Italic Italiaans - + Footer Area Font Details Voetskrif Area Skrif Gegewens - + Define the font and display characteristics for the Footer text Definieër die skrif en vertoon karraktereienskappe vir die Voetskrif teks - + Text Formatting Details Teks Formattering Gegewens - + Allows additional display formatting information to be defined Laat toe dat addisionele vertoon formattering inligting gedifinieër word - + Horizontal Align: Horisontale Sporing: - + Left Links - + Right Regs - + Center Middel - + Output Area Locations Uitvoer Area Liggings - + Allows you to change and move the main and footer areas. Laat toe dat die hoof en voetskrif areas verander en geskuif word. - + &Main Area &Hoof Area - + &Use default location Gebr&uik verstek ligging - + X position: X posisie: - + px px - + Y position: Y posisie: - + Width: Wydte: - + Height: Hoogte: - + Use default location Gebruik verstek ligging - + Theme name: Tema naam: - + Edit Theme - %s Redigeer Tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Hierdie gids sal help om temas te skep en te redigeer. Klik die volgende knoppie hieronder om die proses te begin deur jou agtergrond op te stel. - + Transitions: Oorskakel effekte: - + &Footer Area &Voetskrif Area - + Starting color: Begin Kleur: - + Ending color: Eind Kleur: - + Background color: Agtergrond kleur: - + Justify Uitsgespan - + Layout Preview Uitleg Voorskou - + Transparent Deurskynend - + Preview and Save Skou en Stoor - + Preview the theme and save it. Skou die tema en stoor dit. + + + (approximately %d lines per slide) + (ongeveer %d lyne per skyfie) + + + + Background Image Empty + Leë Agtergrond Beeld + + + + You have not selected a background image. Please select one before continuing. + 'n Agtergrond beeld is nie gekies nie. Kies asseblief een voor jy aangaan. + + + + Select Image + Selekteer Beeld + + + + Theme Name Missing + Tema Naam Vermis + + + + There is no name for this theme. Please enter one. + Daar is geen naam vir hierdie tema nie. Voer asseblief een in. + + + + Theme Name Invalid + Tema Naam Ongeldig + + + + Invalid theme name. Please enter one. + Ongeldige tema naam. Voer asseblief een in. + OpenLP.ThemesTab - + Global Theme Globale Tema - + Theme Level Tema Vlak - + S&ong Level Lied Vl&ak - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Gebruik die tema van elke lied in die lied-databasis. As 'n lied nie 'n geassosieërde tema het nie, gebruik die diens se tema. As die diens nie 'n tema het nie, gebruik dan die globale tema. - + &Service Level Dien&s Vlak - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Gebruik die tema van die diens en verplaas enige van die individuele liedere se temas. As die diens nie 'n tema het nie, gebruik dan die globale tema. - + &Global Level &Globale Vlak - + Use the global theme, overriding any themes associated with either the service or the songs. Gebruik die globale tema om enige temas wat met die diens of liedere geassosieer is te vervang. - + Themes Temas @@ -5103,315 +5226,315 @@ Die inhoud enkodering is nie UTF-8 nie. OpenLP.Ui - + Error Fout - + About Aangaande - + &Add &Voeg by - + Advanced Gevorderd - + All Files Alle Lêers - + Bottom Onder - + Browse... Deursoek... - + Cancel Kanselleer - + CCLI number: CCLI nommer: - + Create a new service. Skep 'n nuwe diens. - + &Delete &Wis Uit - + &Edit R&edigeer - + Empty Field Leë Veld - + Export Uitvoer - + pt Abbreviated font pointsize unit pt - + Image Beeld - + Import Voer in - + Live Regstreeks - + Live Background Error Regstreekse Agtergrond Fout - + Load Laai - + Middle Middel - + New Nuwe - + New Service Nuwe Diens - + New Theme Nuwe Tema - + No File Selected Singular Geen Lêer Geselekteer nie - + No Files Selected Plural Geen Leêrs Geselekteer nie - + No Item Selected Singular Geen Item Geselekteer nie - + No Items Selected Plural Geen items geselekteer nie - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Voorskou - + Replace Background Vervang Agtergrond - + Reset Background Herstel Agtergrond - + s The abbreviated unit for seconds s - + Save && Preview Stoor && Voorskou - + Search Soek - + You must select an item to delete. Kies 'n item om uit te wis. - + You must select an item to edit. Selekteer 'n item om te regideer. - + Save Service Stoor Diens - + Service Diens - + Start %s Begin %s - + Theme Singular Tema - + Themes Plural Temas - + Top Bo - + Version Weergawe - + Delete the selected item. Wis die geselekteerde item uit. - + Move selection up one position. Skuif die seleksie een posisie op. - + Move selection down one position. Skuif die seleksie een posisie af. - + &Vertical Align: &Vertikale Sporing: - + Finished import. Invoer voltooi. - + Format: Formaat: - + Importing Invoer - + Importing "%s"... "%s" ingevoer... - + Select Import Source Selekteer Invoer Bron - + Select the import format and the location to import from. Selekteer die invoer vormaat en die ligging vanwaar invoer geskied. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Die openlp.org 1.x invoerder is onaktief gestel weens 'n vermisde Python module. Om van hierdie invoerder gebruik te maak moet die "python-sqlite" module installeer word. - + Open %s File Maak %s Lêer Oop - + %p% %p% - + Ready. Gereed. - + Starting import... Invoer begin... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Spesifiseer ten minste een %s lêer om vanaf in te voer. @@ -5422,299 +5545,304 @@ Die inhoud enkodering is nie UTF-8 nie. Welkom by die Bybel Invoer Gids - + Welcome to the Song Export Wizard Welkom by die Lied Uitvoer Gids - + Welcome to the Song Import Wizard Welkom by die Lied Invoer Gids - + Author Singular Outeur - + Authors Plural Outeure - - © + + © Copyright symbol. © - + Song Book Singular Lied Boek - + Song Books Plural Lied Boeke - + Song Maintenance Lied Onderhoud - + Topic Singular Onderwerp - + Topics Plural Onderwerpe - + Continuous Aaneen-lopend - + Default Verstek - + Display style: Vertoon styl: - + Duplicate Error Dupliseer Fout - + File Lêer - + Help Hulp - + h The abbreviated unit for hours h - + Layout style: Uitleg styl: - + Live Toolbar Regstreekse Gereedskapsbalk - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP is reeds ana die gang. Gaan voort? - + Settings Verstellings - + Tools Gereedskap - + Unsupported File Lêer nie Ondersteun nie - + Verse Per Slide Vers Per Skyfie - + Verse Per Line Vers Per Lyn - + View Vertoon - + Title and/or verses not found Titel en/of verse nie gevind - + XML syntax error XML sintaks fout - + View Mode Vertoon Modus - + Open service. Maak 'n diens oop. - + Print Service Druk Diens uit - + Replace live background. Vervang regstreekse agtergrond. - + Reset live background. Herstel regstreekse agtergrond. - + Split a slide into two only if it does not fit on the screen as one slide. Verdeel 'n skyfie slegs in twee wanneer dit nie op die skerm as 'n enkele skyfie sal pas nie. - + Welcome to the Bible Upgrade Wizard Welkom by die Bybel Opgradeer Gids - + Confirm Delete Bevesting Uitwissing - + Play Slides in Loop Speel Skyfies in Herhaling - + Play Slides to End Speel Skyfies tot Einde - + Stop Play Slides in Loop Staak Skyfies in Herhaling - + Stop Play Slides to End Staak Skyfies tot Einde - + Next Track Volgende Snit - + Search Themes... Search bar place holder text Soek Temas... - + Optional &Split Op&sionele Verdeling - + Invalid Folder Selected Singular Ongeldige Gids Geselekteer - + Invalid File Selected Singular Ongeldige Lêer Geselekteer - + Invalid Files Selected Plural Ongeldige Lêer Geselekteer - + No Folder Selected Singular Geen Gids Geselekteer nie - + Open %s Folder Maak %s Gids Oop - + You need to specify one %s file to import from. A file type e.g. OpenSong Een %s lêer moet gespesifiseer word om vanaf in te voer. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Een %s gids moet gespesifiseer word om vanaf in te voer. + + + Importing Songs + Voer Liedere In + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 en %2 - + %1, and %2 Locale list separator: end %1, en %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5723,50 +5851,50 @@ Die inhoud enkodering is nie UTF-8 nie. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Aanbieding Mini-program</strong><br/>Die aanbieding mini-program bied die vermoë om aanbiedings van verskillende programme te vertoon. Die keuse van beskikbare aanbieding-programme word aan die gebruiker vertoon deur 'n hangkieslys. - + Presentation name singular Aanbieding - + Presentations name plural Aanbiedinge - + Presentations container title Aanbiedinge - + Load a new presentation. Laai 'n nuwe aanbieding. - + Delete the selected presentation. Wis die geselekteerde aanbieding uit. - + Preview the selected presentation. Skou die geselekteerde aanbieding. - + Send the selected presentation live. Stuur die geselekteerde aanbieding regstreeks. - + Add the selected presentation to the service. Voeg die geselekteerde aanabieding by die diens. @@ -5774,52 +5902,52 @@ Die inhoud enkodering is nie UTF-8 nie. PresentationPlugin.MediaItem - + Select Presentation(s) Selekteer Aanbieding(e) - + Automatic Outomaties - + Present using: Bied aan met: - + File Exists Lêer Bestaan Reeds - + A presentation with that filename already exists. 'n Aanbieding met daardie lêernaam bestaan reeds. - + This type of presentation is not supported. Hierdie tipe aanbieding word nie ondersteun nie. - + Presentations (%s) Aanbiedinge (%s) - + Missing Presentation Vermisde Aanbieding - + The presentation %s is incomplete, please reload. Die aanbieding %s is onvolledig, herlaai asseblief. - + The presentation %s no longer exists. Die aanbieding %s bestaan nie meer nie. @@ -5827,17 +5955,17 @@ Die inhoud enkodering is nie UTF-8 nie. PresentationPlugin.PresentationTab - + Available Controllers Beskikbare Beheerders - + %s (unavailable) %s (nie beskikbaar nie) - + Allow presentation application to be overridden Laat toe dat die program oorheers word @@ -5845,24 +5973,24 @@ Die inhoud enkodering is nie UTF-8 nie. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Afgeleë Mini-program</strong><br/>Die afgeleë mini-program verskaf die vermoë om boodskappe na 'n lopende weergawe van OpenLP op 'n ander rekenaar te stuur deur 'n web-blaaier of deur die afgeleë PPK (API). - + Remote name singular Afstandbeheer - + Remotes name plural Afstandbehere - + Remote container title Afstandbeheer @@ -5871,236 +5999,246 @@ Die inhoud enkodering is nie UTF-8 nie. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Afgelië - + OpenLP 2.0 Stage View OpenLP 2.0 Verhoog Aansig - + Service Manager Diens Bestuurder - + Slide Controller Skyfie Beheerder - + Alerts Waarskuwings - + Search Soek - + Refresh Verfris - + Blank Blanko - + Show Wys - + Prev Vorige - + Next Volgende - + Text Teks - + Show Alert Wys Waarskuwing - + Go Live Gaan Regstreeks - + No Results Geen Resultate - + Options Opsies - + Add to Service Voeg By Diens - + Home Tuis - + Theme Tema - + Desktop Werkskerm - + Add &amp; Go to Service Voeg by &amp; Gaan na Diens + + + Service + Diens + + + + Slides + Skyfies + RemotePlugin.RemoteTab - + Serve on IP address: Bedien op hierdie IP adres: - + Port number: Poort nommer: - + Server Settings Bediener Verstellings - + Remote URL: Afgeleë URL: - + Stage view URL: Verhoog vertoning URL: - + Display stage time in 12h format Vertoon verhoog tyd in 12 uur formaat - + Android App Android Program - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Skandeer die QR kode of kliek <a href="https://market.android.com/details?id=org.openlp.android">aflaai</a> om die Android program vanaf die Mark af te laai. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Tas die QR kode af of kliek <a href="https://play.google.com/store/apps/details?id=org.openlp.android">aflaai</a> om die Android program vanaf Google Play te installeer. SongUsagePlugin - + &Song Usage Tracking &Volg Lied Gebruik - + &Delete Tracking Data Wis Volg &Data Uit - + Delete song usage data up to a specified date. Wis lied volg data uit tot en met 'n spesifieke datum. - + &Extract Tracking Data Onttr&ek Volg Data - + Generate a report on song usage. Genereer 'n verslag oor lied-gebruik. - + Toggle Tracking Wissel Volging - + Toggle the tracking of song usage. Wissel lied-gebruik volging. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>LiedGebruik Mini-program</strong><br/>Die mini-program volg die gebruik van liedere in dienste. - + SongUsage name singular Lied Gebruik - + SongUsage name plural Lied Gebruik - + SongUsage container title Lied Gebruik - + Song Usage Lied Gebruik - + Song usage tracking is active. Lied gebruik volging is aktief. - + Song usage tracking is inactive. Lied gebruik volging is onaktief. - + display vertoon - + printed gedruk @@ -6108,32 +6246,32 @@ Die inhoud enkodering is nie UTF-8 nie. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Wis Lied Gebruik Data Uit - + Delete Selected Song Usage Events? Wis Geselekteerde Lied Gebruik Gebeure uit? - + Are you sure you want to delete selected Song Usage data? Wis regtig die geselekteerde Diens Gebruik data uit? - + Deletion Successful Uitwissing Suksesvol - + All requested data has been deleted successfully. Al die gevraagde data is suksesvol uitgewis. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selekteer die datum tot waarop die liedere gebruik uitgewis moet word. Alle opgeneemde data voor hierdie datum sal permanent verwyder word. @@ -6141,42 +6279,42 @@ Die inhoud enkodering is nie UTF-8 nie. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Diens Gebruik Ontrekking - + Select Date Range Selekteer Datum Grense - + to tot - + Report Location Rapporteer Ligging - + Output File Location Uitvoer Lêer Ligging - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation Verslag Skepping - + Report %s has been successfully created. @@ -6185,12 +6323,12 @@ has been successfully created. was suksesvol geskep. - + Output Path Not Selected Skryf Ligging Nie Gekies Nie - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Daar is nie 'n geldige skryf ligging gespesifiseer vir die lied-gebruik verslag nie. Kies asseblief 'n bestaande pad op die rekenaar. @@ -6198,112 +6336,112 @@ was suksesvol geskep. SongsPlugin - + &Song &Lied - + Import songs using the import wizard. Voer liedere in deur van die invoer helper gebruik te maak. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Liedere Mini-program</strong><br/>Die liedere mini-program verskaf die vermoë om liedere te vertoon en te bestuur. - + &Re-index Songs He&r-indeks Liedere - + Re-index the songs database to improve searching and ordering. Her-indeks die liedere databasis om lied-soektogte en organisering te verbeter. - + Reindexing songs... Besig om liedere indek te herskep... - + Arabic (CP-1256) Arabies (CP-1256) - + Baltic (CP-1257) Balties (CP-1257) - + Central European (CP-1250) Sentraal Europees (CP-1250) - + Cyrillic (CP-1251) Cyrillies (CP-1251) - + Greek (CP-1253) Grieks (CP-1253) - + Hebrew (CP-1255) Hebreeus (CP-1255) - + Japanese (CP-932) Japanees (CP-932) - + Korean (CP-949) Koreaans (CP-949) - + Simplified Chinese (CP-936) Vereenvoudigde Chinees (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Tradisionele Chinees (CP-950) - + Turkish (CP-1254) Turks (CP-1254) - + Vietnam (CP-1258) Viëtnamees (CP-1258) - + Western European (CP-1252) Wes-Europees (CP-1252) - + Character Encoding Karrakter Enkodering - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6313,100 +6451,105 @@ Gewoonlik is die reeds-geselekteerde keuse voldoende. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Kies asseblief die karrakter enkodering. Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. - + Song name singular Lied - + Songs name plural Liedere - + Songs container title Liedere - + Exports songs using the export wizard. Voer liedere uit deur gebruik te maak van die uitvoer gids. - + Add a new song. Voeg 'n nuwe lied by. - + Edit the selected song. Redigeer die geselekteerde lied. - + Delete the selected song. Wis die geselekteerde lied uit. - + Preview the selected song. Skou die geselekteerde lied. - + Send the selected song live. Stuur die geselekteerde lied regstreeks. - + Add the selected song to the service. Voeg die geselekteerde lied by die diens. + + + Reindexing songs + Her-indekseer liedere + SongsPlugin.AuthorsForm - + Author Maintenance Outeur Onderhoud - + Display name: Vertoon naam: - + First name: Voornaam: - + Last name: Van: - + You need to type in the first name of the author. U moet die naam van die skrywer invul. - + You need to type in the last name of the author. U moet ten minste die skrywer se naam invoer. - + You have not set a display name for the author, combine the first and last names? 'n Vertoon naam vir die skrywer is nie opgestel nie. Kan die naam en van gekombineer word? @@ -6414,7 +6557,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Die lêer het nie 'n geldige verlening nie. @@ -6422,12 +6565,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.EasyWorshipSongImport - + Administered by %s Toegedien deur %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6439,12 +6582,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Eie Boek Name @@ -6452,207 +6595,202 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.EditSongForm - + Song Editor Lied Redigeerder - + &Title: &Titel: - + Alt&ernate title: Alt&ernatiewe titel: - + &Lyrics: &Lirieke: - + &Verse order: &Vers orde: - + Ed&it All Red&igeer Alles - + Title && Lyrics Titel && Lirieke - + &Add to Song &Voeg by Lied - + &Remove Ve&rwyder - + &Manage Authors, Topics, Song Books &Bestuur Skrywers, Onderwerpe en Lied Boeke - + A&dd to Song Voeg by Lie&d - + R&emove V&erwyder - + Book: Boek: - + Number: Nommer: - + Authors, Topics && Song Book Skrywers, Onderwerpe && Lied Boek - + New &Theme Nuwe &Tema - + Copyright Information Kopiereg Informasie - + Comments Kommentaar - + Theme, Copyright Info && Comments Tema, Kopiereg Informasie && Kommentaar - + Add Author Voeg Skrywer By - + This author does not exist, do you want to add them? Hierdie skrywer bestaan nie, moet die skrywer bygevoeg word? - + This author is already in the list. Hierdie skrywer is alreeds in die lys. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Die geselekteerde skrywer is ongeldig. Kies 'n skrywer vanaf die lys of voer 'n nuwe skrywer in en kliek op die "Voeg Skrywer by Lied" knoppie om die skrywer by te voeg. - + Add Topic Voeg Onderwerp by - + This topic does not exist, do you want to add it? Die onderwerp bestaan nie. Voeg dit by? - + This topic is already in the list. Die onderwerp is reeds in die lys. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Geselekteerde onderwerp is ongeldig. Kies 'n onderwerp vanaf die lys of voer 'n nuwe onderwerp in en kliek die "Voeg Onderwerp by Lied" knoppie om die onderwerp by te voeg. - + You need to type in a song title. Tik 'n lied titel in. - + You need to type in at least one verse. Ten minste een vers moet ingevoer word. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Die vers orde is ongeldig. Daar is geen vers wat ooreenstem met %s nie. Geldige opsies is %s. - + Add Book Voeg Boek by - + This song book does not exist, do you want to add it? Die lied boek bestaan nie. Voeg dit by? - + You need to have an author for this song. Daar word 'n outeur benodig vir hierdie lied. - - You need to type some text in to the verse. - Daar word teks benodig vir die vers. - - - + Linked Audio Geskakelde Oudio - + Add &File(s) &Voeg Leêr(s) By - + Add &Media Voeg &Media By - + Remove &All Verwyder &Alles - + Open File(s) Maak Lêer(s) Oop - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Waarskuwing:</strong> Nie al die verse is in gebruik nie. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Die vers orde is ongeldig. Daar is geen verse wat ooreenstem met %s nie. Geldige inskrywings is %s. @@ -6660,22 +6798,22 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.EditVerseForm - + Edit Verse Redigeer Vers - + &Verse type: &Vers tipe: - + &Insert Sit Tussen-&in - + Split a slide into two by inserting a verse splitter. Verdeel 'n skyfie in twee deur 'n vers-verdeler in te sit. @@ -6683,82 +6821,82 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.ExportWizardForm - + Song Export Wizard Lied Uitvoer Gids - + Select Songs Kies Liedere - + Check the songs you want to export. Merk die liediere wat uitgevoer moet vord. - + Uncheck All Merk Alles Af - + Check All Merk Alles Aan - + Select Directory Kies Lêer-gids - + Directory: Lêer Gids: - + Exporting Uitvoer - + Please wait while your songs are exported. Wag asseblief terwyl die liedere uitgevoer word. - + You need to add at least one Song to export. Ten minste een lied moet bygevoeg word om uit te voer. - + No Save Location specified Geen Stoor Ligging gespesifiseer nie - + Starting export... Uitvoer begin... - + You need to specify a directory. 'n Lêer gids moet gespesifiseer word. - + Select Destination Folder Kies Bestemming Lêer gids - + Select the directory where you want the songs to be saved. Kies die gids waar die liedere gestoor moet word. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Hierdie gids sal help om die liedere na die oop en gratis <strong>OpenLyrics</strong> aanbiddigs-formaat uit te voer. @@ -6766,172 +6904,172 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selekteer Dokument/Aanbieding Lêers - + Song Import Wizard Lied Invoer Gids - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Hierdie gids help met die invoer van liedere in verskillende formate. Kliek die volgende knoppie hieronder om die proses te begin deur 'n formaat te kies wat gebruik moet word vir invoer. - + Generic Document/Presentation Generiese Dokumentasie/Aanbieding - + Add Files... Voeg Lêers by... - + Remove File(s) Verwyder Lêer(s) - + Please wait while your songs are imported. Wag asseblief terwyl die liedere ingevoer word. - + OpenLP 2.0 Databases OpenLP 2.0 Databasisse - + openlp.org v1.x Databases openlp.org v1.x Databasisse - + Words Of Worship Song Files Words Of Worship Lied Lêers - + Songs Of Fellowship Song Files Songs Of Fellowship Lied Lêers - + SongBeamer Files SongBeamer Lêers - + SongShow Plus Song Files SongShow Plus Lied Lêers - + Foilpresenter Song Files Foilpresenter Lied Lêers - + Copy Kopieër - + Save to File Stoor na Lêer - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die Liedere van Volgelinge invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Die generiese dokument/aanbieding invoerder is onaktief gestel omdat OpenLP nie toegang tot OpenOffice of LibreOffice het nie. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics of OpenLP 2.0 Uitgevoerde Lied - + OpenLyrics Files OpenLyrics Lêers - + CCLI SongSelect Files CCLI SongSelect Lêers - + EasySlides XML File EeasySlides XML Lêer - + EasyWorship Song Database EasyWorship Lied Databasis - + DreamBeam Song Files DreamBeam Lied Lêers - + You need to specify a valid PowerSong 1.0 database folder. 'n Geldige PowerSong 1.0 databasis gids moet gespesifiseer word. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Verwerk eers jou ZionWorx databasis na 'n CSV teks lêer, soos verduidelik word in die <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Gebruikers Handleiding</a>. - + SundayPlus Song Files SundayPlus Lied Leêrs - + This importer has been disabled. Hierdie invoerder is onaktief gestel. - + MediaShout Database MediaShout Databasis - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Die MediaShout invoerder word slegs ondersteun op Windows. Dit is vanweë 'n vermiste Python module, gedeaktiveer. As jy hierdie invoerder wil gebruik, sal jy die "pyodbc" module moet installeer. - + SongPro Text Files SongPro Teks Leêrs - + SongPro (Export File) SongPro (Voer Leêr uit) - + In SongPro, export your songs using the File -> Export menu In SongPro, voer liedere uit deur middel van die Leêr -> Uitvoer spyskaart @@ -6939,12 +7077,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.MediaFilesForm - + Select Media File(s) Selekteer Media Lêer(s) - + Select one or more audio files from the list below, and click OK to import them into this song. Selekteer een of meer oudio lêers van die lys hieronder, en kliek OK om hulle na hierdie lied in te voer. @@ -6952,63 +7090,66 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.MediaItem - + Titles Titels - + Lyrics Lirieke - + CCLI License: CCLI Lisensie: - + Entire Song Volledige Lied - + Are you sure you want to delete the %n selected song(s)? - Wis regtig die %n geselekteerde lied uit?Wis regtig die %n geselekteerde liedere uit? + + Wis regtig die %n geselekteerde lied uit? + Wis regtig die %n geselekteerde liedere uit? + - + Maintain the lists of authors, topics and books. Onderhou die lys van skrywers, onderwerpe en boeke. - + copy For song cloning kopieër - + Search Titles... Soek Titels... - + Search Entire Song... Soek deur hele Lied... - + Search Lyrics... Soek Lirieke... - + Search Authors... Soek Outeure... - + Search Song Books... Soek Lied Boeke... @@ -7016,7 +7157,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Die MediaShout databasis kan nie oopgemaak word nie. @@ -7024,7 +7165,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Nie 'n geldige openlp.org 1.x lied databasis. @@ -7032,7 +7173,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Nie 'n geldige OpenLP 2.0 lied databasis. @@ -7040,7 +7181,7 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Uitvoer "%s"... @@ -7048,35 +7189,55 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.PowerSongImport - + No songs to import. Geen liedere om in te voer nie. - + Verses not found. Missing "PART" header. Verse nie gevind nie. Vermis "PART" opskrif. + + + No %s files found. + Geen %s lêers gevind nie. + + + + Invalid %s file. Unexpected byte value. + Ongeldige %s lêer. Onverwagse greep waarde. + + + + Invalid %s file. Missing "TITLE" header. + Ongeldige %s lêer. Vermis "TITLE" hofie. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Ongeldige %s lêer. Vermis "COPYRIGHTLINE" hofie. + SongsPlugin.SongBookForm - + Song Book Maintenance Lied Boek Onderhoud - + &Name: &Naam: - + &Publisher: &Uitgewer: - + You need to type in a name for the book. 'n Naam vir die boek moet ingevoer word. @@ -7084,12 +7245,12 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.SongExportForm - + Your song export failed. Die lied uitvoer het misluk. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Uitvoer voltooi. Om hierdie lêers in te voer, gebruik die <strong>OpenLyrics</strong> invoerder. @@ -7097,27 +7258,27 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.SongImport - + copyright kopiereg - + The following songs could not be imported: Die volgende liedere kon nie ingevoer word nie: - + Cannot access OpenOffice or LibreOffice Het nie toegang tot OpenOffice of LibreOffice nie - + Unable to open file Kan nie lêer oopmaak nie - + File not found Lêer nie gevind nie @@ -7125,107 +7286,107 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.SongMaintenanceForm - + Could not add your author. Skrywer kon nie bygevoeg word nie. - + This author already exists. Die skrywer bestaan reeds. - + Could not add your topic. Onderwerp kon nie bygevoeg word nie. - + This topic already exists. Hierdie onderwerp bestaan reeds. - + Could not add your book. Boek kon nie bygevoeg word nie. - + This book already exists. Hierdie boek bestaan reeds. - + Could not save your changes. Veranderinge kon nie gestoor word nie. - + Could not save your modified author, because the author already exists. Geredigeerde skrywer kon nie gestoor word nie, omdat die skrywer reeds bestaan. - + Could not save your modified topic, because it already exists. Geredigeerde onderwerp kon nie gestoor word nie, want dit bestaan alreeds. - + Delete Author Wis Skrywer Uit - + Are you sure you want to delete the selected author? Wis die geselekteerde skrywer uit? - + This author cannot be deleted, they are currently assigned to at least one song. Die skrywer kan nie uitgewis word nie, omdat die skrywer aan ten minste een lied toegeken is. - + Delete Topic Wis Onderwerp Uit - + Are you sure you want to delete the selected topic? Wis die geselekteerde onderwerp uit? - + This topic cannot be deleted, it is currently assigned to at least one song. Die onderwerp kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. - + Delete Book Wis Boek Uit - + Are you sure you want to delete the selected book? Wis die geselekteerde boek uit? - + This book cannot be deleted, it is currently assigned to at least one song. Die boek kan nie uitgewis word nie, omdat dit aan ten minste een lied toegeken is. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Die outeur %s bestaan alreeds. Moet liedere met die outeur %s die bestaande outeur %s gebruik? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Die onderwerp %s bestaan alreeds. Moet liedere met die onderwerp %s die bestaande onderwerp %s gebruik? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Die boek %s bestaan reeds. Moed liedere met die doek %s gebruik maak van bestaande boek %s? @@ -7233,27 +7394,27 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.SongsTab - + Songs Mode Liedere Modus - + Enable search as you type Bekragtig soek soos getik word - + Display verses on live tool bar Vertoon verse op regstreekse gereedskap staaf - + Update service from song edit Opdateer diens van lied-redigering - + Import missing songs from service files Voer vermisde liedere in vanaf diens lêers @@ -7261,17 +7422,17 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.TopicsForm - + Topic Maintenance Onderwerp Onderhoud - + Topic name: Onderwerp naam: - + You need to type in a topic name. 'n Onderwerp naam moet ingevoer word. @@ -7279,37 +7440,37 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.VerseType - + Verse Vers - + Chorus Koor - + Bridge Brug - + Pre-Chorus Voor-Refrein - + Intro Inleiding - + Ending Slot - + Other Ander @@ -7317,14 +7478,29 @@ Die enkodering is verantwoordelik vir die korrekte karrakter voorstelling. SongsPlugin.ZionWorxImport - + Error reading CSV file. Probleem om CSV lêer te lees. - + File not valid ZionWorx CSV format. Lêer nie geldige ZionWorx CSV formaat nie. + + + Line %d: %s + Lyn %d: %s + + + + Decoding error: %s + Dekodering fout: %s + + + + Record %d + Opname %d + - \ No newline at end of file + diff --git a/resources/i18n/cs.ts b/resources/i18n/cs.ts index 4da140d1f..99e13671f 100644 --- a/resources/i18n/cs.ts +++ b/resources/i18n/cs.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Upozornění - + Show an alert message. Zobrazit vzkaz upozornění. - + Alert name singular Upozornění - + Alerts name plural Upozornění - + Alerts container title Upozornění - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Modul upozornění</strong><br />Modul upozornění umožňuje zobrazovat různé hlášky a upozornění na zobrazovací obrazovce. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Vzkaz upozornění - + Alert &text: &Text upozornění: - + &New &Nový - + &Save &Uložit - + Displ&ay &Zobrazit - + Display && Cl&ose Zobrazit a za&vřít - + New Alert Nové upozornění - + You haven't specified any text for your alert. Please type in some text before clicking New. Nebyl zadán žádný text upozornění. Před klepnutím na Nový prosím zadejte nějaký text. - + &Parameter: &Parametr: - + No Parameter Found Parametr nenalezen - + You have not entered a parameter to be replaced. Do you want to continue anyway? Nebyl zadán žádný parametr pro nahrazení. Chcete přesto pokračovat? - + No Placeholder Found Zástupný znak nenalezen - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornění neobsahuje '<>'. Chcete přesto pokračovat? @@ -118,32 +119,32 @@ Chcete přesto pokračovat? AlertsPlugin.AlertsTab - + Font Písmo - + Font name: Název písma: - + Font color: Barva písma: - + Background color: Barva pozadí: - + Font size: Velikost písma: - + Alert timeout: Čas vypršení upozornění: @@ -151,510 +152,510 @@ Chcete přesto pokračovat? BiblesPlugin - + &Bible &Bible - + Bible name singular Bible - + Bibles name plural Více Biblí - + Bibles container title Bible - + No Book Found Kniha nenalezena - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. V Bibli nebyla nalezena odpovídající kniha. Prověřte, že název knihy byl zadán správně. - + Import a Bible. Import Bible. - + Add a new Bible. Přidat novou Bibli. - + Edit the selected Bible. Upravit vybranou Bibli. - + Delete the selected Bible. Smazat vybranou Bibli. - + Preview the selected Bible. Náhled vybrané Bible. - + Send the selected Bible live. Zobrazit vybranou Bibli naživo. - + Add the selected Bible to the service. Přidat vybranou Bibli ke službě. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Modul Bible</strong><br />Modul Bible umožňuje během služby zobrazovat verše z různých zdrojů. - + &Upgrade older Bibles &Aktualizovat starší Bibles - + Upgrade the Bible databases to the latest format. Povýšit databáze Bible na nejnovější formát. - + Genesis 1. Mojžíšova - + Exodus 2. Mojžíšova - + Leviticus 3. Mojžíšova - + Numbers 4. Mojžíšova - + Deuteronomy 5. Mojžíšova - + Joshua Jozue - + Judges Soudců - + Ruth Rút - + 1 Samuel 1. Samuelova - + 2 Samuel 2. Samuelova - + 1 Kings 1. Královská - + 2 Kings 2. Královská - + 1 Chronicles 1. Paralipomenon - + 2 Chronicles 2. Paralipomenon - + Ezra Ezdráš - + Nehemiah Nehemjáš - + Esther Ester - + Job Jób - + Psalms Žalmy - + Proverbs Přísloví - + Ecclesiastes Kazatel - + Song of Solomon Píseň písní - + Isaiah Izajáš - + Jeremiah Jeremjáš - + Lamentations Pláč - + Ezekiel Ezechiel - + Daniel Daniel - + Hosea Ozeáš - + Joel Jóel - + Amos Ámos - + Obadiah Abdijáš - + Jonah Jonáš - + Micah Micheáš - + Nahum Nahum - + Habakkuk Abakuk - + Zephaniah Sofonjáš - + Haggai Ageus - + Zechariah Zacharjáš - + Malachi Malachiáš - + Matthew Matouš - + Mark Marek - + Luke Lukáš - + John Jan - + Acts Skutky apoštolské - + Romans Římanům - + 1 Corinthians 1. Korintským - + 2 Corinthians 2. Korintským - + Galatians Galatským - + Ephesians Efezským - + Philippians Filipským - + Colossians Koloským - + 1 Thessalonians 1. Tesalonickým - + 2 Thessalonians 2. Tesalonickým - + 1 Timothy 1. Timoteovi - + 2 Timothy 2. Timoteovi - + Titus Titovi - + Philemon Filemonovi - + Hebrews Židům - + James List Jakubův - + 1 Peter 1. list Petrův - + 2 Peter 2. list Petrův - + 1 John 1. list Janův - + 2 John 2. list Janův - + 3 John 3. list Janův - + Jude List Judův - + Revelation Zjevení Janovo - + Judith Júdit - + Wisdom Kniha moudrosti - + Tobit Tobijáš - + Sirach Sírachovec - + Baruch Báruk - + 1 Maccabees 1. Makabejská - + 2 Maccabees 2. Makabejská - + 3 Maccabees 3. Makabejská - + 4 Maccabees 4. Makabejská - + Rest of Daniel Zbytek Daniele - + Rest of Esther Zbytek Ester - + Prayer of Manasses Modlitba Manasese - + Letter of Jeremiah Jeremiášův Dopis - + Prayer of Azariah Modlitba Azarjáše - + Susanna Zuzana - + Bel Bel - + 1 Esdras 1. Ezdrášova - + 2 Esdras 2. Ezdrášova - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verse|verses;;-|to;;,|and;;end @@ -663,32 +664,32 @@ Chcete přesto pokračovat? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Je nutno uvést název verze Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. K Bibli je potřeba nastavit autorská práva. Bible, které jsou volná díla (Public Domain), je nutno takto označit. - + Bible Exists Bible existuje - + This Bible already exists. Please import a different Bible or first delete the existing one. Tato Bible už existuje. Importujte prosím jinou Bibli nebo nejdříve smažte tu existující. - + You need to specify a book name for "%s". Je nutno uvést název knihy pro "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ be followed by one or more non-numeric characters. následovat jeden nebo více nečíslných znaků. - + Duplicate Book Name Duplicitní název knihy - + The Book Name "%s" has been entered more than once. "%s" jako název knihy byl zadán více než jednou. @@ -710,39 +711,39 @@ následovat jeden nebo více nečíslných znaků. BiblesPlugin.BibleManager - + Scripture Reference Error Chyba v odkazu do Bible - + Web Bible cannot be used Bibli z www nelze použít - + Text Search is not available with Web Bibles. Hledání textu není dostupné v Bibli z www. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nebylo zadáno slovo pro hledání. K hledání textu obsahující všechna slova je nutno tato slova oddělit mezerou. Oddělením slov čárkou se bude hledat text obsahující alespoň jedno ze zadaných slov. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Žádné Bible nejsou nainstalovány. K p?idání jedné nebo více Biblí prosím použijte Pr?vodce importem. - + No Bibles Available Žádné Bible k dispozici - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Kniha Kapitola%(verse)sVerš%(range)sKapitola%(verse)sVerš BiblesPlugin.BiblesTab - + Verse Display Zobrazit verš - + Only show new chapter numbers Zobrazit jen číslo nové kapitoly - + Bible theme: Motiv Bible: - + No Brackets Žádné závorky - + ( And ) ( A ) - + { And } { A } - + [ And ] [ A ] - + Note: Changes do not affect verses already in the service. Poznámka: Verše, které jsou už ve službě, nejsou změnami ovlivněny. - + Display second Bible verses Zobrazit druhé verše z Bible - + Custom Scripture References Uživatelské odkazy z Bible - + Verse Separator: Oddělovač veršů: - + Range Separator: Oddělovač rozsahů: - + List Separator: Oddělovač seznamů: - + End Mark: Ukončovací značka: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ Musí být odděleny vislou čárou "|". Pro použití výchozí hodnoty smažte tento řádek. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ Musí být odděleny vislou čárou "|". Pro použití výchozí hodnoty smažte tento řádek. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ Musí být odděleny vislou čárou "|". Pro použití výchozí hodnoty smažte tento řádek. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ Musí být odděleny vislou čárou "|". Pro použití výchozí hodnoty smažte tento řádek. - + English Čeština - + Default Bible Language Výchozí jazyk Bible - + Book name language in search field, search results and on display: Jazyk názvů knih ve vyhledávacím poli, výsledcích vyhledávání a při zobrazení: - + Bible Language Jazyk Bible - + Application Language Jazyk aplikace @@ -903,42 +904,42 @@ výsledcích vyhledávání a při zobrazení: BiblesPlugin.BookNameDialog - + Select Book Name Vybrat název knihy - + Current name: Současný název: - + Corresponding name: Odpovídající název: - + Show Books From Zobrazit knihy od - + Old Testament Starý zákon - + New Testament Nový zákon - + Apocrypha Apokryfy - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Pro následující název knihy není odpovídající vnitřní název. Vyberte prosím odpovídající název ze seznamu. @@ -946,7 +947,7 @@ výsledcích vyhledávání a při zobrazení: BiblesPlugin.BookNameForm - + You need to select a book. Je potřeba vybrat knihu. @@ -954,18 +955,18 @@ výsledcích vyhledávání a při zobrazení: BiblesPlugin.CSVBible - + Importing books... %s Importuji knihy... %s - + Importing verses from %s... Importing verses from <book name>... Importuji verše z %s... - + Importing verses... done. Importuji verše... hotovo. @@ -973,69 +974,69 @@ výsledcích vyhledávání a při zobrazení: BiblesPlugin.EditBibleForm - + Bible Editor Editor Bible - + License Details Podrobnosti k licenci - + Version name: Název verze: - + Copyright: Autorská práva: - + Permissions: Povolení: - + Default Bible Language Výchozí jazyk Bible - + Book name language in search field, search results and on display: Jazyk názvů knih ve vyhledávacím poli, výsledcích vyhledávání a při zobrazení: - + Global Settings Globální nastavení - + Bible Language Jazyk Bible - + Application Language Jazyk aplikace - + English Angličtina - + This is a Web Download Bible. It is not possible to customize the Book Names. Toto je Bible stahovaná z Internetu. Není možné přizpůsobit si názvy knih. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Pro přizpůsobení názvů knih musí být vybrán "Jazyk Bible" v kartě Meta Data nebo na stránce Bible v Nastavení OpenLP, pokud je vybráno "Globální nastavení". @@ -1043,38 +1044,38 @@ Není možné přizpůsobit si názvy knih. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registruji Bibli a stahuji knihy... - + Registering Language... Registruji jazyk... - + Importing %s... Importing <book name>... Importuji %s... - + Download Error Chyba stahování - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Při stahování výběru veršů se vyskytl problém. Prosím prověřte své internetové připojení. Pokud se tato chyba stále objevuje, zvašte prosím nahlášení chyby. - + Parse Error Chyba zpracování - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Při rozbalování výběru veršů se vyskytl problém. Pokud se tato chyba stále objevuje, zvašte prosím nahlášení chyby. @@ -1251,17 +1252,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Vybrat jazyk - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP není schopen určit jazyk tohoto překladu Bible. Vyberte prosím jazyk ze seznamu níže. - + Language: Jazyk: @@ -1269,7 +1270,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Je potřeba vybrat jazyk. @@ -1277,92 +1278,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Rychlý - + Find: Hledat: - + Book: Kniha: - + Chapter: Kapitola: - + Verse: Verš: - + From: Od: - + To: Do: - + Text Search Hledání textu - + Second: Druhý: - + Scripture Reference Odkaz do Bible - + Toggle to keep or clear the previous results. Přepnout ponechání nebo smazání předchozích výsledků. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Nelze kombinovat jednoduché a dvojité výsledky hledání veršů v Bibli. Přejete si smazat výsledky hledání a začít s novým vyhledáváním? - + Bible not fully loaded. Bible není načtena celá. - + Information Informace - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Druhá Bible neobsahuje všechny verše jako jsou v hlavní Bibli. Budou zobrazeny jen verše nalezené v obou Biblích. %d veršů nebylo zahrnuto ve výsledcích. - + Search Scripture Reference... Hledat odkaz do Bible... - + Search Text... Hledat text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1374,7 +1375,7 @@ Pro použití bude potřeba naimportovat Bibli znovu. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Zadán nesprávný typ souboru s Biblí. OpenSong Bible mohou být komprimovány. Před importem je třeba je rozbalit. @@ -1382,7 +1383,7 @@ Pro použití bude potřeba naimportovat Bibli znovu. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importuji %s %s... @@ -1391,12 +1392,12 @@ Pro použití bude potřeba naimportovat Bibli znovu. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Zjištuji kódování (může trvat několik minut)... - + Importing %s %s... Importing <book name> <chapter>... Importuji %s %s... @@ -1405,148 +1406,148 @@ Pro použití bude potřeba naimportovat Bibli znovu. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Vybrat složku pro zálohu - + Bible Upgrade Wizard Průvodce aktualizací Bible - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Tento průvodce pomáhá s aktualizací existujcích Biblí z předchozí verze OpenLP 2. Pro spuštění aktualizace klepně níže na tlačítko Další. - + Select Backup Directory Vybrat složku pro zálohu - + Please select a backup directory for your Bibles Vyberte prosím složku pro zálohu Biblí - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Předchozí vydání OpenLP 2.0 nejsou schopny aktualizovat Bible. Bude vytvořena záloha současných Biblí, aby bylo možné v případě potřeby jednoduše nakopírovat soubory zpět do datové složky aplikace OpenLP. Instrukce, jak obnovit soubory, lze nalézt v <a href="http://wiki.openlp.org/faq">často kladené otázky</a>. - + Please select a backup location for your Bibles. Vyberte prosím umístění pro zálohu Biblí. - + Backup Directory: Složka pro zálohu: - + There is no need to backup my Bibles Není potřeba zálohovat Bible - + Select Bibles Vybrat Bible - + Please select the Bibles to upgrade Vyberte prosím Bible k aktualizaci - + Upgrading Aktualizuji - + Please wait while your Bibles are upgraded. Čekejte prosím, než budou Bible aktualizovány. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Záloha nebyla úspěšná. Pro zálohu Biblí je nutno oprávnění k zápisu do zadané složky. - + Upgrading Bible %s of %s: "%s" Failed Aktualizuji Bibli %s z %s: "%s" Selhalo - + Upgrading Bible %s of %s: "%s" Upgrading ... Aktualizuji Bibli %s z %s: "%s" Aktualizuji ... - + Download Error Chyba stahování - + To upgrade your Web Bibles an Internet connection is required. Pro aktualizaci Biblí z www je vyžadováno internetové připojení. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualizuji Bibli %s z %s: "%s" Aktualizuji %s ... - + Upgrading Bible %s of %s: "%s" Complete Aktualizuji Bibli %s z %s: "%s" Dokončeno - + , %s failed , %s selhalo - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Aktualizace Biblí: %s úspěšné%s Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyžadováno internetové připojení. - + Upgrading Bible(s): %s successful%s Aktualizace Biblí: %s úspěšné%s - + Upgrade failed. Aktualizace selhala. - + You need to specify a backup directory for your Bibles. Je potřeba upřesnit složku pro zálohu Biblí. - + Starting upgrade... Spouštím aktualizaci... - + There are no Bibles that need to be upgraded. Žádné Bible nepotřebují aktualizovat. @@ -1554,65 +1555,65 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Modul uživatelský snímek</strong><br />Modul uživatelský snímek dovoluje nastavit snímkům libovolný text, který může být zobrazen na obrazovce stejným způsobem jako písně. Tento modul poskytuje větší volnost než modul písně. - + Custom Slide name singular Uživatelský snímek - + Custom Slides name plural Uživatelské snímky - + Custom Slides container title Uživatelské snímky - + Load a new custom slide. Načíst nový uživatelský snímek. - + Import a custom slide. Import uživatelského snímku. - + Add a new custom slide. Přidat nový uživatelský snímek. - + Edit the selected custom slide. Upravit vybraný uživatelský snímek. - + Delete the selected custom slide. Smazat vybraný uživatelský snímek. - + Preview the selected custom slide. Náhled vybraného uživatelského snímku. - + Send the selected custom slide live. Zobrazit vybraný uživatelský snímek naživo. - + Add the selected custom slide to the service. Přidat vybraný uživatelský snímek ke službě. @@ -1620,12 +1621,12 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž CustomPlugin.CustomTab - + Custom Display Uživatelské zobrazení - + Display footer Patička zobrazení @@ -1633,62 +1634,62 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž CustomPlugin.EditCustomForm - + Edit Custom Slides Upravit vlastní snímky - + &Title: &Název: - + Add a new slide at bottom. Přidat nový snímek na konec. - + Edit the selected slide. Upravit vybraný snímek. - + Edit all the slides at once. Upravit všechny snímky najednou. - + Split a slide into two by inserting a slide splitter. Vložením oddělovače se snímek rozdělí na dva. - + The&me: &Motiv: - + &Credits: &Zásluhy: - + You need to type in a title. Je nutno zadat název. - + You need to add at least one slide Je nutno přidat alespoň jeden snímek - + Ed&it All Upra&it vše - + Insert Slide Vložit snímek @@ -1696,7 +1697,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž CustomPlugin.EditVerseForm - + Edit Slide Upravit snímek @@ -1704,68 +1705,72 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Jste si jisti, že chcete smazat %n vybraný uživatelský snímek?Jste si jisti, že chcete smazat %n vybrané uživatelské snímky?Jste si jisti, že chcete smazat %n vybraných uživatelských snímků? + + Jste si jisti, že chcete smazat %n vybraný uživatelský snímek? + Jste si jisti, že chcete smazat %n vybrané uživatelské snímky? + Jste si jisti, že chcete smazat %n vybraných uživatelských snímků? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Modul obrázek</strong><br />Modul obrázek se stará o zobrazování obrázků.<br />Jedna z charakteristických funkcí tohoto modulu je schopnost ve správci služby seskupit několik obrázků dohromady. Tato vlastnost zjednodušuje zobrazení více obrázků. Tento modul také využívá vlastnosti "časová smyčka" aplikace OpenLP a je tudíž možno vytvořit prezentaci obrázků, která poběží samostatně. Nadto lze využitím obrázků z modulu překrýt pozadí současného motivu. - + Image name singular Obrázek - + Images name plural Obrázky - + Images container title Obrázky - + Load a new image. Načíst nový obrázek. - + Add a new image. Přidat nový obrázek. - + Edit the selected image. Upravit vybraný obrázek. - + Delete the selected image. Smazat vybraný obrázek. - + Preview the selected image. Náhled vybraného obrázku. - + Send the selected image live. Zobrazit vybraný obrázek naživo. - + Add the selected image to the service. Přidat vybraný obrázek ke službě. @@ -1773,7 +1778,7 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž ImagePlugin.ExceptionDialog - + Select Attachment Vybrat přílohu @@ -1781,44 +1786,44 @@ Upozornění: Verše z www Bible budou stáhnuty na vyžádání a proto je vyž ImagePlugin.MediaItem - + Select Image(s) Vybrat obrázky - + You must select an image to delete. Pro smazání musíte nejdříve vybrat obrázek. - + You must select an image to replace the background with. K nahrazení pozadí musíte nejdříve vybrat obrázek. - + Missing Image(s) Chybějící obrázky - + The following image(s) no longer exist: %s Následující obrázky už neexistují: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Následující obrázky už neexistují: % Chcete přidat ostatní obrázky? - + There was a problem replacing your background, the image file "%s" no longer exists. Problém s nahrazením pozadí. Obrázek "%s" už neexistuje. - + There was no display item to amend. Žádná položka k zobrazení nebyla pozměněna. @@ -1826,17 +1831,17 @@ Chcete přidat ostatní obrázky? ImagesPlugin.ImageTab - + Background Color Barva pozadí - + Default Color: Výchozí barva: - + Visible background for images with aspect ratio different to screen. Viditelné pozadí pro obrázky s jiným poměrem stran než má obrazovka. @@ -1844,60 +1849,60 @@ Chcete přidat ostatní obrázky? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Modul média</strong><br />Modul média umožňuje přehrávat audio a video. - + Media name singular Médium - + Media name plural Média - + Media container title Média - + Load new media. Načíst nové médium. - + Add new media. Přidat nové médium. - + Edit the selected media. Upravit vybrané médium. - + Delete the selected media. Smazat vybrané médium. - + Preview the selected media. Náhled vybraného média. - + Send the selected media live. Zobrazit vybrané médium naživo. - + Add the selected media to the service. Přidat vybrané médium ke službě. @@ -1905,57 +1910,57 @@ Chcete přidat ostatní obrázky? MediaPlugin.MediaItem - + Select Media Vybrat médium - + You must select a media file to delete. Ke smazání musíte nejdříve vybrat soubor s médiem. - + You must select a media file to replace the background with. K nahrazení pozadí musíte nejdříve vybrat soubor s médiem. - + There was a problem replacing your background, the media file "%s" no longer exists. Problém s nahrazením pozadí. Soubor s médiem "%s" už neexistuje. - + Missing Media File Chybějící soubory s médii - + The file %s no longer exists. Soubor %s už neexistuje. - + Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Žádná položka k zobrazení nebyla pozměněna. - + Unsupported File Nepodporovaný soubor - + Automatic Automaticky - + Use Player: Použít přehrávač: @@ -1963,22 +1968,22 @@ Chcete přidat ostatní obrázky? MediaPlugin.MediaTab - + Available Media Players Dostupné přehrávače médií - + %s (unavailable) %s (nedostupný) - + Player Order Pořadí přehrávače - + Allow media player to be overridden Povolit překrytí přehrávače médií @@ -1986,17 +1991,17 @@ Chcete přidat ostatní obrázky? OpenLP - + Image Files Soubory s obrázky - + Information Informace - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2008,37 +2013,61 @@ Má se aktualizace provét teď? OpenLP.AboutForm - + Credits Zásluhy - + License Licence - - Contribute - Přispět - - - + build %s sestavení %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Tato aplikace je svobodný software. Lze ji libovolně šířit a upravovat v souladu s GNU General Public licencí, vydané Free Software Foundation; a to v souladu s verzí 2 této licence. - + This program 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 below for more details. Tato aplikace je šířena v naději, že bude užitečná, avšak BEZ JAKÉKOLI ZÁRUKY; neposkytují se ani odvozené záruky PRODEJNOSTI anebo VHODNOSTI PRO URČITÝ ÚČEL. Další podrobnosti viz níže. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Autorská práva © 2004-2012 %s +Částečná autorská práva © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source prezentace textů písní + +OpenLP je volně dostupný křesťanský software nebo také software pro prezentaci textů písní. Při křesťanských bohoslužbách slouží k zobrazení písní, veršů z Bible, videí, obrázků a dokonce prezentací (pokud Impress, PowerPoint nebo PowerPoint Viewer je instalován). K používání je nutný počítač a dataprojektor. + +Více informací o OpenLP: http://openlp.org/ + +OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volně dostupného křesťanského software, zvažte jestli se také nezapojit do vytváření OpenLP. Můžete tak učinit tlačítkem níže. + + + + Volunteer + Dobrovolník + + + Project Lead %s @@ -2057,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2071,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2079,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2112,18 +2151,26 @@ Přispěvatelé Testeři %s -Balíčkovači +Baliči %s Překladatelé Afrikaans (af) %s + Czech (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2140,229 +2187,207 @@ Překladatelé %s Russian (ru) %s + Swedish (sv) + %s Dokumentace %s Vytvořeno za použití Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ + Oxygen ikony: http://oxygen-icons.org/ -Finální zásluhy - "Neboť Bůh tak miloval svět, že dal - svého jednorozeného Syna, aby žádný, - kdo v něj věří, nezahynul, ale měl věčný - život." -- Jan 3:16 +Hlavní zásluhy + "Neboť Bůh tak miluje svět, že dal + svého jediného Syna, aby žádný, + kdo v něho věří, nezahynul, ale měl + život věčný." -- Jan 3:16 - V neposlední řadě, konečné zásluhy patří + V neposlední řadě, hlavní zásluhy patří Bohu, našemu Otci, že poslal Svého Syna - zemřít na kříži, osvobodit nás od hříchu. + zemřít na kříži, aby nás osvobodil od hříchu. Přinášíme tuto aplikaci zdarma, protože On nás učinil svobodnými. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source prezentace textů písní - -OpenLP je volně dostupný křesťanský software nebo také software pro prezentaci textů písní. Při křesťanských bohoslužbách slouží k zobrazení písní, veršů z Bible, videí, obrázků a dokonce prezentací (pokud Impress, PowerPoint nebo PowerPoint Viewer je instalován). K používání je nutný počítač a dataprojektor. - -Více informací o OpenLP: http://openlp.org/ - -OpenLP vytváří a udržují dobrovolníci. Pokud má existovat více volně dostupného křesťanského software, zvažte prosím přispění tlačítkem níže. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Autorská práva © 2004-2012 %s -Částečná autorská práva © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings Nastavení rozhraní - + Number of recent files to display: Počet zobrazených nedávných souborů: - + Remember active media manager tab on startup Pamatovat si při spuštění aktivní kartu správce médií - + Double-click to send items straight to live Dvojklik zobrazí položku přímo naživo - + Expand new service items on creation Při vytvoření rozbalit nové položky služby - + Enable application exit confirmation Zapnout potvrzování ukončení aplikace - + Mouse Cursor Kurzor myši - + Hide mouse cursor when over display window Skrýt kurzor myši v okně zobrazení - + Default Image Výchozí obrázek - + Background color: Barva pozadí: - + Image file: Soubor s obrázkem: - + Open File Otevřít soubor - + Advanced Pokročilé - + Preview items when clicked in Media Manager Náhled položek při klepnutí ve správci médií - + Click to select a color. Klepnout pro výběr barvy. - + Browse for an image file to display. Procházet pro obrázek k zobrazení. - + Revert to the default OpenLP logo. Vrátit na výchozí OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Služba %Y-%m-%d %H-%M - + Default Service Name Výchozí název služby - + Enable default service name Zapnout výchozí název služby - + Date and Time: Datum a čas: - + Monday Pondělí - + Tuesday Úterý - + Wednesday Středa - + Thurdsday Čtvrtek - + Friday Pátek - + Saturday Sobota - + Sunday Neděle - + Now Teď - + Time when usual service starts. Čas, kdy obvykle začíná bohoslužba. - + Name: Název: - + Consult the OpenLP manual for usage. Pro použití se podívejte do dokumentace. - + Revert to the default service name "%s". Vrátit na výchozí název služby "%s". - + Example: Příklad: - + X11 X11 @@ -2372,82 +2397,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Obejít správce oken X11 - + Syntax error. Chyba syntaxe. - + Data Location Umístění dat - + Current path: Současná cesta: - + Custom path: Uživatelská cesta: - + Browse for new data file location. Procházet pro nové umístění datových souborů. - + Set the data location to the default. Nastavit umístění dat na výchozí. - + Cancel Zrušit - + Cancel OpenLP data directory location change. Zrušit změnu umístění datové složky OpenLP. - + Copy data to new location. Kopírovat data do nového umístění. - + Copy the OpenLP data files to the new location. Kopírovat datové soubory OpenLP do nového umístění. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>VAROVÁNÍ:</strong> Nové umístnění datové složky už obsahuje datové soubory OpenLP. Tyto soubory BUDOU nahrazeny během kopírování. - + Data Directory Error Chyba datové složky - + Select Data Directory Location Vybrat umístění datové složky - + Confirm Data Directory Change Potvrdit změnu datové složky - + Reset Data Directory Obnovit datovou složku - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2456,47 +2481,98 @@ This location will be used after OpenLP is closed. Toto umístění se použije po zavření aplikace OpenLP. - + Overwrite Existing Data Přepsat existující data + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + Datová složka OpenLP nebyla nalezena + +%s + +Výchozí umístění OpenLP bylo dříve změněno na tuto složku. Pokud nové umístění bylo na výměnném zařízení, je nutno dané zařízení nejdříve připojit. + +Klepněte na "Ne", aby se přerušilo načítání OpenLP. To umožní opravit daný problém. + +Klepněte na "Ano", aby se datová složka nastavila na výchozí umístění. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Jste si jisti, že chcede změnit umístění datové složky OpenLP na: + +%s + +Toto umístění se použije po zavření aplikace OpenLP. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + VAROVÁNÍ: + +Vypadá to, že vybrané umístění + +%s + +už datové soubory OpenLP. Přejete si nahradit tyto soubory současnými datovými soubory? + OpenLP.ExceptionDialog - + Error Occurred Vznikla chyba - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Jejda! V aplikaci OpenLP vznikl problém, ze kterého není možné se zotavit. Text v polícku níže obsahuje informace, které mohou být užitečné pro vývojáře aplikace OpenLP. Zašlete je prosím spolu s podrobným popisem toho, co jste dělal, když problém vzniknul, na adresu bugs@openlp.org. - + Send E-Mail Poslat e-mail - + Save to File Uložit do souboru - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Zadejte prosím popis toho, co jste prováděl, když vznikla tato chyba (Minimálně 20 znaků) - + Attach File Přiložit soubor - + Description characters to enter : %s Znaky popisu pro vložení : %s @@ -2504,24 +2580,24 @@ Toto umístění se použije po zavření aplikace OpenLP. OpenLP.ExceptionForm - + Platform: %s Platforma: %s - + Save Crash Report Uložit hlášení o pádu - + Text files (*.txt *.log *.text) Textové soubory (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2552,7 +2628,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2587,17 +2663,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Přejmenovat soubor - + New File Name: Nový název souboru: - + File Copy Kopírovat soubor @@ -2605,17 +2681,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Vybrat překlad - + Choose the translation you'd like to use in OpenLP. Vyberte překlad, který bude používat aplikace OpenLP. - + Translation: Překlad: @@ -2623,199 +2699,199 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Písně - + First Time Wizard Průvodce prvním spuštění - + Welcome to the First Time Wizard Vítejte v průvodci prvním spuštění - + Activate required Plugins Zapnout požadované moduly - + Select the Plugins you wish to use. Vyberte moduly, které chcete používat. - + Bible Bible - + Images Obrázky - + Presentations Prezentace - + Media (Audio and Video) Média (audio a video) - + Allow remote access Povolit vzdálený přístup - + Monitor Song Usage Sledovat užívání písní - + Allow Alerts Povolit upozornění - + Default Settings Výchozí nastavení - + Downloading %s... Stahuji %s... - + Download complete. Click the finish button to start OpenLP. Stahování dokončeno. Klepnutím na tlačítko konec se spustí aplikace OpenLP. - + Enabling selected plugins... Zapínám vybrané moduly... - + No Internet Connection Žádné připojení k Internetu - + Unable to detect an Internet connection. Nezdařila se detekce internetového připojení. - + Sample Songs Ukázky písní - + Select and download public domain songs. Vybrat a stáhnout písně s nechráněnými autorskými právy. - + Sample Bibles Ukázky Biblí - + Select and download free Bibles. Vybrat a stáhnout volně dostupné Bible. - + Sample Themes Ukázky motivů - + Select and download sample themes. Vybrat a stáhnout ukázky motivů. - + Set up default settings to be used by OpenLP. Nastavit výchozí nastavení pro aplikaci OpenLP. - + Default output display: Výchozí výstup zobrazit na: - + Select default theme: Vybrat výchozí motiv: - + Starting configuration process... Spouštím průběh nastavení... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Tento průvodce pomáhá nastavit OpenLP pro první použití. Pro start klepněte níže na tlačítko další. - + Setting Up And Downloading Nastavuji a stahuji - + Please wait while OpenLP is set up and your data is downloaded. Čekejte prosím, než bude aplikace OpenLP nastavena a data stáhnuta. - + Setting Up Nastavuji - + Click the finish button to start OpenLP. Klepnutím na tlačítko konec se spustí aplikace OpenLP. - + Download complete. Click the finish button to return to OpenLP. Stahování dokončeno. Klepnutím na tlačítko konec dojde k návratu do aplikace OpenLP. - + Click the finish button to return to OpenLP. Klepnutím na tlačítko konec dojde k návratu do aplikace OpenLP. - + Custom Slides Uživatelské snímky - + Finish Konec - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. Internetové připojení není dostupné. Průvodce prvním spuštění potřebuje internetové připojení pro stažení ukázek písní, Biblí a motivů. Klepněte na tlačiko Konec pro spuštění aplikace OpenLP ve výchozím nastavení a bez ukázkových dat. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2825,37 +2901,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Nastavit formátovací značky - + Edit Selection Upravit výběr - + Save Uložit - + Description Popis - + Tag Značka - + Start HTML Začátek HTML - + End HTML Konec HTML @@ -2863,32 +2939,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Chyba aktualizace - + Tag "n" already defined. Značka "n" je už definovaná. - + New Tag Nová značka - + <HTML here> <HTML zde> - + </and here> </and zde> - + Tag %s already defined. Značka %s je už definovaná. @@ -2896,82 +2972,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Červená - + Black Černá - + Blue Modrá - + Yellow Žlutá - + Green Zelená - + Pink Růžová - + Orange Oranžová - + Purple Fialová - + White Bílá - + Superscript Horní index - + Subscript Dolní index - + Paragraph Odstavec - + Bold Tučné - + Italics Kurzíva - + Underline Podtržené - + Break Zalomení @@ -2979,122 +3055,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Obecné - + Monitors Monitory - + Select monitor for output display: Vybrat monitor pro výstupní zobrazení: - + Display if a single screen Zobrazení při jedné obrazovce - + Application Startup Spuštění aplikace - + Show blank screen warning Zobrazit varování při prázdné obrazovce - + Automatically open the last service Automaticky otevřít poslední službu - + Show the splash screen Zobrazit úvodní obrazovku - + Application Settings Nastavení aplikace - + Prompt to save before starting a new service Před spuštěním nové služby se ptát na uložení - + Automatically preview next item in service Automatický náhled další položky ve službě - + sec sek - + CCLI Details CCLI podrobnosti - + SongSelect username: SongSelect uživatelské jméno: - + SongSelect password: SongSelect heslo: - + X X - + Y Y - + Height Výška - + Width Šířka - + Check for updates to OpenLP Kontrola aktualizací aplikace OpenLP - + Unblank display when adding new live item Odkrýt zobrazení při přidání nové položky naživo - + Timed slide interval: Časový interval mezi snímky: - + Background Audio Zvuk na pozadí - + Start background audio paused Spustit audio na pozadí pozastavené @@ -3104,12 +3180,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Omezení snímku položky služby - + Override display position: Překrýt pozici zobrazení: - + Repeat track list Opakovat seznam stop @@ -3137,12 +3213,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language Jazyk - + Please restart OpenLP to use your new language setting. Změny nastavení jazyka se projeví restartováním aplikace OpenLP. @@ -3150,7 +3226,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display Zobrazení OpenLP @@ -3158,287 +3234,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Soubor - + &Import &Import - + &Export &Export - + &View &Zobrazit - + M&ode &Režim - + &Tools &Nástroje - + &Settings &Nastavení - + &Language &Jazyk - + &Help &Nápověda - + Media Manager Správce médií - + Service Manager Správce služby - + Theme Manager Správce motivů - + &New &Nový - + &Open &Otevřít - + Open an existing service. Otevřít existující službu. - + &Save &Uložit - + Save the current service to disk. Uložit současnou službu na disk. - + Save &As... Uložit &jako... - + Save Service As Uložit službu jako - + Save the current service under a new name. Uložit současnou službu s novým názvem. - + E&xit U&končit - + Quit OpenLP Ukončit OpenLP - + &Theme &Motiv - + &Configure OpenLP... &Nastavit OpenLP... - + &Media Manager Správce &médií - + Toggle Media Manager Přepnout správce médií - + Toggle the visibility of the media manager. Přepnout viditelnost správce médií. - + &Theme Manager Správce &motivů - + Toggle Theme Manager Přepnout správce motivů - + Toggle the visibility of the theme manager. Přepnout viditelnost správce motivů. - + &Service Manager Správce &služby - + Toggle Service Manager Přepnout správce služby - + Toggle the visibility of the service manager. Přepnout viditelnost správce služby. - + &Preview Panel Panel &náhledu - + Toggle Preview Panel Přepnout panel náhledu - + Toggle the visibility of the preview panel. Přepnout viditelnost panelu náhled. - + &Live Panel Panel na&živo - + Toggle Live Panel Přepnout panel naživo - + Toggle the visibility of the live panel. Přepnout viditelnost panelu naživo. - + &Plugin List Seznam &modulů - + List the Plugins Vypsat moduly - + &User Guide &Uživatelská příručka - + &About &O aplikaci - + More information about OpenLP Více informací o aplikaci OpenLP - + &Online Help &Online nápověda - + &Web Site &Webová stránka - + Use the system language, if available. Použít jazyk systému, pokud je dostupný. - + Set the interface language to %s Jazyk rozhraní nastaven na %s - + Add &Tool... Přidat &nástroj... - + Add an application to the list of tools. Přidat aplikaci do seznamu nástrojů. - + &Default &Výchozí - + Set the view mode back to the default. Nastavit režim zobrazení zpět na výchozí. - + &Setup &Nastavení - + Set the view mode to Setup. Nastavit režim zobrazení na Nastavení. - + &Live &Naživo - + Set the view mode to Live. Nastavit režim zobrazení na Naživo. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3447,108 +3523,108 @@ You can download the latest version from http://openlp.org/. Nejnovější verzi lze stáhnout z http://openlp.org/. - + OpenLP Version Updated Verze OpenLP aktualizována - + OpenLP Main Display Blanked Hlavní zobrazení OpenLP je prázdné - + The Main Display has been blanked out Hlavní zobrazení nastaveno na prázdný snímek - + Default Theme: %s Výchozí motiv: %s - + English Please add the name of your language here Čeština - + Configure &Shortcuts... Nastavuji &zkratky... - + Close OpenLP Zavřít OpenLP - + Are you sure you want to close OpenLP? Chcete opravdu zavřít aplikaci OpenLP? - + Open &Data Folder... Otevřít složku s &daty... - + Open the folder where songs, bibles and other data resides. Otevřít složku, kde se nachází písně, Bible a ostatní data. - + &Autodetect &Automaticky detekovat - + Update Theme Images Aktualizovat obrázky motivu - + Update the preview images for all themes. Aktualizovat náhledy obrázků všech motivů. - + Print the current service. Tisk současné služby. - + &Recent Files &Nedávné soubory - + L&ock Panels &Uzamknout panely - + Prevent the panels being moved. Zabrání přesunu panelů. - + Re-run First Time Wizard Znovu spustit Průvodce prvním spuštění - + Re-run the First Time Wizard, importing songs, Bibles and themes. Znovu spustit Průvodce prvním spuštění, importovat písně, Bible a motivy. - + Re-run First Time Wizard? Znovu spustit Průvodce prvním spuštění? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3557,43 +3633,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Znovu spuštěním tohoto průvodce může dojít ke změně současného nastavení aplikace OpenLP a pravděpodobně budou přidány písně k existujícímu seznamu a změněn výchozí motiv. - + Clear List Clear List of recent files Vyprázdnit seznam - + Clear the list of recent files. Vyprázdnit seznam nedávných souborů. - + Configure &Formatting Tags... Nastavit &formátovací značky... - + Export OpenLP settings to a specified *.config file Export nastavení OpenLP do určitého *.config souboru - + Settings Nastavení - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Import nastavení OpenLP ze určitého *.config souboru dříve exportovaného na tomto nebo jiném stroji - + Import settings? Importovat nastavení? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3606,50 +3682,77 @@ Importováním nastavení dojde k trvalým změnám současného nastavení apli Importování nesprávných nastavení může zapříčinit náladové chování nebo nenormální ukončení aplikace OpenLP. - + Open File Otevřít soubor - + OpenLP Export Settings Files (*.conf) Soubory exportovaného nastavení OpenLP (*.conf) - + Import settings Import nastavení - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Aplikace OpenLP se nyní zavře. Importovaná nastavení se použijí při příštim spuštění. - + Export Settings File Soubor exportovaného nastavení - + OpenLP Export Settings File (*.conf) Soubor exportovaného nastavení OpenLP (*.conf) - + New Data Directory Error Chyba nové datové složky + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Vybraný soubor vypadá jako platný soubor s nastavením OpenLP. + +Sekce [%s] není platná. + +Zpracování bylo přerušeno a žádná změna se neprovedla. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopíruji OpenLP data do nového umístění datové složky - %s - Počkejte prosím na dokončení kopírování + + + + OpenLP Data directory copy failed + +%s + Kopírování datové složky OpenLP selhalo + +%s + OpenLP.Manager - + Database Error Chyba databáze - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3658,7 +3761,7 @@ Database: %s Databáze: %s - + OpenLP cannot load your database. Database: %s @@ -3670,74 +3773,74 @@ Databáze: %s OpenLP.MediaManagerItem - + No Items Selected Nevybraná zádná položka - + &Add to selected Service Item &Přidat k vybrané Položce Služby - + You must select one or more items to preview. Pro náhled je třeba vybrat jednu nebo více položek. - + You must select one or more items to send live. Pro zobrazení naživo je potřeba vybrat jednu nebo více položek. - + You must select one or more items. Je třeba vybrat jednu nebo více položek. - + You must select an existing service item to add to. K přidání Je třeba vybrat existující položku služby. - + Invalid Service Item Neplatná Položka služby - + You must select a %s service item. Je třeba vybrat %s položku služby. - + You must select one or more items to add. Pro přidání Je třeba vybrat jednu nebo více položek. - + No Search Results Žádné výsledky hledání - + Invalid File Type Neplatný typ souboru - + Invalid File %s. Suffix not supported Neplatný soubor %s. Přípona není podporována - + &Clone &Klonovat - + Duplicate files were found on import and were ignored. Při importu byly nalezeny duplicitní soubory a byly ignorovány. @@ -3745,12 +3848,12 @@ Přípona není podporována OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Chybějící značka <lyrics>. - + <verse> tag is missing. Chybějící značka <verse>. @@ -3758,42 +3861,42 @@ Přípona není podporována OpenLP.PluginForm - + Plugin List Seznam modulů - + Plugin Details Podrobnosti k modulu - + Status: Stav: - + Active Aktivní - + Inactive Neaktivní - + %s (Inactive) %s (Neaktivní) - + %s (Active) %s (Aktivní) - + %s (Disabled) %s (Vypnuto) @@ -3801,12 +3904,12 @@ Přípona není podporována OpenLP.PrintServiceDialog - + Fit Page Přizpůsobit stránce - + Fit Width Přizpůsobit šířce @@ -3814,77 +3917,77 @@ Přípona není podporována OpenLP.PrintServiceForm - + Options Možnosti - + Copy Kopírovat - + Copy as HTML Kopírovat jako HTML - + Zoom In Zvětšit - + Zoom Out Zmenšit - + Zoom Original Původní velikost - + Other Options Ostatní možnosti - + Include slide text if available Zahrnout text snímku, pokud je k dispozici - + Include service item notes Zahrnout poznámky položky služby - + Include play length of media items Zahrnout délku přehrávání mediálních položek - + Add page break before each text item Přidat zalomení stránky před každou textovou položku - + Service Sheet List služby - + Print Tisk - + Title: Nadpis: - + Custom Footer Text: Uživatelský text zápatí: @@ -3892,12 +3995,12 @@ Přípona není podporována OpenLP.ScreenList - + Screen Obrazovka - + primary Primární @@ -3905,12 +4008,12 @@ Přípona není podporována OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Začátek</strong>: %s - + <strong>Length</strong>: %s <strong>Délka</strong>: %s @@ -3918,7 +4021,7 @@ Přípona není podporována OpenLP.ServiceItemEditForm - + Reorder Service Item Změnit pořadí Položky služby @@ -3926,287 +4029,298 @@ Přípona není podporována OpenLP.ServiceManager - + Move to &top Přesun &nahoru - + Move item to the top of the service. Přesun položky ve službě úplně nahoru. - + Move &up Přesun &výše - + Move item up one position in the service. Přesun položky ve službě o jednu pozici výše. - + Move &down P?esun &níže - + Move item down one position in the service. P?esun položky ve služb? o jednu pozici níže. - + Move to &bottom Přesun &dolu - + Move item to the end of the service. Přesun položky ve službě úplně dolů. - + &Delete From Service &Smazat ze služby - + Delete the selected item from the service. Smazat vybranou položku ze služby. - + &Add New Item &Přidat novou položku - + &Add to Selected Item &Přidat k vybrané položce - + &Edit Item &Upravit položku - + &Reorder Item &Změnit pořadí položky - + &Notes &Poznámky - + &Change Item Theme &Změnit motiv položky - + OpenLP Service Files (*.osz) Soubory služby OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Soubor není platná služba. Obsah souboru není v kódování UTF-8. - + File is not a valid service. Soubor není platná služba. - + Missing Display Handler Chybějící obsluha zobrazení - + Your item cannot be displayed as there is no handler to display it Položku není možno zobrazit, protože chybí obsluha pro její zobrazení - + Your item cannot be displayed as the plugin required to display it is missing or inactive Položku není možno zobrazit, protože modul potřebný pro zobrazení položky chybí nebo je neaktivní - + &Expand all &Rozvinou vše - + Expand all the service items. Rozvinout všechny položky služby. - + &Collapse all &Svinout vše - + Collapse all the service items. Svinout všechny položky služby. - + Open File Otevřít soubor - + Moves the selection down the window. Přesune výběr v rámci okna dolu. - + Move up Přesun nahoru - + Moves the selection up the window. Přesune výběr v rámci okna nahoru. - + Go Live Zobrazit naživo - + Send the selected item to Live. Zobrazí vybranou položku naživo. - + &Start Time &Spustit čas - + Show &Preview Zobrazit &náhled - + Modified Service Změněná služba - + The current service has been modified. Would you like to save this service? Současná služba byla změněna. Přejete si službu uložit? - + Custom Service Notes: Poznámky Uživatelský služby: - + Notes: Poznámky: - + Playing time: Čas přehrávání: - + Untitled Service Prázdná služba - + File could not be opened because it is corrupt. Soubor se nepodařilo otevřít, protože je poškozený. - + Empty File Prázdný soubor - + This service file does not contain any data. Tento soubor služby neobsahuje žádná data. - + Corrupt File Poškozený soubor - + Load an existing service. Načíst existující službu. - + Save this service. Uložit tuto službu. - + Select a theme for the service. Vybrat motiv pro službu. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Soubor je buďto poškozen nebo se nejedná o soubor se službou z aplikace OpenLP 2.0. - - Service File Missing - Chybějící soubor se službou - - - + Slide theme Motiv snímku - + Notes Poznámky - + Edit Upravit - + Service copy only Kopírovat jen službu - + Error Saving File Chyba při ukládání souboru - + There was an error saving your file. Vznikla chyba při ukládání souboru. + + + Service File(s) Missing + Chybějící soubor(y) služby + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Následující soubor(y) ve službě chybí: +<byte value="x9"/>%s + +Tyto souby se vymažou, pokud službu uložíte. + OpenLP.ServiceNoteForm - + Service Item Notes Poznámky položky služby @@ -4214,7 +4328,7 @@ Obsah souboru není v kódování UTF-8. OpenLP.SettingsForm - + Configure OpenLP Nastavit OpenLP @@ -4222,67 +4336,67 @@ Obsah souboru není v kódování UTF-8. OpenLP.ShortcutListDialog - + Action Činnost - + Shortcut Zkratka - + Duplicate Shortcut Duplicitní zkratka - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Zkratka "%s" je už přiřazena jiné činnosti. Použijte prosím jinou zkratku. - + Alternate Alternativa - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Zadání nové hlavní nebo alternativní zkratky se spustí vybráním činnosti a klepnutím na jedno z tlačítek níže. - + Default Výchozí - + Custom Uživatelský - + Capture shortcut. Zachytit zkratku. - + Restore the default shortcut of this action. Obnovit výchozí zkratku činnosti. - + Restore Default Shortcuts Obnovit výchozí zkratku - + Do you want to restore all shortcuts to their defaults? Chcete obnovit všechny zkratky na jejich výchozí hodnoty? - + Configure Shortcuts Nastavit zkratky @@ -4290,172 +4404,172 @@ Obsah souboru není v kódování UTF-8. OpenLP.SlideController - + Hide Skrýt - + Go To Přejít na - + Blank Screen Prázdná obrazovka - + Blank to Theme Prázdný motiv - + Show Desktop Zobrazit plochu - + Previous Service Předchozí služba - + Next Service Další služba - + Escape Item Zrušit položku - + Move to previous. Přesun na předchozí. - + Move to next. Přeson na další. - + Play Slides Přehrát snímky - + Delay between slides in seconds. Zpoždění mezi s nímky v sekundách. - + Move to live. Přesun naživo. - + Add to Service. Přidat ke službě. - + Edit and reload song preview. Upravit a znovu načíst náhled písně. - + Start playing media. Spustit přehrávání média. - + Pause audio. Pozastavit zvuk. - + Pause playing media. Pozastavit přehrávání média. - + Stop playing media. Zastavit přehrávání média. - + Video position. Umístění videa. - + Audio Volume. Hlasitost zvuku. - + Go to "Verse" Přejít na "Sloka" - + Go to "Chorus" Přejít na "Refrén" - + Go to "Bridge" Přejít na "Přechod" - + Go to "Pre-Chorus" Přejít na "Předrefrén" - + Go to "Intro" Přejít na "Úvod" - + Go to "Ending" Přejít na "Zakončení" - + Go to "Other" Přejít na "Ostatní" - + Previous Slide Předchozí snímek - + Next Slide Další snímek - + Pause Audio Pozastavit zvuk - + Background Audio Zvuk na pozadí - + Go to next audio track. Přejít na další zvukovou stopu. - + Tracks Stopy @@ -4463,17 +4577,17 @@ Obsah souboru není v kódování UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Návrhy pravopisu - + Formatting Tags Formátovací značky - + Language: Jazyk: @@ -4481,615 +4595,627 @@ Obsah souboru není v kódování UTF-8. OpenLP.StartTimeForm - + Hours: Hodiny: - + Minutes: Minuty: - + Seconds: Sekundy: - + Item Start and Finish Time Čas začátku a konce položky - + Start Začátek - + Finish Konec - + Length Délka - + Time Validation Error Chyba při ověření času - + Finish time is set after the end of the media item Čas konce je nastaven po času konce mediální položky - + Start time is after the finish time of the media item Čas začátku je nastaven po času konce mediální položky - + Theme Layout Rozvržení motivu - + The blue box shows the main area. Modré políčko ukazuje hlavní oblast. - + The red box shows the footer. Červené políčko ukazuje zápatí. - - OpenLP.ThemeForm - - - Select Image - Vybrat obrázek - - - - Theme Name Missing - Chybí název motivu - - - - There is no name for this theme. Please enter one. - Není vyplněn název motivu. Prosím zadejte ho. - - - - Theme Name Invalid - Neplatný název motivu - - - - Invalid theme name. Please enter one. - Neplatný název motivu. Prosím zadejte nový. - - - - (approximately %d lines per slide) - (přibližně %d řádek na snímek) - - OpenLP.ThemeManager - + Create a new theme. Vytvoří nový motiv. - + Edit Theme Upravit motiv - + Edit a theme. Upraví motiv. - + Delete Theme Smazat motiv - + Delete a theme. Smaže motiv. - + Import Theme Import motivu - + Import a theme. Importuje motiv. - + Export Theme Export motivu - + Export a theme. Exportuje motiv. - + &Edit Theme &Upravit motiv - + &Delete Theme &Smazat motiv - + Set As &Global Default Nastavit jako &Globální výchozí - + %s (default) %s (výchozí) - + You must select a theme to edit. Pro úpravy je třeba vybrat motiv. - + You are unable to delete the default theme. Není možno smazat výchozí motiv. - + Theme %s is used in the %s plugin. Motiv %s je používán v modulu %s. - + You have not selected a theme. Není vybrán žádný motiv. - + Save Theme - (%s) Uložit motiv - (%s) - + Theme Exported Motiv exportován - + Your theme has been successfully exported. Motiv byl úspěšně exportován. - + Theme Export Failed Export motivu selhal - + Your theme could not be exported due to an error. Kvůli chybě nebylo možno motiv exportovat. - + Select Theme Import File Vybrat soubor k importu motivu - + File is not a valid theme. Soubor není platný motiv. - + &Copy Theme &Kopírovat motiv - + &Rename Theme &Přejmenovat motiv - + &Export Theme &Export motivu - + You must select a theme to rename. K přejmenování je třeba vybrat motiv. - + Rename Confirmation Potvrzení přejmenování - + Rename %s theme? Přejmenovat motiv %s? - + You must select a theme to delete. Pro smazání je třeba vybrat motiv. - + Delete Confirmation Potvrzení smazání - + Delete %s theme? Smazat motiv %s? - + Validation Error Chyba ověřování - + A theme with this name already exists. Motiv s tímto názvem již existuje. - + OpenLP Themes (*.theme *.otz) OpenLP motivy (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopie %s - + Theme Already Exists Motiv již existuje + + + Theme %s already exists. Do you want to replace it? + Motiv %s již existuje. Chcete ho nahradit? + OpenLP.ThemeWizard - + Theme Wizard Průvodce motivem - + Welcome to the Theme Wizard Vítejte v průvodci motivem - + Set Up Background Nastavení pozadí - + Set up your theme's background according to the parameters below. Podle parametrů níže nastavte pozadí motivu. - + Background type: Typ pozadí: - + Solid Color Plná barva - + Gradient Přechod - + Color: Barva: - + Gradient: Přechod: - + Horizontal Vodorovný - + Vertical Svislý - + Circular Kruhový - + Top Left - Bottom Right Vlevo nahoře - vpravo dole - + Bottom Left - Top Right Vlevo dole - vpravo nahoře - + Main Area Font Details Podrobnosti písma hlavní oblasti - + Define the font and display characteristics for the Display text Definovat písmo a charakteristiku zobrazení pro zobrazený text - + Font: Písmo: - + Size: Velikost: - + Line Spacing: Řádkování: - + &Outline: &Obrys: - + &Shadow: &Stín: - + Bold Tučné - + Italic Kurzíva - + Footer Area Font Details Podrobnosti písma oblasti zápatí - + Define the font and display characteristics for the Footer text Definovat písmo a charakteristiku zobrazení pro text zápatí - + Text Formatting Details Podrobnosti formátování textu - + Allows additional display formatting information to be defined Dovoluje definovat další formátovací informace zobrazení - + Horizontal Align: Vodorovné zarovnání: - + Left Vlevo - + Right Vpravo - + Center Na střed - + Output Area Locations Umístění výstupní oblasti - + Allows you to change and move the main and footer areas. Dovoluje změnit a přesunout hlavní oblast a oblast zápatí. - + &Main Area &Hlavní oblast - + &Use default location &Použít výchozí umístění - + X position: Pozice X: - + px px - + Y position: Pozice Y: - + Width: Šířka: - + Height: Výška: - + Use default location Použít výchozí umístění - + Theme name: Název motivu: - + Edit Theme - %s Upravit motiv - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Tento průvodce pomáhá s vytvořením a úpravou vašich motivu. Klepněte níže na tlačítko další pro spuštění procesu nastavení vašeho pozadí. - + Transitions: Přechody: - + &Footer Area Oblast &zápatí - + Starting color: Barva začátku: - + Ending color: Barva konce: - + Background color: Barva pozadí: - + Justify Do bloku - + Layout Preview Náhled rozvržení - + Transparent Průhledný - + Preview and Save Náhled a uložit - + Preview the theme and save it. Náhled motivu a motiv uložit. + + + (approximately %d lines per slide) + (přibližně %d řádek na snímek) + + + + Background Image Empty + Prázdný obrázek pozadí + + + + You have not selected a background image. Please select one before continuing. + Nebyl vybrán obrázek pozadí. Před pokračování prosím jeden vyberte. + + + + Select Image + Vybrat obrázek + + + + Theme Name Missing + Chybí název motivu + + + + There is no name for this theme. Please enter one. + Není vyplněn název motivu. Prosím zadejte ho. + + + + Theme Name Invalid + Neplatný název motivu + + + + Invalid theme name. Please enter one. + Neplatný název motivu. Prosím zadejte nový. + OpenLP.ThemesTab - + Global Theme Globální motiv - + Theme Level Úroveň motivu - + S&ong Level Úroveň &písně - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Použít motiv z každé písně z databáze. Pokud píseň nemá přiřazen motiv, potom se použije motiv služby. Pokud služba nemá motiv, pak se použije globální motiv. - + &Service Level Úroveň &služby - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Použitím motivu ze služby se překryje motiv jednotlivých písní. Pokud služba nemá motiv, tak se použije globální motiv. - + &Global Level &Globální úroveň - + Use the global theme, overriding any themes associated with either the service or the songs. Použitím globálního motivu se překryjí motivy, které jsou přiřazeny službám nebo písním. - + Themes Motivy @@ -5097,315 +5223,315 @@ Obsah souboru není v kódování UTF-8. OpenLP.Ui - + Error Chyba - + About O aplikaci - + &Add &Přidat - + Advanced Pokročilé - + All Files Všechny soubory - + Bottom Dole - + Browse... Procházet... - + Cancel Zrušit - + CCLI number: CCLI číslo: - + Create a new service. Vytvořit novou službu. - + &Delete &Smazat - + &Edit &Upravit - + Empty Field Prázdné pole - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Obrázek - + Import Import - + Live Naživo - + Live Background Error Chyba v pozadí naživo - + Load Načíst - + Middle Uprostřed - + New Nový - + New Service Nová služba - + New Theme Nový motiv - + No File Selected Singular Nevybrán žádný soubor - + No Files Selected Plural Nevybrány žádné soubory - + No Item Selected Singular Nevybrána žádná položka - + No Items Selected Plural Nevybrány žádné položky - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Náhled - + Replace Background Nahradit pozadí - + Reset Background Obnovit pozadí - + s The abbreviated unit for seconds s - + Save && Preview Uložit a náhled - + Search Hledat - + You must select an item to delete. Je třeba vybrat nějakou položku ke smazání. - + You must select an item to edit. Je třeba vybrat nějakou položku k úpravám. - + Save Service Uložit službu - + Service Služba - + Start %s Spustit %s - + Theme Singular Motiv - + Themes Plural Motivy - + Top Nahoře - + Version Verze - + Delete the selected item. Smazat vybranou položku. - + Move selection up one position. Přesun výběru o jednu pozici výše. - + Move selection down one position. Přesun výběru o jednu pozici níže. - + &Vertical Align: &Svislé zarovnání: - + Finished import. Import dokončen. - + Format: Formát: - + Importing Importuji - + Importing "%s"... Importuji "%s"... - + Select Import Source Vybrat zdroj importu - + Select the import format and the location to import from. Vyberte formát importu a umístění, ze kterého se má importovat. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Import dat z openlp.org 1.x je vypnuté kvůli chybějícímu Python modulu. Pokud chcete využít tohoto importu dat, je třeba nainstallovat modul "python-sqlite". - + Open %s File Otevřít soubor %s - + %p% %p% - + Ready. Připraven. - + Starting import... Spouštím import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Je třeba specifikovat alespoň jeden %s soubor, ze kterého se bude importovat. @@ -5416,299 +5542,304 @@ Obsah souboru není v kódování UTF-8. Vítejte v průvodci importu Bible - + Welcome to the Song Export Wizard Vítejte v průvodci exportu písní - + Welcome to the Song Import Wizard Vítejte v průvodci importu písní - + Author Singular Autor - + Authors Plural Autoři - - © + + © Copyright symbol. © - + Song Book Singular Zpěvník - + Song Books Plural Zpěvníky - + Song Maintenance Údržba písní - + Topic Singular Téma - + Topics Plural Témata - + Continuous Spojitý - + Default Výchozí - + Display style: Styl zobrazení: - + Duplicate Error Duplicitní chyba - + File Soubor - + Help Nápověda - + h The abbreviated unit for hours hod - + Layout style: Styl rozvržení: - + Live Toolbar Nástrojová lišta naživo - + m The abbreviated unit for minutes min - + OpenLP is already running. Do you wish to continue? Aplikace OpenLP je už spuštěna. Přejete si pokračovat? - + Settings Nastavení - + Tools Nástroje - + Unsupported File Nepodporovaný soubor - + Verse Per Slide Verš na snímek - + Verse Per Line Verš na jeden řádek - + View Zobrazit - + Title and/or verses not found Název a/nebo slova nenalezeny - + XML syntax error Chyba v syntaxi XML - + View Mode Režim zobrazení - + Open service. Otevřít službu. - + Print Service Tisk služby - + Replace live background. Nahradit pozadí naživo. - + Reset live background. Obnovit pozadí naživo. - + Split a slide into two only if it does not fit on the screen as one slide. Rozdělit snímek na dva jen v případě, že se nevejde na obrazovku jako jeden snímek. - + Welcome to the Bible Upgrade Wizard Vítejte v průvodci aktualizací Biblí - + Confirm Delete Potvrdit smazání - + Play Slides in Loop Přehrát snímky ve smyčce - + Play Slides to End Přehrát snímky ke konci - + Stop Play Slides in Loop Zastavit přehrávání snímků ve smyčce - + Stop Play Slides to End Zastavit přehrávání snímků ke konci - + Next Track Další stopa - + Search Themes... Search bar place holder text Hledat motiv... - + Optional &Split Volitelné &rozdělení - + Invalid Folder Selected Singular Vybraná neplatná složka - + Invalid File Selected Singular Vybraný neplatný soubor - + Invalid Files Selected Plural Vybrané neplatné soubory - + No Folder Selected Singular Nevybraná žádná složka - + Open %s Folder Otevřít složku %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Je potřeba upřesnit jeden %s soubor, ze kterého se bude importovat. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Je potřeba upřesnit jednu %s složku, ze které se bude importovat. + + + Importing Songs + Import písní + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 a %2 - + %1, and %2 Locale list separator: end %1 and %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5717,50 +5848,50 @@ Obsah souboru není v kódování UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Modul prezentace</strong><br />Modul prezentace dovoluje zobrazovat prezentace z několika různých programů. Výběr dostupných prezentačních programů je uživateli přístupný v rozbalovacím menu. - + Presentation name singular Prezentace - + Presentations name plural Prezentace - + Presentations container title Prezentace - + Load a new presentation. Načíst novou prezentaci. - + Delete the selected presentation. Smazat vybranou prezentaci. - + Preview the selected presentation. Náhled vybrané prezentace. - + Send the selected presentation live. Zobrazit vybranou prezentaci naživo. - + Add the selected presentation to the service. Přidat vybranou prezentaci ke službě. @@ -5768,52 +5899,52 @@ Obsah souboru není v kódování UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Vybrat prezentace - + Automatic Automaticky - + Present using: Nyní používající: - + File Exists Soubor existuje - + A presentation with that filename already exists. Prezentace s tímto názvem souboru už existuje. - + This type of presentation is not supported. Tento typ prezentace není podporován. - + Presentations (%s) Prezentace (%s) - + Missing Presentation Chybějící prezentace - + The presentation %s is incomplete, please reload. Prezentace %s není kompletní. Načtěte ji znovu. - + The presentation %s no longer exists. Prezentace %s už neexistuje. @@ -5821,17 +5952,17 @@ Obsah souboru není v kódování UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Dostupné ovládání - + %s (unavailable) %s (nedostupný) - + Allow presentation application to be overridden Povolit překrytí prezentační aplikace @@ -5839,24 +5970,24 @@ Obsah souboru není v kódování UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Modul dálkové ovládání</strong><br />Modul dálkové ovládání poskytuje schopnost zasílat zprávy aplikaci OpenLP běžící na jiném počítači. Zprávy je možno posílat internetovým prohlížečem nebo vzdáleným API. - + Remote name singular Dálkové ovládání - + Remotes name plural Dálková ovládání - + Remote container title Dálkové ovládání @@ -5865,236 +5996,246 @@ Obsah souboru není v kódování UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Dálkové ovládání - + OpenLP 2.0 Stage View OpenLP 2.0 Zobrazení na pódiu - + Service Manager Správce služby - + Slide Controller Ovládání snímku - + Alerts Upozornění - + Search Hledat - + Refresh Obnovit - + Blank Prázdný - + Show Zobrazit - + Prev Předchozí - + Next Další - + Text Text - + Show Alert Zobrazit upozornění - + Go Live Zobrazit naživo - + No Results Žádné hledání - + Options Možnosti - + Add to Service Přidat ke službě - + Home Domů - + Theme Motiv - + Desktop Plocha - + Add &amp; Go to Service Přidat &amp; Přejít ke službě + + + Service + Služba + + + + Slides + Snímky + RemotePlugin.RemoteTab - + Serve on IP address: Poslouchat na IP adresse: - + Port number: Číslo portu: - + Server Settings Nastavení serveru - + Remote URL: URL dálkového ovládání: - + Stage view URL: URL zobrazení na jevišti: - + Display stage time in 12h format Zobrazit čas na pódiu ve 12hodinovém formátu - + Android App Android aplikace - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Naskenujte QR kód nebo pro instalaci Android aplikace z marketu klepněte na <a href="https://market.android.com/details?id=org.openlp.android">stáhnout</a>. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Naskenujte QR kód nebo pro instalaci Android aplikace ze služby Google Play klepněte na <a href="https://play.google.com/store/apps/details?id=org.openlp.android">stáhnout</a>. SongUsagePlugin - + &Song Usage Tracking Sledování použití &písní - + &Delete Tracking Data &Smazat data sledování - + Delete song usage data up to a specified date. Smazat data použití písní až ke konkrétnímu kalendářnímu datu. - + &Extract Tracking Data &Rozbalit data sledování - + Generate a report on song usage. Vytvořit hlášení z používání písní. - + Toggle Tracking Přepnout sledování - + Toggle the tracking of song usage. Přepnout sledování použití písní. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Modul používání písní</strong><br />Tento modul sleduje používání písní ve službách. - + SongUsage name singular Používání písně - + SongUsage name plural Používání písní - + SongUsage container title Používání písní - + Song Usage Používání písní - + Song usage tracking is active. Sledování použití písní je zapnuto. - + Song usage tracking is inactive. Sledování použití písní je vypnuto. - + display zobrazení - + printed vytisknutý @@ -6102,32 +6243,32 @@ Obsah souboru není v kódování UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Smazat data používání písní - + Delete Selected Song Usage Events? Smazat události vybraného používání písní? - + Are you sure you want to delete selected Song Usage data? Jste si jist, že chcete smazat vybraná data o používání písní? - + Deletion Successful Smazání úspěšné - + All requested data has been deleted successfully. Všechny požadovaná data byla úspěšně smazána. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Vyberte datum, ke kterému se smažou data o používání písní. Všechna data, zaznamenaná před tímto datumem budou natrvalo smazána. @@ -6135,42 +6276,42 @@ Obsah souboru není v kódování UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Rozbalení používání písní - + Select Date Range Vybrat rozsah datumu - + to do - + Report Location Umístění hlášení - + Output File Location Umístění výstupního souboru - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation Vytvoření hlášení - + Report %s has been successfully created. @@ -6179,12 +6320,12 @@ has been successfully created. bylo úspěšně vytvořeno. - + Output Path Not Selected Nevybrána výstupní cesta - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Platné výstupní umístění pro hlášení používání písní není nastaveno. Prosím vyberte existující cestu ve vašem počítači. @@ -6192,112 +6333,112 @@ bylo úspěšně vytvořeno. SongsPlugin - + &Song &Píseň - + Import songs using the import wizard. Import písní průvodcem importu. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Modul písně</strong><br />Modul písně umožňuje zobrazovat a spravovat písně. - + &Re-index Songs &Přeindexovat písně - + Re-index the songs database to improve searching and ordering. Přeindexovat písně v databázi pro vylepšení hledání a řazení. - + Reindexing songs... Přeindexovávám písně... - + Arabic (CP-1256) Arabština (CP-1256) - + Baltic (CP-1257) Baltské jazyky (CP-1257) - + Central European (CP-1250) Středoevropské jazyky (CP-1250) - + Cyrillic (CP-1251) Cyrilice (CP-1251) - + Greek (CP-1253) Řečtina (CP-1253) - + Hebrew (CP-1255) Hebrejština (CP-1255) - + Japanese (CP-932) Japonština (CP-932) - + Korean (CP-949) Korejština (CP-949) - + Simplified Chinese (CP-936) Zjednodušená čínština (CP-936) - + Thai (CP-874) Thajština (CP-874) - + Traditional Chinese (CP-950) Tradiční čínština (CP-950) - + Turkish (CP-1254) Turečtina (CP-1254) - + Vietnam (CP-1258) Vietnamština (CP-1258) - + Western European (CP-1252) Západoevropské jazyky (CP-1252) - + Character Encoding Kódování znaků - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6306,100 +6447,105 @@ za správnou reprezentaci znaků. Předvybraná volba by obvykle měla být správná. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Vyberte prosím kódování znaků. Kódování zodpovídá za správnou reprezentaci znaků. - + Song name singular Píseň - + Songs name plural Písně - + Songs container title Písně - + Exports songs using the export wizard. Exportuje písně průvodcem exportu. - + Add a new song. Přidat novou píseň. - + Edit the selected song. Upravit vybranou píseň. - + Delete the selected song. Smazat vybranou píseň. - + Preview the selected song. Náhled vybrané písně. - + Send the selected song live. Zobrazit vybranou píseň naživo. - + Add the selected song to the service. Přidat vybranou píseň ke službě. + + + Reindexing songs + Přeindexovávám písně + SongsPlugin.AuthorsForm - + Author Maintenance Údržba autorů - + Display name: Zobrazené jméno: - + First name: Křestní jméno: - + Last name: Příjmení: - + You need to type in the first name of the author. Je potřeba zadat křestní jméno autora. - + You need to type in the last name of the author. Je potřeba zadat příjmení autora. - + You have not set a display name for the author, combine the first and last names? Zobrazené jméno autora není zadáno. Má se zkombinovat křestní jméno a příjmení? @@ -6407,7 +6553,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Soubor nemá platnou příponu. @@ -6415,12 +6561,12 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.EasyWorshipSongImport - + Administered by %s Spravuje %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6432,12 +6578,12 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.EditBibleForm - + Meta Data Meta data - + Custom Book Names Uživatelské názvy knih @@ -6445,207 +6591,202 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.EditSongForm - + Song Editor Editor písně - + &Title: &Název: - + Alt&ernate title: &Jiný název: - + &Lyrics: &Text písně: - + &Verse order: &Pořadí veršů: - + Ed&it All &Upravit vše - + Title && Lyrics Název a text písně - + &Add to Song &Přidat k písni - + &Remove &Odstranit - + &Manage Authors, Topics, Song Books &Správa autorů, témat a zpěvníků - + A&dd to Song &Přidat k písni - + R&emove &Odstranit - + Book: Zpěvník: - + Number: Číslo: - + Authors, Topics && Song Book Autoři, témata a zpěvníky - + New &Theme Nový &motiv - + Copyright Information Informace o autorském právu - + Comments Komentáře - + Theme, Copyright Info && Comments Motiv, autorská práva a komentáře - + Add Author Přidat autora - + This author does not exist, do you want to add them? Tento autor neexistuje. Chcete ho přidat? - + This author is already in the list. Tento autor je už v seznamu. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Není vybrán platný autor. Buďto vyberte autora ze seznamu nebo zadejte nového autora a pro přidání nového autora klepněte na tlačítko "Přidat autora k písni". - + Add Topic Přidat téma - + This topic does not exist, do you want to add it? Toto téma neexistuje. Chcete ho přidat? - + This topic is already in the list. Toto téma je už v seznamu. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Není vybráno platné téma. Buďto vyberte téma ze seznamu nebo zadejte nové téma a pro přidání nového tématu klepněte na tlačítko "Přidat téma k písni". - + You need to type in a song title. Je potřeba zadat název písne. - + You need to type in at least one verse. Je potřeba zadat alespoň jednu sloku. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Pořadí částí písně není platné. Část odpovídající %s neexistuje. Platné položky jsou %s. - + Add Book Přidat zpěvník - + This song book does not exist, do you want to add it? Tento zpěvník neexistuje. Chcete ho přidat? - + You need to have an author for this song. Pro tuto píseň je potřeba zadat autora. - - You need to type some text in to the verse. - Ke sloce je potřeba zadat nějaký text. - - - + Linked Audio Připojený zvuk - + Add &File(s) Přidat &soubor(y) - + Add &Media Přidat &Médium - + Remove &All Odstranit &Vše - + Open File(s) Otevřít soubor(y) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Varování:</strong> Nejsou použity všechny sloky. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Pořadí částí písně není platné. Část odpovídající %s neexistuje. Platné položky jsou %s. @@ -6653,22 +6794,22 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.EditVerseForm - + Edit Verse Upravit sloku - + &Verse type: &Typ sloky: - + &Insert &Vložit - + Split a slide into two by inserting a verse splitter. Vložením oddělovače slok se snímek rozdělí na dva. @@ -6676,82 +6817,82 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.ExportWizardForm - + Song Export Wizard Průvodce exportem písní - + Select Songs Vybrat písně - + Check the songs you want to export. Zaškrtněte písně, které chcete exportovat. - + Uncheck All Odškrtnout vše - + Check All Zaškrtnout vše - + Select Directory Vybrat složku - + Directory: Složka: - + Exporting Exportuji - + Please wait while your songs are exported. Čekejte prosím, než písně budou exportovány. - + You need to add at least one Song to export. Je potřeba přidat k exportu alespoň jednu píseň. - + No Save Location specified Není zadáno umístění pro uložení - + Starting export... Spouštím export... - + You need to specify a directory. Je potřeba zadat složku. - + Select Destination Folder Vybrat cílovou složku - + Select the directory where you want the songs to be saved. Vybrat složku, kam se budou ukládat písně. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Tento průvode pomáhá exportovat písně do formátu <strong>OpenLyrics</strong>. Jedná se o otevřený a svobodný formát pro chvály. @@ -6759,172 +6900,172 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Vybrat dokumentové/prezentační soubory - + Song Import Wizard Průvodce importem písní - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Tento průvodce pomáhá importovat písně z různých formátů. Importování se spustí klepnutím níže na tlačítko další a výběrem formátu, ze kterého se bude importovat. - + Generic Document/Presentation Obecný dokument/prezentace - + Add Files... Přidat soubory... - + Remove File(s) Odstranit soubory - + Please wait while your songs are imported. Čekejte prosím, než písně budou importovány. - + OpenLP 2.0 Databases Databáze OpenLP 2.0 - + openlp.org v1.x Databases Databáze openlp.org v1.x - + Words Of Worship Song Files Soubory s písněmi Words of Worship - + Songs Of Fellowship Song Files Soubory s písněmi Songs Of Fellowship - + SongBeamer Files Soubory SongBeamer - + SongShow Plus Song Files Soubory s písněmi SongShow Plus - + Foilpresenter Song Files Soubory s písněmi Foilpresenter - + Copy Kopírovat - + Save to File Uložit do souboru - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import ze Songs of Fellowship byl zakázán, protože aplikace OpenLP nemůže přistupovat k aplikacím OpenOffice nebo LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import obecných dokumentů/prezentaci byl zakázán, protože aplikace OpenLP nemůže přistupovat k aplikacím OpenOffice nebo LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics nebo písně exportované z OpenLP 2.0 - + OpenLyrics Files Soubory OpenLyrics - + CCLI SongSelect Files Soubory CCLI SongSelect - + EasySlides XML File XML soubory EasySlides - + EasyWorship Song Database Databáze písní EasyWorship - + DreamBeam Song Files Soubory s písněmi DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Je potřeba upřesnit platnou složku s databází PowerSong 1.0. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Nejprve je nutno převést databázi ZionWorx do textového CSV souboru, jak je vysvětleno v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">uživatelské dokumentaci</a>. - + SundayPlus Song Files Soubory s písněmi SundayPlus - + This importer has been disabled. Tento importér byl zakázán. - + MediaShout Database Databáze MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importér je podporován jen ve Windows. Byl zakázán kvůli chybějícímu Python modulu. Pokud si přejete používat tento importér, bude potřeba nainstalovat modul "pyodbc". - + SongPro Text Files Textové soubory SongPro - + SongPro (Export File) SongPro (exportovaný soubor) - + In SongPro, export your songs using the File -> Export menu V aplikaci SongPro se písně exportují přes menu File -> Export @@ -6932,12 +7073,12 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.MediaFilesForm - + Select Media File(s) Vybrat mediální soubor(y) - + Select one or more audio files from the list below, and click OK to import them into this song. Vyberte jeden nebo více zvukových souborů ze seznamu níže a importovat je k písni lze klepnutím na tlačítko OK. @@ -6945,63 +7086,67 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.MediaItem - + Titles Názvy - + Lyrics Text písně - + CCLI License: CCLI Licence: - + Entire Song Celá píseň - + Are you sure you want to delete the %n selected song(s)? - Jste si jisti, že chcete smazat %n vybranou píseň?Jste si jisti, že chcete smazat %n vybrané písně?Jste si jisti, že chcete smazat %n vybraných písní? + + Jste si jisti, že chcete smazat %n vybranou píseň? + Jste si jisti, že chcete smazat %n vybrané písně? + Jste si jisti, že chcete smazat %n vybraných písní? + - + Maintain the lists of authors, topics and books. Spravovat seznamy autorů, témat a zpěvníků. - + copy For song cloning kopírovat - + Search Titles... Hledat název... - + Search Entire Song... Hledat celou píseň... - + Search Lyrics... Hledat text písně... - + Search Authors... Hledat autory... - + Search Song Books... Hledat zpěvníky... @@ -7009,7 +7154,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Není možno otevřít databázi MediaShout. @@ -7017,7 +7162,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Neplatná databáze písní openlp.org 1.x. @@ -7025,7 +7170,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Neplatná databáze písní OpenLP 2.0. @@ -7033,7 +7178,7 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportuji "%s"... @@ -7041,35 +7186,55 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.PowerSongImport - + No songs to import. Žádné písně k importu. - + Verses not found. Missing "PART" header. Sloky nenalezeny. Chybějící hlavička "PART". + + + No %s files found. + Nenalezeny žádné soubory %s. + + + + Invalid %s file. Unexpected byte value. + Neplatný soubor %s. Neočekávaná bajtová hodnota. + + + + Invalid %s file. Missing "TITLE" header. + Neplatný soubor %s. Chybějící hlavička "TITLE". + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Neplatný soubor %s. Chybějící hlavička "COPYRIGHTLINE". + SongsPlugin.SongBookForm - + Song Book Maintenance Údržba zpěvníku - + &Name: &Název: - + &Publisher: &Vydavatel: - + You need to type in a name for the book. Je potřeba zadat název zpěvníku. @@ -7077,12 +7242,12 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.SongExportForm - + Your song export failed. Export písně selhal. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export dokončen. Pro import těchto souborů použijte import z <strong>OpenLyrics</strong>. @@ -7090,27 +7255,27 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.SongImport - + copyright autorská práva - + The following songs could not be imported: Následující písně nemohly být importovány: - + Cannot access OpenOffice or LibreOffice Nelze přistupovat k aplikacím OpenOffice nebo LibreOffice - + Unable to open file Nelze otevřít soubor - + File not found Soubor nenalezen @@ -7118,107 +7283,107 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.SongMaintenanceForm - + Could not add your author. Nemohu přidat autora. - + This author already exists. Tento autor již existuje. - + Could not add your topic. Nemohu přidat téma. - + This topic already exists. Toto téma již existuje. - + Could not add your book. Nemohu přidat zpěvník. - + This book already exists. Tento zpěvník již existuje. - + Could not save your changes. Nemohu uložit změny. - + Could not save your modified author, because the author already exists. Nemohu uložit upraveného autora, protože tento autor již existuje. - + Could not save your modified topic, because it already exists. Nemohu uložit upravené téma, protože již existuje. - + Delete Author Smazat autora - + Are you sure you want to delete the selected author? Jste si jisti, že chcete smazat vybraného autora? - + This author cannot be deleted, they are currently assigned to at least one song. Nemohu smazat autora, protože je v současné době přiřazen alespoň k jedné písni. - + Delete Topic Smazat téma - + Are you sure you want to delete the selected topic? Jste si jisti, že opravdu chcete smazat vybrané téma? - + This topic cannot be deleted, it is currently assigned to at least one song. Nemohu smazat toto téma, protože je v současné době přiřazeno alespoň k jedné písni. - + Delete Book Smazat zpěvník - + Are you sure you want to delete the selected book? Jste si jisti, že chcete smazat vybraný zpěvník? - + This book cannot be deleted, it is currently assigned to at least one song. Nemohu smazat tento zpěvník, protože je v současné době přiřazen alespoň k jedné písni. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s již existuje. Přejete si vytvořit písně s autorem %s a použít již existujícího autora %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Téma %s již existuje. Přejete si vytvořit písně s tématem %s a použít již existující téma %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Zpěvník %s již existuje. Přejete si vytvořít písně se zpěvníkem %s a použít již existující zpěvník %s? @@ -7226,27 +7391,27 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.SongsTab - + Songs Mode Režim písně - + Enable search as you type Zapnout hledat během psaní - + Display verses on live tool bar Zobrazit sloky v nástrojové liště naživo - + Update service from song edit Aktualizovat službu při úpravě písně - + Import missing songs from service files Import chybějících písní ze souborů služby @@ -7254,17 +7419,17 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.TopicsForm - + Topic Maintenance Údržba témat - + Topic name: Název tématu: - + You need to type in a topic name. Je potřeba zadat název tématu. @@ -7272,37 +7437,37 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.VerseType - + Verse Sloka - + Chorus Refrén - + Bridge Přechod - + Pre-Chorus Předrefrén - + Intro Předehra - + Ending Zakončení - + Other Ostatní @@ -7310,14 +7475,29 @@ Kódování zodpovídá za správnou reprezentaci znaků. SongsPlugin.ZionWorxImport - + Error reading CSV file. Chyba při čtení CSV souboru. - + File not valid ZionWorx CSV format. Soubor není platný ZionWorx CSV formát. + + + Line %d: %s + Řádek %d: %s + + + + Decoding error: %s + Chyba dekódování: %s + + + + Record %d + Záznam %d + - \ No newline at end of file + diff --git a/resources/i18n/da.ts b/resources/i18n/da.ts index 81ed7f25a..aac6dc5ca 100644 --- a/resources/i18n/da.ts +++ b/resources/i18n/da.ts @@ -1,107 +1,108 @@ - + + AlertsPlugin - + &Alert &Meddelelse - + Show an alert message. Vis en meddelelse. - + Alert name singular Meddelelse - + Alerts name plural Meddelelser - + Alerts container title Meddelelser - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - <strong>Meddelelsesudvidelse</strong><br />Meddelelsesudvidelsen kontrollerer visningen af beskeder fra søndagsskolen på skærmen. + <strong>Meddelelser-udvidelse</strong><br />Meddelelsesudvidelsen kontrollerer visningen af beskeder fra søndagsskolen på skærmen. AlertsPlugin.AlertForm - + Alert Message Meddelelse - + Alert &text: Te&kst: - + &New &Ny - + &Save &Gem - + Displ&ay V&is - + Display && Cl&ose Vis && l&uk - + New Alert Ny meddelelse - + You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke angivet nogen tekst i din meddelelse. Skriv noget tekst og tryk så på Ny. - + &Parameter: &Parameter: - + No Parameter Found Intet parameter fundet - + You have not entered a parameter to be replaced. Do you want to continue anyway? Du har ikke indtastet et parameter der skal erstattes. Vil du fortsætte alligevel? - + No Placeholder Found Ingen pladsholder fundet - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Meddelelsesteksten indeholder ikke '<>'. Vil du fortsætte alligevel? @@ -118,32 +119,32 @@ Vil du fortsætte alligevel? AlertsPlugin.AlertsTab - + Font Skrifttype - + Font name: Skriftnavn: - + Font color: Skriftfarve: - + Background color: Baggrundsfarve: - + Font size: Skriftstørrelse: - + Alert timeout: Varighed af meddelse: @@ -151,559 +152,558 @@ Vil du fortsætte alligevel? BiblesPlugin - + &Bible &Bibel - + Bible name singular Bibel - + Bibles name plural Bibler - + Bibles container title Bibler - + No Book Found Ingen bog fundet - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen matchende bog kunne findes i denne bibel. Tjek om du har stavet bogens navn rigtigt. - + Import a Bible. Importér en bibel. - + Add a new Bible. Tilføj en ny bibel. - + Edit the selected Bible. Redigér den valgte bibel. - + Delete the selected Bible. Slet den valgte bibel. - + Preview the selected Bible. Forhåndsvis den valgte bibel. - + Send the selected Bible live. Fremvis den valgte bibel. - + Add the selected Bible to the service. Tilføj den valgte bibel til programmet. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - <strong>Bibel-udvidelsesmodul</strong><br />Bibeludvidelsen gør det muligt at vise bibelvers fra forskellige kilder i løbet af gudstjenesten. + <strong>Bibel-udvidelse</strong><br />Bibeludvidelsen gør det muligt at vise bibelvers fra forskellige kilder i løbet af gudstjenesten. - + &Upgrade older Bibles &Opgradér ældre bibler - + Upgrade the Bible databases to the latest format. Opgradér bibel-databaserne til det nyeste format. - + Genesis 1. Mosebog - + Exodus 2. Mosebog - + Leviticus 3. Mosebog - + Numbers 4. Mosebog - + Deuteronomy 5. Mosebog - + Joshua Josvabogen - + Judges Dommerbogen - + Ruth Ruths Bog - + 1 Samuel 1. Samuelsbog - + 2 Samuel 2. Samuelsbog - + 1 Kings 1. Kongebog - + 2 Kings 2. Kongebog - + 1 Chronicles 1. Krønikebog - + 2 Chronicles 2. Krønikebog - + Ezra Ezras Bog - + Nehemiah Nehemias' Bog - + Esther Esters Bog - + Job Jobs Bog - + Psalms Salmernes Bog - + Proverbs Ordsprogenes Bog - + Ecclesiastes Prædikerens Bog - + Song of Solomon Højsangen - + Isaiah Esajas' Bog - + Jeremiah Jeremias' Bog - + Lamentations Klagesangene - + Ezekiel Ezekiels Bog - + Daniel Daniels Bog - + Hosea Hoseas' Bog - + Joel Joels Bog - + Amos Amos' Bog - + Obadiah Obadias' Bog - + Jonah Jonas' Bog - + Micah Mikas Bog - + Nahum Nahums Bog - + Habakkuk Habakkuks Bog - + Zephaniah Sefanias' Bog - + Haggai Haggajs Bog - + Zechariah Zakarias' Bog - + Malachi Malakias' Bog - + Matthew Matthæusevangeliet - + Mark Markusevangeliet - + Luke Lukasevangeliet - + John Johannesevangeliet - + Acts Apostlenes Gerninger - + Romans Romerbrevet - + 1 Corinthians 1. Korintherbrev - + 2 Corinthians 2. Korintherbrev - + Galatians Galaterbrevet - + Ephesians Efeserbrevet - + Philippians Filipperbrevet - + Colossians Kolossenserbrevet - + 1 Thessalonians 1. Thessalonikerbrev - + 2 Thessalonians 2. Thessalonikerbrev - + 1 Timothy 1. Timotheusbrev - + 2 Timothy 2. Timotheusbrev - + Titus Titusbrevet - + Philemon Filemonbrevet - + Hebrews Hebræerbrevet - + James Jakobsbrevet - + 1 Peter 1. Petersbrev - + 2 Peter 2. Petersbrev - + 1 John 1. Johannesbrev - + 2 John 2. Johannesbrev - + 3 John 3. Johannesbrev - + Jude Judasbrevet - + Revelation Johannes' Åbenbaring - + Judith Judits Bog - + Wisdom Visdommens Bog - + Tobit Tobits Bog - + Sirach Siraks Bog - + Baruch Baruks Bog - + 1 Maccabees 1. Makkabæerbog - + 2 Maccabees 2. Makkabæerbog - + 3 Maccabees 3. Makkabæerbog - + 4 Maccabees 4. Makkabæerbog - + Rest of Daniel Tilføjelser til Daniels Bog - + Rest of Esther - Tilføjelser til Esters Bog - + Tilføjelser til Esters Bog - + Prayer of Manasses Manasses Bøn - + Letter of Jeremiah Jeremias' Brev - + Prayer of Azariah Azarias bøn - + Susanna Susannah - + Bel Bel og Dragen - + 1 Esdras 3. Esdras - + 2 Esdras 4. Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - .|v|V|vers;;-|til;;,|og;;slut + .|:|v|V|vers;;-|til;;,|og;;slut BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - Du skal angive et navn til denne udgave af Bibelen. + Du skal angive et udgavenavn til din bibel. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du skal angive din bibels ophavsret. Bibler i Public Domain skal markeres som sådan. - + Bible Exists Bibel eksisterer - + This Bible already exists. Please import a different Bible or first delete the existing one. Denne bibel eksisterer allerede. Importér en anden bibel for at slette den eksisterende. - + You need to specify a book name for "%s". Du skal angive et bognavn for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. Bognavnet "%s" er ikke korrekt. -Tal kan kun bruges i begyndelsen og skal følges af et +Tal kan kun benyttes i begyndelsen og skal følges af et eller flere ikke-numeriske tegn. - + Duplicate Book Name Duplikeret bognavn - + The Book Name "%s" has been entered more than once. Bognavnet "%s" er blevet brugt mere end én gang. @@ -711,39 +711,39 @@ eller flere ikke-numeriske tegn. BiblesPlugin.BibleManager - + Scripture Reference Error Fejl med skriftsted - + Web Bible cannot be used Netbibelen kan ikke bruges - + Text Search is not available with Web Bibles. Tekstsøgning virker ikke med netbibler. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Du indtastede ikke et søgeord. Du kan opdele forskellige søgeord med mellemrum for at søge efter alle søgeordene, og du kan opdele dem med et komma for at søge efter ét af dem. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - Der er ikke installeret nogle bibler på nuværende tidspunkt. Benyt import-guiden til at installere én eller flere bibler. + Der er ikke installeret nogle bibler på nuværende tidspunkt. Benyt importerings-guiden til at installere én eller flere bibler. - + No Bibles Available Ingen bibler tilgængelige - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -766,79 +766,79 @@ Bog Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Visning af vers - + Only show new chapter numbers Vis kun nye kapitelnumre - + Bible theme: Bibeltema: - + No Brackets Ingen paranteser - + ( And ) ( Og ) - + { And } { Og } - + [ And ] [ Og ] - + Note: Changes do not affect verses already in the service. Bemærk: Ændringer påvirker ikke vers der allerede er tilføjet til programmet. - + Display second Bible verses Vis sekundære bibelvers - + Custom Scripture References Brugerdefinerede skriftstedshenvisninger - + Verse Separator: Vers-separator: - + Range Separator: Rækkevidde-separator: - + List Separator: Liste-separator: - + End Mark: Slutmærke: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -847,7 +847,7 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -856,7 +856,7 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -865,7 +865,7 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -874,29 +874,29 @@ De skal adskilles af en lodret bjælke "|". Ryd denne linje for at benytte standardværdien. - + English Engelsk - + Default Bible Language Standard bibelsprog - + Book name language in search field, search results and on display: Sproget for bognavne i søgefelt, -søgeresultater og på skærmen: +søgeresultater og ved visning: - + Bible Language Bibelsprog - + Application Language Programsprog @@ -904,50 +904,50 @@ søgeresultater og på skærmen: BiblesPlugin.BookNameDialog - + Select Book Name Vælg bogens navn - + Current name: Nuværende navn: - + Corresponding name: Tilsvarende navn: - + Show Books From Vis bøger fra - + Old Testament Gamle Testamente - + New Testament Nye Testamente - + Apocrypha Apokryfe skrifter - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Det følgende bognavn kan ikke findes internt. Vælg det tilsvarende navn fra listen. BiblesPlugin.BookNameForm - + You need to select a book. Du er nødt til først at vælge en bog. @@ -955,18 +955,18 @@ søgeresultater og på skærmen: BiblesPlugin.CSVBible - + Importing books... %s Importerer bøger... %s - + Importing verses from %s... Importing verses from <book name>... Importerer vers fra %s... - + Importing verses... done. Importerer vers... færdig. @@ -974,108 +974,108 @@ søgeresultater og på skærmen: BiblesPlugin.EditBibleForm - + Bible Editor Bibelredigering - + License Details Licensdetaljer - + Version name: Navn på udgave: - + Copyright: Ophavsret: - + Permissions: Tilladelser: - + Default Bible Language Standardsprog for bibler - + Book name language in search field, search results and on display: - + Sprog for bognavn i søgefelt, søgeresultater og ved visning: - + Global Settings Globale indstillinger - + Bible Language Bibelsprog - + Application Language Programsprog - + English Engelsk - + This is a Web Download Bible. It is not possible to customize the Book Names. Dette er en bibel som er hentet fra nettet. Det er ikke muligt at tilpasse bognavnene. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + For at benytte brugerdefinerede bognavne må "Bibelsprog" være valgt i metadata fanen, eller hvis "Globale indstillinger" er valgt, på bibel-siden i Konfigurér OpenLP. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrerer bibelen og indlæser bøger... - + Registering Language... Registrerer sprog... - + Importing %s... Importing <book name>... Importerer %s... - + Download Error Hentningsfejl - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Der opstod en fejl ved hentningen af dit valg af vers. Efterse din internetforbindelse, og hvis fejlen fortsat opstår så overvej at rapportere fejlen. - + Parse Error Fortolkningfejl - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Der opstod et problem med at udpakke dit valg af vers. Hvis denne fejl fortsætter med at opstå, så overvej at rapportere fejlen. @@ -1085,17 +1085,17 @@ Det er ikke muligt at tilpasse bognavnene. Bible Import Wizard - Bibel-import guide + Guide til importering af bibler This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Denne guide vil hjælpe dig med at importere bibler med forskellige formater. Klik på næsteknappen herunder for at begynde processen ved at vælge et format at importere fra. + Denne guide vil hjælpe dig med at importere bibler i forskellige formater. Klik på næsteknappen herunder for at begynde processen ved at vælge et format at importere fra. Web Download - Hentning fra netten + Hentning fra nettet @@ -1145,7 +1145,7 @@ Det er ikke muligt at tilpasse bognavnene. License Details - Licens detaljer + Licensdetaljer @@ -1205,7 +1205,7 @@ Det er ikke muligt at tilpasse bognavnene. CSV File - CSV fil + CSV-fil @@ -1247,23 +1247,23 @@ Det er ikke muligt at tilpasse bognavnene. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Registrerede bibel. Bemærk venligst at vers hentes på -forespørgsel og en internetforbindelse er derfor påkrævet. +forespørgsel og at en internetforbindelse derfor er påkrævet. BiblesPlugin.LanguageDialog - + Select Language Vælg sprog - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP er ikke i stand til at bestemme bibeloversættelsens sprog. Vælg sproget fra listen herunder. - + Language: Sprog: @@ -1271,7 +1271,7 @@ forespørgsel og en internetforbindelse er derfor påkrævet. BiblesPlugin.LanguageForm - + You need to choose a language. Du er nødt til at vælge et sprog. @@ -1279,92 +1279,92 @@ forespørgsel og en internetforbindelse er derfor påkrævet. BiblesPlugin.MediaItem - + Quick Hurtig - + Find: Find: - + Book: Bog: - + Chapter: Kapitel: - + Verse: Vers: - + From: Fra: - + To: Til: - + Text Search Tekstsøgning - + Second: Anden: - + Scripture Reference Skriftsted - + Toggle to keep or clear the previous results. Vælg om du vil beholde eller fjerne de forrige resultater. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - Du kan ikke kombinere søgeresultater med enkelte og dobbelte bibelvers. Vil du slette dine søgeresultater og starte en ny søgning? + Du kan ikke kombinere søgeresultater med enkelte og dobbelte bibelvers. Vil du slette dine søgeresultater og begynde en ny søgning? - + Bible not fully loaded. Bibel ikke færdigindlæst. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den sekundære bibel indeholder ikke alle versene der er i den primære bibel. Kun de vers der kan findes i begge bibler vil blive vist. %d vers er ikke blevet inkluderet blandt resultaterne. - + Search Scripture Reference... Søg skriftstedshenvisning... - + Search Text... Søgetekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1376,15 +1376,15 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Forkert bibel-filtype. OpenSong-bibler er muligvis komprimerede. Du er nødt til at udpakke dem før at de kan importeres. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1393,12 +1393,12 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Bestemmer indkodning (dette kan tage et par minutter)... - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1407,214 +1407,215 @@ Du bliver nødt til at genimportere denne bibel for at bruge den igen. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Vælg en mappe til sikkerhedskopiering - + Bible Upgrade Wizard - + Guide til opgradering af bibler - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Denne guide vil hjælpe dig med at opgradere dine eksisterende bibler fra en tidligere udgave af OpenLP 2. Klik på næste-knappen herunder for at begynde opgraderingen. - + Select Backup Directory Vælg mappe til sikkerhedskopiering - + Please select a backup directory for your Bibles Vælg en mappe til sikkerhedskopiering af dine bibler - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Tidligere udgaver af OpenLP 2.0 kan ikke benytte opgraderede bibler. Dette vil lave en sikkerhedskopi af dine nuværende bibler så at du simpelt og nemt kan kopiere filerne tilbage til din OpenLP datamappe hvis du får brug for at gå tilbage til en tidligere udgave af OpenLP. Vejledning til hvordan man genopretter filer kan findes blandt vores <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - + Vælg en placering til sikkerhedskopier af dine bibler. - + Backup Directory: Mappe til sikkerhedskopiering: - + There is no need to backup my Bibles - Der er ikke brug for at lave backup af mine bibler + Der er ikke brug for at lave sikkerhedskopier af mine bibler - + Select Bibles Vælg bibler - + Please select the Bibles to upgrade Vælg de bibler der skal opgraderes - + Upgrading Opgraderer - + Please wait while your Bibles are upgraded. Vent imens dine bibler bliver opgraderet. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - Sikkerhedskopieringen lykkedes ikke. + Sikkerhedskopieringen mislykkedes. For at sikkerhedskopiere dine bibler skal du have tilladelse til at skrive til den givne mappe. - + Upgrading Bible %s of %s: "%s" Failed Opgradering af bibel %s af %s: "%s" -Fejlede +Slog fejl - + Upgrading Bible %s of %s: "%s" Upgrading ... Opgraderer bibel %s af %s: "%s" Opgraderer ... - + Download Error Hentningsfejl - + To upgrade your Web Bibles an Internet connection is required. - + For at opgradere dine netbibler skal der være forbindelse til internettet. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Opgraderer bibel %s af %s: "%s" Opgraderer %s ... - + Upgrading Bible %s of %s: "%s" Complete Opgraderer bibel %s af %s: "%s" Færdig - + , %s failed , %s slog fejl - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Opgraderer bibel(er): %s lykkedes %s +Læg mærke til at vers fra netbibler hentes ved forspørgsel og derfor er en internetforbindelse påkrævet. - + Upgrading Bible(s): %s successful%s Opgradering af bibler: %s fuldført%s - + Upgrade failed. Opgradering slog fejl. - + You need to specify a backup directory for your Bibles. Du er nødt til at vælge en sikkerhedskopi-mappe til dine bibler. - + Starting upgrade... - Starter opgradering... + Påbegynder opgradering... - + There are no Bibles that need to be upgraded. - Der er ingen bibler der har brug for at blive opdateret. + Der er ingen bibler der har brug for at blive opgraderet. CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>"Brugerdefineret dias"-udvidelse</strong><br />"Brugerdefineret dias"-udvidelsen gør det muligt at lave brugerdefinerede tekstdias der kan vises på skærmen på samme måde som sangteksterne. Denne udvidelse giver større frihed end sangudvidelsen. - + Custom Slide name singular Brugerdefineret dias - + Custom Slides name plural Brugerdefinerede dias - + Custom Slides container title Brugerdefinerede dias - + Load a new custom slide. Indlæs et nyt brugerdefineret dias. - + Import a custom slide. Importér et brugerdefineret dias. - + Add a new custom slide. Tilføj et nyt brugerdefineret dias. - + Edit the selected custom slide. Redigér det valgte brugerdefinerede dias. - + Delete the selected custom slide. Slet det valgte brugerdefinerede dias. - + Preview the selected custom slide. Forhåndsvis det valgte brugerdefinerede dias. - + Send the selected custom slide live. - Send det valgte brugerdefinerede dias live. + Fremvis det valgte brugerdefinerede dias. - + Add the selected custom slide to the service. Tilføj det valgte brugerdefinerede dias til programmet. @@ -1622,12 +1623,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Brugerdefineret visning - + Display footer Vis sidefod @@ -1635,62 +1636,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Redigér brugerdefinerede dias - + &Title: &Titel: - + Add a new slide at bottom. Tilføj et nyt dias i bunden. - + Edit the selected slide. Redigér det valgte dias. - + Edit all the slides at once. Redigér alle dias på samme tid. - + Split a slide into two by inserting a slide splitter. Del et dias op i to ved at indsætte en diasopdeler. - + The&me: T&ema: - + &Credits: &Bidragsydere: - + You need to type in a title. Du skal skrive en titel. - + You need to add at least one slide Du skal tilføje mindst ét dias - + Ed&it All Re&digér alle - + Insert Slide Indsæt dias @@ -1698,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide Redigér dias @@ -1706,68 +1707,71 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Er du sikker på at du vil slette det %n valgte dias?Er du sikker på at du vil slette de %n valgte dias? + + Er du sikker på at du vil slette det %n valgte dias? + Er du sikker på at du vil slette de %n valgte dias? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - + <strong>Billede-udvidelse</strong><br />Billedeudvidelsen gør det muligt at vise billeder <br/>En af denne udvidelses særlige egenskaber er evnen til at gruppere en række billeder i programhåndteringen, hvilket gør det nemmere at vise flere billeder i træk. Denne udvidelse kan også benytte OpenLPs automatiske afspilning til at lave et diasshow der kører af sig selv. Udover det kan billeder fra denne udvidelse benyttes til at tilsidesætte det nuværende temas baggrund, hvilket viser tekstbaserede punkter som sange med det valgte billede som baggrund istedet for baggrunden forsynet af temaet. - + Image name singular Billede - + Images name plural Billeder - + Images container title Billeder - + Load a new image. Indlæs et nyt billede. - + Add a new image. Tilføj et nyt billede. - + Edit the selected image. Redigér det valgte billede. - + Delete the selected image. Slet det valgte billede. - + Preview the selected image. Forhåndsvis det valgte billede. - + Send the selected image live. - Send det valgte billede live. + Fremvis det valgte billede. - + Add the selected image to the service. Tilføj det valgte billede til programmet. @@ -1775,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Vælg bilag @@ -1783,123 +1787,123 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Vælg billede(r) - + You must select an image to delete. Du skal vælge et billede som skal slettes. - + You must select an image to replace the background with. Du skal vælge et billede til at erstatte baggrunden. - + Missing Image(s) Manglende billede(r) - + The following image(s) no longer exist: %s De følgende billeder eksisterer ikke længere: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? De følgende billeder eksisterer ikke længere: %s -Vil du tilføje de andre billede alligevel? +Vil du tilføje de andre billeder alligevel? - + There was a problem replacing your background, the image file "%s" no longer exists. Der opstod et problem med at erstatte din baggrund; billedfilen "%s" eksisterer ikke længere. - + There was no display item to amend. - + Der var intet visningspunkt at ændre. ImagesPlugin.ImageTab - + Background Color Baggrundsfarve - + Default Color: Standardfarve: - + Visible background for images with aspect ratio different to screen. - + Synlig baggrund for billeder med anderledes dimensionsforhold end skærm. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - <strong>Medieudvidelse</strong><br />Medieudvidelsen gør det muligt at afspille lyd og video. + <strong>Medie-udvidelse</strong><br />Medieudvidelsen gør det muligt at afspille lyd og video. - + Media name singular Medie - + Media name plural Medier - + Media container title - Medie + Medier - + Load new media. Indlæs nye medier. - + Add new media. Tilføj nye medier. - + Edit the selected media. Redigér de valgte medier. - + Delete the selected media. Slet de valgte medier. - + Preview the selected media. Forhåndsvis de valgte medier. - + Send the selected media live. Fremvis det valgte medie. - + Add the selected media to the service. Tilføj de valgte medier til programmet. @@ -1907,57 +1911,57 @@ Vil du tilføje de andre billede alligevel? MediaPlugin.MediaItem - + Select Media Vælg medier - + You must select a media file to delete. Vælg den mediefil du vil slette. - + You must select a media file to replace the background with. Vælg den mediefil du vil erstatte baggrunden med. - + There was a problem replacing your background, the media file "%s" no longer exists. Der opstod et problem med at erstatte din baggrund. Mediefilen "%s" eksisterer ikke længere. - + Missing Media File Manglende mediefil - + The file %s no longer exists. Filen %s eksisterer ikke længere. - + Videos (%s);;Audio (%s);;%s (*) Videoer (%s);;Lyd (%s);;%s (*) - + There was no display item to amend. - + Der var intet visningspunkt at ændre. - + Unsupported File Ikke-understøttet fil - + Automatic Automatisk - + Use Player: Benyt afspiller: @@ -1965,22 +1969,22 @@ Vil du tilføje de andre billede alligevel? MediaPlugin.MediaTab - + Available Media Players Tilgængelige medieafspillere - + %s (unavailable) %s (utilgængelig) - + Player Order Afspilningsrækkefølge - + Allow media player to be overridden Tillad at medieafspilleren bliver tilsidesat @@ -1988,17 +1992,17 @@ Vil du tilføje de andre billede alligevel? OpenLP - + Image Files Billedfiler - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2014,61 @@ Skal OpenLP opgradere dem nu? OpenLP.AboutForm - + Credits Bidragsydere - + License Licens - - Contribute - Hjælp os - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Dette program er fri software; du kan redistribuere det og/eller redigere det under betingelserne i GNU General Public License, som udgivet af Free Software Foundation; version 2 af licensen. - + This program 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 below for more details. Dette program udgives i håbet om at det vil være brugbart, men UDEN NOGEN GARANTI; endda uden den forudsatte garanti om SALGSEGNETHED eller EGNETHED TIL ET BESTEMT FORMÅL. Se herunder for flere detaljer. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Ophavsret © 2004-2012 %s +Delvis ophavsret © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP er et gratis program til projektorfremvisning i kirker, eller til fremvisning af sangtekster, og kan benyttes til at fremvise dias med sange, bibelvers, videoer, billeder og endda præsentationer (Hvis Impress, PowerPoint, eller PowerPoint Viewer er installeret) til gudstjenester ved hjælp af en computer og en projektor. + +Lær mere om OpenLP: http://openlp.org/ + +OpenLP er skrevet og vedligeholdt af frivillige. Hvis du ønsker at se flere gratis kristne programmer blive skrevet, så overvej venligst at melde dig som frivillig på knappen herunder. + + + + Volunteer + Slut dig til os + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2102,7 +2140,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektleder + Projektets ledere %s Udviklere @@ -2114,19 +2152,27 @@ Bidragsydere Testere %s -Pakkere +Pakkevedligeholdere %s Oversættere Afrikaans (af) %s + Tjekkisk (cs) + %s + Dansk (da) + %s Tysk (de) %s - Engelsk, Storbritannien (en_GB) + Græsk (el) + %s + Engelsk, Storbrittanien (en_GB) %s Engelsk, Sydafrika (en_ZA) %s - Estland (et) + Spansk (es) + %s + Estisk (et) %s Fransk (fr) %s @@ -2142,229 +2188,207 @@ Oversættere %s Russisk (ru) %s + Svensk (sv) + %s -Brugervejledning +Dokumentation %s -Bygget med +Lavet med Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen ikoner: http://oxygen-icons.org/ + Oxygen Icons: http://oxygen-icons.org/ Afsluttende tak - "For således elskede Gud verden - at han gav sin enebårne søn for at enhver - som tror på ham ikke skal fortabes, - men have evigt liv." -- Johannes 3:16 + "For således elskede Gud verden, at han + gav sin enbårne søn, for at enhver som + tror på ham, ikke skal fortabes, men + have evigt liv." -- John 3:16 - Og sidst, men ikke mindst, går den sidste tak til - Gud vor fader, for at sende sin søn til at dø - på korset, og derved sætte os fri fra synd. Vi - bringer dette stykke software gratis til dig fordi - han har gjort os fri. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - open source sangtekstfremviser - -OpenLP er et gratis program til fremvisning af sangtekster, som kan bruges til at vise dias med sange, bibelvers, videoer, billeder og endda diasshows (hvis Impress, PowerPoint, eller PowerPoint Viewer er installeret) i forbindelse med gudstjenester ved hjælp af en computer og en projektor. - -Lær mere om OpenLP på: http://openlp.org/ - -OpenLP er lavet- og vedligeholdt af frivillige. Hvis du kunne tænke dig at der blev lavet flere gratis kristne programmer, så bedes du overveje at bidrage ved at trykke på knappen herunder. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Ophavsret © 2004-2012 %s -Delvis ophavsret © 2004-2012 %s + Og sidst, men ikke mindst, går vores tak + til Gud vor fader, for at han sendte sin + søn til at dø på korset, og derved frigøre + os fra synd. Vi giver dette program til + dig kvit og frit fordi han har sat os fri. OpenLP.AdvancedTab - + UI Settings Brugerfladeindstillinger - + Number of recent files to display: Antal af seneste filer der skal vises: - + Remember active media manager tab on startup Husk den aktive mediehåndteringsfane ved opstart - + Double-click to send items straight to live - Dobbeltklik for at fremvise emner direkte + Dobbeltklik for at fremvise punkter direkte - + Expand new service items on creation - + Udvid nye programpunkter ved oprettelse - + Enable application exit confirmation - + Benyt bekræftigelse under lukning af programmet - + Mouse Cursor Musemarkør - + Hide mouse cursor when over display window Gem musemarkøren når den er over visningsvinduet - + Default Image Standardbillede - + Background color: Baggrundsfarve: - + Image file: Billedfil: - + Open File - Åben fil + Åbn fil - + Advanced Avanceret - + Preview items when clicked in Media Manager - + Forhåndsvis elementer når de klikkes på i mediehåndteringen - + Click to select a color. Klik for at vælge en farve. - + Browse for an image file to display. Find en billedfil som skal vises. - + Revert to the default OpenLP logo. Vend tilbage til standard OpenLP logoet. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Program %d-%m-%Y %H-%M - + Default Service Name Standard programnavn - + Enable default service name - + Benyt standardnavn for programmer - + Date and Time: Dato og tid: - + Monday Mandag - + Tuesday Tirsdag - + Wednesday Onsdag - + Thurdsday Torsdag - + Friday Fredag - + Saturday Lørdag - + Sunday Søndag - + Now Nu - + Time when usual service starts. - + Klokkeslet hvor mødet normalt begynder. - + Name: Navn: - + Consult the OpenLP manual for usage. - + Se OpenLP-manualen for info om brug. - + Revert to the default service name "%s". - + Gå tilbage til standardnavnet for programmer "%s". - + Example: Eksempel: - + X11 X11 @@ -2374,129 +2398,182 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Omgå X11 vindueshåndtering - + Syntax error. - + Syntaksfejl. - + Data Location - + Placering af data - + Current path: Nuværende sti: - + Custom path: Brugerdefineret sti: - + Browse for new data file location. - + Vælg et nyt sted til opbevaring af data. - + Set the data location to the default. - + Sæt dataplaceringen til standard. - + Cancel Annullér - + Cancel OpenLP data directory location change. - + Annullér ændringen af placeringen af OpenLP-data. - + Copy data to new location. Kopiér data til ny placering. - + Copy the OpenLP data files to the new location. Kopiér OpenLP datafilerne til en ny placering. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>ADVARSEL:</strong> Den nye datamappe indeholder OpenLP datafiler. Disse filer vil blive slettet under en kopiering. - + Data Directory Error - + Fejl i datamappe - + Select Data Directory Location - + Vælg placeringen af datamappen - + Confirm Data Directory Change - + Bekræft ændringen af datamappen - + Reset Data Directory - + Nulstil datamappe - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Er du sikker på at du vil ændre placeringen af datamappen til standard-placeringen? + +Denne placering vil blive benyttet når OpenLP lukkes. - + Overwrite Existing Data - + Overskriv eksisterende data + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP datamappe blev ikke fundet + +%s + +Denne datamappe blev tidligere ændret fra OpenLPs standardplacering. Hvis den nye placering var på et flytbart medie, så er dette medie nødt til at blive gjort tilgængelig. + +Klik "Nej" for at stoppe med at indlæse OpenLP, så at du kan ordne problemet. + +Klik "Ja" for at nulstille datamappen til dens standardplacering. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Er du sikker på at du vil ændre placeringen af OpenLP-datamappen til: + +%s + +Datamappen vil blive ændret når OpenLP lukkes. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + ADVARSEL: + +Placeringen du har valgt + +%s + +ser ud til at indeholde OpenLP-datafiler. Ønsker du at erstatte disse filer med de nuværende datafiler? OpenLP.ExceptionDialog - + Error Occurred Fejl opstod - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Ups! OpenLP stødte ind i et problem, og kunne ikke gendanne. Teksten i kassen herunder indeholder information som kan være nyttig for OpenLP-udviklerne, så send venligst en e-mail til bugs@openlp.org sammen med en detaljeret beskrivelse af, hvad du foretog dig da problemet opstod. - + Send E-Mail Send e-mail - + Save to File Gem til fil - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Indtast venligst en beskrivelse af det du foretog dig der fik denne fejl til at opstå (Mindst 20 tegn) - + Attach File Vedhæft fil - + Description characters to enter : %s Antal tegn i beskrivelsen der skal indtastes : %s @@ -2504,24 +2581,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Gem fejlrapport - + Text files (*.txt *.log *.text) - Tekst filer (*.txt *.log *.text) + Tekst-filer (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2536,10 +2613,23 @@ Version: %s --- Library Versions --- %s - + **OpenLP fejlrapport** +Udgave: %s + +--- Undtagelsens detaljer --- + +%s + + --- Undtagelsens traceback --- +%s +--- Information om system --- +%s +--- Biblioteksudgaver --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2555,41 +2645,55 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + *OpenLP fejlrapport* + +Udgave: %s + +--- Undtagelsens detaljer. --- + +%s + + --- Undtagelsens traceback --- +%s +--- Information om system --- +%s +--- Biblioteksudgaver --- +%s +Inholdet i fejlrapporten bedes skrives på engelsk, da udviklerne er fra mange forskellige nationaliteter. OpenLP.FileRenameForm - + File Rename - + Omdøb fil - + New File Name: Nyt filnavn: - + File Copy - + Kopiér fil OpenLP.FirstTimeLanguageForm - + Select Translation Vælg oversættelse - + Choose the translation you'd like to use in OpenLP. Vælg den oversættelse du ønsker at benytte i OpenLP. - + Translation: Oversættelse: @@ -2597,239 +2701,243 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Sange - + First Time Wizard - + Velkomstguide - + Welcome to the First Time Wizard - + Velkommen til velkomstguiden - + Activate required Plugins - Aktivér påkrævede tilføjelser + Aktivér påkrævede udvidelser - + Select the Plugins you wish to use. - Vælg tilføjelserne du ønsker at benytte. + Vælg de udvidelser du ønsker at benytte. - + Bible Bibel - + Images Billeder - + Presentations Præsentationer - + Media (Audio and Video) Medier (lyd og video) - + Allow remote access Tillad fjernadgang - + Monitor Song Usage Overvåg sangforbrug - + Allow Alerts Vis meddelelser - + Default Settings Standardindstillinger - + Downloading %s... Henter %s... - + Download complete. Click the finish button to start OpenLP. Hentning færdig. Klik på færdig-knappen for at starte OpenLP. - + Enabling selected plugins... Aktiverer valgte udvidelser... - + No Internet Connection Ingen internetforbindelse - + Unable to detect an Internet connection. Kunne ikke detektere en internetforbindelse. - + Sample Songs Eksempler på sange - + Select and download public domain songs. Vælg og hent offentligt tilgængelige sange. - + Sample Bibles Eksempler på bibler - + Select and download free Bibles. Vælg og hent gratis bibler. - + Sample Themes Eksempler på temaer - + Select and download sample themes. Vælg og hent eksempler på temaer. - + Set up default settings to be used by OpenLP. - + Indstil standardindstillingerne som skal benyttes af OpenLP. - + Default output display: Standard output skærm: - + Select default theme: Vælg standardtema: - + Starting configuration process... Starter konfigureringsproces... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Denne guide vil hjælpe dig med at konfigurere OpenLP til brug for første gang. Tryk på næste-knappen herunder for at begynde. - + Setting Up And Downloading Sætter op og henter - + Please wait while OpenLP is set up and your data is downloaded. Vent venligst på at OpenLP indstilles og dine data hentes. - + Setting Up Sætter op - + Click the finish button to start OpenLP. Klik på færdig-knappen for at starte OpenLP. - + Download complete. Click the finish button to return to OpenLP. Hentning færdig. Klik på færdig-knappen for at vende tilbage til OpenLP. - + Click the finish button to return to OpenLP. Klik på færdig-knappen for at vende tilbage til OpenLP. - + Custom Slides Brugerdefinerede dias - + Finish Færdig - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Ingen internetforbindelse blev fundet. Velkomstguiden har brug for en internetforbindelse for at kunne hente eksempler på sange, bibler og temaer. Klik på Færdig-knappen nu for at starte OpenLP med de grundlæggende indstillinger, men uden eksempeldata. + +For at køre velkomstguiden igen og importere disse eksempeldata på et senere tidspunkt, skal du tjekke din internetforbindelse og køre denne guide igen ved at vælge "Værktøjer/Kør velkomstguide igen" fra OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +For at annullere velkomstguiden fuldstændigt (uden at starte OpenLP), så klik på Annullér-knappen nu. OpenLP.FormattingTagDialog - + Configure Formatting Tags Konfigurér formatteringsmærker - + Edit Selection Redigér markering - + Save Gem - + Description Beskrivelse - + Tag Mærke - + Start HTML Start HTML - + End HTML Afslut HTML @@ -2837,32 +2945,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Opdateringsfejl - + Tag "n" already defined. Mærke "n" er allerede defineret. - + New Tag Nyt mærke - + <HTML here> <HTML her> - + </and here> </and her> - + Tag %s already defined. Mærke %s er allerede defineret. @@ -2870,82 +2978,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Rød - + Black Sort - + Blue Blå - + Yellow Gul - + Green Grøn - + Pink Lyserød - + Orange Orange - + Purple Lilla - + White Hvid - + Superscript Hævet skrift - + Subscript Sænket skrift - + Paragraph Afsnit - + Bold Fed - + Italics Kursiv - + Underline Understreget - + Break Linjeskift @@ -2953,170 +3061,170 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Generelt - + Monitors Skærme - + Select monitor for output display: Vælg skærm til visning af output: - + Display if a single screen - + Vis selv på en enkelt skærm - + Application Startup Programopstart - + Show blank screen warning Vis advarsel ved blank skærm - + Automatically open the last service Åbn automatisk det seneste program - + Show the splash screen Vis logo - + Application Settings Programindstillinger - + Prompt to save before starting a new service - + Spørg om gem før nyt program oprettes - + Automatically preview next item in service - + Forhåndvis automatisk det næste punkt på planen - + sec sek - + CCLI Details CCLI detaljer - + SongSelect username: SongSelect brugernavn: - + SongSelect password: SongSelect adgangskode: - + X X - + Y Y - + Height Højde - + Width Bredde - + Check for updates to OpenLP Søg efter opdateringer til OpenLP - + Unblank display when adding new live item - + Stop med at vise sort skærm når nyt fremvisningspunkt tilføjes - + Timed slide interval: - + Interval mellem automatisk diasskift: - + Background Audio Baggrundslyd - + Start background audio paused Start baggrundslyd på pause Service Item Slide Limits - + Begrænsninger for programpunkter i dias - + Override display position: - + Tilsidesæt visningsposition: - + Repeat track list Gentag sætliste Behavior of next/previous on the last/first slide: - + Opførsel for næste/forrige på det sidste/første dias: &Remain on Slide - + &Bliv på dias &Wrap around - + &Start forfra &Move to next/previous service item - + &Gå til næste/forrige programpunkt OpenLP.LanguageManager - + Language Sprog - + Please restart OpenLP to use your new language setting. Genstart OpenLP for at benytte dine nye sprogindstillinger. @@ -3124,295 +3232,295 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display - + OpenLP-visning OpenLP.MainWindow - + &File &Fil - + &Import &Importér - + &Export &Eksportér - + &View &Vis - + M&ode O&psætning - + &Tools &Værktøjer - + &Settings &Indstillinger - + &Language &Sprog - + &Help &Hjælp - + Media Manager Mediehåndtering - + Service Manager Programhåndtering - + Theme Manager Temahåndtering - + &New &Ny - + &Open - &Åben + &Åbn - + Open an existing service. - Åben et eksisterende program. + Åbn et eksisterende program. - + &Save &Gem - + Save the current service to disk. Gem det nuværende program på disk. - + Save &As... Gem &som... - + Save Service As Gem program som - + Save the current service under a new name. Gem det nuværende program under et nyt navn. - + E&xit A&fslut - + Quit OpenLP Luk OpenLP - + &Theme &Tema - + &Configure OpenLP... &Indstil OpenLP... - + &Media Manager &Mediehåndtering - + Toggle Media Manager Slå mediehåndteringen til - + Toggle the visibility of the media manager. Angiv om mediehåndteringen skal være synlig. - + &Theme Manager &Temahåndtering - + Toggle Theme Manager Slå temahåndteringen til - + Toggle the visibility of the theme manager. Angiv om temahåndteringen skal være synlig. - + &Service Manager &Programhåndtering - + Toggle Service Manager Slå programhåndteringen til - + Toggle the visibility of the service manager. Angiv om programhåndteringen skal være synlig. - + &Preview Panel &Forhåndsvisningspanelet - + Toggle Preview Panel Alå forhåndsvisningspanelet til - + Toggle the visibility of the preview panel. - Angiv om forhåndsvisningspanelet skal være synlig. + Angiv om forhåndsvisningspanelet skal være synligt. - + &Live Panel - &Livepanel + &Fremvisningspanel - + Toggle Live Panel Slå fremvisningspanelet til - + Toggle the visibility of the live panel. - Skift synligheden af livepanelet. + Skift synligheden af fremvisningspanelet. - + &Plugin List Liste over &udvidelsesmoduler - + List the Plugins Vis udvidelsesmodulerne - + &User Guide &Brugerguide - + &About &Om - + More information about OpenLP Mere information om OpenLP - + &Online Help &Online hjælp - + &Web Site &Hjemmeside - + Use the system language, if available. Benyt systemsproget, hvis det er muligt. - + Set the interface language to %s Sæt brugerfladens sprog til %s - + Add &Tool... Tilføj &Værktøj... - + Add an application to the list of tools. Tilføj et program til listen over værktøjer. - + &Default &Standard - + Set the view mode back to the default. - Sæt visningsopsætningen tilbage til stadard. + Sæt visningsopsætningen tilbage til standard. - + &Setup &Opsætning - + Set the view mode to Setup. Sæt visningsopsætningen til Opsætning. - + &Live - &Live + &Fremvisning - + Set the view mode to Live. - Sæt visningsopsætningen til Live. + Sæt visningsopsætningen til Fremvisning. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3421,210 +3529,245 @@ You can download the latest version from http://openlp.org/. Du kan hente den seneste udgave fra http://openlp.org/. - + OpenLP Version Updated OpenLP version opdateret - + OpenLP Main Display Blanked - + OpenLPs hovedvisning er blank - + The Main Display has been blanked out - + Hovedvisningen er mørkelagt - + Default Theme: %s Standard tema: %s - + English Please add the name of your language here Dansk - + Configure &Shortcuts... Konfigurér g&enveje... - + Close OpenLP Luk OpenLP - + Are you sure you want to close OpenLP? Er du sikker på at du vil lukke OpenLP? - + Open &Data Folder... - Åben &datamappe... + Åbn &datamappe... - + Open the folder where songs, bibles and other data resides. - Åben den mappe hvor sange, bibler og andre data er placeret. + Åbn den mappe hvor sange, bibler og andre data er placeret. - + &Autodetect &Autodetektér - + Update Theme Images Opdatér temabilleder - + Update the preview images for all themes. - + Opdatér forhåndsvisningsbillederne for alle temaer. - + Print the current service. Udskriv det nuværende program. - + &Recent Files &Seneste filer - + L&ock Panels L&ås paneler - + Prevent the panels being moved. Forhindr panelerne i at flyttes. - + Re-run First Time Wizard - + Kør velkomstguide igen - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Kør velkomstguiden igen, hvor du importerer sange, bibler og temaer. - + Re-run First Time Wizard? - + Kør velkomstguide igen? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Er du sikker på at du vil køre velkomstguiden igen? + +At køre velkomstguiden igen kan medføre ændringer i din nuværende OpenLP konfiguration og muligvis tilføje sange til din eksisterende sangliste og ændre dit standard-tema. - + Clear List Clear List of recent files Ryd liste - + Clear the list of recent files. Ryd liste over seneste filer. - + Configure &Formatting Tags... Konfigurér &formateringsmærker... - + Export OpenLP settings to a specified *.config file - + Eksportér OpenLP-indstillinger til en speciferet *.config-fil - + Settings Indstillinger - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Importér OpenLP-indstillinger fra en specificeret *.config-fil som er eksporteret på denne-, eller en anden computer - + Import settings? Importér indstillinger? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Er du sikker på at du vil importere indstillinger? + +Ved importering af indstillinger vil der laves permanente ændringer ved din nuværende OpenLP-konfiguration. + +Importering af ukorrekte indstillinger kan forsage uregelmæssig opførsel eller at OpenLP lukker uventet. - + Open File - Åben fil + Åbn fil - + OpenLP Export Settings Files (*.conf) - + Eksporterede OpenLP-indstillingsfiler (*.conf) - + Import settings Importér indstillinger - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP lukker nu ned. Importerede indstillinger vil blive anvendt næste gang du starter OpenLP. - + Export Settings File Eksportér indstillingsfil - + OpenLP Export Settings File (*.conf) - OpenLP eksportér indstillingsfil (*.conf) + OpenLP-eksporteret indstillingsfil (*.conf) - + New Data Directory Error - + Fejl ved ny datamappe + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Den fil du har valgt ser ikke ud til at være en gyldig OpenLP-indstillingsfil. + +Sektion [%s] er ike gyldig + +Behandlingen er blevet termineret og ingen ændringer er blevet foretaget. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopierer OpenLP data til en ny datamappeplacering - %s - Vent venligst til at kopieringen er færdig + + + + OpenLP Data directory copy failed + +%s + Kopieringen af OpenLP datamappen slog fejl + +%s OpenLP.Manager - + Database Error Databasefejl - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Databasen der er ved at blive indlæst blev oprettet i en nyere udgave af OpenLP. Databasen er udgave %d, mens OpenLP forventer udgave %d. Databasen vil ikke blive indlæst. + +Database: %s - + OpenLP cannot load your database. Database: %s @@ -3636,130 +3779,130 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected - + Ingen punkter valgt - + &Add to selected Service Item - + &Tilføj til valgte programpunkt - + You must select one or more items to preview. - + Du er nødt vælge et eller flere punkter for at forhåndsvise. - + You must select one or more items to send live. - + Du er nødt til at vælge et eller flere punkter for at fremvise. - + You must select one or more items. - Du skal vælge et, eller flere elementer. + Du skal vælge et, eller flere punkter. - + You must select an existing service item to add to. - + Du er nødt til at vælge et eksisterende programpunkt for at tilføje. - + Invalid Service Item - Ugyldigt programelement + Ugyldigt programpunkt - + You must select a %s service item. - + Du er nødt til at vælge et %s programpunkt. - + You must select one or more items to add. - + Du er nødt til at vælge et eller flere punkter for at tilføje. - + No Search Results Ingen søgeresultater - + Invalid File Type Ugyldig filtype - + Invalid File %s. Suffix not supported Ugyldig fil %s. Endelsen er ikke understøttet - + &Clone - + &Klon - + Duplicate files were found on import and were ignored. - + Duplikerede filer blev fundet ved importeringen og blev ignoreret. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - <lyrics> mærke mangler. + <lyrics>-mærke mangler. - + <verse> tag is missing. - <verse> mærke mangler. + <verse>-mærke mangler. OpenLP.PluginForm - + Plugin List Liste over udvidelser - + Plugin Details Detaljer om udvidelser - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) %s (Inaktiv) - + %s (Active) %s (Aktiv) - + %s (Disabled) %s (deaktiveret) @@ -3767,12 +3910,12 @@ Endelsen er ikke understøttet OpenLP.PrintServiceDialog - + Fit Page Tilpas til siden - + Fit Width Tilpas til bredden @@ -3780,77 +3923,77 @@ Endelsen er ikke understøttet OpenLP.PrintServiceForm - + Options - Indstillinger + Valgmuligheder - + Copy Kopiér - + Copy as HTML Kopiér som HTML - + Zoom In Zoom ind - + Zoom Out Zoom ud - + Zoom Original Zoom Original - + Other Options Andre indstillinger - + Include slide text if available Inkludér diastekst hvis tilgængelig - + Include service item notes - + Inkludér noter til programpunkt - + Include play length of media items - + Inkludér længden af mediepunkter - + Add page break before each text item - + Tilføj sideskift før hvert tekstpunkt - + Service Sheet Program - + Print Udskriv - + Title: Titel: - + Custom Footer Text: Brugerdefineret sidefod: @@ -3858,12 +4001,12 @@ Endelsen er ikke understøttet OpenLP.ScreenList - + Screen Skærm - + primary primær @@ -3871,12 +4014,12 @@ Endelsen er ikke understøttet OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Varighed</strong>: %s @@ -3884,303 +4027,314 @@ Endelsen er ikke understøttet OpenLP.ServiceItemEditForm - + Reorder Service Item - + Omrokér programpunkt OpenLP.ServiceManager - + Move to &top Flyt til &top - + Move item to the top of the service. - Flyt element til toppen af programmet. + Flyt punkt til toppen af programmet. - + Move &up Flyt &op - + Move item up one position in the service. - Flyt element en placering op i programmet. + Flyt punkt en placering op i programmet. - + Move &down Flyt &ned - + Move item down one position in the service. - Flyt element en placering ned i programmet. + Flyt punkt en placering ned i programmet. - + Move to &bottom Flyt til &bunden - + Move item to the end of the service. - Flyt element til slutningen af programmet. + Flyt punkt til slutningen af programmet. - + &Delete From Service &Slet fra programmet - + Delete the selected item from the service. - Slet det valgte element fra programmet. + Slet det valgte punkt fra programmet. - + &Add New Item - &Tilføj nyt emne + &Tilføj nyt punkt - + &Add to Selected Item - &Tilføj til det valgte emne + &Tilføj til det valgte punkt - + &Edit Item - &Redigér emne + &Redigér punkt - + &Reorder Item - &Omrokér element + &Omrokér punkt - + &Notes &Noter - + &Change Item Theme - + &Ændr tema for punkt - + OpenLP Service Files (*.osz) OpenLP-programfiler (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Fil er ikke et gyldigt program. Indholdet er ikke UTF-8. - + File is not a valid service. Fil er ikke et gyldigt program. - + Missing Display Handler - + Mangler visningsmodul - + Your item cannot be displayed as there is no handler to display it - + Dit punkt kan ikke blive vist da der ikke er noget modul til at vise det - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Dit punkt kan ikke vises da udvidelsesmodulet der skal vise det enten mangler, eller er inaktiv - + &Expand all &Udvid alle - + Expand all the service items. - Udvid alle program-elementerne. + Udvid alle programpunkterne. - + &Collapse all &Sammenfold alle - + Collapse all the service items. - Sammenfold alle program-elementerne. + Sammenfold alle programpunkterne. - + Open File - Åben fil + Åbn fil - + Moves the selection down the window. - + Flytter markeringen ned i vinduet. - + Move up Flyt op - + Moves the selection up the window. - + Flytter markeringen op i vinduet. - + Go Live Fremvis - + Send the selected item to Live. - Fremvis det valgte element. + Fremvis det valgte punkt. - + &Start Time - &Start tid + &Starttid - + Show &Preview - Vis &forhåndsvisning + &Forhåndsvis - + Modified Service - Modificeret program + Ændret program - + The current service has been modified. Would you like to save this service? Det nuværende program er blevet ændret. Vil du gemme dette program? - + Custom Service Notes: Brugerdefinerede program-noter: - + Notes: Noter: - + Playing time: Afspilningstid: - + Untitled Service Unavngivet program - + File could not be opened because it is corrupt. - Fil kunne ikke åbnes da den er korrupt. + Fil kunne ikke åbnes da den er defekt. - + Empty File Tom fil - + This service file does not contain any data. - + Denne programfil indeholder ingen data. - + Corrupt File - Korrupt fil + Defekt fil - + Load an existing service. Indlæs et eksisterende program. - + Save this service. Gem dette program. - + Select a theme for the service. Vælg et tema for dette program. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Denne fil er enten defekt, eller også er det ikke en OpenLP 2.0 programfil. - - Service File Missing - Programfil mangler - - - + Slide theme Diastema - + Notes Noter - + Edit Redigér - + Service copy only - + Bare kopi i programmet - + Error Saving File Fejl ved lagring af fil - + There was an error saving your file. - Der opstod en fejl ved gemning af din fil. + Der opstod en fejl ved lagring af din fil. + + + + Service File(s) Missing + Programfil(er) mangler + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + De følgende filer i programmet mangler: +<byte value="x9"/>%s + +Disse filer vil blive fjernet hvis du fortsætter med at gemme. OpenLP.ServiceNoteForm - + Service Item Notes - + Noter til programpunkter OpenLP.SettingsForm - + Configure OpenLP Konfigurér OpenLP @@ -4188,67 +4342,67 @@ Indholdet er ikke UTF-8. OpenLP.ShortcutListDialog - + Action Handling - + Shortcut Genvej - + Duplicate Shortcut Duplikér genvej - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - Genvejen "%s" er allerede tilknyttet til en anden handling, brug en anden genvej. + Genvejen "%s" er allerede tilknyttet en anden handling, brug en anden genvej. - + Alternate Alternativ - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Vælg en handling og tryk på en af knapperne herunder for at opfange en ny primær- eller alternativ genvej. - + Default Standard - + Custom Brugerdefineret - + Capture shortcut. Indfang genvej. - + Restore the default shortcut of this action. Gendan denne handlings standardgenvej. - + Restore Default Shortcuts Gendan standardgenveje - + Do you want to restore all shortcuts to their defaults? Vil du gendanne alle genveje til deres standardværdier? - + Configure Shortcuts Konfigurér genveje @@ -4256,172 +4410,172 @@ Indholdet er ikke UTF-8. OpenLP.SlideController - + Hide Gem - + Go To Gå til - + Blank Screen Blank skærm - + Blank to Theme Vis temabaggrund - + Show Desktop Vis skrivebord - + Previous Service Forrige program - + Next Service Næste Program - + Escape Item - Forlad emne + Forlad punkt - + Move to previous. Gå til forrige. - + Move to next. Gå til næste. - + Play Slides Afspil dias - + Delay between slides in seconds. Forsinkelse mellem dias i sekunder. - + Move to live. - Flyt til live. + Fremvis. - + Add to Service. Tilføj til program. - + Edit and reload song preview. - + Redigér og genindlæs forhåndsvisning af sang. - + Start playing media. Start afspilning af medie. - + Pause audio. Sæt lyd på pause. - + Pause playing media. Sæt afspilning af medie på pause. - + Stop playing media. Stop afspilning af medie. - + Video position. Video position. - + Audio Volume. Lydstyrke. - + Go to "Verse" Gå til "Vers" - + Go to "Chorus" Gå til "Omkvæd" - - - Go to "Bridge" - Gå til "bro" - - Go to "Pre-Chorus" - + Go to "Bridge" + Gå til "C-stykke" - - Go to "Intro" - Gå til "intro" + + Go to "Pre-Chorus" + Gå til "Bro" - Go to "Ending" - + Go to "Intro" + Gå til "Intro" - Go to "Other" - Gå til "anden" + Go to "Ending" + Gå til "Outro" - + + Go to "Other" + Gå til "Anden" + + + Previous Slide Forrige dias - + Next Slide Næste dias - + Pause Audio - + Sæt lyd på pause - + Background Audio - + Baggrundslyd - + Go to next audio track. - + Gå til næste lydspor. - + Tracks Spor @@ -4429,17 +4583,17 @@ Indholdet er ikke UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions - + Forslag til stavning - + Formatting Tags Formatteringsmærker - + Language: Sprog: @@ -4447,615 +4601,627 @@ Indholdet er ikke UTF-8. OpenLP.StartTimeForm - + Hours: Timer: - + Minutes: Minutter: - + Seconds: Sekunder: - + Item Start and Finish Time - + Starttid og sluttid for punkt - + Start Begynd - + Finish Slut - + Length Længde - + Time Validation Error - + Fejl ved validering af tid - + Finish time is set after the end of the media item - + Sluttid sættes efter slutningen af mediepunktet - + Start time is after the finish time of the media item - + Starttiden er efter mediepunktets sluttid - + Theme Layout - Tema layout + Tema-layout - + The blue box shows the main area. Den blå kasse viser hovedområdet. - + The red box shows the footer. Den røde kasse viser sidefoden. - - OpenLP.ThemeForm - - - Select Image - Vælg billede - - - - Theme Name Missing - Temanavn mangler - - - - There is no name for this theme. Please enter one. - Dette tema har ikke noget navn. Indtast venligst ét. - - - - Theme Name Invalid - Temanavn ugyldigt - - - - Invalid theme name. Please enter one. - Ugyldigt temanavn. Indtast venligst et nyt. - - - - (approximately %d lines per slide) - (cirka %d linjer per dias) - - OpenLP.ThemeManager - + Create a new theme. Opret et nyt tema. - + Edit Theme Redigér tema - + Edit a theme. Redigér et tema. - + Delete Theme Slet tema - + Delete a theme. Slet et tema. - + Import Theme Importér tema - + Import a theme. Importér et tema. - + Export Theme Eksportér tema - + Export a theme. Eksportér et tema. - + &Edit Theme &Redigér tema - + &Delete Theme &Slet tema - + Set As &Global Default Indstil som &global standard - + %s (default) %s (standard) - + You must select a theme to edit. - Vælg det tema det skal redigeres. + Vælg det tema der skal redigeres. - + You are unable to delete the default theme. Du kan ikke slette standardtemaet. - + Theme %s is used in the %s plugin. Temaet %s bruges i tilføjelsen %s. - + You have not selected a theme. Du har ikke valgt et tema. - + Save Theme - (%s) Gem tema - (%s) - + Theme Exported Tema eksporteret - + Your theme has been successfully exported. Dit tema er nu blevet eksporteret. - + Theme Export Failed Eksport af tema slog fejl - + Your theme could not be exported due to an error. Dit tema kunne ikke eksporteres på grund af en fejl. - + Select Theme Import File Vælg tema-importfil - + File is not a valid theme. Filen er ikke et gyldigt tema. - + &Copy Theme &Kopiér tema - + &Rename Theme &Omdøb tema - + &Export Theme &Eksportér tema - + You must select a theme to rename. Vælg det tema der skal omdøbes. - + Rename Confirmation - Bekræt omdøbning + Bekræft omdøbning - + Rename %s theme? Omdøb temaet %s? - + You must select a theme to delete. Vælg det tema der skal slettes. - + Delete Confirmation Bekræft sletning - + Delete %s theme? Slet temaet %s? - + Validation Error Fejl - + A theme with this name already exists. Et tema med dette navn eksisterer allerede. - + OpenLP Themes (*.theme *.otz) OpenLP temaer (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopi af %s - + Theme Already Exists Tema eksisterer allerede + + + Theme %s already exists. Do you want to replace it? + Tema %s eksisterer allerede. Ønsker du at erstatte det? + OpenLP.ThemeWizard - + Theme Wizard Temaguide - + Welcome to the Theme Wizard Velkommen til temaguiden - + Set Up Background Indstil baggrund - + Set up your theme's background according to the parameters below. Indstil dit temas baggrund i henhold til parametrene herunder. - + Background type: Baggrundstype: - + Solid Color Ensfarvet - + Gradient Overgang - + Color: Farve: - + Gradient: Overgang: - + Horizontal Vandret - + Vertical - Højret + Lodret - + Circular Cirkulær - + Top Left - Bottom Right Øverst til venstre - nederst til højre - + Bottom Left - Top Right Nederst til venstre - øverst til højre - + Main Area Font Details Skriftdetaljer for hovedområdet - + Define the font and display characteristics for the Display text Definér skrifttypen og visningskarakteristik for visningsteksten - + Font: Skrifttype: - + Size: Størrelse: - + Line Spacing: Linjeafstand: - + &Outline: &Disposition: - + &Shadow: &Skygge: - + Bold Fed - + Italic Kursiv - + Footer Area Font Details Skriftdetaljer for sidefoden - + Define the font and display characteristics for the Footer text Definér skrifttypen og visningskarakteristik for teksten i sidefoden - + Text Formatting Details Detaljeret tekstformattering - + Allows additional display formatting information to be defined - + Tillader yderligere indstillingsmuligheder for hvordan teksten skal vises - + Horizontal Align: Justér horisontalt: - + Left Venstre - + Right Højre - + Center Centrér - + Output Area Locations Placeringer for output-området - + Allows you to change and move the main and footer areas. - + Gør dig i stand til at ændre og flytte hovedområdet og sidefodsområdet. - + &Main Area &Hovedområde - + &Use default location &Benyt standardplacering - + X position: X position: - + px px - + Y position: Y position: - + Width: Bredde: - + Height: Højde: - + Use default location Benyt standardplacering - + Theme name: Temanavn: - + Edit Theme - %s Redigér tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Denne guide vil hjælp dig med at oprette og redigere dine temaer. Klik på næste-knappen for at begynde processen ved at indstille din baggrund. - + Transitions: Overgange: - + &Footer Area &Sidefodsområde - + Starting color: Startfarve: - + Ending color: Slutfarve: - + Background color: Baggrundsfarve: - + Justify Lige margener - + Layout Preview - Layout forhåndsvisning + Forhåndsvisning af layout - + Transparent Gennemsigtig - + Preview and Save Forhåndsvis og gem - + Preview the theme and save it. Forhåndsvis temaet og gem det. + + + (approximately %d lines per slide) + (omkring %d linjer per dias) + + + + Background Image Empty + Baggrundsbillede er tomt + + + + You have not selected a background image. Please select one before continuing. + Du har ikke valgt et baggrundsbillede. Vælg venligst et før du fortsætter. + + + + Select Image + Vælg billede + + + + Theme Name Missing + Temanavn mangler + + + + There is no name for this theme. Please enter one. + Der er ikke givet noget navn til dette tema. Indtast venligst et. + + + + Theme Name Invalid + Temanavn ugyldigt + + + + Invalid theme name. Please enter one. + Ugyldigt temanavn. Indtast venligst et nyt. + OpenLP.ThemesTab - + Global Theme Globalt tema - + Theme Level Temaniveau - + S&ong Level S&angniveau - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + Benyt temaer fra hver sang i databasen. Hvis en sang ikke er forbundet med et tema, så benyt programmets tema. Hvis programmet ikke har et tema, benyt så det globale tema. - + &Service Level &Programniveau - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + Benyt temaet fra programmet, hvorved de individuelle sanges temaer tilsidesættes. Hvis programmet ikke har et tema, så benyt det globale tema. - + &Global Level &Globalt niveau - + Use the global theme, overriding any themes associated with either the service or the songs. Benyt det globale tema, hvormed alle temaer tilknyttet til enten programmet eller sangene tilsidesættes. - + Themes Temaer @@ -5063,315 +5229,315 @@ Indholdet er ikke UTF-8. OpenLP.Ui - + Error Fejl - + About Om - + &Add &Tilføj - + Advanced Avanceret - + All Files Alle filer - + Bottom Bund - + Browse... Gennemse... - + Cancel Annullér - + CCLI number: CCLI nummer: - + Create a new service. Opret et nyt program. - + &Delete &Slet - + &Edit &Redigér - + Empty Field Tomt felt - + Export Eksportér - + pt Abbreviated font pointsize unit pkt - + Image Billede - + Import Importér - + Live - Live + Fremvisning - + Live Background Error Fejl med fremvisningsbaggrund - + Load Indlæs - + Middle Midt - + New Ny - + New Service Nyt program - + New Theme Nyt tema - + No File Selected Singular Ingen fil valgt - + No Files Selected Plural Ingen filer valgt - + No Item Selected Singular - Intet element valgt - - - - No Items Selected - Plural - Ingen elementer valgt + Intet punkt valgt + No Items Selected + Plural + Ingen punkter valgt + + + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Forhåndsvisning - + Replace Background Erstat baggrund - + Reset Background Nulstil baggrund - + s The abbreviated unit for seconds s - + Save && Preview Gem && forhåndsvis - + Search Søg - + You must select an item to delete. - Vælg et element der skal slettes. + Vælg et punkt der skal slettes. - + You must select an item to edit. - Vælg et element der skal redigeres. + Vælg et punkt der skal redigeres. - + Save Service Gem program - + Service Program - + Start %s - Start %s + Begynd %s - + Theme Singular Tema - + Themes Plural Temaer - + Top Top - + Version Udgave - + Delete the selected item. - Slet det valgte element. + Slet det valgte punkt. - + Move selection up one position. - + Flyt markering en position op. - + Move selection down one position. - + Flyt markering en position ned. - + &Vertical Align: &Justér lodret: - + Finished import. - Færdiggjorde import. + Fuldførte importering. - + Format: Format: - + Importing Importerer - + Importing "%s"... Importerer "%s"... - + Select Import Source Vælg importkilde - + Select the import format and the location to import from. Vælg importkilden og placeringen der skal importeres fra. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Openlp.org 1.x importeringen er slået fra på grund af at der mangler et Python-modul. Hvis du vil benytte denne importering, er du nødt til at installere modulet "python-sqlite" først. - + Open %s File - Åben filen %s + Åbn filen %s - + %p% %p% - + Ready. Klar. - + Starting import... - Starter import... + Påbegynder importering... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Du skal angive mindst én %s-fil at importere fra. @@ -5379,302 +5545,307 @@ Indholdet er ikke UTF-8. Welcome to the Bible Import Wizard - + Velkommen til guiden til importering af bibler - + Welcome to the Song Export Wizard - + Velkommen til guiden til eksportering af sange - + Welcome to the Song Import Wizard - + Velkommen til guiden til importering af sange - + Author Singular Forfatter - + Authors Plural Forfattere - - © + + © Copyright symbol. © - + Song Book Singular Sangbog - + Song Books Plural Sangbøger - + Song Maintenance Sanghåndtering - + Topic Singular Emne - + Topics Plural Emner - + Continuous Uafbrudt - + Default Standard - + Display style: Visningsstil: - + Duplicate Error - + Duplikeringsfejl - + File Fil - + Help Hjælp - + h The abbreviated unit for hours t - + Layout style: Layoutstil: - + Live Toolbar Værktøjslinje for fremvisning - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP kører allerede. Vil du fortsætte? - + Settings Indstillinger - + Tools Værktøjer - + Unsupported File Ikke understøttet fil - + Verse Per Slide Vers per dias - + Verse Per Line Vers per linje - + View Vis - + Title and/or verses not found Titel og/eller vers ikke fundet - + XML syntax error XML syntaksfejl - + View Mode Visningstilstand - + Open service. - Åben program. + Åbn program. - + Print Service Udskriv program - + Replace live background. - Erstat live-baggrund. + Erstat fremvisningsbaggrund. - + Reset live background. - Nulstil live-baggrund. + Nulstil fremvisningsbaggrund. - + Split a slide into two only if it does not fit on the screen as one slide. Del kun et dias op i to, hvis det ikke kan passe ind på skærmen som ét dias. - + Welcome to the Bible Upgrade Wizard - + Velkomment til guiden til opgradering af bibler - + Confirm Delete Bekræft sletning - + Play Slides in Loop Afspil dias i løkke - + Play Slides to End Afspil dias til slut - + Stop Play Slides in Loop Stop afspilning af dias i løkke - + Stop Play Slides to End Stop afspilning af dias til slut - + Next Track Næste spor - + Search Themes... Search bar place holder text Søg efter temaer... - + Optional &Split - + Valgfri &opdeling - + Invalid Folder Selected Singular Ugyldig mappe valgt - + Invalid File Selected Singular Ugyldigt fil valgt - + Invalid Files Selected Plural Ugyldige filer valgt - + No Folder Selected Singular Ingen mappe valgt - + Open %s Folder - Åben %s mappe + Åbn %s mappe - + You need to specify one %s file to import from. A file type e.g. OpenSong Du skal vælge en %s-fil at importere fra. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Du skal vælge en %s-mappe at importere fra. + + + Importing Songs + Importerer sange + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 og %2 - + %1, and %2 Locale list separator: end %1, og %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5683,50 +5854,50 @@ Indholdet er ikke UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Præsentation-udvidelse</strong><br />Præsentationsudvidelsen gør det muligt at vise præsentationer med en række forskellige programmer. Valget mellem tilgængelige præsentationsprogrammer er tilgængelig for brugeren i en rulleliste. - + Presentation name singular Præsentation - + Presentations name plural Præsentationer - + Presentations container title Præsentationer - + Load a new presentation. Indlæs en ny præsentation. - + Delete the selected presentation. Slet den valgte præsentation. - + Preview the selected presentation. Forhåndsvis den valgte præsentation. - + Send the selected presentation live. Fremvis den valgte præsentation. - + Add the selected presentation to the service. Tilføj den valgte præsentation til programmet. @@ -5734,70 +5905,70 @@ Indholdet er ikke UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Vælg præsentation(er) - + Automatic Automatisk - + Present using: Præsentér med: - + File Exists Fil eksisterer - + A presentation with that filename already exists. - En præsentation med dette filnavn eksisterer allereder. + En præsentation med dette filnavn eksisterer allerede. - + This type of presentation is not supported. Denne type præsentation er ikke understøttet. - + Presentations (%s) Præsentationer (%s) - + Missing Presentation Manglende præsentation - + The presentation %s is incomplete, please reload. - + Præsentationen %s er ufuldstændig. Vær venlig at genindlæse den. - + The presentation %s no longer exists. - + Præsentationen %s eksisterer ikke længere. PresentationPlugin.PresentationTab - + Available Controllers - + Tilgængelige programmer - + %s (unavailable) %s (ikke tilgængelig) - + Allow presentation application to be overridden Tillad at præsentationsprogrammet tilsidesættes @@ -5805,24 +5976,24 @@ Indholdet er ikke UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + <strong>Fjernbetjening-udvidelse</strong><br />Fjernbetjeningsudvidelsen gør det muligt at sende beskeder til en kørende udgave af OpenLP på en anden computer gennem en webbrowser, eller gennem fjernbetjenings API'en. - + Remote name singular Fjernbetjening - + Remotes name plural Fjernbetjeninger - + Remote container title Fjernbetjening @@ -5831,236 +6002,246 @@ Indholdet er ikke UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 fjernbetjening - + OpenLP 2.0 Stage View - + OpenLP 2.0 scenevisning - + Service Manager Programhåndtering - + Slide Controller - + Diashåndtering - + Alerts Meddelelser - + Search Søg - + Refresh Opdatér - + Blank Gør blank - + Show Vis - + Prev Forrige - + Next Næste - + Text Tekst - + Show Alert Vis meddelelse - + Go Live Fremvis - + No Results Ingen resultater - + Options Indstillinger - + Add to Service Tilføj til program - + Home Hjem - + Theme Tema - + Desktop Skrivebord - + Add &amp; Go to Service - + Tilføj &amp; Gå til program + + + + Service + Program + + + + Slides + Dias RemotePlugin.RemoteTab - + Serve on IP address: - + Benyt følgende IP-adresse: - + Port number: Port nummer: - + Server Settings Serverindstillinger - + Remote URL: Fjern URL: - + Stage view URL: - + Scenevisnings URL: - + Display stage time in 12h format Vis scenetiden i 12-timer format - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Skan QR-koden eller tryk <a href="https://market.android.com/details?id=org.openlp.android">download</a> for at installere Android Appen fra Google Play. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Skan QR-koden, eller klik <a href="https://play.google.com/store/apps/details?id=org.openlp.android">hent</a> for at installere Android app'en fra Google Play. SongUsagePlugin - + &Song Usage Tracking - &Sporing af sangforbrug + &Logning af sangforbrug - + &Delete Tracking Data - &Slet sporingsdata + &Slet logdata - + Delete song usage data up to a specified date. Slet sangforbrugsdata op til en angivet dato. - + &Extract Tracking Data - &Udtræk sporingsdata + &Udtræk logdata - + Generate a report on song usage. Opret en rapport over sangforbruget. - + Toggle Tracking - Slå sporing til/fra + Slå logning til/fra - + Toggle the tracking of song usage. - Slå sporing af sangforbrug til/fra. + Slå logning af sangforbrug til/fra. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - <strong>Sangforbrug-udvidelse</strong><br />Denne udvidelse sporer forbruget af sange i programmer. + <strong>Sangforbrug-udvidelse</strong><br />Denne udvidelse logger forbruget af sange i programmer. - + SongUsage name singular Sangforbrug - + SongUsage name plural Sangforbrug - + SongUsage container title Sangforbrug - + Song Usage Sangforbrug - + Song usage tracking is active. - Sporing af sangforbrug er slået til. + Logning af sangforbrug er slået til. - + Song usage tracking is inactive. - Sporing af sangforbrug er ikke slået til. + Logning af sangforbrug er ikke slået til. - + display vis - + printed udskrevet @@ -6068,75 +6249,75 @@ Indholdet er ikke UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Slet sangforbrugsdata - + Delete Selected Song Usage Events? - + Slet valgte sangforbrugsbegivenheder? - + Are you sure you want to delete selected Song Usage data? Er du sikker på at du vil slette de valgte sangforbrugsdata? - + Deletion Successful - + Sletning fuldført - + All requested data has been deleted successfully. - + Alt den angivne data er nu blevet slettet. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Vælg op til hvilken dato sangforbrugsdataet skal slettes. Al data optaget før denne dato vil blive slettet permanent. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Udtrækning af sangforbrug - + Select Date Range - Vælg dataomfang + Vælg datoomfang - + to til - + Report Location Rapportér lokation - + Output File Location Placering af output-fil - + usage_detail_%s_%s.txt forbrugsdetaljer_%s_%s.txt - + Report Creation Oprettelse af rapport - + Report %s has been successfully created. @@ -6145,224 +6326,232 @@ has been successfully created. er blevet oprettet. - + Output Path Not Selected Output-sti er ikke valgt - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Du har ikke valgt en gyldig placering for din sangforbrugsrapport. Vælg venligst en eksisterende sti på din computer. SongsPlugin - + &Song &Sang - + Import songs using the import wizard. Importér sange med importguiden. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - <strong>Sangudvidelse</strong><br />Sangudvidelsen gør det muligt at vise og håndtere sange. + <strong>Sang-udvidelse</strong><br />Sangudvidelsen gør det muligt at vise og håndtere sange. - + &Re-index Songs &Genindeksér sange - + Re-index the songs database to improve searching and ordering. Genindeksér sangene i databasen for at forbedre søgning og sortering. - + Reindexing songs... Genindekserer sange... - + Arabic (CP-1256) Arabisk (CP-1256) - + Baltic (CP-1257) Baltisk (CP-1257) - + Central European (CP-1250) Centraleuropæisk (CP-1250) - + Cyrillic (CP-1251) Kyrillisk (CP-1251) - + Greek (CP-1253) Græsk (CP-1253) - + Hebrew (CP-1255) Hebraisk (CP-1255) - + Japanese (CP-932) Japansk (CP-932) - + Korean (CP-949) Koreansk (CP-949) - + Simplified Chinese (CP-936) Simplificeret kinesisk (CP-936) - + Thai (CP-874) Thailandsk (CP-874) - + Traditional Chinese (CP-950) Traditionelt kinesisk (CP-950) - + Turkish (CP-1254) Tyrkisk (CP-1254) - + Vietnam (CP-1258) Vietnamesisk (CP-1258) - + Western European (CP-1252) Vesteuropæisk (CP-1252) - + Character Encoding Tegnkodning - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Indstillingen af tegnkodningstabellen er +ansvarlig for den korrekte gengivelse af tegn. +For det meste er den forudvalgte god som den er. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Vælg tegnkodningen. +Tegnkodningen er ansvarlig for den korrekte visning af tegn. - + Song name singular Sang - + Songs name plural Sange - + Songs container title Sange - + Exports songs using the export wizard. Eksportér sange med eksportguiden. - + Add a new song. Tilføj en ny sang. - + Edit the selected song. Redigér den valgte sang. - + Delete the selected song. Slet den valgte sang. - + Preview the selected song. Forhåndsvis den valgte sang. - + Send the selected song live. Fremvis den valgte sang. - + Add the selected song to the service. Tilføj de valgte sange til programmet. + + + Reindexing songs + Genindeksér sange + SongsPlugin.AuthorsForm - + Author Maintenance - Vedligeholdelse af forfattere + Forfatterhåndtering - + Display name: Visningsnavn: - + First name: Fornavn: - + Last name: Efternavn: - + You need to type in the first name of the author. Skriv forfatterens fornavn. - + You need to type in the last name of the author. Skriv forfatterens efternavn. - + You have not set a display name for the author, combine the first and last names? Du har ikke valgt et visningsnavn til forfatteren. Kombinér for- og efternavn? @@ -6370,7 +6559,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Filen har ikke en gyldig endelse. @@ -6378,12 +6567,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administreret af %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6395,12 +6584,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Metadata - + Custom Book Names Brugerdefinerede bognavne @@ -6408,207 +6597,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor Sangredigering - + &Title: &Titel: - + Alt&ernate title: Alt&ernativ titel: - + &Lyrics: &Sangtekst: - + &Verse order: &Rækkefølge af vers: - + Ed&it All Re&digér alle - + Title && Lyrics Titel && sangtekst - + &Add to Song &Tilføj til sang - + &Remove &Fjern - + &Manage Authors, Topics, Song Books &Administrér forfattere, emner, sangbøger - + A&dd to Song T&ilføj til sang - + R&emove F&jern - + Book: Bog: - + Number: Nummer: - + Authors, Topics && Song Book Forfattere, emner && sangbøger - + New &Theme Nyt &tema - + Copyright Information Information om ophavsret - + Comments Kommentarer - + Theme, Copyright Info && Comments Tema, ophavsret && kommentarer - + Add Author Tilføj forfatter - + This author does not exist, do you want to add them? Denne forfatter eksisterer ikke. Vil du tilføje dem? - + This author is already in the list. Denne forfatter er allerede på listen. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - Du har ikke valgt en gyldig forfatter. Vælg enten en forfatter fra liste, eller indtast en ny forfatter og klik på "Tilføj forfatter til sang"-knappen for at tilføje den nye forfatter. + Du har ikke valgt en gyldig forfatter. Vælg enten en forfatter fra listen, eller indtast en ny forfatter og klik på "Tilføj forfatter til sang"-knappen for at tilføje den nye forfatter. - + Add Topic Tilføj emne - + This topic does not exist, do you want to add it? Dette emne eksisterer ikke. Vil du tilføje det? - + This topic is already in the list. Dette emne er allerede på listen. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Du har ikke valgt et gyldigt emne. Vælg enten et emne fra listen, eller indtast et nyt emne og klik på "Tilføj emne til sang"-knappen for at tilføje det nye emne. - + You need to type in a song title. Vælg først en sangtitel. - + You need to type in at least one verse. Skriv mindst ét vers. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Rækkefølgen af vers er ikke gyldig. Der ikke noget vers som svarer til %s. Gyldige elementer er %s. - + Add Book Tilføj bog - + This song book does not exist, do you want to add it? Denne sangbog eksisterer ikke. Ønsker du at tilføje den? - + You need to have an author for this song. Du mangler en forfatter til denne sang. - - You need to type some text in to the verse. - Du mangler at skrive noget tekst ind til verset. - - - + Linked Audio Sammenkædet lydspor - + Add &File(s) Tilføj &fil(er) - + Add &Media Tilføj &medier - + Remove &All Fjern &alt - + Open File(s) - Åben fil(er) + Åbn fil(er) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Advarsel:</strong> Ikke alle versene er i brug. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Denne rækkefølge af vers er ikke gyldig. Der er ikke nogen vers der svarer til %s. Gyldige elementer er %s. @@ -6616,105 +6800,105 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Redigér vers - + &Verse type: &Verstype: - + &Insert &Indsæt - + Split a slide into two by inserting a verse splitter. - Del et dias i to ved at indsætte en versdeler. + Del et dias i to ved at indsætte en versopdeler. SongsPlugin.ExportWizardForm - + Song Export Wizard Guide til eksportering af sange - + Select Songs Vælg sange - + Check the songs you want to export. Markér de sange du vil eksportere. - + Uncheck All Afmarkér alle - + Check All Markér alle - + Select Directory Vælg mappe - + Directory: Mappe: - + Exporting Eksporterer - + Please wait while your songs are exported. Vent imens dines sange eksporteres. - + You need to add at least one Song to export. Vælg mindst én sang der skal eksporteres. - + No Save Location specified Ingen placering angivet til at gemme - + Starting export... - Starter eksport... + Påbegynder eksportering... - + You need to specify a directory. - Vælg en mappe. + Du er nødt til at vælge en mappe. - + Select Destination Folder Vælg en destinationsmappe - + Select the directory where you want the songs to be saved. Vælg den mappe hvori du ønsker at gemme sangene. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Denne guide vil hjælp dig med at eksportere dine sange til det åbne og frie <strong>OpenLyrics</strong> lovsangsformat. @@ -6722,185 +6906,185 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Vælg dokument-/præsentationfiler - + Song Import Wizard Guide til import af sange - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Denne guide vil hjælpe dig med at importere sange fra forskellige formater. Klik på næste-knappen herunder for at starte processen ved at vælge et format du vil importere fra. + Denne guide vil hjælpe dig med at importere sange fra forskellige formater. Klik på næste-knappen herunder for at påbegynde processen ved at vælge et format du vil importere fra. - + Generic Document/Presentation Almindeligt dokument/præsentation - + Add Files... Tilføj filer... - + Remove File(s) Fjern fil(er) - + Please wait while your songs are imported. Vent imens dine sange bliver importeret. - + OpenLP 2.0 Databases OpenLP 2.0 databaser - + openlp.org v1.x Databases openlp.org v1.x databaser - + Words Of Worship Song Files Words Of Worship sangfiler - + Songs Of Fellowship Song Files Songs Of Fellowship sangfiler - + SongBeamer Files SongBeamer filer - + SongShow Plus Song Files SongShow Plus sangfiler - + Foilpresenter Song Files Foilpresenter sangfiler - + Copy Kopiér - + Save to File Gem til fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship-importeringen er blevet deaktiveret på grund af at OpenLP ikke kan oprette forbindelse til OpenOffice, eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Importeringen af dokumenter/præsentationer er blevet slået fra, da OpenLP ikke kan tilgå OpenOffice eller LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics eller OpenLP 2.0 eksporteret sang - + OpenLyrics Files OpenLyrics filer - + CCLI SongSelect Files CCLI SongSelect-filer - + EasySlides XML File EasySlides XML-fil - + EasyWorship Song Database EasyWorship sangdatabase - + DreamBeam Song Files DreamBeam sangfiler - + You need to specify a valid PowerSong 1.0 database folder. Du skal angive en gyldig PowerSong 1.0-database-mappe. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - Konvertér først din ZionWorx-database til en CSV-tekstfil, som forklaret i<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Brugerguidenl</a>. + Konvertér først din ZionWorx-database til en CSV-tekstfil, som forklaret i<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Brugerhåndbogen</a>. - + SundayPlus Song Files SundayPlus sangfiler - + This importer has been disabled. Denne importør er slået fra. - + MediaShout Database MediaShout-database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importeringen fra MediaShout er kun understøttet på Windows. Det er deaktiveret på grund af et manglende Python-modul. Hvis du ønsker at bruge denne importør, skal du installere "pyodbc"-modulet. - + SongPro Text Files SongPro-tekstfiler - + SongPro (Export File) SongPro (Eksportfil) - + In SongPro, export your songs using the File -> Export menu - I SongPro eksporterer du dine sange ved at benytte eksportmenuen i File -> Export menu + I SongPro eksporterer du dine sange ved at benytte eksporteringsmenuen i File -> Export menu SongsPlugin.MediaFilesForm - + Select Media File(s) Vælg mediefil(er) - + Select one or more audio files from the list below, and click OK to import them into this song. Vælg én eller flere lydfiler fra listen herunder, og klik OK for at importere dem ind i denne sang. @@ -6908,63 +7092,66 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - + Titles Titler - + Lyrics Sangtekst - + CCLI License: CCLI Licens: - + Entire Song Hele sang - + Are you sure you want to delete the %n selected song(s)? - Er du sikker på at du vil slette den %n valgte sang?Er du sikker på at du vil slette de %n valgte sange? + + Er du sikker på at du vil slette den %n valgte sang? + Er du sikker på at du vil slette de %n valgte sange? + - + Maintain the lists of authors, topics and books. Vedligehold listen over forfattere, emner og bøger. - + copy For song cloning kopi - + Search Titles... Søg blandt titler... - + Search Entire Song... Søg hele sang... - + Search Lyrics... Søg sangtekster... - + Search Authors... Søg forfattere... - + Search Song Books... Søg sangbøger... @@ -6972,7 +7159,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Kunne ikke åbne MediaShout databasen. @@ -6980,7 +7167,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Ikke en gyldig openlp.org 1.x sangdatabase. @@ -6988,7 +7175,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Ikke en gyldig OpenLP 2.0 sangdatabase. @@ -6996,7 +7183,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Eksporterer "%s"... @@ -7004,76 +7191,96 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. Ingen sange der kan importeres. - + Verses not found. Missing "PART" header. Versene kunne ikke findes. Manglende "PART" header. + + + No %s files found. + Ingen %s filer fundet. + + + + Invalid %s file. Unexpected byte value. + Ugyldig %s-fil. Uforventet byte-værdi. + + + + Invalid %s file. Missing "TITLE" header. + Ugyldig %s-fil. Mangler sidehovedet "TITLE". + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Ugyldig %s-fil. Mangler sidehovedet "COPYRIGHTLINE". + SongsPlugin.SongBookForm - + Song Book Maintenance Vedligeholdelse af sangbøger - + &Name: &Navn: - + &Publisher: &Udgiver: - + You need to type in a name for the book. - Då skal indtaste et navn for denne bog. + Du skal indtaste et navn for denne bog. SongsPlugin.SongExportForm - + Your song export failed. - Din sangeksport slog fejl. + Din sangeksportering slog fejl. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - Ekporteringen er færdig. Benyt <strong>OpenLyrics</strong>-importeren for at importere disse filer. + Ekporteringen er færdig. Benyt <strong>OpenLyrics</strong>-importøren for at importere disse filer. SongsPlugin.SongImport - + copyright ophavsret - + The following songs could not be imported: De følgende sange kunne ikke importeres: - + Cannot access OpenOffice or LibreOffice Kan ikke tilgå OpenOffice eller LibreOffice - + Unable to open file Kunne ikke åbne fil - + File not found Fil ikke fundet @@ -7081,107 +7288,107 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Kunne ikke tilføje din forfatter. - + This author already exists. Denne forfatter eksisterer allerede. - + Could not add your topic. Kunne ikke tilføje dit emne. - + This topic already exists. Dette emne eksisterer allerede. - + Could not add your book. Kunne ikke tilføje din bog. - + This book already exists. Denne bog eksisterer allerede. - + Could not save your changes. Kunne ikke gemme dine ændringer. - + Could not save your modified author, because the author already exists. Kunne ikke gemme din ændrede forfatter, da denne forfatter allerede eksisterer. - + Could not save your modified topic, because it already exists. Kunne ikke gemme dit ændrede emne, da det allerede eksisterer. - + Delete Author Slet forfatter - + Are you sure you want to delete the selected author? Er du sikker på at du vil slette den valgte forfatter? - + This author cannot be deleted, they are currently assigned to at least one song. Denne forfatter kan ikke slettes, da den er tilkyttet til mindst én sang. - + Delete Topic Slet emne - + Are you sure you want to delete the selected topic? Er du sikker på at du vil slette det valgte emne? - + This topic cannot be deleted, it is currently assigned to at least one song. Dette emne kan ikke slettes, da den er tilkyttet til mindst én sang. - + Delete Book Slet bog - + Are you sure you want to delete the selected book? Er du sikker på at du vil slette den valgte bog? - + This book cannot be deleted, it is currently assigned to at least one song. Denne bog kan ikke slettes, da den er tilkyttet til mindst én sang. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Forfatteren %s eksisterer allerede. Vil du få sangene med forfatter %s til at benytte den eksisterende forfatter %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Emnet %s eksisterer allerede. Vil du få sangene med emne %s til at benytte det eksisterende emne %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Bogen %s eksisterer allerede. Vil du få sangene med bog %s til at benytte den eksisterende bog %s? @@ -7189,45 +7396,45 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongsTab - + Songs Mode Sangtilstand - + Enable search as you type Slå søg-mens-du-skriver til - + Display verses on live tool bar - Vis vers på live-værktøjslinjen + Vis vers på fremvisningsværktøjslinjen - + Update service from song edit - + Opdatér program efter redigering af sang - + Import missing songs from service files - + Importér manglende sange fra programfiler SongsPlugin.TopicsForm - + Topic Maintenance Vedligeholdelse af emner - + Topic name: Emnenavn: - + You need to type in a topic name. Du skal skrive et emnenavn. @@ -7235,37 +7442,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse Vers - + Chorus Omkvæd - - - Bridge - Bro - - Pre-Chorus - Før-omkvæd + Bridge + C-stykke + Pre-Chorus + Bro + + + Intro Intro - + Ending - Afslutning + Outro - + Other Anden @@ -7273,14 +7480,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Fejl ved læsning af CSV-fil. - + File not valid ZionWorx CSV format. - Filen er ikke i et gyldigt ZionWorx CSV-format. + Filen er ikke et gyldigt ZionWorx CSV-format. + + + + Line %d: %s + Linje %d: %s + + + + Decoding error: %s + Afkodningsfejl: %s + + + + Record %d + Optag %d - \ No newline at end of file + diff --git a/resources/i18n/de.ts b/resources/i18n/de.ts index 5e1f14a7f..a1118bcc3 100644 --- a/resources/i18n/de.ts +++ b/resources/i18n/de.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Hinweis - + Show an alert message. Hinweis anzeigen. - + Alert name singular Hinweis - + Alerts name plural Hinweise - + Alerts container title Hinweise - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Hinweis Erweiterung</strong><br />Die Erweiterung Hinweis ermöglicht es, Texte auf der Anzeige einzublenden. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Hinweistext - + Alert &text: Hinweis&text: - + &New &Neu - + &Save &Speichern - + Displ&ay &Anzeigen - + Display && Cl&ose An&zeigen && Schließen - + New Alert Neuer Hinweis - + You haven't specified any text for your alert. Please type in some text before clicking New. Der Hinweis enthält noch keinen Text. Bitte geben Sie einen Text an, bevor Sie auf »Neu« klicken. - + &Parameter: &Parameter: - + No Parameter Found Kein Parameter gefunden - + You have not entered a parameter to be replaced. Do you want to continue anyway? Sie haben keinen Parameter angegeben, der ersetzt werden könnte. Möchten Sie dennoch fortfahren? - + No Placeholder Found Kein Platzhalter gefunden - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Der Hinweistext enthält nicht '<>'. Möchten Sie dennoch fortfahren? @@ -118,32 +119,32 @@ Möchten Sie dennoch fortfahren? AlertsPlugin.AlertsTab - + Font Schrift - + Font name: Schriftart: - + Font color: Schriftfarbe: - + Background color: Hintergrundfarbe: - + Font size: Schriftgröße: - + Alert timeout: Anzeigedauer: @@ -151,510 +152,510 @@ Möchten Sie dennoch fortfahren? BiblesPlugin - + &Bible &Bibel - + Bible name singular - Bibeltext + Bibel - + Bibles name plural Bibeln - + Bibles container title Bibeln - + No Book Found Kein Buch gefunden - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Es konnte kein passendes Buch gefunden werden. Überprüfen Sie bitte die Schreibweise. - + Import a Bible. Neue Bibel importieren. - + Add a new Bible. Füge eine neue Bibel hinzu. - + Edit the selected Bible. Bearbeite die ausgewählte Bibel. - + Delete the selected Bible. Lösche die ausgewählte Bibel. - + Preview the selected Bible. Zeige die ausgewählte Bibelverse in der Vorschau. - + Send the selected Bible live. Zeige die ausgewählte Bibelverse Live an. - + Add the selected Bible to the service. Füge die ausgewählten Bibelverse zum Ablauf hinzu. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibel Erweiterung</strong><br />Die Bibel Erweiterung ermöglicht es Bibelverse aus verschiedenen Quellen anzuzeigen. - + &Upgrade older Bibles &Upgrade alte Bibeln - + Upgrade the Bible databases to the latest format. Stelle die Bibeln auf das aktuelle Datenbankformat um. - + Genesis 1. Mose - + Exodus 2. Mose - + Leviticus 3. Mose - + Numbers 4. Mose - + Deuteronomy 5. Mose - + Joshua Josua - + Judges Richter - + Ruth Rut - + 1 Samuel 1. Samuel - + 2 Samuel 2. Samuel - + 1 Kings 1. Könige - + 2 Kings 2. Könige - + 1 Chronicles 1. Chronik - + 2 Chronicles 2. Chronik - + Ezra Esra - + Nehemiah Nehemia - + Esther Ester - + Job Hiob - + Psalms Psalm - + Proverbs Sprüche - + Ecclesiastes Prediger - + Song of Solomon Hohelied - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klagelieder - + Ezekiel Hesekiel - + Daniel Daniel - + Hosea Hosea - + Joel Joel - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Micha - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Zefania - + Haggai Haggai - + Zechariah Sacharja - + Malachi Maleachi - + Matthew Matthäus - + Mark Markus - + Luke Lukas - + John Johannes - + Acts Apostelgeschichte - + Romans Römer - + 1 Corinthians 1. Korinther - + 2 Corinthians 2. Korinther - + Galatians Galater - + Ephesians Epheser - + Philippians Philipper - + Colossians Kolosser - + 1 Thessalonians 1. Thessalonicher - + 2 Thessalonians 2. Thessalonicher - + 1 Timothy 1. Timotheus - + 2 Timothy 2. Timotheus - + Titus Titus - + Philemon Philemon - + Hebrews Hebräer - + James Jakobus - + 1 Peter 1. Petrus - + 2 Peter 2. Petrus - + 1 John 1. Johannes - + 2 John 2. Johannes - + 3 John 3. Johannes - + Jude Judas - + Revelation Offenbarung - + Judith Judit - + Wisdom Weisheit - + Tobit Tobit - + Sirach Jesus Sirach - + Baruch Baruch - + 1 Maccabees 1. Makkabäer - + 2 Maccabees 2. Makkabäer - + 3 Maccabees 3. Makkabäer - + 4 Maccabees 4. Makkabäer - + Rest of Daniel Daniel (Spätschrift) - + Rest of Esther Ester (Spätschrift) - + Prayer of Manasses Gebet des Manasse - + Letter of Jeremiah Brief des Jeremia - + Prayer of Azariah Daniel (Asarjas Gebet) - + Susanna Daniel (Susannas Rettung) - + Bel Daniel (Bel) - + 1 Esdras 1. Buch Esdras - + 2 Esdras 2. Buch Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. ,|v|V|Vers|Verse|:;;-|bis;;.|;|+|und;;Ende @@ -663,32 +664,32 @@ Möchten Sie dennoch fortfahren? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Bitte geben Sie den Namen der Bibelübersetzung ein. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Das Copyright muss angegeben werden. Gemeinfreie Bibeln ohne Copyright sind als solche zu kennzeichnen. - + Bible Exists Bibel existiert bereits - + This Bible already exists. Please import a different Bible or first delete the existing one. Diese Bibel existiert bereit. Bitte geben Sie einen anderen Übersetzungsnamen an oder löschen Sie zuerst die Existierende. - + You need to specify a book name for "%s". Sie müssen ein Buchnamen für »%s« angeben. - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Nummern können nur am Anfang benutzt werden und ein nichtnumerisches Zeichen muss folgen. - + Duplicate Book Name Doppelter Buchname - + The Book Name "%s" has been entered more than once. Der Buchnamen »%s« wurde mehrmals angegeben. @@ -710,39 +711,39 @@ und ein nichtnumerisches Zeichen muss folgen. BiblesPlugin.BibleManager - + Scripture Reference Error Fehler im Textverweis - + Web Bible cannot be used Für Onlinebibeln nicht verfügbar - + Text Search is not available with Web Bibles. In Onlinebibeln ist Textsuche nicht möglich. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Es wurde kein Suchbegriff eingegeben. Um nach mehreren Begriffen gleichzeitig zu suchen, müssen die Begriffe durch ein Leerzeichen getrennt sein. Alternative Suchbegriffe müssen per Komma getrennt sein. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Zurzeit sind keine Bibelübersetzungen installiert. Zur Suche muss eine solche mit dem Importassistent importiert werden. - + No Bibles Available Keine Bibeln verfügbar - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -766,79 +767,79 @@ Buch Kapitel%(verse)sVers%(range)sVers%(list)sKapitel%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Bibelstellenanzeige - + Only show new chapter numbers Nur neue Kapitelnummern anzeigen - + Bible theme: Bibel-Design: - + No Brackets Keine Klammern - + ( And ) ( und ) - + { And } { und } - + [ And ] [ und ] - + Note: Changes do not affect verses already in the service. Hinweis: Änderungen beeinflussen keine Bibelverse, welche bereits im Ablauf vorhanden sind. - + Display second Bible verses Vergleichsbibel anzeigen - + Custom Scripture References Benutzerdefiniertes Bibelstellenformat - + Verse Separator: Verstrenner: - + Range Separator: Bereichstrenner: - + List Separator: Aufzählungstrenner: - + End Mark: Endmarkierung: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -847,7 +848,7 @@ Striche »|« getrennt angegeben werden. Der erste Trenner wird zur Darstellung in OpenLP genutzt. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -856,7 +857,7 @@ Striche »|« getrennt angegeben werden. Der erste Trenner wird zur Darstellung in OpenLP genutzt. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -865,7 +866,7 @@ Striche »|« getrennt angegeben werden. Der erste Trenner wird zur Darstellung in OpenLP genutzt. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -874,29 +875,29 @@ Striche »|« getrennt angegeben werden. Der erste Trenner wird zur Darstellung in OpenLP genutzt. - + English Englisch - + Default Bible Language Standard Bibelsprache - + Book name language in search field, search results and on display: Sprache des Buchnames im Suchfeld, Suchergebnis und Projektionsbildschirm: - + Bible Language Bibelsprache - + Application Language Anwendungssprache @@ -904,42 +905,42 @@ Suchergebnis und Projektionsbildschirm: BiblesPlugin.BookNameDialog - + Select Book Name Buchnamen wählen - + Current name: Aktueller Name: - + Corresponding name: Entsprechender Name: - + Show Books From Zeige Bücher aus dem: - + Old Testament Altes Testament - + New Testament Neues Testament - + Apocrypha Apokryphen - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Der folgende Buchname konnte nicht gefunden werden. Bitte den entsprechenden Namen in der Liste wählen. @@ -947,7 +948,7 @@ Suchergebnis und Projektionsbildschirm: BiblesPlugin.BookNameForm - + You need to select a book. Sie müssen ein Buch wählen. @@ -955,18 +956,18 @@ Suchergebnis und Projektionsbildschirm: BiblesPlugin.CSVBible - + Importing books... %s - Importiere Bücher <fehler>... %s + Importiere Bücher... %s - + Importing verses from %s... Importing verses from <book name>... Importiere Verse von %s... - + Importing verses... done. Importiere Verse... Fertig. @@ -974,69 +975,69 @@ Suchergebnis und Projektionsbildschirm: BiblesPlugin.EditBibleForm - + Bible Editor Bibeleditor - + License Details Lizenzdetails - + Version name: Bibelausgabe: - + Copyright: Copyright: - + Permissions: Genehmigung: - + Default Bible Language Standard Bibelsprache - + Book name language in search field, search results and on display: Sprache des Buchnames im Suchfeld, Suchergebnis und Projektionsbildschirm: - + Global Settings Globale Einstellung - + Bible Language Bibelsprache - + Application Language Anwendungssprache - + English Englisch - + This is a Web Download Bible. It is not possible to customize the Book Names. - Dies ist eine Webbibel. + Dies ist eine Internetbibel. Es ist nicht möglich die Büchernamen anzupassen. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Um die benutzerdefinierten Büchernamen zu nutzen muss im Metadaten Tab "Bibelsprache" ausgewählt werden oder wenn "Globale Einstellung" ausgewählt ist, dann muss in den Bibel-Einstellungen "Bibelsprache" ausgewählt werden. @@ -1044,38 +1045,38 @@ Es ist nicht möglich die Büchernamen anzupassen. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registriere Bibel und lade Bücher... - + Registering Language... Registriere Sprache... - + Importing %s... Importing <book name>... Importiere »%s«... - + Download Error Download Fehler - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Beim Herunterladen des Bibeltextes ist ein Fehler aufgetreten. Bitte überprüfen Sie Ihre Internetverbindung. Wenden Sie sich bitte an den OpenLP Support, sollte dieser Fehler weiterhin auftreten. - + Parse Error Formatfehler - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Beim Auslesen des Bibeltextes ist ein Fehler aufgetreten. Wenden Sie sich bitte an den OpenLP Support, sollte dieser Fehler wiederholt auftritt. @@ -1115,12 +1116,12 @@ Es ist nicht möglich die Büchernamen anzupassen. Bible: - Übersetzung: + Bibel: Download Options - Download-Optionen + Download Optionen @@ -1180,8 +1181,7 @@ Es ist nicht möglich die Büchernamen anzupassen. You need to specify a version name for your Bible. - Es wurde kein Suchbegriff eingegeben. -Um nach mehreren Begriffen gleichzeitig zu suchen, müssen die Begriffe durch ein Leerzeichen getrennt sein. Alternative Suchbegriffe müssen per Komma getrennt sein. + Sie müssen den Name der Bibelversion eingeben. @@ -1255,17 +1255,17 @@ werden. Daher ist eine Internetverbindung erforderlich. BiblesPlugin.LanguageDialog - + Select Language Sprache auswählen - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kann die Sprache dieser Bibelnübersezung nicht ermitteln. Bitte wählen Sie die Sprache dieser Bibel aus der Liste aus. - + Language: Sprache: @@ -1273,7 +1273,7 @@ werden. Daher ist eine Internetverbindung erforderlich. BiblesPlugin.LanguageForm - + You need to choose a language. Sie müssen eine Sprache wählen. @@ -1281,92 +1281,92 @@ werden. Daher ist eine Internetverbindung erforderlich. BiblesPlugin.MediaItem - + Quick Schnellsuche - + Find: Suchen: - + Book: Buch: - + Chapter: Kapitel: - + Verse: Vers: - + From: Von: - + To: Bis: - + Text Search Textsuche - + Second: Vergleichstext: - + Scripture Reference Bibelstelle - + Toggle to keep or clear the previous results. Vorheriges Suchergebnis behalten oder verwerfen. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Es ist nicht möglich Einzel- und Zweifach Bibelvers Suchergebnisse zu kombinieren. Sollen die Suchergebnisse gelöscht und eine neue Suche gestartet werden? - + Bible not fully loaded. Bibel wurde nicht vollständig geladen. - + Information Hinweis - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Die Vergleichsbibel enthält nicht alle Verse, die in der Hauptbibel vorhanden sind. Nur die Verse, die in beiden Bibeln vorhanden sind, werden angezeigt. %d Verse sind nicht enthalten. - + Search Scripture Reference... Suche Bibelstelle... - + Search Text... Suche Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1377,7 +1377,7 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Falscher Dateityp. OpenSong Bibeln sind möglicherweise komprimiert und müssen entpackt werden, bevor sie importiert werden. @@ -1385,7 +1385,7 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s wird importiert... @@ -1394,12 +1394,12 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Kodierung wird ermittelt (dies kann etwas dauern)... - + Importing %s %s... Importing <book name> <chapter>... %s %s wird importiert... @@ -1408,149 +1408,149 @@ Um sie wieder zu benutzen, muss sie erneut importier werden. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Ein Backup-Verzeichnis wählen - + Bible Upgrade Wizard Bibelupgradeassistent - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Dieser Assistent hilft Ihnen Ihre Bibeln auf das aktuelle Format umzustellen. Klicken Sie »Weiter« um den Prozess zu starten. - + Select Backup Directory Backup-Verzeichnis wählen - + Please select a backup directory for your Bibles Bitte wählen Sie ein Backup-Verzeichnis für Ihre Bibeln - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Vorherige Versionen von OpenLP 2.0 können nicht mit den aktualisierten Bibeln umgehen. Sie können eine Backup von ihren Bibeln erstellen. Wie Sie ein Backup wiedereinspielen können Sie in den <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a> lesen. - + Please select a backup location for your Bibles. Bitte wählen Sie ein Backup-Verzeichnis für Ihre Bibeln. - + Backup Directory: Backup-Verzeichnis: - + There is no need to backup my Bibles Es soll kein Backup gemacht werden - + Select Bibles Bibeln wählen - + Please select the Bibles to upgrade Bitte wählen Sie die Bibeln welche aktualisiert werden sollen - + Upgrading Aktualisiere... - + Please wait while your Bibles are upgraded. Bitte warten Sie bis Ihre Bibeln aktualisiert sind. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Das Backup war nicht erfolgreich. Damit das Backup erstellt werden kann brauchen Sie Schreibrechte in dem Verzeichnis. - + Upgrading Bible %s of %s: "%s" Failed Aktualisiere Bibel %s von %s: »%s« Fehlgeschlagen... - + Upgrading Bible %s of %s: "%s" Upgrading ... Aktualisiere Bibel %s von %s: »%s« Aktualisiere... - + Download Error Download Fehler - + To upgrade your Web Bibles an Internet connection is required. Um Onlinebibeln zu aktualisieren ist eine Internetverbindung notwendig. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualisiere Bibel %s von %s: »%s« Aktualisiere »%s«... - + Upgrading Bible %s of %s: "%s" Complete Aktualisiere Bibel %s von %s: »%s« Fertig - + , %s failed , %s fehlgeschlagen - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Aktualisiere Bibeln: %s erfolgreich%s Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen werden. Daher ist eine Internetverbindung erforderlich. - + Upgrading Bible(s): %s successful%s Aktualisiere Bibeln: %s erfolgreich%s - + Upgrade failed. Aktualisierung schlug fehl. - + You need to specify a backup directory for your Bibles. Sie müssen ein Backup-Verzeichnis für Ihre Bibeln angeben. - + Starting upgrade... Beginne mit der Aktualisierung... - + There are no Bibles that need to be upgraded. Es sind keine Bibel für eine Aktualisierung vorhanden. @@ -1558,65 +1558,65 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Sonderfolien Erweiterung</strong><br />Die Erweiterung Sonderfolien ermöglicht es beliebige Textfolien zu erstellen. Diese können in der gleichen Weise, wie Lieder dargestellt werden, bieten aber mehr Flexibilität. - + Custom Slide name singular Sonderfolien - + Custom Slides name plural Sonderfolien - + Custom Slides container title Sonderfolien - + Load a new custom slide. Lade eine neue Sonderfolie. - + Import a custom slide. Importieren eine Sonderfolie. - + Add a new custom slide. Erstelle eine neue Sonderfolie. - + Edit the selected custom slide. Bearbeite die ausgewählte Sonderfolie. - + Delete the selected custom slide. Lösche die ausgewählte Sonderfolie. - + Preview the selected custom slide. Zeige die ausgewählte Sonderfolie in der Vorschau. - + Send the selected custom slide live. Zeige die ausgewählte Sonderfolie Live. - + Add the selected custom slide to the service. Füge die ausgewählte Sonderfolie zum Ablauf hinzu. @@ -1624,12 +1624,12 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin.CustomTab - + Custom Display Sonderfolie Anzeige - + Display footer Fußzeile anzeigen @@ -1637,62 +1637,62 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin.EditCustomForm - + Edit Custom Slides Sonderfolien bearbeiten - + &Title: &Titel: - + Add a new slide at bottom. Füge eine neue Folie am Ende ein. - + Edit the selected slide. Bearbeite ausgewählte Folie. - + Edit all the slides at once. Bearbeite alle Folien. - + Split a slide into two by inserting a slide splitter. Füge einen Folienumbruch ein. - + The&me: Desig&n: - + &Credits: A&utoren: - + You need to type in a title. Bitte geben Sie einen Titel ein. - + You need to add at least one slide Es muss mindestens eine Folie erstellt werden. - + Ed&it All &Alle bearbeiten - + Insert Slide Folie einfügen @@ -1700,7 +1700,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin.EditVerseForm - + Edit Slide Folie bearbeiten @@ -1708,68 +1708,71 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Soll die markierte Sonderfolie wirklich gelöscht werden?Sollen die markierten %n Sonderfolien wirklich gelöscht werden? + + Soll die markierte Sonderfolie wirklich gelöscht werden? + Sollen die markierten %n Sonderfolien wirklich gelöscht werden? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Bilder Erweiterung</strong><br />Die Bilder Erweiterung ermöglicht die Anzeige von Bildern.<br />Eine der besonderen Eigenschaften dieser Erweiterung ist die Möglichkeit, in der Ablaufverwaltung, mehrere Bilder zu einer Gruppe zusammen zu fassen. Dies vereinfacht die die Anzeige mehrerer Bilder. Ebenso kann mit Hilfe der Zeitschleife, sehr einfach eine Diaschau erzeugt werden, welche dann automatisch abläuft. Des weiteren können mit dieser Erweiterung Bilder benutzt werden, um das Hintergrundbild des aktuellen Design zu ersetzen. - + Image name singular Bild - + Images name plural Bilder - + Images container title Bilder - + Load a new image. Lade ein neues Bild. - + Add a new image. Füge eine neues Bild hinzu. - + Edit the selected image. Bearbeite das ausgewählte Bild. - + Delete the selected image. Lösche das ausgewählte Bild. - + Preview the selected image. Zeige das ausgewählte Bild in der Vorschau. - + Send the selected image live. Zeige die ausgewählte Bild Live. - + Add the selected image to the service. Füge das ausgewählte Bild zum Ablauf hinzu. @@ -1777,7 +1780,7 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen ImagePlugin.ExceptionDialog - + Select Attachment Anhang auswählen @@ -1785,44 +1788,44 @@ Bitte beachten Sie, dass Bibeltexte von Onlinebibeln bei Bedarf heruntergeladen ImagePlugin.MediaItem - + Select Image(s) Bilder auswählen - + You must select an image to delete. Das Bild, das entfernt werden soll, muss ausgewählt sein. - + You must select an image to replace the background with. Das Bild, das Sie als Hintergrund setzen möchten, muss ausgewählt sein. - + Missing Image(s) Fehlende Bilder - + The following image(s) no longer exist: %s Auf die folgenden Bilder kann nicht mehr zugegriffen werden: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Auf die folgenden Bilder kann nicht mehr zugegriffen werden: %s Wollen Sie die anderen Bilder trotzdem hinzufügen? - + There was a problem replacing your background, the image file "%s" no longer exists. Da auf das Bild »%s« nicht mehr zugegriffen werden kann, konnte es nicht als Hintergrund gesetzt werden. - + There was no display item to amend. Es waren keine Änderungen nötig. @@ -1830,17 +1833,17 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? ImagesPlugin.ImageTab - + Background Color Hintergrundfarbe - + Default Color: Standardfarbe: - + Visible background for images with aspect ratio different to screen. Sichtbarer Hintergrund für Bilder mit einem anderem Seitenverhältnis als der Projektionsbildschirm. @@ -1848,60 +1851,60 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Erweiterung Medien</strong><br />Die Erweiterung Medien ermöglicht es Audio- und Videodateien abzuspielen. - + Media name singular Medien - + Media name plural Medien - + Media container title Medien - + Load new media. Lade eine neue Audio-/Videodatei. - + Add new media. Füge eine neue Audio-/Videodatei hinzu. - + Edit the selected media. Bearbeite die ausgewählte Audio-/Videodatei. - + Delete the selected media. Lösche die ausgewählte Audio-/Videodatei. - + Preview the selected media. Zeige die ausgewählte Audio-/Videodatei in der Vorschau. - + Send the selected media live. Zeige die ausgewählte Audio-/Videodatei Live. - + Add the selected media to the service. Füge die ausgewählte Audio-/Videodatei zum Ablauf hinzu. @@ -1909,57 +1912,57 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? MediaPlugin.MediaItem - + Select Media Audio-/Videodatei auswählen - + You must select a media file to delete. Die Audio-/Videodatei, die entfernt werden soll, muss ausgewählt sein. - + You must select a media file to replace the background with. Das Video, das Sie als Hintergrund setzen möchten, muss ausgewählt sein. - + There was a problem replacing your background, the media file "%s" no longer exists. Da auf die Mediendatei »%s« nicht mehr zugegriffen werden kann, konnte sie nicht als Hintergrund gesetzt werden. - + Missing Media File Fehlende Audio-/Videodatei - + The file %s no longer exists. Die Audio-/Videodatei »%s« existiert nicht mehr. - + Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Es waren keine Änderungen nötig. - + Unsupported File Nicht unterstütztes Dateiformat - + Automatic Automatisch - + Use Player: Nutze Player: @@ -1967,22 +1970,22 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? MediaPlugin.MediaTab - + Available Media Players Verfügbare Medien Player - + %s (unavailable) %s (nicht verfügbar) - + Player Order Player Reihenfolge - + Allow media player to be overridden Überschreiben des Multimediabackends zulassen @@ -1990,17 +1993,17 @@ Wollen Sie die anderen Bilder trotzdem hinzufügen? OpenLP - + Image Files Bilddateien - + Information Hinweis - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2012,37 +2015,61 @@ Möchten Sie dies jetzt tun? OpenLP.AboutForm - + Credits Danksagungen - + License Lizenz - - Contribute - Mitmachen - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program 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 below for more details. This program 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 below for more details. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Anteiliges Copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Lyrics Projection + +OpenLP ist ein freies Programm für Präsentationen in Kirchen. Es können Liedtexte, Bibelverse, Videos, Bilder und Präsentationen (wenn Impress, PowerPoint oder der PowerPoint Viewer installiert sind) mittels Beamer und Computer angezeigt werden. + +Weitere Informationen finden Sie unter: http://openlp.org/ + +OpenLP wird von Freiwilligen Helfern entwickelt und unterstützt. Wenn Sie sich beteiligen wollen betätigen Sie untenstehende Schaltfläche und in ihrem Browser wird ihnen angezeigt, welche Möglichkeiten es gibt. + + + + Volunteer + Freiwillige + + + Project Lead %s @@ -2061,12 +2088,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2075,7 +2110,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2083,13 +2118,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2104,273 +2141,255 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektleitung - %s + Projektleiter + %s Entwickler - %s + %s Mitwirkende - %s + %s Tester - %s + %s -Paketierer - %s +Packetierer + %s Übersetzer - Afrikaans (af) - %s - Deutsch (de) - %s - Englisch, Vereinigtes Königreich (en_GB) - %s - Englisch, Südafrika (en_ZA) - %s - Estnisch (et) - %s - Französisch (fr) - %s - Ungarisch (hu) - %s - Japanisch (ja) - %s - Norwegisch (nb) - %s - Niederländisch (nl) - %s - Portugiesisch, Brasilien (pt_BR) - %s - Russisch (ru) - %s +Afrikaans (af) + %s +Tschechisch (cs) + %s +Dänisch (da) + %s +Deutsch (de) + %s +Griechisch (el) + %s +Englisch, Vereinigtes Königreich (en_GB) + %s +Englisch, Südafrika (en_ZA) + %s +Spanisch (es) + %s +Estnisch (et) + %s +Französisch (fr) + %s +Ungarisch (hu) + %s +Japanisch (ja) + %s +Norwegisch (nb) + %s +Niederländisch (nl) + %s +Portugiesisch, Brasilien (pt_BR) + %s +Russisch (ru) + %s +Schwedisch (sv) + %s Dokumentation - %s + %s Erstellt mit - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ -Danke - »Denn so sehr hat Gott die Welt geliebt, - daß er seinen eingeborenen Sohn - hingegeben hat, damit alle, die an ihn - glauben, nicht verloren gehen, sondern - ewiges Leben haben.« -- Johannes 3, 16 - Als Letztes, aber nicht zuletzt, geht unser - Dank an Gott, unseren Vater, dafür, dass er - uns seinen Sohn gesandt hat, der am Kreuz - für uns gestorben ist und uns so von der - Sünde befreite. Wir veröffentlichen dieses - Programm frei, weil er uns befreit hat. - Halleluja! - - - - OpenLP <version><revision> - Open Source Lyrics Projection + "Denn also hat Gott die Welt geliebt, + dass er seinen eingeborenen Sohn gab, + damit alle, die an ihn glauben, nicht verloren werden, + sondern das ewige Leben haben.." -- Johannes 3, 16 -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision>-Open Source Lyrics Projection - -OpenLP ist eine freie Kirchen- oder Liedtext-Präsentationssoftware, mit der Liedtexte, Bibeltexte, Videos, Bilder sowie auch PowerPoint bzw. Impress Präsentationen (falls diese Programme installiert sind) von einem Computer aus auf einem Beamer angezeigt werden können. - -Erkunden Sie OpenLP: http://openlp.org/ - -OpenLP wird von freiwilligen Helfern programmiert und gewartet. Wenn Sie sich mehr freie christliche Programme wünschen, ermutigen wir Sie, sich doch sich zu beteiligen und den Knopf weiter unten nutzen. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Anteiliges Copyright © 2004-2012 %s + Und zu Schluss, geht unserer aller Dank, + an Gott den Vater dafür , dass er seinen Sohn + auf die Erde schickte, damit er für unsere Sünde + am Kreuz stirbt und uns so frei macht. Amen. OpenLP.AdvancedTab - + UI Settings Benutzeroberfläche - + Number of recent files to display: Anzahl zuletzt geöffneter Abläufe: - + Remember active media manager tab on startup Erinnere aktiven Reiter der Medienverwaltung - + Double-click to send items straight to live Objekte bei Doppelklick live anzeigen - + Expand new service items on creation Neue Ablaufelemente bei ausklappen - + Enable application exit confirmation Aktiviere Bestätigung beim Schließen - + Mouse Cursor Mauszeiger - + Hide mouse cursor when over display window Verstecke den Mauszeiger auf dem Bildschrim - + Default Image Standardbild - + Background color: Hintergrundfarbe: - + Image file: Bild-Datei: - + Open File Datei öffnen - + Advanced Erweitert - + Preview items when clicked in Media Manager Elemente in der Vorschau zeigen, wenn sie in der Medienverwaltung angklickt werden - + Click to select a color. Klicken Sie, um eine Farbe aus zu wählen. - + Browse for an image file to display. Wählen Sie die Bild-Datei aus, die angezeigt werden soll. - + Revert to the default OpenLP logo. Standard-Logo wiederherstellen. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Ablauf %Y-%m-%d %H-%M - + Default Service Name Voreingestellter Ablaufname - + Enable default service name Ablaufnamen vorschlagen - + Date and Time: Zeitpunkt: - + Monday Montag - + Tuesday Dienstag - + Wednesday Mittwoch - + Thurdsday Donnerstag - + Friday Freitag - + Saturday Samstag - + Sunday Sonntag - + Now Jetzt - + Time when usual service starts. Übliche Uhrzeit. - + Name: Name: - + Consult the OpenLP manual for usage. Verwendungsdetails sind im Handbuch zu finden. - + Revert to the default service name "%s". Auf den vorgegebenen Ablaufnahmen »%s« zurücksetzen. - + Example: Beispiel: - + X11 X11 @@ -2380,82 +2399,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Fenstermanager X11 umgehen - + Syntax error. Syntaxfehler. - + Data Location Pfad für Datenablage: - + Current path: Aktueller Pfad: - + Custom path: Benutzerdefinierter Pfad: - + Browse for new data file location. Pfad für Datenablage wählen. - + Set the data location to the default. Pfad für Datenablage zurücksetzen. - + Cancel Abbruch - + Cancel OpenLP data directory location change. Aktuelle Änderungen verwerfen. - + Copy data to new location. Existierende Daten kopieren. - + Copy the OpenLP data files to the new location. Existierende Daten kopieren. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>Warnung:</strong>Der neue Datenpfad enthält bereits Daten. Diese Daten werden während des Kopiervorganges ersetzt. - + Data Directory Error Fehler im Daten Ordner - + Select Data Directory Location Bitte wählen Sie Pfad des Daten Ordners - + Confirm Data Directory Change Bitte bestätigen Sie die Änderung des Daten Ordners - + Reset Data Directory Daten Ordner zurücksetzen - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2464,48 +2483,81 @@ This location will be used after OpenLP is closed. Dieser Ort wird beim nächsten Start benutzt. - + Overwrite Existing Data Existierende Daten überschreiben + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + Das OpenLP Daten Verzeichnis konnte nicht gefunden werden⏎ ⏎%s⏎ ⏎Befindet sich dieses Verzeichnis auf einem Wechseldatenträger, aktivieren Sie dieses bitte.⏎ ⏎Wählen Sie "Nein" um den Start von OpenLP abzubrechen, um das Problem zu beheben. Wählen Sie "Ja" um das Daten Verzeichnis auf seinen Auslieferungzustand zurück zu setzen. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Sollen die OpenLP Daten wirklich in folgendem Verzeichnis abgelegt werden:⏎ ⏎%s⏎ ⏎ Das Datenverzeichnis wird geändert, wenn OpenLP geschlossen wird. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + ACHTUNG:⏎ ⏎Das gewählte Verzeichnis⏎ ⏎%s⏎ ⏎enthält bereits Daten von OpenLP. Sollen diese Daten durch die aktuellen Daten ersetzt werden? + OpenLP.ExceptionDialog - + Error Occurred Fehler aufgetreten - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Ups! OpenLP hat ein Problem und kann es nicht beheben. Der Text im unteren Fenster enthält Informationen, welche möglicherweise hilfreich für die OpenLP Entwickler sind. Bitte senden Sie eine E-Mail an: bugs@openlp.org mit einer ausführlichen Beschreibung was Sie taten als das Problem auftrat. - + Send E-Mail E-Mail senden - + Save to File In Datei speichern - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Bitte geben Sie ein Beschreibung ein, was Sie gemacht haben, als dieser Fehler auftrat. Bitte verwenden Sie (wenn möglich) Englisch. - + Attach File Datei einhängen - + Description characters to enter : %s Mindestens noch %s Zeichen eingeben @@ -2513,24 +2565,24 @@ dieser Fehler auftrat. Bitte verwenden Sie (wenn möglich) Englisch. OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Fehlerprotokoll speichern - + Text files (*.txt *.log *.text) Textdateien (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2561,7 +2613,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2596,17 +2648,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Datei umbenennen - + New File Name: Neuer Dateiname: - + File Copy Datei kopieren @@ -2614,17 +2666,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Sprache wählen - + Choose the translation you'd like to use in OpenLP. Wählen Sie die Sprache, in der OpenLP sein soll. - + Translation: Sprache: @@ -2632,192 +2684,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Lieder - + First Time Wizard Einrichtungsassistent - + Welcome to the First Time Wizard Willkommen zum Einrichtungsassistent - + Activate required Plugins Erweiterungen aktivieren - + Select the Plugins you wish to use. Wählen Sie die Erweiterungen aus, die Sie nutzen wollen. - + Bible Bibel - + Images Bilder - + Presentations Präsentationen - + Media (Audio and Video) Medien (Audio und Video) - + Allow remote access Erlaube Fernsteuerung - + Monitor Song Usage Lied Benutzung protokollieren - + Allow Alerts Erlaube Hinweise - + Default Settings Standardeinstellungen - + Downloading %s... %s wird heruntergeladen... - + Download complete. Click the finish button to start OpenLP. Download vollständig. Klicken Sie »Abschließen« um OpenLP zu starten. - + Enabling selected plugins... Aktiviere ausgewählte Erweiterungen... - + No Internet Connection Keine Internetverbindung - + Unable to detect an Internet connection. Es könnte keine Internetverbindung aufgebaut werden. - + Sample Songs Beispiellieder - + Select and download public domain songs. Wählen und laden Sie gemeinfreie (bzw. kostenlose) Lieder herunter. - + Sample Bibles Beispielbibeln - + Select and download free Bibles. Wählen und laden Sie freie Bibeln runter. - + Sample Themes Beispieldesigns - + Select and download sample themes. Wählen und laden Sie Beispieldesigns runter. - + Set up default settings to be used by OpenLP. Grundeinstellungen konfigurieren. - + Default output display: Projektionsbildschirm: - + Select default theme: Standarddesign: - + Starting configuration process... Starte Konfiguration... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Dieser Assistent wird Ihnen helfen OpenLP für die erste Benutzung zu konfigurieren. Klicken sie »Weiter« um den Assistenten zu starten. - + Setting Up And Downloading Konfiguriere und Herunterladen - + Please wait while OpenLP is set up and your data is downloaded. Bitte warten Sie, während OpenLP eingerichtet wird und die Daten heruntergeladen werden. - + Setting Up Konfiguriere - + Click the finish button to start OpenLP. Klicken Sie »Abschließen« um OpenLP zu starten. - + Download complete. Click the finish button to return to OpenLP. Download vollständig. Klicken Sie »Abschließen« um zurück zu OpenLP zu gelangen. - + Click the finish button to return to OpenLP. Klicken Sie »Abschließen« um zu OpenLP zurück zu gelangen. - + Custom Slides Sonderfolien - + Finish Ende - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2826,7 +2878,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Um diesen Einrichtungsassistenten erneut zu starten und die Beispiel Daten zu importieren, prüfen Sie Ihre Internetverbindung und starten den Assistenten im Menü "Extras/Einrichtungsassistenten starten". - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2838,37 +2890,37 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.FormattingTagDialog - + Configure Formatting Tags Konfiguriere Formatforlagen - + Edit Selection Auswahl bearbeiten - + Save Speichern - + Description Beschreibung - + Tag Tag - + Start HTML Anfangs HTML - + End HTML End HTML @@ -2876,32 +2928,32 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.FormattingTagForm - + Update Error Aktualisierungsfehler - + Tag "n" already defined. Tag »n« bereits definiert. - + New Tag Neuer Tag - + <HTML here> <HTML hier> - + </and here> </und hier> - + Tag %s already defined. Tag »%s« bereits definiert. @@ -2909,82 +2961,82 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.FormattingTags - + Red rot - + Black schwarz - + Blue blau - + Yellow gelb - + Green grün - + Pink rosa - + Orange orange - + Purple lila - + White weiß - + Superscript hochgestellt - + Subscript tiefgestellt - + Paragraph Textabsatz - + Bold fett - + Italics kursiv - + Underline unterstrichen - + Break Textumbruch @@ -2992,122 +3044,122 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.GeneralTab - + General Allgemein - + Monitors Bildschirme - + Select monitor for output display: Projektionsbildschirm: - + Display if a single screen Anzeige bei nur einem Bildschirm - + Application Startup Programmstart - + Show blank screen warning Warnung wenn Projektion deaktiviert wurde - + Automatically open the last service Zuletzt benutzten Ablauf beim Start laden - + Show the splash screen Zeige den Startbildschirm - + Application Settings Anwendungseinstellungen - + Prompt to save before starting a new service Geänderte Abläufe nicht ungefragt ersetzen - + Automatically preview next item in service Vorschau des nächsten Ablaufelements - + sec sek - + CCLI Details CCLI-Details - + SongSelect username: SongSelect-Benutzername: - + SongSelect password: SongSelect-Passwort: - + X X - + Y Y - + Height Höhe - + Width Breite - + Check for updates to OpenLP Prüfe nach Aktualisierungen - + Unblank display when adding new live item Neues Element hellt Anzeige automatisch auf - + Timed slide interval: Automatischer Folienwechsel: - + Background Audio Hintergrundmusik - + Start background audio paused Starte Hintergrundmusik pausiert @@ -3117,12 +3169,12 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi Navigation in Folienkontrollfeld - + Override display position: Anzeigeposition überschreiben: - + Repeat track list Abspielliste wiederholen @@ -3150,12 +3202,12 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.LanguageManager - + Language Sprache - + Please restart OpenLP to use your new language setting. Bitte starten Sie OpenLP neu, um die neue Spracheinstellung zu verwenden. @@ -3163,7 +3215,7 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.MainDisplay - + OpenLP Display OpenLP-Anzeige @@ -3171,287 +3223,287 @@ Um den Einrichtungsassistenten zu unterbrechen (und OpenLP nicht zu starten), bi OpenLP.MainWindow - + &File &Datei - + &Import &Importieren - + &Export &Exportieren - + &View &Ansicht - + M&ode An&sichtsmodus - + &Tools E&xtras - + &Settings &Einstellungen - + &Language &Sprache - + &Help &Hilfe - + Media Manager Medienverwaltung - + Service Manager Ablaufverwaltung - + Theme Manager Designverwaltung - + &New &Neu - + &Open Ö&ffnen - + Open an existing service. Einen vorhandenen Ablauf öffnen. - + &Save &Speichern - + Save the current service to disk. Den aktuellen Ablauf speichern. - + Save &As... Speichern &unter... - + Save Service As Den aktuellen Ablauf unter einem neuen Namen speichern - + Save the current service under a new name. Den aktuellen Ablauf unter einem neuen Namen speichern. - + E&xit &Beenden - + Quit OpenLP OpenLP beenden - + &Theme &Design - + &Configure OpenLP... &Einstellungen... - + &Media Manager &Medienverwaltung - + Toggle Media Manager Die Medienverwaltung ein- bzw. ausblenden - + Toggle the visibility of the media manager. Die Medienverwaltung ein- bzw. ausblenden. - + &Theme Manager &Designverwaltung - + Toggle Theme Manager Die Designverwaltung ein- bzw. ausblenden - + Toggle the visibility of the theme manager. Die Designverwaltung ein- bzw. ausblenden. - + &Service Manager &Ablaufverwaltung - + Toggle Service Manager Die Ablaufverwaltung ein- bzw. ausblenden - + Toggle the visibility of the service manager. Die Ablaufverwaltung ein- bzw. ausblenden. - + &Preview Panel &Vorschau-Ansicht - + Toggle Preview Panel Die Vorschau ein- bzw. ausblenden - + Toggle the visibility of the preview panel. Die Vorschau ein- bzw. ausschalten. - + &Live Panel &Live-Ansicht - + Toggle Live Panel Die Live Ansicht ein- bzw. ausschalten - + Toggle the visibility of the live panel. Die Live Ansicht ein- bzw. ausschalten. - + &Plugin List Er&weiterungen... - + List the Plugins Erweiterungen verwalten - + &User Guide Benutzer&handbuch - + &About &Info über OpenLP - + More information about OpenLP Mehr Informationen über OpenLP - + &Online Help &Online Hilfe - + &Web Site &Webseite - + Use the system language, if available. Die Systemsprache, sofern diese verfügbar ist, verwenden. - + Set the interface language to %s Die Sprache von OpenLP auf %s stellen - + Add &Tool... Hilfsprogramm hin&zufügen... - + Add an application to the list of tools. Eine Anwendung zur Liste der Hilfsprogramme hinzufügen. - + &Default &Standard - + Set the view mode back to the default. Den Ansichtsmodus auf Standardeinstellung setzen. - + &Setup &Einrichten - + Set the view mode to Setup. Die Ansicht für die Ablauferstellung optimieren. - + &Live &Live - + Set the view mode to Live. Die Ansicht für den Live-Betrieb optimieren. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3460,108 +3512,108 @@ You can download the latest version from http://openlp.org/. Sie können die letzte Version auf http://openlp.org abrufen. - + OpenLP Version Updated Neue OpenLP Version verfügbar - + OpenLP Main Display Blanked Hauptbildschirm abgedunkelt - + The Main Display has been blanked out Die Projektion ist momentan nicht aktiv. - + Default Theme: %s Standarddesign: %s - + English Please add the name of your language here Deutsch - + Configure &Shortcuts... Konfiguriere &Tastenkürzel... - + Close OpenLP OpenLP beenden - + Are you sure you want to close OpenLP? Soll OpenLP wirklich beendet werden? - + Open &Data Folder... Öffne &Datenverzeichnis... - + Open the folder where songs, bibles and other data resides. Öffne das Verzeichnis, wo Lieder, Bibeln und andere Daten gespeichert sind. - + &Autodetect &Automatisch - + Update Theme Images Aktualisiere Design Bilder - + Update the preview images for all themes. Aktualisiert die Vorschaubilder aller Designs. - + Print the current service. Drucke den aktuellen Ablauf. - + &Recent Files &Zuletzte geöffnete Abläufe - + L&ock Panels &Sperre Leisten - + Prevent the panels being moved. Unterbindet das Bewegen der Leisten. - + Re-run First Time Wizard Einrichtungsassistent starten - + Re-run the First Time Wizard, importing songs, Bibles and themes. Einrichtungsassistent erneut starten um Beispiel-Lieder, Bibeln und Designs zu importieren. - + Re-run First Time Wizard? Einrichtungsassistent starten? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3570,43 +3622,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Der Einrichtungsassistent kann einige Einstellungen verändern und ggf. neue Lieder, Bibeln und Designs zu den bereits vorhandenen hinzufügen. - + Clear List Clear List of recent files Leeren - + Clear the list of recent files. Leert die Liste der zuletzte geöffnete Abläufe. - + Configure &Formatting Tags... Konfiguriere &Formatvorlagen... - + Export OpenLP settings to a specified *.config file Exportiere OpenLPs Einstellungen in ein *.config-Datei. - + Settings Einstellungen - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importiere OpenLPs Einstellungen aus ein *.config-Datei, die vorher an diesem oder einem anderen Computer exportiert wurde. - + Import settings? Importiere Einstellungen? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3619,50 +3671,73 @@ Der Import wird dauerhafte Veränderungen an Ihrer OpenLP Konfiguration machen. Falsche Einstellungen können fehlerhaftes Verhalten von OpenLP verursachen. - + Open File Öffne Datei - + OpenLP Export Settings Files (*.conf) OpenLP Einstellungsdatei (*.conf) - + Import settings Importiere Einstellungen - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP wird nun geschlossen. Importierte Einstellungen werden bei dem nächsten Start übernommen. - + Export Settings File Exportiere Einstellungsdatei - + OpenLP Export Settings File (*.conf) OpenLP Einstellungsdatei (*.conf) - + New Data Directory Error Fehler im neuen Daten Ordner + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Die gewählte Datei enthält ungültige Einträge.⏎ ⏎Der Abschnitt[%s] ist ungültig.⏎ ⏎Der Vorgang wurde abgebrochen und es wurden keine Änderungen vorgenommen. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopiere OpenLP Daten in das neue Datenverzeichnis - %s - Bitte warten Sie, bis der Kopiervorgang beendet wurde. + + + + OpenLP Data directory copy failed + +%s + OpenLP Datenverzeichnis Kopievorgang ist fehlgeschlagen + +%s + OpenLP.Manager - + Database Error Datenbankfehler - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3671,7 +3746,7 @@ Database: %s Datenbank: %s - + OpenLP cannot load your database. Database: %s @@ -3683,74 +3758,74 @@ Datenbank: %s OpenLP.MediaManagerItem - + No Items Selected Keine Elemente ausgewählt. - + &Add to selected Service Item Zum &gewählten Ablaufelement hinzufügen - + You must select one or more items to preview. Zur Vorschau muss mindestens ein Elemente auswählt sein. - + You must select one or more items to send live. Zur Live Anzeige muss mindestens ein Element ausgewählt sein. - + You must select one or more items. Es muss mindestens ein Element ausgewählt sein. - + You must select an existing service item to add to. Sie müssen ein vorhandenes Ablaufelement auswählen. - + Invalid Service Item Ungültiges Ablaufelement - + You must select a %s service item. Sie müssen ein %s-Element im Ablaufs wählen. - + You must select one or more items to add. Sie müssen ein oder mehrer Element auswählen. - + No Search Results Kein Suchergebnis - + Invalid File Type Ungültige Dateiendung - + Invalid File %s. Suffix not supported Ungültige Datei %s. Dateiendung nicht unterstützt. - + &Clone &Klonen - + Duplicate files were found on import and were ignored. Duplikate wurden beim Importieren gefunden und wurden ignoriert. @@ -3758,12 +3833,12 @@ Dateiendung nicht unterstützt. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Ein <lyrics>-Tag fehlt. - + <verse> tag is missing. Ein <verse>-Tag fehlt. @@ -3771,42 +3846,42 @@ Dateiendung nicht unterstützt. OpenLP.PluginForm - + Plugin List Erweiterungen - + Plugin Details Erweiterungsdetails - + Status: Status: - + Active aktiv - + Inactive inaktiv - + %s (Inactive) %s (inaktiv) - + %s (Active) %s (aktiv) - + %s (Disabled) %s (deaktiviert) @@ -3814,12 +3889,12 @@ Dateiendung nicht unterstützt. OpenLP.PrintServiceDialog - + Fit Page Auf Seite einpassen - + Fit Width An Breite anpassen @@ -3827,77 +3902,77 @@ Dateiendung nicht unterstützt. OpenLP.PrintServiceForm - + Options Optionen - + Copy Kopieren - + Copy as HTML Als HTML kopieren - + Zoom In Heranzoomen - + Zoom Out Wegzoomen - + Zoom Original Original Zoom - + Other Options Andere Optionen - + Include slide text if available Drucke Folientext wenn verfügbar - + Include service item notes Drucke Element-Notizen - + Include play length of media items Drucke Spiellänge von Medien Elementen - + Add page break before each text item Einen Seitenumbruch nach jedem Text-Element einfügen - + Service Sheet Ablauf - + Print Drucken - + Title: Titel: - + Custom Footer Text: Ablaufnotizen: @@ -3905,12 +3980,12 @@ Dateiendung nicht unterstützt. OpenLP.ScreenList - + Screen Bildschirm - + primary Primär @@ -3918,12 +3993,12 @@ Dateiendung nicht unterstützt. OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Anfang</strong>: %s - + <strong>Length</strong>: %s <strong>Spiellänge</strong>: %s @@ -3931,7 +4006,7 @@ Dateiendung nicht unterstützt. OpenLP.ServiceItemEditForm - + Reorder Service Item Reihenfolge der Bilder ändern @@ -3939,287 +4014,298 @@ Dateiendung nicht unterstützt. OpenLP.ServiceManager - + Move to &top Zum &Anfang schieben - + Move item to the top of the service. Das ausgewählte Element an den Anfang des Ablaufs verschieben. - + Move &up Nach &oben schieben - + Move item up one position in the service. Das ausgewählte Element um eine Position im Ablauf nach oben verschieben. - + Move &down Nach &unten schieben - + Move item down one position in the service. Das ausgewählte Element um eine Position im Ablauf nach unten verschieben. - + Move to &bottom Zum &Ende schieben - + Move item to the end of the service. Das ausgewählte Element an das Ende des Ablaufs verschieben. - + &Delete From Service Vom Ablauf &löschen - + Delete the selected item from the service. Das ausgewählte Element aus dem Ablaufs entfernen. - + &Add New Item &Neues Element hinzufügen - + &Add to Selected Item &Zum gewählten Element hinzufügen - + &Edit Item Element &bearbeiten - + &Reorder Item &Aufnahmeelement - + &Notes &Notizen - + &Change Item Theme &Design des Elements ändern - + OpenLP Service Files (*.osz) OpenLP Ablaufdateien (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Die gewählte Datei ist keine gültige OpenLP Ablaufdatei. Der Inhalt ist nicht in UTF-8 kodiert. - + File is not a valid service. Die Datei ist keine gültige OpenLP Ablaufdatei. - + Missing Display Handler Fehlende Anzeigesteuerung - + Your item cannot be displayed as there is no handler to display it Dieses Element kann nicht angezeigt werden, da es keine Steuerung dafür gibt. - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dieses Element kann nicht angezeigt werden, da die zugehörige Erweiterung fehlt oder inaktiv ist. - + &Expand all Alle au&sklappen - + Expand all the service items. Alle Ablaufelemente ausklappen. - + &Collapse all Alle ei&nklappen - + Collapse all the service items. Alle Ablaufelemente einklappen. - + Open File Ablauf öffnen - + Moves the selection down the window. Ausgewähltes nach unten schieben - + Move up Nach oben - + Moves the selection up the window. Ausgewähltes nach oben schieben - + Go Live Live - + Send the selected item to Live. Zeige das ausgewählte Element Live. - + &Start Time &Startzeit - + Show &Preview &Vorschau - + Modified Service Modifizierter Ablauf - + The current service has been modified. Would you like to save this service? Der momentane Ablauf wurde modifiziert. Möchten Sie ihn speichern? - + Custom Service Notes: Notizen zum Ablauf: - + Notes: Notizen: - + Playing time: Spiellänge: - + Untitled Service Unbenannt - + File could not be opened because it is corrupt. Datei konnte nicht geöffnet werden, da sie fehlerhaft ist. - + Empty File Leere Datei - + This service file does not contain any data. Diese Datei enthält keine Daten. - + Corrupt File Dehlerhaft Datei - + Load an existing service. Einen bestehenden Ablauf öffnen. - + Save this service. Den aktuellen Ablauf speichern. - + Select a theme for the service. Design für den Ablauf auswählen. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Entweder ist die Datei fehlerhaft oder sie ist keine OpenLP 2.0 Ablauf-Datei. - - Service File Missing - Ablaufdatei fehlt - - - + Slide theme Element-Design - + Notes Notizen - + Edit Bearbeiten - + Service copy only Ablaufkopie (nicht in der Datenbank) - + Error Saving File Fehler beim Speichern der Datei - + There was an error saving your file. Beim Speichern der Datei ist ein Fehler aufgetreten. + + + Service File(s) Missing + Ablaufdatei(en) fehlen + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Die folgende(n) Datei(en) fehlen im Ablauf: +<byte value="x9"/>%s + +Diese Dateien werden entfernt, wenn Sie mit dem Speichern fortfahren mit. + OpenLP.ServiceNoteForm - + Service Item Notes Elementnotiz @@ -4227,7 +4313,7 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.SettingsForm - + Configure OpenLP Konfiguriere OpenLP @@ -4235,67 +4321,67 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.ShortcutListDialog - + Action Aktion - + Shortcut Tastenkürzel - + Duplicate Shortcut Belegtes Tastenkürzel - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Das Tastenkürzel »%s« ist bereits einer anderen Aktion zugeordnet. Bitte wählen Sie ein anderes Tastenkürzel. - + Alternate Alternative - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Wählen Sie ein Aktion aus und klicken Sie eine der unteren Buttons um einen primären bzw. alternativen Tastenkürzel auf zuzeichnen. - + Default Standard - + Custom Sonderfolien - + Capture shortcut. Tastenkürzel aufzeichen. - + Restore the default shortcut of this action. Standard Tastenkürzel dieser Aktion wiederherstellen. - + Restore Default Shortcuts Standard Tastenkürzel wiederherstellen - + Do you want to restore all shortcuts to their defaults? Möchten Sie alle standard Tastenkürzel wiederherstellen? - + Configure Shortcuts Konfiguriere Tastaturkürzel... @@ -4303,172 +4389,172 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.SlideController - + Hide Verbergen - + Go To Gehe zu - + Blank Screen Anzeige abdunkeln - + Blank to Theme Design leeren - + Show Desktop Desktop anzeigen - + Previous Service Vorheriges Element - + Next Service Nächstes Element - + Escape Item Folie schließen - + Move to previous. Vorherige Folie anzeigen. - + Move to next. Vorherige Folie anzeigen. - + Play Slides Schleife - + Delay between slides in seconds. Pause zwischen den Folien in Sekunden. - + Move to live. Zur Live Ansicht verschieben. - + Add to Service. Füge zum Ablauf hinzu. - + Edit and reload song preview. Bearbeiten und Vorschau aktualisieren. - + Start playing media. Beginne Wiedergabe. - + Pause audio. Pausiere Musik. - + Pause playing media. Pausiere Wiedergabe. - + Stop playing media. Beende Wiedergabe. - + Video position. Videoposition - + Audio Volume. Lautstärke - + Go to "Verse" Gehe zu »Strophe« - + Go to "Chorus" Gehe zu »Refrain« - + Go to "Bridge" Gehe zu »Bridge« - + Go to "Pre-Chorus" Gehe zu »Überleitung« - + Go to "Intro" Gehe zu »Intro« - + Go to "Ending" Gehe zu »Ende« - + Go to "Other" Gehe zu »Anderes« - + Previous Slide Vorherige Folie - + Next Slide Nächste Folie - + Pause Audio Tonausgabe anhalten - + Background Audio Hintergrundton - + Go to next audio track. Zum nächsten Stück gehen. - + Tracks Stücke @@ -4476,17 +4562,17 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.SpellTextEdit - + Spelling Suggestions Rechtschreibvorschläge - + Formatting Tags Formatvorlagen - + Language: Sprache: @@ -4494,615 +4580,627 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.StartTimeForm - + Hours: Stunden: - + Minutes: Minuten: - + Seconds: Sekunden: - + Item Start and Finish Time Element Start- und Endzeit - + Start Start - + Finish Ende - + Length Länge - + Time Validation Error Ungültige Zeitangaben - + Finish time is set after the end of the media item Die Endzeit ist nach dem Ende der Spielzeit gesetzt - + Start time is after the finish time of the media item Die Startzeit ist nach der Endzeit gesetzt - + Theme Layout Design-Layout - + The blue box shows the main area. Der blaue Rahmen zeigt die Hauptanzeigefläche. - + The red box shows the footer. Der rote Rahmen zeigt die Fußzeile. - - OpenLP.ThemeForm - - - Select Image - Bild auswählen - - - - Theme Name Missing - Designname fehlt - - - - There is no name for this theme. Please enter one. - Es wurde kein Designname angegeben. Bitte benennen Sie das Design. - - - - Theme Name Invalid - Designname ungültig - - - - Invalid theme name. Please enter one. - Der Designname ist ungültig. Bitte ändern Sie diesen. - - - - (approximately %d lines per slide) - (ungefähr %d Zeilen pro Folie) - - OpenLP.ThemeManager - + Create a new theme. Erstelle ein neues Design. - + Edit Theme Bearbeite Design - + Edit a theme. Ein bestehendes Design bearbeiten. - + Delete Theme Lösche Design - + Delete a theme. Ein Design löschen. - + Import Theme Importiere Design - + Import a theme. Ein Design aus einer Datei importieren. - + Export Theme Exportiere Design - + Export a theme. Ein Design in eine Datei exportieren. - + &Edit Theme Design &bearbeiten - + &Delete Theme Design &löschen - + Set As &Global Default Als &globalen Standard setzen - + %s (default) %s (Standard) - + You must select a theme to edit. Zum Bearbeiten muss ein Design ausgewählt sein. - + You are unable to delete the default theme. Es ist nicht möglich das Standarddesign zu entfernen. - + Theme %s is used in the %s plugin. Das Design »%s« wird in der »%s« Erweiterung benutzt. - + You have not selected a theme. Es ist kein Design ausgewählt. - + Save Theme - (%s) Speicherort für »%s« - + Theme Exported Design exportiert - + Your theme has been successfully exported. Das Design wurde erfolgreich exportiert. - + Theme Export Failed Designexport fehlgeschlagen - + Your theme could not be exported due to an error. Dieses Design konnte aufgrund eines Fehlers nicht exportiert werden. - + Select Theme Import File OpenLP Designdatei importieren - + File is not a valid theme. Diese Datei ist keine gültige OpenLP Designdatei. - + &Copy Theme Design &kopieren - + &Rename Theme Design &umbenennen - + &Export Theme Design &exportieren - + You must select a theme to rename. Es ist kein Design zur Umbenennung ausgewählt. - + Rename Confirmation Umbenennung bestätigen - + Rename %s theme? Soll das Design »%s« wirklich umbenennt werden? - + You must select a theme to delete. Es ist kein Design zum Löschen ausgewählt. - + Delete Confirmation Löschbestätigung - + Delete %s theme? Soll das Design »%s« wirklich gelöscht werden? - + Validation Error Validierungsfehler - + A theme with this name already exists. Ein Design mit diesem Namen existiert bereits. - + OpenLP Themes (*.theme *.otz) OpenLP Designs (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopie von %s - + Theme Already Exists Design bereits vorhanden + + + Theme %s already exists. Do you want to replace it? + Design »%s« existiert bereits. Möchten Sie es ersetzten? + OpenLP.ThemeWizard - + Theme Wizard Designassistent - + Welcome to the Theme Wizard Willkommen beim Designassistenten - + Set Up Background Hintergrund einrichten - + Set up your theme's background according to the parameters below. Der Designhintergrund wird anhand der Parameter unten eingerichtet. - + Background type: Hintergrundart: - + Solid Color Füllfarbe - + Gradient Farbverlauf - + Color: Farbe: - + Gradient: Verlauf: - + Horizontal horizontal - + Vertical vertikal - + Circular radial - + Top Left - Bottom Right diagonal abwärts - + Bottom Left - Top Right diagonal aufwärts - + Main Area Font Details Schriftschnitt und -farbe - + Define the font and display characteristics for the Display text Die Schrift und die Anzeigeeigenschaften für die Hauptanzeigefläche einrichten - + Font: Schriftart: - + Size: Schriftgröße: - + Line Spacing: Zeilenabstand: - + &Outline: &Umrandung: - + &Shadow: S&chatten: - + Bold Fett - + Italic Kursiv - + Footer Area Font Details Fußzeile einrichten - + Define the font and display characteristics for the Footer text Die Schrift und die Anzeigeeigenschaften für die Fußzeile einrichten - + Text Formatting Details Weitere Formatierung - + Allows additional display formatting information to be defined Hier können zusätzliche Anzeigeeigenschaften eingerichtet werden. - + Horizontal Align: Horizontale Ausrichtung: - + Left links - + Right rechts - + Center zentriert - + Output Area Locations Anzeigeflächen - + Allows you to change and move the main and footer areas. Hier ist es möglich Hauptanzeigefläche und die Fußzeile zu verschieben. - + &Main Area &Hauptanzeigefläche - + &Use default location &Automatisch positionieren - + X position: Von links: - + px px - + Y position: Von oben: - + Width: Breite: - + Height: Höhe: - + Use default location Automatisch positionieren - + Theme name: Designname: - + Edit Theme - %s Bearbeite Design - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Dieser Assistent hilft Ihnen Designs zu erstellen oder zu bearbeiten. Klicken Sie auf »Weiter« um den Hintergrund einzurichten. - + Transitions: Übergänge: - + &Footer Area &Fußzeile - + Starting color: Startfarbe: - + Ending color: Endfarbe - + Background color: Hintergrundfarbe: - + Justify bündig - + Layout Preview Layout-Vorschau - + Transparent transparent - + Preview and Save Vorschau und Speichern - + Preview the theme and save it. Vorschau des Designs zeigen und speichern. + + + (approximately %d lines per slide) + (ungefähr %d Zeilen pro Folie) + + + + Background Image Empty + Hintergrundbild fehlt + + + + You have not selected a background image. Please select one before continuing. + Sie haben kein Hintergrundbild ausgewählt. Bitte wählen sie eins um fortzufahren. + + + + Select Image + Bild auswählen + + + + Theme Name Missing + Designname fehlt + + + + There is no name for this theme. Please enter one. + Es wurde kein Designname angegeben. Bitte geben Sie eine an. + + + + Theme Name Invalid + Designname ungültig + + + + Invalid theme name. Please enter one. + Ungültiger Designname. Bitte geben Sie einen gültigen Namen ein. + OpenLP.ThemesTab - + Global Theme Globales Standarddesign - + Theme Level Designstufe - + S&ong Level &Liedstufe - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Das im jeweiligen Lied eingestellte Design wird verwendet. Wenn für ein Lied kein Design festgelegt ist, wird das Ablaufdesign verwendet. Wenn dort auch kein Design festgelegt wurde, wird das Standarddesign benutzt. - + &Service Level &Ablaufstufe - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Das dem Ablauf zugewiesene Design wird genutzt. Das im Lied eingestellte Design wird ignoriert. Wenn dem Ablauf kein Design zugeordnet ist, dann wird das Standarddesign verwendet. - + &Global Level &Globale Stufe - + Use the global theme, overriding any themes associated with either the service or the songs. Das Standarddesign immer verwenden, unabhängig vom Lieddesign oder Ablaufdesign. - + Themes Designs @@ -5110,315 +5208,315 @@ Der Inhalt ist nicht in UTF-8 kodiert. OpenLP.Ui - + Error Fehler - + About Über - + &Add &Hinzufügen - + Advanced Erweitert - + All Files Alle Dateien - + Bottom unten - + Browse... Durchsuchen... - + Cancel Abbrechen - + CCLI number: CCLI-Nummer: - + Create a new service. Erstelle neuen Ablauf. - + &Delete &Löschen - + &Edit &Bearbeiten - + Empty Field Leeres Feld - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Bild - + Import Import - + Live Live - + Live Background Error Live-Hintergrund Fehler - + Load Öffnen - + Middle mittig - + New Neu - + New Service Neuer Ablauf - + New Theme Neues Design - + No File Selected Singular Keine Datei ausgewählt - + No Files Selected Plural Keine Dateien ausgewählt - + No Item Selected Singular Kein Element ausgewählt - + No Items Selected Plural Keine Elemente ausgewählt - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Vorschau - + Replace Background Live-Hintergrund ersetzen - + Reset Background Hintergrund zurücksetzen - + s The abbreviated unit for seconds s - + Save && Preview Speichern && Vorschau - + Search Suchen - + You must select an item to delete. Sie müssen ein Element zum Löschen auswählen. - + You must select an item to edit. Sie müssen ein Element zum Bearbeiten auswählen. - + Save Service Speicher Ablauf - + Service Ablauf - + Start %s Start %s - + Theme Singular Design - + Themes Plural Designs - + Top oben - + Version Version - + Delete the selected item. Lösche den ausgewählten Eintrag. - + Move selection up one position. Ausgewählten Eintrag nach oben schieben. - + Move selection down one position. Ausgewählten Eintrag nach unten schieben. - + &Vertical Align: &Vertikale Ausrichtung: - + Finished import. Importvorgang abgeschlossen. - + Format: Format: - + Importing Importieren - + Importing "%s"... »%s« wird importiert... - + Select Import Source Importquelle auswählen - + Select the import format and the location to import from. Wählen Sie das Importformat und das Quellverzeichnis aus. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Der openlp.ort 1.x Importassistent wurde, wegen einem fehlenden Python Modul deaktiviert. Wenn Sie diesen Importassistenten nutzen wollen, dann müssen Sie das »python-sqlite« Modul installieren. - + Open %s File Öffne %s Datei - + %p% %p% - + Ready. Fertig. - + Starting import... Beginne Import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Sie müssen wenigstens eine %s-Datei zum Importieren auswählen. @@ -5429,299 +5527,304 @@ Der Inhalt ist nicht in UTF-8 kodiert. Willkommen beim Bibel Importassistenten - + Welcome to the Song Export Wizard Willkommen beim Lied Exportassistenten - + Welcome to the Song Import Wizard Willkommen beim Lied Importassistenten - + Author Singular Autor - + Authors Plural Autoren - - © + + © Copyright symbol. © - + Song Book Singular Liederbuch - + Song Books Plural Liederbücher - + Song Maintenance Liedverwaltung - + Topic Singular Thema - + Topics Plural Themen - + Continuous Fortlaufend - + Default Standard - + Display style: Versangabenformat: - + Duplicate Error Duplikate gefunden - + File Datei - + Help Hilfe - + h The abbreviated unit for hours h - + Layout style: Folienformat: - + Live Toolbar Live-Ansicht - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP läuft bereits. Möchten Sie trotzdem fortfahren? - + Settings Einstellungen - + Tools Extras - + Unsupported File Nicht unterstütztes Dateiformat - + Verse Per Slide Verse pro Folie - + Verse Per Line Verse pro Zeile - + View Ansicht - + Title and/or verses not found Titel und/oder Strophen nicht gefunden - + XML syntax error XML Syntax Fehler - + View Mode Ansichtsmodus - + Open service. Öffne einen Ablauf. - + Print Service Ablauf drucken - + Replace live background. Ersetzen den Live-Hintergrund. - + Reset live background. Setze den Live-Hintergrund zurück. - + Split a slide into two only if it does not fit on the screen as one slide. Teile ein Folie dann, wenn sie als Ganzes nicht auf den Bildschirm passt. - + Welcome to the Bible Upgrade Wizard Willkommen zum Aktualisierungsssistent - + Confirm Delete Löschbestätigung - + Play Slides in Loop Endlosschleife - + Play Slides to End Schleife bis zum Ende - + Stop Play Slides in Loop Halte Endlosschleife an - + Stop Play Slides to End Halte Schleife an - + Next Track Nächstes Stück - + Search Themes... Search bar place holder text Suche Designs... - + Optional &Split Optionale &Teilung - + Invalid Folder Selected Singular Ungültiger Ordner gewählt - + Invalid File Selected Singular Ungültige Datei ausgewählt - + Invalid Files Selected Plural Ungültige Dateien gewählt - + No Folder Selected Singular Kein Ordner ausgewählt - + Open %s Folder Öffne %s Ordner - + You need to specify one %s file to import from. A file type e.g. OpenSong Bitte wählen Sie eine %s Datei, welche importiert werden soll. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Bitte wählen Sie wenigstens einen %s Ordner der importiert werden soll. + + + Importing Songs + Lieder importieren + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 und %2 - + %1, and %2 Locale list separator: end %1, und %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1,%2 @@ -5730,50 +5833,50 @@ Der Inhalt ist nicht in UTF-8 kodiert. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Erweiterung Präsentationen</strong><br />Die Erweiterung Präsentationen ermöglicht die Darstellung von Präsentationen, unter Verwendung verschiedener Programme. In einer Auswahlbox kann eines der verfügbaren Programme gewählt werden. - + Presentation name singular Präsentation - + Presentations name plural Präsentationen - + Presentations container title Präsentationen - + Load a new presentation. Lade eine neue Präsentation. - + Delete the selected presentation. Lösche die ausgewählte Präsentation. - + Preview the selected presentation. Zeige die ausgewählte Präsentation in der Vorschau. - + Send the selected presentation live. Zeige die ausgewählte Präsentation Live. - + Add the selected presentation to the service. Füge die ausgewählte Präsentation zum Ablauf hinzu. @@ -5781,52 +5884,52 @@ Der Inhalt ist nicht in UTF-8 kodiert. PresentationPlugin.MediaItem - + Select Presentation(s) Präsentationen auswählen - + Automatic automatisch - + Present using: Anzeigen mit: - + File Exists Datei existiert - + A presentation with that filename already exists. Eine Präsentation mit diesem Dateinamen existiert bereits. - + This type of presentation is not supported. Präsentationsdateien dieses Dateiformats werden nicht unterstützt. - + Presentations (%s) Präsentationen (%s) - + Missing Presentation Fehlende Präsentation - + The presentation %s is incomplete, please reload. Die Präsentation %s ist unvollständig, bitte erneut laden. - + The presentation %s no longer exists. Die Präsentation %s existiert nicht mehr. @@ -5834,17 +5937,17 @@ Der Inhalt ist nicht in UTF-8 kodiert. PresentationPlugin.PresentationTab - + Available Controllers Verwendete Präsentationsprogramme - + %s (unavailable) %s (nicht verfügbar) - + Allow presentation application to be overridden Überschreiben der Präsentationssoftware zulassen @@ -5852,24 +5955,24 @@ Der Inhalt ist nicht in UTF-8 kodiert. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Erweiterung Fernsteuerung</strong><br />Die Erweiterung Fernsteuerung ermöglicht es eine laufende Version von OpenLP von einem anderen Computer über einen Web-Browser oder über die Fernsteuerungsoberfläche zu steuern. - + Remote name singular Fernsteuerung - + Remotes name plural Fernsteuerung - + Remote container title Fernsteuerung @@ -5878,236 +5981,246 @@ Der Inhalt ist nicht in UTF-8 kodiert. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Fernsteuerung - + OpenLP 2.0 Stage View OpenLP 2.0 Bühnenmonitor - + Service Manager - Ablaufverwaltung + Ablauf - + Slide Controller Live-Ansicht - + Alerts Hinweise - + Search Suchen - + Refresh Aktualisieren - + Blank Schwarz - + Show Zeigen - + Prev Vorh. - + Next Nächste - + Text Text - + Show Alert Hinweis zeigen - + Go Live Live - + No Results Kein Suchergebnis - + Options Optionen - + Add to Service Zum Ablauf hinzufügen - + Home Start - + Theme Design - + Desktop Desktop - + Add &amp; Go to Service Hinzufügen & zum Ablauf gehen + + + Service + Ablauf + + + + Slides + Live-Ansicht + RemotePlugin.RemoteTab - + Serve on IP address: Verfügbar über IP-Adresse: - + Port number: Port-Nummer: - + Server Settings Server-Einstellungen - + Remote URL: Fernsteuerung: - + Stage view URL: Bühnenmonitor: - + Display stage time in 12h format Nutze 12h Format für den Bühnenmonitor - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Zur Installation der Android app bitte den QR code einlesen oder auf <a href="https://market.android.com/details?id=org.openlp.android">download</a> klicken. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Den QR Code einscannen oder auf <a href="https://play.google.com/store/apps/details?id=org.openlp.android">Herunterladen</a> klicken, um die Android Applikation von Google Play zu installieren. SongUsagePlugin - + &Song Usage Tracking &Protokollierung - + &Delete Tracking Data &Protokoll löschen - + Delete song usage data up to a specified date. Das Protokoll ab einem bestimmten Datum löschen. - + &Extract Tracking Data &Protokoll extrahieren - + Generate a report on song usage. Einen Protokoll-Bericht erstellen. - + Toggle Tracking Aktiviere Protokollierung - + Toggle the tracking of song usage. Setzt die Protokollierung aus. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Erweiterung Liedprotokollierung</strong><br />Diese Erweiterung zählt die Verwendung von Liedern in Veranstaltungen. - + SongUsage name singular Liedprotokollierung - + SongUsage name plural Liedprotokollierung - + SongUsage container title Liedprotokollierung - + Song Usage Liedprotokollierung - + Song usage tracking is active. Liedprotokollierung ist aktiv. - + Song usage tracking is inactive. Liedprotokollierung ist nicht aktiv. - + display Bildschirm - + printed gedruckt @@ -6115,32 +6228,32 @@ Der Inhalt ist nicht in UTF-8 kodiert. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Protokolldaten löschen - + Delete Selected Song Usage Events? Wollen sie die ausgewählten Ereignisse löschen? - + Are you sure you want to delete selected Song Usage data? Sollen die ausgewählten Protokolldaten wirklich gelöscht werden? - + Deletion Successful Löschung erfolgreich - + All requested data has been deleted successfully. Die Protokolldaten wurden erfolgreich gelöscht. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Bitte wählen Sie das Datum bis zu dem die Protokollierungsdaten gelöscht werden sollen. Alle gespeicherten Daten, welche älter sind, werden dauerhaft gelöscht. @@ -6148,42 +6261,42 @@ Der Inhalt ist nicht in UTF-8 kodiert. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Protokoll extrahieren - + Select Date Range Zeitspanne - + to bis - + Report Location Zielverzeichnis für die Statistiken - + Output File Location Zielverzeichnis - + usage_detail_%s_%s.txt Aufrufprotokoll_%s_%s.txt - + Report Creation Statistik Erstellung - + Report %s has been successfully created. @@ -6192,12 +6305,12 @@ has been successfully created. wurde erfolgreich erstellt. - + Output Path Not Selected Kein Zielverzeichnis angegeben - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Sie haben kein gültiges Zielverzeichnis für die Statistiken angegeben. Bitte geben Sie ein existierendes Verzeichnis an. @@ -6205,112 +6318,112 @@ wurde erfolgreich erstellt. SongsPlugin - + &Song &Lied - + Import songs using the import wizard. Lieder importieren. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Erweiterung Lieder</strong><br />Die Erweiterung Lieder ermöglicht die Darstellung und Verwaltung von Liedtexten. - + &Re-index Songs Liederverzeichnis &reindizieren - + Re-index the songs database to improve searching and ordering. Das reindizieren der Liederdatenbank kann die Suchergebnisse verbessern. - + Reindexing songs... Reindiziere die Liederdatenbank... - + Arabic (CP-1256) Arabisch (CP-1256) - + Baltic (CP-1257) Baltisch (CP-1257) - + Central European (CP-1250) Zentraleuropäisch (CP-1250) - + Cyrillic (CP-1251) Kyrillisch (CP-1251) - + Greek (CP-1253) Griechisch (CP-1253) - + Hebrew (CP-1255) Hebräisch (CP-1255) - + Japanese (CP-932) Japanisch (CP-932) - + Korean (CP-949) Koreanisch (CP-949) - + Simplified Chinese (CP-936) Chinesisch, vereinfacht (CP-936) - + Thai (CP-874) Thailändisch (CP-874) - + Traditional Chinese (CP-950) Chinesisch, traditionell (CP-950) - + Turkish (CP-1254) Türkisch (CP-1254) - + Vietnam (CP-1258) Vietnamesisch (CP-1258) - + Western European (CP-1252) Westeuropäisch (CP-1252) - + Character Encoding Zeichenkodierung - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6320,100 +6433,105 @@ Gewöhnlich ist die vorausgewählte Einstellung korrekt. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Bitte wählen sie die Zeichenkodierung. Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich. - + Song name singular Lied - + Songs name plural Lieder - + Songs container title Lieder - + Exports songs using the export wizard. Exportiert Lieder mit dem Exportassistenten. - + Add a new song. Erstelle eine neues Lied. - + Edit the selected song. Bearbeite das ausgewählte Lied. - + Delete the selected song. Lösche das ausgewählte Lied. - + Preview the selected song. Zeige das ausgewählte Lied in der Vorschau. - + Send the selected song live. Zeige das ausgewählte Lied Live. - + Add the selected song to the service. Füge das ausgewählte Lied zum Ablauf hinzu. + + + Reindexing songs + Neuindizierung der Lieder + SongsPlugin.AuthorsForm - + Author Maintenance Autorenverwaltung - + Display name: Anzeigename: - + First name: Vorname: - + Last name: Nachname: - + You need to type in the first name of the author. Der Vornamen des Autors muss angegeben werden. - + You need to type in the last name of the author. Der Nachname des Autors muss angegeben werden. - + You have not set a display name for the author, combine the first and last names? Es wurde kein Anzeigename für den Autor angegeben. Soll der Vor- und Nachname kombiniert werden? @@ -6421,7 +6539,7 @@ Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Die Datei hat keine gültige Dateiendung. @@ -6429,12 +6547,12 @@ Diese ist für die korrekte Darstellung der Sonderzeichen verantwortlich. SongsPlugin.EasyWorshipSongImport - + Administered by %s Verwaltet durch %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6446,12 +6564,12 @@ Easy Worship] SongsPlugin.EditBibleForm - + Meta Data Metadaten - + Custom Book Names Benutzerdefinierte Büchernamen @@ -6459,207 +6577,202 @@ Easy Worship] SongsPlugin.EditSongForm - + Song Editor Lied bearbeiten - + &Title: &Titel: - + Alt&ernate title: &Zusatztitel: - + &Lyrics: Lied&text: - + &Verse order: &Versfolge: - + Ed&it All &Alle Bearbeiten - + Title && Lyrics Titel && Liedtext - + &Add to Song &Hinzufügen - + &Remove &Entfernen - + &Manage Authors, Topics, Song Books &Datenbankeinträge verwalten - + A&dd to Song H&inzufügen - + R&emove &Entfernen - + Book: Liederbuch: - + Number: Nummer: - + Authors, Topics && Song Book Autoren, Themen && Liederbücher - + New &Theme Neues &Design - + Copyright Information Copyright - + Comments Kommentare - + Theme, Copyright Info && Comments Design, Copyright && Kommentare - + Add Author Autor hinzufügen - + This author does not exist, do you want to add them? Dieser Autor existiert nicht. Soll er zur Datenbank hinzugefügt werden? - + This author is already in the list. Dieser Autor ist bereits vorhanden. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Es wurde kein gültiger Autor ausgewählt. Bitte wählen Sie einen Autor aus der Liste oder geben Sie einen neuen Autor ein und drücken die Schaltfläche »Autor hinzufügen«. - + Add Topic Thema hinzufügen - + This topic does not exist, do you want to add it? Dieses Thema existiert nicht. Soll es zur Datenbank hinzugefügt werden? - + This topic is already in the list. Dieses Thema ist bereits vorhanden. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Es wurde kein gültiges Thema ausgewählt. Bitte wählen Sie ein Thema aus der Liste oder geben Sie ein neues Thema ein und drücken die Schaltfläche »Thema hinzufügen«. - + You need to type in a song title. Ein Liedtitel muss angegeben sein. - + You need to type in at least one verse. Mindestens ein Vers muss angegeben sein. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Die Versfolge ist ungültig. Es gibt keinen Vers mit der Kennung »%s«. Gültige Werte sind »%s«. - + Add Book Liederbuch hinzufügen - + This song book does not exist, do you want to add it? Dieses Liederbuch existiert nicht. Soll es zur Datenbank hinzugefügt werden? - + You need to have an author for this song. Das Lied benötigt mindestens einen Autor. - - You need to type some text in to the verse. - Die Strophe benötigt etwas Text. - - - + Linked Audio Hintergrundmusik - + Add &File(s) &Datei(en) hinzufügen - + Add &Media &Medien hinzufügen - + Remove &All &Alle Entfernen - + Open File(s) Datei(en) öffnen - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Achtung:</strong> Es werden nicht alle Verse verwendet. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Ungültige Versfolge. Es gibt keine passenden Verse für %s. Gültige Einträge sind %s. @@ -6667,22 +6780,22 @@ Easy Worship] SongsPlugin.EditVerseForm - + Edit Verse Vers bearbeiten - + &Verse type: &Verstyp: - + &Insert &Einfügen - + Split a slide into two by inserting a verse splitter. Füge den Verstyp ein. @@ -6690,82 +6803,82 @@ Easy Worship] SongsPlugin.ExportWizardForm - + Song Export Wizard Lied Exportassistent - + Select Songs Lieder auswählen - + Check the songs you want to export. Wählen Sie die Lieder aus, die Sie exportieren wollen. - + Uncheck All Alle abwählen - + Check All Alle auswählen - + Select Directory Zielverzeichnis auswählen - + Directory: Verzeichnis: - + Exporting Exportiere - + Please wait while your songs are exported. Bitte warten Sie, während die Lieder exportiert werden. - + You need to add at least one Song to export. Sie müssen wenigstens ein Lied zum Exportieren auswählen. - + No Save Location specified Kein Zielverzeichnis angegeben - + Starting export... Beginne mit dem Export... - + You need to specify a directory. Sie müssen ein Verzeichnis angeben. - + Select Destination Folder Zielverzeichnis wählen - + Select the directory where you want the songs to be saved. Geben Sie das Zielverzeichnis an. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Dieser Assistent wird Ihnen helfen Lieder in das freie und offene <strong>OpenLyrics</strong> Lobpreis Lieder Format zu exportieren. @@ -6773,172 +6886,172 @@ Easy Worship] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Präsentationen/Textdokumente auswählen - + Song Import Wizard Lied Importassistent - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Dieser Assistent hilft Ihnen Liedtexte aus verschiedenen Formaten zu importieren. Klicken Sie auf »Weiter« um das Quellformat auszuwählen, aus dem Sie importieren möchten. - + Generic Document/Presentation Präsentation/Textdokument - + Add Files... Hinzufügen... - + Remove File(s) Entfernen - + Please wait while your songs are imported. Die Liedtexte werden importiert. Bitte warten. - + OpenLP 2.0 Databases »OpenLP 2.0« Lieddatenbanken - + openlp.org v1.x Databases »openlp.org 1.x« Lieddatenbanken - + Words Of Worship Song Files »Words of Worship« Lieddateien - + Songs Of Fellowship Song Files Songs Of Fellowship Song Dateien - + SongBeamer Files SongBeamer Dateien - + SongShow Plus Song Files SongShow Plus Song Dateien - + Foilpresenter Song Files Foilpresenter Lied-Dateien - + Copy Kopieren - + Save to File In Datei speichern - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Songs of Fellowship importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Der Präsentation/Textdokument importer wurde deaktiviert, weil OpenLP nicht OpenOffice oder LibreOffice öffnen konnte. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics oder OpenLP 2.0 exportiere Lieder - + OpenLyrics Files »OpenLyrics« Datei - + CCLI SongSelect Files CLI SongSelect Dateien - + EasySlides XML File EasySlides XML Datei - + EasyWorship Song Database EasyWorship Lieddatenbank - + DreamBeam Song Files DreamBeam Lied Dateien - + You need to specify a valid PowerSong 1.0 database folder. Bitte wählen sie einen gültigen PowerSong 1.0 Datenbank Ordner. - + ZionWorx (CSV) ZionWorx(CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Bitte konvertieren Sie zuerst die ZionWorx Datenbank in eine CSV Text Datei, wie beschrieben im <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files SundayPlus Lied Dateien - + This importer has been disabled. Dieser Import Typ wurde deaktiviert. - + MediaShout Database Media Shout Datenbestand - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Der Import von MediaShout Datensätzen wird nur unter Windows unterstützt. Er wurde aufgrund fehlender Python Module deaktiviert. Wenn Sie diese Dateien importieren wollen, müssen sie das "pyodbc" Modul installieren. - + SongPro Text Files SongPro Text Dateien - + SongPro (Export File) SongPro (Export Datei) - + In SongPro, export your songs using the File -> Export menu Um in SongPro Dateien zu exportieren, nutzen Sie dort das Menü "Datei -> Export" @@ -6946,12 +7059,12 @@ Easy Worship] SongsPlugin.MediaFilesForm - + Select Media File(s) Wähle Audio-/Videodatei(en) - + Select one or more audio files from the list below, and click OK to import them into this song. Wähle eine oder mehrere Audio Dateien von der folgenden Liste und klicke >>OK<<, um sie in dieses Lied zu importieren. @@ -6959,63 +7072,66 @@ Easy Worship] SongsPlugin.MediaItem - + Titles Titel - + Lyrics Liedtext - + CCLI License: CCLI-Lizenz: - + Entire Song Ganzes Lied - + Are you sure you want to delete the %n selected song(s)? - Soll das markierte Lied wirklich gelöscht werden?Sollen die markierten %n Lieder wirklich gelöscht werden? + + Soll das markierte Lied wirklich gelöscht werden? + Sollen die markierten %n Lieder wirklich gelöscht werden? + - + Maintain the lists of authors, topics and books. Autoren, Themen und Bücher verwalten. - + copy For song cloning Kopie - + Search Titles... Suche Titel... - + Search Entire Song... Suche im ganzem Lied... - + Search Lyrics... Suche Liedtext... - + Search Authors... Suche Autoren... - + Search Song Books... Suche Liederbücher... @@ -7023,7 +7139,7 @@ Easy Worship] SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Der MediaShout Datensatz kann nicht geöffnet werden. @@ -7031,7 +7147,7 @@ Easy Worship] SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Keine gültige openlp.org 1.x Liederdatenbank. @@ -7039,7 +7155,7 @@ Easy Worship] SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Keine gültige OpenLP 2.x Liederdatenbank. @@ -7047,7 +7163,7 @@ Easy Worship] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportiere »%s«... @@ -7055,35 +7171,55 @@ Easy Worship] SongsPlugin.PowerSongImport - + No songs to import. Keine Lieder zu importieren. - + Verses not found. Missing "PART" header. Es wurden keine Verse gefunden. "PART" Kopfzeile fehlt. + + + No %s files found. + Keine %s Dateien gefunden. + + + + Invalid %s file. Unexpected byte value. + Ungültige %s Datei. Unerwarteter Inhalt. + + + + Invalid %s file. Missing "TITLE" header. + Ungültige »%s« Datei. Die "TITLE" Eigenschaft fehlt. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Ungültige »%s« Datei. Die "COPYRIGHTLINE" Eigenschaft fehlt. + SongsPlugin.SongBookForm - + Song Book Maintenance Liederbuch-Verwaltung - + &Name: &Name: - + &Publisher: &Verlag: - + You need to type in a name for the book. Ein Buchname muss angegeben werden. @@ -7091,12 +7227,12 @@ Easy Worship] SongsPlugin.SongExportForm - + Your song export failed. Der Liedexport schlug fehl. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export beendet. Diese Dateien können mit dem <strong>OpenLyrics</strong> Importer wieder importiert werden. @@ -7104,27 +7240,27 @@ Easy Worship] SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: Die folgenden Lieder konnten nicht importiert werden: - + Cannot access OpenOffice or LibreOffice Kann OpenOffice.org oder LibreOffice nicht öffnen - + Unable to open file Konnte Datei nicht öffnen - + File not found Datei nicht gefunden @@ -7132,107 +7268,107 @@ Easy Worship] SongsPlugin.SongMaintenanceForm - + Could not add your author. Der Autor konnte nicht hinzugefügt werden. - + This author already exists. Der Autor existiert bereits in der Datenbank. - + Could not add your topic. Das Thema konnte nicht hinzugefügt werden. - + This topic already exists. Das Thema existiert bereits in der Datenbank. - + Could not add your book. Das Liederbuch konnte nicht hinzugefügt werden. - + This book already exists. Das Liederbuch existiert bereits in der Datenbank. - + Could not save your changes. Die Änderungen konnten nicht gespeichert werden. - + Could not save your modified author, because the author already exists. Der geänderte Autor konnte nicht gespeichert werden, da es bereits in der Datenbank existiert. - + Could not save your modified topic, because it already exists. Das geänderte Thema konnte nicht gespeichert werden, da es bereits in der Datenbank existiert. - + Delete Author Autor löschen - + Are you sure you want to delete the selected author? Soll der ausgewählte Autor wirklich gelöscht werden? - + This author cannot be deleted, they are currently assigned to at least one song. Der Autor konnte nicht gelöscht werden, da er mindestens einem Lied zugeordnet ist. - + Delete Topic Thema löschen - + Are you sure you want to delete the selected topic? Soll das ausgewählte Thema wirklich gelöscht werden? - + This topic cannot be deleted, it is currently assigned to at least one song. Das Thema konnte nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist. - + Delete Book Liederbuch löschen - + Are you sure you want to delete the selected book? Soll das ausgewählte Liederbuch wirklich gelöscht werden? - + This book cannot be deleted, it is currently assigned to at least one song. Das Liederbuch konnte nicht gelöscht werden, da es mindestens einem Lied zugeordnet ist. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Der Autor »%s« existiert bereits. Sollen Lieder von »%s« »%s« als Autor setzen? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Das Thema »%s« existiert bereits. Sollen Lieder zum Thema »%s« das Thema »%s« verwenden? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Das Liederbuch »%s« existiert bereits. Sollen Lieder aus »%s« dem Buch »%s« zugeordnet werden? @@ -7240,27 +7376,27 @@ Easy Worship] SongsPlugin.SongsTab - + Songs Mode Lieder-Einstellungen - + Enable search as you type Aktiviere Vorschlagssuche (search as you type) - + Display verses on live tool bar Versauswahl in der Live-Symbolleiste zeigen - + Update service from song edit Lieder im Ablauf nach Bearbeitung aktualisieren - + Import missing songs from service files Lieder aus Abläufen in die Datenbank importieren @@ -7268,17 +7404,17 @@ Easy Worship] SongsPlugin.TopicsForm - + Topic Maintenance Themenverwaltung - + Topic name: Thema: - + You need to type in a topic name. Ein Thema muss angegeben werden. @@ -7286,37 +7422,37 @@ Easy Worship] SongsPlugin.VerseType - + Verse Strophe - + Chorus Refrain - + Bridge Bridge - + Pre-Chorus Überleitung - + Intro Intro - + Ending Ende - + Other Anderes @@ -7324,14 +7460,29 @@ Easy Worship] SongsPlugin.ZionWorxImport - + Error reading CSV file. Fehler beim Lesen der CSV Datei. - + File not valid ZionWorx CSV format. Die Datei hat kein gültiges ZionWorx CSV Format. + + + Line %d: %s + Zeile %d: %s + + + + Decoding error: %s + Dekodier Fehler: %s + + + + Record %d + Datensatz %d + - \ No newline at end of file + diff --git a/resources/i18n/el.ts b/resources/i18n/el.ts index 8610ef851..a4d398aed 100644 --- a/resources/i18n/el.ts +++ b/resources/i18n/el.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Ειδοποίηση - + Show an alert message. Εμφάνιση ενός μηνύματος ειδοποίησης. - + Alert name singular Ειδοποίηση - + Alerts name plural Ειδοποιήσεις - + Alerts container title Ειδοποιήσεις - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Πρόσθετο Ειδοποιήσεων</strong><br />Το πρόσθετο ειδοποιήσεων ελέγχει την εμφάνιση βοηθητικών μηνυμάτων στην οθόνη προβολής. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Μήνυμα Ειδοποίησης - + Alert &text: &Κείμενο Ειδοποίησης: - + &New &Νέο - + &Save &Αποθήκευση - + Displ&ay Παρουσί&αση - + Display && Cl&ose Παρουσίαση && Κλ&είσιμο - + New Alert Νέα Ειδοποίηση - + You haven't specified any text for your alert. Please type in some text before clicking New. Δεν έχετε προσδιορίσει κάποιο κείμενο για την ειδοποίησή σας. Παρακαλούμε πληκτρολογείστε ένα κείμενο πριν κάνετε κλικ στο Νέο. - + &Parameter: &Παράμετρος: - + No Parameter Found Δεν Βρέθηκε Παράμετρος - + You have not entered a parameter to be replaced. Do you want to continue anyway? Δεν έχετε εισαγάγει μια παράμετρο προς αντικατάσταση. Θέλετε να συνεχίσετε οπωσδήποτε; - + No Placeholder Found Δεν Βρέθηκε Σελιδοδείκτης - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Η ειδοποίηση δεν περιέχει '<>'. Θέλετε να συνεχίσετε οπωσδήποτε; @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Γραμματοσειρά - + Font name: Ονομασία γραμματοσειράς: - + Font color: Χρώμα γραμματοσειράς: - + Background color: Χρώμα φόντου: - + Font size: Μέγεθος γραμματοσειράς: - + Alert timeout: Χρόνος αναμονής: @@ -151,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Βίβλος - + Bible name singular Βίβλος - + Bibles name plural Βίβλοι - + Bibles container title Βίβλοι - + No Book Found Δεν βρέθηκε κανένα βιβλίο - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Δεν βρέθηκε βιβλίο που να ταιριάζει στην Βίβλο αυτή. Ελέγξτε την ορθογραφία του βιβλίου. - + Import a Bible. Εισαγωγή μιας Βίβλου. - + Add a new Bible. Προσθήκη νέας Βίβλου. - + Edit the selected Bible. Επεξεργασία επιλεγμένης Βίβλου. - + Delete the selected Bible. Διαγραφή της επιλεγμένης Βίβλου. - + Preview the selected Bible. Προεπισκόπηση επιλεγμένης Βίβλου. - + Send the selected Bible live. Προβολή της επιλεγμένης Βίβλου. - + Add the selected Bible to the service. Προσθήκη της επιλεγμένης Βίβλου προς χρήση. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Πρόσθετο Βίβλων</strong><br />Το πρόσθετο Βίβλων παρέχει την δυνατότητα να εμφανίζονται εδάφια Βίβλων από διαφορετικές πηγές κατά την λειτουργία. - + &Upgrade older Bibles &Αναβάθμιση παλαιότερων Βίβλων - + Upgrade the Bible databases to the latest format. Αναβάθμιση της βάσης δεδομένων Βίβλων στην τελευταία μορφή. - + Genesis Γένεση - + Exodus Έξοδος - + Leviticus Λευιτικό - + Numbers Αριθμοί - + Deuteronomy Δευτερονόμιο - + Joshua Ιησούς του Ναυή - + Judges Κριτές - + Ruth Ρουθ - + 1 Samuel 1 Σαμουήλ - + 2 Samuel 2 Σαμουήλ - + 1 Kings 1 Βασιλέων - + 2 Kings 2 Βασιλέων - + 1 Chronicles 1 Χρονικών - + 2 Chronicles 2 Χρονικών - + Ezra Έσδρας - + Nehemiah Νεεμίας - + Esther Εσθήρ - + Job Ιώβ - + Psalms Ψαλμοί - + Proverbs Παροιμίες - + Ecclesiastes Εκκλησιαστής - + Song of Solomon Άσμα Ασμάτων - + Isaiah Ησαΐας - + Jeremiah Ιερεμίας - + Lamentations Θρήνοι - + Ezekiel Ιεζεκιήλ - + Daniel Δανιήλ - + Hosea Ωσηέ - + Joel Ιωήλ - + Amos Αμώς - + Obadiah Αβδιού - + Jonah Ιωνάς - + Micah Μιχαίας - + Nahum Ναούμ - + Habakkuk Αββακούμ - + Zephaniah Σοφονίας - + Haggai Αγγαίος - + Zechariah Ζαχαρίας - + Malachi Μαλαχίας - + Matthew Ματθαίος - + Mark Μάρκος - + Luke Λουκάς - + John Ιωάννης - + Acts Πράξεις - + Romans Ρωμαίους - + 1 Corinthians 1 Κορινθίους - + 2 Corinthians 2 Κορινθίους - + Galatians Γαλάτες - + Ephesians Εφεσίους - + Philippians Φιλιππησίους - + Colossians Κολοσσαείς - + 1 Thessalonians 1 Θεσσαλονικείς - + 2 Thessalonians 2 Θεσσαλονικείς - + 1 Timothy 1 Τιμόθεο - + 2 Timothy 2 Τιμόθεο - + Titus Τίτο - + Philemon Φιλήμονα - + Hebrews Εβραίους - + James Ιακώβου - + 1 Peter 1 Πέτρου - + 2 Peter 2 Πέτρου - + 1 John 1 Ιωάννου - + 2 John 2 Ιωάννου - + 3 John 3 Ιωάννου - + Jude Ιούδα - + Revelation Αποκάλυψη - + Judith Ιουδίθ - + Wisdom Σοφία Σολομώντος - + Tobit Τωβίτ - + Sirach Σοφία Σειράχ - + Baruch Βαρούχ - + 1 Maccabees 1 Μακκαβαίων - + 2 Maccabees 2 Μακκαβαίων - + 3 Maccabees 3 Μακκαβαίων - + 4 Maccabees 4 Μακκαβαίων - + Rest of Daniel Υπόλοιπο Δανιήλ - + Rest of Esther Υπόλοιπο Εσθήρ - + Prayer of Manasses Προσευχή του Μανασσή - + Letter of Jeremiah Επιστολή του Ιερεμία - + Prayer of Azariah Προσευχή Αζαρίου - + Susanna Σουσάννα - + Bel Βηλ - + 1 Esdras 1 Έσδρας - + 2 Esdras 2 Έσδρας - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verse|verses;;-|to;;,|and;;end @@ -663,32 +664,32 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Πρέπει να καθορίσετε όνομα έκδοσης για την Βίβλο σας. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Πρέπει να θέσετε πνευματικά δικαιώματα για την Βίβλο σας. Οι Βίβλοι στο Δημόσιο Domain πρέπει να σημειώνονται ως δημόσιες. - + Bible Exists Υπάρχουσα Βίβλος - + This Bible already exists. Please import a different Bible or first delete the existing one. Αυτή η Βίβλος υπάρχει ήδη. Παρακαλούμε εισάγετε μια διαφορετική Βίβλο ή πρώτα διαγράψτε την ήδη υπάρχουσα. - + You need to specify a book name for "%s". Πρέπει να ορίσετε όνομα βιβλίου για το "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ be followed by one or more non-numeric characters. ακολουθούνται από έναν ή παραπάνω μη αριθμητικούς χαρακτήρες. - + Duplicate Book Name Αντίγραφο Ονομασίας Βιβλίου - + The Book Name "%s" has been entered more than once. Η Ονομασία Βιβλίου "%s" έχει εισαχθεί πάνω από μία φορές. @@ -710,39 +711,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error Σφάλμα Αναφοράς Βίβλου - + Web Bible cannot be used Η Βίβλος Web δεν μπορεί να χρησιμοποιηθεί - + Text Search is not available with Web Bibles. Η Αναζήτηση Κειμένου δεν είναι διαθέσιμη με Βίβλους Web. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Δεν δώσατε λέξη προς αναζήτηση. Μπορείτε να διαχωρίσετε διαφορετικές λέξεις με κενό για να αναζητήσετε για όλες τις λέξεις και μπορείτε να τις διαχωρίσετε με κόμμα για να αναζητήσετε για μια από αυτές. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Δεν υπάρχουν εγκατεστημένες Βίβλοι. Χρησιμοποιήστε τον Οδηγό Εισαγωγής για να εγκαταστήσετε μία η περισσότερες Βίβλους. - + No Bibles Available Βίβλοι Μη Διαθέσιμοι - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Εμφάνιση Εδαφίου - + Only show new chapter numbers Εμφάνιση μόνο των αριθμών νέων κεφαλαίων - + Bible theme: Θέμα Βίβλου: - + No Brackets Απουσία Παρενθέσεων - + ( And ) ( Και ) - + { And } { Και } - + [ And ] [ Και ] - + Note: Changes do not affect verses already in the service. Σημείωση: Οι αλλαγές δεν επηρεάζουν τα εδάφια που χρησιμοποιούνται. - + Display second Bible verses Εμφάνιση εδαφίων δεύτερης Βίβλου - + Custom Scripture References Εξατομικευμένες Βιβλικές Παραπομπές - + Verse Separator: Διαχωριστής Εδαφίων: - + Range Separator: Διαχωριστής Εύρους: - + List Separator: Διαχωριστής Λίστας: - + End Mark: Σήμανση Τέλους - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ Please clear this edit line to use the default value. Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ Please clear this edit line to use the default value. Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ Please clear this edit line to use the default value. Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ Please clear this edit line to use the default value. Παρακαλώ σβήστε αυτή την γραμμή για χρήση της προκαθορισμένης τιμής. - + English Αγγλικά - + Default Bible Language Προεπιλεγμένη Γλώσσα Βίβλου - + Book name language in search field, search results and on display: Γλώσσα ονομασίας βιβλίου στο πεδίο αναζήτησης, στα αποτελέσματα αναζήτησης και στην εμφάνιση: - + Bible Language Γλώσσα Βίβλου - + Application Language Γλώσσα Εφαρμογής @@ -903,42 +904,42 @@ search results and on display: BiblesPlugin.BookNameDialog - + Select Book Name Επιλέξτε Όνομα Βιβλίου - + Current name: Τρέχον όνομα: - + Corresponding name: Αντίστοιχο όνομα: - + Show Books From Εμφάνιση Βιβλίων Από - + Old Testament Παλαιά Διαθήκη - + New Testament Καινή Διαθήκη - + Apocrypha Απόκρυφα - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Το ακόλουθο όνομα βιβλίου δεν βρέθηκε εσωτερικά. Παρακαλούμε επιλέξτε το αντίστοιχο αγγλικό όνομα από την λίστα. @@ -946,7 +947,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. Πρέπει να επιλέξετε ένα βιβλίο. @@ -954,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Εισαγωγή βιβλίων... %s - + Importing verses from %s... Importing verses from <book name>... Εισαγωγή εδαφίων από %s... - + Importing verses... done. Εισαγωγή εδαφίων... ολοκληρώθηκε. @@ -973,69 +974,69 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor Συντάκτης Βίβλου - + License Details Λεπτομέρειες Άδειας - + Version name: Όνομα έκδοσης: - + Copyright: Πνευματικά Δικαιώματα: - + Permissions: Άδειες: - + Default Bible Language Προεπιλεγμένη Γλώσσα Βίβλου - + Book name language in search field, search results and on display: Γλώσσα ονομασίας βιβλίου στο πεδίο αναζήτησης, στα αποτελέσματα αναζήτησης και στην εμφάνιση: - + Global Settings Καθολικές Ρυθμίσεις - + Bible Language Γλώσσα Βίβλου - + Application Language Γλώσσα Εφαρμογής - + English Αγγλικά - + This is a Web Download Bible. It is not possible to customize the Book Names. Αυτή είναι μία Βίβλος Κατεβασμένη από το Internet. Δεν είναι δυνατή η τροποποίηση των ονομάτων των Βιβλίων. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Για χρήση των παραμετροποιημένων ονομάτων βιβλίων, η "Γλώσσα Βίβλου" πρέπει να έχει επιλεχθεί στην καρτέλα Meta Data, ή αν έχει επιλεχθεί το "Καθολικές Ρυθμίσεις", στην σελίδα Βίβλων του μενού Ρύθμιση του OpenLP. @@ -1043,38 +1044,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Εγγραφή Βίβλου και φόρτωμα βιβλίων... - + Registering Language... Εγγραφή Γλώσσας... - + Importing %s... Importing <book name>... Εισαγωγή %s... - + Download Error Σφάλμα Λήψης - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Υπήρξε ένα πρόβλημα κατά την λήψη των επιλεγμένων εδαφίων. Παρακαλούμε ελέγξτε την σύνδεση στο Internet και αν αυτό το σφάλμα επανεμφανιστεί παρακαλούμε σκεφτείτε να κάνετε αναφορά σφάλματος. - + Parse Error Σφάλμα Ανάλυσης - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Υπήρξε πρόβλημα κατά την εξαγωγή των επιλεγμένων εδαφίων σας. Αν αυτό το σφάλμα επανεμφανιστεί σκεφτείτε να κάνετε μια αναφορά σφάλματος. @@ -1252,17 +1253,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Επιλογή Γλώσσας - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Το OpenLP δεν μπορεί να αναγνωρίσει την γλώσσα αυτής της μετάφρασης της Βίβλου. Παρακαλούμε επιλέξτε την γλώσσα από την παρακάτω λίστα. - + Language: Γλώσσα: @@ -1270,7 +1271,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Πρέπει να επιλέξετε μια γλώσσα. @@ -1278,110 +1279,110 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Γρήγορο - + Find: Εύρεση: - + Book: Βιβλίο: - + Chapter: Κεφάλαιο: - + Verse: Εδάφιο: - + From: Από: - + To: Έως: - + Text Search Αναζήτηση Κειμένου - + Second: Δεύτερο: - + Scripture Reference Αναφορά Γραφής - + Toggle to keep or clear the previous results. Εναλλαγή διατήρησης ή καθαρισμού των προηγούμενων αποτελεσμάτων. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Δεν μπορείτε να συνδυάσετε αποτελέσματα αναζητήσεων μονών και διπλών εδαφίων Βίβλου. Θέλετε να διαγράψετε τα αποτελέσματα αναζήτησης και να ξεκινήσετε νέα αναζήτηση; - + Bible not fully loaded. Βίβλος ατελώς φορτωμένη. - + Information Πληροφορίες - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Η δεύτερη Βίβλος δεν περιέχει όλα τα εδάφια που υπάρχουν στην κύρια Βίβλο. Θα εμφανιστούν μόνο τα εδάφια που βρίσκονται και στις δύο Βίβλους. %d εδάφια δεν έχουν συμπεριληφθεί στα αποτελέσματα. - + Search Scripture Reference... Αναζήτηση Αναφοράς Βίβλου... - + Search Text... Αναζήτηση Κειμένου... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Εισαγωγή %s %s... @@ -1390,12 +1391,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Ανίχνευση κωδικοποίησης (μπορεί να χρειαστεί μερικά λεπτά)... - + Importing %s %s... Importing <book name> <chapter>... Εισαγωγή %s %s... @@ -1404,149 +1405,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Επιλέξτε έναν Κατάλογο Αντιγράφων Ασφαλείας - + Bible Upgrade Wizard Οδηγός Αναβάθμισης Βίβλου - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Ο οδηγός αυτός θα σας βοηθήσει να αναβαθμίσετε τις υπάρχουσες Βίβλους σας από μία προηγούμενη έκδοση του OpenLP 2. Κάντε κλικ στο πλήκτρο επόμενο παρακάτω για να ξεκινήσετε την διαδικασία αναβάθμισης. - + Select Backup Directory Επιλέξτε Φάκελο Αντιγράφων Ασφαλείας - + Please select a backup directory for your Bibles Παρακαλούμε επιλέξτε έναν φάκελο αντιγράφων ασφαλείας για τις Βίβλους σας - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Οι προηγούμενες εκδόσεις του OpenLP 2.0 δεν μπορούν να χρησιμοποιήσουν αναβαθμισμένες Βίβλους. Ετούτο το εργαλείο θα δημιουργήσει αντίγραφο ασφαλείας των τρεχόντων Βίβλων σας ώστε να αντιγράψετε απλά τα αρχεία πίσω στον φάκελο του OpenLP αν χρειαστείτε να γυρίσετε σε μια προηγούμενη έκδοση του OpenLP. Οδηγίες για το πως θα επαναφέρετε τα αρχεία μπορείτε να βρείτε στις <a href="http://wiki.openlp.org/faq"> Συχνές Ερωτήσεις</a>. - + Please select a backup location for your Bibles. Παρακαλούμε επιλέξτε μία τοποθεσία για αντίγραφα ασφαλείας για τις Βίβλους σας. - + Backup Directory: Φάκελος Αντιγράφων Ασφαλείας: - + There is no need to backup my Bibles Δεν είναι απαραίτητο να κάνω αντίγραφα ασφαλείας των Βίβλων μου - + Select Bibles Επιλογή Βίβλων - + Please select the Bibles to upgrade Παρακαλούμε επιλέξτε τις Βίβλους προς αναβάθμιση - + Upgrading Αναβάθμιση - + Please wait while your Bibles are upgraded. Παρακαλούμε περιμένετε όσο αναβαθμίζονται οι Βίβλοι σας. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Η δημιουργία αντιγράφων ασφαλείας δεν ήταν επιτυχής. Για αντίγραφα ασφαλείας των Βίβλων σας χρειάζεστε δικαιώματα εγγραφής στον δηλωμένο φάκελο. - + Upgrading Bible %s of %s: "%s" Failed Αναβάθμιση Βίβλου %s από %s: "%s" Απέτυχε - + Upgrading Bible %s of %s: "%s" Upgrading ... Αναβάθμιση Βίβλου %s από %s: "%s" Αναβάθμιση ... - + Download Error Σφάλμα Λήψης - + To upgrade your Web Bibles an Internet connection is required. Για αναβάθμιση των Βίβλων Web χρειάζεστε σύνδεση στο Internet. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Αναβάθμιση Βίβλου %s από %s: "%s" Αναβάθμιση %s ... - + Upgrading Bible %s of %s: "%s" Complete Αναβάθμιση Βίβλου %s από %s: "%s" Ολοκληρώθηκε - + , %s failed , %s απέτυχε - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Αναβάθμιση Βίβλου(-ων): %s επιτυχής%s Παρακαλούμε έχετε υπόψη ότι εδάφια από τις Βίβλους Web θα κατέβουν κατά απαίτηση και έτσι μια σύνδεση στο Internet είναι απαραίτητη. - + Upgrading Bible(s): %s successful%s Αναβάθμιση Βίβλου(-ων): %s επιτυχής%s - + Upgrade failed. Η Αναβάθμιση απέτυχε. - + You need to specify a backup directory for your Bibles. Πρέπει να καθορίσετε έναν φάκελο αντιγράφων ασφαλείας για τις Βίβλους σας. - + Starting upgrade... Έναρξη αναβάθμισης... - + There are no Bibles that need to be upgraded. Δεν υπάρχουν Βίβλοι που χρειάζονται αναβάθμιση. @@ -1554,65 +1555,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Πρόσθετο Εξατομικευμένης Διαφάνειας</strong><br />Το πρόσθετο εξατομικευμένης διαφάνειας παρέχει την δυνατότητα να στήσετε διαφάνειες που μπορούν να προβληθούν στην οθόνη όπως τα τραγούδια. Αυτό το πρόσθετο παρέχει περισσότερη ελευθερία από το πρόσθετο τραγουδιών. - + Custom Slide name singular Εξατομικευμένη Διαφάνεια - + Custom Slides name plural Εξατομικευμένες Διαφάνειες - + Custom Slides container title Εξατομικευμένες Διαφάνειες - + Load a new custom slide. Φόρτωση νέας εξατομικευμένης διαφάνειας. - + Import a custom slide. Εισαγωγή εξατομικευμένης διαφάνειας. - + Add a new custom slide. Προσθήκη νέας εξατομικευμένης διαφάνειας. - + Edit the selected custom slide. Επεξεργασία της επιλεγμένης εξατομικευμένης διαφάνειας. - + Delete the selected custom slide. Διαγραφή της επιλεγμένης εξατομικευμένης διαφάνειας. - + Preview the selected custom slide. Προεπισκόπηση της επιλεγμένης εξατομικευμένης διαφάνειας. - + Send the selected custom slide live. Προβολή της επιλεγμένης εξατομικευμένης διαφάνειας. - + Add the selected custom slide to the service. Προσθήκη της επιλεγμένης εξατομικευμένης διαφάνειας σε λειτουργία. @@ -1620,12 +1621,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Εξατομικευμένη Προβολή - + Display footer Προβολή υποσέλιδου @@ -1633,62 +1634,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Επεξεργασία Εξατομικευμένων Διαφανειών - + &Title: &Τίτλος: - + Add a new slide at bottom. Προσθήκη νέας διαφάνειας κάτω. - + Edit the selected slide. Επεξεργασία επιλεγμένης διαφάνειας. - + Edit all the slides at once. Επεξεργασία όλων των διαφανειών ταυτόχρονα. - + Split a slide into two by inserting a slide splitter. Χωρίστε μια διαφάνεια σε δύο με εισαγωγή ενός διαχωριστή διαφανειών. - + The&me: Θέ&μα: - + &Credits: &Πιστώσεις: - + You need to type in a title. Πρέπει να δηλώσετε έναν τίτλο. - + You need to add at least one slide Πρέπει να προσθέσετε τουλάχιστον μία διαφάνεια - + Ed&it All &Επεξεργασία Όλων - + Insert Slide Εισαγωγή Διαφάνειας @@ -1696,76 +1697,79 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide - + CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια;Είστε σίγουροι ότι θέλετε να διαγράψετε τις %n επιλεγμένες εξατομικευμένες διαφάνειες; + + Είστε σίγουροι ότι θέλετε να διαγράψετε την %n επιλεγμένη εξατομικευμένη διαφάνεια; + Είστε σίγουροι ότι θέλετε να διαγράψετε τις %n επιλεγμένες εξατομικευμένες διαφάνειες; + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Πρόσθετο Εικόνας</strong><br />Το πρόσθετο εικόνας παρέχει την προβολή εικόνων.<br />Ένα από τα εξέχοντα χαρακτηριστικά αυτού του πρόσθετου είναι η δυνατότητα να ομαδοποιήσετε πολλές εικόνες μαζί στον διαχειριστή λειτουργίας, κάνοντας την εμφάνιση πολλών εικόνων ευκολότερη. Επίσης μπορεί να κάνει χρήση του χαρακτηριστικού "προγραμματισμένη επανάληψη" για την δημιουργία παρουσίασης διαφανειών που τρέχει αυτόματα. Επιπρόσθετα εικόνες του πρόσθετου μπορούν να χρησιμοποιηθούν για παράκαμψη του φόντου του τρέχοντος θέματος, το οποίο αποδίδει αντικείμενα κειμένου όπως τα τραγούδια με την επιλεγμένη εικόνα ως φόντο αντί του φόντου που παρέχεται από το θέμα. - + Image name singular Εικόνα - + Images name plural Εικόνες - + Images container title Εικόνες - + Load a new image. Φόρτωση νέας εικόνας. - + Add a new image. Προσθήκη νέας εικόνας. - + Edit the selected image. Επεξεργασία επιλεγμένης εικόνας. - + Delete the selected image. Διαγραφή επιλεγμένης εικόνας. - + Preview the selected image. Προεπισκόπηση επιλεγμένης εικόνας. - + Send the selected image live. Προβολή της επιλεγμένης εικόνας. - + Add the selected image to the service. Προβολή της επιλεγμένης εικόνας σε λειτουργία. @@ -1773,7 +1777,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Επιλογή Επισυναπτόμενου @@ -1781,44 +1785,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Επιλογή Εικόνας(-ων) - + You must select an image to delete. Πρέπει να επιλέξετε μια εικόνα προς διαγραφή. - + You must select an image to replace the background with. Πρέπει να επιλέξετε μια εικόνα με την οποία θα αντικαταστήσετε το φόντο. - + Missing Image(s) Απούσες Εικόνες - + The following image(s) no longer exist: %s Οι ακόλουθες εικόνες δεν υπάρχουν πια: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Οι ακόλουθες εικόνες δεν υπάρχουν πια: %s Θέλετε να προσθέσετε τις άλλες εικόνες οπωσδήποτε; - + There was a problem replacing your background, the image file "%s" no longer exists. Υπήρξε πρόβλημα κατά την αντικατάσταση του φόντου, το αρχείο εικόνας "%s" δεν υπάρχει πια. - + There was no display item to amend. Δεν υπήρξε κανένα αντικείμενο προς απεικόνιση για διόρθωση. @@ -1826,17 +1830,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Χρώμα Φόντου - + Default Color: Προκαθορισμένο Χρώμα: - + Visible background for images with aspect ratio different to screen. Ορατό φόντο για εικόνες με διαφορετικές αναλογίες από την οθόνη. @@ -1844,60 +1848,60 @@ Do you want to add the other images anyway? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Πρόσθετο Πολυμέσων</strong><br />Το πρόσθετο πολυμέσων παρέχει την αναπαραγωγή ήχου και βίντεο. - + Media name singular Πολυμέσο - + Media name plural Πολυμέσα - + Media container title Πολυμέσα - + Load new media. Φόρτωση νέων πολυμέσων. - + Add new media. Προσθήκη νέων πολυμέσων. - + Edit the selected media. Επεξεργασία επιλεγμένων πολυμέσων. - + Delete the selected media. Διαγραφή επιλεγμένων πολυμέσων. - + Preview the selected media. Προεπισκόπηση επιλεγμένων πολυμέσων. - + Send the selected media live. Προβολή επιλεγμένων πολυμέσων. - + Add the selected media to the service. Προσθήκη επιλεγμένων πολυμέσων σε λειτουργία. @@ -1905,57 +1909,57 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media Επιλογή πολυμέσων - + You must select a media file to delete. Πρέπει να επιλέξετε ένα αρχείο πολυμέσων για διαγραφή. - + You must select a media file to replace the background with. Πρέπει να επιλέξετε ένα αρχείο πολυμέσων με το οποίο θα αντικαταστήσετε το φόντο. - + There was a problem replacing your background, the media file "%s" no longer exists. Υπήρξε πρόβλημα κατά την αντικατάσταση του φόντου, τα αρχεία πολυμέσων "%s" δεν υπάρχουν πια. - + Missing Media File Απόντα Αρχεία Πολυμέσων - + The file %s no longer exists. Το αρχείο %s δεν υπάρχει πια. - + Videos (%s);;Audio (%s);;%s (*) Βίντεο (%s);;Ήχος (%s);;%s (*) - + There was no display item to amend. Δεν υπήρξε αντικείμενο προς προβολή για διόρθωση. - + Unsupported File Μη υποστηριζόμενο Αρχείο - + Automatic Αυτόματο - + Use Player: Χρήση Προγράμματος Αναπαραγωγής: @@ -1963,22 +1967,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players Διαθέσιμα Προγράμματα Αναπαραγωγής - + %s (unavailable) %s (μη διαθέσιμο) - + Player Order Σειρά Αναπαραγωγής - + Allow media player to be overridden Επιτρέψτε την παράκαμψη του προγράμματος αναπαραγωγής πολυμέσων @@ -1986,17 +1990,17 @@ Do you want to add the other images anyway? OpenLP - + Image Files Αρχεία Εικόνων - + Information Πληροφορίες - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2008,37 +2012,55 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Πιστώσεις - + License Άδεια - - Contribute - Συνεισφέρετε - - - + build %s έκδοση %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Αυτό το πρόγραμμα είναι ανοιχτό λογισμικό, μπορείτε να το διανείμετε και/ή να το τροποποιήσετε υπό τους όρους της άδειας GNU General Public License όπως δημοσιεύτηκε από το Ίδρυμα Ελεύθερου Λογισμικού, έκδοση 2 της Άδειας. - + This program 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 below for more details. Αυτό το πρόγραμμα διανέμεται με την ελπίδα ότι θα είναι χρήσιμο, αλλά ΧΩΡΙΣ ΚΑΜΙΑ ΕΓΓΥΗΣΗ, χωρίς καν την συνεπαγόμενη εγγύηση ΕΜΠΟΡΙΚΟΤΗΤΑΣ ή ΧΡΗΣΗΣ ΓΙΑ ΣΥΓΚΕΚΡΙΜΕΝΟ ΣΚΟΠΟ. Δείτε παρακάτω για περισσότερες λεπτομέρειες. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Πνευματικά Δικαιώματα © 2004-2012 %s +Τμηματικά πνευματικά δικαιώματα © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + + Volunteer + + + + Project Lead %s @@ -2057,12 +2079,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2071,7 +2101,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2079,13 +2109,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2100,269 +2132,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Υπεύθυνοι Project -%s - -Ανάπτυξη -%s - -Συνεισφέροντες -%s - -Ελεγκτές -%s - -Packagers -%s - -Μεταφραστές -Αφρικανικά (af) -%s -Γερμανικά (de) -%s -Αγγλικά, Ηνωμένο Βασίλειο (en_GB) -%s -Αγγλικά, Νότιος Αφρική (en_ZA) -%s -Εσθονικά (et) -%s -Γαλλικά (fr) -%s -Ουγγρικά (hu) -%s -Ιαπωνικά (ja) -%s -Νορβηγικά Bokmål (nb) -%s -Ολλανδικά (nl) -%s -Πορτογαλικά, Βραζιλία (pt_BR) -%s -Ρώσικα (ru) -%s - -Documentation -%s - -Χτίστηκε με -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygen Icons: http://oxygen-icons.org/ - -Final Credit -"Επειδή, με τέτοιον τρόπο αγάπησε ο Θεός τον κόσμο, -ώστε έδωσε τον Υιό του τον μονογενή, -για να μη χαθεί καθένας ο οποίος πιστεύει σ' αυτόν, -αλλά να έχει αιώνια ζωή." -- Ιωάννης 3:16 - -Τέλος οι ευχαριστίες μας πάνε στον -Πατέρα μας Θεό, γιατί έστειλε τον Υιό Του να πεθάνει -στον σταυρό, ελευθερώνοντάς μας από την αμαρτία. -Σας προσφέρουμε αυτό το πρόγραμμα δωρεάν επειδή -Αυτός μας ελευθέρωσε. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -Το OpenLP είναι ένα δωρεάν πρόγραμμα εκκλησιαστικών παρουσιάσεων, ή πρόγραμμα προβολής στίχων, που χρησιμοποιείται για την προβολή διαφανειών τραγουδιών, εδαφίων της Βίβλου, βίντεο, εικόνων, ακόμη και παρουσιάσεων (εάν έχετε εγκατεστημένα ένα εκ των Impress, PowerPoint ή PowerPoint Viewer) για την εκκλησιαστική λατρεία με την χρήση ενός υπολογιστή και ενός βιντεοπροβολέα. - -Μάθετε περισσότερα για το OpenLP: http://openlp.org/ - -Το OpenLP έχει γραφτεί και συντηρείται από εθελοντές. Αν θα θέλατε να δείτε περισσότερα δωρεάν Χριστιανικά προγράμματα να υλοποιούνται, παρακαλούμε σκεφτείτε να συνεισφέρετε χρησιμοποιώντας το παρακάτω πλήκτρο. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Πνευματικά Δικαιώματα © 2004-2012 %s -Τμηματικά πνευματικά δικαιώματα © 2004-2012 %s + OpenLP.AdvancedTab - + UI Settings Επιλογές Διεπαφής - + Number of recent files to display: Αριθμός πρόσφατων αρχείων προς απεικόνιση: - + Remember active media manager tab on startup Θυμήσου την καρτέλα του ενεργού διαχειριστή πολυμέσων κατά την εκκίνηση - + Double-click to send items straight to live Προβολή αντικειμένου άμεσα με διπλό κλικ - + Expand new service items on creation Ανάπτυξη νέων αντικειμένων λειτουργίας κατά την δημιουργία - + Enable application exit confirmation Ενεργοποίηση επιβεβαίωσης κατά την έξοδο - + Mouse Cursor Δείκτης Ποντικιού - + Hide mouse cursor when over display window Απόκρυψη δείκτη ποντικιού από το παράθυρο προβολής - + Default Image Προκαθορισμένη Εικόνα - + Background color: Χρώμα φόντου: - + Image file: Αρχείο εικόνας: - + Open File Άνοιγμα Αρχείου - + Advanced Για προχωρημένους - + Preview items when clicked in Media Manager Προεπισκόπηση αντικειμένων κατά το κλικ στον Διαχειριστή Πολυμέσων - + Click to select a color. Κάντε κλικ για επιλογή χρώματος. - + Browse for an image file to display. Αναζήτηση για αρχείο εικόνας προς προβολή. - + Revert to the default OpenLP logo. Επαναφορά στο προκαθορισμένο λογότυπο του OpenLP. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Λειτουργία %Y-%m-%d %H-%M - + Default Service Name Προκαθορισμένη Ονομασία Λειτουργίας - + Enable default service name Ενεργοποίηση Προκαθορισμένης Ονομασίας Λειτουργίας - + Date and Time: Ημερομηνία και Ώρα: - + Monday Δευτέρα - + Tuesday Τρίτη - + Wednesday Τετάρτη - + Thurdsday Πέμπτη - + Friday Παρασκευή - + Saturday Σάββατο - + Sunday Κυριακή - + Now Τώρα - + Time when usual service starts. Συνήθης ώρα έναρξης λειτουργίας. - + Name: Όνομα: - + Consult the OpenLP manual for usage. Συμβουλευτείτε το εγχειρίδιο του OpenLP για την χρήση. - + Revert to the default service name "%s". Επαναφορά στο προκαθορισμένο όνομα λειτουργίας "%s" - + Example: Παράδειγμα: - + X11 X11 @@ -2372,82 +2320,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Παράκαμψη Διαχειριστή Παραθύρων X11 - + Syntax error. Σφάλμα Σύνταξης. - + Data Location Τοποθεσία Δεδομένων - + Current path: Τρέχουσα τοποθεσία: - + Custom path: Παραμετροποιημένη τοποθεσία: - + Browse for new data file location. Άνοιγμα περιηγητή για νέα τοποθεσία αρχείων δεδομένων. - + Set the data location to the default. Ορίστε την τοποθεσία δεδομένων στην προκαθορισμένη τοποθεσία. - + Cancel Ακύρωση - + Cancel OpenLP data directory location change. Ακυρώστε την αλλαγή τοποθεσίας του φακέλου δεδομένων του OpenLP. - + Copy data to new location. Αντιγραφή δεδομένων σε νέα τοποθεσία. - + Copy the OpenLP data files to the new location. Αντιγραφή των αρχείων δεδομένων του OpenLP στην νέα τοποθεσία. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ΠΡΟΣΟΧΗ:</strong> Η τοποθεσία του νέου φακέλου δεδομένων περιέχει τα αρχεία δεδομένων του OpenLP. Τα αρχεία αυτά θα αντικατασταθούν κατά την αντιγραφή. - + Data Directory Error Σφάλμα Φακέλου Δεδομένων - + Select Data Directory Location Επιλογή Τοποθεσίας Φακέλου Δεδομένων - + Confirm Data Directory Change Επιβεβαίωση Αλλαγής Φακέλου Δεδομένων - + Reset Data Directory Επαναφορά Φακέλου Δεδομένων - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2456,47 +2404,80 @@ This location will be used after OpenLP is closed. Η τοποθεσία αυτή θα χρησιμοποιηθεί αφού κλείσετε το OpenLP. - + Overwrite Existing Data Αντικατάσταση Υπάρχοντων Δεδομένων + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + + OpenLP.ExceptionDialog - + Error Occurred Παρουσιάστηκε Σφάλμα - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Ωχ! Το OpenLP αντιμετώπισε πρόβλημα και δεν επανήλθε. Το κείμενο στο παρακάτω πλαίσιο περιέχει πληροφορίες που μπορεί να είναι χρήσιμες στους προγραμματιστές του OpenLP, οπότε παρακαλούμε να το στείλετε με e-mail στην διεύθυνση bugs@openlp.org, μαζί με μία λεπτομερή αναφορά του τι κάνατε όταν παρουσιάστηκε το πρόβλημα. - + Send E-Mail Αποστολή E-Mail - + Save to File Αποθήκευση σε Αρχείο - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Παρακαλούμε να περιγράψετε τι κάνατε που προκάλεσε αυτό το πρόβλημα (20 χαρακτήρες τουλάχιστον) - + Attach File Επισύναψη Αρχείου - + Description characters to enter : %s Χαρακτήρες περιγραφής προς εισαγωγή: %s @@ -2504,24 +2485,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Πλατφόρμα: %s - + Save Crash Report Αποθήκευση Αναφοράς Σφάλματος - + Text files (*.txt *.log *.text) Αρχεία κειμένου (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2552,7 +2533,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2588,17 +2569,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Μετονομασία Αρχείου - + New File Name: Νέο Όνομα Αρχείου: - + File Copy Αντιγραφή Αρχείου @@ -2606,17 +2587,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Επιλογή Μετάφρασης - + Choose the translation you'd like to use in OpenLP. Επιλέξτε την μετάφραση που θέλετε να χρησιμοποιήσετε στο OpenLP. - + Translation: Μετάφραση: @@ -2624,192 +2605,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Τραγούδια - + First Time Wizard Οδηγός Πρώτης Εκτέλεσης - + Welcome to the First Time Wizard Καλώς ορίσατε στον Οδηγό Πρώτης Εκτέλεσης - + Activate required Plugins Ενεργοποίηση απαιτούμενων Πρόσθετων - + Select the Plugins you wish to use. Επιλέξτε τα Πρόσθετα που θέλετε να χρησιμοποιήσετε. - + Bible Βίβλος - + Images Εικόνες - + Presentations Παρουσιάσεις - + Media (Audio and Video) Πολυμέσα (Ήχος και Βίντεο) - + Allow remote access Επιτρέψτε απομακρυσμένη πρόσβαση - + Monitor Song Usage Επίβλεψη Χρήσης Τραγουδιών - + Allow Alerts Επιτρέψτε τις Ειδοποιήσεις - + Default Settings Προκαθορισμένες Ρυθμίσεις - + Downloading %s... Λήψη %s... - + Download complete. Click the finish button to start OpenLP. Η λήψη ολοκληρώθηκε. Κάντε κλικ στο κουμπί τερματισμού για να ξεκινήσετε το OpenLP. - + Enabling selected plugins... Ενεργοποίηση των επιλεγμένων Πρόσθετων... - + No Internet Connection Καμία Σύνδεση Διαδικτύου - + Unable to detect an Internet connection. Δεν μπορεί να ανιχνευθεί σύνδεση στο διαδίκτυο. - + Sample Songs Δείγματα Τραγουδιών - + Select and download public domain songs. Επιλογή και λήψη τραγουδιών του δημόσιου πεδίου. - + Sample Bibles Δείγματα Βίβλων - + Select and download free Bibles. Επιλογή και λήψη δωρεάν Βίβλων. - + Sample Themes Δείγματα Θεμάτων - + Select and download sample themes. Επιλογή και λήψη δειγμάτων θεμάτων. - + Set up default settings to be used by OpenLP. Θέστε τις προκαθορισμένες ρυθμίσεις για χρήση από το OpenLP. - + Default output display: Προκαθορισμένη έξοδος προβολής: - + Select default theme: Επιλογή προκαθορισμένου θέματος: - + Starting configuration process... Εκκίνηση διαδικασίας διαμόρφωσης... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Αυτός ο οδηγός θα σας βοηθήσει να διαμορφώσετε το OpenLP για αρχική χρήση. Κάντε κλικ στο πλήκτρο Επόμενο παρακάτω για να ξεκινήσετε. - + Setting Up And Downloading Διαμόρφωση Και Λήψη - + Please wait while OpenLP is set up and your data is downloaded. Περιμένετε όσο το OpenLP διαμορφώνεται και γίνεται λήψη των δεδομένων σας. - + Setting Up Διαμόρφωση - + Click the finish button to start OpenLP. Κάντε κλικ στο πλήκτρο τερματισμού για να ξεκινήσετε το OpenLP. - + Download complete. Click the finish button to return to OpenLP. Λήψη ολοκληρώθηκε. Κάντε κλικ στο πλήκτρο τερματισμού για να γυρίσετε στο OpenLP. - + Click the finish button to return to OpenLP. Κάντε κλικ στο πλήκτρο τερματισμού για να γυρίσετε στο OpenLP. - + Custom Slides Εξατομικευμένες Διαφάνειες - + Finish Τέλος - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2818,7 +2799,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Για επανεκτέλεση του Οδηγού Πρώτης Εκτέλεσης και εισαγωγή των δειγμάτων δεδομένων σε ύστερη στιγμή, ελέγξτε την σύνδεσή σας στο διαδίκτυο και ξανατρέξτε αυτόν τον οδηγό επιλέγοντας "Εργαλεία/ Επανεκτέλεση Οδηγού Πρώτης Εκτέλεσης" από το OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2830,37 +2811,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Ρύθμιση Ετικετών Μορφοποίησης - + Edit Selection Επεξεργασία Επιλογής - + Save Αποθήκευση - + Description Περιγραφή - + Tag Ετικέτα - + Start HTML Έναρξη HTML - + End HTML Τέλος HTML @@ -2868,32 +2849,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Σφάλμα Ενημέρωσης - + Tag "n" already defined. Η ετικέτα "n" έχει ήδη οριστεί. - + New Tag Νέα Ετικέτα - + <HTML here> <HTML εδώ> - + </and here> </και εδώ> - + Tag %s already defined. Η ετικέτα %s έχει ήδη οριστεί. @@ -2901,82 +2882,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Κόκκινο - + Black Μαύρο - + Blue Μπλε - + Yellow Κίτρινο - + Green Πράσινο - + Pink Ροζ - + Orange Πορτοκαλί - + Purple Μωβ - + White Άσπρο - + Superscript Εκθέτης - + Subscript Δείκτης - + Paragraph Παράγραφος - + Bold Έντονη γραφή - + Italics Πλάγια γραφή - + Underline Υπογράμμιση - + Break Διακοπή @@ -2984,122 +2965,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Γενικά - + Monitors Οθόνες - + Select monitor for output display: Επιλογή οθόνης για προβολή: - + Display if a single screen Εμφάνιση αν υπάρχει μόνο μια οθόνη - + Application Startup Έναρξη Εφαρμογής - + Show blank screen warning Εμφάνιση ειδοποίησης κενής οθόνης - + Automatically open the last service Αυτόματο άνοιγμα της τελευταίας λειτουργίας - + Show the splash screen Εμφάνιση της οθόνης καλωσορίσματος - + Application Settings Ρυθμίσεις Εφαρμογής - + Prompt to save before starting a new service Ερώτηση για αποθήκευση πριν την έναρξη νέας λειτουργίας - + Automatically preview next item in service Αυτόματη προεπισκόπηση του επόμενου αντικειμένου στην λειτουργία - + sec δευτ - + CCLI Details Πληροφορίες CCLI - + SongSelect username: Όνομα χρήστη SongSelect: - + SongSelect password: Κωδικός SongSelect: - + X X - + Y Y - + Height Ύψος - + Width Πλάτος - + Check for updates to OpenLP Έλεγχος για ενημερώσεις του OpenLP - + Unblank display when adding new live item Απευθείας προβολή όταν προστίθεται νέο αντικείμενο - + Timed slide interval: Χρονικό διάστημα διαφάνειας: - + Background Audio Ήχος Υπόβαθρου - + Start background audio paused Εκκίνηση του ήχου υπόβαθρου σε παύση @@ -3109,12 +3090,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Όρια Διαφάνειας Αντικειμένου Λειτουργίας - + Override display position: Αγνόηση θέσης εμφάνισης: - + Repeat track list Επανάληψη λίστας κομματιών @@ -3142,12 +3123,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language Γλώσσα - + Please restart OpenLP to use your new language setting. Παρακαλούμε επανεκκινήστε το OpenLP για να ενεργοποιηθεί η νέα γλώσσα. @@ -3155,7 +3136,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display Προβολή του OpenLP @@ -3163,287 +3144,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Αρχείο - + &Import &Εισαγωγή - + &Export Εξα&γωγή - + &View &Προβολή - + M&ode Λ&ειτουργία - + &Tools &Εργαλεία - + &Settings &Ρυθμίσεις - + &Language &Γλώσσα - + &Help &Βοήθεια - + Media Manager Διαχειριστής Πολυμέσων - + Service Manager Διαχειριστής Λειτουργίας - + Theme Manager Διαχειριστής Θεμάτων - + &New &Νέο - + &Open &Άνοιγμα - + Open an existing service. Άνοιγμα υπάρχουσας λειτουργίας. - + &Save &Αποθήκευση - + Save the current service to disk. Αποθήκευση τρέχουσας λειτουργίας στον δίσκο. - + Save &As... Αποθήκευση &Ως... - + Save Service As Αποθήκευση Λειτουργίας Ως - + Save the current service under a new name. Αποθήκευση τρέχουσας λειτουργίας υπό νέο όνομα. - + E&xit Έ&ξοδος - + Quit OpenLP Έξοδος από το OpenLP - + &Theme &Θέμα - + &Configure OpenLP... &Ρύθμιση του OpenLP... - + &Media Manager &Διαχειριστής Πολυμέσων - + Toggle Media Manager Εναλλαγή Διαχειριστή Πολυμέσων - + Toggle the visibility of the media manager. Εναλλαγή εμφάνισης του διαχειριστή πολυμέσων. - + &Theme Manager Διαχειριστής &Θεμάτων - + Toggle Theme Manager Εναλλαγή Διαχειριστή Θεμάτων - + Toggle the visibility of the theme manager. Εναλλαγή εμφάνισης του διαχειριστή θεμάτων. - + &Service Manager Διαχειριστής &Λειτουργίας - + Toggle Service Manager Εναλλαγή Διαχειριστή Λειτουργίας - + Toggle the visibility of the service manager. Εναλλαγή εμφάνισης του διαχειριστή λειτουργίας. - + &Preview Panel &Οθόνη Προεπισκόπησης - + Toggle Preview Panel Εναλλαγή Οθόνης Προεπισκόπησης - + Toggle the visibility of the preview panel. Εναλλαγή εμφάνισης της οθόνης προεπισκόπησης. - + &Live Panel Οθόνη Π&ροβολής - + Toggle Live Panel Εναλλαγή Οθόνης Προβολής - + Toggle the visibility of the live panel. Εναλλαγή εμφάνισης της οθόνης προβολής. - + &Plugin List &Λίστα Πρόσθετων - + List the Plugins Λίστα των Πρόσθετων - + &User Guide &Οδηγίες Χρήστη - + &About &Σχετικά - + More information about OpenLP Περισσότερες πληροφορίες για το OpenLP - + &Online Help &Online Βοήθεια - + &Web Site &Ιστοσελίδα - + Use the system language, if available. Χρήση της γλώσσας συστήματος, αν διατίθεται. - + Set the interface language to %s Θέστε την γλώσσα σε %s - + Add &Tool... Εργαλείο &Προσθήκης... - + Add an application to the list of tools. Προσθήκη εφαρμογής στην λίστα των εργαλείων. - + &Default &Προκαθορισμένο - + Set the view mode back to the default. Θέστε την προβολή στην προκαθορισμένη. - + &Setup &Εγκατάσταση - + Set the view mode to Setup. Θέστε την προβολή στην Εγκατάσταση. - + &Live &Ζωντανά - + Set the view mode to Live. Θέστε την προβολή σε Ζωντανά. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3452,108 +3433,108 @@ You can download the latest version from http://openlp.org/. Μπορείτε να κατεβάσετε την τελευταία έκδοση από το http://openlp.org/. - + OpenLP Version Updated Η έκδοση του OpenLP αναβαθμίστηκε - + OpenLP Main Display Blanked Κύρια Οθόνη του OpenLP Κενή - + The Main Display has been blanked out Η Κύρια Οθόνη εκκενώθηκε - + Default Theme: %s Προκαθορισμένο Θέμα: %s - + English Please add the name of your language here Αγγλικά - + Configure &Shortcuts... Ρύθμιση &Συντομεύσεων... - + Close OpenLP Κλείσιμο του OpenLP - + Are you sure you want to close OpenLP? Είστε σίγουροι ότι θέλετε να κλείσετε το OpenLP; - + Open &Data Folder... Άνοιγμα Φακέλου &Δεδομένων... - + Open the folder where songs, bibles and other data resides. Άνοιγμα του φακέλου που περιέχει τους ύμνους, τις βίβλους και άλλα δεδομένα. - + &Autodetect &Αυτόματη Ανίχνευση - + Update Theme Images Ενημέρωση Εικόνων Θέματος - + Update the preview images for all themes. Ενημέρωση των εικόνων προεπισκόπησης όλων των θεμάτων. - + Print the current service. Εκτύπωση της τρέχουσας λειτουργίας. - + &Recent Files &Πρόσφατα Αρχεία - + L&ock Panels &Κλείδωμα των Πάνελ - + Prevent the panels being moved. Αποτροπή της μετακίνησης των πάνελ. - + Re-run First Time Wizard Επανεκτέλεση Οδηγού Πρώτης Εκτέλεσης - + Re-run the First Time Wizard, importing songs, Bibles and themes. Επανεκτέλεση του Οδηγού Πρώτης Εκτέλεσης, για την εισαγωγή ύμνων, Βίβλων και θεμάτων. - + Re-run First Time Wizard? Επανεκτέλεση Οδηγού Πρώτης Εκτέλεσης; - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3562,43 +3543,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Η επαντεκτέλεσή του μπορεί να επιφέρει αλλαγές στις τρέχουσες ρυθμίσεις του OpenLP και πιθανότατα να προσθέσει ύμνους στην υπάρχουσα λίστα ύμνων σας και να αλλάξει το προκαθορισμένο θέμα σας. - + Clear List Clear List of recent files Εκκαθάριση Λίστας - + Clear the list of recent files. Εκκαθάριση της λίστας πρόσφατων αρχείων. - + Configure &Formatting Tags... Ρύθμιση Ετικετών &Μορφοποίησης... - + Export OpenLP settings to a specified *.config file Εξαγωγή των ρυθμίσεων το OpenLP σε καθορισμένο αρχείο *.config - + Settings Ρυθμίσεις - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Εισαγωγή ρυθμίσεων του OpenLP από καθορισμένο αρχείο *.config που έχει εξαχθεί προηγουμένως από αυτόν ή άλλον υπολογιστή - + Import settings? Εισαγωγή Ρυθμίσεων; - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3611,50 +3592,71 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate Η εισαγωγή λανθασμένων ρυθμίσεων μπορεί να προκαλέσει εσφαλμένη συμπεριφορά ή ανώμαλο τερματισμό του OpenLP. - + Open File Άνοιγμα Αρχείου - + OpenLP Export Settings Files (*.conf) Εξαγωγή Αρχείων Ρυθμίσεων του OpenLP (*.conf) - + Import settings Ρυθμίσεις εισαγωγής - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Το OpenLP θα τερματιστεί. Οι εισηγμένες ρυθμίσεις θα εφαρμοστούν την επόμενη φορά που θα ξεκινήσετε το OpenLP. - + Export Settings File Εξαγωγή Αρχείου Ρυθμίσεων - + OpenLP Export Settings File (*.conf) Εξαγωγή Αρχείων Ρυθμίσεων του OpenLP (*.conf) - + New Data Directory Error Σφάλμα Νέου Φακέλου Δεδομένων + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + + OpenLP Data directory copy failed + +%s + + OpenLP.Manager - + Database Error Σφάλμα Βάσης Δεδομένων - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3663,7 +3665,7 @@ Database: %s Βάση Δεδομένων: %s - + OpenLP cannot load your database. Database: %s @@ -3675,74 +3677,74 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Δεν Επιλέχθηκαν Αντικείμενα - + &Add to selected Service Item &Προσθήκη στο επιλεγμένο Αντικείμενο Λειτουργίας - + You must select one or more items to preview. Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα για προεπισκόπηση. - + You must select one or more items to send live. Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα για προβολή. - + You must select one or more items. Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα. - + You must select an existing service item to add to. Πρέπει να επιλέξετε ένα υπάρχον αντικείμενο λειτουργίας στο οποίο να προσθέσετε. - + Invalid Service Item Ακατάλληλο Αντικείμενο Λειτουργίας - + You must select a %s service item. Πρέπει να επιλέξετε ένα %s αντικείμενο λειτουργίας. - + You must select one or more items to add. Πρέπει να επιλέξετε ένα ή περισσότερα αντικείμενα για προσθήκη. - + No Search Results Κανένα Αποτέλεσμα Αναζήτησης - + Invalid File Type Ακατάλληλος Τύπος Αρχείου - + Invalid File %s. Suffix not supported Ακατάλληλο Αρχείο %s. Μη υποστηριζόμενη κατάληξη - + &Clone &Αντιγραφή - + Duplicate files were found on import and were ignored. Κατά την εισαγωγή των αρχείων βρέθηκαν διπλά αρχεία που αγνοήθηκαν. @@ -3750,12 +3752,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Η ετικέτα <lyrics> απουσιάζει. - + <verse> tag is missing. Η ετικέτα <verse> απουσιάζει. @@ -3763,42 +3765,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Λίστα Πρόσθετων - + Plugin Details Λεπτομέρειες Πρόσθετου - + Status: Κατάσταση: - + Active Ενεργό - + Inactive Ανενεργό - + %s (Inactive) %s (Ανενεργό) - + %s (Active) %s (Ενεργό) - + %s (Disabled) %s (Απενεργοποιημένο) @@ -3806,12 +3808,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Πλάτος Σελίδας - + Fit Width Πλάτος Κειμένου @@ -3819,77 +3821,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options Επιλογές - + Copy Αντιγραφή - + Copy as HTML Αντιγραφή ως HTML - + Zoom In Μεγέθυνση - + Zoom Out Σμίκρυνση - + Zoom Original Αρχικό Ζουμ - + Other Options Άλλες Επιλογές - + Include slide text if available Συμπερίληψη κειμένου διαφάνειας αν διατίθεται - + Include service item notes Συμπερίληψη σημειώσεων αντικειμένου λειτουργίας - + Include play length of media items Συμπερίληψη διάρκειας των αντικειμένων πολυμέσων - + Add page break before each text item Προσθήκη αλλαγής σελίδας πριν από κάθε αντικείμενο κειμένου - + Service Sheet Σελίδα Λειτουργίας - + Print Εκτύπωση - + Title: Τίτλος: - + Custom Footer Text: Εξατομικευμένο Κείμενο Υποσέλιδου: @@ -3897,12 +3899,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Οθόνη - + primary Πρωτεύων @@ -3910,12 +3912,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Έναρξη</strong>: %s - + <strong>Length</strong>: %s <strong>Διάρκεια</strong>: %s @@ -3923,7 +3925,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Ανακατανομή Αντικειμένων Λειτουργίας @@ -3931,287 +3933,295 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Μετακίνηση στην &κορυφή - + Move item to the top of the service. Μετακίνηση αντικειμένου στην κορυφή της λειτουργίας. - + Move &up Μετακίνηση &επάνω - + Move item up one position in the service. Μετακίνηση μία θέση επάνω στην λειτουργία. - + Move &down Μετακίνηση κά&τω - + Move item down one position in the service. Μετακίνηση μία θέση κάτω στην λειτουργία. - + Move to &bottom Μετακίνηση στο &τέλος - + Move item to the end of the service. Μετακίνηση στο τέλος της λειτουργίας. - + &Delete From Service &Διαγραφή Από την Λειτουργία - + Delete the selected item from the service. Διαγραφή του επιλεγμένου αντικειμένου από την λειτουργία. - + &Add New Item &Προσθήκη Νέου Αντικειμένου - + &Add to Selected Item &Προσθήκη στο Επιλεγμένο Αντικείμενο - + &Edit Item &Επεξεργασία Αντικειμένου - + &Reorder Item &Ανακατανομή Αντικειμένου - + &Notes &Σημειώσεις - + &Change Item Theme &Αλλαγή Θέματος Αντικειμένου - + OpenLP Service Files (*.osz) Αρχεία Λειτουργίας του OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Το αρχείο δεν αποτελεί κατάλληλη λειτουργία. Η κωδικοποίηση του περιεχομένου δεν είναι UTF-8. - + File is not a valid service. Το αρχείο δεν είναι αρχείο κατάλληλης λειτουργίας. - + Missing Display Handler Απουσία Διαχειριστή Προβολής - + Your item cannot be displayed as there is no handler to display it Το αντικείμενό σας δεν μπορεί να προβληθεί αφού δεν υπάρχει διαχειριστής για να το προβάλλει - + Your item cannot be displayed as the plugin required to display it is missing or inactive Το αντικείμενό σας δεν μπορεί να προβληθεί αφού το πρόσθετο που απαιτείται για την προβολή απουσιάζει ή είναι ανενεργό - + &Expand all &Ανάπτυξη όλων - + Expand all the service items. Ανάπτυξη όλων των αντικειμένων λειτουργίας. - + &Collapse all &Σύμπτυξη όλων - + Collapse all the service items. Σύμπτυξη όλων των αντικειμένων λειτουργίας. - + Open File Άνοιγμα Αρχείου - + Moves the selection down the window. Μετακίνηση της επιλογής κάτω στο παράθυρο. - + Move up Μετακίνηση επάνω - + Moves the selection up the window. Μετακίνηση της επιλογής προς τα πάνω στο παράθυρο. - + Go Live Προβολή - + Send the selected item to Live. Προβολή του επιλεγμένου αντικειμένου. - + &Start Time Ώρα &Έναρξης - + Show &Preview Προβολή &Προεπισκόπησης - + Modified Service Τροποποιημένη Λειτουργία - + The current service has been modified. Would you like to save this service? Η τρέχουσα λειτουργία έχει τροποποιηθεί. Θέλετε να αποθηκεύσετε ετούτη την λειτουργία; - + Custom Service Notes: Εξατομικευμένες Σημειώσεις Λειτουργίας: - + Notes: Σημειώσεις: - + Playing time: Χρόνος Αναπαραγωγής: - + Untitled Service Ανώνυμη Λειτουργία - + File could not be opened because it is corrupt. Το αρχείο δεν ανοίχθηκε επειδή είναι φθαρμένο. - + Empty File Κενό Αρχείο - + This service file does not contain any data. Ετούτο το αρχείο λειτουργίας δεν περιέχει δεδομένα. - + Corrupt File Φθαρμένο Αρχείο - + Load an existing service. Άνοιγμα υπάρχουσας λειτουργίας. - + Save this service. Αποθήκευση ετούτης της λειτουργίας. - + Select a theme for the service. Επιλέξτε ένα θέμα για την λειτουργία. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Αυτό το αρχείο είναι είτε φθαρμένο είτε δεν είναι αρχείο λειτουργίας του OpenLP 2.0. - - Service File Missing - Απουσία Αρχείου Λειτουργίας - - - + Slide theme Θέμα διαφάνειας - + Notes Σημειώσεις - + Edit Επεξεργασία - + Service copy only Επεξεργασία αντιγράφου μόνο - + Error Saving File Σφάλμα Αποθήκευσης Αρχείου - + There was an error saving your file. Υπήρξε σφάλμα κατά την αποθήκευση του αρχείου σας. + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + OpenLP.ServiceNoteForm - + Service Item Notes Σημειώσεις Αντικειμένου Λειτουργίας @@ -4219,7 +4229,7 @@ The content encoding is not UTF-8. OpenLP.SettingsForm - + Configure OpenLP Ρύθμιση του OpenLP @@ -4227,67 +4237,67 @@ The content encoding is not UTF-8. OpenLP.ShortcutListDialog - + Action Ενέργεια - + Shortcut Συντόμευση - + Duplicate Shortcut Αντίγραφο Συντόμευσης - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Η συντόμευση "%s" έχει ήδη ανατεθεί σε άλλη ενέργεια, παρακαλούμε χρησιμοποιήστε διαφορετική συντόμευση. - + Alternate Εναλλακτική - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Επιλέξτε μια ενέργεια και πιέστε ένα από τα παρακάτω πλήκτρα για να ξεκινήσετε την καταγραφή μιας κύριας ή εναλλακτικής συντόμευσης, αντίστοιχα. - + Default Προκαθορισμένο - + Custom Εξατομικευμένο - + Capture shortcut. Καταγραφή συντόμευσης. - + Restore the default shortcut of this action. Αποκατάσταση της προκαθορισμένης συντόμευσης αυτής της ενέργειας. - + Restore Default Shortcuts Αποκατάσταση Προκαθορισμένων Συντομεύσεων - + Do you want to restore all shortcuts to their defaults? Θέλετε να αποκαταστήσετε όλες τις συντομεύσεις στις προκαθορισμένες; - + Configure Shortcuts Ρύθμιση Συντομεύσεων @@ -4295,172 +4305,172 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Hide Απόκρυψη - + Go To Μετάβαση - + Blank Screen Κενή Οθόνη - + Blank to Theme Προβολή Θέματος - + Show Desktop Εμφάνιση Επιφάνειας Εργασίας - + Previous Service Προηγούμενη Λειτουργία - + Next Service Επόμενη Λειτουργία - + Escape Item Αποφυγή Αντικειμένου - + Move to previous. Μετακίνηση στο προηγούμενο. - + Move to next. Μετακίνηση στο επόμενο. - + Play Slides Αναπαραγωγή Διαφανειών - + Delay between slides in seconds. Καθυστέρηση μεταξύ διαφανειών σε δευτερόλεπτα. - + Move to live. Μεταφορά σε προβολή. - + Add to Service. Προσθήκη στην Λειτουργία. - + Edit and reload song preview. Επεξεργασία και επαναφόρτωση προεπισκόπισης ύμνου. - + Start playing media. Έναρξη αναπαραγωγής πολυμέσων. - + Pause audio. Παύση ήχου. - + Pause playing media. Παύση αναπαραγωγής πολυμέσων. - + Stop playing media. Σταμάτημα αναπαργωγής πολυμέσων. - + Video position. Θέση Video. - + Audio Volume. Ένταση Ήχου. - + Go to "Verse" Πήγαινε στην "Στροφή" - + Go to "Chorus" Πήγαινε στην "Επωδό" - + Go to "Bridge" Πήγαινε στην "Γέφυρα" - + Go to "Pre-Chorus" Πήγαινε στην "Προ-Επωδό" - + Go to "Intro" Πήγαινε στην "Εισαγωγή" - + Go to "Ending" Πήγαινε στο"Τέλος" - + Go to "Other" Πήγαινε στο "Άλλο" - + Previous Slide Προηγούμενη Διαφάνεια - + Next Slide Επόμενη Διαφάνεια - + Pause Audio Κομμάτι σε Αναμονή - + Background Audio Κομμάτι Φόντου - + Go to next audio track. Μετάβαση στο επόμενο κομμάτι. - + Tracks Κομμάτια @@ -4468,17 +4478,17 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Προτάσεις Ορθογραφίας - + Formatting Tags Ετικέτες Μορφοποίησης - + Language: Γλώσσα: @@ -4486,615 +4496,627 @@ The content encoding is not UTF-8. OpenLP.StartTimeForm - + Hours: Ώρες: - + Minutes: Λεπτά: - + Seconds: Δευτερόλεπτα: - + Item Start and Finish Time Ώρα Έναρξης και Λήξης Αντικειμένου - + Start Έναρξη - + Finish Τέλος - + Length Διάρκεια - + Time Validation Error Σφάλμα Ελέγχου Χρόνου - + Finish time is set after the end of the media item Ο χρόνος λήξης έχει τεθεί μετά το πέρας του αντικειμένου πολυμέσων - + Start time is after the finish time of the media item Ο χρόνος έναρξης έχει τεθεί μετά το πέρας του αντικειμένου πολυμέσων - + Theme Layout Σχέδιο Θέματος - + The blue box shows the main area. Το μπλε κουτί δείχνει την κύρια περιοχή. - + The red box shows the footer. Το κόκκινο κουτί δείχνει το υποσέλιδο. - - OpenLP.ThemeForm - - - Select Image - Επιλογή Εικόνας - - - - Theme Name Missing - Ονομασία Θέματος Απουσιάζει - - - - There is no name for this theme. Please enter one. - Δεν υπάρχει ονομασία για αυτό το θέμα. Εισάγετε ένα όνομα. - - - - Theme Name Invalid - Ακατάλληλο Όνομα Θέματος - - - - Invalid theme name. Please enter one. - Ακατάλληλο όνομα θέματος. Εισάγετε ένα όνομα. - - - - (approximately %d lines per slide) - (περίπου %d γραμμές ανά διαφάνεια) - - OpenLP.ThemeManager - + Create a new theme. Δημιουργία νέου θέματος. - + Edit Theme Επεξεργασία Θέματος - + Edit a theme. Επεξεργασία ενός θέματος. - + Delete Theme Διαγραφή Θέματος - + Delete a theme. Διαγραφή ενός θέματος. - + Import Theme Εισαγωγή Θέματος - + Import a theme. Εισαγωγή ενός θέματος. - + Export Theme Εξαγωγή Θέματος - + Export a theme. Εξαγωγή ενός θέματος. - + &Edit Theme &Επεξεργασία Θέματος - + &Delete Theme &Διαγραφή Θέματος - + Set As &Global Default Ορισμός Ως &Γενικής Προεπιλογής - + %s (default) %s (προκαθορισμένο) - + You must select a theme to edit. Πρέπει να επιλέξετε ένα θέμα προς επεξεργασία. - + You are unable to delete the default theme. Δεν μπορείτε να διαγράψετε το προκαθορισμένο θέμα. - + Theme %s is used in the %s plugin. Το Θέμα %s χρησιμοποιείται στο πρόσθετο %s. - + You have not selected a theme. Δεν έχετε επιλέξει θέμα. - + Save Theme - (%s) Αποθήκευση Θέματος - (%s) - + Theme Exported Θέμα Εξήχθη - + Your theme has been successfully exported. Το θέμα σας εξήχθη επιτυχώς. - + Theme Export Failed Εξαγωγή Θέματος Απέτυχε - + Your theme could not be exported due to an error. Το θέμα σας δεν εξήχθη λόγω σφάλματος. - + Select Theme Import File Επιλέξτε Αρχείο Εισαγωγής Θέματος - + File is not a valid theme. Το αρχείο δεν αποτελεί έγκυρο θέμα. - + &Copy Theme &Αντιγραφή Θέματος - + &Rename Theme &Μετονομασία Θέματος - + &Export Theme &Εξαγωγή Θέματος - + You must select a theme to rename. Πρέπει να επιλέξετε ένα θέμα για μετονομασία. - + Rename Confirmation Επιβεβαίωση Μετονομασίας - + Rename %s theme? Μετονομασία θέματος %s; - + You must select a theme to delete. Πρέπει να επιλέξετε ένα θέμα προς διαγραφή. - + Delete Confirmation Επιβεβαίωση Διαγραφής - + Delete %s theme? Διαγραφή θέματος %s; - + Validation Error Σφάλμα Ελέγχου - + A theme with this name already exists. Υπάρχει ήδη θέμα με αυτό το όνομα. - + OpenLP Themes (*.theme *.otz) Θέματα OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> Αντιγραφή του %s - + Theme Already Exists Ήδη Υπαρκτό Θέμα + + + Theme %s already exists. Do you want to replace it? + + OpenLP.ThemeWizard - + Theme Wizard Οδηγός Θεμάτων - + Welcome to the Theme Wizard Καλωσορίσατε στον Οδηγό Θεμάτων - + Set Up Background Καθορισμός Φόντου - + Set up your theme's background according to the parameters below. Καθορίστε το φόντο του θέματός σας σύμφωνα με τις παρακάτω παραμέτρους. - + Background type: Τύπος φόντου: - + Solid Color Συμπαγές Χρώμα - + Gradient Διαβάθμιση - + Color: Χρώμα: - + Gradient: Διαβάθμιση: - + Horizontal Οριζόντια - + Vertical Κάθετα - + Circular Κυκλικά - + Top Left - Bottom Right Πάνω Αριστερά - Κάτω Δεξιά - + Bottom Left - Top Right Κάτω Αριστερά - Πάνω Δεξιά - + Main Area Font Details Λεπτομέρειες Γραμματοσειράς Κύριας Περιοχής - + Define the font and display characteristics for the Display text Καθορίστε την γραμματοσειρά και τα χαρακτηριστικά προβολής του κειμένου Προβολής - + Font: Γραμματοσειρά: - + Size: Μέγεθος: - + Line Spacing: Διάκενο: - + &Outline: &Περίγραμμα: - + &Shadow: &Σκίαση: - + Bold Έντονη γραφή - + Italic Πλάγια Γραφή - + Footer Area Font Details Λεπτομέρειες Γραμματοσειράς Υποσέλιδου - + Define the font and display characteristics for the Footer text Καθορίστε την γραμματοσειρά και τα χαρακτηριστικά προβολής για το κείμενο Υποσέλιδου - + Text Formatting Details Λεπτομέρειες Μορφοποίησης Κειμένου - + Allows additional display formatting information to be defined Επιτρέπει να καθοριστούν πρόσθετες λεπτομέρειες μορφοποίησης προβολής - + Horizontal Align: Οριζόντια Ευθυγράμμιση: - + Left Αριστερά - + Right Δεξιά - + Center Κέντρο - + Output Area Locations Τοποθεσία Περιοχών Προβολής - + Allows you to change and move the main and footer areas. Επιτρέπει την αλλαγή και μετακίνηση της κύριας περιοχής και του υποσέλιδου. - + &Main Area &Κύρια Περιοχή - + &Use default location &Χρήση Προκαθορισμένης Θέσης - + X position: Θέση X: - + px px - + Y position: Θέση Y: - + Width: Πλάτος: - + Height: Ύψος: - + Use default location Χρήση προκαθορισμένης θέσης - + Theme name: Όνομα θέματος: - + Edit Theme - %s Επεξεργασία Θέματος - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Ο οδηγός αυτός θα σας βοηθήσει να δημιουργήσετε και να επεξεργαστείτε τα θέματά σας. Πιέστε το πλήκτρο επόμενο παρακάτω για να ξεκινήσετε την διαδικασία ορίζοντας το φόντο. - + Transitions: Μεταβάσεις: - + &Footer Area Περιοχή &Υποσέλιδου - + Starting color: Χρώμα έναρξης: - + Ending color: Χρώμα τερματισμού: - + Background color: Χρώμα φόντου: - + Justify Ευθυγράμμιση - + Layout Preview Προεπισκόπηση Σχεδίου - + Transparent Διαφανές - + Preview and Save - + - + Preview the theme and save it. - + + + + + (approximately %d lines per slide) + + + + + Background Image Empty + + + + + You have not selected a background image. Please select one before continuing. + + + + + Select Image + + + + + Theme Name Missing + + + + + There is no name for this theme. Please enter one. + + + + + Theme Name Invalid + + + + + Invalid theme name. Please enter one. + OpenLP.ThemesTab - + Global Theme Καθολικό Θέμα - + Theme Level Επίπεδο Θέματος - + S&ong Level Επίπεδο &Ύμνου - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Χρήση του θέματος από κάθε ύμνο στην βάση δεδομένων. Αν ένας ύμνος δεν έχει ένα θέμα συνδεόμενο με αυτόν, θα γίνει χρήση του θέματος της λειτουργίας. Αν η λειτουργία δεν έχει θέμα, τότε θα γίνει χρήση του καθολικού θέματος. - + &Service Level Επίπεδο &Λειτουργίας - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Χρήση του θέματος της λειτουργίας, παρακάμπτοντας τα θέματα των ύμνων. Αν η λειτουργία δεν έχει θέμα, θα χρησιμοποιηθεί το καθολικό θέμα. - + &Global Level &Καθολικό Επίπεδο - + Use the global theme, overriding any themes associated with either the service or the songs. Χρήση του καθολικού θέματος, παρακάμπτοντας όλα τα υπόλοιπα θέματα λειτουργίας ή ύμνων. - + Themes Θέματα @@ -5102,315 +5124,315 @@ The content encoding is not UTF-8. OpenLP.Ui - + Error Σφάλμα - + About Σχετικά - + &Add &Προσθήκη - + Advanced Για προχωρημένους - + All Files Όλα τα Αρχεία - + Bottom Κάτω - + Browse... Αναζήτηση... - + Cancel Άκυρο - + CCLI number: Αριθμός CCLI: - + Create a new service. Δημιουργία νέας λειτουργίας. - + &Delete &Διαγραφή - + &Edit &Επεξεργασία - + Empty Field Κενό Πεδίο - + Export Εξαγωγή - + pt Abbreviated font pointsize unit pt - + Image Εικόνα - + Import Εισαγωγή - + Live Ζωντανά - + Live Background Error Σφάλμα Φόντου Προβολής - + Load Φόρτωση - + Middle Μέσο - + New Νέο - + New Service Νέα Λειτουργία - + New Theme Νέο Θέμα - + No File Selected Singular Δεν Επιλέχθηκε Αρχείο - + No Files Selected Plural Δεν Επιλέχθηκαν Αρχεία - + No Item Selected Singular Δεν Επιλέχθηκε Αντικείμενο - + No Items Selected Plural Δεν Επιλέχθηκαν Αντικείμενα - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Προεπισκόπηση - + Replace Background Αντικατάσταση Φόντου - + Reset Background Επαναφορά Φόντου - + s The abbreviated unit for seconds δ - + Save && Preview Αποθήκευση && Προεπισκόπηση - + Search Αναζήτηση - + You must select an item to delete. Πρέπει να επιλέξετε ένα αντικείμενο προς διαγραφή. - + You must select an item to edit. Πρέπει να επιλέξετε ένα αντικείμενο για επεξεργασία. - + Save Service Αποθήκευση Λειτουργίας - + Service Λειτουργία - + Start %s Έναρξη %s - + Theme Singular Θέμα - + Themes Plural Θέματα - + Top Κορυφή - + Version Έκδοση - + Delete the selected item. Διαγραφή επιλεγμένου αντικειμένου. - + Move selection up one position. Μεταφορά επιλογής μία θέση επάνω. - + Move selection down one position. Μεταφορά επιλογής μία θέση κάτω. - + &Vertical Align: &Κάθετη Ευθυγράμμιση: - + Finished import. Τέλος εισαγωγής. - + Format: Μορφή: - + Importing Εισαγωγή - + Importing "%s"... Εισαγωγή του "%s"... - + Select Import Source Επιλέξτε Μέσο Εισαγωγής - + Select the import format and the location to import from. Επιλέξτε την μορφή εισαγωγής και την τοποθεσία από την οποία θα γίνει η εισαγωγή. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Ο εισαγωγέας του openlp.org 1.x έχει απενεργοποιηθεί εξαιτίας απόντος module του python. Αν θέλετε να χρησιμοποιήσετε αυτόν τον εισαγωγέα, θα χρειαστεί να εγκαταστήσετε το module "python-sqllite". - + Open %s File Άνοιγμα %s Αρχείου - + %p% %p% - + Ready. Έτοιμο. - + Starting import... Έναρξη εισαγωγής... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Πρέπει να καθορίσετε τουλάχιστον ένα %s αρχείο από το οποίο να γίνει εισαγωγή. @@ -5421,299 +5443,304 @@ The content encoding is not UTF-8. Καλωσορίσατε στον Οδηγό Εισαγωγής Βίβλου - + Welcome to the Song Export Wizard Καλωσορίσατε στον Οδηγό Εξαγωγής Ύμνου - + Welcome to the Song Import Wizard Καλωσορίσατε στον Οδηγό Εισαγωγής Ύμνου - + Author Singular Συγγραφέας - + Authors Plural Συγγραφείς - - © + + © Copyright symbol. © - + Song Book Singular Υμνολόγιο - + Song Books Plural Υμνολόγια - + Song Maintenance Διαχείριση Ύμνων - + Topic Singular Κατηγορία - + Topics Plural Κατηγορίες - + Continuous Συνεχές - + Default Προκαθορισμένο - + Display style: Στυλ Παρουσίασης: - + Duplicate Error Σφάλμα Αντίγραφου - + File Αρχείο - + Help Βοήθεια - + h The abbreviated unit for hours ω - + Layout style: Στυλ σχεδίου: - + Live Toolbar Εργαλειοθήκη Προβολής - + m The abbreviated unit for minutes λ - + OpenLP is already running. Do you wish to continue? Το OpenLP ήδη εκτελείται. Θέλετε να συνεχίσετε; - + Settings Ρυθμίσεις - + Tools Εργαλεία - + Unsupported File Μη Υποστηριζόμενο Αρχείο - + Verse Per Slide Εδάφιο Ανά Διαφάνεια - + Verse Per Line Εδάφιο Ανά Γραμμή - + View Προβολή - + Title and/or verses not found Δεν βρέθηκαν τίτλος και/ή εδάφια - + XML syntax error Συντακτικό λάθος XML - + View Mode Λειτουργία Προβολής - + Open service. Άνοιγμα λειτουργίας. - + Print Service Εκτύπωση Λειτουργίας - + Replace live background. Αντικατάσταση του προβαλλόμενου φόντου. - + Reset live background. Επαναφορά προβαλλόμενου φόντου. - + Split a slide into two only if it does not fit on the screen as one slide. Διαίρεση μιας διαφάνειας σε δύο μόνο αν δεν χωρά στην οθόνη ως μια διαφάνεια. - + Welcome to the Bible Upgrade Wizard Καλωσορίσατε στον Οδηγό Αναβάθμισης Βίβλου - + Confirm Delete Επιβεβαίωση Διαγραφής - + Play Slides in Loop Αναπαραγωγή Διαφανειών Κυκλικά - + Play Slides to End Αναπαραγωγή Διαφανειών έως Τέλους - + Stop Play Slides in Loop Τερματισμός Κυκλικής Αναπαραγωγής Διαφανειών - + Stop Play Slides to End Τερματισμός Αναπαραγωγής Διαφανειών έως Τέλους - + Next Track Επόμενο Κομμάτι - + Search Themes... Search bar place holder text Αναζήτηση Θεμάτων... - + Optional &Split Προαιρετικός &Διαχωρισμός - + Invalid Folder Selected Singular Επιλέχθηκε Ακατάλληλος Φάκελος - + Invalid File Selected Singular Επιλέχθηκε Ακατάλληλο Αρχείο - + Invalid Files Selected Plural Επιλέχθηκαν Ακατάλληλα Αρχεία - + No Folder Selected Singular Δεν Επιλέχτηκε Φάκελος - + Open %s Folder Άνοιγμα %s Φακέλου - + You need to specify one %s file to import from. A file type e.g. OpenSong Πρέπει να καθορίσετε ένα %s αρχείο από το οποίο να γίνει εισαγωγή. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Πρέπει να καθορίσετε έναν %s φάκελο από τον οποίο θα γίνει εισαγωγή. + + + Importing Songs + + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 και %2 - + %1, and %2 Locale list separator: end %1, και %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5722,50 +5749,50 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Πρόσθετο Παρουσιάσεων</strong><br />Το πρόσθετο παρουσιάσεων παρέχει την δυνατότητα να εμφανίζονται παρουσιάσεις με χρήση μιας σειράς διαφορετικών προγραμμάτων. Η επιλογή από τα διαθέσιμα προγράμματα είναι δυνατή στον χρήστη μέσω σχετικής λίστας. - + Presentation name singular Παρουσίαση - + Presentations name plural Παρουσιάσεις - + Presentations container title Παρουσιάσεις - + Load a new presentation. Φόρτωση νέας παρουσίασης. - + Delete the selected presentation. Διαγραφή επιλεγμένης παρουσίασης. - + Preview the selected presentation. Προεπισκόπηση επιλεγμένης παρουσίασης. - + Send the selected presentation live. Προβολή της επιλεγμένης παρουσίασης. - + Add the selected presentation to the service. Πρόσθεση της επιλεγμένης παρουσίασης στην λειτουργία. @@ -5773,52 +5800,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Επιλογή Παρουσίασης (-εων) - + Automatic Αυτόματο - + Present using: Παρουσίαση με χρήση: - + File Exists Ήδη Υπάρχον Αρχείο - + A presentation with that filename already exists. Ήδη υπάρχει παρουσίαση με αυτό το όνομα. - + This type of presentation is not supported. Αυτός ο τύπος παρουσίασης δεν υποστηρίζεται. - + Presentations (%s) Παρουσιάσεις (%s) - + Missing Presentation Απούσα Παρουσίαση - + The presentation %s is incomplete, please reload. Η παρουσίαση %s είναι ατελής, παρακαλούμε φορτώστε την ξανά. - + The presentation %s no longer exists. Η παρουσίαση %s δεν υπάρχει πλέον. @@ -5826,17 +5853,17 @@ The content encoding is not UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Διαθέσιμοι Ελεγκτές - + %s (unavailable) %s (μη διαθέσιμο) - + Allow presentation application to be overridden Επιτρέψτε την παράκαμψη του προγράμματος παρουσίασης @@ -5844,24 +5871,24 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Πρόσθετο Τηλεχειρισμού</strong><br />Το πρόσθετο τηλεχειρισμού παρέχει την δυνατότητα να αποστείλετε μηνύματα σε μία υπό εκτέλεση έκδοση του OpenLP σε διαφορετικό υπολογιστή μέσω web browser είτε μέσω του API τηλεχειρισμού. - + Remote name singular Τηλεχειρισμός - + Remotes name plural Τηλεχειριστήρια - + Remote container title Απομακρυσμένη Πρόσβαση @@ -5870,236 +5897,246 @@ The content encoding is not UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote Τηλεχειρισμός OpenLP 2.0 - + OpenLP 2.0 Stage View Προβολή Πίστας OpenLP 2.0 - + Service Manager Διαχειριστής Λειτουργίας - + Slide Controller Ελεγκτής Διαφανειών - + Alerts Ειδοποιήσεις - + Search Αναζήτηση - + Refresh Ανανέωση - + Blank Κενή - + Show Προβολή - + Prev Προήγ - + Next Επόμ - + Text Κείμενο - + Show Alert Εμφάνιση Ειδοποίησης - + Go Live Μετάβαση σε Προβολή - + No Results Κανένα Αποτέλεσμα - + Options Επιλογές - + Add to Service Προσθήκη στην Λειτουργία - + Home Αρχική Σελίδα - + Theme Θέμα - + Desktop Επιφάνεια Εργασίας - + Add &amp; Go to Service Προσθήκη &amp; Μετάβαση στην Λειτουργία + + + Service + Λειτουργία + + + + Slides + + RemotePlugin.RemoteTab - + Serve on IP address: Εξυπηρέτηση στην διεύθυνση IP: - + Port number: Αριθμός θύρας: - + Server Settings Επιλογές Εξυπηρετητή - + Remote URL: Απομακρυσμένη URL: - + Stage view URL: URL Προβολής πίστας: - + Display stage time in 12h format Εμφάνιση χρόνου πίστας σε 12ωρη μορφή - + Android App Εφαρμογή Android - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Σκανάρετε τον κώδικα QR ή κάντε κλικ στο <a href="https://market.android.com/details?id=org.openlp.android">download</a> για να εγκαταστήσετε την εφαρμογή για Android από το Κατάστημα. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + SongUsagePlugin - + &Song Usage Tracking &Παρακολούθηση Χρήσης Ύμνων - + &Delete Tracking Data &Διαγραφή Δεδομένων Παρακολούθησης - + Delete song usage data up to a specified date. Διαγραφή των δεδομένων χρήσης έως μια καθορισμένη ημερομηνία. - + &Extract Tracking Data &Εξαγωγή Δεδομένων Παρακολούθησης - + Generate a report on song usage. Παραγωγή αναφοράς για την χρήση ύμνων. - + Toggle Tracking Εναλλαγή Παρακολούθησης - + Toggle the tracking of song usage. Εναλλαγή της παρακολούθησης της χρήσης ύμνων. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Πρόσθετο Παρακολούθησης Ύμνων</strong><br />Αυτό το πρόσθετο παρακολουθε'ι την χρήση των ύμνων στις λειτουργίες. - + SongUsage name singular Χρήση Ύμνου - + SongUsage name plural Χρήση Ύμνων - + SongUsage container title Χρήση Ύμνων - + Song Usage Χρήση Ύμνων - + Song usage tracking is active. Η παρακολούθηση της χρήσης Ύμνων είναι ενεργή. - + Song usage tracking is inactive. Η παρακολούθηση της χρήσης Ύμνων είναι ανενεργή. - + display εμφάνιση - + printed εκτυπώθηκε @@ -6107,32 +6144,32 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Διαγραφή Δεδομένων Χρήσης Ύμνων - + Delete Selected Song Usage Events? Διαγραφή των Επιλεγμένων Συμβάντων Χρήσης Ύμνων; - + Are you sure you want to delete selected Song Usage data? Είστε σιγουροι ότι θέλετε να διαγράψετε τα επιλεγμένα δεδομένα Χρήσης Ύμνων; - + Deletion Successful Διαγραφή Επιτυχής - + All requested data has been deleted successfully. Όλα τα απαιτούμενα δεδομένα έχουν διαγραφεί επιτυχώς. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Επιλέξτε την ημερομηνία έως την οποία τα δεδομένα χρησης ύμνων θα πρέπει να διαγραφούν. Όλα τα δεδομένα πριν από αυτήν την ημερομηνία θα διαγραφούν οριστικά. @@ -6140,42 +6177,42 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Εξαγωγή Χρήσης Ύμνων - + Select Date Range Επιλέξτε Χρονική Περίοδο - + to έως - + Report Location Αναφέρατε Τοποθεσία - + Output File Location Τοποθεσία Εξαγωγής Αρχείου - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation Δημιουργία Αναφοράς - + Report %s has been successfully created. @@ -6184,12 +6221,12 @@ has been successfully created. έχει δημιουργηθεί επιτυχώς. - + Output Path Not Selected Δεν Επιλέχθηκε Τοποθεσία Εξαγωγής - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Δεν θέσατε έγκυρη τοποθεσία για την εξαγωγή της αναφοράς χρήσης ύμνων. Παρακαλούμε επιλέξτε μια υπάρχουσα τοποθεσία στον υπολογιστή σας. @@ -6197,112 +6234,112 @@ has been successfully created. SongsPlugin - + &Song &Ύμνος - + Import songs using the import wizard. Εισαγωγή ύμνων με χρηση του οδηγού εισαγωγής. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Προσθετο Ύμνων</strong><br />Το προσθετο ύμνων παρέχει την δυνατότητα προβολής και διαχείρισης ύμνων. - + &Re-index Songs &Ανακατανομή Ύμνων - + Re-index the songs database to improve searching and ordering. Ανακατανομή της βάσης δεδομένων ύμνων για την βελτίωση της αναζήτησης και της κατανομής. - + Reindexing songs... Ανακατομή Ύμνων... - + Arabic (CP-1256) Αραβικά (CP-1256) - + Baltic (CP-1257) Βαλτική (CP-1257) - + Central European (CP-1250) Κεντρικής Ευρώπης (CP-1250) - + Cyrillic (CP-1251) Κυριλλικά (CP-1251) - + Greek (CP-1253) Ελληνικά (CP-1253) - + Hebrew (CP-1255) Εβραϊκά (CP-1255) - + Japanese (CP-932) Ιαπωνέζικα (CP-932) - + Korean (CP-949) Κορεάτικα (CP-949) - + Simplified Chinese (CP-936) Απλοποιημένα Κινέζικα (CP-936) - + Thai (CP-874) Τάυ (CP-874) - + Traditional Chinese (CP-950) Παραδοσιακά Κινέζικα (CP-950) - + Turkish (CP-1254) Τούρκικα (CP-1254) - + Vietnam (CP-1258) Βιετναμέζικα (CP-1258) - + Western European (CP-1252) Δυτικής Ευρώπης (CP-1252) - + Character Encoding Κωδικοποίηση Χαρακτήρων - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6311,100 +6348,105 @@ Usually you are fine with the preselected choice. Συνήθως είστε εντάξει με την προεπιλεγμένη κωδικοσελίδα. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Παρακαλούμε επιλέξτε την κωδικοποίηση των χαρακτήρων. Η κωδικοποιήση ειναι υπεύθυνη για την ορθή εμφάνιση των χαρακτήρων. - + Song name singular Ύμνος - + Songs name plural Ύμνοι - + Songs container title Ύμνοι - + Exports songs using the export wizard. Εξαγωγή ύμνων με χρήση του οδηγού εξαγωγής. - + Add a new song. Προσθήκη νέου ύμνου. - + Edit the selected song. Επεξεργασία του επιλεγμένου ύμνου. - + Delete the selected song. Διαγραφή του επιλεγμένου ύμνου. - + Preview the selected song. Προεπισκόπηση του επιλεγμένου ύμνου. - + Send the selected song live. Μετάβαση του επιελεγμένου ύμνου προς προβολή. - + Add the selected song to the service. Προσθήκη του επιλεγμένου ύμνου στην λειτουργία. + + + Reindexing songs + + SongsPlugin.AuthorsForm - + Author Maintenance Επεξεργασία Συγγραφέα - + Display name: Εμαφανιζ'ομενο όνομα: - + First name: Όνομα: - + Last name: Επίθετο: - + You need to type in the first name of the author. Πρέπει να εισάγετε το όνομα του συγγραφέα. - + You need to type in the last name of the author. Πρέπει να εισάγετε το επίθετο του συγγραφέα. - + You have not set a display name for the author, combine the first and last names? Δεν δηλώσατε εμφανιζομενο όνομα συγγραφέα, να συνδυαστούν όνομα και επίθετο; @@ -6412,7 +6454,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Το αρχείο δεν έχει έγκυρη επέκταση. @@ -6420,12 +6462,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Διαχείριση από %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6437,12 +6479,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Παραμετροποιημένα Ονόματα Βιβλίων @@ -6450,207 +6492,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor Επεξεργασία Ύμνων - + &Title: &Τίτλος: - + Alt&ernate title: &Εναλλαγή τίτλου: - + &Lyrics: &Στίχοι: - + &Verse order: Σειρά &Στροφών: - + Ed&it All Ε&πεξεργασία Όλων - + Title && Lyrics Τίτλος && Στίχοι - + &Add to Song &Προσθήκη στον Ύμνο - + &Remove &Αφαίρεση - + &Manage Authors, Topics, Song Books &Διαχείριση Συγγραφέων, Θεμάτων, Βιβλίων Ύμνων - + A&dd to Song Προ&σθήκη στον Ύμνο - + R&emove Αφαίρεσ&η - + Book: Βιβλίο: - + Number: Αριθμός: - + Authors, Topics && Song Book Συγγραφεις, Θέματα && Βιβλία Ύμνων - + New &Theme Νέο &Θέμα - + Copyright Information Πληροφορίες Πνευματικών Δικαιωμάτων - + Comments Σχόλια - + Theme, Copyright Info && Comments Θέμα, Πληροφορίες Πνευματικών Δικαιωμάτων && Σχόλια - + Add Author Προσθήκη Συγγραφέα - + This author does not exist, do you want to add them? Αυτός ο συγγραφέας δεν υπάρχει, θέλετε να τον προσθέσετε; - + This author is already in the list. Αυτός ο συγγραφέας είναι ήδη στην λίστα. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Δεν επιλέξατε έγκυρο συγγραφέα. Είτε επιλέξτε έναν συγγραφέα από την λίστα, είτε πληκτρολογείστε έναν νέο συγγραφέα και πιέστε "Προσθήκη Συγγραφέα στον Ύμνο" για να προσθέσετε τον νέο συγγραφέα. - + Add Topic Προσθήκη Κατηγορίας - + This topic does not exist, do you want to add it? Η κατηγορία δεν υπάρχει, θέλετε να την προσθέσετε; - + This topic is already in the list. Η κατηγορία υπάρχει ήδη στην λίστα. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Δεν επιλέξατε έγκυρη κατηγορία. Είτε επιλέξτε μια κατηγορία από την λίστα, είτε πληκτρολογήστε μια νέα κατηγορία και πιέστε "Προσθήκη Κατηγορίας στον Ύμνο" για να προσθέσετε την νέα κατηγορία. - + You need to type in a song title. Πρέπει να δώσετε έναν τίτλο στον ύμνο. - + You need to type in at least one verse. Πρέπει να πληκτρολογήσετε τουλάχιστον ένα εδάφιο. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Η σειρά των εδαφίων δεν είναι έγκυρη. Δεν υπάρχει εδάφιο αντίστοιχο στο %s. Έγκυρες καταχωρήσεις είναι οι %s. - + Add Book Προσθήκη Βιβλίου - + This song book does not exist, do you want to add it? Αυτό το βιβλίο ύμνων δεν υπάρχει, θέλετε να το προσθέσετε; - + You need to have an author for this song. Πρέπει να έχετε έναν συγγραφέα για αυτόν τον ύμνο. - - You need to type some text in to the verse. - Πρέπει να πληκτρολογήσετε λίγο κείμενο στο εδάφιο. - - - + Linked Audio Συνδεδεμένος Ήχος - + Add &File(s) Προσθήκη &Αρχείου(-ων) - + Add &Media Προσθήκη &Πολυμέσων - + Remove &All &Αφαίρεση Όλων - + Open File(s) Άνοιγμα Αρχείου(-ων) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Προειδοποίηση:</strong> Δεν χρησιμοποιούνται όλα τα εδάφια. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Η σειρά εδαφίων είναι ακατάλληλη. Δεν υπάρχουν εδάφια που να αντιστοιχούν στο %s. Κατάλληλες καταχωρήσεις είναι %s. @@ -6658,22 +6695,22 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Επεξεργασία Εδαφίου - + &Verse type: &Τύπος Στροφής: - + &Insert &Εισαγωγή - + Split a slide into two by inserting a verse splitter. Διαχωρισμός μιας διαφάνειας σε δύο με εισαγωγή ενός διαχωριστή στροφών. @@ -6681,82 +6718,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.ExportWizardForm - + Song Export Wizard Οδηγός Εξαγωγής Ύμνων - + Select Songs Επιλέξτε Ύμνους - + Check the songs you want to export. Επιλέξτε τους ύμνους που θέλετε να εξάγετε. - + Uncheck All Αποεπιλογή Όλων - + Check All Επιλογή Όλων - + Select Directory Επιλογή Φακέλου - + Directory: Φάκελος: - + Exporting Εγαγωγή - + Please wait while your songs are exported. Παρακαλούμε περιμένετε όσο εξάγονται οι ύμνοι σας. - + You need to add at least one Song to export. Πρέπει να επιλέξετε τουλάχιστον έναν Ύμνο προς εξαγωγή. - + No Save Location specified Δεν ορίστηκε Τοποθεσία Αποθήκευσης - + Starting export... Εκκίνηση εξαγωγής... - + You need to specify a directory. Πρέπει να ορίσετε έναν φάκελο. - + Select Destination Folder Επιλογή Φακέλου Προορισμού - + Select the directory where you want the songs to be saved. Επιλέξτε τον φάκελο στον οποίο θέλετε να αποθηκεύσετε τους ύμνους σας. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Αυτός ο οδηγός θα σας βοηθήσει να εξάγετε τους ύμνους σας στην ανοιχτή και δωρεάν μορφή του <strong>OpenLyrics</strong>. @@ -6764,185 +6801,185 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Επιλέξτε Αρχεία Εγγράφων/Παρουσιάσεων - + Song Import Wizard Οδηγός Εισαγωγής Ύμνων - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Ο οδηγός αυτος θα σας βοηθήσει να εισάγετε ύμνους διαφόρων μορφών. Κάντε κλικ στο κουμπί "επόμενο" παρακάτω για να ξεκινήσετε την διαδικασία επιλέγοντας την μορφή από την οποία θέλετε να εισάγετε. - + Generic Document/Presentation Γενικό Έγγραφο/Παρουσίαση - + Add Files... Προσθήκη Αρχειων... - + Remove File(s) Αφαιρεση Αρχείων - + Please wait while your songs are imported. Παρακαλούμε περιμένετε όσο οι ύμνοι σας εισάγονται. - + OpenLP 2.0 Databases Βάσεις Δεδομένων OpenLP 2.0 - + openlp.org v1.x Databases Βάσεις Δεδομένων openlp.org v 1.x - + Words Of Worship Song Files Αρχεία Ύμνων Words Of Worship - + Songs Of Fellowship Song Files Αρχεία Ύμνων Songs Of Fellowship - + SongBeamer Files Αρχεία SongBeamer - + SongShow Plus Song Files Αρχεία Ύμνων SongShow Plus - + Foilpresenter Song Files Αρχεία Ύμνων Foilpresenter - + Copy Αντιγραφή - + Save to File Αποθήκευση στο Αρχείο - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Η εισαγωγή αρχείων τύπου Songs of Fellowship έχει απενεργοποιηθεί επειδή το OpenLP δεν έχει προσβαση στο OpenOffice ή το Libreoffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Η εισαγωγή αρχείων γενικού τύπου έχει απενεργοποιηθεί επειδή το OpenLP δεν έχει προσβαση στο OpenOffice ή το Libreoffice. - + OpenLyrics or OpenLP 2.0 Exported Song Ύμνος εξηγμένος από το OpenLyrics ή το OpenLP 2.0 - + OpenLyrics Files Αρχεία OpenLyrics - + CCLI SongSelect Files Αρχεία CCLI SongSelect - + EasySlides XML File Αρχείο EasySlides XML - + EasyWorship Song Database Βάση Δεδομένων Ύμνων EasyWorship - + DreamBeam Song Files Αρχεία Ύμνων DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Πρέπει να καθορίσετε έναν έγκυρο φάκελο βάσης δεδομένων του PowerSong 1.0. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Πρώτα μετατρέψτε την βάση δεδομένων του ZionWorx σε αρχείο κειμένου CSV, όπως περιγράφεται στο <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + - + This importer has been disabled. - + - + MediaShout Database - + - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + - + SongPro Text Files - + - + SongPro (Export File) - + - + In SongPro, export your songs using the File -> Export menu - + SongsPlugin.MediaFilesForm - + Select Media File(s) Επιλογή Αρχείων Πολυμέσων - + Select one or more audio files from the list below, and click OK to import them into this song. Επιλέξτε ένα ή περισσοτερα αρχεία ήχου από την παρακάτω λίστα και κάντε κλικ στο OK για να τα εισάγετε σε αυτόν τον ύμνο. @@ -6950,63 +6987,66 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - + Titles Τίτλοι - + Lyrics Στίχοι - + CCLI License: Άδεια CCLI: - + Entire Song Ολόκληρος Ύμνος - + Are you sure you want to delete the %n selected song(s)? - Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο;Είστε σίγουροι ότι θέλετε να διαγράψετε τους %n επιλεγμένους ύμνους; + + Είστε σίγουροι ότι θέλετε να διαγράψετε τον %n επιλεγμένο ύμνο; + Είστε σίγουροι ότι θέλετε να διαγράψετε τους %n επιλεγμένους ύμνους; + - + Maintain the lists of authors, topics and books. Διατήρηση της λίστας συγγραφέων, θεμάτων και βιβλίων. - + copy For song cloning αντιγραφή - + Search Titles... Αναζήτηση Τίτλων... - + Search Entire Song... Αναζήτηση Ολόκληρου Ύμνου... - + Search Lyrics... Αναζήτηση Στίχων... - + Search Authors... Αναζήτηση Συγγραφέων... - + Search Song Books... Αναζήτηση Βιβλίων Ύμνων... @@ -7014,15 +7054,15 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Μη έγκυρη βάση δεδομένων openlp.org 1.x. @@ -7030,7 +7070,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Μη έγκυρη βάση δεδομένων OpenLP 2.0. @@ -7038,7 +7078,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Εξαγωγή "%s"... @@ -7046,35 +7086,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. Κανένας ύμνος προς εισαγωγή. - + Verses not found. Missing "PART" header. Δεν βρέθηκαν εδάφια. Απουσιάζει η κεφαλίδα "PART". + + + No %s files found. + + + + + Invalid %s file. Unexpected byte value. + + + + + Invalid %s file. Missing "TITLE" header. + + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + + SongsPlugin.SongBookForm - + Song Book Maintenance Συντήρηση Βιβλίου Ύμνων - + &Name: Όν&ομα: - + &Publisher: &Εκδότης: - + You need to type in a name for the book. Πρέπει να δώσετε ένα όνομα για το βιβλίο. @@ -7082,12 +7142,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongExportForm - + Your song export failed. Η εξαγωγή του βιβλίου σας απέτυχε. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Τέλος Εξαγωγής. Για εισαγωγή αυτών των αρχείων χρησιμοποιήστε το <strong>OpenLyrics</strong>. @@ -7095,27 +7155,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImport - + copyright πνευματικά δικαιώματα - + The following songs could not be imported: Τα ακόλουθα τραγούδια δεν εισήχθηκαν: - + Cannot access OpenOffice or LibreOffice Δεν είναι δυνατή η πρόσβαση στο OpenOffice ή το LibreOffice - + Unable to open file Αδύνατο το άνοιγμα του αρχείου - + File not found Το αρχείο δεν βρέθηκε @@ -7123,107 +7183,107 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Ο συγγραφέας σας δεν προστέθηκε. - + This author already exists. Ο συγγραφέας ήδη υπάρχει. - + Could not add your topic. Δεν προστέθηκε η κατηγορία σας. - + This topic already exists. Η κατηγορία υπάρχει ήδη. - + Could not add your book. Το βιβλίο σας δεν προστέθηκε. - + This book already exists. Αυτό το βιβλίο ήδη υπάρχει. - + Could not save your changes. Οι αλλαγές σαν δεν αποθηκεύτηκαν. - + Could not save your modified author, because the author already exists. Ο συγγραφέας σας δεν αποθηκεύτηκε, επειδή υπάρχει ήδη. - + Could not save your modified topic, because it already exists. Η τροποποιημένη κατηγορία σας δεν αποθηκεύτηκε, επειδή υπάρχει ήδη. - + Delete Author Διαγραφή Συγγραφέα - + Are you sure you want to delete the selected author? Σίγουρα θέλετε να διαγράψετε τον επιλεγμένο συγγραφέα; - + This author cannot be deleted, they are currently assigned to at least one song. Αυτός ο συγγραφέας δεν μπορεί να διαγραφεί, είναι συνδεδεμένος με τουλάχιστον έναν ύμνο. - + Delete Topic Διαγραφή Κατηγορίας - + Are you sure you want to delete the selected topic? Σίγουρα θέλετε να διαγράψετε την επιλεγμένη κατηγορία; - + This topic cannot be deleted, it is currently assigned to at least one song. Η κατηγορία δεν μπορεί να διαγραφεί, είναι συνδεδεμένη με τουλάχιστον έναν ύμνο. - + Delete Book Διαγραφή Βιβλίου - + Are you sure you want to delete the selected book? Σίγουρα θέλετε να διαγράψετε το επιλεγμένο βιβλίο; - + This book cannot be deleted, it is currently assigned to at least one song. Αυτό το βιβλίο δεν μπορεί να διαγραφεί, είναι συνδεδεμένο με τουλάχιστον έναν ύμνο. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Ο συγγραφέας %s υπάρχει ήδη. Θέλετε να κάνετε τους ύμνους με συγγραφέα τον %s να χρησιμοποιούν τον υπάρχοντα συγγραφέα %s; - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Η κατηγορία %s υπάρχει ήδη. Θέλετε να κάνετε τους ύμνους με κατηγορία %s να χρησιμοποιούν την υπάρχουσα κατηγορία %s; - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Το βιβλίο %s υπάρχει ήδη. Θέλετε να κάνετε τους ύμνους με το βιβλίο %s να χρησιμοποιούν το υπάρχον βιβλίο %s; @@ -7231,27 +7291,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongsTab - + Songs Mode Λειτουργία Ύμνων - + Enable search as you type Ενεργοποίηση αναζήτησης κατά την πληκτρολόγηση - + Display verses on live tool bar Προβολή των εδαφίων στην εργαλειοθήκη προβολής - + Update service from song edit Ενημέρωση λειτουργίας από την επεξεργασία ύμνων - + Import missing songs from service files Εισαγωγή απόντων ύμνων από αρχεία λειτουργίας @@ -7259,17 +7319,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance Συντήρηση Κατηγοριών - + Topic name: Όνομα κατηγορίας: - + You need to type in a topic name. Πρέπει να δώσετε ένα όνομα κατηγορίας. @@ -7277,37 +7337,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse Εδάφιο - + Chorus Ρεφραίν - + Bridge Γέφυρα - + Pre-Chorus Προ-Ρεφραίν - + Intro Εισαγωγή - + Ending Τέλος - + Other Άλλο @@ -7315,14 +7375,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Σφάλμα κατά την ανάγνωση του αρχείου CSV. - + File not valid ZionWorx CSV format. Το αρχείο δεν έχει την κατάλληλη μορφή του ZionWorx CSV. + + + Line %d: %s + + + + + Decoding error: %s + + + + + Record %d + + - \ No newline at end of file + diff --git a/resources/i18n/en.ts b/resources/i18n/en.ts index e1d6436d7..1d7f1b246 100644 --- a/resources/i18n/en.ts +++ b/resources/i18n/en.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Alert - + Show an alert message. Show an alert message. - + Alert name singular Alert - + Alerts name plural Alerts - + Alerts container title Alerts - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Alert Message - + Alert &text: Alert &text: - + &New &New - + &Save &Save - + Displ&ay Displ&ay - + Display && Cl&ose Display && Cl&ose - + New Alert New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. - + &Parameter: &Parameter: - + No Parameter Found No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found No Placeholder Found - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Font - + Font name: Font name: - + Font color: Font color: - + Background color: Background color: - + Font size: Font size: - + Alert timeout: Alert timeout: @@ -151,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Bible - + Bible name singular Bible - + Bibles name plural Bibles - + Bibles container title Bibles - + No Book Found No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. Import a Bible. - + Add a new Bible. Add a new Bible. - + Edit the selected Bible. Edit the selected Bible. - + Delete the selected Bible. Delete the selected Bible. - + Preview the selected Bible. Preview the selected Bible. - + Send the selected Bible live. Send the selected Bible live. - + Add the selected Bible to the service. Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. Upgrade the Bible databases to the latest format. - + Genesis Genesis - + Exodus Exodus - + Leviticus Leviticus - + Numbers Numbers - + Deuteronomy Deuteronomy - + Joshua Joshua - + Judges Judges - + Ruth Ruth - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Kings - + 2 Kings 2 Kings - + 1 Chronicles 1 Chronicles - + 2 Chronicles 2 Chronicles - + Ezra Ezra - + Nehemiah Nehemiah - + Esther Esther - + Job Job - + Psalms Psalms - + Proverbs Proverbs - + Ecclesiastes Ecclesiastes - + Song of Solomon Song of Solomon - + Isaiah Isaiah - + Jeremiah Jeremiah - + Lamentations Lamentations - + Ezekiel Ezekiel - + Daniel Daniel - + Hosea Hosea - + Joel Joel - + Amos Amos - + Obadiah Obadiah - + Jonah Jonah - + Micah Micah - + Nahum Nahum - + Habakkuk Habakkuk - + Zephaniah Zephaniah - + Haggai Haggai - + Zechariah Zechariah - + Malachi Malachi - + Matthew Matthew - + Mark Mark - + Luke Luke - + John John - + Acts Acts - + Romans Romans - + 1 Corinthians 1 Corinthians - + 2 Corinthians 2 Corinthians - + Galatians Galatians - + Ephesians Ephesians - + Philippians Philippians - + Colossians Colossians - + 1 Thessalonians 1 Thessalonians - + 2 Thessalonians 2 Thessalonians - + 1 Timothy 1 Timothy - + 2 Timothy 2 Timothy - + Titus Titus - + Philemon Philemon - + Hebrews Hebrews - + James James - + 1 Peter 1 Peter - + 2 Peter 2 Peter - + 1 John 1 John - + 2 John 2 John - + 3 John 3 John - + Jude Jude - + Revelation Revelation - + Judith Judith - + Wisdom Wisdom - + Tobit Tobit - + Sirach Sirach - + Baruch Baruch - + 1 Maccabees 1 Maccabees - + 2 Maccabees 2 Maccabees - + 3 Maccabees 3 Maccabees - + 4 Maccabees 4 Maccabees - + Rest of Daniel Rest of Daniel - + Rest of Esther Rest of Esther - + Prayer of Manasses Prayer of Manasses - + Letter of Jeremiah Letter of Jeremiah - + Prayer of Azariah Prayer of Azariah - + Susanna Susanna - + Bel Bel - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verse|verses;;-|to;;,|and;;end @@ -663,32 +664,32 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name Duplicate Book Name - + The Book Name "%s" has been entered more than once. The Book Name "%s" has been entered more than once. @@ -710,39 +711,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error Scripture Reference Error - + Web Bible cannot be used Web Bible cannot be used - + Text Search is not available with Web Bibles. Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available No Bibles Available - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Verse Display - + Only show new chapter numbers Only show new chapter numbers - + Bible theme: Bible theme: - + No Brackets No Brackets - + ( And ) ( And ) - + { And } { And } - + [ And ] [ And ] - + Note: Changes do not affect verses already in the service. Note: Changes do not affect verses already in the service. - + Display second Bible verses Display second Bible verses - + Custom Scripture References Custom Scripture References - + Verse Separator: Verse Separator: - + Range Separator: Range Separator: - + List Separator: List Separator: - + End Mark: End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English English - + Default Bible Language Default Bible Language - + Book name language in search field, search results and on display: Book name language in search field, search results and on display: - + Bible Language Bible Language - + Application Language Application Language @@ -903,42 +904,42 @@ search results and on display: BiblesPlugin.BookNameDialog - + Select Book Name Select Book Name - + Current name: Current name: - + Corresponding name: Corresponding name: - + Show Books From Show Books From - + Old Testament Old Testament - + New Testament New Testament - + Apocrypha Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. The following book name cannot be matched up internally. Please select the corresponding name from the list. @@ -946,7 +947,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. You need to select a book. @@ -954,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Importing books... %s - + Importing verses from %s... Importing verses from <book name>... Importing verses from %s... - + Importing verses... done. Importing verses... done. @@ -973,69 +974,69 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor Bible Editor - + License Details License Details - + Version name: Version name: - + Copyright: Copyright: - + Permissions: Permissions: - + Default Bible Language Default Bible Language - + Book name language in search field, search results and on display: Book name language in search field, search results and on display: - + Global Settings Global Settings - + Bible Language Bible Language - + Application Language Application Language - + English English - + This is a Web Download Bible. It is not possible to customize the Book Names. This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. @@ -1043,38 +1044,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registering Bible and loading books... - + Registering Language... Registering Language... - + Importing %s... Importing <book name>... Importing %s... - + Download Error Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1252,17 +1253,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: Language: @@ -1270,7 +1271,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. You need to choose a language. @@ -1278,92 +1279,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Quick - + Find: Find: - + Book: Book: - + Chapter: Chapter: - + Verse: Verse: - + From: From: - + To: To: - + Text Search Text Search - + Second: Second: - + Scripture Reference Scripture Reference - + Toggle to keep or clear the previous results. Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. Bible not fully loaded. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... Search Scripture Reference... - + Search Text... Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1376,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1383,7 +1384,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1392,12 +1393,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1406,149 +1407,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Select a Backup Directory - + Bible Upgrade Wizard Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory Select Backup Directory - + Please select a backup directory for your Bibles Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. Please select a backup location for your Bibles. - + Backup Directory: Backup Directory: - + There is no need to backup my Bibles There is no need to backup my Bibles - + Select Bibles Select Bibles - + Please select the Bibles to upgrade Please select the Bibles to upgrade - + Upgrading Upgrading - + Please wait while your Bibles are upgraded. Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error Download Error - + To upgrade your Web Bibles an Internet connection is required. To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete Upgrading Bible %s of %s: "%s" Complete - + , %s failed , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s Upgrading Bible(s): %s successful%s - + Upgrade failed. Upgrade failed. - + You need to specify a backup directory for your Bibles. You need to specify a backup directory for your Bibles. - + Starting upgrade... Starting upgrade... - + There are no Bibles that need to be upgraded. There are no Bibles that need to be upgraded. @@ -1556,65 +1557,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular Custom Slide - + Custom Slides name plural Custom Slides - + Custom Slides container title Custom Slides - + Load a new custom slide. Load a new custom slide. - + Import a custom slide. Import a custom slide. - + Add a new custom slide. Add a new custom slide. - + Edit the selected custom slide. Edit the selected custom slide. - + Delete the selected custom slide. Delete the selected custom slide. - + Preview the selected custom slide. Preview the selected custom slide. - + Send the selected custom slide live. Send the selected custom slide live. - + Add the selected custom slide to the service. Add the selected custom slide to the service. @@ -1622,12 +1623,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Custom Display - + Display footer Display footer @@ -1635,62 +1636,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Edit Custom Slides - + &Title: &Title: - + Add a new slide at bottom. Add a new slide at bottom. - + Edit the selected slide. Edit the selected slide. - + Edit all the slides at once. Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. - + The&me: The&me: - + &Credits: &Credits: - + You need to type in a title. You need to type in a title. - + You need to add at least one slide You need to add at least one slide - + Ed&it All Ed&it All - + Insert Slide Insert Slide @@ -1698,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide Edit Slide @@ -1706,68 +1707,71 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Are you sure you want to delete the %n selected custom slide(s)?Are you sure you want to delete the %n selected custom slide(s)? + + Are you sure you want to delete the %n selected custom slide(s)? + Are you sure you want to delete the %n selected custom slide(s)? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - + Image name singular Image - + Images name plural Images - + Images container title Images - + Load a new image. Load a new image. - + Add a new image. Add a new image. - + Edit the selected image. Edit the selected image. - + Delete the selected image. Delete the selected image. - + Preview the selected image. Preview the selected image. - + Send the selected image live. Send the selected image live. - + Add the selected image to the service. Add the selected image to the service. @@ -1775,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1783,44 +1787,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Select Image(s) - + You must select an image to delete. You must select an image to delete. - + You must select an image to replace the background with. You must select an image to replace the background with. - + Missing Image(s) Missing Image(s) - + The following image(s) no longer exist: %s The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. There was no display item to amend. @@ -1828,17 +1832,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Background Color - + Default Color: Default Color: - + Visible background for images with aspect ratio different to screen. Visible background for images with aspect ratio different to screen. @@ -1846,60 +1850,60 @@ Do you want to add the other images anyway? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Load new media. - + Add new media. Add new media. - + Edit the selected media. Edit the selected media. - + Delete the selected media. Delete the selected media. - + Preview the selected media. Preview the selected media. - + Send the selected media live. Send the selected media live. - + Add the selected media to the service. Add the selected media to the service. @@ -1907,57 +1911,57 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media Select Media - + You must select a media file to delete. You must select a media file to delete. - + You must select a media file to replace the background with. You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File Missing Media File - + The file %s no longer exists. The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. There was no display item to amend. - + Unsupported File Unsupported File - + Automatic Automatic - + Use Player: Use Player: @@ -1965,22 +1969,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players Available Media Players - + %s (unavailable) %s (unavailable) - + Player Order Player Order - + Allow media player to be overridden Allow media player to be overridden @@ -1988,17 +1992,17 @@ Do you want to add the other images anyway? OpenLP - + Image Files Image Files - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Credits - + License License - - Contribute - Contribute - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program 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 below for more details. This program 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 below for more details. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Volunteer + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2120,12 +2158,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2142,13 +2188,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2164,207 +2212,183 @@ Final Credit bring this software to you for free because He has set us free. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings UI Settings - + Number of recent files to display: Number of recent files to display: - + Remember active media manager tab on startup Remember active media manager tab on startup - + Double-click to send items straight to live Double-click to send items straight to live - + Expand new service items on creation Expand new service items on creation - + Enable application exit confirmation Enable application exit confirmation - + Mouse Cursor Mouse Cursor - + Hide mouse cursor when over display window Hide mouse cursor when over display window - + Default Image Default Image - + Background color: Background color: - + Image file: Image file: - + Open File Open File - + Advanced Advanced - + Preview items when clicked in Media Manager Preview items when clicked in Media Manager - + Click to select a color. Click to select a color. - + Browse for an image file to display. Browse for an image file to display. - + Revert to the default OpenLP logo. Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M - + Default Service Name Default Service Name - + Enable default service name Enable default service name - + Date and Time: Date and Time: - + Monday Monday - + Tuesday Tuesday - + Wednesday Wednesday - + Thurdsday Thurdsday - + Friday Friday - + Saturday Saturday - + Sunday Sunday - + Now Now - + Time when usual service starts. Time when usual service starts. - + Name: Name: - + Consult the OpenLP manual for usage. Consult the OpenLP manual for usage. - + Revert to the default service name "%s". Revert to the default service name "%s". - + Example: Example: - + X11 X11 @@ -2374,82 +2398,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bypass X11 Window Manager - + Syntax error. Syntax error. - + Data Location Data Location - + Current path: Current path: - + Custom path: Custom path: - + Browse for new data file location. Browse for new data file location. - + Set the data location to the default. Set the data location to the default. - + Cancel Cancel - + Cancel OpenLP data directory location change. Cancel OpenLP data directory location change. - + Copy data to new location. Copy data to new location. - + Copy the OpenLP data files to the new location. Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error Data Directory Error - + Select Data Directory Location Select Data Directory Location - + Confirm Data Directory Change Confirm Data Directory Change - + Reset Data Directory Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2458,47 +2482,98 @@ This location will be used after OpenLP is closed. This location will be used after OpenLP is closed. - + Overwrite Existing Data Overwrite Existing Data + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + OpenLP.ExceptionDialog - + Error Occurred Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail Send E-Mail - + Save to File Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -2506,24 +2581,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Save Crash Report - + Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2554,7 +2629,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2589,17 +2664,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename File Rename - + New File Name: New File Name: - + File Copy File Copy @@ -2607,17 +2682,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Select Translation - + Choose the translation you'd like to use in OpenLP. Choose the translation you'd like to use in OpenLP. - + Translation: Translation: @@ -2625,192 +2700,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Songs - + First Time Wizard First Time Wizard - + Welcome to the First Time Wizard Welcome to the First Time Wizard - + Activate required Plugins Activate required Plugins - + Select the Plugins you wish to use. Select the Plugins you wish to use. - + Bible Bible - + Images Images - + Presentations Presentations - + Media (Audio and Video) Media (Audio and Video) - + Allow remote access Allow remote access - + Monitor Song Usage Monitor Song Usage - + Allow Alerts Allow Alerts - + Default Settings Default Settings - + Downloading %s... Downloading %s... - + Download complete. Click the finish button to start OpenLP. Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... Enabling selected plugins... - + No Internet Connection No Internet Connection - + Unable to detect an Internet connection. Unable to detect an Internet connection. - + Sample Songs Sample Songs - + Select and download public domain songs. Select and download public domain songs. - + Sample Bibles Sample Bibles - + Select and download free Bibles. Select and download free Bibles. - + Sample Themes Sample Themes - + Select and download sample themes. Select and download sample themes. - + Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. - + Default output display: Default output display: - + Select default theme: Select default theme: - + Starting configuration process... Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. Please wait while OpenLP is set up and your data is downloaded. - + Setting Up Setting Up - + Click the finish button to start OpenLP. Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. Click the finish button to return to OpenLP. - + Custom Slides Custom Slides - + Finish Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2819,7 +2894,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2831,37 +2906,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Configure Formatting Tags - + Edit Selection Edit Selection - + Save Save - + Description Description - + Tag Tag - + Start HTML Start HTML - + End HTML End HTML @@ -2869,32 +2944,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Error - + Tag "n" already defined. Tag "n" already defined. - + New Tag New Tag - + <HTML here> <HTML here> - + </and here> </and here> - + Tag %s already defined. Tag %s already defined. @@ -2902,82 +2977,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Red - + Black Black - + Blue Blue - + Yellow Yellow - + Green Green - + Pink Pink - + Orange Orange - + Purple Purple - + White White - + Superscript Superscript - + Subscript Subscript - + Paragraph Paragraph - + Bold Bold - + Italics Italics - + Underline Underline - + Break Break @@ -2985,122 +3060,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General General - + Monitors Monitors - + Select monitor for output display: Select monitor for output display: - + Display if a single screen Display if a single screen - + Application Startup Application Startup - + Show blank screen warning Show blank screen warning - + Automatically open the last service Automatically open the last service - + Show the splash screen Show the splash screen - + Application Settings Application Settings - + Prompt to save before starting a new service Prompt to save before starting a new service - + Automatically preview next item in service Automatically preview next item in service - + sec sec - + CCLI Details CCLI Details - + SongSelect username: SongSelect username: - + SongSelect password: SongSelect password: - + X X - + Y Y - + Height Height - + Width Width - + Check for updates to OpenLP Check for updates to OpenLP - + Unblank display when adding new live item Unblank display when adding new live item - + Timed slide interval: Timed slide interval: - + Background Audio Background Audio - + Start background audio paused Start background audio paused @@ -3110,12 +3185,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: Override display position: - + Repeat track list Repeat track list @@ -3143,12 +3218,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language Language - + Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. @@ -3156,7 +3231,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -3164,287 +3239,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &File - + &Import &Import - + &Export &Export - + &View &View - + M&ode M&ode - + &Tools &Tools - + &Settings &Settings - + &Language &Language - + &Help &Help - + Media Manager Media Manager - + Service Manager Service Manager - + Theme Manager Theme Manager - + &New &New - + &Open &Open - + Open an existing service. Open an existing service. - + &Save &Save - + Save the current service to disk. Save the current service to disk. - + Save &As... Save &As... - + Save Service As Save Service As - + Save the current service under a new name. Save the current service under a new name. - + E&xit E&xit - + Quit OpenLP Quit OpenLP - + &Theme &Theme - + &Configure OpenLP... &Configure OpenLP... - + &Media Manager &Media Manager - + Toggle Media Manager Toggle Media Manager - + Toggle the visibility of the media manager. Toggle the visibility of the media manager. - + &Theme Manager &Theme Manager - + Toggle Theme Manager Toggle Theme Manager - + Toggle the visibility of the theme manager. Toggle the visibility of the theme manager. - + &Service Manager &Service Manager - + Toggle Service Manager Toggle Service Manager - + Toggle the visibility of the service manager. Toggle the visibility of the service manager. - + &Preview Panel &Preview Panel - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. - + &Live Panel &Live Panel - + Toggle Live Panel Toggle Live Panel - + Toggle the visibility of the live panel. Toggle the visibility of the live panel. - + &Plugin List &Plugin List - + List the Plugins List the Plugins - + &User Guide &User Guide - + &About &About - + More information about OpenLP More information about OpenLP - + &Online Help &Online Help - + &Web Site &Web Site - + Use the system language, if available. Use the system language, if available. - + Set the interface language to %s Set the interface language to %s - + Add &Tool... Add &Tool... - + Add an application to the list of tools. Add an application to the list of tools. - + &Default &Default - + Set the view mode back to the default. Set the view mode back to the default. - + &Setup &Setup - + Set the view mode to Setup. Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3453,108 +3528,108 @@ You can download the latest version from http://openlp.org/. You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP Version Updated - + OpenLP Main Display Blanked OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Default Theme: %s Default Theme: %s - + English Please add the name of your language here English - + Configure &Shortcuts... Configure &Shortcuts... - + Close OpenLP Close OpenLP - + Are you sure you want to close OpenLP? Are you sure you want to close OpenLP? - + Open &Data Folder... Open &Data Folder... - + Open the folder where songs, bibles and other data resides. Open the folder where songs, bibles and other data resides. - + &Autodetect &Autodetect - + Update Theme Images Update Theme Images - + Update the preview images for all themes. Update the preview images for all themes. - + Print the current service. Print the current service. - + &Recent Files &Recent Files - + L&ock Panels L&ock Panels - + Prevent the panels being moved. Prevent the panels being moved. - + Re-run First Time Wizard Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3563,43 +3638,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files Clear List - + Clear the list of recent files. Clear the list of recent files. - + Configure &Formatting Tags... Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file Export OpenLP settings to a specified *.config file - + Settings Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3612,50 +3687,77 @@ Importing settings will make permanent changes to your current OpenLP configurat Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File Open File - + OpenLP Export Settings Files (*.conf) OpenLP Export Settings Files (*.conf) - + Import settings Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File Export Settings File - + OpenLP Export Settings File (*.conf) OpenLP Export Settings File (*.conf) - + New Data Directory Error New Data Directory Error + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + OpenLP Data directory copy failed + +%s + OpenLP Data directory copy failed + +%s + OpenLP.Manager - + Database Error Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3664,7 +3766,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3676,74 +3778,74 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected No Items Selected - + &Add to selected Service Item &Add to selected Service Item - + You must select one or more items to preview. You must select one or more items to preview. - + You must select one or more items to send live. You must select one or more items to send live. - + You must select one or more items. You must select one or more items. - + You must select an existing service item to add to. You must select an existing service item to add to. - + Invalid Service Item Invalid Service Item - + You must select a %s service item. You must select a %s service item. - + You must select one or more items to add. You must select one or more items to add. - + No Search Results No Search Results - + Invalid File Type Invalid File Type - + Invalid File %s. Suffix not supported Invalid File %s. Suffix not supported - + &Clone &Clone - + Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. @@ -3751,12 +3853,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> tag is missing. - + <verse> tag is missing. <verse> tag is missing. @@ -3764,42 +3866,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Plugin List - + Plugin Details Plugin Details - + Status: Status: - + Active Active - + Inactive Inactive - + %s (Inactive) %s (Inactive) - + %s (Active) %s (Active) - + %s (Disabled) %s (Disabled) @@ -3807,12 +3909,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Fit Page - + Fit Width Fit Width @@ -3820,77 +3922,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options Options - + Copy Copy - + Copy as HTML Copy as HTML - + Zoom In Zoom In - + Zoom Out Zoom Out - + Zoom Original Zoom Original - + Other Options Other Options - + Include slide text if available Include slide text if available - + Include service item notes Include service item notes - + Include play length of media items Include play length of media items - + Add page break before each text item Add page break before each text item - + Service Sheet Service Sheet - + Print Print - + Title: Title: - + Custom Footer Text: Custom Footer Text: @@ -3898,12 +4000,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Screen - + primary primary @@ -3911,12 +4013,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3924,7 +4026,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Reorder Service Item @@ -3932,287 +4034,298 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. File is not a valid service. - + Missing Display Handler Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + &Start Time &Start Time - + Show &Preview Show &Preview - + Modified Service Modified Service - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + Custom Service Notes: Custom Service Notes: - + Notes: Notes: - + Playing time: Playing time: - + Untitled Service Untitled Service - + File could not be opened because it is corrupt. File could not be opened because it is corrupt. - + Empty File Empty File - + This service file does not contain any data. This service file does not contain any data. - + Corrupt File Corrupt File - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. This file is either corrupt or it is not an OpenLP 2.0 service file. - - Service File Missing - Service File Missing - - - + Slide theme Slide theme - + Notes Notes - + Edit Edit - + Service copy only Service copy only - + Error Saving File Error Saving File - + There was an error saving your file. There was an error saving your file. + + + Service File(s) Missing + Service File(s) Missing + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + The following file(s) in the service are missing: +<byte value="x9"/>%s + +These files will be removed if you continue to save. + OpenLP.ServiceNoteForm - + Service Item Notes Service Item Notes @@ -4220,7 +4333,7 @@ The content encoding is not UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configure OpenLP @@ -4228,67 +4341,67 @@ The content encoding is not UTF-8. OpenLP.ShortcutListDialog - + Action Action - + Shortcut Shortcut - + Duplicate Shortcut Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default Default - + Custom Custom - + Capture shortcut. Capture shortcut. - + Restore the default shortcut of this action. Restore the default shortcut of this action. - + Restore Default Shortcuts Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts Configure Shortcuts @@ -4296,172 +4409,172 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Hide Hide - + Go To Go To - + Blank Screen Blank Screen - + Blank to Theme Blank to Theme - + Show Desktop Show Desktop - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item - + Move to previous. Move to previous. - + Move to next. Move to next. - + Play Slides Play Slides - + Delay between slides in seconds. Delay between slides in seconds. - + Move to live. Move to live. - + Add to Service. Add to Service. - + Edit and reload song preview. Edit and reload song preview. - + Start playing media. Start playing media. - + Pause audio. Pause audio. - + Pause playing media. Pause playing media. - + Stop playing media. Stop playing media. - + Video position. Video position. - + Audio Volume. Audio Volume. - + Go to "Verse" Go to "Verse" - + Go to "Chorus" Go to "Chorus" - + Go to "Bridge" Go to "Bridge" - + Go to "Pre-Chorus" Go to "Pre-Chorus" - + Go to "Intro" Go to "Intro" - + Go to "Ending" Go to "Ending" - + Go to "Other" Go to "Other" - + Previous Slide Previous Slide - + Next Slide Next Slide - + Pause Audio Pause Audio - + Background Audio Background Audio - + Go to next audio track. Go to next audio track. - + Tracks Tracks @@ -4469,17 +4582,17 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags - + Language: Language: @@ -4487,615 +4600,627 @@ The content encoding is not UTF-8. OpenLP.StartTimeForm - + Hours: Hours: - + Minutes: Minutes: - + Seconds: Seconds: - + Item Start and Finish Time Item Start and Finish Time - + Start Start - + Finish Finish - + Length Length - + Time Validation Error Time Validation Error - + Finish time is set after the end of the media item Finish time is set after the end of the media item - + Start time is after the finish time of the media item Start time is after the finish time of the media item - + Theme Layout Theme Layout - + The blue box shows the main area. The blue box shows the main area. - + The red box shows the footer. The red box shows the footer. - - OpenLP.ThemeForm - - - Select Image - Select Image - - - - Theme Name Missing - Theme Name Missing - - - - There is no name for this theme. Please enter one. - There is no name for this theme. Please enter one. - - - - Theme Name Invalid - Theme Name Invalid - - - - Invalid theme name. Please enter one. - Invalid theme name. Please enter one. - - - - (approximately %d lines per slide) - (approximately %d lines per slide) - - OpenLP.ThemeManager - + Create a new theme. Create a new theme. - + Edit Theme Edit Theme - + Edit a theme. Edit a theme. - + Delete Theme Delete Theme - + Delete a theme. Delete a theme. - + Import Theme Import Theme - + Import a theme. Import a theme. - + Export Theme Export Theme - + Export a theme. Export a theme. - + &Edit Theme &Edit Theme - + &Delete Theme &Delete Theme - + Set As &Global Default Set As &Global Default - + %s (default) %s (default) - + You must select a theme to edit. You must select a theme to edit. - + You are unable to delete the default theme. You are unable to delete the default theme. - + Theme %s is used in the %s plugin. Theme %s is used in the %s plugin. - + You have not selected a theme. You have not selected a theme. - + Save Theme - (%s) Save Theme - (%s) - + Theme Exported Theme Exported - + Your theme has been successfully exported. Your theme has been successfully exported. - + Theme Export Failed Theme Export Failed - + Your theme could not be exported due to an error. Your theme could not be exported due to an error. - + Select Theme Import File Select Theme Import File - + File is not a valid theme. File is not a valid theme. - + &Copy Theme &Copy Theme - + &Rename Theme &Rename Theme - + &Export Theme &Export Theme - + You must select a theme to rename. You must select a theme to rename. - + Rename Confirmation Rename Confirmation - + Rename %s theme? Rename %s theme? - + You must select a theme to delete. You must select a theme to delete. - + Delete Confirmation Delete Confirmation - + Delete %s theme? Delete %s theme? - + Validation Error Validation Error - + A theme with this name already exists. A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> Copy of %s - + Theme Already Exists Theme Already Exists + + + Theme %s already exists. Do you want to replace it? + Theme %s already exists. Do you want to replace it? + OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Color - + Gradient Gradient - + Color: Color: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Center - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + Theme name: Theme name: - + Edit Theme - %s Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: Transitions: - + &Footer Area &Footer Area - + Starting color: Starting color: - + Ending color: Ending color: - + Background color: Background color: - + Justify Justify - + Layout Preview Layout Preview - + Transparent Transparent - + Preview and Save Preview and Save - + Preview the theme and save it. Preview the theme and save it. + + + (approximately %d lines per slide) + (approximately %d lines per slide) + + + + Background Image Empty + Background Image Empty + + + + You have not selected a background image. Please select one before continuing. + You have not selected a background image. Please select one before continuing. + + + + Select Image + Select Image + + + + Theme Name Missing + Theme Name Missing + + + + There is no name for this theme. Please enter one. + There is no name for this theme. Please enter one. + + + + Theme Name Invalid + Theme Name Invalid + + + + Invalid theme name. Please enter one. + Invalid theme name. Please enter one. + OpenLP.ThemesTab - + Global Theme Global Theme - + Theme Level Theme Level - + S&ong Level S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. Use the global theme, overriding any themes associated with either the service or the songs. - + Themes Themes @@ -5103,315 +5228,315 @@ The content encoding is not UTF-8. OpenLP.Ui - + Error Error - + About About - + &Add &Add - + Advanced Advanced - + All Files All Files - + Bottom Bottom - + Browse... Browse... - + Cancel Cancel - + CCLI number: CCLI number: - + Create a new service. Create a new service. - + &Delete &Delete - + &Edit &Edit - + Empty Field Empty Field - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Image - + Import Import - + Live Live - + Live Background Error Live Background Error - + Load Load - + Middle Middle - + New New - + New Service New Service - + New Theme New Theme - + No File Selected Singular No File Selected - + No Files Selected Plural No Files Selected - + No Item Selected Singular No Item Selected - + No Items Selected Plural No Items Selected - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Preview - + Replace Background Replace Background - + Reset Background Reset Background - + s The abbreviated unit for seconds s - + Save && Preview Save && Preview - + Search Search - + You must select an item to delete. You must select an item to delete. - + You must select an item to edit. You must select an item to edit. - + Save Service Save Service - + Service Service - + Start %s Start %s - + Theme Singular Theme - + Themes Plural Themes - + Top Top - + Version Version - + Delete the selected item. Delete the selected item. - + Move selection up one position. Move selection up one position. - + Move selection down one position. Move selection down one position. - + &Vertical Align: &Vertical Align: - + Finished import. Finished import. - + Format: Format: - + Importing Importing - + Importing "%s"... Importing "%s"... - + Select Import Source Select Import Source - + Select the import format and the location to import from. Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File Open %s File - + %p% %p% - + Ready. Ready. - + Starting import... Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong You need to specify at least one %s file to import from. @@ -5422,299 +5547,304 @@ The content encoding is not UTF-8. Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard Welcome to the Song Import Wizard - + Author Singular Author - + Authors Plural Authors - - © + + © Copyright symbol. © - + Song Book Singular Song Book - + Song Books Plural Song Books - + Song Maintenance Song Maintenance - + Topic Singular Topic - + Topics Plural Topics - + Continuous Continuous - + Default Default - + Display style: Display style: - + Duplicate Error Duplicate Error - + File File - + Help Help - + h The abbreviated unit for hours h - + Layout style: Layout style: - + Live Toolbar Live Toolbar - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP is already running. Do you wish to continue? - + Settings Settings - + Tools Tools - + Unsupported File Unsupported File - + Verse Per Slide Verse Per Slide - + Verse Per Line Verse Per Line - + View View - + Title and/or verses not found Title and/or verses not found - + XML syntax error XML syntax error - + View Mode View Mode - + Open service. Open service. - + Print Service Print Service - + Replace live background. Replace live background. - + Reset live background. Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard Welcome to the Bible Upgrade Wizard - + Confirm Delete Confirm Delete - + Play Slides in Loop Play Slides in Loop - + Play Slides to End Play Slides to End - + Stop Play Slides in Loop Stop Play Slides in Loop - + Stop Play Slides to End Stop Play Slides to End - + Next Track Next Track - + Search Themes... Search bar place holder text Search Themes... - + Optional &Split Optional &Split - + Invalid Folder Selected Singular Invalid Folder Selected - + Invalid File Selected Singular Invalid File Selected - + Invalid Files Selected Plural Invalid Files Selected - + No Folder Selected Singular No Folder Selected - + Open %s Folder Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong You need to specify one %s file to import from. - + You need to specify one %s folder to import from. A song format e.g. PowerSong You need to specify one %s folder to import from. + + + Importing Songs + Importing Songs + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 and %2 - + %1, and %2 Locale list separator: end %1, and %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5723,50 +5853,50 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular Presentation - + Presentations name plural Presentations - + Presentations container title Presentations - + Load a new presentation. Load a new presentation. - + Delete the selected presentation. Delete the selected presentation. - + Preview the selected presentation. Preview the selected presentation. - + Send the selected presentation live. Send the selected presentation live. - + Add the selected presentation to the service. Add the selected presentation to the service. @@ -5774,52 +5904,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The presentation %s is incomplete, please reload. The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. The presentation %s no longer exists. @@ -5827,17 +5957,17 @@ The content encoding is not UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Available Controllers - + %s (unavailable) %s (unavailable) - + Allow presentation application to be overridden Allow presentation application to be overridden @@ -5845,24 +5975,24 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular Remote - + Remotes name plural Remotes - + Remote container title Remote @@ -5871,236 +6001,246 @@ The content encoding is not UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remote - + OpenLP 2.0 Stage View OpenLP 2.0 Stage View - + Service Manager Service Manager - + Slide Controller Slide Controller - + Alerts Alerts - + Search Search - + Refresh Refresh - + Blank Blank - + Show Show - + Prev Prev - + Next Next - + Text Text - + Show Alert Show Alert - + Go Live Go Live - + No Results No Results - + Options Options - + Add to Service Add to Service - + Home Home - + Theme Theme - + Desktop Desktop - + Add &amp; Go to Service Add &amp; Go to Service + + + Service + Service + + + + Slides + Slides + RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings - + Remote URL: Remote URL: - + Stage view URL: Stage view URL: - + Display stage time in 12h format Display stage time in 12h format - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. SongUsagePlugin - + &Song Usage Tracking &Song Usage Tracking - + &Delete Tracking Data &Delete Tracking Data - + Delete song usage data up to a specified date. Delete song usage data up to a specified date. - + &Extract Tracking Data &Extract Tracking Data - + Generate a report on song usage. Generate a report on song usage. - + Toggle Tracking Toggle Tracking - + Toggle the tracking of song usage. Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular SongUsage - + SongUsage name plural SongUsage - + SongUsage container title SongUsage - + Song Usage Song Usage - + Song usage tracking is active. Song usage tracking is active. - + Song usage tracking is inactive. Song usage tracking is inactive. - + display display - + printed printed @@ -6108,32 +6248,32 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Delete Song Usage Data - + Delete Selected Song Usage Events? Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? Are you sure you want to delete selected Song Usage data? - + Deletion Successful Deletion Successful - + All requested data has been deleted successfully. All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -6141,42 +6281,42 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Song Usage Extraction - + Select Date Range Select Date Range - + to to - + Report Location Report Location - + Output File Location Output File Location - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation Report Creation - + Report %s has been successfully created. @@ -6185,12 +6325,12 @@ has been successfully created. has been successfully created. - + Output Path Not Selected Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. You have not set a valid output location for your song usage report. Please select an existing path on your computer. @@ -6198,112 +6338,112 @@ has been successfully created. SongsPlugin - + &Song &Song - + Import songs using the import wizard. Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + &Re-index Songs &Re-index Songs - + Re-index the songs database to improve searching and ordering. Re-index the songs database to improve searching and ordering. - + Reindexing songs... Reindexing songs... - + Arabic (CP-1256) Arabic (CP-1256) - + Baltic (CP-1257) Baltic (CP-1257) - + Central European (CP-1250) Central European (CP-1250) - + Cyrillic (CP-1251) Cyrillic (CP-1251) - + Greek (CP-1253) Greek (CP-1253) - + Hebrew (CP-1255) Hebrew (CP-1255) - + Japanese (CP-932) Japanese (CP-932) - + Korean (CP-949) Korean (CP-949) - + Simplified Chinese (CP-936) Simplified Chinese (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Traditional Chinese (CP-950) - + Turkish (CP-1254) Turkish (CP-1254) - + Vietnam (CP-1258) Vietnam (CP-1258) - + Western European (CP-1252) Western European (CP-1252) - + Character Encoding Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6312,100 +6452,105 @@ for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular Song - + Songs name plural Songs - + Songs container title Songs - + Exports songs using the export wizard. Exports songs using the export wizard. - + Add a new song. Add a new song. - + Edit the selected song. Edit the selected song. - + Delete the selected song. Delete the selected song. - + Preview the selected song. Preview the selected song. - + Send the selected song live. Send the selected song live. - + Add the selected song to the service. Add the selected song to the service. + + + Reindexing songs + Reindexing songs + SongsPlugin.AuthorsForm - + Author Maintenance Author Maintenance - + Display name: Display name: - + First name: First name: - + Last name: Last name: - + You need to type in the first name of the author. You need to type in the first name of the author. - + You need to type in the last name of the author. You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? You have not set a display name for the author, combine the first and last names? @@ -6413,7 +6558,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. The file does not have a valid extension. @@ -6421,12 +6566,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6438,12 +6583,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Custom Book Names @@ -6451,207 +6596,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor Song Editor - + &Title: &Title: - + Alt&ernate title: Alt&ernate title: - + &Lyrics: &Lyrics: - + &Verse order: &Verse order: - + Ed&it All Ed&it All - + Title && Lyrics Title && Lyrics - + &Add to Song &Add to Song - + &Remove &Remove - + &Manage Authors, Topics, Song Books &Manage Authors, Topics, Song Books - + A&dd to Song A&dd to Song - + R&emove R&emove - + Book: Book: - + Number: Number: - + Authors, Topics && Song Book Authors, Topics && Song Book - + New &Theme New &Theme - + Copyright Information Copyright Information - + Comments Comments - + Theme, Copyright Info && Comments Theme, Copyright Info && Comments - + Add Author Add Author - + This author does not exist, do you want to add them? This author does not exist, do you want to add them? - + This author is already in the list. This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic Add Topic - + This topic does not exist, do you want to add it? This topic does not exist, do you want to add it? - + This topic is already in the list. This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. You need to type in a song title. - + You need to type in at least one verse. You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book Add Book - + This song book does not exist, do you want to add it? This song book does not exist, do you want to add it? - + You need to have an author for this song. You need to have an author for this song. - - You need to type some text in to the verse. - You need to type some text in to the verse. - - - + Linked Audio Linked Audio - + Add &File(s) Add &File(s) - + Add &Media Add &Media - + Remove &All Remove &All - + Open File(s) Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. @@ -6659,22 +6799,22 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: &Verse type: - + &Insert &Insert - + Split a slide into two by inserting a verse splitter. Split a slide into two by inserting a verse splitter. @@ -6682,82 +6822,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.ExportWizardForm - + Song Export Wizard Song Export Wizard - + Select Songs Select Songs - + Check the songs you want to export. Check the songs you want to export. - + Uncheck All Uncheck All - + Check All Check All - + Select Directory Select Directory - + Directory: Directory: - + Exporting Exporting - + Please wait while your songs are exported. Please wait while your songs are exported. - + You need to add at least one Song to export. You need to add at least one Song to export. - + No Save Location specified No Save Location specified - + Starting export... Starting export... - + You need to specify a directory. You need to specify a directory. - + Select Destination Folder Select Destination Folder - + Select the directory where you want the songs to be saved. Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. @@ -6765,172 +6905,172 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files - + Song Import Wizard Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation Generic Document/Presentation - + Add Files... Add Files... - + Remove File(s) Remove File(s) - + Please wait while your songs are imported. Please wait while your songs are imported. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + Foilpresenter Song Files Foilpresenter Song Files - + Copy Copy - + Save to File Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files OpenLyrics Files - + CCLI SongSelect Files CCLI SongSelect Files - + EasySlides XML File EasySlides XML File - + EasyWorship Song Database EasyWorship Song Database - + DreamBeam Song Files DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files SundayPlus Song Files - + This importer has been disabled. This importer has been disabled. - + MediaShout Database MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files SongPro Text Files - + SongPro (Export File) SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu @@ -6938,12 +7078,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaFilesForm - + Select Media File(s) Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. Select one or more audio files from the list below, and click OK to import them into this song. @@ -6951,63 +7091,66 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - + Titles Titles - + Lyrics Lyrics - + CCLI License: CCLI License: - + Entire Song Entire Song - + Are you sure you want to delete the %n selected song(s)? - Are you sure you want to delete the %n selected song(s)?Are you sure you want to delete the %n selected song(s)? + + Are you sure you want to delete the %n selected song(s)? + Are you sure you want to delete the %n selected song(s)? + - + Maintain the lists of authors, topics and books. Maintain the lists of authors, topics and books. - + copy For song cloning copy - + Search Titles... Search Titles... - + Search Entire Song... Search Entire Song... - + Search Lyrics... Search Lyrics... - + Search Authors... Search Authors... - + Search Song Books... Search Song Books... @@ -7015,7 +7158,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Unable to open the MediaShout database. @@ -7023,7 +7166,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Not a valid openlp.org 1.x song database. @@ -7031,7 +7174,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Not a valid OpenLP 2.0 song database. @@ -7039,7 +7182,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -7047,35 +7190,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. No songs to import. - + Verses not found. Missing "PART" header. Verses not found. Missing "PART" header. + + + No %s files found. + No %s files found. + + + + Invalid %s file. Unexpected byte value. + Invalid %s file. Unexpected byte value. + + + + Invalid %s file. Missing "TITLE" header. + Invalid %s file. Missing "TITLE" header. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Invalid %s file. Missing "COPYRIGHTLINE" header. + SongsPlugin.SongBookForm - + Song Book Maintenance Song Book Maintenance - + &Name: &Name: - + &Publisher: &Publisher: - + You need to type in a name for the book. You need to type in a name for the book. @@ -7083,12 +7246,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongExportForm - + Your song export failed. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. @@ -7096,27 +7259,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice Cannot access OpenOffice or LibreOffice - + Unable to open file Unable to open file - + File not found File not found @@ -7124,107 +7287,107 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Could not add your author. - + This author already exists. This author already exists. - + Could not add your topic. Could not add your topic. - + This topic already exists. This topic already exists. - + Could not add your book. Could not add your book. - + This book already exists. This book already exists. - + Could not save your changes. Could not save your changes. - + Could not save your modified author, because the author already exists. Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. Could not save your modified topic, because it already exists. - + Delete Author Delete Author - + Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic Delete Topic - + Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book Delete Book - + Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? @@ -7232,27 +7395,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongsTab - + Songs Mode Songs Mode - + Enable search as you type Enable search as you type - + Display verses on live tool bar Display verses on live tool bar - + Update service from song edit Update service from song edit - + Import missing songs from service files Import missing songs from service files @@ -7260,17 +7423,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance Topic Maintenance - + Topic name: Topic name: - + You need to type in a topic name. You need to type in a topic name. @@ -7278,37 +7441,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse Verse - + Chorus Chorus - + Bridge Bridge - + Pre-Chorus Pre-Chorus - + Intro Intro - + Ending Ending - + Other Other @@ -7316,14 +7479,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Error reading CSV file. - + File not valid ZionWorx CSV format. File not valid ZionWorx CSV format. + + + Line %d: %s + Line %d: %s + + + + Decoding error: %s + Decoding error: %s + + + + Record %d + Record %d + - \ No newline at end of file + diff --git a/resources/i18n/en_GB.ts b/resources/i18n/en_GB.ts index 8f51022ab..5dc37c8fa 100644 --- a/resources/i18n/en_GB.ts +++ b/resources/i18n/en_GB.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Alert - + Show an alert message. Show an alert message. - + Alert name singular Alert - + Alerts name plural Alerts - + Alerts container title Alerts - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Alert Message - + Alert &text: Alert &text: - + &New &New - + &Save &Save - + Displ&ay Displ&ay - + Display && Cl&ose Display && Cl&ose - + New Alert New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. - + &Parameter: &Parameter: - + No Parameter Found No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found No Placeholder Found - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Font - + Font name: Font name: - + Font color: Font colour: - + Background color: Background colour: - + Font size: Font size: - + Alert timeout: Alert timeout: @@ -151,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Bible - + Bible name singular Bible - + Bibles name plural Bibles - + Bibles container title Bibles - + No Book Found No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. Import a Bible. - + Add a new Bible. Add a new Bible. - + Edit the selected Bible. Edit the selected Bible. - + Delete the selected Bible. Delete the selected Bible. - + Preview the selected Bible. Preview the selected Bible. - + Send the selected Bible live. Send the selected Bible live. - + Add the selected Bible to the service. Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. Upgrade the Bible databases to the latest format. - + Genesis Genesis - + Exodus Exodus - + Leviticus Leviticus - + Numbers Numbers - + Deuteronomy Deuteronomy - + Joshua Joshua - + Judges Judges - + Ruth Ruth - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Kings - + 2 Kings 2 Kings - + 1 Chronicles 1 Chronicles - + 2 Chronicles 2 Chronicles - + Ezra Ezra - + Nehemiah Nehemiah - + Esther Esther - + Job Job - + Psalms Psalms - + Proverbs Proverbs - + Ecclesiastes Ecclesiastes - + Song of Solomon Song of Solomon - + Isaiah Isaiah - + Jeremiah Jeremiah - + Lamentations Lamentations - + Ezekiel Ezekiel - + Daniel Daniel - + Hosea Hosea - + Joel Joel - + Amos Amos - + Obadiah Obadiah - + Jonah Jonah - + Micah Micah - + Nahum Nahum - + Habakkuk Habakkuk - + Zephaniah Zephaniah - + Haggai Haggai - + Zechariah Zechariah - + Malachi Malachi - + Matthew Matthew - + Mark Mark - + Luke Luke - + John John - + Acts Acts - + Romans Romans - + 1 Corinthians 1 Corinthians - + 2 Corinthians 2 Corinthians - + Galatians Galatians - + Ephesians Ephesians - + Philippians Philippians - + Colossians Colossians - + 1 Thessalonians 1 Thessalonians - + 2 Thessalonians 2 Thessalonians - + 1 Timothy 1 Timothy - + 2 Timothy 2 Timothy - + Titus Titus - + Philemon Philemon - + Hebrews Hebrews - + James James - + 1 Peter 1 Peter - + 2 Peter 2 Peter - + 1 John 1 John - + 2 John 2 John - + 3 John 3 John - + Jude Jude - + Revelation Revelation - + Judith Judith - + Wisdom Wisdom - + Tobit Tobit - + Sirach Sirach - + Baruch Baruch - + 1 Maccabees 1 Maccabees - + 2 Maccabees 2 Maccabees - + 3 Maccabees 3 Maccabees - + 4 Maccabees 4 Maccabees - + Rest of Daniel Rest of Daniel - + Rest of Esther Rest of Esther - + Prayer of Manasses Prayer of Manasses - + Letter of Jeremiah Letter of Jeremiah - + Prayer of Azariah Prayer of Azariah - + Susanna Susanna - + Bel Bel - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verse|verses;;-|to;;,|and;;end @@ -663,32 +664,32 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Duplicate Book Name Duplicate Book Name - + The Book Name "%s" has been entered more than once. The Book Name "%s" has been entered more than once. @@ -710,39 +711,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error Scripture Reference Error - + Web Bible cannot be used Web Bible cannot be used - + Text Search is not available with Web Bibles. Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available No Bibles Available - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Verse Display - + Only show new chapter numbers Only show new chapter numbers - + Bible theme: Bible theme: - + No Brackets No Brackets - + ( And ) ( And ) - + { And } { And } - + [ And ] [ And ] - + Note: Changes do not affect verses already in the service. Note: Changes do not affect verses already in the service. - + Display second Bible verses Display second Bible verses - + Custom Scripture References Custom Scripture References - + Verse Separator: Verse Separator: - + Range Separator: Range Separator: - + List Separator: List Separator: - + End Mark: End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English English - + Default Bible Language Default Bible Language - + Book name language in search field, search results and on display: Book name language in search field, search results and on display: - + Bible Language Bible Language - + Application Language Application Language @@ -903,42 +904,42 @@ search results and on display: BiblesPlugin.BookNameDialog - + Select Book Name Select Book Name - + Current name: Current name: - + Corresponding name: Corresponding name: - + Show Books From Show Books From - + Old Testament Old Testament - + New Testament New Testament - + Apocrypha Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. The following book name cannot be matched up internally. Please select the corresponding name from the list. @@ -946,7 +947,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. You need to select a book. @@ -954,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Importing books... %s - + Importing verses from %s... Importing verses from <book name>... Importing verses from %s... - + Importing verses... done. Importing verses... done. @@ -973,69 +974,69 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor Bible Editor - + License Details - License Details + Licence Details - + Version name: Version name: - + Copyright: Copyright: - + Permissions: Permissions: - + Default Bible Language Default Bible Language - + Book name language in search field, search results and on display: Book name language in search field, search results and on display: - + Global Settings Global Settings - + Bible Language Bible Language - + Application Language Application Language - + English English - + This is a Web Download Bible. It is not possible to customize the Book Names. This is a Web Download Bible. It is not possible to customize the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. @@ -1043,38 +1044,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registering Bible and loading books... - + Registering Language... Registering Language... - + Importing %s... Importing <book name>... Importing %s... - + Download Error Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1144,12 +1145,12 @@ It is not possible to customize the Book Names. License Details - License Details + Licence Details Set up the Bible's license details. - Set up the Bible's license details. + Set up the Bible's licence details. @@ -1252,17 +1253,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: Language: @@ -1270,7 +1271,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. You need to choose a language. @@ -1278,92 +1279,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Quick - + Find: Find: - + Book: Book: - + Chapter: Chapter: - + Verse: Verse: - + From: From: - + To: To: - + Text Search Text Search - + Second: Second: - + Scripture Reference Scripture Reference - + Toggle to keep or clear the previous results. Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. Bible not fully loaded. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... Search Scripture Reference... - + Search Text... Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1376,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. @@ -1383,7 +1384,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1392,12 +1393,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1406,149 +1407,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Select a Backup Directory - + Bible Upgrade Wizard Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory Select Backup Directory - + Please select a backup directory for your Bibles Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. Please select a backup location for your Bibles. - + Backup Directory: Backup Directory: - + There is no need to backup my Bibles There is no need to backup my Bibles - + Select Bibles Select Bibles - + Please select the Bibles to upgrade Please select the Bibles to upgrade - + Upgrading Upgrading - + Please wait while your Bibles are upgraded. Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error Download Error - + To upgrade your Web Bibles an Internet connection is required. To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete Upgrading Bible %s of %s: "%s" Complete - + , %s failed , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s Upgrading Bible(s): %s successful%s - + Upgrade failed. Upgrade failed. - + You need to specify a backup directory for your Bibles. You need to specify a backup directory for your Bibles. - + Starting upgrade... Starting upgrade... - + There are no Bibles that need to be upgraded. There are no Bibles that need to be upgraded. @@ -1556,65 +1557,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular Custom Slide - + Custom Slides name plural Custom Slides - + Custom Slides container title Custom Slides - + Load a new custom slide. Load a new custom slide. - + Import a custom slide. Import a custom slide. - + Add a new custom slide. Add a new custom slide. - + Edit the selected custom slide. Edit the selected custom slide. - + Delete the selected custom slide. Delete the selected custom slide. - + Preview the selected custom slide. Preview the selected custom slide. - + Send the selected custom slide live. Send the selected custom slide live. - + Add the selected custom slide to the service. Add the selected custom slide to the service. @@ -1622,12 +1623,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Custom Display - + Display footer Display footer @@ -1635,62 +1636,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Edit Custom Slides - + &Title: &Title: - + Add a new slide at bottom. Add a new slide at bottom. - + Edit the selected slide. Edit the selected slide. - + Edit all the slides at once. Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. - + The&me: The&me: - + &Credits: &Credits: - + You need to type in a title. You need to type in a title. - + You need to add at least one slide You need to add at least one slide - + Ed&it All Ed&it All - + Insert Slide Insert Slide @@ -1698,7 +1699,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide Edit Slide @@ -1706,68 +1707,71 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Are you sure you want to delete the %n selected custom slide(s)?Are you sure you want to delete the %n selected custom slide(s)? + + Are you sure you want to delete the %n selected custom slide(s)? + Are you sure you want to delete the %n selected custom slide(s)? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - + Image name singular Image - + Images name plural Images - + Images container title Images - + Load a new image. Load a new image. - + Add a new image. Add a new image. - + Edit the selected image. Edit the selected image. - + Delete the selected image. Delete the selected image. - + Preview the selected image. Preview the selected image. - + Send the selected image live. Send the selected image live. - + Add the selected image to the service. Add the selected image to the service. @@ -1775,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1783,44 +1787,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Select Image(s) - + You must select an image to delete. You must select an image to delete. - + You must select an image to replace the background with. You must select an image to replace the background with. - + Missing Image(s) Missing Image(s) - + The following image(s) no longer exist: %s The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. There was no display item to amend. @@ -1828,17 +1832,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Background Color - + Default Color: Default Color: - + Visible background for images with aspect ratio different to screen. Visible background for images with aspect ratio different to screen. @@ -1846,60 +1850,60 @@ Do you want to add the other images anyway? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Load new media. - + Add new media. Add new media. - + Edit the selected media. Edit the selected media. - + Delete the selected media. Delete the selected media. - + Preview the selected media. Preview the selected media. - + Send the selected media live. Send the selected media live. - + Add the selected media to the service. Add the selected media to the service. @@ -1907,57 +1911,57 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media Select Media - + You must select a media file to delete. You must select a media file to delete. - + You must select a media file to replace the background with. You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File Missing Media File - + The file %s no longer exists. The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. There was no display item to amend. - + Unsupported File Unsupported File - + Automatic Automatic - + Use Player: Use Player: @@ -1965,22 +1969,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players Available Media Players - + %s (unavailable) %s (unavailable) - + Player Order Player Order - + Allow media player to be overridden Allow media player to be overridden @@ -1988,17 +1992,17 @@ Do you want to add the other images anyway? OpenLP - + Image Files Image Files - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Credits - + License Licence - - Contribute - Contribute - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public Licence as published by the Free Software Foundation; version 2 of the Licence. - + This program 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 below for more details. This program 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 below for more details. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Volunteer + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2120,12 +2158,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2142,13 +2188,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2164,207 +2212,183 @@ Final Credit bring this software to you for free because He has set us free. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings UI Settings - + Number of recent files to display: Number of recent files to display: - + Remember active media manager tab on startup Remember active media manager tab on startup - + Double-click to send items straight to live Double-click to send items straight to live - + Expand new service items on creation Expand new service items on creation - + Enable application exit confirmation Enable application exit confirmation - + Mouse Cursor Mouse Cursor - + Hide mouse cursor when over display window Hide mouse cursor when over display window - + Default Image Default Image - + Background color: Background colour: - + Image file: Image file: - + Open File Open File - + Advanced Advanced - + Preview items when clicked in Media Manager Preview items when clicked in Media Manager - + Click to select a color. Click to select a colour. - + Browse for an image file to display. Browse for an image file to display. - + Revert to the default OpenLP logo. Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M - + Default Service Name Default Service Name - + Enable default service name Enable default service name - + Date and Time: Date and Time: - + Monday Monday - + Tuesday Tuesday - + Wednesday Wednesday - + Thurdsday Thurdsday - + Friday Friday - + Saturday Saturday - + Sunday Sunday - + Now Now - + Time when usual service starts. Time when usual service starts. - + Name: Name: - + Consult the OpenLP manual for usage. Consult the OpenLP manual for usage. - + Revert to the default service name "%s". Revert to the default service name "%s". - + Example: Example: - + X11 X11 @@ -2374,82 +2398,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bypass X11 Window Manager - + Syntax error. Syntax error. - + Data Location Data Location - + Current path: Current path: - + Custom path: Custom path: - + Browse for new data file location. Browse for new data file location. - + Set the data location to the default. Set the data location to the default. - + Cancel Cancel - + Cancel OpenLP data directory location change. Cancel OpenLP data directory location change. - + Copy data to new location. Copy data to new location. - + Copy the OpenLP data files to the new location. Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error Data Directory Error - + Select Data Directory Location Select Data Directory Location - + Confirm Data Directory Change Confirm Data Directory Change - + Reset Data Directory Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2458,47 +2482,98 @@ This location will be used after OpenLP is closed. This location will be used after OpenLP is closed. - + Overwrite Existing Data Overwrite Existing Data + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + OpenLP.ExceptionDialog - + Error Occurred Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail Send E-Mail - + Save to File Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -2506,24 +2581,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Save Crash Report - + Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2554,7 +2629,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2589,17 +2664,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename File Rename - + New File Name: New File Name: - + File Copy File Copy @@ -2607,17 +2682,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Select Translation - + Choose the translation you'd like to use in OpenLP. Choose the translation you'd like to use in OpenLP. - + Translation: Translation: @@ -2625,192 +2700,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Songs - + First Time Wizard First Time Wizard - + Welcome to the First Time Wizard Welcome to the First Time Wizard - + Activate required Plugins Activate required Plugins - + Select the Plugins you wish to use. Select the Plugins you wish to use. - + Bible Bible - + Images Images - + Presentations Presentations - + Media (Audio and Video) Media (Audio and Video) - + Allow remote access Allow remote access - + Monitor Song Usage Monitor Song Usage - + Allow Alerts Allow Alerts - + Default Settings Default Settings - + Downloading %s... Downloading %s... - + Download complete. Click the finish button to start OpenLP. Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... Enabling selected plugins... - + No Internet Connection No Internet Connection - + Unable to detect an Internet connection. Unable to detect an Internet connection. - + Sample Songs Sample Songs - + Select and download public domain songs. Select and download public domain songs. - + Sample Bibles Sample Bibles - + Select and download free Bibles. Select and download free Bibles. - + Sample Themes Sample Themes - + Select and download sample themes. Select and download sample themes. - + Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. - + Default output display: Default output display: - + Select default theme: Select default theme: - + Starting configuration process... Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. Please wait while OpenLP is set up and your data is downloaded. - + Setting Up Setting Up - + Click the finish button to start OpenLP. Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. Click the finish button to return to OpenLP. - + Custom Slides Custom Slides - + Finish Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2819,7 +2894,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2831,37 +2906,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Configure Formatting Tags - + Edit Selection Edit Selection - + Save Save - + Description Description - + Tag Tag - + Start HTML Start HTML - + End HTML End HTML @@ -2869,32 +2944,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Error - + Tag "n" already defined. Tag "n" already defined. - + New Tag New Tag - + <HTML here> <HTML here> - + </and here> </and here> - + Tag %s already defined. Tag %s already defined. @@ -2902,82 +2977,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Red - + Black Black - + Blue Blue - + Yellow Yellow - + Green Green - + Pink Pink - + Orange Orange - + Purple Purple - + White White - + Superscript Superscript - + Subscript Subscript - + Paragraph Paragraph - + Bold Bold - + Italics Italics - + Underline Underline - + Break Break @@ -2985,122 +3060,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General General - + Monitors Monitors - + Select monitor for output display: Select monitor for output display: - + Display if a single screen Display if a single screen - + Application Startup Application Startup - + Show blank screen warning Show blank screen warning - + Automatically open the last service Automatically open the last service - + Show the splash screen Show the splash screen - + Application Settings Application Settings - + Prompt to save before starting a new service Prompt to save before starting a new service - + Automatically preview next item in service Automatically preview next item in service - + sec sec - + CCLI Details CCLI Details - + SongSelect username: SongSelect username: - + SongSelect password: SongSelect password: - + X X - + Y Y - + Height Height - + Width Width - + Check for updates to OpenLP Check for updates to OpenLP - + Unblank display when adding new live item Unblank display when adding new live item - + Timed slide interval: Timed slide interval: - + Background Audio Background Audio - + Start background audio paused Start background audio paused @@ -3110,12 +3185,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: Override display position: - + Repeat track list Repeat track list @@ -3143,12 +3218,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language Language - + Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. @@ -3156,7 +3231,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -3164,287 +3239,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &File - + &Import &Import - + &Export &Export - + &View &View - + M&ode M&ode - + &Tools &Tools - + &Settings &Settings - + &Language &Language - + &Help &Help - + Media Manager Media Manager - + Service Manager Service Manager - + Theme Manager Theme Manager - + &New &New - + &Open &Open - + Open an existing service. Open an existing service. - + &Save &Save - + Save the current service to disk. Save the current service to disk. - + Save &As... Save &As... - + Save Service As Save Service As - + Save the current service under a new name. Save the current service under a new name. - + E&xit E&xit - + Quit OpenLP Quit OpenLP - + &Theme &Theme - + &Configure OpenLP... &Configure OpenLP... - + &Media Manager &Media Manager - + Toggle Media Manager Toggle Media Manager - + Toggle the visibility of the media manager. Toggle the visibility of the media manager. - + &Theme Manager &Theme Manager - + Toggle Theme Manager Toggle Theme Manager - + Toggle the visibility of the theme manager. Toggle the visibility of the theme manager. - + &Service Manager &Service Manager - + Toggle Service Manager Toggle Service Manager - + Toggle the visibility of the service manager. Toggle the visibility of the service manager. - + &Preview Panel &Preview Panel - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. - + &Live Panel &Live Panel - + Toggle Live Panel Toggle Live Panel - + Toggle the visibility of the live panel. Toggle the visibility of the live panel. - + &Plugin List &Plugin List - + List the Plugins List the Plugins - + &User Guide &User Guide - + &About &About - + More information about OpenLP More information about OpenLP - + &Online Help &Online Help - + &Web Site &Web Site - + Use the system language, if available. Use the system language, if available. - + Set the interface language to %s Set the interface language to %s - + Add &Tool... Add &Tool... - + Add an application to the list of tools. Add an application to the list of tools. - + &Default &Default - + Set the view mode back to the default. Set the view mode back to the default. - + &Setup &Setup - + Set the view mode to Setup. Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3452,108 +3527,108 @@ You can download the latest version from http://openlp.org/. You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP Version Updated - + OpenLP Main Display Blanked OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Default Theme: %s Default Theme: %s - + English Please add the name of your language here English (United Kingdom) - + Configure &Shortcuts... Configure &Shortcuts... - + Close OpenLP Close OpenLP - + Are you sure you want to close OpenLP? Are you sure you want to close OpenLP? - + Open &Data Folder... Open &Data Folder... - + Open the folder where songs, bibles and other data resides. Open the folder where songs, Bibles and other data resides. - + &Autodetect &Autodetect - + Update Theme Images Update Theme Images - + Update the preview images for all themes. Update the preview images for all themes. - + Print the current service. Print the current service. - + &Recent Files &Recent Files - + L&ock Panels L&ock Panels - + Prevent the panels being moved. Prevent the panels being moved. - + Re-run First Time Wizard Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3562,43 +3637,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files Clear List - + Clear the list of recent files. Clear the list of recent files. - + Configure &Formatting Tags... Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file Export OpenLP settings to a specified *.config file - + Settings Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3611,50 +3686,77 @@ Importing settings will make permanent changes to your current OpenLP configurat Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File Open File - + OpenLP Export Settings Files (*.conf) OpenLP Export Settings Files (*.conf) - + Import settings Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File Export Settings File - + OpenLP Export Settings File (*.conf) OpenLP Export Settings File (*.conf) - + New Data Directory Error New Data Directory Error + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + OpenLP Data directory copy failed + +%s + OpenLP Data directory copy failed + +%s + OpenLP.Manager - + Database Error Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3663,7 +3765,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3675,74 +3777,74 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected No Items Selected - + &Add to selected Service Item &Add to selected Service Item - + You must select one or more items to preview. You must select one or more items to preview. - + You must select one or more items to send live. You must select one or more items to send live. - + You must select one or more items. You must select one or more items. - + You must select an existing service item to add to. You must select an existing service item to add to. - + Invalid Service Item Invalid Service Item - + You must select a %s service item. You must select a %s service item. - + You must select one or more items to add. You must select one or more items to add. - + No Search Results No Search Results - + Invalid File Type Invalid File Type - + Invalid File %s. Suffix not supported Invalid File %s. Suffix not supported - + &Clone &Clone - + Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. @@ -3750,12 +3852,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> tag is missing. - + <verse> tag is missing. <verse> tag is missing. @@ -3763,42 +3865,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Plugin List - + Plugin Details Plugin Details - + Status: Status: - + Active Active - + Inactive Inactive - + %s (Inactive) %s (Inactive) - + %s (Active) %s (Active) - + %s (Disabled) %s (Disabled) @@ -3806,12 +3908,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Fit Page - + Fit Width Fit Width @@ -3819,77 +3921,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options Options - + Copy Copy - + Copy as HTML Copy as HTML - + Zoom In Zoom In - + Zoom Out Zoom Out - + Zoom Original Zoom Original - + Other Options Other Options - + Include slide text if available Include slide text if available - + Include service item notes Include service item notes - + Include play length of media items Include play length of media items - + Add page break before each text item Add page break before each text item - + Service Sheet Service Sheet - + Print Print - + Title: Title: - + Custom Footer Text: Custom Footer Text: @@ -3897,12 +3999,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Screen - + primary primary @@ -3910,12 +4012,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3923,7 +4025,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Reorder Service Item @@ -3931,287 +4033,298 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. File is not a valid service. - + Missing Display Handler Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + &Start Time &Start Time - + Show &Preview Show &Preview - + Modified Service Modified Service - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + Custom Service Notes: Custom Service Notes: - + Notes: Notes: - + Playing time: Playing time: - + Untitled Service Untitled Service - + File could not be opened because it is corrupt. File could not be opened because it is corrupt. - + Empty File Empty File - + This service file does not contain any data. This service file does not contain any data. - + Corrupt File Corrupt File - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. This file is either corrupt or it is not an OpenLP 2.0 service file. - - Service File Missing - Service File Missing - - - + Slide theme Slide theme - + Notes Notes - + Edit Edit - + Service copy only Service copy only - + Error Saving File Error Saving File - + There was an error saving your file. There was an error saving your file. + + + Service File(s) Missing + Service File(s) Missing + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + The following file(s) in the service are missing: +<byte value="x9"/>%s + +These files will be removed if you continue to save. + OpenLP.ServiceNoteForm - + Service Item Notes Service Item Notes @@ -4219,7 +4332,7 @@ The content encoding is not UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configure OpenLP @@ -4227,67 +4340,67 @@ The content encoding is not UTF-8. OpenLP.ShortcutListDialog - + Action Action - + Shortcut Shortcut - + Duplicate Shortcut Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default Default - + Custom Custom - + Capture shortcut. Capture shortcut. - + Restore the default shortcut of this action. Restore the default shortcut of this action. - + Restore Default Shortcuts Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts Configure Shortcuts @@ -4295,172 +4408,172 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Hide Hide - + Go To Go To - + Blank Screen Blank Screen - + Blank to Theme Blank to Theme - + Show Desktop Show Desktop - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item - + Move to previous. Move to previous. - + Move to next. Move to next. - + Play Slides Play Slides - + Delay between slides in seconds. Delay between slides in seconds. - + Move to live. Move to live. - + Add to Service. Add to Service. - + Edit and reload song preview. Edit and reload song preview. - + Start playing media. Start playing media. - + Pause audio. Pause audio. - + Pause playing media. Pause playing media. - + Stop playing media. Stop playing media. - + Video position. Video position. - + Audio Volume. Audio Volume. - + Go to "Verse" Go to "Verse" - + Go to "Chorus" Go to "Chorus" - + Go to "Bridge" Go to "Bridge" - + Go to "Pre-Chorus" Go to "Pre-Chorus" - + Go to "Intro" Go to "Intro" - + Go to "Ending" Go to "Ending" - + Go to "Other" Go to "Other" - + Previous Slide Previous Slide - + Next Slide Next Slide - + Pause Audio Pause Audio - + Background Audio Background Audio - + Go to next audio track. Go to next audio track. - + Tracks Tracks @@ -4468,17 +4581,17 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags - + Language: Language: @@ -4486,615 +4599,627 @@ The content encoding is not UTF-8. OpenLP.StartTimeForm - + Hours: Hours: - + Minutes: Minutes: - + Seconds: Seconds: - + Item Start and Finish Time Item Start and Finish Time - + Start Start - + Finish Finish - + Length Length - + Time Validation Error Time Validation Error - + Finish time is set after the end of the media item Finish time is set after the end of the media item - + Start time is after the finish time of the media item Start time is after the finish time of the media item - + Theme Layout Theme Layout - + The blue box shows the main area. The blue box shows the main area. - + The red box shows the footer. The red box shows the footer. - - OpenLP.ThemeForm - - - Select Image - Select Image - - - - Theme Name Missing - Theme Name Missing - - - - There is no name for this theme. Please enter one. - There is no name for this theme. Please enter one. - - - - Theme Name Invalid - Theme Name Invalid - - - - Invalid theme name. Please enter one. - Invalid theme name. Please enter one. - - - - (approximately %d lines per slide) - (approximately %d lines per slide) - - OpenLP.ThemeManager - + Create a new theme. Create a new theme. - + Edit Theme Edit Theme - + Edit a theme. Edit a theme. - + Delete Theme Delete Theme - + Delete a theme. Delete a theme. - + Import Theme Import Theme - + Import a theme. Import a theme. - + Export Theme Export Theme - + Export a theme. Export a theme. - + &Edit Theme &Edit Theme - + &Delete Theme &Delete Theme - + Set As &Global Default Set As &Global Default - + %s (default) %s (default) - + You must select a theme to edit. You must select a theme to edit. - + You are unable to delete the default theme. You are unable to delete the default theme. - + Theme %s is used in the %s plugin. Theme %s is used in the %s plugin. - + You have not selected a theme. You have not selected a theme. - + Save Theme - (%s) Save Theme - (%s) - + Theme Exported Theme Exported - + Your theme has been successfully exported. Your theme has been successfully exported. - + Theme Export Failed Theme Export Failed - + Your theme could not be exported due to an error. Your theme could not be exported due to an error. - + Select Theme Import File Select Theme Import File - + File is not a valid theme. File is not a valid theme. - + &Copy Theme &Copy Theme - + &Rename Theme &Rename Theme - + &Export Theme &Export Theme - + You must select a theme to rename. You must select a theme to rename. - + Rename Confirmation Rename Confirmation - + Rename %s theme? Rename %s theme? - + You must select a theme to delete. You must select a theme to delete. - + Delete Confirmation Delete Confirmation - + Delete %s theme? Delete %s theme? - + Validation Error Validation Error - + A theme with this name already exists. A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> Copy of %s - + Theme Already Exists Theme Already Exists + + + Theme %s already exists. Do you want to replace it? + Theme %s already exists. Do you want to replace it? + OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Colour - + Gradient Gradient - + Color: Colour: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Centre - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + Theme name: Theme name: - + Edit Theme - %s Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: Transitions: - + &Footer Area &Footer Area - + Starting color: Starting color: - + Ending color: Ending color: - + Background color: Background color: - + Justify Justify - + Layout Preview Layout Preview - + Transparent Transparent - + Preview and Save Preview and Save - + Preview the theme and save it. Preview the theme and save it. + + + (approximately %d lines per slide) + (approximately %d lines per slide) + + + + Background Image Empty + Background Image Empty + + + + You have not selected a background image. Please select one before continuing. + You have not selected a background image. Please select one before continuing. + + + + Select Image + Select Image + + + + Theme Name Missing + Theme Name Missing + + + + There is no name for this theme. Please enter one. + There is no name for this theme. Please enter one. + + + + Theme Name Invalid + Theme Name Invalid + + + + Invalid theme name. Please enter one. + Invalid theme name. Please enter one. + OpenLP.ThemesTab - + Global Theme Global Theme - + Theme Level Theme Level - + S&ong Level S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. Use the global theme, overriding any themes associated with either the service or the songs. - + Themes Themes @@ -5102,315 +5227,315 @@ The content encoding is not UTF-8. OpenLP.Ui - + Error Error - + About About - + &Add &Add - + Advanced Advanced - + All Files All Files - + Bottom Bottom - + Browse... Browse... - + Cancel Cancel - + CCLI number: CCLI number: - + Create a new service. Create a new service. - + &Delete &Delete - + &Edit &Edit - + Empty Field Empty Field - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Image - + Import Import - + Live Live - + Live Background Error Live Background Error - + Load Load - + Middle Middle - + New New - + New Service New Service - + New Theme New Theme - + No File Selected Singular No File Selected - + No Files Selected Plural No Files Selected - + No Item Selected Singular No Item Selected - + No Items Selected Plural No Items Selected - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Preview - + Replace Background Replace Background - + Reset Background Reset Background - + s The abbreviated unit for seconds s - + Save && Preview Save && Preview - + Search Search - + You must select an item to delete. You must select an item to delete. - + You must select an item to edit. You must select an item to edit. - + Save Service Save Service - + Service Service - + Start %s Start %s - + Theme Singular Theme - + Themes Plural Themes - + Top Top - + Version Version - + Delete the selected item. Delete the selected item. - + Move selection up one position. Move selection up one position. - + Move selection down one position. Move selection down one position. - + &Vertical Align: &Vertical Align: - + Finished import. Finished import. - + Format: Format: - + Importing Importing - + Importing "%s"... Importing "%s"... - + Select Import Source Select Import Source - + Select the import format and the location to import from. Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File Open %s File - + %p% %p% - + Ready. Ready. - + Starting import... Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong You need to specify at least one %s file to import from. @@ -5421,299 +5546,304 @@ The content encoding is not UTF-8. Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard Welcome to the Song Import Wizard - + Author Singular Author - + Authors Plural Authors - - © + + © Copyright symbol. © - + Song Book Singular Song Book - + Song Books Plural Song Books - + Song Maintenance Song Maintenance - + Topic Singular Topic - + Topics Plural Topics - + Continuous Continuous - + Default Default - + Display style: Display style: - + Duplicate Error Duplicate Error - + File File - + Help Help - + h The abbreviated unit for hours h - + Layout style: Layout style: - + Live Toolbar Live Toolbar - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP is already running. Do you wish to continue? - + Settings Settings - + Tools Tools - + Unsupported File Unsupported File - + Verse Per Slide Verse Per Slide - + Verse Per Line Verse Per Line - + View View - + Title and/or verses not found Title and/or verses not found - + XML syntax error XML syntax error - + View Mode View Mode - + Open service. Open service. - + Print Service Print Service - + Replace live background. Replace live background. - + Reset live background. Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard Welcome to the Bible Upgrade Wizard - + Confirm Delete Confirm Delete - + Play Slides in Loop Play Slides in Loop - + Play Slides to End Play Slides to End - + Stop Play Slides in Loop Stop Play Slides in Loop - + Stop Play Slides to End Stop Play Slides to End - + Next Track Next Track - + Search Themes... Search bar place holder text Search Themes... - + Optional &Split Optional &Split - + Invalid Folder Selected Singular Invalid Folder Selected - + Invalid File Selected Singular Invalid File Selected - + Invalid Files Selected Plural Invalid Files Selected - + No Folder Selected Singular No Folder Selected - + Open %s Folder Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong You need to specify one %s file to import from. - + You need to specify one %s folder to import from. A song format e.g. PowerSong You need to specify one %s folder to import from. + + + Importing Songs + Importing Songs + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 and %2 - + %1, and %2 Locale list separator: end %1, and %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5722,50 +5852,50 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular Presentation - + Presentations name plural Presentations - + Presentations container title Presentations - + Load a new presentation. Load a new presentation. - + Delete the selected presentation. Delete the selected presentation. - + Preview the selected presentation. Preview the selected presentation. - + Send the selected presentation live. Send the selected presentation live. - + Add the selected presentation to the service. Add the selected presentation to the service. @@ -5773,52 +5903,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The presentation %s is incomplete, please reload. The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. The presentation %s no longer exists. @@ -5826,17 +5956,17 @@ The content encoding is not UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Available Controllers - + %s (unavailable) %s (unavailable) - + Allow presentation application to be overridden Allow presentation application to be overridden @@ -5844,24 +5974,24 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular Remote - + Remotes name plural Remotes - + Remote container title Remote @@ -5870,236 +6000,246 @@ The content encoding is not UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remote - + OpenLP 2.0 Stage View OpenLP 2.0 Stage View - + Service Manager Service Manager - + Slide Controller Slide Controller - + Alerts Alerts - + Search Search - + Refresh Refresh - + Blank Blank - + Show Show - + Prev Prev - + Next Next - + Text Text - + Show Alert Show Alert - + Go Live Go Live - + No Results No Results - + Options Options - + Add to Service Add to Service - + Home Home - + Theme Theme - + Desktop Desktop - + Add &amp; Go to Service Add &amp; Go to Service + + + Service + Service + + + + Slides + Slides + RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings - + Remote URL: Remote URL: - + Stage view URL: Stage view URL: - + Display stage time in 12h format Display stage time in 12h format - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. SongUsagePlugin - + &Song Usage Tracking &Song Usage Tracking - + &Delete Tracking Data &Delete Tracking Data - + Delete song usage data up to a specified date. Delete song usage data up to a specified date. - + &Extract Tracking Data &Extract Tracking Data - + Generate a report on song usage. Generate a report on song usage. - + Toggle Tracking Toggle Tracking - + Toggle the tracking of song usage. Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular SongUsage - + SongUsage name plural SongUsage - + SongUsage container title SongUsage - + Song Usage Song Usage - + Song usage tracking is active. Song usage tracking is active. - + Song usage tracking is inactive. Song usage tracking is inactive. - + display display - + printed printed @@ -6107,32 +6247,32 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Delete Song Usage Data - + Delete Selected Song Usage Events? Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? Are you sure you want to delete selected Song Usage data? - + Deletion Successful Deletion Successful - + All requested data has been deleted successfully. All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -6140,42 +6280,42 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Song Usage Extraction - + Select Date Range Select Date Range - + to to - + Report Location Report Location - + Output File Location Output File Location - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation Report Creation - + Report %s has been successfully created. @@ -6184,12 +6324,12 @@ has been successfully created. has been successfully created. - + Output Path Not Selected Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. You have not set a valid output location for your song usage report. Please select an existing path on your computer. @@ -6197,112 +6337,112 @@ has been successfully created. SongsPlugin - + &Song &Song - + Import songs using the import wizard. Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + &Re-index Songs &Re-index Songs - + Re-index the songs database to improve searching and ordering. Re-index the songs database to improve searching and ordering. - + Reindexing songs... Reindexing songs... - + Arabic (CP-1256) Arabic (CP-1256) - + Baltic (CP-1257) Baltic (CP-1257) - + Central European (CP-1250) Central European (CP-1250) - + Cyrillic (CP-1251) Cyrillic (CP-1251) - + Greek (CP-1253) Greek (CP-1253) - + Hebrew (CP-1255) Hebrew (CP-1255) - + Japanese (CP-932) Japanese (CP-932) - + Korean (CP-949) Korean (CP-949) - + Simplified Chinese (CP-936) Simplified Chinese (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Traditional Chinese (CP-950) - + Turkish (CP-1254) Turkish (CP-1254) - + Vietnam (CP-1258) Vietnam (CP-1258) - + Western European (CP-1252) Western European (CP-1252) - + Character Encoding Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6311,100 +6451,105 @@ for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular Song - + Songs name plural Songs - + Songs container title Songs - + Exports songs using the export wizard. Exports songs using the export wizard. - + Add a new song. Add a new song. - + Edit the selected song. Edit the selected song. - + Delete the selected song. Delete the selected song. - + Preview the selected song. Preview the selected song. - + Send the selected song live. Send the selected song live. - + Add the selected song to the service. Add the selected song to the service. + + + Reindexing songs + Reindexing songs + SongsPlugin.AuthorsForm - + Author Maintenance Author Maintenance - + Display name: Display name: - + First name: First name: - + Last name: Last name: - + You need to type in the first name of the author. You need to type in the first name of the author. - + You need to type in the last name of the author. You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? You have not set a display name for the author, combine the first and last names? @@ -6412,7 +6557,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. The file does not have a valid extension. @@ -6420,12 +6565,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6437,12 +6582,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Custom Book Names @@ -6450,207 +6595,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor Song Editor - + &Title: &Title: - + Alt&ernate title: Alt&ernate title: - + &Lyrics: &Lyrics: - + &Verse order: &Verse order: - + Ed&it All Ed&it All - + Title && Lyrics Title && Lyrics - + &Add to Song &Add to Song - + &Remove &Remove - + &Manage Authors, Topics, Song Books &Manage Authors, Topics, Song Books - + A&dd to Song A&dd to Song - + R&emove R&emove - + Book: Book: - + Number: Number: - + Authors, Topics && Song Book Authors, Topics && Song Book - + New &Theme New &Theme - + Copyright Information Copyright Information - + Comments Comments - + Theme, Copyright Info && Comments Theme, Copyright Info && Comments - + Add Author Add Author - + This author does not exist, do you want to add them? This author does not exist, do you want to add them? - + This author is already in the list. This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic Add Topic - + This topic does not exist, do you want to add it? This topic does not exist, do you want to add it? - + This topic is already in the list. This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. You need to type in a song title. - + You need to type in at least one verse. You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book Add Book - + This song book does not exist, do you want to add it? This song book does not exist, do you want to add it? - + You need to have an author for this song. You need to have an author for this song. - - You need to type some text in to the verse. - You need to type some text in to the verse. - - - + Linked Audio Linked Audio - + Add &File(s) Add &File(s) - + Add &Media Add &Media - + Remove &All Remove &All - + Open File(s) Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. @@ -6658,22 +6798,22 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: &Verse type: - + &Insert &Insert - + Split a slide into two by inserting a verse splitter. Split a slide into two by inserting a verse splitter. @@ -6681,82 +6821,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.ExportWizardForm - + Song Export Wizard Song Export Wizard - + Select Songs Select Songs - + Check the songs you want to export. Check the songs you want to export. - + Uncheck All Uncheck All - + Check All Check All - + Select Directory Select Directory - + Directory: Directory: - + Exporting Exporting - + Please wait while your songs are exported. Please wait while your songs are exported. - + You need to add at least one Song to export. You need to add at least one Song to export. - + No Save Location specified No Save Location specified - + Starting export... Starting export... - + You need to specify a directory. You need to specify a directory. - + Select Destination Folder Select Destination Folder - + Select the directory where you want the songs to be saved. Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. @@ -6764,172 +6904,172 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files - + Song Import Wizard Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation Generic Document/Presentation - + Add Files... Add Files... - + Remove File(s) Remove File(s) - + Please wait while your songs are imported. Please wait while your songs are imported. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + Foilpresenter Song Files Foilpresenter Song Files - + Copy Copy - + Save to File Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files OpenLyrics Files - + CCLI SongSelect Files CCLI SongSelect Files - + EasySlides XML File EasySlides XML File - + EasyWorship Song Database EasyWorship Song Database - + DreamBeam Song Files DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files SundayPlus Song Files - + This importer has been disabled. This importer has been disabled. - + MediaShout Database MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files SongPro Text Files - + SongPro (Export File) SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu In SongPro, export your songs using the File -> Export menu @@ -6937,12 +7077,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaFilesForm - + Select Media File(s) Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. Select one or more audio files from the list below, and click OK to import them into this song. @@ -6950,63 +7090,66 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - + Titles Titles - + Lyrics Lyrics - + CCLI License: - CCLI License: + CCLI Licence: - + Entire Song Entire Song - + Are you sure you want to delete the %n selected song(s)? - Are you sure you want to delete the %n selected song?Are you sure you want to delete the %n selected songs? + + Are you sure you want to delete the %n selected song? + Are you sure you want to delete the %n selected songs? + - + Maintain the lists of authors, topics and books. Maintain the lists of authors, topics and books. - + copy For song cloning copy - + Search Titles... Search Titles... - + Search Entire Song... Search Entire Song... - + Search Lyrics... Search Lyrics... - + Search Authors... Search Authors... - + Search Song Books... Search Song Books... @@ -7014,7 +7157,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Unable to open the MediaShout database. @@ -7022,7 +7165,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Not a valid openlp.org 1.x song database. @@ -7030,7 +7173,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Not a valid OpenLP 2.0 song database. @@ -7038,7 +7181,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -7046,35 +7189,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. No songs to import. - + Verses not found. Missing "PART" header. Verses not found. Missing "PART" header. + + + No %s files found. + No %s files found. + + + + Invalid %s file. Unexpected byte value. + Invalid %s file. Unexpected byte value. + + + + Invalid %s file. Missing "TITLE" header. + Invalid %s file. Missing "TITLE" header. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Invalid %s file. Missing "COPYRIGHTLINE" header. + SongsPlugin.SongBookForm - + Song Book Maintenance Song Book Maintenance - + &Name: &Name: - + &Publisher: &Publisher: - + You need to type in a name for the book. You need to type in a name for the book. @@ -7082,12 +7245,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongExportForm - + Your song export failed. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. @@ -7095,27 +7258,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice Cannot access OpenOffice or LibreOffice - + Unable to open file Unable to open file - + File not found File not found @@ -7123,107 +7286,107 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Could not add your author. - + This author already exists. This author already exists. - + Could not add your topic. Could not add your topic. - + This topic already exists. This topic already exists. - + Could not add your book. Could not add your book. - + This book already exists. This book already exists. - + Could not save your changes. Could not save your changes. - + Could not save your modified author, because the author already exists. Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. Could not save your modified topic, because it already exists. - + Delete Author Delete Author - + Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic Delete Topic - + Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book Delete Book - + Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? @@ -7231,27 +7394,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongsTab - + Songs Mode Songs Mode - + Enable search as you type Enable search as you type - + Display verses on live tool bar Display verses on live tool bar - + Update service from song edit Update service from song edit - + Import missing songs from service files Import missing songs from service files @@ -7259,17 +7422,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance Topic Maintenance - + Topic name: Topic name: - + You need to type in a topic name. You need to type in a topic name. @@ -7277,37 +7440,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse Verse - + Chorus Chorus - + Bridge Bridge - + Pre-Chorus Pre-Chorus - + Intro Intro - + Ending Ending - + Other Other @@ -7315,14 +7478,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Error reading CSV file. - + File not valid ZionWorx CSV format. File not valid ZionWorx CSV format. + + + Line %d: %s + Line %d: %s + + + + Decoding error: %s + Decoding error: %s + + + + Record %d + Record %d + - \ No newline at end of file + diff --git a/resources/i18n/en_ZA.ts b/resources/i18n/en_ZA.ts index 6f9b5976b..917835fb6 100644 --- a/resources/i18n/en_ZA.ts +++ b/resources/i18n/en_ZA.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Alert - + Show an alert message. Show an alert message. - + Alert name singular Alert - + Alerts name plural Alerts - + Alerts container title Alerts - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Alert Message - + Alert &text: Alert &text: - + &New &New - + &Save &Save - + Displ&ay Displ&ay - + Display && Cl&ose Display && Cl&ose - + New Alert New Alert - + You haven't specified any text for your alert. Please type in some text before clicking New. You haven't specified any text for your alert. Please type in some text before clicking New. - + &Parameter: &Parameter: - + No Parameter Found No Parameter Found - + You have not entered a parameter to be replaced. Do you want to continue anyway? You have not entered a parameter to be replaced. Do you want to continue anyway? - + No Placeholder Found No Placeholder Found - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? The alert text does not contain '<>'. Do you want to continue anyway? @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Font - + Font name: Font name: - + Font color: Font color: - + Background color: Background color: - + Font size: Font size: - + Alert timeout: Alert timeout: @@ -151,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Bible - + Bible name singular Bible - + Bibles name plural Bibles - + Bibles container title Bibles - + No Book Found No Book Found - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - + Import a Bible. Import a Bible. - + Add a new Bible. Add a new Bible. - + Edit the selected Bible. Edit the selected Bible. - + Delete the selected Bible. Delete the selected Bible. - + Preview the selected Bible. Preview the selected Bible. - + Send the selected Bible live. Send the selected Bible live. - + Add the selected Bible to the service. Add the selected Bible to the service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + &Upgrade older Bibles &Upgrade older Bibles - + Upgrade the Bible databases to the latest format. Upgrade the Bible databases to the latest format. - + Genesis Genesis - + Exodus Exodus - + Leviticus Leviticus - + Numbers Numbers - + Deuteronomy Deuteronomy - + Joshua Joshua - + Judges Judges - + Ruth Ruth - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Kings - + 2 Kings 2 Kings - + 1 Chronicles 1 Chronicles - + 2 Chronicles 2 Chronicles - + Ezra Ezra - + Nehemiah Nehemiah - + Esther Esther - + Job Job - + Psalms Psalms - + Proverbs Proverbs - + Ecclesiastes Ecclesiastes - + Song of Solomon Song of Solomon - + Isaiah Isaiah - + Jeremiah Jeremiah - + Lamentations Lamentations - + Ezekiel Ezekiel - + Daniel Daniel - + Hosea Hosea - + Joel Joel - + Amos Amos - + Obadiah Obadiah - + Jonah Jonah - + Micah Micah - + Nahum Nahum - + Habakkuk Habakkuk - + Zephaniah Zephaniah - + Haggai Haggai - + Zechariah Zechariah - + Malachi Malachi - + Matthew Matthew - + Mark Mark - + Luke Luke - + John John - + Acts Acts - + Romans Romans - + 1 Corinthians 1 Corinthians - + 2 Corinthians 2 Corinthians - + Galatians Galatians - + Ephesians Ephesians - + Philippians Philippians - + Colossians Colossians - + 1 Thessalonians 1 Thessalonians - + 2 Thessalonians 2 Thessalonians - + 1 Timothy 1 Timothy - + 2 Timothy 2 Timothy - + Titus Titus - + Philemon Philemon - + Hebrews Hebrews - + James James - + 1 Peter 1 Peter - + 2 Peter 2 Peter - + 1 John 1 John - + 2 John 2 John - + 3 John 3 John - + Jude Jude - + Revelation Revelation - + Judith Judith - + Wisdom Wisdom - + Tobit Tobit - + Sirach Sirach - + Baruch Baruch - + 1 Maccabees 1 Maccabees - + 2 Maccabees 2 Maccabees - + 3 Maccabees 3 Maccabees - + 4 Maccabees 4 Maccabees - + Rest of Daniel Rest of Daniel - + Rest of Esther Rest of Esther - + Prayer of Manasses Prayer of Manasses - + Letter of Jeremiah Letter of Jeremiah - + Prayer of Azariah Prayer of Azariah - + Susanna Susanna - + Bel Bel - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verse|verses;;-|to;;,|and;;end @@ -663,84 +664,86 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + You need to specify a version name for your Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Bible Exists - + Bible Exists - + This Bible already exists. Please import a different Bible or first delete the existing one. - + This Bible already exists. Please import a different Bible or first delete the existing one. - + You need to specify a book name for "%s". - + You need to specify a book name for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + The book name "%s" is not correct. +Numbers can only be used at the beginning and must +be followed by one or more non-numeric characters. - + Duplicate Book Name - + Duplicate Book Name - + The Book Name "%s" has been entered more than once. - + The Book Name "%s" has been entered more than once. BiblesPlugin.BibleManager - + Scripture Reference Error Scripture Reference Error - + Web Bible cannot be used Web Bible cannot be used - + Text Search is not available with Web Bibles. Text Search is not available with Web Bibles. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + No Bibles Available No Bibles Available - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -763,79 +766,79 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Verse Display - + Only show new chapter numbers Only show new chapter numbers - + Bible theme: Bible theme: - + No Brackets No Brackets - + ( And ) ( And ) - + { And } { And } - + [ And ] [ And ] - + Note: Changes do not affect verses already in the service. Note: Changes do not affect verses already in the service. - + Display second Bible verses Display second Bible verses - + Custom Scripture References Custom Scripture References - + Verse Separator: Verse Separator: - + Range Separator: Range Separator: - + List Separator: List Separator: - + End Mark: End Mark: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -844,7 +847,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -853,7 +856,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -862,7 +865,7 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -871,79 +874,80 @@ They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + English English - + Default Bible Language - + Default Bible Language - + Book name language in search field, search results and on display: - + Book name language in search field, +search results and on display: - + Bible Language - + Bible Language - + Application Language - + Application Language BiblesPlugin.BookNameDialog - + Select Book Name Select Book Name - + Current name: Current name: - + Corresponding name: Corresponding name: - + Show Books From Show Books From - + Old Testament Old Testament - + New Testament New Testament - + Apocrypha Apocrypha - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + The following book name cannot be matched up internally. Please select the corresponding name from the list. BiblesPlugin.BookNameForm - + You need to select a book. You need to select a book. @@ -951,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Importing books... %s - + Importing verses from %s... Importing verses from <book name>... Importing verses from %s... - + Importing verses... done. Importing verses... done. @@ -970,107 +974,108 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + Bible Editor - + License Details - + License Details - + Version name: - + Version name: - + Copyright: - + Copyright: - + Permissions: - + Permissions: - + Default Bible Language - + Default Bible Language - + Book name language in search field, search results and on display: - + Book name language in search field, search results and on display: - + Global Settings - + Global Settings - + Bible Language - + Bible Language - + Application Language - + Application Language - + English - + English - + This is a Web Download Bible. It is not possible to customize the Book Names. - + This is a Web Download Bible. +It is not possible to customise the Book Names. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + To use the customised book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registering Bible and loading books... - + Registering Language... Registering Language... - + Importing %s... Importing <book name>... Importing %s... - + Download Error Download Error - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Parse Error Parse Error - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. @@ -1248,17 +1253,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Select Language - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + Language: Language: @@ -1266,7 +1271,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. You need to choose a language. @@ -1274,110 +1279,112 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Quick - + Find: Find: - + Book: Book: - + Chapter: Chapter: - + Verse: Verse: - + From: From: - + To: To: - + Text Search Text Search - + Second: Second: - + Scripture Reference Scripture Reference - + Toggle to keep or clear the previous results. Toggle to keep or clear the previous results. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Bible not fully loaded. Bible not fully loaded. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Search Scripture Reference... - + Search Scripture Reference... - + Search Text... - + Search Text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Are you sure you want to completely delete "%s" Bible from OpenLP? + +You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1386,12 +1393,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detecting encoding (this may take a few minutes)... - + Importing %s %s... Importing <book name> <chapter>... Importing %s %s... @@ -1400,149 +1407,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Select a Backup Directory - + Bible Upgrade Wizard Bible Upgrade Wizard - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Select Backup Directory Select Backup Directory - + Please select a backup directory for your Bibles Please select a backup directory for your Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. Please select a backup location for your Bibles. - + Backup Directory: Backup Directory: - + There is no need to backup my Bibles There is no need to backup my Bibles - + Select Bibles Select Bibles - + Please select the Bibles to upgrade Please select the Bibles to upgrade - + Upgrading Upgrading - + Please wait while your Bibles are upgraded. Please wait while your Bibles are upgraded. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Upgrading Bible %s of %s: "%s" Failed Upgrading Bible %s of %s: "%s" Failed - + Upgrading Bible %s of %s: "%s" Upgrading ... Upgrading Bible %s of %s: "%s" Upgrading ... - + Download Error Download Error - + To upgrade your Web Bibles an Internet connection is required. To upgrade your Web Bibles an Internet connection is required. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Upgrading Bible %s of %s: "%s" Complete Upgrading Bible %s of %s: "%s" Complete - + , %s failed , %s failed - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Upgrading Bible(s): %s successful%s Upgrading Bible(s): %s successful%s - + Upgrade failed. Upgrade failed. - + You need to specify a backup directory for your Bibles. You need to specify a backup directory for your Bibles. - + Starting upgrade... Starting upgrade... - + There are no Bibles that need to be upgraded. There are no Bibles that need to be upgraded. @@ -1550,65 +1557,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + Custom Slide name singular Custom Slide - + Custom Slides name plural Custom Slides - + Custom Slides container title Custom Slides - + Load a new custom slide. Load a new custom slide. - + Import a custom slide. Import a custom slide. - + Add a new custom slide. Add a new custom slide. - + Edit the selected custom slide. Edit the selected custom slide. - + Delete the selected custom slide. Delete the selected custom slide. - + Preview the selected custom slide. Preview the selected custom slide. - + Send the selected custom slide live. Send the selected custom slide live. - + Add the selected custom slide to the service. Add the selected custom slide to the service. @@ -1616,12 +1623,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Custom Display - + Display footer Display footer @@ -1629,62 +1636,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Edit Custom Slides - + &Title: &Title: - + Add a new slide at bottom. Add a new slide at bottom. - + Edit the selected slide. Edit the selected slide. - + Edit all the slides at once. Edit all the slides at once. - + Split a slide into two by inserting a slide splitter. Split a slide into two by inserting a slide splitter. - + The&me: The&me: - + &Credits: &Credits: - + You need to type in a title. You need to type in a title. - + You need to add at least one slide You need to add at least one slide - + Ed&it All Ed&it All - + Insert Slide Insert Slide @@ -1692,76 +1699,79 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide - + Edit Slide CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Are you sure you want to delete the selected custom slide?Are you sure you want to delete the %n selected custom slides? + + Are you sure you want to delete the selected custom slide? + Are you sure you want to delete the %n selected custom slides? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - + Image name singular Image - + Images name plural Images - + Images container title Images - + Load a new image. Load a new image. - + Add a new image. Add a new image. - + Edit the selected image. Edit the selected image. - + Delete the selected image. Delete the selected image. - + Preview the selected image. Preview the selected image. - + Send the selected image live. Send the selected image live. - + Add the selected image to the service. Add the selected image to the service. @@ -1769,7 +1779,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Select Attachment @@ -1777,44 +1787,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Select Image(s) - + You must select an image to delete. You must select an image to delete. - + You must select an image to replace the background with. You must select an image to replace the background with. - + Missing Image(s) Missing Image(s) - + The following image(s) no longer exist: %s The following image(s) no longer exist: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? The following image(s) no longer exist: %s Do you want to add the other images anyway? - + There was a problem replacing your background, the image file "%s" no longer exists. There was a problem replacing your background, the image file "%s" no longer exists. - + There was no display item to amend. There was no display item to amend. @@ -1822,78 +1832,78 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Background Colour - + Default Color: Default Colour: - + Visible background for images with aspect ratio different to screen. - + Visible background for images with aspect ratio different to screen. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Load new media. - + Add new media. Add new media. - + Edit the selected media. Edit the selected media. - + Delete the selected media. Delete the selected media. - + Preview the selected media. Preview the selected media. - + Send the selected media live. Send the selected media live. - + Add the selected media to the service. Add the selected media to the service. @@ -1901,57 +1911,57 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media Select Media - + You must select a media file to delete. You must select a media file to delete. - + You must select a media file to replace the background with. You must select a media file to replace the background with. - + There was a problem replacing your background, the media file "%s" no longer exists. There was a problem replacing your background, the media file "%s" no longer exists. - + Missing Media File Missing Media File - + The file %s no longer exists. The file %s no longer exists. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. There was no display item to amend. - + Unsupported File Unsupported File - + Automatic Automatic - + Use Player: Use Player: @@ -1959,22 +1969,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players Available Media Players - + %s (unavailable) %s (unavailable) - + Player Order Player Order - + Allow media player to be overridden Allow media player to be overridden @@ -1982,17 +1992,17 @@ Do you want to add the other images anyway? OpenLP - + Image Files Image Files - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2004,37 +2014,61 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Credits - + License License - - Contribute - Contribute - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program 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 below for more details. This program 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 below for more details. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Volunteer + + + Project Lead %s @@ -2053,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2067,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2075,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2114,12 +2158,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2136,13 +2188,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2158,207 +2212,183 @@ Final Credit bring this software to you for free because He has set us free. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings UI Settings - + Number of recent files to display: Number of recent files to display: - + Remember active media manager tab on startup Remember active media manager tab on startup - + Double-click to send items straight to live Double-click to send items straight to live - + Expand new service items on creation Expand new service items on creation - + Enable application exit confirmation Enable application exit confirmation - + Mouse Cursor Mouse Cursor - + Hide mouse cursor when over display window Hide mouse cursor when over display window - + Default Image Default Image - + Background color: Background colour: - + Image file: Image file: - + Open File Open File - + Advanced Advanced - + Preview items when clicked in Media Manager Preview items when clicked in Media Manager - + Click to select a color. Click to select a colour. - + Browse for an image file to display. Browse for an image file to display. - + Revert to the default OpenLP logo. Revert to the default OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M - + Default Service Name Default Service Name - + Enable default service name Enable default service name - + Date and Time: Date and Time: - + Monday Monday - + Tuesday Tuesday - + Wednesday Wednesday - + Thurdsday Thurdsday - + Friday Friday - + Saturday Saturday - + Sunday Sunday - + Now Now - + Time when usual service starts. Time when usual service starts. - + Name: Name: - + Consult the OpenLP manual for usage. Consult the OpenLP manual for usage. - + Revert to the default service name "%s". Revert to the default service name "%s". - + Example: Example: - + X11 X11 @@ -2368,129 +2398,182 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Bypass X11 Window Manager - + Syntax error. Syntax error. - + Data Location - + Data Location - + Current path: - + Current path: - + Custom path: - + Custom path: - + Browse for new data file location. - + Browse for new data file location. - + Set the data location to the default. - + Set the data location to the default. - + Cancel - + Cancel - + Cancel OpenLP data directory location change. - + Cancel OpenLP data directory location change. - + Copy data to new location. - + Copy data to new location. - + Copy the OpenLP data files to the new location. - + Copy the OpenLP data files to the new location. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + Data Directory Error - + Data Directory Error - + Select Data Directory Location - + Select Data Directory Location - + Confirm Data Directory Change - + Confirm Data Directory Change - + Reset Data Directory - + Reset Data Directory - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Are you sure you want to change the location of the OpenLP data directory to the default location? + +This location will be used after OpenLP is closed. - + Overwrite Existing Data - + Overwrite Existing Data + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? OpenLP.ExceptionDialog - + Error Occurred Error Occurred - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Send E-Mail Send E-Mail - + Save to File Save to File - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Attach File Attach File - + Description characters to enter : %s Description characters to enter : %s @@ -2498,24 +2581,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Save Crash Report - + Text files (*.txt *.log *.text) Text files (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2546,7 +2629,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2581,17 +2664,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename File Rename - + New File Name: New File Name: - + File Copy File Copy @@ -2599,17 +2682,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Select Translation - + Choose the translation you'd like to use in OpenLP. Choose the translation you'd like to use in OpenLP. - + Translation: Translation: @@ -2617,239 +2700,243 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Songs - + First Time Wizard First Time Wizard - + Welcome to the First Time Wizard Welcome to the First Time Wizard - + Activate required Plugins Activate required Plugins - + Select the Plugins you wish to use. Select the Plugins you wish to use. - + Bible Bible - + Images Images - + Presentations Presentations - + Media (Audio and Video) Media (Audio and Video) - + Allow remote access Allow remote access - + Monitor Song Usage Monitor Song Usage - + Allow Alerts Allow Alerts - + Default Settings Default Settings - + Downloading %s... Downloading %s... - + Download complete. Click the finish button to start OpenLP. Download complete. Click the finish button to start OpenLP. - + Enabling selected plugins... Enabling selected plugins... - + No Internet Connection No Internet Connection - + Unable to detect an Internet connection. Unable to detect an Internet connection. - + Sample Songs Sample Songs - + Select and download public domain songs. Select and download public domain songs. - + Sample Bibles Sample Bibles - + Select and download free Bibles. Select and download free Bibles. - + Sample Themes Sample Themes - + Select and download sample themes. Select and download sample themes. - + Set up default settings to be used by OpenLP. Set up default settings to be used by OpenLP. - + Default output display: Default output display: - + Select default theme: Select default theme: - + Starting configuration process... Starting configuration process... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Setting Up And Downloading Setting Up And Downloading - + Please wait while OpenLP is set up and your data is downloaded. Please wait while OpenLP is set up and your data is downloaded. - + Setting Up Setting Up - + Click the finish button to start OpenLP. Click the finish button to start OpenLP. - + Download complete. Click the finish button to return to OpenLP. Download complete. Click the finish button to return to OpenLP. - + Click the finish button to return to OpenLP. Click the finish button to return to OpenLP. - + Custom Slides Custom Slides - + Finish Finish - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. + +To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. OpenLP.FormattingTagDialog - + Configure Formatting Tags Configure Formatting Tags - + Edit Selection Edit Selection - + Save Save - + Description Description - + Tag Tag - + Start HTML Start HTML - + End HTML End HTML @@ -2857,32 +2944,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Error - + Tag "n" already defined. Tag "n" already defined. - + New Tag New Tag - + <HTML here> <HTML here> - + </and here> </and here> - + Tag %s already defined. Tag %s already defined. @@ -2890,82 +2977,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Red - + Black Black - + Blue Blue - + Yellow Yellow - + Green Green - + Pink Pink - + Orange Orange - + Purple Purple - + White White - + Superscript Superscript - + Subscript Subscript - + Paragraph Paragraph - + Bold Bold - + Italics Italics - + Underline Underline - + Break Break @@ -2973,122 +3060,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General General - + Monitors Monitors - + Select monitor for output display: Select monitor for output display: - + Display if a single screen Display if a single screen - + Application Startup Application Startup - + Show blank screen warning Show blank screen warning - + Automatically open the last service Automatically open the last service - + Show the splash screen Show the splash screen - + Application Settings Application Settings - + Prompt to save before starting a new service Prompt to save before starting a new service - + Automatically preview next item in service Automatically preview next item in service - + sec sec - + CCLI Details CCLI Details - + SongSelect username: SongSelect username: - + SongSelect password: SongSelect password: - + X X - + Y Y - + Height Height - + Width Width - + Check for updates to OpenLP Check for updates to OpenLP - + Unblank display when adding new live item Unblank display when adding new live item - + Timed slide interval: Timed slide interval: - + Background Audio Background Audio - + Start background audio paused Start background audio paused @@ -3098,45 +3185,45 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Service Item Slide Limits - + Override display position: Override display position: - + Repeat track list Repeat track list Behavior of next/previous on the last/first slide: - + Behaviour of next/previous on the last/first slide: &Remain on Slide - + &Remain on Slide &Wrap around - + &Wrap around &Move to next/previous service item - + &Move to next/previous service item OpenLP.LanguageManager - + Language Language - + Please restart OpenLP to use your new language setting. Please restart OpenLP to use your new language setting. @@ -3144,7 +3231,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Display @@ -3152,287 +3239,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &File - + &Import &Import - + &Export &Export - + &View &View - + M&ode M&ode - + &Tools &Tools - + &Settings &Settings - + &Language &Language - + &Help &Help - + Media Manager Media Manager - + Service Manager Service Manager - + Theme Manager Theme Manager - + &New &New - + &Open &Open - + Open an existing service. Open an existing service. - + &Save &Save - + Save the current service to disk. Save the current service to disk. - + Save &As... Save &As... - + Save Service As Save Service As - + Save the current service under a new name. Save the current service under a new name. - + E&xit E&xit - + Quit OpenLP Quit OpenLP - + &Theme &Theme - + &Configure OpenLP... &Configure OpenLP... - + &Media Manager &Media Manager - + Toggle Media Manager Toggle Media Manager - + Toggle the visibility of the media manager. Toggle the visibility of the media manager. - + &Theme Manager &Theme Manager - + Toggle Theme Manager Toggle Theme Manager - + Toggle the visibility of the theme manager. Toggle the visibility of the theme manager. - + &Service Manager &Service Manager - + Toggle Service Manager Toggle Service Manager - + Toggle the visibility of the service manager. Toggle the visibility of the service manager. - + &Preview Panel &Preview Panel - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. - + &Live Panel &Live Panel - + Toggle Live Panel Toggle Live Panel - + Toggle the visibility of the live panel. Toggle the visibility of the live panel. - + &Plugin List &Plugin List - + List the Plugins List the Plugins - + &User Guide &User Guide - + &About &About - + More information about OpenLP More information about OpenLP - + &Online Help &Online Help - + &Web Site &Web Site - + Use the system language, if available. Use the system language, if available. - + Set the interface language to %s Set the interface language to %s - + Add &Tool... Add &Tool... - + Add an application to the list of tools. Add an application to the list of tools. - + &Default &Default - + Set the view mode back to the default. Set the view mode back to the default. - + &Setup &Setup - + Set the view mode to Setup. Set the view mode to Setup. - + &Live &Live - + Set the view mode to Live. Set the view mode to Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3441,108 +3528,108 @@ You can download the latest version from http://openlp.org/. You can download the latest version from http://openlp.org/. - + OpenLP Version Updated OpenLP Version Updated - + OpenLP Main Display Blanked OpenLP Main Display Blanked - + The Main Display has been blanked out The Main Display has been blanked out - + Default Theme: %s Default Theme: %s - + English Please add the name of your language here English (South Africa) - + Configure &Shortcuts... Configure &Shortcuts... - + Close OpenLP Close OpenLP - + Are you sure you want to close OpenLP? Are you sure you want to close OpenLP? - + Open &Data Folder... Open &Data Folder... - + Open the folder where songs, bibles and other data resides. Open the folder where songs, Bibles and other data resides. - + &Autodetect &Autodetect - + Update Theme Images Update Theme Images - + Update the preview images for all themes. Update the preview images for all themes. - + Print the current service. Print the current service. - + &Recent Files &Recent Files - + L&ock Panels L&ock Panels - + Prevent the panels being moved. Prevent the panels being moved. - + Re-run First Time Wizard Re-run First Time Wizard - + Re-run the First Time Wizard, importing songs, Bibles and themes. Re-run the First Time Wizard, importing songs, Bibles and themes. - + Re-run First Time Wizard? Re-run First Time Wizard? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3551,43 +3638,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Clear List Clear List of recent files Clear List - + Clear the list of recent files. Clear the list of recent files. - + Configure &Formatting Tags... Configure &Formatting Tags... - + Export OpenLP settings to a specified *.config file Export OpenLP settings to a specified *.config file - + Settings Settings - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import settings? Import settings? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3600,50 +3687,77 @@ Importing settings will make permanent changes to your current OpenLP configurat Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Open File Open File - + OpenLP Export Settings Files (*.conf) OpenLP Export Settings Files (*.conf) - + Import settings Import settings - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Export Settings File Export Settings File - + OpenLP Export Settings File (*.conf) OpenLP Export Settings File (*.conf) - + New Data Directory Error - + New Data Directory Error + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + + + + OpenLP Data directory copy failed + +%s + OpenLP Data directory copy failed + +%s OpenLP.Manager - + Database Error Database Error - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3652,7 +3766,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3664,74 +3778,74 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected No Items Selected - + &Add to selected Service Item &Add to selected Service Item - + You must select one or more items to preview. You must select one or more items to preview. - + You must select one or more items to send live. You must select one or more items to send live. - + You must select one or more items. You must select one or more items. - + You must select an existing service item to add to. You must select an existing service item to add to. - + Invalid Service Item Invalid Service Item - + You must select a %s service item. You must select a %s service item. - + You must select one or more items to add. You must select one or more items to add. - + No Search Results No Search Results - + Invalid File Type Invalid File Type - + Invalid File %s. Suffix not supported Invalid File %s. Suffix not supported - + &Clone &Clone - + Duplicate files were found on import and were ignored. Duplicate files were found on import and were ignored. @@ -3739,12 +3853,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics> tag is missing. - + <verse> tag is missing. <verse> tag is missing. @@ -3752,42 +3866,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List Plugin List - + Plugin Details Plugin Details - + Status: Status: - + Active Active - + Inactive Inactive - + %s (Inactive) %s (Inactive) - + %s (Active) %s (Active) - + %s (Disabled) %s (Disabled) @@ -3795,12 +3909,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Fit Page - + Fit Width Fit Width @@ -3808,77 +3922,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options Options - + Copy Copy - + Copy as HTML Copy as HTML - + Zoom In Zoom In - + Zoom Out Zoom Out - + Zoom Original Zoom Original - + Other Options Other Options - + Include slide text if available Include slide text if available - + Include service item notes Include service item notes - + Include play length of media items Include play length of media items - + Add page break before each text item Add page break before each text item - + Service Sheet Service Sheet - + Print Print - + Title: Title: - + Custom Footer Text: Custom Footer Text: @@ -3886,12 +4000,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Screen - + primary primary @@ -3899,12 +4013,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Length</strong>: %s @@ -3912,7 +4026,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Reorder Service Item @@ -3920,287 +4034,298 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Move to &top - + Move item to the top of the service. Move item to the top of the service. - + Move &up Move &up - + Move item up one position in the service. Move item up one position in the service. - + Move &down Move &down - + Move item down one position in the service. Move item down one position in the service. - + Move to &bottom Move to &bottom - + Move item to the end of the service. Move item to the end of the service. - + &Delete From Service &Delete From Service - + Delete the selected item from the service. Delete the selected item from the service. - + &Add New Item &Add New Item - + &Add to Selected Item &Add to Selected Item - + &Edit Item &Edit Item - + &Reorder Item &Reorder Item - + &Notes &Notes - + &Change Item Theme &Change Item Theme - + OpenLP Service Files (*.osz) OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. File is not a valid service. The content encoding is not UTF-8. - + File is not a valid service. File is not a valid service. - + Missing Display Handler Missing Display Handler - + Your item cannot be displayed as there is no handler to display it Your item cannot be displayed as there is no handler to display it - + Your item cannot be displayed as the plugin required to display it is missing or inactive Your item cannot be displayed as the plugin required to display it is missing or inactive - + &Expand all &Expand all - + Expand all the service items. Expand all the service items. - + &Collapse all &Collapse all - + Collapse all the service items. Collapse all the service items. - + Open File Open File - + Moves the selection down the window. Moves the selection down the window. - + Move up Move up - + Moves the selection up the window. Moves the selection up the window. - + Go Live Go Live - + Send the selected item to Live. Send the selected item to Live. - + &Start Time &Start Time - + Show &Preview Show &Preview - + Modified Service Modified Service - + The current service has been modified. Would you like to save this service? The current service has been modified. Would you like to save this service? - + Custom Service Notes: Custom Service Notes: - + Notes: Notes: - + Playing time: Playing time: - + Untitled Service Untitled Service - + File could not be opened because it is corrupt. File could not be opened because it is corrupt. - + Empty File Empty File - + This service file does not contain any data. This service file does not contain any data. - + Corrupt File Corrupt File - + Load an existing service. Load an existing service. - + Save this service. Save this service. - + Select a theme for the service. Select a theme for the service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. This file is either corrupt or it is not an OpenLP 2.0 service file. - - Service File Missing - Service File Missing - - - + Slide theme Slide theme - + Notes Notes - + Edit Edit - + Service copy only Service copy only - + Error Saving File - + Error Saving File - + There was an error saving your file. - + There was an error saving your file. + + + + Service File(s) Missing + Service File(s) Missing + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + The following file(s) in the service are missing: +<byte value="x9"/>%s + +These files will be removed if you continue to save. OpenLP.ServiceNoteForm - + Service Item Notes Service Item Notes @@ -4208,7 +4333,7 @@ The content encoding is not UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configure OpenLP @@ -4216,67 +4341,67 @@ The content encoding is not UTF-8. OpenLP.ShortcutListDialog - + Action Action - + Shortcut Shortcut - + Duplicate Shortcut Duplicate Shortcut - + The shortcut "%s" is already assigned to another action, please use a different shortcut. The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Alternate Alternate - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Default Default - + Custom Custom - + Capture shortcut. Capture shortcut. - + Restore the default shortcut of this action. Restore the default shortcut of this action. - + Restore Default Shortcuts Restore Default Shortcuts - + Do you want to restore all shortcuts to their defaults? Do you want to restore all shortcuts to their defaults? - + Configure Shortcuts Configure Shortcuts @@ -4284,172 +4409,172 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Hide Hide - + Go To Go To - + Blank Screen Blank Screen - + Blank to Theme Blank to Theme - + Show Desktop Show Desktop - + Previous Service Previous Service - + Next Service Next Service - + Escape Item Escape Item - + Move to previous. Move to previous. - + Move to next. Move to next. - + Play Slides Play Slides - + Delay between slides in seconds. Delay between slides in seconds. - + Move to live. Move to live. - + Add to Service. Add to Service. - + Edit and reload song preview. Edit and reload song preview. - + Start playing media. Start playing media. - + Pause audio. Pause audio. - + Pause playing media. Pause playing media. - + Stop playing media. Stop playing media. - + Video position. Video position. - + Audio Volume. Audio Volume. - + Go to "Verse" Go to "Verse" - + Go to "Chorus" Go to "Chorus" - + Go to "Bridge" Go to "Bridge" - + Go to "Pre-Chorus" Go to "Pre-Chorus" - + Go to "Intro" Go to "Intro" - + Go to "Ending" Go to "Ending" - + Go to "Other" Go to "Other" - + Previous Slide Previous Slide - + Next Slide Next Slide - + Pause Audio Pause Audio - + Background Audio Background Audio - + Go to next audio track. Go to next audio track. - + Tracks Tracks @@ -4457,17 +4582,17 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Spelling Suggestions - + Formatting Tags Formatting Tags - + Language: Language: @@ -4475,615 +4600,627 @@ The content encoding is not UTF-8. OpenLP.StartTimeForm - + Hours: Hours: - + Minutes: Minutes: - + Seconds: Seconds: - + Item Start and Finish Time Item Start and Finish Time - + Start Start - + Finish Finish - + Length Length - + Time Validation Error Time Validation Error - + Finish time is set after the end of the media item Finish time is set after the end of the media item - + Start time is after the finish time of the media item Start time is after the finish time of the media item - + Theme Layout Theme Layout - + The blue box shows the main area. The blue box shows the main area. - + The red box shows the footer. The red box shows the footer. - - OpenLP.ThemeForm - - - Select Image - Select Image - - - - Theme Name Missing - Theme Name Missing - - - - There is no name for this theme. Please enter one. - There is no name for this theme. Please enter one. - - - - Theme Name Invalid - Theme Name Invalid - - - - Invalid theme name. Please enter one. - Invalid theme name. Please enter one. - - - - (approximately %d lines per slide) - (approximately %d lines per slide) - - OpenLP.ThemeManager - + Create a new theme. Create a new theme. - + Edit Theme Edit Theme - + Edit a theme. Edit a theme. - + Delete Theme Delete Theme - + Delete a theme. Delete a theme. - + Import Theme Import Theme - + Import a theme. Import a theme. - + Export Theme Export Theme - + Export a theme. Export a theme. - + &Edit Theme &Edit Theme - + &Delete Theme &Delete Theme - + Set As &Global Default Set As &Global Default - + %s (default) %s (default) - + You must select a theme to edit. You must select a theme to edit. - + You are unable to delete the default theme. You are unable to delete the default theme. - + Theme %s is used in the %s plugin. Theme %s is used in the %s plugin. - + You have not selected a theme. You have not selected a theme. - + Save Theme - (%s) Save Theme - (%s) - + Theme Exported Theme Exported - + Your theme has been successfully exported. Your theme has been successfully exported. - + Theme Export Failed Theme Export Failed - + Your theme could not be exported due to an error. Your theme could not be exported due to an error. - + Select Theme Import File Select Theme Import File - + File is not a valid theme. File is not a valid theme. - + &Copy Theme &Copy Theme - + &Rename Theme &Rename Theme - + &Export Theme &Export Theme - + You must select a theme to rename. You must select a theme to rename. - + Rename Confirmation Rename Confirmation - + Rename %s theme? Rename %s theme? - + You must select a theme to delete. You must select a theme to delete. - + Delete Confirmation Delete Confirmation - + Delete %s theme? Delete %s theme? - + Validation Error Validation Error - + A theme with this name already exists. A theme with this name already exists. - + OpenLP Themes (*.theme *.otz) OpenLP Themes (*.theme *.otz) - + Copy of %s Copy of <theme name> Copy of %s - + Theme Already Exists Theme Already Exists + + + Theme %s already exists. Do you want to replace it? + Theme %s already exists. Do you want to replace it? + OpenLP.ThemeWizard - + Theme Wizard Theme Wizard - + Welcome to the Theme Wizard Welcome to the Theme Wizard - + Set Up Background Set Up Background - + Set up your theme's background according to the parameters below. Set up your theme's background according to the parameters below. - + Background type: Background type: - + Solid Color Solid Colour - + Gradient Gradient - + Color: Colour: - + Gradient: Gradient: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Top Left - Bottom Right - + Bottom Left - Top Right Bottom Left - Top Right - + Main Area Font Details Main Area Font Details - + Define the font and display characteristics for the Display text Define the font and display characteristics for the Display text - + Font: Font: - + Size: Size: - + Line Spacing: Line Spacing: - + &Outline: &Outline: - + &Shadow: &Shadow: - + Bold Bold - + Italic Italic - + Footer Area Font Details Footer Area Font Details - + Define the font and display characteristics for the Footer text Define the font and display characteristics for the Footer text - + Text Formatting Details Text Formatting Details - + Allows additional display formatting information to be defined Allows additional display formatting information to be defined - + Horizontal Align: Horizontal Align: - + Left Left - + Right Right - + Center Centre - + Output Area Locations Output Area Locations - + Allows you to change and move the main and footer areas. Allows you to change and move the main and footer areas. - + &Main Area &Main Area - + &Use default location &Use default location - + X position: X position: - + px px - + Y position: Y position: - + Width: Width: - + Height: Height: - + Use default location Use default location - + Theme name: Theme name: - + Edit Theme - %s Edit Theme - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Transitions: Transitions: - + &Footer Area &Footer Area - + Starting color: Starting color: - + Ending color: Ending color: - + Background color: Background color: - + Justify Justify - + Layout Preview Layout Preview - + Transparent Transparent - + Preview and Save - + Preview and Save - + Preview the theme and save it. - + Preview the theme and save it. + + + + (approximately %d lines per slide) + (approximately %d lines per slide) + + + + Background Image Empty + Background Image Empty + + + + You have not selected a background image. Please select one before continuing. + You have not selected a background image. Please select one before continuing. + + + + Select Image + Select Image + + + + Theme Name Missing + Theme Name Missing + + + + There is no name for this theme. Please enter one. + There is no name for this theme. Please enter one. + + + + Theme Name Invalid + Theme Name Invalid + + + + Invalid theme name. Please enter one. + Invalid theme name. Please enter one. OpenLP.ThemesTab - + Global Theme Global Theme - + Theme Level Theme Level - + S&ong Level S&ong Level - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + &Service Level &Service Level - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + &Global Level &Global Level - + Use the global theme, overriding any themes associated with either the service or the songs. Use the global theme, overriding any themes associated with either the service or the songs. - + Themes Themes @@ -5091,315 +5228,315 @@ The content encoding is not UTF-8. OpenLP.Ui - + Error Error - + About About - + &Add &Add - + Advanced Advanced - + All Files All Files - + Bottom Bottom - + Browse... Browse... - + Cancel Cancel - + CCLI number: CCLI number: - + Create a new service. Create a new service. - + &Delete &Delete - + &Edit &Edit - + Empty Field Empty Field - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Image - + Import Import - + Live Live - + Live Background Error Live Background Error - + Load Load - + Middle Middle - + New New - + New Service New Service - + New Theme New Theme - + No File Selected Singular No File Selected - + No Files Selected Plural No Files Selected - + No Item Selected Singular No Item Selected - + No Items Selected Plural No Items Selected - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Preview - + Replace Background Replace Background - + Reset Background Reset Background - + s The abbreviated unit for seconds s - + Save && Preview Save && Preview - + Search Search - + You must select an item to delete. You must select an item to delete. - + You must select an item to edit. You must select an item to edit. - + Save Service Save Service - + Service Service - + Start %s Start %s - + Theme Singular Theme - + Themes Plural Themes - + Top Top - + Version Version - + Delete the selected item. Delete the selected item. - + Move selection up one position. Move selection up one position. - + Move selection down one position. Move selection down one position. - + &Vertical Align: &Vertical Align: - + Finished import. Finished import. - + Format: Format: - + Importing Importing - + Importing "%s"... Importing "%s"... - + Select Import Source Select Import Source - + Select the import format and the location to import from. Select the import format and the location to import from. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File Open %s File - + %p% %p% - + Ready. Ready. - + Starting import... Starting import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong You need to specify at least one %s file to import from. @@ -5410,299 +5547,304 @@ The content encoding is not UTF-8. Welcome to the Bible Import Wizard - + Welcome to the Song Export Wizard Welcome to the Song Export Wizard - + Welcome to the Song Import Wizard Welcome to the Song Import Wizard - + Author Singular Author - + Authors Plural Authors - - © + + © Copyright symbol. © - + Song Book Singular Song Book - + Song Books Plural Song Books - + Song Maintenance Song Maintenance - + Topic Singular Topic - + Topics Plural Topics - + Continuous Continuous - + Default Default - + Display style: Display style: - + Duplicate Error Duplicate Error - + File File - + Help Help - + h The abbreviated unit for hours h - + Layout style: Layout style: - + Live Toolbar Live Toolbar - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP is already running. Do you wish to continue? - + Settings Settings - + Tools Tools - + Unsupported File Unsupported File - + Verse Per Slide Verse Per Slide - + Verse Per Line Verse Per Line - + View View - + Title and/or verses not found Title and/or verses not found - + XML syntax error XML syntax error - + View Mode View Mode - + Open service. Open service. - + Print Service Print Service - + Replace live background. Replace live background. - + Reset live background. Reset live background. - + Split a slide into two only if it does not fit on the screen as one slide. Split a slide into two only if it does not fit on the screen as one slide. - + Welcome to the Bible Upgrade Wizard Welcome to the Bible Upgrade Wizard - + Confirm Delete Confirm Delete - + Play Slides in Loop Play Slides in Loop - + Play Slides to End Play Slides to End - + Stop Play Slides in Loop Stop Play Slides in Loop - + Stop Play Slides to End Stop Play Slides to End - + Next Track Next Track - + Search Themes... Search bar place holder text - + Search Themes... - + Optional &Split - + Optional &Split - + Invalid Folder Selected Singular - - - - - Invalid File Selected - Singular - + Invalid Folder Selected + Invalid File Selected + Singular + Invalid File Selected + + + Invalid Files Selected Plural - + Invalid Files Selected - + No Folder Selected Singular - + No Folder Selected - + Open %s Folder - + Open %s Folder - + You need to specify one %s file to import from. A file type e.g. OpenSong - + You need to specify one %s file to import from. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + You need to specify one %s folder to import from. + + + + Importing Songs + Importing Songs OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 and %2 - + %1, and %2 Locale list separator: end %1, and %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5711,50 +5853,50 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + Presentation name singular Presentation - + Presentations name plural Presentations - + Presentations container title Presentations - + Load a new presentation. Load a new presentation. - + Delete the selected presentation. Delete the selected presentation. - + Preview the selected presentation. Preview the selected presentation. - + Send the selected presentation live. Send the selected presentation live. - + Add the selected presentation to the service. Add the selected presentation to the service. @@ -5762,70 +5904,70 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Select Presentation(s) - + Automatic Automatic - + Present using: Present using: - + File Exists File Exists - + A presentation with that filename already exists. A presentation with that filename already exists. - + This type of presentation is not supported. This type of presentation is not supported. - + Presentations (%s) Presentations (%s) - + Missing Presentation Missing Presentation - + The presentation %s is incomplete, please reload. - + The presentation %s is incomplete, please reload. - + The presentation %s no longer exists. - + The presentation %s no longer exists. PresentationPlugin.PresentationTab - + Available Controllers Available Controllers - + %s (unavailable) %s (unavailable) - + Allow presentation application to be overridden Allow presentation application to be overridden @@ -5833,24 +5975,24 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - + Remote name singular Remote - + Remotes name plural Remotes - + Remote container title Remote @@ -5859,236 +6001,246 @@ The content encoding is not UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remote - + OpenLP 2.0 Stage View OpenLP 2.0 Stage View - + Service Manager Service Manager - + Slide Controller Slide Controller - + Alerts Alerts - + Search Search - + Refresh Refresh - + Blank Blank - + Show Show - + Prev Prev - + Next Next - + Text Text - + Show Alert Show Alert - + Go Live Go Live - + No Results No Results - + Options Options - + Add to Service Add to Service - + Home - - - - - Theme - + Home - Desktop - + Theme + Theme - + + Desktop + Desktop + + + Add &amp; Go to Service - + Add &amp; Go to Service + + + + Service + Service + + + + Slides + Slides RemotePlugin.RemoteTab - + Serve on IP address: Serve on IP address: - + Port number: Port number: - + Server Settings Server Settings - + Remote URL: Remote URL: - + Stage view URL: Stage view URL: - + Display stage time in 12h format Display stage time in 12h format - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. SongUsagePlugin - + &Song Usage Tracking &Song Usage Tracking - + &Delete Tracking Data &Delete Tracking Data - + Delete song usage data up to a specified date. Delete song usage data up to a specified date. - + &Extract Tracking Data &Extract Tracking Data - + Generate a report on song usage. Generate a report on song usage. - + Toggle Tracking Toggle Tracking - + Toggle the tracking of song usage. Toggle the tracking of song usage. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + SongUsage name singular SongUsage - + SongUsage name plural SongUsage - + SongUsage container title SongUsage - + Song Usage Song Usage - + Song usage tracking is active. Song usage tracking is active. - + Song usage tracking is inactive. Song usage tracking is inactive. - + display display - + printed printed @@ -6096,32 +6248,32 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Delete Song Usage Data - + Delete Selected Song Usage Events? Delete Selected Song Usage Events? - + Are you sure you want to delete selected Song Usage data? Are you sure you want to delete selected Song Usage data? - + Deletion Successful Deletion Successful - + All requested data has been deleted successfully. All requested data has been deleted successfully. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. @@ -6129,42 +6281,42 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Song Usage Extraction - + Select Date Range Select Date Range - + to to - + Report Location Report Location - + Output File Location Output File Location - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation Report Creation - + Report %s has been successfully created. @@ -6173,12 +6325,12 @@ has been successfully created. has been successfully created. - + Output Path Not Selected Output Path Not Selected - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. You have not set a valid output location for your song usage report. Please select an existing path on your computer. @@ -6186,112 +6338,112 @@ has been successfully created. SongsPlugin - + &Song &Song - + Import songs using the import wizard. Import songs using the import wizard. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + &Re-index Songs &Re-index Songs - + Re-index the songs database to improve searching and ordering. Re-index the songs database to improve searching and ordering. - + Reindexing songs... Reindexing songs... - + Arabic (CP-1256) Arabic (CP-1256) - + Baltic (CP-1257) Baltic (CP-1257) - + Central European (CP-1250) Central European (CP-1250) - + Cyrillic (CP-1251) Cyrillic (CP-1251) - + Greek (CP-1253) Greek (CP-1253) - + Hebrew (CP-1255) Hebrew (CP-1255) - + Japanese (CP-932) Japanese (CP-932) - + Korean (CP-949) Korean (CP-949) - + Simplified Chinese (CP-936) Simplified Chinese (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Traditional Chinese (CP-950) - + Turkish (CP-1254) Turkish (CP-1254) - + Vietnam (CP-1258) Vietnam (CP-1258) - + Western European (CP-1252) Western European (CP-1252) - + Character Encoding Character Encoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6300,100 +6452,105 @@ for the correct character representation. Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Please choose the character encoding. The encoding is responsible for the correct character representation. - + Song name singular Song - + Songs name plural Songs - + Songs container title Songs - + Exports songs using the export wizard. Exports songs using the export wizard. - + Add a new song. Add a new song. - + Edit the selected song. Edit the selected song. - + Delete the selected song. Delete the selected song. - + Preview the selected song. Preview the selected song. - + Send the selected song live. Send the selected song live. - + Add the selected song to the service. Add the selected song to the service. + + + Reindexing songs + Reindexing songs + SongsPlugin.AuthorsForm - + Author Maintenance Author Maintenance - + Display name: Display name: - + First name: First name: - + Last name: Last name: - + You need to type in the first name of the author. You need to type in the first name of the author. - + You need to type in the last name of the author. You need to type in the last name of the author. - + You have not set a display name for the author, combine the first and last names? You have not set a display name for the author, combine the first and last names? @@ -6401,7 +6558,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. The file does not have a valid extension. @@ -6409,12 +6566,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administered by %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6426,220 +6583,215 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data - + Meta Data - + Custom Book Names - + Custom Book Names SongsPlugin.EditSongForm - + Song Editor Song Editor - + &Title: &Title: - + Alt&ernate title: Alt&ernate title: - + &Lyrics: &Lyrics: - + &Verse order: &Verse order: - + Ed&it All Ed&it All - + Title && Lyrics Title && Lyrics - + &Add to Song &Add to Song - + &Remove &Remove - + &Manage Authors, Topics, Song Books &Manage Authors, Topics, Song Books - + A&dd to Song A&dd to Song - + R&emove R&emove - + Book: Book: - + Number: Number: - + Authors, Topics && Song Book Authors, Topics && Song Book - + New &Theme New &Theme - + Copyright Information Copyright Information - + Comments Comments - + Theme, Copyright Info && Comments Theme, Copyright Info && Comments - + Add Author Add Author - + This author does not exist, do you want to add them? This author does not exist, do you want to add them? - + This author is already in the list. This author is already in the list. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Add Topic Add Topic - + This topic does not exist, do you want to add it? This topic does not exist, do you want to add it? - + This topic is already in the list. This topic is already in the list. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + You need to type in a song title. You need to type in a song title. - + You need to type in at least one verse. You need to type in at least one verse. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Add Book Add Book - + This song book does not exist, do you want to add it? This song book does not exist, do you want to add it? - + You need to have an author for this song. You need to have an author for this song. - - You need to type some text in to the verse. - You need to type some text in to the verse. - - - + Linked Audio Linked Audio - + Add &File(s) Add &File(s) - + Add &Media Add &Media - + Remove &All Remove &All - + Open File(s) Open File(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Warning:</strong> Not all of the verses are in use. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. @@ -6647,22 +6799,22 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse Edit Verse - + &Verse type: &Verse type: - + &Insert &Insert - + Split a slide into two by inserting a verse splitter. Split a slide into two by inserting a verse splitter. @@ -6670,82 +6822,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.ExportWizardForm - + Song Export Wizard Song Export Wizard - + Select Songs Select Songs - + Check the songs you want to export. Check the songs you want to export. - + Uncheck All Uncheck All - + Check All Check All - + Select Directory Select Directory - + Directory: Directory: - + Exporting Exporting - + Please wait while your songs are exported. Please wait while your songs are exported. - + You need to add at least one Song to export. You need to add at least one Song to export. - + No Save Location specified No Save Location specified - + Starting export... Starting export... - + You need to specify a directory. You need to specify a directory. - + Select Destination Folder Select Destination Folder - + Select the directory where you want the songs to be saved. Select the directory where you want the songs to be saved. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. @@ -6753,185 +6905,185 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Select Document/Presentation Files - + Song Import Wizard Song Import Wizard - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Generic Document/Presentation Generic Document/Presentation - + Add Files... Add Files... - + Remove File(s) Remove File(s) - + Please wait while your songs are imported. Please wait while your songs are imported. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Song Files - + Songs Of Fellowship Song Files Songs Of Fellowship Song Files - + SongBeamer Files SongBeamer Files - + SongShow Plus Song Files SongShow Plus Song Files - + Foilpresenter Song Files Foilpresenter Song Files - + Copy Copy - + Save to File Save to File - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics Files OpenLyrics Files - + CCLI SongSelect Files - + CCLI SongSelect Files - + EasySlides XML File - + EasySlides XML File - + EasyWorship Song Database - + EasyWorship Song Database - + DreamBeam Song Files - + DreamBeam Song Files - + You need to specify a valid PowerSong 1.0 database folder. - + You need to specify a valid PowerSong 1.0 database folder. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + SundayPlus Song Files - + This importer has been disabled. - + This importer has been disabled. - + MediaShout Database - + MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + SongPro Text Files - + SongPro Text Files - + SongPro (Export File) - + SongPro (Export File) - + In SongPro, export your songs using the File -> Export menu - + In SongPro, export your songs using the File -> Export menu SongsPlugin.MediaFilesForm - + Select Media File(s) Select Media File(s) - + Select one or more audio files from the list below, and click OK to import them into this song. Select one or more audio files from the list below, and click OK to import them into this song. @@ -6939,79 +7091,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - + Titles Titles - + Lyrics Lyrics - + CCLI License: CCLI License: - + Entire Song Entire Song - + Are you sure you want to delete the %n selected song(s)? - Are you sure you want to delete the %n selected song(s)?Are you sure you want to delete the %n selected song(s)? + + Are you sure you want to delete the %n selected song(s)? + Are you sure you want to delete the %n selected song(s)? + - + Maintain the lists of authors, topics and books. Maintain the lists of authors, topics and books. - + copy For song cloning copy - + Search Titles... - + Search Titles... - + Search Entire Song... - + Search Entire Song... - + Search Lyrics... - + Search Lyrics... - + Search Authors... - + Search Authors... - + Search Song Books... - + Search Song Books... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Unable to open the MediaShout database. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Not a valid openlp.org 1.x song database. @@ -7019,7 +7174,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Not a valid OpenLP 2.0 song database. @@ -7027,7 +7182,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporting "%s"... @@ -7035,35 +7190,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + No songs to import. - + Verses not found. Missing "PART" header. - + Verses not found. Missing "PART" header. + + + + No %s files found. + No %s files found. + + + + Invalid %s file. Unexpected byte value. + Invalid %s file. Unexpected byte value. + + + + Invalid %s file. Missing "TITLE" header. + Invalid %s file. Missing "TITLE" header. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Invalid %s file. Missing "COPYRIGHTLINE" header. SongsPlugin.SongBookForm - + Song Book Maintenance Song Book Maintenance - + &Name: &Name: - + &Publisher: &Publisher: - + You need to type in a name for the book. You need to type in a name for the book. @@ -7071,12 +7246,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongExportForm - + Your song export failed. Your song export failed. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Finished export. To import these files use the <strong>OpenLyrics</strong> importer. @@ -7084,27 +7259,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: The following songs could not be imported: - + Cannot access OpenOffice or LibreOffice Cannot access OpenOffice or LibreOffice - + Unable to open file Unable to open file - + File not found File not found @@ -7112,107 +7287,107 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Could not add your author. - + This author already exists. This author already exists. - + Could not add your topic. Could not add your topic. - + This topic already exists. This topic already exists. - + Could not add your book. Could not add your book. - + This book already exists. This book already exists. - + Could not save your changes. Could not save your changes. - + Could not save your modified author, because the author already exists. Could not save your modified author, because the author already exists. - + Could not save your modified topic, because it already exists. Could not save your modified topic, because it already exists. - + Delete Author Delete Author - + Are you sure you want to delete the selected author? Are you sure you want to delete the selected author? - + This author cannot be deleted, they are currently assigned to at least one song. This author cannot be deleted, they are currently assigned to at least one song. - + Delete Topic Delete Topic - + Are you sure you want to delete the selected topic? Are you sure you want to delete the selected topic? - + This topic cannot be deleted, it is currently assigned to at least one song. This topic cannot be deleted, it is currently assigned to at least one song. - + Delete Book Delete Book - + Are you sure you want to delete the selected book? Are you sure you want to delete the selected book? - + This book cannot be deleted, it is currently assigned to at least one song. This book cannot be deleted, it is currently assigned to at least one song. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? The book %s already exists. Would you like to make songs with book %s use the existing book %s? @@ -7220,45 +7395,45 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongsTab - + Songs Mode Songs Mode - + Enable search as you type Enable search as you type - + Display verses on live tool bar Display verses on live tool bar - + Update service from song edit Update service from song edit - + Import missing songs from service files - + Import missing songs from service files SongsPlugin.TopicsForm - + Topic Maintenance Topic Maintenance - + Topic name: Topic name: - + You need to type in a topic name. You need to type in a topic name. @@ -7266,37 +7441,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse Verse - + Chorus Chorus - + Bridge Bridge - + Pre-Chorus Pre-Chorus - + Intro Intro - + Ending Ending - + Other Other @@ -7304,14 +7479,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Error reading CSV file. - + File not valid ZionWorx CSV format. - + File not valid ZionWorx CSV format. + + + + Line %d: %s + Line %d: %s + + + + Decoding error: %s + Decoding error: %s + + + + Record %d + Record %d - \ No newline at end of file + diff --git a/resources/i18n/es.ts b/resources/i18n/es.ts index fc85b9fa2..8d41077ce 100644 --- a/resources/i18n/es.ts +++ b/resources/i18n/es.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Alerta - + Show an alert message. Mostrar mensaje de alerta. - + Alert name singular Alerta - + Alerts name plural Alertas - + Alerts container title Alertas - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Complemento de Alertas</strong><br />El complemento de alertas controla la visualización de mensajes de guardería. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message - Mensaje de Alerta + Mensaje de alerta - + Alert &text: &Texto de alerta: - + &New &Nuevo - + &Save &Guardar - + Displ&ay Mostr&ar - + Display && Cl&ose M&ostrar && Cerrar - + New Alert - Alerta Nueva + Alerta nueva - + You haven't specified any text for your alert. Please type in some text before clicking New. No ha especificado ningún texto de alerta. Por favor, escriba algún texto antes de hacer clic en Nueva. - + &Parameter: &Parámetro: - + No Parameter Found Parámetro no encontrado - + You have not entered a parameter to be replaced. Do you want to continue anyway? No ha ingresado un parámetro para reemplazar. -¿Desea continuar de todas maneras? +¿Desea continuar de todos modos? - + No Placeholder Found Marcador no encontrado - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? El texto de alerta no contiene '<>'. ¿Desea continuar de todos modos? @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Fuente - + Font name: Nombre: - + Font color: Color: - + Background color: Color de fondo: - + Font size: Tamaño: - + Alert timeout: Tiempo de espera: @@ -151,510 +152,510 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Biblia - + Bible name singular Biblia - + Bibles name plural Biblias - + Bibles container title Biblias - + No Book Found Libro no encontrado - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. No se encontró el libro en esta Biblia. Revise que el nombre del libro esté escrito correctamente. - + Import a Bible. Importar una Biblia. - + Add a new Bible. Agregar una Biblia nueva. - + Edit the selected Bible. Editar la Biblia seleccionada. - + Delete the selected Bible. Eliminar la Biblia seleccionada. - + Preview the selected Bible. - Vista Previa de la Biblia seleccionada. + Vista previa de la Biblia seleccionada. - + Send the selected Bible live. Proyectar la Biblia seleccionada. - + Add the selected Bible to the service. Agregar esta Biblia al servicio. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Complemento de Biblias</strong><br />El complemento de Biblias proporciona la capacidad de mostrar versículos de diversas fuentes, durante el servicio. - + &Upgrade older Bibles &Actualizar Biblias antiguas - + Upgrade the Bible databases to the latest format. Actualizar las Biblias al formato más reciente. - + Genesis Génesis - + Exodus Éxodo - + Leviticus Levítico - + Numbers Números - + Deuteronomy Deuteronomio - + Joshua Josué - + Judges Jueces - + Ruth Rut - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Reyes - + 2 Kings 2 Reyes - + 1 Chronicles 1 Crónicas - + 2 Chronicles 2 Crónicas - + Ezra Esdras - + Nehemiah Nehemías - + Esther Ester - + Job Job - + Psalms Salmos - + Proverbs Proverbios - + Ecclesiastes Eclesiastés - + Song of Solomon Cantares - + Isaiah Isaías - + Jeremiah Jeremías - + Lamentations Lamentaciones - + Ezekiel Ezequiel - + Daniel Daniel - + Hosea Oseas - + Joel Joel - + Amos Amós - + Obadiah Abdías - + Jonah Jonás - + Micah Miqueas - + Nahum Nahúm - + Habakkuk Habacuc - + Zephaniah Sofonías - + Haggai Hageo - + Zechariah Zacarías - + Malachi Malaquías - + Matthew Mateo - + Mark Marcos - + Luke Lucas - + John Juan - + Acts Hechos - + Romans Romanos - + 1 Corinthians 1 Corintios - + 2 Corinthians 2 Corintios - + Galatians Gálatas - + Ephesians Efesios - + Philippians Filipenses - + Colossians Colosenses - + 1 Thessalonians 1 Tesalonicenses - + 2 Thessalonians 2 Tesalonicenses - + 1 Timothy 1 Timoteo - + 2 Timothy 2 Timoteo - + Titus Tito - + Philemon Filemón - + Hebrews Hebreos - + James Santiago - + 1 Peter 1 Pedro - + 2 Peter 2 Pedro - + 1 John 1 Juan - + 2 John 2 Juan - + 3 John 3 Juan - + Jude Judas - + Revelation Apocalipsis - + Judith Judit - + Wisdom Sabiduría - + Tobit Tobit - + Sirach Sirácida - + Baruch Baruc - + 1 Maccabees 1 Macabeos - + 2 Maccabees 2 Macabeos - + 3 Maccabees 3 Macabeos - + 4 Maccabees 4 Macabeos - + Rest of Daniel Resto de Daniel - + Rest of Esther Resto de Ester - + Prayer of Manasses Oración de Manasés - + Letter of Jeremiah Epístola de Jeremías - + Prayer of Azariah Oración de Azarías - + Susanna Susana - + Bel Bel - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|versículo|versículos;;-|hasta;;,|y;;fin @@ -663,32 +664,32 @@ Do you want to continue anyway? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Debe especificar un nombre para la versión de su Biblia. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Debe ingresar la información copyright para su Biblia. Las Biblias de Dominio Público se deben marca como tal. - + Bible Exists Ya existe la Biblia - + This Bible already exists. Please import a different Bible or first delete the existing one. Ya existe esta Biblia. Por favor importe una diferente o borre la anterior antes de continuar. - + You need to specify a book name for "%s". Debe especificar un nombre de libro para "%s" - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Solo se pueden utilizar números al principio y seguido de caracteres no numéricos. - + Duplicate Book Name Nombre de Libro Duplicado - + The Book Name "%s" has been entered more than once. El Nombre de Libro "%s" se ha ingresado más de una vez. @@ -710,39 +711,39 @@ y seguido de caracteres no numéricos. BiblesPlugin.BibleManager - + Scripture Reference Error Error de Referencia Bíblica - + Web Bible cannot be used No se puede usar la Biblia Web - + Text Search is not available with Web Bibles. La búsqueda no esta disponible para Biblias Web. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - No ingreso una palabra clave a buscar. -Puede separar palabras clave por un espacio para buscar todas las palabras clave y puede separar conr una coma para buscar una de ellas. + No ingresó una palabra clave a buscar. +Puede separar palabras clave con un espacio en blanco para buscar todas las palabras clave y puede separar con una coma para buscar una de ellas. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - No existen Bilbias instaladas. Puede usar el Asistente de Importación para instalar una o varias más. + No existen Biblias instaladas. Puede usar el Asistente de Importación para instalar una o varias Biblias. - + No Bibles Available - Biblias no Disponibles + Biblias no disponibles - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Libro Capítulo%(verse)sVersículo%(range)sCapítulo%(verse)sVersículo BiblesPlugin.BiblesTab - + Verse Display Visualización de versículos - + Only show new chapter numbers - Solo mostrar números para capítulos nuevos + Sólo mostrar números para capítulos nuevos - + Bible theme: Tema: - + No Brackets Sin paréntesis - + ( And ) ( Y ) - + { And } { Y } - + [ And ] [ Y ] - + Note: Changes do not affect verses already in the service. Nota: Los cambios no se aplican a elementos en el servcio. - + Display second Bible verses Mostrar versículos secundarios - + Custom Scripture References Referencias Bíblicas Personalizadas - + Verse Separator: Separador de Versículos: - + Range Separator: Separador de Rango: - + List Separator: Separador de Lista: - + End Mark: Marca de Final: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ Tienen que estar separados por un marcador vertical " | ". Borre el contenido del campo para usar el valor predeterminado. - + English Inglés - + Default Bible Language Idioma de Biblia Predeterminado - + Book name language in search field, search results and on display: Idioma de los Libros en búsqueda, resultados y pantalla: - + Bible Language Idioma de la Biblia - + Application Language Idioma de la aplicación @@ -903,42 +904,42 @@ resultados y pantalla: BiblesPlugin.BookNameDialog - + Select Book Name - Seleccione Nombre de Libro + Seleccione el nombre del libro - + Current name: Nombre actual: - + Corresponding name: Nombre correspondiente: - + Show Books From - Mostrar Libros Desde + Mostrar libros desde - + Old Testament Antiguo Testamento - + New Testament Nuevo Testamento - + Apocrypha Apócrifos - + The following book name cannot be matched up internally. Please select the corresponding name from the list. El siguiente nombre no se encontró internamente. Por favor seleccione de la lista el correspondiente nombre en inglés. @@ -946,7 +947,7 @@ resultados y pantalla: BiblesPlugin.BookNameForm - + You need to select a book. Debe seleccionar un libro. @@ -954,18 +955,18 @@ resultados y pantalla: BiblesPlugin.CSVBible - + Importing books... %s Importando libros... %s - + Importing verses from %s... Importing verses from <book name>... Importando versículos de %s... - + Importing verses... done. Importando versículos... listo. @@ -973,69 +974,69 @@ resultados y pantalla: BiblesPlugin.EditBibleForm - + Bible Editor Editor de Biblias - + License Details Detalles de Licencia - + Version name: Nombre de versión: - + Copyright: Copyright: - + Permissions: Permisos: - + Default Bible Language Idioma Predeterminado - + Book name language in search field, search results and on display: Idioma de Libros en la busqueda, resultados y pantalla. - + Global Settings Preferencia Globales - + Bible Language Idioma de la Biblia - + Application Language Idioma de la aplicación - + English Inglés - + This is a Web Download Bible. It is not possible to customize the Book Names. Esta es una Biblia de Descarga Web. No es posible personalizar los Nombres de Libros. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Para utilizar nombres de libro personalizados, debe seleccionar el "Idioma de la Biblia" en la pestaña de Meta Datos o, en la página Biblias en Configurar OpenLP si se utilizó "Preferencias Globales". @@ -1043,40 +1044,40 @@ No es posible personalizar los Nombres de Libros. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrando Biblia y cargando libros... - + Registering Language... - Registrando Idioma... + Registrando idioma... - + Importing %s... Importing <book name>... Importando %s... - + Download Error - Error de Descarga + Error de descarga - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - Hubo un problema al descargar los versículos seleccionados. Por favor revise la conexión a internet y si el error persiste considere reportar esta falla. + Hubo un problema al descargar los versículos seleccionados. Por favor revise la conexión a internet; si el error persiste, considere reportar esta falla. - + Parse Error - Error de Análisis + Error de análisis - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - Hubo un problema al extraer los versículos seleccionados. Si el error persiste considere reportar esta falla. + Hubo un problema al extraer los versículos seleccionados. Si el error persiste, considere reportar esta falla. @@ -1119,7 +1120,7 @@ No es posible personalizar los Nombres de Libros. Download Options - Opciones de Descarga + Opciones de descarga @@ -1144,7 +1145,7 @@ No es posible personalizar los Nombres de Libros. License Details - Detalles de Licencia + Detalles de licencia @@ -1164,7 +1165,7 @@ No es posible personalizar los Nombres de Libros. Please wait while your Bible is imported. - Por favor, espere mientras que la Biblia es importada. + Por favor, espere mientras la Biblia es importada. @@ -1179,12 +1180,12 @@ No es posible personalizar los Nombres de Libros. You need to specify a version name for your Bible. - Debe ingresar un nombre para la versión de esta Biblia. + Debe ingresar un nombre de versión para esta Biblia. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Debe establecer los derechos de autor de su Biblia. Si es de Dominio Público debe indicarlo. + Debe establecer los derechos de autor de su Biblia. Si es de Dominio Público, debe indicarlo. @@ -1252,17 +1253,17 @@ sea necesario, por lo que debe contar con una conexión a internet. BiblesPlugin.LanguageDialog - + Select Language Seleccionar Idioma - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP no puede determinar el idioma de esta versión de la Biblia. Por favor, seleccione uno de la siguiente lista. - + Language: Idioma: @@ -1270,7 +1271,7 @@ sea necesario, por lo que debe contar con una conexión a internet. BiblesPlugin.LanguageForm - + You need to choose a language. Debe elegir un idioma. @@ -1278,92 +1279,92 @@ sea necesario, por lo que debe contar con una conexión a internet. BiblesPlugin.MediaItem - + Quick Rápida - + Find: Buscar: - + Book: Libro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: Desde: - + To: Hasta: - + Text Search Buscar texto - + Second: Paralela: - + Scripture Reference Referencia Bíblica - + Toggle to keep or clear the previous results. Alterna entre conservar o borrar los resultados previos. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? No puede mezclar busquedas individuales y dobles. ¿Desea borrar los resultados y abrir una busqueda nueva? - + Bible not fully loaded. Biblia incompleta. - + Information Información - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. La Biblia secundaria no contiene todos los versículos de la Biblia principal. Solo se muestran los versículos comunes. Versículos %d no se incluyen en los resultados. - + Search Scripture Reference... Buscar Referencia Bíblica... - + Search Text... Buscar Texto... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1376,7 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Tipo de archivo incorrecto. Las Biblias OpenSong pueden estar comprimidas y es necesario extraerlas antes de la importación. @@ -1383,7 +1384,7 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1392,12 +1393,12 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detectando codificación (esto puede tardar algunos minutos)... - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1406,149 +1407,149 @@ Deberá reimportar esta Biblia para utilizarla de nuevo. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - Seleccione un Directorio de Respaldo + Seleccione un directorio de respaldo - + Bible Upgrade Wizard - Asistente para Actualizar Biblias + Asistente para actualizar biblias - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - Este asistente le ayudará a actualizar sus Bilias desde versiones anteriores a OpenLP 2. Presione siguiente para iniciar el proceso. + Este asistente le ayudará a actualizar sus Biblias desde versiones anteriores a OpenLP 2. Presione Siguiente para iniciar el proceso. - + Select Backup Directory - Directorio de Respaldo + Directorio de respaldo - + Please select a backup directory for your Bibles Por favor seleccione un directorio de respaldo para sus Biblias - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - Las versiones anteriores a OpenLP 2.0 no pueden utilizar las Biblias actualizadas. Se creará un respaldo de sus Biblias actuales en caso que tenga que utilizar una versión anterior del programa. Las instrucciones para resturar los archivos están en nuestro <a href="http://wiki.openlp.org/faq">FAQ</a>. + Las versiones anteriores a OpenLP 2.0 no pueden utilizar las Biblias actualizadas. Se creará un respaldo de sus Biblias actuales en caso de que tenga que utilizar una versión anterior del programa. Las instrucciones para restaurar los archivos están en nuestro <a href="http://wiki.openlp.org/faq">FAQ</a>. - + Please select a backup location for your Bibles. Por favor seleccione una ubicación para los respaldos. - + Backup Directory: - Directorio de Respaldo: + Directorio de respaldo: - + There is no need to backup my Bibles No es necesario respaldar mis Biblias - + Select Bibles Seleccione Biblias - + Please select the Bibles to upgrade Por favor seleccione las Biblias a actualizar - + Upgrading Actualizando - + Please wait while your Bibles are upgraded. Por favor espere mientras sus Biblias son actualizadas. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. El respaldo no fue exitoso. Para respaldar sus Biblias debe tener permisos de escritura en el directorio seleccionado. - + Upgrading Bible %s of %s: "%s" Failed Actualizando Biblia %s de %s: "%s" Fallidas - + Upgrading Bible %s of %s: "%s" Upgrading ... Actualizando Biblia %s de %s: "%s" Actualizando... - + Download Error Error de Descarga - + To upgrade your Web Bibles an Internet connection is required. Para actualizar sus Biblias se requiere de una conexión a internet. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Actualizando Biblia %s de %s: "%s" Actualizando %s... - + Upgrading Bible %s of %s: "%s" Complete Actualizando Biblia %s de %s: "%s" Completado - + , %s failed , %s fallidas - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Actualizando Biblia(s): %s exitosas%s Note que los versículos se descargarán según sea necesario, por lo que debe contar con una conexión a internet. - + Upgrading Bible(s): %s successful%s Actualizando Biblia(s): %s exitosas%s - + Upgrade failed. Actualización fallida. - + You need to specify a backup directory for your Bibles. Debe especificar un directorio de respaldo para sus Biblias. - + Starting upgrade... Iniciando actualización... - + There are no Bibles that need to be upgraded. Las Biblias ya se encuentran actualizadas. @@ -1556,65 +1557,65 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - <strong>Diapositivas</strong><br />Este complemento le permite mostar diapositivas de texto, de igual manera que se muestran las canciones. Este ofrece una mayor libertad que el complemento de canciones. + <strong>Diapositivas</strong><br />Este complemento le permite mostrar diapositivas de texto, de igual manera que se muestran las canciones. Ofrece una mayor libertad que el complemento de canciones. - + Custom Slide name singular Diapositiva - + Custom Slides name plural Diapositivas - + Custom Slides container title Diapositivas - + Load a new custom slide. Cargar nueva diapositiva. - + Import a custom slide. Importar nueva diapositiva. - + Add a new custom slide. Agregar nueva diapositiva. - + Edit the selected custom slide. Editar diapositiva seleccionada. - + Delete the selected custom slide. Eliminar diapositiva seleccionada. - + Preview the selected custom slide. - Vista Previa de la diapositiva seleccionada. + Vista previa de la diapositiva seleccionada. - + Send the selected custom slide live. Proyectar diapositiva seleccionada. - + Add the selected custom slide to the service. Agregar diapositiva al servicio. @@ -1622,12 +1623,12 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.CustomTab - + Custom Display - Pantalla Personalizada + Pantalla personalizada - + Display footer Mostrar pie de página @@ -1635,62 +1636,62 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.EditCustomForm - + Edit Custom Slides - Editar Diapositivas + Editar diapositivas - + &Title: &Título: - + Add a new slide at bottom. Nueva diapositiva al final. - + Edit the selected slide. Editar la diapositiva seleccionada. - + Edit all the slides at once. Editar todas las diapositivas a la vez. - + Split a slide into two by inserting a slide splitter. Dividir la diapositiva insertando un separador. - + The&me: Te&ma: - + &Credits: - &Creditos: + &Créditos: - + You need to type in a title. Debe escribir un título. - + You need to add at least one slide Debe agregar al menos una diapositiva - + Ed&it All - Ed&itar Todo + Ed&itar todo - + Insert Slide Insertar @@ -1698,7 +1699,7 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.EditVerseForm - + Edit Slide Editar Diapositiva @@ -1706,68 +1707,71 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - ¿Desea borrar la diapositiva seleccionada?¿Desea borrar las %n diapositivas seleccionadas? + + ¿Desea borrar la diapositiva seleccionada? + ¿Desea borrar las %n diapositivas seleccionadas? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - <strong>Complemento de Imagen</strong><br />El complemento de imagen permite proyectar imágenes.<br />Una de sus características, es que permite agrupar imagenes para facilitar su proyección. Este plugin puede utilizar el "bulce de tiempo" de OpenLP para crear una presentación que avance automáticamente. Aparte, las imágenes de este plugin se pueden utilizar para reemplazar la imagen de fondo del tema en actual. + <strong>Complemento de Imagen</strong><br />Este complemento permite proyectar imágenes.<br />Una de sus características es que permite agrupar imágenes para facilitar su proyección. Este complemento puede utilizar el "bucle de tiempo" de OpenLP para crear una presentación que avance automáticamente. Además, las imágenes de este complemento se pueden utilizar para reemplazar la imagen de fondo del tema actual. - + Image name singular Imagen - + Images name plural Imágenes - + Images container title Imágenes - + Load a new image. Cargar una imagen nueva. - + Add a new image. Agregar una imagen nueva. - + Edit the selected image. Editar la imagen seleccionada. - + Delete the selected image. Eliminar la imagen seleccionada. - + Preview the selected image. - Vista Previa de la imagen seleccionada. + Vista previa de la imagen seleccionada. - + Send the selected image live. Proyectar la imagen seleccionada. - + Add the selected image to the service. Agregar esta imagen al servicio. @@ -1775,52 +1779,52 @@ Note que los versículos se descargarán según sea necesario, por lo que debe c ImagePlugin.ExceptionDialog - + Select Attachment - Seleccionar Anexo + Seleccionar archivo adjunto ImagePlugin.MediaItem - + Select Image(s) - Seleccionar Imagen(es) + Seleccionar imagen(es) - + You must select an image to delete. Debe seleccionar una imagen para eliminar. - + You must select an image to replace the background with. Debe seleccionar una imagen para reemplazar el fondo. - + Missing Image(s) - Imágen(es) faltante + Imagen(es) faltante(s) - + The following image(s) no longer exist: %s - La siguiente imagen(es) ya no esta disponible: %s + La siguiente imagen(es) ya no está disponible: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - La siguiente imagen(es) ya no esta disponible: %s + La siguiente imagen(es) ya no está disponible: %s ¿Desea agregar las demás imágenes? - + There was a problem replacing your background, the image file "%s" no longer exists. Ocurrió un problema al reemplazar el fondo, el archivo "%s" ya no existe. - + There was no display item to amend. No se encontraron elementos para corregir. @@ -1828,17 +1832,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color Color de fondo - + Default Color: Color predeterminado: - + Visible background for images with aspect ratio different to screen. Fondo visible para canciones con aspecto diferente al de la pantalla. @@ -1846,60 +1850,60 @@ Do you want to add the other images anyway? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Complemento de Medios</strong><br />El complemento de medios permite reproducir audio y video. - + Media name singular Medio - + Media name plural Medios - + Media container title Medios - + Load new media. Cargar un medio nuevo. - + Add new media. Agregar un medio nuevo. - + Edit the selected media. Editar el medio seleccionado. - + Delete the selected media. Eliminar el medio seleccionado. - + Preview the selected media. - Vista Previa del medio seleccionado. + Vista previa del medio seleccionado. - + Send the selected media live. Proyectar el medio seleccionado. - + Add the selected media to the service. Agregar este medio al servicio. @@ -1907,80 +1911,80 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media - Seleccionar Medios + Seleccionar medios - + You must select a media file to delete. - Debe seleccionar un medio para eliminar. + Debe seleccionar un archivo de medios para eliminar. - + You must select a media file to replace the background with. Debe seleccionar un archivo de medios para reemplazar el fondo. - + There was a problem replacing your background, the media file "%s" no longer exists. Ocurrió un problema al reemplazar el fondo, el archivo "%s" ya no existe. - + Missing Media File - Archivo de Medios faltante + Archivo de medios faltante - + The file %s no longer exists. - El archivo %s ya no esta disponible. + El archivo %s ya no está disponible. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Ningún elemento para corregir. - + Unsupported File - Archivo Inválido + Archivo inválido - + Automatic Automático - + Use Player: - Usar Reproductor: + Usar reproductor: MediaPlugin.MediaTab - + Available Media Players Reproductores disponibles - + %s (unavailable) %s (no disponible) - + Player Order - Orden de Reproductores + Orden de reproductores - + Allow media player to be overridden Permitir tomar control sobre el reproductor multimedia @@ -1988,59 +1992,83 @@ Do you want to add the other images anyway? OpenLP - + Image Files Archivos de Imagen - + Information Información - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? El formato de las Bilbias ha cambiado. -Debe actualizar las Biblias actuales. +Debe actualizar las Biblias existentes. ¿Desea hacerlo ahora? OpenLP.AboutForm - + Credits Créditos - + License Licencia - - Contribute - Contribuir - - - + build %s compilación %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - Este es un programa gratuito; usted puede distribuirlo y/o modificarlo bajo los términos de la GNU General Public License según la publicación de Free Software Foundation; versión 2 de la Licencia. + Este es un programa libre; usted puede distribuirlo y/o modificarlo bajo los términos de la GNU General Public License según la publicación de Free Software Foundation; versión 2 de la Licencia. - + This program 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 below for more details. Este programa se distribuye con la esperanza de que sea útil, pero SIN NINGUNA GARANTÍA, incluso sin la garantía implícita de COMERCIALIZACIÓN o IDONEIDAD PARA UN PROPÓSITO PARTICULAR. Véase más abajo para más detalles. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP es un software de proyección para iglesias gratuito, diseñado para mostar diapositivas de canciones, versículos de la Biblia, videos, imágenes, e incluso presentaciones (con OpenOffice.org, PowerPoint o PowerPoint Viewer instalados) para el servicio de alabanza, utilizando una computadora y un proyector de datos. + +Para más información de OpenLP visite: http://openlp.org/ + +OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación de más software Cristiano gratuito, por favor considere contribuir mediante el botón de abajo. + + + + Volunteer + Ofrecerse + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2120,12 +2158,20 @@ Empaquetadores Traductores Africano (af) %s + Checo (cs) + %s + Danés (da) + %s Alemán (de) %s + Griego (el) + %s Inglés, Reino Unido (en_GB) %s Inglés, Sudáfrica (en_ZA) %s + Español (es) + %s Estonio (et) %s Francés (fr) @@ -2142,6 +2188,8 @@ Traductores %s Ruso (ru) %s + Sueco (sv) + %s Documentación %s @@ -2164,207 +2212,183 @@ Crédito Final liberándonos del pecado. Traemos este software de forma gratuita, así como Él nos ha liberado. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP es un software de proyección para iglesias gratuito, utilizado para mostar diapositivas de canciones, versículos de la Biblia, videos, imágenes, e incluso presentaciones (si OpenOffice.org, PowerPoint o PowerPoint Viewer están instalados) para el servicio de alabanza, utilizando una computadora y un proyector de datos. - -Para más información de OpenLP visite: http://openlp.org/ - -OpenLP es desarrollado y mantenido por voluntarios. Si desea apoyar la creación de más software Cristiano gratuito, por favor considere contribuir mediante el botón de abajo. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings - Preferencias de Interface + Preferencias de interface - + Number of recent files to display: Archivos recientes a mostrar: - + Remember active media manager tab on startup Recordar la última pestaña de medios utilizada - + Double-click to send items straight to live - Doble-click para proyectar directamente + Doble click para proyectar directamente - + Expand new service items on creation Expandir elementos nuevos del servicio al crearlos - + Enable application exit confirmation Preguntar antes de cerrar la aplicación - + Mouse Cursor - Cursor del Ratón + Cursor del ratón - + Hide mouse cursor when over display window Ocultar el cursor en la pantalla principal - + Default Image Imagen predeterminada - + Background color: Color de fondo: - + Image file: Archivo: - + Open File - Abrir Archivo + Abrir archivo - + Advanced Avanzado - + Preview items when clicked in Media Manager - Vista Previa al seleccionar elementos del Adminstrador de Medios + Vista previa al seleccionar elementos del Adminstrador de Medios - + Click to select a color. Click para seleccionar color. - + Browse for an image file to display. Buscar un archivo de imagen para mostrar. - + Revert to the default OpenLP logo. Volver al logo predeterminado de OpenLP. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Servicio %Y-%m-%d %H-%M - + Default Service Name Nombre de Servicio Predeterminado - + Enable default service name Habilitar nombre automático - + Date and Time: Fecha y Hora: - + Monday Lunes - + Tuesday Martes - + Wednesday Miércoles - + Thurdsday Jueves - + Friday Viernes - + Saturday Sábado - + Sunday Domingo - + Now Hoy - + Time when usual service starts. Hora usual de inicio del servicio. - + Name: Nombre: - + Consult the OpenLP manual for usage. Consulte el manual de OpenLP para su uso. - + Revert to the default service name "%s". Volver al nombre de servicio predeterminado "%s" - + Example: Ejemplo: - + X11 X11 @@ -2374,82 +2398,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for No usar el Administrador de Ventanas de X11 - + Syntax error. Error de Sintaxis. - + Data Location Ubicación de Datos - + Current path: Ubicación actual: - + Custom path: Ubicación nueva: - + Browse for new data file location. Buscar una nueva ubicación para los datos. - + Set the data location to the default. Restablecer la ubicación original para los datos. - + Cancel Cancelar - + Cancel OpenLP data directory location change. Cancelar el cambio del directorio de datos de OpenLP. - + Copy data to new location. Copiar datos a nueva ubicación. - + Copy the OpenLP data files to the new location. Copiar los datos de OpenLP a un nuevo directorio. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ADVERTENCIA:</strong> El nuevo directorio contiene archivos de datos de OpenLP. Estos archivos serán reemplazados durante la copia. - + Data Directory Error Error en Directorio de Datos - + Select Data Directory Location Seleccione Ubicación de Datos - + Confirm Data Directory Change Confirme Cambio de Directorio - + Reset Data Directory Reestablecer Directorio de Datos - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2458,47 +2482,99 @@ This location will be used after OpenLP is closed. Esta ubicación se utilizará luego de cerrar OpenLP. - + Overwrite Existing Data Sobrescribir los Datos Actuales + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + No se encontró el Directorio de Datos + +%s + +Este directorio fue cambiado de su ubicación por defecto anteriormente. +Si su nueva ubicación es un medio extraible, este medio debe estar presente. + +Presione "No" para detener OpenLP y permitirle corregir el problema. + +Presione "Si" para cambiar el directorio de datos a su ubicación habitual. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Desea cambiar la ubicación del directorio de datos de OpenLP a la siguiente: + +%s + +El directorio se cambiará una vez que OpenLP se cierre. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + ADVERTENCIA: + +La ubicación seleccionada + +%s + +contiene archivos de datos de OpenLP aparentemente. Desea reemplazar estos archivos con los actuales? + OpenLP.ExceptionDialog - + Error Occurred - Se presento un Error + Se presentó un error - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - ¡Oh! OpenLP encontró un problema, y no pudo recuperarse. El texto en el cuadro siguiente contiene información que podría ser útil para los desarrolladores de OpenLP, por favor envíe un correo a bugs@openlp.org, junto con una descripción detallada de lo que estaba haciendo cuando se produjo el problema. + ¡Oh! OpenLP encontró un problema y no pudo recuperarse. El texto en el cuadro siguiente contiene información que podría ser útil para los desarrolladores de OpenLP; por favor, envíe un correo a bugs@openlp.org junto con una descripción detallada de lo que estaba haciendo cuando se produjo el problema. - + Send E-Mail Enviar E-Mail - + Save to File - Guardar Archivo + Guardar archivo - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Por favor ingrese una descripción de lo que hacia al ocurrir el error + Por favor ingrese una descripción de lo que hacía al ocurrir el error (Mínimo 20 caracteres) - + Attach File - Adjuntar Archivo + Adjuntar archivo - + Description characters to enter : %s Caracteres restantes: %s @@ -2506,24 +2582,24 @@ Esta ubicación se utilizará luego de cerrar OpenLP. OpenLP.ExceptionForm - + Platform: %s Plataforma: %s - + Save Crash Report - Guardar Reporte de Errores + Guardar reporte de errores - + Text files (*.txt *.log *.text) Archivos de texto (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2554,7 +2630,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2571,18 +2647,18 @@ Version: %s Please add the information that bug reports are favoured written in English. *Reporte de Errores OpenLP* -(Nota: Reporte de preferencia en Inglés) +(Nota: se prefieren reportes en inglés) Version: %s --- Detalles de la Excepción. --- %s - --- Ratreo de Excepción --- + --- Rastreo de Excepción --- %s --- Información del sistema --- %s ---- Versión de Librerias --- +--- Versión de Bibliotecas --- %s @@ -2590,35 +2666,35 @@ Version: %s OpenLP.FileRenameForm - + File Rename - Cambiar Nombre + Cambiar nombre de archivo - + New File Name: - Nombre Nuevo: + Nombre nuevo: - + File Copy - Copiar Archivo + Copiar archivo OpenLP.FirstTimeLanguageForm - + Select Translation - Seleccionar Idioma + Seleccionar idioma - + Choose the translation you'd like to use in OpenLP. Elija la traducción que desea utilizar en OpenLP. - + Translation: Traducción: @@ -2626,192 +2702,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Canciones - + First Time Wizard Asistente Inicial - + Welcome to the First Time Wizard Bienvenido al Asistente Inicial - + Activate required Plugins Activar complementos necesarios - + Select the Plugins you wish to use. Seleccione los complementos que desea usar. - + Bible Biblia - + Images Imágenes - + Presentations Presentaciones - + Media (Audio and Video) Medios (Audio y Video) - + Allow remote access Permitir acceso remoto - - - Monitor Song Usage - Historial de las Canciones - + Monitor Song Usage + Historial de las canciones + + + Allow Alerts - Permitir Alertas + Permitir alertas - + Default Settings - Configuración Predeterminada + Configuración predeterminada - + Downloading %s... Descargando %s... - + Download complete. Click the finish button to start OpenLP. - Descarga completa. Presione finalizar para iniciar OpenLP. + Descarga completa. Presione Finalizar para iniciar OpenLP. - + Enabling selected plugins... Habilitando complementos seleccionados... - + No Internet Connection - Sin Conexión a Internet + Sin conexión a Internet - + Unable to detect an Internet connection. No se detectó una conexión a Internet. - + Sample Songs - Canciones de Muestra + Canciones de muestra - + Select and download public domain songs. Seleccionar y descargar canciones de dominio público. - + Sample Bibles - Biblias de Muestra + Biblias de muestra - + Select and download free Bibles. Seleccionar y descargar Biblias gratuitas. - + Sample Themes - Temas de Muestra + Temas de muestra - + Select and download sample themes. Seleccionar y descargar temas de muestra. - + Set up default settings to be used by OpenLP. Utilizar la configuración predeterminada. - + Default output display: Pantalla predeterminada: - + Select default theme: Tema por defecto: - + Starting configuration process... Iniciando proceso de configuración... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Este asistente configurará OpenLP para su uso inicial. Presione el botón Siguiente para iniciar. - + Setting Up And Downloading Configurando & Descargando - + Please wait while OpenLP is set up and your data is downloaded. Por favor espere mientras OpenLP se configura e importa los datos. - + Setting Up Configurando - + Click the finish button to start OpenLP. Presione finalizar para iniciar OpenLP. - + Download complete. Click the finish button to return to OpenLP. Descarga completa. Presione finalizar para iniciar OpenLP. - + Click the finish button to return to OpenLP. Presione finalizar para iniciar OpenLP. - + Custom Slides Diapositivas - + Finish Finalizar - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2820,7 +2896,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Para abrir posteriormente este asistente e importar dicho material, revise su conexión a Internet y seleccione desde el menú "Herramientas/Abrir Asistente Inicial" en OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2832,37 +2908,37 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTagDialog - + Configure Formatting Tags Configurar Etiquetas de Formato - + Edit Selection Editar Selección - + Save Guardar - + Description Descripción - + Tag Etiqueta - + Start HTML Inicio HTML - + End HTML Final HTML @@ -2870,32 +2946,32 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTagForm - + Update Error Error de Actualización - + Tag "n" already defined. Etiqueta "n" ya definida. - + New Tag Etiqueta nueva - + <HTML here> <HTML aquí> - + </and here> </and aquí> - + Tag %s already defined. Etiqueta %s ya definida. @@ -2903,82 +2979,82 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.FormattingTags - + Red Rojo - + Black Negro - + Blue Azul - + Yellow Amarillo - + Green Verde - + Pink Rosado - + Orange Anaranjado - + Purple Morado - + White Blanco - + Superscript Superíndice - + Subscript Subíndice - + Paragraph Párrafo - + Bold Negrita - + Italics Cursiva - + Underline Subrayado - + Break Salto @@ -2986,122 +3062,122 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.GeneralTab - + General General - + Monitors Monitores - + Select monitor for output display: Seleccionar monitor para proyectar: - + Display if a single screen Mostar si solo hay una pantalla - + Application Startup Inicio de la Aplicación - + Show blank screen warning Mostrar advertencia de pantalla en blanco - + Automatically open the last service Abrir automáticamente el último servicio - + Show the splash screen Mostrar pantalla de bienvenida - + Application Settings Configuración del Programa - + Prompt to save before starting a new service Ofrecer guardar antes de abrir un servicio nuevo - + Automatically preview next item in service Vista previa automática del siguiente elemento en el servicio - + sec seg - + CCLI Details Detalles de CCLI - + SongSelect username: Usuario SongSelect: - + SongSelect password: Contraseña SongSelect: - + X X - + Y Y - + Height Altura - + Width Ancho - + Check for updates to OpenLP Buscar actualizaciones para OpenLP - + Unblank display when adding new live item Mostar proyección al agregar un elemento nuevo - + Timed slide interval: Intervalo de diapositivas: - + Background Audio Audio de Fondo - + Start background audio paused Iniciar audio de fondo en pausa @@ -3111,12 +3187,12 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora Límites de Diapositivas - + Override display position: Personalizar la posición de pantalla - + Repeat track list Repetir la lista de pistas @@ -3144,12 +3220,12 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.LanguageManager - + Language Idioma - + Please restart OpenLP to use your new language setting. Por favor reinicie OpenLP para usar su nuevo idioma. @@ -3157,7 +3233,7 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.MainDisplay - + OpenLP Display Pantalla de OpenLP @@ -3165,287 +3241,287 @@ Para detener el Asistente Inicial (y no iniciar OpenLP), presione Cancelar ahora OpenLP.MainWindow - + &File &Archivo - + &Import &Importar - + &Export &Exportar - + &View &Ver - + M&ode M&odo - + &Tools &Herramientas - + &Settings &Preferencias - + &Language &Idioma - + &Help A&yuda - + Media Manager Gestor de Medios - + Service Manager Gestor de Servicio - + Theme Manager Gestor de Temas - + &New &Nuevo - + &Open &Abrir - + Open an existing service. Abrir un servicio existente. - + &Save &Guardar - + Save the current service to disk. Guardar el servicio actual en el disco. - + Save &As... Guardar &Como... - + Save Service As Guardar Servicio Como - + Save the current service under a new name. Guardar el servicio actual con un nombre nuevo. - + E&xit &Salir - + Quit OpenLP Salir de OpenLP - + &Theme &Tema - + &Configure OpenLP... &Configurar OpenLP... - + &Media Manager Gestor de &Medios - + Toggle Media Manager Alternar Gestor de Medios - + Toggle the visibility of the media manager. Alernar la visibilidad del gestor de medios. - + &Theme Manager Gestor de &Temas - + Toggle Theme Manager Alternar Gestor de Temas - + Toggle the visibility of the theme manager. Alernar la visibilidad del gestor de temas. - + &Service Manager Gestor de &Servicio - + Toggle Service Manager Alternar Gestor de Servicio - + Toggle the visibility of the service manager. Alernar la visibilidad del gestor de servicio. - + &Preview Panel &Panel de Vista Previa - + Toggle Preview Panel Alternar Panel de Vista Previa - + Toggle the visibility of the preview panel. Alernar la visibilidad del panel de vista previa. - + &Live Panel Panel de Pro&yección - + Toggle Live Panel Alternar Panel de Proyección - + Toggle the visibility of the live panel. Alternar la visibilidad del panel de proyección. - + &Plugin List Lista de &Complementos - + List the Plugins Lista de Complementos - + &User Guide Guía de &Usuario - + &About &Acerca de - + More information about OpenLP Más información acerca de OpenLP - + &Online Help Ayuda En &Línea - + &Web Site Sitio &Web - + Use the system language, if available. Usar el idioma del sistema, si esta disponible. - + Set the interface language to %s Fijar el idioma de la interface en %s - + Add &Tool... Agregar &Herramienta... - + Add an application to the list of tools. Agregar una aplicación a la lista de herramientas. - + &Default Pre&determinado - + Set the view mode back to the default. Establecer el modo de vizualización predeterminado. - + &Setup &Administración - + Set the view mode to Setup. Modo de Administración. - + &Live En &vivo - + Set the view mode to Live. Modo de visualización.en Vivo. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3454,108 +3530,108 @@ You can download the latest version from http://openlp.org/. Puede descargar la última versión desde http://openlp.org/. - + OpenLP Version Updated Versión de OpenLP Actualizada - + OpenLP Main Display Blanked Pantalla Principal de OpenLP en Blanco - + The Main Display has been blanked out La Pantalla Principal se ha puesto en blanco - + Default Theme: %s Tema predeterminado: %s - + English Please add the name of your language here Español - + Configure &Shortcuts... Configurar &Atajos... - + Close OpenLP Cerrar OpenLP - + Are you sure you want to close OpenLP? ¿Desea salir de OpenLP? - + Open &Data Folder... Abrir Folder de &Datos... - + Open the folder where songs, bibles and other data resides. Abrir el folder donde se almacenan las canciones, biblias y otros datos. - + &Autodetect &Autodetectar - + Update Theme Images Actualizar Miniatura de Temas - + Update the preview images for all themes. Actualiza la imagen de vista previa de todos los temas. - + Print the current service. Imprimir Orden del Servicio actual. - + &Recent Files Archivos &recientes - + L&ock Panels Fi&jar Páneles - + Prevent the panels being moved. Prevenir que los páneles se muevan. - + Re-run First Time Wizard Abrir Asistente Inicial - + Re-run the First Time Wizard, importing songs, Bibles and themes. Abrir el asistente inicial para importar canciones, Biblias y temas. - + Re-run First Time Wizard? ¿Abrir Asistente Inicial? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3564,43 +3640,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Abrir este asistente altera la configuración actual de OpenLP y posiblemente agregará canciones a su base de datos y cambiará el Tema predeterminado. - + Clear List Clear List of recent files Borrar Lista - + Clear the list of recent files. Borrar la lista de archivos recientes. - + Configure &Formatting Tags... Configurar &Etiquetas de Formato... - + Export OpenLP settings to a specified *.config file Exportar preferencias de OpenLP al archivo *.config especificado - + Settings Preferencias - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importar preferencias de OpenLP desde un archivo *.config exportado previamente en cualquier ordenador - + Import settings? ¿Importar preferencias? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3613,50 +3689,77 @@ Al importar preferencias, la configuración actual de OpenLP cambiará permanent Utilizar preferencias incorrectas puede causar un comportamiento errático y el cierre inesperado de OpenLP. - + Open File Abrir Archivo - + OpenLP Export Settings Files (*.conf) Archivos de Preferencias OpenLP (*.conf) - + Import settings Importar preferencias - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP se cerrará. Las preferencias importadas se aplicarán la próxima vez que inicie OpenLP. - + Export Settings File Exportar Archivo de Preferencias - + OpenLP Export Settings File (*.conf) Archivo de Preferencias OpenLP (*.conf) - + New Data Directory Error Error en el Nuevo Directorio de Datos + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + El archivo seleccionado parece ser un archivo válido de configuración OpenLP. + +La sección [%s] no es válida + +Se ha detenido el procesamiento, no se realizaron cambios. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Copiando datos OpenLP a una nueva ubicación - %s - Por favor espere a que finalice la copia + + + + OpenLP Data directory copy failed + +%s + Copia del directorio de datos OpenLP fallida + +%s + OpenLP.Manager - + Database Error Error en Base de datos - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3665,7 +3768,7 @@ Database: %s Base de Datos: %s - + OpenLP cannot load your database. Database: %s @@ -3677,74 +3780,74 @@ Base de datos: %s OpenLP.MediaManagerItem - + No Items Selected Nada Seleccionado - + &Add to selected Service Item &Agregar al elemento del Servico - + You must select one or more items to preview. Debe seleccionar uno o más elementos para previsualizar. - + You must select one or more items to send live. Debe seleccionar uno o más elementos para proyectar. - + You must select one or more items. Debe seleccionar uno o más elementos. - + You must select an existing service item to add to. Debe seleccionar un elemento existente al cual adjuntar. - + Invalid Service Item Elemento de Servicio inválido - + You must select a %s service item. Debe seleccionar un elemento %s del servicio. - + You must select one or more items to add. Debe seleccionar uno o más elementos para agregar. - + No Search Results Sin Resultados - + Invalid File Type Tipo de Archivo Inválido - + Invalid File %s. Suffix not supported Archivo inválido %s. Extensión no admitida - + &Clone &Duplicar - + Duplicate files were found on import and were ignored. Se encontraron archivos duplicados y se ignoraron. @@ -3752,12 +3855,12 @@ Extensión no admitida OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Etiqueta <lyrics> faltante. - + <verse> tag is missing. Etiqueta <verse> faltante. @@ -3765,42 +3868,42 @@ Extensión no admitida OpenLP.PluginForm - + Plugin List Lista de Complementos - + Plugin Details Detalles del Complemento - + Status: Estado: - + Active Activo - + Inactive Inactivo - + %s (Inactive) %s (Inactivo) - + %s (Active) %s (Activo) - + %s (Disabled) %s (Desabilitado) @@ -3808,12 +3911,12 @@ Extensión no admitida OpenLP.PrintServiceDialog - + Fit Page Ajustar a Página - + Fit Width Ajustar a Ancho @@ -3821,77 +3924,77 @@ Extensión no admitida OpenLP.PrintServiceForm - + Options Opciones - + Copy Copiar - + Copy as HTML Copiar como HTML - + Zoom In Acercar - + Zoom Out Alejar - + Zoom Original Zoom Original - + Other Options Otras Opciones - + Include slide text if available Incluir texto de diapositivas si está disponible - + Include service item notes Incluir notas de los elementos del servicio - + Include play length of media items Incluir la duración de los medios - + Add page break before each text item Agregar salto de página antes de cada elemento - + Service Sheet Hoja de Servicio - + Print Imprimir - + Title: Título: - + Custom Footer Text: Texto para pié de página: @@ -3899,12 +4002,12 @@ Extensión no admitida OpenLP.ScreenList - + Screen Pantalla - + primary principal @@ -3912,12 +4015,12 @@ Extensión no admitida OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Inicio</strong>: %s - + <strong>Length</strong>: %s <strong>Duración</strong>: %s @@ -3925,7 +4028,7 @@ Extensión no admitida OpenLP.ServiceItemEditForm - + Reorder Service Item Reorganizar Elemento de Servicio @@ -3933,287 +4036,298 @@ Extensión no admitida OpenLP.ServiceManager - + Move to &top Mover al &inicio - + Move item to the top of the service. Mover el elemento al inicio del servicio. - + Move &up S&ubir - + Move item up one position in the service. Mover el elemento una posición hacia arriba. - + Move &down Ba&jar - + Move item down one position in the service. Mover el elemento una posición hacia abajo. - + Move to &bottom Mover al &final - + Move item to the end of the service. Mover el elemento al final del servicio. - + &Delete From Service &Eliminar Del Servicio - + Delete the selected item from the service. Eliminar el elemento seleccionado del servicio. - + &Add New Item &Agregar Nuevo Elemento - + &Add to Selected Item &Agregar al Elemento Seleccionado - + &Edit Item &Editar Elemento - + &Reorder Item &Reorganizar Elemento - + &Notes &Notas - + &Change Item Theme &Cambiar Tema de elemento - + OpenLP Service Files (*.osz) Archivo de Servicio OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Este no es un servicio válido. La codificación del contenido no es UTF-8. - + File is not a valid service. El archivo de servicio es inválido. - + Missing Display Handler Controlador de Pantalla Faltante - + Your item cannot be displayed as there is no handler to display it No se puede mostrar el elemento porque no hay un controlador de pantalla disponible - + Your item cannot be displayed as the plugin required to display it is missing or inactive El elemento no se puede mostar porque falta el complemento requerido o esta desabilitado - + &Expand all &Expandir todo - + Expand all the service items. Expandir todos los elementos del servicio. - + &Collapse all &Colapsar todo - + Collapse all the service items. Colapsar todos los elementos del servicio. - + Open File Abrir Archivo - + Moves the selection down the window. Mover selección hacia abajo. - + Move up Subir - + Moves the selection up the window. Mover selección hacia arriba. - + Go Live Proyectar - + Send the selected item to Live. Proyectar el elemento seleccionado. - + &Start Time &Tiempo de Inicio - + Show &Preview Mostrar &Vista Previa - + Modified Service Servicio Modificado - + The current service has been modified. Would you like to save this service? El servicio actual a sido modificado. ¿Desea guardar este servicio? - + Custom Service Notes: Notas Personales del Servicio: - + Notes: Notas: - + Playing time: Tiempo de reproducción: - + Untitled Service Servicio Sin nombre - + File could not be opened because it is corrupt. No se pudo abrir el archivo porque está corrompido. - + Empty File Archivo Vacio - + This service file does not contain any data. El archivo de servicio no contiene ningún dato. - + Corrupt File Archivo Corrompido - + Load an existing service. Abrir un servicio existente. - + Save this service. Guardar este servicio. - + Select a theme for the service. Seleccione un tema para el servicio. - + This file is either corrupt or it is not an OpenLP 2.0 service file. El archivo está corrupto o no es un archivo OpenLP 2.0 válido. - - Service File Missing - Archivo de Servicio faltante - - - + Slide theme Tema de diapositiva - + Notes Notas - + Edit Editar - + Service copy only Copia unicamente - + Error Saving File Error al Guardar Archivo - + There was an error saving your file. Ocurrió un error al guardar su archivo. + + + Service File(s) Missing + Archivo(s) de Servicio Extraviado + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + El siguiente archivo(s) no está presente: +<byte value="x9"/>%s + +Si continua, el archivo(s) será removido al guardar. + OpenLP.ServiceNoteForm - + Service Item Notes Notas de Elemento de Servicio @@ -4221,7 +4335,7 @@ La codificación del contenido no es UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configurar OpenLP @@ -4229,67 +4343,67 @@ La codificación del contenido no es UTF-8. OpenLP.ShortcutListDialog - + Action Acción - + Shortcut Atajo - + Duplicate Shortcut Duplicar Atajo - + The shortcut "%s" is already assigned to another action, please use a different shortcut. El atajo "%s" esta asignado a otra acción, por favor utilize un atajo diferente. - + Alternate Secundario - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Seleccione una acción y presione uno de los botones para capturar un nuevo atajo primario y secundario, respectivamente. - + Default Predeterminado - + Custom Personalizado - + Capture shortcut. Capturar atajo. - + Restore the default shortcut of this action. Restuarar el atajo predeterminado para esta acción. - + Restore Default Shortcuts Restaurar los Atajos Predeterminados - + Do you want to restore all shortcuts to their defaults? ¿Quiere restaurar todos los atajos a su valor original? - + Configure Shortcuts Configurar Atajos @@ -4297,172 +4411,172 @@ La codificación del contenido no es UTF-8. OpenLP.SlideController - + Hide Ocultar - + Go To Ir A - + Blank Screen Pantalla en Blanco - + Blank to Theme Proyectar el Tema - + Show Desktop Mostrar Escritorio - + Previous Service Servicio Anterior - + Next Service Servicio Siguiente - + Escape Item Salir de Elemento - + Move to previous. Ir al anterior. - + Move to next. Ir al siguiente. - + Play Slides Reproducir diapositivas - + Delay between slides in seconds. Tiempo entre diapositivas en segundos. - + Move to live. Proyectar. - + Add to Service. Agregar al Servicio. - + Edit and reload song preview. Editar y actualizar la vista previa. - + Start playing media. Reproducir medios. - + Pause audio. Pausar Audio. - + Pause playing media. Pausar medio en reproducción. - + Stop playing media. Detener medio en reproducción. - + Video position. Posición de video. - + Audio Volume. Volumen de audio. - + Go to "Verse" Ir a "Verso" - + Go to "Chorus" Ir a "Coro" - + Go to "Bridge" Ir a "Puente" - + Go to "Pre-Chorus" Ir a "Pre-Coro" - + Go to "Intro" Ir a "Intro" - + Go to "Ending" Ir a "Final" - + Go to "Other" Ir a "Otro" - + Previous Slide Diapositiva anterior - + Next Slide Diapositiva siguiente - + Pause Audio Pausar Audio - + Background Audio Audio de Fondo - + Go to next audio track. Ir a la siguiente pista de audio. - + Tracks Pistas @@ -4470,17 +4584,17 @@ La codificación del contenido no es UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Sugerencias Ortográficas - + Formatting Tags Etiquetas de Formato - + Language: Idioma: @@ -4488,615 +4602,627 @@ La codificación del contenido no es UTF-8. OpenLP.StartTimeForm - + Hours: Horas: - + Minutes: Minutos: - + Seconds: Segundos: - + Item Start and Finish Time Tiempo de Inicio y Final - + Start Inicio - + Finish Final - + Length Duración - + Time Validation Error Error de Validación de Tiempo - + Finish time is set after the end of the media item El tiempo fiinal se establece al final del elemento - + Start time is after the finish time of the media item El tiempo inicial se establece al final del elemento - + Theme Layout Distribución del Tema - + The blue box shows the main area. El cuadro azul muestra el área principal. - + The red box shows the footer. El cuadro rojo muestra el pié de página. - - OpenLP.ThemeForm - - - Select Image - Seleccionar Imagen - - - - Theme Name Missing - Falta Nombre de Tema - - - - There is no name for this theme. Please enter one. - No existe nombre para este tema. Ingrese uno. - - - - Theme Name Invalid - Nombre de Tema inválido - - - - Invalid theme name. Please enter one. - Nombre de tema inválido. Por favor ingrese uno. - - - - (approximately %d lines per slide) - (aproximadamente %d líneas por diapositiva) - - OpenLP.ThemeManager - + Create a new theme. Crear un tema nuevo. - + Edit Theme Editar Tema - + Edit a theme. Editar un tema. - + Delete Theme Eliminar Tema - + Delete a theme. Eliminar un tema. - + Import Theme Importar Tema - + Import a theme. Importa un tema. - + Export Theme Exportar Tema - + Export a theme. Exportar un tema. - + &Edit Theme &Editar Tema - + &Delete Theme Elimi&nar Tema - + Set As &Global Default &Global, por defecto - + %s (default) %s (predeterminado) - + You must select a theme to edit. Debe seleccionar un tema para editar. - + You are unable to delete the default theme. No se puede eliminar el tema predeterminado. - + Theme %s is used in the %s plugin. El tema %s se usa en el complemento %s. - + You have not selected a theme. No ha seleccionado un tema. - + Save Theme - (%s) Guardar Tema - (%s) - + Theme Exported Tema Exportado - + Your theme has been successfully exported. Su tema a sido exportado exitosamente. - + Theme Export Failed La importación falló - + Your theme could not be exported due to an error. No se pudo exportar el tema dedido a un error. - + Select Theme Import File Seleccione el Archivo de Tema a Importar - + File is not a valid theme. El archivo no es un tema válido. - + &Copy Theme &Copiar Tema - + &Rename Theme &Renombrar Tema - + &Export Theme &Exportar Tema - + You must select a theme to rename. Debe seleccionar un tema para renombrar. - + Rename Confirmation Confirmar Cambio de Nombre - + Rename %s theme? ¿Renombrar el tema %s? - + You must select a theme to delete. Debe seleccionar un tema para eliminar. - + Delete Confirmation Confirmar Eliminación - + Delete %s theme? ¿Eliminar el tema %s? - + Validation Error Error de Validación - + A theme with this name already exists. Ya existe un tema con este nombre. - + OpenLP Themes (*.theme *.otz) Tema OpenLP (*.theme *otz) - + Copy of %s Copy of <theme name> Copia de %s - + Theme Already Exists Este Tema Ya Existe + + + Theme %s already exists. Do you want to replace it? + El Tema %s ya existe. Desea reemplazarlo? + OpenLP.ThemeWizard - + Theme Wizard Asistente para Temas - + Welcome to the Theme Wizard Bienvenido al Asistente para Temas - + Set Up Background Establecer un fondo - + Set up your theme's background according to the parameters below. Establecer el fondo de su tema según los siguientes parámetros. - + Background type: Tipo de fondo: - + Solid Color Color Sólido - + Gradient Gradiente - + Color: Color: - + Gradient: Gradiente: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Arriba Izquierda - Abajo Derecha - + Bottom Left - Top Right Abajo Izquierda - Abajo Derecha - + Main Area Font Details Fuente del Área Principal - + Define the font and display characteristics for the Display text Definir la fuente y las características para el texto en Pantalla - + Font: Fuente: - + Size: Tamaño: - + Line Spacing: Epaciado de Líneas: - + &Outline: &Contorno: - + &Shadow: &Sombra: - + Bold Negrita - + Italic Cursiva - + Footer Area Font Details Fuente de Pié de página - + Define the font and display characteristics for the Footer text Definir la fuente y las características para el texto de Pié de página - + Text Formatting Details Detalles de Formato - + Allows additional display formatting information to be defined Permite definir información adicional de formato - + Horizontal Align: Alinea. Horizontal: - + Left Izquierda - + Right Derecha - + Center Centro - + Output Area Locations Ubicación del Área de Proyección - + Allows you to change and move the main and footer areas. Le permite mover y cambiar la ubicación del área principal y de pié de página. - + &Main Area Área &Principal - + &Use default location &Usar ubicación predeterminada - + X position: Posición x: - + px px - + Y position: Posición y: - + Width: Ancho: - + Height: Altura: - + Use default location Usar ubicaciónpredeterminada - + Theme name: Nombre: - + Edit Theme - %s Editar Tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Este asistente le ayudará a crear y editar temas. Presione Siguiente para iniciar el proceso al establecer el fondo. - + Transitions: Transiciones: - + &Footer Area &Pie de Página - + Starting color: Color inicial: - + Ending color: Color final: - + Background color: Color de fondo: - + Justify Justificar - + Layout Preview Vista previa de Distribución - + Transparent Transparente - + Preview and Save Previsualizar y Guardar - + Preview the theme and save it. Previsualizar el tema y guardarlo. + + + (approximately %d lines per slide) + (aproximadamente %d líneas por diapositiva) + + + + Background Image Empty + Imagen de Fondo Vacía + + + + You have not selected a background image. Please select one before continuing. + No ha seleccionado una imagen de fondo. Seleccione una antes de continuar. + + + + Select Image + Seleccionar Imagen + + + + Theme Name Missing + Nombre de Tema faltante + + + + There is no name for this theme. Please enter one. + No existe nombre para este tema. Ingrese uno. + + + + Theme Name Invalid + Nombre de Tema inválido + + + + Invalid theme name. Please enter one. + Nombre de tema inválido. Por favor ingrese uno. + OpenLP.ThemesTab - + Global Theme Tema Global - + Theme Level Nivel - + S&ong Level &Canción - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Utilizar el tema de la canción en la base de datos. Si una canción no tiene un tema asociado, utilizar el tema del servicio. Si el servicio no tiene un tema, utilizar el tema global. - + &Service Level &Servicio - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Utilizar el tema del servicio ignorando los temas individuales. Si el servicio no tiene un tema, utilizar el tema global. - + &Global Level &Global - + Use the global theme, overriding any themes associated with either the service or the songs. Utilizar el tema global, ignorado los temas asociados con el servicio o con las canciones. - + Themes Temas @@ -5104,315 +5230,315 @@ La codificación del contenido no es UTF-8. OpenLP.Ui - + Error Error - + About Acerca de - + &Add &Agregar - + Advanced Avanzado - + All Files Todos los Archivos - + Bottom Inferior - + Browse... Explorar... - + Cancel Cancelar - + CCLI number: Número CCLI: - + Create a new service. Crear un servicio nuevo. - + &Delete &Eliminar - + &Edit &Editar - + Empty Field Campo Vacío - + Export Exportar - + pt Abbreviated font pointsize unit pto - + Image Imagen - + Import Importar - + Live En vivo - + Live Background Error Error del Fondo de proyección - + Load Cargar - + Middle Medio - + New Nuevo - + New Service Servicio Nuevo - + New Theme Tema Nuevo - + No File Selected Singular Archivo No Seleccionado - + No Files Selected Plural Archivos No Seleccionados - + No Item Selected Singular Nada Seleccionado - + No Items Selected Plural Nada Seleccionado - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Vista previa - + Replace Background Reemplazar Fondo - + Reset Background Restablecer Fondo - + s The abbreviated unit for seconds s - + Save && Preview Guardar && Previsualizar - + Search Buscar - + You must select an item to delete. Debe seleccionar un elemento para eliminar. - + You must select an item to edit. Debe seleccionar un elemento para editar. - + Save Service Guardar Servicio - + Service Servicio - + Start %s Inicio %s - + Theme Singular Tema - + Themes Plural Temas - + Top Superior - + Version Versión - + Delete the selected item. Eliminar el elemento seleccionado. - + Move selection up one position. Mover selección un espacio hacia arriba. - + Move selection down one position. Mover selección un espacio hacia abajo. - + &Vertical Align: Alinea. &Vertical: - + Finished import. Importación finalizada. - + Format: Formato: - + Importing Importando - + Importing "%s"... Importando "%s"... - + Select Import Source Seleccione la Fuente para Importar - + Select the import format and the location to import from. Seleccione el formato a importar y su ubicación. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Se ha deshabilitado el importador openlp.org 1.x debido a la falta de un módulo Python. Si desea utilizar este importador, debe instalar el módulo "python-sqlite". - + Open %s File Abrir %s Archivo - + %p% %p% - + Ready. Listo. - + Starting import... Iniciando importación... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Debe especificar un archivo %s para importar. @@ -5423,299 +5549,304 @@ La codificación del contenido no es UTF-8. Bienvenido al Asistente para Biblias - + Welcome to the Song Export Wizard Bienvenido al Asistente para Exportar Canciones - + Welcome to the Song Import Wizard Bienvenido al Asistente para Importar Canciones - + Author Singular Autor - + Authors Plural Autores - - © + + © Copyright symbol. © - + Song Book Singular Himnario - + Song Books Plural Himnarios - + Song Maintenance Administración de Canciones - + Topic Singular Categoría - + Topics Plural Categorías - + Continuous Continuo - + Default Predeterminado - + Display style: Estilo de presentación: - + Duplicate Error Error de Duplicación - + File Archivos - + Help Ayuda - + h The abbreviated unit for hours h - + Layout style: Distribución: - + Live Toolbar Barra de Proyección - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP ya esta abierto. ¿Desea continuar? - + Settings Preferencias - + Tools Herramientas - + Unsupported File Archivo Inválido - + Verse Per Slide Versículo por Diapositiva - + Verse Per Line Versículo por Línea - + View Vista - + Title and/or verses not found Título y/o versos no encontrados - + XML syntax error Error XML de sintaxis - + View Mode Disposición - + Open service. Abrir Servicio. - + Print Service Imprimir Servicio - + Replace live background. Reemplazar el fondo proyectado. - + Reset live background. Restablecer el fondo proyectado. - + Split a slide into two only if it does not fit on the screen as one slide. Dividir la diapositiva, solo si no se puede mostrar como una sola. - + Welcome to the Bible Upgrade Wizard Bienvenido al Asistente para Actualizar Biblias - + Confirm Delete Confirmar Eliminación - + Play Slides in Loop Reproducir en Bucle - + Play Slides to End Reproducir hasta el final - + Stop Play Slides in Loop Detener Bucle - + Stop Play Slides to End Detener presentación - + Next Track Pista Siguiente - + Search Themes... Search bar place holder text Buscar Temas... - + Optional &Split &División Opcional - + Invalid Folder Selected Singular Carpeta Inválida - + Invalid File Selected Singular Archivo Inválido - + Invalid Files Selected Plural Archivos Inválidos - + No Folder Selected Singular Ninguna Carpeta Seleccionada - + Open %s Folder Abrir Carpeta %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Debe especificar un archivo %s para importar. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Debe especificar una carpeta %s para importar. + + + Importing Songs + Importando Canciones + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 y %2 - + %1, and %2 Locale list separator: end %1, y %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5724,50 +5855,50 @@ La codificación del contenido no es UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Complemento de Presentaciones</strong><br />El complemento de presentaciones permite mostrar presentaciones, usando diversos programas. La selección del programa se realiza por medio de una casilla de selección. - + Presentation name singular Presentación - + Presentations name plural Presentaciones - + Presentations container title Presentaciones - + Load a new presentation. Cargar una Presentación nueva. - + Delete the selected presentation. Eliminar la presentación seleccionada. - + Preview the selected presentation. Vista Previa de la presentación seleccionada. - + Send the selected presentation live. Proyectar la presentación seleccionada. - + Add the selected presentation to the service. Agregar esta presentación al servicio. @@ -5775,52 +5906,52 @@ La codificación del contenido no es UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Seleccionar Presentación(es) - + Automatic Automático - + Present using: Mostrar usando: - + File Exists Ya existe el Archivo - + A presentation with that filename already exists. Ya existe una presentación con este nombre. - + This type of presentation is not supported. No se admite este tipo de presentación. - + Presentations (%s) Presentaciones (%s) - + Missing Presentation Presentación faltante - + The presentation %s is incomplete, please reload. La presentación %s está incompleta, cárgela nuevamente. - + The presentation %s no longer exists. La presentación %s ya no existe. @@ -5828,17 +5959,17 @@ La codificación del contenido no es UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Controladores Disponibles - + %s (unavailable) %s (no disponible) - + Allow presentation application to be overridden Permitir tomar el control del programa de presentación @@ -5846,24 +5977,24 @@ La codificación del contenido no es UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Acceso Remoto</strong><br />El acceso remoto le permite enviar mensajes a otra versión del programa en un equipo diferente, por medio del navegador de internet o por medio de API. - + Remote name singular Remoto - + Remotes name plural Remotos - + Remote container title Acceso remoto @@ -5872,236 +6003,246 @@ La codificación del contenido no es UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remoto - + OpenLP 2.0 Stage View OpenLP 2.0 Vista del Escenario - + Service Manager Gestor de Servicio - + Slide Controller Control de Diapositivas - + Alerts Alertas - + Search Buscar - + Refresh Refrezcar - + Blank En blanco - + Show Mostrar - + Prev Anterior - + Next Siguiente - + Text Texto - + Show Alert Mostrar Alerta - + Go Live Proyectar - + No Results Sin Resultados - + Options Opciones - + Add to Service Agregar al Servicio - + Home Inicio - + Theme Tema - + Desktop Escritorio - + Add &amp; Go to Service Agregar e Ir al Servicio + + + Service + Servicio + + + + Slides + Diapositivas + RemotePlugin.RemoteTab - + Serve on IP address: Dirección IP a Servir: - + Port number: Puerto número: - + Server Settings Config. de Servidor - + Remote URL: URL Remota: - + Stage view URL: URL Administración: - + Display stage time in 12h format Usar formato de 12h en pantalla de Administración - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Escanee el código QR o haga clic en <a href="https://market.android.com/details?id=org.openlp.android">descargar</a> para instalar el Android app. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Escanee el código QR o haga clic en <a href="https://play.google.com/store/apps/details?id=org.openlp.android">descargar</a> para instalar el Android app. SongUsagePlugin - + &Song Usage Tracking &Historial de Uso - + &Delete Tracking Data &Eliminar datos de Historial - + Delete song usage data up to a specified date. Borrar los datos del historial hasta la fecha especificada. - + &Extract Tracking Data &Extraer datos de Historial - + Generate a report on song usage. Generar un reporte del historial de uso de las canciones. - + Toggle Tracking Activar Historial - + Toggle the tracking of song usage. Encender o apagar el historial del uso de las canciones. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Historial</strong><br />Este complemento mantiene un registro del número de veces que se usa una canción en los servicios. - + SongUsage name singular Historial - + SongUsage name plural Historiales - + SongUsage container title Historial - + Song Usage Historial - + Song usage tracking is active. Monitoreo de historial activo. - + Song usage tracking is inactive. Monitoreo de historial inactivo. - + display mostrar - + printed impreso @@ -6109,32 +6250,32 @@ La codificación del contenido no es UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Borrar historial de canción - + Delete Selected Song Usage Events? ¿Borrar el historial de esta canción? - + Are you sure you want to delete selected Song Usage data? ¿Desea borrar los datos del historial de la canción seleccionada? - + Deletion Successful Limpieza Exitosa - + All requested data has been deleted successfully. Todos los datos han sido borrados exitosamente. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Seleccione la fecha desde la cual borrar el historial. Todos los datos guardados antes de esta fecha serán borrados permanentemente. @@ -6142,42 +6283,42 @@ La codificación del contenido no es UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Extracción del Historial - + Select Date Range Seleccionar Rango de Fechas - + to hasta - + Report Location Ubicación de Reporte - + Output File Location Archivo de Salida - + usage_detail_%s_%s.txt historial_%s_%s.txt - + Report Creation Crear Reporte - + Report %s has been successfully created. @@ -6186,12 +6327,12 @@ has been successfully created. se ha creado satisfactoriamente. - + Output Path Not Selected Ruta de salida no seleccionada - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. No se ha establecido una ubicación válida para el archivo de reporte. Por favor seleccione una ubicación en su equipo. @@ -6199,112 +6340,112 @@ se ha creado satisfactoriamente. SongsPlugin - + &Song &Canción - + Import songs using the import wizard. Importar canciones usando el asistente. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Complemento de Canciones</strong><br />El complemento de canciones permite mostar y editar canciones. - + &Re-index Songs &Re-indexar Canciones - + Re-index the songs database to improve searching and ordering. Reorganiza la base de datos para mejorar la busqueda y ordenamiento. - + Reindexing songs... Reindexando canciones... - + Arabic (CP-1256) Árabe (CP-1256) - + Baltic (CP-1257) Báltico (CP-1257) - + Central European (CP-1250) Europa Central (CP-1250) - + Cyrillic (CP-1251) Cirílico (CP-1251) - + Greek (CP-1253) Griego (CP-1253) - + Hebrew (CP-1255) Hebreo (CP-1255) - + Japanese (CP-932) Japonés (CP-932) - + Korean (CP-949) Koreano (CP-949) - + Simplified Chinese (CP-936) Chino Simplificado (CP-936) - + Thai (CP-874) Tailandés (CP-874) - + Traditional Chinese (CP-950) Chino Tradicional (CP-950) - + Turkish (CP-1254) Turco (CP-1254) - + Vietnam (CP-1258) Vietnamita (CP-1258) - + Western European (CP-1252) Europa Occidental (CP-1252) - + Character Encoding Codificación de Caracteres - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6313,100 +6454,105 @@ por la correcta representación de los caracteres. Por lo general, la opción preseleccionada es la adecuada. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Por favor elija una codificación de caracteres. La codificación se encarga de la correcta representación de caracteres. - + Song name singular Canción - + Songs name plural Canciones - + Songs container title Canciones - + Exports songs using the export wizard. Exportar canciones usando el asistente. - + Add a new song. Agregar una canción nueva. - + Edit the selected song. Editar la canción seleccionada. - + Delete the selected song. Eliminar la canción seleccionada. - + Preview the selected song. Vista Previa de la canción seleccionada. - + Send the selected song live. Proyectar la canción seleccionada. - + Add the selected song to the service. Agregar esta canción al servicio. + + + Reindexing songs + Reindexando canciones + SongsPlugin.AuthorsForm - + Author Maintenance Administración de Autores - + Display name: Mostrar: - + First name: Nombre: - + Last name: Apellido: - + You need to type in the first name of the author. Debe escribir el nombre del autor. - + You need to type in the last name of the author. Debe ingresar el apellido del autor. - + You have not set a display name for the author, combine the first and last names? No a establecido un nombre para mostrar, ¿desea unir el nombre y el apellido? @@ -6414,7 +6560,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. El archivo no tiene una extensión válida. @@ -6422,12 +6568,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administrado por %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6439,12 +6585,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EditBibleForm - + Meta Data Metadatos - + Custom Book Names Nombres Personalizados @@ -6452,207 +6598,202 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EditSongForm - + Song Editor Editor de Canción - + &Title: &Título: - + Alt&ernate title: Título alt&ernativo: - + &Lyrics: &Letras: - + &Verse order: Orden de &versos: - + Ed&it All Ed&itar Todo - + Title && Lyrics Título && Letra - + &Add to Song &Agregar a Canción - + &Remove &Quitar - + &Manage Authors, Topics, Song Books Ad&ministrar Autores, Categorías, Himnarios - + A&dd to Song A&gregar a Canción - + R&emove &Quitar - + Book: Libro: - + Number: Número: - + Authors, Topics && Song Book Autores, Categorías e Himnarios - + New &Theme &Tema Nuevo - + Copyright Information Información de Derechos de Autor - + Comments Comentarios - + Theme, Copyright Info && Comments Tema, Derechos de Autor && Comentarios - + Add Author Agregar Autor - + This author does not exist, do you want to add them? Este autor no existe, ¿desea agregarlo? - + This author is already in the list. Este autor ya esta en la lista. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. No ha seleccionado un autor válido. Seleccione un autor de la lista o ingrese un nombre nuevo y presione el botón "Agregar Autor a Canción" para agregar el autor nuevo. - + Add Topic Agregar Categoría - + This topic does not exist, do you want to add it? Esta categoría no existe, ¿desea agregarla? - + This topic is already in the list. Esta categoría ya esta en la lista. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. No seleccionado una categoría válida. Seleccione una categoría de la lista o ingrese un nombre nuevo y presione el botón "Agregar Categoría a Canción" para agregar la categoría nueva. - + You need to type in a song title. Debe escribir un título. - + You need to type in at least one verse. Debe agregar al menos un verso. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. El orden del verso es inválido. Ningún verso corresponde a %s. Las entradas válidas son %s. - + Add Book Agregar Himnario - + This song book does not exist, do you want to add it? Este himnario no existe, ¿desea agregarlo? - + You need to have an author for this song. Debe ingresar un autor para esta canción. - - You need to type some text in to the verse. - Debe ingresar algún texto en el verso. - - - + Linked Audio Audio Asociado - + Add &File(s) Agregar &Archivo(s) - + Add &Media Agregar &Medio - + Remove &All Quitar &Todo - + Open File(s) Abrir Archivo(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Advertencia:</strong> No se han utilizado todos los versos. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. El orden de los versos es inválido. Ningún verso corresponde a %s. Las entradas válidas son %s. @@ -6660,22 +6801,22 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.EditVerseForm - + Edit Verse Editar Verso - + &Verse type: Tipo de &verso: - + &Insert &Insertar - + Split a slide into two by inserting a verse splitter. Insertar un separador para dividir la diapositiva. @@ -6683,82 +6824,82 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ExportWizardForm - + Song Export Wizard Asistente para Exportar Canciones - + Select Songs Seleccione Canciones - + Check the songs you want to export. Revise las canciones a exportar. - + Uncheck All Desmarcar Todo - + Check All Marcar Todo - + Select Directory Seleccione un Directorio - + Directory: Directorio: - + Exporting Exportando - + Please wait while your songs are exported. Por favor espere mientras se exportan las canciones. - + You need to add at least one Song to export. Debe agregar al menos una Canción para exportar. - + No Save Location specified Destino no especificado - + Starting export... Iniciando exportación... - + You need to specify a directory. Debe especificar un directorio. - + Select Destination Folder Seleccione Carpeta de Destino - + Select the directory where you want the songs to be saved. Seleccionar el directorio para guardar las canciones. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Este asistente le ayudará a exportar canciones al formato gratuito y de código abierto <strong>OpenLyrics</strong>. @@ -6766,172 +6907,172 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Seleccione Documento/Presentación - + Song Import Wizard Asistente para Exportar Canciones - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Este asistente le ayudará a importar canciones de diversos formatos. Presione Siguiente para iniciar el proceso al seleccionar un formato a importar. - + Generic Document/Presentation Documento/Presentación genérica - + Add Files... Agregar Archivos... - + Remove File(s) Eliminar Archivo(s) - + Please wait while your songs are imported. Por favor espere mientras se exportan las canciones. - + OpenLP 2.0 Databases Base de Datos OpenLP 2.0 - + openlp.org v1.x Databases Base de datos openlp v1.x - + Words Of Worship Song Files Archivo Words Of Worship - + Songs Of Fellowship Song Files Archivo Songs Of Fellowship - + SongBeamer Files Archivo SongBeamer - + SongShow Plus Song Files Archivo SongShow Plus - + Foilpresenter Song Files Archivo Foilpresenter - + Copy Copiar - + Save to File Guardar a Archivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador de Songs of Fellowship se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. El importador documento/presentación se ha deshabilitado porque OpenOffice.org o LibreOffice no esta disponible. - + OpenLyrics or OpenLP 2.0 Exported Song Canción exportada de OpenLyrics o OpenLP 2.0 - + OpenLyrics Files Archivos OpenLyrics - + CCLI SongSelect Files Archivos CCLI SongSelect - + EasySlides XML File Archivo EasySlides XML - + EasyWorship Song Database Base de Datos EasyWorship - + DreamBeam Song Files Archivos de Canción DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Debe especificar un folder de datos PowerSong 1.0 válido. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Primero convierta su base de datos ZionWork a un archivo de texto CSV, como se explica en el <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual de Usuario</a>. - + SundayPlus Song Files Archivos de SundayPlus - + This importer has been disabled. Este importador se ha deshabilitado. - + MediaShout Database Base de datos MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. El importador MediaShout se puede usar en windows únicamente. Se ha deshabilitado porque falta un módulo Python. Debe instalar el módulo "pyodbc" para usar este importador. - + SongPro Text Files Archivos de texto SongPro - + SongPro (Export File) SongPro (Archivo Exportado) - + In SongPro, export your songs using the File -> Export menu En SongPro, puede exportar canciones en el menú Archivo -> Exportar @@ -6939,12 +7080,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.MediaFilesForm - + Select Media File(s) Seleccionar Archivo(s) de Medios - + Select one or more audio files from the list below, and click OK to import them into this song. Seleccione uno o más archivos de audio de la lista, presione OK para incluirlos en esta canción. @@ -6952,63 +7093,66 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.MediaItem - + Titles Títulos - + Lyrics Letra - + CCLI License: Licensia CCLI: - + Entire Song Canción Completa - + Are you sure you want to delete the %n selected song(s)? - ¿Desea borrar %n canción seleccionada?¿Desea borrar las %n canciones seleccionadas? + + ¿Desea borrar %n canción seleccionada? + ¿Desea borrar las %n canciones seleccionadas? + - + Maintain the lists of authors, topics and books. Administrar la lista de autores, categorías e himnarios. - + copy For song cloning duplicar - + Search Titles... Buscar Títulos... - + Search Entire Song... Buscar Canción Completa... - + Search Lyrics... Buscar Letras... - + Search Authors... Buscar Autores... - + Search Song Books... Buscar Himnarios... @@ -7016,7 +7160,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. No se logró abrir la base de datos MediaShout @@ -7024,7 +7168,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Base de datos openlp.org 1.x no válida. @@ -7032,7 +7176,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Base de datos OpenLP 2.0 no válida. @@ -7040,7 +7184,7 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportando "%s"... @@ -7048,35 +7192,55 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.PowerSongImport - + No songs to import. No hay canciones para importar. - + Verses not found. Missing "PART" header. Versos no encontrados. Falta encabezado "PART" + + + No %s files found. + Ningún archivo %s encontrado. + + + + Invalid %s file. Unexpected byte value. + Archivo %s inválido. Valor de byte inesperado. + + + + Invalid %s file. Missing "TITLE" header. + Archivo %s inválido.Falta encabezado "TITLE" + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Archivo %s inválido.Falta encabezado "COPYRIGHTLINE" + SongsPlugin.SongBookForm - + Song Book Maintenance Administración de Himnarios - + &Name: &Nombre: - + &Publisher: &Editor: - + You need to type in a name for the book. Debe ingresar un nombre para el himnario. @@ -7084,12 +7248,12 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongExportForm - + Your song export failed. La importación falló. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportación finalizada. Use el importador <strong>OpenLyrics</strong> para estos archivos. @@ -7097,27 +7261,27 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongImport - + copyright derechos de autor - + The following songs could not be imported: Las siguientes canciones no se importaron: - + Cannot access OpenOffice or LibreOffice Imposible accesar OpenOffice o LibreOffice - + Unable to open file No se puede abrir el archivo - + File not found Archivo no encontrado @@ -7125,107 +7289,107 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongMaintenanceForm - + Could not add your author. No se pudo agregar el autor. - + This author already exists. Este autor ya existe. - + Could not add your topic. No se pudo agregar la categoría. - + This topic already exists. Esta categoría ya existe. - + Could not add your book. No se pudo agregar el himnario. - + This book already exists. Este himnario ya existe. - + Could not save your changes. No se pudo guardar los cambios. - + Could not save your modified author, because the author already exists. No se pudo guardar el autor, porque este ya existe. - + Could not save your modified topic, because it already exists. No se pudo guardar la categoría, porque esta ya existe. - + Delete Author Borrar Autor - + Are you sure you want to delete the selected author? ¿Desea eliminar el autor seleccionado? - + This author cannot be deleted, they are currently assigned to at least one song. No se puede eliminar el autor, esta asociado con al menos una canción. - + Delete Topic Borrar Categoría - + Are you sure you want to delete the selected topic? ¿Desea eliminar la categoría seleccionada? - + This topic cannot be deleted, it is currently assigned to at least one song. No se puede eliminar la categoría, esta asociada con al menos una canción. - + Delete Book Eliminar Libro - + Are you sure you want to delete the selected book? ¿Desea eliminar el himnario seleccionado? - + This book cannot be deleted, it is currently assigned to at least one song. Este himnario no se puede eliminar, esta asociado con al menos una canción. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? El autor %s ya existe. ¿Desea que las canciones con el autor %s utilizen el existente %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? La categoría %s ya existe. ¿Desea que las canciones con la categoría %s utilizen la existente %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? El himnario %s ya existe. ¿Desea que las canciones con el himnario %s utilizen el existente %s? @@ -7233,27 +7397,27 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.SongsTab - + Songs Mode Modo de canciones - + Enable search as you type Buscar a medida que se escribe - + Display verses on live tool bar Mostar los versos en la barra de proyección - + Update service from song edit Actualizar servicio desde el editor - + Import missing songs from service files Importar canciones faltantes desde archivos de servicio @@ -7261,17 +7425,17 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.TopicsForm - + Topic Maintenance Administración de Categorías - + Topic name: Categoría: - + You need to type in a topic name. Debe escribir un nombre para la categoría. @@ -7279,37 +7443,37 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.VerseType - + Verse Verso - + Chorus Coro - + Bridge Puente - + Pre-Chorus Pre-Coro - + Intro Intro - + Ending Final - + Other Otro @@ -7317,14 +7481,29 @@ La codificación se encarga de la correcta representación de caracteres. SongsPlugin.ZionWorxImport - + Error reading CSV file. Error al leer el archivo CSV. - + File not valid ZionWorx CSV format. Archivo ZionWorx CSV inválido. + + + Line %d: %s + Línea %d: %s + + + + Decoding error: %s + Error de decodificación: %s + + + + Record %d + Registrar %d + - \ No newline at end of file + diff --git a/resources/i18n/et.ts b/resources/i18n/et.ts index e6573b458..204792b9a 100644 --- a/resources/i18n/et.ts +++ b/resources/i18n/et.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Teade - + Show an alert message. Teate kuvamine. - + Alert name singular Teade - + Alerts name plural Teated - + Alerts container title Teated - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Teadete plugin</strong><br />Teadete plugina abil saab ekraanil näidata näiteks lastehoiu või muid teateid. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Teate sõnum - + Alert &text: Teate &tekst: - + &New &Uus - + &Save &Salvesta - + Displ&ay &Kuva - + Display && Cl&ose Kuva && &sulge - + New Alert Uus teade - + You haven't specified any text for your alert. Please type in some text before clicking New. Sa ei ole oma teatele teksti lisanud. Enne nupu Uus vajutamist sisesta mingi tekst. - + &Parameter: &Parameeter: - + No Parameter Found Parameetreid ei leitud - + You have not entered a parameter to be replaced. Do you want to continue anyway? Sa ei ole sisestanud parameetrit, mida asendada. Kas tahad siiski jätkata? - + No Placeholder Found Kohahoidjat ei leitud - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Teate tekst ei sisalda '<>' märke. Kas tahad siiski jätkata? @@ -118,32 +119,32 @@ Kas tahad siiski jätkata? AlertsPlugin.AlertsTab - + Font Font - + Font name: Fondi nimi: - + Font color: Teksti värvus: - + Background color: Tausta värvus: - + Font size: Teksti suurus: - + Alert timeout: Teate kestus: @@ -151,510 +152,510 @@ Kas tahad siiski jätkata? BiblesPlugin - + &Bible &Piibel - + Bible name singular Piibel - + Bibles name plural Piiblid - + Bibles container title Piiblid - + No Book Found Ühtegi raamatut ei leitud - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Sellest Piiblist ei leitud vastavat raamatut. Kontrolli, kas sa sisestasid raamatu nime õigesti. - + Import a Bible. Piibli importimine. - + Add a new Bible. Uue Piibli lisamine. - + Edit the selected Bible. Valitud Piibli muutmine. - + Delete the selected Bible. Valitud Piibli kustutamine. - + Preview the selected Bible. Valitud Piibli eelvaade. - + Send the selected Bible live. Valitud Piibli saatmine ekraanile. - + Add the selected Bible to the service. Valitud Piibli lisamine teenistusele. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Piibli plugin</strong><br />Piibli plugin võimaldab kuvada teenistuse ajal eri allikatest piiblisalme. - + &Upgrade older Bibles &Uuenda vanemad Piiblid - + Upgrade the Bible databases to the latest format. Piiblite andmebaaside uuendamine uusimasse vormingusse. - + Genesis 1. Moosese - + Exodus 2. Moosese - + Leviticus 3. Moosese - + Numbers 4. Moosese - + Deuteronomy 5. Moosese - + Joshua Joosua - + Judges Kohtumõistjate - + Ruth Rutt - + 1 Samuel 1. Saamueli - + 2 Samuel 2. Saamueli - + 1 Kings 1. Kuningate - + 2 Kings 2. Kuningate - + 1 Chronicles 1. Ajaraamat - + 2 Chronicles 2. Ajaraamat - + Ezra Esra - + Nehemiah Nehemja - + Esther Ester - + Job Iiob - + Psalms Psalmid - + Proverbs Õpetussõnad - + Ecclesiastes Koguja - + Song of Solomon Ülemlaul - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Nutulaulud - + Ezekiel Hesekiel - + Daniel Taaniel - + Hosea Hoosea - + Joel Joel - + Amos Aamos - + Obadiah Obadja - + Jonah Joona - + Micah Miika - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Sefanja - + Haggai Haggai - + Zechariah Sakarja - + Malachi Malaki - + Matthew Matteuse - + Mark Markuse - + Luke Luuka - + John Johannese - + Acts Apostlite teod - + Romans Roomlastele - + 1 Corinthians 1. Korintlastele - + 2 Corinthians 2. Korintlastele - + Galatians Galaatlastele - + Ephesians Efeslastele - + Philippians Filiplastele - + Colossians Koloslastele - + 1 Thessalonians 1. Tessalooniklastele - + 2 Thessalonians 2. Tessalooniklastele - + 1 Timothy 1. Timoteosele - + 2 Timothy 2. Timoteosele - + Titus Tiitusele - + Philemon Fileemonile - + Hebrews Heebrealastele - + James Jaakobuse - + 1 Peter 1. Peetruse - + 2 Peter 2. Peetruse - + 1 John 1. Johannese - + 2 John 2. Johannese - + 3 John 3. Johannese - + Jude Juuda - + Revelation Ilmutus - + Judith Juudit - + Wisdom Saalomoni tarkuse raamat - + Tobit Toobit - + Sirach Siirak - + Baruch Baaruk - + 1 Maccabees 1. Makkabite - + 2 Maccabees 2. Makkabite - + 3 Maccabees 3. Makkabite - + 4 Maccabees 4. Makkabite - + Rest of Daniel Taanieli raamatu lisad - + Rest of Esther Estri raamatu lisad - + Prayer of Manasses Manasse palved - + Letter of Jeremiah Jeremija kiri - + Prayer of Azariah Asarja palve - + Susanna Susanna - + Bel Bel - + 1 Esdras 1. Esdra - + 2 Esdras 2. Esdra - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|s|S|salm|salmid|v|V;;-|kuni;;,|ja|and;;lõpp|end @@ -663,32 +664,32 @@ Kas tahad siiski jätkata? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Sa pead Piibli versioonile määrama nime. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Sa pead Piibli autoriõiguse omaniku määrama. Kui Piibel kuulub üldsuse omandisse (Public domain), siis märgi see vastavalt. - + Bible Exists Piibel on juba olemas - + This Bible already exists. Please import a different Bible or first delete the existing one. Piibel on juba olemas. Impordi Piibel teise nimega või kustuta enne olemasolev Piibel. - + You need to specify a book name for "%s". Pead "%s" jaoks raamatu nime määrama. - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -696,12 +697,12 @@ be followed by one or more non-numeric characters. Numbrid võivad asuda ainult alguses ning nende järel peab olema mõni täht. - + Duplicate Book Name Dubleeriv raamatu nimi - + The Book Name "%s" has been entered more than once. Raamatu nimi "%s" on juba ühe korra sisestatud. @@ -709,39 +710,39 @@ Numbrid võivad asuda ainult alguses ning nende järel peab olema mõni täht. BiblesPlugin.BibleManager - + Scripture Reference Error Kirjakohaviite tõrge - + Web Bible cannot be used Veebipiiblit pole võimalik kasutada - + Text Search is not available with Web Bibles. Tekstiotsing veebipiiblist pole võimalik. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Sa ei sisestanud otsingusõna. Sa võid eraldada võtmesõnad tühikuga, et otsida neid kõiki, või eraldada need komaga, et otsitaks ühte neist. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Praegu pole ühtegi Piiblit paigaldatud. Palun paigalda mõni Piibel importimise nõustaja abil. - + No Bibles Available Ühtegi Piiblit pole saadaval - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -764,79 +765,79 @@ Raamat peatükk%(verse)ssalm%(range)speatükk%(verse)ssalm BiblesPlugin.BiblesTab - + Verse Display Salmi kuvamine - + Only show new chapter numbers Kuvatakse ainult uute peatükkide numbreid - + Bible theme: Piibli kujundus: - + No Brackets Ilma sulgudeta - + ( And ) ( ja ) - + { And } { ja } - + [ And ] [ ja ] - + Note: Changes do not affect verses already in the service. Märkus: Muudatused ei rakendu juba teenistuses olevatele salmidele. - + Display second Bible verses Piiblit kuvatakse kahes keeles - + Custom Scripture References Kohandatud kirjakohaviited - + Verse Separator: Salmide eraldaja: - + Range Separator: Vahemike eraldaja: - + List Separator: Loendi eraldaja: - + End Mark: Lõpu märk: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -845,7 +846,7 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -854,7 +855,7 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -863,7 +864,7 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -872,29 +873,29 @@ Need tuleb eraldada püstkriipsuga |. Vaikeväärtuse kasutamiseks jäta rida tühjaks. - + English Inglise - + Default Bible Language Piibli vaikimisi keel - + Book name language in search field, search results and on display: Raamatu nimede keel otsinguväljal, otsingutulemustes ja ekraanil: - + Bible Language Piibli keel - + Application Language Rakenduse keel @@ -902,42 +903,42 @@ otsingutulemustes ja ekraanil: BiblesPlugin.BookNameDialog - + Select Book Name Vali raamatu nimi - + Current name: Praegune nimi: - + Corresponding name: Vastav nimi: - + Show Books From Näidatakse ainult - + Old Testament Vana testament - + New Testament Uus testament - + Apocrypha Apokrüüfid - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Järgneva raamatu nimele ei leitud vastet. Palun vali õige nimi loetelust. @@ -945,7 +946,7 @@ otsingutulemustes ja ekraanil: BiblesPlugin.BookNameForm - + You need to select a book. Pead valima raamatu. @@ -953,18 +954,18 @@ otsingutulemustes ja ekraanil: BiblesPlugin.CSVBible - + Importing books... %s Raamatute importimine... %s - + Importing verses from %s... Importing verses from <book name>... Salmide importimine raamatust %s... - + Importing verses... done. Salmide importimine... valmis. @@ -972,69 +973,69 @@ otsingutulemustes ja ekraanil: BiblesPlugin.EditBibleForm - + Bible Editor Piibliredaktor - + License Details Litsentsi andmed - + Version name: Versiooni nimi: - + Copyright: Autoriõigus: - + Permissions: Lubatud: - + Default Bible Language Piibli vaikimisi keel - + Book name language in search field, search results and on display: Raamatu nime keel otsinguväljal, otsingutulemustes ja ekraanil: - + Global Settings Globaalsätted - + Bible Language Piibli keel - + Application Language Rakenduse keel - + English Inglise - + This is a Web Download Bible. It is not possible to customize the Book Names. See on veebipiibel. Veebipiibli raamatute nimesid pole võimalik muuta. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Kohandatud raamatunimede kasutamiseks peab metaandmete kaardil või, kui kasutatakse "Globaalsätteid", Piibli lehel OpenLP seadistuse all olema valitud "Piibli keel". @@ -1042,38 +1043,38 @@ Veebipiibli raamatute nimesid pole võimalik muuta. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Piibli registreerimine ja raamatute laadimine... - + Registering Language... Keele registreerimine... - + Importing %s... Importing <book name>... Raamatu %s importimine... - + Download Error Tõrge allalaadimisel - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Valitud salmide allalaadimisel esines viga. Kontrolli oma internetiühendust ning kui see viga kordub, teata sellest veast. - + Parse Error Parsimise viga - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Sinu salmide vahemiku analüüsimisel esines viga. Kui see viga kordub, siis palun teata sellest veast. @@ -1251,17 +1252,17 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. BiblesPlugin.LanguageDialog - + Select Language Keele valimine - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ei suuda tuvastada selle piiblitõlke keelt. Palun vali keel järgnevast loendist. - + Language: Keel: @@ -1269,7 +1270,7 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. BiblesPlugin.LanguageForm - + You need to choose a language. Pead valima keele. @@ -1277,92 +1278,92 @@ vastavalt vajadusele ning seetõttu on vaja internetiühendust. BiblesPlugin.MediaItem - + Quick Kiirotsing - + Find: Otsing: - + Book: Raamat: - + Chapter: Peatükk: - + Verse: Salm: - + From: Algus: - + To: Kuni: - + Text Search Tekstiotsing - + Second: Teine: - + Scripture Reference Salmiviide - + Toggle to keep or clear the previous results. Vajuta eelmiste tulemuste säilitamiseks või eemaldamiseks. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Ühe- ja kahekeelseid piiblisalmide otsitulemusi pole võimalik kombineerida. Kas tahad otsingu tulemused kustutada ja alustada uue otsinguga? - + Bible not fully loaded. Piibel ei ole täielikult laaditud. - + Information Andmed - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Teine Piibel ei sisalda kõiki salme, mis on peamises Piiblis. Näidatakse ainult neid salme, mis leiduvad mõlemas Piiblis. %d salmi ei kaasatud tulemustesse. - + Search Scripture Reference... Piibliviite otsing... - + Search Text... Teksti otsing... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1374,7 +1375,7 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. See piibli fail ei ole õiges vormingus. OpenSong vormingus piiblid võivad olla pakitud. Enne importimist pead need lahti pakkima. @@ -1382,7 +1383,7 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s. peatüki importimine... @@ -1391,12 +1392,12 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Kooditabeli tuvastamine (see võib võtta mõne minuti)... - + Importing %s %s... Importing <book name> <chapter>... %s %s. peatüki importimine... @@ -1405,149 +1406,149 @@ Et jälle seda piiblit kasutada, pead selle uuesti importima. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Varunduskataloogi valimine - + Bible Upgrade Wizard Piibli uuendamise nõustaja - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. See nõustaja aitab uuendada olemasolevaid Piibleid eelnevatelt OpenLP 2 versioonidelt. Uuendamise alustamiseks klõpsa edasi. - + Select Backup Directory Varunduskausta valimine - + Please select a backup directory for your Bibles Vali oma Piiblitele varunduskataloog - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Eelmised OpenLP 2.0 versioonid ei suuda kasutada uuendatud Piibleid. Sellega luuakse sinu praegustest Piiblistest varukoopia, et sa saaksid failid kopeerida tagasi OpenLP andmekataloogi, kui sa pead minema tagasi OpenLP eelmisele versioonile. Juhised failide taastamiseks leiad <a href="http://wiki.openlp.org/faq">Korduma Kippuvatest Küsimustest</a>. - + Please select a backup location for your Bibles. Palun vali oma Piiblite varundamise jaoks kataloog. - + Backup Directory: Varunduskataloog: - + There is no need to backup my Bibles Pole vajadust mu Piibleid varundada - + Select Bibles Piiblite valimine - + Please select the Bibles to upgrade Palun vali Piiblid, mida uuendada - + Upgrading Uuendamine - + Please wait while your Bibles are upgraded. Palun oota, kuni Piibleid uuendatakse. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Varundamine ei õnnestunud. Piiblite varundamiseks peab sul olema õigus antud kataloogi kirjutada. - + Upgrading Bible %s of %s: "%s" Failed %s Piibli uuendamine %s-st : "%s" Nurjus - + Upgrading Bible %s of %s: "%s" Upgrading ... %s Piibli uuendamine %s-st : "%s" Uuendamine... - + Download Error Tõrge allalaadimisel - + To upgrade your Web Bibles an Internet connection is required. Veebipiiblite uuendamiseks on vajalik internetiühendus. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... %s Piibli uuendamine (kokku %s-st): "%s" %s uuendamine... - + Upgrading Bible %s of %s: "%s" Complete %s. Piibli uuendamine (kokku %s-st): "%s" Valmis - + , %s failed , %s nurjus - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Piibli(te) uuendamine: %s edukat%s Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on nende kasutamisel vaja internetiühendust. - + Upgrading Bible(s): %s successful%s Piibli(te) uuendamine: %s edukas%s - + Upgrade failed. Uuendamine nurjus. - + You need to specify a backup directory for your Bibles. Pead määrama Piiblite varundamise kataloogi. - + Starting upgrade... Uuendamise alustamine... - + There are no Bibles that need to be upgraded. Pole ühtegi Piiblit, mis vajaks uuendamist. @@ -1555,65 +1556,65 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Kohandatud slaidide plugin</strong><br />Kohandatud slaidide plugin võimaldab ekraanil oma tekstiga slaide kuvada, samuti nagu kuvatakse laule, kuid pakub suuremat vabadust kui laulude plugin. - + Custom Slide name singular Kohandatud slaid - + Custom Slides name plural Kohandatud slaidid - + Custom Slides container title Kohandatud slaidid - + Load a new custom slide. Uue kohandatud slaidi laadimine. - + Import a custom slide. Kohandatud slaidi importimine. - + Add a new custom slide. Uue kohandatud slaidi lisamine. - + Edit the selected custom slide. Valitud kohandatud slaidi muutmine. - + Delete the selected custom slide. Valitud kohandatud slaidi kustutamine. - + Preview the selected custom slide. Valitud kohandatud slaidi eelvaatlus. - + Send the selected custom slide live. Valitud kohandatud slaidi saatmine ekraanile. - + Add the selected custom slide to the service. Valitud kohandatud slaidi lisamine teenistusele. @@ -1621,12 +1622,12 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.CustomTab - + Custom Display Kohandatud kuva - + Display footer Jaluse kuvamine @@ -1634,62 +1635,62 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.EditCustomForm - + Edit Custom Slides Kohandatud slaidide muutmine - + &Title: &Pealkiri: - + Add a new slide at bottom. Uue slaidi lisamine kõige alumiseks. - + Edit the selected slide. Valitud slaidi muutmine. - + Edit all the slides at once. Kõigi slaidide muutmine ühekorraga. - + Split a slide into two by inserting a slide splitter. Slaidi lõikamine kaheks, sisestades slaidide eraldaja. - + The&me: &Kujundus: - + &Credits: &Autorid: - + You need to type in a title. Pead sisestama pealkirja. - + You need to add at least one slide Pead lisama vähemalt ühe slaidi - + Ed&it All Muuda &kõiki - + Insert Slide Uus slaid @@ -1697,7 +1698,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.EditVerseForm - + Edit Slide Slaidi redigeerimine @@ -1705,68 +1706,71 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Kas tahad kindlasti %n valitud kohandatud slaidi kustutada?Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? + + Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? + Kas tahad kindlasti %n valitud kohandatud slaidi kustutada? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Pildiplugin</strong><br />Pildiplugin võimaldab piltide kuvamise.<br />Üks selle plugina tähtsamaid võimalusi on piltide grupeerimine teenistuse halduris, muutes paljude piltide koos kuvamise lihtsamaks. See plugin võib kasutada ka ajastatud slaidivahetust automaatse slaidiesitluse tegemiseks. Lisaks sellele võib plugina pilte kasutada aktiivse kujunduse tausta asendamiseks. - + Image name singular Pilt - + Images name plural Pildid - + Images container title Pildid - + Load a new image. Uue pildi laadimine. - + Add a new image. Uue pildi lisamine. - + Edit the selected image. Valitud pildi muutmine. - + Delete the selected image. Valitud pildi kustutamine. - + Preview the selected image. Valitud pildi eelvaatlus. - + Send the selected image live. Valitud pildi saatmine ekraanile. - + Add the selected image to the service. Valitud pildi lisamine teenistusele. @@ -1774,7 +1778,7 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on ImagePlugin.ExceptionDialog - + Select Attachment Manuse valimine @@ -1782,44 +1786,44 @@ Pane tähele, et veebipiiblite salmid laaditakse internetist vajadusel, seega on ImagePlugin.MediaItem - + Select Image(s) Piltide valimine - + You must select an image to delete. Pead enne valima pildi, mida kustutada. - + You must select an image to replace the background with. Pead enne valima pildi, millega tausta asendada. - + Missing Image(s) Puuduvad pildid - + The following image(s) no longer exist: %s Järgnevaid pilte enam pole: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Järgnevaid pilte enam pole: %s Kas tahad teised pildid sellest hoolimata lisada? - + There was a problem replacing your background, the image file "%s" no longer exists. Tausta asendamisel esines viga, pildifaili "%s" enam pole. - + There was no display item to amend. Polnud ühtegi kuvatavat elementi, mida täiendada. @@ -1827,17 +1831,17 @@ Kas tahad teised pildid sellest hoolimata lisada? ImagesPlugin.ImageTab - + Background Color Taustavärv - + Default Color: Vaikimisi värvus: - + Visible background for images with aspect ratio different to screen. Tausta värvus piltidel, mille külgede suhe ei vasta ekraani küljesuhtele. @@ -1845,60 +1849,60 @@ Kas tahad teised pildid sellest hoolimata lisada? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Meediaplugin</strong><br />Meediaplugin võimaldab audio- ja videofailide taasesitamise. - + Media name singular Meedia - + Media name plural Meedia - + Media container title Meedia - + Load new media. Uue meedia laadimine. - + Add new media. Uue meedia lisamine. - + Edit the selected media. Valitud meedia muutmine. - + Delete the selected media. Valitud meedia kustutamine. - + Preview the selected media. Valitud meedia eelvaatlus. - + Send the selected media live. Valitud meedia saatmine ekraanile. - + Add the selected media to the service. Valitud meedia lisamine teenistusele. @@ -1906,57 +1910,57 @@ Kas tahad teised pildid sellest hoolimata lisada? MediaPlugin.MediaItem - + Select Media Meedia valimine - + You must select a media file to delete. Pead enne valima meedia, mida kustutada. - + You must select a media file to replace the background with. Pead enne valima meediafaili, millega tausta asendada. - + There was a problem replacing your background, the media file "%s" no longer exists. Tausta asendamisel esines viga, meediafaili "%s" enam pole. - + Missing Media File Puuduv meediafail - + The file %s no longer exists. Faili %s ei ole enam olemas. - + Videos (%s);;Audio (%s);;%s (*) Videod (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Polnud ühtegi kuvatavat elementi, mida täiendada. - + Unsupported File Fail pole toetatud: - + Automatic Automaatne - + Use Player: Kasutatav meediaesitaja: @@ -1964,22 +1968,22 @@ Kas tahad teised pildid sellest hoolimata lisada? MediaPlugin.MediaTab - + Available Media Players Saadaolevad meediaesitajad - + %s (unavailable) %s (pole saadaval) - + Player Order Esitajate järjestus - + Allow media player to be overridden Meediaesitajat saab käsitsi vahetada @@ -1987,17 +1991,17 @@ Kas tahad teised pildid sellest hoolimata lisada? OpenLP - + Image Files Pildifailid - + Information Andmed - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2009,37 +2013,61 @@ Kas OpenLP peaks kohe uuendamist alustama? OpenLP.AboutForm - + Credits Autorid - + License Litsents - - Contribute - Aita kaasa - - - + build %s kompileering %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. See programm on vaba tarkvara. Sa võid seda edasi levitada ja/või muuta vastavalt GNU Üldise Avaliku Litsentsi versiooni 2 (GNU GPL 2) tingimustele, nagu need on Vaba Tarkvara Fondi poolt avaldatud. - + This program 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 below for more details. Seda programmi levitatakse lootuses, et see on kasulik, kuid ILMA IGASUGUSE GARANTIITA; isegi KESKMISE/TAVALISE KVALITEEDI GARANTIITA või SOBIVUSELE TEATUD KINDLAKS EESMÄRGIKS. Üksikasjade suhtes vaata GNU Üldist Avalikku Litsentsi. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Osaline copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - avatud lähtekoodiga laulusõnade kuvaja + +OpenLP on tasuta kiriku esitlustarkvara või laulusõnade kuvaja, mis kuvab nii laule, piiblikohti, videoid, pilte ning isegi esitlusi (kui on paigaldatud Impress, PowerPoint või PowerPoint Viewer) kasutades selleks ainult arvutit ja projektorit. + +Uuri OpenLP kohta lähemalt: http://openlp.org + +OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem tasuta kristlikku tarkvara, siis võib-olla tahad ise vabatahtlikuna kaasa aidata? Klõpsa alumisele nupule + + + + Volunteer + Hakkan vabatahtlikuks + + + Project Lead %s @@ -2058,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2072,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2080,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,268 +2139,255 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projekti juht -%s + Projektijuht + %s Arendajad -%s + %s -Abilised -%s +Kaastöölised + %s Testijad -%s + %s Pakendajad -%s + %s Tõlkijad -Afrikaani (af) -%s -Saksa (de) -%s -Suurbritannia inglise (en_GB) -%s -Lõuna-Aafrika inglise (en_ZA) -%s -Eesti (et) -%s -Prantsuse (fr) -%s -Ungari (hu) -%s -Jaapani (ja) -%s -Norra (nb) -%s -Taani (nl) -%s -Brasiilia portugali (pt_BR) -%s -Vene (ru) -%s + Afrikaani (af) + %s + Tšehhi (cs) + %s + Taani (da) + %s + Saksa (de) + %s + Kreeka (el) + %s + Inglise, UK (en_GB) + %s + Inglise, Lõuna-Aafrika (en_ZA) + %s + Hispaania (es) + %s + Eesti (et) + %s + Prantsuse (fr) + %s + Ungari (hu) + %s + Jaapani (ja) + %s + Norra Bokmål (nb) + %s + Hollandi (nl) + %s + Portugali, Brasiilia (pt_BR) + %s + Vene (ru) + %s + Rootsi (sv) + %s Dokumentatsioon -%s + %s -Loodud kasutades -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygeni ikoonid: http://oxygen-icons.org/ +Valmistamiseks kasutati + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ Lõputänu -"Sest nõnda on Jumal maailma armastanud, -et ta oma ainusündinud Poja on andnud, -et ükski, kes temasse usub, ei hukkuks, vaid et -tal oleks igavene elu." -- Johannese 3:16 + "Sest nõnda on Jumal maailma armastanud, + et ta oma ainusündinud Poja on andnud, + et ükski, kes temasse usub, ei hukkuks, + vaid et tal oleks igavene elu." (Jh 3:16) -Lõpuks suurim tänu kuulub Jumalale, meie Isale, -kes saatis oma Poja ristile surema, et meid -vabastada pattudest. Me jagame seda tarkvara -tasuta, sest Tema on meid vabastanud. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - vaba tarkvara laulusõnade näitamiseks - -OpenLP on tasuta kiriku esitlustarkvara laulusõnade näitamiseks, mis näitab ka piiblisalme, videoid, pilte ja koguni esitlusi (kui on paigaldatud Impress, PowerPoint või PowerPoint Viewer), selleks on vaja arvutit ja projektorit. - -Uuri OpenLP kohta lähemalt: http://openlp.org/ - -OpenLP on kirjutanud ja seda haldavad vabatahtlikud. Kui sa tahad näha rohkem tasuta kristlikku tarkvara, kaalu kaasaaitamist, kasutades all asuvat nuppu. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Osaline copyright © 2004-2012 %s + Lõpuks kõige suurem tänu kuulub Jumalale, + meie Isale, kes saatis oma Poja ristile surema, + vabastades meid pattudest. Seda tarkvara + teeme ja jagame tasuta, sest Tema on meid + vabastanud. OpenLP.AdvancedTab - + UI Settings Kasutajaliidese sätted - + Number of recent files to display: Kuvatavate hiljutiste failide arv: - + Remember active media manager tab on startup Käivitumisel avatakse viimati avatud meediahalduri osa - + Double-click to send items straight to live Topeltklõps otse ekraanile saatmiseks - + Expand new service items on creation Uued teenistuse kirjed on loomisel laiendatud - + Enable application exit confirmation Rakenduse lõpetamise teabe lubamine - + Mouse Cursor Hiirekursor - + Hide mouse cursor when over display window Ekraaniakna kohal peidetakse hiirekursor - + Default Image Vaikimisi pilt - + Background color: Taustapilt: - + Image file: Pildifail: - + Open File Faili avamine - + Advanced Täpsem - + Preview items when clicked in Media Manager Meediahalduris klõpsamisel kuvatakse eelvaade - + Click to select a color. Klõpsa värvi valimiseks. - + Browse for an image file to display. Kuvatava pildi valimine. - + Revert to the default OpenLP logo. Vaikimisi OpenLP logo kasutamine. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Teenistus %Y-%m-%d %H-%M - + Default Service Name Teenistuse vaikimisi nimi - + Enable default service name Teenistuse vaikimisi nimi lubatud - + Date and Time: Kuupäev ja kellaaeg: - + Monday Esmaspäeval - + Tuesday Teisipäeval - + Wednesday Kolmapäeval - + Thurdsday Neljapäeval - + Friday Reedel - + Saturday Laupäeval - + Sunday Pühapäeval - + Now Praegu - + Time when usual service starts. Mis kell teenistus tavaliselt algab. - + Name: Nimi: - + Consult the OpenLP manual for usage. Kasutuse kohta lähemalt OpenLP käsiraamatust. - + Revert to the default service name "%s". Teenistuse vaikimisi vaikenime "%s" taastamine. - + Example: Näidis: - + X11 X11 @@ -2372,82 +2397,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11 aknahaldur jäetakse vahele - + Syntax error. Süntaksi viga. - + Data Location Andmete asukoht - + Current path: Praegune asukoht: - + Custom path: Kohandatud asukoht: - + Browse for new data file location. Sirvimine andmete faili uue asukoha leidmiseks. - + Set the data location to the default. Andmete vaikimisi asukoha taastamine. - + Cancel Loobu - + Cancel OpenLP data directory location change. Loobu OpenLP andmete kataloogi asukoha muutusest. - + Copy data to new location. Kopeeri andmed uude asukohta. - + Copy the OpenLP data files to the new location. OpenLP andmefailide kopeerimine uude asukohta. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>HOIATUS:</strong> Uus OpenLP andmefailide kataloog juba sisaldab andmefaile. Kopeerimisel need failid ASENDATAKSE. - + Data Directory Error Andmete kataloogi tõrge - + Select Data Directory Location Andmekausta asukoha valimine - + Confirm Data Directory Change Andmekausta muutmise kinnitus - + Reset Data Directory Taasta esialgne andmekaust - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2456,47 +2481,98 @@ This location will be used after OpenLP is closed. Seda asukohta kasutatakse pärast OpenLP sulgemist. - + Overwrite Existing Data Olemasolevate andmete ülekirjutamine + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP andmekataloogi ei leitud + +%s + +Andmekataloogi asukoht on varem muudetud ning see pole enam vaikimisi asukoht. Kui see oli määratud eemaldatavale andmekandjale, siis tuleb andmekandja enne ühendada. + +Klõpsa "Ei", et peatada OpenLP laadimine, mis võimaldab sul vea parandada. + +Klõpsa "Jah", et kasutada andmekataloogi vaikimisi asukohta. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Kas sa oled kindel, et tahad määrata OpenLP andmekataloogiks: + +%s + +Andmekataloog muudetakse OpenLP sulgemisel. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + HOIATUS: + +Tundub, et sinu valitud asukoht + +%s + +sisaldab juba OpenLP andmefaile. Kas sa tahad need failid arendada praeguste andmefailidega? + OpenLP.ExceptionDialog - + Error Occurred Esines viga - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Uups! OpenLP-s esines viga, millest pole võimalik taastada. Alumises kastis olev tekst võib olla kasulik OpenLP arendajatele, palun meili see aadressil bugs@openlp.org, koos täpse kirjeldusega sellest, mida sa parasjagu tegid, kui selline probleem esines. - + Send E-Mail Saada e-kiri - + Save to File Salvesta faili - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Palun kirjelda siin, mida sa parasjagu tegid, mis kutsus selle vea esile. (vähemalt 20 tähte) - + Attach File Pane fail kaasa - + Description characters to enter : %s Puuduvad tähed kirjelduses: %s @@ -2504,24 +2580,24 @@ Seda asukohta kasutatakse pärast OpenLP sulgemist. OpenLP.ExceptionForm - + Platform: %s Platvorm: %s - + Save Crash Report Vearaporti salvestamine - + Text files (*.txt *.log *.text) Tekstifailid (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2553,7 +2629,7 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. - + *OpenLP Bug Report* Version: %s @@ -2589,17 +2665,17 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. OpenLP.FileRenameForm - + File Rename Faili ümbernimetamine - + New File Name: Faili uus nimi: - + File Copy Faili kopeerimine @@ -2607,17 +2683,17 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. OpenLP.FirstTimeLanguageForm - + Select Translation Tõlke valimine - + Choose the translation you'd like to use in OpenLP. Vali keel, milles tahad OpenLP-d kasutada. - + Translation: Keel: @@ -2625,192 +2701,192 @@ Kui võimalik, kirjuta palun vearaport inglise keeles. OpenLP.FirstTimeWizard - + Songs Laulud - + First Time Wizard Esmakäivituse nõustaja - + Welcome to the First Time Wizard Tere tulemast esmakäivituse nõustajasse - + Activate required Plugins Vajalike pluginate sisselülitamine - + Select the Plugins you wish to use. Vali pluginad, mida tahad kasutada. - + Bible Piibel - + Images Pildid - + Presentations Esitlused - + Media (Audio and Video) Meedia (audio ja video) - + Allow remote access Kaugligipääs - + Monitor Song Usage Laulukasutuse monitooring - + Allow Alerts Teadaanded - + Default Settings Vaikimisi sätted - + Downloading %s... %s allalaadimine... - + Download complete. Click the finish button to start OpenLP. Allalaadimine lõpetatud. OpenLP käivitamiseks klõpsa lõpetamise nupule. - + Enabling selected plugins... Valitud pluginate sisselülitamine... - + No Internet Connection Internetiühendust pole - + Unable to detect an Internet connection. Internetiühendust ei leitud. - + Sample Songs Näidislaulud - + Select and download public domain songs. Vali ja laadi alla avalikku omandisse kuuluvaid laule. - + Sample Bibles Näidispiiblid - + Select and download free Bibles. Vabade Piiblite valimine ja allalaadimine. - + Sample Themes Näidiskujundused - + Select and download sample themes. Näidiskujunduste valimine ja allalaadimine. - + Set up default settings to be used by OpenLP. OpenLP jaoks vaikimisi sätete määramine. - + Default output display: Vaikimisi ekraani kuva: - + Select default theme: Vali vaikimisi kujundus: - + Starting configuration process... Seadistamise alustamine... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. See nõustaja aitab alguses OpenLP seadistada. Alustamiseks klõpsa edasi nupule. - + Setting Up And Downloading Seadistamine ja allalaadimine - + Please wait while OpenLP is set up and your data is downloaded. Palun oota, kuni OpenLP-d seadistatakse ja andmeid allalaaditakse. - + Setting Up Seadistamine - + Click the finish button to start OpenLP. OpenLP käivitamiseks klõpsa lõpetamise nupule. - + Download complete. Click the finish button to return to OpenLP. Allalaadimine lõpetatud. Klõpsa lõpetamise nupule, et naaseda OpenLP-sse. - + Click the finish button to return to OpenLP. Klõpsa lõpetamise nupule, et naaseda OpenLP-sse. - + Custom Slides Kohandatud slaidid - + Finish Lõpeta - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2819,7 +2895,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Esmakäivituse nõustaja hiljem uuesti käivitamiseks kontrolli oma internetiühendust ja käivita see nõustaja uuesti OpenLP menüüst "Tööriistad/Esmakäivituse nõustaja". - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2831,37 +2907,37 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTagDialog - + Configure Formatting Tags Vormindussiltide seadistamine - + Edit Selection Valiku muutmine - + Save Salvesta - + Description Kirjeldus - + Tag Märgis - + Start HTML Alustav HTML - + End HTML Lõpetav HTML @@ -2869,32 +2945,32 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTagForm - + Update Error Tõrge uuendamisel - + Tag "n" already defined. Märgis "n" on juba defineeritud. - + New Tag Uus märgis - + <HTML here> <HTML siia> - + </and here> </ja siia> - + Tag %s already defined. Märgis %s on juba defineeritud. @@ -2902,82 +2978,82 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.FormattingTags - + Red Punane - + Black Must - + Blue Sinine - + Yellow Kollane - + Green Roheline - + Pink Roosa - + Orange Oranž - + Purple Lilla - + White Valge - + Superscript Ülaindeks - + Subscript Alaindeks - + Paragraph Lõik - + Bold Rasvane - + Italics Kursiiv - + Underline Allajoonitud - + Break Murdmine @@ -2985,122 +3061,122 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.GeneralTab - + General Üldine - + Monitors Monitorid - + Select monitor for output display: Peamise kuva ekraan: - + Display if a single screen Kuvatakse ka, kui on ainult üks ekraan - + Application Startup Rakenduse käivitumine - + Show blank screen warning Kuvatakse tühjendatud ekraani hoiatust - + Automatically open the last service Automaatselt avatakse viimane teenistus - + Show the splash screen Käivitumisel kuvatakse logo - + Application Settings Rakenduse sätted - + Prompt to save before starting a new service Uue teenistuse alustamisel pakutakse eelmise salvestamist - + Automatically preview next item in service Teenistuse järgmise elemendi automaatne eelvaatlus - + sec s - + CCLI Details CCLI andmed - + SongSelect username: SongSelecti kasutajanimi: - + SongSelect password: SongSelecti parool: - + X X - + Y Y - + Height Kõrgus - + Width Laius - + Check for updates to OpenLP OpenLP uuenduste kontrollimine - + Unblank display when adding new live item Ekraanile saatmisel võetakse ekraani tühjendamine maha - + Timed slide interval: Ajastatud slaidi kestus: - + Background Audio Taustamuusika - + Start background audio paused Taustamuusika on alguses pausitud @@ -3110,12 +3186,12 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa Teenistuse elemendi slaidi mõõtmed - + Override display position: Kuva asukoha käsitsi muutmine: - + Repeat track list Lugude loendi kordamine @@ -3143,12 +3219,12 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.LanguageManager - + Language Keel - + Please restart OpenLP to use your new language setting. Uue keele kasutamiseks käivita OpenLP uuesti. @@ -3156,7 +3232,7 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.MainDisplay - + OpenLP Display OpenLP kuva @@ -3164,287 +3240,287 @@ Esmakäivituse nõustajast loobumiseks (ning OpenLP mittekäivitamiseks) klõpsa OpenLP.MainWindow - + &File &Fail - + &Import &Impordi - + &Export &Ekspordi - + &View &Vaade - + M&ode &Režiim - + &Tools &Tööriistad - + &Settings &Sätted - + &Language &Keel - + &Help A&bi - + Media Manager Meediahaldur - + Service Manager Teenistuse haldur - + Theme Manager Kujunduste haldur - + &New &Uus - + &Open &Ava - + Open an existing service. Olemasoleva teenistuse avamine. - + &Save &Salvesta - + Save the current service to disk. Praeguse teenistuse salvestamine kettale. - + Save &As... Salvesta &kui... - + Save Service As Salvesta teenistus kui - + Save the current service under a new name. Praeguse teenistuse salvestamine uue nimega. - + E&xit &Välju - + Quit OpenLP Lahku OpenLPst - + &Theme &Kujundus - + &Configure OpenLP... &Seadista OpenLP... - + &Media Manager &Meediahaldur - + Toggle Media Manager Meediahalduri lüliti - + Toggle the visibility of the media manager. Meediahalduri nähtavuse ümberlüliti. - + &Theme Manager &Kujunduse haldur - + Toggle Theme Manager Kujunduse halduri lüliti - + Toggle the visibility of the theme manager. Kujunduse halduri nähtavuse ümberlülitamine. - + &Service Manager &Teenistuse haldur - + Toggle Service Manager Teenistuse halduri lüliti - + Toggle the visibility of the service manager. Teenistuse halduri nähtavuse ümberlülitamine. - + &Preview Panel &Eelvaatluspaneel - + Toggle Preview Panel Eelvaatluspaneeli lüliti - + Toggle the visibility of the preview panel. Eelvaatluspaneeli nähtavuse ümberlülitamine. - + &Live Panel &Ekraani paneel - + Toggle Live Panel Ekraani paneeli lüliti - + Toggle the visibility of the live panel. Ekraani paneeli nähtavuse muutmine. - + &Plugin List &Pluginate loend - + List the Plugins Pluginate loend - + &User Guide &Kasutajajuhend - + &About &Lähemalt - + More information about OpenLP Lähem teave OpenLP kohta - + &Online Help &Abi veebis - + &Web Site &Veebileht - + Use the system language, if available. Kui saadaval, kasutatakse süsteemi keelt. - + Set the interface language to %s Kasutajaliidese keeleks %s määramine - + Add &Tool... Lisa &tööriist... - + Add an application to the list of tools. Rakenduse lisamine tööriistade loendisse. - + &Default &Vaikimisi - + Set the view mode back to the default. Vaikimisi kuvarežiimi taastamine. - + &Setup &Ettevalmistus - + Set the view mode to Setup. Ettevalmistuse kuvarežiimi valimine. - + &Live &Otse - + Set the view mode to Live. Vaate režiimiks ekraanivaate valimine. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3453,108 +3529,108 @@ You can download the latest version from http://openlp.org/. Sa võid viimase versiooni alla laadida aadressilt http://openlp.org/. - + OpenLP Version Updated OpenLP uuendus - + OpenLP Main Display Blanked OpenLP peakuva on tühi - + The Main Display has been blanked out Peakuva on tühi - + Default Theme: %s Vaikimisi kujundus: %s - + English Please add the name of your language here Eesti - + Configure &Shortcuts... &Kiirklahvide seadistamine... - + Close OpenLP OpenLP sulgemine - + Are you sure you want to close OpenLP? Kas oled kindel, et tahad OpenLP sulgeda? - + Open &Data Folder... Ava &andmete kataloog... - + Open the folder where songs, bibles and other data resides. Laulude, Piiblite ja muude andmete kataloogi avamine. - + &Autodetect &Isetuvastus - + Update Theme Images Uuenda kujunduste pildid - + Update the preview images for all themes. Kõigi teemade eelvaatepiltide uuendamine. - + Print the current service. Praeguse teenistuse printimine. - + &Recent Files &Hiljutised failid - + L&ock Panels &Lukusta paneelid - + Prevent the panels being moved. Paneelide liigutamise kaitse. - + Re-run First Time Wizard Käivita esmanõustaja uuesti - + Re-run the First Time Wizard, importing songs, Bibles and themes. Käivita esmanõustaja uuesti laulude, Piiblite ja kujunduste importimiseks. - + Re-run First Time Wizard? Kas käivitada esmanõustaja uuesti? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3563,43 +3639,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Selle nõustaja taaskäivitamine muudab sinu praegust OpenLP seadistust ja võib lisada laule olemasolevate laulude loetelusse ning muuta vaikimisi kujundust. - + Clear List Clear List of recent files Tühjenda loend - + Clear the list of recent files. Hiljutiste failide nimekirja tühjendamine. - + Configure &Formatting Tags... &Vormindusmärgised... - + Export OpenLP settings to a specified *.config file OpenLP sätete eksportimine määratud *.config faili - + Settings Sätted - + Import OpenLP settings from a specified *.config file previously exported on this or another machine OpenLP sätete importimine määratud *.config failist, mis on varem sellest või mõnest teisest arvutist eksporditud. - + Import settings? Kas importida sätted? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3612,50 +3688,77 @@ Sätete importimine muudab jäädavalt sinu praegust OpenLP seadistust. Väärade sätete importimine võib põhjustada OpenLP väära käitumist või sulgumist. - + Open File Faili avamine - + OpenLP Export Settings Files (*.conf) OpenLP eksporditud sätete failid (*.conf) - + Import settings Sätete importimine - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sulgub nüüd. Imporditud sätted rakenduvad OpenLP järgmisel käivitumisel. - + Export Settings File Sättefaili eksportimine - + OpenLP Export Settings File (*.conf) OpenLP eksporditud sätete fail (*.conf) - + New Data Directory Error Uue andmekausta viga + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Tundub, et valitud fail ei ole OpenLP sätete fail. + +Sektsioon [%s] ei ole sobiv. + +Töötlemine peatati ning ühtegi muudatust ei tehtud. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + OpenLP andmete kopeerimine uude andmekataloogi - %s - palun oota, kuni kopeerimine lõpeb... + + + + OpenLP Data directory copy failed + +%s + OpenLP andmekataloogi kopeerimine nurjus + +%s + OpenLP.Manager - + Database Error Andmebaasi viga - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3664,7 +3767,7 @@ Database: %s Andmebaas: %s - + OpenLP cannot load your database. Database: %s @@ -3676,74 +3779,74 @@ Andmebaas: %s OpenLP.MediaManagerItem - + No Items Selected Ühtegi elementi pole valitud - + &Add to selected Service Item &Lisa valitud teenistuse elemendile - + You must select one or more items to preview. Sa pead valima vähemalt ühe kirje, mida eelvaadelda. - + You must select one or more items to send live. Sa pead valima vähemalt ühe kirje, mida tahad ekraanil näidata. - + You must select one or more items. Pead valima vähemalt ühe elemendi. - + You must select an existing service item to add to. Pead valima olemasoleva teenistuse, millele lisada. - + Invalid Service Item Vigane teenistuse element - + You must select a %s service item. Pead valima teenistuse elemendi %s. - + You must select one or more items to add. Pead valima vähemalt ühe kirje, mida tahad lisada. - + No Search Results Otsing ei andnud tulemusi - + Invalid File Type Sobimatut liiki fail - + Invalid File %s. Suffix not supported Sobimatu fail %s. Selle lõpuga fail ei ole toetatud - + &Clone &Klooni - + Duplicate files were found on import and were ignored. Importimisel tuvastati duplikaatfailid ning neid eirati. @@ -3751,12 +3854,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. Puudub <lyrics> silt. - + <verse> tag is missing. Puudub <verse> silt. @@ -3764,42 +3867,42 @@ Selle lõpuga fail ei ole toetatud OpenLP.PluginForm - + Plugin List Pluginate loend - + Plugin Details Plugina andmed - + Status: Olek: - + Active Aktiivne - + Inactive Pole aktiivne - + %s (Inactive) %s (pole aktiivne) - + %s (Active) %s (aktiivne) - + %s (Disabled) %s (keelatud) @@ -3807,12 +3910,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.PrintServiceDialog - + Fit Page Mahuta lehele - + Fit Width Mahuta laius @@ -3820,77 +3923,77 @@ Selle lõpuga fail ei ole toetatud OpenLP.PrintServiceForm - + Options Valikud - + Copy Kopeeri - + Copy as HTML Kopeeri HTMLina - + Zoom In Suurendamine - + Zoom Out Vähendamine - + Zoom Original Originaalsuurus - + Other Options Muud valikud - + Include slide text if available Slaidi tekst, kui saadaval - + Include service item notes Teenistuse kirje märkmed - + Include play length of media items Meediakirjete pikkus - + Add page break before each text item Iga tekstikirje algab uuelt lehelt - + Service Sheet Teenistuse leht - + Print Prindi - + Title: Pealkiri: - + Custom Footer Text: Kohandatud jaluse tekst: @@ -3898,12 +4001,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.ScreenList - + Screen Ekraan - + primary peamine @@ -3911,12 +4014,12 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Algus</strong>: %s - + <strong>Length</strong>: %s <strong>Kestus</strong>: %s @@ -3924,7 +4027,7 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceItemEditForm - + Reorder Service Item Teenistuse elementide ümberjärjestamine @@ -3932,287 +4035,298 @@ Selle lõpuga fail ei ole toetatud OpenLP.ServiceManager - + Move to &top Tõsta ü&lemiseks - + Move item to the top of the service. Teenistuse algusesse tõstmine. - + Move &up Liiguta &üles - + Move item up one position in the service. Elemendi liigutamine teenistuses ühe koha võrra ettepoole. - + Move &down Liiguta &alla - + Move item down one position in the service. Elemendi liigutamine teenistuses ühe koha võrra tahapoole. - + Move to &bottom Tõsta &alumiseks - + Move item to the end of the service. Teenistuse lõppu tõstmine. - + &Delete From Service &Kustuta teenistusest - + Delete the selected item from the service. Valitud elemendi kustutamine teenistusest. - + &Add New Item &Lisa uus element - + &Add to Selected Item &Lisa valitud elemendile - + &Edit Item &Muuda kirjet - + &Reorder Item &Muuda elemendi kohta järjekorras - + &Notes &Märkmed - + &Change Item Theme &Muuda elemendi kujundust - + OpenLP Service Files (*.osz) OpenLP teenistuse failid (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Fail ei ole sobiv teenistus. Sisu ei ole UTF-8 kodeeringus. - + File is not a valid service. Fail pole sobiv teenistus. - + Missing Display Handler Puudub kuvakäsitleja - + Your item cannot be displayed as there is no handler to display it Seda elementi pole võimalik näidata ekraanil, kuna puudub seda käsitsev programm - + Your item cannot be displayed as the plugin required to display it is missing or inactive Seda elementi pole võimalik näidata, kuna vajalik plugin on puudu või pole aktiivne - + &Expand all &Laienda kõik - + Expand all the service items. Kõigi teenistuse kirjete laiendamine. - + &Collapse all &Ahenda kõik - + Collapse all the service items. Kõigi teenistuse kirjete ahendamine. - + Open File Faili avamine - + Moves the selection down the window. Valiku tõstmine aknas allapoole. - + Move up Liiguta üles - + Moves the selection up the window. Valiku tõstmine aknas ülespoole. - + Go Live Ekraanile - + Send the selected item to Live. Valitud kirje saatmine ekraanile. - + &Start Time &Alguse aeg - + Show &Preview Näita &eelvaadet - + Modified Service Teenistust on muudetud - + The current service has been modified. Would you like to save this service? Praegust teenistust on muudetud. Kas tahad selle teenistuse salvestada? - + Custom Service Notes: Kohandatud teenistuse märkmed: - + Notes: Märkmed: - + Playing time: Kestus: - + Untitled Service Pealkirjata teenistus - + File could not be opened because it is corrupt. Faili pole võimalik avada, kuna see on rikutud. - + Empty File Tühi fail - + This service file does not contain any data. Selles teenistuse failis pole andmeid. - + Corrupt File Rikutud fail - + Load an existing service. Olemasoleva teenistuse laadimine. - + Save this service. Selle teenistuse salvestamine. - + Select a theme for the service. Teenistuse jaoks kujunduse valimine. - + This file is either corrupt or it is not an OpenLP 2.0 service file. See fail on rikutud või ei ole see OpenLP 2.0 teenistuse fail. - - Service File Missing - Teenistuse fail puudub - - - + Slide theme Slaidi kujundus - + Notes Märkmed - + Edit Muuda - + Service copy only Ainult teenistuse koopia - + Error Saving File Viga faili salvestamisel - + There was an error saving your file. Sinu faili salvestamisel esines tõrge. + + + Service File(s) Missing + Teenistuse failid on puudu + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Järgnevad failid on teenistusest puudu: +<byte value="x9"/>%s + +Need failid eemaldatakse, kui sa otsustad siiski salvestada. + OpenLP.ServiceNoteForm - + Service Item Notes Teenistuse elemendi märkmed @@ -4220,7 +4334,7 @@ Sisu ei ole UTF-8 kodeeringus. OpenLP.SettingsForm - + Configure OpenLP Seadista OpenLP @@ -4228,67 +4342,67 @@ Sisu ei ole UTF-8 kodeeringus. OpenLP.ShortcutListDialog - + Action Tegevus - + Shortcut Kiirklahv - + Duplicate Shortcut Dubleeriv kiirklahv - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Kiirklahv "%s" on juba seotud teise tegevusega, kasuta mingit muud kiirklahvi. - + Alternate Muuda - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Vali tegevus ja klõpsa kummalgi alumisel nupul, et salvestada uus peamine või alternatiivne kiirklahv. - + Default Vaikimisi - + Custom Kohandatud - + Capture shortcut. Kiirklahvi salvestamine. - + Restore the default shortcut of this action. Selle tegevuse vaikimisi kiirklahvi taastamine. - + Restore Default Shortcuts Vaikimisi kiirklahvide taastamine - + Do you want to restore all shortcuts to their defaults? Kas tahad taastada kõigi kiirklahvide vaikimisi väärtused? - + Configure Shortcuts Seadista kiirklahve @@ -4296,172 +4410,172 @@ Sisu ei ole UTF-8 kodeeringus. OpenLP.SlideController - + Hide Peida - + Go To Mine - + Blank Screen Ekraani tühjendamine - + Blank to Theme Kujunduse tausta näitamine - + Show Desktop Töölaua näitamine - + Previous Service Eelmine teenistus - + Next Service Järgmine teenistus - + Escape Item Kuva sulgemine - + Move to previous. Eelmisele liikumine. - + Move to next. Järgmisele liikumine. - + Play Slides Slaidide esitamine - + Delay between slides in seconds. Viivitus slaidide vahel sekundites. - + Move to live. Ekraanile saatmine. - + Add to Service. Teenistusele lisamine. - + Edit and reload song preview. Laulu muutmine ja eelvaate uuesti laadimine. - + Start playing media. Meedia esitamise alustamine. - + Pause audio. Audio pausimine. - + Pause playing media. Meedia esitamise pausimine. - + Stop playing media. Meedia esitamise peatamine. - + Video position. Video asukoht. - + Audio Volume. Helivaljus. - + Go to "Verse" Mine salmile - + Go to "Chorus" Mine refräänile - + Go to "Bridge" Mine vahemängule - + Go to "Pre-Chorus" Mine eelrefräänile - + Go to "Intro" Mine sissejuhatusele - + Go to "Ending" Mine lõpetusele - + Go to "Other" Mine muule osale - + Previous Slide Eelmine slaid - + Next Slide Järgmine slaid - + Pause Audio Audio pausimine - + Background Audio Taustamuusika - + Go to next audio track. Järgmisele muusikapalale liikumine. - + Tracks Palad @@ -4469,17 +4583,17 @@ Sisu ei ole UTF-8 kodeeringus. OpenLP.SpellTextEdit - + Spelling Suggestions Õigekirjasoovitused - + Formatting Tags Vormindussildid - + Language: Keel: @@ -4487,615 +4601,627 @@ Sisu ei ole UTF-8 kodeeringus. OpenLP.StartTimeForm - + Hours: Tundi: - + Minutes: Minutit: - + Seconds: Sekundit: - + Item Start and Finish Time Elemendi algus ja lõpp - + Start Algus - + Finish Lõpp - + Length Kestus - + Time Validation Error Valesti sisestatud aeg - + Finish time is set after the end of the media item Lõpetamise aeg on pärast meedia lõppu. - + Start time is after the finish time of the media item Alustamise aeg on pärast meedia lõppu. - + Theme Layout Kujunduse paigutus - + The blue box shows the main area. Sinine raam näitab peaala. - + The red box shows the footer. Punane raam näitab jalust. - - OpenLP.ThemeForm - - - Select Image - Pildi valimine - - - - Theme Name Missing - Kujundusel puudub nimi - - - - There is no name for this theme. Please enter one. - Kujundusel ei ole nime. Palun sisesta nimi. - - - - Theme Name Invalid - Sobimatu kujunduse nimi - - - - Invalid theme name. Please enter one. - Kujunduse nimi pole sobiv. Palun sisesta sobiv nimi. - - - - (approximately %d lines per slide) - (umbes %d rida slaidil) - - OpenLP.ThemeManager - + Create a new theme. Uue kujunduse loomine. - + Edit Theme Kujunduse muutmine - + Edit a theme. Kujunduse muutmine. - + Delete Theme Kujunduse kustutamine - + Delete a theme. Kujunduse kustutamine. - + Import Theme Kujunduse importimine - + Import a theme. Kujunduse importimine. - + Export Theme Kujunduse eksportimine - + Export a theme. Kujunduse eksportimine. - + &Edit Theme Kujunduse &muutmine - + &Delete Theme Kujunduse &kustutamine - + Set As &Global Default Määra &globaalseks vaikeväärtuseks - + %s (default) %s (vaikimisi) - + You must select a theme to edit. Pead valima kujunduse, mida muuta. - + You are unable to delete the default theme. Vaikimisi kujundust pole võimalik kustutada. - + Theme %s is used in the %s plugin. Kujundust %s kasutatakse pluginas %s. - + You have not selected a theme. Sa ei ole kujundust valinud. - + Save Theme - (%s) Salvesta kujundus - (%s) - + Theme Exported Kujundus eksporditud - + Your theme has been successfully exported. Sinu kujundus on edukalt eksporditud. - + Theme Export Failed Kujunduse eksportimine nurjus - + Your theme could not be exported due to an error. Sinu kujundust polnud võimalik eksportida, kuna esines viga. - + Select Theme Import File Importimiseks kujunduse faili valimine - + File is not a valid theme. See fail ei ole sobilik kujundus. - + &Copy Theme &Kopeeri kujundust - + &Rename Theme &Nimeta kujundus ümber - + &Export Theme &Ekspordi kujundus - + You must select a theme to rename. Pead valima kujunduse, mida ümber nimetada. - + Rename Confirmation Ümbernimetamise kinnitus - + Rename %s theme? Kas anda kujundusele %s uus nimi? - + You must select a theme to delete. Pead valima kujunduse, mida tahad kustutada. - + Delete Confirmation Kustutamise kinnitus - + Delete %s theme? Kas kustutada kujundus %s? - + Validation Error Valideerimise viga - + A theme with this name already exists. Sellenimeline teema on juba olemas. - + OpenLP Themes (*.theme *.otz) OpenLP kujundused (*.theme *.otz) - + Copy of %s Copy of <theme name> %s (koopia) - + Theme Already Exists Kujundus on juba olemas + + + Theme %s already exists. Do you want to replace it? + Kujundus %s on juba olemas. Kas tahad selle asendada? + OpenLP.ThemeWizard - + Theme Wizard Kujunduse nõustaja - + Welcome to the Theme Wizard Tere tulemast kujunduse nõustajasse - + Set Up Background Tausta määramine - + Set up your theme's background according to the parameters below. Määra kujunduse taust, kasutades järgnevaid parameetreid. - + Background type: Tausta liik: - + Solid Color Ühtlane värv - + Gradient Üleminek - + Color: Värvus: - + Gradient: Üleminek: - + Horizontal Horisontaalne - + Vertical Vertikaalne - + Circular Radiaalne - + Top Left - Bottom Right Loodest kagusse - + Bottom Left - Top Right Edelast kirdesse - + Main Area Font Details Peamise teksti üksikasjad - + Define the font and display characteristics for the Display text Määra font ja teised teksti omadused - + Font: Font: - + Size: Suurus: - + Line Spacing: Reavahe: - + &Outline: &Kontuurjoon: - + &Shadow: &Vari: - + Bold Rasvane - + Italic Kaldkiri - + Footer Area Font Details Jaluse fondi üksikasjad - + Define the font and display characteristics for the Footer text Määra jaluse font ja muud omadused - + Text Formatting Details Teksti vorminduse üksikasjad - + Allows additional display formatting information to be defined Võimaldab määrata lisavorminduse andmeid - + Horizontal Align: Rõhtjoondus: - + Left Vasakul - + Right Paremal - + Center Keskel - + Output Area Locations Väljundala asukoht - + Allows you to change and move the main and footer areas. Võimaldab muuta ja liigutada peamist ja jaluse ala. - + &Main Area &Peamine ala - + &Use default location &Vaikimisi asukoha kasutamine - + X position: X-asukoht: - + px px - + Y position: Y-asukoht: - + Width: Laius: - + Height: Kõrgus: - + Use default location Vaikimisi asukoha kasutamine - + Theme name: Kujunduse nimi: - + Edit Theme - %s Teema muutmine - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. See nõustaja aitab kujundusi luua ja muuta. Klõpsa edasi nupul, et alustada tausta määramisest. - + Transitions: Üleminekud: - + &Footer Area &Jaluse ala - + Starting color: Algusvärvus: - + Ending color: Lõppvärvus: - + Background color: Tausta värvus: - + Justify Rööpjoondus - + Layout Preview Kujunduse eelvaade - + Transparent Läbipaistev - + Preview and Save Eelvaatle ja salvesta - + Preview the theme and save it. Kujunduse eelvaade ja salvestamine. + + + (approximately %d lines per slide) + (umbes %d rida slaidil) + + + + Background Image Empty + Taustapilt on tühi + + + + You have not selected a background image. Please select one before continuing. + Sa pole valinud taustapilti. Palun vali enne jätkamist taustapilt. + + + + Select Image + Pildi valimine + + + + Theme Name Missing + Kujunduse nimi puudub + + + + There is no name for this theme. Please enter one. + Sellel kujundusel pole nime. Palun sisesta nimi. + + + + Theme Name Invalid + Kujunduse nimi pole sobiv. + + + + Invalid theme name. Please enter one. + Kujunduse nimi ei sobi. Palun sisesta uus nimi. + OpenLP.ThemesTab - + Global Theme Üldine kujundus - + Theme Level Kujunduse tase - + S&ong Level &Laulu tase - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Laul kuvatakse sellele andmebaasis määratud kujundusega. Kui laulul kujundus puudub, kasutatakse teenistuse kujundust. Kui teenistusel kujundus puudub, siis kasutatakse üleüldist kujundust. - + &Service Level &Teenistuse tase - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Kasutatakse teenistuse kujundust, eirates laulude kujundusi. Kui teenistusel kujundust pole, kasutatakse globaalset. - + &Global Level &Üleüldine tase - + Use the global theme, overriding any themes associated with either the service or the songs. Kasutatakse globaalset kujundust, eirates nii teenistuse kui laulu kujundust. - + Themes Kujundused @@ -5103,315 +5229,315 @@ Sisu ei ole UTF-8 kodeeringus. OpenLP.Ui - + Error Viga - + About Programmist - + &Add &Lisa - + Advanced Täpsem - + All Files Kõik failid - + Bottom All - + Browse... Lehitse... - + Cancel Loobu - + CCLI number: CCLI number: - + Create a new service. Uue teenistuse loomine. - + &Delete &Kustuta - + &Edit &Muuda - + Empty Field Tühi väli - + Export Ekspordi - + pt Abbreviated font pointsize unit pt - + Image Pilt - + Import Impordi - + Live Ekraan - + Live Background Error Ekraani tausta viga - + Load Laadi - + Middle Keskel - + New Uus - + New Service Uus teenistus - + New Theme Uus kujundus - + No File Selected Singular Ühtegi faili pole valitud - + No Files Selected Plural Ühtegi faili pole valitud - + No Item Selected Singular Ühtegi elementi pole valitud - + No Items Selected Plural Ühtegi elementi pole valitud - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Eelvaade - + Replace Background Tausta asendamine - + Reset Background Tausta lähtestamine - + s The abbreviated unit for seconds s - + Save && Preview Salvesta && eelvaatle - + Search Otsi - + You must select an item to delete. Pead valima elemendi, mida tahad kustutada. - + You must select an item to edit. Pead valima elemendi, mida tahad muuta. - + Save Service Teenistuse salvestamine - + Service Teenistus - + Start %s Algus %s - + Theme Singular Kujundus - + Themes Plural Kujundused - + Top Üleval - + Version Versioon - + Delete the selected item. Valitud kirje kustutamine. - + Move selection up one position. Valiku liigutamine ühe koha võrra ülespoole. - + Move selection down one position. Valiku liigutamine ühe koha võrra allapoole. - + &Vertical Align: &Vertikaaljoondus: - + Finished import. Importimine lõpetatud. - + Format: Vorming: - + Importing Importimine - + Importing "%s"... "%s" importimine... - + Select Import Source Importimise allika valimine - + Select the import format and the location to import from. Vali importimise vorming ja asukoht, kust importida. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. openlp.org 1.x importija on ühe puuduva Pythoni mooduli pärast keelatud. Kui sa tahad seda importijat kasutada, pead paigaldama mooduli "python-sqlite". - + Open %s File %s faili avamine - + %p% %p% - + Ready. Valmis. - + Starting import... Importimise alustamine... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Pead määrama vähemalt ühe %s faili, millest importida. @@ -5422,299 +5548,304 @@ Sisu ei ole UTF-8 kodeeringus. Tere tulemast Piibli importimise nõustajasse - + Welcome to the Song Export Wizard Tere tulemast laulude eksportimise nõustajasse - + Welcome to the Song Import Wizard Tere tulemast laulude importimise nõustajasse - + Author Singular Autor - + Authors Plural Autorid - - © + + © Copyright symbol. © - + Song Book Singular Laulik - + Song Books Plural Laulikud - + Song Maintenance Laulude haldus - + Topic Singular Teema - + Topics Plural Teemad - + Continuous Jätkuv - + Default Vaikimisi - + Display style: Kuvalaad: - + Duplicate Error Korduse viga - + File Fail - + Help Abi - + h The abbreviated unit for hours t - + Layout style: Paigutuse laad: - + Live Toolbar Ekraani tööriistariba - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP juba töötab. Kas tahad jätkata? - + Settings Sätted - + Tools Tööriistad - + Unsupported File Fail ei ole toetatud - + Verse Per Slide Iga salm eraldi slaidil - + Verse Per Line Iga salm eraldi real - + View Vaade - + Title and/or verses not found Pealkirja ja/või salme ei leitud - + XML syntax error XML süntaksi viga - + View Mode Vaate režiim - + Open service. Teenistuse avamine. - + Print Service Teenistuse printimine - + Replace live background. Ekraanil tausta asendamine. - + Reset live background. Ekraanil esialgse tausta taastamine. - + Split a slide into two only if it does not fit on the screen as one slide. Slaidi kaheks tükeldamine ainult juhul, kui see ei mahu tervikuna ekraanile. - + Welcome to the Bible Upgrade Wizard Tere tulemast Piibli uuendamise nõustajasse - + Confirm Delete Kustutamise kinnitus - + Play Slides in Loop Slaide korratakse - + Play Slides to End Slaide näidatakse üks kord - + Stop Play Slides in Loop Slaidide kordamise lõpetamine - + Stop Play Slides to End Slaidide ühekordse näitamise lõpetamine - + Next Track Järgmine lugu - + Search Themes... Search bar place holder text Teemade otsing... - + Optional &Split Valikuline &slaidivahetus - + Invalid Folder Selected Singular Valiti sobimatu kataloog - + Invalid File Selected Singular Valiti sobimatu fail - + Invalid Files Selected Plural Valiti sobimatud failid - + No Folder Selected Singular Ühtegi kasuta pole valitud - + Open %s Folder Ava %s kaust - + You need to specify one %s file to import from. A file type e.g. OpenSong Pead valim ühe %s faili, millest importida. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Pead valima ühe %s kausta, millest importida. + + + Importing Songs + Laulude importimine + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 ja %2 - + %1, and %2 Locale list separator: end %1, ja %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5723,50 +5854,50 @@ Sisu ei ole UTF-8 kodeeringus. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Esitluse plugin</strong><br />Esitluse plugin võimaldab näidata esitlusi erinevate programmidega. Saadaolevate esitlusprogrammide valik on saadaval valikukastis. - + Presentation name singular Esitlus - + Presentations name plural Esitlused - + Presentations container title Esitlused - + Load a new presentation. Uue esitluse laadimine. - + Delete the selected presentation. Valitud esitluse kustutamine. - + Preview the selected presentation. Valitud esitluse eelvaade. - + Send the selected presentation live. Valitud esitluse saatmine ekraanile. - + Add the selected presentation to the service. Valitud esitluse lisamine teenistusele. @@ -5774,52 +5905,52 @@ Sisu ei ole UTF-8 kodeeringus. PresentationPlugin.MediaItem - + Select Presentation(s) Esitluste valimine - + Automatic Automaatne - + Present using: Esitluseks kasutatakse: - + File Exists Fail on olemas - + A presentation with that filename already exists. Sellise nimega esitluse fail on juba olemas. - + This type of presentation is not supported. Seda liiki esitlus ei ole toetatud. - + Presentations (%s) Esitlused (%s) - + Missing Presentation Puuduv esitlus - + The presentation %s is incomplete, please reload. Esitlus %s pole täielik, palun laadi uuesti. - + The presentation %s no longer exists. Esitlust %s pole enam olemas. @@ -5827,17 +5958,17 @@ Sisu ei ole UTF-8 kodeeringus. PresentationPlugin.PresentationTab - + Available Controllers Saadaolevad juhtijad - + %s (unavailable) %s (pole saadaval) - + Allow presentation application to be overridden Esitluste rakendust saab käsitsi muuta @@ -5845,24 +5976,24 @@ Sisu ei ole UTF-8 kodeeringus. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <b>Kaugjuhtimisplugin</b><br>See plugin võimaldab töötavale openlp programmile teadete saatmise teisest arvutist veebilehitseja või mõne muu rakenduse kaudu.<br>Selle peamine rakendus on teadete saatmine lastehoiust. - + Remote name singular Kaugjuhtimine - + Remotes name plural Kaugjuhtimine - + Remote container title Kaugjuhtimine @@ -5871,236 +6002,246 @@ Sisu ei ole UTF-8 kodeeringus. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 kaugpult - + OpenLP 2.0 Stage View OpenLP 2.0 ekraanivaade - + Service Manager Teenistuse haldur - + Slide Controller Slaidikontroller - + Alerts Teated - + Search Otsi - + Refresh Värskenda - + Blank Tühi - + Show Näita - + Prev Eelm - + Next Järgm - + Text Tekst - + Show Alert Kuva teade - + Go Live Ekraanile - + No Results Tulemusi pole - + Options Valikud - + Add to Service Lisa teenistusele - + Home Kodu - + Theme Kujundus - + Desktop Töölaud - + Add &amp; Go to Service Lisa ja liigu teenistusse + + + Service + Teenistus + + + + Slides + Slaidid + RemotePlugin.RemoteTab - + Serve on IP address: Serveeritakse ainult IP-aadressilt: - + Port number: Pordi number: - + Server Settings Serveri sätted - + Remote URL: Kaugjuhtimise URL: - + Stage view URL: Lavavaate URL: - + Display stage time in 12h format Laval kuvatakse aega 12-tunni vormingus - + Android App Androidi rakendus - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Skanni QR kood või klõpsa <a href="https://market.android.com/details?id=org.openlp.android">allalaadimise lingil</a>, et paigaldada Marketist Androidi rakendus. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Skanni QR kood või klõpsa <a href="https://play.google.com/store/apps/details?id=org.openlp.android">allalaadimise lingil</a>, et paigaldada Androidi rakendus Google Playst. SongUsagePlugin - + &Song Usage Tracking &Laulude kasutuse jälgimine - + &Delete Tracking Data &Kustuta kogutud andmed - + Delete song usage data up to a specified date. Laulukasutuse andmete kustutamine kuni antud kuupäevani. - + &Extract Tracking Data &Eralda laulukasutuse andmed - + Generate a report on song usage. Genereeri raport laulude kasutuse kohta. - + Toggle Tracking Laulukasutuse jälgimine - + Toggle the tracking of song usage. Laulukasutuse jälgimise sisse- ja väljalülitamine. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. - + SongUsage name singular Laulukasutus - + SongUsage name plural Laulukasutus - + SongUsage container title Laulukasutus - + Song Usage Laulude kasutus - + Song usage tracking is active. Laulukasutuse jälgimine on aktiivne - + Song usage tracking is inactive. Laulukasutuse jälgimine pole aktiivne. - + display kuva - + printed prinditud @@ -6108,32 +6249,32 @@ Sisu ei ole UTF-8 kodeeringus. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Laulukasutuse andmete kustutamine - + Delete Selected Song Usage Events? Kas kustutada valitud laulude kasutamise sündmused? - + Are you sure you want to delete selected Song Usage data? Kas oled kindel, et tahad kustutada valitud laulude kasutuse andmed? - + Deletion Successful Kustutamine edukas - + All requested data has been deleted successfully. Kõik kustutamisele määratud andmed kustutati edukalt. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Vali kuupäev, milleni laulukasutuse andmed tuleks kustutada. Kõik kuni selle määratud hetkeni kogutud andmed kustutatakse lõplikult. @@ -6141,42 +6282,42 @@ Sisu ei ole UTF-8 kodeeringus. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Laulukasutuse salvestamine - + Select Date Range Vali kuupäevade vahemik - + to kuni - + Report Location Raporti asukoht - + Output File Location Väljundfaili asukoht - + usage_detail_%s_%s.txt laulukasutuse_andmed_%s_%s.txt - + Report Creation Raporti koostamine - + Report %s has been successfully created. @@ -6185,12 +6326,12 @@ has been successfully created. on edukalt loodud. - + Output Path Not Selected Sihtkohta pole valitud - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Sa pole määranud sobivat sihtkohta laulukasutuse raporti jaoks. Palun vali mõni kataloog oma arvutist. @@ -6198,112 +6339,112 @@ on edukalt loodud. SongsPlugin - + &Song &Laul - + Import songs using the import wizard. Laulude importimine importimise nõustajaga. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Laulude plugin</strong><br />See plugin võimaldab laulude kuvamise ja haldamise. - + &Re-index Songs &Indekseeri laulud uuesti - + Re-index the songs database to improve searching and ordering. Laulude andmebaasi kordusindekseerimine, et parendada otsimist ja järjekorda. - + Reindexing songs... Laulude kordusindekseerimine... - + Arabic (CP-1256) Araabia (CP-1256) - + Baltic (CP-1257) Balti (CP-1257) - + Central European (CP-1250) Kesk-Euroopa (CP-1250) - + Cyrillic (CP-1251) Kirillitsa (CP-1251) - + Greek (CP-1253) Kreeka (CP-1253) - + Hebrew (CP-1255) Heebrea (CP-1255) - + Japanese (CP-932) Jaapani (CP-932) - + Korean (CP-949) Korea (CP-949) - + Simplified Chinese (CP-936) Lihtsustatud Hiina (CP-936) - + Thai (CP-874) Tai (CP-874) - + Traditional Chinese (CP-950) Tradistiooniline Hiina (CP-950) - + Turkish (CP-1254) Türgi (CP-1254) - + Vietnam (CP-1258) Vietnami (CP-1258) - + Western European (CP-1252) Lääne-Euroopa (CP-1252) - + Character Encoding Märgikodeering - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6311,100 +6452,105 @@ Usually you are fine with the preselected choice. Tavaliselt on vaikimisi valik õige. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Palun vali märgikodeering. Kodeering on vajalik märkide õige esitamise jaoks. - + Song name singular Laul - + Songs name plural Laulud - + Songs container title Laulud - + Exports songs using the export wizard. Eksportimise nõustaja abil laulude eksportimine. - + Add a new song. Uue laulu lisamine. - + Edit the selected song. Valitud laulu muutmine. - + Delete the selected song. Valitud laulu kustutamine. - + Preview the selected song. Valitud laulu eelvaade. - + Send the selected song live. Valitud laulu saatmine ekraanile. - + Add the selected song to the service. Valitud laulu lisamine teenistusele. + + + Reindexing songs + Laulude uuesti indekseerimine + SongsPlugin.AuthorsForm - + Author Maintenance Autorite haldus - + Display name: Täisnimi: - + First name: Eesnimi: - + Last name: Perekonnanimi: - + You need to type in the first name of the author. Pead sisestama autori eesnime. - + You need to type in the last name of the author. Pead sisestama autori perekonnanime. - + You have not set a display name for the author, combine the first and last names? Sa ei ole sisestanud autori kuvamise nime, kas see tuleks kombineerida ees- ja perekonnanimest? @@ -6412,7 +6558,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Sellel failil pole sobiv laiend. @@ -6420,12 +6566,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EasyWorshipSongImport - + Administered by %s Haldab %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6437,12 +6583,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditBibleForm - + Meta Data Metaandmed - + Custom Book Names Kohandatud raamatunimed @@ -6450,207 +6596,202 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditSongForm - + Song Editor Lauluredaktor - + &Title: &Pealkiri: - + Alt&ernate title: &Teine pealkiri: - + &Lyrics: &Sõnad: - + &Verse order: &Salmide järjekord: - + Ed&it All Muuda &kõiki - + Title && Lyrics Pealkiri && sõnad - + &Add to Song &Lisa laulule - + &Remove &Eemalda - + &Manage Authors, Topics, Song Books &Autorite, teemade ja laulikute haldamine - + A&dd to Song L&isa laulule - + R&emove &Eemalda - + Book: Raamat: - + Number: Number: - + Authors, Topics && Song Book Autorid, teemad && laulik - + New &Theme Uus &kujundus - + Copyright Information Autoriõiguse andmed - + Comments Kommentaarid - + Theme, Copyright Info && Comments Kujundus, autoriõigus && kommentaarid - + Add Author Autori lisamine - + This author does not exist, do you want to add them? Seda autorit veel pole, kas tahad autori lisada? - + This author is already in the list. See autor juba on loendis. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Sa ei ole valinud ühtegi sobilikku autorit. Vali autor loendist või sisesta uue autori nimi ja klõpsa uue nupul "Lisa laulule autor". - + Add Topic Teema lisamine - + This topic does not exist, do you want to add it? Sellist teemat pole. Kas tahad selle lisada? - + This topic is already in the list. See teema juba on loendis. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Sa pole valinud sobivat teemat. Vali teema kas loendist või sisesta uus teema ja selle lisamiseks klõpsa nupule "Lisa laulule teema". - + You need to type in a song title. Pead sisestama laulu pealkirja. - + You need to type in at least one verse. Pead sisestama vähemalt ühe salmi. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Salmide järjekord pole sobiv. Mitte ükski valm ei vasta %s-le. Sobivad salmid on %s. - + Add Book Lauliku lisamine - + This song book does not exist, do you want to add it? Sellist laulikut pole. Kas tahad selle lisada? - + You need to have an author for this song. Pead lisama sellele laulule autori. - - You need to type some text in to the verse. - Salm peab sisaldama teksti. - - - + Linked Audio Lingitud audio - + Add &File(s) Lisa &faile - + Add &Media Lisa &meediat - + Remove &All Eemalda &kõik - + Open File(s) Failide avamine - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Hoiatus</strong> Mitte kõik salmid pole kasutusel. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Salmide järjekord on vale. Ühtegi salmi nimega %s pole. Õiged nimed on %s. @@ -6658,22 +6799,22 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.EditVerseForm - + Edit Verse Salmi muutmine - + &Verse type: &Salmi liik: - + &Insert &Sisesta - + Split a slide into two by inserting a verse splitter. Slaidi tükeldamine slaidipoolitajaga. @@ -6681,82 +6822,82 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ExportWizardForm - + Song Export Wizard Laulude eksportimise nõustaja - + Select Songs Laulude valimine - + Check the songs you want to export. Vali laulud, mida tahad eksportida. - + Uncheck All Eemalda märgistus - + Check All Märgi kõik - + Select Directory Kataloogi valimine - + Directory: Kataloog: - + Exporting Eksportimine - + Please wait while your songs are exported. Palun oota, kuni kõik laulud on eksporditud. - + You need to add at least one Song to export. Pead lisama vähemalt ühe laulu, mida tahad eksportida. - + No Save Location specified Salvestamise asukohta pole määratud - + Starting export... Eksportimise alustamine... - + You need to specify a directory. Pead määrama kataloogi. - + Select Destination Folder Sihtkausta valimine - + Select the directory where you want the songs to be saved. Vali kataloog, kuhu tahad laulu salvestada. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Nõustaja aitab laule eksportida avatud ning vabasse <stron>OpenLyrics</strong> ülistuslaulude vormingusse. @@ -6764,172 +6905,172 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Dokumentide/esitluste valimine - + Song Import Wizard Laulude importimise nõustaja - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. See nõustaja aitab importida paljudes erinevates vormingutes laule. Klõpsa all asuvat edasi nuppu, et jätkata importimise vormingu valimisega. - + Generic Document/Presentation Tavaline dokument/esitlus - + Add Files... Lisa faile... - + Remove File(s) Faili(de) eemaldamine - + Please wait while your songs are imported. Palun oota, kuni laule imporditakse. - + OpenLP 2.0 Databases OpenLP 2.0 andmebaas - + openlp.org v1.x Databases openlp.org v1.x andmebaas - + Words Of Worship Song Files Words Of Worship Song failid - + Songs Of Fellowship Song Files Songs Of Fellowship laulufailid - + SongBeamer Files SongBeameri laulufailid - + SongShow Plus Song Files SongShow Plus laulufailid - + Foilpresenter Song Files Foilpresenteri laulufailid - + Copy Kopeeri - + Save to File Salvesta faili - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship importija on keelatud, kuna OpenLP-l puudub ligiäpääs OpenOffice'le või LibreOffice'le. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Tavalise dokumendi/esitluse importija on keelatud, kuna OpenLP-l puudub ligipääs OpenOffice'le või LibreOffice'le. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics või OpenLP 2.0-st eksporditud laul - + OpenLyrics Files OpenLyrics failid - + CCLI SongSelect Files CCLI SongSelecti failid - + EasySlides XML File EasySlides XML fail - + EasyWorship Song Database EasyWorship laulude andmebaas - + DreamBeam Song Files DreamBeam'i laulufailid - + You need to specify a valid PowerSong 1.0 database folder. Pead valima õige PowerSong 1.0 andmebaasi kataloogi. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Kõigepealt teisenda oma ZionWorx andmebaas CSV tekstifailiks, vastavalt juhendile <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">kasutaja käsiraamatus</a>. - + SundayPlus Song Files SundayPlus'i laulufailid - + This importer has been disabled. Importija on keelatud. - + MediaShout Database MediaShout andmebaas - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importija töötab ainult Windowsi platvormil. See on keelatud puuduva Pythoni mooduli pärast. Selle importija kasutamiseks pead paigaldama "pyodbc" mooduli. - + SongPro Text Files SongPro tekstifailid - + SongPro (Export File) SongPro (eksportfail) - + In SongPro, export your songs using the File -> Export menu Ekspordi oma laulud SongPro menüüst kasutades File -> Export. @@ -6937,12 +7078,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.MediaFilesForm - + Select Media File(s) Meediafailide valimine - + Select one or more audio files from the list below, and click OK to import them into this song. Vali järgnevast loendist vähemalt üks audiofail ning klõpsa nupule Olgu, et seda sellesse laulu importida. @@ -6950,63 +7091,66 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.MediaItem - + Titles Pealkirjad - + Lyrics Laulusõnad - + CCLI License: CCLI litsents: - + Entire Song Kogu laulust - + Are you sure you want to delete the %n selected song(s)? - Kas sa oled kindel, et soovid kustutada %n valitud laulu?Kas sa oled kindel, et soovid kustutada %n valitud laulu? + + Kas sa oled kindel, et soovid kustutada %n valitud laulu? + Kas sa oled kindel, et soovid kustutada %n valitud laulu? + - + Maintain the lists of authors, topics and books. Autorite, teemade ja laulikute loendi haldamine. - + copy For song cloning koopia - + Search Titles... Pealkirjade otsing... - + Search Entire Song... Otsing kogu laulust... - + Search Lyrics... Laulusõnade otsing... - + Search Authors... Autorite otsing... - + Search Song Books... Laulikute otsimine... @@ -7014,7 +7158,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. MediaShout andmebaasi ei suudetud avada. @@ -7022,7 +7166,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. See pole openlp.org 1.x laulude andmebaas. @@ -7030,7 +7174,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. See pole OpenLP 2.0 laulude andmebaas. @@ -7038,7 +7182,7 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.OpenLyricsExport - + Exporting "%s"... "%s" eksportimine... @@ -7046,35 +7190,55 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.PowerSongImport - + No songs to import. Pole laule, mida importida. - + Verses not found. Missing "PART" header. Salme ei leitud. "PART" päis puudub. + + + No %s files found. + Ühtegi %s faili ei leitud. + + + + Invalid %s file. Unexpected byte value. + Sobimatu %s fail. Ootamatu väärtusega bait. + + + + Invalid %s file. Missing "TITLE" header. + Sobimatu %s fail. Puudub "TITLE" päis. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Sobimatu %s fail. Puudub "COPYRIGHTLINE" päis. + SongsPlugin.SongBookForm - + Song Book Maintenance Lauliku haldus - + &Name: &Nimi: - + &Publisher: &Kirjastaja: - + You need to type in a name for the book. Pead sisestama lauliku nime. @@ -7082,12 +7246,12 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongExportForm - + Your song export failed. Laulude eksportimine nurjus. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Eksportimine lõpetati. Nende failide importimiseks kasuta <strong>OpenLyrics</strong> importijat. @@ -7095,27 +7259,27 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongImport - + copyright autoriõigus - + The following songs could not be imported: Järgnevaid laule polnud võimalik importida: - + Cannot access OpenOffice or LibreOffice Puudub ligipääs OpenOffice'le või LibreOffice'le - + Unable to open file Faili avamine ei õnnestunud - + File not found Faili ei leitud @@ -7123,107 +7287,107 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongMaintenanceForm - + Could not add your author. Autori lisamine pole võimalik. - + This author already exists. See autor on juba olemas. - + Could not add your topic. Sinu teema lisamine pole võimalik. - + This topic already exists. Teema on juba olemas. - + Could not add your book. Lauliku lisamine pole võimalik. - + This book already exists. See laulik on juba olemas. - + Could not save your changes. Muudatuste salvestamine pole võimalik. - + Could not save your modified author, because the author already exists. Sinu muudetud autorit pole võimalik salvestada, kuna autor on juba olemas. - + Could not save your modified topic, because it already exists. Sinu muudetud teemat pole võimalik salvestada, kuna selline on juba olemas. - + Delete Author Autori kustutamine - + Are you sure you want to delete the selected author? Kas oled kindel, et tahad kustutada valitud autori? - + This author cannot be deleted, they are currently assigned to at least one song. Seda autorit pole võimalik kustutada, kuna ta on märgitud vähemalt ühe laulu autoriks. - + Delete Topic Teema kustutamine - + Are you sure you want to delete the selected topic? Kas oled kindel, et tahad valitud teema kustutada? - + This topic cannot be deleted, it is currently assigned to at least one song. Seda teemat pole võimalik kustutada, kuna see on märgib vähemalt ühte laulu. - + Delete Book Lauliku kustutamine - + Are you sure you want to delete the selected book? Kas oled kindel, et tahad valitud lauliku kustutada? - + This book cannot be deleted, it is currently assigned to at least one song. Seda laulikut pole võimalik kustutada, kuna vähemalt üks laul kuulub sellesse laulikusse. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Autor %s on juba olemas. Kas sa tahad, et laulud autoriga %s liidetaks olemasolevale autorile %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Teema %s on juba olemas. Kas sa tahad, et laulud teemaga %s kasutaksid olemasolevat teemat %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Laulik %s on juba olemas. Kas sa tahad, et lauliku %s laulud liidetaks olemasoleva laulikuga %s? @@ -7231,27 +7395,27 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.SongsTab - + Songs Mode Laulurežiim - + Enable search as you type Otsing sisestamise ajal - + Display verses on live tool bar Salme kuvatakse ekraani tööriistaribal - + Update service from song edit Teenistuse uuendamine laulu muutmisel - + Import missing songs from service files Teenistuse failidest imporditakse puuduvad laulud @@ -7259,17 +7423,17 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.TopicsForm - + Topic Maintenance Teemade haldus - + Topic name: Teema nimi: - + You need to type in a topic name. Pead sisestama teema nime. @@ -7277,37 +7441,37 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.VerseType - + Verse Salm - + Chorus Refrään - + Bridge Vahemäng - + Pre-Chorus Eelrefrään - + Intro Sissejuhatus - + Ending Lõpetus - + Other Muu @@ -7315,14 +7479,29 @@ Kodeering on vajalik märkide õige esitamise jaoks. SongsPlugin.ZionWorxImport - + Error reading CSV file. Viga CSV faili lugemisel. - + File not valid ZionWorx CSV format. Fail ei ole korrektses ZionWorx CSV vormingus. + + + Line %d: %s + Rida %d: %s + + + + Decoding error: %s + Viga dekodeerimisel: %s + + + + Record %d + Kirje %d + - \ No newline at end of file + diff --git a/resources/i18n/fi.ts b/resources/i18n/fi.ts index 69f11b083..291832ecf 100644 --- a/resources/i18n/fi.ts +++ b/resources/i18n/fi.ts @@ -1,107 +1,108 @@ - + + AlertsPlugin - + &Alert &Hälytys - + Show an alert message. Näytä - + Alert name singular Hälytys - + Alerts name plural Hälytykset - + Alerts container title Hälytykset - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - <strong>Hälytykset lisäosa</strong><br />Hälytykset lisäosa huolehtii lastenhoidon viestien näyttämisestä esityksen aikana. + <strong>Hälytykset-lisäosa</strong><br />Hälytykset lisäosa huolehtii lastenhoidon viestien näyttämisestä esityksen aikana. AlertsPlugin.AlertForm - + Alert Message Hälytysviesti - + Alert &text: Hälytyksen &teksti - + &New &Uusi - + &Save &Tallenna - + Displ&ay &Näytä - + Display && Cl&ose Näytä && &Sulje - + New Alert Uusi hälytys - + You haven't specified any text for your alert. Please type in some text before clicking New. Et ole määritellyt viestitekstiä hälytykselle. Ole hyvä ja anna jokin teksti ennen kuin painat Uusi. - + &Parameter: &Parametri: - + No Parameter Found Parametritekstiä ei ole. - + You have not entered a parameter to be replaced. Do you want to continue anyway? Et ole antanut lainkaan tekstiin sijoitettavaa parametriä. Tahdotko jatkaa siitä huolimatta? - + No Placeholder Found Ei korvattavaa parametria tekstissä - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Hälytystekstissä ei ole lainkaan '<>' parametria. Tahdotko jatkaa siitä huolimatta? @@ -118,32 +119,32 @@ Tahdotko jatkaa siitä huolimatta? AlertsPlugin.AlertsTab - + Font Kirjasin - + Font name: Kirjasimen nimi: - + Font color: Kirjasimen väri: - + Background color: Taustaväri: - + Font size: Kirjasimen koko: - + Alert timeout: Hälytyksen kesto: @@ -151,596 +152,598 @@ Tahdotko jatkaa siitä huolimatta? BiblesPlugin - + &Bible &Raamattu - + Bible name singular Raamattu - + Bibles name plural Raamatut - + Bibles container title Raamatut - + No Book Found Kirjaa ei löydy - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Annettua kirjaa ei ole tässä Raamatussa. Ole hyvä ja tarkista kirjan nimen oikeinkirjoitus. - + Import a Bible. Tuo Raamattu. - + Add a new Bible. Lisää uusi Raamattu. - + Edit the selected Bible. Muokkaa valittua Raamattua. - + Delete the selected Bible. Poista valittu Raamattu. - + Preview the selected Bible. Esikatsele valittua Raamatun tekstiä. - + Send the selected Bible live. - Lähetä valittu Raamatun teksti esitykseen. + Lähetä valittu Raamatun teksti live-esitykseen. - + Add the selected Bible to the service. Lisää valittu Raamatun teksti ajolistalle. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Raamattu-lisäosa</strong><br />Raamattu-lisäosalla voi näyttää Raamatun jakeita suoraan Raamatusta tilaisuuden aikana. - + &Upgrade older Bibles &Päivitä vanhempia Raamattuja - + Upgrade the Bible databases to the latest format. Päivitä Raamattutietokannat uusimpaan tiedostomuotoon. - - - Genesis - - - Exodus - + Genesis + 1. Mooseksen kirja - Leviticus - + Exodus + 2. Mooseksen kirja - Numbers - + Leviticus + 3. Mooseksen kirja - Deuteronomy - + Numbers + 4. Mooseksen kirja - Joshua - + Deuteronomy + 5. Mooseksen kirja - Judges - + Joshua + Joosua - Ruth - + Judges + Tuomarit - 1 Samuel - + Ruth + Ruut - 2 Samuel - + 1 Samuel + 1. Samuelin kirja - 1 Kings - + 2 Samuel + 2. Samuelin kirja - 2 Kings - + 1 Kings + 1. Kuninkaiden kirja - 1 Chronicles - + 2 Kings + 2. Kuningasten kirja - 2 Chronicles - + 1 Chronicles + 1. Aikakirja - Ezra - + 2 Chronicles + 2. Aikakirja - Nehemiah - + Ezra + Esra - Esther - + Nehemiah + Nehemia - Job - + Esther + Ester - Psalms - + Job + Job - Proverbs - + Psalms + Psalmit - Ecclesiastes - + Proverbs + Sananlaskut - Song of Solomon - + Ecclesiastes + Saarnaaja - Isaiah - + Song of Solomon + Laulujen laulu - Jeremiah - + Isaiah + Jesaja - Lamentations - + Jeremiah + Jeremia - Ezekiel - + Lamentations + Valitusvirret - Daniel - + Ezekiel + Hesekiel - Hosea - + Daniel + Daniel - Joel - + Hosea + Hoosea - Amos - + Joel + Joel - Obadiah - + Amos + Amos - Jonah - + Obadiah + Obadja - Micah - + Jonah + Joona - Nahum - + Micah + Miika - Habakkuk - + Nahum + Naahum - Zephaniah - + Habakkuk + Habakkuk - Haggai - + Zephaniah + Sefanja - Zechariah - + Haggai + Haggai - Malachi - + Zechariah + Sakarja - Matthew - + Malachi + Malakia - Mark - + Matthew + Matteus - Luke - + Mark + Markus - John - + Luke + Luukas - Acts - + John + Johannes - Romans - + Acts + Apostolien teot - 1 Corinthians - + Romans + Roomalaiskirja - 2 Corinthians - + 1 Corinthians + 1. Korinttolaiskirje - Galatians - + 2 Corinthians + 2. Korinttolaiskirje - Ephesians - + Galatians + Galatalaiskirje - Philippians - + Ephesians + Efesolaiskirje - Colossians - + Philippians + Filippiläiskirje - 1 Thessalonians - + Colossians + Kolossalaiskirje - 2 Thessalonians - + 1 Thessalonians + 1. Tessalonikalaiskirje - 1 Timothy - + 2 Thessalonians + 2. Tessalonikalaiskirje - 2 Timothy - + 1 Timothy + 1. Timoteuskirje - Titus - + 2 Timothy + 2. Timoteuskirje - Philemon - + Titus + Titus - Hebrews - + Philemon + Filemon - James - + Hebrews + Heprealaiskirje - 1 Peter - + James + Jaakobin kirje - 2 Peter - + 1 Peter + 1. Pietarin kirje - 1 John - + 2 Peter + 2. Pietarin kirje - 2 John - + 1 John + 1. Johanneksen kirje - 3 John - + 2 John + 2. Johanneksen kirje - Jude - + 3 John + 3. Johanneksen kirje - Revelation - + Jude + Juudan kirja - Judith - + Revelation + Ilmestyskirja - Wisdom - + Judith + Juudit - Tobit - + Wisdom + Viisauden kirja - Sirach - + Tobit + Tobit - Baruch - + Sirach + Siirakin kirja - 1 Maccabees - + Baruch + Baruk - 2 Maccabees - + 1 Maccabees + 1. Makkabealaiskirja - 3 Maccabees - + 2 Maccabees + 2. Makkabealaiskirja - 4 Maccabees - + 3 Maccabees + 3. Makkabealaiskirja - Rest of Daniel - + 4 Maccabees + 4. Makkabealaiskirja - Rest of Esther - + Rest of Daniel + Danielin kirjan lisäykset - Prayer of Manasses - + Rest of Esther + Esterin kirjan lisäykset - Letter of Jeremiah - + Prayer of Manasses + Manassen rukous - Prayer of Azariah - + Letter of Jeremiah + Jeremian kirje - Susanna - + Prayer of Azariah + Asariaan rukous - Bel - + Susanna + Susanna - 1 Esdras - + Bel + Bel ja loikäärme - 2 Esdras - + 1 Esdras + 1. Esran kirja - + + 2 Esdras + 2. Esran kirja + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|verse|verses;;-|to;;,|and;;end BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Sinun pitää määritellä käännöksen nimi Raamatulle - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Sinun pitää määritellä tekijäinoikeudet Raamatulle. Myös tekijäinoikeusvapaat Raamatut tulee merkitä sellaisiksi. - + Bible Exists - + Raamattu on olemassa - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Raamattu on jo olemassa. Ole hyvä ja tuo jokin toinen Raamattu tai poista ensin nykyinen versio. - + You need to specify a book name for "%s". - + Sinun pitää määritellä kirjan nimi "%s":lle. - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Kirjan nimi "%s" ei ole kelvollinen. +Numeroita voi käyttää ainoastaan alussa ja sitä täytyy +seuraata ainakin yksi tai useampia ei-numeerisia merkkejä. - + Duplicate Book Name - + Duplikaatti kirjan nimi - + The Book Name "%s" has been entered more than once. - + Kirjan nimi "%s" on syötetty enemmän kuin kerran. BiblesPlugin.BibleManager - + Scripture Reference Error Virhe jaeviitteessä - + Web Bible cannot be used Nettiraamattua ei voi käyttää - + Text Search is not available with Web Bibles. Tekstihaku ei ole käytettävissä nettiraamatuista. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Et antanut lainkaan hakusanaa. Voit antaa useita eri hakusanoja välilyönnillä erotettuna, jos etsit niitä yhdessä. Jos sanat erotetaan pilkulla, etsitään mitä tahansa niistä. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - Raamattuja ei ole asennettuna. Ole hyvä ja asenna tai tuo ohjelmaan yksi tai useampia Raamattuja. + Raamattuja ei ole asennettuna. Ole hyvä ja käytä ohjattua toimintoa asentaaksesi yhden tai useampia Raamattuja. - + No Bibles Available Raamattuja ei ole saatavilla - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -750,185 +753,201 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Jaeviite on virheellinen tai OpenLP ei tue sitä. Ole hyvä ja varmistu, että viittaus täyttää jonkin alla olevista esimerkeistä tai tarkasta muotovaatimukset ohjekirjasta. + +Book Chapter + Book Chapter%(range)sChapter + Book Chapter%(verse)sVerse%(range)sVerse + Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse + Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse + Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Jakeiden näyttäminen - + Only show new chapter numbers Älä toista lukunumeroita - + Bible theme: Raamatun teema - + No Brackets Ei sulkuja - + ( And ) ( ja ) - + { And } { ja } - + [ And ] [ ja ] - + Note: Changes do not affect verses already in the service. Huomio: Muutokset eivät vaikuta jakeisiin, jotka on jo ajolistalla. - + Display second Bible verses Näytä vaihtoehtoinen Raamattu - + Custom Scripture References - + Mukautetue jaeviitteet - + Verse Separator: - + Jakeen erotinmerkki: - + Range Separator: - + Alueen erotinmerkki: - + List Separator: - + Luettelon erotinmerkki: - + End Mark: - + Loppumerkki: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Useampia vaihtoehtoisia jakeen erotinmerkkejä voidaan määritellä. +Ne pitää erottaa pystyviivalla "|". +Käyttääksesi oletusarvoja tyhjennä tämä kenttä. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Useampia vaihtoehtoisia alueen erotinmerkkejä voidaan määritellä. +Ne pitää erottaa pystyviivalla "|". +Käyttääksesi oletusarvoja tyhjennä tämä kenttä. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Useampia vaihtoehtoisia luettelon erotinmerkkejä voidaan määritellä. +Ne pitää erottaa pystyviivalla "|". +Käyttääksesi oletusarvoja tyhjennä tämä kenttä. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Useampia vaihtoehtoisia loppumerkkejä voidaan määritellä. +Ne pitää erottaa pystyviivalla "|". +Käyttääksesi oletusarvoja tyhjennä tämä kenttä. - + English - + Englanti - + Default Bible Language - + Oletusarvoinen Raamatun kieli - + Book name language in search field, search results and on display: - + Kirjan nimen kieli hakukentässä, +hakutuloksissa ja näytöllä. - + Bible Language - + Raamatun kieli - + Application Language - + Sovelluksen kieli BiblesPlugin.BookNameDialog - + Select Book Name Valitse kirjan nimi - + Current name: Nykyinen nimi: - + Corresponding name: Vastaava nimi: - + Show Books From Näytä kirjalyhenteet - + Old Testament Vanha testamentti - + New Testament Uusi testamentti - + Apocrypha Deuterokanoniset kirjat - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Seuraavia kirjan nimiä ei voi kohdistaa sisäisesti. Ole hyvä ja valitse vastaava nimi luettelosta. BiblesPlugin.BookNameForm - + You need to select a book. SInun pitää valita kirja. @@ -936,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Tuodaan kirjoja... %s - + Importing verses from %s... Importing verses from <book name>... Tuodaan jakeita %s:sta... - + Importing verses... done. Tuodaan jakeita... valmis. @@ -955,107 +974,108 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + Raamatun muokkaaminen - + License Details - + Lisenssin tiedot - + Version name: - + Käännöksen nimi: - + Copyright: - + Tekijäinoikeudet: - + Permissions: - + Luvat: - + Default Bible Language - + Raamatun oletuskirja - + Book name language in search field, search results and on display: - + Kirjan nimi hakukentässä, haun tuloksissa ja näytöllä: - + Global Settings - + Globaalit asetukset - + Bible Language - + Raamatun kieli - + Application Language - + Sovelluksen kieli - + English - + Englanti - + This is a Web Download Bible. It is not possible to customize the Book Names. - + Tämä on netistä ladattava Raamattu. +Sen kirjan nimiä ei voi mukauttaa. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Käyttääksesi mukautettuja kirjannimiä, "Raamatun kieli" pitää valita Metatietojen välilehdelät tai jos globaalit asetukset on valittu, valinta tehdään Raamattu-sivulla OpenLP:n asetuksissa. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Rekisteröidään Raamattu ja ladataan kirjoja... - + Registering Language... Rekisteröidään kieli... - + Importing %s... Importing <book name>... Tuodaan %s... - + Download Error Virhe tiedoston lataamisessa - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ohjelma havaitsi ongelmia valittujen jakeiden lataamisessa. Ole hyvä ja tarkasta internet-yhteyden toimivuus. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. - + Parse Error Jäsennysvirhe - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ohjelma havaitsi ongelmia valittujen jakeiden purkamisessa. Jos ongelma ei poistu, harkitse raportointia virheestä kehittäjille. @@ -1065,12 +1085,12 @@ It is not possible to customize the Book Names. Bible Import Wizard - Raamatun ohjattu tuonti + Raamatun ohjattu tuonti This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Tämä työkalu helpottaa Raamattujen tuomista ohjelmaan eri formaateissa. Paina 'Seuraava' - painiketta aloittaaksesi tuonnin valitsemalla formaatin, josta teksti tuodaan. + Tämä ohjattu toiminto helpottaa Raamattujen tuomista ohjelmaan eri formaateissa. Paina 'Seuraava'-painiketta aloittaaksesi tuonnin valitsemalla formaatin, josta teksti tuodaan. @@ -1233,17 +1253,17 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. BiblesPlugin.LanguageDialog - + Select Language Valitse kieli - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ei pysty määrittelemään tässä Raamatun käännöksessä käytettyä kieltä. Ole hyvä ja valitse kieli alla olevasta luettelosta. - + Language: Kieli: @@ -1251,7 +1271,7 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. BiblesPlugin.LanguageForm - + You need to choose a language. Sinun tulee valita kieli. @@ -1259,110 +1279,112 @@ tarpeen mukaan, joten internet yhteys tämän raamatun käytössä vaaditaan. BiblesPlugin.MediaItem - + Quick Nopea - + Find: Etsi: - + Book: Kirja: - + Chapter: Luku: - + Verse: Jae: - + From: Alkaen: - + To: Asti: - + Text Search Tekstihaku - + Second: Toinen: - + Scripture Reference Jaeviite - + Toggle to keep or clear the previous results. Vaihda valinta pitääksesi tai pyyhkiäksesi edelliset tulokset. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Et voi yhdistää yhden ja kahden käännöksen jaehakujen tuloksia. Haluatko poistaa hakutulokset ja aloittaa uuden haun? - + Bible not fully loaded. Raamattu ei latautunut kokonaan. - + Information Tiedot - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Toissijainen Raamattu ei sisällä kaikki ensisijaisen käännöksen jakeita. Vain ne jakeet, jotka ovat kummassakin käännöksessä, voidaan näyttää. %d jaetta jätettiin pois hakutuloksista. - + Search Scripture Reference... - + Etsi jaeviittauksia... - + Search Text... - + Etsi tekstiä... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Oletko vama, että tahdot kokonaan poistaa "%s" Raamatun OpenLP:stä? + +Sinun pitää tuoda Raamattu uudelleen käyttääksesi sitä jälleen. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Virheellinen raamattu-tiedostotyyppi. OpenSong Raamatut saattavat olla pakattuja. Tiedosto pitää purkaa ennen tuontia. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Tuodaan %s %s... @@ -1371,12 +1393,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Selvitetään merkistöä (tämä voi kestää muutamia minuutteja)... - + Importing %s %s... Importing <book name> <chapter>... Tuodaan %s %s... @@ -1385,149 +1407,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Valitse hakemisto varmuuskopiolle - + Bible Upgrade Wizard Ohjattu Raamatun päivitys - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - Tämä päivitystyökalu auttaa päivittämään nykyiset Raamatut edellisestä versiosta OpenLP 2:een. Paina 'seuraava' jatkaaksesi päivitystä. + Tämä ohjattu toiminto auttaa päivittämään nykyiset Raamatut edellisestä versiosta OpenLP 2:een. Paina 'Seuraava'-painiketta jatkaaksesi päivitystä. - + Select Backup Directory Valitse hakemisto varmuuskopiolle - + Please select a backup directory for your Bibles Ole hyvä ja valitse hakemisto, jonne Raamatut varmuuskopiodaan - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Vanhemmat versiot OpenLP 2.0 eivät voi käyttää päivitettyjä Raamatun käännöksiä. Tämä tekee varmuuskopion nykyisistä Raamatuista, jotta voit kopioida ne takaisin OpenLP:n hakemistoon, jos sinun tarvitsee jostain syystä palata käyttämään ohjelman vanhempaa versiota. Ohjeet Raamattujen palauttamiseen on nettisivullamme kohdassa <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. Ole hyvä ja valitse sijainti varmuuskopioille. - + Backup Directory: Varmuuskopioihakemisto: - + There is no need to backup my Bibles Raamatunkäännöksiä ei tarvitse varmuuskopioida - + Select Bibles Valitse Raamatut - + Please select the Bibles to upgrade Ole hyvä ja valitse Raamatut päivitettäväksi - + Upgrading Päivitetään - + Please wait while your Bibles are upgraded. Ole hyvä ja odota, kunnes Raamatut on päivitetty. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Varmuuskopiointi epäonnistui. Varmuuskopiointia varten tarvitaan kirjoitusoikeudet annettuun hakemistoon. - + Upgrading Bible %s of %s: "%s" Failed Päivitetään Raamattua %s/%s: "%s" Epäonnistui - + Upgrading Bible %s of %s: "%s" Upgrading ... Päivitetään Raamattua %s/%s: "%s" Päivitetään ... - + Download Error Virhe latauksessa - + To upgrade your Web Bibles an Internet connection is required. Nettiraamattujen päivittämiseksi tarvitaan internet-yhteys. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Päivitetään Raamattua %s/%s: "%s" Päivitetään %s ... - + Upgrading Bible %s of %s: "%s" Complete Päivitetään Raamattua %s/%s: "%s" Valmis - + , %s failed , %s epäonnistui - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Raamattujen päivitys: %s onnistui %s Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, joten nettiyhteys niiden käyttämiseksi vaaditaan. - + Upgrading Bible(s): %s successful%s Päivitetään Raamattuja: %s onnistui %s. - + Upgrade failed. Päivitys epäonnistui. - + You need to specify a backup directory for your Bibles. Määrittele hakemisto Raamattujen varmuuskopioille. - + Starting upgrade... Aloitetaan päivitys... - + There are no Bibles that need to be upgraded. Ei ole päivitettäviä Ramaattuja. @@ -1535,65 +1557,65 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - <strong>Mukautetut diat</strong><br />Mukautetut diat ominaisuus mahdollistaa yksittäisten diojen näyttämisen laulujen tapaan. Mukautetut diat sen sijaan voidaan muokata vapaammin omiin tarkoituksiin sopiviksi. + <strong>Mukautetut diat -lisäosa</strong><br />Mukautetut diat ominaisuus mahdollistaa yksittäisten diojen näyttämisen laulujen tapaan. Mukautetut diat sen sijaan voidaan muokata vapaammin omiin tarkoituksiin sopiviksi. - + Custom Slide name singular Mukautettu dia - + Custom Slides name plural Mukautetut diat - + Custom Slides container title Mukautetut diat - + Load a new custom slide. Lataa uusi mukautettu dia. - + Import a custom slide. Tuo mukautettu dia. - + Add a new custom slide. Lisää uusi mukautettu dia. - + Edit the selected custom slide. Muokkaa valittua mukautettua diaa. - + Delete the selected custom slide. Poista valittu mukautettu dia. - + Preview the selected custom slide. Esikatsele valittua mukautettua diaa. - + Send the selected custom slide live. - Lähetä valittu mukautettu dia esitykseen. + Lähetä valittu mukautettu dia live-esitykseen. - + Add the selected custom slide to the service. Lisää valittu mukautettu dia ajolistalle. @@ -1601,12 +1623,12 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.CustomTab - + Custom Display Mukautettu näyttö - + Display footer Näytä lopputunniste @@ -1614,62 +1636,62 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.EditCustomForm - + Edit Custom Slides Muokkaa mukautettuja dioja - + &Title: &Otsikko - + Add a new slide at bottom. Lisää uusi dia loppuun. - + Edit the selected slide. Muokkaa valittua diaa. - + Edit all the slides at once. Muokkaa kaikki dioja kerralla. - + Split a slide into two by inserting a slide splitter. Jaa dia kahteen osaan lisäämällä splitterin. - + The&me: Tee&ma: - + &Credits: &Lopputekstit: - + You need to type in a title. Muista antaa myös otsikko. - + You need to add at least one slide Sinun pitää lisätä ainakin yksi dia. - + Ed&it All Mu&okkaa kaikkia - + Insert Slide Lisää dia @@ -1677,76 +1699,79 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot CustomPlugin.EditVerseForm - + Edit Slide - + Muokkaa diaa CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + Oletko varma, että tahdot poistaa %n valittua mukautettua dia(a)? + Oletko varma, että tahdot poistaa %n valittua mukautettua dia(a)? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - <strong>Kuvankatselu lisäosa</strong><br />Kuvankatselu toteuttaa helpon kuvien näyttämisen.<br />Lisäosa mahdollistaa kokonaisen kuvajoukon näyttämisen yhdessä ajolistalla, mikä tekee useiden kuvien näyttämisestä hallitumpaa. Kuvia voi myös ajaa slideshowna OpenLP:n ajastusta hyödyntäen. Lisäksi kuvia voi käyttää jumalanpalvelukselle valitun taustakuvan sijaan, mikä mahdollistaa kuvien käyttämisen taustakuvana teksteille teeman sijaan. + <strong>Kuvankatselu-lisäosa</strong><br />Kuvankatselu toteuttaa helpon kuvien näyttämisen.<br />Lisäosa mahdollistaa kokonaisen kuvajoukon näyttämisen yhdessä ajolistalla, mikä tekee useiden kuvien näyttämisestä hallitumpaa. Kuvia voi myös ajaa slideshowna OpenLP:n ajastusta hyödyntäen. Lisäksi kuvia voi käyttää jumalanpalvelukselle valitun taustakuvan sijaan, mikä mahdollistaa kuvien käyttämisen taustakuvana teksteille teeman sijaan. - + Image name singular Kuva - + Images name plural Kuvat - + Images container title Kuvat - + Load a new image. Lataa uusi kuva. - + Add a new image. Lisää uusi kuva. - + Edit the selected image. Muokkaa valittua kuvaa. - + Delete the selected image. Poista valittu kuva. - + Preview the selected image. Esikatsele valittua kuvaa. - + Send the selected image live. - Lähetä valittu kuva esitykseen. + Lähetä valittu kuva live-esitykseen. - + Add the selected image to the service. Lisää valittu kuva ajolistalle. @@ -1754,7 +1779,7 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot ImagePlugin.ExceptionDialog - + Select Attachment Valitse liite @@ -1762,44 +1787,44 @@ Ole hyvä ja huomaa, että jakeet nettiraamatuista ladataan käytettäessä, jot ImagePlugin.MediaItem - + Select Image(s) Valitse kuva(t) - + You must select an image to delete. Sinun pitää valita kuva, jonka poistat. - + You must select an image to replace the background with. Sinun pitää valita kuva, jolla korvaa taustan. - + Missing Image(s) Puuttuvat kuva(t) - + The following image(s) no longer exist: %s Seuraavaa kuvaa (kuvia) ei enää ole olemassa: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Seuraavaa kuvaa (kuvia) ei ole enää olemassa: %s Haluatko lisätä toisia kuvia siitä huolimatta? - + There was a problem replacing your background, the image file "%s" no longer exists. Taustakuvan korvaaminen ei onnistunut. Kuvatiedosto "%s" ei ole enää olemassa. - + There was no display item to amend. Muutettavaa näyttöotsaketta ei ole. @@ -1807,78 +1832,78 @@ Haluatko lisätä toisia kuvia siitä huolimatta? ImagesPlugin.ImageTab - + Background Color Taustaväri - + Default Color: Oletusväri: - + Visible background for images with aspect ratio different to screen. - + Näkyvä tausta kuville, joiden mittasuhteet poikkeavat näytön mittasuhteista. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media-lisäosa</strong><br /> Media-lisäosa mahdollistaa audio ja video lähteiden toistamisen. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Lataa uusi media. - + Add new media. Lisää uusi media. - + Edit the selected media. Muokkaa valittua mediaa. - + Delete the selected media. Poista valittu media. - + Preview the selected media. Esikatsele valittua mediaa. - + Send the selected media live. - Lähetä valittu media esitykseen. + Lähetä valittu media live-esitykseen. - + Add the selected media to the service. Lisää valittu media ajolistalle. @@ -1886,57 +1911,57 @@ Haluatko lisätä toisia kuvia siitä huolimatta? MediaPlugin.MediaItem - + Select Media Valitse media - + You must select a media file to delete. Sinun täytyy valita mediatiedosto poistettavaksi. - + You must select a media file to replace the background with. Sinun täytyy valita mediatiedosto, jolla taustakuva korvataan. - + There was a problem replacing your background, the media file "%s" no longer exists. Taustakuvan korvaamisessa on ongelmia, mediatiedosto '%s" ei ole enää saatavilla. - + Missing Media File Puuttuva mediatiedosto - + The file %s no longer exists. Tiedosto %s ei ole enää olemassa. - + Videos (%s);;Audio (%s);;%s (*) Videoita (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Ei ollut muutettavaa näyttöelementtiä. - + Unsupported File Tiedostotyyppiä ei tueta. - + Automatic Automaattinen - + Use Player: Käytä soitinta: @@ -1944,40 +1969,40 @@ Haluatko lisätä toisia kuvia siitä huolimatta? MediaPlugin.MediaTab - + Available Media Players Saatavilla olevat mediasoittimet - + %s (unavailable) %s (ei ole saatavilla) - + Player Order Soittimien järjestys - + Allow media player to be overridden - + Salli mediasoittimen ylimääritteleminen OpenLP - + Image Files Kuvatiedostot - + Information Tiedot - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -1989,37 +2014,61 @@ Pitäisikö OpenLP:n päivittää ne nyt? OpenLP.AboutForm - + Credits Kiitokset - + License Lisenssi - - Contribute - Avustus - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Tämä ohjelma on vapaa, voit jakaa ja / tai muuttaa sitä ehtojen mukaisesti GNU General Public Licensen julkaissut Free Software Foundation, version 2 lisenssillä. - + This program 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 below for more details. Tätä ohjelmaa levitetään siinä toivossa, että se olisi hyödyllinen, mutta ilman mitään takuuta; ilman edes hiljaista takuuta kaupallisesti hyväksyttävästä laadusta tai soveltuvuudesta tiettyyn tarkoitukseen. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Tekijäinoikeudet © 2004-2012 %s +Osittaiset tekijäinoikeudet © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is vapaa seurakuntakäyttöön suunniteltu ohjelmisto, jota käytetään laulunsanojen, Raamatun tekstin, videoiden, kuvien ja esitysgrafiikan (jos Impress, Powerpoint tai Powerpoint Viewer on asennettuna) näyttämiseen jumalanpalveluksissa tietokonetta ja projektoria käyttäen. + +Lisätietoja OpenLP:sta löytyy sivulta http://openlp.org/ + +OpenLP on toteutettu ja sitä ylläpidetään vapaaehtoisvoimin. Jos tahdot jatkossa nähdä enemmän vapaita kristillisiä ohjelmistoja, ole hyvä ja harkitse ryhtymistä vapaaehtoiseksi painamalla alla olevaa painiketta. + + + + Volunteer + Vapaaehtoinen + + + Project Lead %s @@ -2038,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2052,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2060,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2081,334 +2140,432 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projektin johto ⏎%s ⏎ ⏎ Kehittäjät ⏎%s ⏎ ⏎ Osallistujat ⏎%s ⏎ ⏎ Testaajat ⏎%s ⏎ ⏎ Paketoijat ⏎%s ⏎ ⏎ Kääntäjät ⏎ afrikaans (af) ⏎%s ⏎ saksa (de) ⏎%s ⏎ brittienglanti (en_GB) ⏎%s ⏎ englanti, Etelä-Afrikka (en_ZA) ⏎%s ⏎ viro (et) ⏎%s ⏎ ranska (fr) ⏎%s ⏎ unkari (hu) ⏎%s ⏎ japani (ja) ⏎ %s ⏎ norja bokmål (nb) ⏎%s ⏎ hollanti (nl) ⏎%s ⏎ portugali, brasilia (pt_BR) ⏎%s ⏎ venäjä (ru) ⏎%s ⏎ ⏎ Dokumentaatio ⏎%s ⏎ ⏎ rakennettu ⏎ Python: http://www.python.org/~~V ⏎ Qt4: http://qt.nokia.com/ ⏎ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro ⏎ Oxygen kuvakkeet: http://oxygen-icons.org/ ⏎ ⏎ Muut kiitokset ⏎ "Sillä niin on Jumala maailmaa rakastanut, että Hän antoi ⏎ ainokaisen Poikansa, niin että kuka tahansa ⏎ uskoo Häneen ei hukkuisi, vaan perii ⏎ iankaikkisen elämän." - Joh. 3:16 ⏎ ⏎ Ja viimeisenä, mutta ei vähäisimpänä, kaikkein suurin ansio ⏎ Jumala, Isämme, joka lähetti Poikansa kuolemaan ⏎ ristillä, jossa hän vapautti meidät synnistä. Me ⏎ annamme tämän ohjelmiston sinulle maksutta koska ⏎ Hän vapautti meidät maksutta. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> <revision> - Open Source Lyrics Projection ⏎ ⏎ OpenLP on vapaa esitysohjelmisto seurakuntakontekstiin, jolla voi näyttää laulujen sanoja, dioja, Raamatun jakeita, videoita, kuvia, ja jopa esitysgrafiikkaa (jos käytössä on joko Impress, PowerPoint tai PowerPoint Viewer) käyttäen tietokonetta ja dataprojektoria. ⏎ ⏎ lisätietoja OpenLP: http://openlp.org/ ⏎ ⏎ OpenLP on toteutettu ja sitä ylläpidetään vapaaehtoisvoimin. Jos haluat nähdä yhä enemmän vapaita kristillisiä ohjelmistoja on tuottettavan, harkitse edistää työtä painammalla alla olevaa painiketta. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Projektin johtaminen + %s + + Kehittäjät + %s + + Lahjoittajat + %s + + Testaajat + %s + + Paketoijat + %s + + Kääntäjät + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + + Dokumentointi + %s + +Käännös + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Suurin kiitos + "Sillä niin on Jumala maailmaa rakastanut, että hän antoi ainokaisen Poikansa, ettei yksikään, joka häneen uskoo, hukkuisi, vaan hänellä olisi iankaikkinen elämä" -- Joh. 3:16 + +Ja viimeisenä, mutta ei vähäisimpänä, kiitos menee Jumalalle meidän Isällemme, joka lähetti Poikansa kuolemaan ristillä meidän puolestamme pesten meidät puhtaaksi synnistä. +Tahdomme antaa tämän ohjelmiston ilmaiseksi sen tähden, mitä hän on tehnyt meidän edestämme samoin ilmaiseksi. OpenLP.AdvancedTab - + UI Settings Käyttöliittymän asetukset - + Number of recent files to display: Kuinka monta viimeisintä tiedostoa näytetään - + Remember active media manager tab on startup Muista aktivoida median hallinnan välilehti käynnistyksessä - + Double-click to send items straight to live - Tuplaklikkaa lähettääksesi otsakkeet suoraan esitykseen + Tuplaklikkaa lähettääksesi otsakkeet live-esitykseen - + Expand new service items on creation Näytä uudet ajolistan otsakkeet avoimina luodessa - + Enable application exit confirmation Varmista sovelluksen sulkeminen ennen poistumista - + Mouse Cursor Hiiren osoitin - + Hide mouse cursor when over display window Piilota hiiren osoitin, kun se on näyttöikkunan päällä - + Default Image Oletuskuva - + Background color: Taustaväri: - + Image file: Kuvatiedosto: - + Open File Avaa tiedosto - + Advanced Edistyneet - + Preview items when clicked in Media Manager Esikatsele otsaketta, kun sitä klikataan median hallinnassa - + Click to select a color. Valitse väri klikkaamalla. - + Browse for an image file to display. Selaa näytettäviä kuvia. - + Revert to the default OpenLP logo. Palauta oletusarvoinen OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Palvelu %Y-%m-%d %H-%M - + Default Service Name - + Ajolistan oletusnimi - + Enable default service name - + Salli oletusnimi ajolistalle - + Date and Time: - + Päiväys ja aika: - + Monday - + Maanantai - + Tuesday - + Tiistai - + Wednesday - + Keskiviikko - + Thurdsday - + Torstai - + Friday - + Perjantai - + Saturday - + Lauantai - + Sunday - + Sunnuntai - + Now - + Nyt - + Time when usual service starts. - + Ajankohta, jolloin jumalanpalvelus yleensä alkaa. - + Name: - + Nimi: - + Consult the OpenLP manual for usage. - + Tarkista OpenLP:n ohjekirjasta käyttö. - + Revert to the default service name "%s". - + Palauta oletusarvoinen ajolistan nimi "%s" - + Example: - + Esimerkki: - + X11 - + X11 Bypass X11 Window Manager - + Ohita X11:n ikkunamanageri - + Syntax error. - + Kielioppivirhe - + Data Location - + Tietojen sijainti - + Current path: - + Nykyinen polku: - + Custom path: - + Mukautettu polku: - + Browse for new data file location. - + Selaa uutta datatiedostojen sijaintia. - + Set the data location to the default. - + Aseta datan sijainti oletusarvoksi. - + Cancel - + Peruuta - + Cancel OpenLP data directory location change. - + Peruuta OpenLP:n datahakemiston sijainnin muuttaminen. - + Copy data to new location. - + Kopioi tiedot uuteen sijaintiin. - + Copy the OpenLP data files to the new location. - + Kopioi OpenLP:n datatiedostot uuteen sijaintiin. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>VAROITUS:</strong> Uudessa datahakemiston sijainnissa on OpenLP:n datatiedostoja.Nämä tiedostot korvataan kopioinnin yhteydessä. - + Data Directory Error - + Datahakemiston virhe - + Select Data Directory Location - + Valitse datahakemiston sijainti - + Confirm Data Directory Change - + Vahvista datahakemiston muuttaminen - + Reset Data Directory - + Resetoi datahakemisto - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Oletko varma, että haluat muutaa OpenLP:n datahakemiston sijainnin oletussijainniksi? + +Tätä sijaintia käytetään sen jälkeen, kun OpenLP on ensin suljettu. - + Overwrite Existing Data - + Ylikirjoita olemassaolevat tiedot + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP datahakemistoa ei löytynyt + +%s + +Tämä datahakemisto sijaitsi siirrettävällä medialla ja median pitää olla saatavilla. + +Paina "Kyllä" palauttaaksesi datahakemiston oletussijaintiin. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Oletko varma, etta tahdot muuttaa OpenLP:n data hakemiston sijainnin hakemistoon: + +%s + +Datahakemisto muutetaan, kun OpenLP on suljettu. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + VAROITUS: + +Sijainti, jonka olet valinnut + +%s + +näyttää sisältävän OpenLP:n datatiedostoja. Oletko varma, että tahdot korvata nämä tiedostot nykyisillä datatiedostoilla? OpenLP.ExceptionDialog - + Error Occurred Tapahtui virhe - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Uups. OpenLP päätyi virheeseen, josta ei voi jatkaa. Tekstikentässä on tietoa virheestä, joka saattaa helpottaa ohjelmakehittäjien työtä, joten ole hyvä ja lähetä se sähköpostilla osoitteeseen bugs@openlp.org. Lisää myös kuvaus siitä, mitä olit tekemässä, kun virhe tapahtui. - + Send E-Mail Lähetä sähköposti - + Save to File Tallenna tiedostoon - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Ole hyvä ja kerro lyhyesti, mitä olit tekemässä, kun virhe tapahtui. (Vähintään 20 kirjainta) - + Attach File Liitä tiedosto - + Description characters to enter : %s Kuvauksessa on merkkejä: %s @@ -2416,24 +2573,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Järjestelmä: %s - + Save Crash Report Tallenna virheraportti - + Text files (*.txt *.log *.text) Teksti tiedostot (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2452,7 +2609,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2475,17 +2632,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Tiedoston uudelleennimeäminen - + New File Name: Uusi tiedostonimi: - + File Copy Tiedoston kopiointi @@ -2493,17 +2650,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Valitse käännös - + Choose the translation you'd like to use in OpenLP. Valitse käännös, jota haluat käyttää OpenLP:ssä - + Translation: Käännös: @@ -2511,4680 +2668,4808 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Laulut - + First Time Wizard - Ensikäynnistyksen avustaja + Ensikäynnistyksen ohjattu toiminto - + Welcome to the First Time Wizard - Tervetuloa ensikäynnistyksen avustajaan + Tervetuloa ensikäynnistyksen ohjattuun toimintoon - + Activate required Plugins - Aktivoi vaaditut lisäosat + Aktivoi tarvittavat lisäosat - + Select the Plugins you wish to use. Valitse lisäosat, joita haluat käyttää. - + Bible Raamattu - + Images Kuvat - + Presentations Esitykset - + Media (Audio and Video) Media (audio ja video) - + Allow remote access Salli etäkäyttö - + Monitor Song Usage Tilastoi laulujen käyttöä - + Allow Alerts Salli hälytykset - + Default Settings Oletusasetukset - + Downloading %s... Ladataan %s... - + Download complete. Click the finish button to start OpenLP. Lataus valmis. Paina lopetuspainiketta käynnistääksesi OpenLP:n. - + Enabling selected plugins... Otetaan käyttöön valittuja lisäosia... - + No Internet Connection Ei internetyhteyttä - + Unable to detect an Internet connection. Toimivaa internetyhteyttä ei saatavilla. - + Sample Songs Esimerkkejä lauluista - + Select and download public domain songs. Valitse ja lataa tekijäinoikeusvapaita lauluja. - + Sample Bibles Esimerkkejä Raamatuista - - - Select and download free Bibles. - - - Sample Themes - + Select and download free Bibles. + Valitse ja lataa ilmaisia Raamattuja. - Select and download sample themes. - + Sample Themes + Esimerkkiteemat - - Set up default settings to be used by OpenLP. - + + Select and download sample themes. + Valitse ja lataa esimerkkiteemoja. - Default output display: - + Set up default settings to be used by OpenLP. + Määritä oletusasetukset, joita OpenLP käyttää. - Select default theme: - + Default output display: + Oletusarvoinen näyttölaite: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + Valitse oletusarvoinen teema: - Finish - + Starting configuration process... + Konfigurointiprosessi alkaa... - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + Tämä ohjattu toiminto ohjeistaa sinua OpenLP:n käyttöönotossa. Paina 'Seuraava'-painiketta aloittaaksesi ohjelman käyttöönoton. + + + + Setting Up And Downloading + Määritetään asetuksia ja ladataan + + + + Please wait while OpenLP is set up and your data is downloaded. + Ole hyvä ja odota kunnes OpenLP on määrittänyt asetukset ja kaikki tiedostot on ladattu. + + + + Setting Up + Määritetään asetuksia + + + + Click the finish button to start OpenLP. + Paina 'Valmis' painiketta käynnistääksesi OpenLP:n. + + + + Download complete. Click the finish button to return to OpenLP. + Lataus on valmis. Paina 'Valmis' palataksesi OpenLP:hen. + + + + Click the finish button to return to OpenLP. + Paina 'Valmis' palataksesi OpenLP:hen. + + + + Custom Slides + Mukautetut diat + + + + Finish + Valmis + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Ei internetyhteyttä. Ensikäynnistyksen ohjattu toiminto tarvitsee internetyhteyttä, jotta järjestelmään voidaan ladata esimerkkilauluja, Raamattuja ja teemoja. Paina 'Lopeta'-painiketta käynnistääksesi OpenLP:n oletusarvoisilla asetuksilla ilman esimerkkejä. + +Suorittaaksesi ohjatun toiminnon uudelleen myöhemmin, tarkista internetyhteys ja suorita toiminto uudelleen valitsemalla "Työkalut/Käynnistä ensiasennuksen ohjattu toiminto" OpenLP:stä. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +Keskeyttääksesi ensiasennuksen ohjatun toiminnon kokonaan (eikä käynnistetä OpenLP:tä), paina 'Peruuta'-painiketta nyt. OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Määritä muotoilu tagit. - + Edit Selection - + Muokkaa valintaa - + Save - + Tallenna - + Description - + Kuvaus - + Tag - + Tagi - + Start HTML - + Aloita HTML - + End HTML - + Lopeta HTML OpenLP.FormattingTagForm - + Update Error - + Päivitysvirhe - + Tag "n" already defined. - + Tagi "n" on jo määritelty. - + New Tag - + Uusi tagi - + <HTML here> - + <HTML tänne> - + </and here> - + </ja tänne> - + Tag %s already defined. - + Tagi %s on jo määritelty. OpenLP.FormattingTags - + Red - + Punainen - + Black - + Musta - + Blue - + Sininen - + Yellow - + Keltainen - + Green - + Vihreä - + Pink - + Vaaleanpunainen - + Orange - + Oranssi - + Purple - + Purppura - + White - + Valkoinen - + Superscript - + Yläindeksi - + Subscript - + Alaindeksi - + Paragraph - + Kappale - + Bold - + Lihavointi - + Italics - + Kursiivi - + Underline - + Alleviivaus - + Break - + Katko OpenLP.GeneralTab - - - General - - + General + Yleinen + + + Monitors - + Näyttölaitteet - + Select monitor for output display: - + Valitse näyttölaite ulostuloa varten: - + Display if a single screen - + Näytä vain, jos on yksi näyttölaite käytössä - + Application Startup - + Ohjelman käynnistys - + Show blank screen warning - + Varoita pimennetystä live-esityksestä - + Automatically open the last service - + Avaa automaattisesti viimeisin ajolista - + Show the splash screen - + Näytä ohjelman aloitusruutu - + Application Settings - + Sovelluksen asetukset - + Prompt to save before starting a new service - + Pyydä tallentamaan ennen uuden ajolistan aloittamista. - + Automatically preview next item in service - - - - - sec - + Näytä automaattisesti esikatselu ajolistan seuraavalle tapahtumalle + sec + s + + + CCLI Details - + CCLI tiedot - + SongSelect username: - + SongSelect käyttäjätunnus: - + SongSelect password: - - - - - X - + SongSelect salasana: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Korkeus - Background Audio - + Width + Leveys - + + Check for updates to OpenLP + Tarkista OpenLP:n päivitykset + + + + Unblank display when adding new live item + Lopeta näytön pimennys, kun dia lisätään live-esitykseen + + + + Timed slide interval: + Ajastetun dian tauko: + + + + Background Audio + Taustamusiikki + + + Start background audio paused - + Aloita taustamusiikki pysäytettynä Service Item Slide Limits - + Ajolistan rivin dian rajoitukset - + Override display position: - + Ylimäärittele näytön sijainti: - + Repeat track list - + Toista kappaleluettelo Behavior of next/previous on the last/first slide: - + Seuraava / edellinen -toiminta viimeisen / ensimmäisen dian kohdalla: &Remain on Slide - + &Jää dian kohdalle &Wrap around - + &Kierrä ympäri &Move to next/previous service item - + &Siirry seuraavaan / edelliseen ajolistan riviin OpenLP.LanguageManager - + Language - + Kieli - + Please restart OpenLP to use your new language setting. - + Ole hyvä ja käynnistä OpenLP uudelleen käyttääksesi uusia kieliasetuksia. OpenLP.MainDisplay - + OpenLP Display - + OpenLP Näyttö OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - &Tools - + &File + &Tiedosto - &Settings - + &Import + T&uonti - - &Language - - - - - &Help - + + &Export + &Vienti - Media Manager - + &View + &Näytä + + + + M&ode + Ti&la - Service Manager - + &Tools + &Työkalut - - Theme Manager - + + &Settings + &Asetukset + + + + &Language + &Kieli - &New - + &Help + &Ohje + + + + Media Manager + Median hallinta - &Open - + Service Manager + Ajolistan hallinta - Open an existing service. - + Theme Manager + Teeman hallinta + &New + &Uusi + + + + &Open + &Avaa + + + + Open an existing service. + Avaa olemassaoleva ajolista. + + + &Save - + T&allenna - + Save the current service to disk. - + Tallenna nykyinen ajolista levylle. - + Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - + Tallenna &nimellä... - E&xit - + Save Service As + Tallenna ajolista nimellä + Save the current service under a new name. + Tallenna nykyinen ajolista levylle uudella nimellä. + + + + E&xit + &Poistu + + + Quit OpenLP - + Lopeta OpenLP - + &Theme - + T&eema - + &Configure OpenLP... - + Kon&figurioi OpenLP... - + &Media Manager - + &Median hallinta - + Toggle Media Manager - + Näytä / piilota median hallinta - + Toggle the visibility of the media manager. - + Näytä tai piilota median hallinta näytöltä. - + &Theme Manager - + &Teeman hallinta - + Toggle Theme Manager - + Näytä / piilota Teeman hallinta - + Toggle the visibility of the theme manager. - + Näytä tai piilota teeman hallinta näytöltä. - + &Service Manager - + &Ajolistan hallinta - + Toggle Service Manager - + Näytä / piilota ajolistan hallinta - + Toggle the visibility of the service manager. - + Näytä tai piilota ajolistan hallinta näytöltä. - + &Preview Panel - + &Esikatselu - + Toggle Preview Panel - + Näytä / piilota esikatselu - + Toggle the visibility of the preview panel. - + Näytä tai piilota esikatselu näytöltä. - + &Live Panel - + &Live-esitys - + Toggle Live Panel - + Näytä / piilota Live-esitys - + Toggle the visibility of the live panel. - + Näytä tai piilota live-esitys. - + &Plugin List - &Luettelo lisäosista + &Lisäosat - + List the Plugins Lisäosien luettelo - + &User Guide - + &Käyttöohje - + &About - - - - - More information about OpenLP - - - - - &Online Help - + &Ohjelmasta + More information about OpenLP + Lisätietoa OpenLP:sta + + + + &Online Help + O&nline ohje + + + &Web Site - + &Nettisivut - + Use the system language, if available. - + Käytä järjestelmän kieltä, jos se on saatavilla. - + Set the interface language to %s - + Aseta käyttöliittymän kieleksi %s - + Add &Tool... - + Lisää &Työkalu... - + Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - + Lisää sovellus työkalujen luetteloon. + &Default + &Oletus + + + + Set the view mode back to the default. + Palauta näyttötila oletusarvoksi. + + + + &Setup + &Asetukset + + + + Set the view mode to Setup. + Aseta näyttötila asetuksiin. + + + &Live - + &Live-esitys - + Set the view mode to Live. - + Aseta näyttötilaksi live-esitys. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + OpenLP:n versio %s on nyt autotmaattisesti ladattavissa (jos käytät tällä hetkellä versiota %s). + +Voit ladata viimeisimmän version osoittesta http://openlp.org/. - + OpenLP Version Updated - + OpenLP:n version on päivittynyt - + OpenLP Main Display Blanked - + OpenLP:n live-esitys pimennettynä - + The Main Display has been blanked out - + Pääasiallinen näyttö on pimennetty - + Default Theme: %s - + Oletusteema: %s - + English Please add the name of your language here Finish - + Configure &Shortcuts... - + Määrittele &Näppäinoikotiet... - + Close OpenLP - + Sulje OpenLP - + Are you sure you want to close OpenLP? - + Oletko varma, että haluat sulkea OpenLP:n? - + Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - + Avaa &Data-kansio... + Open the folder where songs, bibles and other data resides. + Avaa kansio, jossa laulut, Raamatut ja muut tiedot sijaitsevat. + + + + &Autodetect + &Tunnista automaattisesti + + + Update Theme Images - + Päivitä teemojen kuvat + + + + Update the preview images for all themes. + Päivitä kaikkien teemojen esikatselukuvat. + + + + Print the current service. + Tulosta nykyinen ajolista. + + + + &Recent Files + &Viimeisimmät tiedostot + + + + L&ock Panels + Lukitse paneelit + + + + Prevent the panels being moved. + Estä paneelien siirtäminen. - Update the preview images for all themes. - - - - - Print the current service. - - - - - &Recent Files - - - - - L&ock Panels - - - - - Prevent the panels being moved. - - - - Re-run First Time Wizard - + Käynnistä ensiasennuksen ohjattu toiminto - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Suorita uudelleen ensiasennuksen ohjattu toiminto, tuo lauluja, Raamattuja ja teemoja ohjelmaan. - + Re-run First Time Wizard? - + Ajetaanko uudelleen ensiasennuksen ohjattu toiminto? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Oletko varma, että tahdot suorittaa uudelleen ensiasennuksen ohjatun toiminnon? + +Uudelleensuorittaminen voi muuttaa jälkeenpäin tehtyjä muutoksia nykyiseen OpenLP:n asetuksiin ja mahdollisesti lisätä lauluja olemassoleviin luetteloihin ja muuttaa oletusteemaa. - + Clear List Clear List of recent files - + Tyhjennä luettelo - + Clear the list of recent files. - + Tyhjentää viimeksi käytettyjen tiedostojen luettelon. - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + Muokkaa &Muotoilu tageja... + Export OpenLP settings to a specified *.config file + Tuo OpenLP:n asetukset määriteltyyn *.config -tiedodstoon. + + + Settings - + Asetukset - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Tuo OpenLP:n asetuksen määritellystä *.config -tiedostosta, joka on aiemmin viety tästä tai jostain toisesta järjestelmästä. - + Import settings? - + Tuodaanko asetukset? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Oletko varma, että tahdot tuota asetukset? + +Asetusten tuominen tekee pysyviä muutoksia nykyiseen OpenLP-konfiguraatioon. + +Epäkelpojen asetusten tuominen voi aiheuttaa virheellistä toimintaa tai OpenLP saattaa sulkeutua epänormaalisti. - + Open File - + Avaa tiedosto - + OpenLP Export Settings Files (*.conf) - + OpenLP:n viedyt asetustiedostot (*.conf) - + Import settings - + Tuo asetukset - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP sulkeutuu nyt. Tuodut asetukset otetaan käyttöön seuraavan käynnistyksen yhteydessä. - + Export Settings File - + Vie asetustiedosto - + OpenLP Export Settings File (*.conf) - + OpenLP:n viedyt asetustiedostot (*.conf) - + New Data Directory Error - + Uuden datahakemiston virhe + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Tiedosto, jonka olet valinnut ei näytä olevan kelvollinen OpenLP:n asetustiedosto. + +Jakso [%s] ei ole kelvollinen. + +Käsittely on keskeytetty eikä muutoksia ole tehty. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopioidaan OpenLP:n tietoja uuteen datahakemiston sijaintiin - %s - Ole hyvä ja odota kopioinnin loppumista. + + + + OpenLP Data directory copy failed + +%s + OpenLP:n datahakemiston kopiointi epäonnistui + +%s OpenLP.Manager - + Database Error - + Tietokantavirhe - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Tietokanta, jota yritetään ladata, on luotu uudemmalla OpenLP:n versiolla. Tietokannan versio on %d, kun OpenLP edellyttää version olevan %d. Tietokantaa ei voi ladta. + +Tietokanta: %s. - + OpenLP cannot load your database. Database: %s - + OpenLP ei voi ladata tietokantaa. + +Tietokanta: %s. OpenLP.MediaManagerItem - + No Items Selected - + Ajolistan kohtaa ei ole valittu - + &Add to selected Service Item - + &Lisää valittuun ajolistan kohtaan. - + You must select one or more items to preview. - + Sinun pitää valita yksi tai useampi kohta esikatseluun. - + You must select one or more items to send live. - + Sinun pitää valita yksi tai useampi lähetettäväksi live-esitykseen. - + You must select one or more items. - + Sinun pitää valita yksi tai useampi kohta. - + You must select an existing service item to add to. - + SInun täytyy valita olemassaoleva ajolista, jonka lisätä. - + Invalid Service Item - + Vihreellinen ajolistan kohta - + You must select a %s service item. - + Sinun täytyy valita %s ajolistan kohta. - + You must select one or more items to add. - + Sinun täytyy valita yksi tai useampi koha lisättäväksi. - + No Search Results - + Ei hakutuloksia - + Invalid File Type - + Viheellinen tiedostotyyppi - + Invalid File %s. Suffix not supported - + Virheellinen tiedosto: %s. +Tiedostopäätettä ei tueta. - + &Clone - + &Monista - + Duplicate files were found on import and were ignored. - + Duplikaatteeja tiedostoja löytyi tuotaessa ja ne ohitettiin. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <lyrics> tagi puuttuu. - + <verse> tag is missing. - + <verse> tagi puuttuu. OpenLP.PluginForm - + Plugin List Luettelo lisäosista - + Plugin Details Lisäosan tiedot - + Status: - + Tila: - + Active - + Aktiivinen - + Inactive - + Toimeton - + %s (Inactive) - + %s (Toimeton) - + %s (Active) - + %s (Aktiivinen) - + %s (Disabled) - + %s (Estetty) OpenLP.PrintServiceDialog - + Fit Page - + Sovita sivulle - + Fit Width - + Sovita leveyteen OpenLP.PrintServiceForm - + Options - + Asetukset - + Copy - + Kopioi - + Copy as HTML - + Kopioi HTML:nä - + Zoom In - + Lähennä - + Zoom Out - + Loitonna - + Zoom Original - + Alkuperäiseen kokoon - + Other Options - + Muut asetukset - + Include slide text if available - + Ota mukaan dian teksti, jos saatavilla - + Include service item notes - + Ota mukaan muistiinpanot - + Include play length of media items - + Ota mukaan toistettavan median pituus - + Add page break before each text item - + Lisää sivunvaihto ennen jokaista tekstiä - + Service Sheet - + Ajolistan taulukko - + Print - - - - - Title: - + Tulosta + Title: + Otsikko: + + + Custom Footer Text: - + Mukautettu alatunniste: OpenLP.ScreenList - + Screen - + Näyttölaite - + primary - + ensisijainen OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Alku</strong>: %s - + <strong>Length</strong>: %s - + <strong>Pituus</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Järjestä ajolista uudelleen OpenLP.ServiceManager - + Move to &top - + Siirrä &ylös - + Move item to the top of the service. - + Siirrä rivi ajolistan ylimmäksi. - + Move &up - + Siirrä &ylös - + Move item up one position in the service. - + Siirrä rivi yhden ylemmäksi ajolistalla. - + Move &down - + Siirrä &alas - + Move item down one position in the service. - + Siirrä rivi yhden alemmaksi ajolistalla. - + Move to &bottom - + Siirrä &loppuun - + Move item to the end of the service. - + Siirrä rivi ajolistan viimeiseksi. - + &Delete From Service - + &Poista ajolistalta - + Delete the selected item from the service. - + Poista valittu rivi ajolistalta. - + &Add New Item - + &Lisää uusi rivi - + &Add to Selected Item - + Lisää valitun rivin - + &Edit Item - + &Muokkaa riviä - + &Reorder Item - + Järjestä &uudelleen - + &Notes - + Muistiin&panot - + &Change Item Theme - + &Muuta rivin teemaa - + OpenLP Service Files (*.osz) - + OpenLP ajolistat (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Tiedosto ei ole kelvollinen ajolista. +Sisältö ei ole UTF-8 muodossa. - + File is not a valid service. - + Tiedosto ei ole kelvollinen ajolista. - + Missing Display Handler - + Puuttuva näytön käsittelijä - + Your item cannot be displayed as there is no handler to display it - + Näyttöelementtiä ei voi näyttää, koska sen näyttämiseen ei ole määritelty näyttöä. - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Näyttöelementtiä ei voi näyttää, koska sen vaatimaa lisäosaa ei ole asennettu tai aktivoitu. - + &Expand all - + &Laajenna kaikki - + Expand all the service items. - + Avaa kaikki ajolistan rivit avoimiksi. - + &Collapse all - + &Supista kaikki - + Collapse all the service items. - + Supista kaikki ajolistan rivit kokoon. - + Open File - + Avaa tiedosto - + Moves the selection down the window. - + Siirtää valinnan alas ikkunassa. - + Move up - + Siirrä ylös - + Moves the selection up the window. - + Siirtää valinnan ylös ikkunassa. - + Go Live - + Aloita live-esitys - + Send the selected item to Live. - + Lähetä valinnat live-esitykseen. - + &Start Time - + &Alku aika - + Show &Preview - + Näytä &Esikatselu - + Modified Service - + Muokattu ajolista - + The current service has been modified. Would you like to save this service? - + Nykyistä ajolistaa on muokattu. Tahdotko tallentaa tämän ajolistan. - + Custom Service Notes: - + Mukautetun ajolistan muistiinpanot: - + Notes: - + Muistiinpanot: - + Playing time: - + Toistoaika: - + Untitled Service - + Nimetön ajolista - + File could not be opened because it is corrupt. - + Tiedostoa ei voida avata, koska sen sisältö on turmeltunut. - + Empty File - + Tyhjä tiedosto - + This service file does not contain any data. - + Tässä ajolistassa ei ole lainkaan sisältöä. - + Corrupt File - + Turmeltunut tiedosto - + Load an existing service. - + Lataa olemessaoleva ajolista. - + Save this service. - + Tallenna tämä ajolista. - + Select a theme for the service. - + Valitse teema ajolistalle. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Tämä tiedosto on joko vahingoittunut tai se ei ole OpenLP 2.0 ajolista. - - Service File Missing - - - - + Slide theme - + Dian teema - + Notes - + Muistiinpanot - + Edit - + Muokkaa - + Service copy only - + Vain ajoilstan kopio - + Error Saving File - + Virhe tallennettaessa tiedostoa - + There was an error saving your file. - + Tiedoston tallentamisessa tapahtui virhe. + + + + Service File(s) Missing + Jumalanpalveluksen tiedosto(t) puuttuvat + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Seuraavat tiedosto(t) puuttuvat jumalanpalveluksesta. +<byte value="x9"/>%s + +Nämä tiedostot poistetaan jos jatkat tallentamalla. OpenLP.ServiceNoteForm - + Service Item Notes - + Ajolistan rivin muistiinpanot OpenLP.SettingsForm - + Configure OpenLP - + Konfiguroi OpenLP OpenLP.ShortcutListDialog - + Action - + Toiminta - + Shortcut - + Oikotie - + Duplicate Shortcut - + Monista Oikotie - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Oikotie "%s" on varattu jo toiseen käyttöön, ole hyvä ja valitse jokin toinen oikotie. - + Alternate - + Vaihtoehtoinen - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Valitse toiminta ja paina jotain alla olevista painikkeista nauhoittaaksesi uuden pääasiallisen tai vaihtoehtoisen oikotien. - + Default - + Oletusarvo - + Custom - + Mukautettu - + Capture shortcut. - + Nauhoita oikotie. - + Restore the default shortcut of this action. - + Palauta oletusarvoinen oikotie tälle toiminnolle. - + Restore Default Shortcuts - + Palauta oletusarvoiset oikotiet - + Do you want to restore all shortcuts to their defaults? - + Oletko varma, että haluat palauttaa kaikki oikotiet oletusarvoiksi. - + Configure Shortcuts - + Muokkaa oikoteitä OpenLP.SlideController - + Hide - + Piilota - + Go To - + Siirry - + Blank Screen - + Pimennä näyttölaite - + Blank to Theme - + Pimennä teemaan - + Show Desktop - + Näytä työpöytä - + Previous Service - + Edellinen ajolista - + Next Service - + Seuraava ajolista - + Escape Item - + Koodaa erikoismerkit - + Move to previous. - + Siirry edelliseen - + Move to next. - + Siirry seuraavaan - + Play Slides - + Toista diat - + Delay between slides in seconds. - + Viive sekunteina diojen välissä. - + Move to live. - + Siirry live-esitykseen. - + Add to Service. - + Lisää ajolistalle. - + Edit and reload song preview. - + Muokkaa ja lataa laulu esikatseluun. - + Start playing media. - + Aloita median toistaminen - + Pause audio. - + Pysäytä audio - + Pause playing media. - + Pysäytä median toistaminen. - + Stop playing media. - + Keskeytä median toistaminen. - + Video position. - + Videon kohta. - + Audio Volume. - - - - - Go to "Verse" - + Äänenvoimakkuus - Go to "Chorus" - + Go to "Verse" + Siirry jakeeseen - Go to "Bridge" - + Go to "Chorus" + Siirry "Kertosäkeeseen" - Go to "Pre-Chorus" - + Go to "Bridge" + Siirry "Bridge"-osaan - - Go to "Intro" - + + Go to "Pre-Chorus" + Siirry "Pre-Chorus"-osaan - Go to "Ending" - + Go to "Intro" + Siirry "Introon" + Go to "Ending" + Siirry "Lopetukseen" + + + Go to "Other" - + Siirry "Muuhin - + Previous Slide - + Edellinen dia - + Next Slide - + Seuraava dia - + Pause Audio - + Keskeytä toisto - + Background Audio - + Taustan audio - + Go to next audio track. - + Siirry seuraavaan kappaleeseen - + Tracks - + Kappaleet OpenLP.SpellTextEdit - + Spelling Suggestions - + Tavutus ehdotuksia - + Formatting Tags - + Muotoilutagit - + Language: - + Kieli: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Tunnit: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minuutit: - Start - + Seconds: + Sekunnit: + + + + Item Start and Finish Time + Rivin alku- ja loppuaika - Finish - + Start + Alku + Finish + Loppu + + + Length - + Pituus - + Time Validation Error - + Aikamääreessä on virhe - + Finish time is set after the end of the media item - + Loppuaika on asetettu median kokonaispituuden yli. - + Start time is after the finish time of the media item - + Alkuaika on asetettu median kokonaispituuden yli. - + Theme Layout - + Teeman ulkoasu - + The blue box shows the main area. - + Sininen laatikko osoittaa varsinaisen pääalueen. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + Punainen laatikko osoittaa alatunnisteen. OpenLP.ThemeManager - + Create a new theme. - + Luo uusi teema. - + Edit Theme - + Muokkaa teemaa - + Edit a theme. - + Muokkaa teemaa - + Delete Theme - + Poista teema - + Delete a theme. - + Poista teema - + Import Theme - + Tuo teema - + Import a theme. - + Tuo teema - + Export Theme - + Vie teema - + Export a theme. - + Vie teema - + &Edit Theme - + &Muokkaa teemaa - + &Delete Theme - + &Poista teema - + Set As &Global Default - + Aseta &globaali oletusarvo - + %s (default) - + %s (oletusarvo) - + You must select a theme to edit. - + Sinun pitää valita muokattava teema. - + You are unable to delete the default theme. - + Et voi poistaa oletusteemaa. - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + Teemaa %s käytetään %s -lisäosassa. + You have not selected a theme. + Et ole valinnut teemaa. + + + Save Theme - (%s) - + Tallenna teema - (%s) - + Theme Exported - + Teema viety - + Your theme has been successfully exported. - + Valitsemasi teeman vienti onnistui. - + Theme Export Failed - + Teeman vienti epäonnistui - + Your theme could not be exported due to an error. - + Valitsemasi teemaan vienti keskeytyi virheeseen. - + Select Theme Import File - + Valitse tuotavan teeman tiedosto - + File is not a valid theme. - + Tiedosto ei ole kelvollinen teema. - + &Copy Theme - + &Kopioi teema - + &Rename Theme - + &Uudelleennimeä teema - + &Export Theme - + &Vie teema - + You must select a theme to rename. - + Sinun pitää valita uudelleennimettävä teema. - + Rename Confirmation - + Nimeämisen vahvistaminen - + Rename %s theme? - + Uudelleennimetäänkö %s teema? - + You must select a theme to delete. - + Sinun pitää valita poistettava teema. - + Delete Confirmation - + Poiston vahvistaminen - + Delete %s theme? - + Poistetaanko %s teema? - + Validation Error - + Virhe validoinnissa - + A theme with this name already exists. - + Teema tällä nimellä on jo olemassa. - + OpenLP Themes (*.theme *.otz) - + OpenLP teemat (*theme *otz) - + Copy of %s Copy of <theme name> - + Kopio %s:sta - + Theme Already Exists - + Teema on jo olemassa + + + + Theme %s already exists. Do you want to replace it? + Teema %s on jo olemassa. Tahdotko korvata sen? OpenLP.ThemeWizard - + Theme Wizard - + Teemojen ohjattu toiminto - + Welcome to the Theme Wizard - + Tervetuloa teemojen ohjattuun toimintoon - + Set Up Background - + Määrittele tausta - + Set up your theme's background according to the parameters below. - + Asta teemallesi tausta allaolevia parametreja säätämällä. - + Background type: - + Taustan tyyppi - + Solid Color - + Yhtenäinen väri - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + Väriliuku + Color: + Väri: + + + + Gradient: + Väriliuku: + + + + Horizontal + Vaakasuora + + + + Vertical + Pystysuora + + + + Circular + Säteittäinen + + + + Top Left - Bottom Right + Ylhäältä vasemmalta - alas oikealle + + + + Bottom Left - Top Right + Alhaalta vasemmalta - ylhäälle oikealle + + + + Main Area Font Details + Tekstialueen kirjasintiedot + + + + Define the font and display characteristics for the Display text + Määrittele kirjasin ja tekstin ominaisuudet näytettävälle tekstille + + + + Font: + Kirjasin: + + + Size: - + Koko: - + Line Spacing: - + Riviväli: - + &Outline: - + &Ääriviivat - + &Shadow: - - - - - Bold - + &Varjostus + Bold + Lihavointi + + + Italic - + Kursiivi - + Footer Area Font Details - + Alatunnisteen kirjasintiedot - + Define the font and display characteristics for the Footer text - + Määrittele kirjasin ja tekstin ominaisuudet dian alatunnisteelle - + Text Formatting Details - + Tekstin muotolutiedot - + Allows additional display formatting information to be defined - + Sallii ylimääräisten näytön muotoilutietojen määrittelemisen - + Horizontal Align: - + Vaakasuora kohdistus - + Left - + Vasen - + Right - + Oikea - + Center - + Keskitetty - + Output Area Locations - + Tulostusalueen sijainti - + Allows you to change and move the main and footer areas. - + Sallii muuttaa ja siirtää tekstin sekä alatunnisteen aluetta. - + &Main Area - + &Tekstialue - + &Use default location - + &Käytä oletussijaintia - + X position: - + X sijainti: - + px - + px - + Y position: - + Y sijainti: - + Width: - + Leveys: - + Height: - + Korkeus: - + Use default location - + Käytä oletussijaintia - + Theme name: - + Teeman nimi: - + Edit Theme - %s - + Muokkaa teemaa - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Tämä ohjattu toiminto helpottaa teemojen muokkamista ja luomista. Paina 'Seuraava'-painiketta aloittaksesi taustan asetuksisata. - + Transitions: - + Siirtymät: - + &Footer Area - + &Alatunniste - + Starting color: - + Aloittava väri: - + Ending color: - + Lopettava väri: - + Background color: - + Taustaväri: - + Justify - + Tasaa - + Layout Preview - + Ulkoasun esikatselu - + Transparent - + Läpikuultava - + Preview and Save - + Esikatsele ja tallenna - + Preview the theme and save it. - + Esikatsele teema ja tallenna se. + + + + (approximately %d lines per slide) + (noin %d riviä dialla) + + + + Background Image Empty + Taustakuva tyhjä + + + + You have not selected a background image. Please select one before continuing. + Et ole valinnut taustakuvaa. Ole hyvä ja valitse kuva ennen kuin jatketaan eteenpäin. + + + + Select Image + Valitse kuva + + + + Theme Name Missing + Teeman nimi puuttuu + + + + There is no name for this theme. Please enter one. + Teemalle ei ole annettu nimeä. Ole hyvä ja anna se. + + + + Theme Name Invalid + Teeman nimi on kelvoton + + + + Invalid theme name. Please enter one. + Teeman nimi on kelvoton. Ole hyvä ja anna uusi. OpenLP.ThemesTab - + Global Theme - + Globaali teema - + Theme Level - + Teeman taso - + S&ong Level - + La&ulun taso - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + Käytä teemaa, mikä on määritelty laululle tietokannassa. Jos laululle ei ole määritelty teemaa, käytetään ajolistan teemaa. Jos ajolistalle ei ole määritelty teemaa, käytetään globaalia teemaa sen sijaan. - + &Service Level - + &Ajolistan taso - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + Käytä ajolistalle määriteltyä teemaa ylimäärittelemään laulukohtaiset teemat. Jos ajolistalla ei ole teemaa, käytetään globaalia teemaa sen sijaan. - + &Global Level - + &Globaali taso - + Use the global theme, overriding any themes associated with either the service or the songs. - + Käytä globaalia teemaa ylimäärittelemään kaikki ajolistalle tai lauluille määritellyt teemat. - + Themes - + Teemat OpenLP.Ui - + Error - - - - - About - + Virhe - &Add - + About + Tietoja - Advanced - + &Add + &Lisää - All Files - + Advanced + Edistyneet - Bottom - + All Files + Kaikki tiedostot - Browse... - + Bottom + Alas - Cancel - + Browse... + Selaa... - CCLI number: - + Cancel + Peruuta + CCLI number: + CCLI numero: + + + Create a new service. - + Luo uusi ajolista. - + &Delete - - - - - &Edit - + &Poista + &Edit + &Muokkaa + + + Empty Field - + Tyhjä kenttä - + Export - + Vienti - + pt Abbreviated font pointsize unit - - - - - Image - + pt - Import - + Image + Kuva - - Live - + + Import + Tuonti + Live + Live-esitys + + + Live Background Error - + Live-esityksen taustan virhe - + Load - - - - - Middle - + Lataa - New - + Middle + Keskellä - New Service - + New + Uusi - New Theme - + New Service + Uusi ajolista - - No File Selected - Singular - + + New Theme + Uusi teema - No Files Selected - Plural - + No File Selected + Singular + Yhtään tiedostoa ei ole valittu - No Item Selected - Singular - + No Files Selected + Plural + Tiedostoja ei ole valittu - No Items Selected - Plural - + No Item Selected + Singular + Yhtään kohtaa ei ole valittu - openlp.org 1.x - + No Items Selected + Plural + Kohtia ei ole valittu luettelosta + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Esikatselu - + Replace Background - + Korvaa tausta - + Reset Background - + Nollaa tausta - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Tallenna && Esikatsele + + + Search - + Etsi - + You must select an item to delete. - + Sinun pitää valita poistettava kohta. - + You must select an item to edit. - - - - - Save Service - + Siniun pitää valita muokattava kohta. + Save Service + Tallenna ajolista + + + Service - + Ajolista - + Start %s - - - - - Theme - Singular - + Käynnistä %s + Theme + Singular + Teema + + + Themes Plural - + Teemat - + Top - + Ylös - + Version - + Versio - + Delete the selected item. - + Poista valittu kohta. - + Move selection up one position. - + Siirrä valintaa ylöspäin yhden pykälän. - + Move selection down one position. - + Siirrä valintaa alaspäin yhden pykälän. - + &Vertical Align: - - - - - Finished import. - + Pystysuuntainen tasaus: - Format: - + Finished import. + Tuominen valmis. - - Importing - + + Format: + Tiedostomuoto: - Importing "%s"... - + Importing + Tuominen - Select Import Source - + Importing "%s"... + Tuodaan "%s"... + Select Import Source + Valitse tuonnin lähde + + + Select the import format and the location to import from. - + Valitse tuotavan tiedoston muoto ja sijainti. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open.org 1.x tuonti on estetty, koska järjestelmästä puuttu tarvittava Python-moduuli. Jos tahdot käyttää tuontia, sinun pitää asentaa "python-sqlite"-moduuli. - + Open %s File - - - - - %p% - + Avaa %s tiedosto + %p% + %p% + + + Ready. - + Valmis. - + Starting import... - + Aloitetaan tuontia... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Sinun pitää määritellä vähintää yksi %s tiedosto tuotavaksi. Welcome to the Bible Import Wizard - + Tervetuloa Raamattujen tuonnin ohjattuun toimintoon. - + Welcome to the Song Export Wizard - + Tervetuloa laulujen viennin ohjattuun toimintoon. - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Tervetuloa laulujen tuonnin ohjattuun toimintoon. - Authors - Plural - + Author + Singular + Tekijä - - © - Copyright symbol. - + + Authors + Plural + Tekijät - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + Laulukirja - Title and/or verses not found - + Song Books + Plural + Laulukirjat + + + + Song Maintenance + Laulujen ylläpito + + + + Topic + Singular + Aihe - XML syntax error - + Topics + Plural + Aiheet + + + + Continuous + Jatkuva + + + + Default + Oletusarvo + + + + Display style: + Näyttötyyli: + + + + Duplicate Error + Duplikaatti virhe + + + + File + Tiedosto + + + + Help + Ohje + + + + h + The abbreviated unit for hours + h + + + + Layout style: + Ulkoasun tyyli: + + + + Live Toolbar + Live-työkalurivi + + + + m + The abbreviated unit for minutes + m + + + + OpenLP is already running. Do you wish to continue? + OpenLP on jo käynnissä. Haluatko silti jatkaa? + + + + Settings + Asetukset + + + + Tools + Työkalut + + + + Unsupported File + Ei-tuettu tiedosto + + + + Verse Per Slide + Jae per dia + + + + Verse Per Line + Jae per rivi + View + Näytä + + + + Title and/or verses not found + Otsikko ja / tai jakeet eivät löytyneet + + + + XML syntax error + XML kielioppivirhe + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + Näyttötila - Play Slides in Loop - + Open service. + Avaa ajolista. + + + + Print Service + Tulosta ajolista + + + + Replace live background. + Korvaa live-esityksen tausta. + + + + Reset live background. + Nollaa live-esityksen tausta. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Puolita dia kahteen osaan vain, jos se ei mahdu näytölle yhtenä diana. + + + + Welcome to the Bible Upgrade Wizard + Tervetuloa Raamattujen päiviittämisen ohjattuun toimintoon + + + + Confirm Delete + Vahvista poisto + Play Slides in Loop + Toista diat silmukassa + + + Play Slides to End - + Toista diat alusta loppuun - + Stop Play Slides in Loop - + Keskeytä diojen toisto silmukassa - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + Keskeytä diojen toisto alusta loppuun + Next Track + Seuraava kappale + + + + Search Themes... + Search bar place holder text + Etsi teemoja... + + + + Optional &Split + Vaihtoehtoinen &jakaja + + + + Invalid Folder Selected + Singular + Virheellinen hakemisto valittu + + + + Invalid File Selected + Singular + Virheellinen tiedosto valittu + + + + Invalid Files Selected + Plural + Virheelliset tiedostot valittu + + + No Folder Selected Singular - + Hakemistoa ei ole valittu - + Open %s Folder - + Avaa %s hakemisto - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Sinun tulee määritellä ainakin yksi %s tiedosto tuotavaksi. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Sinun tulee määritellä ainakin yksi %s hakemisto tuotavaksi. + + + + Importing Songs + Tuodaan lauluja OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 ja %2 - + %1, and %2 Locale list separator: end - + %1, ja %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Esitysgrafiikka-lisäosa</strong></br>Esitysgrafiikka-lisäosa mahdollistaa valmiiden esitysten käyttämisen ajolistalla. Käytettävissä olevat esitysgrafiikkaohjelmat voi valita alasvetolistalta. - + Presentation name singular Esitys - + Presentations name plural Esitykset - + Presentations container title Esitykset - + Load a new presentation. - + Lataa uusi esitys. - + Delete the selected presentation. - + Poista valittu esitys. - + Preview the selected presentation. - + Esikatsele valittua esitystä. - + Send the selected presentation live. - + Lähetä valittu esitys live-esitykseen. - + Add the selected presentation to the service. - + Lisää valittu esitys ajolistalle. PresentationPlugin.MediaItem - + Select Presentation(s) - + Valitse esitykse(t) - + Automatic - + Automaattinen - + Present using: - + Esitä käyttäen: - + File Exists - + Tiedosto on jo olemassa - + A presentation with that filename already exists. - + Esitys tällä tiedostonimellä on jo olemassa. - + This type of presentation is not supported. - + Tämän muotoista esitysgrafiikkaa ei tueta. - + Presentations (%s) - + Esitykset (%s) - + Missing Presentation - + Puuttuva esitys - + The presentation %s is incomplete, please reload. - + Esitys %s on keskeneräinen, ole hyvä ja lataa uudelleen. - + The presentation %s no longer exists. - + Esitystä %s ei ole enää olemassa. PresentationPlugin.PresentationTab - + Available Controllers - + Saatavilla olevat ohjaimet - + %s (unavailable) - + %s (ei saatavilla) - + Allow presentation application to be overridden - + Salli ylimääritellä esitysgrafiikan sovellus RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Kaukosäädin-lisäosa</strong></br>Kaukosäädin-lisäosa mahdollistaa viestien lähettämisen OpenLP:n esitykseen toiselta koneelta tai esimerkiksi hyvästä android-puhelimesta. - Remotes - name plural - + Remote + name singular + Kaukosäädin - + + Remotes + name plural + Kaukosäätimet + + + Remote container title - + Kaukosäädin RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 Kaukosäädin + + + OpenLP 2.0 Stage View - + OpenLP 2.0 näyttämönäkymä - + Service Manager - + Ajolistan hallinta - + Slide Controller - + Diojen ohjaus - + Alerts Hälytykset - + Search - - - - - Refresh - + Etsi - Blank - + Refresh + Päivitä - - Show - + + Blank + Pimennä - Prev - + Show + Näytä - Next - + Prev + Edellinen - Text - + Next + Seuraava + Text + Teksti + + + Show Alert Näytä hälytys - + Go Live - - - - - No Results - + Siirry live-tilaan + No Results + Ei tuloksia + + + Options - + Asetukset - + Add to Service - + Lisää ajolistalle - + Home - - - - - Theme - + Koti - Desktop - + Theme + Teema - + + Desktop + Työpöytä + + + Add &amp; Go to Service - + Lisää &amp;Siirry ajolistalle + + + + Service + Palvelu + + + + Slides + Diat RemotePlugin.RemoteTab - + Serve on IP address: - + IP osoite: - + Port number: - + Portti: - + Server Settings - + Palvelimen asetukset - + Remote URL: - + Palvelimen URL: - + Stage view URL: - + Näyttölavan URL: - + Display stage time in 12h format - + Näytä aika 12-tunnin muodossa - + Android App - + Android sovellus - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Skannaa QR-koodi tai klikkaa <a href="https://play.google.com/store/apps/details?id=org.openlp.android">lataa</a> asentaaksesi Android-sovelluksen Google Play:sta. SongUsagePlugin - + &Song Usage Tracking - + &Laulujen tilastointi - + &Delete Tracking Data - + &Poista tilastot - + Delete song usage data up to a specified date. - + Poista laulujen tilastotiedot tiettyyn päivään saakka. - + &Extract Tracking Data - + Pura tilastotiedot - + Generate a report on song usage. - + Tee raportti laulujen käytöstä. - + Toggle Tracking - + Tilastointi päälle/pois - + Toggle the tracking of song usage. - + Laulujen käyttötilastointi päälle / pois. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Laulujen käyttötilastointi -lisäosa</strong></br>Tämä lisäosa pitää yllä tilastoa jumalanpalveluksissa käytetyistä lauluista. - + SongUsage name singular - + Soittotilasto - + SongUsage name plural - + Soittotilasto - + SongUsage container title - + Soittotilasto - + Song Usage - + Laulun käyttötilasto - + Song usage tracking is active. - + Soittotilastointi on aktiivinen. - + Song usage tracking is inactive. - + Laulujen käyttötilastointi ei ole päällä. - + display - + näyttö - + printed - + tulostettu SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Poista laulujen käyttötilastoinnin tiedot - + Delete Selected Song Usage Events? - + Poistetaanko laulujen käyttötilastoinnin tiedot? - + Are you sure you want to delete selected Song Usage data? - + Oletko varma, että haluat poistaa laulujen käyttötilastoinnin tiedot? - + Deletion Successful - + Poisto onnistui - + All requested data has been deleted successfully. - + Kaikki esitetyt tiedot on poistettu onnistuneesti. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Valitse päivämäärä, mihin saakka laulujen käyttötilastot poistetaan. Kaikki tallennetut tiedot ennen tätä päivää hävitetään pysyvästi. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Käyttötilaston purkaminen - + Select Date Range - + Valitse päivämääräväli - + to - + - - + Report Location - + Raportin sijainti - + Output File Location - + Kohdetiedoston sijainti - + usage_detail_%s_%s.txt - + usage_detail_%s_%s.txt - + Report Creation - + Raportin luominen - + Report %s has been successfully created. - + Raportti + %s +on onnistuneesti luotu. - + Output Path Not Selected - + Kohdetiedostoa ei ole valittu - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Et ole asettanut kelvollista sijaintia kohteeksi laulujen käyttötilastolle. Ole hyvä ja valitse olemassaoleva kansio tietokoneestasi. SongsPlugin - + &Song - + &Laulu - + Import songs using the import wizard. - + Tuo lauluja käyttäen tuonnin ohjattua toimintoa. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Laulut -lisäosa</strong><br />Laulut -lisäosalla voidaan näyttää ja hallinnoida laulujen sanoja. - + &Re-index Songs - + &Uudelleen-indeksoi laulut - + Re-index the songs database to improve searching and ordering. - + Laulujen uudelleen-indeksointi parantaa tietokannan nopeutta etsimisessä ja järjestämisessä. - + Reindexing songs... - - - - - Arabic (CP-1256) - + &Uudelleen-indeksoidaan lauluja... - Baltic (CP-1257) - + Arabic (CP-1256) + Arabialainen (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Balttia (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Keski-Eurooppa (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Kyrillinen (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Kreikka (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Heprea (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Japani (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Korea (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Kiina Simplified (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thai (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Kiina Traditional (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Turkki (CP-1254) + Vietnam (CP-1258) + Vietnam (CP-1258) + + + Western European (CP-1252) - + Läntinen Eurooppa (CP-1252) - + Character Encoding - + Merkistö - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Koodisivuasetus määrittelee tekstille +oikean merkistöesityksen. +Yleensä esivalittu merkistö on varsin toimiva valinta. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Ole hyvä ja valitse merkistön enkoodaus. +Enkoodaus määrittelee tekstille oikean merkistöesityksen. - + Song name singular - + Laulu - + Songs name plural - + Laulut - + Songs container title - + Laulut - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + Vie lauluja käyttäen tuonnin ohjattua toimintoa. - Preview the selected song. - + Add a new song. + Lisää uusi laulu. - Send the selected song live. - + Edit the selected song. + Muokkaa valittua lalulua. + Delete the selected song. + Poista valittu laulu. + + + + Preview the selected song. + Esikatsele valittua laulua. + + + + Send the selected song live. + Lähetä valittu laulu live-esitykseen. + + + Add the selected song to the service. - + Lisää valittu laulu ajolistalle. + + + + Reindexing songs + Uudelleenindeksoidaan lauluja SongsPlugin.AuthorsForm - + Author Maintenance - + Tekijöiden ylläpito - + Display name: - + Näytön nimi: - + First name: - + Etunimi: - + Last name: - + Sukunimi: - + You need to type in the first name of the author. - + Sinun pitää syöttää tekijän etunimi. - + You need to type in the last name of the author. - + Sinun pitää syöttää tekijän sukunimi. - + You have not set a display name for the author, combine the first and last names? - + Et ole asettanut näyttönimeä tekijälle, yhdistetäänkö etu- ja sukunimet? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Tiedostolla ei ole kelvollista päätettä. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Ylläpitäjä %s - + [above are Song Tags with notes imported from EasyWorship] - + +[yllä ovat laulun tagit muistiinpanojen kanssa, jotka on tuotu +EasyWorshipistä] SongsPlugin.EditBibleForm - + Meta Data - + Metatiedot - + Custom Book Names - + Mukautetut kirjannimet SongsPlugin.EditSongForm - + Song Editor - + Laulun muokkaus - + &Title: - + &Otsikko - + Alt&ernate title: - + &Vaihtoehtoinen otsikko: - + &Lyrics: - + &Sanat: - + &Verse order: - + &Jakeiden järjestys - + Ed&it All - + Muokkaa &kaikkia - + Title && Lyrics - + Otsikko && sanat - + &Add to Song - + &Lisää lauluun - + &Remove - + &Poista - + &Manage Authors, Topics, Song Books - + Muokkaa tekijöitä, aiheita ja laulukirjoja. - + A&dd to Song - + &Lisää lauluun - + R&emove - + &Poista - + Book: - + Kirja: - + Number: - + Numero: - + Authors, Topics && Song Book - + Tekijät, Aiheet && Laulukirjat - + New &Theme - + Uusi &Teema - + Copyright Information - + Tekijäinoikeudet - + Comments - + Kommentit - + Theme, Copyright Info && Comments - + Teema, tekijäinoikeudet && kommentit - + Add Author - + Lisää tekijä - + This author does not exist, do you want to add them? - + Tätä tekijää ei ole olemassa, haluatko lisätä sen? - + This author is already in the list. - + Tämä tekijä on jo luettelossa. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Sinun pitää valita kelvollinen tekijä. Valitse tekijä joko luettelosta tai kirjoita uusi tekijä ja paina "Lisää tekijä lauluun" -painiketta. - + Add Topic - + Lisää aihe - + This topic does not exist, do you want to add it? - + Tätä aihetta ei ole olemassa, tahdotko sinä lisätä sen? - + This topic is already in the list. - + Tämä aihe on jo luettelossa. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Et ole valinnut kelvollista aihetta. Valitse joko aihe luettelosta tai syötä uusi aihe ja paina "Lisää aihe laululle" -painiketta. - + You need to type in a song title. - + Sinun tulee antaa laululle otsikko. - + You need to type in at least one verse. - + Sinun pitää syöttää ainakin yksi jae. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Jaejärjestys ei ole kelvollinen. Ei ole jaetta, joka vastaa %s -viitettä. Kelvolliset viitteet ovat %s. - + Add Book - + Lisää kirja - + This song book does not exist, do you want to add it? - + Tätä laulukirjaa ei ole vielä olemassa, tahdotko lisätä sen? - + You need to have an author for this song. - + Sinun pitää määritellä tekijä tälle laululle. - - You need to type some text in to the verse. - - - - + Linked Audio - + Linkitetty audio - + Add &File(s) - + Lisää &Tiedosto(t) - + Add &Media - + Lisää &Media - + Remove &All - + Poista &Kaikki - + Open File(s) - + Avaa tiedosto(t) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Varoitus:</strong> Kaikki jakeista eivät ole käytössä. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Jakeiden järjestys on virheellinen. Ei ole vastaavaa jaetta %s:lle. Kelvolliset kohdat ovat %s. SongsPlugin.EditVerseForm - + Edit Verse - + Muokkaa jaetta - + &Verse type: - + &Jakeen tyyppi: - + &Insert - + &Lisää - + Split a slide into two by inserting a verse splitter. - + Jaa dia kahteen osaan lisäämällä jakeen jakaja. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Laulujen viennin ohjattu toiminto - + Select Songs - + Valitse laulut - + Check the songs you want to export. - + Tarkista laulut, jotka tahdot viedä. - + Uncheck All - + Poista valinnat - + Check All - + Valitse kaikki - + Select Directory - + Valitse hakemisto - + Directory: - + Hakemisto: - + Exporting - + Viedään - + Please wait while your songs are exported. - + Ole hyvä ja odota hetki kunnes laulut on viety. - + You need to add at least one Song to export. - + Sinun pitää lisätä ainakin yksi laulu vietäväksi. - + No Save Location specified - + Sijaintia tallennukselle ei ole määritelty - + Starting export... - + Aloitetaan vienti... - + You need to specify a directory. - + Sinun pitää määritellä hakemisto. - + Select Destination Folder - + Valitse kohdehakemisto - + Select the directory where you want the songs to be saved. - + Valitse hakemisto, jonne laulut tallennetaan. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Tämä ohjattu toiminto helpottaa laulujen viemistä avoimeen ja vapaaseen <strong>OpenLyrics</strong> ylistyslaulujen formaattiin. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Valitse asiakirja/esitysgrafiikka tiedostot - + Song Import Wizard - + Laulujen tuonnin ohjattu toiminto - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Tämä ohjattu toiminto helpottaa laulujen tuomista eri formaateista. Paina 'Seuraava'-painiketta aloittaaksesi prosessin valitsemalla muodon, josta tuonti tehdään. - + Generic Document/Presentation - + Geneerinen asiakirja/esitysgrafiikka - + Add Files... - + Lisää tiedostoja... - + Remove File(s) - + Poista tiedosto(ja) - + Please wait while your songs are imported. - + Ole hyvä ja odota, kunnes laulut on tuotu. - + OpenLP 2.0 Databases - + OpenLP 2.0 tietokannat - + openlp.org v1.x Databases - + openlp.org v1.x Tietokannat - + Words Of Worship Song Files - + Words Of Worship -laulutiedostot - + Songs Of Fellowship Song Files - + Songs Of Fellowship -laulutiedostot - + SongBeamer Files - + SongBeamer -laulutiedostot - + SongShow Plus Song Files - + SongShow Plus -laulutiedostot - + Foilpresenter Song Files - + Foilpresenter -laulutiedostot - + Copy - + Kopioi - + Save to File - + Tallenna tiedostoon - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Songs of Fellowship tuonti on pois käytöstä, koska OpenLP ei havaitse OpenOffice tai LibreOffice -ohjelmisto asennettuna. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Geneerinen asiakirjan/esitysgrafiikan tuonti on poissa käytöstä, koska OpenLP ei havaitse asennettua OpenOffice tai LiberOffice -ohjelmistoa. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics tai OpenLP 2.0 viety laulu - + OpenLyrics Files - + OpenLyrics tiedostot - + CCLI SongSelect Files - + CCLI SongSelect tiedostot - + EasySlides XML File - + EasySlides XML-tiedosto - + EasyWorship Song Database - + EasyWorship tietokanta - + DreamBeam Song Files - + DreamBeam laulutiedostot - + You need to specify a valid PowerSong 1.0 database folder. - + Sinun pitää määritellä kelvollinen PowerSong 1.0 tietokannan hakemisto. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + Ensiksi muunna ZionWorx tietokanta CSV-tekstiksi niin kuin on selitetty <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Käyttöohjeessa</a>. - + SundayPlus Song Files - + SundayPlus laulutiedostot - + This importer has been disabled. - + Tämä tuontitoiminto on estetty. - + MediaShout Database - + MediaShout tietokanta - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShout tuonti on tuettu ainoastaan Windowsissa. Se on estetty, koska tarvittavaa Python-moduulia ei ole. Jos tahdot käyttää tätä tuontia, sinun pitää asentaa "pyodbc" moduuli. - + SongPro Text Files - + SongPro tekstitiedostot - + SongPro (Export File) - + SongPro (vientitiedosto) - + In SongPro, export your songs using the File -> Export menu - + SongProssa, vie ensin laulut käyttäen File->Export valikkoa. SongsPlugin.MediaFilesForm - + Select Media File(s) - + Valitse mediatiedosto(t) - + Select one or more audio files from the list below, and click OK to import them into this song. - + Valitse yksi tai useampia audio-tiedostoja alla olevasta luettelosta ja paina OK tuodaksesi ne tähän lauluun. SongsPlugin.MediaItem - + Titles - + Otsikot - + Lyrics - + Sanat - + CCLI License: - + CCLI Lisenssi - + Entire Song - + Koko laulu - + Are you sure you want to delete the %n selected song(s)? - + + Oletko varma, että tahdot poistaa %n valittua laulu(a)? + Oletko varma, että tahdot poistaa %n valittua laulu(a)? + - + Maintain the lists of authors, topics and books. - + Ylläpidä luetteloa tekijöistä, kappaleista ja kirjoista. - + copy For song cloning - + kopioi - + Search Titles... - + Etsi otsikoita... - + Search Entire Song... - + Etsi kokonaista laulua... - + Search Lyrics... - + Etsi laulun sanoja... - + Search Authors... - + Etsi tekijöitä... - + Search Song Books... - + Etsi laulukirjoja... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Ei voi avata MediaShout tietokantaa. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Ei ole kelvollinen openlp.org 1.x laulutietokanta. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Ei ole kelvollinen OpenLP 2.0 laulutietokanta. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Viedään "%s"... SongsPlugin.PowerSongImport - + No songs to import. - + Ei lauluja tuotavaksi. - + Verses not found. Missing "PART" header. - + Jakeita ei löytynyt. Puuttuva "PART" tunniste. + + + + No %s files found. + Ei %s tiedostoja löytynyt. + + + + Invalid %s file. Unexpected byte value. + Virheellinen %s tiedosto. Odottamaton tavun arvo. + + + + Invalid %s file. Missing "TITLE" header. + Virheellinen %s tiedosto. "TITLE" tunniste puuttuu. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Virheellinen %s tiedosto. Puuttuva "COPYRIGHTLINE" tunniste. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Laulukirjojen ylläpito - &Publisher: - + &Name: + &Nimi - + + &Publisher: + &Kustantaja + + + You need to type in a name for the book. - + Sinun pitää antaa kirjalle nimi. SongsPlugin.SongExportForm - + Your song export failed. - + Laulun vienti epäonnistui. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Vienti valmistui. Tuodaksesi nämä tiedostot käytä <strong>OpenLyrics</strong> tuontia. SongsPlugin.SongImport - + copyright - + tekijäinoikeudet - + The following songs could not be imported: - + Seuraavia lauluja ei voi tuoda: - + Cannot access OpenOffice or LibreOffice - + OpenOffice tai LibreOffice -ohjelmistoa ei löydy. - + Unable to open file - + Ei voida avata tiedostoa - + File not found - + Tiedostoa ei löydy SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Tekijää ei voida lisätä. - + This author already exists. - + Tämä tekijä on jo olemassa. - + Could not add your topic. - + Aihetta ei voida lisätä. - + This topic already exists. - + Aihe on jo olemassa. - + Could not add your book. - + Kirjaa ei voida lisätä. - + This book already exists. - + Tämä kirja on jo olemassa. - + Could not save your changes. - + Muutoksia ei voida tallentaa. - + Could not save your modified author, because the author already exists. - + Ei voida tallentaa muokattua tekijää, koska tekijä on jo olemassa. - + Could not save your modified topic, because it already exists. - + Ei voida tallentaa muokattua aihetta, koska se on jo olemassa. - + Delete Author - + Poista tekijä - + Are you sure you want to delete the selected author? - + Oletko varma, että haluat poistaa valitun tekijän? - + This author cannot be deleted, they are currently assigned to at least one song. - + Tätä tekijää ei voida poistaa, koska sitä käytetään ainakin yhdessä laulussa. - + Delete Topic - + Poista aihe - + Are you sure you want to delete the selected topic? - + Oletko varma, että haluat poistaa valitun aiheen? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Tätä aihetta ei voi poistaa, koska se on käytössä ainakin yhdessä laulussa. - + Delete Book - + Poista kirja - + Are you sure you want to delete the selected book? - + Oletko varma, että tahdot poistaa valitun kirjan? - + This book cannot be deleted, it is currently assigned to at least one song. - + Tätä kirjaa ei voi poistaa, koska sitä käytetään ainakin yhdessä laulussa. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Tekijä %s on jo olemassa. Tahdotko muuttaa ne laulut, jotka on tehnyt %s käyttämään tekijänä %s. - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Aihe %s on jo olemassa. Tahdotko muuttaa laulut aiheella %s käyttämään olemassa olevaa aihetta %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Kirja %s on jo olemassa. Tahdotko muuttaa ne laulut, jotka kuuluvat kirjaan %s kuulumaan kirjaan %s. SongsPlugin.SongsTab - + Songs Mode - + Laulut-tila - + Enable search as you type - + Etsi jo kirjoitettaessa - + Display verses on live tool bar - + Näytä jakeet live-työkalurivillä - + Update service from song edit - + Päivitä ajolista laulujen muokkauksesta - + Import missing songs from service files - + Tuo puuttuvat laulu ajolistan tiedostoista SongsPlugin.TopicsForm - + Topic Maintenance - + Aiheiden ylläpito - + Topic name: - + Aiheen nimi: - + You need to type in a topic name. - + Sinun pitää syöttää nimi aiheelle. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Säe - Bridge - + Chorus + Kertosäe - Pre-Chorus - + Bridge + Siirtymä - Intro - + Pre-Chorus + Esi-kertosäe - Ending - + Intro + Intro + Ending + Lopetus + + + Other - + Muu SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Virhe luettaessa CSV-tiedostoa. - + File not valid ZionWorx CSV format. - + Tiedosto ei ole kelvollista ZionWorx CSV -muotoa. + + + + Line %d: %s + Rivi %d. %s + + + + Decoding error: %s + Dekoodauksen virhe: %s + + + + Record %d + Tietue %d - \ No newline at end of file + diff --git a/resources/i18n/fr.ts b/resources/i18n/fr.ts index 97b8e1486..3ccdbcd96 100644 --- a/resources/i18n/fr.ts +++ b/resources/i18n/fr.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Alerte - + Show an alert message. Affiche un message d'alerte. - + Alert name singular Alerte - + Alerts name plural Alertes - + Alerts container title Alertes - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Module d'alerte</strong><br />Le module d'alerte permet d'envoyer des messages d'alertes de la pouponnière sur l'écran du direct. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Message d'alerte - + Alert &text: &Texte d'Alerte : - + &New &Nouveau - + &Save &Enregistre - + Displ&ay A&ffiche - + Display && Cl&ose &Affiche && Ferme - + New Alert Nouvelle alerte - + You haven't specified any text for your alert. Please type in some text before clicking New. Vous n'avez pas spécifié de texte pour votre alerte. Veuillez entrer votre message puis cliquer sur Nouveau. - + &Parameter: &Paramètre : - + No Parameter Found Aucun paramètre n'a été trouvé - + You have not entered a parameter to be replaced. Do you want to continue anyway? Vous n'avez entré aucun paramètre à remplacer. Voulez-vous tout de même continuer ? - + No Placeholder Found Aucun espace réservé trouvé - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Le texte d'alerte ne contient pas '<>'. Voulez-vous tout de même continuer ? @@ -118,32 +119,32 @@ Voulez-vous tout de même continuer ? AlertsPlugin.AlertsTab - + Font Police - + Font name: Nom de la police : - + Font color: Couleur de la police : - + Background color: Couleur de fond : - + Font size: Taille de la police : - + Alert timeout: Temps d'alerte : @@ -151,510 +152,510 @@ Voulez-vous tout de même continuer ? BiblesPlugin - + &Bible &Bible - + Bible name singular Bible - + Bibles name plural Bibles - + Bibles container title Bibles - + No Book Found Aucun livre trouvé - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Aucun livre correspondant n'a été trouvé dans cette Bible. Vérifiez que vous avez correctement écrit le nom du livre. - + Import a Bible. Importe une Bible. - + Add a new Bible. Ajoute une nouvelle Bible. - + Edit the selected Bible. Édite la bible sélectionnée. - + Delete the selected Bible. Supprime la Bible sélectionnée. - + Preview the selected Bible. Prévisualise la Bible sélectionnée. - + Send the selected Bible live. Envoie la Bible sélectionnée au direct. - + Add the selected Bible to the service. Ajoute la Bible sélectionnée au service. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Module Bible</strong><br />Le Module Bible permet d'afficher des versets bibliques de différentes sources pendant le service. - + &Upgrade older Bibles Mettre à &jour les anciennes Bibles - + Upgrade the Bible databases to the latest format. Mettre à jour les bases de données de Bible au nouveau format. - + Genesis Genèse - + Exodus Exode - + Leviticus Lévitique - + Numbers Nombres - + Deuteronomy Deutéronome - + Joshua Josué - + Judges Juges - + Ruth Ruth - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Rois - + 2 Kings 2 Rois - + 1 Chronicles 1 Chroniques - + 2 Chronicles 2 Chroniques - + Ezra Esdras - + Nehemiah Néhémie - + Esther Esther - + Job Job - + Psalms Psaumes - + Proverbs Proverbes - + Ecclesiastes Ecclésiaste - + Song of Solomon Cantique - + Isaiah Esaïe - + Jeremiah Jérémie - + Lamentations Lamentations - + Ezekiel Ezéchiel - + Daniel Daniel - + Hosea Osée - + Joel Joël - + Amos Amos - + Obadiah Abdias - + Jonah Jonas - + Micah Michée - + Nahum Nahum - + Habakkuk Habacuc - + Zephaniah Sophonie - + Haggai Aggée - + Zechariah Zacharie - + Malachi Malachie - + Matthew Matthieu - + Mark Marc - + Luke Luc - + John Jean - + Acts Actes - + Romans Romains - + 1 Corinthians 1 Corinthiens - + 2 Corinthians 2 Corinthiens - + Galatians Galates - + Ephesians Ephésiens - + Philippians Philippiens - + Colossians Colossiens - + 1 Thessalonians 1 Thessaloniciens - + 2 Thessalonians 2 Thessaloniciens - + 1 Timothy 1 Timothée - + 2 Timothy 2 Timothée - + Titus Tite - + Philemon Philémon - + Hebrews Hébreux - + James Jacques - + 1 Peter 1 Pierre - + 2 Peter 2 Pierre - + 1 John 1 Jean - + 2 John 2 Jean - + 3 John 3 Jean - + Jude Jude - + Revelation Apocalypse - - - Judith - - - Wisdom - + Judith + Judith - Tobit - + Wisdom + Sagesse - Sirach - + Tobit + Tobit - Baruch - + Sirach + Siracide - 1 Maccabees - + Baruch + Baruch - 2 Maccabees - + 1 Maccabees + 1 Macchabées - 3 Maccabees - + 2 Maccabees + 2 Macchabées - 4 Maccabees - + 3 Maccabees + 3 Macchabées - Rest of Daniel - + 4 Maccabees + 4 Macchabées - Rest of Esther - + Rest of Daniel + Suppléments de Daniel - Prayer of Manasses - + Rest of Esther + Suppléments d'Esther - Letter of Jeremiah - + Prayer of Manasses + Prière de Manassé - Prayer of Azariah - + Letter of Jeremiah + Lettre de Jérémie - Susanna - + Prayer of Azariah + Prière d'Azariah - Bel - + Susanna + Suzanne - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 1 Esdras - + + 2 Esdras + 2 Esdras + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verset|versets;;-|à;;,|et;;fin @@ -663,32 +664,32 @@ Voulez-vous tout de même continuer ? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Vous devez spécifier le nom de la version de votre Bible. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Vous devez définir un copyright pour votre Bible. Les Bibles dans le Domaine Publique doivent être indiquées comme telle. - + Bible Exists Bible existante - + This Bible already exists. Please import a different Bible or first delete the existing one. Cette Bible existe déjà. Veuillez importer une autre Bible ou supprimer la Bible existante. - + You need to specify a book name for "%s". Vous devez spécifier un nom de livre pour "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -696,12 +697,12 @@ be followed by one or more non-numeric characters. Les nombres peuvent être utilisés uniquement au début et doivent être suivis par un ou plusieurs caractères non numériques. - + Duplicate Book Name Dupliquer le nom du livre - + The Book Name "%s" has been entered more than once. Le nom du livre "%s" a été entré plus d'une fois. @@ -709,39 +710,39 @@ Les nombres peuvent être utilisés uniquement au début et doivent être suivis BiblesPlugin.BibleManager - + Scripture Reference Error Écriture de référence erronée - + Web Bible cannot be used Les Bible Web ne peut être utilisée - + Text Search is not available with Web Bibles. La recherche textuelle n'est pas disponible avec les Bibles Web. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Vous n'avez pas spécifié de mot clé de recherche. Vous pouvez séparer vos mots clés par un espace afin de tous les rechercher ou les séparer par une virgule afin de rechercher l'un d'entre eux. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Il n'y a pas de Bibles actuellement installée. Veuillez utiliser l'assistant d'importation pour installer une ou plusieurs Bibles. - + No Bibles Available Aucune Bible disponible - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -764,79 +765,79 @@ Livre Chapitre%(verse)sVerset%(range)sChapitre%(verse)sVerset BiblesPlugin.BiblesTab - + Verse Display Affichage de versets - + Only show new chapter numbers Affiche uniquement les nouveaux numéros de chapitre - + Bible theme: Thème : - + No Brackets Pas de parenthèses - + ( And ) ( et ) - + { And } { et } - + [ And ] [ et ] - + Note: Changes do not affect verses already in the service. Remarque : Les modifications ne s'appliquent pas aux versets déjà dans le service. - + Display second Bible verses Affiche les versets de la seconde Bible - + Custom Scripture References Références bibliques personnalisées - + Verse Separator: Séparateur de verset : - + Range Separator: Séparateur d'intervalle : - + List Separator: Séparateur de liste : - + End Mark: Marque de fin : - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -845,7 +846,7 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -854,7 +855,7 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -863,7 +864,7 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -872,29 +873,29 @@ Ils doivent être séparés par la barre verticale "|".⏎ Veuillez supprimer cette ligne pour utiliser la valeur par défaut. - + English Anglais - + Default Bible Language Langue par défaut de la bible - + Book name language in search field, search results and on display: Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : - + Bible Language Langue de la bible - + Application Language Langue de l'application @@ -902,42 +903,42 @@ résultats de recherche et à l'affichage : BiblesPlugin.BookNameDialog - + Select Book Name Sélectionne le nom du livre - + Current name: Nom courant : - + Corresponding name: Nom correspondant : - + Show Books From Affiche le formulaire des livres - + Old Testament Ancien testament - + New Testament Nouveau testament - + Apocrypha Apocryphes - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Le nom du livre suivant ne correspond pas. Veuillez sélectionner le bon nom dans la liste. @@ -945,7 +946,7 @@ résultats de recherche et à l'affichage : BiblesPlugin.BookNameForm - + You need to select a book. Vous devez sélectionner un livre. @@ -953,18 +954,18 @@ résultats de recherche et à l'affichage : BiblesPlugin.CSVBible - + Importing books... %s Import des livres... %s - + Importing verses from %s... Importing verses from <book name>... Import des versets depuis %s... - + Importing verses... done. Import des versets... terminé. @@ -972,69 +973,69 @@ résultats de recherche et à l'affichage : BiblesPlugin.EditBibleForm - + Bible Editor Éditeur de bible - + License Details Détails de la licence - + Version name: Nom de la version : - + Copyright: Droits d'auteur : - + Permissions: Autorisations : - + Default Bible Language Langue de la bible par défaut - + Book name language in search field, search results and on display: Langue du livre dans le champ de recherche, résultats de recherche et à l'affichage : - + Global Settings Paramètres généraux - + Bible Language Langue de la bible - + Application Language Langue de l'application - + English Anglais - + This is a Web Download Bible. It is not possible to customize the Book Names. C'est une Bible Web téléchargée. Ce n'est pas possible de personnaliser le nom des livres. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Pour utiliser les noms de livres personnalisés, "Langue de bible" doit être sélectionné à partir de l'onglet Méta données ou, si "Paramètres globales" est sélectionné, dans la page Bible de la configuration d'OpenLP. @@ -1042,38 +1043,38 @@ Ce n'est pas possible de personnaliser le nom des livres. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Enregistrement de la Bible et chargement des livres... - + Registering Language... Enregistrement des langues... - + Importing %s... Importing <book name>... Importation %s... - + Download Error Erreur de téléchargement - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Un problème de téléchargement de votre sélection de verset a été rencontré. Vérifiez votre connexion Internet et si cette erreur persiste merci de signaler ce dysfonctionnement. - + Parse Error Erreur syntaxique - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Un problème a été rencontré durant l'extraction de votre sélection de verset. Si cette erreur persiste merci de signaler ce dysfonctionnement. @@ -1251,17 +1252,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Sélectionne la langue - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP ne peut déterminer la langue de cette traduction de la Bible. Veillez sélectionner la langue dans la liste suivante. - + Language: Langue : @@ -1269,7 +1270,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Vous devez choisir une langue. @@ -1277,110 +1278,112 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Rapide - + Find: Recherche : - + Book: Livre : - + Chapter: Chapitre : - + Verse: Verset : - + From: De : - + To: A : - + Text Search Recherche de texte - + Second: Deuxième : - + Scripture Reference Référence biblique - + Toggle to keep or clear the previous results. Cocher pour garder ou effacer le résultat précédent. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Vous ne pouvez pas combiner les résultats de recherche pour les versets bibliques simples et doubles. Voulez-vous effacer les résultats et effectuer une nouvelle recherche ? - + Bible not fully loaded. Bible partiellement chargée. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. La seconde Bible ne contient pas tous les versets présents dans la Bible principale. Seulement les versets trouvés dans les deux Bibles seront affichés. %d versets n'ont pas été inclus dans les résultats. - + Search Scripture Reference... Recherche de référence biblique... - + Search Text... Recherche dans le texte... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Êtes-vous sûrs de vouloir complètement supprimer la Bible "%s" d'OpenLP? + +Vous devrez réimporter cette Bible avant de pouvoir l'utiliser de nouveau. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Fichier Bible incorrect. Les Bibles OpenSong peuvent être compressées. Vous devez les décompresser avant de les importer. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importation %s %s... @@ -1389,12 +1392,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Détection de l'encodage (cela peut prendre quelque minutes)... - + Importing %s %s... Importing <book name> <chapter>... Importation %s %s... @@ -1403,149 +1406,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Sélectionner un répertoire de sauvegarde - + Bible Upgrade Wizard Assistant de mise a jours des Bibles - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Cet assistant vous permet de mettre à jour vos Bibles de version antérieures à OpenLP 2. Cliquer sur le bouton suivant ci-dessous afin de commencer le processus de mise a jour. - + Select Backup Directory Sélectionner un répertoire de sauvegarde - + Please select a backup directory for your Bibles Veuillez sélectionner un répertoire de sauvegarde pour vos Bibles - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Les versions précédentes d'OpenLP 2.0 ne sont pas capables d'utiliser les Bibles mises à jour. Une sauvegarde de vos Bibles va être effectuée de sorte que vous puissiez simplement copier ces fichiers vers votre répertoire de données d'OpenLP si vous avez besoin de revenir à une version précédente de OpenLP. La procédure de restauration des fichiers est disponible dans notre <a href="http://wiki.openlp.org/faq">Foire aux questions</ a>. - + Please select a backup location for your Bibles. Veuillez sélectionner un répertoire de sauvegarde pour vos Bibles. - + Backup Directory: Répertoire de sauvegarde : - + There is no need to backup my Bibles Il n'est pas nécessaire de sauvegarder mes Bibles - + Select Bibles Sélectionne des Bibles - + Please select the Bibles to upgrade Veuillez sélectionner les Bibles à mettre à jour - + Upgrading Mise à jour - + Please wait while your Bibles are upgraded. Merci de patienter durant la mise à jour de vos Bibles. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. La sauvegarde à échouée. Pour sauvegarder vos Bibles vous devez disposer des droits en écriture sur le répertoire donné. - + Upgrading Bible %s of %s: "%s" Failed Mise à jour de la Bible %s sur %s : "%s" Échouée - + Upgrading Bible %s of %s: "%s" Upgrading ... Mise a jour de la Bible %s sur %s : "%s" Mise à jour ... - + Download Error Erreur de téléchargement - + To upgrade your Web Bibles an Internet connection is required. Pour mettre à jour vos Bibles Web, une connexion à Internet est nécessaire. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Mise a jour de la Bible %s sur %s : "%s" Mise à jour %s ... - + Upgrading Bible %s of %s: "%s" Complete Mise a jour de la Bible %s sur %s : "%s" Terminée - + , %s failed , %s échouée - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Mise a jour de(s) (la) Bible(s) : %s avec succès%s Veuillez noter que les versets des Bibles Web seront téléchargés à la demande, par conséquent une connexion Internet sera nécessaire. - + Upgrading Bible(s): %s successful%s Mise à jour de(s) (la) Bible(s) : %s avec succès%s - + Upgrade failed. La mise à jour a échouée. - + You need to specify a backup directory for your Bibles. Vous devez spécifier un répertoire de sauvegarde pour vos Bibles. - + Starting upgrade... Démarrage de la mise à jour... - + There are no Bibles that need to be upgraded. Il n'y a pas de Bibles à mettre à jour. @@ -1553,65 +1556,65 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Module Diapositive personnalisé</strong><br />Le module de diapositive personnalisé permet de créer des diapositives textuelles personnalisées affichées de la même manière que les chants. Ce module permet une grande liberté par rapport au module chant. - + Custom Slide name singular Diapositive personnalisée - + Custom Slides name plural Diapositives personnelles - + Custom Slides container title Diapositives personnalisées - + Load a new custom slide. Charge une nouvelle diapositive personnalisée. - + Import a custom slide. Importe une diapositive personnalisée. - + Add a new custom slide. Ajoute la diapositive personnalisée sélectionnée. - + Edit the selected custom slide. Édite la diapositive personnalisée sélectionnée. - + Delete the selected custom slide. Supprime la diapositive personnalisée sélectionnée. - + Preview the selected custom slide. Prévisualise la diapositive personnalisée sélectionnée. - + Send the selected custom slide live. Envoie la diapositive personnalisée sélectionnée au direct. - + Add the selected custom slide to the service. Ajoute la diapositive personnalisée sélectionnée au service. @@ -1619,12 +1622,12 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.CustomTab - + Custom Display Affichage Personnalisé - + Display footer Afficher le pied de page @@ -1632,62 +1635,62 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.EditCustomForm - + Edit Custom Slides Édite les diapositives personnalisées - + &Title: &Titre : - + Add a new slide at bottom. Ajoute une nouvelle diapositive en bas. - + Edit the selected slide. Édite la diapositive sélectionnée. - + Edit all the slides at once. Édite toutes les diapositives en une. - + Split a slide into two by inserting a slide splitter. Sépare la diapositive en deux en insérant un séparateur de diapositive. - + The&me: Thè&me : - + &Credits: &Crédits : - + You need to type in a title. Vous devez spécifier un titre. - + You need to add at least one slide Vous devez ajouter au moins une diapositive - + Ed&it All Édite &tous - + Insert Slide Insère une diapositive @@ -1695,76 +1698,79 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand CustomPlugin.EditVerseForm - + Edit Slide - + Éditer la diapo CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ?Etes-vous sur de vouloir supprimer les %n diapositives personnalisées ? + + Etes-vous sur de vouloir supprimer la %n diapositive personnalisée ? + Etes-vous sur de vouloir supprimer les %n diapositives personnalisées ? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Module Image</strong><br />Le module Image permet l'affichage d'images.<br />L'une des particularités de ce module est la possibilité de regrouper plusieurs images en un seul élément dans le gestionnaire de services, ce qui facilite son affichage. Ce module permet également de faire défiler les images en boucle avec une pause entre chacune d'elles. Les images du module peuvent également être utilisées pour remplacer l'arrière-plan du thème en cours. - + Image name singular Image - + Images name plural Images - + Images container title Images - + Load a new image. Charge une nouvelle image. - + Add a new image. Ajoute une nouvelle image. - + Edit the selected image. Édite l'image sélectionnée. - + Delete the selected image. Supprime l'image sélectionnée. - + Preview the selected image. Prévisualise l'image sélectionnée. - + Send the selected image live. Envoie l'image sélectionnée au direct. - + Add the selected image to the service. Ajoute l'image sélectionnée au service. @@ -1772,7 +1778,7 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand ImagePlugin.ExceptionDialog - + Select Attachment Sélectionne un objet @@ -1780,44 +1786,44 @@ Veuillez noter que les versets des Bibles Web seront téléchargés à la demand ImagePlugin.MediaItem - + Select Image(s) Sélectionne une (des) Image(s) - + You must select an image to delete. Vous devez sélectionner une image à supprimer. - + You must select an image to replace the background with. Vous devez sélectionner une image pour remplacer le fond. - + Missing Image(s) Image(s) manquante - + The following image(s) no longer exist: %s L(es) image(s) suivante(s) n'existe(nt) plus : %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? L(es) image(s) suivante(s) n'existe(nt) plus : %s Voulez-vous ajouter les autres images malgré tout ? - + There was a problem replacing your background, the image file "%s" no longer exists. Impossible de remplacer votre fond, le fichier image "%s" n'existe plus. - + There was no display item to amend. Il n'y a aucun élément d'affichage à modifier. @@ -1825,17 +1831,17 @@ Voulez-vous ajouter les autres images malgré tout ? ImagesPlugin.ImageTab - + Background Color Couleur de fond - + Default Color: Couleur par défaut : - + Visible background for images with aspect ratio different to screen. Fond d'écran visible pour les images avec un ratio différent de celui de l'écran. @@ -1843,60 +1849,60 @@ Voulez-vous ajouter les autres images malgré tout ? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Module Média</strong><br />Le module Média permet de lire des fichiers audio et vidéo. - + Media name singular Médias - + Media name plural Médias - + Media container title Média - + Load new media. Charge un nouveau média. - + Add new media. Ajoute un nouveau média. - + Edit the selected media. Édite le média sélectionné. - + Delete the selected media. Supprime le média sélectionné. - + Preview the selected media. Prévisualise le média sélectionné. - + Send the selected media live. Envoie le média sélectionné au direct. - + Add the selected media to the service. Ajoute le média sélectionné au service. @@ -1904,57 +1910,57 @@ Voulez-vous ajouter les autres images malgré tout ? MediaPlugin.MediaItem - + Select Media Média sélectionné - + You must select a media file to delete. Vous devez sélectionner un fichier média à supprimer. - + You must select a media file to replace the background with. Vous devez sélectionner un fichier média pour qu'il puisse remplacer le fond. - + There was a problem replacing your background, the media file "%s" no longer exists. Impossible de remplacer le fond du direct, le fichier média "%s" n'existe plus. - + Missing Media File Fichier média manquant - + The file %s no longer exists. Le fichier %s n'existe plus. - + Videos (%s);;Audio (%s);;%s (*) Vidéos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Il n'y a aucun élément d'affichage à modifier. - + Unsupported File Fichier non supporté - + Automatic Automatique - + Use Player: Utiliser le lecteur : @@ -1962,22 +1968,22 @@ Voulez-vous ajouter les autres images malgré tout ? MediaPlugin.MediaTab - + Available Media Players Lecteurs de Média disponibles - + %s (unavailable) %s (non disponible) - + Player Order Ordre des lecteurs - + Allow media player to be overridden Autoriser le lecteur de média à être surcharger @@ -1985,17 +1991,17 @@ Voulez-vous ajouter les autres images malgré tout ? OpenLP - + Image Files Fichiers image - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2007,37 +2013,61 @@ Voulez-vous que OpenLP effectue la mise à jour maintenant ? OpenLP.AboutForm - + Credits Crédits - + License Licence - - Contribute - Contribuer - - - + build %s révision %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Ce programme est un logiciel libre ; vous pouvez le redistribuer et/ou le modifier dans les termes de la licence GNU General Public License tel que publié par la Free Software Foundation ; version 2 de la licence. - + This program 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 below for more details. Ce programme est distribué dans l'espoir qu'il sera utile, mais SANS AUCUNE GARANTIE, sans même la garantie implicite de COMMERCIALISATION ou D'ADAPTATION A UN USAGE PARTICULIER. Voir ci-dessous pour plus de détails. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s⏎ +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection (projection de paroles open source) + +OpenLP est un logiciel de présentation ou de projection de paroles destiné aux églises. Pendant la louange, il permet d'afficher des chants, des versets bibliques, des vidéos, des images, et même des diaporamas (si Impress, PowerPoint ou PowerPoint Viewer est installé), à l'aide d'un ordinateur et d'un vidéo projecteur. + +Apprenez-en plus au sujet d'OpenLP: http://openlp.org + +OpenLP est développé et maintenu par des bénévoles. Si vous souhaitez voir développer d'autres logiciels libres chrétiens, envisagez de devenir bénévole en cliquant le bouton ci-dessous. + + + + Volunteer + Aidez-nous + + + Project Lead %s @@ -2056,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2070,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2078,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2099,7 +2139,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Chef de Projet + Chef de projet %s Développeurs @@ -2111,17 +2151,25 @@ Contributeurs Testeurs %s -Empaqueteurs +Packageurs %s Traducteurs Afrikaans (af) %s + Tchèque (cs) + %s + Danois (da) + %s Allemand (de) %s - Anglais, Royaumes unis (en_GB) + Grec (el) %s - Anglais, Afrique du sud (en_ZA) + Anglais, Royaume-Uni (en_GB) + %s + Anglais, Afrique du Sud (en_ZA) + %s + Espagnol (es) %s Estonien (et) %s @@ -2129,7 +2177,7 @@ Traducteurs %s Hongrois (hu) %s - Japonnai (ja) + Japonais (ja) %s Norvégien Bokmål (nb) %s @@ -2137,231 +2185,209 @@ Traducteurs %s Portugais, Brésil (pt_BR) %s - Ruse (ru) + Russe (ru) + %s + Suédois (sv) %s Documentation %s -Developpé avec - Python : http://www.python.org/ - Qt4 : http://qt.nokia.com/ - PyQt4 : http://www.riverbankcomputing.co.uk/software/pyqt/intro - Icônes Oxygen : http://oxygen-icons.org/ +Développé avec + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ -Crédit final - "Car Dieu a tant aimé le monde qu'Il a donné - son Fils unique, afin que quiconque - croit en lui ne périsse point, mais qu'il - ait la vie éternelle." -- Jean 3:16 +Honneur ultime + "Car Dieu a tant aimé le monde qu'Il a + donné Son Fils unique, afin que quiconque + croit en Lui ne périsse point, mais qu'il ait + la vie éternelle." -- Jean 3:16 - Et pour finir, le crédit final va à Dieu notre Père, - pour l'envoi de son Fils pour mourir - sur la croix, nous libérant du péché. Nous - mettons ce logiciel à votre disposition - gratuitement, car Il nous a libérés. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version> <revision> - Projection de paroles Open Source - -OpenLP est un logiciel gratuit de présentation pour église, ou un logiciel de projection de chants, utilisé pour projeter les paroles des chants, versets de la Bible, vidéos, images, et même des présentations (Impress, PowerPoint ou PowerPoint Viewer s'il est installé) destiné au cultes d'églises munies d'un ordinateur et d'un vidéo projecteur. - -En savoir plus sur OpenLP : http://openlp.org/ - -OpenLP est écrit et maintenu par des bénévoles. Si vous souhaitez voir plus de logiciels libres chrétien se développer, pensez à apporter votre contribution à l'aide du bouton ci-dessous. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s⏎ -Portions copyright © 2004-2012 %s + Enfin et surtout, nous accordons honneur + à notre Dieu notre Père, pour avoir envoyé + Son Fils pour mourir sur la croix, nous libérant + du péché. Nous vous fournissons ce logiciel + librement parce qu'Il nous a rendus libres. OpenLP.AdvancedTab - + UI Settings Propriétés de l'interface utilisateur - + Number of recent files to display: Nombre de fichiers récents à afficher : - + Remember active media manager tab on startup Se souvenir de l'onglet actif du gestionnaire de média au démarrage - + Double-click to send items straight to live Double-cliquer pour envoyer les éléments directement au live - + Expand new service items on creation Étends les nouveaux éléments du service à la création - + Enable application exit confirmation Demande une confirmation avant de quitter l'application - + Mouse Cursor Curseur de la souris - + Hide mouse cursor when over display window Cache le curseur de la souris quand elle se trouve sur l'écran live - + Default Image Image par défaut - + Background color: Couleur de fond : - + Image file: Fichier image : - + Open File Ouvre un fichier - + Advanced Avancé - + Preview items when clicked in Media Manager Prévisualise l’élément cliqué du gestionnaire de média - + Click to select a color. Clique pour sélectionner une couleur. - + Browse for an image file to display. Parcoure pour trouver une image à afficher. - + Revert to the default OpenLP logo. Retour au logo OpenLP par défaut. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M - + Default Service Name Nom de service par défaut - + Enable default service name Activer le nom de service par défaut - + Date and Time: Date et Heure : - + Monday Lundi - + Tuesday Mardi - + Wednesday Mercredi - + Thurdsday Jeudi - + Friday Vendredi - + Saturday Samedi - + Sunday Dimanche - + Now Maintenant - + Time when usual service starts. Heure de début du service habituelle. - + Name: Nom : - + Consult the OpenLP manual for usage. Veuillez consulter le manuel d'OpenLP. - + Revert to the default service name "%s". Restaurer le nom du service par défaut "%s". - + Example: Exemple : - + X11 X11 @@ -2371,82 +2397,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Contourner le gestionnaire de fenêtres X11 - + Syntax error. Erreur de syntaxe. - + Data Location Emplacement des données - + Current path: Chemin courant : - + Custom path: Chemin personnalisé : - + Browse for new data file location. Sélectionnez un nouvel emplacement pour le fichier de données. - + Set the data location to the default. Définir cet emplacement pour les données comme emplacement par défaut. - + Cancel Annuler - + Cancel OpenLP data directory location change. Annuler le changement d'emplacement du dossier de données d'OpenLP. - + Copy data to new location. Copier les données vers un nouvel emplacement. - + Copy the OpenLP data files to the new location. Copier les fichiers de données d'OpenLP vers le nouvel emplacement. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>ATTENTION:</strong> Le nouveau dossier de données contient des fichiers de données OpenLP. Ces fichiers seront remplacés pendant la copie. - + Data Directory Error Erreur du dossier de données - + Select Data Directory Location Sélectionnez un emplacement pour le dossier de données - + Confirm Data Directory Change Confirmez le changement de dossier de données - + Reset Data Directory Remise à zéro du dossier de données - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2455,47 +2481,97 @@ This location will be used after OpenLP is closed. Cet emplacement sera utilisé après avoir fermé OpenLP. - + Overwrite Existing Data Écraser les données existantes + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + Le répertoire de données d'OpenLP est introuvable: + +%s + +Ce répertoire de données a été changé de l'emplacement par défaut. Si le nouvel emplacement est sur un support amovible, ce support doit être rendu disponible. + +Cliquez "non" pour arreter le chargement d'OpenLP. Vous pourrez alors corriger le problème. + +Cliquez "oui" pour réinitialiser le répertoire de données à son emplacement par défaut. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Êtes-vous sûrs de vouloir changer l'emplacement du répertoire de données d'OpenLP? Le nouveau répertoire sera: +%s + +Le répertoire de données changera lorsque vous fermerez OpenLP. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + AVERTISSEMENT: + +L'emplacement que vous avez sélectionné + +%s + +contient apparemment des fichiers de données OpenLP. Voulez-vous remplacer ces fichiers avec les fichiers de données courants? + OpenLP.ExceptionDialog - + Error Occurred Erreur survenue - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Oups! OpenLP a rencontré un problème, et ne peut pas continuer à s'exécuter. Le texte dans le champ ci-dessous contient des informations qui pourraient être utiles aux développeurs d'OpenLP, veuillez s'il vous plaît envoyer un courriel à bugs@openlp.org, avec une description détaillée de ce que vous faisiez lorsque le problème est survenu. - + Send E-Mail Envoyer un courriel - + Save to File Enregistre dans un fichier - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Veuillez entrer une description de ce que vous faisiez au moment de l'erreur (Minimum 20 caractères) - + Attach File Attacher un fichier - + Description characters to enter : %s Description : %s @@ -2503,24 +2579,24 @@ Cet emplacement sera utilisé après avoir fermé OpenLP. OpenLP.ExceptionForm - + Platform: %s Plateforme : %s - + Save Crash Report Enregistre le rapport d'erreur - + Text files (*.txt *.log *.text) Fichiers texte (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2551,7 +2627,7 @@ Version : %s - + *OpenLP Bug Report* Version: %s @@ -2586,17 +2662,17 @@ Version : %s OpenLP.FileRenameForm - + File Rename Renomme le fichier - + New File Name: Nouveau nom de fichier : - + File Copy Copie le fichier @@ -2604,17 +2680,17 @@ Version : %s OpenLP.FirstTimeLanguageForm - + Select Translation Sélectionne la traduction - + Choose the translation you'd like to use in OpenLP. Choisir la traduction que vous voulez utiliser dans OpenLP. - + Translation: Traduction : @@ -2622,199 +2698,201 @@ Version : %s OpenLP.FirstTimeWizard - + Songs Chants - + First Time Wizard Assistant de démarrage - + Welcome to the First Time Wizard Bienvenue dans l'assistant de démarrage - + Activate required Plugins Activer les modules requis - + Select the Plugins you wish to use. Sélectionnez les modules que vous souhaitez utiliser. - + Bible Bible - + Images Images - + Presentations Présentations - + Media (Audio and Video) Média (Audio et Vidéo) - + Allow remote access Permettre l’accès à distance - + Monitor Song Usage Suivre l'utilisation des chants - + Allow Alerts Permettre l'utilisation d'Alertes - + Default Settings Paramètres par défaut - + Downloading %s... Téléchargement %s... - + Download complete. Click the finish button to start OpenLP. Téléchargement terminé. Cliquez sur le bouton terminer pour démarrer OpenLP. - + Enabling selected plugins... Active les modules sélectionnés... - + No Internet Connection Pas de connexion à Internet - + Unable to detect an Internet connection. Aucune connexion à Internet. - + Sample Songs Chants d'exemple - + Select and download public domain songs. Sélectionne et télécharge des chants du domaine public. - + Sample Bibles Bibles d'exemple - + Select and download free Bibles. Sélectionne et télécharge des Bibles gratuites. - + Sample Themes Exemple de Thèmes - + Select and download sample themes. Sélectionne et télécharge des exemples de thèmes. - + Set up default settings to be used by OpenLP. Définir les paramètres par défaut pour être utilisé par OpenLP. - + Default output display: Sortie d'écran par défaut : - + Select default theme: Sélectionne le thème pas défaut : - + Starting configuration process... Démarrage du processus de configuration... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Cet assistant vous permet de configurer OpenLP pour sa première utilisation. Cliquez sur le bouton suivant pour démarrer. - + Setting Up And Downloading Paramétrage et téléchargement - + Please wait while OpenLP is set up and your data is downloaded. Merci de patienter durant le paramétrage d'OpenLP et le téléchargement de vos données. - + Setting Up Paramétrage - + Click the finish button to start OpenLP. Cliquez sur le bouton terminer pour démarrer OpenLP. - + Download complete. Click the finish button to return to OpenLP. Téléchargement terminé. Cliquez sur le bouton terminer pour revenir à OpenLP. - + Click the finish button to return to OpenLP. Cliquez sur le bouton terminer pour revenir à OpenLP. - + Custom Slides Diapositives personnalisées - + Finish Terminé - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Aucune connexion internet trouvée. L'assistant de démarrage a besoin d'une connexion internet afin de télécharger les examplaires de chansons, de Bibles, et de thèmes. Cliquez sur Finir pour démarrer OpenLP avec la configuration par défaut sans données exemplaires. + +Pour relancer l'assistant de démarrage et importer ces données exemplaires plus tard, vérifiez votre connexion internet et relancez cet assistant en sélectionnant "Outils/Relancer l'assistant de démarrage" dans OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2826,37 +2904,37 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.FormattingTagDialog - + Configure Formatting Tags Configurer les balises de formatage - + Edit Selection Édite la sélection - + Save Enregistre - + Description Description - + Tag Balise - + Start HTML HTML de début - + End HTML HTML de fin @@ -2864,32 +2942,32 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.FormattingTagForm - + Update Error Erreur de mise à jour - + Tag "n" already defined. Balise "n" déjà définie. - + New Tag Nouvelle balise - + <HTML here> <HTML ici> - + </and here> </et ici> - + Tag %s already defined. Balise %s déjà définie. @@ -2897,82 +2975,82 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.FormattingTags - + Red Rouge - + Black Noir - + Blue Bleu - + Yellow Jaune - + Green Vert - + Pink Rose - + Orange Orange - + Purple Pourpre - + White Blanc - + Superscript Exposant - + Subscript Indice - + Paragraph Paragraphe - + Bold Gras - + Italics Italiques - + Underline Souligner - + Break Retour à la ligne @@ -2980,122 +3058,122 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.GeneralTab - + General Général - + Monitors Moniteurs - + Select monitor for output display: Sélectionne l’écran pour la sortie d'affichage live : - + Display if a single screen Affiche si il n'y a qu'un écran - + Application Startup Démarrage de l'application - + Show blank screen warning Affiche un avertissement d'écran vide - + Automatically open the last service Ouvre automatiquement le dernier service - + Show the splash screen Affiche l'écran de démarrage - + Application Settings Préférence de l'application - + Prompt to save before starting a new service Demande d'enregistrer avant de commencer un nouveau service - + Automatically preview next item in service Prévisualise automatiquement l'élément suivant du service - + sec sec - + CCLI Details CCLI détails - + SongSelect username: Nom d'utilisateur SongSelect : - + SongSelect password: Mot de passe SongSelect : - + X X - + Y Y - + Height Hauteur - + Width Largeur - + Check for updates to OpenLP Vérifie si des mises à jours d'OpenLP sont disponibles - + Unblank display when adding new live item Retire l'écran noir lors de l'ajout de nouveaux éléments au direct - + Timed slide interval: Intervalle de temps entre les diapositives : - + Background Audio Son en fond - + Start background audio paused Démarrer le son de fond en pause @@ -3105,12 +3183,12 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu Limites des éléments de service - + Override display position: Surcharger la position d'affichage : - + Repeat track list Répéter la liste des pistes @@ -3127,7 +3205,7 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu &Wrap around - + &Retour à la ligne automatique @@ -3138,12 +3216,12 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.LanguageManager - + Language Langage - + Please restart OpenLP to use your new language setting. Veuillez redémarrer OpenLP pour utiliser votre nouveau paramétrage de langue. @@ -3151,7 +3229,7 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.MainDisplay - + OpenLP Display Affichage OpenLP @@ -3159,287 +3237,287 @@ Pour annuler complètement le premier assistant (et ne pas lancer OpenLP), cliqu OpenLP.MainWindow - + &File &Fichier - + &Import &Import - + &Export E&xport - + &View &Visualise - + M&ode M&ode - + &Tools &Outils - + &Settings O&ptions - + &Language &Langue - + &Help &Aide - + Media Manager Gestionnaire de médias - + Service Manager Gestionnaire de services - + Theme Manager Gestionnaire de thèmes - + &New &Nouveau - + &Open &Ouvrir - + Open an existing service. Ouvre un service existant. - + &Save &Enregistre - + Save the current service to disk. Enregistre le service courant sur le disque. - + Save &As... Enregistre &sous... - + Save Service As Enregistre le service sous - + Save the current service under a new name. Enregistre le service courant sous un nouveau nom. - + E&xit &Quitter - + Quit OpenLP Quitter OpenLP - + &Theme &Thème - + &Configure OpenLP... &Personnalise OpenLP... - + &Media Manager Gestionnaire de &médias - + Toggle Media Manager Gestionnaire de Média - + Toggle the visibility of the media manager. Change la visibilité du gestionnaire de média. - + &Theme Manager Gestionnaire de &thèmes - + Toggle Theme Manager Gestionnaire de Thème - + Toggle the visibility of the theme manager. Change la visibilité du gestionnaire de tème. - + &Service Manager Gestionnaire de &services - + Toggle Service Manager Gestionnaire de service - + Toggle the visibility of the service manager. Change la visibilité du gestionnaire de service. - + &Preview Panel Panneau de &prévisualisation - + Toggle Preview Panel Panneau de prévisualisation - + Toggle the visibility of the preview panel. Change la visibilité du panel de prévisualisation. - + &Live Panel Panneau du &direct - + Toggle Live Panel Panneau du direct - + Toggle the visibility of the live panel. Change la visibilité du directe. - + &Plugin List Liste des &modules - + List the Plugins Liste des modules - + &User Guide &Guide utilisateur - + &About À &propos - + More information about OpenLP Plus d'information sur OpenLP - + &Online Help &Aide en ligne - + &Web Site Site &Web - + Use the system language, if available. Utilise le langage système, si disponible. - + Set the interface language to %s Défini la langue de l'interface à %s - + Add &Tool... Ajoute un &outils... - + Add an application to the list of tools. Ajoute une application à la liste des outils. - + &Default &Défaut - + Set the view mode back to the default. Redéfini le mode vue comme par défaut. - + &Setup &Configuration - + Set the view mode to Setup. Mode vue Configuration. - + &Live &Direct - + Set the view mode to Live. Mode vue Direct. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3448,108 +3526,108 @@ You can download the latest version from http://openlp.org/. Vous pouvez télécharger la dernière version à partir de http://openlp.org/. - + OpenLP Version Updated Version d'OpenLP mis à jour - + OpenLP Main Display Blanked OpenLP affichage principal noirci - + The Main Display has been blanked out L'affichage principal a été noirci - + Default Theme: %s Thème par défaut : %s - + English Please add the name of your language here Français - + Configure &Shortcuts... Personnalise les &raccourcis... - + Close OpenLP Ferme OpenLP - + Are you sure you want to close OpenLP? Êtes vous sur de vouloir fermer OpenLP ? - + Open &Data Folder... &Ouvre le répertoire de données... - + Open the folder where songs, bibles and other data resides. Ouvre le répertoire où se trouve les chants, bibles et autres données. - + &Autodetect &Détecte automatiquement - + Update Theme Images Met à jour les images de thèmes - + Update the preview images for all themes. Mettre à jour les images de tous les thèmes. - + Print the current service. Imprime le service courant. - + &Recent Files Fichiers &récents - + L&ock Panels &Verrouille les panneaux - + Prevent the panels being moved. Empêcher les panneaux d'être déplacé. - + Re-run First Time Wizard Re-démarrer l'assistant de démarrage - + Re-run the First Time Wizard, importing songs, Bibles and themes. Re-démarrer l'assistant de démarrage, importer les chants, Bibles et thèmes. - + Re-run First Time Wizard? Re-démarrer l'assistant de démarrage ? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3558,43 +3636,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Re-démarrer cet assistant peut apporter des modifications à votre configuration actuelle d'OpenLP, éventuellement ajouter des chants à votre liste de chants existante et changer votre thème par défaut. - + Clear List Clear List of recent files Vide la liste - + Clear the list of recent files. Vide la liste des fichiers récents. - + Configure &Formatting Tags... Configure les &balises de formatage... - + Export OpenLP settings to a specified *.config file Exporte la configuration d'OpenLP vers un fichier *.config spécifié - + Settings Configuration - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importe la configuration d'OpenLP à partir d'un fichier *.config précédemment exporté depuis un autre ordinateur. - + Import settings? Import de la configuration ? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3607,50 +3685,77 @@ Importer la configuration va changer de façon permanente votre configuration d& L'import de configurations incorrect peut provoquer des comportements imprévisible d'OpenLP. - + Open File Ouvre un fichier - + OpenLP Export Settings Files (*.conf) Fichier de configuration OpenLP (*.conf) - + Import settings Import de la configuration - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP va se terminer maintenant. La Configuration importée va être appliquée au prochain démarrage. - + Export Settings File Export de la configuration - + OpenLP Export Settings File (*.conf) Fichier d'export de la configuration d'OpenLP (*.conf) - + New Data Directory Error Erreur du nouveau dossier de données + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Le fichier que vous avez sélectionné ne semble pas être un fichier de configuration OpenLP valide. + +Section [%s] n'est pas valide. + +L'opération a été annulée et aucun changement n'a été effectué. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Copie des données OpenLP au nouvel emplacement - %s - Veuillez attendre que la copie se termine + + + + OpenLP Data directory copy failed + +%s + La copie du répertoire de données OpenLP a échoué + +%s + OpenLP.Manager - + Database Error Erreur de base de données - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3659,7 +3764,7 @@ Database: %s Base de données: %s - + OpenLP cannot load your database. Database: %s @@ -3671,74 +3776,74 @@ Base de données: %s OpenLP.MediaManagerItem - + No Items Selected Pas d'éléments sélectionnés - + &Add to selected Service Item &Ajoute à l'élément sélectionné du service - + You must select one or more items to preview. Vous devez sélectionner un ou plusieurs éléments à prévisualiser. - + You must select one or more items to send live. Vous devez sélectionner un ou plusieurs éléments pour les envoyer au direct. - + You must select one or more items. Vous devez sélectionner un ou plusieurs éléments. - + You must select an existing service item to add to. Vous devez sélectionner un élément existant du service pour l'ajouter. - + Invalid Service Item Élément du service invalide - + You must select a %s service item. Vous devez sélectionner un %s élément du service. - + You must select one or more items to add. Vous devez sélectionner un ou plusieurs éléments à ajouter. - + No Search Results Aucun résultat de recherche - + Invalid File Type Type de fichier invalide - + Invalid File %s. Suffix not supported Fichier invalide %s. Extension non supportée - + &Clone %Clone - + Duplicate files were found on import and were ignored. Des fichiers dupliqués on été trouvé dans l'import et ont été ignorés. @@ -3746,12 +3851,12 @@ Extension non supportée OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. La balise <lyrics> est manquante. - + <verse> tag is missing. La balise <verse> est manquante. @@ -3759,42 +3864,42 @@ Extension non supportée OpenLP.PluginForm - + Plugin List Liste des modules - + Plugin Details Détails du module - + Status: État : - + Active Actif - + Inactive Inactif - + %s (Inactive) %s (Inactif) - + %s (Active) %s (Actif) - + %s (Disabled) %s (Désactivé) @@ -3802,12 +3907,12 @@ Extension non supportée OpenLP.PrintServiceDialog - + Fit Page Ajuster à la page - + Fit Width Ajuster à la largeur @@ -3815,77 +3920,77 @@ Extension non supportée OpenLP.PrintServiceForm - + Options Options - + Copy Copier - + Copy as HTML Copier comme de l'HTML - + Zoom In Zoom avant - + Zoom Out Zoom arrière - + Zoom Original Zoom d'origine - + Other Options Autres options - + Include slide text if available Inclure le texte des diapositives si disponible - + Include service item notes Inclure les notes des éléments du service - + Include play length of media items Inclure la durée des éléments média - + Add page break before each text item Ajoute des sauts de page entre chaque éléments - + Service Sheet Feuille de service - + Print Imprimer - + Title: Titre : - + Custom Footer Text: Texte de pied de page personnalisé : @@ -3893,12 +3998,12 @@ Extension non supportée OpenLP.ScreenList - + Screen Écran - + primary primaire @@ -3906,12 +4011,12 @@ Extension non supportée OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Début</strong> : %s - + <strong>Length</strong>: %s <strong>Longueur</strong> : %s @@ -3919,7 +4024,7 @@ Extension non supportée OpenLP.ServiceItemEditForm - + Reorder Service Item Réordonne les éléments du service @@ -3927,287 +4032,298 @@ Extension non supportée OpenLP.ServiceManager - + Move to &top Place en &premier - + Move item to the top of the service. Place l'élément au début du service. - + Move &up Déplace en &haut - + Move item up one position in the service. Déplace l'élément d'une position en haut. - + Move &down Déplace en &bas - + Move item down one position in the service. Déplace l'élément d'une position en bas. - + Move to &bottom Place en &dernier - + Move item to the end of the service. Place l'élément a la fin du service. - + &Delete From Service &Retire du service - + Delete the selected item from the service. Retire l'élément sélectionné du service. - + &Add New Item &Ajoute un nouvel élément - + &Add to Selected Item &Ajoute à l'élément sélectionné - + &Edit Item &Édite l'élément - + &Reorder Item &Réordonne l'élément - + &Notes &Notes - + &Change Item Theme &Change le thème de l'élément - + OpenLP Service Files (*.osz) Fichier service OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Le fichier n'est pas un fichier de service valide. Le contenu n'est pas de l'UTF-8. - + File is not a valid service. Le fichier n'est pas un fichier de service valide. - + Missing Display Handler Composant d'affichage manquant - + Your item cannot be displayed as there is no handler to display it Votre élément ne peut pas être affiché parce qu'il n'y a pas de composant pour l'afficher - + Your item cannot be displayed as the plugin required to display it is missing or inactive Votre élément ne peut pas être affiché parce que le module nécessaire est manquant ou désactivé - + &Expand all &Développer tout - + Expand all the service items. Développe tous les éléments du service. - + &Collapse all &Réduire tout - + Collapse all the service items. Réduit tous les éléments du service. - + Open File Ouvre un fichier - + Moves the selection down the window. Déplace la sélection en bas de la fenêtre. - + Move up Déplace en haut - + Moves the selection up the window. Déplace la sélection en haut de la fenêtre. - + Go Live Lance le direct - + Send the selected item to Live. Affiche l'élément sélectionné en direct. - + &Start Time Temps de &début - + Show &Preview Affiche en &prévisualisation - + Modified Service Service modifié - + The current service has been modified. Would you like to save this service? Le service courant à été modifié. Voulez-vous l'enregistrer ? - + Custom Service Notes: Notes de service : - + Notes: Notes : - + Playing time: Durée du service : - + Untitled Service Service sans titre - + File could not be opened because it is corrupt. Le fichier ne peux être ouvert car il est corrompu. - + Empty File Fichier vide - + This service file does not contain any data. Ce fichier de service ne contient aucune donnée. - + Corrupt File Fichier corrompu - + Load an existing service. Charge un service existant. - + Save this service. Enregistre ce service. - + Select a theme for the service. Sélectionne un thème pour le service. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Ce fichier est sois corrompu ou n'est pas un fichier de service OpenLP 2.0. - - Service File Missing - Fichier de service manquant - - - + Slide theme Thème de diapositive - + Notes Notes - + Edit Édite - + Service copy only Copie de service uniquement - + Error Saving File Erreur de sauvegarde du fichier - + There was an error saving your file. Une erreur est survenue lors de la sauvegarde de votre fichier. + + + Service File(s) Missing + Fichier(s) service manquant + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Les fichiers suivants sont absents du service: +<byte value="x9"/>%s + +Ces fichiers seront supprimés si vous continuez la sauvegarde. + OpenLP.ServiceNoteForm - + Service Item Notes Notes sur l'élément du service @@ -4215,7 +4331,7 @@ Le contenu n'est pas de l'UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configuration d'OpenLP @@ -4223,67 +4339,67 @@ Le contenu n'est pas de l'UTF-8. OpenLP.ShortcutListDialog - + Action Action - + Shortcut Raccourci - + Duplicate Shortcut Raccourci dupliqué - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Le raccourci "%s" est déjà assigné à une autre action, veuillez utiliser un autre raccourci. - + Alternate Alternatif - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Sélectionnez une action puis cliquez sur un des boutons ci-dessous pour capturer un nouveau raccourci principal ou secondaire. - + Default Défaut - + Custom Personnalisé - + Capture shortcut. Capture un raccourci. - + Restore the default shortcut of this action. Restaure le raccourci par défaut de cette action. - + Restore Default Shortcuts Restaure les raccourcis par défaut - + Do you want to restore all shortcuts to their defaults? Voulez vous restaurer tous les raccourcis par leur valeur par défaut ? - + Configure Shortcuts Configure les raccourcis @@ -4291,172 +4407,172 @@ Le contenu n'est pas de l'UTF-8. OpenLP.SlideController - + Hide Cache - + Go To Aller à - + Blank Screen Écran noir - + Blank to Theme Thème vide - + Show Desktop Affiche le bureau - + Previous Service Service précédent - + Next Service Service suivant - + Escape Item Élément d'échappement - + Move to previous. Déplace au précédant. - + Move to next. Déplace au suivant. - + Play Slides Joue les diapositives - + Delay between slides in seconds. Intervalle entre les diapositives en secondes. - + Move to live. Affiche en direct. - + Add to Service. Ajoute au service. - + Edit and reload song preview. Édite et recharge la prévisualisation du chant. - + Start playing media. Joue le média. - + Pause audio. Mettre en pause la lecture audio. - + Pause playing media. Mettre en pause la lecture. - + Stop playing media. Arrêter la lecture. - + Video position. Position vidéo. - + Audio Volume. Volume sonore. - + Go to "Verse" Aller au "Couplet" - + Go to "Chorus" Aller au "Refrain" - + Go to "Bridge" Aller au "Pont" - + Go to "Pre-Chorus" Aller au "Pré-Refrain" - + Go to "Intro" Aller à "Intro" - + Go to "Ending" Aller à "Fin" - + Go to "Other" Aller à "Autre" - + Previous Slide Diapositive précédente - + Next Slide Diapositive suivante - + Pause Audio Pause Audio - + Background Audio Audio en fond - + Go to next audio track. Aller à la piste audio suivante. - + Tracks Pistes @@ -4464,17 +4580,17 @@ Le contenu n'est pas de l'UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Suggestions orthographiques - + Formatting Tags Tags de formatage - + Language: Langue : @@ -4482,615 +4598,627 @@ Le contenu n'est pas de l'UTF-8. OpenLP.StartTimeForm - + Hours: Heures : - + Minutes: Minutes : - + Seconds: Secondes : - + Item Start and Finish Time Temps de début et de fin de l'élément - + Start Début - + Finish Fini - + Length Longueur - + Time Validation Error Erreur de validation du temps - + Finish time is set after the end of the media item Le temps de fin est défini après la fin de l’élément média - + Start time is after the finish time of the media item Le temps de début est après le temps de fin de l'élément média - + Theme Layout Disposition du thème - + The blue box shows the main area. La boîte bleu indique la zone principale. - + The red box shows the footer. La boîte rouge indique la zone de pied de page. - - OpenLP.ThemeForm - - - Select Image - Sélectionne l'image - - - - Theme Name Missing - Nom du thème manquant - - - - There is no name for this theme. Please enter one. - Ce thème ne contient aucun nom. Veuillez en saisir un. - - - - Theme Name Invalid - Nom du thème invalide - - - - Invalid theme name. Please enter one. - Nom du thème invalide. Veuillez en saisir un. - - - - (approximately %d lines per slide) - (approximativement %d lignes pas diapositive) - - OpenLP.ThemeManager - + Create a new theme. Crée un nouveau thème. - + Edit Theme Édite le thème - + Edit a theme. Édite un thème. - + Delete Theme Supprime le thème - + Delete a theme. Supprime un thème. - + Import Theme Import le thème - + Import a theme. Import un thème. - + Export Theme Export le thème - + Export a theme. Export un thème. - + &Edit Theme &Édite le thème - + &Delete Theme &Supprime le thème - + Set As &Global Default Définir comme défaut &Global - + %s (default) %s (défaut) - + You must select a theme to edit. Vous devez sélectionner un thème à éditer. - + You are unable to delete the default theme. Vous ne pouvez pas supprimer le thème par défaut. - + Theme %s is used in the %s plugin. Le Thème %s est utilisé par le module %s. - + You have not selected a theme. Vous n'avez pas sélectionner de thème. - + Save Theme - (%s) Enregistre le thème - (%s) - + Theme Exported Thème exporté - + Your theme has been successfully exported. Votre thème a été exporté avec succès. - + Theme Export Failed L'export du thème a échoué - + Your theme could not be exported due to an error. Votre thème ne peut pas être exporté à cause d'une erreur. - + Select Theme Import File Sélectionner le fichier thème à importer - + File is not a valid theme. Le fichier n'est pas un thème valide. - + &Copy Theme &Copie le thème - + &Rename Theme &Renomme le thème - + &Export Theme &Exporte le thème - + You must select a theme to rename. Vous devez sélectionner un thème à renommer. - + Rename Confirmation Confirme le renommage - + Rename %s theme? Renomme le thème %s ? - + You must select a theme to delete. Vous devez sélectionner un thème à supprimer. - + Delete Confirmation Confirmation de suppression - + Delete %s theme? Supprime le thème %s ? - + Validation Error Erreur de validation - + A theme with this name already exists. Un autre thème porte déjà ce nom. - + OpenLP Themes (*.theme *.otz) Thèmes OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> Copie de %s - + Theme Already Exists Le thème existe déjà + + + Theme %s already exists. Do you want to replace it? + Le thème %s existe déjà. Voulez-vous le remplacer? + OpenLP.ThemeWizard - + Theme Wizard Assistant de thème - + Welcome to the Theme Wizard Bienvenue dans l'assistant de thème - + Set Up Background Choisir le font - + Set up your theme's background according to the parameters below. Choisir le fond de votre thème à l'aide des paramètres ci-dessous. - + Background type: Type de fond : - + Solid Color Couleur unie - + Gradient Dégradé - + Color: Couleur : - + Gradient: Dégradé : - + Horizontal Horizontal - + Vertical Vertical - + Circular Circulaire - + Top Left - Bottom Right Haut gauche - Bas droite - + Bottom Left - Top Right Bas gauche - Haut droite - + Main Area Font Details Détails de la police de la zone principale - + Define the font and display characteristics for the Display text Définir la police et les caractéristique d'affichage de ce texte - + Font: Police : - + Size: Taille : - + Line Spacing: Espace entre les lignes : - + &Outline: &Contour : - + &Shadow: &Ombre : - + Bold Gras - + Italic Italique - + Footer Area Font Details Détails de la police de la zone du pied de page - + Define the font and display characteristics for the Footer text Définir la police et les caractéristiques d'affichage du texte de pied de page - + Text Formatting Details Détails de formatage du texte - + Allows additional display formatting information to be defined Permet de définir des paramètres d'affichage supplémentaires - + Horizontal Align: Alignement horizontal : - + Left Gauche - + Right Droite - + Center Centré - + Output Area Locations Emplacement de la zone d'affichage - + Allows you to change and move the main and footer areas. Permet de déplacer les zones principale et de pied de page. - + &Main Area Zone &principale - + &Use default location &Utilise l'emplacement par défaut - + X position: Position x : - + px px - + Y position: Position y : - + Width: Largeur : - + Height: Hauteur : - + Use default location Utilise l'emplacement par défaut - + Theme name: Nom du thème : - + Edit Theme - %s Édite le thème - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Cet assistant vous permet de créer et d'éditer vos thèmes. Cliquer sur le bouton suivant pour démarrer le processus en choisissant votre fond. - + Transitions: Transitions : - + &Footer Area Zone de &pied de page - + Starting color: Couleur de début : - + Ending color: Couleur de fin : - + Background color: Couleur de fond : - + Justify Justifier - + Layout Preview Prévisualise la mise en page - + Transparent Transparent - + Preview and Save Prévisualiser et Sauvegarder - + Preview the theme and save it. Prévisualiser le thème et le sauvegarder. + + + (approximately %d lines per slide) + (environ %d lignes par diapo) + + + + Background Image Empty + L'image de fond est vide + + + + You have not selected a background image. Please select one before continuing. + Vous n'avez pas sélectionné une image de fond. Veuillez en sélectionner une avant de continuer. + + + + Select Image + Sélectionnez une image + + + + Theme Name Missing + Nom du thème manquant + + + + There is no name for this theme. Please enter one. + Ce thème n'a pas de nom. Veuillez en saisir un. + + + + Theme Name Invalid + Nom du thème invalide + + + + Invalid theme name. Please enter one. + Nom du thème invalide. Veuillez en saisir un. + OpenLP.ThemesTab - + Global Theme Thème global - + Theme Level Politique d'application du thème - + S&ong Level Niveau &chant - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Utilise le thème pour chaque chants de la base de données. Si un chant n'a pas de thème associé, le thème du service est utilisé. Si le service n'a pas de thème, le thème global est utilisé. - + &Service Level Niveau &service - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Utilise le thème du service, surcharge le thème de chaque chants. Si le service n'a pas de thème, le thème global est utilisé. - + &Global Level Niveau &global - + Use the global theme, overriding any themes associated with either the service or the songs. Utilise le thème global, surcharge tous les thèmes associés aux services ou aux chants. - + Themes Thèmes @@ -5098,315 +5226,315 @@ Le contenu n'est pas de l'UTF-8. OpenLP.Ui - + Error Erreur - + About À propos - + &Add &Ajoute - + Advanced Avancé - + All Files Tous les Fichiers - + Bottom Bas - + Browse... Parcourir... - + Cancel Annuler - + CCLI number: Numéro CCLI : - + Create a new service. Crée un nouveau service. - + &Delete &Supprime - + &Edit &Édite - + Empty Field Champ vide - + Export Export - + pt Abbreviated font pointsize unit pt - + Image Image - + Import Import - + Live Direct - + Live Background Error Erreur de fond du direct - + Load Charge - + Middle Milieu - + New Nouveau - + New Service Nouveau service - + New Theme Nouveau thème - + No File Selected Singular Pas de fichier sélectionné - + No Files Selected Plural Aucun fichiers sélectionnés - + No Item Selected Singular Aucun élément sélectionné - + No Items Selected Plural Aucun éléments sélectionnés - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Prévisualisation - + Replace Background Remplace le fond - + Reset Background Réinitialiser le fond - + s The abbreviated unit for seconds s - + Save && Preview Enregistre && prévisualise - + Search Recherche - + You must select an item to delete. Vous devez sélectionner un élément à supprimer. - + You must select an item to edit. Vous devez sélectionner un élément à éditer. - + Save Service Enregistre le service - + Service Service - + Start %s Début %s - + Theme Singular Thème - + Themes Plural Thèmes - + Top Haut - + Version Version - + Delete the selected item. Supprime l'élément sélectionné. - + Move selection up one position. Déplace la sélection d'une position vers le haut. - + Move selection down one position. Déplace la sélection d'une position vers le bas. - + &Vertical Align: Alignement &vertical : - + Finished import. Import terminé. - + Format: Format : - + Importing Import en cours - + Importing "%s"... Importation de "%s"... - + Select Import Source Sélectionnez la source à importer - + Select the import format and the location to import from. Sélectionne le format d'import et le chemin du fichier à importer. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. L'import openlp.org 1.x a été désactivé parce qu'il manque un module Python. Si vous voulez utiliser cet import, vous devez installer le module Python "python-sqlite". - + Open %s File Ouvre le fichier %s - + %p% %p% - + Ready. Prêt. - + Starting import... Commence l'import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Vous devez spécifier au moins un fichier de %s à importer. @@ -5417,299 +5545,304 @@ Le contenu n'est pas de l'UTF-8. Bienvenue dans l'assistant d'import de Bible - + Welcome to the Song Export Wizard Bienvenue dans l'assistant d'export de Chant - + Welcome to the Song Import Wizard Bienvenue dans l'assistant d'import de Chant - + Author Singular Auteur - + Authors Plural Auteurs - - © + + © Copyright symbol. © - + Song Book Singular Carnet de chants - + Song Books Plural Carnets de chants - + Song Maintenance Entretien des Chants - + Topic Singular Sujet - + Topics Plural Sujets - + Continuous Continu - + Default Défaut - + Display style: Style d'affichage : - + Duplicate Error Erreur de duplication - + File Fichier - + Help Aide - + h The abbreviated unit for hours h - + Layout style: Type de disposition : - + Live Toolbar Bar d'outils direct - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP est déjà en cours d'utilisation. Voulez-vous continuer ? - + Settings Configuration - + Tools Outils - + Unsupported File Fichier non supporté - + Verse Per Slide Un verset par diapositive - + Verse Per Line Un verset par ligne - + View Affiche - + Title and/or verses not found Titre et/ou paragraphe non trouvé - + XML syntax error Erreur de syntaxe XML - + View Mode Mode d'affichage - + Open service. Ouvre le service. - + Print Service Imprime le service - + Replace live background. Remplace le fond du direct. - + Reset live background. Restaure le fond du direct. - + Split a slide into two only if it does not fit on the screen as one slide. Divisez la diapositive en deux seulement si elle ne loge pas sur l'écran. - + Welcome to the Bible Upgrade Wizard Bienvenue dans l'assistant de mise à jour de Bible - + Confirm Delete Confirme la suppression - + Play Slides in Loop Affiche les diapositives en boucle - + Play Slides to End Affiche les diapositives jusqu’à la fin - + Stop Play Slides in Loop Arrête la boucle de diapositive - + Stop Play Slides to End Arrête la boucle de diapositive à la fin - + Next Track Piste suivante - + Search Themes... Search bar place holder text Recherche dans les thèmes... - + Optional &Split Optionnel &Partager - + Invalid Folder Selected Singular Dossier sélectionné invalide - + Invalid File Selected Singular Fichier sélectionné invalide - + Invalid Files Selected Plural Fichiers sélectionnés invalides - + No Folder Selected Singular Aucun dossier sélectionné - + Open %s Folder Ouvrir le dossier %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Vous devez spécifier un fichier %s à importer. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Vous devez spécifier un dossier %s à importer. + + + Importing Songs + Import de chansons en cours + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 et %2 - + %1, and %2 Locale list separator: end %1, et %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5718,50 +5851,50 @@ Le contenu n'est pas de l'UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Module de présentation</strong><br />Le module de présentation permet d'afficher des présentations issues d'autres logiciels. La liste des logiciels disponibles se trouve dans les options d'OpenLP rubrique Présentation. - + Presentation name singular Présentation - + Presentations name plural Présentations - + Presentations container title Présentations - + Load a new presentation. Charge une nouvelle présentation. - + Delete the selected presentation. Supprime la présentation sélectionnée. - + Preview the selected presentation. Prévisualise la présentation sélectionnée. - + Send the selected presentation live. Envoie la présentation sélectionnée au direct. - + Add the selected presentation to the service. Ajoute la présentation sélectionnée au service. @@ -5769,52 +5902,52 @@ Le contenu n'est pas de l'UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Sélectionne un(des) Présentation(s) - + Automatic Automatique - + Present using: Actuellement utilisé : - + File Exists Ce fichier existe - + A presentation with that filename already exists. Une présentation utilise déjà ce nom de fichier. - + This type of presentation is not supported. Ce type de présentation n'est pas supporté. - + Presentations (%s) Présentations (%s) - + Missing Presentation Présentation manquante - + The presentation %s is incomplete, please reload. La présentation %s est incomplète, veuillez la recharger. - + The presentation %s no longer exists. La présentation %s n'existe plus. @@ -5822,17 +5955,17 @@ Le contenu n'est pas de l'UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Logiciels de présentation disponibles - + %s (unavailable) %s (non disponible) - + Allow presentation application to be overridden Autoriser l'application de présentation à être surcharger @@ -5840,24 +5973,24 @@ Le contenu n'est pas de l'UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Module Contrôle à distance</strong><br />Le module de contrôle à distance permet d'envoyer des messages à une instance d'OpenLP fonctionnant sur un autre ordinateur au moyen d'une interface web ou au travers d'une API. - + Remote name singular Connexion à distance - + Remotes name plural Contrôles à distance - + Remote container title Contrôle à distance @@ -5866,236 +5999,246 @@ Le contenu n'est pas de l'UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Contrôle à distance - + OpenLP 2.0 Stage View OpenLP 2.0 Prompteur - + Service Manager Gestionnaire de services - + Slide Controller Contrôleur de diapositive - + Alerts Alertes - + Search Recherche - + Refresh Rafraîchir - + Blank Vide - + Show Affiche - + Prev Préc - + Next Suiv - + Text Texte - + Show Alert Affiche une alerte - + Go Live Lance le direct - + No Results Pas de résultats - + Options Options - + Add to Service Ajoute au service - + Home Accueil - + Theme Thème - + Desktop Bureau - + Add &amp; Go to Service Ajouter &amp; Se rendre au Service + + + Service + Service + + + + Slides + Diapos + RemotePlugin.RemoteTab - + Serve on IP address: Ecoute sur l'adresse IP : - + Port number: Numéro de port : - + Server Settings Configuration du serveur - + Remote URL: URL du contrôle à distance : - + Stage view URL: URL du Prompteur : - + Display stage time in 12h format Affiche l'heure du prompteur au format 12h - + Android App Application Android - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Scannez le QR code ou cliquez sur <a href="https://market.android.com/details?id=org.openlp.android">télécharger</a> pour installer l'application Android à partir de Google Play. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Scannez le code QR ou cliquez <a href="https://play.google.com/store/apps/details?id=org.openlp.android">télécharger</a> pour installer l'app Android à partir de Google Play. SongUsagePlugin - + &Song Usage Tracking Suivre de l'utilisation des &chants - + &Delete Tracking Data &Supprime les données de suivi - + Delete song usage data up to a specified date. Supprime les données de l'utilisation des chants jusqu'à une date donnée. - + &Extract Tracking Data &Extraire les données de suivi - + Generate a report on song usage. Génère un rapport de l'utilisation des chants. - + Toggle Tracking Activer/Désactiver le suivi - + Toggle the tracking of song usage. Active/Désactive le suivi de l'utilisation des chants. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Module de suivi des chants</strong><br />Ce module permet d'effectuer des statistiques sur la projection des chants. - + SongUsage name singular Suivi de l'utilisation des chants - + SongUsage name plural Suivi de l'utilisation des chants - + SongUsage container title Suivi de l'utilisation des chants - + Song Usage Suivi de l'utilisation des chants - + Song usage tracking is active. Le suivi de l'utilisation des chants est actif. - + Song usage tracking is inactive. Le suivi de l'utilisation des chants est inactif. - + display affiche - + printed imprimé @@ -6103,32 +6246,32 @@ Le contenu n'est pas de l'UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Supprime les données de suivi de l'utilisation des chants - + Delete Selected Song Usage Events? Supprime les événements sélectionné ? - + Are you sure you want to delete selected Song Usage data? Êtes vous sur de vouloir supprimer les données de suivi sélectionnées ? - + Deletion Successful Suppression effectuée - + All requested data has been deleted successfully. Toutes les données demandées ont été supprimées avec succès. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Sélectionnez la date jusqu'à laquelle les données d'utilisation des chants devra être supprimé. Toutes les données enregistrées avant cette date seront définitivement supprimées. @@ -6136,42 +6279,42 @@ Le contenu n'est pas de l'UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Extraction de l'utilisation des chants - + Select Date Range Sélectionne une période - + to à - + Report Location Emplacement du rapport - + Output File Location Emplacement du fichier de sortie - + usage_detail_%s_%s.txt rapport_d_utilisation_%s_%s.txt - + Report Creation Création du rapport - + Report %s has been successfully created. @@ -6180,12 +6323,12 @@ has been successfully created. à été crée avec succès. - + Output Path Not Selected Répertoire de destination non sélectionné - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Vous n'avez pas défini de répertoire de destination valide pour votre rapport d'utilisation des chants. Veuillez sélectionner un répertoire existant sur votre ordinateur. @@ -6193,112 +6336,112 @@ has been successfully created. SongsPlugin - + &Song &Chant - + Import songs using the import wizard. Import des chants en utilisant l'assistant d'import. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Module Chants</strong><br />Le module Chants permet d'afficher et de gérer des chants. - + &Re-index Songs &Ré-indexation des Chants - + Re-index the songs database to improve searching and ordering. Ré-indexation de la base de données des chants pour accélérer la recherche et le tri. - + Reindexing songs... Ré-indexation des chants en cours... - + Arabic (CP-1256) Arabe (CP-1256) - + Baltic (CP-1257) Baltique (CP-1257) - + Central European (CP-1250) Europe centrale (CP-1250) - + Cyrillic (CP-1251) Cyrillique (CP-1251) - + Greek (CP-1253) Grecque (CP-1253) - + Hebrew (CP-1255) Hébreux (CP-1255) - + Japanese (CP-932) Japonais (CP-932) - + Korean (CP-949) Coréen (CP-949) - + Simplified Chinese (CP-936) Chinois simplifié (CP-936) - + Thai (CP-874) Thaï (CP-874) - + Traditional Chinese (CP-950) Chinois Traditionnel (CP-950) - + Turkish (CP-1254) Turque (CP-1254) - + Vietnam (CP-1258) Vietnamiens (CP-1258) - + Western European (CP-1252) Europe de l'ouest (CP-1252) - + Character Encoding Encodage des caractères - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6307,100 +6450,105 @@ permet un affichage correct des caractères. L'option déjà sélectionnée est en général la bonne. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Veuillez choisir l'encodage des caractères. L'encodage permet un affichage correct des caractères. - + Song name singular Chant - + Songs name plural Chants - + Songs container title Chants - + Exports songs using the export wizard. Export des chants en utilisant l'assistant d'export. - + Add a new song. Ajoute un nouveau chant. - + Edit the selected song. Édite le chant sélectionné. - + Delete the selected song. Supprime le chant sélectionné. - + Preview the selected song. Prévisualise le chant sélectionné. - + Send the selected song live. Envoie le chant sélectionné au direct. - + Add the selected song to the service. Ajoute le chant sélectionné au service. + + + Reindexing songs + Réindexation des chansons en cours + SongsPlugin.AuthorsForm - + Author Maintenance Auteur de maintenance - + Display name: Nom affiché : - + First name: Prénom : - + Last name: Nom : - + You need to type in the first name of the author. Vous devez entrer le prénom de l'auteur. - + You need to type in the last name of the author. Vous devez entrer le nom de l'auteur. - + You have not set a display name for the author, combine the first and last names? Nous n'avez pas défini de nom à afficher pour l'auteur, combiner le prénom et le nom ? @@ -6408,7 +6556,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Le fichier a une extension non valide. @@ -6416,12 +6564,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administré par %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6433,12 +6581,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EditBibleForm - + Meta Data Méta données - + Custom Book Names Noms de livres personnalisés @@ -6446,207 +6594,202 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EditSongForm - + Song Editor Éditeur de Chant - + &Title: &Titre : - + Alt&ernate title: Titre alt&ernatif : - + &Lyrics: &Paroles : - + &Verse order: Ordre des &paragraphes : - + Ed&it All Édite &tous - + Title && Lyrics Titre && paroles - + &Add to Song &Ajoute au Chant - + &Remove &Supprime - + &Manage Authors, Topics, Song Books &Gère les auteurs, sujets, Carnets de chants - + A&dd to Song A&joute au Chant - + R&emove &Supprime - + Book: Carnet de chants : - + Number: Numéro : - + Authors, Topics && Song Book Auteurs, sujets && Carnet de chants - + New &Theme Nouveau &thème - + Copyright Information Information du copyright - + Comments Commentaires - + Theme, Copyright Info && Comments Thème, copyright && commentaires - + Add Author Ajoute un auteur - + This author does not exist, do you want to add them? Cet auteur n'existe pas, voulez-vous l'ajouter ? - + This author is already in the list. Cet auteur ce trouve déjà dans la liste. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Vous n'avez pas sélectionné un auteur valide. Vous pouvez sélectionner un auteur dans la liste, ou entrer le nom d'un nouvel auteur et cliquez sur "Ajouter un auteur au Chant". - + Add Topic Ajoute un sujet - + This topic does not exist, do you want to add it? Ce sujet n'existe pas voulez-vous l'ajouter ? - + This topic is already in the list. Ce sujet ce trouve déjà dans la liste. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Vous n'avez pas sélectionné de sujet valide. Vous pouvez sélectionner un sujet dans la liste, ou entrer le nom d'un nouveau sujet et cliquez sur "Ajouter un sujet au Chant". - + You need to type in a song title. Vous devez entrer un titre pour ce chant. - + You need to type in at least one verse. Vous devez entrer au moins un paragraphe. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. L'ordre des paragraphes est invalide. Il n'y a pas de paragraphe correspondant à %s. Les entrées valides sont %s. - + Add Book Ajoute un Carnet de chants - + This song book does not exist, do you want to add it? Ce carnet de chants n'existe pas, voulez-vous l'ajouter ? - + You need to have an author for this song. Vous devez entrer un auteur pour ce chant. - - You need to type some text in to the verse. - Vous devez entrer du texte dans ce paragraphe. - - - + Linked Audio Fichier audio attaché - + Add &File(s) Ajoute un(des) &fichier(s) - + Add &Media Ajoute un &média - + Remove &All Supprime &tout - + Open File(s) Ouvre un(des) fichier(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Attention :</strong> Tous les versets ne sont pas utilisés. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. L'ordre des versets est invalide. Aucun verset ne correspond à %s. Les entrées valides sont %s. @@ -6654,22 +6797,22 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.EditVerseForm - + Edit Verse Édite le paragraphe - + &Verse type: &Type de paragraphe : - + &Insert &Insère - + Split a slide into two by inserting a verse splitter. Divise une diapositive en deux en insérant un séparateur de paragraphe. @@ -6677,82 +6820,82 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ExportWizardForm - + Song Export Wizard Assistant d'export de chant - + Select Songs Sélectionne des chants - + Check the songs you want to export. Coche les chants que vous voulez exporter. - + Uncheck All Décoche tous - + Check All Coche tous - + Select Directory Sélectionne un répertoire - + Directory: Répertoire : - + Exporting Exportation - + Please wait while your songs are exported. Merci d'attendre que vos chants soient exportés. - + You need to add at least one Song to export. Vous devez exporter au moins un chant. - + No Save Location specified Aucun emplacement de sauvegarde défini - + Starting export... Démarre l'export... - + You need to specify a directory. Vous devez spécifier un répertoire. - + Select Destination Folder Sélectionne le répertoire de destination - + Select the directory where you want the songs to be saved. Sélectionne le répertoire où vous voulez enregistrer vos chants. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Cet assistant vous permet d'exporter vos chants dans le format de chants de louange libre et gratuit <strong>OpenLyrics</strong>. @@ -6760,185 +6903,185 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Sélectionne les fichiers Document/Présentation - + Song Import Wizard Assistant d'import de Chant - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Cet assistant vous permet d'importer des chants de divers formats. Cliquez sur le bouton suivant ci-dessous pour démarrer le processus en sélectionnant le format à importer. - + Generic Document/Presentation Document/Présentation générique - + Add Files... Ajoute des fichiers... - + Remove File(s) Supprime un(des) fichier(s) - + Please wait while your songs are imported. Veuillez patienter pendant l'import de vos chants. - + OpenLP 2.0 Databases Base de données OpenLP 2.0 - + openlp.org v1.x Databases Base de données openlp.org 1.x - + Words Of Worship Song Files Fichiers Chant Words Of Worship - + Songs Of Fellowship Song Files Fichiers Chant Songs Of Fellowship - + SongBeamer Files Fichiers SongBeamer - + SongShow Plus Song Files Fichiers Chant SongShow Plus - + Foilpresenter Song Files Fichiers Chant Foilpresenter - + Copy Copier - + Save to File Enregistre dans le fichier - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import de chants Fellowship a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. L'import générique de document/présentation a été désactivé car OpenLP ne peut accéder à OpenOffice ou LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song Chant exporté OpenLyrics ou OpenLP 2.0 - + OpenLyrics Files Fichiers OpenLyrics - + CCLI SongSelect Files CCLI Song Sélectionner Fichiers - + EasySlides XML File Fichier XML EasySlides - + EasyWorship Song Database Base de données de chants d'EasyWorship - + DreamBeam Song Files Fichiers chants DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Vous devez spécifier un dossier de données PowerSong 1.0 valide. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + D'abord, convertissez votre base de données ZionWorx à un fichier texte CSV, comme c'est expliqué dans le <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">manuel utilisateur</a>. - + SundayPlus Song Files Fichier chants SundayPlus - + This importer has been disabled. - + Cet importeur a été désactivé. - + MediaShout Database - + Base de données MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + L'importeur MediaShout n'est supporté que sous Windows. Il a été désactivé à cause d'un module Python manquant. Si vous voulez utiliser cet importeur, vous devez installer le module "pyodbc". - + SongPro Text Files - + Fichiers texte SongPro - + SongPro (Export File) - + SongPro (Fichiers exportés) - + In SongPro, export your songs using the File -> Export menu - + Dans SongPro, exportez vos chansons en utilisant le menu Fichier -> Exporter SongsPlugin.MediaFilesForm - + Select Media File(s) Sélectionne un(des) fichier(s) média - + Select one or more audio files from the list below, and click OK to import them into this song. Sélectionnez un ou plusieurs fichier depuis la liste ci-dessous, et cliquez sur le bouton OK pour les importer dans ce chant. @@ -6946,63 +7089,66 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.MediaItem - + Titles Titres - + Lyrics Paroles - + CCLI License: Licence CCLI : - + Entire Song Chant entier - + Are you sure you want to delete the %n selected song(s)? - Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ?Êtes-vous sûr de vouloir supprimer les chants %n sélectionnés ? + + Êtes-vous sûr de vouloir supprimer le chant %n sélectionné ? + Êtes-vous sûr de vouloir supprimer les chants %n sélectionnés ? + - + Maintain the lists of authors, topics and books. Maintenir la liste des auteurs, sujets et carnets de chants. - + copy For song cloning copier - + Search Titles... Recherche dans les titres... - + Search Entire Song... Recherche dans le chant entier... - + Search Lyrics... Recherche dans les paroles... - + Search Authors... Recherche dans les auteurs... - + Search Song Books... Recherche dans les carnets de chants... @@ -7010,15 +7156,15 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Impossible d'ouvrir la base de données MediaShout. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Base de données de chant openlp.org 1.x invalide. @@ -7026,7 +7172,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Base de données de chant OpenLP.org 2.0 invalide. @@ -7034,7 +7180,7 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportation "%s"... @@ -7042,35 +7188,55 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.PowerSongImport - + No songs to import. Aucun chant à importer. - + Verses not found. Missing "PART" header. Versets non trouvé. Entête "PART" manquante. + + + No %s files found. + Aucun fichier %s trouvé. + + + + Invalid %s file. Unexpected byte value. + Fichier %s invalide. Octet inattendu. + + + + Invalid %s file. Missing "TITLE" header. + Fichier %s invalide. Entête "TITLE" manquant. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Fichier %s invalide. Entête "COPYRIGHTLINE" manquant. + SongsPlugin.SongBookForm - + Song Book Maintenance Maintenance du Carnet de chants - + &Name: &Nom : - + &Publisher: &Éditeur : - + You need to type in a name for the book. Vous devez entrer un nom pour le carnet de chants. @@ -7078,12 +7244,12 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongExportForm - + Your song export failed. Votre export de chant a échoué. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Export terminé. Pour importer ces fichiers utilisez l’outil d'import <strong>OpenLyrics</strong>. @@ -7091,27 +7257,27 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: Les chants suivants ne peuvent être importé : - + Cannot access OpenOffice or LibreOffice Impossible d’accéder à OpenOffice ou LibreOffice - + Unable to open file Impossible d'ouvrir le fichier - + File not found Fichier non trouvé @@ -7119,107 +7285,107 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongMaintenanceForm - + Could not add your author. Impossible d'ajouter votre auteur. - + This author already exists. Cet auteur existe déjà. - + Could not add your topic. Impossible d'ajouter votre sujet. - + This topic already exists. Ce sujet existe déjà. - + Could not add your book. Impossible d'ajouter votre carnet de chants. - + This book already exists. Ce carnet de chants existe déjà. - + Could not save your changes. Impossible d'enregistrer vos modifications. - + Could not save your modified author, because the author already exists. Impossible d'enregistrer vos modifications de l'auteur, car l'auteur existe déjà. - + Could not save your modified topic, because it already exists. Impossible d'enregistrer vos modifications du sujet, car le sujet existe déjà. - + Delete Author Supprime l'auteur - + Are you sure you want to delete the selected author? Êtes-vous sûr de bien vouloir supprimer l'auteur sélectionné ? - + This author cannot be deleted, they are currently assigned to at least one song. Cet auteur ne peut être supprimé, il est actuellement utilisé par au moins un chant. - + Delete Topic Supprime le sujet - + Are you sure you want to delete the selected topic? Êtes-vous sûr de bien vouloir supprimer le sujet sélectionné ? - + This topic cannot be deleted, it is currently assigned to at least one song. Ce sujet ne peut être supprimé, il est actuellement utilisé par au moins un chant. - + Delete Book Supprime le carnet de chants - + Are you sure you want to delete the selected book? Êtes-vous sûr de bien vouloir supprimer le carnet de chants sélectionné ? - + This book cannot be deleted, it is currently assigned to at least one song. Ce carnet de chants ne peut être supprimé, il est actuellement utilisé par au moins un chant. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? L'auteur %s existe déjà. Voulez-vous faire en sorte que les chants avec l'auteur %s utilise l'auteur existant %s ? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Le sujet %s existe déjà. Voulez-vous faire en sorte que les chants avec le sujet %s utilise le sujet existant %s ? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Le carnet de chants %s existe déjà. Voulez-vous faire en sorte que les chants du carnet de chants %s utilisent le carnet de chants existant %s ? @@ -7227,27 +7393,27 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.SongsTab - + Songs Mode Options de Chants - + Enable search as you type Active la recherche à la frappe - + Display verses on live tool bar Affiche les paragraphes dans la barre d'outils du direct - + Update service from song edit Mettre à jour le service après une modification de chant - + Import missing songs from service files Importer les chants manquant des fichiers du service @@ -7255,17 +7421,17 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.TopicsForm - + Topic Maintenance Maintenance des sujets - + Topic name: Nom du sujet : - + You need to type in a topic name. Vous devez entrer un nom de sujet. @@ -7273,37 +7439,37 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.VerseType - + Verse Couplet - + Chorus Refrain - + Bridge Pont - + Pre-Chorus F-Pré-refrain - + Intro Introduction - + Ending Fin - + Other Autre @@ -7311,14 +7477,29 @@ L'encodage permet un affichage correct des caractères. SongsPlugin.ZionWorxImport - + Error reading CSV file. Impossible de lire le fichier CSV. - + File not valid ZionWorx CSV format. Format de fichier CSV ZionWorx invalide. + + + Line %d: %s + Ligne %d: %s + + + + Decoding error: %s + Erreur de décodage: %s + + + + Record %d + Entrée %d + - \ No newline at end of file + diff --git a/resources/i18n/hu.ts b/resources/i18n/hu.ts index b1a034391..87200011a 100644 --- a/resources/i18n/hu.ts +++ b/resources/i18n/hu.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Értesítés - + Show an alert message. Értesítést jelenít meg. - + Alert name singular Értesítés - + Alerts name plural Értesítések - + Alerts container title Értesítések - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Értesítés bővítmény</strong><br />Az értesítés bővítmény kezeli a gyermekfelügyelet felhívásait a vetítőn. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Értesítő üzenet - + Alert &text: Értesítés &szövege: - + &New &Új - + &Save &Mentés - + Displ&ay &Megjelenítés - + Display && Cl&ose M&egjelenítés és bezárás - + New Alert Új értesítés - + You haven't specified any text for your alert. Please type in some text before clicking New. Az értesítés szövege nincs megadva. Adj meg valamilyen szöveget az Új gombra való kattintás előtt. - + &Parameter: &Paraméter: - + No Parameter Found Nem található a paraméter - + You have not entered a parameter to be replaced. Do you want to continue anyway? Nincs megadva a cserélendő paraméter. Folytatható? - + No Placeholder Found Nem található a helyjelölő - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Az értesítő szöveg nem tartalmaz „<>” karaktereket. Folytatható? @@ -118,32 +119,32 @@ Folytatható? AlertsPlugin.AlertsTab - + Font Betűkészlet - + Font name: Betűkészlet neve: - + Font color: Betűszín: - + Background color: Háttérszín: - + Font size: Betűméret: - + Alert timeout: Értesítés időtartama: @@ -151,510 +152,510 @@ Folytatható? BiblesPlugin - + &Bible &Biblia - + Bible name singular Biblia - + Bibles name plural Bibliák - + Bibles container title Bibliák - + No Book Found Nincs ilyen könyv - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. A kért könyv nem található ebben a bibliában. Kérlek, ellenőrizd a könyv nevének helyesírását. - + Import a Bible. Biblia importálása. - + Add a new Bible. Biblia hozzáadása. - + Edit the selected Bible. A kijelölt biblia szerkesztése. - + Delete the selected Bible. A kijelölt biblia törlése. - + Preview the selected Bible. A kijelölt biblia előnézete. - + Send the selected Bible live. A kijelölt biblia élő adásba küldése. - + Add the selected Bible to the service. A kijelölt biblia hozzáadása a szolgálati sorrendhez. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Biblia bővítmény</strong><br />A biblia bővítmény különféle forrásokból származó igehelyek vetítését teszi lehetővé a szolgálat alatt. - + &Upgrade older Bibles &Régebbi bibliák frissítés - + Upgrade the Bible databases to the latest format. Frissíti a biblia adatbázisokat a legutolsó formátumra. - + Genesis Teremtés - + Exodus Kivonulás - + Leviticus Leviták - + Numbers Számok - + Deuteronomy Második törvénykönyv - + Joshua Józsué - + Judges Bírák - + Ruth Rút - + 1 Samuel 1. Sámuel - + 2 Samuel 2. Sámuel - + 1 Kings 1. Királyok - + 2 Kings 2. Királyok - + 1 Chronicles 1. Krónikák - + 2 Chronicles 2. Krónikák - + Ezra Ezdrás - + Nehemiah Nehemiás - + Esther Eszter - + Job Jób - + Psalms Zsoltárok - + Proverbs Példabeszédek - + Ecclesiastes Prédikátor - + Song of Solomon Énekek éneke - + Isaiah Izajás - + Jeremiah Jeremiás - + Lamentations Jeremiás siralmai - + Ezekiel Ezékiel - + Daniel Dániel - + Hosea Ozeás - + Joel Joel - + Amos Ámosz - + Obadiah Abdiás - + Jonah Jónás - + Micah Mikeás - + Nahum Náhum - + Habakkuk Habakuk - + Zephaniah Szofoniás - + Haggai Aggeus - + Zechariah Zakariás - + Malachi Malakiás - + Matthew Máté - + Mark Márk - + Luke Lukács - + John János - + Acts Apostolok cselekedetei - + Romans Római - + 1 Corinthians 1. Korintusi - + 2 Corinthians 2. Korintusi - + Galatians Galata - + Ephesians Efezusi - + Philippians Filippi - + Colossians Kolosszei - + 1 Thessalonians 1. Tesszaloniki - + 2 Thessalonians 2. Tesszaloniki - + 1 Timothy 1. Timóteus - + 2 Timothy 2. Timóteus - + Titus Titusz - + Philemon Filemon - + Hebrews Zsidók - + James Jakab - + 1 Peter 1. Péter - + 2 Peter 2. Péter - + 1 John 1. János - + 2 John 2. János - + 3 John 3. János - + Jude Júdás - + Revelation Jelenések - + Judith Judit - + Wisdom Bölcsesség - + Tobit Tóbiás - + Sirach Sirák fia - + Baruch Báruk - + 1 Maccabees 1. Makkabeusok - + 2 Maccabees 2. Makkabeusok - + 3 Maccabees 3. Makkabeusok - + 4 Maccabees 4. Makkabeusok - + Rest of Daniel Dániel maradék - + Rest of Esther Eszter maradék - + Prayer of Manasses Manassze imája - + Letter of Jeremiah Jeremiás levele - + Prayer of Azariah Azarja imája - + Susanna Zsuzsanna - + Bel Bél és a sárkány - + 1 Esdras Ezdrás - + 2 Esdras Nehemiás - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|versszak|versszakok;;-;;,|és;;vége @@ -663,32 +664,32 @@ Folytatható? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Meg kell adni a biblia verziószámát. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Meg kell adni a biblia szerzői jogait. A közkincsű bibliákat meg kell jelölni ilyennek. - + Bible Exists Létező Biblia - + This Bible already exists. Please import a different Bible or first delete the existing one. Ez a biblia már létezik. Kérlek, importálj egy másik bibliát vagy előbb töröld a meglévőt. - + You need to specify a book name for "%s". Meg kell adni a könyv nevét: %s. - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Szám csak az elején lehet és ezt követni kell néhány nem numerikus karakternek. - + Duplicate Book Name Azonos könyvnév - + The Book Name "%s" has been entered more than once. E könyvnév többször lett megadva: %s. @@ -710,39 +711,39 @@ Szám csak az elején lehet és ezt követni kell BiblesPlugin.BibleManager - + Scripture Reference Error Igehely hivatkozási hiba - + Web Bible cannot be used Online biblia nem használható - + Text Search is not available with Web Bibles. A keresés nem érhető el online biblián. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nincs megadva keresési kifejezés. Több kifejezés is megadható. Szóközzel történő elválasztás esetén minden egyes kifejezésre történik a keresés, míg vesszővel való elválasztás esetén csak az egyikre. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Jelenleg nincs telepített biblia. Kérlek, használd a bibliaimportáló tündért bibliák telepítéséhez. - + No Bibles Available Nincsenek elérhető bibliák - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,88 +766,88 @@ Könyv fejezet%(verse)svers%(range)sfejezet%(verse)svers BiblesPlugin.BiblesTab - + Verse Display Vers megjelenítés - + Only show new chapter numbers Csak az új fejezetszámok megjelenítése - + Bible theme: Biblia téma: - + No Brackets Nincsenek zárójelek - + ( And ) ( és ) - + { And } { és } - + [ And ] [ és ] - + Note: Changes do not affect verses already in the service. Megjegyzés: A módosítások nem érintik a már a szolgálati sorrendben lévő verseket. - + Display second Bible verses A második biblia verseinek megjelenítése - + Custom Scripture References Egyedi szentírási hivatkozások - + Verse Separator: Versek elválasztása: - + Range Separator: Tartományok elválasztása: - + List Separator: Felsorolások elválasztása: - + End Mark: Vég jelölése: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - Több alternatív verszak elválasztó definiálható. + Több alternatív versszak elválasztó definiálható. Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ Egy függőleges vonal („|”) szolgál az elválasztásukra. Üresen hagyva az alapértelmezett érték áll helyre. - + English Angol - + Default Bible Language Alapértelmezett biblia nyelv - + Book name language in search field, search results and on display: A keresési mezőben, a találati sorrendben és a képernyőn megjelenő könyvnevek alapértelmezett nyelve: - + Bible Language Biblia nyelve - + Application Language Alkalmazás nyelve @@ -903,42 +904,42 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.BookNameDialog - + Select Book Name Jelöld ki a könyv nevét - + Current name: Jelenlegi név: - + Corresponding name: Megfelelő név: - + Show Books From Könyvek megjelenítése - + Old Testament Ószövetség - + New Testament Újszövetség - + Apocrypha Apokrif - + The following book name cannot be matched up internally. Please select the corresponding name from the list. A következő könyvnév nem ismerhető fel. Jelölj ki egy helyes nevet a következő listából. @@ -946,7 +947,7 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.BookNameForm - + You need to select a book. Ki kell jelölni egy könyvet. @@ -954,18 +955,18 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.CSVBible - + Importing books... %s Könyvek importálása… %s - + Importing verses from %s... Importing verses from <book name>... Versek importálása ebből a könyvből: %s… - + Importing verses... done. Versek importálása… kész. @@ -973,69 +974,69 @@ megjelenő könyvnevek alapértelmezett nyelve: BiblesPlugin.EditBibleForm - + Bible Editor Biblia szerkesztő - + License Details Licenc részletek - + Version name: - Veziónév: + Verziónév: - + Copyright: Szerzői jog: - + Permissions: Engedélyek: - + Default Bible Language Alapértelmezett biblia nyelv - + Book name language in search field, search results and on display: A keresési mezőben, a találati sorrendben és a képernyőn megjelenő könyvnevek alapértelmezett nyelve: - + Global Settings Általános beállítások - + Bible Language Biblia nyelve - + Application Language Alkalmazás nyelve - + English Angol - + This is a Web Download Bible. It is not possible to customize the Book Names. Ez egy webes biblia. Nincs lehetőség a könyvnevek módosítására. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Az egyedi könyvnevek alkalmazásához a „Biblia nyelve” beállítást kell alkalmazni a metaadat fülön, vagy az „Általános beállítások” esetén az OpenLP beállításai között a „Biblia” lapon. @@ -1043,38 +1044,38 @@ Nincs lehetőség a könyvnevek módosítására. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Biblia regisztrálása és a könyvek letöltése… - + Registering Language... Nyelv regisztrálása… - + Importing %s... Importing <book name>... Importálás: %s… - + Download Error Letöltési hiba - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Probléma történt a kijelölt versek letöltésekor. Kérem, ellenőrizd a az internetkapcsolatot, és ha a hiba nem oldódik meg, fontold meg a hiba bejelentését. - + Parse Error Feldolgozási hiba - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Probléma történt a kiválasztott versek kicsomagolásakor. Ha a hiba nem oldódik meg, fontold meg a hiba bejelentését. @@ -1252,17 +1253,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Nyelvválasztás - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. Az OpenLP nem képes megállapítani a bibliafordítás nyelvét. Kérem, válassz egy nyelvet az alábbi listából. - + Language: Nyelv: @@ -1270,7 +1271,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Ki kell jelölni egy nyelvet. @@ -1278,104 +1279,104 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Gyors - + Find: Keresés: - + Book: Könyv: - + Chapter: Fejezet: - + Verse: Vers: - + From: Innentől: - + To: Idáig: - + Text Search Szöveg keresése - + Second: Második: - + Scripture Reference Igehely hivatkozás - + Toggle to keep or clear the previous results. Átváltás az előző eredmény megőrzése, ill. törlése között. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Az egyes és a kettőzött bibliaversek nem kombinálhatók. Töröljük a keresési eredményt és kezdjünk egy újabbat? - + Bible not fully loaded. A biblia nem töltődött be teljesen. - + Information Információ - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. A második biblia nem tartalmaz minden verset, ami az elsőben megtalálható. Csak a mindkét bibliában fellelhető versek fognak megjelenni. Ezek a versek nem lesznek megtalálhatóak: %d. - + Search Scripture Reference... Igehely keresése... - + Search Text... Szöveg keresése... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. Valóban teljes egészében törölhető ez a Biblia az OpenLP-ből: %s? -Az esetleges újboli alkalmazásához újra be kell majd importálni. +Az esetleges újbóli alkalmazásához újra be kell majd importálni. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. A megadott Biblia fájl hibás. Az OpenSong bibliák lehet, hogy tömörítve vannak. Ki kell tömöríteni őket importálás előtt. @@ -1383,7 +1384,7 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importálás: %s %s… @@ -1392,12 +1393,12 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Kódolás észlelése (ez eltarthat pár percig)… - + Importing %s %s... Importing <book name> <chapter>... Importálás: %s %s… @@ -1406,149 +1407,149 @@ Az esetleges újboli alkalmazásához újra be kell majd importálni. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Jelölj ki egy mappát a biztonsági mentésnek - + Bible Upgrade Wizard Bibliafrissítő tündér - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. A tündér segít az OpenLP 2 korábbi verzióiból származó bibliák frissítésében. Kattints az alábbi Következő gombra a folyamat indításhoz. - + Select Backup Directory Biztonsági mentés mappája - + Please select a backup directory for your Bibles Jelölj ki egy mappát a bibliáid biztonsági mentésének - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Az OpenLP 2.0 előző verziói nem képesek a frissített bibliákat alkalmazni. Ez a tündér segít biztonsági mentést készíteni a jelenlegi bibliákról, így ha vissza kell térni az OpenLP egy régebbi verziójára, akkor ezeket csak be kell majd másolni az OpenLP adatmappájába. A helyreállítási tudnivalók a <a href="http://wiki.openlp.org/faq">Gyakran Ismételt Kérdések</a> között találhatók. - + Please select a backup location for your Bibles. Jelölj ki egy helyet a bibliáid biztonsági mentésének. - + Backup Directory: Biztonsági mentés helye: - + There is no need to backup my Bibles Nincs szükségem biztonsági másolatra - + Select Bibles Bibliák kijelölése - + Please select the Bibles to upgrade Jelöld ki a frissítendő bibliákat - + Upgrading Frissítés - + Please wait while your Bibles are upgraded. Kérlek, várj, míg a bibliák frissítés alatt állnak. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. A biztonsági mentés nem teljes. A bibliák biztonsági mentéséhez írási jogosultság szükséges a megadott mappára. - + Upgrading Bible %s of %s: "%s" Failed Biblia frissítése: %s/%s: „%s” Sikertelen - + Upgrading Bible %s of %s: "%s" Upgrading ... Biblia frissítése: %s/%s: „%s” Frissítés… - + Download Error Letöltési hiba - + To upgrade your Web Bibles an Internet connection is required. A webes bibliák frissítéséhez internet kapcsolat szükséges. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Biblia frissítése: %s/%s: „%s” Frissítés: %s … - + Upgrading Bible %s of %s: "%s" Complete Biblia frissítése: %s/%s: „%s” Teljes - + , %s failed , %s sikertelen - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Bibliák frissítése: %s teljesítve %s. Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor is internet kapcsolat szükségeltetik. - + Upgrading Bible(s): %s successful%s Biblia frissítése: %s teljesítve %s - + Upgrade failed. A frissítés nem sikerült. - + You need to specify a backup directory for your Bibles. Meg kell adni egy könyvtárat a bibliák biztonsági mentéséhez. - + Starting upgrade... Frissítés indítása… - + There are no Bibles that need to be upgraded. Nincsenek frissítésre szoruló bibliák. @@ -1556,65 +1557,65 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Speciális dia bővítmény</strong><br />A speciális dia bővítmény dalokhoz hasonló egyéni diasor vetítését teszi lehetővé. Ugyanakkor több szabadságot enged meg, mint a dalok bővítmény. - + Custom Slide name singular Speciális dia - + Custom Slides name plural Speciális diák - + Custom Slides container title Speciális dia - + Load a new custom slide. Új speciális dia betöltése. - + Import a custom slide. Speciális dia importálása. - + Add a new custom slide. Új speciális dia hozzáadása. - + Edit the selected custom slide. A kijelölt speciális dia szerkesztése. - + Delete the selected custom slide. A kijelölt speciális dia törlése. - + Preview the selected custom slide. A kijelölt speciális dia előnézete. - + Send the selected custom slide live. A kijelölt speciális dia élő adásba küldése. - + Add the selected custom slide to the service. A kijelölt speciális dia hozzáadása a szolgálati sorrendhez. @@ -1622,12 +1623,12 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.CustomTab - + Custom Display Speciális dia megjelenése - + Display footer Lábléc megjelenítése @@ -1635,62 +1636,62 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.EditCustomForm - + Edit Custom Slides Speciális diasor szerkesztése - + &Title: &Cím: - + Add a new slide at bottom. Új dia hozzáadása alulra. - + Edit the selected slide. Kijelölt dia szerkesztése. - + Edit all the slides at once. Minden kijelölt dia szerkesztése egyszerre. - + Split a slide into two by inserting a slide splitter. Dia ketté vágása egy diaelválasztó beszúrásával. - + The&me: &Téma: - + &Credits: &Közreműködők: - + You need to type in a title. Meg kell adnod a címet. - + You need to add at least one slide Meg kell adnod legalább egy diát - + Ed&it All &Összes szerkesztése - + Insert Slide Dia beszúrása @@ -1698,7 +1699,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.EditVerseForm - + Edit Slide Dia szerkesztése @@ -1706,68 +1707,70 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Valóban törölhető a kijelölt %n speciális dia?Valóban törölhető a kijelölt %n speciális dia? + + Valóban törölhető a kijelölt %n speciális dia? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Kép bővítmény</strong><br />A kép a bővítmény különféle képek vetítését teszi lehetővé.<br />A bővítmény egyik különös figyelmet érdemlő képessége az, hogy képes a sorrendkezelőn csoportba foglalni a képeket, így könnyebbé téve képek tömeges vetítését. A bővítmény képes az OpenLP „időzített körkörös” lejátszásra is, amivel a diasort automatikusan tudjuk léptetni. Továbbá, a bővítményben megadott képekkel felülírhatjuk a téma háttérképét, amellyel a szöveg alapú elemek, mint pl. a dalok, a megadott háttérképpel jelennek meg, a témában beállított háttérkép helyett. - + Image name singular Kép - + Images name plural Képek - + Images container title Képek - + Load a new image. Új kép betöltése. - + Add a new image. Új kép hozzáadása. - + Edit the selected image. A kijelölt kép szerkesztése. - + Delete the selected image. A kijelölt kép törlése. - + Preview the selected image. A kijelölt kép előnézete. - + Send the selected image live. A kijelölt kép élő adásba küldése. - + Add the selected image to the service. A kijelölt kép hozzáadása a szolgálati sorrendhez. @@ -1775,7 +1778,7 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor ImagePlugin.ExceptionDialog - + Select Attachment Melléklet kijelölése @@ -1783,44 +1786,44 @@ Megjegyzés: a webes bibliák versei csak kérésre lesznek letöltve és ekkor ImagePlugin.MediaItem - + Select Image(s) Képek kijelölése - + You must select an image to delete. Ki kell jelölni egy képet a törléshez. - + You must select an image to replace the background with. Ki kell jelölni egy képet a háttér cseréjéhez. - + Missing Image(s) Hiányzó képek - + The following image(s) no longer exist: %s A következő képek nem léteznek: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? A következő képek nem léteznek: %s Szeretnél más képeket megadni? - + There was a problem replacing your background, the image file "%s" no longer exists. Probléma történt a háttér cseréje során, a(z) „%s” kép nem létezik. - + There was no display item to amend. Nem volt módosított megjelenő elem. @@ -1828,17 +1831,17 @@ Szeretnél más képeket megadni? ImagesPlugin.ImageTab - + Background Color Háttérszín - + Default Color: Alapértelmezett szín: - + Visible background for images with aspect ratio different to screen. A kép mögött látható háttér eltérő képernyőarány esetén. @@ -1846,60 +1849,60 @@ Szeretnél más képeket megadni? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Média bővítmény</strong><br />A média bővítmény hangok és videók lejátszását teszi lehetővé. - + Media name singular Média - + Media name plural Média - + Media container title Média - + Load new media. Új médiafájl betöltése. - + Add new media. Új médiafájl hozzáadása. - + Edit the selected media. A kijelölt médiafájl szerkesztése. - + Delete the selected media. A kijelölt médiafájl törlése. - + Preview the selected media. A kijelölt médiafájl előnézete. - + Send the selected media live. A kijelölt médiafájl élő adásba küldése. - + Add the selected media to the service. A kijelölt médiafájl hozzáadása a szolgálati sorrendhez. @@ -1907,57 +1910,57 @@ Szeretnél más képeket megadni? MediaPlugin.MediaItem - + Select Media Médiafájl kijelölése - + You must select a media file to delete. Ki kell jelölni egy médiafájlt a törléshez. - + You must select a media file to replace the background with. Ki kell jelölni médiafájlt a háttér cseréjéhez. - + There was a problem replacing your background, the media file "%s" no longer exists. Probléma történt a háttér cseréje során, a(z) „%s” média fájl nem létezik. - + Missing Media File Hiányzó média fájl - + The file %s no longer exists. A(z) „%s” fájl nem létezik. - + Videos (%s);;Audio (%s);;%s (*) Videók (%s);;Hang (%s);;%s (*) - + There was no display item to amend. Nem volt módosított megjelenő elem. - + Unsupported File Nem támogatott fájl - + Automatic Automatikus - + Use Player: Lejátszó alkalmazása: @@ -1965,22 +1968,22 @@ Szeretnél más képeket megadni? MediaPlugin.MediaTab - + Available Media Players Elérhető médialejátszók - + %s (unavailable) %s (elérhetetlen) - + Player Order Lejátszó sorrend - + Allow media player to be overridden Lejátszó felülírásának engedélyezése @@ -1988,17 +1991,17 @@ Szeretnél más képeket megadni? OpenLP - + Image Files Kép fájlok - + Information Információ - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2013,61 @@ Frissítheti most az OpenLP? OpenLP.AboutForm - + Credits Közreműködők - + License Licenc - - Contribute - Részvétel - - - + build %s %s összeépítés - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Ez egy szabad szoftver; terjeszthető illetve módosítható a GNU Általános Közreadási Feltételek dokumentumában leírtak szerint - 2. verzió -, melyet a Szabad Szoftver Alapítvány ad ki. - + This program 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 below for more details. Ez a program abban a reményben kerül közreadásra, hogy hasznos lesz, de minden egyéb GARANCIA NÉLKÜL, az eladhatóságra vagy valamely célra való alkalmazhatóságra való származtatott garanciát is beleértve. A további részleteket lásd alább. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Szerzői jog © 2004-2012 %s +Részleges szerzői jog © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> – Nyílt forrású dalszöveg vetítő + +Az OpenLP egy templomi/gyülekezeti bemutató, ill. dalszöveg vetítő szabad szoftver, mely használható énekek, bibliai versek, videók, képek és bemutatók (ha az Impress, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. + +Többet az OpenLP-ről: http://openlp.org/ + +Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több keresztény számítógépes programot, az alábbi gombbal vedd fontolóra az önkéntes részvételt. + + + + Volunteer + Önkéntes + + + Project Lead %s @@ -2059,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2120,12 +2157,20 @@ Csomagkészítők Fordítók Búr (af) %s + Cseh (cs) + %s + Dán (da) + %s Német (de) %s + Görög (el) + %s Angol, Egyesült Királyság (en_GB) %s Angol, Dél-Afrikai Köztársaság (en_ZA) %s + Spanyol (es) + %s Észt (et) %s Francia (fr) @@ -2142,13 +2187,14 @@ Fordítók %s Orosz (ru) %s - + Svéd (sv) + %s Dokumentáció %s Fordítás Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen ikonok: http://oxygen-icons.org/ @@ -2165,207 +2211,183 @@ Végső köszönet szabadnak és ingyenesnek készítettük, mert Ő tett minket szabaddá. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> – Nyílt forrású dalszöveg vetítő - -Az OpenLP egy templomi/gyülekezeti bemutató, ill. dalszöveg vetítő szabad szoftver, mely használható énekek, bibliai versek, videók, képek és bemutatók (ha az Impress, PowerPoint vagy a PowerPoint Viewer telepítve van) vetítésére a gyülekezeti dicsőítés alatt egy számítógép és egy projektor segítségével. - -Többet az OpenLP-ről: http://openlp.org/ - -Az OpenLP-t önkéntesek készítették és tartják karban. Ha szeretnél több keresztény számítógépes programot, fontold meg a projektben való részvételt az alábbi gombbal. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Szerzői jog © 2004-2012 %s -Részleges szerzői jog © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings Felhasználói felület beállításai - + Number of recent files to display: Előzmények megjelenítésének hossza: - + Remember active media manager tab on startup Újraindításkor az aktív médiakezelő fülek visszaállítása - + Double-click to send items straight to live Dupla kattintással az elemek azonnali élő adásba küldése - + Expand new service items on creation A sorrendbe kerülő elemek kibontása létrehozáskor - + Enable application exit confirmation Kilépési megerősítés engedélyezése - + Mouse Cursor Egérmutató - + Hide mouse cursor when over display window Egérmutató elrejtése a vetítési képernyő felett - + Default Image Alapértelmezett kép - + Background color: Háttérszín: - + Image file: Kép fájl: - + Open File Fájl megnyitása - + Advanced Haladó - + Preview items when clicked in Media Manager Elem előnézete a médiakezelőben való kattintáskor - + Click to select a color. Kattintás a szín kijelöléséhez. - + Browse for an image file to display. Tallózd be a megjelenítendő képfájlt. - + Revert to the default OpenLP logo. Az eredeti OpenLP logó visszaállítása. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Sorrend %Y-%m-%d %H-%M - + Default Service Name Alapértelmezett szolgálati sorrend neve - + Enable default service name Alapértelmezett szolgálati sorrend név - + Date and Time: Dátum és idő: - + Monday Hétfő - + Tuesday Kedd - + Wednesday Szerda - + Thurdsday Csütörtök - + Friday Péntek - + Saturday Szombat - + Sunday Vasárnap - + Now Most - + Time when usual service starts. A szolgálat szokásos kezdete. - + Name: Név: - + Consult the OpenLP manual for usage. Segítségéért tekints meg az OpenLP kézikönyvet. - + Revert to the default service name "%s". Alapértelmezett név helyreállítása: „%s”. - + Example: Példa: - + X11 X11 @@ -2375,82 +2397,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11 ablakkezelő megkerülése - + Syntax error. Szintaktikai hiba. - + Data Location Adatok helye - + Current path: Jelenlegi útvonal: - + Custom path: Egyedi útvonal: - + Browse for new data file location. Tallózd be az adatállományok helyét. - + Set the data location to the default. Eredeti adathely visszaállítása. - + Cancel Mégsem - + Cancel OpenLP data directory location change. Az OpenLP adathely-modósításának visszavonása. - + Copy data to new location. Adatok másolása az új helyre. - + Copy the OpenLP data files to the new location. Az OpenLP adatállományainak az új helyre való másolása. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>FIGYELMEZTETÉS:</strong> Az új mappa már tartalmaz OpenLP adatállományokat, melyek felül lesznek írva másoláskor. - + Data Directory Error Adatmappa hiba - + Select Data Directory Location - Adapmappa helyének kijelölése + Adatmappa helyének kijelölése - + Confirm Data Directory Change Adatmappa változásának megerősítése - + Reset Data Directory Adatmappa visszaállítása - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2459,47 +2481,98 @@ This location will be used after OpenLP is closed. Az OpenLP bezárása után jut érvényre a változás. - + Overwrite Existing Data Meglévő adatok felülírása + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + Az OpenLP adatmappa nem található + +%s + +Az OpenLP alapértelmezett mappája előzőleg meg lett változtatva. Ha ez az új hely egy cserélhető adathordozón volt, azt újra elérhetővé kell tenni. + +A „Nem” gomb megszakítja az OpenLP betöltését, lehetőséget adva a hiba javítására. + +Az „Igen” gomb helyreállítja az adatmappát az alapértelmezett helyre. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Valóban szeretnéd az OpenLP adatmappa helyét megváltoztatni erre a helyre? + +%s + +Az OpenLP bezárása után jut érvényre a változás. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + FIGYELMEZTETÉS + +A kijelölt + +%s + +mappa már tartalmaz OpenLP adatállományokat. Valóban szeretnéd felülírni ezeket a fájlokat az aktuális adatfájlokkal? + OpenLP.ExceptionDialog - + Error Occurred Hiba történt - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Hoppá! Az OpenLP hibába ütközött, és nem tudta lekezelni. Az alsó szövegdoboz olyan információkat tartalmaz, amelyek hasznosak lehetnek az OpenLP fejlesztői számára, tehát kérjük, küld el a bugs@openlp.org email címre egy részletes leírás mellett, amely tartalmazza, hogy éppen hol és mit tettél, amikor a hiba történt. - + Send E-Mail E-mail küldése - + Save to File Mentés fájlba - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Írd le mit tettél, ami a hibához vezetett (minimum 20 karakter) - + Attach File Fájl csatolása - + Description characters to enter : %s Leírás: %s @@ -2507,24 +2580,24 @@ Az OpenLP bezárása után jut érvényre a változás. OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Összeomlási jelentés mentése - + Text files (*.txt *.log *.text) Szöveg fájlok (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2555,7 +2628,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2590,17 +2663,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Fájl átnevezése - + New File Name: Új fájl neve: - + File Copy Fájl másolása @@ -2608,17 +2681,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Fordítás kijelölése - + Choose the translation you'd like to use in OpenLP. Válassz egy fordítást, amit használni szeretnél az OpenLP-ben. - + Translation: Fordítás: @@ -2626,192 +2699,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Dalok - + First Time Wizard Első indítás tündér - + Welcome to the First Time Wizard Üdvözlet az első indítás tündérben - + Activate required Plugins Igényelt bővítmények aktiválása - + Select the Plugins you wish to use. Jelöld ki az alkalmazni kívánt bővítményeket. - + Bible Biblia - + Images Képek - + Presentations Bemutatók - + Media (Audio and Video) Média (hang és videó) - + Allow remote access Távirányító - + Monitor Song Usage Dalstatisztika - + Allow Alerts Értesítések - + Default Settings Alapértelmezett beállítások - + Downloading %s... Letöltés %s… - + Download complete. Click the finish button to start OpenLP. Letöltés kész. Kattints a Befejezés gombra az OpenLP indításához. - + Enabling selected plugins... Kijelölt bővítmények engedélyezése… - + No Internet Connection Nincs internet kapcsolat - + Unable to detect an Internet connection. Nem sikerült internet kapcsolatot észlelni. - + Sample Songs Példa dalok - + Select and download public domain songs. Közkincs dalok kijelölése és letöltése. - + Sample Bibles Példa bibliák - + Select and download free Bibles. Szabad bibliák kijelölése és letöltése. - + Sample Themes Példa témák - + Select and download sample themes. Példa témák kijelölése és letöltése. - + Set up default settings to be used by OpenLP. Az OpenLP alapértelmezett beállításai. - + Default output display: Alapértelmezett kimeneti képernyő: - + Select default theme: Alapértelmezett téma kijelölése: - + Starting configuration process... Beállítási folyamat kezdése… - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. A tündér segít elkezdeni az OpenLP használatát. Kattints az alábbi Következő gombra az indításhoz. - + Setting Up And Downloading Beállítás és letöltés - + Please wait while OpenLP is set up and your data is downloaded. Várj, amíg az OpenLP beállítások érvényre jutnak és míg az adatok letöltődnek. - + Setting Up Beállítás - + Click the finish button to start OpenLP. Kattints a Befejezés gombra az OpenLP indításához. - + Download complete. Click the finish button to return to OpenLP. Letöltés kész. Kattints a Befejezés gombra az OpenLP-hez való visszatéréshez. - + Click the finish button to return to OpenLP. Kattints a Befejezés gombra az OpenLP-hez való visszatéréshez. - + Custom Slides Speciális diák - + Finish Befejezés - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2820,7 +2893,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che Az Első indítás tündér újbóli indításához és a példaadatok későbbi betöltéséhez ellenőrizd az internetkapcsolatot és futtasd újra ezt a tündért az OpenLP Eszközök > Első indítás tündér menüpontjával. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2832,37 +2905,37 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTagDialog - + Configure Formatting Tags Formázó címkék beállítása - + Edit Selection Kijelölés szerkesztése - + Save Mentés - + Description Leírás - + Tag Címke - + Start HTML Nyitó HTML - + End HTML Befejező HTML @@ -2870,32 +2943,32 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTagForm - + Update Error Frissítési hiba - + Tag "n" already defined. Az „n” címke már létezik. - + New Tag Új címke - + <HTML here> <HTML itt> - + </and here> </és itt> - + Tag %s already defined. A címke már létezik: %s. @@ -2903,82 +2976,82 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.FormattingTags - + Red Vörös - + Black Fekete - + Blue Kék - + Yellow Sárga - + Green Zöld - + Pink Rózsaszín - + Orange Narancs - + Purple Lila - + White Fehér - + Superscript Felső index - + Subscript Alsó index - + Paragraph Bekezdés - + Bold Félkövér - + Italics Dőlt - + Underline Aláhúzott - + Break Sortörés @@ -2986,122 +3059,122 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.GeneralTab - + General Általános - + Monitors Monitorok - + Select monitor for output display: Vetítési képernyő kijelölése: - + Display if a single screen Megjelenítés egy képernyő esetén - + Application Startup Alkalmazás indítása - + Show blank screen warning Figyelmeztetés megjelenítése az elsötétített képernyőről - + Automatically open the last service Utolsó sorrend automatikus megnyitása - + Show the splash screen Indítóképernyő megjelenítése - + Application Settings Alkalmazás beállítások - + Prompt to save before starting a new service Rákérdezés mentésre új sorrend létrehozása előtt - + Automatically preview next item in service Következő elem automatikus előnézete a sorrendben - + sec mp - + CCLI Details CCLI részletek - + SongSelect username: SongSelect felhasználói név: - + SongSelect password: SongSelect jelszó: - + X X - + Y Y - + Height Magasság - + Width Szélesség - + Check for updates to OpenLP Frissítés keresése az OpenLP-hez - + Unblank display when adding new live item Képernyő elsötétítésének visszavonása új elem élő adásba küldésekor - + Timed slide interval: Időzített dia intervalluma: - + Background Audio Háttérzene - + Start background audio paused Leállított háttérzene indítása @@ -3111,12 +3184,12 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M Sorrendben lévő diák határolása - + Override display position: Megjelenítési pozíció felülbírálása: - + Repeat track list Számok ismétlése @@ -3138,18 +3211,18 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M &Move to next/previous service item - &Ugorjon a következő/előző szolgálati elemre + &Ugorjon a következő/előző sorrendben lévő elemre OpenLP.LanguageManager - + Language Nyelv - + Please restart OpenLP to use your new language setting. A nyelvi beállítások az OpenLP újraindítása után lépnek érvénybe. @@ -3157,7 +3230,7 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.MainDisplay - + OpenLP Display OpenLP megjelenítés @@ -3165,287 +3238,287 @@ A tündér teljes leállításához (és az OpenLP bezárásához) kattints a M OpenLP.MainWindow - + &File &Fájl - + &Import &Importálás - + &Export &Exportálás - + &View &Nézet - + M&ode &Mód - + &Tools &Eszközök - + &Settings &Beállítások - + &Language &Nyelv - + &Help &Súgó - + Media Manager Médiakezelő - + Service Manager Sorrendkezelő - + Theme Manager Témakezelő - + &New &Új - + &Open Meg&nyitás - + Open an existing service. Meglévő sorrend megnyitása. - + &Save &Mentés - + Save the current service to disk. Aktuális sorrend mentése lemezre. - + Save &As... Mentés má&sként… - + Save Service As Sorrend mentése másként - + Save the current service under a new name. Az aktuális sorrend más néven való mentése. - + E&xit &Kilépés - + Quit OpenLP OpenLP bezárása - + &Theme &Téma - + &Configure OpenLP... OpenLP &beállítása… - + &Media Manager &Médiakezelő - + Toggle Media Manager Médiakezelő átváltása - + Toggle the visibility of the media manager. A médiakezelő láthatóságának átváltása. - + &Theme Manager &Témakezelő - + Toggle Theme Manager Témakezelő átváltása - + Toggle the visibility of the theme manager. A témakezelő láthatóságának átváltása. - + &Service Manager &Sorrendkezelő - + Toggle Service Manager Sorrendkezelő átváltása - + Toggle the visibility of the service manager. A sorrendkezelő láthatóságának átváltása. - + &Preview Panel &Előnézet panel - + Toggle Preview Panel Előnézet panel átváltása - + Toggle the visibility of the preview panel. Az előnézet panel láthatóságának átváltása. - + &Live Panel &Élő adás panel - + Toggle Live Panel Élő adás panel átváltása - + Toggle the visibility of the live panel. Az élő adás panel láthatóságának átváltása. - + &Plugin List &Bővítménylista - + List the Plugins Bővítmények listája - + &User Guide &Felhasználói kézikönyv - + &About &Névjegy - + More information about OpenLP További információ az OpenLP-ről - + &Online Help &Online súgó - + &Web Site &Weboldal - + Use the system language, if available. Rendszernyelv használata, ha elérhető. - + Set the interface language to %s A felhasználói felület nyelvének átváltása erre: %s - + Add &Tool... &Eszköz hozzáadása… - + Add an application to the list of tools. Egy alkalmazás hozzáadása az eszközök listához. - + &Default &Alapértelmezett - + Set the view mode back to the default. Nézetmód visszaállítása az alapértelmezettre. - + &Setup &Szerkesztés - + Set the view mode to Setup. Nézetmód váltása a Beállítás módra. - + &Live &Élő adás - + Set the view mode to Live. Nézetmód váltása a Élő módra. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3454,108 +3527,108 @@ You can download the latest version from http://openlp.org/. A legfrissebb verzió a http://openlp.org/ oldalról szerezhető be. - + OpenLP Version Updated OpenLP verziófrissítés - + OpenLP Main Display Blanked Elsötétített OpenLP fő képernyő - + The Main Display has been blanked out A fő képernyő el lett sötétítve - + Default Theme: %s Alapértelmezett téma: %s - + English Please add the name of your language here Magyar - + Configure &Shortcuts... &Gyorsbillentyűk beállítása… - + Close OpenLP OpenLP bezárása - + Are you sure you want to close OpenLP? Valóban bezárható az OpenLP? - + Open &Data Folder... &Adatmappa megnyitása… - + Open the folder where songs, bibles and other data resides. A dalokat, bibliákat és egyéb adatokat tartalmazó mappa megnyitása. - + &Autodetect &Automatikus felismerés - + Update Theme Images Témaképek frissítése - + Update the preview images for all themes. Összes téma előnézeti képének frissítése. - + Print the current service. Az aktuális sorrend nyomtatása. - + &Recent Files &Legutóbbi fájlok - + L&ock Panels Panelek &zárolása - + Prevent the panels being moved. Megakadályozza a panelek mozgatását. - + Re-run First Time Wizard Első indítás tündér - + Re-run the First Time Wizard, importing songs, Bibles and themes. Első indítás tündér újbóli futtatása dalok, bibliák, témák importálásához. - + Re-run First Time Wizard? Újra futtatható az Első indítás tündér? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3564,43 +3637,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and A tündér újbóli futtatása során megváltozhatnak az OpenLP aktuális beállításai, az alapértelmezett téma és új dalok adhatók hozzá a jelenlegi dallistákhoz. - + Clear List Clear List of recent files Lista törlése - + Clear the list of recent files. Törli a legutóbbi fájlok listáját. - + Configure &Formatting Tags... Formázó &címkék beállítása… - + Export OpenLP settings to a specified *.config file OpenLP beállításainak mentése egy meghatározott *.config fájlba - + Settings Beállítások - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Az OpenLP beállításainak betöltése egy előzőleg ezen vagy egy másik gépen exportált meghatározott *.config fájlból - + Import settings? Beállítások betöltése? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3613,59 +3686,86 @@ A beállítások betöltése tartós változásokat okoz a OpenLP jelenlegi beá Hibás beállítások betöltése rendellenes működést okozhat, vagy akár az OpenLP abnormális megszakadását is. - + Open File Fájl megnyitása - + OpenLP Export Settings Files (*.conf) OpenLP beállító export fájlok (*.conf) - + Import settings Importálási beállítások - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. Az OpenLP most leáll. Az importált beállítások az OpenLP következő indításakor lépnek érvénybe. - + Export Settings File Beállító export fájl - + OpenLP Export Settings File (*.conf) OpenLP beállító export fájlok (*.conf) - + New Data Directory Error Új adatmappa hiba + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + A kijelölt fájl nem tűnik érvényes OpenLP beállítás fájlnak. + +Ez a rész nem érvényes: [%s] + +A folyamat megszakítódik és a változások nem lesznek elmentve. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Az OpenLP adatok új helyre való másolása folyamatban - %s - Várj a folyamat befejeződéséig + + + + OpenLP Data directory copy failed + +%s + Az OpenLP adatmappa másolása nem sikerül + +%s + OpenLP.Manager - + Database Error Adatbázis hiba - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - A betöltés alatt álló adatbázis az OpenLP egy frisebb változatával készült. Az adatbázis verziószáma: %d, míg az OpenLP %d verziót vár el. Az adatbázis nem lesz betöltve. + A betöltés alatt álló adatbázis az OpenLP egy frissebb változatával készült. Az adatbázis verziószáma: %d, míg az OpenLP %d verziót vár el. Az adatbázis nem lesz betöltve. Adatbázis: %s - + OpenLP cannot load your database. Database: %s @@ -3677,74 +3777,74 @@ Adatbázis: %s OpenLP.MediaManagerItem - + No Items Selected Nincs kijelölt elem - + &Add to selected Service Item &Hozzáadás a kijelölt sorrend elemhez - + You must select one or more items to preview. Ki kell jelölni egy elemet az előnézethez. - + You must select one or more items to send live. Ki kell jelölni egy élő adásba küldendő elemet. - + You must select one or more items. Ki kell jelölni egy vagy több elemet. - + You must select an existing service item to add to. Ki kell jelölni egy sorrend elemet, amihez hozzá szeretné adni. - + Invalid Service Item Érvénytelen sorrend elem - + You must select a %s service item. Ki kell jelölni egy %s sorrend elemet. - + You must select one or more items to add. Ki kell jelölni egy vagy több elemet a hozzáadáshoz. - + No Search Results Nincs találat - + Invalid File Type Érvénytelen fájltípus - + Invalid File %s. Suffix not supported Érvénytelen fájl: %s. Az utótag nem támogatott - + &Clone &Klónozás - + Duplicate files were found on import and were ignored. Importálás közben duplikált fájl bukkant elő, figyelmet kívül lett hagyva. @@ -3752,12 +3852,12 @@ Az utótag nem támogatott OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. A <lyrics> címke hiányzik. - + <verse> tag is missing. A <verse> címke hiányzik. @@ -3765,42 +3865,42 @@ Az utótag nem támogatott OpenLP.PluginForm - + Plugin List Bővítménylista - + Plugin Details Bővítmény részletei - + Status: Állapot: - + Active Aktív - + Inactive Inaktív - + %s (Inactive) %s (inaktív) - + %s (Active) %s (aktív) - + %s (Disabled) %s (letiltott) @@ -3808,12 +3908,12 @@ Az utótag nem támogatott OpenLP.PrintServiceDialog - + Fit Page Oldal kitöltése - + Fit Width Szélesség kitöltése @@ -3821,77 +3921,77 @@ Az utótag nem támogatott OpenLP.PrintServiceForm - + Options Beállítások - + Copy Másolás - + Copy as HTML Másolás HTML-ként - + Zoom In Nagyítás - + Zoom Out Kicsinyítés - + Zoom Original Eredeti nagyítás - + Other Options További beállítások - + Include slide text if available Dia szövegének beillesztése, ha elérhető - + Include service item notes Sorrend elem megjegyzéseinek beillesztése - + Include play length of media items Sorrend elem lejátszási hosszának beillesztése - + Add page break before each text item Oldaltörés hozzáadása minden szöveges elem elé - + Service Sheet Szolgálati adatlap - + Print Nyomtatás - + Title: Cím: - + Custom Footer Text: Egyedi lábjegyzet szöveg: @@ -3899,12 +3999,12 @@ Az utótag nem támogatott OpenLP.ScreenList - + Screen Képernyő - + primary elsődleges @@ -3912,12 +4012,12 @@ Az utótag nem támogatott OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Kezdés</strong>: %s - + <strong>Length</strong>: %s <strong>Hossz</strong>: %s @@ -3925,7 +4025,7 @@ Az utótag nem támogatott OpenLP.ServiceItemEditForm - + Reorder Service Item Sorrend elemek újrarendezése @@ -3933,287 +4033,298 @@ Az utótag nem támogatott OpenLP.ServiceManager - + Move to &top Mozgatás &felülre - + Move item to the top of the service. Elem mozgatása a sorrend elejére. - + Move &up Mozgatás f&eljebb - + Move item up one position in the service. Elem mozgatása a sorrendben eggyel feljebb. - + Move &down Mozgatás &lejjebb - + Move item down one position in the service. Elem mozgatása a sorrendben eggyel lejjebb. - + Move to &bottom Mozgatás &alulra - + Move item to the end of the service. Elem mozgatása a sorrend végére. - + &Delete From Service &Törlés a sorrendből - + Delete the selected item from the service. Kijelölt elem törlése a sorrendből. - + &Add New Item Új elem &hozzáadása - + &Add to Selected Item &Hozzáadás a kijelölt elemhez - + &Edit Item &Elem szerkesztése - + &Reorder Item Elem újra&rendezése - + &Notes &Jegyzetek - + &Change Item Theme Elem témájának &módosítása - + OpenLP Service Files (*.osz) OpenLP sorrend fájlok (*.osz) - + File is not a valid service. The content encoding is not UTF-8. A fájl nem érvényes sorrend. A tartalom kódolása nem UTF-8. - + File is not a valid service. A fájl nem érvényes sorrend. - + Missing Display Handler Hiányzó képernyő kezelő - + Your item cannot be displayed as there is no handler to display it Az elemet nem lehet megjeleníteni, mert nincs kezelő, amely megjelenítené - + Your item cannot be displayed as the plugin required to display it is missing or inactive Az elemet nem lehet megjeleníteni, mert a bővítmény, amely kezelné, hiányzik vagy inaktív - + &Expand all Mind &kibontása - + Expand all the service items. Minden sorrend elem kibontása. - + &Collapse all Mind össze&csukása - + Collapse all the service items. Minden sorrend elem összecsukása. - + Open File Fájl megnyitása - + Moves the selection down the window. A kiválasztás lejjebb mozgatja az ablakot. - + Move up Mozgatás feljebb - + Moves the selection up the window. A kiválasztás feljebb mozgatja az ablakot. - + Go Live Élő adásba - + Send the selected item to Live. A kiválasztott elem élő adásba küldése. - + &Start Time &Kezdő időpont - + Show &Preview &Előnézet megjelenítése - + Modified Service Módosított sorrend - + The current service has been modified. Would you like to save this service? Az aktuális sorrend módosult. Szeretnéd elmenteni? - + Custom Service Notes: Egyedi szolgálati elem jegyzetek: - + Notes: Jegyzetek: - + Playing time: Lejátszási idő: - + Untitled Service Névtelen szolgálat - + File could not be opened because it is corrupt. A fájl nem nyitható meg, mivel sérült. - + Empty File Üres fájl - + This service file does not contain any data. A szolgálati sorrend fájl nem tartalmaz semmilyen adatot. - + Corrupt File Sérült fájl - + Load an existing service. Egy meglévő szolgálati sorrend betöltése. - + Save this service. Sorrend mentése. - + Select a theme for the service. Jelöljön ki egy témát a sorrendhez. - + This file is either corrupt or it is not an OpenLP 2.0 service file. A fájl vagy sérült vagy nem egy OpenLP 2.0 szolgálati sorrend fájl. - - Service File Missing - Hiányzó sorrend fájl - - - + Slide theme Dia téma - + Notes Jegyzetek - + Edit Szerkesztés - + Service copy only A sorrend csak másolható - + Error Saving File Állománymentési hiba - + There was an error saving your file. Hiba történt az állomány mentésekor. + + + Service File(s) Missing + Hiányzó sorrend fájl + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + A következő fájlok hiányoznak a sorrendből: +<byte value="x9"/>%s + +Ezen fájlok el lesznek távolítva, ha folytatódik a mentés. + OpenLP.ServiceNoteForm - + Service Item Notes Sorrend elem jegyzet @@ -4221,7 +4332,7 @@ A tartalom kódolása nem UTF-8. OpenLP.SettingsForm - + Configure OpenLP OpenLP beállítása @@ -4229,67 +4340,67 @@ A tartalom kódolása nem UTF-8. OpenLP.ShortcutListDialog - + Action Parancs - + Shortcut Gyorsbillentyű - + Duplicate Shortcut Azonos gyorsbillentyű - + The shortcut "%s" is already assigned to another action, please use a different shortcut. A „%s” gyorsbillentyű már foglalt. - + Alternate Alternatív - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Jelölj ki egy parancsot és kattints egyenként az egyik alul található gombra az elsődleges vagy alternatív gyorsbillentyű elfogásához. - + Default Alapértelmezett - + Custom Egyéni - + Capture shortcut. Gyorsbillentyű elfogása. - + Restore the default shortcut of this action. Az eredeti gyorsbillentyű visszaállítása. - + Restore Default Shortcuts Alapértelmezett gyorsbillentyűk visszaállítása - + Do you want to restore all shortcuts to their defaults? Valóban minden gyorsbillentyű visszaállítandó az alapértelmezettjére? - + Configure Shortcuts Gyorsbillentyűk beállítása @@ -4297,172 +4408,172 @@ A tartalom kódolása nem UTF-8. OpenLP.SlideController - + Hide Elrejtés - + Go To Ugrás - + Blank Screen Képernyő elsötétítése - + Blank to Theme Elsötétítés a témára - + Show Desktop Asztal megjelenítése - + Previous Service Előző sorrend - + Next Service Következő sorrend - + Escape Item Kilépés az elemből - + Move to previous. Mozgatás az előzőre. - + Move to next. Mozgatás a következőre. - + Play Slides Diák vetítése - + Delay between slides in seconds. Diák közötti késleltetés másodpercben. - + Move to live. Élő adásba küldés. - + Add to Service. Hozzáadás a sorrendhez. - + Edit and reload song preview. Szerkesztés és az dal előnézetének újraolvasása. - + Start playing media. Médialejátszás indítása. - + Pause audio. Hang szüneteltetése. - + Pause playing media. Médialejátszás leállítása. - + Stop playing media. Médialejátszás szüneteltetése. - + Video position. Videó pozíció. - + Audio Volume. Hangerő. - + Go to "Verse" Ugrás a „versszakra” - + Go to "Chorus" Ugrás a „refrénre” - + Go to "Bridge" Ugrás a „hídra” - + Go to "Pre-Chorus" Ugrás az „előrefrénre” - + Go to "Intro" Ugrás a „bevezetésre” - + Go to "Ending" Ugrás a „lezárásra” - + Go to "Other" Ugrás a „másra” - + Previous Slide Előző dia - + Next Slide Következő dia - + Pause Audio Hang szüneteltetése - + Background Audio Háttérzene - + Go to next audio track. Ugrás a következő számra. - + Tracks Számok @@ -4470,17 +4581,17 @@ A tartalom kódolása nem UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Helyesírási javaslatok - + Formatting Tags Formázó címkék - + Language: Nyelv: @@ -4488,615 +4599,627 @@ A tartalom kódolása nem UTF-8. OpenLP.StartTimeForm - + Hours: Óra: - + Minutes: Perc: - + Seconds: Másodperc: - + Item Start and Finish Time Elem kezdő és befejező idő - + Start Kezdés - + Finish Befejezés - + Length Hosszúság - + Time Validation Error Idő érvényességi hiba - + Finish time is set after the end of the media item A médiaelem befejező időpontja későbbre van állítva van, mint a hossza - + Start time is after the finish time of the media item A médiaelem kezdő időpontja későbbre van állítva, mint a befejezése - + Theme Layout Téma elrendezése - + The blue box shows the main area. Kék keret jelzi a fő tartalmat. - + The red box shows the footer. Vörös keret jelzi a láblécet. - - OpenLP.ThemeForm - - - Select Image - Kép kijelölése - - - - Theme Name Missing - Téma neve nincs megadva - - - - There is no name for this theme. Please enter one. - A témának nincs neve, meg kell adni. - - - - Theme Name Invalid - Érvénytelen téma név - - - - Invalid theme name. Please enter one. - A téma neve érvénytelen, érvényeset kell megadni. - - - - (approximately %d lines per slide) - (körülbelül %d sor diánként) - - OpenLP.ThemeManager - + Create a new theme. Új téma létrehozása. - + Edit Theme Téma szerkesztése - + Edit a theme. Egy téma szerkesztése. - + Delete Theme Téma törlése - + Delete a theme. Egy téma törlése. - + Import Theme Téma importálása - + Import a theme. Egy téma importálása. - + Export Theme Téma exportálása - + Export a theme. Egy téma exportálása. - + &Edit Theme Téma sz&erkesztése - + &Delete Theme Téma &törlése - + Set As &Global Default Beállítás &globális alapértelmezetté - + %s (default) %s (alapértelmezett) - + You must select a theme to edit. Ki kell jelölni egy témát a szerkesztéshez. - + You are unable to delete the default theme. Az alapértelmezett témát nem lehet törölni. - + Theme %s is used in the %s plugin. A(z) %s témát a(z) %s bővítmény használja. - + You have not selected a theme. Nincs kijelölve egy téma sem. - + Save Theme - (%s) Téma mentése – (%s) - + Theme Exported Téma exportálva - + Your theme has been successfully exported. A téma sikeresen exportálásra került. - + Theme Export Failed A téma exportálása nem sikerült - + Your theme could not be exported due to an error. A témát nem sikerült exportálni egy hiba miatt. - + Select Theme Import File Importálandó téma fájl kijelölése - + File is not a valid theme. Nem érvényes témafájl. - + &Copy Theme Téma &másolása - + &Rename Theme Téma át&nevezése - + &Export Theme Téma e&xportálása - + You must select a theme to rename. Ki kell jelölni egy témát az átnevezéséhez. - + Rename Confirmation Átnevezési megerősítés - + Rename %s theme? A téma átnevezhető: %s? - + You must select a theme to delete. Ki kell jelölni egy témát a törléshez. - + Delete Confirmation Törlés megerősítése - + Delete %s theme? Törölhető ez a téma: %s? - + Validation Error Érvényességi hiba - + A theme with this name already exists. Ilyen fájlnéven már létezik egy téma. - + OpenLP Themes (*.theme *.otz) OpenLP témák (*.theme *.otz) - + Copy of %s Copy of <theme name> %s másolata - + Theme Already Exists A téma már létezik + + + Theme %s already exists. Do you want to replace it? + Ez a téma már létezik: %s. Szeretnéd felülírni? + OpenLP.ThemeWizard - + Theme Wizard Téma tündér - + Welcome to the Theme Wizard Üdvözlet a téma tündérben - + Set Up Background Háttér beállítása - + Set up your theme's background according to the parameters below. A téma háttere az alábbi paraméterekkel állítható be. - + Background type: Háttér típusa: - + Solid Color Homogén szín - + Gradient Színátmenet - + Color: Szín: - + Gradient: Színátmenet: - + Horizontal Vízszintes - + Vertical Függőleges - + Circular Körkörös - + Top Left - Bottom Right Bal felső sarokból jobb alsó sarokba - + Bottom Left - Top Right Bal alsó sarokból jobb felső sarokba - + Main Area Font Details Fő tartalom betűkészlet jellemzői - + Define the font and display characteristics for the Display text A fő szöveg betűkészlete és megjelenési tulajdonságai - + Font: Betűkészlet: - + Size: Méret: - + Line Spacing: Sorköz: - + &Outline: &Körvonal: - + &Shadow: &Árnyék: - + Bold Félkövér - + Italic Dőlt - + Footer Area Font Details Lábléc betűkészlet jellemzői - + Define the font and display characteristics for the Footer text A lábléc szöveg betűkészlete és megjelenési tulajdonságai - + Text Formatting Details Szövegformázás jellemzői - + Allows additional display formatting information to be defined További megjelenési formázások - + Horizontal Align: Vízszintes igazítás: - + Left Balra zárt - + Right Jobbra zárt - + Center Középre igazított - + Output Area Locations Pozíciók - + Allows you to change and move the main and footer areas. A fő szöveg és a lábléc helyzetének mozgatása. - + &Main Area &Fő szöveg - + &Use default location &Alapértelmezett helyen - + X position: X pozíció: - + px px - + Y position: Y pozíció: - + Width: Szélesség: - + Height: Magasság: - + Use default location Alapértelmezett helyen - + Theme name: Téma neve: - + Edit Theme - %s Téma szerkesztése – %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. A tündér segít témákat létrehozni és módosítani. Kattints az alábbi Következő gombra a folyamat első lépésének indításhoz, a háttér beállításához. - + Transitions: Átmenetek: - + &Footer Area &Lábléc - + Starting color: Kezdő szín: - + Ending color: Befejező szín: - + Background color: Háttérszín: - + Justify Sorkizárt - + Layout Preview Elrendezés előnézete - + Transparent Átlátszó - + Preview and Save Előnézet és mentés - + Preview the theme and save it. Téma előnézete és mentése. + + + (approximately %d lines per slide) + (kb. %d sor diánként) + + + + Background Image Empty + Háttérkép üres + + + + You have not selected a background image. Please select one before continuing. + Nincs kijelölt háttérkép. Adj meg egyet a folytatás előtt. + + + + Select Image + Kép kijelölése + + + + Theme Name Missing + Téma neve nincs megadva + + + + There is no name for this theme. Please enter one. + A témának nincs neve, meg kell adni. + + + + Theme Name Invalid + Érvénytelen téma név + + + + Invalid theme name. Please enter one. + A téma neve érvénytelen, érvényeset kell megadni. + OpenLP.ThemesTab - + Global Theme Globális téma - + Theme Level Téma szint - + S&ong Level Dal &szint - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Minden dalra az adatbázisban tárolt téma alkalmazása. Ha egy dalhoz nincs saját téma beállítva, akkor a szolgálati sorrendhez beállított alkalmazása. Ha a sorrendhez sincs téma beállítva, akkor a globális téma alkalmazása. - + &Service Level Szolgálati sorrend &szint - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. A szolgálati sorrendhez beállított téma alkalmazása, vagyis az egyes dalokhoz megadott témák felülírása. Ha a szolgálati sorrendhez nincs téma beállítva, akkor a globális téma alkalmazása. - + &Global Level &Globális szint - + Use the global theme, overriding any themes associated with either the service or the songs. A globális téma alkalmazása, vagyis a szolgálati sorrendhez, ill. a dalokhoz beállított témák felülírása. - + Themes Témák @@ -5104,315 +5227,315 @@ A tartalom kódolása nem UTF-8. OpenLP.Ui - + Error Hiba - + About Névjegy - + &Add &Hozzáadás - + Advanced Haladó - + All Files Minden fájl - + Bottom Alulra - + Browse... Tallózás… - + Cancel Mégsem - + CCLI number: CCLI szám: - + Create a new service. Új szolgálati sorrend létrehozása. - + &Delete &Törlés - + &Edit &Szerkesztés - + Empty Field Üres mező - + Export Exportálás - + pt Abbreviated font pointsize unit pt - + Image Kép - + Import Importálás - + Live Élő adás - + Live Background Error Élő háttér hiba - + Load Betöltés - + Middle Középre - + New Új - + New Service Új sorrend - + New Theme Új téma - + No File Selected Singular Nincs kijelölt fájl - + No Files Selected Plural Nincsenek kijelölt fájlok - + No Item Selected Singular Nincs kijelölt elem - + No Items Selected Plural Nincsenek kijelölt elemek - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Előnézet - + Replace Background Háttér cseréje - + Reset Background Háttér visszaállítása - + s The abbreviated unit for seconds mp - + Save && Preview Mentés és előnézet - + Search Keresés - + You must select an item to delete. Ki kell jelölni egy törlendő elemet. - + You must select an item to edit. Ki kell jelölni egy szerkesztendő elemet. - + Save Service Sorrend mentése - + Service Sorrendbe - + Start %s Kezdés %s - + Theme Singular Téma - + Themes Plural Témák - + Top Felülre - + Version Verzió - + Delete the selected item. Kiválasztott elem törlése. - + Move selection up one position. Kiválasztás eggyel feljebb helyezése. - + Move selection down one position. Kiválasztás eggyel lejjebb helyezése. - + &Vertical Align: &Függőleges igazítás: - + Finished import. Az importálás befejeződött. - + Format: Formátum: - + Importing Importálás - + Importing "%s"... Importálás „%s”… - + Select Import Source Jelölj ki az importálandó forrást - + Select the import format and the location to import from. Jelöld ki az importálás formátumát és az importálás helyét. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Az openlp.org 1.x importáló le lett tiltva egy hiányzó Python modul miatt. Ha szeretnéd használni ezt az importálót, telepíteni kell a „python-sqlite” modult. - + Open %s File %s fájl megnyitása - + %p% %p% - + Ready. Kész. - + Starting import... Importálás indítása… - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Meg kell adni legalább egy %s fájlt az importáláshoz. @@ -5423,299 +5546,304 @@ A tartalom kódolása nem UTF-8. Üdvözlet a bibliaimportáló tündérben - + Welcome to the Song Export Wizard Üdvözlet a dalexportáló tündérben - + Welcome to the Song Import Wizard Üdvözlet a dalimportáló tündérben - + Author Singular Szerző - + Authors Plural Szerzők - - © + + © Copyright symbol. © - + Song Book Singular Énekeskönyv - + Song Books Plural Énekeskönyvek - + Song Maintenance Dalok kezelése - + Topic Singular Témakör - + Topics Plural Témakörök - + Continuous Folytonos - + Default Alapértelmezett - + Display style: Megjelenítési stílus: - + Duplicate Error Duplikátum hiba - + File Fájl - + Help Súgó - + h The abbreviated unit for hours ó - + Layout style: Elrendezés: - + Live Toolbar Élő eszköztár - + m The abbreviated unit for minutes p - + OpenLP is already running. Do you wish to continue? Az OpenLP mér fut. Folytatható? - + Settings Beállítások - + Tools Eszközök - + Unsupported File Nem támogatott fájl - + Verse Per Slide Egy vers diánként - + Verse Per Line Egy vers soronként - + View Nézet - + Title and/or verses not found A cím és/vagy a versszak nem található - + XML syntax error XML szintaktikai hiba - + View Mode Nézetmód - + Open service. Sorrend megnyitása. - + Print Service Szolgálati sorrend nyomtatása - + Replace live background. Élő adás hátterének cseréje. - + Reset live background. Élő adás hátterének visszaállítása. - + Split a slide into two only if it does not fit on the screen as one slide. Diák kettéválasztása csak akkor, ha nem fér ki a képernyőn egy diaként. - + Welcome to the Bible Upgrade Wizard Üdvözlet a bibliafrissítő tündérben - + Confirm Delete Törlés megerősítése - + Play Slides in Loop Ismétlődő diavetítés - + Play Slides to End Diavetítés a végéig - + Stop Play Slides in Loop Ismétlődő vetítés megállítása - + Stop Play Slides to End Vetítés megállítása - + Next Track Következő szám - + Search Themes... Search bar place holder text Témák keresése... - + Optional &Split &Feltételes törés - + Invalid Folder Selected Singular Érvénytelen kijelölt mappa - + Invalid File Selected Singular Érvénytelen kijelölt állomány - + Invalid Files Selected Plural Érvénytelen kijelölt állományok - + No Folder Selected Singular Nincs kijelölt mappa - + Open %s Folder %s mappa megnyitása - + You need to specify one %s file to import from. A file type e.g. OpenSong Meg kell adni egy %s fájlt az importáláshoz. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Meg kell adni egy %s mappát az importáláshoz. + + + Importing Songs + Dalok importálása + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 és %2 - + %1, and %2 Locale list separator: end %1, és %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5724,50 +5852,50 @@ A tartalom kódolása nem UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Bemutató bővítmény</strong><br />A bemutató bővítmény különböző külső programok segítségével bemutatók megjelenítését teszi lehetővé. A prezentációs programok egy listából választhatók ki. - + Presentation name singular Bemutató - + Presentations name plural Bemutatók - + Presentations container title Bemutatók - + Load a new presentation. Új bemutató betöltése. - + Delete the selected presentation. A kijelölt bemutató törlése. - + Preview the selected presentation. A kijelölt bemutató előnézete. - + Send the selected presentation live. A kijelölt bemutató élő adásba küldése. - + Add the selected presentation to the service. A kijelölt bemutató hozzáadása a sorrendhez. @@ -5775,52 +5903,52 @@ A tartalom kódolása nem UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Bemutatók kijelölése - + Automatic Automatikus - + Present using: Bemutató ezzel: - + File Exists A fájl létezik - + A presentation with that filename already exists. Ilyen fájlnéven már létezik egy bemutató. - + This type of presentation is not supported. Ez a bemutató típus nem támogatott. - + Presentations (%s) Bemutatók (%s) - + Missing Presentation Hiányzó bemutató - + The presentation %s is incomplete, please reload. A bemutató hiányos, újra kell tölteni: %s. - + The presentation %s no longer exists. A bemutató már nem létezik: %s. @@ -5828,17 +5956,17 @@ A tartalom kódolása nem UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Elérhető vezérlők - + %s (unavailable) %s (elérhetetlen) - + Allow presentation application to be overridden A bemutató program felülírásának engedélyezése @@ -5846,24 +5974,24 @@ A tartalom kódolása nem UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Távirányító bővítmény</strong><br />A távirányító bővítmény egy böngésző vagy egy távoli API segítségével lehetővé teszi egy másik számítógépen futó OpenLP számára való üzenetküldést. - + Remote name singular Távirányító - + Remotes name plural Távirányítók - + Remote container title Távirányító @@ -5872,236 +6000,246 @@ A tartalom kódolása nem UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 távirányító - + OpenLP 2.0 Stage View OpenLP 2.0 színpadi nézet - + Service Manager Sorrendkezelő - + Slide Controller Diakezelő - + Alerts Értesítések - + Search Keresés - + Refresh Frissítés - + Blank Elsötétítés - + Show Vetítés - + Prev Előző - + Next Következő - + Text Szöveg - + Show Alert Értesítés megjelenítése - + Go Live Élő adásba - + No Results Nincs találat - + Options Beállítások - + Add to Service Hozzáadás a sorrendhez - + Home Kezdőlap - + Theme Téma - + Desktop Asztal - + Add &amp; Go to Service Hozzáadás és ugrás a sorrendre + + + Service + Sorrend + + + + Slides + Diák + RemotePlugin.RemoteTab - + Serve on IP address: Szolgáltatás IP címe: - + Port number: Port száma: - + Server Settings Szerver beállítások - + Remote URL: Távirányító URL: - + Stage view URL: Színpadi nézet URL: - + Display stage time in 12h format Időkijelzés a színpadi nézeten 12 órás formában - + Android App Android alkalmazás - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Szkenneld be a QR kódot vagy kattints az Android alkalmazás <a href="https://market.android.com/details?id=org.openlp.android">letöltéséhez</a> az alkalmazásboltból. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Szkenneld be a QR kódot vagy kattints az Android alkalmazás <a href="https://play.google.com/store/apps/details?id=org.openlp.android">letöltéséhez</a> a Google Play-ből. SongUsagePlugin - + &Song Usage Tracking &Dalstatisztika rögzítése - + &Delete Tracking Data Rögzített adatok &törlése - + Delete song usage data up to a specified date. Dalstatisztika adatok törlése egy meghatározott dátumig. - + &Extract Tracking Data Rögzített adatok &kicsomagolása - + Generate a report on song usage. Dalstatisztika jelentés összeállítása. - + Toggle Tracking Rögzítés - + Toggle the tracking of song usage. Dalstatisztika rögzítésének átváltása. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Dalstatisztika bővítmény</strong><br />Ez a bővítmény rögzíti, hogy a dalok mikor lettek vetítve egy élő szolgálat vagy istentisztelet során. - + SongUsage name singular Dalstatisztika - + SongUsage name plural Dalstatisztika - + SongUsage container title Dalstatisztika - + Song Usage Dalstatisztika - + Song usage tracking is active. A dalstatisztika rögzítésre kerül. - + Song usage tracking is inactive. A dalstatisztika nincs rögzítés alatt. - + display megjelenítés - + printed nyomtatás @@ -6109,32 +6247,32 @@ A tartalom kódolása nem UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Dalstatisztika adatok törlése - + Delete Selected Song Usage Events? Valóban törölhetők a kijelölt dalstatisztika események? - + Are you sure you want to delete selected Song Usage data? Valóban törölhetők a kijelölt dalstatisztika adatok? - + Deletion Successful Sikeres törlés - + All requested data has been deleted successfully. Minden kért adat sikeresen törlésre került. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Ki kell választani egy dátumot, amely előtt a statisztika adatok törlése kerülnek. Minden ezelőtt rögzített adat véglegesen törlődni fog. @@ -6142,42 +6280,42 @@ A tartalom kódolása nem UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Dalstatisztika kicsomagolása - + Select Date Range Időintervallum kijelölése - + to - + Report Location Helyszín jelentése - + Output File Location Kimeneti fájl elérési útvonala - + usage_detail_%s_%s.txt Dalstatisztika_%s%s.txt - + Report Creation Riport készítése - + Report %s has been successfully created. @@ -6185,125 +6323,125 @@ has been successfully created. %s. - + Output Path Not Selected Kimeneti útvonal nincs kijelölve - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - Egy nem létező útvonalat adtál meg a dalstatisztika riporthoz. Jelölj ki egy érvényes űtvonalat a számítógépen. + Egy nem létező útvonalat adtál meg a dalstatisztika riporthoz. Jelölj ki egy érvényes útvonalat a számítógépen. SongsPlugin - + &Song &Dal - + Import songs using the import wizard. Dalok importálása az importálás tündérrel. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Dal bővítmény</strong><br />A dal bővítmény dalok megjelenítését és kezelését teszi lehetővé. - + &Re-index Songs Dalok újra&indexelése - + Re-index the songs database to improve searching and ordering. Dal adatbázis újraindexelése a keresés és a rendezés javításához. - + Reindexing songs... Dalok indexelése folyamatban… - + Arabic (CP-1256) Arab (CP-1256) - + Baltic (CP-1257) Balti (CP-1257) - + Central European (CP-1250) Közép-európai (CP-1250) - + Cyrillic (CP-1251) Cirill (CP-1251) - + Greek (CP-1253) Görög (CP-1253) - + Hebrew (CP-1255) Héber (CP-1255) - + Japanese (CP-932) Japán (CP-932) - + Korean (CP-949) Koreai (CP-949) - + Simplified Chinese (CP-936) Egyszerűsített kínai (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Hagyományos kínai (CP-950) - + Turkish (CP-1254) Török (CP-1254) - + Vietnam (CP-1258) Vietnami (CP-1258) - + Western European (CP-1252) Nyugat-európai (CP-1252) - + Character Encoding Karakterkódolás - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6312,100 +6450,105 @@ a karakterek helyes megjelenítéséért. Általában az előre beállított érték megfelelő. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Válaszd ki a karakterkódolást. A kódlap felelős a karakterek helyes megjelenítéséért. - + Song name singular Dal - + Songs name plural Dalok - + Songs container title Dalok - + Exports songs using the export wizard. Dalok exportálása a dalexportáló tündérrel. - + Add a new song. Új dal hozzáadása. - + Edit the selected song. A kijelölt dal szerkesztése. - + Delete the selected song. A kijelölt dal törlése. - + Preview the selected song. A kijelölt dal előnézete. - + Send the selected song live. A kijelölt dal élő adásba küldése. - + Add the selected song to the service. A kijelölt dal hozzáadása a sorrendhez. + + + Reindexing songs + Dalok újraindexelése + SongsPlugin.AuthorsForm - + Author Maintenance Szerzők kezelése - + Display name: Megjelenített név: - + First name: Keresztnév: - + Last name: Vezetéknév: - + You need to type in the first name of the author. Meg kell adni a szerző vezetéknevét. - + You need to type in the last name of the author. Meg kell adni a szerző keresztnevét. - + You have not set a display name for the author, combine the first and last names? Nincs megadva a szerző megjelenített neve, legyen előállítva a vezeték és keresztnevéből? @@ -6413,7 +6556,7 @@ A kódlap felelős a karakterek helyes megjelenítéséért. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. A fájlnév nem tartalmaz valós kiterjesztést. @@ -6421,12 +6564,12 @@ A kódlap felelős a karakterek helyes megjelenítéséért. SongsPlugin.EasyWorshipSongImport - + Administered by %s Adminisztrálta: %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6438,12 +6581,12 @@ EasyWorshipből kerültek importálásra] SongsPlugin.EditBibleForm - + Meta Data Metaadat - + Custom Book Names Egyedi könyvnevek @@ -6451,207 +6594,202 @@ EasyWorshipből kerültek importálásra] SongsPlugin.EditSongForm - + Song Editor Dalszerkesztő - + &Title: &Cím: - + Alt&ernate title: &Alternatív cím: - + &Lyrics: &Dalszöveg: - + &Verse order: Versszak &sorrend: - + Ed&it All &Összes szerkesztése - + Title && Lyrics Cím és szöveg - + &Add to Song &Hozzáadás - + &Remove &Eltávolítás - + &Manage Authors, Topics, Song Books Szerző, témakör, könyv &kezelése - + A&dd to Song H&ozzáadás - + R&emove &Eltávolítás - + Book: Könyv: - + Number: Szám: - + Authors, Topics && Song Book Szerző, témakör és könyv - + New &Theme Új &téma - + Copyright Information Szerzői jogi információ - + Comments Megjegyzések - + Theme, Copyright Info && Comments Téma, © és megjegyzés - + Add Author Szerző hozzáadása - + This author does not exist, do you want to add them? Ez a szerző még nem létezik, valóban hozzá kívánja adni? - + This author is already in the list. A szerző már benne van a listában. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Nincs kijelölve egyetlen szerző sem. Vagy válassz egy szerzőt a listából, vagy írj az új szerző mezőbe és kattints a Hozzáadás gombra a szerző megjelöléséhez. - + Add Topic Témakör hozzáadása - + This topic does not exist, do you want to add it? Ez a témakör még nem létezik, szeretnéd hozzáadni? - + This topic is already in the list. A témakör már benne van a listában. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Nincs kijelölve egyetlen témakör sem. Vagy válassz egy témakört a listából, vagy írj az új témakör mezőbe és kattints a Hozzáadás gombra a témakör megjelöléséhez. - + You need to type in a song title. Add meg a dal címét. - + You need to type in at least one verse. Legalább egy versszakot meg kell adnod. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. A versszaksorrend hibás. Nincs ilyen versszak: %s. Az érvényes elemek ezek: %s. - + Add Book Könyv hozzáadása - + This song book does not exist, do you want to add it? Ez az énekeskönyv még nem létezik, szeretnéd hozzáadni a listához? - + You need to have an author for this song. Egy szerzőt meg kell adnod ehhez a dalhoz. - - You need to type some text in to the verse. - Meg kell adnod a versszak szövegét. - - - + Linked Audio Fájl - + Add &File(s) Fájl &hozzáadása - + Add &Media &Médiafájl hozzáadása - + Remove &All Fájlok &eltávolítása - + Open File(s) Fájlok megnyitása - + <strong>Warning:</strong> Not all of the verses are in use. - <strong>Figyelmeztetés:</strong> Nincs minden verszak alkalmazva. + <strong>Figyelmeztetés:</strong> Nincs minden versszak alkalmazva. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. A versszaksorrend hibás. Nincsenek ilyen versszakok: %s. Az érvényes elemek ezek: %s. @@ -6659,22 +6797,22 @@ EasyWorshipből kerültek importálásra] SongsPlugin.EditVerseForm - + Edit Verse Versszak szerkesztése - + &Verse type: Versszak &típusa: - + &Insert &Beszúrás - + Split a slide into two by inserting a verse splitter. Dia kettéválasztása versszakelválasztó beszúrásával. @@ -6682,82 +6820,82 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ExportWizardForm - + Song Export Wizard Dalexportáló tündér - + Select Songs Dalok kijelölése - + Check the songs you want to export. Jelöld ki az exportálandó dalokat. - + Uncheck All Minden kijelölés eltávolítása - + Check All Mindent kijelöl - + Select Directory Mappa kijelölése - + Directory: Mappa: - + Exporting Exportálás - + Please wait while your songs are exported. Várj, míg a dalok exportálódnak. - + You need to add at least one Song to export. Ki kell jelölni legalább egy dalt az exportáláshoz. - + No Save Location specified Nincs megadva a mentési hely - + Starting export... Exportálás indítása… - + You need to specify a directory. Egy mappát kell megadni. - + Select Destination Folder Célmappa kijelölése - + Select the directory where you want the songs to be saved. Jelöld ki a mappát, ahová a dalok mentésre kerülnek. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. A tündér segít a dalok szabad és ingyenes <strong>OpenLyrics</strong> formátumba való exportálásában. @@ -6765,172 +6903,172 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Jelölj ki egy dokumentum vagy egy bemutató fájlokat - + Song Import Wizard Dalimportáló tündér - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. A tündér segít a különféle formátumú dalok importálásában. Kattints az alábbi Következő gombra a folyamat első lépésének indításhoz, a formátum kiválasztásához. - + Generic Document/Presentation Általános dokumentum vagy bemutató - + Add Files... Fájlok hozzáadása… - + Remove File(s) Fájlok törlése - + Please wait while your songs are imported. Kérlek, várj, míg a dalok importálás alatt állnak. - + OpenLP 2.0 Databases OpenLP 2.0 adatbázisok - + openlp.org v1.x Databases openlp.org v1.x adatbázisok - + Words Of Worship Song Files Words of Worship dal fájlok - + Songs Of Fellowship Song Files Songs Of Fellowship dal fájlok - + SongBeamer Files SongBeamer fájlok - + SongShow Plus Song Files SongShow Plus dal fájlok - + Foilpresenter Song Files Foilpresenter dal fájlok - + Copy Másolás - + Save to File Mentés fájlba - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A Songs of Fellowship importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Az általános dokumentum, ill. bemutató importáló le lett tiltva, mivel az OpenLP nem talál OpenOffice-t vagy LibreOffice-t a számítógépen. - + OpenLyrics or OpenLP 2.0 Exported Song - OpenLyrics vagy OpenLP 2.0 epoxrtált dal + OpenLyrics vagy OpenLP 2.0 exportált dal - + OpenLyrics Files OpenLyrics fájlok - + CCLI SongSelect Files CCLI SongSelect fájlok - + EasySlides XML File EasySlides XML fájl - + EasyWorship Song Database EasyWorship dal adatbázis - + DreamBeam Song Files DreamBeam dal fájlok - + You need to specify a valid PowerSong 1.0 database folder. - Meg kell adni egy érvényes PowerSong 1.0 adatvázis mappát. + Meg kell adni egy érvényes PowerSong 1.0 adatbázis mappát. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Előbb CSV szövegfájllá kell konvertálni a ZionWorx adatbázist a <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Felhasználói kézikönyv</a> útmutatása szerint. - + SundayPlus Song Files SundayPlus dal fájlok - + This importer has been disabled. Ez az importáló le lett tiltva. - + MediaShout Database MediaShout adatbázis - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A MediaShout importáló csak Windows alatt támogatott. A hiányzó Python modul miatt le lett tiltva. Alkalmazásához telepíteni kell a "pyodbc" modult. - + SongPro Text Files SongPro szövegfájlok - + SongPro (Export File) SongPro (export fájl) - + In SongPro, export your songs using the File -> Export menu SongPro-ban a Fájl -> Exportálás menüpontban lehet exportálni a dalokat @@ -6938,12 +7076,12 @@ EasyWorshipből kerültek importálásra] SongsPlugin.MediaFilesForm - + Select Media File(s) Médiafájlok kijelölése - + Select one or more audio files from the list below, and click OK to import them into this song. Jelölj ki egy vagy több hangfájlt az alábbi listából és kattints az OK gombra a dalba való importálásukhoz. @@ -6951,63 +7089,65 @@ EasyWorshipből kerültek importálásra] SongsPlugin.MediaItem - + Titles Címek - + Lyrics Dalszöveg - + CCLI License: CCLI licenc: - + Entire Song Teljes dal - + Are you sure you want to delete the %n selected song(s)? - Valóban törölhető a kijelöl %n dal?Valóban törölhető a kijelöl %n dal? + + Valóban törölhető a kijelöl %n dal? + - + Maintain the lists of authors, topics and books. Szerzők, témakörök, könyvek listájának kezelése. - + copy For song cloning másolás - + Search Titles... Címek keresése... - + Search Entire Song... Teljes dal keresése... - + Search Lyrics... Dalszöveg keresése... - + Search Authors... Szerzők keresése... - + Search Song Books... Énekeskönyvek keresése... @@ -7015,7 +7155,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Nem sikerült megnyitni a MediaShout adatbázist. @@ -7023,7 +7163,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Ez nem egy openlp.org 1.x daladatbázis. @@ -7031,7 +7171,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Ez nem egy OpenLP 2.0 daladatbázis. @@ -7039,7 +7179,7 @@ EasyWorshipből kerültek importálásra] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportálás „%s”… @@ -7047,35 +7187,55 @@ EasyWorshipből kerültek importálásra] SongsPlugin.PowerSongImport - + No songs to import. Nincsenek importálható dalok. - + Verses not found. Missing "PART" header. Versszakok nem találhatók. Hiányzik a „PART” fejléc. + + + No %s files found. + A fájlok nem találhatók %s. + + + + Invalid %s file. Unexpected byte value. + Érvénytelen fájl: %s. Nem várt bájt érték. + + + + Invalid %s file. Missing "TITLE" header. + Érvénytelen fájl: %s. Hiányzó „TITLE” fejléc. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Érvénytelen fájl: %s. Hiányzó „COPYRIGHTLINE” fejléc. + SongsPlugin.SongBookForm - + Song Book Maintenance Énekeskönyvek kezelése - + &Name: &Név: - + &Publisher: &Kiadó: - + You need to type in a name for the book. Meg kell adni a könyv nevét. @@ -7083,12 +7243,12 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongExportForm - + Your song export failed. Dalexportálás meghiúsult. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportálás befejeződött. Ezen fájlok importálásához majd az <strong>OpenLyrics</strong> importálót vedd igénybe. @@ -7096,27 +7256,27 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongImport - + copyright szerzői jog - + The following songs could not be imported: A következő dalok nem importálhatók: - + Cannot access OpenOffice or LibreOffice Nem lehet elérni az OpenOffice-t vagy a LibreOffice-t - + Unable to open file Nem sikerült megnyitni a fájlt - + File not found A fájl nem található @@ -7124,107 +7284,107 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongMaintenanceForm - + Could not add your author. A szerzőt nem lehet hozzáadni. - + This author already exists. Ez a szerző már létezik. - + Could not add your topic. A témakört nem lehet hozzáadni. - + This topic already exists. Ez a témakör már létezik. - + Could not add your book. A könyvet nem lehet hozzáadni. - + This book already exists. Ez a könyv már létezik. - + Could not save your changes. A módosításokat nem lehet elmenteni. - + Could not save your modified author, because the author already exists. A módosított szerzőt nem lehet elmenteni, mivel már a szerző létezik. - + Could not save your modified topic, because it already exists. A módosított témakört nem lehet elmenteni, mivel már létezik. - + Delete Author Szerző törlése - + Are you sure you want to delete the selected author? Valóban törölhető a kijelölt szerző? - + This author cannot be deleted, they are currently assigned to at least one song. Ezt a szerzőt nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. - + Delete Topic Témakör törlése - + Are you sure you want to delete the selected topic? Valóban törölhető a kijelölt témakör? - + This topic cannot be deleted, it is currently assigned to at least one song. Ezt a témakört nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. - + Delete Book Könyv törlése - + Are you sure you want to delete the selected book? Valóban törölhető a kijelölt könyv? - + This book cannot be deleted, it is currently assigned to at least one song. Ezt a könyvet nem lehet törölni, mivel jelenleg legalább egy dalhoz hozzá van rendelve. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Ez a szerző már létezik: %s. Szeretnéd, hogy a dal – melynek szerzője %s – a már létező szerző (%s) dalai közé kerüljön rögzítésre? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Ez a témakör már létezik: %s. Szeretnéd, hogy a dal – melynek témaköre: %s – a már létező témakörben (%s) kerüljön rögzítésre? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Ez a könyv már létezik: %s. Szeretnéd, hogy a dal – melynek könyve: %s – a már létező könyvben (%s) kerüljön rögzítésre? @@ -7232,27 +7392,27 @@ EasyWorshipből kerültek importálásra] SongsPlugin.SongsTab - + Songs Mode Dalmód - + Enable search as you type Gépelés közbeni keresés engedélyezése - + Display verses on live tool bar Versszakok megjelenítése az élő adás eszköztáron - + Update service from song edit Sorrendben lévő példány frissítése a dal módosításakor - + Import missing songs from service files Hiányzó dalok importálása a szolgálati fájlokból @@ -7260,17 +7420,17 @@ EasyWorshipből kerültek importálásra] SongsPlugin.TopicsForm - + Topic Maintenance Témakörök kezelése - + Topic name: Témakör neve: - + You need to type in a topic name. Meg kell adni egy témakör nevet. @@ -7278,37 +7438,37 @@ EasyWorshipből kerültek importálásra] SongsPlugin.VerseType - + Verse Versszak - + Chorus Refrén - + Bridge Híd - + Pre-Chorus Előrefrén - + Intro Bevezetés - + Ending Lezárás - + Other Más @@ -7316,14 +7476,29 @@ EasyWorshipből kerültek importálásra] SongsPlugin.ZionWorxImport - + Error reading CSV file. Hiba a CSV fájl olvasása közben. - + File not valid ZionWorx CSV format. A fájl nem érvényes ZionWorx CSV formátumú. + + + Line %d: %s + %d sor: %s + + + + Decoding error: %s + Dekódolási hiba: %s + + + + Record %d + %d rekord + - \ No newline at end of file + diff --git a/resources/i18n/id.ts b/resources/i18n/id.ts index ba24a2cdb..364966d21 100644 --- a/resources/i18n/id.ts +++ b/resources/i18n/id.ts @@ -1,109 +1,110 @@ - + + AlertsPlugin - + &Alert - Per&ingatan + &Peringatan - + Show an alert message. Menampilkan pesan peringatan. - + Alert name singular Peringatan - + Alerts name plural Peringatan - + Alerts container title Peringatan - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - <strong>Plugin Peringatan</strong><br>Plugin peringatan mengendalikan tampilan peringatan di layar tampilan. + <strong>Plugin Peringatan</strong><br>Plugin Peringatan mengendalikan penampilan peringatan di layar tampilan. AlertsPlugin.AlertForm - + Alert Message Pesan Peringatan - + Alert &text: - Peringatan &teks: + Teks &peringatan: - + &New &Baru - + &Save &Simpan - + Displ&ay - &Tampilan + &Tampilkan - + Display && Cl&ose Tampilkan dan &Tutup - + New Alert Peringatan Baru - + You haven't specified any text for your alert. Please type in some text before clicking New. - Teks isi peringatan belum dispesifikasi. Harap masukkan teks sebelum memilih Baru. + Teks isi peringatan belum ditentukan. Silakan masukkan teks sebelum memilih Baru. - + &Parameter: &Parameter: - + No Parameter Found Parameter Tidak Ditemukan - + You have not entered a parameter to be replaced. Do you want to continue anyway? Anda belum memasukkan parameter baru. Tetap lanjutkan? - + No Placeholder Found - Placeholder Tidak Ditemukan + Tempat Penampung Tidak Ditemukan - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? - Peringatan tidak mengandung '<>'. + Teks peringatan tidak berisikan '<>'. Tetap lanjutkan? @@ -118,629 +119,631 @@ Tetap lanjutkan? AlertsPlugin.AlertsTab - + Font Fon - + Font name: Nama fon: - + Font color: Warna fon: - + Background color: Warna latar: - + Font size: Ukuran fon: - + Alert timeout: - Waktu-habis untuk peringatan: + Batas-waktu peringatan: BiblesPlugin - + &Bible &Alkitab - + Bible name singular Alkitab - + Bibles name plural Alkitab - + Bibles container title Alkitab - + No Book Found Kitab Tidak Ditemukan - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Kitab tidak ditemukan dalam Alkitab ini. Periksa apakah Anda telah mengeja nama kitab dengan benar. - + Import a Bible. Impor Alkitab. - + Add a new Bible. Tambahkan Alkitab baru. - + Edit the selected Bible. Sunting Alkitab terpilih. - + Delete the selected Bible. Hapus Alkitab terpilih. - + Preview the selected Bible. Pratinjau Alkitab terpilih. - + Send the selected Bible live. Tayangkan Alkitab terpilih. - + Add the selected Bible to the service. - Tambahkan Alkitab terpilih ke dalam layanan. + Tambahkan Alkitab terpilih ke Layanan. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - <strong>Plugin Alkitab</strong><br />Plugin Alkitab menyediakan kemampuan untuk menayangkan ayat Alkitab dari berbagai sumber selama layanan. + <strong>Plugin Alkitab</strong><br />Plugin Alkitab menyediakan kemampuan untuk menampilkan ayat Alkitab dari sumber yang berbeda selama Layanan dijalankan. - + &Upgrade older Bibles - &Upgrade Alkitab lama + &Mutakhirkan Alkitab lama - + Upgrade the Bible databases to the latest format. - Perbarui basis data Alkitab ke format terbaru. - - - - Genesis - + Mutakhirkan basis-data Alkitab ke format terakhir. - Exodus - + Genesis + Kejadian - Leviticus - + Exodus + Keluaran - Numbers - + Leviticus + Imamat - Deuteronomy - + Numbers + Bilangan - Joshua - + Deuteronomy + Ulangan - Judges - + Joshua + Yosua - Ruth - + Judges + Hakim-hakim - 1 Samuel - + Ruth + Rut - 2 Samuel - + 1 Samuel + 1 Samuel - 1 Kings - + 2 Samuel + 2 Samuel - 2 Kings - + 1 Kings + 1 Raja-raja - 1 Chronicles - + 2 Kings + 2 Raja-raja - 2 Chronicles - + 1 Chronicles + 1 Tawarikh - Ezra - + 2 Chronicles + 2 Tawarikh - Nehemiah - + Ezra + Ezra - Esther - + Nehemiah + Nehemia - Job - + Esther + Ester - Psalms - + Job + Ayub - Proverbs - + Psalms + Mazmur - Ecclesiastes - + Proverbs + Amsal - Song of Solomon - + Ecclesiastes + Pengkotbah - Isaiah - + Song of Solomon + Kidung Agung - Jeremiah - + Isaiah + Yesaya - Lamentations - + Jeremiah + Yeremia - Ezekiel - + Lamentations + Ratapan - Daniel - + Ezekiel + Yehezkiel - Hosea - + Daniel + Daniel - Joel - + Hosea + Hosea - Amos - + Joel + Yoel - Obadiah - + Amos + Amos - Jonah - + Obadiah + Obaja - Micah - + Jonah + Yunus - Nahum - + Micah + Mikha - Habakkuk - + Nahum + Nahum - Zephaniah - + Habakkuk + Habakuk - Haggai - + Zephaniah + Zefanya - Zechariah - + Haggai + Hagai - Malachi - + Zechariah + Zakharia - Matthew - + Malachi + Maleakhi - Mark - + Matthew + Matius - Luke - + Mark + Markus - John - + Luke + Lukas - Acts - + John + Yohanes - Romans - + Acts + Kisah Para Rasul - 1 Corinthians - + Romans + Roma - 2 Corinthians - + 1 Corinthians + 1 Korintus - Galatians - + 2 Corinthians + 2 Korintus - Ephesians - + Galatians + Galatia - Philippians - + Ephesians + Efesus - Colossians - + Philippians + Filipi - 1 Thessalonians - + Colossians + Kolose - 2 Thessalonians - + 1 Thessalonians + 1 Tesalonika - 1 Timothy - + 2 Thessalonians + 2 Tesalonika - 2 Timothy - + 1 Timothy + 1 Timotius - Titus - + 2 Timothy + 2 Timotius - Philemon - + Titus + Titus - Hebrews - + Philemon + Filemon - James - + Hebrews + Ibrani - 1 Peter - + James + Yakobus - 2 Peter - + 1 Peter + 1 Petrus - 1 John - + 2 Peter + 2 Petrus - 2 John - + 1 John + 1 Yohanes - 3 John - + 2 John + 2 Yohanes - Jude - + 3 John + 3 Yohanes - Revelation - + Jude + Yudas - Judith - + Revelation + Wahyu - Wisdom - + Judith + Yudit - Tobit - + Wisdom + Kebijaksanaan Salomo - Sirach - + Tobit + Tobit - Baruch - + Sirach + Sirakh - 1 Maccabees - + Baruch + Barukh - 2 Maccabees - + 1 Maccabees + 1 Makabe - 3 Maccabees - + 2 Maccabees + 2 Makabe - 4 Maccabees - + 3 Maccabees + 3 Maccabees - Rest of Daniel - + 4 Maccabees + 4 Maccabees - Rest of Esther - + Rest of Daniel + Tamb. Daniel - Prayer of Manasses - + Rest of Esther + Tamb. Ester - Letter of Jeremiah - + Prayer of Manasses + Prayer of Manasses - Prayer of Azariah - + Letter of Jeremiah + Letter of Jeremiah - Susanna - + Prayer of Azariah + Prayer of Azariah - Bel - + Susanna + Susanna - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 1 Esdras - + + 2 Esdras + 2 Esdras + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|verse|verses;;-|to;;,|and;;end BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Anda harus menentukan suatu nama versi untuk Alkitab. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Anda harus menetapkan hak cipta untuk Alkitab Anda. Alkitab di Domain Publik harus ditandai seperti itu. - + Bible Exists - + Alkitab Sudah Ada - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. - + You need to specify a book name for "%s". - + Anda harus menentukan suatu nama kitab untuk "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Nama kitab "%s" tidak benar. +Nomor hanya dapat digunakan di awal dan harus +diikuti oleh satu atau lebih karakter non-numerik. - + Duplicate Book Name - + Duplikasi Nama Kitab - + The Book Name "%s" has been entered more than once. - + Nama kitab "%s" dimasukkan lebih dari sekali. BiblesPlugin.BibleManager - + Scripture Reference Error - Referensi Kitab Suci Galat + Kesalahan Referensi Alkitab - + Web Bible cannot be used Alkitab Web tidak dapat digunakan - + Text Search is not available with Web Bibles. - Pencarian teks tidak dapat dilakukan untuk Alkitab Web. + Penelusuran teks tidak dapat dilakukan untuk Alkitab Web. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - Anda tidak memasukkan kata kunci pencarian. -Anda dapat memisahkan kata kunci dengan spasi untuk mencari seluruh kata kunci dan Anda dapat memisahkan kata kunci dengan koma untuk mencari salah satu kata kunci. + Anda tidak memasukkan kata kunci penelusuran. +Anda dapat memisahkan kata kunci dengan spasi untuk menelusuri seluruh kata kunci dan Anda dapat memisahkan kata kunci dengan koma untuk menelusuri salah satu kata kunci. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - TIdak ada Alkitab terpasang. Harap gunakan Wisaya Impor untuk memasang sebuah atau beberapa Alkitab. + TIdak ada Alkitab terpasang. Silakan gunakan Wisaya Impor untuk memasang satu atau beberapa Alkitab. - + No Bibles Available Alkitab tidak tersedia - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -750,185 +753,201 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Referensi Alkitab tidak ada dukungan oleh OpenLP atau tidak valid. Pastikan referensi Anda sesuai dengan salah satu pola berikut atau lihat manual: + +Bab +Bab%(range)sBab +Bab%(verse)sAyat%(range)sAyat +Bab%(verse)sAyat%(range)sAyat%(list)sAyat%(range)sAyat +Bab%(verse)sAyat%(range)sAyat%(list)sBab%(verse)sAyat%(range)sAyat +Bab%(verse)sAyat%(range)sBab%(verse)sAyat BiblesPlugin.BiblesTab - + Verse Display Tampilan Ayat - + Only show new chapter numbers - Hanya tampilkan nomor pasal baru + Hanya tampilkan nomor bab baru - + Bible theme: Tema Alkitab: - + No Brackets - Tanpa tanda kurung + Tanpa Tanda Kurung - + ( And ) ( Dan ) - + { And } { Dan } - + [ And ] [ Dan ] - + Note: Changes do not affect verses already in the service. - Catatan: -Perubahan tidak akan mempengaruhi ayat yang kini tampil. + Catatan: +Perubahan tidak mempengaruhi ayat yang sudah ada di Layanan. - + Display second Bible verses - Tampilkan ayat Alkitab selanjutnya + Tampilkan ayat Alkitab kedua (beda versi) - + Custom Scripture References - + Referensi Alkitab Kustom - + Verse Separator: - + Pemisah Ayat: - + Range Separator: - + Pemisah Kisaran: - + List Separator: - + Pemisah Daftar: - + End Mark: - + Tanda Akhir: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Beberapa alternatif pemisah ayat dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Beberapa alternatif pemisah kisaran dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Beberapa alternatif pemisah daftar dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Beberapa alternatif tanda akhir dapat didefinisikan. +Semuanya harus dipisahkan oleh sebuah palang vertikal "|". +Silakan bersihkan baris penyuntingan ini untuk menggunakan nilai bawaan. - + English - + Inggris - + Default Bible Language - + Bahasa Alkitab Bawaan - + Book name language in search field, search results and on display: - + Bahasa Kitab di bidang penelusuran, +hasil penelusuran, dan tampilan: - + Bible Language - + Bahasa Alkitab - + Application Language - + Bahasa Aplikasi BiblesPlugin.BookNameDialog - + Select Book Name - Pilih nama Kitab + Pilih Nama Kitab - + Current name: - Nama sekarang: + Nama saat ini: - + Corresponding name: - Nama yang cocok: + Nama yang sesuai: - + Show Books From - Tampilkan buku dari; + Tampilkan Kitab Dari - + Old Testament Perjanjian Lama - + New Testament Perjanjian Baru - + Apocrypha - Apokripa + Apokrif - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Nama kitab berikut tidak dapat dicocokkan dengan sistem. Silakan pilih yang sesuai dari daftar. BiblesPlugin.BookNameForm - + You need to select a book. Anda harus memilih sebuah kitab. @@ -936,18 +955,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Mengimpor kitab... %s - + Importing verses from %s... Importing verses from <book name>... Mengimpor ayat dari %s... - + Importing verses... done. Mengimpor ayat... selesai. @@ -955,109 +974,110 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + Penyunting Alkitab - + License Details - + Rincian Lisensi - + Version name: - + Nama versi: - + Copyright: - + Hak Cipta: - + Permissions: - + Izin: - + Default Bible Language - + Bahasa Alkitab Bawaan - + Book name language in search field, search results and on display: - + Bahasa Kitab di bidang penelusuran, hasil penelusuran, dan tampilan: - + Global Settings - + Setelan Global - + Bible Language - + Bahasa Alkitab - + Application Language - + Bahasa Aplikasi - + English - + Inggris - + This is a Web Download Bible. It is not possible to customize the Book Names. - + Ini suatu Alkitab Unduhan dari Web. +Tidak mungkin untuk mengubahsuaikan Nama Kitab. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Untuk menggunakan nama kitab yang diubahsuaikan, "Bahasa Alkitab" harus dipilih pada tab Meta Data atau, jika "Setelan Global" dipilih, pada halaman Alkitab dalam Mengkonfigurasi OpenLP. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - Mendaftarkan Alkitab dan memuat buku... + Mendaftarkan Alkitab dan memuat kitab... - + Registering Language... Mendaftarkan bahasa... - + Importing %s... Importing <book name>... Mengimpor %s... - + Download Error - Unduhan Gagal + Kesalahan Unduhan - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - Ada masalah dalam mengunduh ayat yang terpilih. Mohon periksa sambungan internet Anda dan jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. + Ada masalah dalam mengunduh ayat yang terpilih. Silakan periksa sambungan internet Anda dan jika kesalahan ini berlanjut, pertimbangkan untuk melaporkan hal ini sebagai bug. - + Parse Error - Galat saat parsing + Kesalahan Penguraian - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - Ada masalah dalam mengekstrak ayat yang terpilih. Jika masalah berlanjut, pertimbangkan untuk melaporkan hal ini sebagai kutu. + Ada masalah dalam mengekstrak ayat yang terpilih. Jika kesalahan ini berlanjut, silakan pertimbangkan untuk melaporkan hal ini sebagai bug. @@ -1070,12 +1090,12 @@ It is not possible to customize the Book Names. This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Wisaya ini akan membantu Anda mengimpor Alkitab dari berbagai format. Klik tombol lanjut di bawah untuk memulai proses dengan memilih format untuk diimpor. + Wisaya ini akan membantu Anda mengimpor Alkitab dari berbagai format. Klik tombol Selanjutnya di bawah untuk memulai proses dengan memilih format untuk diimpor. Web Download - Unduh dari web + Unduhan dari Web @@ -1115,12 +1135,12 @@ It is not possible to customize the Book Names. Password: - Sandi-lewat: + Sandi: Proxy Server (Optional) - Proxy Server (Opsional) + Server Proxy (Opsional) @@ -1130,7 +1150,7 @@ It is not possible to customize the Book Names. Set up the Bible's license details. - Memasang rincian lisensi Alkitab. + Siapkan rincian lisensi Alkitab. @@ -1140,32 +1160,32 @@ It is not possible to customize the Book Names. Copyright: - Hak cipta: + Hak Cipta: Please wait while your Bible is imported. - Mohon tunggu selama Alkitab diimpor. + Silakan tunggu selama Alkitab diimpor. You need to specify a file with books of the Bible to use in the import. - Anda harus menentukan berkas yang berisi nama kitab dalam Alkitab untuk digunakan dalam import. + Anda harus menentukan suatu berkas yang berisi kitab-kitab Alkitab untuk digunakan dalam impor. You need to specify a file of Bible verses to import. - Anda harus menentukan berkas Alkitab untuk diimpor. + Anda harus menentukan suatu berkas ayat Alkitab untuk diimpor. You need to specify a version name for your Bible. - Anda harus menentukan nama versi untuk Alkitab Anda. + Anda harus menentukan suatu nama versi untuk Alkitab. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Anda harus memberikan hak cipta untuk Alkitab Anda. Alkitab di Public Domain harus ditandai sedemikian. + Anda harus menetapkan hak cipta untuk Alkitab Anda. Alkitab di Domain Publik harus ditandai seperti itu. @@ -1175,7 +1195,7 @@ It is not possible to customize the Book Names. This Bible already exists. Please import a different Bible or first delete the existing one. - Alkitab sudah ada. Silakan impor Alkitab lain atau hapus yang sudah ada. + Alkitab sudah ada. Silakan impor Alkitab lain atau hapus dahulu yang sudah ada. @@ -1190,7 +1210,7 @@ It is not possible to customize the Book Names. Bibleserver - Server Alkitab + BibleServer @@ -1215,7 +1235,7 @@ It is not possible to customize the Book Names. openlp.org 1.x Bible Files - Ayat Alkitab openlp.org 1.x + Berkas Alkitab openlp.org 1.x @@ -1226,24 +1246,24 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - Alkitab terdaftar. Mohon camkan, ayat akan diunduh saat -dibutuhkan dan membutuhkan koneksi internet. + Alkitab terdaftar. Perlu diketahui, ayat akan diunduh sesuai +permintaan dan membutuhkan sambungan internet. BiblesPlugin.LanguageDialog - + Select Language Pilih Bahasa - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - OpenLP tidak dapat menentukan bahasa untuk terjemahan Alkitab ini. Mohon pilih bahasa dari daftar di bawah. + OpenLP tidak dapat menentukan bahasa untuk terjemahan Alkitab ini. Silakan pilih bahasa dari daftar di bawah. - + Language: Bahasa: @@ -1251,7 +1271,7 @@ dibutuhkan dan membutuhkan koneksi internet. BiblesPlugin.LanguageForm - + You need to choose a language. Anda harus memilih sebuah bahasa. @@ -1259,110 +1279,112 @@ dibutuhkan dan membutuhkan koneksi internet. BiblesPlugin.MediaItem - + Quick Cepat - + Find: Temukan: - + Book: Kitab: - + Chapter: - Pasal: + Bab: - + Verse: Ayat: - + From: Dari: - + To: - Kepada: + Sampai: - + Text Search - Pencarian Teks + Penelusuran Teks - + Second: Kedua: - + Scripture Reference Referensi Alkitab - + Toggle to keep or clear the previous results. - Ganti untuk menyimpan atau menghapus hasil sebelumnya. + Simpan atau hapus hasil sebelumnya. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - Tidak dapat menggabungkan hasil pencarian ayat. Ingin menghapus hasil pencarian dan mulai pencarian baru? + Anda tidak dapat menggabungkan hasil penelusuran ayat kedua versi Alkitab. Apakah Anda ingin menghapus hasil penelusuran dan mulai penelusuran baru? - + Bible not fully loaded. Alkitab belum termuat seluruhnya. - + Information Informasi - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - Alkitab kedua tidak memiliki seluruh ayat yang ada di Alkitab utama. Hanya ayat yang ditemukan di kedua Alkitab yang akan ditampilkan. %d ayat tidak terlihat di hasil. + Alkitab kedua tidak berisikan seluruh ayat yang ada di Alkitab utama. Hanya ayat yang ditemukan di kedua Alkitab yang akan ditampilkan. Ayat %d belum dimasukkan pada hasil. - + Search Scripture Reference... - + Telusuri Referensi Alkitab... - + Search Text... - + Telusuri Teks... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Apakah Anda yakin ingin menghapus keseluruhan Alkitab "%s" dari OpenLP? + +Anda harus mengimpor ulang Alkitab ini untuk menggunakannya kembali. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Tipe berkas Alkitab tidak benar. Alkitab OpenSong mungkin dikompresi. Anda harus lakukan dekompresi sebelum mengimpor. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Mengimpor %s %s... @@ -1371,12 +1393,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Mendeteksi pengodean (mungkin butuh beberapa menit)... - + Importing %s %s... Importing <book name> <chapter>... Mengimpor %s %s... @@ -1385,376 +1407,378 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - Pilih direktori cadangan + Pilih Direktori Cadangan - + Bible Upgrade Wizard - Wisaya Upgrade Alkitab + Wisaya Pemutakhiran Alkitab - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - Wisaya ini akan membantu ada mengupgrade Alkitab yang tersedia. Klik tombol selanjutnya untuk memulai proses upgrade. + Wisaya ini akan membantu ada memutakhirkan Alkitab yang tersedia dari OpenLP 2 versi sebelumnya. Klik tombol Selanjutnya untuk memulai proses pemutakhirkan. - + Select Backup Directory - Pilih Direktori Pencadangan + Pilih Direktori Cadangan - + Please select a backup directory for your Bibles - Mohon pilih direktori pencadangan untuk Alkitab Anda + Silakan pilih direktori cadangan untuk Alkitab Anda - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - Rilis sebelumnya dari OpenLP 2.0 tidak dapat menggunakan Alkitab termutakhirkan. Langkah ini akan membuat sebuah cadangan untuk seluruh Alkitab Anda sehingga Anda tinggal menyalin berkas-berkas ke direktori data OpenLP jika Anda perlu kembali ke rilis sebelumnya dari OpenLP. Silakan lihat <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. + Rilis sebelumnya dari OpenLP 2.0 tidak dapat menggunakan Alkitab termutakhirkan. Langkah ini akan membuat pencadangan Alkitab saat ini sehingga Anda tinggal menyalin berkas-berkas ke direktori data OpenLP jika Anda perlu kembali ke rilis sebelumnya dari OpenLP. Silakan lihat <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. - Mohon pilh sebuah lokasi pencadangan untuk Alkitab Anda. + Silakan pilh sebuah lokasi cadangan untuk Alkitab Anda. - + Backup Directory: - Direktori Pencadangan: + Direktori Cadangan: - + There is no need to backup my Bibles - Tidak perlu membuat cadangan Alkitab + Tidak perlu membuat pencadangan Alkitab - + Select Bibles Pilih Alkitab - + Please select the Bibles to upgrade - Mohon pilih Alkitab untuk dimutakhirkan + Silakan pilih Alkitab untuk dimutakhirkan - + Upgrading Memutakhirkan - + Please wait while your Bibles are upgraded. - Mohon tunggu sementara Alkitab sedang diperbarui. + Silakan tunggu selama Alkitab sedang dimutakhirkan. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - Pencadangan gagal. + Pencadangan tidak berhasil. Untuk mencadangkan Alkitab Anda perlu izin untuk menulis di direktori terpilih. - + Upgrading Bible %s of %s: "%s" Failed - Pemutakhiran Alkitab %s dari %s: "%s" + Memutakhirkan Alkitab %s dari %s: "%s" Gagal - + Upgrading Bible %s of %s: "%s" Upgrading ... - Pemutakhiran Alkitab %s dari %s: "%s" + Memutakhirkan Alkitab %s dari %s: "%s" Memutakhirkan ... - + Download Error - Unduhan Gagal + Kesalahan Unduhan - + To upgrade your Web Bibles an Internet connection is required. - Untuk memutakhirkan Alkitab Web, koneksi internet dibutuhkan. + Untuk memutakhirkan Alkitab Web, sambungan internet dibutuhkan. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Memutakhirkan Alkitab %s dari %s: "%s" Memutakhirkan %s ... - + Upgrading Bible %s of %s: "%s" Complete - Perbaruan Alkitab %s dari %s: "%s" + Memutakhirkan Alkitab %s dari %s: "%s" Selesai - + , %s failed , %s gagal - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - Perbaruan Alkitab: %s sukses%s -Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan internet dibutuhkan. + Memutakhirkan (beberapa) Alkitab: %s berhasil%s +Perlu diketahui bahwa ayat dari Alkitab Web akan diunduh sesuai permintaan dan sambungan internet dibutuhkan. - + Upgrading Bible(s): %s successful%s - Pemutakhiran Alkitab: %s berhasil%s + Memutakhirkan (beberapa) Alkitab: %s berhasil%s - + Upgrade failed. - Pemutakhirkan gagal. + Pemutakhiran gagal. - + You need to specify a backup directory for your Bibles. - Anda harus membuat sebuah direktori pencadangan untuk Alkitab Anda. + Anda harus menentukan sebuah direktori cadangan untuk Alkitab Anda. - + Starting upgrade... - Memulai perbaruan... + Memulai pemutakhiran... - + There are no Bibles that need to be upgraded. - Tidak ada Alkitab yang perlu diperbarui. + Tidak ada Alkitab yang perlu dimutakhirkan. CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - <strong>Plugin Salindia Suai</strong><br />Plugin salindia suai menyediakan kemampuan untuk menyiapkan salindia teks yang dapat ditampilkan pada layar dengan cara yang sama seperti lagu. Plugin ini memberikan kebebasan lebih ketimbang plugin lagu. + <strong>Plugin Salindia Kustom</strong><br />Plugin salindia kustom menyediakan kemampuan untuk menyiapkan salindia teks kustom yang dapat ditampilkan pada layar dengan cara yang sama seperti lagu. Plugin ini memberikan kebebasan lebih ketimbang plugin lagu. - + Custom Slide name singular - Salindia Suai + Salindia Kustom - + Custom Slides name plural - + Salindia Kustom - + Custom Slides container title - Salindia Suai - - - - Load a new custom slide. - Muat sebuah salindia suai. + Salindia Kustom - Import a custom slide. - Impor sebuah salindia suai. + Load a new custom slide. + Muat sebuah salindia kustom. - Add a new custom slide. - Tambahkan sebuah salindia suai. + Import a custom slide. + Impor sebuah salindia kustom. + Add a new custom slide. + Tambahkan sebuah salindia kustom. + + + Edit the selected custom slide. - Sunting salindia-suai terpilih. + Sunting salindia kustom terpilih. - + Delete the selected custom slide. - Hapus salindia-suai terpilih. + Hapus salindia kustom terpilih. - + Preview the selected custom slide. - Pratinjau salindia-suai terpilih. + Pratinjau salindia kustom terpilih. - + Send the selected custom slide live. - Tampilkan salindia-suai terpilih. + Tayangkan salindia kustom terpilih. - + Add the selected custom slide to the service. - Tambahkan salindia-suai terpilih ke layanan. + Tambahkan salindia kustom terpilih ke Layanan. CustomPlugin.CustomTab - + Custom Display - Tampilan Suai + Tampilan Kustom - + Display footer - Catatan kaki tampilan + Tampilkan catatan kaki CustomPlugin.EditCustomForm - + Edit Custom Slides - Sunting Tampilan Suai + Sunting Salindia Kustom - + &Title: &Judul: - + Add a new slide at bottom. - Tambahkan slide baru di bawah. + Tambahkan suatu salindia baru di dasar. - + Edit the selected slide. - Sunting slide terpilih. + Sunting salindia terpilih. - + Edit all the slides at once. - Sunting seluruh slide bersamaan. + Sunting seluruh salindia bersamaan. - + Split a slide into two by inserting a slide splitter. - Pecah slide menjadi dua menggunakan pemecah slide. + Pisah salindia menjadi dua menggunakan pemisah salindia. - + The&me: Te&ma: - + &Credits: &Kredit: - + You need to type in a title. Anda harus mengetikkan judul. - + You need to add at least one slide - Anda harus menambah paling sedikit satu salindia + Anda harus tambahkan setidaknya satu salindia - + Ed&it All Sun&ting Semua - + Insert Slide - Tampilan Suai + Sisipkan Salindia CustomPlugin.EditVerseForm - + Edit Slide - + Sunting Salindia CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + Anda yakin ingin menghapus %n salindia (- salindia) kustom terpilih ini? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - <strong>Plugin Gambar</strong><br />Plugin gambar memungkinkan penayangan gambar.<br />Salah satu keunggulan fitur ini adalah kemampuan untuk menggabungkan beberapa gambar pada Service Manager, yang menjadikan penayangan beberapa gambar mudah. Plugin ini juga dapat menggunakan "perulangan terwaktu" dari OpenLP untuk membuat slide show yang berjalan otomatis. Juga, gambar dari plugin dapat digunakan untuk menggantikan latar tema. + <strong>Plugin Gambar</strong><br />Plugin gambar memungkinkan penayangan gambar.<br />Salah satu keunggulan fitur ini adalah kemampuan untuk menggabungkan beberapa gambar pada Manajer Layanan, yang menjadikan penayangan beberapa gambar lebih mudah. Plugin ini juga dapat menggunakan "pengulangan terwaktu" dari OpenLP untuk membuat penayangan salindia berjalan otomatis. Sebagai tambahan, gambar dari plugin dapat digunakan untuk menggantikan latar tema yang sedang digunakan, yang mana menjadikan butir berbasis teks seperti lagu dengan gambar pilihan sebagai latar bukan dari latar yang disediakan oleh tema. - + Image name singular Gambar - + Images name plural - + Gambar - + Images container title Gambar - + Load a new image. Muat gambar baru. - + Add a new image. - Tambah gambar baru. + Tambahkan suatu gambar baru. - + Edit the selected image. Sunting gambar terpilih. - + Delete the selected image. Hapus gambar terpilih. - + Preview the selected image. - Pratayang gambar terpilih. + Pratinjau gambar terpilih. - + Send the selected image live. Tayangkan gambar terpilih. - + Add the selected image to the service. - Tambahkan gambar terpilih ke layanan. + Tambahkan gambar terpilih ke Layanan. ImagePlugin.ExceptionDialog - + Select Attachment Pilih Lampiran @@ -1762,264 +1786,288 @@ Perhatikan bahwa ayat dari Alkitab Web akan diunduh saat diminta dan sambungan i ImagePlugin.MediaItem - + Select Image(s) - Pilih Gambar + Pilih (beberapa) Gambar - + You must select an image to delete. Pilih sebuah gambar untuk dihapus. - + You must select an image to replace the background with. Pilih sebuah gambar untuk menggantikan latar. - + Missing Image(s) - Gambar Tidak Ditemukan + (Beberapa) Gambar Hilang - + The following image(s) no longer exist: %s - Gambar berikut tidak ada lagi: %s + (Beberapa) Gambar berikut tidak ada lagi: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - Gambar berikut tidak ada lagi: %s -Ingin tetap menambah gambar lain? + (Beberapa) Gambar berikut tidak ada lagi: %s +Anda tetap ingin menambah gambar lain? - + There was a problem replacing your background, the image file "%s" no longer exists. Ada masalah dalam mengganti latar, berkas gambar "%s" tidak ada lagi. - + There was no display item to amend. - Tidak ada butir tampilan untuk di-amend. + Tidak ada butir tampilan untuk diubah. ImagesPlugin.ImageTab - + Background Color Warna Latar - + Default Color: Warna Bawaan: - + Visible background for images with aspect ratio different to screen. - + Latar yang dapat terlihat untuk gambar dengan rasio aspek yang berbeda dengan layar. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - <strong>Media Plugin</strong><br />Media plugin mampu memutar audio dan video. - - - - Media - name singular - + <strong>Plugin Media</strong><br />Plugin Media mampu memainkan audio dan video. Media - name plural - + name singular + Media - + + Media + name plural + Media + + + Media container title Media - + Load new media. Muat media baru. - + Add new media. - Tambah media baru. + Tambahkan media baru. - + Edit the selected media. Sunting media terpilih. - + Delete the selected media. Hapus media terpilih. - + Preview the selected media. Pratinjau media terpilih. - + Send the selected media live. Tayangkan media terpilih. - + Add the selected media to the service. - Tambahkan media terpilih ke layanan. + Tambahkan media terpilih ke Layanan. MediaPlugin.MediaItem - + Select Media Pilih Media - + You must select a media file to delete. Pilih sebuah berkas media untuk dihapus. - + You must select a media file to replace the background with. Pilih sebuah media untuk menggantikan latar. - + There was a problem replacing your background, the media file "%s" no longer exists. Ada masalah dalam mengganti latar, berkas media "%s" tidak ada lagi. - + Missing Media File - Berkas Media hilang + Berkas Media Hilang - + The file %s no longer exists. Berkas %s tidak ada lagi. - + Videos (%s);;Audio (%s);;%s (*) - Videos (%s);;Audio (%s);;%s (*) + Video (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - Tidak ada butir tayangan untuk di-amend. + Tidak ada butir tampilan untuk diubah. - + Unsupported File - Berkas Tidak Didukung + Tidak Ada Dukungan untuk Berkas - + Automatic Otomatis - + Use Player: - Gunakan Pemutar: + Gunakan Pemain: MediaPlugin.MediaTab - + Available Media Players - + Pemain Media yang Tersedia - + %s (unavailable) - + %s (tidak tersedia) - + Player Order - + Urutan Pemain - + Allow media player to be overridden - + Izinkan pemain media untuk digantikan OpenLP - + Image Files Berkas Gambar - + Information Informasi - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? Format Alkitab sudah diubah. -Anda harus menaiktingkatkan Alkitab yang sekarang. -Haruskah OpenLP menaiktingkatkan sekarang? +Anda harus memutakhirkan Alkitab yang sekarang. +Haruskah OpenLP dimutakhirkan sekarang? OpenLP.AboutForm - + Credits Kredit - + License Lisensi - - Contribute - Berkontribusi - - - + build %s - build %s + buatan %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - Program ini adalah perangkat lunak gratis; Anda dapat meredistribusikannya dan/atau memodifikasinya di bawah syarat-syarat GNU General Public License yang dikeluarkan Free Software Foundation; Lisensi versi 2. + Program ini adalah perangkat lunak gratis; Anda dapat menyebarluaskannya dan / atau memodifikasinya di bawah ketentuan GNU General Public License seperti yang diterbitkan oleh Free Software Foundation; Lisensi versi 2. - + This program 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 below for more details. - Program ini didistribusikan dengan harapan dapat berguna, namun TANPA GARANSI; bahkan tanpa garansi implisit dalam PEMBELIAN maupun KETEPATAN TUJUAN TERTENTU. Lihat di bawah untuk detail lengkap. + Program ini disebarluaskan dengan harapan bahwa akan berguna, tetapi TANPA JAMINAN APAPUN; bahkan tanpa jaminan yang termasuk pada PERDAGANGAN atau KECOCOKAN UNTUK SUATU TUJUAN TERTENTU. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Hak Cipta © 2004-2012 %s +Bagian hak cipta © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Proyeksi Lirik Open-Source + +OpenLP adalah perangkat lunak presentasi gratis untuk gereja, atau perangkat lunak proyeksi lirik, digunakan untuk menampilkan salindia lagu, ayat Alkitab, video, gambar, dan berkas presentasi (jika Impress, PowerPoint atau PowerPoint Viewer terpasang) bagi acara penyembahan gereja dengan menggunakan komputer dan proyektor data. + +Ketahui lebih lanjut tentang OpenLP: http://openlp.org/ + +OpenLP dibuat dan dikelola oleh sukarelawan. Jika Anda ingin melihat lebih banyak perangkat lunak Kristiani yang dibuat dengan gratis, silakan pertimbangkan untuk menjadi sukarelawan dengan menggunakan tombol di bawah ini. + + + + Volunteer + Sukarelawan + + + Project Lead %s @@ -2038,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2052,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2060,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2085,422 +2143,462 @@ Final Credit %s Pengembang -%s + %s Kontributor -%s + %s -Penguji Coba -%s +Penguji-coba + %s Pemaket -%s + %s -Penerjemah -Afrikaans (af) -%s -German (de) -%s -English, United Kingdom (en_GB) -%s -English, South Africa (en_ZA) -%s -Estonian (et) -%s -French (fr) -%s -Hungarian (hu) -%s -Japanese (ja) -%s -Norwegian Bokmål (nb) -%s -Dutch (nl) -%s -Portuguese, Brazil (pt_BR) -%s -Russian (ru) -%s +Penterjemah + Afrikanas (af) + %s + Ceko (cs) + %s + Denmark (da) + %s + Jerman (de) + %s + Yunani (el) + %s + Inggris, Britania Raya (en_GB) + %s + Inggris, Afrika Selatan (en_ZA) + %s + Spanyol (es) + %s + Estonia (et) + %s + Perancis (fr) + %s + Hongaria (hu) + %s + Jepang (ja) + %s + Norwegia Bokmål (nb) + %s + Belanda (nl) + %s + Portugis, Brasil (pt_BR) + %s + Rusia (ru) + %s + Swedia (sv) + %s Dokumentasi -%s + %s -Dibuat Dengan +Dibuat dengan Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ + Ikon Oxygens: http://oxygen-icons.org/ Kredit Akhir - "Karena begitu besarnya kasih Allah akan - dunia ini, sehingga Ia telah mengaruniakan - anak-Nya yang tunggal, supaya setiap orang - yang pecaya kepada-Nya tidak binasa, melainkan - beroleh hidup yang kekal. -- Yohanes 3:16 + "Karena begitu besar kasih Allah akan dunia ini, + sehingga Ia telah mengaruniakan Anak-Nya yang + tunggal, supaya setiap orang yang percaya kepada- + Nya tidak binasa, melainkan beroleh hidup yang + kekal." -- Yohanes 3:16 - Dan <em>last but not least</em, kredit akhir - kepada Allah Bapa kita, untuk mengirim anak-Nya - untuk mati di salib, membebaskan kita dari dosa. - Kami memberikan perangkat lunak ini gratis karena - Dia telah membebaskan kita. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OperLP <version><version> - Open Source Lyrics Projection - -OpenLP adalah piranti lunak untuk penyajian gerejawi, atau piranti proyeksi lirik, untuk menampilkan salindia lagu, ayat Alkitab, video, citra, dan bahkan presentasi (jika Impress, PowerPoint, atau PowerPoint viewer terpasang) untuk kebaktian gereja yang menggunakan komputer dan proyektor. - -Cari tahu lebih banyak lagi tentang OpenLP: http://openlp.org/ - -OpenLP dibuat dan dipelihara oleh relawan. Jika Anda ingin melihat lebih banyak piranti lunak Kristen dikerjakan, mohon pertimbangkan untuk berkontribusi melalui tombol di bawah ini. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Dan yang terakhir tapi terutama, kredit akhir kepada + Allah Bapa kita, yang mengirimkan Putra-Nya untuk + mati di kayu salib, untuk membebaskan kita dari dosa. + Kami berikan perangkat lunak ini kepada Anda dengan + gratis karena Dia telah membebaskan kita. OpenLP.AdvancedTab - + UI Settings - Pengaturan Antarmuka + Setelan Antarmuka - + Number of recent files to display: - Jumlah berkas anyar untuk ditampilkan: + Jumlah berkas terbaru untuk ditampilkan: - + Remember active media manager tab on startup - Ingat tab media manager yang aktif saat mulai + Ingat tab Manajer Media yang aktif saat mulai - + Double-click to send items straight to live - Klik-ganda untuk menayangkan butir terpilih + Klik-ganda untuk langsung menayangkan butir - + Expand new service items on creation - Tampilkan benda service saat dibuat + Kembangkan butir Layanan baru saat dibuat - + Enable application exit confirmation Gunakan konfirmasi aplikasi keluar - + Mouse Cursor Kursor Tetikus - + Hide mouse cursor when over display window Sembunyikan kursor tetikus saat melewati jendela tampilan - + Default Image - Gambar bawaan + Gambar Bawaan - + Background color: Warna latar: - + Image file: Berkas gambar: - + Open File Buka Berkas - + Advanced Lanjutan - + Preview items when clicked in Media Manager - Pratayang barang saat diklik pada Media Manager + Pratinjau butir saat diklik pada Manajer Media - + Click to select a color. Klik untuk memilih warna. - + Browse for an image file to display. - Ramban sebuah gambar untuk ditayangkan. + Menelusuri sebuah berkas gambar untuk ditampilkan. - + Revert to the default OpenLP logo. - Balikkan ke logo OpenLP bawaan. + Kembalikan ke logo OpenLP bawaan. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Layanan %d-%m-%Y %H-%M - + Default Service Name - + Nama Layanan Bawaan - + Enable default service name - + Gunakan nama Layanan bawaan - + Date and Time: - + Tanggal dan Waktu: - + Monday - + Senin - + Tuesday - + Selasa - + Wednesday - + Rabu - + Thurdsday - + Kamis - + Friday - + Jumat - + Saturday - + Sabtu - + Sunday - + Minggu - + Now - + Sekarang - + Time when usual service starts. - + Saat Layanan biasa dimulai. - + Name: - + Nama: - + Consult the OpenLP manual for usage. - + Lihat manual OpenLP untuk penggunaan. - + Revert to the default service name "%s". - + Kembalikan ke nama Layanan bawaan "%s". - + Example: - + Contoh: - + X11 - + X11 Bypass X11 Window Manager - + Abaikan Window Manager X11 - + Syntax error. - + Kesalahan sintaks. - + Data Location - + Lokasi Data - + Current path: - + Jalur saat ini: - + Custom path: - + Jalur kustom: - + Browse for new data file location. - + Telusuri lokasi berkas data baru. - + Set the data location to the default. - + Setel lokasi data menjadi bawaan. - + Cancel - + Batal - + Cancel OpenLP data directory location change. - + Batalkan perubahan lokasi direktori data OpenLP - + Copy data to new location. - + Salin data ke lokasi baru. - + Copy the OpenLP data files to the new location. - + Salin berkas data OpenLP ke lokasi baru. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>PERINGATAN:</strong> Lokasi direktori data baru berisi berkas data OpenLP. Berkas ini AKAN digantikan saat penyalinan. - + Data Directory Error - + Kesalahan Direktori Data - + Select Data Directory Location - + Pilih Lokasi Direktori Data - + Confirm Data Directory Change - + Konfirmasi Perubahan Direktori Data - + Reset Data Directory - + Setel-Ulang Direktori Data - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Anda yakin ingin mengubah lokasi direktori data OpenLP ke lokasi bawaan? + +Lokasi ini akan digunakan setelah OpenLP ditutup. - + Overwrite Existing Data - + Tulis-Timpa Data yang Ada + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + Direktori data OpenLP tidak ditemukan + +%s + +Direktori data ini telah berubah dari lokasi bawaan OpenLP. Jika lokasi baru ada pada media yang dapat dipindahkan, media tersebut harus siap digunakan. + +Klik "Tidak" untuk stop pemuatan OpenLP, sehinga Anda dapat memperbaiki masalah. + +Klik "Ya" untuk setel-ulang direktori data ke lokasi bawaan. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Anda yakin ingin mengganti lokasi direktori data OpenLP ke: + +%s + +Direktori data akan diubah setelah OpenLP ditutup. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + PERINGATAN: + +Lokasi yang Anda pilih + +%s + +nampaknya berisi berkas data OpenLP. Anda ingin mengganti berkas tersebut dengan berkas data saat ini? OpenLP.ExceptionDialog - + Error Occurred - Galat Terjadi + Terjadi Kesalahan - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - Aduh! OpenLP mengalami masalah yang tidak dapat diatasi. Teks di kotak bawah mengandung informasi yang membantu pengembang OpenLP, jadi tolong surelkan ini ke bugs@openlp.org, bersama dengan deskripsi detail apa yang Anda lakukan saat masalah terjadi. + Ups! OpenLP mengalami masalah yang tidak dapat diatasi. Teks di kotak bawah berisikan informasi yang membantu pengembang OpenLP, silakan kirim via email ke bugs@openlp.org, bersama dengan deskripsi detail apa yang Anda lakukan saat masalah terjadi. - + Send E-Mail - Kirim Surel + Kirim Email - + Save to File Simpan menjadi Berkas - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Mohon masukkan deskripsi apa yang Anda lakukan saat galat terjadi + Silakan masukkan deskripsi dari apa yang Anda lakukan sehingga kesalahan ini terjadi (Paling sedikit 20 karakter) - + Attach File Lampirkan Berkas - + Description characters to enter : %s - Karakter deskripsi untuk dimasukkan: %s + Deskripsi karakter untuk dimasukkan: %s OpenLP.ExceptionForm - + Platform: %s Platform: %s - + Save Crash Report Simpan Laporan Crash - + Text files (*.txt *.log *.text) - File teks (*.txt *.log *.text) + Berkas teks (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2515,23 +2613,23 @@ Version: %s --- Library Versions --- %s - **OpenLP Bug Report** -Version: %s + **Laporan Bug OpenLP** +Versi: %s ---- Details of the Exception. --- +--- Rincian Eksepsi. --- %s ---- Exception Traceback --- + --- Penelusuran Kembali dari Eksepsi --- %s ---- System information --- +--- Informasi Sistem --- %s ---- Library Versions --- +--- Versi Pustaka --- %s - + *OpenLP Bug Report* Version: %s @@ -2547,36 +2645,36 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - *OpenLP Bug Report* -Version: %s + *Laporan Bug OpenLP* +Versi: %s ---- Details of the Exception. --- +--- Rincian Eksepsi. --- %s ---- Exception Traceback --- + --- Penelusuran Kembali dari Eksepsi --- %s ---- System information --- +--- Informasi Sistem --- %s ---- Library Versions --- +--- Versi Pustaka --- %s -Mohon gunakan bahasa Inggris untuk laporan kutu. + OpenLP.FileRenameForm - + File Rename - Namai Berkas + Penamaan-ulang Berkas - + New File Name: Nama Berkas Baru: - + File Copy Salin Berkas @@ -2584,17 +2682,17 @@ Mohon gunakan bahasa Inggris untuk laporan kutu. OpenLP.FirstTimeLanguageForm - + Select Translation Pilih Terjemahan - + Choose the translation you'd like to use in OpenLP. Pilih terjemahan yang ingin Anda gunakan di OpenLP. - + Translation: Terjemahan: @@ -2602,239 +2700,243 @@ Mohon gunakan bahasa Inggris untuk laporan kutu. OpenLP.FirstTimeWizard - + Songs Lagu - + First Time Wizard Wisaya Kali Pertama - + Welcome to the First Time Wizard Selamat datang di Wisaya Kali Pertama - + Activate required Plugins Mengaktivasi Plugin yang dibutuhkan - + Select the Plugins you wish to use. Pilih Plugin yang ingin digunakan. - + Bible Alkitab - + Images Gambar - + Presentations Presentasi - + Media (Audio and Video) Media (Audio dan Video) - + Allow remote access - Izinkan akses jauh + Izinkan akses remote - + Monitor Song Usage Catat Penggunaan Lagu - + Allow Alerts Izinkan Peringatan - + Default Settings - Pengaturan Bawaan + Setelan Bawaan - + Downloading %s... Mengunduh %s... - + Download complete. Click the finish button to start OpenLP. - Unduhan selesai. Klik tombol selesai untuk memulai OpenLP. + Unduhan selesai. Klik tombol Selesai untuk memulai OpenLP. - + Enabling selected plugins... Mengaktifkan plugin terpilih... - - - No Internet Connection - Tidak Terhubung ke Internet - - Unable to detect an Internet connection. - Tidak dapat mendeteksi koneksi Internet. + No Internet Connection + Tidak Tersambung ke Internet - + + Unable to detect an Internet connection. + Tidak dapat mendeteksi sambungan Internet. + + + Sample Songs Contoh Lagu - + Select and download public domain songs. - Pilih dan unduh lagu domain bebas. + Pilih dan unduh lagu domain publik. - + Sample Bibles Contoh Alkitab - + Select and download free Bibles. Pilih dan unduh Alkitab gratis. - + Sample Themes Contoh Tema - + Select and download sample themes. Pilih dan unduh contoh tema. - + Set up default settings to be used by OpenLP. - Atur pengaturan bawaan pada OpenLP. + Siapkan setelan bawaan untuk digunakan oleh OpenLP. - + Default output display: Tampilan keluaran bawaan: - + Select default theme: Pilih tema bawaan: - + Starting configuration process... Memulai proses konfigurasi... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - Wisaya ini akan membantu mengonfigurasi OpenLP untuk penggunaan pertama. Klik tombol di bawah untuk memulai. + Wisaya ini akan membantu mengkonfigurasi OpenLP untuk penggunaan pertama. Klik tombol Selanjutnya di bawah untuk memulai. - + Setting Up And Downloading Persiapan dan Pengunduhan - + Please wait while OpenLP is set up and your data is downloaded. - Mohon tunggu selama OpenLP dipersiapkan dan data Anda diunduh. + Silakan tunggu selama OpenLP dipersiapkan dan data Anda diunduh. - + Setting Up Persiapan - + Click the finish button to start OpenLP. - Klik tombol selesai untuk memulai OpenLP. + Klik tombol Selesai untuk memulai OpenLP. - + Download complete. Click the finish button to return to OpenLP. - Unduhan selesai. Klik tombol selesai untuk kembali ke OpenLP. + Unduhan selesai. Klik tombol Selesai untuk kembali ke OpenLP. - + Click the finish button to return to OpenLP. - Klik tombol selesai untuk kembali ke OpenLP. + Klik tombol Selesai untuk kembali ke OpenLP. - + Custom Slides - Salindia Suai + Salindia Kustom - + Finish Selesai - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Sambungan internet tidak ditemukan. Wisaya Kali Pertama membutuhkan sambungan internet agar dapat mengunduh contoh lagu, Alkitab, dan tema. Klik tombol Selesai untuk memulai OpenLP dengan setelan awal dan tanpa data contoh. + +Untuk menjalankan lagi Wisaya Kali Pertama dan mengimpor data contoh di lain waktu, periksa sambungan Internet Anda dan jalankan lagi wisaya ini dengan memilih "Alat / Jalankan lagi Wisaya Kali Pertama" pada OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +Untuk membatalkan Wisaya Kali Pertama (dan tidak memulai OpenLP), klik tombol Batal sekarang. OpenLP.FormattingTagDialog - + Configure Formatting Tags - Konfigurasi Label Pemformatan + Mengkonfigurasi Label Pemformatan - + Edit Selection Sunting pilihan - + Save Simpan - + Description Deskripsi - + Tag Label - + Start HTML Mulai HTML - + End HTML Akhiri HTML @@ -2842,32 +2944,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error - Galat dalam Memperbarui + Kesalahan Pembaruan - + Tag "n" already defined. Label "n" sudah terdefinisi. - + New Tag - Label baru + Label Baru - + <HTML here> - <HTML di sini> + <HTML here> - + </and here> - </dan sini> + </and here> - + Tag %s already defined. Label %s telah terdefinisi. @@ -2875,261 +2977,261 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Merah - + Black Hitam - + Blue Biru - + Yellow Kuning - + Green Hijau - + Pink Merah Muda - + Orange - Jingga + Oranye - + Purple Ungu - + White Putih - + Superscript Tulis-atas - + Subscript Tulis-bawah - + Paragraph Paragraf - + Bold Tebal - + Italics Miring - + Underline Garis Bawah - + Break - Rehat + Pisah OpenLP.GeneralTab - + General Umum - + Monitors Monitor - + Select monitor for output display: Pilih monitor untuk tampilan keluaran: - + Display if a single screen Tampilkan jika layar tunggal - + Application Startup Awal Mulai Aplikasi - + Show blank screen warning Tampilkan peringatan layar kosong - + Automatically open the last service - Buka layanan terakhir secara otomatis + Buka Layanan terakhir secara otomatis - + Show the splash screen - Tampilkan logo di awal + Tampilkan layar pembuka - + Application Settings - Pengaturan Aplikasi + Setelan Aplikasi - + Prompt to save before starting a new service - Coba simpan sebelum memulai pelayanan baru + Sarankan untuk menyimpan sebelum memulai Layanan baru - + Automatically preview next item in service - Pratinjau item selanjutnya pada sevice - - - - sec - sec + Pratinjau secara otomatis butir selanjutnya pada Layanan + sec + dtk + + + CCLI Details Detail CCLI - + SongSelect username: Nama pengguna SongSelect: - + SongSelect password: - Sandi-lewat SongSelect: + Sandi SongSelect: - + X X - + Y Y - + Height Tinggi - + Width Lebar - + Check for updates to OpenLP - Cek pembaruan untuk OpenLP + Periksa pembaruan untuk OpenLP - + Unblank display when adding new live item - Jangan kosongkan layar saat menambah butir tayang baru + Jangan kosongkan layar saat menambah butir Tayang baru - + Timed slide interval: Selang waktu salindia: - + Background Audio Audio Latar - + Start background audio paused Mulai audio latar terjeda Service Item Slide Limits - + Batasan Salindia Butir Layanan - + Override display position: - + Gantikan posisi tampilan: - + Repeat track list - + Ulangi daftar lagu Behavior of next/previous on the last/first slide: - + Aturan selanjutnya/sebelumnya dari salindia terakhir/pertama: &Remain on Slide - + &Tetap pada Salindia &Wrap around - + &Pindah ke Salindia selanjutnya/sebelumnya pada butir Layanan yang sama &Move to next/previous service item - + &Pindah ke butir Layanan selanjutnya/sebelumnya OpenLP.LanguageManager - + Language Bahasa - + Please restart OpenLP to use your new language setting. - Mohon mulai ulang OpenLP untuk menggunakan pengaturan bahasa baru. + Silakan memulai-ulang OpenLP untuk menggunakan setelan bahasa baru. OpenLP.MainDisplay - + OpenLP Display Tampilan OpenLP @@ -3137,737 +3239,773 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Berkas - + &Import &Impor - + &Export &Ekspor - + &View - &Lihat + &Tinjau - + M&ode M&ode - + &Tools - &Kakas + &Alat - + &Settings - &Pengaturan + &Setelan - + &Language &Bahasa - + &Help - Bantua&n + &Bantuan - + Media Manager Manajer Media - + Service Manager Manajer Layanan - + Theme Manager Manajer Tema - + &New &Baru - + &Open &Buka - + Open an existing service. - Buka layanan yang ada. + Buka Layanan yang ada. - + &Save &Simpan - + Save the current service to disk. - Menyimpan layanan aktif ke dalam diska. + Simpan Layanan saat ini ke dalam disk. - + Save &As... Simp&an Sebagai... - + Save Service As Simpan Layanan Sebagai - + Save the current service under a new name. - Menyimpan layanan aktif dengan nama baru. + Simpan Layanan saat ini dengan nama baru. - + E&xit Kelua&r - + Quit OpenLP Keluar dari OpenLP - + &Theme &Tema - + &Configure OpenLP... - &Konfigurasi OpenLP... + &Mengkonfigurasi OpenLP... - + &Media Manager Manajer &Media - + Toggle Media Manager Ganti Manajer Media - + Toggle the visibility of the media manager. - Mengganti kenampakan manajer media. + Ganti visibilitas Manajer Media. - + &Theme Manager Manajer &Tema - + Toggle Theme Manager Ganti Manajer Tema - + Toggle the visibility of the theme manager. - Mengganti kenampakan manajer tema. + Ganti visibilitas Manajer Tema. - + &Service Manager - Manajer &Layanan + &Manajer Layanan - + Toggle Service Manager Ganti Manajer Layanan - + Toggle the visibility of the service manager. - Mengganti kenampakan manajer layanan. + Ganti visibilitas Manajer Layanan. - + &Preview Panel Panel &Pratinjau - + Toggle Preview Panel Ganti Panel Pratinjau - + Toggle the visibility of the preview panel. - Ganti kenampakan panel pratinjau. + Ganti visibilitas panel pratinjau. - + &Live Panel - Pane&l Tayang + &Panel Tayang - + Toggle Live Panel Ganti Panel Tayang - + Toggle the visibility of the live panel. - Mengganti kenampakan panel tayang. + Ganti visibilitas panel Tayang. - + &Plugin List Daftar &Plugin - + List the Plugins - Melihat daftar Plugin + Mendaftarkan Plugin - + &User Guide - T&untunan Pengguna + &Tuntunan Pengguna - + &About Tent&ang - + More information about OpenLP Informasi lebih lanjut tentang OpenLP - + &Online Help Bantuan &Daring - + &Web Site Situs &Web - + Use the system language, if available. - Gunakan bahasa sistem, jika ada. + Gunakan bahasa sistem, jika tersedia. - + Set the interface language to %s - Ubah bahasa antarmuka menjadi %s + Setel bahasa antarmuka menjadi %s - + Add &Tool... - Tambahkan Ala&t... + Tambahkan &Alat... - + Add an application to the list of tools. - Tambahkan aplikasi ke daftar alat. + Tambahkan sebuah aplikasi ke daftar alat. - + &Default &Bawaan - + Set the view mode back to the default. - Ubah mode tampilan ke bawaan. + Setel mode tinjauan ke bawaan. - + &Setup &Persiapan - + Set the view mode to Setup. - Pasang mode tampilan ke Persiapan. + Setel mode tinjauan ke Persiapan. - + &Live &Tayang - + Set the view mode to Live. - Pasang mode tampilan ke Tayang. + Setel mode tinjauan ke Tayang. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - OpenLP versi %s sekarang siap untuk diunduh (Anda menggunakan versi %s). + OpenLP versi %s siap untuk diunduh (Anda saat ini menjalankan versi %s). Versi terbaru dapat diunduh dari http://openlp.org/. - + OpenLP Version Updated Versi OpenLP Terbarui - + OpenLP Main Display Blanked Tampilan Utama OpenLP Kosong - + The Main Display has been blanked out Tampilan Utama telah dikosongkan - + Default Theme: %s Tema Bawaan: %s - + English Please add the name of your language here Inggris - + Configure &Shortcuts... - Atur &Pintasan... + Mengkonfigurasi &Pintasan... - + Close OpenLP Tutup OpenLP - + Are you sure you want to close OpenLP? - Yakin ingin menutup OpenLP? + Anda yakin ingin menutup OpenLP? - + Open &Data Folder... Buka Folder &Data... - + Open the folder where songs, bibles and other data resides. Buka folder tempat lagu, Alkitab, dan data lain disimpan. - + &Autodetect - &Autodeteksi + &Otodeteksi - + Update Theme Images Perbarui Gambar Tema - + Update the preview images for all themes. Perbarui gambar pratinjau untuk semua tema. - + Print the current service. - Cetak layanan saat ini. + Cetak Layanan saat ini. - + &Recent Files - Be&rkas Baru-baru Ini + Be&rkas Terbaru - + L&ock Panels Kunci Pane&l - + Prevent the panels being moved. - Hindari panel digerakkan. + Hindari panel untuk dipindahkan. - + Re-run First Time Wizard - Jalankan Wisaya Kali Pertama + Jalankan lagi Wisaya Kali Pertama - + Re-run the First Time Wizard, importing songs, Bibles and themes. - Jalankan Wisaya Kali Pertama, mengimpor lagu, Alkitab, dan tema. + Jalankan lagi Wisaya Kali Pertama, mengimpor lagu, Alkitab, dan tema. - + Re-run First Time Wizard? - Jalankan Wisaya Kali Pertama? + Jalankan lagi Wisaya Kali Pertama? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - Anda yakin ingin menjalankan Wisaya Kali Pertama? + Anda yakin ingin menjalankan lagi Wisaya Kali Pertama? -Menjalankan wisaya ini mungkin akan mengubah konfigurasi OpenLP saat ini dan mungkin menambah lagu ke dalam daftar lagu dan mengubah tema bawaan. +Menjalankan lagi wisaya ini mungkin akan mengubah konfigurasi OpenLP saat ini dan mungkin menambah lagu ke dalam daftar lagu dan mengubah tema bawaan. - + Clear List Clear List of recent files Bersihkan Daftar - + Clear the list of recent files. - Bersihkan daftar berkas baru-baru ini. + Bersihkan daftar berkas terbaru. - + Configure &Formatting Tags... - Konfigurasi Label Pem&formatan... - - - - Export OpenLP settings to a specified *.config file - Ekspor pengaturan OpenLP ke dalam sebuah berkas *.config + Mengkonfigurasi Label Pem&formatan... + Export OpenLP settings to a specified *.config file + Ekspor setelan OpenLP ke sebuah berkas *.config + + + Settings - Pengaturan + Setelan - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - Impor pengaturan OpenLP dari sebuah berkas *.config yang telah diekspor + Impor setelan OpenLP dari sebuah berkas *.config yang telah diekspor dari komputer ini atau komputer lain - + Import settings? - Impor pengaturan? + Impor setelan? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Apakah Anda yakin ingin meng-impor setelan? + +Meng-impor setelan akan membuat perubahan permanen pada konfigurasi OpenLP Anda saat ini. + +Meng-impor setelan yang salah dapat menyebabkan perilaku tak menentu atau OpenLP berakhir secara tidak wajar. - + Open File - + Membuka Berkas - + OpenLP Export Settings Files (*.conf) - + Berkas Ekspor Setelan OpenLP (*.conf) - + Import settings - + Impor setelan - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP sekarang akan ditutup. Setelan yang di-impor akan diterapkan saat berikutnya Anda memulai OpenLP. - + Export Settings File - + Berkas Ekspor Setelan - + OpenLP Export Settings File (*.conf) - + Berkas Ekspor Setelan OpenLP (*.conf) - + New Data Directory Error - + Kesalahan Direktori Data Baru + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Berkas yang Anda pilih nampaknya berkas setelan OpenLP yang valid. + +Bagian [%s] tidak valid + +Proses telah dihentikan dan tidak ada perubahan yang telah dibuat. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Sedang menyalin data OpenLP ke lokasi direktori data baru - %s - Silakan tunggu penyalinan selesai + + + + OpenLP Data directory copy failed + +%s + Penyalinan direktori data OpenLP gagal + +%s OpenLP.Manager - + Database Error - + Kesalahan Basis-Data - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Basis-data yang sedang dimuat dibuat dalam versi OpenLP yang lebih baru. Basis-data adalah versi %d, sedangkan OpenLP membutuhkan versi %d. Basis-data tidak akan dimuat. + +Basis-Data : %s - + OpenLP cannot load your database. Database: %s - + OpenLP tidak dapat memuat basis-data Anda. + +Basis-Data : %s OpenLP.MediaManagerItem - + No Items Selected - Tidak Ada Barang yang Terpilih + Tidak Ada Butir Terpilih - + &Add to selected Service Item - T&ambahkan ke dalam Butir Layanan + &Tambahkan ke Butir Layanan terpilih - + You must select one or more items to preview. - Anda harus memilih satu atau beberapa butir untuk dipratilik. + Anda harus memilih satu atau beberapa butir untuk dipratinjau. - + You must select one or more items to send live. Anda harus memilih satu atau beberapa butir untuk ditayangkan. - + You must select one or more items. Anda harus memilih satu atau beberapa butir. - + You must select an existing service item to add to. - Anda harus memilih butir layanan yang ada untuk ditambahkan. + Anda harus memilih sebuah Butir Layanan yang ada untuk ditambahkan. - + Invalid Service Item - Butir Layanan Tidak Sahih + Butir Layanan Tidak Valid - + You must select a %s service item. - Anda harus memilih sebuah butir layanan %s. + Anda harus memilih sebuah butir Layanan %s. - + You must select one or more items to add. - + Anda harus memilih satu atau lebih butir untuk menambahkan. - + No Search Results - + Tidak Ada Hasil Penelusuran - + Invalid File Type - + Tipe Berkas Tidak Valid - + Invalid File %s. Suffix not supported - + Berkas Tidak Valid %s. +Tidak ada dukungan untuk akhiran ini - + &Clone - + &Kloning - + Duplicate files were found on import and were ignored. - + Duplikasi berkas ditemukan saat impor dan diabaikan. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + Label <lyrics> hilang. - + <verse> tag is missing. - + Label <verse> hilang. OpenLP.PluginForm - + Plugin List Daftar Plugin - + Plugin Details Detail Plugin - + Status: Status: - + Active Aktif - + Inactive - Tidak Aktif + Nonaktif - + %s (Inactive) - % (Tidak Aktif) + %s (Nonaktif) - + %s (Active) %s (Aktif) - + %s (Disabled) - + %s (Dinonaktifkan) OpenLP.PrintServiceDialog - + Fit Page - Samakan dengan Halaman + Pas dengan Halaman - + Fit Width - Samakan dengan Lebar + Pas dengan Lebar OpenLP.PrintServiceForm - + Options - Pilihan + Opsi - + Copy Salin - + Copy as HTML Salin sebagai HTML - + Zoom In Perbesar - + Zoom Out Perkecil - + Zoom Original Kembalikan Ukuran - + Other Options - Pilihan Lain + Opsi Lain - + Include slide text if available - Masukkan teks dari salindia jika tersedia + Sertakan teks salindia jika tersedia - + Include service item notes - Masukkan catatan butir layanan + Masukkan catatan butir Layanan - + Include play length of media items - Masukkan lama putar butir media + Masukkan durasi permainan butir media - + Add page break before each text item - Tambahkan pemisan sebelum tiap butir teks + Tambahkan pemisah sebelum tiap butir teks - + Service Sheet - + Lembar Layanan - + Print - - - - - Title: - + Cetak + Title: + Judul + + + Custom Footer Text: - + Teks Catatan Kaki Kustom: OpenLP.ScreenList - + Screen Layar - + primary Utama @@ -3875,3397 +4013,3463 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Mulai</strong>: %s - + <strong>Length</strong>: %s - + <strong>Durasi</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - Atur Ulang Butir Layanan + Atur-Ulang Butir Layanan OpenLP.ServiceManager - + Move to &top - Pindahkan ke punc&ak + Pindahkan ke &puncak - + Move item to the top of the service. - Pindahkan butir ke puncak daftar layanan. + Pindahkan butir ke puncak daftar Layanan. - + Move &up - Pindahkan ke a&tas + Naikkan - + Move item up one position in the service. - Naikkan butir satu posisi pada daftar layanan. + Naikkan butir satu posisi pada daftar Layanan. - + Move &down - Pindahkan ke &bawah + Turunkan - + Move item down one position in the service. - Turunkan butir satu posisi pada daftar layanan. + Turunkan butir satu posisi pada daftar Layanan. - + Move to &bottom - Pindahkan ke &kaki + Pindahkan ke dasar - + Move item to the end of the service. - Pindahkan butir ke kaki daftar layanan. + Pindahkan butir ke akhir daftar Layanan. - + &Delete From Service - Hapus &dari Layanan + &Hapus dari Layanan - + Delete the selected item from the service. - Hapus butir terpilih dari layanan. + Hapus butir terpilih dari Layanan. - + &Add New Item - T&ambahkan Butir Baru + &Tambahkan Butir Baru - + &Add to Selected Item - T&ambahkan ke Butir Terpilih + &Tambahkan ke Butir Terpilih - + &Edit Item &Sunting Butir - + &Reorder Item - Atu&r Ulang Butir + &Atur-Ulang Butir - + &Notes - Catata&n + &Catatan - + &Change Item Theme - &Ubah Tema + &Ubah Tema Butir - + OpenLP Service Files (*.osz) Berkas Layanan OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - Berkas bukan berupa layanan. + Berkas bukanlah Layanan yang valid. Isi berkas tidak berupa UTF-8. - + File is not a valid service. - Berkas bukan layanan sahih. + Berkas bukan Layanan valid. - + Missing Display Handler - Penangan Tayang hilang + Penangan Tayang Hilang - + Your item cannot be displayed as there is no handler to display it Butir tidak dapat ditayangkan karena tidak ada penangan untuk menayangkannya - + Your item cannot be displayed as the plugin required to display it is missing or inactive - Butir ini tidak dapat ditampilkan karena plugin yang dibutuhkan untuk menampilkannya hilang atau tidak aktif + Butir ini tidak dapat ditampilkan karena plugin yang dibutuhkan untuk menampilkannya hilang atau nonaktif - + &Expand all &Kembangkan semua - + Expand all the service items. - Kembangkan seluruh butir layanan. + Kembangkan seluruh butir Layanan. - + &Collapse all - K&empiskan semua + &Kempiskan semua - + Collapse all the service items. - Kempiskan seluruh butir layanan. + Kempiskan seluruh butir Layanan. - + Open File Buka Berkas - + Moves the selection down the window. - Gerakkan pilihan ke bawah. + Pindahkan pilihan ke bawah jendela. - + Move up - Pindah atas + Naikkan - + Moves the selection up the window. - Pindahkan pilihan ke atas jendela + Pindahkan pilihan ke atas jendela. - + Go Live Tayangkan - + Send the selected item to Live. Tayangkan butir terpilih. - + &Start Time &Waktu Mulai - + Show &Preview Tampilkan &Pratinjau - + Modified Service - Layanan Terubah Suai + Layanan Termodifikasi - + The current service has been modified. Would you like to save this service? - Layanan saat ini telah terubah suai. Ingin menyimpan layanan ini? + Layanan saat ini telah termodifikasi. Ingin menyimpan Layanan ini? - + Custom Service Notes: - + Catatan Layanan Kustom: - + Notes: - + Catatan : - + Playing time: - + Waktu permainan: - + Untitled Service - + Layanan Tanpa Judul - + File could not be opened because it is corrupt. Berkas tidak dapat dibuka karena rusak. - + Empty File Berkas Kosong - + This service file does not contain any data. - Berkas layanan ini tidak mengandung data apa pun. + Berkas Layanan ini tidak berisi data apapun. - + Corrupt File Berkas Rusak - + Load an existing service. - + Muat Layanan yang ada saat ini. - + Save this service. - + Simpan Layanan ini. - + Select a theme for the service. - + Pilih suatu tema untuk Layanan - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Berkas ini rusak ataupun bukan berkas Layanan OpenLP 2.0. - - Service File Missing - - - - + Slide theme - + Tema salindia - + Notes - + Catatan - + Edit - + Sunting - + Service copy only - + Salinan Layanan saja - + Error Saving File - + Kesalahan Penyimpanan Berkas - + There was an error saving your file. - + Terjadi kesalahan dalam penyimpanan berkas. + + + + Service File(s) Missing + (Beberapa) Berkas Layanan Hilang + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + (Beberapa) berkas berikut dalam Layanan hilang: +<byte value="x9"/>%s + +Berkas ini akan dihapus jika adalah lanjutkan menyimpan. OpenLP.ServiceNoteForm - + Service Item Notes - + Catatan Butir Layanan OpenLP.SettingsForm - + Configure OpenLP - + Mengkonfigurasi OpenLP OpenLP.ShortcutListDialog - + Action - + Aksi - + Shortcut - + Pintasan - + Duplicate Shortcut - + Duplikasi Pintasan - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Pintasan "%s" sudah diterapkan untuk aksi lain, silakan gunakan Pintasan yang berbeda. - + Alternate - + Alternatif - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Pilih suatu aksi dan klik salah satu tombol di bawah ini untuk menentukan, berturut-turut, pintasan utama atau pintasan alternatif yang baru. - + Default - + Bawaan - + Custom - + Kustom - + Capture shortcut. - + Menentukan pintasan. - + Restore the default shortcut of this action. - + Mengembalikan pintasan bawaan untuk aksi ini. - + Restore Default Shortcuts - + Mengembalikan Pintasan Bawaan - + Do you want to restore all shortcuts to their defaults? - + Apakah Anda ingin mengembalikan semua pintasan ke bawaan-nya masing-masing? - + Configure Shortcuts - + Mengkonfigurasi Pintasan OpenLP.SlideController - + Hide - + Sembunyikan - + Go To - + Tuju Ke - + Blank Screen - + Layar Kosong - + Blank to Theme - + Kosongkan jadi Tema - + Show Desktop - + Tampilkan Desktop - + Previous Service - + Layanan Sebelumnya - + Next Service - + Layanan Selanjutnya - + Escape Item - + Butir Keluar - + Move to previous. - + Pindah ke sebelumnya. - + Move to next. - + Pindah ke selanjutnya. - + Play Slides - + Mainkan Salindia - + Delay between slides in seconds. - + Penundaan antar salindia dalam hitungan detik. - + Move to live. - + Pindah ke Tayang. - + Add to Service. - + Tambahkan ke Layanan. - + Edit and reload song preview. - + Sunting dan muat-ulang pratinjau lagu. - + Start playing media. - + Mulai mainkan media. - + Pause audio. - + Sela audio. - + Pause playing media. - + Sela media yang sedang dimainkan. - + Stop playing media. - + Stop media yang sedang dimainkan. - + Video position. - + Posisi video. - + Audio Volume. - - - - - Go to "Verse" - + Volume Audio. - Go to "Chorus" - + Go to "Verse" + Tuju ke "Bait" - Go to "Bridge" - + Go to "Chorus" + Tuju ke "Refrain" - Go to "Pre-Chorus" - + Go to "Bridge" + Tuju ke "Bridge" - - Go to "Intro" - + + Go to "Pre-Chorus" + Tuju ke "Pra-Refrain" - Go to "Ending" - + Go to "Intro" + Tuju ke "Intro" + Go to "Ending" + Tuju ke "Ending" + + + Go to "Other" - + Tuju ke "Lainnya" - + Previous Slide - + Salindia Sebelumnya - + Next Slide - + Salindia Selanjutnya - + Pause Audio - + Sela Audio - + Background Audio - + Audio Latar - + Go to next audio track. - + Tuju ke trek audio selanjutnya. - + Tracks - + Trek OpenLP.SpellTextEdit - + Spelling Suggestions - + Saran Ejaan - + Formatting Tags - + Pemformatan Label - + Language: - + Bahasa: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Hitungan jam: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Hitungan menit: - Start - + Seconds: + Hitungan detik: + + + + Item Start and Finish Time + Butir Waktu Mulai & Selesai - Finish - + Start + Mulai + Finish + Selesai + + + Length - + Durasi - + Time Validation Error - + Kesalahan Validasi Waktu - + Finish time is set after the end of the media item - + Waktu selesai disetel setelah akhir butir media - + Start time is after the finish time of the media item - + Waktu mulai diatur setelah waktu selesai butir media - + Theme Layout - + Tata-Letak Tema - + The blue box shows the main area. - + Kotak biru menunjukkan area utama. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + Kotak merah menunjukkan catatan kaki. OpenLP.ThemeManager - + Create a new theme. - + Buat suatu tema baru. - + Edit Theme - + Sunting Tema - + Edit a theme. - + Sunting suatu tema. - + Delete Theme - + Hapus Tema - + Delete a theme. - + Hapus suatu tema. - + Import Theme - + Impor Tema - + Import a theme. - + Impor suatu tema. - + Export Theme - + Ekspor Tema - + Export a theme. - + Ekspor suatu tema. - + &Edit Theme - + &Sunting Tema - + &Delete Theme - + &Hapus Tema - + Set As &Global Default - + Setel Sebagai &Bawaan Global - + %s (default) - + %s (bawaan) - + You must select a theme to edit. - + Anda harus memilih suatu tema untuk disunting. - + You are unable to delete the default theme. - + Anda tidak dapat menghapus tema bawaan. - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + Tema %s digunakan dalam plugin %s. + You have not selected a theme. + Anda belum memilih suatu tema. + + + Save Theme - (%s) - + Simpan Tema - (%s) - + Theme Exported - + Tema Telah Diekspor - + Your theme has been successfully exported. - + Tema pilihan Anda berhasil diekspor. - + Theme Export Failed - + Ekspor Tema Gagal - + Your theme could not be exported due to an error. - + Tema pilihan Anda tidak dapat diekspor karena suatu kesalahan. - + Select Theme Import File - + Pilih Berkas Tema Untuk Diimpor - + File is not a valid theme. - + Berkas bukan suatu tema yang valid. - + &Copy Theme - + &Salin Tema - + &Rename Theme - + &Namai-ulang Berkas - + &Export Theme - + &Ekspor Tema - + You must select a theme to rename. - + Anda harus memilih suatu tema untuk dinamai-ulang. - + Rename Confirmation - + Konfirmasi Penamaan-ulang - + Rename %s theme? - + Namai-ulang tema %s? - + You must select a theme to delete. - + Anda harus memilih suatu tema untuk dihapus. - + Delete Confirmation - + Konfirmasi Penghapusan - + Delete %s theme? - + Hapus tema %s? - + Validation Error - + Kesalahan Validasi - + A theme with this name already exists. - + Suatu tema dengan nama ini sudah ada. - + OpenLP Themes (*.theme *.otz) - + Tema OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Salinan %s - + Theme Already Exists - + Tema Sudah Ada + + + + Theme %s already exists. Do you want to replace it? + Tema %s sudah ada. Anda ingin menggantinya? OpenLP.ThemeWizard - + Theme Wizard - + Wisaya Tema - + Welcome to the Theme Wizard - + Selamat Datang di Wisaya Tema - + Set Up Background - + Siapkan Latar - + Set up your theme's background according to the parameters below. - + Siapkan latar tema Anda berdasarkan parameter di bawah ini. - + Background type: - + Tipe latar: - + Solid Color - + Warna Solid - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + Gradien + Color: + Warna: + + + + Gradient: + Gradien: + + + + Horizontal + Horisontal + + + + Vertical + Vertikal + + + + Circular + Sirkular + + + + Top Left - Bottom Right + Kiri Atas - Kanan Bawah + + + + Bottom Left - Top Right + Kiri Bawah - Kanan Atas + + + + Main Area Font Details + Rincian Fon di Area Utama + + + + Define the font and display characteristics for the Display text + Definisikan karakteristik fon dan tampilan untuk teks Tampilan + + + + Font: + Fon: + + + Size: - + Ukuran: - + Line Spacing: - + Jarak antar Baris: - + &Outline: - + &Garis Besar: - + &Shadow: - - - - - Bold - + &Bayangan: + Bold + Tebal + + + Italic - + Miring - + Footer Area Font Details - + Rincian Fon di Catatan Kaki - + Define the font and display characteristics for the Footer text - + Definisikan karakteristik fon dan tampilan untuk teks Catatan Kaki - + Text Formatting Details - + Rincian Pemformatan Teks - + Allows additional display formatting information to be defined - + Izinkan informasi dari format tampilan tambahan untuk didefinisikan - + Horizontal Align: - + Sejajarkan Horisontal: - + Left - + Kiri - + Right - + Kanan - + Center - + Tengah - + Output Area Locations - + Lokasi Area Keluaran - + Allows you to change and move the main and footer areas. - + Izinkan Anda untuk mengganti dan memindahkan area utama dan catatan kaki. - + &Main Area - + &Area Utama - + &Use default location - + &Gunakan lokasi bawaan - + X position: - + Posisi X: - + px - + pks - + Y position: - + Posisi Y: - + Width: - + Lebar: - + Height: - + Tinggi: - + Use default location - + Gunakan lokasi bawaan - + Theme name: - + Nama tema: - + Edit Theme - %s - + Sunting Tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Wisaya ini akan membantu Anda untuk membuat dan menyunting tema Anda. Klik tombol Selanjutnya di bawah ini untuk memulai proses dengan menyiapkan latar Anda. - + Transitions: - + Transisi: - + &Footer Area - + &Area Catatan Kaki - + Starting color: - + Warna mulai: - + Ending color: - + Warna akhir: - + Background color: - + Warna latar: - + Justify - + Justifikasi - + Layout Preview - + Pratinjau Tata-Letak - + Transparent - + Transparan - + Preview and Save - + Pratinjau dan Simpan - + Preview the theme and save it. - + Pratinjau tema dan simpan. + + + + (approximately %d lines per slide) + (sekitar %d baris per salindia) + + + + Background Image Empty + Gambar Latar Kosong + + + + You have not selected a background image. Please select one before continuing. + Anda belum memilih suatu gambar latar. Silakan pilih satu sebelum melanjutkan. + + + + Select Image + Pilih Gambar + + + + Theme Name Missing + Nama Tema Hilang + + + + There is no name for this theme. Please enter one. + Tidak ada nama untuk tema ini. Silakan masukkan suatu nama. + + + + Theme Name Invalid + Nama Tema Tidak Valid + + + + Invalid theme name. Please enter one. + Nama Tema Tidak Valid. Silakan masukkan suatu nama yang valid. OpenLP.ThemesTab - + Global Theme - + Tema Global - + Theme Level - + Tingkatan Tema - + S&ong Level - + Tingkatan Lagu - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + Gunakan tema dari setiap lagu dalam basis-data. Jika sebuah lagu tidak memiliki tema yang terkait dengannya, tema Layanan akan digunakan. Jika Layanan tidak memiliki tema, tema global akan digunakan. - + &Service Level - + &Tingkatan Layanan - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + Gunakan tema dari Layanan, mengesampingkan apapun tema lagu individual. Jika Layanan tidak memiliki tema, tema global akan digunakan. - + &Global Level - + &Tingkatan Global - + Use the global theme, overriding any themes associated with either the service or the songs. - + Gunakan tema global, mengesampingkan apapun tema yang terkait dengan Layanan atau lagu. - + Themes - + Tema OpenLP.Ui - + Error - - - - - About - + Kesalahan - &Add - + About + Tentang - Advanced - + &Add + &Tambahkan - All Files - + Advanced + Lanjutan - Bottom - + All Files + Semua Berkas - Browse... - + Bottom + Dasar - Cancel - + Browse... + Menelusuri... - CCLI number: - + Cancel + Batal + CCLI number: + Nomor CCLI: + + + Create a new service. - + Buat suatu Layanan baru. - + &Delete - - - - - &Edit - + &Hapus + &Edit + &Sunting + + + Empty Field - + Bidang Kosong - + Export - + Ekspor - + pt Abbreviated font pointsize unit - - - - - Image - + pn - Import - + Image + Gambar - + + Import + Impor + + + Live Tayang - + Live Background Error - + Kesalahan Latar Tayang - + Load - - - - - Middle - + Muat - New - + Middle + Tengah - New Service - + New + Baru - New Theme - + New Service + Layanan Baru - - No File Selected - Singular - + + New Theme + Tema Baru - No Files Selected - Plural - + No File Selected + Singular + Tidak Ada Berkas Terpilih - No Item Selected - Singular - + No Files Selected + Plural + Tidak Ada Satupun Berkas Terpilih - No Items Selected - Plural - + No Item Selected + Singular + Tidak Ada Butir Terpilih - openlp.org 1.x - + No Items Selected + Plural + Tidak Ada Satupun Butir Terpilih + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Pratinjau - + Replace Background - + Ganti Latar - + Reset Background - + Setel-Ulang Latar - + s The abbreviated unit for seconds - - - - - Save && Preview - + dtk + Save && Preview + Simpan && Pratinjau + + + Search - + Penelusuran - + You must select an item to delete. - + Anda harus memilih suatu butir untuk dihapus. - + You must select an item to edit. - - - - - Save Service - + Anda harus memilih suatu butir untuk disunting. + Save Service + Simpan Layanan + + + Service - + Layanan - + Start %s - - - - - Theme - Singular - + Mulai %s + Theme + Singular + Tema + + + Themes Plural - + Tema - + Top - + Puncak - + Version - + Versi - + Delete the selected item. - + Hapus butir terpilih. - + Move selection up one position. - + Naikkan pilihan satu posisi. - + Move selection down one position. - + Turunkan pilihan satu posisi. - + &Vertical Align: - - - - - Finished import. - + &Sejajarkan Vertikal: - Format: - + Finished import. + Impor selesai. - - Importing - + + Format: + Format: - Importing "%s"... - + Importing + Mengimpor - Select Import Source - + Importing "%s"... + Mengimpor "%s"... + Select Import Source + Pilih Sumber Impor + + + Select the import format and the location to import from. - + Pilih format impor dan lokasi sumber. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Pengimpor openlp.org 1.x telah dinonaktifkan karena modul Python hilang. Jika Anda ingin menggunakan pengimpor ini, Anda harus memasang modul "python-sqlite". - + Open %s File - - - - - %p% - + Buka Berkas %s + %p% + %p% + + + Ready. - + Siap. - + Starting import... - + Memulai impor... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Anda harus menentukan setidaknya satu berkas %s untuk diimpor. Welcome to the Bible Import Wizard - + Selamat Datang di Wisaya Impor Alkitab - + Welcome to the Song Export Wizard - + Selamat Datang di Wisaya Ekspor Lagu - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Selamat Datang di Wisaya Impor Lagu - Authors - Plural - + Author + Singular + Pengarang - - © - Copyright symbol. - + + Authors + Plural + Pengarang - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + Buku Lagu - Title and/or verses not found - + Song Books + Plural + Buku Lagu + + + + Song Maintenance + Pengelolaan Lagu + + + + Topic + Singular + Topik - XML syntax error - + Topics + Plural + Topik + + + + Continuous + Kontinu + + + + Default + Bawaan + + + + Display style: + Gaya tampilan: + + + + Duplicate Error + Kesalahan Duplikasi + + + + File + Berkas + + + + Help + Bantuan + + + + h + The abbreviated unit for hours + jam + + + + Layout style: + Gaya tata-letak: + + + + Live Toolbar + Bilah Alat Tayang + + + + m + The abbreviated unit for minutes + mnt + + + + OpenLP is already running. Do you wish to continue? + OpenLP sudah berjalan. Anda ingin melanjutkan? + + + + Settings + Setelan + + + + Tools + Alat + + + + Unsupported File + Tidak Ada Dukungan untuk Berkas + + + + Verse Per Slide + Ayat per Salindia + + + + Verse Per Line + Ayat per Baris + View + Tinjau + + + + Title and/or verses not found + Judul dan/atau bait-bait tidak ditemukan + + + + XML syntax error + Kesalahan sintaks XML + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + Mode Tinjauan - Play Slides in Loop - + Open service. + Buka Layanan. + + + + Print Service + Cetak Layanan + + + + Replace live background. + Ganti Latar Tayang. + + + + Reset live background. + Setel-Ulang latar Tayang. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Pisah salindia menjadi dua jika tidak muat pada layar sebagai satu salindia. + + + + Welcome to the Bible Upgrade Wizard + Selamat Datang di Wisaya Pemutakhiran Alkitab + + + + Confirm Delete + Konfirmasi Penghapusan + Play Slides in Loop + Mainkan Semua Salindia Berulang-ulang + + + Play Slides to End - + Mainkan Semua Salindia sampai Akhir - + Stop Play Slides in Loop - + Stop Mainkan Semua Salindia Berulang-ulang - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + Stop Mainkan Semua Salindia sampai Akhir + Next Track + Trek Selanjutnya + + + + Search Themes... + Search bar place holder text + Telusuri Tema... + + + + Optional &Split + Pisah &Opsional + + + + Invalid Folder Selected + Singular + Folder Terpilih Tidak Valid + + + + Invalid File Selected + Singular + Berkas Terpilih Tidak Valid + + + + Invalid Files Selected + Plural + Beberapa Berkas Terpilih Tidak Valid + + + No Folder Selected Singular - + Tidak Ada Folder Terpilih - + Open %s Folder - + Buka Folder %s - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Anda harus menentukan sebuah berkas %s untuk diimpor. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Anda harus menentukan sebuah folder %s untuk diimpor. + + + + Importing Songs + Mengimpor Lagu OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 dan %2 - + %1, and %2 Locale list separator: end - + %1, dan %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Plugin Presentasi</strong><br />Plugin presentasi menyediakan kemampuan untuk menampilkan presentasi dengan sejumlah program berbeda. Pemilihan program presentasi yang ada tersedia untuk pengguna dalam kotak tarik-turun. - + Presentation name singular - + Presentasi - + Presentations name plural - + Presentasi - + Presentations container title - + Presentasi - + Load a new presentation. - + Muat suatu presentasi baru. - + Delete the selected presentation. - + Hapus presentasi terpilih. - + Preview the selected presentation. - + Pratinjau presentasi terpilih. - + Send the selected presentation live. - + Tayangkan presentasi terpilih. - + Add the selected presentation to the service. - + Tambahkan presentasi terpilih ke Layanan. PresentationPlugin.MediaItem - + Select Presentation(s) - + Pilih (beberapa) Presentasi - + Automatic - + Otomatis - + Present using: - + Tampilkan dengan: - + File Exists - + Berkas Sudah Ada - + A presentation with that filename already exists. - + Suatu presentasi dengan nama itu sudah ada. - + This type of presentation is not supported. - + Tidak ada dukungan untuk tipe presentasi ini. - + Presentations (%s) - + Presentasi (%s) - + Missing Presentation - + Presentasi Hilang - + The presentation %s is incomplete, please reload. - + Presentasi %s tidak lengkap, silakan muat-ulang. - + The presentation %s no longer exists. - + Presentasi %s tidak ada lagi. PresentationPlugin.PresentationTab - + Available Controllers - + Pengontrol yang Tersedia - + %s (unavailable) - + %s (tidak tersedia) - + Allow presentation application to be overridden - + Izinkan aplikasi presentasi untuk digantikan RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Plugin Remote</strong><br/>Plugin Remote menyediakan kemampuan untuk mengirimkan pesan ke versi OpenLP yang sedang berjalan pada suatu komputer berbeda via peramban web atau melalui API remote. - Remotes - name plural - + Remote + name singular + Remote - + + Remotes + name plural + Remote + + + Remote container title - + Remote RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + Remote OpenLP 2.0 + + + OpenLP 2.0 Stage View - + Tinjauan Bertahap OpenLP 2.0 - + Service Manager - + Manajer Layanan - + Slide Controller - - - - - Alerts - + Pengontrol Salindia - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Peringatan - Home - + Search + Penelusuran + + + + Refresh + Segarkan-ulang - Theme - + Blank + Kosong + + + + Show + Tampilkan + + + + Prev + Sebelumnya + + + + Next + Selanjutnya + + + + Text + Teks + + + + Show Alert + Tampilkan Peringatan + + + + Go Live + Tayangkan + + + + No Results + Tidak Ada Hasil + + + + Options + Opsi + + + + Add to Service + Tambahkan ke Layanan + + + + Home + Beranda - Desktop - + Theme + Tema - + + Desktop + Desktop + + + Add &amp; Go to Service - + Tambahkan &amp; Tuju ke Layanan + + + + Service + Layanan + + + + Slides + Salindia RemotePlugin.RemoteTab - + Serve on IP address: - + Tugaskan di alamat IP: - + Port number: - + Nomor port: - + Server Settings - + Setelan Server - + Remote URL: - + URL Remote: - + Stage view URL: - + URL Tinjauan Bertahap: - + Display stage time in 12h format - + Tampilkan waktu bertahap dalam format 12 jam - + Android App - + Apl. Android - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Pindai kode QR atau klik <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> untuk memasang apl. Android dari Google Play. SongUsagePlugin - + &Song Usage Tracking - + &Pelacakan Penggunaan Lagu - + &Delete Tracking Data - + &Hapus Data Pelacakan - + Delete song usage data up to a specified date. - + Hapus data penggunaan lagu sampai tanggal tertentu. - + &Extract Tracking Data - + &Ekstrak Data Pelacakan - + Generate a report on song usage. - + Hasilkan suatu laporan mengenai penggunaan lagu - + Toggle Tracking - + Ganti Pelacakan - + Toggle the tracking of song usage. - + Ganti pelacakan penggunaan lagu - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Plugin PenggunaanLagu</strong><br />Plugin ini melacak penggunaan lagu dalam Layanan. - + SongUsage name singular - + PenggunaanLagu - + SongUsage name plural - + PenggunaanLagu - + SongUsage container title - + PenggunaanLagu - + Song Usage - + Penggunaan Lagu - + Song usage tracking is active. - + Pelacakan penggunaan lagu aktif. - + Song usage tracking is inactive. - + Pelacakan penggunaan lagu nonaktif. - + display - + tampilkan - + printed - + tercetak SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Hapus Data Penggunaan Lagu - + Delete Selected Song Usage Events? - + Hapus Event Penggunaan Lagu Terpilih? - + Are you sure you want to delete selected Song Usage data? - + Anda yakin ingin menghapus data Penggunaan Lagu terpilih? - + Deletion Successful - + Penghapusan Berhasil - + All requested data has been deleted successfully. - + Semua data yang diminta telah berhasil dihapus. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Pilih tanggal sampai dengan mana data penggunaan lagu akan dihapus. Semua data terekam sebelum tanggal ini akan dihapus secara permanen. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Ekstraksi Penggunaan Lagu - + Select Date Range - + Pilih Kisaran Tanggal - + to - + ke - + Report Location - + Laporkan Lokasi - + Output File Location - + Lokasi Berkas Keluaran - + usage_detail_%s_%s.txt - + rincian_penggunaan_%s_%s.txt - + Report Creation - + Pembuatan Laporan - + Report %s has been successfully created. - + Laporan +%s +telah berhasil dibuat. - + Output Path Not Selected - + Jalur Keluaran Belum Terpilih - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Anda belum menetapkan lokasi keluaran yang valid untuk laporan penggunaan lagu. Silakan pilih suatu jalur yang ada di komputer Anda. SongsPlugin - + &Song - + &Lagu - + Import songs using the import wizard. - + Impor lagu dengan wisaya impor - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Plugin Lagu</strong><br />Plugin Lagu menyediakan kemampuan untuk menampilkan dan mengelola lagu. - + &Re-index Songs - + &Indeks-ulang Lagu - + Re-index the songs database to improve searching and ordering. - + Indeks-ulang basis-data lagu untuk mempercepat penelusuran dan pengaturan - + Reindexing songs... - - - - - Arabic (CP-1256) - + Mengindeks-ulang Lagu... - Baltic (CP-1257) - + Arabic (CP-1256) + Arab (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Baltik (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Eropa Tengah (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Cyrillic (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Yunani (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Ibrani (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Jepang (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Korea (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Mandarin - Sederhana (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thailand (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Mandarin - Tradisional (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Turki (CP-1254) + Vietnam (CP-1258) + Vietnam (CP-1258) + + + Western European (CP-1252) - + Eropa Barat (CP-1252) - + Character Encoding - + Pengodean Karakter - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Setelan halaman-kode ini bertanggung-jawab +atas representasi karakter yang benar. +Biasanya pilihan yang dipilih sebelumnya sudah baik. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Silakan pilih pengodean karakter. +Pengodean ini bertanggung-jawab atas representasi karakter yang benar. - + Song name singular - + Lagu - + Songs name plural - + Lagu - + Songs container title - + Lagu - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + Ekspor lagu dengan wisaya ekspor. - Preview the selected song. - + Add a new song. + Tambahkan sebuah lagu baru. - Send the selected song live. - + Edit the selected song. + Sunting lagu terpilih. + Delete the selected song. + Hapus lagu terpilih. + + + + Preview the selected song. + Pratinjau lagu terpilih. + + + + Send the selected song live. + Tayangkan lagu terpilih. + + + Add the selected song to the service. - + Tambahkan lagu terpilih ke Layanan + + + + Reindexing songs + Mengindeks-ulang lagu SongsPlugin.AuthorsForm - + Author Maintenance - + Pengelolaan Pengarang - + Display name: - + Nama tampilan: - + First name: - + Nama depan: - + Last name: - + Nama belakang: - + You need to type in the first name of the author. - + Anda harus masukkan nama depan pengarang. - + You need to type in the last name of the author. - + Anda harus masukkan nama belakang pengarang. - + You have not set a display name for the author, combine the first and last names? - + Anda belum menetapkan nama tampilan pengarang. Kombinasikan nama depan dan belakang? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Berkas tidak memiliki ekstensi yang valid. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Dikelola oleh %s - + [above are Song Tags with notes imported from EasyWorship] - + +[di atas ini adalah Label Lagu beserta catatan yang diimpor dari EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Meta Data - + Custom Book Names - + Nama Kitab Kustom SongsPlugin.EditSongForm - + Song Editor - + Penyunting Lagu - + &Title: - + &Judul: - + Alt&ernate title: - + Judul alternatif: - + &Lyrics: - + &Lirik: - + &Verse order: - + &Urutan bait: - + Ed&it All - + Sunting Semua - + Title && Lyrics - + Judul && Lirik - + &Add to Song - + &Tambahkan ke Lagu - + &Remove - + &Hapus - + &Manage Authors, Topics, Song Books - + &Kelola Pengarang, Topik, Buku Lagu - + A&dd to Song - + Tambahkan ke Lagu - + R&emove - + Singkirkan - + Book: - + Buku Lagu: - + Number: - + Nomor: - + Authors, Topics && Song Book - + Pengarang, Topik, && Buku Lagu - + New &Theme - + Tema &Baru - + Copyright Information - + Informasi Hak Cipta - + Comments - + Komentar - + Theme, Copyright Info && Comments - + Tema, Info Hak Cipta, && Komentar - + Add Author - + Tambahkan Pengarang - + This author does not exist, do you want to add them? - + Pengarang ini tidak ada, Anda ingin menambahkannya? - + This author is already in the list. - + Pengarang ini sudah ada dalam daftar. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Anda belum memilih pengarang yang valid. Pilihlah suatu pengarang dari daftar, atau ketik suatu pengarang baru dan klik tombol "Tambahkan Pengarang ke Lagu" untuk menambahkan pengarang baru tersebut. - + Add Topic - + Tambahkan Topik - + This topic does not exist, do you want to add it? - + Topik ini tidak ada, Anda ingin menambahkannya? - + This topic is already in the list. - + Topik ini sudah ada dalam daftar. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Anda belum memilih topik yang valid. Pilihlah suatu topik dari daftar, atau ketik sebuah topik baru dan klik tombol "Tambahkan Topik ke Lagu" untuk menambahkan topik baru tersebut. - + You need to type in a song title. - + Anda harus mengetikkan judul lagu. - + You need to type in at least one verse. - + Anda harus mengetikkan setidaknya satu bait. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Urutan bait tidak valid. Tidak ada bait yang sesuai dengan %s. Entri yang valid adalah %s. - + Add Book - + Tambahkan Buku Lagu - + This song book does not exist, do you want to add it? - + Buku lagu ini tidak ada, Anda ingin menambahkannya? - + You need to have an author for this song. - + Anda harus masukkan suatu pengarang untuk lagu ini. - - You need to type some text in to the verse. - - - - + Linked Audio - + Audio Terhubung - + Add &File(s) - + Tambahkan &(beberapa) Berkas - + Add &Media - + Tambahkan &Media - + Remove &All - + Hapus &Semua - + Open File(s) - + Buka (beberapa) Berkas - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Peringatan:</strong> Tidak semua bait tersebut digunakan. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Urutan bait tidak valid. Tidak ada bait yang sesuai dengan %s. Entri yang valid adalah %s. SongsPlugin.EditVerseForm - + Edit Verse - + Sunting Bait - + &Verse type: - + &Tipe bait: - + &Insert - + &Sisipkan - + Split a slide into two by inserting a verse splitter. - + Pisah salindia menggunakan pemisah bait. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Wisaya Ekspor Lagu - + Select Songs - + Pilih Lagu - + Check the songs you want to export. - + Centang lagu-lagu yang ingin Anda ekspor: - + Uncheck All - + Hapus Semua Centang - + Check All - + Centang Semua - + Select Directory - + Pilih Direktori - + Directory: - + Direktori: - + Exporting - + Mengekspor - + Please wait while your songs are exported. - + Silakan tunggu selama lagu diekspor. - + You need to add at least one Song to export. - + Anda harus masukkan setidaknya satu lagu untuk diekspor. - + No Save Location specified - + Lokasi Penyimpanan Belum Ditentukan - + Starting export... - + Memulai ekspor... - + You need to specify a directory. - + Anda harus menentukan sebuah direktori. - + Select Destination Folder - + Pilih Folder Tujuan - + Select the directory where you want the songs to be saved. - + Pilih direktori untuk menyimpan lagu. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Wisaya ini akan membantu Anda mengekspor lagu ke format lagu penyembahan <strong>OpenLyrics</strong> yang terbuka dan gratis. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Pilih Dokumen / Berkas Presentasi - + Song Import Wizard - + Wisaya Impor Lagu - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Wisaya ini akan membantu Anda mengimpor lagu dari berbagai format. Klik tombol Selanjutnya di bawah untuk memulai proses dengan memilih format untuk diimpor. - + Generic Document/Presentation - + Dokumen / Presentasi Generik - + Add Files... - + Tambahkan Berkas... - + Remove File(s) - + Hapus (beberapa) Berkas - + Please wait while your songs are imported. - + Silakan tunggu selama lagu diimpor. - + OpenLP 2.0 Databases - + Basis-Data OpenLP 2.0 - + openlp.org v1.x Databases - + Basis-Data openlp.org v1.x - + Words Of Worship Song Files - + Berkas Lagu Words of Worship - + Songs Of Fellowship Song Files - + Berkas Lagu Song Of Fellowship - + SongBeamer Files - + Berkas SongBeamer - + SongShow Plus Song Files - + Berkas Lagu SongShow Plus - + Foilpresenter Song Files - + Berkas Lagu Foilpresenter - + Copy - + Salin - + Save to File - + Simpan jadi Berkas - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Pengimpor Songs of Fellowhip telah dinonaktifkan karena OpenLP tidak dapat mengakses OpenOffice atau LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Pengimpor dokumen / presentasi generik telah dinonaktifkan karena OpenLP tidak dapat mengakses OpenOffice atau LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + Lagu OpenLyrics atau OpenLP 2.0 yang telah diekspor - + OpenLyrics Files - + Berkas OpenLyrics - + CCLI SongSelect Files - + Berkas CCLI SongSelect - + EasySlides XML File - + Berkas XML EasySlides - + EasyWorship Song Database - + Basis-Data Lagu EasyWorship - + DreamBeam Song Files - + Berkas Lagu DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. - + Anda harus menentukan folder basis-data PowerSong 1.0 yang valid. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + Pertama konversi dahulu basis-data ZionWorx ke berkas teks CSV, seperti yang dijelaskan pada <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + Berkas Lagu SundayPlus - + This importer has been disabled. - + Pengimpor telah dinonaktifkan. - + MediaShout Database - + Basis-data MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Pengimpor MediaShout hanya didukung dalam Windows. Ini telah dinonaktifkan karena modul Python hilang. Jika Anda ingin menggunakan pengimpor ini, Anda harus memasang modul "pyodbc". - + SongPro Text Files - + Berkas Teks SongPro - + SongPro (Export File) - + SongPro (Berkas Ekspor) - + In SongPro, export your songs using the File -> Export menu - + Pada SongPro, ekspor lagu menggunakan menu Berkas -> Ekspor SongsPlugin.MediaFilesForm - + Select Media File(s) - + Pilih (beberapa) Berkas Media - + Select one or more audio files from the list below, and click OK to import them into this song. - + Pilih satu atau lebih berkas audio dari daftar di bawah, dan klik OK untuk mengimpornya ke lagu ini. SongsPlugin.MediaItem - + Titles - + Judul - + Lyrics - + Lirik - + CCLI License: - + Lisensi CCLI: - + Entire Song - + Keseluruhan Lagu - + Are you sure you want to delete the %n selected song(s)? - + + Anda yakin ingin menghapus %n lagu (- lagu) terpilih ini. + - + Maintain the lists of authors, topics and books. - + Kelola daftar pengarang, topik, dan buku. - + copy For song cloning - + salin - + Search Titles... - + Telusuri Judul... - + Search Entire Song... - + Telusuri Seluruh Lagu... - + Search Lyrics... - + Telusuri Lirik... - + Search Authors... - + Telusuri Pengarang... - + Search Song Books... - + Telusuri Buku Lagu... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Tidak dapat membuka basis-data MediaShout SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Bukan basis-data lagu openlp.org 1.x yang valid. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Bukan basis-data lagu OpenLP 2.0 yang valid. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Mengekspor "%s"... SongsPlugin.PowerSongImport - + No songs to import. - + Tidak ada lagu untuk diimpor. - + Verses not found. Missing "PART" header. - + Bait tidak ditemukan. Header "PART" hilang. + + + + No %s files found. + Berkas %s tidak ditemukan. + + + + Invalid %s file. Unexpected byte value. + Berkas %s tidak valid. Nilai byte tidak terduga. + + + + Invalid %s file. Missing "TITLE" header. + Berkas %s tidak valid. Header "TITLE" hilang. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Berkas %s tidak valid. Header "COPYRIGHTLINE" hilang. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Pengelolaan Buku Lagu - &Publisher: - + &Name: + &Nama: - + + &Publisher: + &Penerbit: + + + You need to type in a name for the book. - + Anda harus mengetikkan nama untuk buku lagu. SongsPlugin.SongExportForm - + Your song export failed. - + Ekspor lagu gagal. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Ekspor selesai. Untuk mengimpor berkas ini gunakan pengimpor <strong>OpenLyrics</strong>. SongsPlugin.SongImport - + copyright - + hak cipta - + The following songs could not be imported: - + Lagu berikut tidak dapat diimpor: - + Cannot access OpenOffice or LibreOffice - + Tidak dapat mengakses OpenOffice atau LibreOffice - + Unable to open file - + Tidak dapat membuka berkas - + File not found - + Berkas tidak ditemukan SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Tidak dapat menambahkan pengarang. - + This author already exists. - + Pengarang sudah ada. - + Could not add your topic. - + Tidak dapat menambahkan topik. - + This topic already exists. - + Topik sudah ada. - + Could not add your book. - + Tidak dapat menambahkan buku lagu. - + This book already exists. - + Buku lagu sudah ada. - + Could not save your changes. - + Tidak dapat menyimpan perubahan. - + Could not save your modified author, because the author already exists. - + Tidak dapat menyimpan pengarang yang telah dimodifikasi, karena sudah ada. - + Could not save your modified topic, because it already exists. - + Tidak dapat menyimpan topik yang telah dimodifikasi, karena sudah ada. - + Delete Author - + Hapus Pengarang - + Are you sure you want to delete the selected author? - + Anda yakin ingin menghapus pengarang terpilih? - + This author cannot be deleted, they are currently assigned to at least one song. - + Pengarang tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. - + Delete Topic - + Hapus Topik - + Are you sure you want to delete the selected topic? - + Anda yakin ingin menghapus topik terpilih? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Topik tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. - + Delete Book - + Hapus Buku Lagu - + Are you sure you want to delete the selected book? - + Anda yakin ingin menghapus buku lagu terpilih? - + This book cannot be deleted, it is currently assigned to at least one song. - + Buku lagu tidak dapat dihapus, karena masih terkait dengan setidaknya satu lagu. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Pengarang %s sudah ada. Anda ingin membuat lagu dengan pengarang %s menggunakan pengarang %s yang sudah ada? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Topik %s sudah ada. Anda ingin membuat lagu dengan topik %s menggunakan topik %s yang sudah ada? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Buku lagu %s sudah ada. Anda ingin membuat lagu dengan buku lagu %s menggunakan buku lagu %s yang sudah ada? SongsPlugin.SongsTab - + Songs Mode - + Mode Lagu - + Enable search as you type - + Gunakan penelusuran saat Anda mengetikkannya - + Display verses on live tool bar - + Tampilkan semua bait pada Bilah Alat Tayang - + Update service from song edit - + Perbarui Layanan dari penyuntingan lagu - + Import missing songs from service files - + Impor lagu yang hilang dari berkas Layanan SongsPlugin.TopicsForm - + Topic Maintenance - + Pengelolaan Topik - + Topic name: - + Nama topik: - + You need to type in a topic name. - + Anda harus mengetikkan nama topik. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Bait - Bridge - + Chorus + Refrain - Pre-Chorus - + Bridge + Bridge - Intro - + Pre-Chorus + Pra-Refrain - Ending - + Intro + Intro + Ending + Ending + + + Other Lainnya @@ -7273,14 +7477,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Kesalahan pembacaan berkas CSV. - + File not valid ZionWorx CSV format. - + Berkas bukan format CSV ZionWorx yang valid. + + + + Line %d: %s + Baris %d: %s + + + + Decoding error: %s + Kesalahan pendekodean: %s + + + + Record %d + Rekaman %d - \ No newline at end of file + diff --git a/resources/i18n/ja.ts b/resources/i18n/ja.ts index 3b7cfe93f..044a75bf5 100644 --- a/resources/i18n/ja.ts +++ b/resources/i18n/ja.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert 警告(&A) - + Show an alert message. 警告メッセージを表示します。 - + Alert name singular 警告 - + Alerts name plural 警告 - + Alerts container title 警告 - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>警告プラグイン</strong><br />警告プラグインは、画面への警告の表示を制御します。 @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message 警告メッセージ - + Alert &text: 警告テキスト(&T): - + &New 新規作成(&N) - + &Save 保存(&S) - + Displ&ay 表示(&A) - + Display && Cl&ose 表示して閉じる(&O) - + New Alert 新しい警告 - + You haven't specified any text for your alert. Please type in some text before clicking New. 警告テキストが何も指定されていません。新規作成をクリックする前にテキストを入力してください。 - + &Parameter: パラメータ(&P): - + No Parameter Found 引数が見つかりません - + You have not entered a parameter to be replaced. Do you want to continue anyway? 置換する引数が入力されていません。 続けますか? - + No Placeholder Found プレースホルダーが見つかりません - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? 警告テキストは、'<>'を含みません。 処理を続けてもよろしいですか? @@ -118,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font フォント - + Font name: フォント名: - + Font color: 文字色: - + Background color: 背景色: - + Font size: フォント サイズ: - + Alert timeout: 警告のタイムアウト: @@ -151,544 +152,544 @@ Do you want to continue anyway? BiblesPlugin - + &Bible 聖書(&B) - + Bible name singular 聖書 - + Bibles name plural 聖書 - + Bibles container title 聖書 - + No Book Found 書名が見つかりません - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. 書名がこの聖書に見つかりません。書名が正しいか確認してください。 - + Import a Bible. 聖書をインポートします。 - + Add a new Bible. 新しい聖書を追加します。 - + Edit the selected Bible. 選択された聖書を編集します。 - + Delete the selected Bible. 選択された聖書を削除します。 - + Preview the selected Bible. 選択された聖書をプレビューします。 - + Send the selected Bible live. 選択された聖書をライブへ送信します。 - + Add the selected Bible to the service. 選択された聖書を礼拝プログラムに追加します。 - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>聖書プラグイン</strong><br />聖書プラグインは、礼拝プログラムで様々な訳の御言葉を表示する機能を提供します。 - + &Upgrade older Bibles 古い聖書を更新(&U) - + Upgrade the Bible databases to the latest format. 聖書データベースを最新の形式に更新します。 - + Genesis 創世記 - + Exodus 出エジプト記 - + Leviticus レビ記 - + Numbers 民数記 - + Deuteronomy 申命記 - + Joshua ヨシュア記 - + Judges 士師記 - + Ruth ルツ記 - + 1 Samuel サムエル記上 - + 2 Samuel サムエル記下 - + 1 Kings 列王記上 - + 2 Kings 列王記下 - + 1 Chronicles 歴代誌上 - + 2 Chronicles 歴代誌下 - + Ezra エズラ記 - + Nehemiah ネヘミヤ記 - + Esther エステル記 - + Job ヨブ記 - + Psalms 詩編 - + Proverbs 箴言 - + Ecclesiastes コヘレトの言葉 - + Song of Solomon 雅歌 - + Isaiah イザヤ書 - + Jeremiah エレミヤ書 - + Lamentations 哀歌 - + Ezekiel エゼキエル書 - + Daniel ダニエル書 - + Hosea ホセア書 - + Joel ヨエル書 - + Amos アモス書 - + Obadiah オバデヤ書 - + Jonah ヨナ書 - + Micah ミカ書 - + Nahum ナホム書 - + Habakkuk ハバクク書 - + Zephaniah ゼファニヤ書 - + Haggai ハガイ書 - + Zechariah ゼカリヤ書 - + Malachi マラキ書 - + Matthew マタイによる福音書 - + Mark マルコによる福音書 - + Luke ルカによる福音書 - + John ヨハネによる福音書 - + Acts 使徒言行録 - + Romans ローマの信徒への手紙 - + 1 Corinthians コリントの信徒への手紙一 - + 2 Corinthians コリントの信徒への手紙二 - + Galatians ガラテヤの信徒への手紙 - + Ephesians エフェソの信徒への手紙 - + Philippians フィリピの信徒への手紙 - + Colossians コロサイの信徒への手紙 - + 1 Thessalonians テサロニケの信徒への手紙一 - + 2 Thessalonians テサロニケの信徒への手紙二 - + 1 Timothy テモテへの手紙一 - + 2 Timothy テモテへの手紙二 - + Titus テトスへの手紙 - + Philemon フィレモンへの手紙 - + Hebrews ヘブライ人への手紙 - + James ヤコブの手紙 - + 1 Peter ペトロの手紙一 - + 2 Peter ペトロの手紙二 - + 1 John ヨハネの手紙一 - + 2 John ヨハネの手紙二 - + 3 John ヨハネの手紙三 - + Jude ユダの手紙 - + Revelation ヨハネの黙示録 - + Judith ユディト記 - + Wisdom 知恵の書 - + Tobit トビト記 - + Sirach シラ書〔集会の書〕 - + Baruch バルク書 - + 1 Maccabees マカバイ記一 - + 2 Maccabees マカバイ記二 - + 3 Maccabees マカバイ記三 - + 4 Maccabees マカバイ記四 - + Rest of Daniel ダニエル書補遺 - + Rest of Esther - + エステル記補遺 - + Prayer of Manasses マナセの祈り - + Letter of Jeremiah エレミヤの手紙 - + Prayer of Azariah - + アザルヤの祈り - + Susanna スザンナ - + Bel ベル - - - 1 Esdras - - - 2 Esdras - + 1 Esdras + 第1エスドラス書 - + + 2 Esdras + 第2エスドラス書 + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. 聖書のバージョン名を指定する必要があります。 - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. 聖書の著作権情報を設定する必要があります。パブリックドメインの聖書はそのようにマークされている必要があります。 - + Bible Exists 聖書が存在します - + This Bible already exists. Please import a different Bible or first delete the existing one. この聖書は既に存在します。他の聖書をインポートするか、存在する聖書を削除してください。 - + You need to specify a book name for "%s". 「%s」の書名を設定する必要があります。 - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ be followed by one or more non-numeric characters. 数字以外の文字が続く必要があります。 - + Duplicate Book Name 書名が重複しています - + The Book Name "%s" has been entered more than once. 書名「%s」は2回以上入力されました。 @@ -710,39 +711,39 @@ be followed by one or more non-numeric characters. BiblesPlugin.BibleManager - + Scripture Reference Error 書名章節番号エラー - + Web Bible cannot be used ウェブ聖書は使用できません - + Text Search is not available with Web Bibles. テキスト検索はウェブ聖書では利用できません。 - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. 検索キーワードが入力されていません。 複数のキーワードをスペースで区切るとすべてに該当する箇所を検索し、カンマ (,) で区切るといずれかに該当する箇所を検索します。 - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. 利用できる聖書がありません。インポート ウィザードを利用して、一つ以上の聖書をインストールしてください。 - + No Bibles Available 利用できる聖書翻訳がありません - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,78 +766,78 @@ Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display 聖句の表示 - + Only show new chapter numbers 初めの章番号のみを表示 - + Bible theme: 聖書のテーマ: - + No Brackets 括弧なし - + ( And ) ( と ) - + { And } { と } - + [ And ] [ と ] - + Note: Changes do not affect verses already in the service. 注意: 既に礼拝プログラムに含まれる御言葉は変更されません。 - + Display second Bible verses 2 つの聖句を表示 - + Custom Scripture References 参照聖句の方式 - + Verse Separator: 節区切: - + Range Separator: 範囲区切: - + List Separator: リスト区切: - + End Mark: 終了マーク: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -845,7 +846,7 @@ Please clear this edit line to use the default value. このエディットボックスをクリアすることで、デフォルトの設定となります。 - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -854,7 +855,7 @@ Please clear this edit line to use the default value. このエディットボックスをクリアすることで、デフォルトの設定となります。 - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -863,7 +864,7 @@ Please clear this edit line to use the default value. このエディットボックスをクリアすることで、デフォルトの設定となります。 - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -872,28 +873,28 @@ Please clear this edit line to use the default value. このエディットボックスをクリアすることで、デフォルトの設定となります。 - + English 日本語 - + Default Bible Language 既定の聖書言語 - + Book name language in search field, search results and on display: 検索フィールド・検索結果・画面表示の訳名: - + Bible Language 聖書の言語 - + Application Language アプリケーションの言語 @@ -901,42 +902,42 @@ search results and on display: BiblesPlugin.BookNameDialog - + Select Book Name 書名を選択 - + Current name: 現在の名前: - + Corresponding name: 対応する名前: - + Show Books From 絞込み - + Old Testament 旧約 - + New Testament 新約 - + Apocrypha 旧約聖書続編 - + The following book name cannot be matched up internally. Please select the corresponding name from the list. 以下の書名は内部の書名と一致しませんでした。対応するものを一覧から選択してください。 @@ -944,7 +945,7 @@ search results and on display: BiblesPlugin.BookNameForm - + You need to select a book. 書名を選択してください。 @@ -952,18 +953,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s 書名をインポート中... %s - + Importing verses from %s... Importing verses from <book name>... %s から節をインポート中... - + Importing verses... done. 節をインポート中... 完了。 @@ -971,68 +972,68 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor 聖書エディタ - + License Details ライセンスの詳細 - + Version name: 訳名: - + Copyright: 著作権: - + Permissions: 使用許可: - + Default Bible Language 既定の聖書言語 - + Book name language in search field, search results and on display: 検索フィールド・検索結果・画面に表示される訳名: - + Global Settings 全体設定 - + Bible Language 聖書の言語 - + Application Language アプリケーションの言語 - + English 日本語 - + This is a Web Download Bible. It is not possible to customize the Book Names. ウェブ聖書は訳名を変更することができません。 - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. 任意の書名を使用するには、メタデータタブにて&quot;聖書言語&quot;を選択するか、&quot;全体設定&quot;の聖書タブにて設定し てください。 @@ -1041,38 +1042,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... 聖書を登録し書名を取込み中... - + Registering Language... 言語を登録中... - + Importing %s... Importing <book name>... %s をインポート中... - + Download Error ダウンロード エラー - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. 選択された聖書のダウンロードに失敗しました。インターネット接続を確認し、それでもエラーが繰り返して起こる場合は、バグ報告を検討してください。 - + Parse Error 構文エラー - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. 選択された聖書の展開に失敗しました。エラーが繰り返して起こる場合は、バグ報告を検討してください。 @@ -1249,17 +1250,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language 言語を選択 - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP はこの聖書の訳の言語を判定できませんでした。以下の一覧から言語を選択してください。 - + Language: 言語: @@ -1267,7 +1268,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. 言語を選択する必要があります。 @@ -1275,92 +1276,92 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick 高速 - + Find: 検索: - + Book: 書名: - + Chapter: 章: - + Verse: 節: - + From: 開始: - + To: 終了: - + Text Search テキスト検索 - + Second: 第二訳: - + Scripture Reference 参照聖句 - + Toggle to keep or clear the previous results. 結果を保持するか消去するかを切り替えます。 - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? 1 つの聖書と複数の聖書の検索結果の結合はできません。検索結果を削除して再検索しますか? - + Bible not fully loaded. 聖書が完全に読み込まれていません。 - + Information 情報 - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. 第二訳には検索した箇所すべてが含まれていません。両方の聖書に含まれている箇所を表示します。第 %d 節が除外されます。 - + Search Scripture Reference... 参照聖句を検索中... - + Search Text... テキストを検索中... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1372,7 +1373,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. 不正な聖書ファイルです。OpenSongの聖書は圧縮されていることがあります。その場合、インポートする前に展開する必要があります。 @@ -1380,7 +1381,7 @@ You will need to re-import this Bible to use it again. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s をインポート中... @@ -1389,12 +1390,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... エンコーディングを検出中です (数分かかることがあります)... - + Importing %s %s... Importing <book name> <chapter>... %s %s をインポート中... @@ -1403,149 +1404,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory バックアップ ディレクトリを選択 - + Bible Upgrade Wizard 聖書更新ウィザード - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. このウィザードで、古いバージョンのOpenLP 2の聖書を更新をします。次へをクリックして、更新作業を始めてください。 - + Select Backup Directory バックアップ ディレクトリを選択 - + Please select a backup directory for your Bibles 聖書をバックアップするディレクトリを選択してください - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. OpenLP 2.0 の前のリリースでは更新した聖書を使用することができません。このウィザードでは現在の聖書のバックアップを作成するので、前のリリースを使用する必要があるときには、バックアップを OpenLP のデータ ディレクトリにコピーしてください。 - + Please select a backup location for your Bibles. 聖書をバックアップする場所を選択してください。 - + Backup Directory: バックアップ ディレクトリ: - + There is no need to backup my Bibles 聖書をバックアップしない - + Select Bibles 聖書を選択 - + Please select the Bibles to upgrade 更新する聖書を選択 - + Upgrading 更新中 - + Please wait while your Bibles are upgraded. 聖書の更新が完了するまでお待ちください。 - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. バックアップに失敗しました。 聖書をバックアップするため、指定されたディレクトリに書き込み権限があることを確認してください。 - + Upgrading Bible %s of %s: "%s" Failed 聖書の更新中(%s/%s): "%s" 失敗 - + Upgrading Bible %s of %s: "%s" Upgrading ... 聖書の更新中(%s/%s): "%s" 更新中... - + Download Error ダウンロード エラー - + To upgrade your Web Bibles an Internet connection is required. ウェブ聖書を更新するにはインターネット接続が必要です。 - + Upgrading Bible %s of %s: "%s" Upgrading %s ... 聖書を更新中(%s/%s): "%s" 更新中 %s... - + Upgrading Bible %s of %s: "%s" Complete 聖書を更新中(%s/%s): "%s" 完了 - + , %s failed , 失敗: %s - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. 聖書を更新中: 成功: %s%s ウェブ聖書の本文は必要に応じてダウンロードされるため、インターネット接続が必要なことに注意してください。 - + Upgrading Bible(s): %s successful%s 聖書を更新中: 成功: %s%s - + Upgrade failed. 更新に失敗しました。 - + You need to specify a backup directory for your Bibles. 聖書のバックアップ ディレクトリを指定する必要があります。 - + Starting upgrade... 更新を開始中... - + There are no Bibles that need to be upgraded. 更新する聖書はありません。 @@ -1553,65 +1554,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>カスタム スライド プラグイン</strong><br />カスタム スライド プラグインは、任意のテキストを賛美などと同様に表示する機能を提供します。賛美プラグインよりも自由な機能を提供します。 - + Custom Slide name singular カスタム スライド - + Custom Slides name plural カスタムスライド - + Custom Slides container title カスタム スライド - + Load a new custom slide. 新しいカスタム スライドを読み込みます。 - + Import a custom slide. カスタム スライドをインポートします。 - + Add a new custom slide. 新しいカスタム スライドを追加します。 - + Edit the selected custom slide. 選択されたカスタム スライドを編集します。 - + Delete the selected custom slide. 選択されたカスタム スライドを削除します。 - + Preview the selected custom slide. 選択されたカスタム スライドをプレビューします。 - + Send the selected custom slide live. 選択されたカスタム スライドをライブへ送ります。 - + Add the selected custom slide to the service. 選択されたカスタム スライドを礼拝プログラムに追加します。 @@ -1619,12 +1620,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display カスタム表示 - + Display footer フッターを表示 @@ -1632,62 +1633,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides カスタム スライドを編集 - + &Title: タイトル(&T): - + Add a new slide at bottom. 一番下に新規スライドを追加します。 - + Edit the selected slide. 選択されたスライドを編集します。 - + Edit all the slides at once. すべてのスライドを一度に編集します。 - + Split a slide into two by inserting a slide splitter. スライド分割機能を用い、スライドを分割します。 - + The&me: テーマ(&M): - + &Credits: クレジット(&C): - + You need to type in a title. タイトルの入力が必要です。 - + You need to add at least one slide 最低 1 枚のスライドが必要です - + Ed&it All すべて編集(&I) - + Insert Slide スライドを挿入 @@ -1695,7 +1696,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide スライド編集 @@ -1703,68 +1704,70 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - 選択された%n件のカスタムスライドを削除します。宜しいですか? + + 選択された%n件のカスタムスライドを削除します。宜しいですか? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>画像プラグイン</strong><br />画像プラグインは、画像を表示する機能を提供します。<br />礼拝プログラムで複数の画像をグループ化したり、複数の画像を簡単に表示することができます。タイムアウト ループの機能を使用してスライドショーを自動的に表示することもできます。さらに、賛美などのテキスト ベースの項目の背景を、外観テーマで指定されたものからこのプラグインの画像に変更することもできます。 - + Image name singular 画像 - + Images name plural 画像 - + Images container title 画像 - + Load a new image. 新しい画像を読み込みます。 - + Add a new image. 新しい画像を追加します。 - + Edit the selected image. 選択された画像を編集します。 - + Delete the selected image. 選択された画像を削除します。 - + Preview the selected image. 選択された画像をプレビューします。 - + Send the selected image live. 選択された画像をライブへ送信します。 - + Add the selected image to the service. 選択された画像を礼拝プログラムに追加します。 @@ -1772,7 +1775,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment 添付を選択 @@ -1780,44 +1783,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) 画像を選択 - + You must select an image to delete. 削除する画像を選択する必要があります。 - + You must select an image to replace the background with. 背景を置換する画像を選択する必要があります。 - + Missing Image(s) 画像が見つかりません - + The following image(s) no longer exist: %s 以下の画像は存在しません: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? 以下の画像は存在しません: %s それでも他の画像を追加しますか? - + There was a problem replacing your background, the image file "%s" no longer exists. 背景を置換する際に問題が発生しました。画像ファイル "%s" が存在しません。 - + There was no display item to amend. 結合する項目がありません。 @@ -1825,17 +1828,17 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color 背景色 - + Default Color: 既定色: - + Visible background for images with aspect ratio different to screen. アスペクト比がスクリーンと異なる画像が背景として表示されます。 @@ -1843,60 +1846,60 @@ Do you want to add the other images anyway? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>メディア プラグイン</strong><br />メディア プラグインは、音声や動画を再生する機能を提供します。 - + Media name singular メディア - + Media name plural メディア - + Media container title メディア - + Load new media. 新しいメディアを読み込みます。 - + Add new media. 新しいメディアを追加します。 - + Edit the selected media. 選択したメディアを編集します。 - + Delete the selected media. 選択したメディアを削除します。 - + Preview the selected media. 選択したメディアをプレビューします。 - + Send the selected media live. 選択したメディアをライブへ送ります。 - + Add the selected media to the service. 選択したメディアを礼拝プログラムに追加します。 @@ -1904,57 +1907,57 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media メディアを選択 - + You must select a media file to delete. 削除するメディア ファイルを選択する必要があります。 - + You must select a media file to replace the background with. 背景を置換するメディア ファイルを選択する必要があります。 - + There was a problem replacing your background, the media file "%s" no longer exists. 背景を置換する際に問題が発生しました。メディア ファイル"%s"は存在しません。 - + Missing Media File メディア ファイルが見つかりません - + The file %s no longer exists. ファイル %s が存在しません。 - + Videos (%s);;Audio (%s);;%s (*) 動画 (%s);;音声 (%s);;%s (*) - + There was no display item to amend. 結合する項目がありません。 - + Unsupported File 無効なファイル - + Automatic 自動 - + Use Player: 使用する再生ソフト: @@ -1962,22 +1965,22 @@ Do you want to add the other images anyway? MediaPlugin.MediaTab - + Available Media Players 利用可能な再生ソフト - + %s (unavailable) %s (利用不可能) - + Player Order 再生ソフトの順序 - + Allow media player to be overridden メディアプレーヤを上書き可能にする @@ -1985,17 +1988,17 @@ Do you want to add the other images anyway? OpenLP - + Image Files 画像ファイル - + Information 情報 - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2007,37 +2010,57 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits クレジット - + License ライセンス - - Contribute - 貢献 - - - + build %s ビルド %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. このプログラムは、フリーソフトです。あなたは、これを再配布したり、the Free Software Foundationが発行したGNU General Public Licenseバージョン2の元で改変する事が出来ます。 - + This program 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 below for more details. このプログラムは、皆様のお役に立てると期待して配布しています。しかし、完全に無保障であることを理解してください。商品としての暗黙の保障としての商品適格性や特定の使用適合性もありません。詳しくは以下をお読みください。 - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + 著作権 © 2004-2012 %s +追加の著作権 © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - オープンソース賛美詞投射ソフトウェア + +OpenLP は、教会専用のフリーのプレゼンテーション及び賛美詞投射ソフトウェアです。パソコンとプロジェクターを用いて、聖書箇所、画像また他プレゼンテーションデータ (OpenOffice.org や PowerPoint/Viewer が必要) を表示できます。 http://openlp.org/ にて詳しくご紹介しております。 OpenLP は、ボランティアの手で開発保守されています。もっと多くのクリスチャンの手によるフリーのソフトウェア開発に興味がある方は、以下のボタンからどうぞ。 + + + + Volunteer + 貢献者 + + + Project Lead %s @@ -2056,12 +2079,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2070,7 +2101,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2078,13 +2109,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2099,7 +2132,7 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - プロジェクト リーダー + 代表 %s 開発者 @@ -2117,11 +2150,19 @@ Final Credit 翻訳者 アフリカーンス語 (af) %s + チェコ語 (cs) + %s + デンマーク語 (da) + %s ドイツ語 (de) %s - 英語(英)(en_GB) + ギリシャ語 (el) %s - 英語(南アフリカ) (en_ZA) + イギリス英語 (en_GB) + %s + 南アフリカ英語 (en_ZA) + %s + スペイン語 (es) %s エストニア語 (et) %s @@ -2133,237 +2174,214 @@ Final Credit %s ノルウェー語 (nb) %s - ドイツ語 (nl) + オランダ語 (nl) %s - ポルトガル語 (pt_BR) + ブラジルポルトガル語 (pt_BR) %s ロシア語 (ru) %s + スウェーデン語 (sv) + %s -ドキュメンテーション +ドキュメント %s -ビルド ツール +ビルト Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ -最後の称賛 +謝辞 + 「神は、その独り子をお与えになったほ + どに、世を愛された。独り子を信じる者 + が一人も滅びないで、永遠の命を得るた + めである。」 -- ヨハネによる福音書 3:16 - - 「神はそのひとり子を賜わったほどに、この世 - を愛して下さった。それは御子を信じる者が - ひとりも滅びないで、永遠の命を得るためで - ある。 -- ヨハネの福音書3章16節 -- - - 最後に大切なことを言いいますが、最後の称賛を、私たち - の父なる神に帰します。父なる神は、その独り子を、私を - 罪から解放するために十字架の死に遣わして下さいました。 - 私たちは、このソフトウェアをあなたに無償フリー(無償)で提供 - します。それは神が私たちをフリー(自由)にして下さった故です。 - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - オープンソース賛美詞投射ソフトウェア - -OpenLP は、教会専用のフリー(無償及び利用に関して)のプレゼンテーション及び賛美詞投射ソフトウェアです。パソコンとプロジェクターを用いて、聖書箇所、画像また他プレゼンテーション データ (OpenOffice.org や PowerPoint/Viewer が必要)をスライド表示できます。 - -http://openlp.org/ にて詳しくご紹介しております。 - -OpenLP は、ボランティアの手で開発保守されています。もっと多くのクリスチャンの手によるフリーのソフトウェア開発に興味がある方は、以下のボタンからどうぞ。 - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - 著作権 © 2004-2012 %s -追加の著作権 © 2004-2012 %s + そして最後に、父なる神様、独り子を世 + に遣わし十字架の死によってわたしたち + の罪を贖ってくださった神様に感謝しま + す。神様がわたしたちを罪から自由にし + てくださった故に、このソフトを自由に + (フリーで、無償で) 配布します。 OpenLP.AdvancedTab - + UI Settings UI 設定 - + Number of recent files to display: 最近使用したファイルの表示数: - + Remember active media manager tab on startup 起動時に前回のメディア マネージャを開く - + Double-click to send items straight to live ダブル クリックで項目を直接ライブへ送信 - + Expand new service items on creation 礼拝項目の作成時に展開 - + Enable application exit confirmation アプリケーションの終了時に確認 - + Mouse Cursor マウス カーソル - + Hide mouse cursor when over display window ディスプレイ ウィンドウの上では、マウス カーソルを隠す - + Default Image 既定の画像 - + Background color: 背景色: - + Image file: 画像ファイル: - + Open File ファイルを開く - + Advanced 高度な設定 - + Preview items when clicked in Media Manager メディア マネージャでクリック時に項目をプレビュー - + Click to select a color. クリックして色を選択します。 - + Browse for an image file to display. 表示する画像ファイルを参照する。 - + Revert to the default OpenLP logo. 既定の OpenLP ロゴに戻す。 - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Service %Y-%m-%d %H-%M - + Default Service Name 既定の礼拝名 - + Enable default service name 既定の礼拝名を有効にする - + Date and Time: 日付と時刻: - + Monday 月曜日 - + Tuesday 火曜日 - + Wednesday 水曜日 - + Thurdsday 木曜日 - + Friday 金曜日 - + Saturday 土曜日 - + Sunday 日曜日 - + Now 現在 - + Time when usual service starts. 普段の礼拝開始時刻。 - + Name: 名前: - + Consult the OpenLP manual for usage. 詳細はOpenLPのマニュアルをご覧ください。 - + Revert to the default service name "%s". 既定の礼拝名「%s」に戻す。 - + Example: 例: - + X11 X11 @@ -2373,82 +2391,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for X11をバイパスする - + Syntax error. 構文エラーです。 - + Data Location データの保存場所 - + Current path: 現在のパス: - + Custom path: カスタムのパス: - + Browse for new data file location. データファイルの保存場所をブラウズする。 - + Set the data location to the default. データの保存場をデフォルトに設定する。 - + Cancel キャンセル - + Cancel OpenLP data directory location change. OpenLPのデータの保存場所の変更をキャンセルする。 - + Copy data to new location. データを新しい保存場所へコピーする。 - + Copy the OpenLP data files to the new location. OpenLPのデータファイルを新しい保存場所へコピーする。 - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>警告:</strong>新しいデータの保存場所にはすでにOpenLPのデータが含まれています。これらのファイルは置換されます。 - + Data Directory Error - データディレクトリエラー + 保存場所エラー - + Select Data Directory Location データの保存場所を選ぶ - + Confirm Data Directory Change データの保存場所の変更を確認 - + Reset Data Directory データの保存場所をリセット - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2456,47 +2474,96 @@ This location will be used after OpenLP is closed. この保存場所はOpenLPの終了後より使用されます。 - + Overwrite Existing Data 存在するデータの上書き + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLPの保存場所が見つかりませんでした。 + +%s + +この保存場所は以前にデフォルトの場所から変更されています。もし新しい場所が取り外し可能なメディア上であった場合、そのメディアが使用出来るようにする必要があります。 + +「いいえ」をクリックするとOpenLPの開始を中断します。この問題を修正してください。 + +「はい」をクリックするとデフォルトの場所に戻します。 + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + 本当にOpenLPの保存場所を以下に変更してよいですか? + +%s + +OpenLPが終了した時に保存場所が変更されます。 + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + 警告: + +選択された以下の場所は既にOpenLPのデータが含まれています。既存のファイルを現在のファイルで置き換えますか。 + +%s + OpenLP.ExceptionDialog - + Error Occurred エラーが発生しました - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. OpenLP は問題に直面し、復旧できませんでした。以下に表示される情報は、開発者が問題を修正するのに役立つかも知れません。bugs@openlp.org に以下のエラー メッセージと問題が発生するまでの手順を送ってください。 - + Send E-Mail メールを送信 - + Save to File ファイルに保存 - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) この問題が発生するまで何をしていたかを入力してください。 (20文字以上。お手数ですが、英語でお願いします。) - + Attach File ファイルを添付 - + Description characters to enter : %s 説明 : %s @@ -2504,24 +2571,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s プラットフォーム: %s - + Save Crash Report クラッシュ報告を保存 - + Text files (*.txt *.log *.text) テキスト ファイル (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2553,7 +2620,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2589,17 +2656,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename ファイル名を変更 - + New File Name: 新しいファイル名: - + File Copy ファイルをコピー @@ -2607,17 +2674,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation 翻訳言語を選択 - + Choose the translation you'd like to use in OpenLP. OpenLP で利用する言語を選択してください。 - + Translation: 翻訳言語: @@ -2625,192 +2692,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs 賛美 - + First Time Wizard 初回起動ウィザード - + Welcome to the First Time Wizard 初回起動ウィザードへようこそ - + Activate required Plugins 必要なプラグインを有効化する - + Select the Plugins you wish to use. ご利用になるプラグインを選択してください。 - + Bible 聖書 - + Images 画像 - + Presentations プレゼンテーション - + Media (Audio and Video) メディア(音声と動画) - + Allow remote access リモートアクセスを許可 - + Monitor Song Usage 賛美利用記録 - + Allow Alerts 警告を許可 - + Default Settings 既定設定 - + Downloading %s... ダウンロード中 %s... - + Download complete. Click the finish button to start OpenLP. ダウンロードが完了しました。完了をクリックすると OpenLP が開始します。 - + Enabling selected plugins... 選択されたプラグインを有効にしています... - + No Internet Connection インターネット接続が見つかりません - + Unable to detect an Internet connection. インターネット接続が検知されませんでした。 - + Sample Songs サンプル賛美 - + Select and download public domain songs. パブリックドメインの賛美を選択する事でダウンロードできます。 - + Sample Bibles サンプル聖書 - + Select and download free Bibles. 以下のフリー聖書を選択する事でダウンロードできます。 - + Sample Themes サンプル外観テーマ - + Select and download sample themes. サンプル外観テーマを選択する事でダウンロードできます。 - + Set up default settings to be used by OpenLP. 既定設定がOpenLPに使われるようにセットアップします。 - + Default output display: 既定出力先: - + Select default theme: 既定外観テーマを選択: - + Starting configuration process... 設定処理を開始しています... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. このウィザードで、OpenLPを初めて使用する際の設定をします。次へをクリックして開始してください。 - + Setting Up And Downloading 設定とダウンロード中 - + Please wait while OpenLP is set up and your data is downloaded. OpenLPがセットアップされ、あなたのデータがインポートされるまでお待ち下さい。 - + Setting Up 設定中 - + Click the finish button to start OpenLP. 完了をクリックすると、OpenLPが開始します。 - + Download complete. Click the finish button to return to OpenLP. ダウンロードが完了しました。終了ボタンをクリックしてOpenLPを終了してください。 - + Click the finish button to return to OpenLP. 終了ボタンをクリックしてOpenLPに戻ってください。 - + Custom Slides カスタムスライド - + Finish 終了 - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2819,7 +2886,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che 初回起動ウィザードをもう一度実行してサンプルデータをインポートするには、&quot;ツール/初回起動ウィザードの再実行&quot;を選択してください。 - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2829,37 +2896,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags 書式タグを設定 - + Edit Selection 選択項目を編集 - + Save 保存 - + Description 説明 - + Tag タグ - + Start HTML 開始HTML - + End HTML 終了HTML @@ -2867,32 +2934,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error 更新エラー - + Tag "n" already defined. タグ「n」は既に定義されています。 - + New Tag 新しいタグ - + <HTML here> <html here> - + </and here> </and here> - + Tag %s already defined. タグ「%s」は既に定義されています。 @@ -2900,82 +2967,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red - + Black - + Blue - + Yellow - + Green - + Pink ピンク - + Orange - + Purple - + White - + Superscript 上付き - + Subscript 下付き - + Paragraph 段落 - + Bold 太字 - + Italics 斜体 - + Underline 下線 - + Break 改行 @@ -2983,122 +3050,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General 全般 - + Monitors モニタ - + Select monitor for output display: 画面を出力するスクリーンを選択: - + Display if a single screen スクリーンが 1 つしかなくても表示 - + Application Startup アプリケーションの起動 - + Show blank screen warning 警告中には空白の画面を表示 - + Automatically open the last service 自動的に前回の礼拝プログラムを開く - + Show the splash screen スプラッシュ スクリーンを表示 - + Application Settings アプリケーションの設定 - + Prompt to save before starting a new service 新しい礼拝プログラムを開始する前に保存を確認 - + Automatically preview next item in service 礼拝プログラム内の次の項目を自動的にプレビュー - + sec - + CCLI Details CCLI 詳細 - + SongSelect username: SongSelect ユーザ名: - + SongSelect password: SongSelect パスワード: - + X X - + Y Y - + Height 高さ - + Width - + Check for updates to OpenLP OpenLP の更新を確認 - + Unblank display when adding new live item ライブ項目の追加時にブランクを解除 - + Timed slide interval: 時間付きスライドの間隔: - + Background Audio バックグラウンド音声 - + Start background audio paused 一時停止中のバックグラウンド音声を再生 @@ -3108,12 +3175,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can 礼拝項目スライドの上限 - + Override display position: 表示位置を上書き: - + Repeat track list 音声トラックの一覧を繰り返し再生 @@ -3141,12 +3208,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language 言語 - + Please restart OpenLP to use your new language setting. 新しい言語設定を使用には OpenLP を再起動してください。 @@ -3154,7 +3221,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP ディスプレイ @@ -3162,287 +3229,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File ファイル(&F) - + &Import インポート(&I) - + &Export エクスポート(&E) - + &View 表示(&V) - + M&ode モード(&O) - + &Tools ツール(&T) - + &Settings 設定(&S) - + &Language 言語(&L) - + &Help ヘルプ(&H) - + Media Manager メディア マネージャ - + Service Manager 礼拝プログラム管理 - + Theme Manager テーマ マネージャ - + &New 新規作成(&N) - + &Open 開く(&O) - + Open an existing service. 存在する礼拝プログラムを開きます。 - + &Save 保存(&S) - + Save the current service to disk. 現在の礼拝プログラムをディスクに保存します。 - + Save &As... 名前を付けて保存(&A)... - + Save Service As 名前をつけて礼拝プログラムを保存 - + Save the current service under a new name. 現在の礼拝プログラムを新しい名前で保存します。 - + E&xit 終了(&X) - + Quit OpenLP OpenLP を終了 - + &Theme テーマ(&T) - + &Configure OpenLP... OpenLP の設定(&C)... - + &Media Manager メディア マネージャ(&M) - + Toggle Media Manager メディア マネージャを切り替える - + Toggle the visibility of the media manager. メディア マネージャの表示/非表示を切り替えます。 - + &Theme Manager テーマ マネージャ(&T) - + Toggle Theme Manager テーマ マネージャの切り替え - + Toggle the visibility of the theme manager. テーマ マネージャの表示/非表示を切り替えます。 - + &Service Manager 礼拝プログラム管理(&S) - + Toggle Service Manager 礼拝プログラムの切り替え - + Toggle the visibility of the service manager. 礼拝プログラムの表示/非表示を切り替える。 - + &Preview Panel プレビュー パネル(&P) - + Toggle Preview Panel プレビュー パネルの切り替え - + Toggle the visibility of the preview panel. プレビュー パネルの表示/非表示を切り替えます。 - + &Live Panel ライブ パネル(&L) - + Toggle Live Panel ライブ パネルの切り替え - + Toggle the visibility of the live panel. ライブ パネルの表示/非表示を切り替える。 - + &Plugin List プラグイン一覧(&P) - + List the Plugins プラグイン一覧を表示します - + &User Guide ユーザ ガイド(&U) - + &About バージョン情報(&A) - + More information about OpenLP OpenLP の詳細情報 - + &Online Help オンライン ヘルプ(&O) - + &Web Site ウェブ サイト(&W) - + Use the system language, if available. 可能であればシステム言語を使用します。 - + Set the interface language to %s インタフェース言語を %s に設定 - + Add &Tool... ツールを追加(&T)... - + Add an application to the list of tools. ツールの一覧にアプリケーションを追加します。 - + &Default 既定値(&D) - + Set the view mode back to the default. 表示モードを既定に戻します。 - + &Setup 設定(&S) - + Set the view mode to Setup. 表示モードを設定します。 - + &Live ライブ(&L) - + Set the view mode to Live. 表示モードをライブにします。 - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3451,108 +3518,108 @@ You can download the latest version from http://openlp.org/. http://openlp.org/ から最新版をダウンロードできます。 - + OpenLP Version Updated OpenLP のバージョン アップ完了 - + OpenLP Main Display Blanked OpenLP のプライマリ ディスプレイがブランクです - + The Main Display has been blanked out OpenLP のプライマリ ディスプレイがブランクになりました - + Default Theme: %s 既定のテーマ: %s - + English Please add the name of your language here 日本語 - + Configure &Shortcuts... ショートカットの設定(&S)... - + Close OpenLP OpenLP を閉じる - + Are you sure you want to close OpenLP? OpenLP を本当に終了しますか? - + Open &Data Folder... データフォルダを開く(&D)... - + Open the folder where songs, bibles and other data resides. 賛美、聖書データなどのデータが含まれているフォルダを開く。 - + &Autodetect 自動検出(&A) - + Update Theme Images テーマの縮小画像を更新 - + Update the preview images for all themes. 全てのテーマの縮小画像を更新します。 - + Print the current service. 現在の礼拝プログラムを印刷します。 - + &Recent Files 最近使用したファイル(&R) - + L&ock Panels パネルを固定(&L) - + Prevent the panels being moved. パネルが動くのを妨げる。 - + Re-run First Time Wizard 初回起動ウィザードの再実行 - + Re-run the First Time Wizard, importing songs, Bibles and themes. 初回起動ウィザードを再実行し、賛美や聖書、テーマをインポートする。 - + Re-run First Time Wizard? 初回起動ウィザードを再実行しますか? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3561,43 +3628,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and 初回起動ウィザードを再実行すると、現在のOpenLP設定および既存の賛美やテーマが変更されることがあります。 - + Clear List Clear List of recent files 一覧を消去 - + Clear the list of recent files. 最近使用したファイルの一覧を消去します。 - + Configure &Formatting Tags... 書式タグを設定(&F)... - + Export OpenLP settings to a specified *.config file OpenLPの設定をファイルへエクスポート - + Settings 設定 - + Import OpenLP settings from a specified *.config file previously exported on this or another machine 以前にエクスポートしたファイルから OpenLP の設定をインポート - + Import settings? 設定をインポートしますか? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3610,50 +3677,77 @@ Importing incorrect settings may cause erratic behaviour or OpenLP to terminate 不正な設定をインポートすると異常な動作やOpenLPの異常終了の原因となります。 - + Open File ファイルを開く - + OpenLP Export Settings Files (*.conf) OpenLP エクスポート設定ファイル (*.conf) - + Import settings 設定のインポート - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP を終了させます。インポートされた設定は次の起動時に適用されます。 - + Export Settings File 設定ファイルのエクスポート - + OpenLP Export Settings File (*.conf) OpenLP 設定ファイル (*.conf) - + New Data Directory Error - 新しいデータディレクトリのエラー + 新しい保存場所のエラー + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + 選択されたファイルは有効なOpenLP設定ファイルではありません。 + +セクション [%s] は有効ではありません。 + +処理は中断され、変更は適用されませんでした。 + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + OpenLPデータを新しい保存場所 (%s) へコピーしています。コピーが終了するまでお待ちください。 + + + + OpenLP Data directory copy failed + +%s + OpenLP保存場所のコピーに失敗 + +%s OpenLP.Manager - + Database Error データベースエラー - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3662,7 +3756,7 @@ Database: %s データベース: %s - + OpenLP cannot load your database. Database: %s @@ -3674,74 +3768,74 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected 項目が選択されていません - + &Add to selected Service Item 選択された礼拝項目に追加(&A) - + You must select one or more items to preview. プレビューするには 1 つ以上の項目を選択する必要があります。 - + You must select one or more items to send live. ライブに送信するには 1 つ以上の項目を選択する必要があります。 - + You must select one or more items. 1 つ以上の項目を選択する必要があります。 - + You must select an existing service item to add to. 追加するには既存の礼拝項目を選択する必要があります。 - + Invalid Service Item 無効な礼拝項目 - + You must select a %s service item. %sの項目を選択してください。 - + You must select one or more items to add. 追加するには、一つ以上の項目を選択してください。 - + No Search Results 見つかりませんでした - + Invalid File Type 無効なファイルタイプ - + Invalid File %s. Suffix not supported %sは無効なファイルです。 拡張子がサポートされていません - + &Clone 閉じる(&C) - + Duplicate files were found on import and were ignored. インポート中に重複するファイルが見つかり、無視されました。 @@ -3749,12 +3843,12 @@ Suffix not supported OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics>タグが見つかりません。 - + <verse> tag is missing. <verse>タグが見つかりません。 @@ -3762,42 +3856,42 @@ Suffix not supported OpenLP.PluginForm - + Plugin List プラグイン一覧 - + Plugin Details プラグイン詳細 - + Status: 状況: - + Active 有効 - + Inactive 無効 - + %s (Inactive) %s (無効) - + %s (Active) %s (有効) - + %s (Disabled) %s (無効) @@ -3805,12 +3899,12 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page サイズをページに合わせる - + Fit Width サイズをページの横幅に合わせる @@ -3818,77 +3912,77 @@ Suffix not supported OpenLP.PrintServiceForm - + Options オプション - + Copy コピー - + Copy as HTML HTMLとしてコピーする - + Zoom In ズームイン - + Zoom Out ズームアウト - + Zoom Original 既定のズームに戻す - + Other Options その他のオプション - + Include slide text if available 可能であれば、スライドテキストを含める - + Include service item notes 礼拝項目メモを含める - + Include play length of media items メディア項目の再生時間を含める - + Add page break before each text item テキスト項目毎に改ページ - + Service Sheet 礼拝シート - + Print 印刷 - + Title: タイトル: - + Custom Footer Text: カスタムフッターテキスト: @@ -3896,12 +3990,12 @@ Suffix not supported OpenLP.ScreenList - + Screen スクリーン - + primary プライマリ @@ -3909,12 +4003,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>開始</strong>: %s - + <strong>Length</strong>: %s <strong>長さ</strong>: %s @@ -3922,7 +4016,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item 礼拝項目を並べ替え @@ -3930,287 +4024,298 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top 一番上に移動(&t) - + Move item to the top of the service. 選択した項目を最も上に移動する。 - + Move &up 一つ上に移動(&u) - + Move item up one position in the service. 選択した項目を1つ上に移動する。 - + Move &down 一つ下に移動(&d) - + Move item down one position in the service. 選択した項目を1つ下に移動する。 - + Move to &bottom 一番下に移動(&b) - + Move item to the end of the service. 選択した項目を最も下に移動する。 - + &Delete From Service 削除(&D) - + Delete the selected item from the service. 選択した項目を礼拝プログラムから削除する。 - + &Add New Item 新しい項目を追加(&A) - + &Add to Selected Item 選択された項目を追加(&A) - + &Edit Item 項目の編集(&E) - + &Reorder Item 項目を並べ替え(&R) - + &Notes メモ(&N) - + &Change Item Theme 項目の外観テーマを変更(&C) - + OpenLP Service Files (*.osz) OpenLP 礼拝プログラムファイル (*.osz) - + File is not a valid service. The content encoding is not UTF-8. 礼拝プログラムファイルが有効でありません。 エンコードがUTF-8でありません。 - + File is not a valid service. 礼拝プログラムファイルが有効でありません。 - + Missing Display Handler ディスプレイハンドラが見つかりません - + Your item cannot be displayed as there is no handler to display it ディスプレイハンドラが見つからないため項目を表示する事ができません - + Your item cannot be displayed as the plugin required to display it is missing or inactive 必要なプラグインが見つからないか無効なため、項目を表示する事ができません - + &Expand all すべて展開(&E) - + Expand all the service items. 全ての項目を展開する。 - + &Collapse all すべて折り畳む(&C) - + Collapse all the service items. 全ての項目を折り畳みます。 - + Open File ファイルを開く - + Moves the selection down the window. 選択をウィンドウの下に移動する。 - + Move up 上に移動 - + Moves the selection up the window. 選択をウィンドウの上に移動する。 - + Go Live ライブへ送る - + Send the selected item to Live. 選択された項目をライブ表示する。 - + &Start Time 開始時間(&S) - + Show &Preview プレビュー表示(&P) - + Modified Service 礼拝プログラムの編集 - + The current service has been modified. Would you like to save this service? 現在の礼拝プログラムは、編集されています。保存しますか? - + Custom Service Notes: 礼拝項目メモ: - + Notes: メモ: - + Playing time: 再生時間: - + Untitled Service 無題 - + File could not be opened because it is corrupt. ファイルが破損しているため開けません。 - + Empty File 空のファイル - + This service file does not contain any data. この礼拝プログラムファイルは空です。 - + Corrupt File 破損したファイル - + Load an existing service. 既存の礼拝プログラムを読み込みます。 - + Save this service. 礼拝プログラムを保存します。 - + Select a theme for the service. 礼拝プログラムの外観テーマを選択します。 - + This file is either corrupt or it is not an OpenLP 2.0 service file. このファイルは破損しているかOpenLP 2.0の礼拝プログラムファイルではありません。 - - Service File Missing - 礼拝プログラムファイルが見つかりません - - - + Slide theme スライド外観テーマ - + Notes メモ - + Edit 編集 - + Service copy only - + 礼拝項目のみ編集 - + Error Saving File ファイル保存エラー - + There was an error saving your file. ファイルの保存中にエラーが発生しました。 + + + Service File(s) Missing + 礼拝プログラムファイルが見つかりません + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + 礼拝項目に含まれる以下のファイルが不足しています: +<byte value="x9"/>%s + +このまま保存を続行すると、これらのファイルは削除されます。 + OpenLP.ServiceNoteForm - + Service Item Notes 礼拝項目メモ @@ -4218,7 +4323,7 @@ The content encoding is not UTF-8. OpenLP.SettingsForm - + Configure OpenLP OpenLPの設定 @@ -4226,67 +4331,67 @@ The content encoding is not UTF-8. OpenLP.ShortcutListDialog - + Action 動作 - + Shortcut ショートカット - + Duplicate Shortcut ショートカットの重複 - + The shortcut "%s" is already assigned to another action, please use a different shortcut. このショートカット"%s"は既に他の動作に割り振られています。他のショートカットをご利用ください。 - + Alternate 代替 - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. 動作を選択して下のボタンをクリックし、新しいショートカットを入力してください。 - + Default 初期設定 - + Custom カスタム - + Capture shortcut. ショートカットを入力する。 - + Restore the default shortcut of this action. この動作のショートカットを初期値に戻す。 - + Restore Default Shortcuts ショートカットを初期設定に戻す - + Do you want to restore all shortcuts to their defaults? 全てのショートカットを初期設定に戻しますか? - + Configure Shortcuts ショートカットの設定 @@ -4294,172 +4399,172 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Hide 隠す - + Go To 送る - + Blank Screen スクリーンをブランク - + Blank to Theme 外観テーマをブランク - + Show Desktop デスクトップを表示 - + Previous Service 前の礼拝プログラム - + Next Service 次の礼拝プログラム - + Escape Item 項目をエスケープ - + Move to previous. 前に移動。 - + Move to next. 次に移動。 - + Play Slides スライドを再生 - + Delay between slides in seconds. スライドの再生時間を秒で指定する。 - + Move to live. ライブへ移動する。 - + Add to Service. 礼拝プログラムへ追加する。 - + Edit and reload song preview. 編集しプレビューを再読み込みする。 - + Start playing media. メディアの再生を開始する。 - + Pause audio. 音声を一時停止します。 - + Pause playing media. 再生中のメディアを一時停止します。 - + Stop playing media. 再生中のメディアを停止します。 - + Video position. ビデオの表示位置。 - + Audio Volume. ボリューム。 - + Go to "Verse" "バース"へ移動 - + Go to "Chorus" "コーラス"へ移動 - + Go to "Bridge" "ブリッジ"へ移動 - + Go to "Pre-Chorus" "間奏"へ移動 - + Go to "Intro" "序奏"へ移動 - + Go to "Ending" "エンディング"へ移動 - + Go to "Other" "その他"へ移動 - + Previous Slide 前のスライド - + Next Slide 次のスライド - + Pause Audio 音声の一時停止 - + Background Audio バックグラウンド音声 - + Go to next audio track. 次の音声トラックへ進みます。 - + Tracks トラック @@ -4467,17 +4572,17 @@ The content encoding is not UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions 綴りの推奨 - + Formatting Tags タグフォーマット - + Language: 言語: @@ -4485,615 +4590,627 @@ The content encoding is not UTF-8. OpenLP.StartTimeForm - + Hours: 時: - + Minutes: 分: - + Seconds: 秒: - + Item Start and Finish Time 項目の開始終了時間 - + Start 開始 - + Finish 終了 - + Length 長さ - + Time Validation Error 時間検証エラー - + Finish time is set after the end of the media item 終了時間がメディア項目の終了より後に設定されています - + Start time is after the finish time of the media item 開始時間がメディア項目の終了時間より後に設定されています - + Theme Layout テーマ レイアウト - + The blue box shows the main area. メイン領域に青いボックスが表示されます。 - + The red box shows the footer. - フッターに青いボックスが表示されます。 - - - - OpenLP.ThemeForm - - - Select Image - 画像の選択 - - - - Theme Name Missing - 外観テーマ名が不明です - - - - There is no name for this theme. Please enter one. - 外観テーマ名がありません。入力してください。 - - - - Theme Name Invalid - 無効な外観テーマ名 - - - - Invalid theme name. Please enter one. - 無効な外観テーマ名です。入力してください。 - - - - (approximately %d lines per slide) - (スライド1枚におよそ%d行) + フッターに赤いボックスが表示されます。 OpenLP.ThemeManager - + Create a new theme. 新しい外観テーマを作成する。 - + Edit Theme 外観テーマ編集 - + Edit a theme. 外観テーマの編集する。 - + Delete Theme 外観テーマ削除 - + Delete a theme. 外観テーマの削除する。 - + Import Theme 外観テーマインポート - + Import a theme. 外観テーマのインポートをする。 - + Export Theme 外観テーマのエキスポート - + Export a theme. 外観テーマのエキスポートをする。 - + &Edit Theme 外観テーマの編集(&E) - + &Delete Theme 外観テーマの削除(&D) - + Set As &Global Default 全体の既定として設定(&G)) - + %s (default) %s (既定) - + You must select a theme to edit. 編集する外観テーマを選択してください。 - + You are unable to delete the default theme. 既定の外観テーマを削除する事はできません。 - + Theme %s is used in the %s plugin. %s プラグインでこの外観テーマは利用されています。 - + You have not selected a theme. 外観テーマの選択がありません。 - + Save Theme - (%s) 外観テーマを保存 - (%s) - + Theme Exported 外観テーマエキスポート - + Your theme has been successfully exported. 外観テーマは正常にエキスポートされました。 - + Theme Export Failed 外観テーマのエキスポート失敗 - + Your theme could not be exported due to an error. エラーが発生したため外観テーマは、エキスポートされませんでした。 - + Select Theme Import File インポート対象の外観テーマファイル選択 - + File is not a valid theme. 無効な外観テーマファイルです。 - + &Copy Theme 外観テーマのコピー(&C) - + &Rename Theme 外観テーマの名前を変更(&N) - + &Export Theme 外観テーマのエキスポート(&E) - + You must select a theme to rename. 名前を変更する外観テーマを選択してください。 - + Rename Confirmation 名前変更確認 - + Rename %s theme? %s外観テーマの名前を変更します。宜しいですか? - + You must select a theme to delete. 削除する外観テーマを選択してください。 - + Delete Confirmation 削除確認 - + Delete %s theme? %s 外観テーマを削除します。宜しいですか? - + Validation Error 検証エラー - + A theme with this name already exists. 同名の外観テーマが既に存在します。 - + OpenLP Themes (*.theme *.otz) OpenLP 外観テーマ (*.theme *.otz) - + Copy of %s Copy of <theme name> Copy of %s - + Theme Already Exists テーマが既に存在 + + + Theme %s already exists. Do you want to replace it? + テーマ%sは既に存在します。上書きしますか? + OpenLP.ThemeWizard - + Theme Wizard 外観テーマウィザード - + Welcome to the Theme Wizard 外観テーマウィザードをようこそ - + Set Up Background 背景設定 - + Set up your theme's background according to the parameters below. 以下の項目に応じて、外観テーマに使用する背景を設定してください。 - + Background type: 背景の種類: - + Solid Color 単色 - + Gradient グラデーション - + Color: 色: - + Gradient: グラデーション: - + Horizontal - + Vertical - + Circular 放射状 - + Top Left - Bottom Right 左上 - 右下 - + Bottom Left - Top Right 左下 - 右上 - + Main Area Font Details 中央表示エリアのフォント詳細 - + Define the font and display characteristics for the Display text 中央エリアの表示のための文字設定とフォントを定義してください - + Font: フォント: - + Size: 文字サイズ: - + Line Spacing: 文字間: - + &Outline: アウトライン(&O): - + &Shadow: 影(&S): - + Bold 太字 - + Italic 斜体 - + Footer Area Font Details フッターフォント詳細 - + Define the font and display characteristics for the Footer text フッター表示のための文字設定とフォントを定義してください - + Text Formatting Details テキストフォーマット詳細 - + Allows additional display formatting information to be defined 追加の表示フォーマット情報が定義される事を許可する - + Horizontal Align: 水平位置: - + Left 左揃え - + Right 右揃え - + Center 中央揃え - + Output Area Locations 出力エリアの場所 - + Allows you to change and move the main and footer areas. 中央エリアとフッターエリアの場所が変更される事を許可する。 - + &Main Area 中央エリア(&M) - + &Use default location 既定の場所を使う(&U) - + X position: X位置: - + px px - + Y position: Y位置: - + Width: 幅: - + Height: 高: - + Use default location 既定の場所を使う - + Theme name: 外観テーマ名: - + Edit Theme - %s 外観テーマ編集 - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. このウィザードで、外観テーマを作成し編集します。次へをクリックして、背景を選択してください。 - + Transitions: 切り替え: - + &Footer Area フッター(&F) - + Starting color: 色1: - + Ending color: 色2: - + Background color: 背景色: - + Justify 揃える - + Layout Preview レイアウト プレビュー - + Transparent 透明 - + Preview and Save 保存しプレビュー - + Preview the theme and save it. 外観テーマを保存しプレビューします。 + + + (approximately %d lines per slide) + (スライド1枚におよそ%d行) + + + + Background Image Empty + 背景画像が存在しません + + + + You have not selected a background image. Please select one before continuing. + 背景の画像が選択されていません。続行する前に選択してください。 + + + + Select Image + 画像の選択 + + + + Theme Name Missing + 外観テーマ名が不明です + + + + There is no name for this theme. Please enter one. + 外観テーマ名がありません。入力してください。 + + + + Theme Name Invalid + 無効な外観テーマ名 + + + + Invalid theme name. Please enter one. + 無効な外観テーマ名です。入力してください。 + OpenLP.ThemesTab - + Global Theme 全体外観テーマ - + Theme Level 外観テーマレベル - + S&ong Level 賛美レベル(&O) - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. データベース内のそれぞれの賛美の外観テーマを使用します。賛美に外観テーマが設定されていない場合、礼拝プログラムの外観テーマを使用します。礼拝プログラムに外観テーマが設定されていなければ、全体設定の外観テーマを使用します。 - + &Service Level 礼拝プログラムレベル(&S) - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. 礼拝プログラムの外観テーマを用い、賛美個々の外観テーマを上書きします。礼拝プログラムに外観テーマが設定されていなければ、全体設定の外観テーマを使用します。 - + &Global Level 全体レベル(&G) - + Use the global theme, overriding any themes associated with either the service or the songs. 全体外観テーマを用い、すべての礼拝プログラムや賛美に関連付けられた外観テーマを上書きします。 - + Themes 外観テーマ @@ -5101,315 +5218,315 @@ The content encoding is not UTF-8. OpenLP.Ui - + Error エラー - + About ソフトウェア情報 - + &Add 追加(&A) - + Advanced 詳細設定 - + All Files 全てのファイル - + Bottom 下部 - + Browse... 参照... - + Cancel キャンセル - + CCLI number: CCLI番号: - + Create a new service. 新規礼拝プログラムを作成します。 - + &Delete 削除(&D) - + &Edit 編集(&E) - + Empty Field 空のフィールド - + Export エキスポート - + pt Abbreviated font pointsize unit pt - + Image 画像 - + Import インポート - + Live ライブ - + Live Background Error ライブ背景エラー - + Load 読み込み - + Middle 中央部 - + New 新規 - + New Service 新しい礼拝プログラム - + New Theme 新しい外観テーマ - + No File Selected Singular ファイルが選択されていません - + No Files Selected Plural ファイルが一つも選択されていません - + No Item Selected Singular 項目が選択されていません - + No Items Selected Plural 一つの項目も選択されていません - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview プレビュー - + Replace Background 背景を置換 - + Reset Background 背景をリセット - + s The abbreviated unit for seconds - + Save && Preview 保存してプレビュー - + Search 検索 - + You must select an item to delete. 削除する項目を選択して下さい。 - + You must select an item to edit. 編集する項目を選択して下さい。 - + Save Service 礼拝プログラムの保存 - + Service 礼拝プログラム - + Start %s 開始 %s - + Theme Singular 外観テーマ - + Themes Plural 外観テーマ - + Top 上部 - + Version バージョン - + Delete the selected item. 選択された項目を削除。 - + Move selection up one position. 選択された項目を一つ上げる。 - + Move selection down one position. 選択された項目を一つ下げる。 - + &Vertical Align: 垂直整列(&V): - + Finished import. インポートの完了。 - + Format: 書式: - + Importing インポート中 - + Importing "%s"... "%s"をインポート中... - + Select Import Source インポート元を選択 - + Select the import format and the location to import from. インポート形式とインポート元を選択して下さい。 - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. The openlp.org 1.xの取込機能が、Pythonの拡張機能がないためオフになっています。取込機能をお使いになられる場合、python-sqlite拡張機能をインストール必要があります。 - + Open %s File %sファイルを開く - + %p% %p% - + Ready. 準備完了。 - + Starting import... インポートを開始しています.... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong インポート元となる%sファイルを最低一つ選択する必要があります。 @@ -5420,299 +5537,304 @@ The content encoding is not UTF-8. 聖書インポートウィザードへようこそ - + Welcome to the Song Export Wizard 賛美エキスポートウィザードへようこそ - + Welcome to the Song Import Wizard 賛美インポートウィザードへようこそ - + Author Singular アーティスト - + Authors Plural アーティスト - - © + + © Copyright symbol. © - + Song Book Singular アルバム - + Song Books Plural アルバム - + Song Maintenance 賛美の保守 - + Topic Singular 題目 - + Topics Plural 題目 - + Continuous 連続 - + Default 初期設定 - + Display style: 表示スタイル: - + Duplicate Error 重複エラー - + File ファイル - + Help ヘルプ - + h The abbreviated unit for hours - + Layout style: レイアウトスタイル: - + Live Toolbar ライブツールバー - + m The abbreviated unit for minutes - + OpenLP is already running. Do you wish to continue? OpenLPは既に実行されています。続けますか? - + Settings 設定 - + Tools ツール - + Unsupported File サポートされていないファイル - + Verse Per Slide スライドに1節 - + Verse Per Line 1行に1節 - + View 表示 - + Title and/or verses not found タイトル/歌詞が見つかりません - + XML syntax error XML構文エラー - + View Mode 表示モード - + Open service. 礼拝プログラムを開きます。 - + Print Service 礼拝プログラムを印刷 - + Replace live background. ライブの背景を置換します。 - + Reset live background. ライブの背景をリセットします。 - + Split a slide into two only if it does not fit on the screen as one slide. 1枚のスライドに納まらないときのみ、スライドが分割されます。 - + Welcome to the Bible Upgrade Wizard 聖書更新ウィザードへようこそ - + Confirm Delete 削除確認 - + Play Slides in Loop スライドを繰り返し再生 - + Play Slides to End スライドを最後まで再生 - + Stop Play Slides in Loop スライドの繰り返し再生を停止 - + Stop Play Slides to End - + スライドの再生を停止 - + Next Track 次のトラック - + Search Themes... Search bar place holder text テーマの検索... - + Optional &Split オプションの分割(&S) - + Invalid Folder Selected Singular 無効なフォルダが選択されました - + Invalid File Selected Singular 無効なファイルが選択されました - + Invalid Files Selected Plural 無効なファイルが選択されました - + No Folder Selected Singular フォルダが選択されていません - + Open %s Folder %sフォルダを開く - + You need to specify one %s file to import from. A file type e.g. OpenSong インポートするために%sファイルを選択してください。 - + You need to specify one %s folder to import from. A song format e.g. PowerSong インポートするために%sフォルダを選択してください。 + + + Importing Songs + 賛美のインポート + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 と %2 - + %1, and %2 Locale list separator: end %1 と %2 - + %1, %2 Locale list separator: middle %1 と %2 - + %1, %2 Locale list separator: start %1 と %2 @@ -5721,50 +5843,50 @@ The content encoding is not UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>プレゼンテーションプラグイン</strong><br />プレゼンテーションプラグインは、外部のプログラムを使用してプレゼンテーションを表示する機能を提供します。使用可能なプログラムは、ドロップダウンボックスから選択できます。 - + Presentation name singular プレゼンテーション - + Presentations name plural プレゼンテーション - + Presentations container title プレゼンテーション - + Load a new presentation. 新しいプレゼンテーションを読み込みます。 - + Delete the selected presentation. 選択したプレゼンテーションを削除します。 - + Preview the selected presentation. 選択したプレゼンテーションをプレビューします。 - + Send the selected presentation live. 選択したプレゼンテーションをライブへ送ります。 - + Add the selected presentation to the service. 選択したプレゼンテーションを礼拝プログラムに追加します。 @@ -5772,52 +5894,52 @@ The content encoding is not UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) プレゼンテーション選択 - + Automatic 自動 - + Present using: 使用プレゼン: - + File Exists ファイルが存在します - + A presentation with that filename already exists. そのファイル名のプレゼンテーションは既に存在します。 - + This type of presentation is not supported. このタイプのプレゼンテーションはサポートされておりません。 - + Presentations (%s) プレゼンテーション (%s) - + Missing Presentation 不明なプレゼンテーション - + The presentation %s is incomplete, please reload. プレゼンテーション%sは不完全です。再読み込みしてください。 - + The presentation %s no longer exists. プレゼンテーション %s は存在しません。 @@ -5825,17 +5947,17 @@ The content encoding is not UTF-8. PresentationPlugin.PresentationTab - + Available Controllers 使用可能なコントローラ - + %s (unavailable) %s (利用不可) - + Allow presentation application to be overridden プレゼンテーションアプリケーションの上書きを可能にする @@ -5843,24 +5965,24 @@ The content encoding is not UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>遠隔操作プラグイン</strong><br />遠隔操作プラグインは、ウェブブラウザや遠隔操作APIを使用して、他のコンピュータ上のOpenLPを操作する機能を提供します。 - + Remote name singular 遠隔操作 - + Remotes name plural 遠隔操作 - + Remote container title 遠隔操作 @@ -5869,236 +5991,246 @@ The content encoding is not UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 遠隔操作 - + OpenLP 2.0 Stage View OpenLP 2.0 ステージビュー - + Service Manager 礼拝プログラム - + Slide Controller スライドコントローラ - + Alerts 警告 - + Search 検索 - + Refresh 再読込 - + Blank ブランク - + Show 表示 - + Prev - + Next - + Text テキスト - + Show Alert 警告を表示 - + Go Live ライブへ送る - + No Results 見つかりませんでした - + Options オプション - + Add to Service 礼拝プログラムへ追加 - + Home ホーム - + Theme 外観テーマ - + Desktop デスクトップ - + Add &amp; Go to Service 追加し礼拝プログラムへ移動 + + + Service + 礼拝プログラム + + + + Slides + スライド + RemotePlugin.RemoteTab - + Serve on IP address: 待ち受けるIPアドレス: - + Port number: ポート番号: - + Server Settings サーバ設定 - + Remote URL: 遠隔操作URL: - + Stage view URL: ステージビューURL: - + Display stage time in 12h format ステージの時刻を12時間で表示 - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - QRコードを読み取るか、<a href="https://market.android.com/details?id=org.openlp.android">ダウンロード</a>をクリックしてAndroidアプリをマーケットからインストールしてください。 + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + QRコードをスキャンするか、<a href="https://play.google.com/store/apps/details?id=org.openlp.android">ダウンロード</a>をクリックしてGoogle PlayからAndroidアプリをインストールしてください。 SongUsagePlugin - + &Song Usage Tracking 賛美の利用記録(&S) - + &Delete Tracking Data 利用記録を削除(&D) - + Delete song usage data up to a specified date. 削除する利用記録の対象となるまでの日付を指定してください。 - + &Extract Tracking Data 利用記録の抽出(&E) - + Generate a report on song usage. 利用記録のレポートを出力する。 - + Toggle Tracking 記録の切り替え - + Toggle the tracking of song usage. 賛美の利用記録の切り替える。 - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>SongUsage Plugin</strong><br />このプラグインは、賛美の利用頻度を記録します。 - + SongUsage name singular 利用記録 - + SongUsage name plural 利用記録 - + SongUsage container title 利用記録 - + Song Usage 利用記録 - + Song usage tracking is active. 賛美の利用記録が有効です。 - + Song usage tracking is inactive. 賛美の利用記録が無効です。 - + display 表示 - + printed 印刷済み @@ -6106,32 +6238,32 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data 利用記録削除 - + Delete Selected Song Usage Events? 選択された賛美の利用記録を削除しますか? - + Are you sure you want to delete selected Song Usage data? 選択された賛美の利用記録を削除します。よろしいですか? - + Deletion Successful 正常に削除されました - + All requested data has been deleted successfully. 正常に削除されました。 - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. 利用記録を削除する日を選択してください。この日以前の記録は全て削除されます。 @@ -6139,42 +6271,42 @@ The content encoding is not UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction 賛美利用記録の抽出 - + Select Date Range 賛美利用の期間 - + to から - + Report Location レポートの出力 - + Output File Location レポートの出力場所 - + usage_detail_%s_%s.txt usage_detail_%s_%s.txt - + Report Creation レポート生成 - + Report %s has been successfully created. @@ -6183,12 +6315,12 @@ has been successfully created. - は正常に生成されました。 - + Output Path Not Selected 出力先が選択されていません - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. 賛美利用記録レポートの出力先が無効です。コンピューター上に存在するフォルダを選択して下さい。 @@ -6196,211 +6328,216 @@ has been successfully created. SongsPlugin - + &Song 賛美(&S) - + Import songs using the import wizard. インポートウィザードを使用して賛美をインポートします。 - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>賛美プラグイン</strong><br />賛美プラグインは、賛美を表示し管理する機能を提供します。 - + &Re-index Songs 賛美のインデックスを再作成(&R) - + Re-index the songs database to improve searching and ordering. 賛美データベースのインデックスを再作成し、検索や並べ替えを速くします。 - + Reindexing songs... 賛美のインデックスを再作成中... - + Arabic (CP-1256) アラブ語 (CP-1256) - + Baltic (CP-1257) バルト語 (CP-1257) - + Central European (CP-1250) 中央ヨーロッパ (CP-1250) - + Cyrillic (CP-1251) キリル文字 (CP-1251) - + Greek (CP-1253) ギリシャ語 (CP-1253) - + Hebrew (CP-1255) ヘブライ語 (CP-1255) - + Japanese (CP-932) 日本語 (CP-932) - + Korean (CP-949) 韓国語 (CP-949) - + Simplified Chinese (CP-936) 簡体中国語 (CP-936) - + Thai (CP-874) タイ語 (CP-874) - + Traditional Chinese (CP-950) 繁体中国語 (CP-950) - + Turkish (CP-1254) トルコ語 (CP-1254) - + Vietnam (CP-1258) ベトナム語 (CP-1258) - + Western European (CP-1252) 西ヨーロッパ (CP-1252) - + Character Encoding 文字コード - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. 文字コード設定は、文字が正常に表示されるのに必要な設定です。通常、既定設定で問題ありません。 - + Please choose the character encoding. The encoding is responsible for the correct character representation. 文字コードを選択してください。文字が正常に表示されるのに必要な設定です。 - + Song name singular 賛美 - + Songs name plural 賛美 - + Songs container title 賛美 - + Exports songs using the export wizard. エキスポートウィザードを使って賛美をエキスポートする。 - + Add a new song. 賛美を追加します。 - + Edit the selected song. 選択した賛美を編集します。 - + Delete the selected song. 選択した賛美を削除します。 - + Preview the selected song. 選択した賛美をプレビューします。 - + Send the selected song live. 選択した賛美をライブへ送ります。 - + Add the selected song to the service. 選択した賛美を礼拝プログラムに追加します。 + + + Reindexing songs + 賛美のインデックスを再作成 + SongsPlugin.AuthorsForm - + Author Maintenance アーティストを保守 - + Display name: 表示名: - + First name: 名: - + Last name: 姓: - + You need to type in the first name of the author. 名を入力してください。 - + You need to type in the last name of the author. 姓を入力してください。 - + You have not set a display name for the author, combine the first and last names? 表示名が設定されていません。名と姓を合わせますか? @@ -6408,7 +6545,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. ファイルの拡張子が無効です。 @@ -6416,12 +6553,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EasyWorshipSongImport - + Administered by %s %s によって管理されています - + [above are Song Tags with notes imported from EasyWorship] @@ -6432,12 +6569,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditBibleForm - + Meta Data メタデータ - + Custom Book Names 任意の書名 @@ -6445,207 +6582,202 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditSongForm - + Song Editor ソングエディタ - + &Title: タイトル(&T): - + Alt&ernate title: サブタイトル(&e): - + &Lyrics: 賛美詞(&L): - + &Verse order: 節順(&V): - + Ed&it All 全て編集(&E) - + Title && Lyrics タイトル && 賛美詞 - + &Add to Song 賛美に追加(&A) - + &Remove 削除(&R) - + &Manage Authors, Topics, Song Books アーティスト、題目、アルバムを管理(&M) - + A&dd to Song 賛美に追加(&A) - + R&emove 削除(&e) - + Book: 書名: - + Number: ナンバー: - + Authors, Topics && Song Book アーティスト、題目 && アルバム - + New &Theme 新しい外観テーマ(&N) - + Copyright Information 著作権情報 - + Comments コメント - + Theme, Copyright Info && Comments 外観テーマ、著作情報 && コメント - + Add Author アーティストを追加 - + This author does not exist, do you want to add them? アーティストが存在しません。追加しますか? - + This author is already in the list. 既にアーティストは一覧に存在します。 - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. 有効なアーティストを選択してください。一覧から選択するか新しいアーティストを入力し、"賛美にアーティストを追加"をクリックしてください。 - + Add Topic トピックを追加 - + This topic does not exist, do you want to add it? このトピックは存在しません。追加しますか? - + This topic is already in the list. このトピックは既に存在します。 - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. 有効なトピックを選択してください。一覧から選択するか新しいトピックを入力し、"賛美にトピックを追加"をクリックしてください。 - + You need to type in a song title. 賛美のタイトルを入力する必要があります。 - + You need to type in at least one verse. 最低一つのバースを入力する必要があります。 - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. バース順序が無効です。%sに対応するバースはありません。%sは有効です。 - + Add Book アルバムを追加 - + This song book does not exist, do you want to add it? アルバムが存在しません、追加しますか? - + You need to have an author for this song. アーティストを入力する必要があります。 - - You need to type some text in to the verse. - バースにテキストを入力する必要があります。 - - - + Linked Audio 関連付けられた音声 - + Add &File(s) ファイルを追加(&F) - + Add &Media メディアを追加(&M) - + Remove &All すべて削除(&A) - + Open File(s) ファイルを開く - + <strong>Warning:</strong> Not all of the verses are in use. <strong>警告:</strong>全ての箇所が使用されていません。 - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. 順序が正しくありません。%sに対応する箇所が存在しません。有効な箇所は%sです。 @@ -6653,22 +6785,22 @@ The encoding is responsible for the correct character representation. SongsPlugin.EditVerseForm - + Edit Verse バース編集 - + &Verse type: バースのタイプ(&): - + &Insert 挿入(&I) - + Split a slide into two by inserting a verse splitter. スライド分割機能を用い、スライドを分割してください。 @@ -6676,82 +6808,82 @@ The encoding is responsible for the correct character representation. SongsPlugin.ExportWizardForm - + Song Export Wizard 賛美エキスポートウィザード - + Select Songs 賛美を選択して下さい - + Check the songs you want to export. エキスポートしたい賛美をチェックして下さい。 - + Uncheck All すべてのチェックを外す - + Check All すべてをチェックする - + Select Directory ディレクトリを選択して下さい - + Directory: ディレクトリ: - + Exporting エキスポート中 - + Please wait while your songs are exported. 賛美をエキスポートしている間今しばらくお待ちください。 - + You need to add at least one Song to export. エキスポートする最低一つの賛美を選択する必要があります。 - + No Save Location specified 保存先が指定されていません - + Starting export... エキスポートを開始しています... - + You need to specify a directory. ディレクトリを選択して下さい。 - + Select Destination Folder 出力先フォルダを選択して下さい - + Select the directory where you want the songs to be saved. 賛美を保存したいディレクトリを選択してください。 - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. このウィザードで、賛美をオープンで無償な<strong>OpenLyrics</strong> worship song形式としてエキスポートできます。 @@ -6759,173 +6891,173 @@ The encoding is responsible for the correct character representation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files ドキュメント/プレゼンテーションファイル選択 - + Song Import Wizard 賛美インポートウィザード - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. このウィザードで、様々な形式の賛美をインポートします。次へをクリックし、インポートするファイルの形式を選択してください。 - + Generic Document/Presentation 汎用ドキュメント/プレゼンテーション - + Add Files... ファイルの追加... - + Remove File(s) ファイルの削除 - + Please wait while your songs are imported. 賛美がインポートされるまでしばらくお待ちください。 - + OpenLP 2.0 Databases OpenLP 2.0 データベース - + openlp.org v1.x Databases openlp.org v1.x データベース - + Words Of Worship Song Files Words Of Worship Song ファイル - + Songs Of Fellowship Song Files Songs Of Fellowship Song ファイル - + SongBeamer Files SongBeamerファイル - + SongShow Plus Song Files SongShow Plus Songファイル - + Foilpresenter Song Files Foilpresenter Song ファイル - + Copy コピー - + Save to File ファイルに保存 - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeまたはLibreOfficeに接続できないため、Songs of Fellowshipのインポート機能は無効になっています。 - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. OpenOfficeまたはLibreOfficeに接続できないため、汎用ドキュメント/プレゼンテーションのインポート機能は無効になっています。 - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics OpenLP 2.0からエクスポートされたデータ - + OpenLyrics Files OpenLyricsファイル - + CCLI SongSelect Files CCLI SongSelectファイル - + EasySlides XML File Easy Slides XMLファイル - + EasyWorship Song Database EasyWorship Songデータベース - + DreamBeam Song Files DreamBeam Song ファイル - + You need to specify a valid PowerSong 1.0 database folder. 有効なPowerSong 1.0データベースフォールダを選択する必要があります。 - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>に従ってZionWorxデータベースファイルをCSVへ変換してください。 - + SundayPlus Song Files SundayPlus Songファイル - + This importer has been disabled. このインポートは使用できません。 - + MediaShout Database MediaShoutデータベース - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShoutのインポートはWindowsのみで利用可能です。この機能を使用するためには、Pythonの"pyodbc"モジュールを インストールしてください。 - + SongPro Text Files SongProテキストファイル - + SongPro (Export File) SongPro (エキスポートファイル) - + In SongPro, export your songs using the File -> Export menu SongProにおいて、メニューのFile-&gt;Exportからエクスポートしてください。 @@ -6933,12 +7065,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaFilesForm - + Select Media File(s) メディアファイルを選択 - + Select one or more audio files from the list below, and click OK to import them into this song. 音声ファイルを下の一覧から1つ以上選択し、OKをクリックしてインポートしてください。 @@ -6946,63 +7078,65 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaItem - + Titles タイトル - + Lyrics 賛美詞 - + CCLI License: CCLI ライセンス: - + Entire Song 賛美全体 - + Are you sure you want to delete the %n selected song(s)? - 選択された%n件の賛美を削除します。宜しいですか? + + 選択された%n件の賛美を削除します。宜しいですか? + - + Maintain the lists of authors, topics and books. アーティスト、トピックとアルバムの一覧を保守します。 - + copy For song cloning コピー - + Search Titles... タイトルを検索... - + Search Entire Song... 全てのデータを検索... - + Search Lyrics... 歌詞を検索... - + Search Authors... 著者を検索... - + Search Song Books... アルバムを検索中... @@ -7010,7 +7144,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. MediaShoutデータベースを開けません。 @@ -7018,7 +7152,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. 有効なopenlp.org v1.xデータベースではありません。 @@ -7026,7 +7160,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. 有効なOpenLP 2.0データベースではありません。 @@ -7034,7 +7168,7 @@ The encoding is responsible for the correct character representation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... 「%s」をエキスポートしています... @@ -7042,35 +7176,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. インポートする賛美が見つかりません。 - + Verses not found. Missing "PART" header. 歌詞が見つかりません。"PART"ヘッダが不足しています。 + + + No %s files found. + %sファイルが見つかりません。 + + + + Invalid %s file. Unexpected byte value. + 無効な%sファイルです。予期せぬバイトがみつかりました。 + + + + Invalid %s file. Missing "TITLE" header. + 無効な%sファイルです。"TITLE"ヘッダが見つかりません。 + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + 無効な%sファイルです。"COPYRIGHTLINE"ヘッダが見つかりません。 + SongsPlugin.SongBookForm - + Song Book Maintenance アルバムの保守 - + &Name: 名前(&N): - + &Publisher: 発行元(&P): - + You need to type in a name for the book. アルバム名を入力してください。 @@ -7078,12 +7232,12 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongExportForm - + Your song export failed. 賛美のエキスポートに失敗しました。 - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. エキスポートが完了しました。インポートするには、<strong>OpenLyrics</strong>インポータを使用してください。 @@ -7091,27 +7245,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongImport - + copyright 著作権 - + The following songs could not be imported: 以下の賛美はインポートできませんでした: - + Cannot access OpenOffice or LibreOffice OpenOfficeまたはLibreOfficeに接続できません - + Unable to open file ファイルを開けません - + File not found ファイルが見つかりません @@ -7119,107 +7273,107 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongMaintenanceForm - + Could not add your author. アーティストが追加できませんでした。 - + This author already exists. このアーティストは既に登録されています。 - + Could not add your topic. トピックの追加に失敗しました。 - + This topic already exists. トピックが既に存在します。 - + Could not add your book. アルバムが追加できませんでした。 - + This book already exists. 既にこのアルバムが存在します。 - + Could not save your changes. 変更が保存できませんでした。 - + Could not save your modified author, because the author already exists. 既にアーティストが登録されているため、変更を保存できませんでした。 - + Could not save your modified topic, because it already exists. 既に題目登録されているため、変更を保存できませんでした。 - + Delete Author アーティスト削除 - + Are you sure you want to delete the selected author? 選択されたアーティストを削除しますか? - + This author cannot be deleted, they are currently assigned to at least one song. 最低一つの賛美に割り振られているため、このアーティストを削除できませんでした。 - + Delete Topic トピックの削除 - + Are you sure you want to delete the selected topic? 選択されたトピックを削除しますか? - + This topic cannot be deleted, it is currently assigned to at least one song. 最低一つの賛美に割り振られているため、このトピックを削除できませんでした。 - + Delete Book アルバム削除 - + Are you sure you want to delete the selected book? 選択されたアルバムを削除しますか? - + This book cannot be deleted, it is currently assigned to at least one song. 最低一つの賛美に割り振られているため、このアルバムを削除できませんでした。 - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? アーティスト%sは既に存在します。既存のアーティスト%sを用い、アーティスト%sで賛美を作りますか? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? 題目%sは既に存在します。既存の題目%sを用い、題目%sで賛美を作りますか? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? アルバム%sは既に存在します。既存のアルバム%sを用い、アルバム%sで賛美を作りますか? @@ -7227,27 +7381,27 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongsTab - + Songs Mode 賛美モード - + Enable search as you type 入力と同時に検索する - + Display verses on live tool bar ライブツールバーにバースを表示 - + Update service from song edit 編集後に礼拝プログラムを更新 - + Import missing songs from service files 不足している賛美を礼拝ファイルからインポートする @@ -7255,17 +7409,17 @@ The encoding is responsible for the correct character representation. SongsPlugin.TopicsForm - + Topic Maintenance 題目保守 - + Topic name: 題目名: - + You need to type in a topic name. 題目名を入力してください。 @@ -7273,37 +7427,37 @@ The encoding is responsible for the correct character representation. SongsPlugin.VerseType - + Verse バース - + Chorus コーラス - + Bridge ブリッジ - + Pre-Chorus 間奏 - + Intro 序奏 - + Ending エンディング - + Other その他 @@ -7311,14 +7465,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. CSVファイルの読み込みに失敗しました。 - + File not valid ZionWorx CSV format. ファイルは有効なZionWorx CSV形式ではありません。 + + + Line %d: %s + %d行: %s + + + + Decoding error: %s + デコードエラー: %s + + + + Record %d + レコード %d + - \ No newline at end of file + diff --git a/resources/i18n/ko.ts b/resources/i18n/ko.ts deleted file mode 100644 index ade4d3e56..000000000 --- a/resources/i18n/ko.ts +++ /dev/null @@ -1,7173 +0,0 @@ - - - AlertsPlugin - - - &Alert - 경고(&A) - - - - Show an alert message. - 에러 메세지를 보여줍니다. - - - - Alert - name singular - 알림 - - - - Alerts - name plural - 알림 - - - - Alerts - container title - 알림 - - - - <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - - - - - AlertsPlugin.AlertForm - - - Alert Message - 경고 메세지 - - - - Alert &text: - 경고 문구(&T) - - - - &New - 새로 만들기(&N) - - - - &Save - 저장(&S) - - - - Displ&ay - 출력(&A) - - - - Display && Cl&ose - 출력 && 닫기(&O) - - - - New Alert - 새 경고 - - - - You haven't specified any text for your alert. Please type in some text before clicking New. - 경고 문구를 입력하지 않았습니다. 새로 만들기를 하려면 문구를 입력해주세요. - - - - &Parameter: - - - - - No Parameter Found - - - - - You have not entered a parameter to be replaced. -Do you want to continue anyway? - - - - - No Placeholder Found - - - - - The alert text does not contain '<>'. -Do you want to continue anyway? - - - - - AlertsPlugin.AlertsManager - - - Alert message created and displayed. - 경고 메세지가 생성 및 출력되었습니다. - - - - AlertsPlugin.AlertsTab - - - Font - 글꼴 - - - - Font name: - 글꼴: - - - - Font color: - 글꼴색: - - - - Background color: - 배경색: - - - - Font size: - 글꼴 크기: - - - - Alert timeout: - 경고 타임아웃: - - - - BiblesPlugin - - - &Bible - 성경(&B) - - - - Bible - name singular - 성경 - - - - Bibles - name plural - 성경 - - - - Bibles - container title - 성경 - - - - No Book Found - - - - - No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - - - - - Import a Bible. - - - - - Add a new Bible. - - - - - Edit the selected Bible. - - - - - Delete the selected Bible. - - - - - Preview the selected Bible. - - - - - Send the selected Bible live. - - - - - Add the selected Bible to the service. - - - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - - - - - &Upgrade older Bibles - - - - - Upgrade the Bible databases to the latest format. - - - - - Genesis - 창세기 - - - - Exodus - 출애굽기 - - - - Leviticus - 레위기 - - - - Numbers - 민수기 - - - - Deuteronomy - 신명기 - - - - Joshua - - - - - Judges - 사사기 - - - - Ruth - - - - - 1 Samuel - 사무엘상 - - - - 2 Samuel - 사무엘하 - - - - 1 Kings - 열왕기상 - - - - 2 Kings - 열왕기하 - - - - 1 Chronicles - 역대상 - - - - 2 Chronicles - 역대하 - - - - Ezra - 에스라 - - - - Nehemiah - 느헤미야 - - - - Esther - 에스더 - - - - Job - 욥기 - - - - Psalms - 시편 - - - - Proverbs - 잠언 - - - - Ecclesiastes - 전도서 - - - - Song of Solomon - 아가 - - - - Isaiah - 이사야 - - - - Jeremiah - 예레미야 - - - - Lamentations - - - - - Ezekiel - 에스겔 - - - - Daniel - 다니엘 - - - - Hosea - 호세아 - - - - Joel - 요엘 - - - - Amos - 아모스 - - - - Obadiah - 오바댜 - - - - Jonah - 요나 - - - - Micah - 미가 - - - - Nahum - 나훔 - - - - Habakkuk - 하박국 - - - - Zephaniah - 스바냐 - - - - Haggai - 학개 - - - - Zechariah - 스가랴 - - - - Malachi - 말라기 - - - - Matthew - 마태복음 - - - - Mark - 마가복음 - - - - Luke - 누가복음 - - - - John - 요한복음 - - - - Acts - 사도행전 - - - - Romans - 로마서 - - - - 1 Corinthians - 고린도전서 - - - - 2 Corinthians - 고린도후서 - - - - Galatians - 갈라디아서 - - - - Ephesians - 에베소서 - - - - Philippians - 빌립보서 - - - - Colossians - 골로새서 - - - - 1 Thessalonians - 데살로니가전서 - - - - 2 Thessalonians - 데살로니가후서 - - - - 1 Timothy - 디모데전서 - - - - 2 Timothy - 디모데후서 - - - - Titus - 디도서 - - - - Philemon - 빌레몬서 - - - - Hebrews - 히브리서 - - - - James - 야고보서 - - - - 1 Peter - 베드로전서 - - - - 2 Peter - 베드로후서 - - - - 1 John - 요한1서 - - - - 2 John - 요한2서 - - - - 3 John - 요한3서 - - - - Jude - 유다서 - - - - Revelation - 요한계시록 - - - - Judith - - - - - Wisdom - - - - - Tobit - - - - - Sirach - - - - - Baruch - - - - - 1 Maccabees - - - - - 2 Maccabees - - - - - 3 Maccabees - - - - - 4 Maccabees - - - - - Rest of Daniel - - - - - Rest of Esther - - - - - Prayer of Manasses - - - - - Letter of Jeremiah - - - - - Prayer of Azariah - - - - - Susanna - - - - - Bel - - - - - 1 Esdras - - - - - 2 Esdras - - - - - :|v|V|verse|verses;;-|to;;,|and;;end - Double-semicolon delimited separators for parsing references. Consult the developers for further information. - - - - - BiblesPlugin.BibleEditForm - - - You need to specify a version name for your Bible. - - - - - You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - - - - - Bible Exists - - - - - This Bible already exists. Please import a different Bible or first delete the existing one. - - - - - You need to specify a book name for "%s". - - - - - The book name "%s" is not correct. -Numbers can only be used at the beginning and must -be followed by one or more non-numeric characters. - - - - - Duplicate Book Name - - - - - The Book Name "%s" has been entered more than once. - - - - - BiblesPlugin.BibleManager - - - Scripture Reference Error - 성경 참조 오류 - - - - Web Bible cannot be used - - - - - Text Search is not available with Web Bibles. - - - - - You did not enter a search keyword. -You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - - - - - There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - - - - - No Bibles Available - - - - - Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: - -Book Chapter -Book Chapter%(range)sChapter -Book Chapter%(verse)sVerse%(range)sVerse -Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse -Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse -Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse - Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - - - - - BiblesPlugin.BiblesTab - - - Verse Display - 절 출력 - - - - Only show new chapter numbers - 새로운 장번호만 보이기 - - - - Bible theme: - 성경 테마: - - - - No Brackets - 꺽쇠 안보이기 - - - - ( And ) - ( 와 ) - - - - { And } - { 와 } - - - - [ And ] - [ 와 ] - - - - Note: -Changes do not affect verses already in the service. - 참고: -이미 서비스 중인 구절에 대해서는 변경사항이 적용되지 않습니다. - - - - Display second Bible verses - - - - - Custom Scripture References - - - - - Verse Separator: - - - - - Range Separator: - - - - - List Separator: - - - - - End Mark: - - - - - Multiple alternative verse separators may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - Multiple alternative range separators may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - Multiple alternative list separators may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - Multiple alternative end marks may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - English - - - - - Default Bible Language - - - - - Book name language in search field, -search results and on display: - - - - - Bible Language - - - - - Application Language - - - - - BiblesPlugin.BookNameDialog - - - Select Book Name - - - - - Current name: - - - - - Corresponding name: - - - - - Show Books From - - - - - Old Testament - - - - - New Testament - - - - - Apocrypha - - - - - The following book name cannot be matched up internally. Please select the corresponding name from the list. - - - - - BiblesPlugin.BookNameForm - - - You need to select a book. - - - - - BiblesPlugin.CSVBible - - - Importing books... %s - - - - - Importing verses from %s... - Importing verses from <book name>... - - - - - Importing verses... done. - - - - - BiblesPlugin.EditBibleForm - - - Bible Editor - - - - - License Details - - - - - Version name: - - - - - Copyright: - - - - - Permissions: - - - - - Default Bible Language - - - - - Book name language in search field, search results and on display: - - - - - Global Settings - - - - - Bible Language - - - - - Application Language - - - - - English - - - - - This is a Web Download Bible. -It is not possible to customize the Book Names. - - - - - To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - - - - - BiblesPlugin.HTTPBible - - - Registering Bible and loading books... - - - - - Registering Language... - - - - - Importing %s... - Importing <book name>... - - - - - Download Error - - - - - There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - - - - - Parse Error - - - - - There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - - - - - BiblesPlugin.ImportWizardForm - - - Bible Import Wizard - 성경 가져오기 마법사 - - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - 이 마법사는 각종 형식의 성경을 가져오도록 안내해드립니다. 다음 버튼을 눌러서 가져올 성경의 형식을 선택해 주세요. - - - - Web Download - 웹 다운로드 - - - - Location: - 위치: - - - - Crosswalk - Crosswalk - - - - BibleGateway - BibleGateway - - - - Bible: - 성경: - - - - Download Options - 다운로드 옵션 - - - - Server: - 서버: - - - - Username: - 사용자 이름: - - - - Password: - 비밀번호: - - - - Proxy Server (Optional) - 프록시 서버 (선택 사항) - - - - License Details - 라이센스 정보 - - - - Set up the Bible's license details. - - - - - Version name: - 버전 이름: - - - - Copyright: - 저작권: - - - - Please wait while your Bible is imported. - 성경 가져오기가 진행되는 동안 기다려주세요. - - - - You need to specify a file with books of the Bible to use in the import. - - - - - You need to specify a file of Bible verses to import. - - - - - You need to specify a version name for your Bible. - - - - - You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - - - - - Bible Exists - - - - - This Bible already exists. Please import a different Bible or first delete the existing one. - - - - - Your Bible import failed. - - - - - CSV File - CSV파일 - - - - Bibleserver - 성경서버 - - - - Permissions: - - - - - Bible file: - 성경파일: - - - - Books file: - - - - - Verses file: - - - - - openlp.org 1.x Bible Files - - - - - Registering Bible... - - - - - Registered Bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - - - - - BiblesPlugin.LanguageDialog - - - Select Language - - - - - OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - - - - - Language: - - - - - BiblesPlugin.LanguageForm - - - You need to choose a language. - - - - - BiblesPlugin.MediaItem - - - Quick - - - - - Find: - - - - - Book: - - - - - Chapter: - - - - - Verse: - - - - - From: - - - - - To: - - - - - Text Search - - - - - Second: - - - - - Scripture Reference - - - - - Toggle to keep or clear the previous results. - - - - - You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - - - - - Bible not fully loaded. - - - - - Information - 정보 - - - - The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - - - - - Search Scripture Reference... - - - - - Search Text... - - - - - Are you sure you want to completely delete "%s" Bible from OpenLP? - -You will need to re-import this Bible to use it again. - - - - - BiblesPlugin.OpenSongImport - - - Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - - - - - BiblesPlugin.Opensong - - - Importing %s %s... - Importing <book name> <chapter>... - - - - - BiblesPlugin.OsisImport - - - Detecting encoding (this may take a few minutes)... - - - - - Importing %s %s... - Importing <book name> <chapter>... - - - - - BiblesPlugin.UpgradeWizardForm - - - Select a Backup Directory - - - - - Bible Upgrade Wizard - - - - - This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - - - - - Select Backup Directory - - - - - Please select a backup directory for your Bibles - - - - - Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - - - - - Please select a backup location for your Bibles. - - - - - Backup Directory: - - - - - There is no need to backup my Bibles - - - - - Select Bibles - - - - - Please select the Bibles to upgrade - - - - - Upgrading - - - - - Please wait while your Bibles are upgraded. - - - - - The backup was not successful. -To backup your Bibles you need permission to write to the given directory. - - - - - Upgrading Bible %s of %s: "%s" -Failed - - - - - Upgrading Bible %s of %s: "%s" -Upgrading ... - - - - - Download Error - - - - - To upgrade your Web Bibles an Internet connection is required. - - - - - Upgrading Bible %s of %s: "%s" -Upgrading %s ... - - - - - Upgrading Bible %s of %s: "%s" -Complete - - - - - , %s failed - - - - - Upgrading Bible(s): %s successful%s -Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - - - - - Upgrading Bible(s): %s successful%s - - - - - Upgrade failed. - - - - - You need to specify a backup directory for your Bibles. - - - - - Starting upgrade... - - - - - There are no Bibles that need to be upgraded. - - - - - CustomPlugin - - - <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - - - - - Custom Slide - name singular - - - - - Custom Slides - name plural - - - - - Custom Slides - container title - - - - - Load a new custom slide. - - - - - Import a custom slide. - - - - - Add a new custom slide. - - - - - Edit the selected custom slide. - - - - - Delete the selected custom slide. - - - - - Preview the selected custom slide. - - - - - Send the selected custom slide live. - - - - - Add the selected custom slide to the service. - - - - - CustomPlugin.CustomTab - - - Custom Display - - - - - Display footer - - - - - CustomPlugin.EditCustomForm - - - Edit Custom Slides - - - - - &Title: - - - - - Add a new slide at bottom. - - - - - Edit the selected slide. - - - - - Edit all the slides at once. - - - - - Split a slide into two by inserting a slide splitter. - - - - - The&me: - - - - - &Credits: - - - - - You need to type in a title. - - - - - You need to add at least one slide - - - - - Ed&it All - - - - - Insert Slide - - - - - CustomPlugin.EditVerseForm - - - Edit Slide - - - - - CustomPlugin.MediaItem - - - Are you sure you want to delete the %n selected custom slide(s)? - - - - - ImagePlugin - - - <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - - - - - Image - name singular - - - - - Images - name plural - - - - - Images - container title - - - - - Load a new image. - - - - - Add a new image. - - - - - Edit the selected image. - - - - - Delete the selected image. - - - - - Preview the selected image. - - - - - Send the selected image live. - - - - - Add the selected image to the service. - - - - - ImagePlugin.ExceptionDialog - - - Select Attachment - - - - - ImagePlugin.MediaItem - - - Select Image(s) - - - - - You must select an image to delete. - - - - - You must select an image to replace the background with. - - - - - Missing Image(s) - - - - - The following image(s) no longer exist: %s - - - - - The following image(s) no longer exist: %s -Do you want to add the other images anyway? - - - - - There was a problem replacing your background, the image file "%s" no longer exists. - - - - - There was no display item to amend. - - - - - ImagesPlugin.ImageTab - - - Background Color - - - - - Default Color: - - - - - Visible background for images with aspect ratio different to screen. - - - - - MediaPlugin - - - <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - name singular - - - - - Media - name plural - - - - - Media - container title - - - - - Load new media. - - - - - Add new media. - - - - - Edit the selected media. - - - - - Delete the selected media. - - - - - Preview the selected media. - - - - - Send the selected media live. - - - - - Add the selected media to the service. - - - - - MediaPlugin.MediaItem - - - Select Media - - - - - You must select a media file to delete. - - - - - You must select a media file to replace the background with. - - - - - There was a problem replacing your background, the media file "%s" no longer exists. - - - - - Missing Media File - - - - - The file %s no longer exists. - - - - - Videos (%s);;Audio (%s);;%s (*) - - - - - There was no display item to amend. - - - - - Unsupported File - - - - - Automatic - - - - - Use Player: - - - - - MediaPlugin.MediaTab - - - Available Media Players - - - - - %s (unavailable) - - - - - Player Order - - - - - Allow media player to be overridden - - - - - OpenLP - - - Image Files - - - - - Information - - - - - Bible format has changed. -You have to upgrade your existing Bibles. -Should OpenLP upgrade now? - - - - - OpenLP.AboutForm - - - Credits - - - - - License - - - - - Contribute - - - - - build %s - - - - - This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - - - - - This program 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 below for more details. - - - - - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - OpenLP.AdvancedTab - - - UI Settings - - - - - Number of recent files to display: - - - - - Remember active media manager tab on startup - - - - - Double-click to send items straight to live - - - - - Expand new service items on creation - - - - - Enable application exit confirmation - - - - - Mouse Cursor - - - - - Hide mouse cursor when over display window - - - - - Default Image - - - - - Background color: - - - - - Image file: - - - - - Open File - - - - - Advanced - - - - - Preview items when clicked in Media Manager - - - - - Click to select a color. - - - - - Browse for an image file to display. - - - - - Revert to the default OpenLP logo. - - - - - Service %Y-%m-%d %H-%M - This may not contain any of the following characters: /\?*|<>[]":+ -See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - - - - - Default Service Name - - - - - Enable default service name - - - - - Date and Time: - - - - - Monday - - - - - Tuesday - - - - - Wednesday - - - - - Thurdsday - - - - - Friday - - - - - Saturday - - - - - Sunday - - - - - Now - - - - - Time when usual service starts. - - - - - Name: - - - - - Consult the OpenLP manual for usage. - - - - - Revert to the default service name "%s". - - - - - Example: - - - - - X11 - - - - - Bypass X11 Window Manager - - - - - Syntax error. - - - - - Data Location - - - - - Current path: - - - - - Custom path: - - - - - Browse for new data file location. - - - - - Set the data location to the default. - - - - - Cancel - - - - - Cancel OpenLP data directory location change. - - - - - Copy data to new location. - - - - - Copy the OpenLP data files to the new location. - - - - - <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - - - - - Data Directory Error - - - - - Select Data Directory Location - - - - - Confirm Data Directory Change - - - - - Reset Data Directory - - - - - Are you sure you want to change the location of the OpenLP data directory to the default location? - -This location will be used after OpenLP is closed. - - - - - Overwrite Existing Data - - - - - OpenLP.ExceptionDialog - - - Error Occurred - - - - - Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - - - - - Send E-Mail - - - - - Save to File - - - - - Please enter a description of what you were doing to cause this error -(Minimum 20 characters) - - - - - Attach File - - - - - Description characters to enter : %s - - - - - OpenLP.ExceptionForm - - - Platform: %s - - - - - - Save Crash Report - - - - - Text files (*.txt *.log *.text) - - - - - **OpenLP Bug Report** -Version: %s - ---- Details of the Exception. --- - -%s - - --- Exception Traceback --- -%s ---- System information --- -%s ---- Library Versions --- -%s - - - - - - *OpenLP Bug Report* -Version: %s - ---- Details of the Exception. --- - -%s - - --- Exception Traceback --- -%s ---- System information --- -%s ---- Library Versions --- -%s - - Please add the information that bug reports are favoured written in English. - - - - - OpenLP.FileRenameForm - - - File Rename - - - - - New File Name: - - - - - File Copy - - - - - OpenLP.FirstTimeLanguageForm - - - Select Translation - - - - - Choose the translation you'd like to use in OpenLP. - - - - - Translation: - - - - - OpenLP.FirstTimeWizard - - - Songs - - - - - First Time Wizard - - - - - Welcome to the First Time Wizard - - - - - Activate required Plugins - - - - - Select the Plugins you wish to use. - - - - - Bible - - - - - Images - - - - - Presentations - - - - - Media (Audio and Video) - - - - - Allow remote access - - - - - Monitor Song Usage - - - - - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - - - - - No Internet Connection - - - - - Unable to detect an Internet connection. - - - - - Sample Songs - - - - - Select and download public domain songs. - - - - - Sample Bibles - - - - - Select and download free Bibles. - - - - - Sample Themes - - - - - Select and download sample themes. - - - - - Set up default settings to be used by OpenLP. - - - - - Default output display: - - - - - Select default theme: - - - - - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - - - - - Finish - - - - - No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. - -To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - - - - - - -To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - - - - - OpenLP.FormattingTagDialog - - - Configure Formatting Tags - - - - - Edit Selection - - - - - Save - - - - - Description - - - - - Tag - - - - - Start HTML - - - - - End HTML - - - - - OpenLP.FormattingTagForm - - - Update Error - - - - - Tag "n" already defined. - - - - - New Tag - - - - - <HTML here> - - - - - </and here> - - - - - Tag %s already defined. - - - - - OpenLP.FormattingTags - - - Red - - - - - Black - - - - - Blue - - - - - Yellow - - - - - Green - - - - - Pink - - - - - Orange - - - - - Purple - - - - - White - - - - - Superscript - - - - - Subscript - - - - - Paragraph - - - - - Bold - - - - - Italics - - - - - Underline - - - - - Break - - - - - OpenLP.GeneralTab - - - General - - - - - Monitors - - - - - Select monitor for output display: - - - - - Display if a single screen - - - - - Application Startup - - - - - Show blank screen warning - - - - - Automatically open the last service - - - - - Show the splash screen - - - - - Application Settings - - - - - Prompt to save before starting a new service - - - - - Automatically preview next item in service - - - - - sec - - - - - CCLI Details - - - - - SongSelect username: - - - - - SongSelect password: - - - - - X - - - - - Y - - - - - Height - - - - - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - - - - - Background Audio - - - - - Start background audio paused - - - - - Service Item Slide Limits - - - - - Override display position: - - - - - Repeat track list - - - - - Behavior of next/previous on the last/first slide: - - - - - &Remain on Slide - - - - - &Wrap around - - - - - &Move to next/previous service item - - - - - OpenLP.LanguageManager - - - Language - - - - - Please restart OpenLP to use your new language setting. - - - - - OpenLP.MainDisplay - - - OpenLP Display - - - - - OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - - - &Tools - - - - - &Settings - - - - - &Language - - - - - &Help - - - - - Media Manager - - - - - Service Manager - - - - - Theme Manager - - - - - &New - - - - - &Open - - - - - Open an existing service. - - - - - &Save - - - - - Save the current service to disk. - - - - - Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - - - - - E&xit - - - - - Quit OpenLP - - - - - &Theme - - - - - &Configure OpenLP... - - - - - &Media Manager - - - - - Toggle Media Manager - - - - - Toggle the visibility of the media manager. - - - - - &Theme Manager - - - - - Toggle Theme Manager - - - - - Toggle the visibility of the theme manager. - - - - - &Service Manager - - - - - Toggle Service Manager - - - - - Toggle the visibility of the service manager. - - - - - &Preview Panel - - - - - Toggle Preview Panel - - - - - Toggle the visibility of the preview panel. - - - - - &Live Panel - - - - - Toggle Live Panel - - - - - Toggle the visibility of the live panel. - - - - - &Plugin List - - - - - List the Plugins - - - - - &User Guide - - - - - &About - - - - - More information about OpenLP - - - - - &Online Help - - - - - &Web Site - - - - - Use the system language, if available. - - - - - Set the interface language to %s - - - - - Add &Tool... - - - - - Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - - - - - &Live - - - - - Set the view mode to Live. - - - - - Version %s of OpenLP is now available for download (you are currently running version %s). - -You can download the latest version from http://openlp.org/. - - - - - OpenLP Version Updated - - - - - OpenLP Main Display Blanked - - - - - The Main Display has been blanked out - - - - - Default Theme: %s - - - - - English - Please add the name of your language here - Korean - - - - Configure &Shortcuts... - - - - - Close OpenLP - - - - - Are you sure you want to close OpenLP? - - - - - Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - - - - - Update Theme Images - - - - - Update the preview images for all themes. - - - - - Print the current service. - - - - - &Recent Files - - - - - L&ock Panels - - - - - Prevent the panels being moved. - - - - - Re-run First Time Wizard - - - - - Re-run the First Time Wizard, importing songs, Bibles and themes. - - - - - Re-run First Time Wizard? - - - - - Are you sure you want to re-run the First Time Wizard? - -Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - - - - - Clear List - Clear List of recent files - - - - - Clear the list of recent files. - - - - - Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - - - - - Settings - - - - - Import OpenLP settings from a specified *.config file previously exported on this or another machine - - - - - Import settings? - - - - - Are you sure you want to import settings? - -Importing settings will make permanent changes to your current OpenLP configuration. - -Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - - - - - Open File - - - - - OpenLP Export Settings Files (*.conf) - - - - - Import settings - - - - - OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - - - - - Export Settings File - - - - - OpenLP Export Settings File (*.conf) - - - - - New Data Directory Error - - - - - OpenLP.Manager - - - Database Error - - - - - The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. - -Database: %s - - - - - OpenLP cannot load your database. - -Database: %s - - - - - OpenLP.MediaManagerItem - - - No Items Selected - - - - - &Add to selected Service Item - - - - - You must select one or more items to preview. - - - - - You must select one or more items to send live. - - - - - You must select one or more items. - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. - - - - - You must select one or more items to add. - - - - - No Search Results - - - - - Invalid File Type - - - - - Invalid File %s. -Suffix not supported - - - - - &Clone - - - - - Duplicate files were found on import and were ignored. - - - - - OpenLP.OpenLyricsImportError - - - <lyrics> tag is missing. - - - - - <verse> tag is missing. - - - - - OpenLP.PluginForm - - - Plugin List - - - - - Plugin Details - - - - - Status: - - - - - Active - - - - - Inactive - - - - - %s (Inactive) - - - - - %s (Active) - - - - - %s (Disabled) - - - - - OpenLP.PrintServiceDialog - - - Fit Page - - - - - Fit Width - - - - - OpenLP.PrintServiceForm - - - Options - - - - - Copy - - - - - Copy as HTML - - - - - Zoom In - - - - - Zoom Out - - - - - Zoom Original - - - - - Other Options - - - - - Include slide text if available - - - - - Include service item notes - - - - - Include play length of media items - - - - - Add page break before each text item - - - - - Service Sheet - - - - - Print - - - - - Title: - - - - - Custom Footer Text: - - - - - OpenLP.ScreenList - - - Screen - - - - - primary - - - - - OpenLP.ServiceItem - - - <strong>Start</strong>: %s - - - - - <strong>Length</strong>: %s - - - - - OpenLP.ServiceItemEditForm - - - Reorder Service Item - - - - - OpenLP.ServiceManager - - - Move to &top - - - - - Move item to the top of the service. - - - - - Move &up - - - - - Move item up one position in the service. - - - - - Move &down - - - - - Move item down one position in the service. - - - - - Move to &bottom - - - - - Move item to the end of the service. - - - - - &Delete From Service - - - - - Delete the selected item from the service. - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Edit Item - - - - - &Reorder Item - - - - - &Notes - - - - - &Change Item Theme - - - - - OpenLP Service Files (*.osz) - - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - Your item cannot be displayed as the plugin required to display it is missing or inactive - - - - - &Expand all - - - - - Expand all the service items. - - - - - &Collapse all - - - - - Collapse all the service items. - - - - - Open File - - - - - Moves the selection down the window. - - - - - Move up - - - - - Moves the selection up the window. - - - - - Go Live - - - - - Send the selected item to Live. - - - - - &Start Time - - - - - Show &Preview - - - - - Modified Service - - - - - The current service has been modified. Would you like to save this service? - - - - - Custom Service Notes: - - - - - Notes: - - - - - Playing time: - - - - - Untitled Service - - - - - File could not be opened because it is corrupt. - - - - - Empty File - - - - - This service file does not contain any data. - - - - - Corrupt File - - - - - Load an existing service. - - - - - Save this service. - - - - - Select a theme for the service. - - - - - This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - - - - - Notes - - - - - Edit - - - - - Service copy only - - - - - Error Saving File - - - - - There was an error saving your file. - - - - - OpenLP.ServiceNoteForm - - - Service Item Notes - - - - - OpenLP.SettingsForm - - - Configure OpenLP - - - - - OpenLP.ShortcutListDialog - - - Action - - - - - Shortcut - - - - - Duplicate Shortcut - - - - - The shortcut "%s" is already assigned to another action, please use a different shortcut. - - - - - Alternate - - - - - Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - - - - - Default - - - - - Custom - - - - - Capture shortcut. - - - - - Restore the default shortcut of this action. - - - - - Restore Default Shortcuts - - - - - Do you want to restore all shortcuts to their defaults? - - - - - Configure Shortcuts - - - - - OpenLP.SlideController - - - Hide - - - - - Go To - - - - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - - Previous Service - - - - - Next Service - - - - - Escape Item - - - - - Move to previous. - - - - - Move to next. - - - - - Play Slides - - - - - Delay between slides in seconds. - - - - - Move to live. - - - - - Add to Service. - - - - - Edit and reload song preview. - - - - - Start playing media. - - - - - Pause audio. - - - - - Pause playing media. - - - - - Stop playing media. - - - - - Video position. - - - - - Audio Volume. - - - - - Go to "Verse" - - - - - Go to "Chorus" - - - - - Go to "Bridge" - - - - - Go to "Pre-Chorus" - - - - - Go to "Intro" - - - - - Go to "Ending" - - - - - Go to "Other" - - - - - Previous Slide - - - - - Next Slide - - - - - Pause Audio - - - - - Background Audio - - - - - Go to next audio track. - - - - - Tracks - - - - - OpenLP.SpellTextEdit - - - Spelling Suggestions - - - - - Formatting Tags - - - - - Language: - - - - - OpenLP.StartTimeForm - - - Hours: - - - - - Minutes: - - - - - Seconds: - - - - - Item Start and Finish Time - - - - - Start - - - - - Finish - - - - - Length - - - - - Time Validation Error - - - - - Finish time is set after the end of the media item - - - - - Start time is after the finish time of the media item - - - - - Theme Layout - - - - - The blue box shows the main area. - - - - - The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - - - - - OpenLP.ThemeManager - - - Create a new theme. - - - - - Edit Theme - - - - - Edit a theme. - - - - - Delete Theme - - - - - Delete a theme. - - - - - Import Theme - - - - - Import a theme. - - - - - Export Theme - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You are unable to delete the default theme. - - - - - Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - - - - - Save Theme - (%s) - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Select Theme Import File - - - - - File is not a valid theme. - - - - - &Copy Theme - - - - - &Rename Theme - - - - - &Export Theme - - - - - You must select a theme to rename. - - - - - Rename Confirmation - - - - - Rename %s theme? - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete %s theme? - - - - - Validation Error - - - - - A theme with this name already exists. - - - - - OpenLP Themes (*.theme *.otz) - - - - - Copy of %s - Copy of <theme name> - - - - - Theme Already Exists - - - - - OpenLP.ThemeWizard - - - Theme Wizard - - - - - Welcome to the Theme Wizard - - - - - Set Up Background - - - - - Set up your theme's background according to the parameters below. - - - - - Background type: - - - - - Solid Color - - - - - Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - - - - - Size: - - - - - Line Spacing: - - - - - &Outline: - - - - - &Shadow: - - - - - Bold - - - - - Italic - - - - - Footer Area Font Details - - - - - Define the font and display characteristics for the Footer text - - - - - Text Formatting Details - - - - - Allows additional display formatting information to be defined - - - - - Horizontal Align: - - - - - Left - - - - - Right - - - - - Center - - - - - Output Area Locations - - - - - Allows you to change and move the main and footer areas. - - - - - &Main Area - - - - - &Use default location - - - - - X position: - - - - - px - - - - - Y position: - - - - - Width: - - - - - Height: - - - - - Use default location - - - - - Theme name: - - - - - Edit Theme - %s - - - - - This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - - - - - Transitions: - - - - - &Footer Area - - - - - Starting color: - - - - - Ending color: - - - - - Background color: - - - - - Justify - - - - - Layout Preview - - - - - Transparent - - - - - Preview and Save - - - - - Preview the theme and save it. - - - - - OpenLP.ThemesTab - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - - &Service Level - - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - - &Global Level - - - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - Themes - - - - - OpenLP.Ui - - - Error - - - - - About - - - - - &Add - - - - - Advanced - - - - - All Files - - - - - Bottom - - - - - Browse... - - - - - Cancel - - - - - CCLI number: - - - - - Create a new service. - - - - - &Delete - - - - - &Edit - - - - - Empty Field - - - - - Export - - - - - pt - Abbreviated font pointsize unit - - - - - Image - - - - - Import - - - - - Live - - - - - Live Background Error - - - - - Load - - - - - Middle - - - - - New - - - - - New Service - - - - - New Theme - - - - - No File Selected - Singular - - - - - No Files Selected - Plural - - - - - No Item Selected - Singular - - - - - No Items Selected - Plural - - - - - openlp.org 1.x - - - - - OpenLP 2.0 - - - - - Preview - - - - - Replace Background - - - - - Reset Background - - - - - s - The abbreviated unit for seconds - - - - - Save && Preview - - - - - Search - - - - - You must select an item to delete. - - - - - You must select an item to edit. - - - - - Save Service - - - - - Service - - - - - Start %s - - - - - Theme - Singular - - - - - Themes - Plural - - - - - Top - - - - - Version - - - - - Delete the selected item. - - - - - Move selection up one position. - - - - - Move selection down one position. - - - - - &Vertical Align: - - - - - Finished import. - - - - - Format: - - - - - Importing - - - - - Importing "%s"... - - - - - Select Import Source - - - - - Select the import format and the location to import from. - - - - - The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - - - - - Open %s File - - - - - %p% - - - - - Ready. - - - - - Starting import... - - - - - You need to specify at least one %s file to import from. - A file type e.g. OpenSong - - - - - Welcome to the Bible Import Wizard - - - - - Welcome to the Song Export Wizard - - - - - Welcome to the Song Import Wizard - - - - - Author - Singular - - - - - Authors - Plural - - - - - © - Copyright symbol. - - - - - Song Book - Singular - - - - - Song Books - Plural - - - - - Song Maintenance - - - - - Topic - Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - - - - - Title and/or verses not found - - - - - XML syntax error - - - - - View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - - - - - Play Slides in Loop - - - - - Play Slides to End - - - - - Stop Play Slides in Loop - - - - - Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - - - - - No Folder Selected - Singular - - - - - Open %s Folder - - - - - You need to specify one %s file to import from. - A file type e.g. OpenSong - - - - - You need to specify one %s folder to import from. - A song format e.g. PowerSong - - - - - OpenLP.core.lib - - - %1 and %2 - Locale list separator: 2 items - - - - - %1, and %2 - Locale list separator: end - - - - - %1, %2 - Locale list separator: middle - - - - - %1, %2 - Locale list separator: start - - - - - PresentationPlugin - - - <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - name singular - - - - - Presentations - name plural - - - - - Presentations - container title - - - - - Load a new presentation. - - - - - Delete the selected presentation. - - - - - Preview the selected presentation. - - - - - Send the selected presentation live. - - - - - Add the selected presentation to the service. - - - - - PresentationPlugin.MediaItem - - - Select Presentation(s) - - - - - Automatic - - - - - Present using: - - - - - File Exists - - - - - A presentation with that filename already exists. - - - - - This type of presentation is not supported. - - - - - Presentations (%s) - - - - - Missing Presentation - - - - - The presentation %s is incomplete, please reload. - - - - - The presentation %s no longer exists. - - - - - PresentationPlugin.PresentationTab - - - Available Controllers - - - - - %s (unavailable) - - - - - Allow presentation application to be overridden - - - - - RemotePlugin - - - <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - - - - - Remotes - name plural - - - - - Remote - container title - - - - - RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - - - - OpenLP 2.0 Stage View - - - - - Service Manager - - - - - Slide Controller - - - - - Alerts - - - - - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - - - - - Home - - - - - Theme - - - - - Desktop - - - - - Add &amp; Go to Service - - - - - RemotePlugin.RemoteTab - - - Serve on IP address: - - - - - Port number: - - - - - Server Settings - - - - - Remote URL: - - - - - Stage view URL: - - - - - Display stage time in 12h format - - - - - Android App - - - - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - - - - - SongUsagePlugin - - - &Song Usage Tracking - - - - - &Delete Tracking Data - - - - - Delete song usage data up to a specified date. - - - - - &Extract Tracking Data - - - - - Generate a report on song usage. - - - - - Toggle Tracking - - - - - Toggle the tracking of song usage. - - - - - <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage - name singular - - - - - SongUsage - name plural - - - - - SongUsage - container title - - - - - Song Usage - - - - - Song usage tracking is active. - - - - - Song usage tracking is inactive. - - - - - display - - - - - printed - - - - - SongUsagePlugin.SongUsageDeleteForm - - - Delete Song Usage Data - - - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - Deletion Successful - - - - - All requested data has been deleted successfully. - - - - - Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - - - - - SongUsagePlugin.SongUsageDetailForm - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - - - - - Report Location - - - - - Output File Location - - - - - usage_detail_%s_%s.txt - - - - - Report Creation - - - - - Report -%s -has been successfully created. - - - - - Output Path Not Selected - - - - - You have not set a valid output location for your song usage report. Please select an existing path on your computer. - - - - - SongsPlugin - - - &Song - - - - - Import songs using the import wizard. - - - - - <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - - - &Re-index Songs - - - - - Re-index the songs database to improve searching and ordering. - - - - - Reindexing songs... - - - - - Arabic (CP-1256) - - - - - Baltic (CP-1257) - - - - - Central European (CP-1250) - - - - - Cyrillic (CP-1251) - - - - - Greek (CP-1253) - - - - - Hebrew (CP-1255) - - - - - Japanese (CP-932) - - - - - Korean (CP-949) - - - - - Simplified Chinese (CP-936) - - - - - Thai (CP-874) - - - - - Traditional Chinese (CP-950) - - - - - Turkish (CP-1254) - - - - - Vietnam (CP-1258) - - - - - Western European (CP-1252) - - - - - Character Encoding - - - - - The codepage setting is responsible -for the correct character representation. -Usually you are fine with the preselected choice. - - - - - Please choose the character encoding. -The encoding is responsible for the correct character representation. - - - - - Song - name singular - - - - - Songs - name plural - - - - - Songs - container title - - - - - Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - - - - - Preview the selected song. - - - - - Send the selected song live. - - - - - Add the selected song to the service. - - - - - SongsPlugin.AuthorsForm - - - Author Maintenance - - - - - Display name: - - - - - First name: - - - - - Last name: - - - - - You need to type in the first name of the author. - - - - - You need to type in the last name of the author. - - - - - You have not set a display name for the author, combine the first and last names? - - - - - SongsPlugin.CCLIFileImport - - - The file does not have a valid extension. - - - - - SongsPlugin.EasyWorshipSongImport - - - Administered by %s - - - - - -[above are Song Tags with notes imported from - EasyWorship] - - - - - SongsPlugin.EditBibleForm - - - Meta Data - - - - - Custom Book Names - - - - - SongsPlugin.EditSongForm - - - Song Editor - - - - - &Title: - - - - - Alt&ernate title: - - - - - &Lyrics: - - - - - &Verse order: - - - - - Ed&it All - - - - - Title && Lyrics - - - - - &Add to Song - - - - - &Remove - - - - - &Manage Authors, Topics, Song Books - - - - - A&dd to Song - - - - - R&emove - - - - - Book: - - - - - Number: - - - - - Authors, Topics && Song Book - - - - - New &Theme - - - - - Copyright Information - - - - - Comments - - - - - Theme, Copyright Info && Comments - - - - - Add Author - - - - - This author does not exist, do you want to add them? - - - - - This author is already in the list. - - - - - You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - - - - - Add Topic - - - - - This topic does not exist, do you want to add it? - - - - - This topic is already in the list. - - - - - You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - - - - - You need to type in a song title. - - - - - You need to type in at least one verse. - - - - - The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - - - - - Add Book - - - - - This song book does not exist, do you want to add it? - - - - - You need to have an author for this song. - - - - - You need to type some text in to the verse. - - - - - Linked Audio - - - - - Add &File(s) - - - - - Add &Media - - - - - Remove &All - - - - - Open File(s) - - - - - <strong>Warning:</strong> Not all of the verses are in use. - - - - - The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - - - - - SongsPlugin.EditVerseForm - - - Edit Verse - - - - - &Verse type: - - - - - &Insert - - - - - Split a slide into two by inserting a verse splitter. - - - - - SongsPlugin.ExportWizardForm - - - Song Export Wizard - - - - - Select Songs - - - - - Check the songs you want to export. - - - - - Uncheck All - - - - - Check All - - - - - Select Directory - - - - - Directory: - - - - - Exporting - - - - - Please wait while your songs are exported. - - - - - You need to add at least one Song to export. - - - - - No Save Location specified - - - - - Starting export... - - - - - You need to specify a directory. - - - - - Select Destination Folder - - - - - Select the directory where you want the songs to be saved. - - - - - This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - - - - - SongsPlugin.ImportWizardForm - - - Select Document/Presentation Files - - - - - Song Import Wizard - - - - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Generic Document/Presentation - - - - - Add Files... - - - - - Remove File(s) - - - - - Please wait while your songs are imported. - - - - - OpenLP 2.0 Databases - - - - - openlp.org v1.x Databases - - - - - Words Of Worship Song Files - - - - - Songs Of Fellowship Song Files - - - - - SongBeamer Files - - - - - SongShow Plus Song Files - - - - - Foilpresenter Song Files - - - - - Copy - - - - - Save to File - - - - - The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - - - - - The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - - - - - OpenLyrics or OpenLP 2.0 Exported Song - - - - - OpenLyrics Files - - - - - CCLI SongSelect Files - - - - - EasySlides XML File - - - - - EasyWorship Song Database - - - - - DreamBeam Song Files - - - - - You need to specify a valid PowerSong 1.0 database folder. - - - - - ZionWorx (CSV) - - - - - First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - - - - - SundayPlus Song Files - - - - - This importer has been disabled. - - - - - MediaShout Database - - - - - The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - - - - - SongPro Text Files - - - - - SongPro (Export File) - - - - - In SongPro, export your songs using the File -> Export menu - - - - - SongsPlugin.MediaFilesForm - - - Select Media File(s) - - - - - Select one or more audio files from the list below, and click OK to import them into this song. - - - - - SongsPlugin.MediaItem - - - Titles - - - - - Lyrics - - - - - CCLI License: - - - - - Entire Song - - - - - Are you sure you want to delete the %n selected song(s)? - - - - - Maintain the lists of authors, topics and books. - - - - - copy - For song cloning - - - - - Search Titles... - - - - - Search Entire Song... - - - - - Search Lyrics... - - - - - Search Authors... - - - - - Search Song Books... - - - - - SongsPlugin.MediaShoutImport - - - Unable to open the MediaShout database. - - - - - SongsPlugin.OpenLP1SongImport - - - Not a valid openlp.org 1.x song database. - - - - - SongsPlugin.OpenLPSongImport - - - Not a valid OpenLP 2.0 song database. - - - - - SongsPlugin.OpenLyricsExport - - - Exporting "%s"... - - - - - SongsPlugin.PowerSongImport - - - No songs to import. - - - - - Verses not found. Missing "PART" header. - - - - - SongsPlugin.SongBookForm - - - Song Book Maintenance - - - - - &Name: - - - - - &Publisher: - - - - - You need to type in a name for the book. - - - - - SongsPlugin.SongExportForm - - - Your song export failed. - - - - - Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - - - - - SongsPlugin.SongImport - - - copyright - - - - - The following songs could not be imported: - - - - - Cannot access OpenOffice or LibreOffice - - - - - Unable to open file - - - - - File not found - - - - - SongsPlugin.SongMaintenanceForm - - - Could not add your author. - - - - - This author already exists. - - - - - Could not add your topic. - - - - - This topic already exists. - - - - - Could not add your book. - - - - - This book already exists. - - - - - Could not save your changes. - - - - - Could not save your modified author, because the author already exists. - - - - - Could not save your modified topic, because it already exists. - - - - - Delete Author - - - - - Are you sure you want to delete the selected author? - - - - - This author cannot be deleted, they are currently assigned to at least one song. - - - - - Delete Topic - - - - - Are you sure you want to delete the selected topic? - - - - - This topic cannot be deleted, it is currently assigned to at least one song. - - - - - Delete Book - - - - - Are you sure you want to delete the selected book? - - - - - This book cannot be deleted, it is currently assigned to at least one song. - - - - - The author %s already exists. Would you like to make songs with author %s use the existing author %s? - - - - - The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - - - - - The book %s already exists. Would you like to make songs with book %s use the existing book %s? - - - - - SongsPlugin.SongsTab - - - Songs Mode - - - - - Enable search as you type - - - - - Display verses on live tool bar - - - - - Update service from song edit - - - - - Import missing songs from service files - - - - - SongsPlugin.TopicsForm - - - Topic Maintenance - - - - - Topic name: - - - - - You need to type in a topic name. - - - - - SongsPlugin.VerseType - - - Verse - - - - - Chorus - - - - - Bridge - - - - - Pre-Chorus - - - - - Intro - - - - - Ending - - - - - Other - - - - - SongsPlugin.ZionWorxImport - - - Error reading CSV file. - - - - - File not valid ZionWorx CSV format. - - - - \ No newline at end of file diff --git a/resources/i18n/nb.ts b/resources/i18n/nb.ts index 68d008c5e..902dfad3b 100644 --- a/resources/i18n/nb.ts +++ b/resources/i18n/nb.ts @@ -1,108 +1,111 @@ - + + AlertsPlugin - + &Alert &Varsel - + Show an alert message. Vis en varselmelding. - + Alert name singular Varsel - + Alerts name plural - + Varsel - + Alerts container title - Varsler + Varsel - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + <strong>Varsel</strong><br />Dette programtillegget kontrolerer visningen av varsel- og opplysningsmeldinger. AlertsPlugin.AlertForm - + Alert Message Varselmelding - + Alert &text: Varsel&tekst: - + &New &Ny - + &Save &Lagre - + Displ&ay - Vis + Vi&s - + Display && Cl&ose - Vis && Lukk + Vis && L&ukk - + New Alert Nytt Varsel - + You haven't specified any text for your alert. Please type in some text before clicking New. Du har ikke spesifisert noen tekst for varselet. Vennligst skriv inn en tekst før du trykker Ny. - + &Parameter: &Parameter: - + No Parameter Found - + Ingen parametre funnet - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + Du har ikke angitt et parameter i feltet. +Vil du fortsette? - + No Placeholder Found - + Ingen plassholder funnet - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? - + Varselteksten inneholder ikke '<>'. +Vil du fortsette likevel? @@ -116,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Skrifttype - + Font name: Skriftnavn: - + Font color: Skriftfarge: - + Background color: Bakgrunnsfarge: - + Font size: Skriftstørrelse: - + Alert timeout: Varselvarighet: @@ -149,596 +152,598 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Bibel - + Bible name singular - + Bibel - + Bibles name plural - + Bibler - + Bibles container title - + Bibler - + No Book Found Ingen bok funnet - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen samsvarende bok ble funnet i denne bibelen. Sjekk at du har stavet navnet på boken riktig. - - - Import a Bible. - - - Add a new Bible. - + Import a Bible. + Importer en ny bibel. - Edit the selected Bible. - + Add a new Bible. + Legg til en ny bibel. - Delete the selected Bible. - + Edit the selected Bible. + Rediger valgte bibel. - Preview the selected Bible. - + Delete the selected Bible. + Slett valgte bibel. - - Send the selected Bible live. - + + Preview the selected Bible. + Forhåndsvis valgte bibel. + Send the selected Bible live. + Frem-vis valgte bibel. + + + Add the selected Bible to the service. - + Legg valgte bibelsitat til gudsteneste-/møteplanlegger. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + <strong>Bibel</strong><br />Dette tillegget gjør det mulig å vise bibelsitat fra ulike kilder under en gudstjeneste/møte. - + &Upgrade older Bibles - + &Oppgraderer eldre bibler - + Upgrade the Bible databases to the latest format. - - - - - Genesis - + Oppgrader bibeldatabasen til nyeste format. - Exodus - + Genesis + 1. Mosebok - Leviticus - + Exodus + 2. Mosebok - Numbers - + Leviticus + 3. Mosebok - Deuteronomy - + Numbers + 4. Mosebok - Joshua - + Deuteronomy + 5. Mosebok - Judges - + Joshua + Josva - Ruth - + Judges + Dommerne - 1 Samuel - + Ruth + Rut - 2 Samuel - + 1 Samuel + 1. Samuel - 1 Kings - + 2 Samuel + 2. Samuel - 2 Kings - + 1 Kings + 1. Kongebok - 1 Chronicles - + 2 Kings + 2. Kongebok - 2 Chronicles - + 1 Chronicles + 1. Krønikebok - Ezra - + 2 Chronicles + 2. Krønikebok - Nehemiah - + Ezra + Esra - Esther - + Nehemiah + Nehemja - Job - + Esther + Ester - Psalms - + Job + Job - Proverbs - + Psalms + Salmene - Ecclesiastes - + Proverbs + Ordspråkene - Song of Solomon - + Ecclesiastes + Forkynneren - Isaiah - + Song of Solomon + Høysangen - Jeremiah - + Isaiah + Jesaja - Lamentations - + Jeremiah + Jeremia - Ezekiel - + Lamentations + Klagesangene - Daniel - + Ezekiel + Esekiel - Hosea - + Daniel + Daniel - Joel - + Hosea + Hosea - Amos - + Joel + Joel - Obadiah - + Amos + Amos - Jonah - + Obadiah + Obadja - Micah - + Jonah + Jona - Nahum - + Micah + Mika - Habakkuk - + Nahum + Nahum - Zephaniah - + Habakkuk + Habakkuk - Haggai - + Zephaniah + Sefanja - Zechariah - + Haggai + Haggai - Malachi - + Zechariah + Sakarja - Matthew - + Malachi + Malakias - Mark - + Matthew + Matteus - Luke - + Mark + Markus - John - + Luke + Lukas - Acts - + John + Johannes - Romans - + Acts + Apostlenes gjerninger - 1 Corinthians - + Romans + Romerne - 2 Corinthians - + 1 Corinthians + 1. Korinterne - Galatians - + 2 Corinthians + 2. Korinterne - Ephesians - + Galatians + Galaterne - Philippians - + Ephesians + Efeserne - Colossians - + Philippians + Filipperne - 1 Thessalonians - + Colossians + Kolosserne - 2 Thessalonians - + 1 Thessalonians + 1. Tessalonikerne - 1 Timothy - + 2 Thessalonians + 2. Tessalonikerne - 2 Timothy - + 1 Timothy + 1. Timoteus - Titus - + 2 Timothy + 2. Timoteus - Philemon - + Titus + Titus - Hebrews - + Philemon + Filemon - James - + Hebrews + Hebreerne - 1 Peter - + James + Jakob - 2 Peter - + 1 Peter + 1. Peter - 1 John - + 2 Peter + 2. Peter - 2 John - + 1 John + 1. Johannes - 3 John - + 2 John + 2. Johannes - Jude - + 3 John + 3. Johannes - Revelation - + Jude + Judas - Judith - + Revelation + Åpenbaringen - Wisdom - + Judith + Judit - Tobit - + Wisdom + Visdomens - Sirach - + Tobit + Tobit - Baruch - + Sirach + Sirak - 1 Maccabees - + Baruch + Baruk - 2 Maccabees - + 1 Maccabees + 1. Makkabeerne - 3 Maccabees - + 2 Maccabees + 2. Makkabeerne - 4 Maccabees - + 3 Maccabees + 3. Makkabeerne - Rest of Daniel - + 4 Maccabees + 4. Makkabeerne - Rest of Esther - + Rest of Daniel + Tillegg til Daniel - Prayer of Manasses - + Rest of Esther + Tillegg til Ester - Letter of Jeremiah - + Prayer of Manasses + Manasses bønn - Prayer of Azariah - + Letter of Jeremiah + Jeremias brev - Susanna - + Prayer of Azariah + Azarias bønn - Bel - + Susanna + Susanna - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 3. Esra - + + 2 Esdras + 4. Esra + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|vers|vers;;-|til;;,|og;;slutt BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Du må angi et navn på bibelroversettingen. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Du trenger å angi opphavsrett for denne bibelen. Bibler som er Public Domain må merkes som sådan. - + Bible Exists - + Bibelen finnes allerede - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Denne bibelen finnes allerede. Vennligst importere en annen bibel eller slett den eksisterende. - + You need to specify a book name for "%s". - + Du må angi et boknavn for "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Bok-navnet "%s" er ikke riktig. +Tall kan bare brukes først i navnet og må +etterfølges av en eller flere ikke-numeriske tegn. - + Duplicate Book Name - + Dublett bok-navn - + The Book Name "%s" has been entered more than once. - + Bok-navnet "%s" har blitt angitt flere ganger. BiblesPlugin.BibleManager - + Scripture Reference Error Bibelreferansefeil - + Web Bible cannot be used Nettbibel kan ikke brukes - + Text Search is not available with Web Bibles. Tekstsøk er ikke tilgjengelig med nettbibler. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Du har ikke angitt et søkeord. Du kan skille ulike søkeord med mellomrom for å søke etter alle søkeordene dine, og du kan skille dem med komma for å søke etter ett av dem. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Det er ingen bibler installert. Vennligst bruk importeringsveiviseren for å installere en eller flere bibler. - + No Bibles Available Ingen bibler tilgjengelig - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -748,314 +753,331 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Din skriftstedhenvisning er enten ikke støttet av OpenLP eller er ugyldig. Vennligst sørg for at din referanse oppfyller ett av følgende mønstre eller se i manualen: + +Bok kapittel +Bok kapittel%(range)sKapittel +Bok kapittel%(verse)sVers%(range)sVers +Bok kapittel%(verse)sVers%(range)sVers%(list)sVers%(range)sVers +Bok kapittel%(verse)sVers%(range)sVers%(list)sKapittel%(verse)sVers%(range)sVerse +Bok kapittel%(verse)sVers%(range)sKapittel%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display Versvisning - + Only show new chapter numbers - Bare vis nye kapittelnummer + Vis bare nye kapittelnummer - + Bible theme: Bibel tema: - + No Brackets Ingen klammer - + ( And ) ( Og ) - + { And } { Og } - + [ And ] [ Og ] - + Note: Changes do not affect verses already in the service. Merk: -Endringer påvirker ikke vers som alt er lagt til møtet. +Endringer påvirker ikke vers som allerede fins i møteprogrammet. - + Display second Bible verses Vis alternative bibelvers - + Custom Scripture References - + Egendefinerte skriftstedhenvisninger - + Verse Separator: - + Vers-skilletegn: - + Range Separator: - + Utvalgs-skilletegn: - + List Separator: - + Listeskillere: - + End Mark: - + Sluttmerker: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Flere alternative vers-skilletegn kan defineres. +De må skilles med en loddrett strek. "|" +Vennligst tøm denne redigerings-linjen for å bruke standardverdien. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Flere alternative utvalgs-skilletegn kan defineres. +De må skilles med en loddrett strek "|". +Vennligst tøm denne redigerings-linjen for å bruke standardverdien. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Flere alternative listeskillere kan defineres. +De må skilles med en loddrett strek "|". +Vennligst tøm denne redigerings-linjen for å bruke standardverdien. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Flere alternative sluttmerker kan defineres. +De må skilles med en loddrett strek "|". +Vennligst tøm denne redigerings-linjen for å bruke standardverdien. - + English - + Engelsk - + Default Bible Language - + For-valgt bibelspråk - + Book name language in search field, search results and on display: - + Bok-navn språk i søkefelt, +søkeresultat og på skjerm: - + Bible Language - + Bibelspråk - + Application Language - + Programspråk BiblesPlugin.BookNameDialog - + Select Book Name - + Velg bok - + Current name: - + Gjeldende navn: - + Corresponding name: - + Tilsvarende navn: - + Show Books From - + Vis bøker fra - + Old Testament - + Det gamle testamente - + New Testament - + Der nye testamente - + Apocrypha - + Apokryfene - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Følgende bok-navn stemmer ikke med interne navn. Vennligst velg et tilhørende navn fra listen. BiblesPlugin.BookNameForm - + You need to select a book. - + Du må velge bok. BiblesPlugin.CSVBible - + Importing books... %s - + Importerer bøker... %s - + Importing verses from %s... Importing verses from <book name>... - + Importerer vers fra %s... - + Importing verses... done. - + Ferdig å importere vers. BiblesPlugin.EditBibleForm - + Bible Editor - + Bibelredigering - + License Details - + Lisensdetaljer - + Version name: - + Versjonnavn: - + Copyright: - + Copyright: - + Permissions: - + Rettigheter: - + Default Bible Language - + For-valgt bibelspråk - + Book name language in search field, search results and on display: - + Bok-navn språk i søkefelt, søkeresultat og på skjerm: - + Global Settings - + Globale instillinger - + Bible Language - + Bibelspråk - + Application Language - + Programspråk - + English - + Engelsk - + This is a Web Download Bible. It is not possible to customize the Book Names. - + Dette er en web-bibel. +Det er ikke mulig å tilpasse bok-navn. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Hvis du vil bruke tilpassede bok-navn, må "Bibel-språk" velges i fliken Metadata, eller hvis "Globale innstillinger" er valgt, på Bibel siden OpenLP Innstillinger. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Registrer bibel og laster bøker... - + Registering Language... - + Registrer språk... - + Importing %s... Importing <book name>... - + Importerer %s... - + Download Error - + Nedlastingsfeil - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Det oppstod et problem ved nedlastingen av de valgte versene. Vennligst sjekk internettilkoblingen. Dersom denne feilen vedvarer, vær vennlig å rapportere feilen. - + Parse Error - + Analysefeil - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Det oppstod et problem ved uthenting av de valgte versene. Dersom denne feilen vedvarer, vær vennlig å rapportere feilen. @@ -1068,7 +1090,7 @@ It is not possible to customize the Book Names. This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Denne veiviseren vil hjelpe deg å importere bibler fra en rekke ulike formater. Klikk på neste-knappen under for å starte prosessen ved å velge et format å importere fra. + Denne veiviseren vil hjelpe deg å importere bibler fra en rekke ulike formater. For å starte importen klikk på "Neste-knappen" og så velg format og sted å importere fra. @@ -1078,7 +1100,7 @@ It is not possible to customize the Book Names. Location: - Plassering: + Plassering/kilde: @@ -1103,7 +1125,7 @@ It is not possible to customize the Book Names. Server: - Tjener: + Server: @@ -1118,7 +1140,7 @@ It is not possible to customize the Book Names. Proxy Server (Optional) - Proxytjener (valgfritt) + Proxyserver (valgfritt) @@ -1138,7 +1160,7 @@ It is not possible to customize the Book Names. Copyright: - Opphavsrett: + Opphavsrett/Copyright: @@ -1148,7 +1170,7 @@ It is not possible to customize the Book Names. You need to specify a file with books of the Bible to use in the import. - Du må angi en fil som inneholder bøkene i Bibelen du vil importere. + Du må angi en fil som inneholder bøkene i bibelen du vil importere. @@ -1163,12 +1185,12 @@ It is not possible to customize the Book Names. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Du må angi kopiretten for Bibelen. Offentlige bibler må markeres deretter. + Du må angi rettighetene for Bibelen. Offentlige bibler må markeres deretter. Bible Exists - Bibelen finnes + Bibelen finnes fra før @@ -1178,7 +1200,7 @@ It is not possible to customize the Book Names. Your Bible import failed. - + Bibelimporteringen mislyktes. @@ -1188,7 +1210,7 @@ It is not possible to customize the Book Names. Bibleserver - Bibeltjener + Bibelserver @@ -1218,148 +1240,150 @@ It is not possible to customize the Book Names. Registering Bible... - + Registrerer Bibel... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Registrert bibel. Vær oppmerksom på at versene blir nedlastet på din forespørsel. Derfor er det nøvendig å være tilkoplet internet. BiblesPlugin.LanguageDialog - + Select Language - + Velg språk - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + OpenLP er ikke i stand til å fastslå språket i oversettelsen av denne bibelen. Velg språk fra listen under. - + Language: - + Språk: BiblesPlugin.LanguageForm - + You need to choose a language. - + Du må velge språk. BiblesPlugin.MediaItem - + Quick Hurtig - + Find: - + Finn: - + Book: Bok: - + Chapter: Kapittel: - + Verse: Vers: - + From: - + Fra: - + To: - + Til: - + Text Search Tekstsøk - + Second: Alternativ: - + Scripture Reference Bibelreferanse - + Toggle to keep or clear the previous results. - + Velg for å beholde eller slette tidlegere resultat. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Du kan ikke kombinere enkle og doble bibelvers-søkeresultater. Ønsker du å slette dine søkeresultater og starte et nytt søk? - + Bible not fully loaded. - + Bibelen er ikke fullstendig lastet. - + Information - + Informasjon - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Den andre bibelen innehoder ikke alle versene i hovedbibelen. Bare vers funnet i begge vil bli vist. %d vers er ikke med i resulstatet. - + Search Scripture Reference... - + Søk skriftsted... - + Search Text... - + Søk tekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Er du sikker på at du vil slette "%s" bibel fra OpenLP? + + Du må importere denne bibelen på nytt for å bruke den igjen. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Ugyldig filtype for valgte bibel. OpenSong bibler kan være komprimert. Du må dekomprimere dem før import. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1368,12 +1392,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Oppdager tegnkoding (dette kan ta noen minutter)... - + Importing %s %s... Importing <book name> <chapter>... Importerer %s %s... @@ -1382,222 +1406,228 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - + Velg en backup katalog - + Bible Upgrade Wizard - + Oppgraderings veiviser - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Denne veilederen hjelper deg til å oppgradere dine eksisterende bibler fra en tidligere versjon av OpenLP 2. Klikk neste nedenfor for å starte oppgraderingen. - + Select Backup Directory - + Velg backup katalog - + Please select a backup directory for your Bibles - + Venligst velg en backup katalog for dine bibler - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Tidligere versjoner av OpenLP 2.0 kan ikke benytte oppgraderte bibler. Dette vil opprette en backup av dine eksisterende bibler slik at du enkelt kan kopiere filene tilbake til OpenLP fillageret dersom du behøver å gå tilbake til en tidligere versjon av OpenLP. Instruksjoner på hvordan du kan gjenopprette filene kan finnes i vår <a href="http://wiki.openlp.org/faq">Ofte Spurte Spørsmål</a>. - + Please select a backup location for your Bibles. - + Velg backupstasjon for dine bibler. - + Backup Directory: - + Backup katalog: - + There is no need to backup my Bibles - + Det er ikke nødvendig å oppgrade mine bibler - + Select Bibles - + Velg bibel - + Please select the Bibles to upgrade - + Vegl bibel som skal oppgraderes - + Upgrading - + Oppgraderer - + Please wait while your Bibles are upgraded. - + Venligst vent, biblene blir oppdatert. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Backup mislyktes. +For å ta backup av dine filer må du ha tillatelse til å skrive til den oppgitte mappen. - + Upgrading Bible %s of %s: "%s" Failed - + Bibeloppgradering %s av %s: "%s" +Var misslykket - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Bibeloppgraderer %s av %s: "%s" +Oppgraderer ... - + Download Error - + Nedlastingsfeil - + To upgrade your Web Bibles an Internet connection is required. - + For å oppgradere din internett-bibel er det nødvendig med internettilkobling. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Oppgraderer bibel %s av %s: "%s" +Oppgraderer %s... - + Upgrading Bible %s of %s: "%s" Complete - + Oppgraderer bibel %s av %s: "%s" +Ferdig - + , %s failed - + , %s feilet - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Oppgradering bibel(er): %s vellykket%s +Vær oppmerksom på at versene fra netbibler blir nedlastet på din forespørsel så det er nødvendig med internettilkobling. - + Upgrading Bible(s): %s successful%s - + Oppgradering bibel(er): %s vellykket%s - + Upgrade failed. - + Oppgraderingen var mislykket. - + You need to specify a backup directory for your Bibles. - + Du må spesifisere en mappe for backup av dine bibler. - + Starting upgrade... - + Starter oppgradering... - + There are no Bibles that need to be upgraded. - + Det er ingen bibler som trenger oppgradering. CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>Brukerdefinert lysbilde</strong><br/> Programtillegget for brukerdefinert lysbilde gir en sørre frihett til å lage egne tekst bilder som kan vises på samme vis som sanger. - + Custom Slide name singular - + Egendefinert lysbilde - + Custom Slides name plural - + Egendefinerte lysbilder - + Custom Slides container title - - - - - Load a new custom slide. - + Egendefinerte lysbilder - Import a custom slide. - + Load a new custom slide. + Vis et nytt egendefinert lysbilde. - Add a new custom slide. - + Import a custom slide. + Importer et egendefinert lysbilde. + Add a new custom slide. + Legg til et egendefinert lysbilde. + + + Edit the selected custom slide. - + Rediger det valgte lysbilde. - + Delete the selected custom slide. - + Slett det valgte lysbilde. - + Preview the selected custom slide. - + Forhåndsvis valgte lysbilde. - + Send the selected custom slide live. - + Frem-vis valgte egendefinerte side. - + Add the selected custom slide to the service. - + Legg valgte lysbilde til møteplan. CustomPlugin.CustomTab - + Custom Display Tilpasset visning - + Display footer Vis bunntekst @@ -1605,147 +1635,150 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Rediger egendefinerte lysbilder - + &Title: &Tittel: - + Add a new slide at bottom. Legg til nytt lysbilde nederst. - + Edit the selected slide. Rediger markert lysbilde. - + Edit all the slides at once. Rediger alle lysbilder på en gang. - + Split a slide into two by inserting a slide splitter. Del lysbilde i to ved å sette inn en lysbildedeler. - + The&me: - Tema: + Tem&a: - + &Credits: &Credits: - + You need to type in a title. Du må skrive inn en tittel. - + You need to add at least one slide Du må legge til minst et lysbilde - + Ed&it All - Rediger alle + Red&iger alle - + Insert Slide - + Tilføy lysbilde CustomPlugin.EditVerseForm - + Edit Slide - + Redigere bilde CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + Er du sikker på at du vil slette det valgte egendefinerte bildet? + Er du sikker på at du vil slette de %n valgte egendefinerte bildene? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - <strong>Bildetillegg</strong><br />Bildetillegget gir mulighet til visning av bilder.<br />Et av særtrekkene med dette tillegget er muligheten til å gruppere flere bilder sammen i møteplanleggeren, noe som gjør visning av flere bilder enklere. Programtillegget kan også benytte seg av OpenLP's "tidsbestemte løkke"-funksjon til å lage en lysbildefremvisning som kjører automatisk. I tillegg kan bilder fra tillegget brukes til å overstyre gjeldende temabakgrunn, noe som gir tekstbaserte saker, som sanger, det valgte bildet som bakgrunn. + <strong>Bildetillegg</strong><br/>Bildetillegget gir mulighet til visning av bilder.<br />Et av særtrekkene med dette tillegget er muligheten til å gruppere flere bilder sammen i møteplanleggeren, noe som gjør visning av flere bilder enklere. Programtillegget kan også benytte seg av OpenLP's "tidsbestemte løkke-funksjon" til å lage en lysbildefremvisning som kjører automatisk. I tillegg kan bilder fra tillegget brukes til å overstyre gjeldende temabakgrunn, noe som gir tekstbaserte bilder; som sanger, det valgte bildet som bakgrunn. - + Image name singular Bilde - + Images name plural - + Bilder - + Images container title Bilder - + Load a new image. - - - - - Add a new image. - + Last et nytt bilde. - Edit the selected image. - + Add a new image. + Legg til et nytt bilde. - Delete the selected image. - + Edit the selected image. + Rediger valgte bilde. - Preview the selected image. - + Delete the selected image. + Slett valgte bilde. - Send the selected image live. - + Preview the selected image. + Forhåndsvis valgte bilde. + Send the selected image live. + Send valgte bilde til skjerm. + + + Add the selected image to the service. - + Legg valgte bilde til møteprogrammet. ImagePlugin.ExceptionDialog - + Select Attachment Velg vedlegg @@ -1753,262 +1786,288 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) - + Velg bilde(r) - + You must select an image to delete. Du må velge et bilde å slette. - + You must select an image to replace the background with. Du må velge et bilde å erstatte bakgrunnen med. - + Missing Image(s) Bilde(r) mangler - + The following image(s) no longer exist: %s De følgende bilde(r) finnes ikke lenger: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? De følgende bilde(r) finnes ikke lenger: %s Vil du likevel legge til de andre bildene? - + There was a problem replacing your background, the image file "%s" no longer exists. Det oppstod et problem ved erstatting av bakgrunnen, bildefilen "%s" finnes ikke lenger. - + There was no display item to amend. - + Det ble ikke vist noe som skulle endres. ImagesPlugin.ImageTab - + Background Color - + Bakgrunnsfarge - + Default Color: - + Standard farge: - + Visible background for images with aspect ratio different to screen. - + Synlig bakgrunn for bilder med bildeformat annerledes enn skjermen. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - <strong>Mediatillegg</strong><br />Mediatillegget tilbyr avspilling av lyd og video. - - - - Media - name singular - + <strong>Mediatillegg</strong><br/>Mediatillegget tilbyr avspilling av lyd og video. Media - name plural - + name singular + Media - + + Media + name plural + Media + + + Media container title Media - + Load new media. - - - - - Add new media. - + Last ny media-fil. - Edit the selected media. - + Add new media. + Legg til nytt media. - Delete the selected media. - + Edit the selected media. + Rediger valgte media. - Preview the selected media. - + Delete the selected media. + Slett valgte media. - Send the selected media live. - + Preview the selected media. + Forhåndsvis valgte media. + Send the selected media live. + Frem-vis valgte media. + + + Add the selected media to the service. - + Legg valgte media til møteprogram. MediaPlugin.MediaItem - + Select Media - Velg fil + Velg media - + You must select a media file to delete. - Du må velge en fil å slette + Du må velge en media-fil som sakl slettes. - + You must select a media file to replace the background with. Du må velge en fil å erstatte bakgrunnen med. - + There was a problem replacing your background, the media file "%s" no longer exists. Det oppstod et problem ved bytting av bakgrunn, filen "%s" finnes ikke lenger. - + Missing Media File - Fil mangler + Media-fil mangler - + The file %s no longer exists. - Filen %s finnes ikke lenger + Filen %s finnes ikke lenger. - + Videos (%s);;Audio (%s);;%s (*) Videoer (%s);;Lyd (%s);;%s (*) - + There was no display item to amend. - + Det var ingen vinings element å endre. - + Unsupported File - + Ustøttet fil - + Automatic - + Automatisk - + Use Player: - + Bruk mediaspiller: MediaPlugin.MediaTab - + Available Media Players - + Tilgjengelige mediaspillere - + %s (unavailable) - + %s (uttilgjengelig) - + Player Order - + Spiller rekkeflølge - + Allow media player to be overridden - + Tillate media player å bli overstyrt OpenLP - + Image Files Bildefiler - + Information - + Informasjon - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + Bibelformatet er forandret. +Du må oppgradere eksiterende bibler. +Vil du at OpenLP skal oppgradere nå? OpenLP.AboutForm - + Credits - Credits + Medvirkende - + License - + Lisens - - Contribute - Bidra - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - Dette programmet er fri programvare; du kan redistribuere det og/eller endre det under betingelsene i GNU General Public License versjon 2, som publisert av Free Software Foundation. + Dette programmet er gratis programvare; du kan re-distribuere det og/eller endre det under betingelsene i GNU General Public License versjon 2, som publisert av Free Software Foundation. - + This program 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 below for more details. Dette programmet er distribuert i det håp at det vil være nyttig, men UTEN NOEN FORM FOR GARANTI; selv uten underforståtte garantier om SALGBARHET eller ANVENDELIGHET FOR ET SPESIELT FORMÅL. Se nedenfor for flere detaljer. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Delvis copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <versjon><revision> - Open Source Lyrics Projection + +OpenLP er et gratis presentasjonprogram for menigheter og forsamlinger. Det kan brukes i kirker og bedehus til å vise sangtekster, bibelvers, videoer, bilder og til og med presentasjoner (hvis Impress, PowerPoint eller PowerPoint Viewer er installert) ved hjelp av datamaskin og data-projektor. + +Finn ut mer om OpenLP: http://openlp.org/ + +OpenLP er skrevet og vedlikeholdt av frivillige. Hvis du ønsker at det blir skrevet mer gratis kristen programvare, kan du vurdere et frivillig bidrag ved å klikke på knappen nedenfor. + + + + Volunteer + Frivillig bidrag + + + Project Lead %s @@ -2027,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2041,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2049,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2070,417 +2139,466 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Prosjektleder -%s + Prosjekt ledelse + %s Utviklere -%s + %s Bidragsytere -%s + %s Testere -%s + %s Pakkere -%s + %s Oversettere -Afrikaans (af) -%s -Tysk (de) -%s -Engelsk, Storbritannia (en_GB) -%s -Engelsk, Sør-Afrika (en_ZA) -%s -Estisk (et) -%s -Fransk (fr) -%s -Ungarsk (hu) -%s -Japansk (ja) -%s -Norsk - bokmål (nb) -%s -Nederlandsk (nl) -%s -Portogisisk, Brazil (pt_BR) -%s -Russisk (ru) -%s + Afrikaans (af) + %s + Tsjekkisk(cs) + %s + Dansk (da) + %s + Tysk (de) + %s + Gresk (el) + %s + Engelsk, Storbritannia (en_GB) + %s + Engelsk, Sørafrika (en_ZA) + %s + Spansk (es) + %s + Estisk (et) + %s + Fransk (fr) + %s + Ungarsk(hu) + %s + Japansk (ja) + %s + Norsk bokmål (nb) + %s + Nederlandsk (nl) + %s + Portugisisk, Brasil (pt_BR) + %s + Russisk (ru) + %s + Svensk (sv) + %s Dokumentasjon -%s + %s -Laget med -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygen Icons: http://oxygen-icons.org/ +Utvikler verktøy + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ Endelig takk -"For så høyt har Gud elsket verden, at han -ga sin Sønn, den enbårne, for at hver den -som tror på ham, ikke skal gå fortapt, men -ha evig liv." -- Joh 3:16 + "For så høyt har Gud elsket verden at han ga + sin Sønn, den enbårne, for at hver den som + tror på ham, ikke skal gå fortapt, + men ha evig liv." -- Joh 3:16 -Og sist, men ikke minst, takken går til Gud vår -far, for at han sendet oss sin Sønn for å dø -på korset, og satte oss fri fra synd. Vi gir deg -dette programmet fritt for omkostninger, -fordi han har satt oss fri. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Og sist, men ikke minst, takken går til Gud vår + far, for at han sendte sin Sønn for å dø + på korset, og satte oss fri fra synd. Fordi Han har + satt oss fri gir vi deg dette programmet + fritt og uten omkostninger, + . OpenLP.AdvancedTab - + UI Settings Innstillinger for brukergrensesnitt - + Number of recent files to display: - Antall nylig brukte filer å vise. + Antall nylig brukte filer som skal vises: - + Remember active media manager tab on startup - Husk aktiv mediebehandlerfane ved oppstart + Husk aktiv fane i Innholdselementer ved oppstart - + Double-click to send items straight to live - Dobbelklikk for å sende saker direkte live + Dobbelklikk for å sende poster direkte til fremvisning - + Expand new service items on creation - Utvid nye møteenheter ved opprettelse + Utvid nye programposter ved opprettelse - + Enable application exit confirmation Aktiver avsluttningsbekreftelse - + Mouse Cursor - + Musepekeren - + Hide mouse cursor when over display window - + Sjul musepekeren når den er over visningsvinduet - + Default Image - + Standard bilde - + Background color: - + Bakgrunnsfarge: - + Image file: - + Bilde fil: - + Open File - + Åpne fil - + Advanced - + Avansert - + Preview items when clicked in Media Manager - + Forhåndsvis poster markert i Innholdselementer - + Click to select a color. - + Klikk for å velge farge. - + Browse for an image file to display. - + Søk etter en bildefild som skal vises. - + Revert to the default OpenLP logo. - + Gå tilbake til standar OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Møteprogram %Y-%m-%d %H-%M - + Default Service Name - + Standard møteprogram-navn - + Enable default service name - + Aktiver standard møteprogram-navn - + Date and Time: - + Dato og tid: - + Monday - + Mandag - + Tuesday - + Tirsdag - + Wednesday - + Onsdag - + Thurdsday - + Torsdag - + Friday - + Fredag - + Saturday - + Lørdag - + Sunday - + Søndag - + Now - + - + Time when usual service starts. - + Tidspunkt når møtet starter. - + Name: - + Navn: - + Consult the OpenLP manual for usage. - + Slå opp i OpenLP manual for bruk. - + Revert to the default service name "%s". - + Tilbakestill til standard møteprogram-navn "%s". - + Example: - + Eksempel: - + X11 - + X11 Bypass X11 Window Manager - + Bypass X11 Window Manager - + Syntax error. - + Syntaksfeil. - + Data Location - + Sti til lagringsområde - + Current path: - + Gjeldene sti: - + Custom path: - + Egen-valgt sti: - + Browse for new data file location. - + Bla for ny datafil plassering. - + Set the data location to the default. - + Tilbakestill til standard plassering. - + Cancel - + Avbryt - + Cancel OpenLP data directory location change. - + Avbryt endring av datafil plasseringen i OpenLP. - + Copy data to new location. - + Kopier data til ny plassering. - + Copy the OpenLP data files to the new location. - + Kopier OpenLP datafiler til den nye plasseringen. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>ADVARSEL:</strong> Den nye datakatalogen inneholder OpenLP data filer. Disse filene VIL bli overskrevet under kopieringen. - + Data Directory Error - + Datakatalogfeil - + Select Data Directory Location - + Velg plass for datakatalog - + Confirm Data Directory Change - + Bekreft endring av datakatalog - + Reset Data Directory - + Tilbakestill datakatalog - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Er du sikker på at du vil endre plasseringen av OpenLP datakatalogen til standardplassering? + +Denne plasseringen vil bli brukt etter OpenLP er lukket. - + Overwrite Existing Data - + Overskriv eksisterende data + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP datakatalog ble ikke funnet + +%s + +Denne katalogen ble tidligere endret fra OpenLP standardplasseringen. Hvis den nye plasseringen var på flyttbare medier, må disse gjøres tilgjengelig. + +Klikk "Nei" for å stoppe oppstarten av OpenLP. slik at du kan løse problemet. Klikk "Ja" for å nullstille datakatalogen til standardplasseringen. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Er du sikker på at du vil endre plasseringen av OpenLP datakatalog til: + + +%s + + +Dataene katalogen vil bli endret når OpenLP blir lukket. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + ADVARSEL: + +Plasseringen du har valgt + +%s + +synes å inneholde OpenLP datafiler. Ønsker du å erstatte disse filene med gjeldende datafiler? OpenLP.ExceptionDialog - + Error Occurred - + Feil oppstod - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Oops! Det oppstod et problem i OpenLP som ikke kunne opprettes. Teksten i boksen nedenfor inneholder innformsjon som kan være nyttig for OopenLP's utviklere. Så venligst send en e-post til bugs@openlp.org sammen med en detaljert beskrivels om hva du gjorde da problemet oppstod. - + Send E-Mail - + Send e-post - + Save to File - + Lagre til fil - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Venligst send en beskrivelse av hva du gjorde som forårsaket feilen +(Minimum 20 tegn.) - + Attach File - + Legg ved fil - + Description characters to enter : %s - + Skriv forklarende tekst: %s OpenLP.ExceptionForm - + Platform: %s - + Pattform: %s + - + Save Crash Report - + Lagre krasj raport - + Text files (*.txt *.log *.text) - + Tekst filer (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2495,10 +2613,23 @@ Version: %s --- Library Versions --- %s - + **OpenLP feilrapport** +Versjon: %s + +--- Detaljer av feilen. --- + +%s + + --- Tilbakesporing av feilen --- +%s +--- System informasjon --- +%s +--- Bibliotek versjoner --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2514,4707 +2645,4832 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + **OpenLP feilrapport** +Versjon: %s + +--- Detaljer av feilen. --- + +%s + + --- Tilbakesporing av feilen --- +%s +--- System informasjon --- +%s +--- Bibliotek versjoner --- +%s OpenLP.FileRenameForm - + File Rename - + Skift navn på filen - + New File Name: - + Nytt filnavn: - + File Copy - + Kopier fil OpenLP.FirstTimeLanguageForm - + Select Translation - + Velg oversetting - + Choose the translation you'd like to use in OpenLP. - + Velg oversetting som du vil bruke i OppenLP. - + Translation: - + Oversetting: OpenLP.FirstTimeWizard - + Songs - + Sanger - + First Time Wizard - + Første gangs veiviser - + Welcome to the First Time Wizard - + Velkommen til "Første gangs veiviser" - + Activate required Plugins - + Aktiver nødvendige programtillegg - + Select the Plugins you wish to use. - - - - - Bible - + Velg tillegg som du ønsker å bruke. - Images - + Bible + Bibel - - Presentations - + + Images + Bilder - Media (Audio and Video) - + Presentations + Presentasjoner - Allow remote access - + Media (Audio and Video) + Media (Lyd og video) - Monitor Song Usage - + Allow remote access + Tillate fjernkontroll - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - + Monitor Song Usage + Overvåke bruk av sanger - No Internet Connection - - - - - Unable to detect an Internet connection. - - - - - Sample Songs - - - - - Select and download public domain songs. - - - - - Sample Bibles - - - - - Select and download free Bibles. - - - - - Sample Themes - - - - - Select and download sample themes. - + Allow Alerts + Tillate varsel-meldinger - Set up default settings to be used by OpenLP. - + Default Settings + Standardinnstillinger + + + + Downloading %s... + Nedlasting %s... + + + + Download complete. Click the finish button to start OpenLP. + Nedlasting fullført. Klikk på ferdig knappen for å starte OpenLP. + + + + Enabling selected plugins... + Aktiverer programtillegg... + + + + No Internet Connection + Mangler internett tilkobling + + + + Unable to detect an Internet connection. + Umulig å oppdage en internett-tilkobling. + + + + Sample Songs + Eksempel-sanger + + + + Select and download public domain songs. + Velg og last ned public domain PD sanger. + + + + Sample Bibles + Eksempel-bibler + + + + Select and download free Bibles. + Velg og last ned gratis bibler. + + + + Sample Themes + Eksempel tema + + + + Select and download sample themes. + Velg og last ned eksempel tema. - Default output display: - + Set up default settings to be used by OpenLP. + Sett opp standard-innstillinger for OpenLP. - Select default theme: - + Default output display: + Standard skjerm: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + Velg standard tema: - Finish - + Starting configuration process... + Starter konfigurasjonsprosessen... - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + Denne veiviseren hjelper deg å sette opp OpenLP til førstegangs bruk. Klikk neste for å starte. + + + + Setting Up And Downloading + Setter opp og laster ned + + + + Please wait while OpenLP is set up and your data is downloaded. + Venligst vent mens OpenLP blir satt opp og data lastet ned. + + + + Setting Up + Setter opp + + + + Click the finish button to start OpenLP. + Klikk ferdig knappen for å starte OpenLP. + + + + Download complete. Click the finish button to return to OpenLP. + Nedlastingen er ferdig. Klikk ferdig for å gå tilbake til OpenLP. + + + + Click the finish button to return to OpenLP. + Klikk ferdig for å gå tilbake til OpenLP. + + + + Custom Slides + Egendefinerte lysbilder + + + + Finish + Ferdig + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Ingen Internett-tilkobling ble funnet. "Første-gangs veiviseren" trenger en Internett-tilkobling for å kunne laste ned eksempel-sanger, bibler og temaer. Klikk Fullfør-knappen for å begynne OpenLP og utføre innledende innstillinger uten eksempeldata. + +For å kjøre "Første-gangs veiviser" og importere disse eksempeldata på et senere tidspunkt, kan du kontrollere Internett-tilkoblingen og kjøre denne veiviseren ved å velge "Verktøy / Kjør første-gagns veiviser på nytt" fra OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +For å avbryte "Første-gangs veiviser" helt (og ikke starte OpenLP), Trykk på Avbryt nå. OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Konfigurere formateringskoder - + Edit Selection - + Redigere valg - + Save - + Lagre - + Description - + Beskrivelse - + Tag - + Kode - + Start HTML - + Start HTML - + End HTML - + Slutt HTML OpenLP.FormattingTagForm - + Update Error - + Feil ved oppdateringen - + Tag "n" already defined. - + Koden "n" er allrede definert. - + New Tag - + Ny kode - + <HTML here> - + <Sett inn Hypertekst her> - + </and here> - + </og her> - + Tag %s already defined. - + Merket %s er allerede definert. OpenLP.FormattingTags - + Red - + Rød - + Black - + Svart - + Blue - + Blå - + Yellow - + Gul - + Green - + Grønn - + Pink - + Rosa - + Orange - + Oransje - + Purple - + Lilla - + White - + Hvit - + Superscript - + Overstilt tekst - + Subscript - + Understilt tekst - + Paragraph - + Avsnitt - + Bold - + Fet - + Italics - + Skråstilt - + Underline - + Understrek - + Break - + Mellomrom OpenLP.GeneralTab - - - General - - + General + Generell + + + Monitors - + Skjermer - + Select monitor for output display: - + Velg skjerm som innhold skal vises på: - + Display if a single screen - + Vis dersom enkel skjerm - + Application Startup Programoppstart - + Show blank screen warning - + Vis svart skjerm - + Automatically open the last service Åpne forrige møteplan automatisk - + Show the splash screen - + Vis logo - + Application Settings - Programinnstillinger + Møteprograminnstillinger - + Prompt to save before starting a new service - + Spør om å lagre før du starter en ny møteplan - + Automatically preview next item in service - - - - - sec - + Automatisk forhåndsvis neste post i møteplanen + sec + sekunder + + + CCLI Details - + CCLI-detaljer - + SongSelect username: - + SongSelect brukernavn: - + SongSelect password: - - - - - X - + SongSelect passord: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Høyde - Background Audio - + Width + Bredde - + + Check for updates to OpenLP + Se etter oppdateringer til OpenLP + + + + Unblank display when adding new live item + Gjør skjerm synlig når nytt element blir lagt til + + + + Timed slide interval: + Tidsbestemt lysbilde-intervall: + + + + Background Audio + Bakgrunnslyd + + + Start background audio paused - + Start med bakgrunnsmusikk pauset Service Item Slide Limits - + Bideveksling - + Override display position: - + Manuell skjermposisjon: - + Repeat track list - + Gjenta spilleliste Behavior of next/previous on the last/first slide: - + Innstilling av navigering gjennom bilda: &Remain on Slide - + &Bli på siste bilde i sangen &Wrap around - + &Gjennom sangen - starte om &Move to next/previous service item - + Gjennom sangen - &neste post på programmet OpenLP.LanguageManager - + Language - + Språk - + Please restart OpenLP to use your new language setting. - + Vennligst start OpenLP på nytt for å bruke de nye språkinnstillingene. OpenLP.MainDisplay - + OpenLP Display - + OpenLP Display OpenLP.MainWindow - + &File &Fil - + &Import &Importer - + &Export &Eksporter - + &View - + &Vis - + M&ode - + M&odus - + &Tools - + &Verktøy - + &Settings &Innstillinger - + &Language - + &Språk - + &Help &Hjelp - + Media Manager - - - - - Service Manager - - - - - Theme Manager - - - - - &New - + Innholdselementer - &Open - + Service Manager + Møteprogram - Open an existing service. - + Theme Manager + Temabehandler + &New + &Ny + + + + &Open + &Åpne + + + + Open an existing service. + Åpne en allerede eksisterende møteprogram. + + + &Save - + &Lagre - + Save the current service to disk. - + Lagre gjeldene møteprogram til disk. - + Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - + Lagre &som... + Save Service As + Lagre møteprogram som + + + + Save the current service under a new name. + Lagre gjeldene møteprogram med et nytt navn. + + + E&xit &Avslutt - + Quit OpenLP - + Avslutt OpenLP - + &Theme - + &Tema - + &Configure OpenLP... - + &Sett opp OpenLP... - + &Media Manager - + &Innholdselementer - + Toggle Media Manager - + Endre til Innholdselementer - + Toggle the visibility of the media manager. - + Endrer visning av Innholdselementer. - + &Theme Manager - + &Temabehandler - + Toggle Theme Manager - + Endre til temabehandler - + Toggle the visibility of the theme manager. - + Endrer visning av temabehandler. - + &Service Manager - + &Møteprogram - + Toggle Service Manager - + Endre til møteprogram - + Toggle the visibility of the service manager. - + Endrer visning av møteprogram-behandler. - + &Preview Panel &Forhåndsvisningspanel - + Toggle Preview Panel Vis forhåndsvisningspanel - + Toggle the visibility of the preview panel. - + Bytt visning av forhåndsvisningspanel. - + &Live Panel - + &Fremvisningspanel - + Toggle Live Panel - + Vis Fremvisningspanel - + Toggle the visibility of the live panel. - + Bytt visning av fremvisningpanel. - + &Plugin List - + &Tilleggsmoduler - + List the Plugins - + List opp tilleggsmoduler - + &User Guide &Brukerveiledning - + &About - - - - - More information about OpenLP - - - - - &Online Help - + &Om + More information about OpenLP + Mer informasjon om OpenLP + + + + &Online Help + &Online hjelp + + + &Web Site - + &Nettside - + Use the system language, if available. - + Bruk systemspråk, dersom tilgjengelig. - + Set the interface language to %s - + Sett brukerspråk til %s - + Add &Tool... - + Legg til &verktøy... - + Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - + Legg til en applikasjon i verktøylisten. + &Default + &Standar + + + + Set the view mode back to the default. + Tilbakestill programmet til standard visning. + + + + &Setup + &Planlegging + + + + Set the view mode to Setup. + Sett progammet i planleggingmodus. + + + &Live - + &Fremvisning - + Set the view mode to Live. - + Sett programmet i fremvisningmodus. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + Versjon %s av OpenLP er no tilgjengelig for nedlasting (du kjører versjon %s). + + +Du kan laste ned siste versjon fra http://openlp.org/. - + OpenLP Version Updated - + OpenLp er oppdatert - + OpenLP Main Display Blanked - + OpenLP visningsskjerm er avslått - + The Main Display has been blanked out - + Visningsskjerm er avslått - + Default Theme: %s - + Standard tema: %s - + English Please add the name of your language here - Norwegian + Norsk(bokmål) - + Configure &Shortcuts... - + Konfigurer &hurtigtaster... - + Close OpenLP - + Avslutt OpenLP - + Are you sure you want to close OpenLP? - + Er du sikker på at du vil avslutte OpenLP? - + Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - + Åpne &datakatalog... + Open the folder where songs, bibles and other data resides. + Åpne mappen der sanger, bibler og andre data lagres. + + + + &Autodetect + Oppdag &automatisk + + + Update Theme Images - + Oppdater temabilder + + + + Update the preview images for all themes. + Oppdater forhåndsvisningsbilder for all tema. + + + + Print the current service. + Skriv ut gjeldende møteprogram. + + + + &Recent Files + Sist brukte &møteprogram + + + + L&ock Panels + L&ås paneler + + + + Prevent the panels being moved. + Forhindrer at paneler blir flyttet. - Update the preview images for all themes. - - - - - Print the current service. - - - - - &Recent Files - - - - - L&ock Panels - - - - - Prevent the panels being moved. - - - - Re-run First Time Wizard - + Kjør første gangs veiviseren på nytt - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Kjør første gangs veiviseren på nytt og importer sanger, bibler og tema. - + Re-run First Time Wizard? - + Vil du kjøre første gangs veiviseren på nytt? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Vil du kjøre første gangs veiviseren på nytt? + +Dersom du kjører veiviseren på nytt vil det sannsynlig føre til forandringer i gjeldende oppsett i OpenLP og legge til sanger i eksisterende sangliste og bytte gjeldene tema. - + Clear List Clear List of recent files - + Tøm listen - + Clear the list of recent files. - + Tømmer listen over sist brukte møteprogram. - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + Konfigurerer &formateringskoder... + Export OpenLP settings to a specified *.config file + Eksporter OpenLP-innstillingene til en spesifisert *.config-fil + + + Settings - + Innstillinger - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Importer OpenLP-innstillier fra en spesifisert *.config fil som tidlegere er eksportert fra denne eller en annen datamaskin - + Import settings? - + Vil du importere instillinger? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Er du sikker på at du vil importere innstillinger? + +Å importere innstillinger vil gjøre permanente forandringer i din nåværende OpenLP konfigurasjon. + +Dersom du importerer feil innstillinger kan det føre til uberegnelig opptreden eller OpenLP avsluttes unormalt. - + Open File - + Åpne fil - + OpenLP Export Settings Files (*.conf) - + OpenLP-innstillingsfiler (*.conf) - + Import settings - + Importer innstillinger - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP vil nå avsluttes. Importerte instillinger blir aktive ved neste oppstart av OpenLP. - + Export Settings File - + Ekstorter innstillingsfil - + OpenLP Export Settings File (*.conf) - + OpenLP-innstillingsfiler (*.conf) - + New Data Directory Error - + Ny datakatalog feil + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Filen du valgte ser ut til å være en gyldig OpenLP innstillings-fil. + +Seksjon [%s] er ikke gyldig + +Behandlingen er avsluttet og ingen endringer er gjort. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopierer OpenLP data til ny datakatalog plassering -%s. Vent til kopieringen er ferdig + + + + OpenLP Data directory copy failed + +%s + Kopiering til OpenLP datakatalog mislyktes + +%s OpenLP.Manager - + Database Error - + Databasefeil - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Databasen som vart forsøkt lastet er laget i en nyere versjon av OpenLP. Databasen har versjon %d, OpenLP krever versjon %d. Databasen blir ikke lastet. + +Database: %s - + OpenLP cannot load your database. Database: %s - + OpenLP kan ikke laste databasen. + +Database: %s OpenLP.MediaManagerItem - + No Items Selected - + Ingen poster er valgt - + &Add to selected Service Item - + &Legg til i valgt post i møteprogrammet - + You must select one or more items to preview. - + Du må velge en eller flere poster som skal forhåndsvises. - + You must select one or more items to send live. - + Du må velge en eller flere poster som skal fremvises. - + You must select one or more items. - + Du må velge en eller flere poster. - + You must select an existing service item to add to. - + Du må velge en eksiterende post i møteprogrammet som skal legges til. - + Invalid Service Item - + Ugyldig møteprogrampost - + You must select a %s service item. - + Du må velge en post av typen %s i møteprogrammet. - + You must select one or more items to add. - + Du må velge en eller flere poster som skal legges til. - + No Search Results - + Ingen søkeresultat - + Invalid File Type - + Ugyldig filtype - + Invalid File %s. Suffix not supported - + Ugyldig fil %s. +Fil-endelsen støttes ikke - + &Clone - + &Klone - + Duplicate files were found on import and were ignored. - + Like versjoner av filene ble funnet ved importen og ble ignorert. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <lyrics> tagg mangler. - + <verse> tag is missing. - + <verse> tagg mangler. OpenLP.PluginForm - + Plugin List - + Tillegsmoduler - + Plugin Details - + Moduldetaljer - + Status: - + Status: - + Active Aktiv - + Inactive - + Inaktive - + %s (Inactive) - + %s (Inaktiv) - + %s (Active) - + %s (Aktiv) - + %s (Disabled) - + %s (Deaktivert) OpenLP.PrintServiceDialog - + Fit Page - + Tilpass siden - + Fit Width - + Tilpass bredden OpenLP.PrintServiceForm - + Options - + Alternativ - + Copy - + Kopier - + Copy as HTML - + Kopier som HTML - + Zoom In - + Zoom inn - + Zoom Out - + Zoom ut - + Zoom Original - + Tilbakestill zoom - + Other Options - + Andre alternativ - + Include slide text if available - + Innkludere sidetekst om tilgjengelig - + Include service item notes - + Inkluder notater - + Include play length of media items - + Inkluder spillelengd for mediaposter - + Add page break before each text item - + Legg til sideskift for kvar tekst-post - + Service Sheet - + Møteprogram - + Print - - - - - Title: - + Skriv ut + Title: + Tittel: + + + Custom Footer Text: - + Egendefinert bunntekst: OpenLP.ScreenList - + Screen - + Skjerm - + primary - + primær OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + <strong>Lengde</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Ommorganisere programpost OpenLP.ServiceManager - + Move to &top - + Flytt &øverst - + Move item to the top of the service. - + Legg posten øverst på møteprogrammet. - + Move &up - + Flytt &opp - + Move item up one position in the service. - + Flytter posten opp et steg. - + Move &down - + Flytt &ned - + Move item down one position in the service. - + Flytter posten et steg ned. - + Move to &bottom - + Flytt neder&st - + Move item to the end of the service. - + Legg posten sist på møteprogrammet. - + &Delete From Service - + &Slett fra møteprogramet - + Delete the selected item from the service. - + Slett valgte post frå programmet. - + &Add New Item - + &Legg til ny post - + &Add to Selected Item - + Legg til i &valgt post - + &Edit Item - + &Redigere post - + &Reorder Item - + &Omorganiser post - + &Notes - + &Notater - + &Change Item Theme - + &Skift postens tema - + OpenLP Service Files (*.osz) - + OpenLP møteprogramfiler (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Filen er ikke gyldig møteprogramfil. +Innholdet er ikke etter UTF-8 koding. - + File is not a valid service. - + Filen er ikke gyldig møteprogram-fil. - + Missing Display Handler - + Visningsmodul mangler - + Your item cannot be displayed as there is no handler to display it - + Posten kan ikke vises fordi visningsmodul mangler - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Posten kan ikke vises fordi nødvendig programtillegg enten mangler eller er inaktiv - + &Expand all - + &Utvid alle - + Expand all the service items. - + Utvider alle postene i møteprogrammet. - + &Collapse all - + &Skjul alle - + Collapse all the service items. - + Skjul alle poster i programmet. - + Open File - + Åpne fil - + Moves the selection down the window. - + Flytter utvalget nedover vinduet. - + Move up - + Flytte opp - + Moves the selection up the window. - + Flytter utvalget oppover vinduet. - + Go Live - + Send til fremvisning - + Send the selected item to Live. - + Sender valgt element til fremvisning. - + &Start Time - + &Starttid - + Show &Preview - + &Forhåndsvis - + Modified Service - + Endret møteprogram - + The current service has been modified. Would you like to save this service? - + Gjeldende møteprogram er endret. Vil du lagre? - + Custom Service Notes: - + Egne møteprogram notater: - + Notes: - + Notater: - + Playing time: - + Spilletid: - + Untitled Service - + Uten tittel; møteprogram - + File could not be opened because it is corrupt. - + Filen kunne åpnes fordi den er skadet. - + Empty File - + Tom fil - + This service file does not contain any data. - + Denne møteprogram filen er tom. - + Corrupt File - + Skadet fil - + Load an existing service. - + Åpne en eksisterende møteprogramfil. - + Save this service. - + Lagre dette møteprogrammet. - + Select a theme for the service. - + Velg et tema for møteprogrammet. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Denne filen er enten skadet eller det er ikke en OpenLP 2,0 møtprogram fil. - - Service File Missing - - - - + Slide theme - + Lysbilde-tema - + Notes - + Notater - + Edit - + Redigere - + Service copy only - + Berre kopi i møteprogrammet - + Error Saving File - + Feil under lagring av fil - + There was an error saving your file. - + Det oppstod en feil under lagringen av filen. + + + + Service File(s) Missing + Møteprogramfil(er) mangler + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Følgende fil(er) i møteprogrammet mangler: +<byte value="x9"/>%s + + Disse filene vil bli fjernet hvis du fortsetter å lagre. OpenLP.ServiceNoteForm - + Service Item Notes - + Programpost notater OpenLP.SettingsForm - + Configure OpenLP - + Konfigurer OpenLP OpenLP.ShortcutListDialog - + Action - + Handling - + Shortcut - + Hurtigtast - + Duplicate Shortcut - + Dublett - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Hurtigtasten "%s" er allerede brukt til en annen handling, bruk en annen hurtigtast. - + Alternate - + Alternativ - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Velg en handling og trykk på knappene nedenfor for å lage en ny primær eller en alternativ hurtigtast. - + Default - + Standard - + Custom - + Egendefinert - + Capture shortcut. - + Opprette hurtigtast. - + Restore the default shortcut of this action. - + Tilbakestill til standard hurtigtast for denne handlingen. - + Restore Default Shortcuts - + Tilbakestill til standard hurtigtast - + Do you want to restore all shortcuts to their defaults? - + Ønsker du å tilbakestille alle hurtigtaster til standard verdier? - + Configure Shortcuts - + Konfigurer hurtigtaster OpenLP.SlideController - + Hide - + Sjul - + Go To - + Gå til - + Blank Screen - + Blanke skjerm - + Blank to Theme - + Blanke til tema - + Show Desktop - + Vis skrivebord - + Previous Service - + Forrige møteprogram - + Next Service - + Neste møteprogram - + Escape Item - + Avbryt post - + Move to previous. - + Flytt til forrige. - + Move to next. - + Flytt til neste. - + Play Slides - + Spill sider - + Delay between slides in seconds. - + Ventetid mellom bildene i sekunder. - + Move to live. - + Flytt til fremvisning. - + Add to Service. - + Legg til i møteprogram. - + Edit and reload song preview. - + Rediger og oppdater forhåndsvisning. - + Start playing media. - + Start avspilling av media. - + Pause audio. - + Pause lyden. - + Pause playing media. - + Pause avspilling av media. - + Stop playing media. - + Stopp avspilling av media. - + Video position. - + Videoposisjon. - + Audio Volume. - - - - - Go to "Verse" - + Lydvolum. - Go to "Chorus" - + Go to "Verse" + Gå til "Vers" - Go to "Bridge" - + Go to "Chorus" + Gå til "Refreng" - Go to "Pre-Chorus" - + Go to "Bridge" + Gå til "Mellomspill" - - Go to "Intro" - + + Go to "Pre-Chorus" + Gå til "Bro" - Go to "Ending" - + Go to "Intro" + Gå til "Intro" + Go to "Ending" + Gå til "Avslutt" + + + Go to "Other" - + Gå til "Annet" - + Previous Slide - + Forrige bilde - + Next Slide - + Neste bilde - + Pause Audio - + Pause lyd - + Background Audio - + Bakgrunnslyd - + Go to next audio track. - + Gå til neste lyd-spor. - + Tracks - + Spor OpenLP.SpellTextEdit - + Spelling Suggestions - + Staveforslag - + Formatting Tags - + Formateringstagger - + Language: - + Språk: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Timer: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minutter: - Start - + Seconds: + Sekunder: + + + + Item Start and Finish Time + Start og sluttid - Finish - + Start + Start + Finish + Slutt + + + Length - + Lengde - + Time Validation Error - + Tidskontrollfeil - + Finish time is set after the end of the media item - + Sluttiden er satt til etter slutten av mediaposten - + Start time is after the finish time of the media item - + Starttiden er etter sluttiden av mediaposten - + Theme Layout - + Temalayout - + The blue box shows the main area. - + Den blå ruten viser hovedområdet. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + Den røde ruten viser bunnteksten. OpenLP.ThemeManager - + Create a new theme. - + Lag et nytt tema. - + Edit Theme - + Rediger tema - + Edit a theme. - + Rediger et tema. - + Delete Theme - + Slett tema - + Delete a theme. - + Slett et tema. - + Import Theme - + Importer tema - + Import a theme. - + Importer et tema. - + Export Theme - + Eksporter tema - + Export a theme. - + Eksporter et tema. - + &Edit Theme - + &Rediger tema - + &Delete Theme - + &Slett tema - + Set As &Global Default - + Sett som &globalt tema - + %s (default) - + %s (standard) - + You must select a theme to edit. - + Du må velge et tema å redigere. - + You are unable to delete the default theme. - Du kan ikke slette det globale temaet. + Du kan ikke slette standard tema. - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + Tema %s er i bruk i programmodulen %s. + You have not selected a theme. + Du har ikke valgt et tema. + + + Save Theme - (%s) - + Lagre tema -(%s) - + Theme Exported - + Tema eksportert - + Your theme has been successfully exported. - + Temaet har blitt eksportert uten problem. - + Theme Export Failed - + Temaeksporten var mislykket - + Your theme could not be exported due to an error. - + Temaet kunne ikke eksporteres på grunn av en feil. - + Select Theme Import File - + Velg en tema importfil - + File is not a valid theme. Filen er ikke et gyldig tema. - + &Copy Theme - + &Kopier tema - + &Rename Theme - + &Endre navn på tema - + &Export Theme - + &Eksporter tema - + You must select a theme to rename. - + Du må velge et tema som skal endre navn. - + Rename Confirmation - + Stadfest navnendring - + Rename %s theme? - + Endre navn på tema %s? - + You must select a theme to delete. - + Du må velge et tema som skal slettes. - + Delete Confirmation - + Stadfest sletting - + Delete %s theme? - + Slett %s tema? - + Validation Error - + Kontrollfeil - + A theme with this name already exists. - + Et tema med dette navnet finnes allerede. - + OpenLP Themes (*.theme *.otz) - + OpenLP tema (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Kopi av %s - + Theme Already Exists - + Tema finnes allerede + + + + Theme %s already exists. Do you want to replace it? + Temaet %s finnes allerede. Vil du erstatte det? OpenLP.ThemeWizard - + Theme Wizard - + Tema veiviser - + Welcome to the Theme Wizard - + Velkommen til tema-veiviseren - + Set Up Background - + Sett opp bakgrunn - + Set up your theme's background according to the parameters below. - + Sett opp tema-bakgrunn i henhold til parameterne nedenfor. - + Background type: - + Bakgrunns-type: - + Solid Color - + Ensfarget - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + Gradient + Color: + Farge: + + + + Gradient: + Gradient: + + + + Horizontal + Horisontal + + + + Vertical + Vertikal + + + + Circular + Sirkulær + + + + Top Left - Bottom Right + Øverst til venstre - Nederst til høyre + + + + Bottom Left - Top Right + Nederst til venstre - Øverst til høyre + + + + Main Area Font Details + Fontdetaljer for hovudfeltet + + + + Define the font and display characteristics for the Display text + Angi skriftstørrelsen og egenskaper for visningsteksten + + + + Font: + Font: + + + Size: - + Størrelse: - + Line Spacing: - + Linjeavstand: - + &Outline: - + &Kontur: - + &Shadow: - - - - - Bold - + &Skygge: + Bold + Fet + + + Italic - + Kursiv - + Footer Area Font Details - + Fontdetaljer for bunntekstområdet - + Define the font and display characteristics for the Footer text - + Angi skriftstørrelsen og egenskaper for bunnteksten - + Text Formatting Details - + Tekstformatering - + Allows additional display formatting information to be defined - + Ytterlige innstillingsmuliger for hvorledes teksten skal vises - + Horizontal Align: - + Vannrett justering: - + Left - + Venstre - + Right - + Høgre - + Center - + Midten - + Output Area Locations - + Plassering av visningsområda - + Allows you to change and move the main and footer areas. - + Her kan du endre plasseringen av hovedområdet og bunnteksten. - + &Main Area - + &Hovedområdet - + &Use default location - + &Bruk standard plassering - + X position: - + X posisjon: - + px - + px - + Y position: - + Y posisjon: - + Width: - + Bredde: - + Height: - + Høyde: - + Use default location - + Bruk standard plassering - + Theme name: - + Tema navn: - + Edit Theme - %s - + Rediger tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Denne veiviseren vil hjelpe deg å lage og redigere dine temaer. Klikk på Neste-knappen under for å starte oppsettet av bakgrunnen. - + Transitions: - + Overganger: - + &Footer Area - + &Bunntekst - + Starting color: - + Startfarge: - + Ending color: - + Sluttfarge: - + Background color: - + Bakgrunnsfarge: - + Justify - + Finjuster - + Layout Preview - + Forhåndsvisning av layout - + Transparent - + Transparent - + Preview and Save - + Forhåndsvis og lagre - + Preview the theme and save it. - + Forhåndsvis og lagre temaet. + + + + (approximately %d lines per slide) + (ca. %d linjer per bilde) + + + + Background Image Empty + Bakgrunnsbilde er tomt + + + + You have not selected a background image. Please select one before continuing. + Du har ikke valgt et bakgrunnsbilde. Vennligst velg et før du fortsetter. + + + + Select Image + Velg bilde + + + + Theme Name Missing + Temanavn mangler + + + + There is no name for this theme. Please enter one. + Du har ikke angitt navn for temaet. Vennligst legg til navn. + + + + Theme Name Invalid + Ugyldig temanavn + + + + Invalid theme name. Please enter one. + Ugyldig temanavn. Velg et nytt. OpenLP.ThemesTab - + Global Theme - + Globalt tema - + Theme Level - + Temanivå - + S&ong Level - + S&angnivå - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + Bruker temaet fra hver sang i databasen. Hvis en sang ikke har et tema tilknyttet, brukes program tema. Hvis møteprogrammet ikke har et tema, brukes det globale tema. - + &Service Level - + &Programnivå - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + Bruker temaet fra møteprogrammet og ignorer individuelle sangtema. Dersom det ikke er satt opp spesielt tema for møtet bruk globalt tema. - + &Global Level - + &Globalt nivå - + Use the global theme, overriding any themes associated with either the service or the songs. - + Bruker globalt tema, og overstyrer eventuelle temaer tilknyttet enten møteprogrammet eller sangene. - + Themes - + Temaer OpenLP.Ui - + Error - - - - - About - + Feil - &Add - + About + Om - Advanced - + &Add + &Legg til - All Files - + Advanced + Avansert - Bottom - + All Files + Alle filer - Browse... - + Bottom + Bunn - Cancel - + Browse... + Bla... - CCLI number: - + Cancel + Avbryt + CCLI number: + CCLI nummer: + + + Create a new service. - + Lag ett nytt møteprogram. - + &Delete - + &Slett - + &Edit &Rediger - + Empty Field - + Tomt felt - + Export - + Eksportere - + pt Abbreviated font pointsize unit - - - - - Image - + pt - Import - + Image + Bilde - - Live - + + Import + Importere + Live + Fremvisning + + + Live Background Error - + Fremvisning bakgrunns feil - + Load - - - - - Middle - + Laste - New - + Middle + Midten - New Service - + New + Ny - New Theme - + New Service + Nytt møteprogram - - No File Selected - Singular - + + New Theme + Nytt tema - No Files Selected - Plural - + No File Selected + Singular + Ingen fil er valgt - No Item Selected - Singular - + No Files Selected + Plural + Inger filer er valgt - No Items Selected - Plural - + No Item Selected + Singular + Ingen post er valgt - openlp.org 1.x - + No Items Selected + Plural + Ingen poster er valgt + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Forhåndsvisning - + Replace Background - + Erstatt bakgrunn - + Reset Background - + Tilbakestill bakgrunn - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Lagre && Forhåndsvisning + + + Search - + Søk - + You must select an item to delete. - + Du må velge en post å slette. - + You must select an item to edit. - - - - - Save Service - + Du må velge en post å redigere. + Save Service + Lagre møteprogram + + + Service - + Møteprogram - + Start %s - - - - - Theme - Singular - + Start %s + Theme + Singular + Tema + + + Themes Plural - + Temaer - + Top - + Topp - + Version - + Versjon - + Delete the selected item. - + Slett valgte post. - + Move selection up one position. - + Flytt valgte ett steg opp. - + Move selection down one position. - + Flytt valgte ett steg ned. - + &Vertical Align: - - - - - Finished import. - + &Vertikal justering: - Format: - + Finished import. + Import fullført. - - Importing - + + Format: + Format: - Importing "%s"... - + Importing + Importerer + Importing "%s"... + Importerer "%s"... + + + Select Import Source Velg importeringskilde - + Select the import format and the location to import from. - + Velg importformat og plasseringen du vil importere fra. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Openlp.org 1.x import rutinen har blitt deaktivert på grunn av en manglende Python-modul. Hvis du ønsker å bruke denne import rutinen, må du installere "python-SQLite" modulen. - + Open %s File - - - - - %p% - + Åpne %s fil + %p% + %p% + + + Ready. - + Klar. - + Starting import... - + Starter å importere... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Du må angi minst én %s fil som du vil importere fra. Welcome to the Bible Import Wizard - + Velkommen til bibele importveiviseren - + Welcome to the Song Export Wizard - + Velkommen til sang eksportveiviseren - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Velkommen til sang importveiviseren - Authors - Plural - + Author + Singular + Forfatter - - © - Copyright symbol. - + + Authors + Plural + Forfattere - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - + Song Book + Singular + Sangbok - - Song Maintenance - + + Song Books + Plural + Sangbøker + Song Maintenance + Vedlikehold av sanger + + + Topic Singular Emne - + Topics Plural - - - - - Continuous - + Emner - Default - + Continuous + Kontinuerlig - - Display style: - + + Default + Standard + Display style: + Visning-stil: + + + Duplicate Error - + Duplikat feil - + File - - - - - Help - + Fil + Help + Hjelp + + + h The abbreviated unit for hours - + h - + Layout style: - + Layout stil: - + Live Toolbar - + Fremvisning - verktøylinje - + m The abbreviated unit for minutes - + m - + OpenLP is already running. Do you wish to continue? - + OpenLP kjører allerede. Vil du fortsette? - + Settings - + Innstillinger - + Tools - - - - - Unsupported File - + Verktøy - Verse Per Slide - + Unsupported File + Denne filen støttes ikke + Verse Per Slide + Vers pr side + + + Verse Per Line - - - - - View - - - - - Title and/or verses not found - - - - - XML syntax error - + Vers pr linje + View + Vis + + + + Title and/or verses not found + Tittel og/eller vers ikke funnet + + + + XML syntax error + XML syntaksfeil + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + Visningsmodus - Play Slides in Loop - + Open service. + Åpne møteprogram. + + + + Print Service + Skriv ut møteprogram + + + + Replace live background. + Erstatt fremvisningbakgrunn. + + + + Reset live background. + Tilbakestill fremvisningbakgrunn. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Splitte en side i to bare hvis det ikke passer på skjermen som en side. + + + + Welcome to the Bible Upgrade Wizard + Velkommen til denne bibel oppgradering veiviseren + + + + Confirm Delete + Bekreft slett + Play Slides in Loop + Kontinuerlig visning av sider + + + Play Slides to End - + Vis sider til "siste side" - + Stop Play Slides in Loop - + Stopp kontinuerlig visning - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + Stopp visning av sider "til siste side" + Next Track + Neste spor + + + + Search Themes... + Search bar place holder text + Søk tema... + + + + Optional &Split + Valgfri &deling av side + + + + Invalid Folder Selected + Singular + Ugyldig mappe valgt + + + + Invalid File Selected + Singular + Ugyldig fil valgt + + + + Invalid Files Selected + Plural + Ugyldige filer valgt + + + No Folder Selected Singular - + Ingen mappe valgt - + Open %s Folder - + Åpne %s mappe - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Du må angi en %s fil du vil importere fra. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Du må angi en %s mappe du vil importere fra. + + + + Importing Songs + Importerer sanger OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 og %2 - + %1, and %2 Locale list separator: end - + %1 og %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Programtillegget for presentasjoner</strong><br/>Programtillegget gir mulighet til å vise presentasjoner ved hjelp av en rekke ulike programmer. Valget av tilgjengelige presentasjonsprogrammer er tilgjengelig for brukeren i en nedtrekksboks. - + Presentation name singular - + Presentasjon - + Presentations name plural - + Presentasjoner - + Presentations container title - + Presentasjoner - + Load a new presentation. - + Last en ny presentasjon. - + Delete the selected presentation. - + Slett den valgte presentasjonen. - + Preview the selected presentation. - + Forhåndsvis den valgte presentasjonen. - + Send the selected presentation live. - + Fremvis valgte presentasjon. - + Add the selected presentation to the service. - + Legg valgte presentasjon til møteprogrammet. PresentationPlugin.MediaItem - + Select Presentation(s) - + Velg presentasjon(er) - + Automatic - + Automatisk - + Present using: - + Presenter ved hjelp av: - + File Exists - + Filen eksisterer allerede - + A presentation with that filename already exists. - + En presentasjon med dette filnavnet eksisterer allerede. - + This type of presentation is not supported. - + Denne type presentasjoner er ikke støttet. - + Presentations (%s) - + Presentasjoner (%s) - + Missing Presentation - + Presentasjonen mangler - + The presentation %s is incomplete, please reload. - + Presentasjonen %s er ufullstendig, vennligst oppdater. - + The presentation %s no longer exists. - + Presentasjonen %s eksisterer ikke lenger. PresentationPlugin.PresentationTab - + Available Controllers - + Tilgjengelige presentasjonsprogram - + %s (unavailable) - + %s (utilgjengelig) - + Allow presentation application to be overridden - + Tillat presentasjons-programmet å bli overstyrt RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Fjernstyrings programtillegget</strong><br/> Dette fjernstyrings tillegget gir mulighet til å sende meldinger til en kjørende versjon av OpenLP på en annen datamaskin via en nettleser eller via en fjernkontroll-app. - Remotes - name plural - + Remote + name singular + Fjernstyring - + + Remotes + name plural + Fjernstyringer + + + Remote container title - + Fjernstyring RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 fjernstyring + + + OpenLP 2.0 Stage View - + OpenLP 2.0 senevisning - + Service Manager - + Møteprogram - + Slide Controller - - - - - Alerts - + Fremvisnings kontroll - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Varslmeldinger - Home - + Search + Søk + + + + Refresh + Oppdater - Theme - + Blank + Slukk + + + + Show + Vis + + + + Prev + Forrige + + + + Next + Neste + + + + Text + Tekst + + + + Show Alert + Vis varselmelding + + + + Go Live + Send til fremvisning + + + + No Results + Ingen resultat + + + + Options + Alternativer + + + + Add to Service + Legg til i møteprogram + + + + Home + Hjem - Desktop - + Theme + Tema - + + Desktop + Srivebord + + + Add &amp; Go to Service - + Legg til &amp; gå til møteprogram + + + + Service + Møteprogram + + + + Slides + Bilder RemotePlugin.RemoteTab - + Serve on IP address: - + Bruk IP-adresse: - + Port number: - + Portnummer: - + Server Settings - + Serverinstillinger - + Remote URL: - + Fjernstyring URL: - + Stage view URL: - + Sene-visning URL: - + Display stage time in 12h format - + Vis sene-tiden i 12-timersformat - + Android App - + Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Skanne QR-koden eller klikk <a href="https://play.google.com/store/apps/details?id=org.openlp.android"> download</a> for å installere Android app fra Google Play. SongUsagePlugin - + &Song Usage Tracking - + &Logging av sangbruk - + &Delete Tracking Data - + &Slett loggdata - + Delete song usage data up to a specified date. - + Slett loggdata til en gitt dato. - + &Extract Tracking Data - + &Ta utdrag av loggdata - + Generate a report on song usage. - + Generere en rapport om sang bruken. - + Toggle Tracking - + Slå på logging - + Toggle the tracking of song usage. - + Slår logging av sanger av/på. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Sagbruk modulen</strong><br/>Dette programtillegget logger bruken av sangene på møtene. - + SongUsage name singular - + Sangbruk - + SongUsage name plural - + Sangbruk - + SongUsage container title - + Sangbruk - + Song Usage - + Sangbruk - + Song usage tracking is active. - + Sang loggingen er aktiv. - + Song usage tracking is inactive. - + Sang loggingen er ikke aktiv. - + display - + vise - + printed - + utskrevet SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Slette sangbruksdata - + Delete Selected Song Usage Events? - + Slette valgte hendelser i loggen? - + Are you sure you want to delete selected Song Usage data? - + Er du sikker at du ønsker å slette valgte data? - + Deletion Successful - + Sletting vellykket - + All requested data has been deleted successfully. - + Sletting av alle valgte data var vellykket. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Velg en dato som sangbruks-data skal slettes fram til. Alle data som er registrert før denne datoen vil bli permanent slettet. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Hente ut sangbruksdata - + Select Date Range Velg dato-område - + to - + til - + Report Location - + Målmappe - + Output File Location - + Ut-fil plasering - + usage_detail_%s_%s.txt - + bruks_ditaljer_%s_%s.txt - + Report Creation - + Rapport opprettet - + Report %s has been successfully created. - + Rapport +%s +er opprettet uten problem. - + Output Path Not Selected - + Målmappe er ikke valgt - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Du må velge en gyldig mål-mappe for sangbrukrapporten. Velg en eksisterende sti på harddisken. SongsPlugin - + &Song &Sang - + Import songs using the import wizard. - + Importere sanger med importveiviseren. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Sang programtillegg</strong><br/> Dette tillegget gir mulighet til å vise og administrere sanger. - + &Re-index Songs - + &Oppdatere sangindeksen - + Re-index the songs database to improve searching and ordering. - + Omorganisere sangdatabasen for å oppnå bedre inndeling og søking. - + Reindexing songs... - - - - - Arabic (CP-1256) - + Indekserer sanger på nytt ... - Baltic (CP-1257) - + Arabic (CP-1256) + Arabisk (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Baltisk (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Sentraleuropeisk (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Kyrillisk (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Gresk (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Hebraisk (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Japansk (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Koreansk (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Forenklet kinesisk (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thai (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Tradisjonell kinesisk (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Tyrkisk (CP-1254) + Vietnam (CP-1258) + Vietnamesisk (CP-1258) + + + Western European (CP-1252) - + Vesteuropeisk (CP-1252) - + Character Encoding - + Tegnkoding - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Tegntabell-innstillingen er avgjørende for riktige tegn. +Vanligvis fungerer forehåndsvalgt innstilling. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Velg tegntabell-innstilling. +Innstillingen er avgjørende for riktige tegn. - + Song name singular - + Sang - + Songs name plural - + Sanger - + Songs container title - + Sanger - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + Eksporter sanger ved hjelp av eksport-veiviseren. - Preview the selected song. - + Add a new song. + Legg til en ny sang. - Send the selected song live. - + Edit the selected song. + Rediger valgte sang. + Delete the selected song. + Slett valgte sang. + + + + Preview the selected song. + Forhåndsvis valgte sang. + + + + Send the selected song live. + Send valgte sang til fremvisning. + + + Add the selected song to the service. - + Legg valgte sang til møteprogrammet. + + + + Reindexing songs + Indekserer sanger på nytt SongsPlugin.AuthorsForm - + Author Maintenance Behandle forfatterdata - + Display name: - + Vis navn: - + First name: - + Fornavn: - + Last name: - + Etternavn: - + You need to type in the first name of the author. - + Du må skrive inn forfatterens fornavn. - + You need to type in the last name of the author. - + Du må oppgi forfatterens etternavn. - + You have not set a display name for the author, combine the first and last names? - + Du har ikke satt et visningsnavn til forfatteren, kombiner for- og etternavn. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Filen mangler en gyldig fil-ending. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Administreres av %s - + [above are Song Tags with notes imported from EasyWorship] - + +[ovenfor er sang-tillegg med notater importert fra +EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Metadata - + Custom Book Names - + Tilpassa boknavn SongsPlugin.EditSongForm - + Song Editor Sangredigeringsverktøy - + &Title: - + &Tittel: - + Alt&ernate title: - + &Alternativ tittel: - + &Lyrics: - + &Sangtekst: - + &Verse order: - + &Versrekkefølge: - + Ed&it All - + Red&iger alle - + Title && Lyrics - + Tittel && sangtekst - + &Add to Song - + &Tilføye sangen - + &Remove - + &Fjerne - + &Manage Authors, Topics, Song Books - + &Behandle forfattere, emner og sangbøker - + A&dd to Song - + Til&føye sangen - + R&emove - + F&jerne - + Book: - + Bok: - + Number: - + Nummer: - + Authors, Topics && Song Book - + Forfattere, emner && sangbøker - + New &Theme - + Nytt &tema - + Copyright Information - + Copyright-informasjon - + Comments - + Kommentarer - + Theme, Copyright Info && Comments - + Tema, copyright info && kommentarer - + Add Author - + Legg til forfatter - + This author does not exist, do you want to add them? - + Denne forfatteren eksisterer ikke, skal han opprettes? - + This author is already in the list. - + Denne forfatteren er allerede på listen. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Du har ikke valgt et gyldig forfatternavn. Enten velg en forfatter fra listen eller skriv inn en ny forfatter og klikk "Tilføye sangen forfatter" -knappen for å legge til en ny forfatter. - + Add Topic - + Legg til emne- - + This topic does not exist, do you want to add it? - + Dette emnet eksisterer ikke, skal det opprettes? - + This topic is already in the list. - + Dette emnet eksisterer allerede i listen. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Du har ikke valgt et gyldig emne. Enten velger du et emne fra listen, eller skriv inn et nytt emne og klikk på "Tilføye sangen emne"-knappen for å legge til det nye emnet. - + You need to type in a song title. - + Du må oppgi sangtittel. - + You need to type in at least one verse. - + Du må skrive inn minst ett vers. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Versrekkefølgen er ugyldig. Det er ingen vers tilsvarende %s. Gyldige verdier er %s. - + Add Book - + Legg til bok - + This song book does not exist, do you want to add it? - + Denne sangboken eksisterer ikke, vil du opprette den? - + You need to have an author for this song. - + Du må angi en forfatter til denne sangen. - - You need to type some text in to the verse. - - - - + Linked Audio - + Tilkoblet lydfil - + Add &File(s) - + Legg til &fil(er) - + Add &Media - + &Legg til media - + Remove &All - + Fjern &alle - + Open File(s) - + Åpne fil(er) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Advarsel:</strong> Ikke alle versene er i bruk. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Versrekkefølgen er ugyldig. Det er ingen vers tilsvarende %s. Gyldige verdier er %s. SongsPlugin.EditVerseForm - + Edit Verse - + Rediger vers - + &Verse type: - + &Verstype: - + &Insert - + Set &inn - + Split a slide into two by inserting a verse splitter. - + Splitte siden i to ved å sette et vers splitter. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Sang eksport veiviser - + Select Songs - + Velg sanger - + Check the songs you want to export. - + Merk sangene du vil eksportere. - + Uncheck All - + Fjern all merking - + Check All - + Merk alle - + Select Directory - + Velg katalog - + Directory: - + Katalog: - + Exporting - + Eksporterer - + Please wait while your songs are exported. - + Vennligst vent mens sangene blir eksportert. - + You need to add at least one Song to export. - + Du må legge til minst én sang som skal eksporteres. - + No Save Location specified - + Lagringsområdet er ikke angitt - + Starting export... - + Starter eksporten... - + You need to specify a directory. - + Du må angi en katalog. - + Select Destination Folder - + Velg målmappe - + Select the directory where you want the songs to be saved. - + Velg katalogen hvor du vil sangene skal lagres. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Denne veiviseren vil bidra til å eksportere sangene til det åpne og gratis <strong>OpenLyrics</strong> sangfremviser-formatet. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Velg dokument/presentasjons filer - + Song Import Wizard - + Sangimport veiviser - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Denne veiviseren vil hjelpe deg å importere sanger fra en rekke formater. For å starte importen klikk på "Neste-knappen" og så velg format og sted å importere fra. - + Generic Document/Presentation - + Generic Document/Presentation - + Add Files... - + Legg til filer... - + Remove File(s) - + Fjern filer(er) - + Please wait while your songs are imported. - + Vennligst vent mens sangene importeres. - + OpenLP 2.0 Databases - + OpenLP 2,0 databaser - + openlp.org v1.x Databases - + openlp.org v1.x databaser - + Words Of Worship Song Files - + Words Of Worship sangfiler - + Songs Of Fellowship Song Files - + Songs Of Fellowship sanfiler - + SongBeamer Files - + SongBeamer filer - + SongShow Plus Song Files - + SongShow Plus sangfiler - + Foilpresenter Song Files - + Foilpresenter sangfiler - + Copy - + Kopier - + Save to File - + Lagre til fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + The Songs of Fellowship importøren har blitt deaktivert fordi OpenLP ikke får tilgang til OpenOffice eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Den generisk dokument/presentasjon importøren har blitt deaktivert fordi OpenLP ikke får tilgang til OpenOffice eller LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics eller OpenLP 2,0 Eksporterte sanger - + OpenLyrics Files - + OpenLyrics filer - + CCLI SongSelect Files - + CCLI SongSelect-filer - + EasySlides XML File - + EasySlides XML-fil - + EasyWorship Song Database - + EasyWorship sangdatabase - + DreamBeam Song Files - + DreamBeam Sangfiler - + You need to specify a valid PowerSong 1.0 database folder. - + Du må angi en gyldig PowerSong 1,0 database mappe. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + Først må du konvertere ZionWorx databasen til en CSV tekstfil, som forklart i <a href="http://manual.openlp.org/songs.html#importing-from-zionworx"> Brukerveiledning</a>. - + SundayPlus Song Files - + SundayPlus sangfiler - + This importer has been disabled. - + Denne importfunksjonen er deaktivert. - + MediaShout Database - + MediaShout database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Importfunksjonen for MediaShout støttes bare i Windows. Den har blitt deaktivert på grunn av en manglende Python-modul. Hvis du ønsker å bruke denne importøren, må du installere "pyodbc" modulen. - + SongPro Text Files - + SongPro tekstfiler - + SongPro (Export File) - + SongPro (eksportfiler File) - + In SongPro, export your songs using the File -> Export menu - + I SongPro, eksporter du sangene ved hjelp av File -> Export menyen SongsPlugin.MediaFilesForm - + Select Media File(s) - + Velg mediafilel(er) - + Select one or more audio files from the list below, and click OK to import them into this song. - + Velg en eller flere lydfiler fra listen nedenfor, og klikk OK for å importere dem inn i denne sangen. SongsPlugin.MediaItem - + Titles Titler - + Lyrics - + Sangtekster - + CCLI License: - + CCLI Lisens: - + Entire Song - + Hele sangen - + Are you sure you want to delete the %n selected song(s)? - + + Er du sikker på at du vil slette den valgte sangen? + Er du sikker på at du vil slette de %n valgte sangene? + - + Maintain the lists of authors, topics and books. - + Vedlikeholde lister over forfattere, emner og bøker. - + copy For song cloning - + kopi - + Search Titles... - + Søk tittler... - + Search Entire Song... - + Søk i hele sanginnholdet... - + Search Lyrics... - + Søk i sangtekster... - + Search Authors... - + Søk forfattere... - + Search Song Books... - + Søk sangbøker... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Kan ikke åpne MediaShout databasen. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Ikke en gyldig openlp.org 1.x sang database. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Ikke en gyldig OpenLP 2,0 sang database. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Eksporterer "%s"... SongsPlugin.PowerSongImport - + No songs to import. - + Ingen sanger å importere. - + Verses not found. Missing "PART" header. - + Versene ikke funnet. Mangler "PART" overskrift. + + + + No %s files found. + Ingen %s fler funnet. + + + + Invalid %s file. Unexpected byte value. + Ugyldig %s fil. Uventet byte verdi. + + + + Invalid %s file. Missing "TITLE" header. + Ugyldig %s fil. Mangler "TITLE" overskrift. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Ugyldig %s fil. Manglende "COPYRIGHTLINE" overskrift. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Vedlikehold av sangbøker - &Publisher: - + &Name: + &Navn: - + + &Publisher: + &Forlegger: + + + You need to type in a name for the book. - + Du må skrive inn et navn på boken. SongsPlugin.SongExportForm - + Your song export failed. - + Sangeksporten mislyktes. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Ferdig eksport. For å importere disse filene bruk en "importør" som takler <strong>OpenLyrics</strong> formatet. SongsPlugin.SongImport - + copyright - + copyright - + The following songs could not be imported: - + Følgende sanger kunne ikke importeres: - + Cannot access OpenOffice or LibreOffice - + Får ikke tilgang til OpenOffice eller LibreOffice - + Unable to open file - + Umulig å åpne fil - + File not found - + Fil ikke funnet SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Kunne ikke legge til forfatteren. - + This author already exists. - + Denne forfatteren finnes allerede. - + Could not add your topic. - + Kunne ikke legge til emnet. - + This topic already exists. - + Dette emnet finnes allerede. - + Could not add your book. - + Kunne ikke legge til boken. - + This book already exists. - + Denne boken finnes allerede. - + Could not save your changes. - + Kunne ikke lagre endringene. - + Could not save your modified author, because the author already exists. - + Kunne ikke lagre den endrede forfatteren fordi forfatteren finnes allerede. - + Could not save your modified topic, because it already exists. - + Kunne ikke lagre det endrede emnet, fordi det finnes allerede. - + Delete Author - + Slett forfatter - + Are you sure you want to delete the selected author? Er du sikker på at du vil slette den valgte forfatteren? - + This author cannot be deleted, they are currently assigned to at least one song. - + Denne forfatteren kan ikke slettes. Han er for øyeblikket tilknyttet minst én sang. - + Delete Topic - + Slett emne - + Are you sure you want to delete the selected topic? - + Er du sikker på at du vil slette valgte emne? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Dette emnet kan ikke slettes. Det er for øyeblikket tilknyttet minst én sang. - + Delete Book - + Slette bok - + Are you sure you want to delete the selected book? - + Er du sikker på at du vil slette valgte bok? - + This book cannot be deleted, it is currently assigned to at least one song. - + Denne boken kan ikke slettes. Den er for øyeblikket tilknyttet minst én sang. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Forfatteren %s finnes allerede. Vil du lage sanger med forfatter %s bruk den eksisterende forfatter %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Emnet %s finnes allerede. Vil du lage sanger med emne %s bruk det eksisterende emne %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Boken %s finnes allerede. Vil du lage sanger med bok %s bruk den eksisterende bok %s? SongsPlugin.SongsTab - + Songs Mode - + Sangmodus - + Enable search as you type - + Aktiver søk mens du skriver - + Display verses on live tool bar - + Vis versene på fremvis - verktøylinje - + Update service from song edit - + Oppgrader sanger også i møteprogram - + Import missing songs from service files - + Importer manglende sanger fra møteprogram filene SongsPlugin.TopicsForm - + Topic Maintenance - + Vedlikehold av emner - + Topic name: - + Emne navn: - + You need to type in a topic name. - + Vennligst skriv inn et emnenavn. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Vers - Bridge - + Chorus + Refreng - Pre-Chorus - + Bridge + Stikk - Intro - + Pre-Chorus + Bro - Ending - + Intro + Intro + Ending + Avsluttning + + + Other Annet @@ -7222,14 +7478,29 @@ The encoding is responsible for the correct character representation. SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Feil ved lesing av CSV-fil. - + File not valid ZionWorx CSV format. - + Filen er ikke i gyldig ZionWorx CSV-format. + + + + Line %d: %s + Linje %d: %s + + + + Decoding error: %s + Dekoding-feil: %s + + + + Record %d + Post %d - \ No newline at end of file + diff --git a/resources/i18n/nl.ts b/resources/i18n/nl.ts index a46e2b4cd..cd77a4f8c 100644 --- a/resources/i18n/nl.ts +++ b/resources/i18n/nl.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert W&aarschuwing - + Show an alert message. Toon waarschuwingsberichten. - + Alert name singular Waarschuwing - + Alerts name plural Waarschuwingen - + Alerts container title Waarschuwingen - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Waarschuwings Plug-in</strong><br />De waarschuwings plug-in regelt de weergave van waarschuwingen op het scherm. Bijvoorbeeld voor de kinderopvang. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Waarschuwing - + Alert &text: Waarschuwings&text: - + &New &Nieuw - + &Save Op&slaan - + Displ&ay Wee&rgeven - + Display && Cl&ose &Weergeven en sluiten - + New Alert Nieuwe waarschuwing - + You haven't specified any text for your alert. Please type in some text before clicking New. De waarschuwing bevat geen tekst. Voer eerst tekst in voordat u op nieuw klikt. - + &Parameter: &Parameter: - + No Parameter Found Geen parameters gevonden - + You have not entered a parameter to be replaced. Do you want to continue anyway? U heeft geen parameter opgegeven die vervangen moeten worden Toch doorgaan? - + No Placeholder Found Niet gevonden - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? De waarschuwing bevat geen '<>'. Toch doorgaan? @@ -118,32 +119,32 @@ Toch doorgaan? AlertsPlugin.AlertsTab - + Font Lettertype - + Font name: Naam lettertype: - + Font color: Letterkleur: - + Background color: Achtergrondkleur: - + Font size: Corpsgrootte: - + Alert timeout: Tijdsduur: @@ -151,510 +152,510 @@ Toch doorgaan? BiblesPlugin - + &Bible &Bijbel - + Bible name singular Bijbel - + Bibles name plural Bijbels - + Bibles container title Bijbels - + No Book Found Geen bijbelboek gevonden - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Er kon geen bijbelboek met die naam gevonden worden. Controleer de spelling. - + Import a Bible. Importeer een bijbel. - + Add a new Bible. Voeg een nieuwe bijbel toe. - + Edit the selected Bible. Geselecteerde bijbel bewerken. - + Delete the selected Bible. Geselecteerde bijbel verwijderen. - + Preview the selected Bible. Voorbeeld geselecteerde bijbeltekst. - + Send the selected Bible live. Geselecteerde bijbeltekst live tonen. - + Add the selected Bible to the service. Geselecteerde bijbeltekst aan de liturgie toevoegen. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bijbel Plugin</strong><br />De Bijbel plugin voorziet in de mogelijkheid bijbelteksten uit verschillende bronnen weer te geven tijdens de dienst. - + &Upgrade older Bibles &Upgrade oude bijbels - + Upgrade the Bible databases to the latest format. Upgrade de bijbel databases naar de meest recente indeling. - + Genesis Genesis - + Exodus Exodus - + Leviticus Leviticus - + Numbers Numeri - + Deuteronomy Deuteronomium - + Joshua Jozua - + Judges Rechteren - + Ruth Ruth - + 1 Samuel 1 Samuël - + 2 Samuel 2 Samuël - + 1 Kings 1 Koningen - + 2 Kings 2 Koningen - + 1 Chronicles 1 Kronieken - + 2 Chronicles 2 Kronieken - + Ezra Ezra - + Nehemiah Nehemiah - + Esther Esther - + Job Job - + Psalms Psalmen - + Proverbs Spreuken - + Ecclesiastes Prediker - + Song of Solomon Hooglied - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klaagliederen - + Ezekiel Ezechiël - + Daniel Daniël - + Hosea Hosea - + Joel Joël - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Micha - + Nahum Nahum - + Habakkuk Habakuk - + Zephaniah Sefanja - + Haggai Haggai - + Zechariah Zacharias - + Malachi Maleachi - + Matthew Matteüs - + Mark Marcus - + Luke Lucas - + John Johannes - + Acts Handelingen - + Romans Romeinen - + 1 Corinthians 1 Korintiërs - + 2 Corinthians 2 Korintiërs - + Galatians Galaten - + Ephesians Efeziërs - + Philippians Filippenzen - + Colossians Kolossenzen - + 1 Thessalonians 1 Tessalonicenzen - + 2 Thessalonians 2Tessalonicenzen - + 1 Timothy 1 Timoteüs - + 2 Timothy 2 Timoteüs - + Titus Titus - + Philemon Filemon - + Hebrews Hebreeën - + James Jakobus - + 1 Peter 1 Petrus - + 2 Peter 2 Petrus - + 1 John 1 Johannes - + 2 John 2 Johannes - + 3 John 3 Johannes - + Jude Judas - + Revelation Openbaringen - + Judith Judith - + Wisdom Wijsheid - + Tobit Tobit - + Sirach Sirach - + Baruch Baruch - + 1 Maccabees 1 Makkabeeën - + 2 Maccabees 2 Makkabeeën - + 3 Maccabees 3 Makkabeeën - + 4 Maccabees 4 Makkabeeën - + Rest of Daniel Toevoegingen aan Daniël - + Rest of Esther Ester (Grieks) - + Prayer of Manasses Manasse - + Letter of Jeremiah Brief van Jeremia - + Prayer of Azariah Gebed van Azariah - + Susanna Susanna - + Bel Bel - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|vers|verzen;;-|tot;;,|en;;eind @@ -663,32 +664,32 @@ Toch doorgaan? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. U moet een naam opgeven voor deze versie van uw bijbel. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. U moet opgeven welke copyrights gelden voor deze bijbelvertaling. Bijbel in het publieke domein moeten als zodanig gemarkeerd worden. - + Bible Exists Bijbel bestaat - + This Bible already exists. Please import a different Bible or first delete the existing one. Deze bijbelvertaling bestaat reeds. Importeer een andere vertaling of verwijder eerst de bestaande versie. - + You need to specify a book name for "%s". U moet een naam opgeven voor het bijbelboek "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Nummers mogen alleen aan het begin gebruikt worden en moeten gevolgd worden door een of meerdere niet-nummer lettertekens. - + Duplicate Book Name Dupliceer naam bijbelboek - + The Book Name "%s" has been entered more than once. De naam van het bijbelboek "%s" is meer dan een keer opgegeven. @@ -710,39 +711,39 @@ gevolgd worden door een of meerdere niet-nummer lettertekens. BiblesPlugin.BibleManager - + Scripture Reference Error Fouten in schriftverwijzingen - + Web Bible cannot be used Online bijbels kunnen niet worden gebruikt - + Text Search is not available with Web Bibles. In online bijbels kunt u niet zoeken op tekst. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Geen zoekterm opgegeven. Woorden met een spatie ertussen betekent zoeken naar alle woorden, Woorden met een komma ertussen betekent zoeken naar de afzonderlijke woorden. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Er zijn geen bijbels geïnstalleerd. Gebruik de Import assistent om een of meerdere bijbels te installeren. - + No Bibles Available Geen bijbels beschikbaar - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Boek Hoofdstuk%(verse)sVers%(range)sHoofdstuk%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Bijbeltekst weergave - + Only show new chapter numbers Toon alleen nieuw hoodstuknummer - + Bible theme: Bijbel thema: - + No Brackets geen haakjes - + ( And ) ( en ) - + { And } { en } - + [ And ] [ en ] - + Note: Changes do not affect verses already in the service. Nota Bene: Deze wijzigingen hebben geen betrekking op bijbelverzen die al in de liturgie zijn opgenomen. - + Display second Bible verses Toon tweede bijbelvertaling - + Custom Scripture References Aangepaste schriftverwijzingen - + Verse Separator: Vers scheidingsteken: - + Range Separator: Bereik scheidingsteken: - + List Separator: Lijst scheidingsteken: - + End Mark: End teken: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ Ze moeten gescheiden worden door een verticale streep "|". Maak de regel leeg om de standaardinstelling te gebruiken. - + English Engels - + Default Bible Language Standaardtaal bijbelvertaling - + Book name language in search field, search results and on display: Taal van de namen van bijbelboeken in zoekvelden, zoekresultaten en in weergave: - + Bible Language Taal bijbelvertaling - + Application Language Taal van het programma @@ -903,42 +904,42 @@ zoekresultaten en in weergave: BiblesPlugin.BookNameDialog - + Select Book Name Selecteer naam bijbelboek - + Current name: Huidige naam: - + Corresponding name: Overeenkomstige naam: - + Show Books From Toon boeken uit - + Old Testament Oude Testament - + New Testament Nieuwe Testament - + Apocrypha Apocriefe boeken - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Voor de volgende namen van bijbelboeken is geen passend alternatief. Selecteer het juiste bijbelboek uit de lijst. @@ -946,7 +947,7 @@ zoekresultaten en in weergave: BiblesPlugin.BookNameForm - + You need to select a book. Geef een boek op. @@ -954,18 +955,18 @@ zoekresultaten en in weergave: BiblesPlugin.CSVBible - + Importing books... %s Importeren bijbelboeken... %s - + Importing verses from %s... Importing verses from <book name>... Importeren bijbelverzen uit %s... - + Importing verses... done. Importeren bijbelverzen... klaar. @@ -973,69 +974,69 @@ zoekresultaten en in weergave: BiblesPlugin.EditBibleForm - + Bible Editor Bijbel bewerker - + License Details Licentie details - + Version name: Versie naam: - + Copyright: Copyright: - + Permissions: Rechten: - + Default Bible Language Standaardtaal bijbelboeken - + Book name language in search field, search results and on display: Taal van de namen van bijbelboeken in zoekvelden, zoekresultaten en in weergave: - + Global Settings Globale instellingen - + Bible Language Bijbeltaal - + Application Language Programmataal - + English ENgels - + This is a Web Download Bible. It is not possible to customize the Book Names. Deze bijbelvertaling is van het web gedownload. De namen van bijbelboeken kan niet aangepast worden. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Om aangepaste namen voor bijbelboeken te gebruiken, moet "Bijbeltaal" geselecteerd zijn op het tabblad Meta Data of, als "Globale instellingen" is geselecteerd, op de Bijbel pagina in configuratie OpenLP. @@ -1043,38 +1044,38 @@ De namen van bijbelboeken kan niet aangepast worden. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registreer Bijbel en laad de boeken... - + Registering Language... Registreer de taal... - + Importing %s... Importing <book name>... Importeer "%s"... - + Download Error Download fout - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Er ging iets mis bij het downloaden van de bijbelverzen. Controleer uw internet verbinding (open bijv. een pagina in de internetbrowser). Als dit probleem zich blijft herhalen is er misschien sprake van een bug. - + Parse Error Verwerkingsfout - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Er ging iets mis bij het uitpakken van de bijbelverzen. Als dit probleem zich blijft herhalen is er misschien sprake van een bug. @@ -1252,17 +1253,17 @@ indien nodig en een internetverbinding is dus noodzakelijk. BiblesPlugin.LanguageDialog - + Select Language Selecteer taal - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kan niet bepalen in welke taal deze Bijbel is geschreven. Selecteer een taal uit de onderstaande lijst. - + Language: Taal: @@ -1270,7 +1271,7 @@ indien nodig en een internetverbinding is dus noodzakelijk. BiblesPlugin.LanguageForm - + You need to choose a language. Geef een taal op. @@ -1278,92 +1279,92 @@ indien nodig en een internetverbinding is dus noodzakelijk. BiblesPlugin.MediaItem - + Quick Snelzoeken - + Find: Vind: - + Book: Boek: - + Chapter: Hoofdstuk: - + Verse: Vers: - + From: Van: - + To: Tot: - + Text Search Zoek op tekst - + Second: Tweede: - + Scripture Reference Schriftverwijzing - + Toggle to keep or clear the previous results. Zoekresultaten wel / niet behouden. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Enkele en dubbele bijbelvers zoekresultaten kunnen niet gecombineerd worden. Resultaten wissen en opnieuw beginnen? - + Bible not fully loaded. Bijbel niet geheel geladen. - + Information Informatie - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. De tweede bijbelvertaling bevat niet alle verzen die in de eerste bijbelvertaling staan. Alleen de verzen die in beide vertalingen voorkomen worden getoond. %d verzen zijn niet opgenomen in de resultaten. - + Search Scripture Reference... Doorzoek schriftverwijzing - + Search Text... Doorzoek tekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1376,7 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Incorrect bijbelbestand. OpenSong bijbels mogen gecomprimeerd zijn. Decomprimeren voordat u ze importeert. @@ -1383,7 +1384,7 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... %s %s wordt geïmporteerd... @@ -1392,12 +1393,12 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Tekstcodering detecteren (dat kan even duren)... - + Importing %s %s... Importing <book name> <chapter>... %s %s wordt geïmporteerd... @@ -1406,149 +1407,149 @@ Opnieuw importeren om alsnog te gebruiken. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Selecteer Backup map - + Bible Upgrade Wizard Bijbel Upgrade Assistent - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Deze Assistent helpt u bestaande bijbels op te waarderen van een eerdere indeling van OpenLP 2. Om de Assistent te starten klikt op volgende. - + Select Backup Directory Selecteer Backup map - + Please select a backup directory for your Bibles Selecteer een map om de backup van uw bijbel in op te slaan - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Eerdere versies van OpenLP 2.0 kunnen de nieuwe bijbelbestanden niet lezen. De assistent maakt een backup van uw huidige bestanden zodat u eenvoudig de bijbels terug kunt zetten in de OpenLP data-map voor het geval u met een oude versie van OpenLP moet werken. Instructies hoe de oorspronkelijke bestanden te herstellen staan in de <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>(engelstalig). - + Please select a backup location for your Bibles. Selecteer een map om de backup van uw bijbel in op te slaan. - + Backup Directory: Backup map: - + There is no need to backup my Bibles Er hoeft geen Backup gemaakt te worden - + Select Bibles Selecteer bijbels - + Please select the Bibles to upgrade Selecteer de bijbels om op te waarderen - + Upgrading Opwaarderen - + Please wait while your Bibles are upgraded. Even geduld. De bijbels worden opgewaardeerd. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. De backup is mislukt. Om bijbels op te waarderen moet de map beschrijfbaar zijn.. - + Upgrading Bible %s of %s: "%s" Failed Opwaarderen Bijbel %s van %s: "%s" Faal - + Upgrading Bible %s of %s: "%s" Upgrading ... Opwaarderen Bijbel %s van %s: "%s" Opwaarderen ... - + Download Error Download fout - + To upgrade your Web Bibles an Internet connection is required. Om online bijbels op te waarderen is een internet verbinding noodzakelijk. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Opwaarderen Bijbel %s van %s: "%s" Opwaarderen %s ... - + Upgrading Bible %s of %s: "%s" Complete Opwaarderen Bijbel %s van %s: "%s" Klaar - + , %s failed , %s mislukt - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Opwaarderen Bijbel(s): %s gelukt%s Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding is dus noodzakelijk. - + Upgrading Bible(s): %s successful%s Opwaarderen Bijbel(s): %s gelukt%s - + Upgrade failed. Opwaarderen mislukt. - + You need to specify a backup directory for your Bibles. Selecteer een map om de backup van uw bijbels in op te slaan. - + Starting upgrade... Start upgrade... - + There are no Bibles that need to be upgraded. Er zijn geen bijbels om op te waarderen. @@ -1556,65 +1557,65 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Custom plugin</strong><br />De custom plugin voorziet in mogelijkheden aangepaste tekst weer te geven op dezelfde manier als liederen. Deze plugin voorziet in meer mogelijkheden dan de Lied plugin. - + Custom Slide name singular Aangepaste dia - + Custom Slides name plural Aangepaste dia’s - + Custom Slides container title Aangepaste dia’s - + Load a new custom slide. Aangepaste dia laden. - + Import a custom slide. Aangepaste dia importeren. - + Add a new custom slide. Aangepaste dia toevoegen. - + Edit the selected custom slide. Geselecteerde dia bewerken. - + Delete the selected custom slide. Geselecteerde aangepaste dia verwijderen. - + Preview the selected custom slide. Bekijk voorbeeld aangepaste dia. - + Send the selected custom slide live. Bekijk aangepaste dia live. - + Add the selected custom slide to the service. Aangepaste dia aan liturgie toevoegen. @@ -1622,12 +1623,12 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.CustomTab - + Custom Display Aangepaste weergave - + Display footer Voettekst weergeven @@ -1635,62 +1636,62 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.EditCustomForm - + Edit Custom Slides Aangepaste dia's bewerken - + &Title: &Titel: - + Add a new slide at bottom. Nieuwe dia onderaan invoegen. - + Edit the selected slide. Geselecteerde dia bewerken. - + Edit all the slides at once. Alle dia's tegelijk bewerken. - + Split a slide into two by inserting a slide splitter. Dia doormidden delen door een dia 'splitter' in te voegen. - + The&me: The&ma: - + &Credits: &Credits: - + You need to type in a title. Geef een titel op. - + You need to add at least one slide Minstens een dia invoegen - + Ed&it All &Alles bewerken - + Insert Slide Invoegen dia @@ -1698,7 +1699,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.EditVerseForm - + Edit Slide Bewerk dia @@ -1706,68 +1707,71 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen?Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? + + Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? + Weet u zeker dat u %n geslecteerde dia(s) wilt verwijderen? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Afbeeldingen Plugin</strong><br />De afbeeldingen plugin voorziet in de mogelijkheid afbeeldingen te laten zien.<br />Een van de bijzondere mogelijkheden is dat meerdere afbeeldingen als groep in de liturgie worden opgenomen, zodat weergave van meerdere afbeeldingen eenvoudiger wordt. Deze plugin maakt doorlopende diashows (bijv. om de 3 sec. een nieuwe dia) mogelijk. Ook kun met deze plugin de achtergrondafbeelding van het thema vervangen met een andere afbeelding. Ook de combinatie van tekst en beeld is mogelijk. - + Image name singular Afbeelding - + Images name plural Bilder - + Images container title Afbeeldingen - + Load a new image. Afbeelding laden. - + Add a new image. Afbeelding toevoegen. - + Edit the selected image. Afbeelding bewerken. - + Delete the selected image. Geselecteerde afbeelding wissen. - + Preview the selected image. Geselecteerde afbeelding voorbeeld bekijken. - + Send the selected image live. Geselecteerde afbeelding Live tonen. - + Add the selected image to the service. Geselecteerde afbeelding aan liturgie toevoegen. @@ -1775,7 +1779,7 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding ImagePlugin.ExceptionDialog - + Select Attachment Selecteer bijlage @@ -1783,44 +1787,44 @@ Let op, de bijbelverzen worden gedownload indien nodig en een internetverbinding ImagePlugin.MediaItem - + Select Image(s) Selecteer afbeelding(en) - + You must select an image to delete. Selecteer een afbeelding om te verwijderen. - + You must select an image to replace the background with. Selecteer een afbeelding om de achtergrond te vervangen. - + Missing Image(s) Ontbrekende afbeelding(en) - + The following image(s) no longer exist: %s De volgende afbeelding(en) ontbreken: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? De volgende afbeelding(en) ontbreken: %s De andere afbeeldingen alsnog toevoegen? - + There was a problem replacing your background, the image file "%s" no longer exists. Achtergrond kan niet vervangen worden, omdat de afbeelding "%s" ontbreekt. - + There was no display item to amend. Er is geen weergave item om te verbeteren. @@ -1828,17 +1832,17 @@ De andere afbeeldingen alsnog toevoegen? ImagesPlugin.ImageTab - + Background Color Achtergrondkleur - + Default Color: Standaard kleur: - + Visible background for images with aspect ratio different to screen. Zichtbare achtergrond voor afbeeldingen met een andere verhouding dan het scherm. @@ -1846,60 +1850,60 @@ De andere afbeeldingen alsnog toevoegen? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Media Plugin</strong><br />De media plugin voorziet in mogelijkheden audio en video af te spelen. - + Media name singular Medien - + Media name plural Medien - + Media container title Media - + Load new media. Laad nieuw media bestand. - + Add new media. Voeg nieuwe media toe. - + Edit the selected media. Bewerk geselecteerd media bestand. - + Delete the selected media. Verwijder geselecteerd media bestand. - + Preview the selected media. Toon voorbeeld van geselecteerd media bestand. - + Send the selected media live. Toon geselecteerd media bestand Live. - + Add the selected media to the service. Voeg geselecteerd media bestand aan liturgie toe. @@ -1907,57 +1911,57 @@ De andere afbeeldingen alsnog toevoegen? MediaPlugin.MediaItem - + Select Media Secteer media bestand - + You must select a media file to delete. Selecteer een media bestand om te verwijderen. - + You must select a media file to replace the background with. Selecteer een media bestand om de achtergrond mee te vervangen. - + There was a problem replacing your background, the media file "%s" no longer exists. Probleem met het vervangen van de achtergrond, omdat het bestand "%s" niet meer bestaat. - + Missing Media File Ontbrekend media bestand - + The file %s no longer exists. Media bestand %s bestaat niet meer. - + Videos (%s);;Audio (%s);;%s (*) Video’s (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Er is geen weergave item om te verbeteren. - + Unsupported File Niet ondersteund bestandsformaat - + Automatic Automatisch - + Use Player: Gebruik speler: @@ -1965,22 +1969,22 @@ De andere afbeeldingen alsnog toevoegen? MediaPlugin.MediaTab - + Available Media Players Beschikbare media spelers - + %s (unavailable) %s (niet beschikbaar) - + Player Order Speler volgorde - + Allow media player to be overridden Toestaan om de mediaspeler te overschrijven @@ -1988,17 +1992,17 @@ De andere afbeeldingen alsnog toevoegen? OpenLP - + Image Files Afbeeldingsbestanden - + Information Informatie - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2014,61 @@ Zal OpenLP dat nu doen? OpenLP.AboutForm - + Credits Credits - + License Licentie - - Contribute - Bijdragen - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + This program 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 below for more details. This program 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 below for more details. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + + + + Volunteer + Doe mee + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2102,271 +2140,185 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - -Deze tekst is niet vertaald. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is vrije kerk presentatie- of projectiesoftware, dat kan worden gebruikt om liedteksten, bijbelteksten, video’s, afbeeldingen en zelfs bestaande presentaties (mits Impress, PowerPoint of PowerPoint Viewer is geïnstalleerd) tijdens de kerkdienst te laten zien met behulp van een computer en een beamer. - -Ontdek meer over OpenLP: http://openlp.org/ - -OpenLP wordt ontwikkeld en bijgehouden door vrijwilligers. Als u meer vrije software op het gebied van het christelijk geloof wilt zien, overweeg dan een bijdrage te leveren door onderstaande knop te gebruiken. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s + OpenLP.AdvancedTab - + UI Settings UI instellingen - + Number of recent files to display: Aantal recent geopende bestanden: - + Remember active media manager tab on startup Laatstgeopende tab opslaan - + Double-click to send items straight to live Dubbelklikken om onderdelen direct aan live toe te voegen - + Expand new service items on creation Nieuwe liturgieonderdelen automatisch uitklappen - + Enable application exit confirmation Afsluiten OpenLP bevestigen - + Mouse Cursor Muisaanwijzer - + Hide mouse cursor when over display window Verberg muisaanwijzer in het weergave venster - + Default Image standaard afbeelding - + Background color: Achtergrondkleur: - + Image file: Afbeeldingsbestand: - + Open File Open bestand - + Advanced Geavanceerd - + Preview items when clicked in Media Manager Voorbeeld direct laten zien bij aanklikken in Media beheer - + Click to select a color. Klik om een kleur te kiezen. - + Browse for an image file to display. Blader naar een afbeelding om te laten zien. - + Revert to the default OpenLP logo. Herstel standaard OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Liturgie %d-%m-%Y %H-%M - + Default Service Name Standaard liturgienaam - + Enable default service name Gebruik standaard liturgienaam - + Date and Time: Datum en tijd: - + Monday maandag - + Tuesday dinsdag - + Wednesday woensdag - + Thurdsday donderdag - + Friday vrijdag - + Saturday zaterdag - + Sunday zondag - + Now Nu - + Time when usual service starts. Begintijd gewone dienst - + Name: Naam: - + Consult the OpenLP manual for usage. Raadpleeg de OpenLP handleiding voor gebruik. - + Revert to the default service name "%s". Herstel de standaard liturgienaam "%s". - + Example: Voorbeeld: - + X11 X11 @@ -2376,82 +2328,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Negeer X11 Window Manager - + Syntax error. Syntax error. - + Data Location Bestandslocatie - + Current path: Huidige pad: - + Custom path: Aangepast pad: - + Browse for new data file location. Blader voor een nieuwe bestandslocatie voor de data. - + Set the data location to the default. Herstel bestandslocatie naar standaard. - + Cancel Annuleer - + Cancel OpenLP data directory location change. Annuleer OpenLP bestandslocatie wijziging. - + Copy data to new location. Kopieer data naar de nieuwe bestandslocatie. - + Copy the OpenLP data files to the new location. Kopieer OpenLP data naar de nieuwe bestandslocatie. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>PAS OP:</strong> In de nieuwe bestandslocatie staan al OpenLP data bestanden. Die bestanden worden vervangen tijdens kopieren. - + Data Directory Error Bestandslocatie fout - + Select Data Directory Location Selecteer bestandslocatie - + Confirm Data Directory Change Bevestig wijziging bestandslocatie - + Reset Data Directory Herstel bestandslocatie data - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2460,48 +2412,99 @@ This location will be used after OpenLP is closed. Deze bestandslocatie wordt gebruikt nadat OpenLP is afgesloten. - + Overwrite Existing Data Overschrijf bestaande data + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP data directory is niet gevonden + +%s + +Deze data directory werd onlangs gewijzigd ten opzichte van de OpenLP standaard locatie. Als de nieuwe locatie op een verwijderbare schijf staat, moet u nu eerst zelf zorgen dat de schijf beschikbaar is. + +Klik "Nee" om OpenLP niet verder te laden en eerst het probleem te verhelpen. + +Klik "Ja" om de standaardinstellingen te gebruiken. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Weet u zeker dat de locatie van de OpenLP data directory wilt veranderen in: + +%s + +De data directory zal worden gewijzigd bij het afsluiten van OpenLP. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + WAARSCHUWING: + +De locatie die u heeft gekozen + +%s + +lijkt al OpenLP data bestanden te bevatten. Wilt u de oude bestanden vervangen met de huidige? + OpenLP.ExceptionDialog - + Error Occurred Er gaat iets fout - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Oeps! OpenLP heeft een probleem en kan het niet zelf oplossen. De tekst in het onderste venster bevat informatie waarmee de OpenLP ontwikkelaars iets kunnen. Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van het probleem en hoe het ontstond. - + Send E-Mail Stuur e-mail - + Save to File Opslaan als bestand - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Omschrijf in het Engels wat u deed toen deze fout zich voordeed (minstens 20 tekens gebruiken) - + Attach File Voeg bestand toe - + Description characters to enter : %s Toelichting aanvullen met nog %s tekens @@ -2509,24 +2512,24 @@ Stuur een e-mail naar: bugs@openlp.org met een gedetailleerde beschrijving van h OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Bewaar Bug Report - + Text files (*.txt *.log *.text) Tekstbestand (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2557,7 +2560,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2592,17 +2595,17 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. OpenLP.FileRenameForm - + File Rename Bestand hernoemen - + New File Name: Nieuwe bestandsnaam: - + File Copy Bestand kopiëren @@ -2610,17 +2613,17 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. OpenLP.FirstTimeLanguageForm - + Select Translation Selecteer vertaling - + Choose the translation you'd like to use in OpenLP. Kies de vertaling waarin u OpenLP wilt gebruiken. - + Translation: Vertaling: @@ -2628,192 +2631,192 @@ Schrijf in het Engels, omdat de meeste programmeurs geen Nederlands spreken. OpenLP.FirstTimeWizard - + Songs Liederen - + First Time Wizard Eerste keer assistent - + Welcome to the First Time Wizard Welkom bij de Eerste keer Assistent - + Activate required Plugins Activeer noodzakelijke plugins - + Select the Plugins you wish to use. Selecteer de plugins die je gaat gebruiken. - + Bible Bijbel - + Images Afbeeldingen - + Presentations Presentaties - + Media (Audio and Video) Media (Audio en Video) - + Allow remote access Toegang op afstand toestaan - + Monitor Song Usage Liedgebruik bijhouden - + Allow Alerts Toon berichten - + Default Settings Standaard instellingen - + Downloading %s... Downloaden %s... - + Download complete. Click the finish button to start OpenLP. Download compleet. Klik op afrond om OpenLP te starten. - + Enabling selected plugins... Geselecteerde plugins inschakelen... - + No Internet Connection Geen internetverbinding - + Unable to detect an Internet connection. OpenLP kan geen internetverbinding vinden. - + Sample Songs Voorbeeld liederen - + Select and download public domain songs. Selecteer en download liederen uit het publieke domein. - + Sample Bibles Voorbeeld bijbels - + Select and download free Bibles. Selecteer en download (gratis) bijbels uit het publieke domein. - + Sample Themes Voorbeeld thema's - + Select and download sample themes. Selecteer en download voorbeeld thema's. - + Set up default settings to be used by OpenLP. Stel standaardinstellingen in voor OpenLP. - + Default output display: Standaard weergave scherm: - + Select default theme: Selecteer standaard thema: - + Starting configuration process... Begin het configuratie proces... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Deze assistent helpt u bij het instellen van OpenLP voor het eerste gebruik. Klik op volgende om te beginnen. - + Setting Up And Downloading Instellen en downloaden - + Please wait while OpenLP is set up and your data is downloaded. Even geduld terwijl OpenLP ingesteld wordt en de voorbeeldgegevens worden gedownload. - + Setting Up Instellen - + Click the finish button to start OpenLP. Klik op afronden om OpenLP te starten. - + Download complete. Click the finish button to return to OpenLP. Download compleet. Klik op afronden om OpenLP te starten. - + Click the finish button to return to OpenLP. Klik op afronden om OpenLP te starten. - + Custom Slides Aangepaste dia’s - + Finish Eind - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2822,7 +2825,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2834,37 +2837,37 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagDialog - + Configure Formatting Tags Configureer Opmaak tags - + Edit Selection Bewerk selectie - + Save Opslaan - + Description Omschrijving - + Tag Tag - + Start HTML Start HTML - + End HTML Eind HTML @@ -2872,32 +2875,32 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTagForm - + Update Error Update Fout - + Tag "n" already defined. Tag "n" bestaat al. - + New Tag Nieuwe tag - + <HTML here> <HTML here> - + </and here> </and here> - + Tag %s already defined. Tag %s bestaat al. @@ -2905,82 +2908,82 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.FormattingTags - + Red Rood - + Black Zwart - + Blue Blauw - + Yellow Geel - + Green Groen - + Pink Roze - + Orange Oranje - + Purple Paars - + White Wit - + Superscript Superscript - + Subscript Subscript - + Paragraph Paragraaf - + Bold Vet - + Italics Cursief - + Underline Onderstreept - + Break Breek af @@ -2988,122 +2991,122 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.GeneralTab - + General Algemeen - + Monitors Beeldschermen - + Select monitor for output display: Projectiescherm: - + Display if a single screen Weergeven bij enkel scherm - + Application Startup Programma start - + Show blank screen warning Toon zwart scherm waarschuwing - + Automatically open the last service Automatisch laatste liturgie openen - + Show the splash screen Toon splash screen - + Application Settings Programma instellingen - + Prompt to save before starting a new service Waarschuw om werk op te slaan bij het beginnen van een nieuwe liturgie - + Automatically preview next item in service Automatisch volgend onderdeel van liturgie tonen - + sec sec - + CCLI Details CCLI-details - + SongSelect username: SongSelect gebruikersnaam: - + SongSelect password: SongSelect wachtwoord: - + X X - + Y Y - + Height Hoogte - + Width Breedte - + Check for updates to OpenLP Controleer op updates voor OpenLP - + Unblank display when adding new live item Zwart scherm uitschakelen als er een nieuw live item wordt toegevoegd - + Timed slide interval: Tijd tussen dia’s: - + Background Audio Achtergrond geluid - + Start background audio paused Start achtergrond geluid gepauseerd @@ -3113,12 +3116,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can Limiet Liturgieitems per dia - + Override display position: Overschrijf scherm positie - + Repeat track list herhaal tracklijst @@ -3146,12 +3149,12 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.LanguageManager - + Language Taal - + Please restart OpenLP to use your new language setting. Start OpenLP opnieuw op om de nieuwe taalinstellingen te gebruiken. @@ -3159,7 +3162,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display OpenLP Weergave @@ -3167,287 +3170,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Bestand - + &Import &Importeren - + &Export &Exporteren - + &View &Weergave - + M&ode M&odus - + &Tools &Hulpmiddelen - + &Settings &Instellingen - + &Language Taa&l - + &Help &Help - + Media Manager Mediabeheer - + Service Manager Liturgie beheer - + Theme Manager Thema beheer - + &New &Nieuw - + &Open &Open - + Open an existing service. Open een bestaande liturgie. - + &Save Op&slaan - + Save the current service to disk. Deze liturgie opslaan. - + Save &As... Opslaan &als... - + Save Service As Liturgie opslaan als - + Save the current service under a new name. Deze liturgie onder een andere naam opslaan. - + E&xit &Afsluiten - + Quit OpenLP OpenLP afsluiten - + &Theme &Thema - + &Configure OpenLP... &Instellingen... - + &Media Manager &Media beheer - + Toggle Media Manager Media beheer wel / niet tonen - + Toggle the visibility of the media manager. Media beheer wel / niet tonen. - + &Theme Manager &Thema beheer - + Toggle Theme Manager Thema beheer wel / niet tonen - + Toggle the visibility of the theme manager. Thema beheer wel / niet tonen. - + &Service Manager &Liturgie beheer - + Toggle Service Manager Liturgie beheer wel / niet tonen - + Toggle the visibility of the service manager. Liturgie beheer wel / niet tonen. - + &Preview Panel &Voorbeeld - + Toggle Preview Panel Voorbeeld wel / niet tonen - + Toggle the visibility of the preview panel. Voorbeeld wel / niet tonen. - + &Live Panel &Live venster - + Toggle Live Panel Live venster wel / niet tonen - + Toggle the visibility of the live panel. Live venster wel / niet tonen. - + &Plugin List &Plugin Lijst - + List the Plugins Lijst met plugins =uitbreidingen van OpenLP - + &User Guide Gebr&uikshandleiding - + &About &Over OpenLP - + More information about OpenLP Meer Informatie over OpenLP - + &Online Help &Online help - + &Web Site &Website - + Use the system language, if available. Gebruik systeem standaardtaal, indien mogelijk. - + Set the interface language to %s %s als taal in OpenLP gebruiken - + Add &Tool... Hulpprogramma &toevoegen... - + Add an application to the list of tools. Voeg een hulpprogramma toe aan de lijst. - + &Default &Standaard - + Set the view mode back to the default. Terug naar de standaard weergave modus. - + &Setup &Setup - + Set the view mode to Setup. Weergave modus naar Setup. - + &Live &Live - + Set the view mode to Live. Weergave modus naar Live. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3456,108 +3459,108 @@ You can download the latest version from http://openlp.org/. U kunt de laatste versie op http://openlp.org/ downloaden. - + OpenLP Version Updated Nieuwe OpenLP versie beschikbaar - + OpenLP Main Display Blanked OpenLP projectie op zwart - + The Main Display has been blanked out Projectie is uitgeschakeld: scherm staat op zwart - + Default Theme: %s Standaardthema: %s - + English Please add the name of your language here Nederlands - + Configure &Shortcuts... &Sneltoetsen instellen... - + Close OpenLP OpenLP afsluiten - + Are you sure you want to close OpenLP? OpenLP afsluiten? - + Open &Data Folder... Open &Data map... - + Open the folder where songs, bibles and other data resides. Open de map waar liederen, bijbels en andere data staat. - + &Autodetect &Autodetecteer - + Update Theme Images Thema afbeeldingen opwaarderen - + Update the preview images for all themes. Voorbeeld afbeeldingen opwaarderen voor alle thema’s. - + Print the current service. Druk de huidige liturgie af. - + &Recent Files &Recente bestanden - + L&ock Panels Panelen op sl&ot - + Prevent the panels being moved. Voorkomen dat panelen verschuiven. - + Re-run First Time Wizard Herstart Eerste keer assistent - + Re-run the First Time Wizard, importing songs, Bibles and themes. Herstart Eerste keer assistent, importeer voorbeeld liederen, bijbels en thema’s. - + Re-run First Time Wizard? Herstart Eerste keer assistent? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3566,43 +3569,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and De Eerste keer assistent opnieuw starten zou veranderingen in uw huidige OpenLP instellingen kunnen maken en mogelijk liederen aan uw huidige lijst kunnen toevoegen en uw standaard thema wijzigen. - + Clear List Clear List of recent files Lijst leegmaken - + Clear the list of recent files. Maak de lijst met recente bestanden leeg. - + Configure &Formatting Tags... Configureer &Opmaak tags... - + Export OpenLP settings to a specified *.config file Exporteer OpenLP instellingen naar een *.config bestand - + Settings Instellingen - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importeer OpenLP instellingen uit een bestaand *.config bestand afkomstig van deze of een andere computer - + Import settings? Importeer instelling? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3615,50 +3618,77 @@ Instellingen importeren zal uw huidige OpenLP configuratie veranderen. Incorrecte instellingen importeren veroorzaakt onvoorspelbare effecten of OpenLP kan spontaan stoppen. - + Open File Open bestand - + OpenLP Export Settings Files (*.conf) OpenLP Export instellingsbestanden (*.config) - + Import settings Importeer instellingen - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP sluit nu af. De geïmporteeerde instellingen worden bij de volgende start van OpenLP toegepast. - + Export Settings File Exporteer instellingen - + OpenLP Export Settings File (*.conf) OpenLP Export instellingsbestand (*.config) - + New Data Directory Error Nieuwe bestandslocatie fout + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Het geslecteerde bestand is geen geldig OpenLP settings bestand. + +Sectie [%s] klopt niet + +Verwerking is gestopt en er is niets veranderd. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + OpenLP data wordt nu naar de nieuwe data directory locatie gekopieerd - %s - Even wachten tot het kopiëren klaar is. + + + + OpenLP Data directory copy failed + +%s + OpenLP Data directory kopieren is mislukt + +%s + OpenLP.Manager - + Database Error Database Fout - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3667,7 +3697,7 @@ Database: %s Database: %s - + OpenLP cannot load your database. Database: %s @@ -3679,74 +3709,74 @@ Database: %s OpenLP.MediaManagerItem - + No Items Selected Niets geselecteerd - + &Add to selected Service Item &Voeg selectie toe aan de liturgie - + You must select one or more items to preview. Selecteer een of meerdere onderdelen om voorbeeld te laten zien. - + You must select one or more items to send live. Selecteer een of meerdere onderdelen om Live te tonen. - + You must select one or more items. Selecteer een of meerdere onderdelen. - + You must select an existing service item to add to. Selecteer een liturgie om deze onderdelen aan toe te voegen. - + Invalid Service Item Ongeldige Liturgie onderdeel - + You must select a %s service item. Selecteer een %s liturgie onderdeel. - + You must select one or more items to add. Selecteer een of meerdere onderdelen om toe te voegen. - + No Search Results Niets gevonden - + Invalid File Type Ongeldig bestandsformaat - + Invalid File %s. Suffix not supported Ongeldig bestand %s. Extensie niet ondersteund - + &Clone &Kloon - + Duplicate files were found on import and were ignored. Identieke bestanden zijn bij het importeren gevonden en worden genegeerd. @@ -3754,12 +3784,12 @@ Extensie niet ondersteund OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <liedtekst> tag mist. - + <verse> tag is missing. <vers> tag mist. @@ -3767,42 +3797,42 @@ Extensie niet ondersteund OpenLP.PluginForm - + Plugin List Plugin Lijst - + Plugin Details Plugin details - + Status: Status: - + Active Actief - + Inactive Inactief - + %s (Inactive) %s (inactief) - + %s (Active) %s (actief) - + %s (Disabled) %s (uitgeschakeld) @@ -3810,12 +3840,12 @@ Extensie niet ondersteund OpenLP.PrintServiceDialog - + Fit Page Passend hele pagina - + Fit Width Passend pagina breedte @@ -3823,77 +3853,77 @@ Extensie niet ondersteund OpenLP.PrintServiceForm - + Options Opties - + Copy Kopieer - + Copy as HTML Kopieer als HTML - + Zoom In Inzoomen - + Zoom Out Uitzoomen - + Zoom Original Werkelijke grootte - + Other Options Overige opties - + Include slide text if available Inclusief dia tekst indien beschikbaar - + Include service item notes Inclusief liturgie opmerkingen - + Include play length of media items Inclusief afspeellengte van media items - + Add page break before each text item Voeg een pagina-einde toe voor elke tekst item - + Service Sheet Liturgie blad - + Print Afdrukken - + Title: Titel: - + Custom Footer Text: Aangepaste voettekst: @@ -3901,12 +3931,12 @@ Extensie niet ondersteund OpenLP.ScreenList - + Screen Beeldscherm - + primary primair scherm @@ -3914,12 +3944,12 @@ Extensie niet ondersteund OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Lengte</strong>: %s @@ -3927,7 +3957,7 @@ Extensie niet ondersteund OpenLP.ServiceItemEditForm - + Reorder Service Item Liturgie onderdelen herschikken @@ -3935,287 +3965,295 @@ Extensie niet ondersteund OpenLP.ServiceManager - + Move to &top Bovenaan plaa&tsen - + Move item to the top of the service. Plaats dit onderdeel bovenaan. - + Move &up Naar b&oven - + Move item up one position in the service. Verplaats een plek naar boven. - + Move &down Naar bene&den - + Move item down one position in the service. Verplaats een plek naar beneden. - + Move to &bottom Onderaan &plaatsen - + Move item to the end of the service. Plaats dit onderdeel onderaan. - + &Delete From Service Verwij&deren uit de liturgie - + Delete the selected item from the service. Verwijder dit onderdeel uit de liturgie. - + &Add New Item &Voeg toe - + &Add to Selected Item &Voeg selectie toe - + &Edit Item B&ewerk onderdeel - + &Reorder Item He&rschik onderdeel - + &Notes Aa&ntekeningen - + &Change Item Theme &Wijzig onderdeel thema - + OpenLP Service Files (*.osz) OpenLP liturgie bestanden (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Geen geldig liturgie bestand. Tekst codering is geen UTF-8. - + File is not a valid service. Geen geldig liturgie bestand. - + Missing Display Handler Ontbrekende weergave regelaar - + Your item cannot be displayed as there is no handler to display it Dit onderdeel kan niet weergegeven worden, omdat er een regelaar ontbreekt - + Your item cannot be displayed as the plugin required to display it is missing or inactive Dit onderdeel kan niet weergegeven worden omdat de benodigde plugin ontbreekt of inactief is - + &Expand all Alles &uitklappen - + Expand all the service items. Alle liturgie onderdelen uitklappen. - + &Collapse all Alles &inklappen - + Collapse all the service items. Alle liturgie onderdelen inklappen. - + Open File Open bestand - + Moves the selection down the window. Verplaatst de selectie naar beneden. - + Move up Naar boven - + Moves the selection up the window. Verplaatst de selectie naar boven. - + Go Live Ga Live - + Send the selected item to Live. Toon selectie Live. - + &Start Time &Start Tijd - + Show &Preview Toon &Voorbeeld - + Modified Service Gewijzigde liturgie - + The current service has been modified. Would you like to save this service? De huidige liturgie is gewijzigd. Veranderingen opslaan? - + Custom Service Notes: Aangepaste liturgie kanttekeningen: - + Notes: Aantekeningen: - + Playing time: Speeltijd: - + Untitled Service Liturgie zonder naam - + File could not be opened because it is corrupt. Bestand kan niet worden geopend omdat het beschadigd is. - + Empty File Leeg bestand - + This service file does not contain any data. Deze liturgie bevat nog geen gegevens. - + Corrupt File Corrupt bestand - + Load an existing service. Laad een bestaande liturgie. - + Save this service. Deze liturgie opslaan. - + Select a theme for the service. Selecteer een thema voor de liturgie. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Dit bestand is beschadigd of geen OpenLP 2.0 liturgie bestand. - - Service File Missing - Ontbrekend liturgiebestand - - - + Slide theme Dia thema - + Notes Aantekeningen - + Edit Bewerk - + Service copy only Liturgie alleen kopiëren - + Error Saving File Fout bij het opslaan - + There was an error saving your file. Er ging iets fout bij het opslaan van het bestand. + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + + OpenLP.ServiceNoteForm - + Service Item Notes Liturgische kanttekeningen @@ -4223,7 +4261,7 @@ Tekst codering is geen UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configureer OpenLP @@ -4231,67 +4269,67 @@ Tekst codering is geen UTF-8. OpenLP.ShortcutListDialog - + Action Actie - + Shortcut snelkoppeling - + Duplicate Shortcut Snelkoppelingen dupliceren - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Deze snelkoppeling "%s" wordt al voor iets anders gebruikt. Kies een andere toetscombinatie. - + Alternate Afwisselend - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Selecteer een actie en klik op één van de knoppen hieronder om respectievelijk een primaire of alternatieve sneltoets vast te leggen. - + Default Standaard - + Custom Aangepaste dia - + Capture shortcut. Sneltoets vastleggen. - + Restore the default shortcut of this action. Herstel de standaard sneltoets voor de actie. - + Restore Default Shortcuts Herstel standaard sneltoetsen - + Do you want to restore all shortcuts to their defaults? Weet u zeker dat u alle standaard sneltoetsen wilt herstellen? - + Configure Shortcuts Sneltoetsen instellen @@ -4299,172 +4337,172 @@ Tekst codering is geen UTF-8. OpenLP.SlideController - + Hide Verbergen - + Go To Ga naar - + Blank Screen Zwart scherm - + Blank to Theme Zwart naar thema - + Show Desktop Toon bureaublad - + Previous Service Vorige liturgie - + Next Service Volgende liturgie - + Escape Item Onderdeel annuleren - + Move to previous. Vorige. - + Move to next. Volgende. - + Play Slides Dia’s tonen - + Delay between slides in seconds. Pauze tussen dia’s in seconden. - + Move to live. Toon Live. - + Add to Service. Voeg toe aan Liturgie. - + Edit and reload song preview. Bewerk en herlaad lied voorbeeld. - + Start playing media. Speel media af. - + Pause audio. Pauzeer audio. - + Pause playing media. Afspelen pauzeren - + Stop playing media. Afspelen stoppen - + Video position. Video positie - + Audio Volume. Audio volume - + Go to "Verse" Ga naar "Vers" - + Go to "Chorus" Ga naar "Refrein" - + Go to "Bridge" Ga naar "Bridge" - + Go to "Pre-Chorus" Ga naar "pre-Refrein" - + Go to "Intro" Ga naar "Intro" - + Go to "Ending" Ga naar "Einde" - + Go to "Other" Ga naar "Overige" - + Previous Slide vorige dia - + Next Slide volgende dia - + Pause Audio Pauzeer audio - + Background Audio Achtergrondgeluid - + Go to next audio track. Ga naar de volgende audiotrack. - + Tracks Tracks @@ -4472,17 +4510,17 @@ Tekst codering is geen UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Spelling suggesties - + Formatting Tags Opmaak tags - + Language: Taal: @@ -4490,615 +4528,627 @@ Tekst codering is geen UTF-8. OpenLP.StartTimeForm - + Hours: Uren: - + Minutes: Minuten: - + Seconds: Seconden: - + Item Start and Finish Time Item start en eind tijd - + Start Start - + Finish Eind - + Length Lengte - + Time Validation Error Tijd validatie fout - + Finish time is set after the end of the media item Eind tijd is ingesteld tot na het eind van het media item - + Start time is after the finish time of the media item Start tijd is ingesteld tot na het eind van het media item - + Theme Layout Thema Layout - + The blue box shows the main area. Het blauwe vlak toont het hoofdgebied. - + The red box shows the footer. Het rode vlak toont het gebied voor de voettekst. - - OpenLP.ThemeForm - - - Select Image - Selecteer afbeelding - - - - Theme Name Missing - Thema naam ontbreekt - - - - There is no name for this theme. Please enter one. - Dit thema heeft nog geen naam. Geef een naam voor dit thema. - - - - Theme Name Invalid - Ongeldige naam - - - - Invalid theme name. Please enter one. - Deze naam kan niet worden gebruikt als thema naam. Kies een andere naam. - - - - (approximately %d lines per slide) - (ongeveer %d regels per dia) - - OpenLP.ThemeManager - + Create a new theme. Maak een nieuw thema. - + Edit Theme Bewerk thema - + Edit a theme. Bewerk een thema. - + Delete Theme Verwijder thema - + Delete a theme. Verwijder thema. - + Import Theme Importeer thema - + Import a theme. Importeer thema. - + Export Theme Exporteer thema - + Export a theme. Exporteer thema. - + &Edit Theme B&ewerk thema - + &Delete Theme Verwij&der thema - + Set As &Global Default Instellen als al&gemene standaard - + %s (default) %s (standaard) - + You must select a theme to edit. Selecteer een thema om te bewerken. - + You are unable to delete the default theme. Het standaard thema kan niet worden verwijderd. - + Theme %s is used in the %s plugin. Thema %s wordt gebruikt in de %s plugin. - + You have not selected a theme. Selecteer een thema. - + Save Theme - (%s) Thema opslaan - (%s) - + Theme Exported Thema geëxporteerd - + Your theme has been successfully exported. Exporteren thema is gelukt. - + Theme Export Failed Exporteren thema is mislukt - + Your theme could not be exported due to an error. Thema kan niet worden geëxporteerd als gevolg van een fout. - + Select Theme Import File Selecteer te importeren thema bestand - + File is not a valid theme. Geen geldig thema bestand. - + &Copy Theme &Kopieer thema - + &Rename Theme He&rnoem thema - + &Export Theme &Exporteer thema - + You must select a theme to rename. Selecteer een thema om te hernoemen. - + Rename Confirmation Bevestig hernoemen - + Rename %s theme? %s thema hernoemen? - + You must select a theme to delete. Selecteer een thema om te verwijderen. - + Delete Confirmation Bevestig verwijderen - + Delete %s theme? %s thema verwijderen? - + Validation Error Validatie fout - + A theme with this name already exists. Er bestaat al een thema met deze naam. - + OpenLP Themes (*.theme *.otz) OpenLP Thema's (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopie van %s - + Theme Already Exists Theama bestaat al + + + Theme %s already exists. Do you want to replace it? + Thema %s bestaat reeds. Vervangen? + OpenLP.ThemeWizard - + Theme Wizard Thema assistent - + Welcome to the Theme Wizard Welkom bij de thema assistent - + Set Up Background Achtergrond instellen - + Set up your theme's background according to the parameters below. Thema achtergrond instellen met onderstaande parameters. - + Background type: Achtergrond type: - + Solid Color Vaste kleur - + Gradient Kleurverloop - + Color: Kleur: - + Gradient: Kleurverloop: - + Horizontal Horizontaal - + Vertical Verticaal - + Circular Radiaal - + Top Left - Bottom Right Links boven - rechts onder - + Bottom Left - Top Right Links onder - Rechts boven - + Main Area Font Details Font instellingen algemeen - + Define the font and display characteristics for the Display text Stel de eigenschappen voor de tekst weergave in - + Font: Lettertype: - + Size: Grootte: - + Line Spacing: Interlinie: - + &Outline: &Omtrek: - + &Shadow: &Schaduw: - + Bold Vet - + Italic Cursief - + Footer Area Font Details Eigenschappen voettekst - + Define the font and display characteristics for the Footer text Stel de eigenschappen voor de voettekst weergave in - + Text Formatting Details Tekst opmaak eigenschappen - + Allows additional display formatting information to be defined Toestaan dat er afwijkende opmaak kan worden bepaald - + Horizontal Align: Horizontaal uitlijnen: - + Left links - + Right rechts - + Center Centreren - + Output Area Locations Uitvoer gebied locaties - + Allows you to change and move the main and footer areas. Toestaan dat tekstvelden gewijzigd en verplaatst worden. - + &Main Area &Hoofdgebied - + &Use default location Gebr&uik standaard locatie - + X position: X positie: - + px px - + Y position: Y positie: - + Width: Breedte: - + Height: Hoogte: - + Use default location Gebruik standaard locatie - + Theme name: Thema naam: - + Edit Theme - %s Bewerk thema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Deze assistent helpt bij het maken en bewerken van thema's. Klik op volgende om als eerste een achtergrond in te stellen. - + Transitions: Overgangen: - + &Footer Area &Voettekst gebied - + Starting color: Beginkleur: - + Ending color: Eindkleur: - + Background color: Achtergrondkleur: - + Justify Uitvullen - + Layout Preview Layout voorbeeld - + Transparent Transparant - + Preview and Save Voorbeeld en opslaan - + Preview the theme and save it. Toon een voorbeeld en sla het thema op. + + + (approximately %d lines per slide) + (ongeveer %d regels per dia) + + + + Background Image Empty + Achtergrondafbeelding Leeg + + + + You have not selected a background image. Please select one before continuing. + Geen achtergrondafbeelding geselecteerd. Kies een mooie uit alvorens door te gaan. + + + + Select Image + Selecteer afbeelding + + + + Theme Name Missing + Thema Naam ontbreekt + + + + There is no name for this theme. Please enter one. + Dit thema heeft geen naam. Bedenk een passende naam. + + + + Theme Name Invalid + Thema naam ongeldig + + + + Invalid theme name. Please enter one. + De naam van het thema is niet geldig. Bedenk een andere naam. + OpenLP.ThemesTab - + Global Theme Globaal thema - + Theme Level Thema niveau - + S&ong Level &Lied niveau - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Gebruik het thema bij elk lied in de database. Als een lied geen eigen thema heeft, gebruik dan het thema van de liturgie. Als de liturgie geen eigen thema heeft, gebruik dan het globale thema. - + &Service Level &Liturgie niveau - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Gebruik het thema van de liturgie en negeer de thema's van elk lied afzonderlijk. Als de liturgie geen eigen thema heeft, gebruik dan het globale thema. - + &Global Level &Globaal niveau - + Use the global theme, overriding any themes associated with either the service or the songs. Gebruik het globale thema en negeer alle thema's van de liturgie of de afzonderlijke liederen. - + Themes Thema's @@ -5106,315 +5156,315 @@ Tekst codering is geen UTF-8. OpenLP.Ui - + Error Fout - + About Over - + &Add &Toevoegen - + Advanced Geavanceerd - + All Files Alle bestanden - + Bottom Onder - + Browse... Bladeren... - + Cancel Annuleren - + CCLI number: CCLI nummer: - + Create a new service. Maak nieuwe liturgie. - + &Delete Verwij&deren - + &Edit &Bewerken - + Empty Field Wis veld - + Export Exporteren - + pt Abbreviated font pointsize unit pt - + Image Afbeelding - + Import Importeren - + Live Live - + Live Background Error Live achtergrond fout - + Load Laad - + Middle Midden - + New Nieuw - + New Service Nieuwe liturgie - + New Theme Nieuw thema - + No File Selected Singular Geen bestand geselecteerd - + No Files Selected Plural Geen bestanden geselecteerd - + No Item Selected Singular Geen item geselecteerd - + No Items Selected Plural Geen items geselecteerd - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Voorbeeld - + Replace Background Vervang achtergrond - + Reset Background Herstel achtergrond - + s The abbreviated unit for seconds s - + Save && Preview Opslaan && voorbeeld bekijken - + Search Zoek - + You must select an item to delete. Selecteer een item om te verwijderen. - + You must select an item to edit. Selecteer iets om te bewerken. - + Save Service Liturgie opslaan - + Service Liturgie - + Start %s Start %s - + Theme Singular Thema - + Themes Plural Thema's - + Top Boven - + Version Versie - + Delete the selected item. Verwijder het geselecteerde item. - + Move selection up one position. Verplaats selectie een plek naar boven. - + Move selection down one position. Verplaats selectie een plek naar beneden. - + &Vertical Align: &Verticaal uitlijnen: - + Finished import. Importeren beëindigd. - + Format: Formaat: - + Importing Importeren - + Importing "%s"... Importeren "%s"... - + Select Import Source Selecteer te importeren bestand - + Select the import format and the location to import from. Selecteer te importeren bestand en het bestandsformaat. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Open %s File Open %s bestand - + %p% %p% - + Ready. Klaar. - + Starting import... Start importeren... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Selecteer minstens een %s bestand om te importeren. @@ -5425,299 +5475,304 @@ Tekst codering is geen UTF-8. Welkom bij de Bijbel Import Assistent - + Welcome to the Song Export Wizard Welkom bij de lied export assistent - + Welcome to the Song Import Wizard Welkom bij de lied import assistent - + Author Singular Auteur - + Authors Plural Auteurs - - © + + © Copyright symbol. © - + Song Book Singular Liedbundel - + Song Books Plural Liedboeken - + Song Maintenance Liederen beheer - + Topic Singular Onderwerp - + Topics Plural Onderwerpen - + Continuous Doorlopend - + Default Standaard - + Display style: Weergave stijl: - + Duplicate Error Dupliceer fout - + File Bestand - + Help Help - + h The abbreviated unit for hours h - + Layout style: Paginaformaat: - + Live Toolbar Live Werkbalk - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP is reeds gestart. Weet u zeker dat u wilt doorgaan? - + Settings Instellingen - + Tools Hulpmiddelen - + Unsupported File Niet ondersteund bestandsformaat - + Verse Per Slide Bijbelvers per dia - + Verse Per Line Bijbelvers per regel - + View Weergave - + Title and/or verses not found Titel en/of verzen niet gevonden - + XML syntax error XML syntax fout - + View Mode Weergave modus - + Open service. Open liturgie. - + Print Service Liturgie afdrukken - + Replace live background. Vervang Live achtergrond. - + Reset live background. Herstel Live achtergrond. - + Split a slide into two only if it does not fit on the screen as one slide. Dia opdelen als de inhoud niet op een dia past. - + Welcome to the Bible Upgrade Wizard Welkom bij de Bijbel Opwaardeer Assistent - + Confirm Delete Bevestig verwijderen - + Play Slides in Loop Dia’s doorlopend tonen - + Play Slides to End Dia’s tonen tot eind - + Stop Play Slides in Loop Stop dia’s doorlopend tonen - + Stop Play Slides to End Stop dia’s tonen tot eind - + Next Track Volgende track - + Search Themes... Search bar place holder text Doorzoek thema... - + Optional &Split Optioneel &splitsen - + Invalid Folder Selected Singular Ongeldige map geselecteerd - + Invalid File Selected Singular Ongeldig bestand geselecteerd - + Invalid Files Selected Plural Ongeldige bestanden geselecteerd - + No Folder Selected Singular Geen map geselecteerd - + Open %s Folder Open %s map - + You need to specify one %s file to import from. A file type e.g. OpenSong Specificeer een %s bestand om vanuit te importeren. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Specificeer een %s map om vanuit te importeren. + + + Importing Songs + Liederen importeren + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 en %2 - + %1, and %2 Locale list separator: end %1, en %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5726,50 +5781,50 @@ Tekst codering is geen UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentatie plugin</strong><br />De presentatie plugin voorziet in de mogelijkheid om verschillende soorten presentaties weer te geven. De keuze van beschikbare presentatie software staat in een uitklapmenu. - + Presentation name singular Presentatie - + Presentations name plural Präsentationen - + Presentations container title Presentaties - + Load a new presentation. Laad nieuwe presentatie. - + Delete the selected presentation. Geselecteerde presentatie verwijderen. - + Preview the selected presentation. Geef van geselecteerde presentatie voorbeeld weer. - + Send the selected presentation live. Geselecteerde presentatie Live. - + Add the selected presentation to the service. Voeg geselecteerde presentatie toe aan de liturgie. @@ -5777,52 +5832,52 @@ Tekst codering is geen UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Selecteer presentatie(s) - + Automatic automatisch - + Present using: Presenteren met: - + File Exists Bestand bestaat - + A presentation with that filename already exists. Er bestaat al een presentatie met die naam. - + This type of presentation is not supported. Dit soort presentatie wordt niet ondersteund. - + Presentations (%s) Presentaties (%s) - + Missing Presentation Ontbrekende presentatie - + The presentation %s is incomplete, please reload. Presentatie %s is niet compleet, herlaad a.u.b. - + The presentation %s no longer exists. Presentatie %s bestaat niet meer. @@ -5830,17 +5885,17 @@ Tekst codering is geen UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Beschikbare regelaars - + %s (unavailable) %s (niet beschikbaar) - + Allow presentation application to be overridden Toestaan presentatieprogramma te overschrijven @@ -5848,24 +5903,24 @@ Tekst codering is geen UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Remote Plugin</strong><br />The remote plugin voorziet in de mogelijkheid berichten te sturen naar een andere (draaiende) versie van OpenLP op een andere computer via een web-browser of via de remote API. - + Remote name singular Remote - + Remotes name plural Remotes - + Remote container title Remote @@ -5874,236 +5929,246 @@ Tekst codering is geen UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remote - + OpenLP 2.0 Stage View OpenLP 2.0 Podium Weergave - + Service Manager Liturgie beheer - + Slide Controller Dia regelaar - + Alerts Waarschuwingen - + Search Zoek - + Refresh Vernieuwen - + Blank Leeg - + Show Toon - + Prev Vorige - + Next Volgende - + Text Tekst - + Show Alert Toon waarschuwingen - + Go Live Ga Live - + No Results Niets gevonden - + Options Opties - + Add to Service Voeg toe aan Liturgie - + Home Home - + Theme Thema - + Desktop Bureaublad - + Add &amp; Go to Service Toevoegen &amp; ga naar liturgie + + + Service + Liturgie + + + + Slides + Dia’s + RemotePlugin.RemoteTab - + Serve on IP address: Beschikbaar via IP-adres: - + Port number: Poort nummer: - + Server Settings Server instellingen - + Remote URL: Remote URL: - + Stage view URL: Podium weergave URL: - + Display stage time in 12h format Toon tijd in 12h opmaak - + Android App Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Scan de QR code if klik <a href="https://market.android.com/details?id=org.openlp.android">download</a> om de Android app van de Market te downloaden. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Scan de QR code of klik <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> om de Android app from Google Play te installeren. SongUsagePlugin - + &Song Usage Tracking &Lied gebruik bijhouden - + &Delete Tracking Data Verwij&der gegevens liedgebruik - + Delete song usage data up to a specified date. Verwijder alle gegevens over lied gebruik tot een bepaalde datum. - + &Extract Tracking Data &Extraheer gegevens liedgebruik - + Generate a report on song usage. Geneer rapportage liedgebruik. - + Toggle Tracking Gegevens bijhouden aan|uit - + Toggle the tracking of song usage. Gegevens liedgebruik bijhouden aan of uit zetten. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Liedgebruik plugin</strong><br />Met deze plugin kunt u bijhouden welke liederen tijdens de vieringen gezongen worden. - + SongUsage name singular Liedprotokollierung - + SongUsage name plural Liedprotokollierung - + SongUsage container title Liedgebruik - + Song Usage Liedgebruik - + Song usage tracking is active. Lied gebruik bijhouden is actief. - + Song usage tracking is inactive. Lied gebruik bijhouden is in-actief. - + display weergave - + printed afgedrukt @@ -6111,32 +6176,32 @@ Tekst codering is geen UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Gegevens liedgebruik verwijderen - + Delete Selected Song Usage Events? Wilt u de gegevens liedgebruik verwijderen? - + Are you sure you want to delete selected Song Usage data? Weet u zeker dat u de gegevens liedgebruik wilt verwijderen? - + Deletion Successful Succesvol verwijderd - + All requested data has been deleted successfully. Alle opgegeven data is verwijderd. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selecteer de datum tot wanneer de gegevens liedgebruik verwijderd moeten worden. Alle gegevens van voor die datum worden verwijderd. @@ -6144,42 +6209,42 @@ Tekst codering is geen UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Gegevens liedgebruik extraheren - + Select Date Range Selecteer periode - + to tot - + Report Location Locatie rapport - + Output File Location Bestandslocatie - + usage_detail_%s_%s.txt liedgebruik_details_%s_%s.txt - + Report Creation Maak rapportage - + Report %s has been successfully created. @@ -6188,12 +6253,12 @@ has been successfully created. is gemaakt. - + Output Path Not Selected Uitvoer pad niet geselecteerd - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Geen geldige bestandslocatie opgegeven om de rapportage liedgebruik op te slaan. Kies een bestaande map op uw computer. @@ -6201,112 +6266,112 @@ is gemaakt. SongsPlugin - + &Song &Lied - + Import songs using the import wizard. Importeer liederen met de lied assistent. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Lied plugin</strong><br />De lied plugin regelt de weergave en het beheer van liederen. - + &Re-index Songs He&r-indexeer liederen - + Re-index the songs database to improve searching and ordering. Her-indexxer de liederen in de database om het zoeken en ordenen te verbeteren. - + Reindexing songs... Liederen her-indexeren... - + Arabic (CP-1256) Arabisch (CP-1256) - + Baltic (CP-1257) Baltisch (CP-1257) - + Central European (CP-1250) Centraal Europees (CP-1250) - + Cyrillic (CP-1251) Cyrillisch (CP-1251) - + Greek (CP-1253) Grieks (CP-1253) - + Hebrew (CP-1255) Hebreeuws (CP-1255) - + Japanese (CP-932) Japans (CP-932) - + Korean (CP-949) Koreaans (CP-949) - + Simplified Chinese (CP-936) Chinees, eenvoudig (CP-936) - + Thai (CP-874) Thais (CP-874) - + Traditional Chinese (CP-950) Traditioneel Chinees (CP-950) - + Turkish (CP-1254) Turks (CP-1254) - + Vietnam (CP-1258) Vietnamees (CP-1258) - + Western European (CP-1252) Westeuropees (CP-1252) - + Character Encoding Tekst codering - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6315,100 +6380,105 @@ een correcte weergave van lettertekens. Meestal voldoet de suggestie van OpenLP. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Kies een tekstcodering (codepage). De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens. - + Song name singular Lied - + Songs name plural Lieder - + Songs container title Liederen - + Exports songs using the export wizard. Exporteer liederen met de export assistent. - + Add a new song. Voeg nieuw lied toe. - + Edit the selected song. Bewerk geselecteerde lied. - + Delete the selected song. Verwijder geselecteerde lied. - + Preview the selected song. Toon voorbeeld geselecteerd lied. - + Send the selected song live. Toon lied Live. - + Add the selected song to the service. Voeg geselecteerde lied toe aan de liturgie. + + + Reindexing songs + Herindexeren liederen + SongsPlugin.AuthorsForm - + Author Maintenance Auteur hebeer - + Display name: Weergave naam: - + First name: Voornaam: - + Last name: Achternaam: - + You need to type in the first name of the author. De voornaam van de auteur moet worden opgegeven. - + You need to type in the last name of the author. De achternaam van de auteur moet worden opgegeven. - + You have not set a display name for the author, combine the first and last names? Geen weergave naam opgegeven. Moeten de voor- en achternaam gecombineerd worden? @@ -6416,7 +6486,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Dit bestand heeft geen geldige extensie. @@ -6424,12 +6494,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EasyWorshipSongImport - + Administered by %s Beheerd door %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6441,12 +6511,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EditBibleForm - + Meta Data Meta Data - + Custom Book Names Aangepaste namen bijbelboeken @@ -6454,207 +6524,202 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EditSongForm - + Song Editor Lied bewerker - + &Title: &Titel: - + Alt&ernate title: Afwiss&elende titel: - + &Lyrics: Lied&tekst: - + &Verse order: &Vers volgorde: - + Ed&it All &Alles bewerken - + Title && Lyrics Titel && Liedtekst - + &Add to Song Voeg toe &aan lied - + &Remove Ve&rwijderen - + &Manage Authors, Topics, Song Books &Beheer auteurs, onderwerpen, liedboeken - + A&dd to Song Voeg toe &aan lied - + R&emove V&erwijderen - + Book: Boek: - + Number: Nummer: - + Authors, Topics && Song Book Auteurs, onderwerpen && liedboeken - + New &Theme Nieuw &Thema - + Copyright Information Copyright - + Comments Commentaren - + Theme, Copyright Info && Comments Thema, Copyright && Commentaren - + Add Author Voeg auteur toe - + This author does not exist, do you want to add them? Deze auteur bestaat nog niet, toevoegen? - + This author is already in the list. Deze auteur staat al in de lijst. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Geen auteur geselecteerd. Kies een auteur uit de lijst of voeg er een toe door de naam in te typen en op de knop "Voeg auteur toe" te klikken. - + Add Topic Voeg onderwerp toe - + This topic does not exist, do you want to add it? Dit onderwerp bestaat nog niet, toevoegen? - + This topic is already in the list. Dit onderwerp staat al in de lijst. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Geen geldig onderwerp geselecteerd. Kies een onderwerp uit de lijst of type een nieuw onderwerp en klik op "Nieuw onderwerp toevoegen". - + You need to type in a song title. Vul de titel van het lied in. - + You need to type in at least one verse. Vul minstens de tekst van één couplet in. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. De volgorde van de coupletten klopt niet. Er is geen couplet dat overeenkomt met %s. Wel zijn %s beschikbaar. - + Add Book Voeg boek toe - + This song book does not exist, do you want to add it? Dit liedboek bestaat nog niet, toevoegen? - + You need to have an author for this song. Iemand heeft dit lied geschreven. - - You need to type some text in to the verse. - Er moet toch een tekst zijn om te zingen. - - - + Linked Audio Gekoppelde audio - + Add &File(s) Bestand(en) &toevoegen - + Add &Media Voeg &Media toe - + Remove &All &Alles verwijderen - + Open File(s) Open bestand(en) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Let op:</strong> Niet alle verzen worden gebruikt. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Ongeldige vers volgorde. Er zijn geen verzen die overeenkomen met %s. Geldig zijn %s. @@ -6662,22 +6727,22 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.EditVerseForm - + Edit Verse Couplet bewerken - + &Verse type: Co&uplet type: - + &Insert &Invoegen - + Split a slide into two by inserting a verse splitter. Dia doormidden delen door een dia 'splitter' in te voegen. @@ -6685,82 +6750,82 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ExportWizardForm - + Song Export Wizard Lied Exporteer Assistent - + Select Songs Selecteer liederen - + Check the songs you want to export. Selecteer de liederen die u wilt exporteren. - + Uncheck All Deselecteer alles - + Check All Selecteer alles - + Select Directory Selecteer map - + Directory: Map: - + Exporting Exporteren - + Please wait while your songs are exported. Even wachten terwijl de liederen worden geëxporteerd. - + You need to add at least one Song to export. Kies minstens een lied om te exporteren. - + No Save Location specified Niet opgegeven waar bestand moet worden bewaard - + Starting export... Start exporteren... - + You need to specify a directory. Geef aan waar het bestand moet worden opgeslagen. - + Select Destination Folder Selecteer een doelmap - + Select the directory where you want the songs to be saved. Selecteer een map waarin de liederen moeten worden bewaard. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Deze assistent helpt u bij het exporteren van liederen naar het open en vrije <strong>OpenLyrics</strong> worship lied formaat. @@ -6768,172 +6833,172 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecteer Documenten/Presentatie bestanden - + Song Import Wizard Lied importeer assistent - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Deze assistent helpt liederen in verschillende bestandsformaten te importeren in OpenLP. Klik op volgende en kies daarna het bestandsformaat van het te importeren lied. - + Generic Document/Presentation Algemeen Document/Presentatie - + Add Files... Toevoegen... - + Remove File(s) Verwijder bestand(en) - + Please wait while your songs are imported. Even geduld tijdens het importeren. - + OpenLP 2.0 Databases OpenLP 2.0 Databases - + openlp.org v1.x Databases openlp.org v1.x Databases - + Words Of Worship Song Files Words Of Worship Lied bestanden - + Songs Of Fellowship Song Files Songs Of Fellowship lied bestanden - + SongBeamer Files SongBeamer bestanden - + SongShow Plus Song Files SongShow Plus lied bestanden - + Foilpresenter Song Files Foilpresenter lied bestanden - + Copy Kopieer - + Save to File Opslaan als bestand - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Songs of Fellowship import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Algemeen document/presentatie import is uitgeschakeld omdat OpenLP OpenOffice.org niet kan vinden op deze computer. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics of OpenLP 2.0 geëxporteerd lied - + OpenLyrics Files OpenLyrics bestanden - + CCLI SongSelect Files CCLI SongSelect bestanden - + EasySlides XML File EasySlides XML bestanden - + EasyWorship Song Database EasyWorship Lied Database - + DreamBeam Song Files DreamBeam liedbestanden - + You need to specify a valid PowerSong 1.0 database folder. Specificeer een geldige PowerSong 1.0 database map. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Convert uw ZionWorx database naar een CSV tekstbestand, zoals staat uitgelegd in de engelstalige <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">gebruikershandleiding</a>. - + SundayPlus Song Files SundayPlus liedbestanden - + This importer has been disabled. importeren is uitgeschakeld - + MediaShout Database MediaShout Database - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. MediaShout importeren wordt alleen ondersteund onder Windows. Het is uitgeschakeld omdat een bepaalde Python module ontbreekt. Om te kunnen importeren, moet u de "pyodbc" module installeren. - + SongPro Text Files SongPro Tekst bestanden - + SongPro (Export File) SongPro (Exporteer bestand) - + In SongPro, export your songs using the File -> Export menu Exporteer de liederen in SongPro via het menu File -> Export @@ -6941,12 +7006,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.MediaFilesForm - + Select Media File(s) Selecteer media bestand(en) - + Select one or more audio files from the list below, and click OK to import them into this song. Selecteer een of meerdere audiobestanden uit de lijst, en klik OK om te importeren in dit lied. @@ -6954,63 +7019,66 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.MediaItem - + Titles Titels - + Lyrics Liedtekst - + CCLI License: CCLI Licentie: - + Entire Song Gehele lied - + Are you sure you want to delete the %n selected song(s)? - Weet u zeker dat u dit %n lied wilt verwijderen?Weet u zeker dat u deze %n lied(eren) wilt verwijderen? + + Weet u zeker dat u dit %n lied wilt verwijderen? + Weet u zeker dat u deze %n lied(eren) wilt verwijderen? + - + Maintain the lists of authors, topics and books. Beheer de lijst met auteurs, onderwerpen en liedboeken. - + copy For song cloning kopieer - + Search Titles... Doorzoek titels... - + Search Entire Song... Doorzoek gehele lied... - + Search Lyrics... Doorzoek liedtekst... - + Search Authors... Doorzoek auteurs... - + Search Song Books... Doorzoek liedboeken... @@ -7018,7 +7086,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Kan de MediaShout database niet openen. @@ -7026,7 +7094,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Geen geldige openlp.org v1.x lied database. @@ -7034,7 +7102,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Geen geldige OpenLP 2.0 lied database. @@ -7042,7 +7110,7 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporteren "%s"... @@ -7050,35 +7118,55 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.PowerSongImport - + No songs to import. Geen liederen om te importeren. - + Verses not found. Missing "PART" header. Coupletten niet gevonden. Ontbrekende "PART" header. + + + No %s files found. + Geen %s bestanden gevonden. + + + + Invalid %s file. Unexpected byte value. + Ongeldig %s bestand. Onverwachte byte waarde. + + + + Invalid %s file. Missing "TITLE" header. + Ongeldig %s bestand. Ontbrekende "TITLE" header. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Ongeldig %s bestand. Ontbrekende "COPYRIGHTLINE" header. + SongsPlugin.SongBookForm - + Song Book Maintenance Onderhoud Liedboeken - + &Name: &Naam: - + &Publisher: &Uitgever: - + You need to type in a name for the book. Er moet een naam worden opgegeven. @@ -7086,12 +7174,12 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongExportForm - + Your song export failed. Liederen export is mislukt. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Klaar met exporteren. Om deze bestanden te importeren gebruik <strong>OpenLyrics</strong> importeren. @@ -7099,27 +7187,27 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: De volgende liederen konden niet worden geïmporteerd: - + Cannot access OpenOffice or LibreOffice Kan niet bij OpenOffice.org of LibreOffice komen - + Unable to open file Kan bestand niet openen - + File not found Bestand niet gevonden @@ -7127,107 +7215,107 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongMaintenanceForm - + Could not add your author. Kon de auteur niet toevoegen. - + This author already exists. Deze auteur bestaat al. - + Could not add your topic. Kon dit onderwerp niet toevoegen. - + This topic already exists. Dit onderwerp bestaat al. - + Could not add your book. Kon dit boek niet toevoegen. - + This book already exists. Dit boek bestaat al. - + Could not save your changes. De wijzigingen kunnen niet opgeslagen worden. - + Could not save your modified author, because the author already exists. Kan de auteur niet opslaan, omdat deze reeds bestaat. - + Could not save your modified topic, because it already exists. Kan dit onderwerp niet opslaan, omdat het reeds bestaat. - + Delete Author Auteur verwijderen - + Are you sure you want to delete the selected author? Weet u zeker dat u de auteur wilt verwijderen? - + This author cannot be deleted, they are currently assigned to at least one song. Deze auteur kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld. - + Delete Topic Onderwerp verwijderen - + Are you sure you want to delete the selected topic? Weet u zeker dat u dit onderwerp wilt verwijderen? - + This topic cannot be deleted, it is currently assigned to at least one song. Dit onderwerp kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld. - + Delete Book Verwijder boek - + Are you sure you want to delete the selected book? Weet u zeker dat u dit boek wilt verwijderen? - + This book cannot be deleted, it is currently assigned to at least one song. Dit liedboek kan niet worden verwijderd, omdat er nog een lied aan is gekoppeld. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Deze auteur %s bestaat al. Liederen met auteur %s aan deze auteur %s koppelen? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Dit onderwerp %s bestaat al. Liederen met onderwerp %s aan %s koppelen? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Dit liedboek %s bestaat al. Liederen uit het Liedboek %s aan het liedboek %s koppelen? @@ -7235,27 +7323,27 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.SongsTab - + Songs Mode Lied instellingen - + Enable search as you type Zoeken tijdens het typen - + Display verses on live tool bar Coupletten weergeven op live werkbalk - + Update service from song edit Liturgie bijwerken met bewerkt lied - + Import missing songs from service files Importeer ontbrekende liederen uit liturgiebestand @@ -7263,17 +7351,17 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.TopicsForm - + Topic Maintenance Onderwerp onderhoud - + Topic name: Onderwerp naam: - + You need to type in a topic name. U moet een onderwerp invullen. @@ -7281,37 +7369,37 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.VerseType - + Verse Couplet - + Chorus Refrein - + Bridge Bridge - + Pre-Chorus Tussenspel - + Intro Intro - + Ending Eind - + Other Overig @@ -7319,14 +7407,29 @@ De tekstcodering is verantwoordelijk voor een correcte weergave van lettertekens SongsPlugin.ZionWorxImport - + Error reading CSV file. Fout bij het lezen van CSV bestand. - + File not valid ZionWorx CSV format. Bestand geen geldig ZionWorx CSV indeling. + + + Line %d: %s + Regel %d: %s + + + + Decoding error: %s + Decoding error: %s + + + + Record %d + Opnemen %d + - \ No newline at end of file + diff --git a/resources/i18n/pl.ts b/resources/i18n/pl.ts index 3b70127a7..bbe29b5d7 100644 --- a/resources/i18n/pl.ts +++ b/resources/i18n/pl.ts @@ -1,108 +1,109 @@ - + + AlertsPlugin - + &Alert - + &Komunikat - + Show an alert message. - + Pokaż komunikat. - + Alert name singular - + Komunikat - + Alerts name plural - + Komunikaty - + Alerts container title - + Komunikaty - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + <strong>Wtyczka Komunikatów</strong><br />Wtyczka komunikatów pozwala pokazywać pilne komunikaty na ekranie. AlertsPlugin.AlertForm - + Alert Message - + Komunikat - + Alert &text: - + &Treść komunikatu: - + &New - + &Nowy - + &Save - + &Zapisz - + Displ&ay - + Pokaz - + Display && Cl&ose - + Wyświetl i zamknij - + New Alert - + Nowy komunikat - + You haven't specified any text for your alert. Please type in some text before clicking New. - + Nie wpisałeś jeszcze żadnego tekstu w bieżącym komunikacie. Wpisz jakiś tekst zanim naciśniesz Nowy. - + &Parameter: - + &Parametr: - + No Parameter Found - + Nie znaleziono żadnego parametru - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + Nie wprowadziłeś parametru do zastąpienia. Czy mimo to chcesz kontynuować? - + No Placeholder Found - + Nie znaleziono symbolu zastępczego - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? - + Tekst ostrzegawczy nie zawiera '<>'. Czy mimo to chcesz kontynuować? @@ -110,634 +111,637 @@ Do you want to continue anyway? Alert message created and displayed. - + Komunikat został stworzony i wyświetlony. AlertsPlugin.AlertsTab - + Font Czcionka - + Font name: Nazwa czcionki: - + Font color: Kolor czcionki: - + Background color: - Tło czcionki: + Kolor tła: - + Font size: Wielkość czcionki: - + Alert timeout: - + Czas komunikatu: BiblesPlugin - + &Bible - - - - - Bible - name singular - + &Biblia + Bible + name singular + Biblia + + + Bibles name plural - + Biblie - + Bibles container title - + Biblie - + No Book Found - + Nie znaleziono Księgi - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - - - - - Import a Bible. - + Nie znaleziono odpowiadającej księgi w Biblii. Sprawdź, czy zapisałeś nazwę księgi poprawnie. - Add a new Bible. - + Import a Bible. + Importuj Biblię. - Edit the selected Bible. - + Add a new Bible. + Dodaj nową Biblię. - Delete the selected Bible. - + Edit the selected Bible. + Edytuj zaznaczoną Biblię. - Preview the selected Bible. - + Delete the selected Bible. + Usuń zaznaczoną Biblię. - - Send the selected Bible live. - + + Preview the selected Bible. + Podgląd zaznaczonej Biblii. + Send the selected Bible live. + Wyświetl zaznaczoną Biblię na ekranie. + + + Add the selected Bible to the service. - + Dodaj zaznaczoną Biblię do planu nabożeństwa. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + <strong>Wtyczka Biblijna</strong>Wtyczka Biblijna zapewnia możliwość wyświetlania wersetów biblijnych z różnych źródeł podczas posługi. + + - + &Upgrade older Bibles - + &Uaktualnij starsze Biblie - + Upgrade the Bible databases to the latest format. - - - - - Genesis - + Zaktualizuj bazę danych Biblii do najnowszego formatu. - Exodus - + Genesis + Ks. Rodzaju - Leviticus - + Exodus + Ks. Wyjścia - Numbers - + Leviticus + Ks. Kapłańska - Deuteronomy - + Numbers + Ks. Liczb - Joshua - + Deuteronomy + Ks. Powt. Prawa - Judges - + Joshua + Ks. Jozuego - Ruth - + Judges + Ks. Sędziów - 1 Samuel - + Ruth + Ks. Rut - 2 Samuel - + 1 Samuel + 1 Ks. Samuela - 1 Kings - + 2 Samuel + 2 Ks. Samuela - 2 Kings - + 1 Kings + 1 Ks. Królewska - 1 Chronicles - + 2 Kings + 2 Ks. Królewska - 2 Chronicles - + 1 Chronicles + 1 Ks. Kronik - Ezra - + 2 Chronicles + 2 Ks. Kronik - Nehemiah - + Ezra + Ks. Ezdrasza - Esther - + Nehemiah + Ks. Nehemiasza - Job - + Esther + Ks. Estery - Psalms - + Job + Ks. Hioba - Proverbs - + Psalms + Ks. Psalmów - Ecclesiastes - + Proverbs + Ks. Przysłów - Song of Solomon - + Ecclesiastes + Ks. Koheleta - Isaiah - + Song of Solomon + Pieśń nad pieśniami - Jeremiah - + Isaiah + Ks. Izajasza - Lamentations - + Jeremiah + Ks. Jeremiasza - Ezekiel - + Lamentations + Lamentacje Jeremiasza - Daniel - + Ezekiel + Ks. Ezechiela - Hosea - + Daniel + Ks. Daniela - Joel - + Hosea + Ks. Ozeasza - Amos - + Joel + Ks. Joela - Obadiah - + Amos + Ks. Amosa - Jonah - + Obadiah + Ks. Abdiasza - Micah - + Jonah + Ks. Jonasza - Nahum - + Micah + Ks. Micheasza - Habakkuk - + Nahum + Ks. Nahuma - Zephaniah - + Habakkuk + Ks. Habakuka - Haggai - + Zephaniah + Ks. Sofoniasza - Zechariah - + Haggai + Ks. Aggeusza - Malachi - + Zechariah + Ks. Zachariasza - Matthew - + Malachi + Ks. Malachiasza - Mark - + Matthew + Ew. Mateusza - Luke - + Mark + Ew. Marka - John - + Luke + Ew. Łukasza - Acts - + John + Ew. Jana - Romans - + Acts + Dzieje Apost. - 1 Corinthians - + Romans + List do Rzymian - 2 Corinthians - + 1 Corinthians + 1 list do Koryntian - Galatians - + 2 Corinthians + 2 list do Koryntian - Ephesians - + Galatians + List do Galatów - Philippians - + Ephesians + List do Efezjan - Colossians - + Philippians + List do Filipian - 1 Thessalonians - + Colossians + List do Kolosan - 2 Thessalonians - + 1 Thessalonians + 1 List do Tesaloniczan - 1 Timothy - + 2 Thessalonians + 2 List do Tesaloniczan - 2 Timothy - + 1 Timothy + 1 List do Tymoteusza - Titus - + 2 Timothy + 2 List do Tymoteusza - Philemon - + Titus + List do Tytusa - Hebrews - + Philemon + List do Filemona - James - + Hebrews + List do Hebrajczyków - 1 Peter - + James + List Jakuba - 2 Peter - + 1 Peter + 1 List Piotra - 1 John - + 2 Peter + 2 List Piotra - 2 John - + 1 John + 1 List Jana - 3 John - + 2 John + 2 List Jana - Jude - + 3 John + 3 List Jana - Revelation - + Jude + List Judy - Judith - + Revelation + Apokalipsa - Wisdom - + Judith + Ks. Judyty - Tobit - + Wisdom + Ks. Mądrości - Sirach - + Tobit + Ks. Tobiasza - Baruch - + Sirach + Mądrość Syracha - 1 Maccabees - + Baruch + Ks. Barucha - 2 Maccabees - + 1 Maccabees + 1 Ks. Machabejska - 3 Maccabees - + 2 Maccabees + 2 Ks. Machabejska - 4 Maccabees - + 3 Maccabees + 3 Ks. Machabejska - Rest of Daniel - + 4 Maccabees + 4 Ks. Machabejska - Rest of Esther - + Rest of Daniel + Reszta Ks. Daniela - Prayer of Manasses - + Rest of Esther + Reszta Ks. Estery - Letter of Jeremiah - + Prayer of Manasses + Modlitwa Manassesa - Prayer of Azariah - + Letter of Jeremiah + List Jeremiasza - Susanna - + Prayer of Azariah + Modlitwa Azariasza - Bel - + Susanna + Zuzanna - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 3 Ks. Ezdrasza - + + 2 Esdras + 4 Ks. Ezdrasza + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|verse|verses;;-|to;;,|and;;end BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Musisz podać nazwę tłumaczenia tej Biblii. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Musisz ustawić prawa autorskie Biblii. Biblie domeny publicznej muszą zostać oznaczone. - + Bible Exists - + Biblia istnieje - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Ta Biblia już istnieje. Proszę zaimportować inną lub usunąć już istniejącą. - + You need to specify a book name for "%s". - + Musisz sprecyzować nazwę księgi dla "%s" - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Nazwa księgi "%s" nie jest poprawna. +Liczby mogą zostać użyte jedynie na początku i poprzedzać tekst. - + Duplicate Book Name - + Duplikuj nazwę księgi - + The Book Name "%s" has been entered more than once. - + Nazwa księgi "%s" została wpisana więcej niż raz. BiblesPlugin.BibleManager - + Scripture Reference Error - + Błąd odnośnika Pisma - + Web Bible cannot be used - + Biblia internetowa nie może być użyta - + Text Search is not available with Web Bibles. - + Wyszukiwanie tekstu jest niedostępne dla Biblii internetowych. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + Nie wprowadzono słów kluczowych wyszukiwania. Możesz oddzielić słowa spacją, by wyszukać wszystkie słowa kluczowe oraz możesz rozdzielić je przecinkami, aby wyszukać tylko jedno z nich. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + Nie zainstalowano żadnych tekstów Biblijnych. Użyj Kreatora Importu aby zainstalować teksty bibijne. - + No Bibles Available - + Żadna Biblia nie jest dostępna - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -747,313 +751,327 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Twój odnośnik nie jest wspierany przez OpenLP bądź jest błędny. Proszę, upewnij się, że Twoje odniesienie pasuje do jednego z poniższych wzorów. + +Księga Rozdział +Księga Rozdział%(range)sRozdział +Księga Rozdział%(verse)sWerset%(range)sWerset +Księga Rozdział%(verse)sWerset%(range)sWerset%(list)sWerset%(range)sWerset +Księga Rozdział%(verse)sWerset%(range)sWerset%(list)sRozdział%(verse)sWerset%(range)sWerset +Księga Rozdział%(verse)sWerset%(range)sRozdział%(verse)sWerset BiblesPlugin.BiblesTab - + Verse Display - + Wyświetl werset - + Only show new chapter numbers - + Pokaż tylko nowe numery rozdziałów - + Bible theme: - + Motyw Biblii: - + No Brackets - + Brak klamer - + ( And ) - + ( i ) - + { And } - + { i } - + [ And ] - + [ i ] - + Note: Changes do not affect verses already in the service. - + Uwaga: ⏎ Zmiany nie wpływają na wersety użyte już w planie nabożeństwa. - + Display second Bible verses - + Wyświetl kolejne wersety Biblijne - + Custom Scripture References - + Niestandardowe odnośniki do Pisma - + Verse Separator: - + Separator zwrotek: - + Range Separator: - + Separator rangi: - + List Separator: - + Separator listy: - + End Mark: - + Końcowy znak: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Alternatywne separatory wersów mogą być zdefiniowane. +Muszą one być odseparowane poziomą kreską "|". Proszę zatwierdzić, by użyć domyślnej wartości. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Multiple alternative range separators may be defined. +They have to be separated by a vertical bar "|". +Please clear this edit line to use the default value. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Alternatywne separatory list mogą być zdefiniowane. +Muszą one być odseparowane poziomą kreską "|". Proszę zatwierdzić, by użyć domyślnej wartości. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Alternatywne separatory znaków końcowych mogą być zdefiniowane. +Muszą one być odseparowane poziomą kreską "|". Proszę zatwierdzić, by użyć domyślnej wartości. - + English - + Angielski - + Default Bible Language - + Domyślny język Biblii - + Book name language in search field, search results and on display: - + Book name language in search field, +search results and on display: - + Bible Language - + Język Biblii - + Application Language - + Język Aplikacji BiblesPlugin.BookNameDialog - + Select Book Name - + Wybierz nazwę Księgi - + Current name: - + Obecna nazwa: - + Corresponding name: - + Odpowiednia nazwa: - + Show Books From - + Pokaż Księgi z - + Old Testament - + Stary Testament - + New Testament - + Nowy Testament - + Apocrypha - + Apokryfy - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Następująca księga nie może zostać dopasowana. Proszę wybrać odpowiednią nazwę z listy. BiblesPlugin.BookNameForm - + You need to select a book. - + Musisz zaznaczyć jakąś Księgę. BiblesPlugin.CSVBible - + Importing books... %s - + Import ksiąg ... %s - + Importing verses from %s... Importing verses from <book name>... - + Import wersów z %s... - + Importing verses... done. - + Import wersów... wykonano. BiblesPlugin.EditBibleForm - + Bible Editor - + Edytor Biblii - + License Details - + Szczegóły licencji - + Version name: - + Nazwa wersji: - + Copyright: - + Prawa autorskie: - + Permissions: - + Zezwolenia: - + Default Bible Language - + Domyślny język Biblii - + Book name language in search field, search results and on display: - + Book name language in search field, search results and on display: - + Global Settings - + Globalne ustawienia - + Bible Language - + Język Biblii - + Application Language - + Język aplikacji - + English - + Angielski - + This is a Web Download Bible. It is not possible to customize the Book Names. - + To jest pobrana Biblia internetowa. +Nie można dostosowywać i zmieniać nazw ksiąg. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Aby użyć innych nazw Ksiąg, musi być zaznaczony "język Biblii" w zakładce metadanych lub gdy "Globalne ustawienia" są zaznaczone, na stronie Biblia w Konfiguracji OpenLP. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + Rejestrowanie Biblii i wczytywanie ksiąg... - + Registering Language... - + Rejestrowanie języka... - + Importing %s... Importing <book name>... - + Importowanie %s... - + Download Error - + Błąd pobierania - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + Wystąpił problem podczas pobierania wybranych wersetów. Sprawdź swoje połączenie internetowe, a jeśli błąd nadal występuje, należy rozważyć zgłoszenie błędu oprogramowania. - + Parse Error - + Błąd przetwarzania - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Wystąpił problem wyodrębnienia wybranego wersetu. Jeśli błąd nadal występuje należy rozważyć zgłoszenie błędu oprogramowania @@ -1061,951 +1079,986 @@ It is not possible to customize the Book Names. Bible Import Wizard - + Kreator importu Biblii This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Ten kreator pomoże ci zaimportować Biblię z różnych formatów. Kliknij poniższy przycisk Dalej aby rozpocząć proces przez wybranie formatu początkowego. Web Download - + Pobieranie z internetu Location: - + Lokalizacja: Crosswalk - + Crosswalk BibleGateway - + BibleGateway Bible: - + Biblia: Download Options - + Opcje pobierania Server: - + Serwer: Username: - + Nazwa użytkownika: Password: - + Hasło: Proxy Server (Optional) - + Serwer Proxy (opcjonalnie) License Details - + Szczegóły licencji Set up the Bible's license details. - + Ustaw szczegóły licencyjne ?! Biblii Version name: - + Nazwa tłumaczenia: Copyright: - + Prawa autorskie: Please wait while your Bible is imported. - + Proszę czekać, aż Biblia zostanie zaimportowana. You need to specify a file with books of the Bible to use in the import. - + Sprecyzuj plik z księgami Biblii aby móc użyć go do importu. You need to specify a file of Bible verses to import. - + Musisz określić plik z wersetami biblijnymi, aby móc importować You need to specify a version name for your Bible. - + Musisz określić nazwę wersji Biblii. You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Musisz określić prawa autorskie dla Biblii. Biblie w domenie publicznej muszą być określone. Bible Exists - + Biblia istnieje This Bible already exists. Please import a different Bible or first delete the existing one. - + Ta Biblia już istnieje. Proszę zaimportuj inną Biblię, albo usuń istniejącą. Your Bible import failed. - + Import Biblii zakończony niepowodzeniem CSV File - + Plik CSV Bibleserver - + Serwer Biblii Permissions: - + Uprawnienia: Bible file: - + Plik Biblii: Books file: - + Plik Ksiąg: Verses file: - + Plik wersetów: openlp.org 1.x Bible Files - + Plik Biblii w formacie openlp.org 1.x Registering Bible... - + Rejestrowanie Biblii... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + Biblia została zarejestrowana. Pamiętaj, że wersety będą pobierane na bieżąco, więc wymagane jest połączenie z internetem. BiblesPlugin.LanguageDialog - + Select Language - + Wybierz język - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + OpenLP nie jest w stanie określić języka tego tłumaczenia Biblii. Proszę wybierz język z poniższej listy. - + Language: - + Język: BiblesPlugin.LanguageForm - + You need to choose a language. - + Musisz wybrać jakiś język BiblesPlugin.MediaItem - + Quick - + Szybko - + Find: - + Znajdź: - + Book: - + Księga: - + Chapter: - + Rozdział: - + Verse: - + Werset: - + From: - + Od: - + To: - + Do: - + Text Search - + Wyszukaj tekst: - + Second: - + Druga: - + Scripture Reference - + Odnośnik biblijny - + Toggle to keep or clear the previous results. - + Przycisk, aby zachować, bądź wyczyścić poprzednie rezultaty. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Nie możesz łączyć pojedyńczych i podwójnych wersetów Biblii w wynikach wyszukiwania. Czy chcesz usunąć wyniki wyszukiwania i rozpocząć je od początku? - + Bible not fully loaded. - + Biblia nie jest wczytana w pełni. - + Information - + Informacja - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + Druga Biblia nie zawiera wszystkich wersetów, które występują w głównej Biblii. Jedynie wersety znalezione w obu tłumaczeniach zostaną wyświetlone. %d wersety nie zostały zawarte w wynikach. - + Search Scripture Reference... - + Wpisz odnośnik... - + Search Text... - + Przeszukaj tekst... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Czy jesteś pewien, że chcesz zupełnie usunąć "%s" Biblię z OpenLP? + +Będziesz musiał zaimportować ją ponownie, aby móc jej znowu używać. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Niewłaściwy typ Biblii. Biblie na OpenSong'a mogą być skompresowane. Musisz je rozpakować przed importowaniem. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... - + Importowanie %s %s BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + Wykrywanie kodowania (może to potrwać kilka minut)... - + Importing %s %s... Importing <book name> <chapter>... - + Importowanie %s %s BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - + Wybierz folder kopii zapasowej - + Bible Upgrade Wizard - + Kreator Aktualizacji Biblii - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + Ten kreator pozwoli ci na aktualizację istniejącej Biblii z poprzedniej wersji OpenLP 2. Kliknij poniższy przycisk dalej aby rozpocząć proces aktualizacji. - + Select Backup Directory - + Wybierz folder Kopii Zapasowej - + Please select a backup directory for your Bibles - + Wybierz folder kopii zapasowej dla twoich Biblii - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Poprzednie wydania OpenLP 2.0 nie mogą używać zaktualizowanej Biblii. Za chwilę zostanie utworzona kopia zapasowa obecnych Biblii, więc będziesz mógł po prostu skopiować dane z powrotem do katalogu OpenLP w przypadku gdy będziesz potrzebował powrócić do poprzedniego wydania OpenLP. Instrukcje jak przywrócić pliki można znaleźć w naszym dziale <a href="http://wiki.openlp.org/faq">FAQ Frequently Asked Questions - Najczęściej Zadawane Pytania</a>. - + Please select a backup location for your Bibles. - + Proszę wybrać lokalizację kopii zapasowej twojej Biblii. - + Backup Directory: - + Katalog kopii zapasowej: - + There is no need to backup my Bibles - + Nie ma potrzeby tworzenia kopii zapasowej Biblii - + Select Bibles - + Wybierz Biblię - + Please select the Bibles to upgrade - + Proszę wybrać Biblie do zaktualizowania - + Upgrading - + Aktualizacja - + Please wait while your Bibles are upgraded. - + Proszę czekać podczas aktualizacji Biblii - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + Tworzenie kopii zapasowej zakończone niepowodzeniem. ⏎ Aby utworzyć kopię zapasową twojej Biblii musisz mieć uprawnienia do zapisywania w danym folderze. - + Upgrading Bible %s of %s: "%s" Failed - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Niepowodzenie - + Upgrading Bible %s of %s: "%s" Upgrading ... - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Aktualizowanie w toku... - + Download Error - + Błąd pobierania - + To upgrade your Web Bibles an Internet connection is required. - + Aby aktualizować twoje internetowe Biblie wymagane jest połączenie z internetem. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Aktualizowanie %s.. - + Upgrading Bible %s of %s: "%s" Complete - + Aktualizowanie Biblii %s of %s: "%s" ⏎ Ukończono! - + , %s failed - + %s niepowodzenie - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + Uaktualnianie Biblii(s): %s udana%s +Proszę zauważ, że Biblie internetowo będą pobierane na bieżąco, więc wymagane jest połączenie internetowe. - + Upgrading Bible(s): %s successful%s - + Aktualizowanie Biblii: %s successful%s - + Upgrade failed. - + Aktualizacja zakończona niepowodzeniem. - + You need to specify a backup directory for your Bibles. - + Musisz określić katalog dla kopii zapasowej twojej Biblii. - + Starting upgrade... - + Rozpoczynanie aktualizacji... - + There are no Bibles that need to be upgraded. - + Brak Biblii wymagających aktualizacji. CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>Wtyczna Niestandardowych Slajdów</strong><br />Wtyczka niestandardowych slajdów zapewnia możliwość utworzenia niestandardowych tekstów na slajdach, które mogą być wyświetlane na ekranie w ten sam sposób jak pieśni. Ta wtyczka zapewnia większą swobodę niż wtyczka pieśni. - + Custom Slide name singular - + Slajd niestadardowy - + Custom Slides name plural - + Slajdy niestandardowe - + Custom Slides container title - - - - - Load a new custom slide. - + Slajdy niestandardowe - Import a custom slide. - + Load a new custom slide. + Wczytaj nowy slajd niestandardowy. - Add a new custom slide. - + Import a custom slide. + Importowanie slajdów niestandardowych. + Add a new custom slide. + Dodaj nowy slajd niestandardowy. + + + Edit the selected custom slide. - + Edytuj wybrany slajd niestandardowy. - + Delete the selected custom slide. - + Usuń wybrany slajd niestandardowy - + Preview the selected custom slide. - + Podgląd wybranego slajdu niestandardowego. - + Send the selected custom slide live. - + Wyświetl wybrany slajd niestandardowy na ekranie. - + Add the selected custom slide to the service. - + Dodaj wybrany slajd niestandardowy do planu nabożeństwa. CustomPlugin.CustomTab - + Custom Display - + Niestandardowe wyświetlanie - + Display footer - + Wyświetl stopkę CustomPlugin.EditCustomForm - + Edit Custom Slides - + Edytuj slajdy niestandardowe - + &Title: - + &Tytuł: - + Add a new slide at bottom. - + Dodaj nowy slajd na dole. - + Edit the selected slide. - + Edytuj wybrany slajd. - + Edit all the slides at once. - + Edytuj wszystkie slajdy natychmiast. - + Split a slide into two by inserting a slide splitter. - + Połącz dwa slajdy w jeden za pomocą łączenia slajdów. - + The&me: - + Motyw: - + &Credits: - + &Twórcy: - + You need to type in a title. - + Musisz napisać tytuł. - + You need to add at least one slide - + Musisz dodać przynajmniej jeden slajd - + Ed&it All - + Edytuj wszystko - + Insert Slide - + Wstaw slajd CustomPlugin.EditVerseForm - + Edit Slide - + Edytuj slajd CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + Czy na pewno chcesz usunąć %n zaznaczonych slajdów niestandardowych? + Czy jesteś pewien, że chcesz usunąć %n zaznaczonych slajdów niestandardowych? + Czy na pewno chcesz usunąć %n zaznaczonych slajdów niestandardowych? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - - - - - Image - name singular - + <strong>Wtyczka Obrazy</strong><br />Wtyczka obrazu zapewnia wyświetlanie obrazów. <br /> Jedną z wyróżniających cech tej wtyczki jest możliwość grupowania kilku zdjęć razem z Menadżerem Posługi, dzięki czemu wyświetlanie zdjęć jest łatwiejsze. Można także wykorzystać pętlę czasową do tworzenia pokazu slajdów, który uruchamia się automatycznie. Pozwala ona także na zmianę tła wyświetlanych pieśni. + Image + name singular + Obraz + + + Images name plural - + Obrazy - + Images container title - + Obrazy - + Load a new image. - - - - - Add a new image. - + Wczytaj nowy obraz. - Edit the selected image. - + Add a new image. + Dodaj nowy obraz. - Delete the selected image. - + Edit the selected image. + Edytuj wybrany obraz. - Preview the selected image. - + Delete the selected image. + Usuń zaznaczony obraz. - Send the selected image live. - + Preview the selected image. + Podgląd zaznaczonego obrazu. + Send the selected image live. + Wyświetl wybrany obraz na ekranie. + + + Add the selected image to the service. - + Dodaj zaznaczony obraz do planu nabożeństwa. + ImagePlugin.ExceptionDialog - + Select Attachment - + Wybierz załącznik ImagePlugin.MediaItem - + Select Image(s) - + Wybierz obraz(y) - + You must select an image to delete. - + Musisz wybrać obraz do usunięcia - + You must select an image to replace the background with. - + Musisz zaznaczyć obraz, by zastąpić go na tło. - + Missing Image(s) - + Brakujące obrazy - + The following image(s) no longer exist: %s - + Następujące obrazy nie istnieją: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + Następujące obrazy nie istnieją: %s +Czy mimo to chcesz dodać inne? - + There was a problem replacing your background, the image file "%s" no longer exists. - + Nastąpił problem ze zmianą tła, plik "%s" nie istnieje. - + There was no display item to amend. - + Nie było wyświetlanej pozycji do korekty. ImagesPlugin.ImageTab - + Background Color - + Kolor tła - + Default Color: - + Domyślny kolor: - + Visible background for images with aspect ratio different to screen. - + Widoczne tło dla obrazów o innych proporcjach w stosunku do ekranu. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - name singular - + <strong>Wtyczka Multimedialna</strong><br />Wtyczka Multimedialna zapewnia odtwarzanie audio i video. Media - name plural - + name singular + Multimedia - + + Media + name plural + Multimedia + + + Media container title - + Multimedia - + Load new media. - - - - - Add new media. - + Wczytaj nowe multimedia. - Edit the selected media. - + Add new media. + Dodaj nowe multimedia. - Delete the selected media. - + Edit the selected media. + Edytuj zaznaczone multimedia. - Preview the selected media. - + Delete the selected media. + Usuń zaznaczone multimedia. - Send the selected media live. - + Preview the selected media. + Podgląd zaznaczonych multimediów. + Send the selected media live. + Wyświetl wybrane multimedia na ekranie. + + + Add the selected media to the service. - + Dodaj wybrane multimedia do planu nabożeństwa. MediaPlugin.MediaItem - + Select Media - + Wybierz multimedia - + You must select a media file to delete. - + Musisz zaznaczyć plik multimedialny do usunięcia. - + You must select a media file to replace the background with. - + Musisz zaznaczyć plik, by zastąpić go na tło. - + There was a problem replacing your background, the media file "%s" no longer exists. - + Wystąpił problem ze zmianą tła, plik "%s" nie istnieje. - + Missing Media File - + Brakujący plik multimedialny - + The file %s no longer exists. - + Plik %s nie istnieje - + Videos (%s);;Audio (%s);;%s (*) - + Wideo (%s);;Audio (%s);;%s (*) - + There was no display item to amend. - + Nie było wyświetlanej pozycji do korekty. - + Unsupported File - + Nieobsługiwany format - + Automatic - + Automatyczny - + Use Player: - + Użyj odtwarzacza: MediaPlugin.MediaTab - + Available Media Players - + Dostepne odtwarzacze multimediów - + %s (unavailable) - + %s (niedostępny) - + Player Order - + Porządek modlitw - + Allow media player to be overridden - + Zezwól odtwarzaczowi multimediów być nadrzędnym OpenLP - + Image Files - + Pliki obrazów - + Information - + Informacja - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + Format Biblii został zmieniony +Musisz uaktualnić istniejące Biblie. +Czy OpenLP ma to zrobić teraz? OpenLP.AboutForm - + Credits - + Zasługi - + License - + Licencja - - Contribute - - - - + build %s - + zbuduj %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + Ten program jest wolnym oprogramowaniem; możesz go rozpowszechniać i/albo modyfikować pod warunkami Powszechnej Licencji Publicznej GNU, wydanej przez Fundację Wolnego Oprogramowania - według wersji drugiej tej Licencji. - + This program 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 below for more details. - + Program został rozpowszechniony z nadzieją, iż będzie on użyteczny, lecz BEZ ŻADNEJ GWARANCJI; nawet bez sugerowania HANDLOWEJ gwarancji lub PRZYDATNOŚCI DO OKREŚLONEGO CELU. Więcej informacji poniżej. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Otwartoźródłowy Edytor Pieśni + +OpenLP jest wolnym programem przeznaczonym do projekcji pieśni lub puszczania prezentacji w kościele, umożliwia puszczenie pieśni, tekstów Biblijnych, filmów, zdjęć a nawet prezentacji (jeśli Impress, PowerPoint lub PowerPoint Viewer jest zainstalowany) na komputerze przez projektor. + +Dowiedz się więcej o OpenLP: http://openlp.org/ + +OpenLP jest pisany i wspierany przez wolontariuszy. Jeśli chciałbyś, aby więcej wolnych, Chrześcijańskich programów było pisanych, proszę rozważ współpracę przez naciśnięcie poniższego przycisku. + + + + Volunteer + Ochotnicy + + + Project Lead %s @@ -2024,12 +2077,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2038,7 +2099,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2046,13 +2107,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2067,357 +2130,394 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + OpenLP.AdvancedTab - + UI Settings - + Ustawienia interfejsu - + Number of recent files to display: - + Liczba ostatnio używanych plików do wyświetlenia: - + Remember active media manager tab on startup - + Zapamiętaj aktywną kartę menedżera multimediów - + Double-click to send items straight to live - + Kliknij podwójnie, aby wyświetlić pozycje na ekranie - + Expand new service items on creation - + Rozszerz pozycje nowego planu do tworzenia - + Enable application exit confirmation - + Zezwól aplikacji potwierdzenie wyjścia - + Mouse Cursor - + Kursor myszy - + Hide mouse cursor when over display window - + Ukryj kursor myszy, gdy pojawia się wyświetlający ekran - + Default Image - + Domyślny obraz - + Background color: - + Kolor tła: - + Image file: - + Plik obrazu: - + Open File - + Otwórz plik - + Advanced - + Zaawansowane - + Preview items when clicked in Media Manager - + Podgląd zaznaczonych pozycji w Menedżerze Multimediów - + Click to select a color. - + Kliknij aby wybrać kolor. - + Browse for an image file to display. - + Wybierz plik obrazu do wyświetlenia. - + Revert to the default OpenLP logo. - + Powróć do domyślnego logo OpenLP. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Plan %Y-%m-%d %H-%M - + Default Service Name - + Domyślna nazwa planu nabożeństwa - + Enable default service name - + Ustaw domyślną nazwę planu nabożeństwa - + Date and Time: - + Czas i data: - + Monday - + Poniedziałek - + Tuesday - + Wtorek - + Wednesday - + Środa - + Thurdsday - + Czwartek - + Friday - + Piątek - + Saturday - + Sobota - + Sunday - + Niedziela - + Now - + Teraz - + Time when usual service starts. - + Standardowa godzina rozpoczęcia. - + Name: - + Imię: - + Consult the OpenLP manual for usage. - + Zaznajom się z instrukcją obsługi OpenLP. - + Revert to the default service name "%s". - + Powróć do domyślnej nazwy planu nabożeństwa "%s".. - + Example: - + Przykład: - + X11 - + X11 Bypass X11 Window Manager - + Bypass X11 Window Manager - + Syntax error. - + Błąd składni. - + Data Location - + Lokalizacja danych - + Current path: - + Aktualna ścieżka: - + Custom path: - + Inna ścieżka: - + Browse for new data file location. - + Przeglądaj nowy katalog danych. - + Set the data location to the default. - + Ustaw pliki lokalizacji jako domyślne. - + Cancel - + Anuluj - + Cancel OpenLP data directory location change. - + Anuluj zmianę lokalizacji katalogu OpenLP. - + Copy data to new location. - + Skopiuj dane do nowej lokalizacji. - + Copy the OpenLP data files to the new location. - + Skopiuj pliki danych OpenLP do nowej lokalizacji. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>Uwaga:</strong> Nowa lokalizacja katalogu danych zawiera dane z plikami OpenLP. Te pliki będą zastąpione podczas kopiowania. - + Data Directory Error - + Błąd katalogu danych - + Select Data Directory Location - + Zaznacz katalog lokalizacji danych - + Confirm Data Directory Change - + Potwierdź zmianę katalogu plików - + Reset Data Directory - + Zresetuj katalog z danymi - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Czy jesteś pewien, że chcesz zmienić lokalizację katalogu z danymi OpenLP na domyślne? + +Katalog z danymi zostanie przywrucony jak OpenLP zostanie zamknięty. - + Overwrite Existing Data - + Nadpisz istniejące dane + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. Jeśli nowa lokalizacja jest na zewnętrznym urządzeniu, to musi być ono podłączone. + +Naciśnij "Nie", aby zatrzymać ładowanie programu. Dzięki temu będziesz mógł naprawić problem. + +Naciśnij "Tak", aby zresetować katalog z danymi w domyślnej lokalizacji. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Czy jesteś pewien, że chcesz zmienić lokalizację katalogu OpenLP z danymi na: + +%s + +Katalog z danymi zostanie zmieniony jak OpenLP zostanie zamknięty. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + Uwaga: + +Lokalizacja, którą wybrałeś + +%s + +okazuje się zawierać pliki OpenLP. Czy chcesz zastąpić te pliki obecnymi danymi? OpenLP.ExceptionDialog - + Error Occurred - + Wystąpił błąd - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + Oops! OpenLP napotkał problem i już nie wstał... Poniższe pole tekstowe zawiera informacje, które mogą być pomocne dla programistów OpenLP. Proszę wysłać e-mail na adres bugs@openlp.org wraz z dokładnym opisem czynności jakie były wykonywane w momencie wystąpienia błędu. - + Send E-Mail - + Wyślij e-mail - + Save to File - + Zapisz do pliku - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + Proszę wprowadzić opis czynności, jakie były wykonywane w momencie wystąpienia błędu ⏎ (Minimum 20 znaków) - + Attach File - + Załącz plik - + Description characters to enter : %s - + Opis znaku do wpisania: %s OpenLP.ExceptionForm - + Platform: %s - + Platforma: %s + - + Save Crash Report - + Zapisz raport o awarii - + Text files (*.txt *.log *.text) - + Pliki tekstowe (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2432,10 +2532,23 @@ Version: %s --- Library Versions --- %s - + **Raport błędu OpenLP** +Wersja: %s + +--- Szczegóły wyjątku. --- + +%s + + --- Exception Traceback --- +%s +--- Informacje o systemie --- +%s +--- Wersje bibliotek --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2451,4722 +2564,4860 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + **Raport błędu OpenLP** +Wersja: %s + +--- Szczegóły wyjątku. --- + +%s + + --- Exception Traceback --- +%s +--- Informacje o systemie --- +%s +--- Wersje bibliotek --- +%s OpenLP.FileRenameForm - + File Rename - + Zmiana nazwy pliku - + New File Name: - + Nowa nazwa pliku: - + File Copy - + Kopiuj plik OpenLP.FirstTimeLanguageForm - + Select Translation - + Wybierz tłumaczenie - + Choose the translation you'd like to use in OpenLP. - + Wybierz tłumaczenie, z którego chcesz korzystać w OpenLP. - + Translation: - + Tłumaczenie: OpenLP.FirstTimeWizard - + Songs - + Pieśni - + First Time Wizard - + Kreator pierwszego razu - + Welcome to the First Time Wizard - + Witaj w Kreatorze pierwszego razu - + Activate required Plugins - + Aktywuj wymagane wtyczki - + Select the Plugins you wish to use. - - - - - Bible - + Wybierz wtyczki, których chcesz używać. - Images - + Bible + Biblia - - Presentations - + + Images + Obrazy - Media (Audio and Video) - + Presentations + Prezentacje - Allow remote access - + Media (Audio and Video) + Multimedia (pliki dźwiękowe i filmy) - Monitor Song Usage - + Allow remote access + Zezwól na zdalny dostęp - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - + Monitor Song Usage + Monitor użycia pieśni - No Internet Connection - - - - - Unable to detect an Internet connection. - - - - - Sample Songs - - - - - Select and download public domain songs. - - - - - Sample Bibles - - - - - Select and download free Bibles. - - - - - Sample Themes - - - - - Select and download sample themes. - + Allow Alerts + Komunikaty - Set up default settings to be used by OpenLP. - + Default Settings + Ustawienia domyślne + + + + Downloading %s... + Pobieranie %s... + + + + Download complete. Click the finish button to start OpenLP. + Pobieranie zakończone. Naciśnij przycisk Zakończ, aby włączyć OpenLP. + + + + Enabling selected plugins... + Aktywowanie wybranych wtyczek... + + + + No Internet Connection + Brak połączenia z internetem + + + + Unable to detect an Internet connection. + Nie można wykryć połączenia internetowego. + + + + Sample Songs + Przykładowe pieśni + + + + Select and download public domain songs. + Zaznacz i pobierz darmowe pieśni. + + + + Sample Bibles + Przykładowe Biblie + + + + Select and download free Bibles. + Zaznacz i pobierz darmowe Biblie. + + + + Sample Themes + Przykładowe motywy + + + + Select and download sample themes. + Zaznacz i pobierz przykładowe motywy. - Default output display: - + Set up default settings to be used by OpenLP. + Ustal domyślne ustawienia dla OpenLP. - Select default theme: - + Default output display: + Domyślny ekran wyjściowy: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + Wybierz domyślny motyw: - Finish - + Starting configuration process... + Rozpoczynanie procesu konfiguracji... - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + Ten kreator pomoże ci skonfigurować OpenLP do pierwszego użycia. Kliknij na przycisk Dalej aby rozpocząć. + + + + Setting Up And Downloading + Konfigurowanie i Pobieranie + + + + Please wait while OpenLP is set up and your data is downloaded. + Proszę czekać - OpenLP konfiguruje i pobiera dane + + + + Setting Up + Konfigurowanie + + + + Click the finish button to start OpenLP. + Naciśnij przycisk Zakończ, aby włączyć OpenLP. + + + + Download complete. Click the finish button to return to OpenLP. + Pobieranie zakończone. Naciśnij przycisk Zakończ, aby wrócić do OpenLP. + + + + Click the finish button to return to OpenLP. + Naciśnij przycisk Zakończ, aby wrócić do OpenLP. + + + + Custom Slides + Slajdy niestandardowe + + + + Finish + Koniec + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Brak połączenia internetowego. Kreator pierwszego razu potrzebuje połączenia z internetem, aby móc pobierać przykładowe pieśni, Biblie i motywy. Naciśnij przycisk Zakończ, aby włączyć OpenLP z wstępnymi ustawieniami, bez przykładowych danych. + +Aby uruchomić Kreator pierwszego razu i zaimportować przykładowe dane później, sprawdź połączenie internetowe i uruchom ponownie ten kreator przez zaznaczanie "Narzędzie/Włącz kreator pierwszego razu" w OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +Aby anulować Kreator pierwszego uruchomienia zupełnie (i nie włączyć OpenLP), naciśnij Anuluj teraz. OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Konfiguruj znaczniki formatowania - + Edit Selection - + Edytuj zaznaczenie - + Save - + Zapisz - + Description - + Opis - + Tag - + Znacznik - + Start HTML - + Początek HTML - + End HTML - + Koniec HTML OpenLP.FormattingTagForm - + Update Error - + Błąd aktualizacji - + Tag "n" already defined. - + Znacznik "n" już został zdefiniowany. - + New Tag - + Nowy znacznik - + <HTML here> - + <HTML here> - + </and here> - + </and here> - + Tag %s already defined. - + Znacznik %s już został zdefiniowany. OpenLP.FormattingTags - + Red - + Czerwony - + Black - + Czarny - + Blue - + Niebieski - + Yellow - + Żółty - + Green - + Zielony - + Pink - + Różowy - + Orange - + Pomarańczowy - + Purple - + Fioletowy - + White - + Biały - + Superscript - + Indeks górny - + Subscript - + Indeks dolny - + Paragraph - + Paragraf - + Bold - + Pogrubienie - + Italics - + Kursywa - + Underline - + Podkreślenie - + Break - + Przerwa OpenLP.GeneralTab - - - General - - + General + Ekrany + + + Monitors - + Ekrany - + Select monitor for output display: - + Wybierz ekran wyjściowy: - + Display if a single screen - + Wyświetl, jeśli jest tylko jeden ekran - + Application Startup - + Startowanie aplikacji - + Show blank screen warning - + Pokaż ostrzeżenie o braku ekranu - + Automatically open the last service - + Automatycznie otwórz ostatni plan nabożeństwa - + Show the splash screen - + Pokaż ekran powitalny - + Application Settings - + Ustawienia aplikacji - + Prompt to save before starting a new service - + Proponuj zapisanie przed tworzeniem nowego planu - + Automatically preview next item in service - - - - - sec - + Automatyczny podgląd następnej pozycji z planu nabożeństw + sec + sek + + + CCLI Details - + Szczegóły CCLI - + SongSelect username: - + Użytkownik SongSelect: - + SongSelect password: - - - - - X - + Hasło SongSelect: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Wysokość - Background Audio - + Width + Szerokość - + + Check for updates to OpenLP + Sprawdź aktualizację OpenLP + + + + Unblank display when adding new live item + Wyłącz wygaszenie ekranu podczas wyświetlania nowego elementu na ekranie + + + + Timed slide interval: + Czas zmieniania slajdów: + + + + Background Audio + Tło audio + + + Start background audio paused - + Rozpocznij granie muzyki w tle Service Item Slide Limits - + Limity pozycji slajdów planu nabożeństwa - + Override display position: - + Nadrzędna pozycja wyświetlania: - + Repeat track list - + Powtarzaj listę utworów Behavior of next/previous on the last/first slide: - + Zachowanie następnego/poprzedniego slajdu w ostatnim/pierwszym slajdzie: &Remain on Slide - + Pozostaw na slajdzie &Wrap around - + &Wrap around &Move to next/previous service item - + Przenieś do następnej/poprzedniej pozycji nabożeństwa. OpenLP.LanguageManager - + Language - + Język - + Please restart OpenLP to use your new language setting. - + Proszę zresetować OpenLP, aby móc używać nowego języka. OpenLP.MainDisplay - + OpenLP Display - + Wyświetlacz OpenLP OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - &Tools - + &File + &Plik - &Settings - + &Import + &Importuj - - &Language - - - - - &Help - + + &Export + &Eksportuj - Media Manager - + &View + &Widok + + + + M&ode + &Tryb - Service Manager - + &Tools + &Narzędzia - - Theme Manager - + + &Settings + &Ustawienia + + + + &Language + &Język - &New - + &Help + Pomo&c + + + + Media Manager + Menedżer Multimediów - &Open - + Service Manager + Menedżer planu nabożeństwa - Open an existing service. - + Theme Manager + Menedżer Motywów + &New + &Nowy + + + + &Open + &Otwórz + + + + Open an existing service. + Otwórz istniejący plan nabożeństwa + + + &Save - + &Zapisz - + Save the current service to disk. - + Zapisz obecny plan nabożeństwa na dysk. - + Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - + Zapisz &jako... - E&xit - + Save Service As + Zapisz plan nabożeństwa jako + Save the current service under a new name. + Zapisz obecny plan nabożeństwa pod nową nazwą + + + + E&xit + &Wyjście + + + Quit OpenLP - + Wyjdź z OpenLP - + &Theme - + &Motyw - + &Configure OpenLP... - + Konfiguruj &OpenLP... - + &Media Manager - + &Menedżer Multimediów - + Toggle Media Manager - + Przełącz Menedżera Multimediów - + Toggle the visibility of the media manager. - + Przełącz widoczność menedżera multimediów. - + &Theme Manager - + Menadżer mo&tywów - + Toggle Theme Manager - + Przełącz menedżera motywów. - + Toggle the visibility of the theme manager. - + Przełącz widoczność menedżera motywów. - + &Service Manager - + &Plan nabożeństw - + Toggle Service Manager - + Przełącz menedżera planu nabożeństwa - + Toggle the visibility of the service manager. - + Przełącz widoczność menedżera planu nabożeństwa. - + &Preview Panel - + Panel p&odglądu - + Toggle Preview Panel - + Przełącz panel podglądu - + Toggle the visibility of the preview panel. - + Przełącz widoczność panelu podglądu. - + &Live Panel - + Panel &ekranu - + Toggle Live Panel - - - - - Toggle the visibility of the live panel. - - - - - &Plugin List - - - - - List the Plugins - - - - - &User Guide - - - - - &About - + Przełącz panel ekranu - More information about OpenLP - + Toggle the visibility of the live panel. + Przełącz widoczność panelu ekranu. - - &Online Help - + + &Plugin List + &Lista wtyczek + + + + List the Plugins + Lista wtyczek + + + + &User Guide + Podręcznik użytkownika + + + + &About + &O programie + More information about OpenLP + Więcej informacji o OpenLP + + + + &Online Help + &Pomoc online + + + &Web Site - + &Strona internetowa - + Use the system language, if available. - + Użyj języka systemu, jeśli jest dostępny. - + Set the interface language to %s - + Ustaw język interfejsu na %s - + Add &Tool... - + Dodaj narzędzie... - + Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - + Dodaj aplikację do listy narzędzi. + &Default + &Domyślny + + + + Set the view mode back to the default. + Przywróć tryb podglądu do domyślnych ustawień. + + + + &Setup + &Szybki + + + + Set the view mode to Setup. + Ustaw tryb widoku w konfiguracji. + + + &Live - + &Ekran - + Set the view mode to Live. - + Ustaw tryb widoku na ekranie. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + Wersja %s OpenLP jest teraz dostępna do pobrania (obecnie używasz wersji %s). + +Możesz pobrać najnowszą wersję z http://openlp.org/. - + OpenLP Version Updated - + Wersja OpenLP zaktualizowana - + OpenLP Main Display Blanked - + Główny Ekran OpenLP Wygaszony - + The Main Display has been blanked out - + Główny Ekran został odłączony - + Default Theme: %s - + Domyślny motyw: %s - + English Please add the name of your language here Polish - + Configure &Shortcuts... - + Konfiguruj &skróty... - + Close OpenLP - + Zamknij OpenLP - + Are you sure you want to close OpenLP? - + Czy na pewno chcesz zamknąć OpenLP? - + Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - + &Otwórz katalog programu... + Open the folder where songs, bibles and other data resides. + Otwórz folder w którym pieśni, Biblie i inne dane są przechowywane. + + + + &Autodetect + &Wykryj automatycznie + + + Update Theme Images - + Aktualizuj obrazy motywów + + + + Update the preview images for all themes. + Zaktualizuj obrazy podglądu dla wszystkich motywów. + + + + Print the current service. + Drukuj obecny plan nabożeństwa + + + + &Recent Files + Ostatnio &używane + + + + L&ock Panels + &Zablokuj panele + + + + Prevent the panels being moved. + Zapobiegaj przenoszeniu paneli. - Update the preview images for all themes. - - - - - Print the current service. - - - - - &Recent Files - - - - - L&ock Panels - - - - - Prevent the panels being moved. - - - - Re-run First Time Wizard - + Włącz Kreator pierwszego razu - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Włączanie Kreator pierwszego razu, importowanie pieśni, Biblii i motywów. - + Re-run First Time Wizard? - + Włączyć Kreator pierwszego razu? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Czy jesteś pewny otwierania po raz drugi Kreatora pierwszego razu? + +Otwieranie go ponownie może spowodować zmiany w obecnej konfiguracji OpenLP, dodać pieśni do istniejącej już listy i zmienić domyślny motyw. - + Clear List Clear List of recent files - + Wyczyść listę - + Clear the list of recent files. - + Wyczyść listę ostatnich plików. - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + &Konfiguruj znaczniki formatowania... + Export OpenLP settings to a specified *.config file + Eksportuj ustawienia OpenLP do określonego pliku *.config + + + Settings - + Ustawienia - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Importuj ustawienia OpenLP z określonego pliku *.config, wcześniej wyeksportowanego na tym, bądź innym urządzeniu. - + Import settings? - + Importować ustawienia? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Czy na pewno chcesz importować ustawienia? + +Importowanie ustawień wprowadzi stałe zmiany do obecnej konfiguracji OpenLP. + +Importowanie niewłaściwych ustawień może spowodować niewłaściwe zachowanie lub OpenLP zakończy niespodziewanie swoje działanie. - + Open File - + Otwórz plik - + OpenLP Export Settings Files (*.conf) - + Wyeksportowane pliki ustawień OpenLP (*.conf) - + Import settings - + Importowanie ustawień - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP teraz się wyłączy. Importowane ustawienia będą zastosowane następnym razem po włączeniu OpenLP - + Export Settings File - + Eksportowanie ustawień - + OpenLP Export Settings File (*.conf) - + Eksport pliku ustawień OpenLP (*.conf) - + New Data Directory Error - + Błąd nowego katalogu z danymi + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Wybrany plik wydaje się być uszkodzonym plikiem ustawień OpenLP. + +Sekcja [%s] nie jest odpowiedni + +Proces został zakończony, nie nastąpiły żadne zmiany. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopiowanie danych OpenLP do nowej lokalizacji - %s - Proszę zaczekać, aż zakończenie + + + + OpenLP Data directory copy failed + +%s + Kopiowanie katalogu z danymi zakończone niepowodzeniem + +%s OpenLP.Manager - + Database Error - + Błąd bazy danych - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Wczytywana baza danych została stworzona we wcześniejszych wersjach OpenLP. Wersja bazy danych: %d, podczas gdy OpenLP przewiduje wersji %d. Baza danych nie zostanie wczytana. + +Baza danych: %s - + OpenLP cannot load your database. Database: %s - + OpenLP nie może wczytać Twojej bazy danych. + +Baza danych: %s OpenLP.MediaManagerItem - + No Items Selected - + Nie wybrano żadnych pozycji - + &Add to selected Service Item - + Dodaj do zaznaczonego elementy planu nabożeństwa - + You must select one or more items to preview. - + Musisz zaznaczyć przynajmniej jeden element aby uruchomić podgląd. - + You must select one or more items to send live. - + Musisz zaznaczyć przynajmniej jeden element aby pokazać go na ekranie. - + You must select one or more items. - + Musisz zaznaczyć jeden lub więcej elementów. - + You must select an existing service item to add to. - + Musisz wybrać istniejącą pozycję, by ją dodać. - + Invalid Service Item - + Niewłaściwy element planu - + You must select a %s service item. - + Musisz zaznaczyć %s element planu nabożeństwa. - + You must select one or more items to add. - + Musisz zaznaczyć jeden lub więcej elementów, aby to dodać. - + No Search Results - + Brak wyników wyszukiwania - + Invalid File Type - + Zły rodzaj pliku - + Invalid File %s. Suffix not supported - + Niewłaściwy plik %s. +Nieobsługiwany przyrostek. - + &Clone - + &Klonuj - + Duplicate files were found on import and were ignored. - + Podwójne pliki zostały znalezione i zignorowane. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + Brakuje znacznika <lyrics>. - + <verse> tag is missing. - + Brakuje znacznika <verse>. OpenLP.PluginForm - + Plugin List - + Lista wtyczek - + Plugin Details - + Wtyczka szczegółów - + Status: - + Status: - + Active - + Aktywny - + Inactive - + Nieaktywny - + %s (Inactive) - + %s (Nieaktywny) - + %s (Active) - + %s (Aktywny) - + %s (Disabled) - + %s (Uszkodzony) OpenLP.PrintServiceDialog - + Fit Page - + Dopasowany do strony - + Fit Width - + Dopasowany do szerokości OpenLP.PrintServiceForm - + Options - + Opcje - + Copy - + Kopiuj - + Copy as HTML - + Kopiuj jako HTML - + Zoom In - + Powiększ - + Zoom Out - + Pomniejsz - + Zoom Original - + Oryginalny rozmiar - + Other Options - + Inne opcje - + Include slide text if available - + Przedstaw również slajd z tekstem, jeśli jest dostępny - + Include service item notes - + Przedstaw również notatki - + Include play length of media items - + Przedstaw również czas trwania multimediów. - + Add page break before each text item - + Dodaj stronę przerwy przed każdą pozycją tekstową - + Service Sheet - + Plan nabożeństwa - + Print - - - - - Title: - + Drukuj + Title: + Tytuł: + + + Custom Footer Text: - + Niestandardowy tekst stopki: OpenLP.ScreenList - + Screen - + Ekran - + primary - + główny OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Start</strong>: %s - + <strong>Length</strong>: %s - + <strong>Długość</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Zmień kolejność pozycji w planie nabożeństwa OpenLP.ServiceManager - + Move to &top - + Przenieś na górę - + Move item to the top of the service. - + Przenieś pozycję na górę listy. - + Move &up - + Przenieś wyżej - + Move item up one position in the service. - + Przenieś pozycję o jedną w górę. - + Move &down - + Przenieś niżej - + Move item down one position in the service. - + Przenieś pozycję o jedną w dół - + Move to &bottom - + Przenieś na dół - + Move item to the end of the service. - + Przenieś pozycję na dół listy - + &Delete From Service - + &Usuń z planu - + Delete the selected item from the service. - + Usuń wybraną pozycję z planu. - + &Add New Item - + Dodaj nową pozycję - + &Add to Selected Item - + Dodaj do wybranej pozycji - + &Edit Item - + &Edytuj element - + &Reorder Item - + &Zmień kolejność - + &Notes - + &Notatki - + &Change Item Theme - + Zmień &motyw dla elementu - + OpenLP Service Files (*.osz) - + OpenLP pliki planu (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Plik nie jest właściwym planem nabożeństwa. +Kodowanie nie jest UTF-8. - + File is not a valid service. - + Plik nie odpowiada planowi nabożeństwa. - + Missing Display Handler - + Brak sterownika wyświetlacza - + Your item cannot be displayed as there is no handler to display it - + Pozycja nie może zostać wyświetlona, jeśli nie ma właściwych sterowników - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Pozycja nie może zostać wyświetlona, jeśli brakuje wymaganej wtyczki lub jest nieaktywna - + &Expand all - + Rozwiń wszystko - + Expand all the service items. - + Rozwiń wszystkie pozycje planu. - + &Collapse all - + Zwiń wszystko - + Collapse all the service items. - + Zwiń wszystkie pozycje planu. - + Open File - + Otwórz plik - + Moves the selection down the window. - + Przesuń zaznaczenie w dół okna. - + Move up - + Przesuń w górę - + Moves the selection up the window. - + Przesuń zaznaczenie w górę okna. - + Go Live - + Wyświetl na ekranie - + Send the selected item to Live. - + Wyślij wybrane pozycje na ekran główny - + &Start Time - + Czas startu - + Show &Preview - + &Podgląd - + Modified Service - + Zmodyfikowany plan - + The current service has been modified. Would you like to save this service? - + Obecny plan nabożeństwa został zmodyfikowany. Czy chciałbyś go zapisać? - + Custom Service Notes: - + Notatki z planu - + Notes: - + Notatki - + Playing time: - + Czas odtwarzania: - + Untitled Service - + Plan bez tytułu - + File could not be opened because it is corrupt. - + Plik nie może być otwarty, ponieważ jest uszkodzony. - + Empty File - + Pusty plik - + This service file does not contain any data. - + Ten plik nie zawiera danych. - + Corrupt File - + Uszkodzony plik - + Load an existing service. - + Otwórz istniejący plan nabożeństwa. - + Save this service. - + Zapisz plan nabożeństwa. - + Select a theme for the service. - + Wybierz motyw dla planu nabożeństwa. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Plik jest uszkodzony lub nie jest plikiem OpenLP 2.0 - - Service File Missing - - - - + Slide theme - + Motyw slajdu - + Notes - + Notatki - + Edit - + Edytuj - + Service copy only - + Plan tylko do kopiowania - + Error Saving File - + Błąd zapisywania pliku - + There was an error saving your file. - + Błąd w zapisywaniu Twojego pliku. + + + + Service File(s) Missing + + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + OpenLP.ServiceNoteForm - + Service Item Notes - + Notatki z planu OpenLP.SettingsForm - + Configure OpenLP - + Konfiguruj OpenLP OpenLP.ShortcutListDialog - + Action - + Akcja - + Shortcut - + Skróty - + Duplicate Shortcut - + Duplikuj skróty - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Skrót "%s" już jest przypisany innemu działaniu, proszę użyć innego skrótu - + Alternate - + Zastępca - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Wybierz akcję i wciśnij jeden z przycisków poniżej by stwarzać odpowiednio podstawowe i alternatywne skróty. - + Default - + Domyślny - + Custom - + Niestandardowy - + Capture shortcut. - + Stwórz skróty. - + Restore the default shortcut of this action. - + Przywróć domyślny skrót tej akcji. - + Restore Default Shortcuts - + Przywróć domyślne skróty - + Do you want to restore all shortcuts to their defaults? - + Czy chcesz przywrócić domyślne skróty? - + Configure Shortcuts - + Konfiguruj skróty OpenLP.SlideController - + Hide - + Ukryj - + Go To - + Idź do - + Blank Screen - + Wygaś Ekran - + Blank to Theme - + Włącz motyw - + Show Desktop - + Pokaż pulpit - + Previous Service - + Poprzedni plan - + Next Service - + Następny plan - + Escape Item - + Olej element - + Move to previous. - + Przenieś do poprzednich. - + Move to next. - + Przenieś do następnych. - + Play Slides - + Uruchom slajdy - + Delay between slides in seconds. - + Opóźnienie między slajdami w sekundach - + Move to live. - + Przenieś na ekran. - + Add to Service. - + Dodaj do planu nabożeństwa. - + Edit and reload song preview. - + Edytuj i załaduj ponownie podgląd pieśni. - + Start playing media. - + Zacznij odtwarzanie multimediów. - + Pause audio. - + Przerwij audio. - + Pause playing media. - + Przerwij odtwarzanie multimediów. - + Stop playing media. - + Zatrzymaj odtwarzanie multimediów. - + Video position. - + Pozycja wideo. - + Audio Volume. - - - - - Go to "Verse" - + Głośność. - Go to "Chorus" - + Go to "Verse" + Idź do "Zwrotka" - Go to "Bridge" - + Go to "Chorus" + Idź do "Refren" - Go to "Pre-Chorus" - + Go to "Bridge" + Idź do "Bridge" - - Go to "Intro" - + + Go to "Pre-Chorus" + Idź do "Pre-Chorus" - Go to "Ending" - + Go to "Intro" + Idź do "Wejście" + Go to "Ending" + Idź do "Zakończenie" + + + Go to "Other" - + Idź do "Inne" - + Previous Slide - + Poprzedni slajd - + Next Slide - + Następny slajd - + Pause Audio - + Przerwij audio - + Background Audio - + Tło audio. - + Go to next audio track. - + Przejdź do następnego utworu. - + Tracks - + Utwór OpenLP.SpellTextEdit - + Spelling Suggestions - + Sugestie pisowni - + Formatting Tags - + Znaczniki formatowania - + Language: - + Język: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Godziny: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minuty: - Start - + Seconds: + Sekundy: + + + + Item Start and Finish Time + Czas rozpoczęcia i zakończenia - Finish - + Start + Rozpoczęcie + Finish + Zakończenie + + + Length - + Długość - + Time Validation Error - + Błąd weryfikacji czasu - + Finish time is set after the end of the media item - + Czas zakończenia jest ustawiony po zakończeniu multimediów - + Start time is after the finish time of the media item - + Czas rozpoczęcia jest ustawiony po zakończeniu multimediów - + Theme Layout - + Układ motywu - + The blue box shows the main area. - + Niebieski kolor wyznacza główny obszar. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + Czerwony kolor wyznacza stopkę. OpenLP.ThemeManager - + Create a new theme. - + Stwórz nowy motyw - + Edit Theme - + Edytuj motyw - + Edit a theme. - + Edytuj motyw. - + Delete Theme - + Usuń motyw - + Delete a theme. - + Usuń motyw. - + Import Theme - + Importuj motyw - + Import a theme. - + Importuj motyw. - + Export Theme - + Eksportuj motyw - + Export a theme. - + Eksportuj motyw. - + &Edit Theme - + &Edytuj motyw - + &Delete Theme - + &Usuń motyw - + Set As &Global Default - + Ustaw jako &domyślny - + %s (default) - + %s (domyślny) - + You must select a theme to edit. - + Musisz zaznaczyć motyw do edycji. - + You are unable to delete the default theme. - + Nie możesz usunąć domyślnego motywu. - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + Motyw %s jest użyty w %s wtyczce. + You have not selected a theme. + Nie wybrałeś motywu. + + + Save Theme - (%s) - + Zapisz motyw -(%s) - + Theme Exported - + Motyw wyeksportowano - + Your theme has been successfully exported. - + Motyw został pomyślnie wyeksportowany. - + Theme Export Failed - + Eksport motywu się nie powiódł. - + Your theme could not be exported due to an error. - + Z powodu błędu motyw nie może zostać wyeksportowany. - + Select Theme Import File - + Wybierz plik importu motywu - + File is not a valid theme. - + Plik nie jest właściwym motywem. - + &Copy Theme - + &Kopiuj motyw - + &Rename Theme - + &Zmień nazwę motywu - + &Export Theme - + Eksportuj &motyw - + You must select a theme to rename. - + Musisz zaznaczyć motyw, aby zmienić jego nazwę. - + Rename Confirmation - + Potwierdzenie zmiany nazwy - + Rename %s theme? - + Zmienić nazwę motywu %s? - + You must select a theme to delete. - + Musisz zaznaczyć moty do usunięcia. - + Delete Confirmation - + Usuń potwierdzenie - + Delete %s theme? - + Usunąć motyw %s? - + Validation Error - + Błąd weryfikacji - + A theme with this name already exists. - + Motyw o tej nazwie już istnieje. - + OpenLP Themes (*.theme *.otz) - + Motywy OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Kopia %s - + Theme Already Exists - + Motyw już istnieje + + + + Theme %s already exists. Do you want to replace it? + Motyw %s już istnieje. Czy chcesz go zastąpić? OpenLP.ThemeWizard - + Theme Wizard - + Kreator Motywów - + Welcome to the Theme Wizard - + Witaj w kreatorze motywów - + Set Up Background - + Ustaw tło - + Set up your theme's background according to the parameters below. - + Ustaw tło motywu stosownie do poniższych parametrów. - + Background type: - + Typ tła: - + Solid Color - + Jednolity kolor - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + Gradient + Color: + Kolor: + + + + Gradient: + Gradient: + + + + Horizontal + Poziomo + + + + Vertical + Pionowo + + + + Circular + Pierścieniowy + + + + Top Left - Bottom Right + Górne lewo - Dolne prawo + + + + Bottom Left - Top Right + Dolne lewo - Górne prawo + + + + Main Area Font Details + Szczegóły czcionki głównego obszaru + + + + Define the font and display characteristics for the Display text + Zdefiniuj czcionkę i wyznacz właściwości wyświetlanego tekstu + + + + Font: + Czcionka: + + + Size: - + Rozmiar: - + Line Spacing: - + Odstępy między linijkami: - + &Outline: - + Kontur: - + &Shadow: - - - - - Bold - + Cień: + Bold + Pogrubienie + + + Italic - + Kursywa - + Footer Area Font Details - + Szczegóły czcionki obszaru stopki - + Define the font and display characteristics for the Footer text - + Zdefiniuj czcionki i wyświetlane właściwości stopki - + Text Formatting Details - + Szczegóły formatowania tekstu - + Allows additional display formatting information to be defined - + Pozwala na edycję dodatkowych parametrów formatowania tekstu. - + Horizontal Align: - + Wyrównanie poziome: - + Left - + Do lewej - + Right - + Do prawej - + Center - + Do środka - + Output Area Locations - + Lokalizacje obszaru wyjściowego - + Allows you to change and move the main and footer areas. - + Pozwala Ci na zmianę i przeniesienie obszaru głównego i stopki. - + &Main Area - + Obszar &główny - + &Use default location - + &Użyj domyślnej lokalizacji - + X position: - + pozycja X: - + px - + px - + Y position: - + pozycja Y: - + Width: - + Szerokość: - + Height: - + Wysokość: - + Use default location - + Użyj domyślnej lokalizacji - + Theme name: - + Nazwa motywu: - + Edit Theme - %s - + Edytuj motyw - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Ten kreator pomoże Ci stworzyć i edytować motywy. Kliknij przycisk poniżej, by zacząć przygotowywać twoje tło. - + Transitions: - + Przejścia: - + &Footer Area - + Obszar &stopki - + Starting color: - + Kolor początkowy: - + Ending color: - + Kolor końcowy: - + Background color: - + Kolor tła: - + Justify - + Justuj - + Layout Preview - + Podgląd układu - + Transparent - + Przezroczysty - + Preview and Save - + Podgląd i Zapis - + Preview the theme and save it. - + Obejrzyj i zapisz motyw. + + + + (approximately %d lines per slide) + (maksymalnie %d linijek na slajd) + + + + Background Image Empty + Pusty obraz tła + + + + You have not selected a background image. Please select one before continuing. + Nie podałeś obrazka tła. Proszę, wybierz jeden zanim kontynuujesz. + + + + Select Image + Wybierz obraz + + + + Theme Name Missing + Brakująca nazwa motywu + + + + There is no name for this theme. Please enter one. + Ten motyw nie ma nazwy. Proszę, wpisz jakąś. + + + + Theme Name Invalid + Niewłaściwa nazwa motywu + + + + Invalid theme name. Please enter one. + Niewłaściwa nazwa motywu. Proszę, wpisz jakąś. OpenLP.ThemesTab - + Global Theme - + Globalny motyw - + Theme Level - + Poziom motywu - + S&ong Level - + Poziom pieśni - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + Użyj motywu każdej pieśni z bazy danych. Jeśli pieśń nie ma przypisanego motywu, użyj motywu nabożeństwa. Jeśli nabożeństwo nie ma motywu, użyj motywu globalnego. - + &Service Level - + Poziom nabożeństwa - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + Użyj motywu przypisanego nabożeństwu ignorując indywidualne motywy pieśni. Jeśli nabożeństwo nie ma motywu, użyj motywu globalnego. - + &Global Level - + Poziom globalny - + Use the global theme, overriding any themes associated with either the service or the songs. - + Użyj motywu globalnego ignorując motyw przypisany nabożeństwu lub pieśni. - + Themes - + Motywy OpenLP.Ui - + Error - - - - - About - + Błąd - &Add - + About + O programie - Advanced - + &Add + &Dodaj - All Files - + Advanced + Zaawansowane - Bottom - + All Files + Wszystkie pliki - Browse... - + Bottom + Dół - Cancel - + Browse... + Szukaj... - CCLI number: - + Cancel + Anuluj + CCLI number: + numer CCLI + + + Create a new service. - + Stwórz nowy plan nabożeństwa. - + &Delete - - - - - &Edit - + &Usuń + &Edit + &Edytuj + + + Empty Field - + Puste pole - + Export - + Eksport - + pt Abbreviated font pointsize unit - - - - - Image - + - Import - + Image + Obraz - - Live - + + Import + Import + Live + Ekran + + + Live Background Error - + Błąd tła ekranu głównego - + Load - - - - - Middle - + Ładuj - New - + Middle + Środek - New Service - + New + Nowy - New Theme - + New Service + Nowy plan nabożeństwa - - No File Selected - Singular - + + New Theme + Nowy motyw - No Files Selected - Plural - + No File Selected + Singular + Nie zaznaczono pliku - No Item Selected - Singular - + No Files Selected + Plural + Nie zaznaczono plików - No Items Selected - Plural - + No Item Selected + Singular + Nie zaznaczono żadnej pozycji - openlp.org 1.x - + No Items Selected + Plural + Nie zaznaczono żadnych pozycji + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Podgląd - + Replace Background - + Zastąp tło - + Reset Background - + Resetuj tło - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Zapisz && Podgląd + + + Search - + Szukaj - + You must select an item to delete. - + Musisz wybrać pozycję do usunięcia - + You must select an item to edit. - - - - - Save Service - + Musisz wybrać pozycję do edycji + Save Service + Zapisz plan nabożeństwa + + + Service - + Plan Nabożeństwa - + Start %s - - - - - Theme - Singular - + Start %s + Theme + Singular + Motyw + + + Themes Plural - + Motywy - + Top - + Góra - + Version - + Wersja - + Delete the selected item. - + Usuń zaznaczoną pozycję - + Move selection up one position. - + Przenieś zaznaczenie w górę o jedną pozycję. - + Move selection down one position. - + Przenieś zaznaczenie w dół o jedną pozycję. - + &Vertical Align: - - - - - Finished import. - + Wyrównanie pionowe: - Format: - + Finished import. + Importowanie zakończono. - - Importing - + + Format: + Format: - Importing "%s"... - + Importing + Importowanie - Select Import Source - + Importing "%s"... + Importowanie "%s"... + Select Import Source + Wybierz źródło importu + + + Select the import format and the location to import from. - + Wybierz format importu i jego lokalizację. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Importer z openlp.org 1.x został wyłączony z powodu brakującego modułu Pythona. Jeśli chcesz go użyć, to zainstaluj moduł "python-sqlite". - + Open %s File - - - - - %p% - + Otwórz %s plik + %p% + %p% + + + Ready. - + Gotowy. - + Starting import... - + Zaczynanie importu... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Musisz określić przynajmniej jeden %s plik do importowania. Welcome to the Bible Import Wizard - + Witamy w Kreatorze Importu Biblii - + Welcome to the Song Export Wizard - + Witamy w Kreatorze Eksportu Pieśni - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Witamy w Kreatorze Importu Pieśni - Authors - Plural - + Author + Singular + Autor - - © - Copyright symbol. - + + Authors + Plural + Autorzy - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + Śpiewnik - Title and/or verses not found - + Song Books + Plural + Śpiewniki + + + + Song Maintenance + Maintenance pieśni + + + + Topic + Singular + Temat - XML syntax error - + Topics + Plural + Tematy + + + + Continuous + Tekst ciągły + + + + Default + Domyślny + + + + Display style: + Styl wyświetlania: + + + + Duplicate Error + Błąd duplikacji + + + + File + Plik + + + + Help + Pomoc + + + + h + The abbreviated unit for hours + h + + + + Layout style: + Styl układu: + + + + Live Toolbar + Pasek narzędzi ekranu głównego + + + + m + The abbreviated unit for minutes + m + + + + OpenLP is already running. Do you wish to continue? + OpenLP jest włączone. Czy chcesz kontynuować? + + + + Settings + Ustawienia + + + + Tools + Narzędzia + + + + Unsupported File + Nieobsługiwany plik + + + + Verse Per Slide + Werset na slajd + + + + Verse Per Line + Werset na linijkę + View + Widok + + + + Title and/or verses not found + Tytuł lub wersety nie zostały znalezione + + + + XML syntax error + Błąd składni XML + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + Tryb widoku - Play Slides in Loop - + Open service. + Otwórz plan nabożeństwa. + + + + Print Service + Drukuj plan nabożeństwa + + + + Replace live background. + Zastąp tło ekranu głównego. + + + + Reset live background. + Resetuj tło ekranu głównego. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Podziel slajd na dwa, jeśli tekst nie zmieści się na jednym. + + + + Welcome to the Bible Upgrade Wizard + Witaj w Kreatorze Aktualizowania Biblii + + + + Confirm Delete + Potwierdź usuwanie + Play Slides in Loop + Odtwarzaj slajdy w kółko + + + Play Slides to End - + Odtwórz slajdy do końca - + Stop Play Slides in Loop - + Zakończ odtwarzanie slajdów w kółko - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + Zakończ odtwarzanie slajdów do końca + Next Track + Następny utwór + + + + Search Themes... + Search bar place holder text + Przeszukaj motywy... + + + + Optional &Split + &Opcjonalny podział + + + + Invalid Folder Selected + Singular + Zaznaczono niewłaściwy katalog + + + + Invalid File Selected + Singular + Zaznaczono niewłaściwy plik + + + + Invalid Files Selected + Plural + Zaznaczono niewłaściwe pliki + + + No Folder Selected Singular - + Nie zaznaczono żadnego katalogu - + Open %s Folder - + Otwórz folder %s - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Musisz sprecyzować plik %s, by z niego importować. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Musisz podać jeden %s katalog, aby importować z niego. + + + + Importing Songs + Importowanie pieśni OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 i %2 - + %1, and %2 Locale list separator: end - + %1, i %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Wtyczka prezentacji</strong><br />Wtyczka prezentacji zapewnia możliwość przedstawiania prezentacji za pomocą wielu programów. Wybór odpowiedniego programu prezentacji jest udostępniony użytkownikowi na liście wyboru. - + Presentation name singular - + Prezentacja - + Presentations name plural - + Prezentacje - + Presentations container title - + Prezentacje - + Load a new presentation. - + Wczytaj nową prezentację. - + Delete the selected presentation. - + Usuń zaznaczoną prezentację. - + Preview the selected presentation. - + Podgląd zaznaczonej prezentacji. - + Send the selected presentation live. - + Wyświetl prezentację na ekranie głównym. - + Add the selected presentation to the service. - + Dodaj zaznaczoną prezentację do planu nabożeństwa. PresentationPlugin.MediaItem - + Select Presentation(s) - + Zaznacz prezentację - + Automatic - + Automatycznie - + Present using: - + Present using: - + File Exists - + Plik istnieje - + A presentation with that filename already exists. - + Prezentacja o tej nazwie już istnieje. - + This type of presentation is not supported. - + Ten typ prezentacji nie jest obsługiwany. - + Presentations (%s) - + Prezentacje (%s) - + Missing Presentation - + Brakująca prezentacja - + The presentation %s is incomplete, please reload. - + Prezentacja %s jest niekompletna, proszę wczytaj ponownie. - + The presentation %s no longer exists. - + Prezentacja %s już nie istnieje. PresentationPlugin.PresentationTab - + Available Controllers - + Używane oprogramowanie prezentacji - + %s (unavailable) - + %s (niedostępny) - + Allow presentation application to be overridden - + Zezwól aplikacji prezentacji być nadrzędną RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Zdalna wtyczka</strong><br />Zdalna wtyczka umożliwia wysyłanie wiadomości do uruchomionych programów OpenLP na innych komputerach przez przeglądarkę internetową lub przez zdalne API. - Remotes - name plural - + Remote + name singular + Zdalny - + + Remotes + name plural + Zdalne + + + Remote container title - + Zdalny RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + Zdalny OpenLP 2.0 + + + OpenLP 2.0 Stage View - + Widok sceny OpenLP 2.0 - + Service Manager - + Plan Nabożeństwa - + Slide Controller - - - - - Alerts - + Kontroler slajdów - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Komunikaty - Home - + Search + Szukaj + + + + Refresh + Odśwież - Theme - + Blank + Wygaś + + + + Show + Pokaż + + + + Prev + Prev + + + + Next + Następny + + + + Text + Tekst + + + + Show Alert + Pokaż Komunikat + + + + Go Live + Wyświetl na ekranie + + + + No Results + Brak wyników + + + + Options + Opcje + + + + Add to Service + Dodaj do planu nabożeństwa + + + + Home + Home - Desktop - + Theme + Motyw - + + Desktop + Pulpit + + + Add &amp; Go to Service - + Add &amp; Go to Service + + + + Service + Plan nabożeństwa + + + + Slides + Slajdy RemotePlugin.RemoteTab - + Serve on IP address: - + Podaj na adres IP: - + Port number: - + Numer portu: - + Server Settings - + Ustawienia serwera - + Remote URL: - + Zdalny URL: - + Stage view URL: - + Widok sceny URL: - + Display stage time in 12h format - + Wyświetl czas w 12-godzinnym formacie - + Android App - + Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Zeskanuj kod QR lub kliknij <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> aby zainstalować aplikację na Androida przez Google Play. SongUsagePlugin - + &Song Usage Tracking - + Śledzenie &używania pieśni - + &Delete Tracking Data - + &Usuń dane śledzenia - + Delete song usage data up to a specified date. - + Usuń dane użycia piosenki do określonej daty. - + &Extract Tracking Data - + &Eksportuj dane śledzenia - + Generate a report on song usage. - + Generuj raport używalności pieśni. - + Toggle Tracking - + Włącz śledzenie - + Toggle the tracking of song usage. - + Włącz śledzenie używalności pieśni. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Wtyczka Zastosowania Pieśni</strong><br />Ta wtyczka śledzi wykorzystanie pieśni. - + SongUsage name singular - + Zastosowanie Pieśni - + SongUsage name plural - + Zastosowanie Pieśni - + SongUsage container title - + Zastosowanie Pieśni - + Song Usage - + Zastosowanie Pieśni - + Song usage tracking is active. - + Śledzenie używalności pieśni jest włączone. - + Song usage tracking is inactive. - + Śledzenie używalności pieśni jest wyłączone. - + display - + wyświetl - + printed - + wydrukowany SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Usuń dane używalności pieśni - + Delete Selected Song Usage Events? - + Usunąć zaznaczone wydarzenia używalności pieśni? - + Are you sure you want to delete selected Song Usage data? - + Czy na pewno chcesz usunąć zaznaczone dane wykorzystania pieśni? - + Deletion Successful - + Usuwanie przebiegło pomyślnie - + All requested data has been deleted successfully. - + Wszystkie żądane dane zostały pomyślnie usunięte. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Wybierz datę, do której dane odnośnie używalności pieśni zostaną usunięte. Wszystkie dane zapisane przed tą datą zostaną permanentnie usunięte. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Raportowanie używalności pieśni - + Select Date Range - + Wybierz zakres dat - + to - + do - + Report Location - + Zgłoś lokalizację - + Output File Location - + Lokalizacja pliku wyjściowego - + usage_detail_%s_%s.txt - + uzywalność_piesni_%s_%s.txt - + Report Creation - + Tworzenie raportu - + Report %s has been successfully created. - + Raport +%s +został pomyślnie stworzony. - + Output Path Not Selected - + Ścieżka wyjściowa nie jest zaznaczona - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Nie podałeś właściwej lokalizacji dla raportu używalności pieśni. Proszę, wybierz istniejącą ścieżkę na Twoim komputerze. SongsPlugin - + &Song - + &Pieśń - + Import songs using the import wizard. - + Importuj pieśni używając kreatora importu. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Wtyczka Pieśni</strong><br />Wtyczka pieśni zapewnia możliwość wyświetlania i zarządzania pieśniami. - + &Re-index Songs - + &Przeindeksuj pieśni - + Re-index the songs database to improve searching and ordering. - + Przeindeksuj bazę pieśni, aby przyspieszyć wyszukiwanie i porządkowanie. - + Reindexing songs... - - - - - Arabic (CP-1256) - + Przeindeksowywanie pieśni... - Baltic (CP-1257) - + Arabic (CP-1256) + Arabic (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Baltic (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Central European (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Cyrillic (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Greek (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Hebrew (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Japanese (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Korean (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Simplified Chinese (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thai (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Traditional Chinese (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Turkish (CP-1254) + Vietnam (CP-1258) + Vietnam (CP-1258) + + + Western European (CP-1252) - + Western European (CP-1252) - + Character Encoding - + Kodowanie znaków - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Tablica znaków jest odpowiedzialna +za właściwe reprezentowanie znaków +Zazwyczaj domyślny wybór jest najlepszy. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Proszę wybierz kodowanie znaków. +Kodowanie znaków jest odpowiedzialne za ich właściwą reprezentację. - + Song name singular - + Pieśń - + Songs name plural - + Pieśni - + Songs container title - + Pieśni - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + Eksportuj pieśni używając kreatora eksportu - Preview the selected song. - + Add a new song. + Dodaj nową pieśń. - Send the selected song live. - + Edit the selected song. + Edytuj wybraną pieśń. + Delete the selected song. + Usuń wybraną pieśń. + + + + Preview the selected song. + Podgląd wybranej pieśni. + + + + Send the selected song live. + Wyświetl zaznaczone pieśni na ekranie. + + + Add the selected song to the service. - + Dodaj wybraną pieśń do planu nabożeństwa. + + + + Reindexing songs + Przeindeksowywanie pieśni SongsPlugin.AuthorsForm - + Author Maintenance - + Maintenance autorów - + Display name: - + Wyświetlana nazwa: - + First name: - + Imię: - + Last name: - + Nazwisko: - + You need to type in the first name of the author. - + Wpisz imię autora. - + You need to type in the last name of the author. - + Wpisz nazwisko autora. - + You have not set a display name for the author, combine the first and last names? - + Nie ustawiłeś wyświetlanej nazwy autora. Połączyć imię i nazwisko? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Ten plik ma niewłaściwe rozszerzenie. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Administrowanie przez %s - + [above are Song Tags with notes imported from EasyWorship] - + +[powyżej są Tagi Pieśni z notatkami z + EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Metadane - + Custom Book Names - + Nazwy ksiąg SongsPlugin.EditSongForm - + Song Editor - + Edytor pieśni - + &Title: - + &Tytuł: - + Alt&ernate title: - + Alternatywny tytuł: - + &Lyrics: - + Słowa: - + &Verse order: - + Kolejność wersów: - + Ed&it All - + Edytuj całość - + Title && Lyrics - + Tytuł i słowa - + &Add to Song - + Dodaj do &pieśni - + &Remove - + &Usuń - + &Manage Authors, Topics, Song Books - + &Zarządzaj autorami, tematami, śpiewnikami - + A&dd to Song - + Dodaj do pieśni - + R&emove - + U&suń - + Book: - + Śpiewnik: - + Number: - + Numer: - + Authors, Topics && Song Book - + Autorzy, tematy i śpiewniki - + New &Theme - + &Nowy motyw - + Copyright Information - + Informacje o prawach autorskich - + Comments - + Komentarze - + Theme, Copyright Info && Comments - + Motywy, prawa autorskie, komentarze - + Add Author - + Dodaj autora - + This author does not exist, do you want to add them? - + Ten autor nie istnieje, czy chcesz go dodać? - + This author is already in the list. - + Ten autor już występuje na liście. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Nie wybrałeś odpowiedniego autora. Wybierz autora z listy lub wpisz nowego autora i wybierz "Dodaj autora do pieśni", by dodać nowego autora. - + Add Topic - + Dodaj temat - + This topic does not exist, do you want to add it? - + Ten temat nie istnieje, czy chcesz go dodać? - + This topic is already in the list. - + Ten temat już istnieje. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Nie wybrałeś odpowiedniego tematu. Wybierz autora z listy lub wpisz nowy temat i wybierz "Dodaj temat pieśni", by dodać nowy temat. - + You need to type in a song title. - + Musisz podać tytuł pieśni. - + You need to type in at least one verse. - + Musisz wpisać przynajmniej jedną zwrotkę. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Kolejność zwrotek jest niewłaściwa. Nie ma zwrotki odpowiadającej %s. Właściwe zwrotki to: %s. - + Add Book - + Dodaj śpiewnik - + This song book does not exist, do you want to add it? - + Ten śpiewnik nie istnieje, czy chcesz go dodać? - + You need to have an author for this song. - + Musisz wpisać autora pieśni. - - You need to type some text in to the verse. - - - - + Linked Audio - + Połączone audio - + Add &File(s) - + &Dodaj plik(i) - + Add &Media - + Dodaj &multimedia - + Remove &All - + Usuń &wszystko - + Open File(s) - + Otwórz plik(i) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Uwaga:</strong> Nie wszystkie zwrotki są w użyciu. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Kolejność zwrotek jest niewłaściwa. Nie ma zwrotki odpowiadającej %s. Właściwe zwrotki to: %s. SongsPlugin.EditVerseForm - + Edit Verse - + Edytuj wersety - + &Verse type: - + Typ zwrotek: - + &Insert - + &Wstaw - + Split a slide into two by inserting a verse splitter. - + Podziel slajd na dwa przez dodanie rozdzielacza. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Kreator Eksportu Pieśni - + Select Songs - + Wybierz pieśni - + Check the songs you want to export. - + Wybierz pieśni, które chcesz eksportować. - + Uncheck All - + Odznacz wszystkie - + Check All - + Zaznacz wszystkie - + Select Directory - + Wybierz katalog - + Directory: - + Katalog: - + Exporting - + Eksportowanie - + Please wait while your songs are exported. - + Proszę czekać podczas eksportowania pieśni. - + You need to add at least one Song to export. - + Musisz wybrać przynajmniej jedną pieśń do eksportu. - + No Save Location specified - + Nie podano lokalizacji do zapisania - + Starting export... - + Zaczynanie eksportowania... - + You need to specify a directory. - + Musisz wybrać jakiś katalog. - + Select Destination Folder - + Wybierz folder docelowy - + Select the directory where you want the songs to be saved. - + Wybierz katalog, w którym chcesz zapisać pieśni. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Ten kreator pomoże Ci wyeksportować pieśni do otwartego i wolnego<strong>OpenLyrics</strong> uwielbieniowego formatu pieśni. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Wybierz pliki dokumentu/prezentacji - + Song Import Wizard - + Kreator importowania pieśni - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Ten kreator pomoże Ci zaimportować pieśni z różnych formatów. Naciśnij poniższy przycisk dalej, aby zacząć proces poprzez wybieranie formatu, z którego będziemy importować. - + Generic Document/Presentation - + Ogólny dokument/prezentacja - + Add Files... - + Dodaj pliki... - + Remove File(s) - + Usuń plik(i) - + Please wait while your songs are imported. - + Proszę czekać podczas importowania pieśni. - + OpenLP 2.0 Databases - + Bazy danych OpenLP 2.0 - + openlp.org v1.x Databases - + Bazy danych openlp.org v1.x - + Words Of Worship Song Files - + Pliki pieśni Słów Uwielbienia (Words of Worship) - + Songs Of Fellowship Song Files - + Pliki Songs Of Fellowship Song - + SongBeamer Files - + Pliki SongBeamer - + SongShow Plus Song Files - + Pliki SongShow Plus Song - + Foilpresenter Song Files - + Pliki pieśni Foilpresenter - + Copy - + Kopiuj - + Save to File - + Zapisz do pliku - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Importer Songs of Fellowship został zatrzymany, ponieważ OpenLP nie może uzyskać dostępu do OpenOffice lub LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Ogólny importer dokumentu/prezentacji został uznany za uszkodzony, ponieważ OpenLP nie może uzyskać dostępu do OpenOffice lub LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics lub wyeksportowane pieśni OpenLP 2.0 - + OpenLyrics Files - + Pliki OpenLyric - + CCLI SongSelect Files - + Pliki CCLI SongSelect - + EasySlides XML File - + Pliki EasySlides XML - + EasyWorship Song Database - + Baza pieśni EasyWorship - + DreamBeam Song Files - + Pliki pieśni DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. - + Musisz podać właściwy folder z bazą danych programu PowerSong 1.0. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + Najpierw przekonwertuj swoją bazę danych ZionWorx do pliku tekstowego CSV tak, jak jest wytłumaczone tutaj <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + Pliki pieśni SundayPlus - + This importer has been disabled. - + Ten importer został wyłączony. - + MediaShout Database - + Baza danych MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Importer MediaShout jest wspierany jedynie na Windowsie. Został wyłączony z powodu brakującego modułu Pythona. Jeśli chcesz go użyć, to zainstaluj moduł "pyodbc". - + SongPro Text Files - + Pliki tekstowe SongPro - + SongPro (Export File) - + SongPro (Eksport plików) - + In SongPro, export your songs using the File -> Export menu - + W SongPro, wyeksportuj pieśni używając Plik -> Eksport SongsPlugin.MediaFilesForm - + Select Media File(s) - + Wybierz pliki multimedialne - + Select one or more audio files from the list below, and click OK to import them into this song. - + Wybierz jedno lub więcej audio z listy poniżej i wybierz OK, by importować je do tej pieśni. SongsPlugin.MediaItem - + Titles - + Tytuły - + Lyrics - + Słowa - + CCLI License: - + Licencja CCLI: - + Entire Song - + Cała pieśń - + Are you sure you want to delete the %n selected song(s)? - + + Czy jesteś pewny, że chcesz usunąć %n zaznaczoną pieśń? + Czy jesteś pewny, że chcesz usunąć %n zaznaczonych pieśni? + Czy jesteś pewny, że chcesz usunąć %n zaznaczonych pieśni? + - + Maintain the lists of authors, topics and books. - + Zarządzaj listami autorów, tematów i śpiewników. - + copy For song cloning - + kopiuj - + Search Titles... - + Przeszukaj tematy... - + Search Entire Song... - + Przeszukaj całą pieśń... - + Search Lyrics... - + Przeszukaj słowa pieśni... - + Search Authors... - + Przeszukaj autorów... - + Search Song Books... - + Przeszukaj śpiewniki... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Nie można otworzyć bazy danych MediaShout. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Niewłaściwa baza pieśni openlp.org 1.x. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Niewłaściwa baza pieśni Openlp 2.0. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Eksportowanie "%s"... SongsPlugin.PowerSongImport - + No songs to import. - + Brak pieśni do importu. - + Verses not found. Missing "PART" header. - + Nie znaleziono zwrotek. Brakuje nagłówka "PART" + + + + No %s files found. + Nie znaleziono plików %s. + + + + Invalid %s file. Unexpected byte value. + Niewłaściwy plik %s. Nieoczekiwana wartość. + + + + Invalid %s file. Missing "TITLE" header. + Niewłaściwy plik %s. Brakujący "TYTUŁ" nagłówka. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Niewłaściwy plik %s. Brakujący "PRAWAAUTORSKIE" nagłówka. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Maintenance śpiewników - &Publisher: - + &Name: + &Imię: - + + &Publisher: + &Wydawca: + + + You need to type in a name for the book. - + Musisz wpisać nazwę śpiewnika. SongsPlugin.SongExportForm - + Your song export failed. - + Eksport pieśni zakończony niepowodzeniem. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Eskport zakończony. Aby importować te pliki, użyj <strong>OpenLyrics</strong> importera. SongsPlugin.SongImport - + copyright - + prawa autorskie - + The following songs could not be imported: - + Następujące pieśni nie mogą zostać importowane: - + Cannot access OpenOffice or LibreOffice - + Brak dojścia do OpenOffice lub LibreOffice - + Unable to open file - + Niemożliwy do otwarcia plik - + File not found - + Nie znaleziono pliku SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Nie można dodać autora. - + This author already exists. - + Ten autor już istnieje. - + Could not add your topic. - + Temat nie mógł zostać dodany. - + This topic already exists. - + Ten temat już istnieje. - + Could not add your book. - + Śpiewnik nie mógł zostać dodany. - + This book already exists. - + Ten śpiewnik już istnieje. - + Could not save your changes. - + Nie można zapisać Twoich zmian. - + Could not save your modified author, because the author already exists. - + Nie można zapisać autora, ponieważ on już istnieje. - + Could not save your modified topic, because it already exists. - + Nie można zapisać tematu, ponieważ on już istnieje. - + Delete Author - + Usuń autora - + Are you sure you want to delete the selected author? - + Czy na pewno chcesz usunąć wybranego autora? - + This author cannot be deleted, they are currently assigned to at least one song. - + Autor nie może zostać usunięty, jest przypisany do przynajmniej jednej pieśni. - + Delete Topic - + Usuń temat - + Are you sure you want to delete the selected topic? - + Czy na pewno chcesz usunąć wybrany temat? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Temat nie może zostać usunięty, jest przypisany do przynajmniej jednej pieśni. - + Delete Book - + Usuń śpiewnik - + Are you sure you want to delete the selected book? - + Czy na pewno chcesz usunąć wybrany śpiewnik? - + This book cannot be deleted, it is currently assigned to at least one song. - + Śpiewnik nie może zostać usunięty, jest przypisany do przynajmniej jednej pieśni. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Autor %s już istnieje. Czy chcesz pieśni autora %s przypisać istniejącemu autorowi %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Temat %s już istnieje. Czy chcesz pieśni o temacie %s przypisać istniejącemu tematowi %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Śpiewnik %s już istnieje. Czy chcesz pieśni ze śpiewnika %s przypisać istniejącemu śpiewnikowi %s? SongsPlugin.SongsTab - + Songs Mode - + Tryb pieśni - + Enable search as you type - + Umożliwiaj przeszukiwanie, gdy piszesz - + Display verses on live tool bar - + Wyświetlaj wersety na pomocniczym pasku na ekranie - + Update service from song edit - + Uaktualnij plan nabożeństwa po edycji pieśni - + Import missing songs from service files - + Importowanie brakujących pieśni z plików SongsPlugin.TopicsForm - + Topic Maintenance - + Maintenance tematów - + Topic name: - + Nazwa tematu: - + You need to type in a topic name. - + Musisz wpisać nazwę tematu. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Zwrotka - Bridge - + Chorus + Refren - Pre-Chorus - + Bridge + Bridge - Intro - + Pre-Chorus + Pre-Chorus - Ending - + Intro + Intro + Ending + Zakończenie + + + Other - + Inne SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Błąd czytania pliku CSV - + File not valid ZionWorx CSV format. - + Plik nie jest formatu ZionWorx CSV. + + + + Line %d: %s + Linijka %d: %s + + + + Decoding error: %s + Błąd dekodowania: %s + + + + Record %d + Nagraj %d - \ No newline at end of file + diff --git a/resources/i18n/pt_BR.ts b/resources/i18n/pt_BR.ts index bda8a10d7..33857e72c 100644 --- a/resources/i18n/pt_BR.ts +++ b/resources/i18n/pt_BR.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Alerta - + Show an alert message. Exibir uma mensagem de alerta. - + Alert name singular Alerta - + Alerts name plural Alertas - + Alerts container title Alertas - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Plugin de Alerta</strong><br />O plugin de alerta controla a exibição de mensagens do berçario na tela. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Mensagem de Alerta - + Alert &text: &Texto de Alerta: - + &New &Novo - + &Save &Salvar - + Displ&ay &Exibir - + Display && Cl&ose Exibir && &Fechar - + New Alert Novo Alerta - + You haven't specified any text for your alert. Please type in some text before clicking New. Você não digitou nenhum texto para o seu alerta. Por favor digite algum texto antes de clicar em Novo. - + &Parameter: &Parâmetro: - + No Parameter Found Nenhum Parâmetro Encontrado - + You have not entered a parameter to be replaced. Do you want to continue anyway? Você não informou um parâmetro para ser substituído. Deseja continuar mesmo assim? - + No Placeholder Found Nenhum Marcador de Posição Encontrado - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? O texto de alerta não contém '<>'. Deseja continuar mesmo assim? @@ -118,32 +119,32 @@ Deseja continuar mesmo assim? AlertsPlugin.AlertsTab - + Font Fonte - + Font name: Nome da fonte: - + Font color: Cor da fonte: - + Background color: Cor de fundo: - + Font size: Tamanho da fonte: - + Alert timeout: Tempo limite para o Alerta: @@ -151,510 +152,510 @@ Deseja continuar mesmo assim? BiblesPlugin - + &Bible &Bíblia - + Bible name singular Bíblia - + Bibles name plural Bíblias - + Bibles container title Bíblias - + No Book Found Nenhum Livro Encontrado - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Nenhum livro correspondente foi encontrado nesta Bíblia. Verifique se você digitou o nome do livro corretamente. - + Import a Bible. Importar uma Bíblia. - + Add a new Bible. Adicionar uma Bíblia nova. - + Edit the selected Bible. Editar a Bíblia selecionada. - + Delete the selected Bible. Excluir a Bíblia selecionada. - + Preview the selected Bible. Pré-visualizar a Bíblia selecionada. - + Send the selected Bible live. Projetar a Bíblia selecionada. - + Add the selected Bible to the service. Adicionar a Bíblia selecionada ao culto. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Plugin de Bíblia</strong><br />O plugin de Bíblia permite exibir versículos bíblicos de diferentes origens durante o culto. - + &Upgrade older Bibles &Atualizar Bíblias antigas - + Upgrade the Bible databases to the latest format. Atualizar o banco de dados de Bíblias para o formato atual. - + Genesis Gênesis - + Exodus Êxodo - + Leviticus Levítico - + Numbers Números - + Deuteronomy Deuteronômio - + Joshua Josué - + Judges Juízes - + Ruth Rute - + 1 Samuel 1 Samuel - + 2 Samuel 2 Samuel - + 1 Kings 1 Reis - + 2 Kings 2 Reis - + 1 Chronicles 1 Crônicas - + 2 Chronicles 2 Crônicas - + Ezra Esdras - + Nehemiah Neemias - + Esther Ester - + Job - + Psalms Salmos - + Proverbs Provérbios - + Ecclesiastes Eclesiastes - + Song of Solomon Cântico dos Cânticos - + Isaiah Isaías - + Jeremiah Jeremias - + Lamentations Lamentações de Jeremias - + Ezekiel Ezequiel - + Daniel Daniel - + Hosea Oseias - + Joel Joel - + Amos Amós - + Obadiah Obadias - + Jonah Jonas - + Micah Miqueias - + Nahum Naum - + Habakkuk Habacuque - + Zephaniah Sofonias - + Haggai Ageu - + Zechariah Zacarias - + Malachi Malaquias - + Matthew Mateus - + Mark Marcos - + Luke Lucas - + John João - + Acts Atos dos Apóstolos - + Romans Romanos - + 1 Corinthians 1 Coríntios - + 2 Corinthians 2 Coríntios - + Galatians Gálatas - + Ephesians Efésios - + Philippians Filipenses - + Colossians Colossenses - + 1 Thessalonians 1 Tessalonicenses - + 2 Thessalonians 2 Tessalonicenses - + 1 Timothy 1 Timóteo - + 2 Timothy 2 Timóeo - + Titus Tito - + Philemon Filemon - + Hebrews Hebreus - + James Tiago - + 1 Peter 1 Pedro - + 2 Peter 2 Pedro - + 1 John 1 João - + 2 John 2 João - + 3 John 3 João - + Jude Judas - + Revelation Apócalipse - + Judith Judite - + Wisdom Sabedoria - + Tobit Tobias - + Sirach Eclesiástico - + Baruch Baruque - + 1 Maccabees 1 Macabeus - + 2 Maccabees 2 Macabeus - + 3 Maccabees 3 Macabeus - + 4 Maccabees 4 Macabeus - + Rest of Daniel Acréscimos de Daniel - + Rest of Esther Adições a Ester - + Prayer of Manasses Oração de Manassés - + Letter of Jeremiah Carta de Jeremias - + Prayer of Azariah Oração de Azarias - + Susanna Suzana - + Bel Bel - + 1 Esdras 1 Esdras - + 2 Esdras 2 Esdras - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|verso|versos;;-|até;;,|e;;fim @@ -663,32 +664,32 @@ Deseja continuar mesmo assim? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. É necessário especificar um nome para esta versão da Bíblia. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. É necessário informar os Direitos Autorais para esta Bíblia. Traduções em domínio público precisam ser marcadas como tal. - + Bible Exists A Bíblia existe - + This Bible already exists. Please import a different Bible or first delete the existing one. Esta Bíblia já existe. Por favor importa outra Bíblia ou remova a já existente. - + You need to specify a book name for "%s". É necessário especificar um nome de livro para "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Números só podem ser usados na início e precisam ser seguidos de um ou mais caracteres não-numéricos. - + Duplicate Book Name Nome de Livro Duplicado - + The Book Name "%s" has been entered more than once. O nome de Livro "%s" foi informado mais de uma vez. @@ -710,39 +711,39 @@ ser seguidos de um ou mais caracteres não-numéricos. BiblesPlugin.BibleManager - + Scripture Reference Error Erro de Referência na Escritura - + Web Bible cannot be used Não é possível usar a Bíblia Online - + Text Search is not available with Web Bibles. A Pesquisa de Texto não está disponível para Bíblias Online. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Você não digitou uma palavra-chave de pesquisa. Você pode separar diferentes palavras-chave com um espaço para procurar por todas as palavras-chave e pode separá-las com uma vírgula para pesquisar por alguma delas. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Não há Bíblias instaladas atualmente. Por favor, utilize o Assistente de Importação para instalar uma ou mais Bíblias. - + No Bibles Available - Nenhum Bíblia Disponível + Nenhuma Bíblia Disponível - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Livro Capítulo%(verse)sVerso%(range)sCapítulo%(verse)sVerso BiblesPlugin.BiblesTab - + Verse Display Exibição do Versículo - + Only show new chapter numbers Somente mostrar números de capítulos novos - + Bible theme: Tema da Bíblia: - + No Brackets Sem Parênteses - + ( And ) ( E ) - + { And } { E } - + [ And ] [ E ] - + Note: Changes do not affect verses already in the service. Observação: Mudanças não afetam os versículos que já estão no culto. - + Display second Bible verses Exibir versículos da Bíblia secundária - + Custom Scripture References Referências Personalizadas das Escrituras - + Verse Separator: Separador de Versos - + Range Separator: Separador de Faixas: - + List Separator: Separador de Listas: - + End Mark: Marcação de Fim: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ Eles devem ser separados por uma barra vertical "|". Por favor, limpe esta linha edição para usar o valor padrão. - + English Inglês - + Default Bible Language Idioma Padrão de Bíblia - + Book name language in search field, search results and on display: Idioma do nome de livros a ser usado na caixa de busca, resultados da busca e na exibição: - + Bible Language Idioma da Bíblia - + Application Language Idioma do Aplicativo @@ -903,42 +904,42 @@ busca, resultados da busca e na exibição: BiblesPlugin.BookNameDialog - + Select Book Name Selecione o Nome do Livro - + Current name: Nome atual: - + Corresponding name: Nome correspondente: - + Show Books From Mostrar Livros do - + Old Testament Antigo Testamento - + New Testament Novo Testamento - + Apocrypha Apócrifos - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Não foi encontrado um nome interno que corresponde ao seguinte nome de livro. Por favor escolha o nome correspondente da lista. @@ -946,7 +947,7 @@ busca, resultados da busca e na exibição: BiblesPlugin.BookNameForm - + You need to select a book. Você deve selecionar um livro. @@ -954,18 +955,18 @@ busca, resultados da busca e na exibição: BiblesPlugin.CSVBible - + Importing books... %s Importando livros... %s - + Importing verses from %s... Importing verses from <book name>... Importando versículos de %s... - + Importing verses... done. Importando versículos... concluído. @@ -973,69 +974,69 @@ busca, resultados da busca e na exibição: BiblesPlugin.EditBibleForm - + Bible Editor Editor de Bíblia - + License Details Detalhes da Licença - + Version name: Nome da versão: - + Copyright: Direitos Autorais: - + Permissions: Permissões: - + Default Bible Language Idioma Padrão de Bíblia - + Book name language in search field, search results and on display: Idioma do nome de livros a ser usado na caixa de busca, resultados da busca e na exibição: - + Global Settings Configurações Globais - + Bible Language Idioma da Bíblia - + Application Language Idioma da Aplicação - + English Inglês - + This is a Web Download Bible. It is not possible to customize the Book Names. Esta Bíblia foi baixada da Internet. Não é possível modificar os nomes dos Livros. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. Para usar os nomes de livros personalizados, "Idioma da Bíblia" deve estar selecionado na aba Meta Dados ou, se estiver selecionado "Ajustes Globais", na página Bíblia no Configurar OpenLP. @@ -1043,38 +1044,38 @@ It is not possible to customize the Book Names. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrando Bíblia e carregando livros... - + Registering Language... Registrando Idioma... - + Importing %s... Importing <book name>... Importando %s... - + Download Error Erro ao Baixar - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Ocorreu um problema ao baixar os versículos selecionados. Verifique sua conexão com a Internet, e se este erro continuar ocorrendo, por favor considere relatar um bug. - + Parse Error Erro de Interpretação - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Ocorreu um problema ao extrair os versículos selecionados. Se este erro continuar ocorrendo, por favor considere relatar um bug. @@ -1246,23 +1247,23 @@ It is not possible to customize the Book Names. Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. Bíblia registrada. Por favor, observe que os verísulos serão baixados de acordo -com o usu, portanto uma conexão com a internet é necessária. +com o uso, portanto uma conexão com a internet é necessária. BiblesPlugin.LanguageDialog - + Select Language Selecione Idioma - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP não pôde determinar o idioma desta tradução da Bíblia. Por favor, selecione o idioma na lista abaixo. - + Language: Idioma: @@ -1270,7 +1271,7 @@ com o usu, portanto uma conexão com a internet é necessária. BiblesPlugin.LanguageForm - + You need to choose a language. Você deve escolher um idioma. @@ -1278,92 +1279,92 @@ com o usu, portanto uma conexão com a internet é necessária. BiblesPlugin.MediaItem - + Quick Rápido - + Find: Localizar: - + Book: Livro: - + Chapter: Capítulo: - + Verse: Versículo: - + From: De: - + To: Até: - + Text Search Pesquisar Texto - + Second: Segundo: - + Scripture Reference Referência da Escritura - + Toggle to keep or clear the previous results. Alternar entre manter ou limpar resultados anteriores. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Você não pode combinar os resultados de buscas de versículo Bíblicos simples e duplo. Você deseja deletar os resultados da sua busca e comecar uma nova? - + Bible not fully loaded. Bíblia não carregada completamente. - + Information Informações - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. A Bíblia secundária não contém todos os versículos que estão na Bíblia principal. Somente versículos encontrados em ambas as Bíblias serão exibidas. %d versículos não foram inclusos nos resultados. - + Search Scripture Reference... Pesquisar referência... - + Search Text... Pesquisar texto... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1374,7 +1375,7 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Foi fornecido um tipo de Bíblia incorreto. Os arquivos de Bíblia do OpenSong podem estar comprimidos. Você precisa descomprimí-lo antes de importá-lo. @@ -1382,7 +1383,7 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1391,12 +1392,12 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Detectando codificação (isto pode levar alguns minutos)... - + Importing %s %s... Importing <book name> <chapter>... Importando %s %s... @@ -1405,149 +1406,149 @@ Para usá-la de novo, você precisará fazer a importação novamente. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Selecione um Diretório para Cópia de Segurança - + Bible Upgrade Wizard Assistente de Atualização de Bíblias - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Este assistente irá ajudá-lo a atualizar suas Bíblias existentes a partir de uma versão anterior do OpenLP 2. Clique no botão avançar abaixo para começar o processo de atualização. - + Select Backup Directory Selecione o Diretório para Cópia de Segurança - + Please select a backup directory for your Bibles Por favor, selecione um diretório para a cópia de segurança das suas Bíblias - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - As versões anteriores do OpenLP 2.0 não conseguem usar as Bíblias atualizadas. Isto irá criar uma cópia de segurança das suas Bíblias atuais para que possa copiar os arquivos de voltar para o diretório de dados do OpenLP caso seja necessário voltar a uma versão anterior do OpenLP. Instruções de como recuperar os arquivos podem ser encontradas no nosso <a href="http://wiki.openlp.org/faq">Perguntas Frequentes</a>. + As versões anteriores do OpenLP 2.0 não conseguem usar as Bíblias atualizadas. Isto irá criar uma cópia de segurança das suas Bíblias atuais para que possa copiar os arquivos de volta para o diretório de dados do OpenLP caso seja necessário voltar a uma versão anterior do OpenLP. Instruções sobre como recuperar os arquivos podem ser encontradas no nosso <a href="http://wiki.openlp.org/faq">Perguntas Frequentes</a>. - + Please select a backup location for your Bibles. Por favor, selecione o local da cópia de segurança das suas Bíblias. - + Backup Directory: Diretório de Cópia de Segurança: - + There is no need to backup my Bibles Não é necessário fazer uma cópia de segurança das minhas Bíblias - + Select Bibles Selecione Bíblias - + Please select the Bibles to upgrade Por favor, selecione as Bíblias a atualizar - + Upgrading Atualizando - + Please wait while your Bibles are upgraded. Por favor, aguarde enquanto suas Bíblias são atualizadas. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. A cópia de segurança não teve êxito. Para fazer uma cópia de segurança das suas Bíblias é necessário permissão de escrita no diretório selecionado. - + Upgrading Bible %s of %s: "%s" Failed Atualizando Bíblia %s de %s: "%s" Falhou - + Upgrading Bible %s of %s: "%s" Upgrading ... Atualizando Bíblia %s de %s: "%s" Atualizando ... - + Download Error Erro ao Baixar - + To upgrade your Web Bibles an Internet connection is required. Para atualizar suas Bíblias Internet é necessária uma conexão com a internet. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Atualizando Bíblia %s de %s: "%s" Atualizando %s ... - + Upgrading Bible %s of %s: "%s" Complete Atualizando Bíblia %s de %s: "%s" Finalizado - + , %s failed . %s falhou - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Atualizando Bíblia(s): %s com sucesso%s -Observe, que versículos das Bíblias Internet serão transferidos sob demanda então é necessária uma conexão com a internet. +Por favor, observe que versículos das Bíblias da Internet serão transferidos sob demanda, então é necessária uma conexão com a internet. - + Upgrading Bible(s): %s successful%s Atualizando Bíblia(s): %s com sucesso%s - + Upgrade failed. A atualização falhou. - + You need to specify a backup directory for your Bibles. Você precisa informar um diretório de backup para as suas Bíblias. - + Starting upgrade... Iniciando atualização... - + There are no Bibles that need to be upgraded. Não há Bíblias que necessitam ser atualizadas. @@ -1555,65 +1556,65 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Plugin de Slide Personalizado</strong><br />O plugin de slide personalizado permite criar slides de texto personalizados que são apresentados da mesma maneira que as músicas. Este plugin permite mais liberdade do que o plugin de músicas. - + Custom Slide name singular Slide Personalizado - + Custom Slides name plural Slides Personalizados - + Custom Slides container title Slides Personalizados - + Load a new custom slide. Carregar um novo slide personalizado. - + Import a custom slide. Importar um slide personalizado. - + Add a new custom slide. Adicionar um novo slide personalizado. - + Edit the selected custom slide. Editar o slide personalizado selecionado. - + Delete the selected custom slide. Excluir o slide personalizado selecionado. - + Preview the selected custom slide. Pré-visualizar o slide personalizado atual. - + Send the selected custom slide live. Enviar o slide personalizado selecionado para a projeção. - + Add the selected custom slide to the service. Adicionar o slide personalizado selecionado ao culto. @@ -1621,12 +1622,12 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.CustomTab - + Custom Display Exibir Personalizado - + Display footer Exibir rodapé @@ -1634,62 +1635,62 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.EditCustomForm - + Edit Custom Slides Editar Slides Personalizados - + &Title: &Título: - + Add a new slide at bottom. Adicionar um novo slide no final. - + Edit the selected slide. Editar o slide selecionado. - + Edit all the slides at once. Editar todos os slides de uma vez. - + Split a slide into two by inserting a slide splitter. Dividir um slide em dois, inserindo um divisor de slides. - + The&me: Te&ma: - + &Credits: &Créditos: - + You need to type in a title. Você deve digitar um título. - + You need to add at least one slide Você deve adicionar pelo menos um slide - + Ed&it All &Editar Todos - + Insert Slide Inserir Slide @@ -1697,7 +1698,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.EditVerseForm - + Edit Slide Editar Slide @@ -1705,68 +1706,71 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Tem certeza que deseja excluir o %n slide personalizado selecionado?Tem certeza que deseja excluir os %n slides personalizados selecionados? + + Tem certeza que deseja excluir o %n slide personalizado selecionado? + Tem certeza que deseja excluir os %n slides personalizados selecionados? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Plugin de Imagens</strong><br />O plugin de imagens permite a exibição de imagens.<br />Uma das funcionalidades importantes deste plugin é a possibilidade de agrupar várias imagens no culto, facilitando a exibição de várias imagens. Este plugin também pode usar a funcionalidade de "repetição temporizada" do OpenLP para criar uma apresentação de slides que é executada automaticamente. Além disso, imagens do plugin podem ser usadas em sobreposição ao plano de fundo do tema atual, exibindo itens baseados em texto como músicas com a imagem selecionada ao fundo ao invés do plano de fundo fornecido pelo tema. - + Image name singular Imagem - + Images name plural Imagens - + Images container title Imagens - + Load a new image. Carregar uma nova imagem. - + Add a new image. Adicionar uma nova imagem. - + Edit the selected image. Editar a imagem selecionada. - + Delete the selected image. Excluir a imagem selecionada. - + Preview the selected image. Pré-visualizar a imagem selecionada. - + Send the selected image live. Enviar a imagem selecionada para a projeção. - + Add the selected image to the service. Adicionar a imagem selecionada ao culto. @@ -1774,7 +1778,7 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e ImagePlugin.ExceptionDialog - + Select Attachment Selecionar Anexo @@ -1782,44 +1786,44 @@ Observe, que versículos das Bíblias Internet serão transferidos sob demanda e ImagePlugin.MediaItem - + Select Image(s) - Selecionar Imagem(s) + Selecionar Imagem(ns) - + You must select an image to delete. Você precisa selecionar uma imagem para excluir. - + You must select an image to replace the background with. Você precisa selecionar uma imagem para definir como plano de fundo. - + Missing Image(s) - Imagem(s) não encontrada(s) + Imagem(ns) não encontrada(s) - + The following image(s) no longer exist: %s - A(s) seguinte(s) imagem(s) não existe(m) mais: %s + A(s) seguinte(s) imagem(ns) não existe(m) mais: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - A(s) seguinte(s) imagem(s) não existe(m) mais: %s -Mesmo assim, deseja continuar adicionando as outras imagens? + A(s) seguinte(s) imagem(ns) não existe(m) mais: %s +Deseja continuar adicionando as outras imagens mesmo assim? - + There was a problem replacing your background, the image file "%s" no longer exists. Ocorreu um erro ao substituir o plano de fundo, o arquivo de imagem "%s" não existe. - + There was no display item to amend. Não há nenhum item de exibição para corrigir. @@ -1827,17 +1831,17 @@ Mesmo assim, deseja continuar adicionando as outras imagens? ImagesPlugin.ImageTab - + Background Color Cor do Plano de Fundo - + Default Color: Cor Padrão: - + Visible background for images with aspect ratio different to screen. Plano de fundo que será visto nas imagens que possuem proporção altura/largura diferente da tela. @@ -1845,60 +1849,60 @@ Mesmo assim, deseja continuar adicionando as outras imagens? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Plugin de Mídia</strong><br />O plugin de mídia permite a reprodução de áudio e vídeo. - + Media name singular Mídia - + Media name plural Mídia - + Media container title Mídia - + Load new media. Carregar nova mídia. - + Add new media. Adicionar nova mídia. - + Edit the selected media. Editar a mídia selecionada. - + Delete the selected media. Excluir a mídia selecionada. - + Preview the selected media. Pré-visualizar a mídia selecionada. - + Send the selected media live. Enviar a mídia selecionada para a projeção. - + Add the selected media to the service. Adicionar a mídia selecionada ao culto. @@ -1906,57 +1910,57 @@ Mesmo assim, deseja continuar adicionando as outras imagens? MediaPlugin.MediaItem - + Select Media Selecionar Mídia - + You must select a media file to delete. Você deve selecionar um arquivo de mídia para apagar. - + You must select a media file to replace the background with. Você precisa selecionar um arquivo de mídia para substituir o plano de fundo. - + There was a problem replacing your background, the media file "%s" no longer exists. Ocorreu um erro ao substituir o plano de fundo. O arquivo de mídia "%s" não existe. - + Missing Media File Arquivo de Mídia não encontrado - + The file %s no longer exists. O arquivo %s não existe. - + Videos (%s);;Audio (%s);;%s (*) Vídeos (%s);;Áudio (%s);;%s (*) - + There was no display item to amend. Não há nenhum item de exibição para corrigir. - + Unsupported File Arquivo não suportado - + Automatic Automático - + Use Player: Usar Reprodutor: @@ -1964,22 +1968,22 @@ Mesmo assim, deseja continuar adicionando as outras imagens? MediaPlugin.MediaTab - + Available Media Players Reprodutores de Mídia Disponíveis - + %s (unavailable) %s (indisponível) - + Player Order Sequência de Reprodução - + Allow media player to be overridden Permitir que o reprodutor de mídia seja alterado @@ -1987,59 +1991,83 @@ Mesmo assim, deseja continuar adicionando as outras imagens? OpenLP - + Image Files Arquivos de Imagem - + Information Informações - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? O formato de Bíblia foi alterado. Você deve atualizar suas Bíblias existentes. -OpenLP deve atualizar agora? +O OpenLP deve atualizar agora? OpenLP.AboutForm - + Credits Créditos - + License Licença - - Contribute - Contribuir - - - + build %s compilação %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Este programa é um software livre; você pode redistribui-lo e/ou modifica-lo dentro dos termos da Licença Pública Geral GNU como publicada pela Fundação do Software Livre; na versão 2 da Licença. - + This program 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 below for more details. Este programa é distribuido na esperança que será útil, mas SEM NENHUMA GARANTIA; sem mesmo a garantia implícita de COMERCIALIZAÇÃO ou ADEQUAÇÃO PARA UM DETERMINADO FIM. Veja abaixo para maiores detalhes. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Porções copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Projeção de Letras Código Aberto + +O OpenLP é um software livre, de apresentações ou projeção de letras em igrejas, usado para exibir slides de músicas, versículos da Bíblia, vídeos, imagens, e até apresentações (se estiver instalado o Impress, PowerPoint ou visualizador PowerPoint) para louvor na igreja usando um computador e um projetor. + +Conheça mais sobre o OpenLP: http://openlp.org/ + +O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais softwares Cristãos gratuítos sendo escritos, por favor, considere contribuir usando o botão abaixo. + + + + Volunteer + Contribuir + + + Project Lead %s @@ -2058,12 +2086,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2072,7 +2108,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2080,13 +2116,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2101,269 +2139,252 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Líder do Projeto - %s - + Líder do projeto + %s Desenvolvedores - %s - -Contribuidores - %s + %s +Contribuintes + %s Testadores - %s - + %s Empacotadores - %s + %s Tradutores - Afrikaans (af) - %s - Alemão (de) - %s - Inglês, Reino Unido (en_GB) - %s - Inglês, África do Sul (en_ZA) - %s - Estoniano (et) - %s - Francês (fr) - %s - Húngaro (hu) - %s - Japonês (ja) - %s - Norueguês Bokmål (nb) - %s - Holandês (nl) - %s - Português do Brazil (pt_BR) - %s - Russo (ru) - %s - -Documentação - %s - -Desenvolvido com - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Créditos Finais - "Porque Deus amou o mundo de tal maneira - que deu o seu Filho unigênito, para que todo - aquele que nele crê não pereça, mas tenha - a vida eterna.." -- João 3:16 - - E por fim mas não menos importante, os créditos finais vão para - Deus, o nosso Pai, por enviar o Seu filho para morrer - na cruz, nos justificando do pecado. Nós - trazemos este software de graça para você porque - pela Graça ele nos libertou. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Projeção de Letras Código Aberto - -O OpenLP é um software livre de apresentações ou projeções de letras em igrejas, used to exibir slides de músicas, versículos da Bíblia, vídeos, imagens, e até apresentações (se estiver instalado o Impress, PowerPoint ou visualizador PowerPoint) para louvor na igreja usando um computador e um projetor. - -Conheça mais sobre OpenLP: http://openlp.org/ - -O OpenLP é escrito e mantido por voluntários. Se você gostaria de ver mais softwares Cristãos gratuítos sendo escritos, por favor, considere contribuir usando o botão abaixo. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Porções copyright © 2004-2012 %s + Afrikaans (af) + %s + Tcheco (cs) + %s + Dinamarquês (da) + %s + Alemão (de) + %s + Grego (el) + %s + Inglês, Reino Unido (en_GB) + %s + Inglês, África do Sul (en_ZA) + %s + Espanhol (es) + %s + Estoniano (et) + %s + Francês (fr) + %s + Húngaro (hu) + %s + Japonês (ja) + %s + Norueguês Bokmål (nb) + %s + Holandês (nl) + %s + Português do Brasil (pt_BR) + %s + Russo (ru) + %s + Sueco (sv) + %s + + Documentação + %s + + Construído Com + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Ícones do Oxygen: http://oxygen-icons.org/ + + Crédito Final + "Porque Deus amou o mundo de tal maneira + que deu o Seu Filho unigênito, para que todo + aquele que nele crê não pereça, mas tenha + a vida eterna." -- João 3:16 + + E finalmente mas não menos importante, o crédito final vai para + Deus, nosso pai, por enviar Seu Filho para morrer + na cruz, nos libertando do pecado. Nós + levamos este software livre ate você porque + Ele nos libertou. OpenLP.AdvancedTab - + UI Settings Configurações da Interface - + Number of recent files to display: Número de arquivos recentes a serem exibidos: - + Remember active media manager tab on startup Lembrar aba ativa do gerenciador de mídia ao iniciar - + Double-click to send items straight to live Clicar duas vezes para diretamente projetar itens - + Expand new service items on creation Expandir novos itens do culto ao serem criados - + Enable application exit confirmation Habilitar confirmação de saída do programa - + Mouse Cursor Ponteiro do Mouse - + Hide mouse cursor when over display window Ocultar o cursor do mouse quando estiver sobre a tela de projeção - + Default Image Imagem Padrão - + Background color: Cor do plano de fundo: - + Image file: Arquivo de Imagem: - + Open File Abrir Arquivo - + Advanced Avançado - + Preview items when clicked in Media Manager Pré-visualizar itens quando clicados no Gerenciador de Mídia - + Click to select a color. Clique para selecionar uma cor. - + Browse for an image file to display. Procurar um arquivo de imagem para exibir. - + Revert to the default OpenLP logo. Reverter ao logotipo padrão OpenLP. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Culto %Y-%m-%d %H-%M - + Default Service Name Nome Padrão de Culto - + Enable default service name Habilitar nome padrão de culto - + Date and Time: Data e Hora: - + Monday Segunda-feira - + Tuesday Terça-feira - + Wednesday Quarta-feira - + Thurdsday Quinta-feira - + Friday Sexta-feira - + Saturday Sábado - + Sunday Domingo - + Now Agora - + Time when usual service starts. Hora em que o culto normal se inicia. - + Name: Nome: - + Consult the OpenLP manual for usage. Consulte o manual OpenLP para uso. - + Revert to the default service name "%s". Reverter para o nome padrão de culto "%s". - + Example: Exemplo: - + X11 X11 @@ -2373,82 +2394,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Desativar Gerenciador de Janelas X11 - + Syntax error. Erro de sintaxe. - + Data Location Local dos Dados - + Current path: Caminho atual: - + Custom path: Caminho personalizado: - + Browse for new data file location. Escolher um novo local para os arquivos de dados. - + Set the data location to the default. Restabelecer o local de dados para o padrão. - + Cancel Cancelar - + Cancel OpenLP data directory location change. Cancelar a mudança da localização dos dados do OpenLP. - + Copy data to new location. Copiar os dados para a nova localização. - + Copy the OpenLP data files to the new location. Copiar os arquivos de dados do OpenLP para a nova localização. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>AVISO:</strong> O novo diretório de dados já contém arquivos do OpenLP. Estes arquivos SERÃO sobrescritos durante uma cópia. - + Data Directory Error Erro no Diretório de Dados - + Select Data Directory Location Seleciona a Localização do Diretório de Dados - + Confirm Data Directory Change Confirmar Mudança do Diretório de Dados - + Reset Data Directory Restabelecer o Diretório de Dados - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2457,47 +2478,98 @@ This location will be used after OpenLP is closed. Esta localização será usada depois que o OpenLP for fechado. - + Overwrite Existing Data Sobrescrever Dados Existentes + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + O diretório de dados do OpenLP não foi encontrado + +%s + +Este diretório de dados foi previamente alterado do local padrão do OpenLP. Se o novo local estava em uma mídia removível, a mídia deve ser disponibilizada. + +Clique em "Não" para cancelar a carga do OpenLP permitindo que o problema seja corrigido. + +Clique em "Sim" para redifinir o diretório de dados para o local padrão. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Tem certeza que deseja alterar o local do diretório de dados do OpenLP para: + +%s + +O diretório de dados será alterado quando o OpenLP for encerrado. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + AVISO: + +O local selecionado + +%s + +aparentemente contém arquivos de dados do OpenLP. Deseja substituir estes arquivos com os arquivos de dados atuais? + OpenLP.ExceptionDialog - + Error Occurred Ocorreu um Erro - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Ops! O OpenLP encontrou um problema e não pôde recuperar-se. O texto na caixa abaixo contém informações que podem ser úteis para os desenvolvedores do OpenLP, então, por favor, envie um e-mail para bugs@openlp.org, junto com uma descrição detalhada daquilo que você estava fazendo quando o problema ocorreu. - + Send E-Mail Enviar E-Mail - + Save to File Salvar para um Arquivo - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Por favor, descreva o que você estava fazendo para causar este erro (Mínimo de 20 caracteres) - + Attach File Anexar Arquivo - + Description characters to enter : %s Caracteres que podem ser digitadas na descrição: %s @@ -2505,24 +2577,24 @@ Esta localização será usada depois que o OpenLP for fechado. OpenLP.ExceptionForm - + Platform: %s Plataforma: %s - + Save Crash Report Salvar Relatório de Travamento - + Text files (*.txt *.log *.text) Arquivos de texto (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2553,7 +2625,7 @@ Versão %s - + *OpenLP Bug Report* Version: %s @@ -2589,17 +2661,17 @@ Agradecemos se for possível escrever seu relatório em inglês. OpenLP.FileRenameForm - + File Rename Renomear arquivo - + New File Name: Novo nome de Arquivo: - + File Copy Copiar arquivo @@ -2607,17 +2679,17 @@ Agradecemos se for possível escrever seu relatório em inglês. OpenLP.FirstTimeLanguageForm - + Select Translation Selecione Idioma - + Choose the translation you'd like to use in OpenLP. Escolha o idioma que você gostaria de utilizar no OpenLP. - + Translation: Idioma: @@ -2625,192 +2697,192 @@ Agradecemos se for possível escrever seu relatório em inglês. OpenLP.FirstTimeWizard - + Songs Músicas - + First Time Wizard Assistente de Primeira Utilização - + Welcome to the First Time Wizard Bem vindo ao Assistente de Primeira Utilização - + Activate required Plugins Ativar os Plugins necessários - + Select the Plugins you wish to use. Selecione os Plugins que você deseja utilizar. - + Bible Bíblia - + Images Imagens - + Presentations Apresentações - + Media (Audio and Video) Mídia (Áudio e Vídeo) - + Allow remote access Permitir acesso remoto - + Monitor Song Usage Monitorar Utilização das Músicas - + Allow Alerts Permitir Alertas - + Default Settings Configurações Padrões - + Downloading %s... Transferindo %s... - + Download complete. Click the finish button to start OpenLP. Transferência finalizada. Clique no botão terminar para iniciar o OpenLP. - + Enabling selected plugins... Habilitando os plugins selecionados... - + No Internet Connection Conexão com a Internet Indisponível - + Unable to detect an Internet connection. Não foi possível detectar uma conexão com a Internet. - + Sample Songs Músicas de Exemplo - + Select and download public domain songs. Selecione e baixe músicas de domínio público. - + Sample Bibles Bíblias de Exemplo - + Select and download free Bibles. Selecione e baixe Bíblias gratuitas. - + Sample Themes Temas de Exemplo - + Select and download sample themes. Selecione e baixe temas de exemplo. - + Set up default settings to be used by OpenLP. Configure os ajustes padrões que serão utilizados pelo OpenLP. - + Default output display: Saída de projeção padrão: - + Select default theme: Selecione o tema padrão: - + Starting configuration process... Iniciando o processo de configuração... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Este assistente irá ajudá-lo na configuração do OpenLP para o uso inicial. Clique abaixo no botão avançar para começar. - + Setting Up And Downloading Configurando e Transferindo - + Please wait while OpenLP is set up and your data is downloaded. Por favor, aguarde enquanto o OpenLP é configurado e seus dados são transferidos. - + Setting Up Configurando - + Click the finish button to start OpenLP. Clique o botão finalizar para iniciar o OpenLP. - + Download complete. Click the finish button to return to OpenLP. Transferência finalizada. Clique no botão finalizar para retornar ao OpenLP. - + Click the finish button to return to OpenLP. Cloque no botão finalizar para retornar ao OpenLP. - + Custom Slides Slides Personalizados - + Finish Finalizar - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2821,7 +2893,7 @@ Para iniciar o Assistente de Primeira Execução novamente e baixar letras de m Clique no botão finalizar para iniciar o OpenLP com as configurações iniciais. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2835,37 +2907,37 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTagDialog - + Configure Formatting Tags Configurar Etiquetas de Formatação - + Edit Selection Editar Seleção - + Save Salvar - + Description Descrição - + Tag Tag - + Start HTML Iniciar HTML - + End HTML Finalizar HTML @@ -2873,32 +2945,32 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTagForm - + Update Error Erro na Atualização - + Tag "n" already defined. Tag "n" já está definida. - + New Tag - Novo Tag + Nova Tag - + <HTML here> <HTML aqui> - + </and here> </e aqui> - + Tag %s already defined. Tag %s já está definida. @@ -2906,82 +2978,82 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.FormattingTags - + Red Vermelho - + Black Preto - + Blue Azul - + Yellow Amarelo - + Green Verde - + Pink Rosa - + Orange Laranja - + Purple Roxo - + White Branco - + Superscript Sobrescrito - + Subscript Subscrito - + Paragraph Parágrafo - + Bold Negrito - + Italics Itálico - + Underline Sublinhado - + Break Quebra @@ -2989,122 +3061,122 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.GeneralTab - + General Geral - + Monitors Monitores - + Select monitor for output display: Selecione o monitor para exibição: - + Display if a single screen Exibir no caso de uma única tela - + Application Startup Inicialização do Aplicativo - + Show blank screen warning Exibir alerta de tela em branco - + Automatically open the last service Abrir automaticamente o último culto - + Show the splash screen Exibir a tela de abertura - + Application Settings Configurações do Aplicativo - + Prompt to save before starting a new service Perguntar se salva antes de iniciar um novo culto - + Automatically preview next item in service Pré-visualizar automaticamente o item seguinte do culto - + sec seg - + CCLI Details Detalhes de CCLI - + SongSelect username: Usuário SongSelect: - + SongSelect password: Senha SongSelect: - + X X - + Y Y - + Height Altura - + Width Largura - + Check for updates to OpenLP Procurar por atualizações do OpenLP - + Unblank display when adding new live item Ativar projeção ao adicionar um item novo - + Timed slide interval: Intervalo temporizado de slide: - + Background Audio Áudio de Fundo - + Start background audio paused Iniciar áudio de fundo em pausa @@ -3114,12 +3186,12 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli Limites de Slide de Itens de Culto - + Override display position: Alterar posição de exibição: - + Repeat track list Repetir lista de faixas @@ -3147,12 +3219,12 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.LanguageManager - + Language Idioma - + Please restart OpenLP to use your new language setting. Por favor reinicie o OpenLP para usar a nova configuração de idioma. @@ -3160,7 +3232,7 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.MainDisplay - + OpenLP Display Saída do OpenLP @@ -3168,287 +3240,287 @@ Para cancelar o Assistente de Primeira Execução (e não iniciar o OpenLP), cli OpenLP.MainWindow - + &File &Arquivo - + &Import &Importar - + &Export &Exportar - + &View &Exibir - + M&ode M&odo - + &Tools &Ferramentas - + &Settings &Configurações - + &Language &Idioma - + &Help Aj&uda - + Media Manager Gerenciador de Mídia - + Service Manager Gerenciador de Culto - + Theme Manager Gerenciador de Tema - + &New &Novo - + &Open &Abrir - + Open an existing service. Abrir um culto existente. - + &Save &Salvar - + Save the current service to disk. Salvar o culto atual no disco. - + Save &As... Salvar &Como... - + Save Service As Salvar Culto Como - + Save the current service under a new name. Salvar o culto atual com um novo nome. - + E&xit S&air - + Quit OpenLP Fechar o OpenLP - + &Theme &Tema - + &Configure OpenLP... &Configurar o OpenLP... - + &Media Manager &Gerenciador de Mídia - + Toggle Media Manager Alternar Gerenciador de Mídia - + Toggle the visibility of the media manager. Alternar a visibilidade do gerenciador de mídia. - + &Theme Manager &Gerenciador de Tema - + Toggle Theme Manager Alternar para Gerenciamento de Tema - + Toggle the visibility of the theme manager. Alternar a visibilidade do gerenciador de tema. - + &Service Manager Gerenciador de &Culto - + Toggle Service Manager Alternar o Gerenciador de Culto - + Toggle the visibility of the service manager. Alternar visibilidade do gerenciador de culto. - + &Preview Panel &Painel de Pré-Visualização - + Toggle Preview Panel Alternar o Painel de Pré-Visualização - + Toggle the visibility of the preview panel. Alternar a visibilidade do painel de pré-visualização. - + &Live Panel &Painel de Projeção - + Toggle Live Panel Alternar Painel da Projeção - + Toggle the visibility of the live panel. Alternar a visibilidade do painel de projeção. - + &Plugin List &Lista de Plugins - + List the Plugins Listar os Plugins - + &User Guide &Guia do Usuário - + &About &Sobre - + More information about OpenLP Mais informações sobre o OpenLP - + &Online Help &Ajuda Online - + &Web Site &Web Site - + Use the system language, if available. Usar o idioma do sistema, caso disponível. - + Set the interface language to %s Definir o idioma da interface como %s - + Add &Tool... Adicionar &Ferramenta... - + Add an application to the list of tools. Adicionar um aplicativo à lista de ferramentas. - + &Default &Padrão - + Set the view mode back to the default. Reverter o modo de visualização ao padrão. - + &Setup &Configuração - + Set the view mode to Setup. Configurar o modo de visualização para Configuração. - + &Live &Ao Vivo - + Set the view mode to Live. Configurar o modo de visualização como Ao Vivo. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3457,108 +3529,108 @@ You can download the latest version from http://openlp.org/. Voce pode baixar a última versão em http://openlp.org/. - + OpenLP Version Updated Versão do OpenLP Atualizada - + OpenLP Main Display Blanked Tela Principal do OpenLP desativada - + The Main Display has been blanked out A Tela Principal foi desativada - + Default Theme: %s Tema padrão: %s - + English Please add the name of your language here Português do Brasil - + Configure &Shortcuts... Configurar &Atalhos... - + Close OpenLP Fechar o OpenLP - + Are you sure you want to close OpenLP? Você tem certeza de que deseja fechar o OpenLP? - + Open &Data Folder... Abrir Pasta de &Dados... - + Open the folder where songs, bibles and other data resides. Abrir a pasta na qual músicas, bíblias e outros arquivos são armazenados. - + &Autodetect &Auto detectar - + Update Theme Images Atualizar Imagens de Tema - + Update the preview images for all themes. Atualizar as imagens de pré-visualização de todos os temas. - + Print the current service. Imprimir o culto atual. - + &Recent Files Arquivos &Recentes - + L&ock Panels Tr&avar Painéis - + Prevent the panels being moved. Previne que os painéis sejam movidos. - + Re-run First Time Wizard Iniciar o Assistente de Primeira Execução novamente - + Re-run the First Time Wizard, importing songs, Bibles and themes. Iniciar o Assistente de Primeira Execução novamente importando músicas, Bíblia e temas. - + Re-run First Time Wizard? Deseja iniciar o Assistente de Primeira Execução novamente? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3567,43 +3639,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Executar o assistente novamente poderá fazer mudanças na sua configuração atual, adicionar músicas à sua base existente e mudar o seu tema padrão. - + Clear List Clear List of recent files Limpar Lista - + Clear the list of recent files. Limpar a lista de arquivos recentes. - + Configure &Formatting Tags... Configurar Etiquetas de &Formatação... - + Export OpenLP settings to a specified *.config file Exportar as configurações do OpenLP para um arquivo *.config - + Settings Configurações - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importar as configurações do OpenLP de um arquivo *.config que foi previamente exportado neste ou em outro computador - + Import settings? Importar configurações? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3616,50 +3688,77 @@ Importar as configurações irá fazer mudanças permanentes no seu OpenLP. Importar configurações incorretas pode causar problemas de execução ou que o OpenLP finalize de forma inesperada. - + Open File Abrir Arquivo - + OpenLP Export Settings Files (*.conf) Arquivo de Configurações do OpenLP (*.conf) - + Import settings Importar configurações - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. O OpenLP irá finalizar. As configurações importadas serão aplicadas na próxima execução do OpenLP. - + Export Settings File Exportar arquivo de configurações - + OpenLP Export Settings File (*.conf) Arquivo de Configurações do OpenLP (*.conf) - + New Data Directory Error Erro no Novo Diretório de Dados + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + O arquivo que você selecionou não parece ser um arquivo de configuração OpenLP válido. + +A seção [%s] não é válida. + +O processamento foi interrompido e nenhuma alteração foi realizada. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Copiando dados do OpenLP para o novo local do diretório de dados - %s - Por favor, aguarde a finalização da cópia + + + + OpenLP Data directory copy failed + +%s + Falhou a cópia do diretório de dados do OpenLP + +%s + OpenLP.Manager - + Database Error Erro no Banco de Dados - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3668,7 +3767,7 @@ Database: %s Banco de dados: %s - + OpenLP cannot load your database. Database: %s @@ -3680,74 +3779,74 @@ Banco de Dados: %s OpenLP.MediaManagerItem - + No Items Selected Nenhum Item Selecionado - + &Add to selected Service Item &Adicionar ao Item de Ordem de Culto selecionado - + You must select one or more items to preview. Você deve selecionar um ou mais itens para pré-visualizar. - + You must select one or more items to send live. Você deve selecionar um ou mais itens para projetar. - + You must select one or more items. Você deve selecionar um ou mais itens. - + You must select an existing service item to add to. Você deve selecionar um item de culto existente ao qual adicionar. - + Invalid Service Item Item de Culto inválido - + You must select a %s service item. Você deve selecionar um item de culto %s. - + You must select one or more items to add. Você deve selecionar um ou mais itens para adicionar. - + No Search Results Nenhum Resultado de Busca - + Invalid File Type Tipo de Arquivo Inválido - + Invalid File %s. Suffix not supported Arquivo Inválido %s. Sufixo não suportado - + &Clone &Duplicar - + Duplicate files were found on import and were ignored. Arquivos duplicados foram encontrados na importação e foram ignorados. @@ -3755,12 +3854,12 @@ Sufixo não suportado OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. tag <lyrics> ausente. - + <verse> tag is missing. tag <verse> ausente. @@ -3768,42 +3867,42 @@ Sufixo não suportado OpenLP.PluginForm - + Plugin List Lista de Plugins - + Plugin Details Detalhes do Plugin - + Status: Status: - + Active Ativo - + Inactive Inativo - + %s (Inactive) %s (Inativo) - + %s (Active) %s (Ativo) - + %s (Disabled) %s (Desabilitado) @@ -3811,12 +3910,12 @@ Sufixo não suportado OpenLP.PrintServiceDialog - + Fit Page Ajustar à Página - + Fit Width Ajustar à Largura @@ -3824,77 +3923,77 @@ Sufixo não suportado OpenLP.PrintServiceForm - + Options Opções - + Copy Copiar - + Copy as HTML Copiar como HTML - + Zoom In Aumentar o Zoom - + Zoom Out Diminuir o Zoom - + Zoom Original Zoom Original - + Other Options Outras Opções - + Include slide text if available Incluir texto do slide se disponível - + Include service item notes Incluir notas do item de culto - + Include play length of media items Incluir duração dos itens de mídia - + Add page break before each text item Adicionar uma quebra de página antes de cada item de texto - + Service Sheet Folha de Culto - + Print Imprimir - + Title: Título: - + Custom Footer Text: Texto de Rodapé Customizado: @@ -3902,12 +4001,12 @@ Sufixo não suportado OpenLP.ScreenList - + Screen Tela - + primary primário @@ -3915,12 +4014,12 @@ Sufixo não suportado OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Início</strong>: %s - + <strong>Length</strong>: %s <strong>Duração</strong>: %s @@ -3928,7 +4027,7 @@ Sufixo não suportado OpenLP.ServiceItemEditForm - + Reorder Service Item Reordenar Item de Culto @@ -3936,287 +4035,298 @@ Sufixo não suportado OpenLP.ServiceManager - + Move to &top Mover para o &topo - + Move item to the top of the service. Mover item para o topo do culto. - + Move &up Mover para &cima - + Move item up one position in the service. Mover item uma posição para cima no culto. - + Move &down Mover para &baixo - + Move item down one position in the service. Mover item uma posição para baixo no culto. - + Move to &bottom Mover para o &final - + Move item to the end of the service. Mover item para o final do culto. - + &Delete From Service &Excluir do Culto - + Delete the selected item from the service. Excluir o item selecionado do culto. - + &Add New Item &Adicionar um Novo Item - + &Add to Selected Item &Adicionar ao Item Selecionado - + &Edit Item &Editar Item - + &Reorder Item &Reordenar Item - + &Notes &Anotações - + &Change Item Theme &Alterar Tema do Item - + OpenLP Service Files (*.osz) Arquivos de Culto do OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. O arquivo não é um culto válida. A codificação do conteúdo não é UTF-8. - + File is not a valid service. Arquivo não é uma ordem de culto válida. - + Missing Display Handler Faltando o Manipulador de Exibição - + Your item cannot be displayed as there is no handler to display it O seu item não pode ser exibido porque não existe um manipulador para exibí-lo - + Your item cannot be displayed as the plugin required to display it is missing or inactive O item não pode ser exibido porque o plugin necessário para visualizá-lo está ausente ou está desativado - + &Expand all &Expandir todos - + Expand all the service items. Expandir todos os itens do culto. - + &Collapse all &Recolher todos - + Collapse all the service items. Recolher todos os itens do culto. - + Open File Abrir Arquivo - + Moves the selection down the window. Move a seleção para baixo dentro da janela. - + Move up Mover para cima - + Moves the selection up the window. Move a seleção para cima dentro da janela. - + Go Live Projetar - + Send the selected item to Live. Enviar o item selecionado para a Projeção. - + &Start Time &Horário Inicial - + Show &Preview Exibir &Pré-visualização - + Modified Service Culto Modificado - + The current service has been modified. Would you like to save this service? O culto atual foi modificada. Você gostaria de salvar este culto? - + Custom Service Notes: Anotações de Culto Personalizados: - + Notes: Observações: - + Playing time: Duração: - + Untitled Service Culto Sem Nome - + File could not be opened because it is corrupt. Arquivo não pôde ser aberto porque está corrompido. - + Empty File Arquivo vazio - + This service file does not contain any data. Este arquivo de culto não contém dados. - + Corrupt File Arquivo corrompido - + Load an existing service. Carregar um culto existente. - + Save this service. Salvar este culto. - + Select a theme for the service. Selecionar um tema para o culto. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Este arquivo está corrompido ou não é um arquivo de culto do OpenLP 2.0. - - Service File Missing - Arquivo do Culto não encontrado - - - + Slide theme Tema do Slide - + Notes Notas - + Edit Editar - + Service copy only Somente cópia de culto - + Error Saving File Erro ao Salvar Arquivo - + There was an error saving your file. Houve um erro ao salvar seu arquivo. + + + Service File(s) Missing + Arquivo(s) Faltando no Culto + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + O(s) seguinte(s) arquivo(s) estão faltando no culto: +<byte value="x9"/>%s + +Estes arquivos serão removidos se você continuar a salvar. + OpenLP.ServiceNoteForm - + Service Item Notes Anotações do Item de Culto @@ -4224,7 +4334,7 @@ A codificação do conteúdo não é UTF-8. OpenLP.SettingsForm - + Configure OpenLP Configurar o OpenLP @@ -4232,67 +4342,67 @@ A codificação do conteúdo não é UTF-8. OpenLP.ShortcutListDialog - + Action Ação - + Shortcut Atalho - + Duplicate Shortcut Atalho Repetido - + The shortcut "%s" is already assigned to another action, please use a different shortcut. O atalho "%s" já está designado para outra ação, escolha um atalho diferente. - + Alternate Alternativo - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Selecione uma ação e clique em um dos botões abaixo para iniciar a captura de um novo atalho primário ou alternativo, respectivamente. - + Default Padrão - + Custom Personalizado - + Capture shortcut. Capturar atalho. - + Restore the default shortcut of this action. Restaurar o atalho padrão desta ação. - + Restore Default Shortcuts Restaurar Atalhos Padrões - + Do you want to restore all shortcuts to their defaults? Deseja restaurar todos os atalhos ao seus padrões? - + Configure Shortcuts Configurar Atalhos @@ -4300,172 +4410,172 @@ A codificação do conteúdo não é UTF-8. OpenLP.SlideController - + Hide Ocultar - + Go To Ir Para - + Blank Screen Apagar Tela - + Blank to Theme Apagar e deixar o Tema - + Show Desktop Mostrar a Área de Trabalho - + Previous Service Lista Anterior - + Next Service Próxima Lista - + Escape Item Escapar Item - + Move to previous. Mover para o anterior. - + Move to next. Mover para o seguinte. - + Play Slides Exibir Slides - + Delay between slides in seconds. Espera entre slides em segundos. - + Move to live. Mover para projeção. - + Add to Service. Adicionar ao Culto. - + Edit and reload song preview. Editar e recarregar pré-visualização da música. - + Start playing media. Começar a reproduzir mídia. - + Pause audio. Pausar o áudio. - + Pause playing media. Pausar mídia sendo reproduzido. - + Stop playing media. Parar mídia sendo reproduzido. - + Video position. Posição do vídeo - + Audio Volume. Volume do Áudio. - + Go to "Verse" Ir para "Estrofe" - + Go to "Chorus" Ir para "Refrão" - + Go to "Bridge" Ir para "Ponte" - + Go to "Pre-Chorus" Ir para "Pré-Refrão" - + Go to "Intro" Ir para "Introdução" - + Go to "Ending" Ir para "Final" - + Go to "Other" Ir para "Outro" - + Previous Slide Slide Anterior - + Next Slide Slide Seguinte - + Pause Audio Interromper Som - + Background Audio Som de Fundo - + Go to next audio track. Ir para a próxima faixa de áudio - + Tracks Faixas @@ -4473,17 +4583,17 @@ A codificação do conteúdo não é UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Sugestões Ortográficas - + Formatting Tags Tags de Formatação - + Language: Idioma: @@ -4491,615 +4601,627 @@ A codificação do conteúdo não é UTF-8. OpenLP.StartTimeForm - + Hours: Horários: - + Minutes: Minutos: - + Seconds: Segundos: - + Item Start and Finish Time Tempo de Início e Término do item - + Start Início - + Finish Fim - + Length Duração - + Time Validation Error Erro de Validação de Tempo - + Finish time is set after the end of the media item O tempo final está após o fim do item de mídia - + Start time is after the finish time of the media item O tempo inicial está após o fim do item de mídia - + Theme Layout Disposição do Tema - + The blue box shows the main area. A caixa azul mostra a área principal. - + The red box shows the footer. A caixa vermelha mostra o rodapé. - - OpenLP.ThemeForm - - - Select Image - Selecionar Imagem - - - - Theme Name Missing - Faltando Nome do Tema - - - - There is no name for this theme. Please enter one. - Não há nome para este tema. Por favor forneça um. - - - - Theme Name Invalid - Nome do Tema Inválido - - - - Invalid theme name. Please enter one. - O nome do tema é inválido. Por favor forneça um. - - - - (approximately %d lines per slide) - (aproximadamente %d linhas por slide) - - OpenLP.ThemeManager - + Create a new theme. Criar um novo tema. - + Edit Theme Editar Tema - + Edit a theme. Editar um tema. - + Delete Theme Excluir Tema - + Delete a theme. Excluir um tema. - + Import Theme Importar Tema - + Import a theme. Importar um tema. - + Export Theme Exportar Tema - + Export a theme. Exportar um tema. - + &Edit Theme &Editar Tema - + &Delete Theme &Apagar Tema - + Set As &Global Default Definir como Padrão &Global - + %s (default) %s (padrão) - + You must select a theme to edit. Você precisa selecionar um tema para editar. - + You are unable to delete the default theme. Você não pode apagar o tema padrão. - + Theme %s is used in the %s plugin. O tema %s é usado no plugin %s. - + You have not selected a theme. Você não selecionou um tema. - + Save Theme - (%s) Salvar Tema - (%s) - + Theme Exported Tema Exportado - + Your theme has been successfully exported. Seu tema foi exportado com sucesso. - + Theme Export Failed Falha ao Exportar Tema - + Your theme could not be exported due to an error. O tema não pôde ser exportado devido a um erro. - + Select Theme Import File Selecionar Arquivo de Importação de Tema - + File is not a valid theme. O arquivo não é um tema válido. - + &Copy Theme &Copiar Tema - + &Rename Theme &Renomear Tema - + &Export Theme &Exportar Tema - + You must select a theme to rename. Você precisa selecionar um tema para renomear. - + Rename Confirmation Confirmar Renomeação - + Rename %s theme? Renomear o tema %s? - + You must select a theme to delete. Você precisa selecionar um tema para excluir. - + Delete Confirmation Confirmar Exclusão - + Delete %s theme? Apagar o tema %s? - + Validation Error Erro de Validação - + A theme with this name already exists. Já existe um tema com este nome. - + OpenLP Themes (*.theme *.otz) Temas do OpenLP (*.theme *.otz) - + Copy of %s Copy of <theme name> Cópia do %s - + Theme Already Exists Tema Já Existe + + + Theme %s already exists. Do you want to replace it? + O Tema %s já existe. Deseja substituí-lo? + OpenLP.ThemeWizard - + Theme Wizard Assistente de Tema - + Welcome to the Theme Wizard Bem-vindo ao Assistente de Tema - + Set Up Background Configurar Plano de Fundo - + Set up your theme's background according to the parameters below. Configure o plano de fundo de seu tema de acordo com os parâmetros abaixo. - + Background type: Tipo de plano de fundo: - + Solid Color Cor Sólida - + Gradient Degradê - + Color: Cor: - + Gradient: Degradê: - + Horizontal Horizontal - + Vertical Vertical - + Circular Circular - + Top Left - Bottom Right Esquerda Superior - Direita Inferior - + Bottom Left - Top Right Esquerda Inferior - Direita Superior - + Main Area Font Details Detalhes da Fonte da Área Principal - + Define the font and display characteristics for the Display text Definir a fonte e características de exibição para o texto de Exibição - + Font: Fonte: - + Size: Tamanho: - + Line Spacing: Espaçamento entre linhas: - + &Outline: &Contorno: - + &Shadow: &Sombra: - + Bold Negrito - + Italic Itálico - + Footer Area Font Details Detalhes de Fonte da Área de Rodapé - + Define the font and display characteristics for the Footer text Defina a fone e as características de exibição do texto de Rodapé - + Text Formatting Details Detalhes da Formatação de Texto - + Allows additional display formatting information to be defined Permite que informações adicionais de formatações de exibição sejam definidas - + Horizontal Align: Alinhamento Horizontal: - + Left Esquerda - + Right Direita - + Center Centralizado - + Output Area Locations Posições das Áreas de Saída - + Allows you to change and move the main and footer areas. Permite modificar e mover as áreas principal e de rodapé. - + &Main Area &Área Principal - + &Use default location &Usar posição padrão - + X position: Posição X: - + px px - + Y position: Posição Y: - + Width: Largura: - + Height: Altura: - + Use default location Usar posição padrão - + Theme name: Nome do tema: - + Edit Theme - %s Editar Tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Este assistente vai ajudá-lo a criar e editar seus temas. Clique no botão avançar abaixo para iniciar o processo, configurando seu plano de fundo. - + Transitions: Transições: - + &Footer Area Área do &Rodapé - + Starting color: Cor inicial: - + Ending color: Cor final: - + Background color: Cor do Plano de Fundo: - + Justify Justificar - + Layout Preview Previsualizar a Disposição - + Transparent Transparente - + Preview and Save Visualizar e Salvar - + Preview the theme and save it. Visualizar o tema e salvar + + + (approximately %d lines per slide) + (aproximadamente %d linhas por slide) + + + + Background Image Empty + Imagem de Fundo Não-especificado + + + + You have not selected a background image. Please select one before continuing. + Você não selecionou uma imagem de fundo. Por favor, selecione uma antes de continuar. + + + + Select Image + Selecione Imagem + + + + Theme Name Missing + Falta Nome do Tema + + + + There is no name for this theme. Please enter one. + Não existe um nome para este tema. Favor digitar um. + + + + Theme Name Invalid + Nome do Tema Inválido + + + + Invalid theme name. Please enter one. + Nome do tema inválido. Favor especificar um. + OpenLP.ThemesTab - + Global Theme Tema Global - + Theme Level Nível do Tema - + S&ong Level Nível de &Música - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Use o tema de cada música na base de dados. Se uma música não tiver um tema associado a ela, então usar o tema do culto. Se o culto não tiver um tema, então usar o tema global. - + &Service Level Nível de &Culto - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Usar o tema do culto, ignorando qualquer temas das músicas individuais. Se o culto não tiver um tema, então usar o tema global. - + &Global Level Nível &Global - + Use the global theme, overriding any themes associated with either the service or the songs. Usar o tema global, ignorando qualquer tema associado ao culto ou às músicas. - + Themes Temas @@ -5107,315 +5229,315 @@ A codificação do conteúdo não é UTF-8. OpenLP.Ui - + Error Erro - + About Sobre - + &Add &Adicionar - + Advanced Avançado - + All Files Todos os Arquivos - + Bottom Rodapé - + Browse... Procurar... - + Cancel Cancelar - + CCLI number: Número CCLI: - + Create a new service. Criar uma novo culto. - + &Delete &Excluir - + &Edit &Editar - + Empty Field Campo Vazio - + Export Exportar - + pt Abbreviated font pointsize unit pt - + Image Imagem - + Import Importar - + Live Projeção - + Live Background Error Erro no Fundo da Projeção - + Load Carregar - + Middle Meio - + New Novo - + New Service Novo Culto - + New Theme Novo Tema - + No File Selected Singular Nenhum Arquivo Selecionado - + No Files Selected Plural Nenhum Arquivo Selecionado - + No Item Selected Singular Nenhum Item Selecionado - + No Items Selected Plural Nenhum Item Selecionado - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Pré-Visualização - + Replace Background Substituir Plano de Fundo - + Reset Background Restabelecer o Plano de Fundo - + s The abbreviated unit for seconds s - + Save && Preview Salvar && Pré-Visualizar - + Search Pesquisar - + You must select an item to delete. Você precisa selecionar um item para excluir. - + You must select an item to edit. Você precisa selecionar um item para editar. - + Save Service Salvar Culto - + Service Culto - + Start %s Início %s - + Theme Singular Tema - + Themes Plural Temas - + Top Topo - + Version Versão - + Delete the selected item. Excluir o item selecionado. - + Move selection up one position. Mover a seleção para cima em uma posição. - + Move selection down one position. Mover a seleção para baixo em uma posição. - + &Vertical Align: Alinhamento &Vertical: - + Finished import. Importação concluída. - + Format: Formato: - + Importing Importando - + Importing "%s"... Importando "%s"... - + Select Import Source Selecionar Origem da Importação - + Select the import format and the location to import from. Selecione o formato e a localização para a importação. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. O importador do openlp.org 1.x foi desabilitado devido à falta de um módulo Python. Se você deseja utilizar este importador, você precisará instalar o módulo "python-sqlite". - + Open %s File Abrir o Arquivo %s - + %p% %p% - + Ready. Pronto. - + Starting import... Iniciando importação... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Você precisa especificar pelo menos um arquivo %s para importar. @@ -5426,299 +5548,304 @@ A codificação do conteúdo não é UTF-8. Bem Vindo ao Assistente de Importação de Bíblias - + Welcome to the Song Export Wizard Bem Vindo ao Assistente de Exportação de Músicas - + Welcome to the Song Import Wizard Bem-vindo ao Assistente de Importação de Música - + Author Singular Autor - + Authors Plural Autores - - © + + © Copyright symbol. © - + Song Book Singular Hinário - + Song Books Plural Hinários - + Song Maintenance Gerenciamento de Músicas - + Topic Singular Tópico - + Topics Plural Tópicos - + Continuous Contínuo - + Default Padrão - + Display style: Estilo de Exibição: - + Duplicate Error Erro de duplicidade - + File Arquivo - + Help Ajuda - + h The abbreviated unit for hours h - + Layout style: Estilo do Layout: - + Live Toolbar Barra de Ferramentas de Projeção - + m The abbreviated unit for minutes m - + OpenLP is already running. Do you wish to continue? OpenLP já está sendo executado. Deseja continuar? - + Settings Configurações - + Tools Ferramentas - + Unsupported File Arquivo Não Suportado - + Verse Per Slide Versículos por Slide - + Verse Per Line Versículos por Linha - + View Visualizar - + Title and/or verses not found Título e/ou estrófes não encontradas - + XML syntax error Erro de sintaxe XML - + View Mode Modo de Visualização - + Open service. Abrir culto. - + Print Service Imprimir Culto - + Replace live background. Trocar fundo da projeção. - + Reset live background. Reverter fundo da projeção. - + Split a slide into two only if it does not fit on the screen as one slide. Dividir um slide em dois somente se não couber na tela em um único slide. - + Welcome to the Bible Upgrade Wizard Bem-vindo ao Assistente de Atualização de Bíblias - + Confirm Delete Confirmar Exclusão - + Play Slides in Loop Exibir Slides com Repetição - + Play Slides to End Exibir Slides até o Fim - + Stop Play Slides in Loop Parar Slides com Repetição - + Stop Play Slides to End Parar Slides até o Final - + Next Track Faixa Seguinte - + Search Themes... Search bar place holder text Pesquisar temas... - + Optional &Split Divisão Opcional - + Invalid Folder Selected Singular Diretório Inválido Selecionado - + Invalid File Selected Singular Arquivo Inválido Selecionado - + Invalid Files Selected Plural Arquivos Inválidos Selecionados - + No Folder Selected Singular Nenhum Diretório Selecionado - + Open %s Folder Abrir Diretório %s - + You need to specify one %s file to import from. A file type e.g. OpenSong Você precisa especificar um arquivo %s de onde importar. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Você precisa especificar um diretório %s de onde importar. + + + Importing Songs + Importando Músicas + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 e %2 - + %1, and %2 Locale list separator: end %1, e %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5727,50 +5854,50 @@ A codificação do conteúdo não é UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Plugin de Apresentação</strong><br />O plugin de apresentação permite exibir apresentações utilizando vários programas diferentes. Os programas disponíveis são exibidos em uma caixa de seleção. - + Presentation name singular Apresentação - + Presentations name plural Apresentações - + Presentations container title Apresentações - + Load a new presentation. Carregar uma nova apresentação. - + Delete the selected presentation. Excluir a apresentação selecionada. - + Preview the selected presentation. Pré-visualizar a apresentação selecionada. - + Send the selected presentation live. Enviar a apresentação selecionada para a projeção. - + Add the selected presentation to the service. Adicionar a apresentação selecionada ao culto. @@ -5778,52 +5905,52 @@ A codificação do conteúdo não é UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Selecionar Apresentação(ões) - + Automatic Automático - + Present using: Apresentar usando: - + File Exists O Arquivo já Existe - + A presentation with that filename already exists. Já existe uma apresentação com este nome. - + This type of presentation is not supported. Este tipo de apresentação não é suportado. - + Presentations (%s) Apresentações (%s) - + Missing Presentation Apresentação Não Encontrada - + The presentation %s is incomplete, please reload. A apresentação %s está incompleta, por favor recarregue. - + The presentation %s no longer exists. A apresentação %s já não existe mais. @@ -5831,17 +5958,17 @@ A codificação do conteúdo não é UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Controladores Disponíveis - + %s (unavailable) %s (indisponivel) - + Allow presentation application to be overridden Permitir que o aplicativo de apresentações seja alterado @@ -5849,24 +5976,24 @@ A codificação do conteúdo não é UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Plugin Remoto</strong><br />O plugin remoto permite enviar mensagens para uma versão do OpenLP em execução em um computador diferente através de um navegador de internet ou através da API remota. - + Remote name singular Remoto - + Remotes name plural Remotos - + Remote container title Remoto @@ -5875,236 +6002,246 @@ A codificação do conteúdo não é UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 Remoto - + OpenLP 2.0 Stage View OpenLP 2.0 Visão de Palco - + Service Manager Gerenciador de Culto - + Slide Controller Controlador de Slide - + Alerts Alertas - + Search Pesquisar - + Refresh Atualizar - + Blank Desativar - + Show Exibir - + Prev Ant - + Next Seg - + Text Texto - + Show Alert Mostrar Alerta - + Go Live Projetar - + No Results Nenhum Resultado - + Options Opções - + Add to Service Adicionar ao Culto - + Home Home - + Theme Tema - + Desktop Área de Trabalho - + Add &amp; Go to Service Adicionar ao Culto + + + Service + Culto + + + + Slides + Slides + RemotePlugin.RemoteTab - + Serve on IP address: Endereço IP do servidor: - + Port number: Número de porta: - + Server Settings Configurações do Servidor - + Remote URL: URL Remoto: - + Stage view URL: URL de Visualização de Palco: - + Display stage time in 12h format Exibir hora de palco no formato 12h - + Android App Aplicativo Android - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Scaneia o código QR ou clique <a href="https://market.android.com/details?id=org.openlp.android">download</a> para instalar o aplicativo Android a partir do Market. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Scaneia o código de resposta rápida ou clique em <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> para instalar o aplicativo Android a partir do Google Play. SongUsagePlugin - + &Song Usage Tracking &Registro de Uso de Músicas - + &Delete Tracking Data &Excluir Dados de Registro - + Delete song usage data up to a specified date. Excluir registros de uso até uma data específica. - + &Extract Tracking Data &Extrair Dados de Registro - + Generate a report on song usage. Gerar um relatório sobre o uso das músicas. - + Toggle Tracking Alternar Registro - + Toggle the tracking of song usage. Alternar o registro de uso das músicas. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Plugin de Uso das Músicas</strong><br />Este plugin registra o uso das músicas nos cultos. - + SongUsage name singular Registro das Músicas - + SongUsage name plural UsoDaMúsica - + SongUsage container title Uso das Músicas - + Song Usage Uso das Músicas - + Song usage tracking is active. Registro de uso das Músicas está ativado. - + Song usage tracking is inactive. Registro de uso das Músicas está desativado. - + display exibir - + printed impresso @@ -6112,32 +6249,32 @@ A codificação do conteúdo não é UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Excluir Dados de Registro das Músicas - + Delete Selected Song Usage Events? Deseja Excluir os Eventos de Uso das Músicas? - + Are you sure you want to delete selected Song Usage data? Você tem certeza de que deseja excluir os dados selecionados de Uso das Músicas? - + Deletion Successful Exclusão Bem Sucedida - + All requested data has been deleted successfully. Todos os dados solicitados foram apagados com sucesso. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Selecione uma data limite para que os dados de uso de músicas seja excluído. Todos os registros antes desta data será excluídos permanentemente. @@ -6145,42 +6282,42 @@ A codificação do conteúdo não é UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Extração de Uso das Músicas - + Select Date Range Selecionar Faixa de Datas - + to até - + Report Location Localização do Relatório - + Output File Location Local do arquivo de saída - + usage_detail_%s_%s.txt detalhe_uso_%s_%s.txt - + Report Creation Criação de Relatório - + Report %s has been successfully created. @@ -6189,12 +6326,12 @@ has been successfully created. foi criado com sucesso. - + Output Path Not Selected Caminho de saída não foi selecionado - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Você precisa selecionar uma localização de sapida válida para o relatório de uso de músicas. Por favor selecione um caminho existente no seu computador. @@ -6202,112 +6339,112 @@ foi criado com sucesso. SongsPlugin - + &Song &Música - + Import songs using the import wizard. Importar músicas com o assistente de importação. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Plugin de Músicas</strong><br />O plugin de músicas permite exibir e gerenciar músicas. - + &Re-index Songs &Re-indexar Músicas - + Re-index the songs database to improve searching and ordering. Re-indexar o banco de dados de músicas para melhorar a busca e a ordenação. - + Reindexing songs... Reindexando músicas... - + Arabic (CP-1256) Arábico (CP-1256) - + Baltic (CP-1257) Báltico (CP-1257) - + Central European (CP-1250) Europeu Central (CP-1250) - + Cyrillic (CP-1251) Cirílico (CP-1251) - + Greek (CP-1253) Grego (CP-1253) - + Hebrew (CP-1255) Hebraico (CP-1255) - + Japanese (CP-932) Japonês (CP-932) - + Korean (CP-949) Coreano (CP-949) - + Simplified Chinese (CP-936) Chinês Simplificado (CP-936) - + Thai (CP-874) Tailandês (CP-874) - + Traditional Chinese (CP-950) Chinês Tradicional (CP-950) - + Turkish (CP-1254) Turco (CP-1254) - + Vietnam (CP-1258) Vietnamita (CP-1258) - + Western European (CP-1252) Europeu Ocidental (CP-1252) - + Character Encoding Codificação de Caracteres - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6316,100 +6453,105 @@ pela correta representação dos caracteres. Normalmente pode usar a opção pré-selecionada. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Escolha a codificação dos caracteres. A codificação é responsável pela correta representação dos caracteres. - + Song name singular Música - + Songs name plural Músicas - + Songs container title Músicas - + Exports songs using the export wizard. Exporta músicas utilizando o assistente de exportação. - + Add a new song. Adicionar uma nova música. - + Edit the selected song. Editar a música selecionada. - + Delete the selected song. Excluir a música selecionada. - + Preview the selected song. Pré-visualizar a música selecionada. - + Send the selected song live. Enviar a música selecionada para a projeção. - + Add the selected song to the service. Adicionar a música selecionada ao culto. + + + Reindexing songs + Reindexando músicas + SongsPlugin.AuthorsForm - + Author Maintenance Gerenciamento de Autores - + Display name: Nome de tela: - + First name: Primeiro nome: - + Last name: Sobrenome: - + You need to type in the first name of the author. Você precisa digitar o primeiro nome do autor. - + You need to type in the last name of the author. Você precisa digitar o sobrenome do autor. - + You have not set a display name for the author, combine the first and last names? Você não definiu um nome de tela para o autor, combinar o nome e o sobrenome? @@ -6417,7 +6559,7 @@ A codificação é responsável pela correta representação dos caracteres. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. O arquivo não possui uma extensão válida. @@ -6425,12 +6567,12 @@ A codificação é responsável pela correta representação dos caracteres. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administrado por %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6442,12 +6584,12 @@ EasyWorship] SongsPlugin.EditBibleForm - + Meta Data Metadados - + Custom Book Names Nomes de Livros Personalizados @@ -6455,207 +6597,202 @@ EasyWorship] SongsPlugin.EditSongForm - + Song Editor Editor de Músicas - + &Title: &Título: - + Alt&ernate title: Título &Alternativo: - + &Lyrics: &Letra: - + &Verse order: Ordem das &estrofes: - + Ed&it All &Editar Todos - + Title && Lyrics Título && Letra - + &Add to Song &Adicionar à Música - + &Remove &Remover - + &Manage Authors, Topics, Song Books &Gerenciar Autores, Assuntos, Hinários - + A&dd to Song A&dicionar uma Música - + R&emove R&emover - + Book: Hinário: - + Number: Número: - + Authors, Topics && Song Book Autores, Assuntos && Hinários - + New &Theme Novo &Tema - + Copyright Information Direitos Autorais - + Comments Comentários - + Theme, Copyright Info && Comments Tema, Direitos Autorais && Comentários - + Add Author Adicionar Autor - + This author does not exist, do you want to add them? Este autor não existe, deseja adicioná-lo? - + This author is already in the list. Este autor já está na lista. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Você não selecionou um autor válido. Selecione um autor da lista, ou digite um novo autor e clique em "Adicionar Autor à Música" para adicioná-lo. - + Add Topic Adicionar Assunto - + This topic does not exist, do you want to add it? Este assunto não existe, deseja adicioná-lo? - + This topic is already in the list. Este assunto já está na lista. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Você não selecionou um assunto válido. Selecione um assunto da lista ou digite um novo assunto e clique em "Adicionar Assunto à Música" para adicioná-lo. - + You need to type in a song title. Você deve digitar um título para a música. - + You need to type in at least one verse. Você deve digitar ao menos um verso. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. A ordem das estrofes é inválida. Não há estrofe correspondente a %s. Valores válidos são %s. - + Add Book Adicionar Hinário - + This song book does not exist, do you want to add it? Este hinário não existe, deseja adicioná-lo? - + You need to have an author for this song. Você precisa ter um autor para esta música. - - You need to type some text in to the verse. - Você precisa digitar algum texto na estrofe. - - - + Linked Audio Áudio Ligado - + Add &File(s) Adicionar &Arquivo(s) - + Add &Media Adicionar &Mídia - + Remove &All Excluir &Todos - + Open File(s) Abrir Arquivo(s) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Aviso:</strong> Nem todos os versos estão em uso. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. A ordem dos versos está inválido. Não há versos correspondentes a %s. Entradas válidas são %s. @@ -6663,22 +6800,22 @@ EasyWorship] SongsPlugin.EditVerseForm - + Edit Verse Editar Estrofe - + &Verse type: Tipo de &Estrofe: - + &Insert &Inserir - + Split a slide into two by inserting a verse splitter. Dividir um slide em dois, inserindo um divisor de estrófes. @@ -6686,82 +6823,82 @@ EasyWorship] SongsPlugin.ExportWizardForm - + Song Export Wizard Assistente de Exportação de Músicas - + Select Songs Selecionar Músicas - + Check the songs you want to export. Marque as músicas que você deseja exportar. - + Uncheck All Desmarcar Todas - + Check All Marcar Todas - + Select Directory Selecionar Diretório - + Directory: Diretório: - + Exporting Exportando - + Please wait while your songs are exported. Por favor aguarde enquanto as suas músicas são exportadas. - + You need to add at least one Song to export. Você precisa adicionar pelo menos uma Música para exportar. - + No Save Location specified Nenhum Localização para Salvar foi especificado - + Starting export... Iniciando a exportação... - + You need to specify a directory. Você precisa especificar um diretório. - + Select Destination Folder Selecione a Pasta de Destino - + Select the directory where you want the songs to be saved. Selecionar o diretório onde deseja salvar as músicas. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Este assistente irá ajudar na exportação de suas músicas para o formato aberto e gratuito <strong>OpenLyrics</strong>. @@ -6769,172 +6906,172 @@ EasyWorship] SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Selecione Arquivos de Documentos/Apresentações - + Song Import Wizard Assistente de Importação de Música - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Este assistente irá ajudá-lo a importar músicas de uma variedade de formatos. Clique no abaixo no botão Próximo para iniciar o processo, escolhendo um desses formatos. - + Generic Document/Presentation Documento/Apresentação Genérica - + Add Files... Adicionar Arquivos... - + Remove File(s) Remover Arquivos(s) - + Please wait while your songs are imported. Por favor espere enquanto as suas músicas são importadas. - + OpenLP 2.0 Databases Bancos de Dados do OpenLP 2.0 - + openlp.org v1.x Databases Bancos de Dados do openlp.org v1.x - + Words Of Worship Song Files Arquivos de Música do Words Of Worship - + Songs Of Fellowship Song Files Arquivos do Songs Of Fellowship - + SongBeamer Files Arquivos do SongBeamer - + SongShow Plus Song Files Arquivos do SongShow Plus - + Foilpresenter Song Files Arquivos do Folipresenter - + Copy Copiar - + Save to File Salvar em Arquivo - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação Songs of Fellowship foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. A importação de documentos/apresentações genéricos foi desabilitada porque OpenLP não consegue acessar OpenOffice ou LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song Música Exportada OpenLyrics ou OpenLP 2.0 - + OpenLyrics Files Arquivos OpenLyrics - + CCLI SongSelect Files Arquivos CCLI - + EasySlides XML File Arquivo XML EasySlides - + EasyWorship Song Database Músicas EasyWorship - + DreamBeam Song Files Arquivos de Música DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Você precisa especificar um diretório válido de banco de dados do PowerSong 1.0. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Primeiro converta o seu banco de dados do ZionWorx, como explicado no <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Manual do Usuário</a> - + SundayPlus Song Files Arquivos de Música do SundayPlus - + This importer has been disabled. Esta importação foi desabilitada. - + MediaShout Database Banco de Dados do MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. A importação do MediaShout somente é suportada no Windows. Ela foi desabilitada por causa de um módulo Python inexistente. Se você deseja utilizar esta importação, você precisa instalar o módulo "pyodbc". - + SongPro Text Files Arquivos Texto do SongPro - + SongPro (Export File) SongPro (Arquivo de Exportação) - + In SongPro, export your songs using the File -> Export menu No SongPro, exporte as suas músicas utilizando o menu Arquivo -> Exportar. @@ -6942,12 +7079,12 @@ EasyWorship] SongsPlugin.MediaFilesForm - + Select Media File(s) Selecionar Arquivo(s) de Mídia - + Select one or more audio files from the list below, and click OK to import them into this song. Selecione um ou mais arquivos de áudio da lista abaixo. Clique OK para importá-los à esta música. @@ -6955,63 +7092,66 @@ EasyWorship] SongsPlugin.MediaItem - + Titles Títulos - + Lyrics Letras - + CCLI License: Licença CCLI: - + Entire Song Música Inteira - + Are you sure you want to delete the %n selected song(s)? - Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)?Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? + + Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? + Tem certeza de que deseja excluir a(s) %n música(s) selecionada(s)? + - + Maintain the lists of authors, topics and books. Gerencia a lista de autores, tópicos e hinários. - + copy For song cloning copiar - + Search Titles... Pesquisar títulos... - + Search Entire Song... Música Inteira - + Search Lyrics... Pesquisar letras... - + Search Authors... Pesquisar autores... - + Search Song Books... Pesquisar hinos... @@ -7019,7 +7159,7 @@ EasyWorship] SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Não foi possível abrir o banco de dados do MediaShout. @@ -7027,7 +7167,7 @@ EasyWorship] SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Não é uma base de dados de músicas válida do openlp.org 1.x. @@ -7035,7 +7175,7 @@ EasyWorship] SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Não é uma base de dados de músicas válida do OpenLP 2.0. @@ -7043,7 +7183,7 @@ EasyWorship] SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exportando "%s"... @@ -7051,35 +7191,55 @@ EasyWorship] SongsPlugin.PowerSongImport - + No songs to import. Nenhuma música para importar. - + Verses not found. Missing "PART" header. Os versículos não foram encontrados. O cabeçalho "PART" está faltando. + + + No %s files found. + Nenhum arquivo %s encontrado. + + + + Invalid %s file. Unexpected byte value. + Arquivo %s inválido. Valor inesperado de byte. + + + + Invalid %s file. Missing "TITLE" header. + Arquivo %s inválido. Falta cabeçalho "TITLE". + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Arquivo %s inválido. Falta cabeçalho "COPYRIGHTLINE". + SongsPlugin.SongBookForm - + Song Book Maintenance Gerenciamento de Hinários - + &Name: &Nome: - + &Publisher: &Editora: - + You need to type in a name for the book. Você precisa digitar um nome para o livro. @@ -7087,12 +7247,12 @@ EasyWorship] SongsPlugin.SongExportForm - + Your song export failed. A sua exportação de músicas falhou. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exportação Finalizada. Para importar estes arquivos, use o importador <strong>OpenLyrics</strong>. @@ -7100,27 +7260,27 @@ EasyWorship] SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: As seguintes músicas não puderam ser importadas: - + Cannot access OpenOffice or LibreOffice Não foi possível acessar OpenOffice ou LibreOffice - + Unable to open file Não foi possível abrir o arquivo - + File not found Arquivo não encontrado @@ -7128,107 +7288,107 @@ EasyWorship] SongsPlugin.SongMaintenanceForm - + Could not add your author. Não foi possível adicionar seu autor. - + This author already exists. Este autor já existe. - + Could not add your topic. Não foi possível adicionar seu assunto. - + This topic already exists. Este assunto já existe. - + Could not add your book. Não foi possível adicionar seu livro. - + This book already exists. Este livro já existe. - + Could not save your changes. Não foi possível salvar suas alterações. - + Could not save your modified author, because the author already exists. Não foi possível salvar sue autor modificado, pois o autor já existe. - + Could not save your modified topic, because it already exists. O assunto modificado não pode ser salvo porque já existe. - + Delete Author Excluir Autor - + Are you sure you want to delete the selected author? Você tem certeza de que deseja excluir o autor selecionado? - + This author cannot be deleted, they are currently assigned to at least one song. Este autor não pode ser apagado, pois está associado a pelo menos uma música. - + Delete Topic Excluir Assunto - + Are you sure you want to delete the selected topic? Tem certeza de que quer apagar o assunto selecionado? - + This topic cannot be deleted, it is currently assigned to at least one song. Este assunto não pode ser apagado, pois está associado a pelo menos uma música. - + Delete Book Excluir Hinário - + Are you sure you want to delete the selected book? Tem certeza de que quer excluir o hinário selecionado? - + This book cannot be deleted, it is currently assigned to at least one song. Este hinário não pode ser excluido, pois está associado a ao menos uma música. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? O autor %s já existe. Deseja que as músicas com o autor %s usem o autor %s existente? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? O assunto %s já existe. Deseja que as músicas com o assunto %s usem o assunto %s existente? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? O hinário %s já existe. Deseja que as músicas com o hinário %s usem o hinário %s existente? @@ -7236,27 +7396,27 @@ EasyWorship] SongsPlugin.SongsTab - + Songs Mode Modo de Música - + Enable search as you type Habilitar busca ao digitar - + Display verses on live tool bar Exibir versículos na barra de ferramentas de projeção - + Update service from song edit Atualizar culto após editar música - + Import missing songs from service files Importar músicas de arquivos de culto @@ -7264,17 +7424,17 @@ EasyWorship] SongsPlugin.TopicsForm - + Topic Maintenance Gerenciamento de Assuntos - + Topic name: Nome do assunto: - + You need to type in a topic name. Você precisa digitar um nome para o assunto. @@ -7282,37 +7442,37 @@ EasyWorship] SongsPlugin.VerseType - + Verse Estrofe - + Chorus Refrão - + Bridge Ponte - + Pre-Chorus Pré-Estrofe - + Intro Introdução - + Ending Final - + Other Outra @@ -7320,14 +7480,29 @@ EasyWorship] SongsPlugin.ZionWorxImport - + Error reading CSV file. Erro ao ler o arquivo CSV. - + File not valid ZionWorx CSV format. O arquivo não é um arquivo CSV válido do ZionWorx. + + + Line %d: %s + Linha %d: %s + + + + Decoding error: %s + Erro de decodificação: %s + + + + Record %d + Registro %d + - \ No newline at end of file + diff --git a/resources/i18n/ru.ts b/resources/i18n/ru.ts index 9db3ffbf0..d642cdced 100644 --- a/resources/i18n/ru.ts +++ b/resources/i18n/ru.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert О&повещение - + Show an alert message. Показать текст оповещения. - + Alert name singular Оповещение - + Alerts name plural Оповещения - + Alerts container title Оповещения - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Плагин оповещений</strong><br />Плагин оповещений контролирует отображения срочной информации на экране. @@ -38,69 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Сообщение оповещения - + Alert &text: Текст &оповещения: - + &New &Новый - + &Save &Сохранить - + Displ&ay Показ&ать - + Display && Cl&ose Показать и за&крыть - + New Alert Новое оповещение - + You haven't specified any text for your alert. Please type in some text before clicking New. Ві не указали текста для вашего оповещения. Пожалуйста введите текст. - + &Parameter: П&араметр: - + No Parameter Found - + Параметр не найден - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + Следующих изображений больше не существуют: %s +Добавить остальные изображения? - + No Placeholder Found - + Заполнитель не найден - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Текст оповещения не содержит '<>'. Все равно продолжить? @@ -117,32 +119,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Шрифт - + Font name: Шрифт: - + Font color: Цвет: - + Background color: Цвет фона: - + Font size: Размер: - + Alert timeout: Таймаут оповещения: @@ -150,596 +152,596 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Библия - + Bible name singular Библия - + Bibles name plural Священное Писание - + Bibles container title Священное Писание - + No Book Found Книги не найдены - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Не было найдено подходящей книги в этой Библии. Проверьте что вы правильно указали название книги. - + Import a Bible. Импортировать Библию. - + Add a new Bible. Добавить Библию. - + Edit the selected Bible. Изменить выбранную Библию. - + Delete the selected Bible. Удалить выбранную Библию. - + Preview the selected Bible. Просмотреть выбранную Библию. - + Send the selected Bible live. Показать выбранную Библию на экране. - + Add the selected Bible to the service. Добавить выбранную Библию к порядку служения. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Плагин Библии</strong><br />Плагин Библии обеспечивает возможность показывать отрывки Писания во время служения. - + &Upgrade older Bibles &Обновить старые Библии - + Upgrade the Bible databases to the latest format. Обновить формат базы данных для хранения Библии. - - - Genesis - - - Exodus - + Genesis + Бытие - Leviticus - + Exodus + Исход - Numbers - + Leviticus + Левит - Deuteronomy - + Numbers + Числа - Joshua - + Deuteronomy + Второзакония - Judges - + Joshua + Иисус Навин - Ruth - + Judges + Судьи - 1 Samuel - + Ruth + Руфь - 2 Samuel - + 1 Samuel + 1 Царств - 1 Kings - + 2 Samuel + 2 Царств - 2 Kings - + 1 Kings + 3 Царств - 1 Chronicles - + 2 Kings + 4 Царств - 2 Chronicles - + 1 Chronicles + 1 Паралипоменон - Ezra - + 2 Chronicles + 2 Паралипоменон - Nehemiah - + Ezra + Ездра - Esther - + Nehemiah + Неемия - Job - + Esther + Есфирь - Psalms - + Job + Иов - Proverbs - + Psalms + Псалмы - Ecclesiastes - + Proverbs + Притчи - Song of Solomon - + Ecclesiastes + Екклесиаст - Isaiah - + Song of Solomon + Песня Песней - Jeremiah - + Isaiah + Иссая - Lamentations - + Jeremiah + Иеремия - Ezekiel - + Lamentations + Плач Иеремии - Daniel - + Ezekiel + Езекиль - Hosea - + Daniel + Даниил - Joel - + Hosea + Осия - Amos - + Joel + Иоиль - Obadiah - + Amos + Амос - Jonah - + Obadiah + Авдий - Micah - + Jonah + Иона - Nahum - + Micah + Михей - Habakkuk - + Nahum + Наум - Zephaniah - + Habakkuk + Аввакум - Haggai - + Zephaniah + Книга пророка Софонии - Zechariah - + Haggai + Аггей - Malachi - + Zechariah + Книга пророка Захарии - Matthew - + Malachi + Малахия - Mark - + Matthew + Матфей - Luke - + Mark + Марк - John - + Luke + Лука - Acts - + John + Иоанн - Romans - + Acts + Деяния - 1 Corinthians - + Romans + К Римлянам - 2 Corinthians - + 1 Corinthians + 1 Коринфнам - Galatians - + 2 Corinthians + 2 Коринфнам - Ephesians - + Galatians + Галатам - Philippians - + Ephesians + Ефесянам - Colossians - + Philippians + Филипийцам - 1 Thessalonians - + Colossians + Колосянам - 2 Thessalonians - + 1 Thessalonians + 1 Фесалоникийцам - 1 Timothy - + 2 Thessalonians + 2 Фесалоникийцам - 2 Timothy - + 1 Timothy + 1 Тимофею - Titus - + 2 Timothy + 2 Тимофею - Philemon - + Titus + Титу - Hebrews - + Philemon + Филимону - James - + Hebrews + Евреям - 1 Peter - + James + Иакова - 2 Peter - + 1 Peter + 1 Петра - 1 John - + 2 Peter + 2 Петра - 2 John - + 1 John + 1 Иоанна - 3 John - + 2 John + 2 Иоанна - Jude - + 3 John + 3 Иоанна - Revelation - + Jude + Иуды - Judith - + Revelation + Откровение - Wisdom - + Judith + Юдифь - Tobit - + Wisdom + Притчи - Sirach - + Tobit + Товит - Baruch - + Sirach + Сирах - 1 Maccabees - + Baruch + Барух - 2 Maccabees - + 1 Maccabees + 1-я Маккавейская - 3 Maccabees - + 2 Maccabees + 2-я Маккавейская - 4 Maccabees - + 3 Maccabees + 3-я Маккавейская - Rest of Daniel - + 4 Maccabees + 4-я Маккавейская - Rest of Esther - + Rest of Daniel + Отдых Даниила - Prayer of Manasses - + Rest of Esther + Отдых Есфири - Letter of Jeremiah - + Prayer of Manasses + Молитва Манассии - Prayer of Azariah - + Letter of Jeremiah + Письмо Иеремии - Susanna - + Prayer of Azariah + Молитва Азарии - Bel - + Susanna + Сюзанна - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 1 Ездры - + + 2 Esdras + 2 Ездры + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|verse|verses;;-|to;;,|and;;end BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Вам нужно указать имя версии для вашей Библии. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + Вам необходимо указать авторские права Библии. Переводы Библии находящиеся в свободном доступе должны быть помечены как таковые. - + Bible Exists - + Библия существует - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Эта Библия уже существует. Пожалуйста импортируйте другую Библию или сначала удалите существующую. - + You need to specify a book name for "%s". - + Вам нужно указать имя книги для "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Название книги "%s" не является правильным. ⏎ Числа могут быть использованы только в начале и за ними ⏎ должны следовать один или более не-цифровых символов. - + Duplicate Book Name - + Дублирование имени книги - + The Book Name "%s" has been entered more than once. - + Имя книги "%s" введено более одного раза. BiblesPlugin.BibleManager - + Scripture Reference Error Ошибка ссылки на Писание - + Web Bible cannot be used Веб-Библия не может быть использована - + Text Search is not available with Web Bibles. Текстовый поиск не доступен для Веб-Библий. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Вы не указали ключевое слово для поиска. Вы можете разделить разичные ключевые слова пробелами чтобы осуществить поиск по фразе, а также можете использовать запятые, чтобы искать по каждому из указанных ключевых слов. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. В настоящее время ни одна Библия не установлена. Пожалуйста, воспользуйтесь Мастером Импорта чтобы установить одну Библию или более. - + No Bibles Available Библии отсутствуют - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -749,185 +751,185 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Введеная ссылка не поддерживается OpenLP или не правильная. Пожалуйста, убедитесь что ваша ссылка соотвествует одному из шаблонов или изучите руководство пользователя:⏎ ⏎ Глава книги⏎ Глава книги%(range)sГлава⏎ Глава книги%(verse)sСтих%(range)sСтих⏎ Глава книги%(verse)sСтих%(range)sСтих%(list)sСтих%(range)sСтих⏎ Глава книги%(verse)sСтих%(range)sСтих%(list)sГлава%(verse)sСтих%(range)sСтих⏎ Глава книги%(verse)sСтих%(range)sГлава%(verse)sСтих BiblesPlugin.BiblesTab - + Verse Display Отображение стихов - + Only show new chapter numbers Показывать только номера новых глав - + Bible theme: Тема для отображения Библии - + No Brackets Без скобок - + ( And ) ( XXX ) - + { And } { XXX } - + [ And ] [ XXX ] - + Note: Changes do not affect verses already in the service. Обратите внимание: Изменения не повлияют на стихи в порядке служения. - + Display second Bible verses Показать альтернативный перевод - + Custom Scripture References - + Пользовательские ссылки на Священное Писание - + Verse Separator: - + Разделитель стихов - + Range Separator: - + Диапазонный разделитель: - + List Separator: - + Разделитель списка - + End Mark: - + Знак окончания: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Несколько альтернативных разделителей стихов могли быть определены. ⏎ Они должны быть отделены друг от друга вертикальной чертой. "|" ⏎ Пожалуйста, удалите эту строку редактирования чтобы использовать значения по умолчанию. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Несколько альтернативных разделителей диапазона могли быть определены. ⏎ Они должны быть отделены друг от друга вертикальной чертой. "|" ⏎ Пожалуйста, удалите эту строку редактирования чтобы использовать значения по умолчанию. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Несколько альтернативных разделителей списков могли быть определены. ⏎ Они должны быть отделены друг от друга вертикальной чертой. "|" ⏎ Пожалуйста, удалите эту строку редактирования чтобы использовать значения по умолчанию. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Несколько альтернативных знаков окончаний могли быть определены. ⏎ Они должны быть отделены друг от друга вертикальной чертой. "|" ⏎ Пожалуйста, удалите эту строку редактирования чтобы использовать значения по умолчанию. - + English - + Английский - + Default Bible Language - + Язык Библии по-умолчанию - + Book name language in search field, search results and on display: - + Язык имени книги в поле поиска, ⏎ результатах поиска и на дисплее: - + Bible Language - + Язык Библии - + Application Language - + Язык приложения BiblesPlugin.BookNameDialog - + Select Book Name Выберите название книги - + Current name: Текущее название: - + Corresponding name: Соответствующее имя: - + Show Books From Показать книги из - + Old Testament Ветхий Завет - + New Testament Новый Завет - + Apocrypha Апокрифы - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Следующее название книги не может быть сопоставлено внутренне. Пожалуйста, выберите соответствующее имя из списка. BiblesPlugin.BookNameForm - + You need to select a book. Вы должны выбрать книгу. @@ -935,128 +937,128 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s - + Импорт книг... %s - + Importing verses from %s... Importing verses from <book name>... - + Импортировать стихи из %s - + Importing verses... done. - + Импортирование стихов... завершено. BiblesPlugin.EditBibleForm - + Bible Editor - + Редактор Библии - + License Details - + Описание лицензии - + Version name: - + Название версии: - + Copyright: - + Авторские права: - + Permissions: - + Разрешения: - + Default Bible Language - + Язык Библии по-умолчанию - + Book name language in search field, search results and on display: - + Язык имени книги в поле поиска, результатах поиска и на дисплее: - + Global Settings - + Глобальные настройки - + Bible Language - + Язык Библии - + Application Language - + Язык приложения - + English - + Английский - + This is a Web Download Bible. It is not possible to customize the Book Names. - + Это Web-Download Библия. ⏎ Не возможно настроить соответствие имен книг. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Для использования пользовательских имен книг, "Язык Библии" должен быть выбран на вкладке Мета-Данные или, если "Глобальные настройки" установлены, в разделе "Библии" в настройках OpenLP. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Регистрация Библии и загрузка книг... - + Registering Language... Регистрация языка... - + Importing %s... Importing <book name>... Импорт %s... - + Download Error - + Ошибка загрузки - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Возникла проблема при загрузке секции стихов. Пожалуйста, проверьте параметры Интернет соединения, и случае если ошибка происходит при нормальном Интернет соединении, сообщите о ней на сайте разработчика в разделе Ошибки. - + Parse Error Ошибка обработки - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + Возникла проблема при распаковке раздела стихов. Если это ошибка будет повторяться, пожалуйста сообщите о ней. @@ -1079,7 +1081,7 @@ It is not possible to customize the Book Names. Location: - + Путь: @@ -1232,17 +1234,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Выбор языка - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP не удалось определить язык этого перевода Библии. Укажите язык перевод из списка. - + Language: Язык: @@ -1250,7 +1252,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Вы должны выбрать язык. @@ -1258,110 +1260,110 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Быстрый - + Find: Поиск: - + Book: Книга: - + Chapter: Глава: - + Verse: Стих: - + From: От: - + To: До: - + Text Search Поиск текста: - + Second: Альтернативный: - + Scripture Reference Ссылка на Писание - + Toggle to keep or clear the previous results. Переключать сохранения или очистки результатов. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + Вы не можете комбинировать результаты одинарного и двойного поиска Библейских стихов. Желаете удалить результаты поиска и начать новый поиск? - + Bible not fully loaded. - + Библия загружена не полностью. - + Information Информация - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Альтернативный перевод Библии не содержит всех стихов, которые требует основной перевод. Будут показаны только те стихи, которые найдены в обеих вариантах перевод. %d стихов не будут включены в результаты. - + Search Scripture Reference... - + Поиск по упоминанию в Писании... - + Search Text... - + Поиск в тексте... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Вы уверены, что хотите полностью удалить Библию "%s" из OpenLP? ⏎ ⏎ Вам нужно будет повторно импортировать эту Библию, чтобы использовать ее снова. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Неправильный тип файла Библии. OpenSong Библии могут быть сжаты. Вы должны распаковать их перед импортом. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Импортирую %s %s... @@ -1370,12 +1372,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Определение кодировки (это может занять несколько минут)... - + Importing %s %s... Importing <book name> <chapter>... Импортирую %s %s... @@ -1384,149 +1386,149 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Выберите папку для резервной копии - + Bible Upgrade Wizard Мастер обновления Библии - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Этот мастер поможет вам обновить существующие Библии с предыдущих версий OpenLP 2. Нажмите кнопку далее чтобы начать процесс обновления. - + Select Backup Directory Выберите папку для резервной копии - + Please select a backup directory for your Bibles Выберите папку для резервной копии ваших Библий - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Предыдущий релиз OpenLP 2.0 не может использовать обновленные Библии. Мы создаем резервную копию ваших Библий для того, чтобы вы могли просто скопировать файлы данных в папку данных OpenLP если у вас возникнет необходимость вернуться на предыдущую версию OpenLP. Инструкции о том, как восстановить файлы могут быть найдены на сайте <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + Please select a backup location for your Bibles. Пожалуйста, укажите расположение резервной копии ваших Библий. - + Backup Directory: Директория резервной копии: - + There is no need to backup my Bibles Выполнять резервное копирование Библий нет необходимости - + Select Bibles Выберите Библии - + Please select the Bibles to upgrade Выберите Библии для обновления - + Upgrading Обновление - + Please wait while your Bibles are upgraded. Пожалуйста, подождите пока выполнится обновление Библий. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Не удалось создать резервную копию. Для создания резервной копии ваших Библий вы должны обладать правами записи в указанную директорию. - + Upgrading Bible %s of %s: "%s" Failed Обновление Библий %s из %s: "%s" Провалилось - + Upgrading Bible %s of %s: "%s" Upgrading ... Обновление Библий %s из %s: "%s" Обновление ... - + Download Error - + Ошибка загрузки - + To upgrade your Web Bibles an Internet connection is required. Для выполнения обновления сетевых Библий необходимо наличие интернет соединения. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Обновление Библий %s из %s: "%s" Обновление %s ... - + Upgrading Bible %s of %s: "%s" Complete Обновление Библий %s из %s: "%s" Завершено - + , %s failed , %s провалилось - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Обновление Библии(й): %s успешно %s Пожалуйста, помните, что стихи сетевых Библий загружаются по требованию, поэтому необходимо наличие интернет соединения. - + Upgrading Bible(s): %s successful%s Обновление Библии(ий): %s успешно%s - + Upgrade failed. Обновление провалилось. - + You need to specify a backup directory for your Bibles. Необходимо указать директорию резервного копирования ваших Библий. - + Starting upgrade... Начинаю обновление... - + There are no Bibles that need to be upgraded. Нет Библий, которым необходимо обновление. @@ -1534,65 +1536,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Плагин специальных слайдов</strong><br />Плагин специальных слайдов дает возможность создания специальных текстовых слайдов, который могут быть показаны подобно слайдам песен. Этот плагин дает больше свободы по сравнению с плагином песен. - + Custom Slide name singular Специальный слайд - + Custom Slides name plural - + Слайды - + Custom Slides container title Специальные слайды - + Load a new custom slide. Загрузить новый специальный слайд. - + Import a custom slide. Импортировать специальный слайд. - + Add a new custom slide. Добавить новый специальный слайд. - + Edit the selected custom slide. Изменить выбранный специальный слайд. - + Delete the selected custom slide. Удалить выбранный специальный слайд. - + Preview the selected custom slide. Просмотреть выбранный специальный слайд. - + Send the selected custom slide live. Показать выбранный специальный слайд на экран. - + Add the selected custom slide to the service. Добавить выбранный специальный слайд к порядку служения. @@ -1600,75 +1602,75 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Отображение - + Display footer - + Показывать подпись CustomPlugin.EditCustomForm - + Edit Custom Slides Редактор специальных слайдов - + &Title: &Заголовок: - + Add a new slide at bottom. Добавить новый слайд вверх. - + Edit the selected slide. Изменить выбранный слайд. - + Edit all the slides at once. Редактировать все слайды сразу. - + Split a slide into two by inserting a slide splitter. Разделить слайд, добавив к нему разделитель. - + The&me: Те&ма: - + &Credits: &Подпись: - + You need to type in a title. Необходимо ввести название: - + You need to add at least one slide Необходимо добавить как минимум один слайд - + Ed&it All - + &Редактировать все - + Insert Slide Вставить слайд @@ -1676,76 +1678,80 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide - + Редактировать слайд CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + Вы уверены что хотите удалить %n выбранный пользовательский слайд? + Вы уверены что хотите удалить %n выбранных пользовательских слайдов? + Вы уверены что хотите удалить %n выбранных пользовательских слайдов? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Плагин Изображений</strong><br />Плагин изображений позволяет отображать изображения.<br />Одной из отличительных возможностей этого плагина является возможность группировать выбранные изображение в менеджере служения, что делает работу с большим количеством изображений более легкой. Этот плагин также позволяет использовать возможности "временной петли" OpenLP, чтобы создавать слайд-шоу, которые выполняются автоматически. В дополнение к этому, изображения из плагина могут быть использованы, чтобы заменить текущий фон, что позволяет отображать текстовые элементы, такие как песни, с выбранным изображением в качестве фона, вместо фона, который указан в теме. - + Image name singular Изображение - + Images name plural Изображения - + Images container title Изображения - + Load a new image. Загрузить новое изображение. - + Add a new image. Добавить новое изображение - + Edit the selected image. Изменить выбранное изображение. - + Delete the selected image. Удалить выбранное изображение. - + Preview the selected image. Просмотреть выбранное изображение. - + Send the selected image live. - Отправить выбранное изображение на проектор. + Показать выбранное изображение на экране. - + Add the selected image to the service. Добавить выбранное изображение к служению. @@ -1753,7 +1759,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Выбрать Вложение @@ -1761,44 +1767,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Выбрать Изображение(я) - + You must select an image to delete. Вы должны выбрать изображение для удаления. - + You must select an image to replace the background with. Вы должны выбрать изображение, которым следует заменить фон. - + Missing Image(s) Отсутствует изображение(я) - + The following image(s) no longer exist: %s Следующие изображения больше не существуют: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Следующих изображений больше не существуют: %s Добавить остальные изображения? - + There was a problem replacing your background, the image file "%s" no longer exists. Возникла проблема при замене Фона проектора, файл "%s" больше не существует. - + There was no display item to amend. Отсутствует объект для изменений. @@ -1806,78 +1812,78 @@ Do you want to add the other images anyway? ImagesPlugin.ImageTab - + Background Color - + Цвет фона - + Default Color: - + Цвет по-умолчанию: - + Visible background for images with aspect ratio different to screen. - + Видимый фон для изображений с соотношением сторон отличаемым от экрана. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Плагин Мультимедиа</strong><br />Плагин Мультимедиа обеспечивает проигрывание аудио и видео файлов. - + Media name singular Медиа - + Media name plural Медиа - + Media container title Мультимедиа - + Load new media. Загрузить новый объект мультимедиа. - + Add new media. Добавить новый объект мультимедиа. - + Edit the selected media. Изменить выбранный объект мультимедиа. - + Delete the selected media. Удалить выбранный мультимедиа объект. - + Preview the selected media. Просмотреть выбранный объект мультимедиа. - + Send the selected media live. - Отправить выбранный объект мультимедиа на проектор. + Показать выбранный объект мультимедиа на экране. - + Add the selected media to the service. Добавить выбранный объект к порядку служения. @@ -1885,98 +1891,98 @@ Do you want to add the other images anyway? MediaPlugin.MediaItem - + Select Media Выбрать объект мультимедиа. - + You must select a media file to delete. Вы должны выбрать медиа-файл для удаления. - + You must select a media file to replace the background with. Для замены фона вы должны выбрать мультимедиа объект. - + There was a problem replacing your background, the media file "%s" no longer exists. Возникла проблема замены фона, поскольку файл "%s" не найден. - + Missing Media File Отсутствует медиа-файл - + The file %s no longer exists. Файл %s не существует. - + Videos (%s);;Audio (%s);;%s (*) Videos (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Отсутствует объект для изменений. - + Unsupported File - + Не поддерживаемый файл - + Automatic - + Автоматически - + Use Player: - + Использовать плеер: MediaPlugin.MediaTab - + Available Media Players - + Доступные медиа-плееры - + %s (unavailable) - + %s (не доступно) - + Player Order - + Порядок воспроизведения - + Allow media player to be overridden - + Разрешить медиа плееру быть переопределенным OpenLP - + Image Files Файлы изображений - + Information Информация - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -1988,37 +1994,54 @@ Should OpenLP upgrade now? OpenLP.AboutForm - + Credits Разрешения - + License Лицензия - - Contribute - Вклад - - - + build %s билд %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Это программа является свободным программным обеспечением; вы можете свободно распространять ее и/или изменять в рамках GNU General Public License, которая опубликована Фондом бесплатного программного обеспечения, версия 2 этой лицензии. - + This program 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 below for more details. Эта программа распространяется в надежде, что она будет полезна, но БЕЗ КАКИХ-ЛИБО ГАРАНТИЙ; даже без подразумеваемой гарантии ТОВАРНОЙ ПРИГОДНОСТИ или ПРИГОДНОСТИ ДЛЯ ОСОБЫХ НУЖД. Детали смотрите ниже. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s⏎ Portions copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source Lyrics Projection ⏎ ⏎ OpenLP является свободным программным обеспечением церковных презентаций, или программное обеспечение проекцией песен, используемого для отображения слайдов песен, стихов из Библии, видео, изображения, и даже презентаций (если Impress, PowerPoint или PowerPoint Viewer установлены) для церковного прославления, используя компьютер и проектор данных ⏎ ⏎ Узнайте больше о OpenLP. http://openlp.org/ ⏎ ⏎ OpenLP написана и поддерживается добровольцами. Если вы хотели бы видеть больше свободного христианского программного обеспечения написанным, пожалуйста рассмотрите волонтерство с помощью кнопки ниже. + + + + Volunteer + Доброволец + + + Project Lead %s @@ -2037,12 +2060,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2051,7 +2082,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2059,13 +2090,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2080,400 +2113,350 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Руководитель проекта -%s - -Разработчики -%s - -Спонсоры -%s - -Тестировщики -%s - -Файлы инсталяции -%s - -Переводчики -Afrikaans (af) -%s -German (de) -%s -English, United Kingdom (en_GB) -%s -English, South Africa (en_ZA) -%s -Estonian (et) -%s -French (fr) -%s -Hungarian (hu) -%s -Japanese (ja) -%s -Norwegian Bokmål (nb) -%s -Dutch (nl) -%s -Portuguese, Brazil (pt_BR) -%s -Русский (ru) -%s - -Документация -%s - -Продукт создан с использованием -Python: http://www.python.org/ -Qt4: http://qt.nokia.com/ -PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro -Oxygen Icons: http://oxygen-icons.org/ - -Заключительные признательности -"Ибо так возлюбил Бог мир, что отдал -Сына Своего Единородного, дабы всякий -верующий в Него, не погиб, но имел -жизнь вечную.." -- Ин 3:16 - -И последняя, но не менее важная признательность -Богу Отцу, который послал Своего Сына на смерть -на кресте, чтобы освободить нас от греха. Мы -даем эту программу без платы потому, что -Он освободил нас, не требуя платы. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Свободно ПО для показа слов песен - -OpenLP это свободно ПО для церкви, используемое для показа песен, Библейских стихов, видео-роликов, изображений и даже презентаций (если установлены продукты Impress, PowerPoint или PowerPointViewer), с использованием компьютера и проектора. - -Узнайте больше про OpenLP: http://openlp.org/ - -OpenLP написано и поддерживается добровольцами. Если вы хотите видеть больше свободного ПО, написанного христианами, пожалуйста, подумайте о том, чтобы поддержать нас, используя кнопку ниже. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Руководство проекта⏎ %s⏎ ⏎ Разработчики⏎ %s⏎ ⏎ Contributors⏎ %s⏎ ⏎ Тестеры⏎ %s⏎ ⏎ Packagers⏎ %s⏎ ⏎ Переводчики⏎ Afrikaans (af)⏎ %s⏎ Czeck (cs)⏎ %s⏎ Danish (da)⏎ %s⏎ German (de)⏎ %s⏎ Greek (el)⏎ %s⏎ English, United Kingdom (en_GB)⏎ %s⏎ English, South Africa (en_ZA)⏎ %s⏎ Spanish (es)⏎ %s⏎ Estonian (et)⏎ %s⏎ French (fr)⏎ %s⏎ Hungarian (hu)⏎ %s⏎ Japanese (ja)⏎ %s⏎ Norwegian Bokmål (nb)⏎ %s⏎ Dutch (nl)⏎ %s⏎ Portuguese, Brazil (pt_BR)⏎ %s⏎ Russian (ru)⏎ %s⏎ Swedish (sv)⏎ %s⏎ ⏎ Документация⏎ %s⏎ ⏎ Собрано с помощью⏎ Python: http://www.python.org/⏎ Qt4: http://qt.digia.com/⏎ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro⏎ Oxygen Icons: http://oxygen-icons.org/⏎ ⏎ Final Credit⏎ "Ибо так возлюбил Бог мир, что отдал⏎ Сына Своего Единородного, дабы всякий⏎ верующий в Него, не погиб, но имел⏎ жизнь вечную." -- Иоанна 3:16⏎ ⏎ И последнее, но не менее важное, окончательная благодарность⏎ Богу, Отцу нашему, что послал Своего Сына на смерть ⏎ на кресте, сделалв нас свободными от греха. Мы⏎ даем эту программу вам бесплатно, потому что⏎ Он освободил нас. OpenLP.AdvancedTab - + UI Settings Настройки интерфейса - + Number of recent files to display: Количество недавних файлов: - + Remember active media manager tab on startup Запоминать активную вкладу при запуске - + Double-click to send items straight to live - Использовать двойной щелчок для запуска на проектор + Использовать двойной щелчок для запуска показа - + Expand new service items on creation Разворачивать новый объект служения - + Enable application exit confirmation Разрешить подтверждения при выходе - + Mouse Cursor Курсор мыши - + Hide mouse cursor when over display window Прятать курсор мыши когда он над окном показа - + Default Image Изображение по умолчанию - + Background color: - + Цвет фона: - + Image file: Файл изображения: - + Open File Открыть файл - + Advanced Расширенные настройки - + Preview items when clicked in Media Manager Просматривать объекты по клику в Менеджере мультимедиа - + Click to select a color. Выберите цвет - + Browse for an image file to display. Укажите файл для показа - + Revert to the default OpenLP logo. Возврат к логотипу OpenLP - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Служение %Y-%m-%d %H-%M - + Default Service Name - + Имя служения по-умолчанию - + Enable default service name - + Включить имя служение по-умолчанию - + Date and Time: - + Дата и время - + Monday - + Понедельник - + Tuesday - + Четверг - + Wednesday - + Среда - + Thurdsday - + Четверг - + Friday - + Пятница - + Saturday - + Суббота - + Sunday - + Воскресенье - + Now - + Сейчас - + Time when usual service starts. - + Время обычного начала служения. - + Name: - + Имя: - + Consult the OpenLP manual for usage. - + Проконсультируйтесь в руководстве пользователя OpenLP об использовании. - + Revert to the default service name "%s". - + Вернуть имя служения по-умолчанию "%s". - + Example: - + Пример: - + X11 - + X11 Bypass X11 Window Manager - + Обходить X11 Window Manager - + Syntax error. - + Ошибка синтаксиса. - + Data Location - + Расположение данных - + Current path: - + Текущий путь: - + Custom path: - + Выбранный путь: - + Browse for new data file location. - + Открыть новое расположение для файла данных. - + Set the data location to the default. - + Установить расположение данных по-умолчанию. - + Cancel - + Отмена - + Cancel OpenLP data directory location change. - + Отменить изменение расположения директории данных OpenLP. - + Copy data to new location. - + Скопировать данные в новое расположение. - + Copy the OpenLP data files to the new location. - + Скопировать файлы данных OpenLP в новое расположение. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>ПРЕДУПРЕЖДЕНИЕ:</strong> Новое расположение директории данных содержит файлы данных OpenLP. Эти файлы будут перезаписаны в процессе копирования. - + Data Directory Error - + Ошибка директории данных - + Select Data Directory Location - + Выберите расположение директории данных - + Confirm Data Directory Change - + Подтвердите изменение директории данных - + Reset Data Directory - + Сбросить директорию данных - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Вы уверены, что хотите сменить расположение директории данных OpenLP на расположение по-умолчанию?⏎ ⏎ Это расположение будет использовано после закрытия OpenLP. - + Overwrite Existing Data - + Перезаписать существующие данные + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP каталог данных не был найден ⏎ ⏎ %s ⏎ ⏎ Эти каталог данных был изменен с расположения по-умолчанию OpenLP. Если на новое место было на съемных носителях, то этот носитель должны быть сделан доступным. ⏎ ⏎ Нажмите "Нет", чтобы остановить загрузку OpenLP. позволяет исправить проблему. ⏎ ⏎ нажмите «Да», чтобы сбросить каталог данных на расположение по-умолчанию. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Вы уверены, что хотите изменить расположение каталога данных OpenLP на:⏎ ⏎%s ⏎ ⏎ Каталог данных будет изменен, когда OpenLP будет закрыт. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + ВНИМАНИЕ: ⏎ ⏎ место, которые вы выбрали ⏎ ⏎ %s ⏎ ⏎ по-видимому, содержит файлы данных OpenLP. Вы хотите, чтобы заменить эти файлы с текущими файлами данных? OpenLP.ExceptionDialog - + Error Occurred Произошла ошибка. - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Ой! OpenLP столкнулся с ошибкой и не смог обработать ее. Текст ниже содержит информацию, которая может быть полезна разработчикам продукта, поэтому, пожалуйста, отправьте ее на bugs@openlp.org, добавив к этому письму детальное описание того, что вы делали в то время, когда возникла ошибка. - + Send E-Mail Послать e-mail - + Save to File Сохранить в файл - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Пожалуйста, опишите сценарий возникновения ошибки (Минимум 20 символов) - + Attach File Добавить файл - + Description characters to enter : %s Символы описания: %s @@ -2481,24 +2464,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Платформа: %s - + Save Crash Report Сохранить отчет об ошибке - + Text files (*.txt *.log *.text) Текстовый файл (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2529,7 +2512,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2564,35 +2547,35 @@ Version: %s OpenLP.FileRenameForm - + File Rename Имя файла - + New File Name: Имя нового файла: - + File Copy - + Файл для копирования OpenLP.FirstTimeLanguageForm - + Select Translation Выбор перевода - + Choose the translation you'd like to use in OpenLP. Укажите перевод, который вы хотели бы использовать в OpenLP. - + Translation: Перевод: @@ -2600,526 +2583,526 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Песни - + First Time Wizard Мастер первого запуска - + Welcome to the First Time Wizard Добро пожаловать в Мастер первого запуска - + Activate required Plugins Активируйте необходимые Плагины - + Select the Plugins you wish to use. Выберите плагины, которые вы хотите использовать - - - Bible - - - Images - + Bible + Библия - + + Images + Картинки + + + Presentations Презентации - + Media (Audio and Video) Мультимедиа (Видео и Аудио) - + Allow remote access Удаленный доступ - + Monitor Song Usage Отслеживать использование песен - + Allow Alerts Разрешить оповещения - + Default Settings Настройки по умолчанию - + Downloading %s... Загрузка %s... - + Download complete. Click the finish button to start OpenLP. Загрузка завершена. Нажмите кнопку Завершить для запуска OpenLP. - + Enabling selected plugins... Разрешение выбранных плагинов... - + No Internet Connection Отсутствует интернет соединение - + Unable to detect an Internet connection. Не удалось найти соединение с интернетом. - + Sample Songs Готовые сборники - + Select and download public domain songs. Выберите и загрузите песни. - + Sample Bibles Библии - + Select and download free Bibles. Выберите и загрузите Библии - + Sample Themes Образцы тем - + Select and download sample themes. Выберите и загрузите темы. - + Set up default settings to be used by OpenLP. Установите настройки по умолчанию для использования в OpenLP. - + Default output display: Дисплей для показа по умолчанию: - + Select default theme: Тема по умолчанию: - + Starting configuration process... Запуск процесса конфигурирования... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Этот мастер поможет вам настроить OpenLP для первого использования. Чтобы приступить, нажмите кнопку Далее. - + Setting Up And Downloading Настройка и загрузка - + Please wait while OpenLP is set up and your data is downloaded. Пожалуйста, дождитесь пока OpenLP применит настройки и загрузит данные. - + Setting Up Настройка - + Click the finish button to start OpenLP. Нажмите кнопку Завершить чтобы запустить OpenLP. - + Download complete. Click the finish button to return to OpenLP. Загрузка завершена. Нажмите кнопку Завершить, чтобы вернуться в OpenLP. - + Click the finish button to return to OpenLP. Нажмите кнопку Завершить для возврата в OpenLP. - + Custom Slides Специальные Слайды - + Finish - + Завершить - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Не найдено подключение к Интернету. Мастеру Первого Запуска необходимо подключение к Интернету для того, чтобы иметь возможность скачать образцы песен, Библии и темы. Нажмите на кнопку Завершить сейчас, чтобы запустить OpenLP с начальными настройками и без образов данных. ⏎ ⏎ Для повторного запуска Мастера Первого Запуска и импорт этих образцов данных позже, проверьте подключение к Интернету и повторно запустить этот мастер, выбрав "Инструменты / Запуск Мастера Первого Запуска" в OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + ⏎ ⏎ Для отмены Мастера Первого Запуска полностью (и не запускать OpenLP), нажмите на кнопку Отмена сейчас. OpenLP.FormattingTagDialog - + Configure Formatting Tags Настроить теги форматирования - + Edit Selection - + Редактировать выделенное - + Save - + Сохранить - + Description - + Описание - + Tag - + Тэг - + Start HTML - + Начало HTML - + End HTML - + Окончание HTML OpenLP.FormattingTagForm - + Update Error - + Ошибка обновления - + Tag "n" already defined. - + Тэг "n" уже определен. - + New Tag - + Новый тэг - + <HTML here> <HTML здесь> - + </and here> - + </и здесь> - + Tag %s already defined. - + Тэг %s уже определен. OpenLP.FormattingTags - + Red - + Красный - + Black - + Назад - + Blue - + Голубой - + Yellow - + Желтый - + Green - + Зеленый - + Pink - + Розовый - + Orange - + Оранжевый - + Purple - + Пурпурный - + White - + Белый - + Superscript - + Надстрочный - + Subscript - + Подстрочный - + Paragraph - + Параграф - + Bold - + Жирный - + Italics - + Курсив - + Underline - + Подчеркивание - + Break - + Разрыв OpenLP.GeneralTab - + General Общие - + Monitors Мониторы - + Select monitor for output display: Выберите монитор для показа: - + Display if a single screen Выполнять на одном экране - + Application Startup Запуск приложения - + Show blank screen warning - + Показывать черный экран предупреждения - + Automatically open the last service Автоматически загружать последнее служение - + Show the splash screen Показывать заставку - + Application Settings Настройки приложения - + Prompt to save before starting a new service Запрос сохранения перед созданием нового служения - + Automatically preview next item in service Автоматически просматривать следующий объект в служении - + sec сек - + CCLI Details Детали CCLI - + SongSelect username: SongSelect логин: - + SongSelect password: SongSelect пароль: - + X Х - + Y - + Y - + Height Высота - + Width Ширина - + Check for updates to OpenLP Проверять обновления OpenLP - + Unblank display when adding new live item Снимать блокировку дисплея при добавлении нового объекта - + Timed slide interval: Интервал показа: - + Background Audio - + Фоновое аудио - + Start background audio paused - + Включать фоновое аудио на паузу Service Item Slide Limits - + Ограничения слайда элемента служения - + Override display position: - + Переопределять позицию экрана - + Repeat track list - + Повторять список треков Behavior of next/previous on the last/first slide: - + Поведение Вперед/Назад при последнем/первом слайде: &Remain on Slide - + Оставаться на слайде &Wrap around - + &Вернутся к началу &Move to next/previous service item - + &Перейти к следующему/предыдущему объекту служения OpenLP.LanguageManager - + Language Язык - + Please restart OpenLP to use your new language setting. Перезагрузите OpenLP чтобы использовать новые языковые настройки. @@ -3127,7 +3110,7 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainDisplay - + OpenLP Display Дисплей OpenLP @@ -3135,287 +3118,287 @@ To cancel the First Time Wizard completely (and not start OpenLP), click the Can OpenLP.MainWindow - + &File &Файл - + &Import &Импорт - + &Export &Экспорт - + &View &Вид - + M&ode Р&ежим - + &Tools &Инструменты - + &Settings &Настройки - + &Language &Язык - + &Help &Помощь - + Media Manager Менеджер Мультимедиа - + Service Manager - Менеджер служения + Менджер служения - + Theme Manager Менеджер Тем - + &New &Новая - + &Open &Открыть - + Open an existing service. Открыть существующее служение. - + &Save &Сохранить - + Save the current service to disk. Сохранить текущее служение на диск. - + Save &As... Сохранить к&ак... - + Save Service As Сохранить служение как - + Save the current service under a new name. Сохранить текущее служение под новым именем. - + E&xit Вы&ход - + Quit OpenLP Завершить работу OpenLP - + &Theme Т&ема - + &Configure OpenLP... &Настроить OpenLP... - + &Media Manager - Управление &Материалами + Менеджер &Мультимедиа - + Toggle Media Manager - Свернуть Менеджер Медиа + Свернуть Менеджер Мультимедиа - + Toggle the visibility of the media manager. Свернуть видимость менеджера мультимедиа. - + &Theme Manager - Управление &темами + Менеджер &тем - + Toggle Theme Manager Свернуть Менеджер Тем - + Toggle the visibility of the theme manager. - + Включить видимость менеджера тем - + &Service Manager - Управление &Служением + Менеджер &Служения - + Toggle Service Manager Свернуть Менеджер Служения - + Toggle the visibility of the service manager. Свернуть видимость Менеджера Служения. - + &Preview Panel Пан&ель предпросмотра - + Toggle Preview Panel Toggle Preview Panel - + Toggle the visibility of the preview panel. Toggle the visibility of the preview panel. - + &Live Panel - &Панель проектора + &Панель показа - + Toggle Live Panel - Toggle Live Panel + Переключить панель показа - + Toggle the visibility of the live panel. - Toggle the visibility of the live panel. + Переключить видимость панели показа - + &Plugin List &Список плагинов - + List the Plugins Выводит список плагинов - + &User Guide &Руководство пользователя - + &About &О программе - + More information about OpenLP Больше информации про OpenLP - + &Online Help &Помощь онлайн - + &Web Site &Веб-сайт - + Use the system language, if available. Использовать системный язык, если доступно. - + Set the interface language to %s Изменить язык интерфеса на %s - + Add &Tool... Добавить &Инструмент... - + Add an application to the list of tools. Добавить приложение к списку инструментов - + &Default &По умолчанию - + Set the view mode back to the default. Установить вид в режим по умолчанию. - + &Setup &Настройка - + Set the view mode to Setup. Установить вид в режим настройки. - + &Live - &Демонстрация + &Показать - + Set the view mode to Live. - Установить вид в режим демонстрации. + Установить режим Показа. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3424,108 +3407,108 @@ You can download the latest version from http://openlp.org/. Вы можете загрузить последнюю версию с http://openlp.org/. - + OpenLP Version Updated Версия OpenLP обновлена - + OpenLP Main Display Blanked Главный дисплей OpenLP очищен - + The Main Display has been blanked out Главный дисплей был очищен - + Default Theme: %s - + Тема по-умолчанию: %s - + English Please add the name of your language here Русский - + Configure &Shortcuts... Настройки и б&ыстрые клавиши... - + Close OpenLP Закрыть OpenLP - + Are you sure you want to close OpenLP? Вы уверены что хотите закрыть OpenLP? - + Open &Data Folder... Открыть &папку данных... - + Open the folder where songs, bibles and other data resides. Открыть папку размещения песен, Библий и других данных. - + &Autodetect &Автоопределение - + Update Theme Images Обновить изображение Темы - + Update the preview images for all themes. Обновить миниатюры тем. - + Print the current service. Распечатать текущее служение. - + &Recent Files &Недавние файлы - + L&ock Panels За&блокировать панели - + Prevent the panels being moved. Сохраняет панели от перемещения. - + Re-run First Time Wizard Перезапустить мастер первого запуска - + Re-run the First Time Wizard, importing songs, Bibles and themes. Перезапуск Мастера первого запуска, импорт песен, Библий и тем. - + Re-run First Time Wizard? Перезапустить Мастер первого запуска? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3534,235 +3517,256 @@ Re-running this wizard may make changes to your current OpenLP configuration and Перезапуск мастера сделает изменения в текущей конфигурации OpenLP и, возможно, добавит песни к существующему списку и произведет изменения темы по умолчанию. - + Clear List Clear List of recent files Очистить список - + Clear the list of recent files. Очистить список недавних файлов. - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + Настроить теги &форматирования... + Export OpenLP settings to a specified *.config file + Экспортировать настройки OpenLP в указанный.config файл + + + Settings - + Настройки - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Импортировать настройки OpenLP из указанного.config файла, ранее экспортированного с этой или другой машины - + Import settings? - + Импортировать настройки? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Вы уверены, что хотите импортировать настройки? ⏎ ⏎ Импорт настроек внесет необратимые изменения в текущую конфигурацию OpenLP. ⏎ ⏎ Импорт неправильных настроек может вызвать странное поведение или приведет OpenLP к аварийному завершению. - + Open File - + Открыть файл - + OpenLP Export Settings Files (*.conf) - + Файлы экспорта настроек OpenLP (*.conf) - + Import settings - + Импортировать настройки - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP будет закрыта. Импортированные настройки будут применены после при следующем запуске программы. - + Export Settings File - + Экспортировать файл настроек - + OpenLP Export Settings File (*.conf) - + Файлы экспорта настроек OpenLP (*.conf) - + New Data Directory Error - + Ошибка новой директории данных + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Файл, который вы выбрали, по всей видимости, действительно OpenLP файл настроек. ⏎ ⏎ Секция [%s] не является правильной. ⏎ ⏎ Обработка была прекращена и изменился не были сделаны. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Копируются данные OpenLP в новое расположение директории данных - %s - Пожалуйста дождитесь окончания копирования + + + + OpenLP Data directory copy failed + +%s + Копирование OpenLP директории данных не удалось⏎ ⏎ %s OpenLP.Manager - + Database Error - + Ошибка базы данных - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Загружаемая база данных была создана в более ранней версии OpenLP. База данных версии %d, в то время как OpenLP ожидает версию %d. База данных не будет загруженf ⏎ ⏎ База данных: %s - + OpenLP cannot load your database. Database: %s - + OpenLP не может загрузить важу базу данных.⏎ ⏎ база данных: %s OpenLP.MediaManagerItem - + No Items Selected - + Не выделены объекты - + &Add to selected Service Item &Добавить в выбранный объект Служения - + You must select one or more items to preview. Вы должны выбрать объекты для просмотра. - + You must select one or more items to send live. Вы должны выбрать элементы для показа. - + You must select one or more items. Вы должны выбрать один или более элементов. - + You must select an existing service item to add to. Для добавления вы должны выбрать существующий элемент служения. - + Invalid Service Item Неправильный элемент Служения - + You must select a %s service item. Вы должны выбрать объект служения %s. - + You must select one or more items to add. Для добавления вы должны выбрать один или более элементов. - + No Search Results Результаты поиска отсутствуют - + Invalid File Type Неправильный тип файла - + Invalid File %s. Suffix not supported Неправильный файл %s. Расширение не поддерживается - + &Clone &Клонировать - + Duplicate files were found on import and were ignored. - + Дублирующие файлы найдены были при импорте и были проигнорированы. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <lyrics> тэг не найден. - + <verse> tag is missing. - + <verse> тег отсутствует. OpenLP.PluginForm - + Plugin List Список плагинов - + Plugin Details Описание плагина - + Status: Статус: - + Active Активирован - + Inactive Деактивирован - + %s (Inactive) %s (Деактивирован) - + %s (Active) %s (Активирован) - + %s (Disabled) %s (Запрещен) @@ -3770,90 +3774,90 @@ Suffix not supported OpenLP.PrintServiceDialog - + Fit Page Вписать в страницу - + Fit Width - + Вписать по ширине OpenLP.PrintServiceForm - + Options Опции - + Copy Копировать - + Copy as HTML Копировать как HTML - + Zoom In Увеличить - + Zoom Out Уменьшить - + Zoom Original 1:1 - + Other Options Другие опции - + Include slide text if available Включить текст слайда, если доступно - + Include service item notes Включить заметки к элементам служения - + Include play length of media items Включить время для мультимедиа объектов - + Add page break before each text item Добавить разрыв страницы перед каждым текстовым элементом - + Service Sheet Лист Служения - + Print Печать - + Title: Название: - + Custom Footer Text: Специальный текст подписи: @@ -3861,12 +3865,12 @@ Suffix not supported OpenLP.ScreenList - + Screen Экран - + primary основной @@ -3874,12 +3878,12 @@ Suffix not supported OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Начать</strong>: %s - + <strong>Length</strong>: %s <strong>Длина</strong>: %s @@ -3887,7 +3891,7 @@ Suffix not supported OpenLP.ServiceItemEditForm - + Reorder Service Item Изменить порядок служения @@ -3895,287 +3899,295 @@ Suffix not supported OpenLP.ServiceManager - + Move to &top Передвинуть &вверх - + Move item to the top of the service. Передвинуть объект в начало служения. - + Move &up - + Передвинуть в&верх - + Move item up one position in the service. Передвинуть объект на одну позицию в служении - + Move &down - + Передвинуть в&низ - + Move item down one position in the service. Передвинуть объект на одну позицию вниз в служении. - + Move to &bottom Передвинуть &вниз - + Move item to the end of the service. Передвинуть объект в конец служения. - + &Delete From Service &Удалить из служения - + Delete the selected item from the service. Удалить выбранный объект из служения. - + &Add New Item &Добавить новый элемент - + &Add to Selected Item &Добавить к выбранному элементу - + &Edit Item &Изменить элемент - + &Reorder Item &Упорядочить элементы - + &Notes &Заметки - + &Change Item Theme &Изменить тему элемента - + OpenLP Service Files (*.osz) Открыть файл служения OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Файл не является правильным служением. Формат кодирования не UTF-8. - + File is not a valid service. Файл не является правильным служением. - + Missing Display Handler Отсутствует обработчик показа - + Your item cannot be displayed as there is no handler to display it Объект не может быть показан, поскольку отсутствует обработчик для его показа - + Your item cannot be displayed as the plugin required to display it is missing or inactive Элемент служения не может быть показан, поскольку требуемый плагин отсутствует или отключен - + &Expand all &Расширить все - + Expand all the service items. Расширить все объекты служения. - + &Collapse all &Свернуть все - + Collapse all the service items. Свернуть все объекты служения. - + Open File - + Открыть файл - + Moves the selection down the window. Передвинуть выделенное вниз окна. - + Move up Передвинуть вверх - + Moves the selection up the window. Передвинуть выделенное вверх окна. - + Go Live Показать - + Send the selected item to Live. - Показать выбранный объект. + Показать выбранный объект на экране. - + &Start Time &Время начала - + Show &Preview Показать &Просмотр - + Modified Service Измененное служение - + The current service has been modified. Would you like to save this service? Текущее служение было изменено. Вы хотите сохранить это служение? - + Custom Service Notes: Заметки к служению: - + Notes: Заметки: - + Playing time: Время игры: - + Untitled Service Служение без названия - + File could not be opened because it is corrupt. Файл не может быть открыт, поскольку он поврежден. - + Empty File Пустой файл - + This service file does not contain any data. Файл служения не содержит данных. - + Corrupt File Поврежденный файл - + Load an existing service. Загрузить существующее служение. - + Save this service. Сохранить это служение. - + Select a theme for the service. Выбрать тему для служения. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Этот файл поврежден или не является файлом служения OpenLP 2.0. - - Service File Missing - Файл служения отсутствует - - - + Slide theme Тема слайда - + Notes Заметки - + Edit - + Редактировать - + Service copy only - + Копия только служения - + Error Saving File - + Ошибка сохранения файла - + There was an error saving your file. - + Была ошибка при сохранении вашего файла. + + + + Service File(s) Missing + Файл(ы) Служения не найдены + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Следующие файл(ы) в служении не найдены:⏎ <byte value="x9"/>%s⏎ ⏎ Эти файлы будут удалены, если вы продолжите сохранять. OpenLP.ServiceNoteForm - + Service Item Notes Заметки к элементам служения @@ -4183,7 +4195,7 @@ The content encoding is not UTF-8. OpenLP.SettingsForm - + Configure OpenLP Настроить OpenLP @@ -4191,67 +4203,67 @@ The content encoding is not UTF-8. OpenLP.ShortcutListDialog - + Action Действие - + Shortcut Быстрые клавиши - + Duplicate Shortcut Дублировать быстрые клавиши - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Сочетание "%s" уже назначено для другого действия. Пожалуйста используйте другое сокращение. - + Alternate Альтернатива - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Выберите действие и щелкните на кнопку ниже, чтобы начать захват основного или альтернативного сочетания клавиш. - + Default По-умолчанию - + Custom Особое - + Capture shortcut. Захватить сочетание. - + Restore the default shortcut of this action. Восстановить сочетание клавиш по умолчанию для этого действия. - + Restore Default Shortcuts Восстановить быстрые клавиши по умолчанию - + Do you want to restore all shortcuts to their defaults? Вы хотите восстановить все быстрые клавиши на значения по умолчанию? - + Configure Shortcuts Настроить быстрые клавиши @@ -4259,1122 +4271,1134 @@ The content encoding is not UTF-8. OpenLP.SlideController - + Hide Скрыть - + Go To Перейти к - + Blank Screen Пустой экран - + Blank to Theme Фон темы - + Show Desktop Показать рабочий стол - + Previous Service Предыдущее служение - + Next Service Следующее служение - + Escape Item - + Убрать объект - + Move to previous. Переместить к предыдущему. - + Move to next. Переместить к следующему. - + Play Slides Проиграть слайды. - + Delay between slides in seconds. Задержка между слайдами в секундах. - + Move to live. - Переместить к показу. + Переместить к показу на экране. - + Add to Service. Добавить к служению. - + Edit and reload song preview. Изменить и перезагрузить предпросмотр песни. - + Start playing media. Начать проигрывание медиафайла. - + Pause audio. - + Пауза аудио. - + Pause playing media. - + Приостановить проигрываемое медиа. - + Stop playing media. - + Остановить воспроизведение - + Video position. - + Позиция видео - + Audio Volume. - - - - - Go to "Verse" - + Громкость аудио - Go to "Chorus" - + Go to "Verse" + Перейти к "Стиху" - Go to "Bridge" - + Go to "Chorus" + Перейти к "Припеву" - Go to "Pre-Chorus" - + Go to "Bridge" + Перейти к "Мосту" - - Go to "Intro" - + + Go to "Pre-Chorus" + Перейти к "Пре-припеву" - Go to "Ending" - + Go to "Intro" + Перейти к "Проигрышу" + Go to "Ending" + Перейти к "Окончанию" + + + Go to "Other" - + Перейти к "Другому" - + Previous Slide - + Предыдущий слайд - + Next Slide - + Следующий слайд - + Pause Audio - + Пауза аудио - + Background Audio - + Фоновое аудио - + Go to next audio track. - + Перейти к следующему аудио треку - + Tracks - + Треки OpenLP.SpellTextEdit - + Spelling Suggestions Правописание - + Formatting Tags Теги форматирования - + Language: - + Язык OpenLP.StartTimeForm - + Hours: Часов: - + Minutes: Минут: - + Seconds: Секунд: - + Item Start and Finish Time Время начала и конца для элемента - + Start Начало - + Finish Конец - + Length Длительность - + Time Validation Error Ошибка проверки времени - + Finish time is set after the end of the media item Время окончания больше длительности медиа файла - + Start time is after the finish time of the media item Время начало больше длительности медиа файла - + Theme Layout - + Вывод темы - + The blue box shows the main area. - + Синий прямоугольник показывает основную область. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - Выбрать изображение - - - - Theme Name Missing - Название темы отсутствует - - - - There is no name for this theme. Please enter one. - Не указано название темы. Укажите его. - - - - Theme Name Invalid - Название темы неправильное - - - - Invalid theme name. Please enter one. - Наверное название темы. Исправьте его. - - - - (approximately %d lines per slide) - + Красный прямоугольник показывает подпись. OpenLP.ThemeManager - + Create a new theme. Создать новую тему. - + Edit Theme Изменить Тему - + Edit a theme. Изменить тему. - + Delete Theme Удалить Тему. - + Delete a theme. Удаляет тему. - + Import Theme Импортировать Тему. - + Import a theme. Импортирует тему. - + Export Theme Экспортировать Тему - + Export a theme. Экспортирует тему. - + &Edit Theme - + &Редактировать тему - + &Delete Theme &Удалить Тему - + Set As &Global Default Установить &по умолчания для всех - + %s (default) %s (по-умолчанию) - + You must select a theme to edit. Вы должны выбрать тему для редактирования. - + You are unable to delete the default theme. Вы не можете удалить тему назначенную по умолчанию. - + Theme %s is used in the %s plugin. Тема %s используется в плагине %s. - + You have not selected a theme. Вы не выбрали тему. - + Save Theme - (%s) Сохранить Тему - (%s) - + Theme Exported Тема экспортирована. - + Your theme has been successfully exported. Ваша тема была успешна экспортирована. - + Theme Export Failed Экспорт темы провалился. - + Your theme could not be exported due to an error. Ваша тема не может быть экспортирована из-за ошибки. - + Select Theme Import File Выберите файл темы для импорта - + File is not a valid theme. Файл не является темой. - + &Copy Theme &Скопировать Тему - + &Rename Theme &Переименовать Тему - + &Export Theme &Экспортировать Тему - + You must select a theme to rename. Вы должны выбрать тему для переименования. - + Rename Confirmation Подтверждения переименования - + Rename %s theme? Переименовать тему %s? - + You must select a theme to delete. Вы должны выбрать тему для удаления. - + Delete Confirmation Подтверждение удаления - + Delete %s theme? Удалить тему %s? - + Validation Error Ошибка Проверки - + A theme with this name already exists. Тема с подобным именем уже существует. - + OpenLP Themes (*.theme *.otz) - + OpenLP Темы (*.theme *.otz) - + Copy of %s Copy of <theme name> Копия %s - + Theme Already Exists - + Тема уже существует + + + + Theme %s already exists. Do you want to replace it? + Тема %s уже существует. Хотите ее заменить? OpenLP.ThemeWizard - + Theme Wizard Мастер Тем - + Welcome to the Theme Wizard Добро пожаловать в Мастер Тем - + Set Up Background Выбор фона - + Set up your theme's background according to the parameters below. Установите фон темы в соответствии с параметрами. - + Background type: Тип фона: - + Solid Color Сплошная заливка - + Gradient Градиент - + Color: Цвет: - + Gradient: Градиент: - + Horizontal Горизонтальный - + Vertical Вертикальный - + Circular Круговой - + Top Left - Bottom Right Верх слева - низ справа - + Bottom Left - Top Right Низ слева - верх справа - + Main Area Font Details Шрифт основной области - + Define the font and display characteristics for the Display text Определите шрифт и характеристики дисплея - + Font: Шрифт: - + Size: Размер: - + Line Spacing: Интервал: - + &Outline: &Контур: - + &Shadow: &Тень: - + Bold - + Жирный - + Italic Курсив - + Footer Area Font Details Настройки шрифта подписи - + Define the font and display characteristics for the Footer text Определите шрифт для подписи - + Text Formatting Details Настройки форматирования текста - + Allows additional display formatting information to be defined Разрешить дополнительные настройки форматирования - + Horizontal Align: Горизонтальная привязка: - + Left Слева - + Right Справа - + Center По центру - + Output Area Locations Расположение области вывода - + Allows you to change and move the main and footer areas. Разрешить изменять и перемещать основную область и область вывода. - + &Main Area &Основная область - + &Use default location &Использовать положение по умолчанию - + X position: Позиция Х: - + px px - + Y position: Позиция Y: - + Width: Ширина: - + Height: Высота: - + Use default location Использовать расположение по умолчанию - + Theme name: Название темы: - + Edit Theme - %s Изменить тему - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Этот мастер поможет вам создать и изменить темы. Выберите кнопку Далее чтобы начать процесс настройки темы. - + Transitions: Переходы: - + &Footer Area &Область подписи - + Starting color: Начальный цвет: - + Ending color: Конечный цвет: - + Background color: - + Цвет фона - + Justify - + По ширине - + Layout Preview - + Просмотр вывода - + Transparent - + Прозрачность - + Preview and Save - + Просмотреть и сохранить - + Preview the theme and save it. - + Просмотрите тему и сохраните ее. + + + + (approximately %d lines per slide) + (приблизительно %d строк на слайде) + + + + Background Image Empty + Фоновая картинка не указана + + + + You have not selected a background image. Please select one before continuing. + Вы не выбрали фоновое изображение. Пожалуйста, выберете прежде чем продолжить. + + + + Select Image + Выбрать изображение + + + + Theme Name Missing + Название темы отсутствует + + + + There is no name for this theme. Please enter one. + Не указано название темы. Укажите его. + + + + Theme Name Invalid + Название темы неверное + + + + Invalid theme name. Please enter one. + Наверное название темы. Исправьте его. OpenLP.ThemesTab - + Global Theme Основная Тема - + Theme Level Уровень Темы - + S&ong Level У&ровень песен - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Использовать тему для каждой песни. Если песня не имеет специальную тему, назначенную ей, иначе использовать тему служения. Если тема служения не используется, используется основная тема. - + &Service Level - + &Уровень служения - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Использовать тему служения, заменяя индивидуальные настройки песен. Если тема служения не существует, используется основная тема. - + &Global Level &Основной уровень - + Use the global theme, overriding any themes associated with either the service or the songs. Используется основная тема, заменяя все темы назначенные служению или песне. - + Themes - + Темы OpenLP.Ui - + Error Ошибка - + About О программе - + &Add &Добавить - + Advanced Дополнительно - + All Files Все файлы - + Bottom Вверху - + Browse... Обзор... - + Cancel Отмена - + CCLI number: Номер CCLI: - + Create a new service. Создать новый порядок служения. - + &Delete У&далить - + &Edit &Изменить - + Empty Field Пустое поле - + Export Экспорт - + pt Abbreviated font pointsize unit пт - + Image Изображение - + Import Импорт - + Live - На проектор + На экран - + Live Background Error Ошибка Фона Проектора - + Load Загрузить - + Middle По центру - + New Новое - + New Service Новый порядок служения - + New Theme Новая тема - + No File Selected Singular Файл не выбран - + No Files Selected Plural Файлы не выбраны - + No Item Selected Singular Объект не выбран - + No Items Selected Plural Объекты не выбраны - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Просмотр - + Replace Background Заменить Фон - + Reset Background Сбросить Фон - + s The abbreviated unit for seconds сек - + Save && Preview Сохранить и просмотреть - + Search Поиск - + You must select an item to delete. Вы должны выбрать объект для удаления. - + You must select an item to edit. Вы должны выбрать объект для изменения. - + Save Service Сохранить порядок служения - + Service Служение - + Start %s Начало %s - + Theme Singular Тема - + Themes Plural Темы - + Top Вверх - + Version Версия - + Delete the selected item. Удалить выбранный элемент. - + Move selection up one position. Переместить выше. - + Move selection down one position. Переместить ниже. - + &Vertical Align: &Вертикальная привязка: - + Finished import. Импорт завершен. - + Format: Формат: - + Importing Импортр - + Importing "%s"... Импортируется "%s"... - + Select Import Source ВЫберите источник импорта - + Select the import format and the location to import from. Выберите формат импорта и укажите откуда его следует произвести. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. Импорт из openlp.org 1.x был запрещен из-за отсутствующего модуля Питона. Если вы хотите испольовать этот модуль, вы должны установить модуль "python-sqlite". - + Open %s File Отрырь %s Файл - + %p% %p% - + Ready. Готов. - + Starting import... Начинаю импорт... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Вы должны указатть по крайней мере %s файл для импорта из него. @@ -5385,886 +5409,901 @@ The content encoding is not UTF-8. Добро пожаловать в Мастер импорта Библий - + Welcome to the Song Export Wizard Добро пожаловать в Мастер экспорта песен - + Welcome to the Song Import Wizard Добро пожалоДобро пожаловать в Мастер Импорта Песен - + Author Singular Автор - + Authors Plural Авторы - - © + + © Copyright symbol. © - + Song Book Singular Сборник песен - + Song Books Plural Сборники песен - + Song Maintenance Обслуживание песен - + Topic Singular - + Тема - + Topics Plural Темы - + Continuous Непрерывно - + Default По умолчанию - + Display style: Стиль показа: - + Duplicate Error Ошибка дупликата - + File Файл - + Help Помощь - + h The abbreviated unit for hours ч - + Layout style: Стиль размещения: - + Live Toolbar Панель показа - + m The abbreviated unit for minutes м - + OpenLP is already running. Do you wish to continue? OpenLP уже запущен. Вы хотите продолжить? - + Settings Настройки - + Tools Инструменты - + Unsupported File - + Файл не поддерживается - + Verse Per Slide Стих на слайд - + Verse Per Line Стих на абзац - + View Просмотр - + Title and/or verses not found Название и/или стих не найден - + XML syntax error Ошибка синтаксиса XML - + View Mode Режим отображения - + Open service. Открыть служение. - + Print Service Распечатать служение - + Replace live background. - Заменить фон показа + Заменить фон показа. - + Reset live background. - Сбросить фон показа + Сбросить фон показа. - + Split a slide into two only if it does not fit on the screen as one slide. Разделить слайд на два если он не помещается как один слайд. - + Welcome to the Bible Upgrade Wizard Добро пожаловать в Мастер обновления Библии - + Confirm Delete Подтвердить удаление - + Play Slides in Loop Воспроизводить слайды в цикле - + Play Slides to End - + Проиграть слайды до конца - + Stop Play Slides in Loop - + Проиграть слайды по кругу - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + Остановить проигрывание слайдов до конца + Next Track + Следующий трек + + + + Search Themes... + Search bar place holder text + Поиск Тем... + + + + Optional &Split + Дополнительно &Разделить + + + + Invalid Folder Selected + Singular + Выбрана неверная папка + + + + Invalid File Selected + Singular + Выбран неправильный файл + + + + Invalid Files Selected + Plural + Выбраны неправильные файлы + + + No Folder Selected Singular - + Не выбрана папка - + Open %s Folder - + Открыть папку %s - + You need to specify one %s file to import from. A file type e.g. OpenSong - + Вам нужно указать один %s файл, из которого импортировать. - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + Вам нужно указать одну %s директория, из которой импортировать. + + + + Importing Songs + Импортирование песен OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 и %2 - + %1, and %2 Locale list separator: end - + %1, и %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>Плагин Презентаций</strong><br />Плагин презентаций предоставляет возможность показывать презентации, используя разные программы. Выбор доступных программ презентаций доступен пользователю в выпадающем списке. - + Presentation name singular - + Презентация - + Presentations name plural - + Презентации - + Presentations container title - + Презентации - + Load a new presentation. - + Загрузить новую презентацию - + Delete the selected presentation. - + Удалить выбранную презентацию. - + Preview the selected presentation. - + Предпросмотр выбранной презентации. - + Send the selected presentation live. - + Показать выбранную презентацию на экране. - + Add the selected presentation to the service. - + Добавить выбранную презентацию в служение. PresentationPlugin.MediaItem - + Select Presentation(s) - + Выбрать презентацию(и) - + Automatic - + Автоматически - + Present using: - + Презентация используется: - + File Exists - + Файл существует - + A presentation with that filename already exists. - + Презентация с таким именем уже существует - + This type of presentation is not supported. - + Этот тип презентации не поддерживается - + Presentations (%s) - + Презентации (%s) - + Missing Presentation - + Не найдена презентация - + The presentation %s is incomplete, please reload. - + Презентация %s не закончена, пожалуйста обновите. - + The presentation %s no longer exists. - + Презентация %s больше не существует. PresentationPlugin.PresentationTab - + Available Controllers - + Доступные контроллеры - + %s (unavailable) - + %s (недоступно) - + Allow presentation application to be overridden - + Разрешить программе презентаций быть переопределенной RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Плагин Удаленного управления</strong><br />Плагин предоставляет возможность отправлять сообщения в работающую программу OpenLP на другом компьютере через веб-браузер или через удаленный API. - Remotes - name plural - + Remote + name singular + Удаленное управление - + + Remotes + name plural + Удаленное управление + + + Remote container title - + Удаленное управление RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 Удаленное управление + + + OpenLP 2.0 Stage View - + OpenLP 2.0 Экран сцены - + Service Manager - + Менеджер служения - + Slide Controller - - - - - Alerts - + Контроллер слайдов - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Оповещения - Home - + Search + Поиск + + + + Refresh + Обновить - Theme - + Blank + Пустой + + + + Show + Показать + + + + Prev + Предыдущий + + + + Next + Следующий + + + + Text + Текст + + + + Show Alert + Показать оповещение + + + + Go Live + Показать + + + + No Results + Нет результатов + + + + Options + Опции + + + + Add to Service + Добавить в служение + + + + Home + Домой - Desktop - + Theme + Тема - + + Desktop + Рабочий стол + + + Add &amp; Go to Service - + Добавить &amp; Перейти в служение + + + + Service + Служение + + + + Slides + Слайды RemotePlugin.RemoteTab - + Serve on IP address: - + Обслуживать на IP адресе: - + Port number: - + Номер порта: - + Server Settings - + Настройки сервера - + Remote URL: - + Ссылка управления: - + Stage view URL: - + Ссылка экрана сцены: - + Display stage time in 12h format - + Время на экране сцены в 12-часовом формате - + Android App - + Android App - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Отсканируйте QR-код или кликните <a href="https://play.google.com/store/apps/details?id=org.openlp.android">Скачать</a> чтобы установить Android app из Google Play. SongUsagePlugin - + &Song Usage Tracking &Отслеживание использования песен - + &Delete Tracking Data &Удалить данные отслеживания - + Delete song usage data up to a specified date. Удалить данные использования песен до указанной даты. - + &Extract Tracking Data &Извлечь данные использования - + Generate a report on song usage. Отчет по использованию песен. - + Toggle Tracking - + Переключить отслежение - + Toggle the tracking of song usage. - + Переключить отслеживание использования песен. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Плагин Использования песен</strong><br />Этот плагин отслеживает использование песен в служениях. - + SongUsage name singular Использование песен - + SongUsage name plural Использование песен - + SongUsage container title Использование песен - + Song Usage - + Использование песен - + Song usage tracking is active. - + Отслеживание использования песен выключено. - + Song usage tracking is inactive. - + Отслеживание использования песен включено. - + display - + экран - + printed - + напечатано SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Удалить данные использования песен - + Delete Selected Song Usage Events? Удалить выбранное событие использования песни? - + Are you sure you want to delete selected Song Usage data? Вы уверены, что хотите удалить выбранные данные использования песен? - + Deletion Successful Успешно удалено - + All requested data has been deleted successfully. Все запросы были успешно удалены. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Выберите дату до которой данные об использовании песен должны быть удалены. Вся записанная информация до этой даты будет удалена навсегда. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Использование песен Извлечение - + Select Date Range - + Выберите период дат - + to - + до - + Report Location - + Расположение отчета - + Output File Location - + Расположение файла вывода - + usage_detail_%s_%s.txt - + usage_detail_%s_%s.txt - + Report Creation - + Создание отчета - + Report %s has been successfully created. - + Отчет ⏎ %s ⏎ был успешно сформирован. - + Output Path Not Selected - + Путь вывода не указан - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Вы не указали правильного пути вывода для отчета об использовании песен. Пожалуйста выберите существующий путь на вашем компьютере. SongsPlugin - + &Song &Песня - + Import songs using the import wizard. Импортировать песни используя мастер импорта. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Плагин Песен</strong><br />Плагин песен обеспечивает возможность отображения и управления песнями. - + &Re-index Songs &Переиндексировать песни - + Re-index the songs database to improve searching and ordering. Переиндексировать песни, чтобы улучшить поиск и сортировку. - + Reindexing songs... Индексация песен... - + Arabic (CP-1256) Arabic (CP-1256) - + Baltic (CP-1257) Baltic (CP-1257) - + Central European (CP-1250) Central European (CP-1250) - + Cyrillic (CP-1251) Cyrillic (CP-1251) - + Greek (CP-1253) Greek (CP-1253) - + Hebrew (CP-1255) Hebrew (CP-1255) - + Japanese (CP-932) Japanese (CP-932) - + Korean (CP-949) Korean (CP-949) - + Simplified Chinese (CP-936) Simplified Chinese (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Traditional Chinese (CP-950) - + Turkish (CP-1254) Turkish (CP-1254) - + Vietnam (CP-1258) Vietnam (CP-1258) - + Western European (CP-1252) Western European (CP-1252) - + Character Encoding Кодировка символов - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6274,100 +6313,105 @@ Usually you are fine with the preselected choice. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Пожалуйста, выберите кодировку символов. Кодировка ответственна за корректное отображение символов. - + Song name singular Песня - + Songs name plural - ПесниПсалмы + Песни - + Songs container title - Псалмы + Песни - + Exports songs using the export wizard. Экспортировать песни используя мастер экспорта. - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - - - Preview the selected song. - + Add a new song. + Добавить новую песню. - Send the selected song live. - + Edit the selected song. + Редактировать выбранную песню. + Delete the selected song. + Удалить выбранную песню. + + + + Preview the selected song. + Просмотреть выбранную песню. + + + + Send the selected song live. + Показать выбранную песню на экране. + + + Add the selected song to the service. - + Добавить выбранную песню в служение + + + + Reindexing songs + Реиндексация песен SongsPlugin.AuthorsForm - + Author Maintenance Обслуживание Авторов - + Display name: Отображаемое имя: - + First name: Имя: - + Last name: Фамилия: - + You need to type in the first name of the author. Вы должны указать имя автора. - + You need to type in the last name of the author. Вы должны указать фамилию автора. - + You have not set a display name for the author, combine the first and last names? Вы не указали отображаемое имя автора. Использовать комбинацию имени и фамилии? @@ -6375,631 +6419,631 @@ The encoding is responsible for the correct character representation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Файл имеет неправильное расширение. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Администрируется %s - + [above are Song Tags with notes imported from EasyWorship] - + ⏎ [выше, песни с нотами Метки импортированных из ⏎ EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Мета-данные - + Custom Book Names - + Пользовательские сборники SongsPlugin.EditSongForm - + Song Editor Редактор Песен - + &Title: &Название: - + Alt&ernate title: До&полнительное название: - + &Lyrics: &Слова: - + &Verse order: П&орядок куплтов: - + Ed&it All Редактировать &все - + Title && Lyrics Название и слова - + &Add to Song Д&обавить к песне - + &Remove Уда&лить - + &Manage Authors, Topics, Song Books &Управление Авторами, Темами и Сборниками песен - + A&dd to Song Д&обавить к песне - + R&emove Уда&лить - + Book: Сборник: - + Number: Номер: - + Authors, Topics && Song Book Авторы, Темы и Сборники песен - + New &Theme Новая &Тема - + Copyright Information Информация об авторских правах - + Comments Комментарии - + Theme, Copyright Info && Comments Тема, информация об авторских правах и комментарии - + Add Author Добавить Автора - + This author does not exist, do you want to add them? Этот автор не существует. Хотите добавить его? - + This author is already in the list. Такой автор уже присутсвует в списке. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Вы не выбрали подходящего автора. Выберите автора из списка, или введите нового автора и выберите "Добавить Автора к Песне", чтобы добавить нового автора. - + Add Topic Добавить Тему - + This topic does not exist, do you want to add it? Эта тема не существует. Хотите добавить её? - + This topic is already in the list. Такая тема уже присутсвует в списке. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Вы не выбрали подходящую тему. Выберите тему из списка, или введите новую тему и выберите "Добавить Тему к Песне", чтобы добавить новую тему. - + You need to type in a song title. Вы должны указать название песни. - + You need to type in at least one verse. Вы должны ввести по крайней мере один куплет. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Порядок куплетов указан неверно. Нет куплета, который бы соответсвовал %s. Правильными записями являютеся %s. - + Add Book - Добавить Книгу + Добавить сборник - + This song book does not exist, do you want to add it? Этот сборник песен не существует. Хотите добавить его? - + You need to have an author for this song. Вы должны добавить автора к этой песне. - - You need to type some text in to the verse. - Вы должны указать какой-то текст в этом куплете. - - - + Linked Audio - + Связанное аудио - + Add &File(s) - + Добавить &Файл(ы) - + Add &Media - + Добавить &Мультимедиа - + Remove &All - + Удалить &Все - + Open File(s) - + Открыть Файл(ы) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Предупреждение:</strong> Не все из куплетов используются. + - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Неправильный порядок куплетов. Нет куплетов ссылающихся на %s. Правильные ссылки %s. SongsPlugin.EditVerseForm - + Edit Verse Изменить стих - + &Verse type: &Тип стиха: - + &Insert &Вставить - + Split a slide into two by inserting a verse splitter. - + Разделить слайд на два, вставив разделитель куплетов SongsPlugin.ExportWizardForm - + Song Export Wizard Мастер экспорта песен - + Select Songs Выберите песни - + Check the songs you want to export. Выберите песни, который вы хотите экспортировать. - + Uncheck All Сбросить все - + Check All Выбрать все - + Select Directory Выбрать словарь - + Directory: Папка: - + Exporting Экспортирую - + Please wait while your songs are exported. Пожалуйста дождитесь пока экспорт песен будет завершен. - + You need to add at least one Song to export. Вы должны добавить по крайней мере одну песню для экспорта. - + No Save Location specified Не выбрано место сохранения - + Starting export... Начинаю экспорт... - + You need to specify a directory. Вы должны указать папку. - + Select Destination Folder Выберите целевую папку - + Select the directory where you want the songs to be saved. - + Выберите папку куда вы хотите сохранить песни. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Этот мастер поможет экспортировать ваши песни в открытый и свободный <strong>OpenLyrics</strong> формат песней поклонения. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Выберите файл документа или презентации - + Song Import Wizard Мастер Импорта Песен - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Этот Мастер поможет Вам импортировать песни из различных форматов. Выберите кнопку Далее чтобы начать процесс выбора формата для импорта. - + Generic Document/Presentation Общий формат или презентация - + Add Files... Добавить файлы... - + Remove File(s) Удалить Файл(ы) - + Please wait while your songs are imported. Дождитесь, пока песни будут импортированы. - + OpenLP 2.0 Databases База данных OpenLP 2.0 - + openlp.org v1.x Databases База данных openlp.org v1.x - + Words Of Worship Song Files - + Words Of Worship файл песен - + Songs Of Fellowship Song Files Файлы песен Songs Of Fellowship - + SongBeamer Files Файлы SongBeamer - + SongShow Plus Song Files Файлы SongShow Plus - + Foilpresenter Song Files Foilpresenter Song Files - + Copy - + Копия - + Save to File - + Сохранить в файл - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Импортер Songs of Fellowship был отключен, потому что OpenLP не может получить доступ к OpenOffice или LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Импортер общих документов/презентаций был отключен, потому что OpenLP не может получить доступ к OpenOffice или LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics или OpenLP 2.0 экспортированная песня - + OpenLyrics Files - + OpenLyrics файлы - + CCLI SongSelect Files - + CCLI SongSelect файл - + EasySlides XML File - + EasySlides XML файл - + EasyWorship Song Database - + EasyWorship база данных песен - + DreamBeam Song Files - + DreamBeam файл песен - + You need to specify a valid PowerSong 1.0 database folder. - + Вы должны указать действительную папку базы данных PowerSong 1.0. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + Сначала сконвертируйте ZionWorx базу в CSV текстовый файл, как объясняется в <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Руководстве пользователю</a>. - + SundayPlus Song Files - + SundayPlus файл песен - + This importer has been disabled. - + Это импортер был отключен. - + MediaShout Database - + MediaShout база данных - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + Импортер MediaShout поддерживается только для Windows. Он был отключен из-да отсутствия модуля Python. Если вы хотите использовать этот импортер, вам нужно установить модуль "pyodbc". - + SongPro Text Files - + SongPro Text файл - + SongPro (Export File) - + SongPro (файл экспорта) - + In SongPro, export your songs using the File -> Export menu - + В SongPro, экспортируйте песни, используя меню File -> Export menu SongsPlugin.MediaFilesForm - + Select Media File(s) - + Выберите мультимедиа файл(ы) - + Select one or more audio files from the list below, and click OK to import them into this song. - + Выберите один или более аудио файлов из списка ниже, и нажмите ОК для их импорта в эту песню SongsPlugin.MediaItem - + Titles Название - + Lyrics Слова - + CCLI License: Лицензия CCLI: - + Entire Song Всю песню - + Are you sure you want to delete the %n selected song(s)? - Вы уверены, что хотите удалить %n выбранную песню?Вы уверены, что хотите удалить %n выбранных песни?Вы уверены, что хотите удалить %n выбранных песен? + + Вы уверены, что хотите удалить %n выбранную песню? + Вы уверены, что хотите удалить %n выбранных песни? + Вы уверены, что хотите удалить %n выбранных песен? + - + Maintain the lists of authors, topics and books. - + Обслуживание списков авторов, тем и сборников. - + copy For song cloning - + копировать - + Search Titles... - + Поиск в заголовках... - + Search Entire Song... - + Поиск введенной песни - + Search Lyrics... - + Поиск слов песни... - + Search Authors... - + Поиск авторов... - + Search Song Books... - + Поиск в сборниках песен... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Невозможно открыть базу данных MediaShout. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Не правильная база данных песен openlp.org 1.x. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Не соответствующая OpenLP 2.0 база данных песен SongsPlugin.OpenLyricsExport - + Exporting "%s"... Экспортирую "%s"... @@ -7007,35 +7051,55 @@ The encoding is responsible for the correct character representation. SongsPlugin.PowerSongImport - + No songs to import. - + Нет песен для иморта. - + Verses not found. Missing "PART" header. - + Стихи не найдены. Пропущен заголовок "PART". + + + + No %s files found. + %s файлов не найдено. + + + + Invalid %s file. Unexpected byte value. + Неправильный файл %s. Неожиданное бинарное значение. + + + + Invalid %s file. Missing "TITLE" header. + Неправильный файл %s. Не найден "TITLE" заголовок. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Неправильный файл %s. Не найден "COPYRIGHTLINE" заголовок. SongsPlugin.SongBookForm - + Song Book Maintenance Обслуживание сборника песен - + &Name: &Название: - + &Publisher: &Опубликован: - + You need to type in a name for the book. Вы далжны ввести название сборника @@ -7043,247 +7107,262 @@ The encoding is responsible for the correct character representation. SongsPlugin.SongExportForm - + Your song export failed. - + Не удалось экспортировать песню - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Окончено экспортирование. Для импорта эти файлов используйте <strong>OpenLyrics</strong> импортер. SongsPlugin.SongImport - + copyright - + авторские права - + The following songs could not be imported: - + Следующие песни не могут быть импортированы: - + Cannot access OpenOffice or LibreOffice - + Нет доступа к OpenOffice или LibreOffice - + Unable to open file - + Не удается открыть файл - + File not found - + Файл не найден SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Не возможно добавить вашего автора. - + This author already exists. - + Этот автор уже существует. - + Could not add your topic. - + Не возможно добавить вашу тему - + This topic already exists. - + Эта тема уже существует. - + Could not add your book. - + Не возможно добавить ваш сборник. - + This book already exists. - + Этот сборник уже существует. - + Could not save your changes. - + Не возможно сохранить ваши изменения. - + Could not save your modified author, because the author already exists. - + Не возможно сохранить вашего измененного автора, так как этот автор уже существует. - + Could not save your modified topic, because it already exists. - + Не возможно сохранить вашу измененную тему, так как эта тема уже существует. - + Delete Author - + Удалить автора - + Are you sure you want to delete the selected author? - + Вы уверены что хотите удалить выбранного автора? - + This author cannot be deleted, they are currently assigned to at least one song. - + Этот автор не может быть удален, он присвоен как минимум одной песне. - + Delete Topic - + Удалить тему - + Are you sure you want to delete the selected topic? - + Вы уверены что хотите удалить выбранную тему? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Эта тема не может быть удалена, она присвоена как минимум одной песне. - + Delete Book - + Удалить сборник - + Are you sure you want to delete the selected book? - + Вы уверены что хотите удалить выбранный сборник? - + This book cannot be deleted, it is currently assigned to at least one song. - + Этот сборник не может быть удален, он присвоена как минимум одной песне. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Автор %s уже существует. Хотите присвоить песне с автором %s существующего автора %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Тема %s уже существует. Хотите присвоить песне с темой %s существующую тему %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Сборник %s уже существует. Хотите присвоить песне со сборником %s существующий сборник %s? SongsPlugin.SongsTab - + Songs Mode - + Режим песен - + Enable search as you type - + Включить поиск при вводе - + Display verses on live tool bar - + Отображать стихи на панели показа - + Update service from song edit - + Обновить служение из редактора песень - + Import missing songs from service files - + Импортировать не найденные песни из файла служения SongsPlugin.TopicsForm - + Topic Maintenance - + Обслуживание тем - + Topic name: - + Название темы: - + You need to type in a topic name. - + Вы должны ввести имя темы. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Стих - Bridge - + Chorus + Припев - Pre-Chorus - + Bridge + Мост - Intro - + Pre-Chorus + Пре-припев - Ending - + Intro + Проигрыш + Ending + Окончание + + + Other - + Другое SongsPlugin.ZionWorxImport - + Error reading CSV file. - + Ошибка чтения CSV файла. - + File not valid ZionWorx CSV format. - + Файл не правильного ZionWorx CSV формата. + + + + Line %d: %s + Строка %d: %s + + + + Decoding error: %s + Ошибка декодирования: %s + + + + Record %d + Запись %d - \ No newline at end of file + diff --git a/resources/i18n/sk.ts b/resources/i18n/sk.ts index cfe88e7eb..0e63339c8 100644 --- a/resources/i18n/sk.ts +++ b/resources/i18n/sk.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Upozornenie - + Show an alert message. Zobraziť upozornenie. - + Alert name singular Upozornenie - + Alerts name plural Upozornenia - + Alerts container title Upozornenia - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Modul upozornení</strong><br />Modul upozornení umožňuje zobrazovat rôzne hlášky a upozornenia na zobrazovacej obrazovke. @@ -38,69 +39,69 @@ AlertsPlugin.AlertForm - + Alert Message Upozornenie - + Alert &text: &Text upozornenia: - + &New &Nový - + &Save &Uložiť - + Displ&ay &Zobraziť - + Display && Cl&ose Zobraziť a za&vrieť - + New Alert Nové upozornenie - + You haven't specified any text for your alert. Please type in some text before clicking New. Nebyl zadaný žiadny text upozornenia. Pred klepnutím na Nový prosím zadajte nejaký text. - + &Parameter: &Parameter: - + No Parameter Found Parameter sa nepodarilo nájsť - + You have not entered a parameter to be replaced. Do you want to continue anyway? Nebol zadaný žiadny parameter pre nahradenie. Chcete napriek tomu pokračovat? Parameter sa nepodarilo nájsť - + No Placeholder Found Zástupný znak sa nepodarilo nájsť - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Text upozornenia neobsahuje '<>'. Chcete napriek tomu pokračovat? @@ -116,32 +117,32 @@ Do you want to continue anyway? AlertsPlugin.AlertsTab - + Font Písmo - + Font name: Názov písma: - + Font color: Farba písma: - + Background color: Farba pozadia: - + Font size: Veľkosť písma: - + Alert timeout: Čas pre vypršanie upozornenia: @@ -149,595 +150,595 @@ Do you want to continue anyway? BiblesPlugin - + &Bible &Biblia - + Bible name singular Biblia - + Bibles name plural Biblie - + Bibles container title Biblie - + No Book Found Kniha sa nenašla - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. V Bibli sa nenašla hľadaná kniha. Uistite sa, že názov knihy bol zadaný správne. - + Import a Bible. Import Biblie. - + Add a new Bible. Pridať novú Bibliu. - + Edit the selected Bible. Upraviť označenú Bibliu. - + Delete the selected Bible. Zmazať označenú Bibliu. - + Preview the selected Bible. Náhľad označenej Biblie. - + Send the selected Bible live. Zobraziť označenú Bibliu naživo. - + Add the selected Bible to the service. Pridať označenú Bibliu do služby. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Modul Biblia</strong><br />Modul Biblia umožňuje počay služby zobrazovať verše z rôznych zdrojov. - + &Upgrade older Bibles &Aktualizovať staršie Biblie - + Upgrade the Bible databases to the latest format. Aktualizovať databázu Biblie na najnovší formát. - - - Genesis - - - Exodus - + Genesis + 1. kniha Mojžišova - Leviticus - + Exodus + 2. kniha Mojžišova - Numbers - + Leviticus + 3. kniha Mojžišova - Deuteronomy - + Numbers + 4. kniha Mojžišova - Joshua - + Deuteronomy + 5. kniha Mojžišova - Judges - + Joshua + Jozua - Ruth - + Judges + Kniha sudcov - 1 Samuel - + Ruth + Rút - 2 Samuel - + 1 Samuel + 1. kniha Samuelova - 1 Kings - + 2 Samuel + 2. kniha Samuelova - 2 Kings - + 1 Kings + 1. kniha kráľov - 1 Chronicles - + 2 Kings + 2. kniha kráľov - 2 Chronicles - + 1 Chronicles + 1. kniha Paralipomenon - Ezra - + 2 Chronicles + 2. kniha Paralipomenon - Nehemiah - + Ezra + Ezradáš - Esther - + Nehemiah + Nehemiáš - Job - + Esther + Ester - Psalms - + Job + Jób - Proverbs - + Psalms + Žalmy - Ecclesiastes - + Proverbs + Príslovia - Song of Solomon - + Ecclesiastes + Kazateľ - Isaiah - + Song of Solomon + Pieseň Šalamúnova - Jeremiah - + Isaiah + Izaiáš - Lamentations - + Jeremiah + Jeremiáš - Ezekiel - + Lamentations + Náreky - Daniel - + Ezekiel + Ezechiel - Hosea - + Daniel + Daniel - Joel - + Hosea + Ozeáš - Amos - + Joel + Joel - Obadiah - + Amos + Ámos - Jonah - + Obadiah + Abdijáš - Micah - + Jonah + Jonáš - Nahum - + Micah + Micheáš - Habakkuk - + Nahum + Nahum - Zephaniah - + Habakkuk + Abakuk - Haggai - + Zephaniah + Sofoniáš - Zechariah - + Haggai + Aggeus - Malachi - + Zechariah + Zachariáš - Matthew - + Malachi + Malachiáš - Mark - + Matthew + Evanjelium podľa Matúša - Luke - + Mark + Evanjelium podľa Marka - John - + Luke + Evanjelium podľa Lukáša - Acts - + John + Evanjelium podľa Jána - Romans - + Acts + Skutky apoštolov - 1 Corinthians - + Romans + List Rimanom - 2 Corinthians - + 1 Corinthians + 1. list Korinťanom - Galatians - + 2 Corinthians + 2. list Korinťanom - Ephesians - + Galatians + List Galaťanom - Philippians - + Ephesians + List Efezanom - Colossians - + Philippians + List Filipanom - 1 Thessalonians - + Colossians + List Kolosanom - 2 Thessalonians - + 1 Thessalonians + 1. list Solúnčanom - 1 Timothy - + 2 Thessalonians + 2. list Solúnčanom - 2 Timothy - + 1 Timothy + 1. list Timotejovi - Titus - + 2 Timothy + 2. list Timotejovi - Philemon - + Titus + List Títovi - Hebrews - + Philemon + List Filemonovi - James - + Hebrews + List Hebrejom - 1 Peter - + James + Jakubov list - 2 Peter - + 1 Peter + 1. Petrov list - 1 John - + 2 Peter + 2. Petrov list - 2 John - + 1 John + 1. Jánov list - 3 John - + 2 John + 2. Jánov list - Jude - + 3 John + 3. Jánov list - Revelation - + Jude + Júdov list - Judith - + Revelation + Zjavenie Jána - Wisdom - + Judith + Judita - Tobit - + Wisdom + Kniha múdrosti - Sirach - + Tobit + Tobiáš - Baruch - + Sirach + Sirachovec - 1 Maccabees - + Baruch + Kniha proroka Barucha - 2 Maccabees - + 1 Maccabees + 1. kniha Machabejcov - 3 Maccabees - + 2 Maccabees + 2. kniha Machabejcov - 4 Maccabees - + 3 Maccabees + 3. kniha Machabejcov - Rest of Daniel - + 4 Maccabees + 4. kniha Machabejcov - Rest of Esther - + Rest of Daniel + Zvyšok Daniela - Prayer of Manasses - + Rest of Esther + Zvyšok Ester - Letter of Jeremiah - + Prayer of Manasses + Modlitba Manasses - Prayer of Azariah - + Letter of Jeremiah + Jeremiášov list - Susanna - + Prayer of Azariah + Modlitba Azariáša - Bel - + Susanna + Zuzana - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 1. kniha Ezdrášova - + + 2 Esdras + 2. kniha Ezdrášova + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|verse|verses;;-|to;;,|and;;end BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + Je nutné uviesť názov verzie Biblie. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + K Biblii je potrebné nastaviť autorské práva. Biblie v Public Domain je nutné takto označiť. - + Bible Exists - + Biblia existuje - + This Bible already exists. Please import a different Bible or first delete the existing one. - + Táto Biblia už existuje. Importujte prosím inú Bibliu alebo najskôr zmažte tú existujúcu. - + You need to specify a book name for "%s". - + Je nutné uviesť názov knihy pre "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + Názov knihy "%s" nie je správny. Čísla môžu byť použité len na začiatku a tak musí nasledovať jeden alebo viac nečíselných znakov. - + Duplicate Book Name - + Duplicitný názov knihy - + The Book Name "%s" has been entered more than once. - + Názov knihy "%s" bol zadaný viac ako raz. BiblesPlugin.BibleManager - + Scripture Reference Error Chyba v odkazu Biblie - + Web Bible cannot be used Biblia z www sa nedá použiť - + Text Search is not available with Web Bibles. Hľadanie textu nie je dostupné v Biblii z www. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Nebolo zadané slovo pre vyhľadávaniu. Na vyhľadávanie textu obsahujúceho všetky slová je potrebné tieto slová oddělit medzerou. Oddelením slov čiarkou bude sa bude vyhľadávať text obsahujúcí aspoň jedno zo zadaných slov. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Žiadne Biblie nie sú nainštalované. Na pridanie jednej alebo viac Biblii prosím použite Sprievodcu importom. - + No Bibles Available Žiadne Biblie k dispozícii. - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -747,184 +748,184 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + Odkaz z Biblie buď nie je podporovaný aplikáciou OpenLP, alebo je neplatný. Uistite sa prosím, že odkaz odpovedá jednému z nasledujúcich vzorov alebo sa obráťte na manuál:Kapitola Knihy Kapitola Knihy%(range)s Kapitola Knihy%(verse)sVerš%(range)sVerš Kapitola Knihy%(verse)sVerš%(range)sVerš%(list)sVerš%(range)sVerš Kapitola Knihy%(verse)sVerš%(range)sVerš%(list)sKapitola%(verse)sVerš%(range)sVerš Kapitola Knihy%(verse)sVerš%(range)sKapitola%(verse)sVerš BiblesPlugin.BiblesTab - + Verse Display Zobraziť verš - + Only show new chapter numbers Zobraziť len číslo novej kapitoly - + Bible theme: Motív Biblie: - + No Brackets Žiadne zátvorky - + ( And ) (A) - + { And } { A } - + [ And ] [ A ] - + Note: Changes do not affect verses already in the service. Poznámka: Verše, které sú už v službe, nie sú ovplyvnené zmenami. - + Display second Bible verses Zobraziť druhé verše z Biblie - + Custom Scripture References - + Vlastné odkazy z Biblie. - + Verse Separator: - + Oddeľovať veršov: - + Range Separator: - + Oddeľovať rozsahov: - + List Separator: - + Oddeľovať zoznamov: - + End Mark: - + Ukončovacia značka: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Je možné definovať viac oddeľovačov verša. Musia byť oddelené zvislou čiarou "|". Pre použitie predvolenej hodnoty zmažte tento riadok. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Je možné definovať viac oddeľovačov rozsahu. Musia byť oddelené zvislou čiarou "|". Pre použitie predvolenej hodnoty zmažte tento riadok. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Je možné definovať viac oddeľovačov zoznamu. Musia byť oddelené zvislou čiarou "|". Pre použitie predvolenej hodnoty zmažte tento riadok. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + Je možné definovať viac ukončovacích značiek. Musia byť oddelené zvislou čiarou "|". Pre použitie predvolenej hodnoty zmažte tento riadok. - + English - + Angličtina - + Default Bible Language - + Predvolený jazyk Biblie - + Book name language in search field, search results and on display: - + Jazyk názvu knihy vo vyhľadávacom poli, výsledkoch vyhľadávania a pri zobrazení: - + Bible Language - + Jazyk Biblie - + Application Language - + Jazyk aplikácie BiblesPlugin.BookNameDialog - + Select Book Name Vybrať názov knihy - + Current name: Súčasný názov: - + Corresponding name: Zodpovedajúci názov: - + Show Books From Zobraziť knihy od - + Old Testament Starý zákon - + New Testament Nový zákon - + Apocrypha Apokryfy - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + Pre nasledujúci názov knihy nie je zodpovedajúci vnútorný názov. Prosím vyberte zodpovedajúci názov zo zoznamu. BiblesPlugin.BookNameForm - + You need to select a book. Je potrebné vybrať knihu. @@ -932,18 +933,18 @@ search results and on display: BiblesPlugin.CSVBible - + Importing books... %s Import kníh... %s - + Importing verses from %s... Importing verses from <book name>... Import veršov z %s... - + Importing verses... done. Import veršov... dokončené. @@ -951,107 +952,107 @@ search results and on display: BiblesPlugin.EditBibleForm - + Bible Editor - + Editor Biblie - + License Details - + Podrobnosti k licencii - + Version name: - + Názov verzie - + Copyright: - + Autorské práva: - + Permissions: - + Povolenia: - + Default Bible Language - + Predvolený jazyk Biblie - + Book name language in search field, search results and on display: - + Jazyk názvu knihy vo vyhľadávacom poli, výsledky vyhľadávania a pri zobrazení: - + Global Settings - + Globálne nastavenia - + Bible Language - + Jazyk Biblie - + Application Language - + Jazyk aplikácie - + English - + Angličtina - + This is a Web Download Bible. It is not possible to customize the Book Names. - + Toto je Biblia stiahnutá z internetu. Nie je možné prispôsobiť názvy kníh. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + Pre prispôsobenie názvov kníh musí byť vybraný "Jazyk Biblie" v karte Meta Dáta alebo na stránke Biblie v Nastavení OpenLP, ak je vybrané "Globálne nastavenie" BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrujem Bibliu a sťahujem knihy... - + Registering Language... Registrujem Jazyk... - + Importing %s... Importing <book name>... Importujem %s... - + Download Error Vyskytla sa chyba pri sťahovaní - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Pri sťahovaní výberu veršov sa vyskytol problém. Prosím preverte svoje internetové pripojenie. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. - + Parse Error Chyba pri spracovaní - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Pri rozbalovaní výberu veršov sa vyskytol problém. Pokiaľ sa táto chyba stále objavuje, zvážte prosím nahlásenie chyby. @@ -1228,17 +1229,17 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageDialog - + Select Language Vyber jazyk - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP nie je schopný určiť jazyk tohto prekladu Biblie. Vyberte prosím jazyk zo zoznamu nižšie. - + Language: Jazyk: @@ -1246,7 +1247,7 @@ demand and thus an internet connection is required. BiblesPlugin.LanguageForm - + You need to choose a language. Je potrebné vybrať jazyk. @@ -1254,110 +1255,110 @@ demand and thus an internet connection is required. BiblesPlugin.MediaItem - + Quick Rýchly - + Find: Hľadať: - + Book: Kniha: - + Chapter: Kapitula: - + Verse: Verš: - + From: Od: - + To: Do: - + Text Search Vyhľadávanie textu - + Second: Druhý: - + Scripture Reference Odkaz do Biblie - + Toggle to keep or clear the previous results. Prepnúť ponechanie alebo zmazanie predchádzajúcich výsledkov. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Nie je možné kombinovať jednoduché a dvojité výsledky hľadania veršov v Bibli. Prajete si zmazať výsledky hľadania a začať s novým vyhľadávaním? - + Bible not fully loaded. Biblia nie je načítaná celá. - + Information Informácie - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Druhá Biblia neobsahuje všetky verše ako sú v hlavnej Biblii. Budú zobrazené len verše nájdené v obidvoch Bibliách. %d veršov nebolo zahrnutých vo výsledkoch. - + Search Scripture Reference... - + Vyhľadávať odkaz do Biblie... - + Search Text... - + Vyhľadávať text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + Ste si istí, že chcete úplne vymazať Bibliu "%s" z OpenLP? Pre použite bude potrebné naimportovať Bibliu znovu. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + Bol zadaný nesprávny typ súboru Biblie. OpenSong Biblie môžu byť komprimované. Pred importom je nutné ich rozbaliť. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importujem %s %s... @@ -1366,12 +1367,12 @@ You will need to re-import this Bible to use it again. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Zisťujem kódovanie (môže trvat niekoľko minút)... - + Importing %s %s... Importing <book name> <chapter>... Importujem %s %s... @@ -1380,143 +1381,143 @@ You will need to re-import this Bible to use it again. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Vybrať priečinok pre zálohu - + Bible Upgrade Wizard Sprievodca aktualizácie Biblie - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Tento sprievodca pomáhá s aktualizáciou existujúcich Biblií z predchádzajúcej verzie OpenLP 2. Pre spustenie aktualizácie kliknite nižšie na tlačítko Ďalej. - + Select Backup Directory Vybrať prečinok pre zálohu - + Please select a backup directory for your Bibles Vyberte prosím priečinok pre zálohu Biblií - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. Predchádzajúce vydania OpenLP 2.0 nie sú schopné aktualizovať Bibliu. Bude vytvorená záloha súčasných Biblií, aby bylo možné v prípadě potreby jednoducho nakopírovať súbory späť do dátoveho pričinku aplikácie OpenLP. Inštrukcie, ako obnoviť súbory, nájdete v <a href="http://wiki.openlp.org/faq">často kladených otázkach</a>. - + Please select a backup location for your Bibles. Vyberte prosím umiestenie pre zálohu Biblie. - + Backup Directory: Priečinok pre zálohu: - + There is no need to backup my Bibles Nie je potrebné zálohovať Bibliu - + Select Bibles Vybrať Bibliu - + Please select the Bibles to upgrade Vyberte prosím Bibliu na aktualizáciu - + Upgrading Aktualizujuem - + Please wait while your Bibles are upgraded. Čakajte prosím, až budú Biblie aktualizované. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Záloha nebola úspešná. Pre zálohu Biblií je potrebné oprávnenie k zápisu do zadaného priečinku. - + Upgrading Bible %s of %s: "%s" Failed Aktualizácia Biblie %s z %s: "%s" Zlyhala - + Upgrading Bible %s of %s: "%s" Upgrading ... Aktualizujem Bibliu %s z %s: "%s" Aktualizujem ... - + Download Error Chyba pri sťahovaní - + To upgrade your Web Bibles an Internet connection is required. Pre aktualizáciu Biblií z www je potrebné internetové pripojenie. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Aktualizujem Bibliu %s z %s: "%s" Aktualizujem %s ... - + Upgrading Bible %s of %s: "%s" Complete Aktualizujem Biblie %s z %s: "%s" Dokončené - + , %s failed , %s zlyhalo - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Aktualizácia Biblií: %s úspešná%s Upozornenie: Verše z www Biblie budú stiahnuté na vyžiadanie a preto je potrebné internetové pripojenie. - + Upgrading Bible(s): %s successful%s Aktualizácia Biblií: %s úspešná%s - + Upgrade failed. Aktualizácia zlyhala. - + You need to specify a backup directory for your Bibles. Je potrebné upresniť priečinok pre zálohu Biblií. - + Starting upgrade... Spúšťam aktualizáciu... - + There are no Bibles that need to be upgraded. Nie sú žiadne , ktoré treba aktualizovať. @@ -1525,65 +1526,65 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Vlastný doplnok snímku</strong><br />Vlastný modul snímok poskytuje možnosť nastaviť vlastné textové snímky, ktoré môžu byť zobrazené na obrazovke rovnako ako piesne . Tento modul poskytuje väčšie možnosti s modulmi piesní. - + Custom Slide name singular Vlastný snímok - + Custom Slides name plural Vlastné snímky - + Custom Slides container title Vlastné snímky - + Load a new custom slide. Načítaj nový vlastný snímok, - + Import a custom slide. Vlož vlastný snímok. - + Add a new custom slide. Pridaj nový vlastný snímok. - + Edit the selected custom slide. Uprav vybraný vlastný snímok. - + Delete the selected custom slide. Zmaž vybraný vlastný snímok. - + Preview the selected custom slide. Zobraz vybraný vlastný snímok. - + Send the selected custom slide live. Teraz odošli vybraný vlastný snímok - + Add the selected custom slide to the service. Pridaj vybraný vlastný snímok do služby @@ -1591,12 +1592,12 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.CustomTab - + Custom Display Vlastné zobrazenie. - + Display footer Päta zobrazenia. @@ -1604,62 +1605,62 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditCustomForm - + Edit Custom Slides Uprav vlastné snímky.. - + &Title: &Názov: - + Add a new slide at bottom. Pridaj nový snímok na spodok. - + Edit the selected slide. Upraviť vybraný snímok. - + Edit all the slides at once. Upraviť všetky snímky naraz. - + Split a slide into two by inserting a slide splitter. Vložením oddeľovača sa snímok rozdelí na dva. - + The&me: &Motív: - + &Credits: &Zásluhy: - + You need to type in a title. Je potrebné zadať názov. - + You need to add at least one slide Je nutné pridať aspoň jeden snímok - + Ed&it All Upra&iť všetky - + Insert Slide Vložiť snímok @@ -1667,76 +1668,80 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I CustomPlugin.EditVerseForm - + Edit Slide - + Upraviť snímok CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + Ste si istý, že chcete zmazať %n vybraný užívateľský snímok (y)? + Ste si istý, že chcete zmazať %n vybrané užívateľské snímky (y)? + Ste si istý, že chcete zmazať %n vybraných užívateľských snímkov (y)? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Modul obrázok</strong><br />Modul obrázok sa stará o zobrazovanie obrázkov.<br />Jednou z charakteristických funkcí tohto modulu je schopnosť v správcovi služby zoskúpiť niekoľko obrázkov dohromady. Táto vlastnosť zjednodušuje zobrazenie viacero obrázkov. Tento modul tiež využívá vlastnosti "časová smyčka" aplikace OpenLP a je tiež možné vytvoriť prezentáciu obrázkov, které pobežia samostatne. Taktiež využitím obrázkov z modulu je možné prekryť pozadie súčasného motívu. - + Image name singular Obrázok - + Images name plural Obrázky - + Images container title Obrázky - + Load a new image. Načítať nový obrázok. - + Add a new image. Pridať nový obrázok. - + Edit the selected image. Upraviť vybraný obrázok. - + Delete the selected image. Zmazať vybraný obrázok. - + Preview the selected image. Náhľad vybraného obrázku. - + Send the selected image live. Zobraziť vybraný obrázok naživo. - + Add the selected image to the service. Pridať vybraný obrázok do služby. @@ -1744,7 +1749,7 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.ExceptionDialog - + Select Attachment Vybrať prílohu @@ -1752,44 +1757,44 @@ Please note that verses from Web Bibles will be downloaded on demand and so an I ImagePlugin.MediaItem - + Select Image(s) Vybrať obrázky - + You must select an image to delete. Pre zmazanie musíte najskôr vybrať obrázok. - + You must select an image to replace the background with. Pre nahradenie pozadia musíte najskôr vybrať obrázok. - + Missing Image(s) Chýbajúce obrázky - + The following image(s) no longer exist: %s Tieto obrázky už neexistujú: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Nasledujúci obrázok(y) neexistujú.%s Chcete pridať ďaľšie obrázky? - + There was a problem replacing your background, the image file "%s" no longer exists. Problém s nahradením pozadia. Obrázok "%s" už neexistuje. - + There was no display item to amend. Žiadna položka na zobrazenie nebola zmenená. @@ -1797,78 +1802,78 @@ Chcete pridať ďaľšie obrázky? ImagesPlugin.ImageTab - + Background Color Farba pozadia - + Default Color: Predvolená farba: - + Visible background for images with aspect ratio different to screen. - + Viditeľné pozadie pre obrázky s iným pomerom strán než má obrazovka. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Modul média</strong><br />Modul média umožňuje prehrávať audio a video. - + Media name singular Médium - + Media name plural Média - + Media container title Média - + Load new media. Načítať nové médium. - + Add new media. Pridať nové médium. - + Edit the selected media. Upraviť vybrané médium. - + Delete the selected media. Zmazať vybrané médium. - + Preview the selected media. Náhľad vybraného média. - + Send the selected media live. Zobraziť vybrané médium naživo. - + Add the selected media to the service. Pridať vybrané médium do služby. @@ -1876,57 +1881,57 @@ Chcete pridať ďaľšie obrázky? MediaPlugin.MediaItem - + Select Media Vybrať médium - + You must select a media file to delete. Pre zmazanie musíte najskôr vybrať súbor s médiom. - + You must select a media file to replace the background with. Pre nahradenie pozadia musíte najskôr vybrať súbor s médiom. - + There was a problem replacing your background, the media file "%s" no longer exists. Problém s nahradením pozadia. Súbor s médiom "%s" už neexistuje. - + Missing Media File Chybajúce súbory s médiami - + The file %s no longer exists. Súbor %s už neexistuje. - + Videos (%s);;Audio (%s);;%s (*) Video (%s);;Audio (%s);;%s (*) - + There was no display item to amend. Žiadna položka na zobrazenie nebola zmenená. - + Unsupported File Nepodporovaný súbor - + Automatic Automatický - + Use Player: Použi prehrávač: @@ -1934,40 +1939,40 @@ Chcete pridať ďaľšie obrázky? MediaPlugin.MediaTab - + Available Media Players Dostupné prehrávače médií - + %s (unavailable) %s (nedostupné) - + Player Order Poradie hráčov - + Allow media player to be overridden - + Povoliť prekryte prehrávača médií. OpenLP - + Image Files Súbory obrázkov - + Information Informácie - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -1979,37 +1984,54 @@ Má OpenLP upgradovať teraz? OpenLP.AboutForm - + Credits Kredity - + License Licencia - - Contribute - Prispieť - - - + build %s stavba %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Tento program je slobodný softvér, môžete ho šíriť a / alebo modifikovať podľa ustanovení GNU General Public License, vydávanej Free Software Foundation, verzia 2 tejto licencie. - + This program 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 below for more details. Tento program je rozširovaný v nádeji, že bude užitočný, ale BEZ AKEJKOĽVEK ZÁRUKY; neposkytujú sa ani odvodené záruky PREDAJNOSTI alebo VHODNOSTI PRE URČITÝ ÚČEL. Pozri dole pre ďalšie podrobnosti. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Autorské práva © 2004-2012 %s Čiastočné autorská práva © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Open Source premietanie textov piesní. OpenLP je voľne dostupný kresťanský softvér pre premietanie textov piesní. Pri kresťanských bohoslužbách slúži k zobrazeniu piesní, veršov z Biblie, videí, obrázkov a dokonca prezentácií (ak Impress, PowerPoint alebo PowerPoint Viewer je inštalovaný). K používaniu je potrebný počítač a dataprojektor. Viac informácií o OpenLP: http://openlp.org/ OpenLP je tvorený a spravovaný dobrovoľníkmi. Ak by ste chceli vidieť viac voľne dostupného kresťanského softvéru, zvážte prosím, či sa tiež nechcete zapojiť do tvorby OpenLP. Môžte tak spraviť pomocou tlačidla nižšie. + + + + Volunteer + Dobrovoľník + + + Project Lead %s @@ -2028,12 +2050,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2042,7 +2072,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2050,13 +2080,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2071,400 +2103,350 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Projekt líder - %s - -Vývojári - %s - -Prispievatelia - %s - -Testeri - %s - -Baliči - %s - -Prekladatelia - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Dokumentáacia - %s - -Vytvorené v - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Poďakovanie - "Lebo Boh tak miloval svet, že dal -     svojho jediného syna, aby ten, kto -     verí v neho, nezahynul, ale mal -     posmrtný život." -- Ján 3:16 - - A v neposlednom rade ide poďakovanie -     Bohu, nášmu Otcovi, pre zaslanie svojho Syna na smrť -     na kríži, ktorým nás oslobodzuje od hriechu. My -    vám dávame tento softvér pre vás zdarma, pretože -     On nás oslobodil. - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP je bezplatný kostolný prezentačný softvér, alebo textový projekčný softvér, ktorý sa používa na zobrazenie snímok z piesní, biblických veršov, videí, obrázkov, a dokonca aj prezentácií (ak zapôsobí, PowerPoint alebo PowerPoint Viewer je nainštalovaný) na kostolné chvály s použitím počítača a dátového projektora. - -Nájdi viac o OpenLP: http://openlp.org/ - -OpenLP je napísaný a udržiavaný dobrovoľníkmi. Ak by ste chceli mať viac voľného kresťanského softvéru, zvážte prosím prispievať pomocou tlačidla nižšie. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + Vedenie projektu %s Vývojári %s Prispievatelia %s Testeri %s Baliči %s Prekladatelia afrikánčina (af) %s čeština (cs) %s dánčina (da) %s nemčina (de) %s gréčtina (el) %s angličtina, Veľká Británia (en_GB) %s angličtina, Južná Afrika (en_ZA) %s španielčina (es) %s estónčina (et) %s francúzština (fr) %s maďarčina (hu) %s japončina (ja) %s nórčina (nb) %s holandčina (nl) %s portugalčina, Brazília (pt_BR) %s ruština (ru) %s švédčina (sv) %s Dokumentácia %s Vytvorené s pomocou Python: http://www.python.org/ Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen ikony: http://oxygen-icons.org/ Hlavné zásluhy "Veď Boh tak miloval svet, že dal svojho jednorodeného Syna, aby nezahynul nik, kto v neho verí, ale aby mal večný život." -- Ján 3:16 V neposlednej rade, hlavné zásluhy patria Bohu, nášmu Otcovi, že poslal Svojho Syna zomrieť na kríži, aby nás oslobodil od hriechu. Prinášame túto aplikáciu zdarma, pretože On nás učinil slobodnými. OpenLP.AdvancedTab - + UI Settings Nastavenia používateľského rozhrania - + Number of recent files to display: Počet zobrazených posledných súborov: - + Remember active media manager tab on startup Zapamätanie si karty akívneho manažéra médií pri spustení - + Double-click to send items straight to live Dvakrát klikni pre live zobrazenie položiek - + Expand new service items on creation Zobraz nové pomocné položky na tvorbu - + Enable application exit confirmation Sprístupni potvrdenie ukončenia aplikácie - + Mouse Cursor Kurzor myši - + Hide mouse cursor when over display window Skry kurzor myši počas prechodu cez okno zobrazenia - + Default Image Pôvodný obrázok - + Background color: Farba pozadia: - + Image file: Obrázok: - + Open File Otvor súbor - + Advanced Pokročilé - + Preview items when clicked in Media Manager Obrázky zobrazíš kliknutím na manažér médií - + Click to select a color. Klikni pre vybratie farby. - + Browse for an image file to display. Prehľadávaj obrázky na zobrazenie. - + Revert to the default OpenLP logo. Obnov pôvodné OpenLP logo. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + Služba %Y-%m-%d %H-%M - + Default Service Name - + Predvolený názov služby - + Enable default service name - + Zapnúť predvolený názov služby. - + Date and Time: - + Dátum a čas: - + Monday - + Pondelok - + Tuesday - + Utorok - + Wednesday - + Streda - + Thurdsday - + Štvrtok - + Friday - + Piatok - + Saturday - + Sobota - + Sunday - + Nedeľa - + Now - + Teraz - + Time when usual service starts. - + Čas, kedy obvykle začína služba. - + Name: - + Názov: - + Consult the OpenLP manual for usage. - + Obráťte sa na OpenLP pre použitie. - + Revert to the default service name "%s". - + Vrátiť na predvolený názov služby "%s". - + Example: - + Napríklad: - + X11 - + X11 Bypass X11 Window Manager - + Obísť sprívcu okien X11 - + Syntax error. - + Chyba syntaxe. - + Data Location - + Umiestnenie dát - + Current path: - + Aktuálna cesta: - + Custom path: - + Používateľská cesta: - + Browse for new data file location. - + Prehľadávať nové umiestnenie dátových súborov. - + Set the data location to the default. - + Nastaviť umiestnenie dát na predvolené. - + Cancel - + Zrušiť - + Cancel OpenLP data directory location change. - + Zrušiť zmenu umiestnenia dátového priečinku OpenLP. - + Copy data to new location. - + Kopírovať dáta do nového umiestnenia. - + Copy the OpenLP data files to the new location. - + Kopírovať dátové súbory OpenLP do nového umiestnenia. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>VAROVANIE:</strong>Nové umiestnenie dátového priečinku už obsahuje dátové súbory OpenLP. Tieto súbory BUDÚ nahradené počas kopírovania. - + Data Directory Error - + Chyba dátového priečinku. - + Select Data Directory Location - + Vybrať umiestnenie dátového priečinku. - + Confirm Data Directory Change - + Potvrdiť zmenu dátového priečinku. - + Reset Data Directory - + Obnoviť dátový priečinok - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + Ste si istý, že chcete zmeniť umiestnenie dátového priečinku OpenLP na predvolené umiestnenie? Toto umiestnenie sa použije po zatvorení aplikácie OpenLP. - + Overwrite Existing Data Prepísať existujúce údaje + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + Dátový priečinok OpenLP nebol nájdený %s. Predvolené umiestnenie OpenLP bolo skôr zmenené na tento priečinok. Ak bolo nové umiestnenie na výmeniteľnom zariadení, je nutné dané zariadenie najskôr pripojiť. Kliknite na "Nie", aby sa prerušilo načítanie OpenLP. To umožní opraviť daný problém. Kliknite na "Áno", aby sa dátový priečinok nastavil na predvolené umiestnenie. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Ste si istý, že chcete zmeniť umiestnenie dátového priečinku OpenLP na: %s. Toto umiestnenie bude zmenené po zatvorení aplikácie OpenLP. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + VAROVANIE: Umiestnenie %s, ktoré ste vybrali zrejme obsahuje dátové súbory aplikácie OpenLP. Prajete si nahradiť tieto súbory aktuálnymi dátovými súbormi? + OpenLP.ExceptionDialog - + Error Occurred Vyskytla sa chyba - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Ups! V OpenLP sa vyskytol problém a nemohol sa obnoviť. Text v poli nižšie obsahuje informácie, ktoré by mohli byť užitočné pre OpenLP vývojárov, takže prosím pošlite e-mail na bugs@openlp.org spolu s podrobným popisom toho, čo ste robili, keď sa problém vyskytol. - + Send E-Mail Pošli email. - + Save to File Uložiť do súboru - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Prosím, popíšte, čo ste robili, keď sa vyskytla chyba (najmenej 20 znakov) - + Attach File Pripoj súbor - + Description characters to enter : %s Popisné znaky na potvrdenie : %s @@ -2472,24 +2454,24 @@ This location will be used after OpenLP is closed. OpenLP.ExceptionForm - + Platform: %s Platforma: %s - + Save Crash Report Ulož správu o zlyhaní - + Text files (*.txt *.log *.text) Textové súbory (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2504,10 +2486,11 @@ Version: %s --- Library Versions --- %s - + **OpenLP Bug Report** Version: %s --- Details of the Exception. --- %s --- Exception Traceback --- %s --- System information --- %s --- Library Versions --- %s + - + *OpenLP Bug Report* Version: %s @@ -2523,23 +2506,24 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + *OpenLP Bug Report* Version: %s --- Details of the Exception. --- %s --- Exception Traceback --- %s --- System information --- %s --- Library Versions --- %s + OpenLP.FileRenameForm - + File Rename Premenovanie súboru - + New File Name: Nový názov súboru: - + File Copy Kopírovanie súboru @@ -2547,17 +2531,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Vyber preklad - + Choose the translation you'd like to use in OpenLP. Vyber preklad, ktorý chceš použiť v OpenLP. - + Translation: Preklad: @@ -2565,3183 +2549,3230 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Piesne - + First Time Wizard Sprievodca prvým použitím - + Welcome to the First Time Wizard Vitajte v sprievodcovi prvým použitím - + Activate required Plugins Aktivácia požadovaných pluginov - + Select the Plugins you wish to use. Vyberte pluginy, ktoré chcete použiť. - + Bible Biblia - + Images Obrázky - + Presentations Prezentácie - + Media (Audio and Video) Médiá(Zvuk a Video) - + Allow remote access Povolenie vzdialeného prístupu - + Monitor Song Usage Monitorovanie použitia piesní - + Allow Alerts Povolenie upozornení - + Default Settings Pôvodné nastavenia. - + Downloading %s... Sťahovanie %s... - + Download complete. Click the finish button to start OpenLP. Sťahovanie dokončené. Kliknutím na tlačítko finish spustíte OpenLP: - + Enabling selected plugins... Povoľovanie vybratých pluginov... - + No Internet Connection Žiadne internetové pripojenie - + Unable to detect an Internet connection. Nedá sa zistiť internetové pripojenie. - + Sample Songs Ukážkové piesne - + Select and download public domain songs. Vyber a stiahni verejne prístupné piesne. - + Sample Bibles Ukážkové Biblie. - + Select and download free Bibles. - + Select and download free Bibles. - + Sample Themes Ukážkové témy - + Select and download sample themes. Vyber a stiahni ukážkové témy. - + Set up default settings to be used by OpenLP. Nastav pôvodné nastavenia použité v OpenLP - + Default output display: Pôvodné výstupné zobrazenie: - + Select default theme: Vyber základnú tému. - + Starting configuration process... Začínanie konfiguračného procesu... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - + Tento sprievodca pomáhá nastaviť OpenLP pre prvé použitie. Pre štart kliknite nižšie na tlačidlo ďalší. - + Setting Up And Downloading - + Nastavuje sa a sťahuje. - + Please wait while OpenLP is set up and your data is downloaded. - + Čakajte prosím, pokiaľ bude aplikácia OpenLP nastavená a dáta stiahnuté. - + Setting Up - + Nastavuje sa. - + Click the finish button to start OpenLP. - + Kliknutím na tlačidlo koniec sa spustí aplikácia OpenLP. - + Download complete. Click the finish button to return to OpenLP. - + Sťahovanie dokončené. Kliknutím na tlačidlo koniec sa vrátite do aplikácie OpenLP. - + Click the finish button to return to OpenLP. - + Kliknutím na tlačidlo koniec sa vrátite do aplikácie OpenLP. - + Custom Slides - + Používateľské snímky - + Finish - + Koniec - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + Internetové pripojenie nie je dostupné. Sprievodca prvým spustením potrebuje internetové pripojenie pre stiahnutie ukážok piesní, Biblií a motívov. Kliknite na tlačidlo Koniec pre spustenie aplikácie OpenLP s predvoleným nastavením a bez vzorových dát. Ak chcete znovu spustiť sprievodcu a importovať tieto vzorové dáta na neskoršiu dobru, skontrolujte svoje internetové pripojenie a znovu spustite tohto sprievodcu výberom "Nastavenia/ Znovu spustiť sprievodcu prvým spustením" z OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + +Ak chcete úplne zrušiť sprievodcu prvým spustením (a nespustiť OpenLP), kliknite na tlačidlo Zrušiť. OpenLP.FormattingTagDialog - + Configure Formatting Tags - + Nastaviť formátovacie značky - + Edit Selection - + Upraviť výber - + Save - + Uložiť - + Description - + Popis - + Tag - + Značka - + Start HTML - + Začiatok HTML - + End HTML - + Koniec HTML OpenLP.FormattingTagForm - + Update Error - + Chyba aktualizácie - + Tag "n" already defined. - + Značka "n" je už definovaná. - + New Tag - + Nová značka - + <HTML here> - + <HTML tu> - + </and here> - + </and tu> - + Tag %s already defined. - + Značka %s je už definovaná. OpenLP.FormattingTags - + Red - + Červená - + Black - + Čierna - + Blue - + Modrá - + Yellow - + Žltá - + Green - + Zelená - + Pink - + Ružová - + Orange - + Oranžová - + Purple - + Fialová - + White - + Biela - + Superscript - + Horný index - + Subscript - + Dolný index - + Paragraph - + Odstavec - + Bold - + Tučné - + Italics - + Kurzíva - + Underline - + Podčiarknuté - + Break - + Zalomenie OpenLP.GeneralTab - - - General - - + General + Všeobecné + + + Monitors - + Monitory - + Select monitor for output display: - + Vyber monitor pre výstupné zobrazenie - + Display if a single screen - + Zobrazenie pri jednej obrazovke - + Application Startup - + Spustenie aplikácie - + Show blank screen warning - + Zobraziť varovanie pri prázdnej obrazovke - + Automatically open the last service - + Automaticky otvoriť poslednú službu - + Show the splash screen - + Zobraziť úvodnú obrazovku - + Application Settings - + Nastavenie aplikácie - + Prompt to save before starting a new service - + Pred spustením novej služby sa pýtať na uloženie. - + Automatically preview next item in service - - - - - sec - + Automatický náhľad ďalšej položky v službe + sec + sek + + + CCLI Details - + CCLI Detaily - + SongSelect username: - + SongSelect používateľské meno: - + SongSelect password: - - - - - X - + SongSelect heslo: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + Výška - Background Audio - + Width + Šírka - + + Check for updates to OpenLP + Kontrola aktualizácií aplikácie OpenLP + + + + Unblank display when adding new live item + Odkryť zobrazenie pri pridávaní novej položky naživo + + + + Timed slide interval: + Časový interval medzi snímkami: + + + + Background Audio + Zvuk v pozadí + + + Start background audio paused - + Spustiť zvuk na pozadí pozastavené Service Item Slide Limits - + Obmedzenia snímku položky služby - + Override display position: - + Prekryť pozíciu zobrazenia: - + Repeat track list - + Opakovat zoznam stop. Behavior of next/previous on the last/first slide: - + Správanie na nasledujúci/predchádzajúci na posledný/prvý snímok: &Remain on Slide - + &Zostať na snímku &Wrap around - + &Skok na prvý/posledný snímok &Move to next/previous service item - + &Presun na nasledujúcu/predchádzajúcu položku v službe OpenLP.LanguageManager - + Language - + Jazyk - + Please restart OpenLP to use your new language setting. - + Zmeny nastavenia jazyka sa prejavia po reštartovaní aplikácie OpenLP. OpenLP.MainDisplay - + OpenLP Display - + Zobrazenie OpenLP OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - &Tools - + &File + &Súbor - &Settings - + &Import + &Import - - &Language - - - - - &Help - + + &Export + &Export - Media Manager - + &View + &Zobraziť + + + + M&ode + &Réžim - Service Manager - + &Tools + &Nástroje - - Theme Manager - + + &Settings + &Nastavenia + + + + &Language + &Jazyk - &New - + &Help + &Pomocník + + + + Media Manager + Správca médií - &Open - + Service Manager + Správca Služby - Open an existing service. - + Theme Manager + Správca motívu + &New + &Nový + + + + &Open + &Otvoriť + + + + Open an existing service. + Otvoriť existujúcu službu. + + + &Save - + &Uložiť - + Save the current service to disk. - + Uložiť súčasnú službu na disk. - + Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - + Uložiť &ako... - E&xit - + Save Service As + Uložiť službu ako + Save the current service under a new name. + Uložiť súčasnú službu s novým názvom + + + + E&xit + &Východ + + + Quit OpenLP - + Ukončiť OpenLP - + &Theme - + &Motív - + &Configure OpenLP... - + &Nastaviť OpenLP - + &Media Manager - + &Správca médií - + Toggle Media Manager - + Prepnúť správcu médií - + Toggle the visibility of the media manager. - + Prepnúť viditeľnosť správcu médií. - + &Theme Manager - + &Správca motívu - + Toggle Theme Manager - + Prepnúť správcu motívu - + Toggle the visibility of the theme manager. - + Prepnúť viditeľnosť správcu motívu. - + &Service Manager - + &Správca služby - + Toggle Service Manager - + Prepnúť správcu služby - + Toggle the visibility of the service manager. - + Prepnúť viditeľnosť správcu služby. - + &Preview Panel - + &Panel náhľadu - + Toggle Preview Panel - + Prepnúť panel náhľadu - + Toggle the visibility of the preview panel. - + Prepnúť viditeľnosť panelu náhľadu. - + &Live Panel - + @Panel naživo - + Toggle Live Panel - - - - - Toggle the visibility of the live panel. - - - - - &Plugin List - - - - - List the Plugins - - - - - &User Guide - - - - - &About - + Prepnúť panel naživo - More information about OpenLP - + Toggle the visibility of the live panel. + Prepnúť viditeľnosť panelu naživo. - - &Online Help - + + &Plugin List + &Zoznam modulov + + + + List the Plugins + Vypísať moduly + + + + &User Guide + &Používateľská príručka + + + + &About + &O aplikácii + More information about OpenLP + Viac informácií o aplikácii OpenLP + + + + &Online Help + &Online pomocník + + + &Web Site - + &Webová stránka - + Use the system language, if available. - + Použiť jazyk systém, ak je dostupný. - + Set the interface language to %s - + Jazyk rozhrania nastavený na %s - + Add &Tool... - + Pridať &nástroj... - + Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - + Pridať aplikáciu do zoznamu nástrojov. + &Default + &Predvolený + + + + Set the view mode back to the default. + Nastaviť režim zobrazenia späť na predvolený. + + + + &Setup + &Nastavenie + + + + Set the view mode to Setup. + &Nastaviť režim zobrazenia na Nastavenie + + + &Live - + &Naživo - + Set the view mode to Live. - + Nastaviť režim zobrazenia na Naživo. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. - + Na stiahnutie je dostupná verzia %s aplikácie OpenLP (v súčasnej dobe používate verziu %s). Najnovšiu verziu si môžte stiahnuť z http://openlp.org/. - + OpenLP Version Updated - + Verzia OpenLP bola aktualizovaná - + OpenLP Main Display Blanked - + Hlavné zobrazenie OpenLP je prázdne - + The Main Display has been blanked out - + Hlavné zobrazenie je vymazané. - + Default Theme: %s - + Predvolený motív: %s - + English Please add the name of your language here Slovak - + Configure &Shortcuts... - + Nastavujú sa &skratky... - + Close OpenLP - + Zatvoriť OpenLP - + Are you sure you want to close OpenLP? - + Chcete naozaj zatvoriť aplikáciu OpenLP? - + Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - + Otvoriť dátový priečinok... + Open the folder where songs, bibles and other data resides. + Otvoriť priečinok, kde sa nachádzajú piesne, biblie a ostatné dáta. + + + + &Autodetect + &Automaticky detekovať + + + Update Theme Images - + Aktualizovať obrázky motívu + + + + Update the preview images for all themes. + aktualizovať náhľady obrázkov všetkých motívov + + + + Print the current service. + Tlačiť aktuálnu službu. + + + + &Recent Files + &Nedávne súbory + + + + L&ock Panels + &Zamknúť panely + + + + Prevent the panels being moved. + Zabrániť presunu panelov. - Update the preview images for all themes. - - - - - Print the current service. - - - - - &Recent Files - - - - - L&ock Panels - - - - - Prevent the panels being moved. - - - - Re-run First Time Wizard - + Znovu spustiť Sprievodcu prvým spustením. - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + Znovu spustiť Sprievodcu prvým spustením, importovať piesne, biblie a motívy. - + Re-run First Time Wizard? - + Spustiť znovu Sprievodcu prvým spustením? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + Ste si istý, že chcete znova spustiť Sprievodcu prvým spustením? Znovu spustením tohto sprievodcu môže dojsť k zmenám aktuálneho nastavenia aplikácie OpenLP a pravdepodobne budú pridané piesne k existujúcemu zoznamu a zmenený predvolený motív. - + Clear List Clear List of recent files - + Vyprádzniť zoznam - + Clear the list of recent files. - + Vyprázdniť zoznam nedávnych súborov. - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + Nastaviť &formátovacie značky... + Export OpenLP settings to a specified *.config file + Export OpenLP nastavení do určitého *.config súboru + + + Settings - + Nastavenia - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + Import OpenLP nastavenia z určitého *.config súboru predtým exportovaného na tomto alebo inom stroji. - + Import settings? - + Importovať nastavenia? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + Ste si istí, že chcete importovať nastavenia? Importovaním nastavení dôjde k trvalým zmenám aktuálneho nastavenia aplikácie OpenLP. Import nesprávnych nastavení môže zapríčiniť nevyspytateľné správanie alebo abnormálne ukončenie aplikácie OpenLP. - + Open File - + Otvoriť súbor - + OpenLP Export Settings Files (*.conf) - + Súbory exportovaného nastavenia OpenLP (*.conf) - + Import settings - + Import nastavení - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + Aplikácia OpenLP sa teraz ukončí. Importované nastavenia sa použijú pri ďalšom spustení. - + Export Settings File - + Súbor exportovaného nastavenia. - + OpenLP Export Settings File (*.conf) - + Súbor exportovaného nastavenia OpenLP (*.conf) - + New Data Directory Error - + Chyba nového dátového priečinka + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Vybraný súbor vyzerá ako platný súbor s nastavením OpenLP. Sekcia [%s] nie je platná. Spracovanie bolo prerušené a žiadna zmena nebola vykonaná. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopírovanie OpenLP dát do nového umiestnenia dátového priečinka - %s - Počkajte prosím na dokokončenie kopírovania. + + + + OpenLP Data directory copy failed + +%s + Kopírovanie dátového priečinku OpenLP zlyhalo %s OpenLP.Manager - + Database Error - + Chyba databázy - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + Databáza na načítanie bola vytvorená v novšej verzii aplikácie OpenLP. Verzia databázy je %d, zatiaľ čo OpenLP očakáva verziu %d. Databáza nebude načítaná. Databáza: %s - + OpenLP cannot load your database. Database: %s - + Aplikácia OpenLP nemôže načítať databázu. Databáza: %s OpenLP.MediaManagerItem - + No Items Selected - + Nevybraná žiadna položka - + &Add to selected Service Item - + &Pridať k vybranej Položke služby - + You must select one or more items to preview. - + K náhľadu je potrebné vybrať jednu alebo viac položiek. - + You must select one or more items to send live. - + Pre zobrazenie naživo je potrebné vybrať jednu alebo viac položiek. - + You must select one or more items. - + Je potrebné vybrať jednu alebo viac položiek. - + You must select an existing service item to add to. - + K pridaniu je potrebné vybrať existujúcu položku služby. - + Invalid Service Item - + Neplatná Položka služby - + You must select a %s service item. - + Je potrebné vybrať %s položku služby. - + You must select one or more items to add. - + Pre pridanie je potrebné vybrať jednu alebo viac položiek. - + No Search Results - + Žiadne výsledky vyhľadávania. - + Invalid File Type - + Neplatný typ súboru. - + Invalid File %s. Suffix not supported - + Nepltný súbor %s. Prípona nieje podporována. - + &Clone - + &Klonovať - + Duplicate files were found on import and were ignored. - + Pri importe boli nájdené duplicitné súbory, ktoré boli ignorované. OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + Chýbajúca značka <lyrics>. - + <verse> tag is missing. - + Chýbajúca značka <verse>. OpenLP.PluginForm - + Plugin List - + Zoznam modulov. - + Plugin Details - + Podrobnosti k modulu. - + Status: - + Stav: - + Active - + Aktívny - + Inactive - + Neaktívny - + %s (Inactive) - + %s (Neaktívny) - + %s (Active) - + %s (Aktívny) - + %s (Disabled) - + %s (Vypnutý) OpenLP.PrintServiceDialog - + Fit Page - + Prispôsobiť stránke - + Fit Width - + Prispôsobiť šírke OpenLP.PrintServiceForm - + Options - + Možnosti - + Copy - + Kopírovať - + Copy as HTML - + Kopírovať ako HTML - + Zoom In - + Zväčšiť - + Zoom Out - + Zmenšiť - + Zoom Original - + Pôvodná veľkosť - + Other Options - + Ostatné možnosti - + Include slide text if available - + Zahrnúť text snímku, ak je k dispozícii - + Include service item notes - + Zahrnúť poznámky položky služby - + Include play length of media items - + Zahrnúť dĺžku prehrávania mediálnych položiek - + Add page break before each text item - + Pridať zalomenie stránky pred každou položkou textu - + Service Sheet - + List služby - + Print - - - - - Title: - + Tlač + Title: + Nadpis: + + + Custom Footer Text: - + Vlastný text zápätia: OpenLP.ScreenList - + Screen - + Obrazovka - + primary - + Primárny OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>Začiatok</strong>:%s - + <strong>Length</strong>: %s - + <strong>Dĺžka</strong>:%s OpenLP.ServiceItemEditForm - + Reorder Service Item - + Zmeniť poradie položky služby OpenLP.ServiceManager - + Move to &top - + Presun na &začiatok - + Move item to the top of the service. - + Presun položky do hornej časti služby. - + Move &up - + Pohyb &nahor - + Move item up one position in the service. - + Presun položky nahor o jednu pozíciu v službe. - + Move &down - + Pohyb &nadol - + Move item down one position in the service. - + Presun položky nadol o jednu pozíciu v službe. - + Move to &bottom - + Presun &dole - + Move item to the end of the service. - + Presun položky v službe na koniec. - + &Delete From Service - + &Vymazať zo služby - + Delete the selected item from the service. - + Vymazať vybranú položku zo služby. - + &Add New Item - + &Pridať novú položku - + &Add to Selected Item - + &Pridať k vybranej položke - + &Edit Item - + &Upraviť položku - + &Reorder Item - + &Zmeniť poradie položky - + &Notes - + &Poznámky - + &Change Item Theme - + &Zmeniť motív položky - + OpenLP Service Files (*.osz) - + Súbory služby OpenLP (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + Súbor nie je platná služba. Obsah súboru nie je v kódovaní UTF-8. - + File is not a valid service. - + Súbor nie je platná služba. - + Missing Display Handler - + Chýba manažér zobrazenia - + Your item cannot be displayed as there is no handler to display it - + Položku nie je možné zobraziť, pretože chýba manažér pre jej zobrazenie - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + Položku nie je možné zobraziť, pretože modul potrebný k zobrazeniu chýba alebo je neaktívny - + &Expand all - + &Rozbaliť všetko - + Expand all the service items. - + Rozbaliť všetky položky služby. - + &Collapse all - + &Zabaliť všetko - + Collapse all the service items. - + Zabaliť všetky položky služby. - + Open File - + Otvoriť súbor - + Moves the selection down the window. - + Presunie výber vrámci okna nadol. - + Move up - + Pohyb nahor - + Moves the selection up the window. - + Presunie výber vrámci okna nahor. - + Go Live - + Zobraziť naživo - + Send the selected item to Live. - + Odoslať vybranú položku naživo. - + &Start Time - + &Spustiť čas - + Show &Preview - + Zobraziť &náhľad - + Modified Service - + Zmenená služba - + The current service has been modified. Would you like to save this service? - + Aktuálna služba bola zmenená. Prajete si službu uložiť? - + Custom Service Notes: - + Poznámky Používateľskej služby: - + Notes: - + Poznámky: - + Playing time: - + Čas prehrávania: - + Untitled Service - + Prádzna služba - + File could not be opened because it is corrupt. - + Súbor sa nepodarilo otvoriť, pretože je poškodený. - + Empty File - + Prádzny súbor - + This service file does not contain any data. - + Tento súbor služby neobsahuje žiadne dáta. - + Corrupt File - + Poškodený súbor - + Load an existing service. - + Načítať existujúcu službu. - + Save this service. - + Uložiť túto službu. - + Select a theme for the service. - + Vybrať motív pre službu. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + Tento súbor je poškodený alebo to nieje súbor so službou OpenLP 2.0. - - Service File Missing - - - - + Slide theme - + Motív snímku - + Notes - + Poznámky - + Edit - + Upraviť - + Service copy only - + Kopírovať len službu - + Error Saving File Chyba pri ukladaní súboru. - + There was an error saving your file. Chyba pri ukladaní súboru. + + + Service File(s) Missing + Chýbajúci súbor (y) služby + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Nasledujúci súbor (y) v službe chýba: <byte value="x9"/>%s. Tieto súbory budú vymazané, ak službu uložíte. + OpenLP.ServiceNoteForm - + Service Item Notes - + Poznámky položky služby OpenLP.SettingsForm - + Configure OpenLP - + Nastaviť OpenLP OpenLP.ShortcutListDialog - + Action - + Činnosť - + Shortcut - + Skratka - + Duplicate Shortcut - + Duplicitná skratka - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + Skratka "%s" je už priradená inej činnosti, prosím použite inú skratku. - + Alternate - + Alternatíva - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + Zadanie novej hlavnej alebo alternatívnej skratky sa spustí vybraním činnosti a kliknutím na jedno z tlačidiel nižšie. - + Default - + Predvolený - + Custom - + Používateľský - + Capture shortcut. - + Zachytiť skratku. - + Restore the default shortcut of this action. - + Obnoviť predvolenú skratku činnosti. - + Restore Default Shortcuts - + Obnoviť predvolenú skratku - + Do you want to restore all shortcuts to their defaults? - + Chcete obnoviť všetky skratky na ich predvolené hodnoty? - + Configure Shortcuts - + Nastaviť skratky OpenLP.SlideController - + Hide - + Skryť - + Go To - + Prejsť na - + Blank Screen - + Prázdna obrazovka - + Blank to Theme - + Prázdny motív - + Show Desktop - + Zobraziť plochu - + Previous Service - + Predchádzajúca služba - + Next Service - + Nasledujúca služba - + Escape Item - + Zrušiť položku - + Move to previous. - + Presun na predchádzajúcu - + Move to next. - + Presun na nasledujúcu - + Play Slides - + Prehrať snímky - + Delay between slides in seconds. - + Oneskorenie medzi snímkami v sekundách. - + Move to live. - + Presun naživo. - + Add to Service. - + Pridať k službe. - + Edit and reload song preview. - + Upraviť a znovu načítať náhľad piesne. - + Start playing media. - + Spustiť prehrávanie média. - + Pause audio. - + Pozastaviť zvuk. - + Pause playing media. - + Pozastaviť prehrávanie média. - + Stop playing media. - + Zastaviť prehrávanie média. - + Video position. - + Umiestnenie videa. - + Audio Volume. - - - - - Go to "Verse" - + Hlasitosť zvuku. - Go to "Chorus" - + Go to "Verse" + Prejsť na "Sloha" - Go to "Bridge" - + Go to "Chorus" + Prejsť na "Refrén" - Go to "Pre-Chorus" - + Go to "Bridge" + Prejsť na "Prechod" - - Go to "Intro" - + + Go to "Pre-Chorus" + Prejsť na "Predrefrén" - Go to "Ending" - + Go to "Intro" + Prejsť na "Úvod" + Go to "Ending" + Prejsť na "Zakončenie" + + + Go to "Other" - + Prejsť na "Ostatné" - + Previous Slide - + Predchádzajúci snímok - + Next Slide - + Nasledujúci snímok - + Pause Audio - + Pozastaviť zvuk - + Background Audio - + Zvuk na pozadí - + Go to next audio track. - + Prejsť na ďalšiu zvukovú stopu. - + Tracks - + Stopy OpenLP.SpellTextEdit - + Spelling Suggestions - + Návrhy pravopisu - + Formatting Tags - + Formátovacie značky - + Language: - + Jazyk: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + Hodiny: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + Minúty: - Start - + Seconds: + Sekundy: + + + + Item Start and Finish Time + Čas začiatku a konca položky - Finish - + Start + Začiatok + Finish + Koniec + + + Length - + Dĺžka - + Time Validation Error - + Chyba pri overení času - + Finish time is set after the end of the media item - + Čas konca je nastavený po čase konca mediálnej položky - + Start time is after the finish time of the media item - + Čas začiatku je nastavený po čase konca mediálnej položky - + Theme Layout - + Rozmiestnenie motívu - + The blue box shows the main area. - + Modré políčko ukazuje hlavnú oblasť. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + Červené políčko ukazuje zápätie OpenLP.ThemeManager - + Create a new theme. - + Vytvoriť nový motív. - + Edit Theme - + Upraviť motív - + Edit a theme. - + Upraví motív - + Delete Theme - + Zmazať motív - + Delete a theme. - + Zmaže motív - + Import Theme - + Import motívu - + Import a theme. - + Importuje motív - + Export Theme - + Export motívu - + Export a theme. - + Exportuje motív - + &Edit Theme - + &Upraviť motív - + &Delete Theme - + &Zmazať motív - + Set As &Global Default - + Nastaviť ako &Globálny predvolený - + %s (default) - + %s (predvolený) - + You must select a theme to edit. - + Pre úpravy je potrebné vybrať motív. - + You are unable to delete the default theme. - + Nie je možné zmazať predvolený motív - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + Motív %s je používaný v module %s. + You have not selected a theme. + Nie je vybraný žiadny motív + + + Save Theme - (%s) - + Uložiť motív - (%s) - + Theme Exported - + Motív exportovaný - + Your theme has been successfully exported. - + Motív bol úspešne exportovaný. - + Theme Export Failed - + Export motívu zlyhal - + Your theme could not be exported due to an error. - + Kôli chybe nebolo možné motív exportovať. - + Select Theme Import File - + Vybrať súbor k importu motívu - + File is not a valid theme. - + Súbor nie je platný motív. - + &Copy Theme - + &Kopírovať motív - + &Rename Theme - + &Premenovať motív - + &Export Theme - + &Export motívu - + You must select a theme to rename. - + K premenovaniu je potrebné vybrať motív. - + Rename Confirmation - + Potvrdenie premenovania - + Rename %s theme? - + Premenovať motív %s? - + You must select a theme to delete. - + Pre zmazanie je potrebné vybrať motív. - + Delete Confirmation - + Potvrdenie zmazania. - + Delete %s theme? - + Zmazať motív %s? - + Validation Error - + Chyba overovania - + A theme with this name already exists. - + Motív s týmto názvom už existuje. - + OpenLP Themes (*.theme *.otz) - + OpenLP motívy (*.theme *.otz) - + Copy of %s Copy of <theme name> - + Kópia %s - + Theme Already Exists - + Motív už existuje + + + + Theme %s already exists. Do you want to replace it? + Motív %s už existuje. Chcete ho nahradiť? OpenLP.ThemeWizard - + Theme Wizard - + Sprievodca motívom - + Welcome to the Theme Wizard - + Vitajte v sprievodcovi motívom - + Set Up Background - + Nastavenie pozadia - + Set up your theme's background according to the parameters below. - + Podľa parametrov nižšie nastavte pozadie motívu. - + Background type: - + Typ pozadia: - + Solid Color - + Plná farba - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + Stúpanie + Color: + Farba + + + + Gradient: + Stúpanie + + + + Horizontal + Vodorovný + + + + Vertical + Zvislý + + + + Circular + Kruhový + + + + Top Left - Bottom Right + Vľavo hore - vpravo dole + + + + Bottom Left - Top Right + Vľavo dole - vpravo hore + + + + Main Area Font Details + Podrobnosti písma hlavnej oblasti + + + + Define the font and display characteristics for the Display text + Definovať písmo a charakteristiku zobrazenia pre zobrazený text + + + + Font: + Písmo + + + Size: - + Veľkosť - + Line Spacing: - + Riadkovania - + &Outline: - + &Náčrt - + &Shadow: - - - - - Bold - + &Tieň + Bold + Tučné + + + Italic - + Kurzíva - + Footer Area Font Details - + Podrobnosti písma oblasti zápätia - + Define the font and display characteristics for the Footer text - + Definovať písmo a charakteristiku zobrazenia pre text zápätia - + Text Formatting Details - + Podrobnosti formátovania textu - + Allows additional display formatting information to be defined - + Povoľuje definovať ďalšie formátovacie infromácie zobrazenia - + Horizontal Align: - + Vodorovné zarovnanie - + Left - + Vľavo - + Right - + Vpravo - + Center - + Na stred - + Output Area Locations - + Umiestnenie výstupných oblastí - + Allows you to change and move the main and footer areas. - + Povoľuje zmeniť a presunúť hlavnú oblasť a oblasť zápätia - + &Main Area - + &Hlavná oblasť - + &Use default location - + &Použiť predvolené umiestnenie - + X position: - + Pozícia X: - + px - + px - + Y position: - + Pozícia Y: - + Width: - + Šírka - + Height: - + Výška - + Use default location - + Použiť predvolené umiestnenie - + Theme name: - + Názov motívu - + Edit Theme - %s - + Upraviť motív - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + Tento sprievodca vám pomôže vytvoriť a upravovať svoje motívy. Pre spustenie procesu nastavení vášho pozadia kliknite nižšie na tlačidlo ďalší. - + Transitions: - + Prechody: - + &Footer Area - + &Oblasť zápätia - + Starting color: - + Farba začiatku: - + Ending color: - + Farba konca: - + Background color: - + Farba pozadia - + Justify - + Do bloku - + Layout Preview - + Náhľad rozmiestnenia - + Transparent - + Priehľadný - + Preview and Save - + Náhľad a uložiť - + Preview the theme and save it. - + Náhľad motívu a uložiť ho. + + + + (approximately %d lines per slide) + (približne %d riadok na snímok + + + + Background Image Empty + Prázdny obrázok pozadia + + + + You have not selected a background image. Please select one before continuing. + Nebol vybraný obrázok pozadia. Pred pokračovaním prosím jeden vyberte. + + + + Select Image + Vybrať obrázok + + + + Theme Name Missing + Chýba názov motívu + + + + There is no name for this theme. Please enter one. + Nie je vyplnený názov motívu. Prosím zadajte ho. + + + + Theme Name Invalid + Neplatný názov motívu + + + + Invalid theme name. Please enter one. + Neplatný názov motívu. Prosím zadajte nový. OpenLP.ThemesTab - + Global Theme - + Globálny motív - + Theme Level - + Úroveň motívu - + S&ong Level - + Úroveň piesne - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + Použitie motívu z každej piesne z databázy. Ak pieseň nemá priradený motív, použije sa globálny motív. - + &Service Level - + &Úroveň služby - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + Použítím motívu zo služby sa prekryje motív jednotlivých piesní. Ak pieseň nemá priradený motív, použije sa globálny motív. - + &Global Level - + &Globálna úroveň - + Use the global theme, overriding any themes associated with either the service or the songs. - + Použítím globálneho motívu sa prekryjú motívy, ktoré sú priradené službám alebo piesňam. - + Themes - + Motívy OpenLP.Ui - + Error - - - - - About - + Chyba - &Add - + About + O aplikácii - Advanced - + &Add + &Pridať - All Files - + Advanced + Pokročilý - Bottom - + All Files + Všetky súbory - Browse... - + Bottom + Dole - Cancel - + Browse... + Prehliadať... - CCLI number: - + Cancel + Zrušiť + CCLI number: + CCLI číslo: + + + Create a new service. - + Vytvoriť novú službu - + &Delete - - - - - &Edit - + &Zmazať + &Edit + &Upraviť + + + Empty Field - + Prázdne pole - + Export - + Export - + pt Abbreviated font pointsize unit - - - - - Image - + pt - Import - + Image + Obrázok - - Live - + + Import + Import + Live + Naživo + + + Live Background Error - + Chyba v pozadí naživo - + Load - - - - - Middle - + Načítať - New - + Middle + Uprostred - New Service - + New + Nový - New Theme - + New Service + Nová služba - - No File Selected - Singular - + + New Theme + Nový motív - No Files Selected - Plural - + No File Selected + Singular + Nevybraný žiadny súbor - No Item Selected - Singular - + No Files Selected + Plural + Nevybrané žiadne súbory - No Items Selected - Plural - + No Item Selected + Singular + Nevybraná žiadna položka - openlp.org 1.x - + No Items Selected + Plural + Nevybrané žiadne položky + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + Náhľad - + Replace Background - + Nahradiť pozadie - + Reset Background - + Obnoviť pozadie - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + Uložiť &náhľad + + + Search - + Hľadať - + You must select an item to delete. - + Je potrebné vybrať nejakú položku na zmazanie. - + You must select an item to edit. - - - - - Save Service - + Je potrebné vybrať nejakú položku k úpravám. + Save Service + Uložiť službu + + + Service - + Služba - + Start %s - - - - - Theme - Singular - + Spustiť %s + Theme + Singular + Motív + + + Themes Plural - + Motívy - + Top - + Vrchol - + Version - + Verzia - + Delete the selected item. - + Zmazať vybranú položku. - + Move selection up one position. - + Presun výberu o jednu pozíciu vyššie - + Move selection down one position. - + Presun výberu o jednu pozíciu nižšie. - + &Vertical Align: - - - - - Finished import. - + *Zvislé zarovnanie: - Format: - + Finished import. + Import ukončený. - - Importing - + + Format: + Formát: - Importing "%s"... - + Importing + Importovanie - Select Import Source - + Importing "%s"... + Importovanie "%s"... + Select Import Source + Vybrať zdroj importu + + + Select the import format and the location to import from. - + Vyberte formát importu a umiestnenia, z ktorého sa má importovať. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Import dát z openlp.org 1.x bol vypnutý kôli chýbajúcemu Python modulu. Ak chcete použiť tento import, je potrebné nainštalovať modul "python-sqlite". - + Open %s File - - - - - %p% - + Otvoriť súbor %s + %p% + %p% + + + Ready. - + Pripravený - + Starting import... - + Spustenie importu... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + Je potrebné špecifikovať aspon jeden %s súbor, z ktorého sa bude importovať. Welcome to the Bible Import Wizard - + Vitajte v sprievodcovi importu Biblie - + Welcome to the Song Export Wizard - + Vitajte v sprievodcovi exportu piesní. - + Welcome to the Song Import Wizard - - - - - Author - Singular - + Vitajte v sprievodcovi importu piesní. - Authors - Plural - + Author + Singular + Autor - - © - Copyright symbol. - + + Authors + Plural + Autori - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + Spevník - Title and/or verses not found - + Song Books + Plural + Spevníky + + + + Song Maintenance + Údržba piesne + + + + Topic + Singular + Téma - XML syntax error - + Topics + Plural + Témy + + + + Continuous + Spojitý + + + + Default + Predvolený + + + + Display style: + Štýl zobrazenia + + + + Duplicate Error + Duplicitná chyba + + + + File + Súbor + + + + Help + Pomocník + + + + h + The abbreviated unit for hours + h + + + + Layout style: + Štýl rozmiestnenia + + + + Live Toolbar + Nástrojová lišta naživo + + + + m + The abbreviated unit for minutes + min + + + + OpenLP is already running. Do you wish to continue? + Aplikácia OpenLP je už spustená. Prajete si pokračovať? + + + + Settings + Nastavenia + + + + Tools + Nástroje + + + + Unsupported File + Nepodporovaný súbor + + + + Verse Per Slide + Verš na snímok + + + + Verse Per Line + Verš na jeden riadok + View + Zobraziť + + + + Title and/or verses not found + Názov a/alebo slova nenájdené + + + + XML syntax error + Chyba v syntaxi XML + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + Réžim zobrazenia - Play Slides in Loop - + Open service. + Otvoriť službu + + + + Print Service + Tlač služby + + + + Replace live background. + Nahradiť pozadie naživo. + + + + Reset live background. + Obnoviť pozadie naživo. + + + + Split a slide into two only if it does not fit on the screen as one slide. + Rozdelenie snímok na 2 len v prípade, ak sa nezmestí na obrazovku ako jeden snímok. + + + + Welcome to the Bible Upgrade Wizard + Vitajte v sprievodcovi aktualizácií Biblie. + + + + Confirm Delete + Potvrdiť zmazanie + Play Slides in Loop + Prehrať snímky v slučke + + + Play Slides to End - + Prehrať snímky na konci - + Stop Play Slides in Loop - + Zastaviť prehrávanie snímkov v slučke - + Stop Play Slides to End - + Zastaviť prehrávanie snímkov na konci - + Next Track - + Nasledujúca stopa - + Search Themes... Search bar place holder text - + Vyhľadávať motív... - + Optional &Split - + Volitelné &rozdelenie - + Invalid Folder Selected Singular Vybrali ste nesprávny priečinok - + Invalid File Selected Singular Vybrali ste nesprávny súbor - + Invalid Files Selected Plural Vybrali ste nesprávne súbory - + No Folder Selected Singular Nevybrali ste žiadny priečinok - + Open %s Folder Otvorte %s Priečinok - + You need to specify one %s file to import from. A file type e.g. OpenSong Určte jeden %s súbor z kade sa bude importovať. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Určte jeden %s priečinok z kade sa bude importovať. + + + Importing Songs + Import piesní + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 a %2 - + %1, and %2 Locale list separator: end - + %1, a %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong> Modul prezentácie</strong><br/>Modul prezentácie poskytuje zobrazovať prezentácie pomocou rôznych programov. Výber dostupných prezentačných programov je užívateľovi prístupný v rozbaľovacom menu. - + Presentation name singular - + Prezentácia - + Presentations name plural - + Prezentácie - + Presentations container title - + Prezentácie - + Load a new presentation. - + Načítať novú prezentáciu - + Delete the selected presentation. - + Zmazať vybranú prezentáciu - + Preview the selected presentation. - + Náhľad vybranej prezentácie. - + Send the selected presentation live. - + Odoslať vybranú prezentáciu naživo. - + Add the selected presentation to the service. - + Pridať vybranú prezentáciu k službe. PresentationPlugin.MediaItem - + Select Presentation(s) - + Vybrať prezentáciu (e) - + Automatic - + Automaticky - + Present using: - + Prezentujte pomocou: - + File Exists - + Súbor existuje - + A presentation with that filename already exists. - + Prezentácia s týmto názvom súboru už existuje. - + This type of presentation is not supported. - + Tento typ prezentácie nie je podporovaný. - + Presentations (%s) - + Prezentácie (%s) - + Missing Presentation - + Chýbajúca prezentácia - + The presentation %s is incomplete, please reload. Prezentácia %s nie je kompletná, opäť ju načítajte. - + The presentation %s no longer exists. Prezentácia %s už neexistuje. @@ -5749,1496 +5780,1546 @@ The content encoding is not UTF-8. PresentationPlugin.PresentationTab - + Available Controllers - + Dostupné ovládanie - + %s (unavailable) - + %s (nedostupný) - + Allow presentation application to be overridden - + Povoliť prekrytie prezentačnej aplikácie. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Vzdialený Modul</strong><br/>Vzdialený modul poskytuje možnosť odosielať správy na bežiacu verziu aplikácie OpenLP na inom počítači pomocou webového prehliadača alebo vzdialeným API - Remotes - name plural - + Remote + name singular + Vzdialený - + + Remotes + name plural + Vzdialené + + + Remote container title - + Vzdialený RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 vzdialený + + + OpenLP 2.0 Stage View - + OpenLP 2.0 pohľad etapy - + Service Manager - + Správca služby - + Slide Controller - - - - - Alerts - + Ovládanie snímku - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + Upozornenia - Home - + Search + Hľadať + + + + Refresh + Obnoviť - Theme - + Blank + Prázdny + + + + Show + Zobraziť + + + + Prev + Predchádzajúci + + + + Next + Nasledujúci + + + + Text + Text + + + + Show Alert + Zobraziť upozornenie + + + + Go Live + Zobraziť naživo + + + + No Results + Žiadne výsledky + + + + Options + Možnosti + + + + Add to Service + Pridať k službe + + + + Home + Domov - Desktop - + Theme + Motív - + + Desktop + Plocha + + + Add &amp; Go to Service - + Pridať &amp; Prejsť k službe + + + + Service + Služba + + + + Slides + Snímky RemotePlugin.RemoteTab - + Serve on IP address: - + Podávať na IP adrese: - + Port number: - + Číslo portu: - + Server Settings - + Nastavenie serveru - + Remote URL: - + Vzdialená URL: - + Stage view URL: - + Pohľad etapy URL - + Display stage time in 12h format - + Zobraziť čas etapy v 12 hodinovom formáte - + Android App - + Android aplikácia - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Naskenujte QR kód alebo pre inštaláciu Android aplikácie zo služby Google Play kliknite na <a href="https://play.google.com/store/apps/details?id=org.openlp.android">stiahnuť</a>. SongUsagePlugin - + &Song Usage Tracking - + &Sledovanie použitia piesne - + &Delete Tracking Data - + &Zmazať dáta sledovania - + Delete song usage data up to a specified date. - + Zmazať dáta použitia piesne až ku konkrétnemu dátumu. - + &Extract Tracking Data - + &Rozbaliť dáta sledovania - + Generate a report on song usage. - + Vytvoriť hlásenie z použitia piesne. - + Toggle Tracking - + Prepnúť sledovanie - + Toggle the tracking of song usage. - + Prepnúť sledovanie použitia piesne. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>Modul použitia piesne</strong><br/>Tento modul sleduje používanie piesní v službách. - + SongUsage name singular - + Používanie piesne - + SongUsage name plural - + Používanie piesne - + SongUsage container title - + Používanie piesne - + Song Usage - + Používanie piesne - + Song usage tracking is active. - + Sledovanie použitia piesne je zapnuté. - + Song usage tracking is inactive. - + Sledovanie použitia piesne je vypnuté. - + display - + zobrazenie - + printed - + vytlačený SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + Zmazať dáta použitia piesne. - + Delete Selected Song Usage Events? - + Zmazať udalosti vybraného použitia piesne? - + Are you sure you want to delete selected Song Usage data? - + Ste si istý, že chcete zmazať vybrané dáta o použití piesne? - + Deletion Successful - + Úspešné zmazanie - + All requested data has been deleted successfully. - + Všetky požadované dáta boli úspešne zmazané. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + Vyberte dátum, ku ktorému budu zmazané dáta o použití piesne. Všetky dáta zaznamenávané pred týmto dátumom budú natrvalo zmazané. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + Rozbalenie použitia piesne - + Select Date Range - + Vybrať rozsah dátumu - + to - + do - + Report Location - + Umiestnenie hlásenia - + Output File Location - + Umiestnenie výstupného súboru - + usage_detail_%s_%s.txt - + usage_detail_%s_%s.txt - + Report Creation - + Vytvorenie hlásenia - + Report %s has been successfully created. - + Hlásenie %s bolo úspešne vytvorené. - + Output Path Not Selected - + Nebola vybraná žiadna výstupná cesta. - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + Nie je nastavené platné výstupné umiestnenie pre hlásenie použitia piesne. Prosím vyberte existujúcu cestu vo vašom počítači. SongsPlugin - + &Song - + &Pieseň - + Import songs using the import wizard. - + Import piesní sprievodcom importu. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>Modul piesní</strong><br/>Modul piesní umožňuje zobrazovať spravovať piesne. - + &Re-index Songs - + &Preindexovanie piesní - + Re-index the songs database to improve searching and ordering. - + Preindexovať piesne v databáze pre lepšie vyhľadávanie a usporiadanie. - + Reindexing songs... - - - - - Arabic (CP-1256) - + Preindexovanie piesní... - Baltic (CP-1257) - + Arabic (CP-1256) + Arabčina (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + Baltské jazyky (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + Stredoeurópske jazyky (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + Cyrilika (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + Gréčtina (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + Hebrejčina (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + Japončina (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + Kórejčina (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + Zjednodušená čínština (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + Thajský jazyk (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + Tradičná čínština (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + Turečtina (CP-1254) + Vietnam (CP-1258) + Vietnamčina (CP-1258) + + + Western European (CP-1252) - + Západoeurópske jazyky (CP-1252) - + Character Encoding - + Kódovanie znakov - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Nastavenie kódovej stránky zodpovedá za správnu reprezentáciu znakov. Predvybraná voľba by zvyčajne mala byť správna. - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + Vyberte prosím kódovanie znakov. Kódovanie zodpovedí za správnu reprezentáciu znakov. - + Song name singular - + Pieseň - + Songs name plural - + Piesne - + Songs container title - + Piesne - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + Exportovanie piesní sprievodcom exportu. - Preview the selected song. - + Add a new song. + Pridať novú pieseň. - Send the selected song live. - + Edit the selected song. + Upraviť vybratú pieseň. + Delete the selected song. + Zmazať vybratú pieseň. + + + + Preview the selected song. + Náhľad vybratej piesne. + + + + Send the selected song live. + Odoslať vybranú pieseň naživo. + + + Add the selected song to the service. - + Pridať vybranú pieseň k službe. + + + + Reindexing songs + Preindexácia piesní SongsPlugin.AuthorsForm - + Author Maintenance - + Údržba autora - + Display name: - + Zobrazené meno: - + First name: - + Krstné meno: - + Last name: - + Priezvisko: - + You need to type in the first name of the author. - + Je potrebné zadať krstné meno autora. - + You need to type in the last name of the author. - + Je potrebné zadať priezvisko autora. - + You have not set a display name for the author, combine the first and last names? - + Zobrazené meno autora nie je nastavené. Chcete skombinovať krstné meno a priezvisko? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + Súbor nemá platnú príponu. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + Spravuje %s - + [above are Song Tags with notes imported from EasyWorship] - + +[vyššie sú značky piesní s poznámkami importovanými z EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Meta Data - + Custom Book Names - + Používateľské názvy kníh SongsPlugin.EditSongForm - + Song Editor - + Editor piesne - + &Title: - + &Názov: - + Alt&ernate title: - + &Iný názov: - + &Lyrics: - + &Text piesne: - + &Verse order: - + &Poradie veršov: - + Ed&it All - + &Upraviť všetko - + Title && Lyrics - + Názov a text piesne - + &Add to Song - + &Pridať k piesni - + &Remove - + &Odstrániť - + &Manage Authors, Topics, Song Books - + &Správa autorov, tém a spevníkov - + A&dd to Song - + &Pridať k piesni - + R&emove - + &Odstrániť - + Book: - + Kniha: - + Number: - + Číslo: - + Authors, Topics && Song Book - + Autori, témy a spevníky - + New &Theme - + Nový &motív - + Copyright Information - + Informácie o autorský právach - + Comments - + Komentáre - + Theme, Copyright Info && Comments - + Motív, autorské práva a komentáre - + Add Author - + Pridať autora - + This author does not exist, do you want to add them? - + Tento autor neexistuje. Chcete ho pridať? - + This author is already in the list. - + Tento autor je už v zozname - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + Nie je vybraný platný autor. Buď vyberiete autora zo zoznamu, alebo zadáte nového autora a pre pridanie nového autora kliknete na tlačidlo "Pridať autora k piesni". - + Add Topic - + Pridať tému - + This topic does not exist, do you want to add it? - + Táto téma neexistuje. Chcete ju pridať? - + This topic is already in the list. - + Táto téma je už v zozname. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + Nie je vybraná platná téma. Buď vyberiete tému zo zoznamu, alebo zadáte novú tému a pridanie novej témy kliknete na tlačidlo "Pridať tému k piesni". - + You need to type in a song title. - + Je potrebné zadať názov piesne. - + You need to type in at least one verse. - + Je potrebné zadať aspoň jednu slohu. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + Poradie veršov je neplatné. Verš zodpovedajúci %s neexistuje. Platné položky sú %s. - + Add Book - + Pridať knihu - + This song book does not exist, do you want to add it? - + Tento spevník neexistuje. Chcete ho pridať? - + You need to have an author for this song. - + Pre túto pieseň je potrebné zadať autora. - - You need to type some text in to the verse. - - - - + Linked Audio - + Súvisiaci zvuk - + Add &File(s) - + Pridať &Súbor (y) - + Add &Media - + Pridať &Médium - + Remove &All - + Odstrániť &Všetko - + Open File(s) - + Otvoriť súbor (y) - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>Varovanie:</strong> Nie sú použité všetky slohy. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + Poradie veršov nie je platné. Verš zodpovedajúci %s neexistuje. Platné položky sú %s. SongsPlugin.EditVerseForm - + Edit Verse - + Upraviť verš - + &Verse type: - + &Typ verša - + &Insert - + &Vložiť - + Split a slide into two by inserting a verse splitter. - + Vložením oddeľovača sloh sa snímok rozdelí na dva snímky. SongsPlugin.ExportWizardForm - + Song Export Wizard - + Sprievodca exportom piesne - + Select Songs - + Vybrať piesne - + Check the songs you want to export. - + Zaškrtnite piesne, ktoré chcete exportovať. - + Uncheck All - + Odoznačiť všetko - + Check All - + Označiť všetko - + Select Directory - + Vybrať priečinok: - + Directory: - + Priečinok: - + Exporting - + Exportovanie - + Please wait while your songs are exported. - + Čakajte prosím, kým budú vaše piesne exportované. - + You need to add at least one Song to export. - + Je potrebné pridať k exportu aspoň jednu pieseň - + No Save Location specified - + Nie je zadané umiestnenie pre uloženie. - + Starting export... - + Spustenie exportu... - + You need to specify a directory. - + Je potrebné zadať priečinok. - + Select Destination Folder - + Vybrať cielový priečinok. - + Select the directory where you want the songs to be saved. - + Vybrať priečinok, kde chcete ukladať piesne. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + Tento sprievodca vám pomôže s exportom vašich piesní do otvoreného a volne šíriteľného formátu pre chvály SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + Vybrať dokumentové/prezentačné súbory - + Song Import Wizard - + Sprievodca importom piesní. - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + Tento sprievodca vám pomôže importovať piesne z rôznych formátov. Importovanie sa spustí kliknutím nižšie na tlačidlo ďalší a výberom formátu, z ktorého sa bude importovať. - + Generic Document/Presentation - + Všeobecný dokument/prezentácia - + Add Files... - + Pridať súbory... - + Remove File(s) - + Odstrániť súbor (y) - + Please wait while your songs are imported. - + Čakajte prosím, kým budú vaše piesne importované. - + OpenLP 2.0 Databases - + Databáza OpenLP 2.0 - + openlp.org v1.x Databases - + Databázy openlp.org v1.x - + Words Of Worship Song Files - + Súbory s piesňami Words of Worship - + Songs Of Fellowship Song Files - + Súbory s piesňami Songs Of Fellowship - + SongBeamer Files - + Súbory SongBeamer - + SongShow Plus Song Files - + Súbory s piesňami SongShow Plus - + Foilpresenter Song Files - + Súbory s piesňami Foilpresenter - + Copy - + Kopírovať - + Save to File - + Uložiť do súboru - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Import zo Song of Fellowship bol zakázaný, pretože aplikácia OpenLP nemôže pristupovať k aplikáciám OpenOffice alebo LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Import všeobecných dokumentov/prezenácií bol zakázaný, pretože aplikácia OpenLP nemôže pristupovať k aplikáciám OpenOffice alebo LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics alebo piesne exportované z OpenLP 2.0 - + OpenLyrics Files - + Súbory OpenLyrics - + CCLI SongSelect Files - + Súbory CCLI SongSelect - + EasySlides XML File - + XML súbory EasySlides - + EasyWorship Song Database - + Databáza piesní EasyWorship - + DreamBeam Song Files Súbory Piesní DreamBeam - + You need to specify a valid PowerSong 1.0 database folder. Musíte upresniť správny priečinok PowerSong 1.0 databázy. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Najprv prekonvertuj tvoju ZionWorx databázu na CSV textový súbor, ako je to vysvetlené v <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Užívateľskom Manuály</a>. - + SundayPlus Song Files - + Súbory s piesňami SundayPlus - + This importer has been disabled. - + Tento importér bol zakázaný. - + MediaShout Database - + Databáza MediaShout - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShout importér je podporovaný len vo Windows. Bol zakázaný kôli chýbajúcemu Python modulu. Ak si prajete používať tento importér, bude potrebné nainštalovať modul "pyodbc". - + SongPro Text Files - + Textové súbory SongPro - + SongPro (Export File) - + SongPro (exportovaný súbor) - + In SongPro, export your songs using the File -> Export menu - + V aplikácii SongPro sa piesne exportujú cez menu File -> Export SongsPlugin.MediaFilesForm - + Select Media File(s) - + Vybrať mediálny súbor (y) - + Select one or more audio files from the list below, and click OK to import them into this song. - + Vyberte jeden alebo viac zvukových súborov zo zoznamu nižšie a importovať ich k piesni je možné kliknutím na tlačidlo OK. SongsPlugin.MediaItem - + Titles - + Názvy - + Lyrics - + Text piesne - + CCLI License: - + CCLI Licencia: - + Entire Song - + Celá pieseň - + Are you sure you want to delete the %n selected song(s)? - + + Ste si istý, že chcete zmazať %n vybranú pieseň (e)? + Ste si istý, že chcete zmazať %n vybrané piesne (e)? + Ste si istý, že chcete zmazať %n vybraných piesní (e)? + - + Maintain the lists of authors, topics and books. - + Spravovať zoznamy autorov, tém a kníh. - + copy For song cloning - + kopírovať - + Search Titles... - + Vyhľadávať názov... - + Search Entire Song... - + Vyhľadávať celú pieseň... - + Search Lyrics... - + Vyhľadávať text piesne... - + Search Authors... - + Vyhľadávať autorov... - + Search Song Books... - + Vyhľadávať spevníky... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + Nie je možné otvoriť databázu MediaShout. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + Neplatná databáza piesní openlp.org 1.x. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + Neplatná databáza piesní OpenLP 2.0 SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + Exportovanie "%s"... SongsPlugin.PowerSongImport - + No songs to import. Žiadne piesne nie sú na vloženie. - + Verses not found. Missing "PART" header. Verše neboli nájdené. Chýba "ČASŤ" hlavička. + + + No %s files found. + Nenájdené žiadne súbory %s + + + + Invalid %s file. Unexpected byte value. + Neplatný súbor %s. Neočakávaná hodnota bajtu. + + + + Invalid %s file. Missing "TITLE" header. + Neplatný súbor %s. Chýbajúca hlavička "TITLE" + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Neplatný súbor %s. Chýbajúca hlavička "COPYRIGHTLINE". + SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + Údržba spevníku. - &Publisher: - + &Name: + &Názov: - + + &Publisher: + &Vydavateľ: + + + You need to type in a name for the book. - + Je potrebné zadať názov knihy. SongsPlugin.SongExportForm - + Your song export failed. - + Export piesne zlyhal. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + Export bol dokončený. Pre import týchto súborov použite import z <strong>OpenLyrics</strong> SongsPlugin.SongImport - + copyright - + autorské práva - + The following songs could not be imported: - + Nasledujúce piesne nemôžu byť importované: - + Cannot access OpenOffice or LibreOffice - + Žiadny prístup k aplikáciám OpenOffice alebo LibreOffice - + Unable to open file - + Nejde otvoríť súbor - + File not found - + Súbor nebol nájdený SongsPlugin.SongMaintenanceForm - + Could not add your author. - + Nie je možné pridať autora. - + This author already exists. - + Tento autor už existuje. - + Could not add your topic. - + Nie je možné pridať tému. - + This topic already exists. - + Táto téma už existuje - + Could not add your book. - + Nie je možné pridať knihu. - + This book already exists. - + Táto kniha už existuje. - + Could not save your changes. - + Nie je možné uložiť zmeny. - + Could not save your modified author, because the author already exists. - + Nie je možné uložiť upraveného autora, pretože tento autor už existuje. - + Could not save your modified topic, because it already exists. - + Nie je možné uložiť upravenú tému, pretože už existuje. - + Delete Author - + Zmazať autora - + Are you sure you want to delete the selected author? - + Ste si istý, že chcete zmazať vybraného autora? - + This author cannot be deleted, they are currently assigned to at least one song. - + Tento autor nemôže byť zmazaný, pretože je v súčastnosti priradený najmenej k jednej piesni. - + Delete Topic - + Zmazať tému - + Are you sure you want to delete the selected topic? - + Ste si istý, že chcete zmazať vybranú tému? - + This topic cannot be deleted, it is currently assigned to at least one song. - + Táto téma nemôže byť zmazaná, pretože je v súčastnosti priradená najmenej k jednej piesni. - + Delete Book - + Zmazať spevník - + Are you sure you want to delete the selected book? - + Ste si istý, že chcete zmazať vybranú knihu? - + This book cannot be deleted, it is currently assigned to at least one song. - + Táto kniha nemôže byť zmazaná, pretože je v súčastnosti priradená najmenej k jednej piesni. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + Autor %s už existuje. Prajete si vytvoriť piesne s autorom %s a použiť už existujúceho autora %s ? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + Téma %s už existuje. Prajete si vytvoriť piesne s témou %s a použiť už existujúcu tému %s ? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + Kniha %s už existuje. Prajete si vytvoriť piesne s knihou %s a použiť už existujúcu knihu %s ? SongsPlugin.SongsTab - + Songs Mode - + Réžim piesne - + Enable search as you type - + Zapnúť vyhľadávanie počas písania. - + Display verses on live tool bar - + Zobraziť slohy v nástrojovej lište naživo - + Update service from song edit - + Aktualizovať službu pri úprave piesne. - + Import missing songs from service files - + Import chýbajúcich piesní zo služby súborov. SongsPlugin.TopicsForm - + Topic Maintenance - + Údržba témy - + Topic name: - + Názov témy - + You need to type in a topic name. - + Je potrebné zadať názov témy. SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + Sloha - Bridge - + Chorus + Refrén - Pre-Chorus - + Bridge + Prechod - Intro - + Pre-Chorus + Predrefrén - Ending - + Intro + Intro + Ending + Zakončenie + + + Other - + Ďalšie SongsPlugin.ZionWorxImport - + Error reading CSV file. Chyba pri čítaní CSV súboru. - + File not valid ZionWorx CSV format. Súbor nie je validný ZionWorx CSV formátu. + + + Line %d: %s + Riadok %d: %s + + + + Decoding error: %s + Chyba dekódovania: %s + + + + Record %d + Záznam %d + - \ No newline at end of file + diff --git a/resources/i18n/sq.ts b/resources/i18n/sq.ts deleted file mode 100644 index 7bf7245a3..000000000 --- a/resources/i18n/sq.ts +++ /dev/null @@ -1,7172 +0,0 @@ - - - AlertsPlugin - - - &Alert - - - - - Show an alert message. - - - - - Alert - name singular - - - - - Alerts - name plural - - - - - Alerts - container title - - - - - <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - - - - - AlertsPlugin.AlertForm - - - Alert Message - - - - - Alert &text: - - - - - &New - - - - - &Save - - - - - Displ&ay - - - - - Display && Cl&ose - - - - - New Alert - - - - - You haven't specified any text for your alert. Please type in some text before clicking New. - - - - - &Parameter: - - - - - No Parameter Found - - - - - You have not entered a parameter to be replaced. -Do you want to continue anyway? - - - - - No Placeholder Found - - - - - The alert text does not contain '<>'. -Do you want to continue anyway? - - - - - AlertsPlugin.AlertsManager - - - Alert message created and displayed. - - - - - AlertsPlugin.AlertsTab - - - Font - - - - - Font name: - - - - - Font color: - - - - - Background color: - - - - - Font size: - - - - - Alert timeout: - - - - - BiblesPlugin - - - &Bible - - - - - Bible - name singular - - - - - Bibles - name plural - - - - - Bibles - container title - - - - - No Book Found - - - - - No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - - - - - Import a Bible. - - - - - Add a new Bible. - - - - - Edit the selected Bible. - - - - - Delete the selected Bible. - - - - - Preview the selected Bible. - - - - - Send the selected Bible live. - - - - - Add the selected Bible to the service. - - - - - <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - - - - - &Upgrade older Bibles - - - - - Upgrade the Bible databases to the latest format. - - - - - Genesis - - - - - Exodus - - - - - Leviticus - - - - - Numbers - - - - - Deuteronomy - - - - - Joshua - - - - - Judges - - - - - Ruth - - - - - 1 Samuel - - - - - 2 Samuel - - - - - 1 Kings - - - - - 2 Kings - - - - - 1 Chronicles - - - - - 2 Chronicles - - - - - Ezra - - - - - Nehemiah - - - - - Esther - - - - - Job - - - - - Psalms - - - - - Proverbs - - - - - Ecclesiastes - - - - - Song of Solomon - - - - - Isaiah - - - - - Jeremiah - - - - - Lamentations - - - - - Ezekiel - - - - - Daniel - - - - - Hosea - - - - - Joel - - - - - Amos - - - - - Obadiah - - - - - Jonah - - - - - Micah - - - - - Nahum - - - - - Habakkuk - - - - - Zephaniah - - - - - Haggai - - - - - Zechariah - - - - - Malachi - - - - - Matthew - - - - - Mark - - - - - Luke - - - - - John - - - - - Acts - - - - - Romans - - - - - 1 Corinthians - - - - - 2 Corinthians - - - - - Galatians - - - - - Ephesians - - - - - Philippians - - - - - Colossians - - - - - 1 Thessalonians - - - - - 2 Thessalonians - - - - - 1 Timothy - - - - - 2 Timothy - - - - - Titus - - - - - Philemon - - - - - Hebrews - - - - - James - - - - - 1 Peter - - - - - 2 Peter - - - - - 1 John - - - - - 2 John - - - - - 3 John - - - - - Jude - - - - - Revelation - - - - - Judith - - - - - Wisdom - - - - - Tobit - - - - - Sirach - - - - - Baruch - - - - - 1 Maccabees - - - - - 2 Maccabees - - - - - 3 Maccabees - - - - - 4 Maccabees - - - - - Rest of Daniel - - - - - Rest of Esther - - - - - Prayer of Manasses - - - - - Letter of Jeremiah - - - - - Prayer of Azariah - - - - - Susanna - - - - - Bel - - - - - 1 Esdras - - - - - 2 Esdras - - - - - :|v|V|verse|verses;;-|to;;,|and;;end - Double-semicolon delimited separators for parsing references. Consult the developers for further information. - - - - - BiblesPlugin.BibleEditForm - - - You need to specify a version name for your Bible. - - - - - You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - - - - - Bible Exists - - - - - This Bible already exists. Please import a different Bible or first delete the existing one. - - - - - You need to specify a book name for "%s". - - - - - The book name "%s" is not correct. -Numbers can only be used at the beginning and must -be followed by one or more non-numeric characters. - - - - - Duplicate Book Name - - - - - The Book Name "%s" has been entered more than once. - - - - - BiblesPlugin.BibleManager - - - Scripture Reference Error - - - - - Web Bible cannot be used - - - - - Text Search is not available with Web Bibles. - - - - - You did not enter a search keyword. -You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - - - - - There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - - - - - No Bibles Available - - - - - Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: - -Book Chapter -Book Chapter%(range)sChapter -Book Chapter%(verse)sVerse%(range)sVerse -Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse -Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse -Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse - Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - - - - - BiblesPlugin.BiblesTab - - - Verse Display - - - - - Only show new chapter numbers - - - - - Bible theme: - - - - - No Brackets - - - - - ( And ) - - - - - { And } - - - - - [ And ] - - - - - Note: -Changes do not affect verses already in the service. - - - - - Display second Bible verses - - - - - Custom Scripture References - - - - - Verse Separator: - - - - - Range Separator: - - - - - List Separator: - - - - - End Mark: - - - - - Multiple alternative verse separators may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - Multiple alternative range separators may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - Multiple alternative list separators may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - Multiple alternative end marks may be defined. -They have to be separated by a vertical bar "|". -Please clear this edit line to use the default value. - - - - - English - - - - - Default Bible Language - - - - - Book name language in search field, -search results and on display: - - - - - Bible Language - - - - - Application Language - - - - - BiblesPlugin.BookNameDialog - - - Select Book Name - - - - - Current name: - - - - - Corresponding name: - - - - - Show Books From - - - - - Old Testament - - - - - New Testament - - - - - Apocrypha - - - - - The following book name cannot be matched up internally. Please select the corresponding name from the list. - - - - - BiblesPlugin.BookNameForm - - - You need to select a book. - - - - - BiblesPlugin.CSVBible - - - Importing books... %s - - - - - Importing verses from %s... - Importing verses from <book name>... - - - - - Importing verses... done. - - - - - BiblesPlugin.EditBibleForm - - - Bible Editor - - - - - License Details - - - - - Version name: - - - - - Copyright: - - - - - Permissions: - - - - - Default Bible Language - - - - - Book name language in search field, search results and on display: - - - - - Global Settings - - - - - Bible Language - - - - - Application Language - - - - - English - - - - - This is a Web Download Bible. -It is not possible to customize the Book Names. - - - - - To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - - - - - BiblesPlugin.HTTPBible - - - Registering Bible and loading books... - - - - - Registering Language... - - - - - Importing %s... - Importing <book name>... - - - - - Download Error - - - - - There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - - - - - Parse Error - - - - - There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - - - - - BiblesPlugin.ImportWizardForm - - - Bible Import Wizard - - - - - This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Web Download - - - - - Location: - - - - - Crosswalk - - - - - BibleGateway - - - - - Bible: - - - - - Download Options - - - - - Server: - - - - - Username: - - - - - Password: - - - - - Proxy Server (Optional) - - - - - License Details - - - - - Set up the Bible's license details. - - - - - Version name: - - - - - Copyright: - - - - - Please wait while your Bible is imported. - - - - - You need to specify a file with books of the Bible to use in the import. - - - - - You need to specify a file of Bible verses to import. - - - - - You need to specify a version name for your Bible. - - - - - You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - - - - - Bible Exists - - - - - This Bible already exists. Please import a different Bible or first delete the existing one. - - - - - Your Bible import failed. - - - - - CSV File - - - - - Bibleserver - - - - - Permissions: - - - - - Bible file: - - - - - Books file: - - - - - Verses file: - - - - - openlp.org 1.x Bible Files - - - - - Registering Bible... - - - - - Registered Bible. Please note, that verses will be downloaded on -demand and thus an internet connection is required. - - - - - BiblesPlugin.LanguageDialog - - - Select Language - - - - - OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - - - - - Language: - - - - - BiblesPlugin.LanguageForm - - - You need to choose a language. - - - - - BiblesPlugin.MediaItem - - - Quick - - - - - Find: - - - - - Book: - - - - - Chapter: - - - - - Verse: - - - - - From: - - - - - To: - - - - - Text Search - - - - - Second: - - - - - Scripture Reference - - - - - Toggle to keep or clear the previous results. - - - - - You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - - - - - Bible not fully loaded. - - - - - Information - - - - - The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - - - - - Search Scripture Reference... - - - - - Search Text... - - - - - Are you sure you want to completely delete "%s" Bible from OpenLP? - -You will need to re-import this Bible to use it again. - - - - - BiblesPlugin.OpenSongImport - - - Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - - - - - BiblesPlugin.Opensong - - - Importing %s %s... - Importing <book name> <chapter>... - - - - - BiblesPlugin.OsisImport - - - Detecting encoding (this may take a few minutes)... - - - - - Importing %s %s... - Importing <book name> <chapter>... - - - - - BiblesPlugin.UpgradeWizardForm - - - Select a Backup Directory - - - - - Bible Upgrade Wizard - - - - - This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - - - - - Select Backup Directory - - - - - Please select a backup directory for your Bibles - - - - - Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - - - - - Please select a backup location for your Bibles. - - - - - Backup Directory: - - - - - There is no need to backup my Bibles - - - - - Select Bibles - - - - - Please select the Bibles to upgrade - - - - - Upgrading - - - - - Please wait while your Bibles are upgraded. - - - - - The backup was not successful. -To backup your Bibles you need permission to write to the given directory. - - - - - Upgrading Bible %s of %s: "%s" -Failed - - - - - Upgrading Bible %s of %s: "%s" -Upgrading ... - - - - - Download Error - - - - - To upgrade your Web Bibles an Internet connection is required. - - - - - Upgrading Bible %s of %s: "%s" -Upgrading %s ... - - - - - Upgrading Bible %s of %s: "%s" -Complete - - - - - , %s failed - - - - - Upgrading Bible(s): %s successful%s -Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - - - - - Upgrading Bible(s): %s successful%s - - - - - Upgrade failed. - - - - - You need to specify a backup directory for your Bibles. - - - - - Starting upgrade... - - - - - There are no Bibles that need to be upgraded. - - - - - CustomPlugin - - - <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - - - - - Custom Slide - name singular - - - - - Custom Slides - name plural - - - - - Custom Slides - container title - - - - - Load a new custom slide. - - - - - Import a custom slide. - - - - - Add a new custom slide. - - - - - Edit the selected custom slide. - - - - - Delete the selected custom slide. - - - - - Preview the selected custom slide. - - - - - Send the selected custom slide live. - - - - - Add the selected custom slide to the service. - - - - - CustomPlugin.CustomTab - - - Custom Display - - - - - Display footer - - - - - CustomPlugin.EditCustomForm - - - Edit Custom Slides - - - - - &Title: - - - - - Add a new slide at bottom. - - - - - Edit the selected slide. - - - - - Edit all the slides at once. - - - - - Split a slide into two by inserting a slide splitter. - - - - - The&me: - - - - - &Credits: - - - - - You need to type in a title. - - - - - You need to add at least one slide - - - - - Ed&it All - - - - - Insert Slide - - - - - CustomPlugin.EditVerseForm - - - Edit Slide - - - - - CustomPlugin.MediaItem - - - Are you sure you want to delete the %n selected custom slide(s)? - - - - - ImagePlugin - - - <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - - - - - Image - name singular - - - - - Images - name plural - - - - - Images - container title - - - - - Load a new image. - - - - - Add a new image. - - - - - Edit the selected image. - - - - - Delete the selected image. - - - - - Preview the selected image. - - - - - Send the selected image live. - - - - - Add the selected image to the service. - - - - - ImagePlugin.ExceptionDialog - - - Select Attachment - - - - - ImagePlugin.MediaItem - - - Select Image(s) - - - - - You must select an image to delete. - - - - - You must select an image to replace the background with. - - - - - Missing Image(s) - - - - - The following image(s) no longer exist: %s - - - - - The following image(s) no longer exist: %s -Do you want to add the other images anyway? - - - - - There was a problem replacing your background, the image file "%s" no longer exists. - - - - - There was no display item to amend. - - - - - ImagesPlugin.ImageTab - - - Background Color - - - - - Default Color: - - - - - Visible background for images with aspect ratio different to screen. - - - - - MediaPlugin - - - <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - name singular - - - - - Media - name plural - - - - - Media - container title - - - - - Load new media. - - - - - Add new media. - - - - - Edit the selected media. - - - - - Delete the selected media. - - - - - Preview the selected media. - - - - - Send the selected media live. - - - - - Add the selected media to the service. - - - - - MediaPlugin.MediaItem - - - Select Media - - - - - You must select a media file to delete. - - - - - You must select a media file to replace the background with. - - - - - There was a problem replacing your background, the media file "%s" no longer exists. - - - - - Missing Media File - - - - - The file %s no longer exists. - - - - - Videos (%s);;Audio (%s);;%s (*) - - - - - There was no display item to amend. - - - - - Unsupported File - - - - - Automatic - - - - - Use Player: - - - - - MediaPlugin.MediaTab - - - Available Media Players - - - - - %s (unavailable) - - - - - Player Order - - - - - Allow media player to be overridden - - - - - OpenLP - - - Image Files - - - - - Information - - - - - Bible format has changed. -You have to upgrade your existing Bibles. -Should OpenLP upgrade now? - - - - - OpenLP.AboutForm - - - Credits - - - - - License - - - - - Contribute - - - - - build %s - - - - - This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - - - - - This program 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 below for more details. - - - - - Project Lead - %s - -Developers - %s - -Contributors - %s - -Testers - %s - -Packagers - %s - -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s - -Documentation - %s - -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ - -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 - - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - - - - - OpenLP.AdvancedTab - - - UI Settings - - - - - Number of recent files to display: - - - - - Remember active media manager tab on startup - - - - - Double-click to send items straight to live - - - - - Expand new service items on creation - - - - - Enable application exit confirmation - - - - - Mouse Cursor - - - - - Hide mouse cursor when over display window - - - - - Default Image - - - - - Background color: - - - - - Image file: - - - - - Open File - - - - - Advanced - - - - - Preview items when clicked in Media Manager - - - - - Click to select a color. - - - - - Browse for an image file to display. - - - - - Revert to the default OpenLP logo. - - - - - Service %Y-%m-%d %H-%M - This may not contain any of the following characters: /\?*|<>[]":+ -See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - - - - - Default Service Name - - - - - Enable default service name - - - - - Date and Time: - - - - - Monday - - - - - Tuesday - - - - - Wednesday - - - - - Thurdsday - - - - - Friday - - - - - Saturday - - - - - Sunday - - - - - Now - - - - - Time when usual service starts. - - - - - Name: - - - - - Consult the OpenLP manual for usage. - - - - - Revert to the default service name "%s". - - - - - Example: - - - - - X11 - - - - - Bypass X11 Window Manager - - - - - Syntax error. - - - - - Data Location - - - - - Current path: - - - - - Custom path: - - - - - Browse for new data file location. - - - - - Set the data location to the default. - - - - - Cancel - - - - - Cancel OpenLP data directory location change. - - - - - Copy data to new location. - - - - - Copy the OpenLP data files to the new location. - - - - - <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - - - - - Data Directory Error - - - - - Select Data Directory Location - - - - - Confirm Data Directory Change - - - - - Reset Data Directory - - - - - Are you sure you want to change the location of the OpenLP data directory to the default location? - -This location will be used after OpenLP is closed. - - - - - Overwrite Existing Data - - - - - OpenLP.ExceptionDialog - - - Error Occurred - - - - - Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - - - - - Send E-Mail - - - - - Save to File - - - - - Please enter a description of what you were doing to cause this error -(Minimum 20 characters) - - - - - Attach File - - - - - Description characters to enter : %s - - - - - OpenLP.ExceptionForm - - - Platform: %s - - - - - - Save Crash Report - - - - - Text files (*.txt *.log *.text) - - - - - **OpenLP Bug Report** -Version: %s - ---- Details of the Exception. --- - -%s - - --- Exception Traceback --- -%s ---- System information --- -%s ---- Library Versions --- -%s - - - - - - *OpenLP Bug Report* -Version: %s - ---- Details of the Exception. --- - -%s - - --- Exception Traceback --- -%s ---- System information --- -%s ---- Library Versions --- -%s - - Please add the information that bug reports are favoured written in English. - - - - - OpenLP.FileRenameForm - - - File Rename - - - - - New File Name: - - - - - File Copy - - - - - OpenLP.FirstTimeLanguageForm - - - Select Translation - - - - - Choose the translation you'd like to use in OpenLP. - - - - - Translation: - - - - - OpenLP.FirstTimeWizard - - - Songs - - - - - First Time Wizard - - - - - Welcome to the First Time Wizard - - - - - Activate required Plugins - - - - - Select the Plugins you wish to use. - - - - - Bible - - - - - Images - - - - - Presentations - - - - - Media (Audio and Video) - - - - - Allow remote access - - - - - Monitor Song Usage - - - - - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - - - - - No Internet Connection - - - - - Unable to detect an Internet connection. - - - - - Sample Songs - - - - - Select and download public domain songs. - - - - - Sample Bibles - - - - - Select and download free Bibles. - - - - - Sample Themes - - - - - Select and download sample themes. - - - - - Set up default settings to be used by OpenLP. - - - - - Default output display: - - - - - Select default theme: - - - - - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - - - - - Finish - - - - - No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. - -To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - - - - - - -To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - - - - - OpenLP.FormattingTagDialog - - - Configure Formatting Tags - - - - - Edit Selection - - - - - Save - - - - - Description - - - - - Tag - - - - - Start HTML - - - - - End HTML - - - - - OpenLP.FormattingTagForm - - - Update Error - - - - - Tag "n" already defined. - - - - - New Tag - - - - - <HTML here> - - - - - </and here> - - - - - Tag %s already defined. - - - - - OpenLP.FormattingTags - - - Red - - - - - Black - - - - - Blue - - - - - Yellow - - - - - Green - - - - - Pink - - - - - Orange - - - - - Purple - - - - - White - - - - - Superscript - - - - - Subscript - - - - - Paragraph - - - - - Bold - - - - - Italics - - - - - Underline - - - - - Break - - - - - OpenLP.GeneralTab - - - General - - - - - Monitors - - - - - Select monitor for output display: - - - - - Display if a single screen - - - - - Application Startup - - - - - Show blank screen warning - - - - - Automatically open the last service - - - - - Show the splash screen - - - - - Application Settings - - - - - Prompt to save before starting a new service - - - - - Automatically preview next item in service - - - - - sec - - - - - CCLI Details - - - - - SongSelect username: - - - - - SongSelect password: - - - - - X - - - - - Y - - - - - Height - - - - - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - - - - - Background Audio - - - - - Start background audio paused - - - - - Service Item Slide Limits - - - - - Override display position: - - - - - Repeat track list - - - - - Behavior of next/previous on the last/first slide: - - - - - &Remain on Slide - - - - - &Wrap around - - - - - &Move to next/previous service item - - - - - OpenLP.LanguageManager - - - Language - - - - - Please restart OpenLP to use your new language setting. - - - - - OpenLP.MainDisplay - - - OpenLP Display - - - - - OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - - - &Tools - - - - - &Settings - - - - - &Language - - - - - &Help - - - - - Media Manager - - - - - Service Manager - - - - - Theme Manager - - - - - &New - - - - - &Open - - - - - Open an existing service. - - - - - &Save - - - - - Save the current service to disk. - - - - - Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - - - - - E&xit - - - - - Quit OpenLP - - - - - &Theme - - - - - &Configure OpenLP... - - - - - &Media Manager - - - - - Toggle Media Manager - - - - - Toggle the visibility of the media manager. - - - - - &Theme Manager - - - - - Toggle Theme Manager - - - - - Toggle the visibility of the theme manager. - - - - - &Service Manager - - - - - Toggle Service Manager - - - - - Toggle the visibility of the service manager. - - - - - &Preview Panel - - - - - Toggle Preview Panel - - - - - Toggle the visibility of the preview panel. - - - - - &Live Panel - - - - - Toggle Live Panel - - - - - Toggle the visibility of the live panel. - - - - - &Plugin List - - - - - List the Plugins - - - - - &User Guide - - - - - &About - - - - - More information about OpenLP - - - - - &Online Help - - - - - &Web Site - - - - - Use the system language, if available. - - - - - Set the interface language to %s - - - - - Add &Tool... - - - - - Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - - - - - &Live - - - - - Set the view mode to Live. - - - - - Version %s of OpenLP is now available for download (you are currently running version %s). - -You can download the latest version from http://openlp.org/. - - - - - OpenLP Version Updated - - - - - OpenLP Main Display Blanked - - - - - The Main Display has been blanked out - - - - - Default Theme: %s - - - - - English - Please add the name of your language here - Shqiptar - - - - Configure &Shortcuts... - - - - - Close OpenLP - - - - - Are you sure you want to close OpenLP? - - - - - Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - - - - - Update Theme Images - - - - - Update the preview images for all themes. - - - - - Print the current service. - - - - - &Recent Files - - - - - L&ock Panels - - - - - Prevent the panels being moved. - - - - - Re-run First Time Wizard - - - - - Re-run the First Time Wizard, importing songs, Bibles and themes. - - - - - Re-run First Time Wizard? - - - - - Are you sure you want to re-run the First Time Wizard? - -Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - - - - - Clear List - Clear List of recent files - - - - - Clear the list of recent files. - - - - - Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - - - - - Settings - - - - - Import OpenLP settings from a specified *.config file previously exported on this or another machine - - - - - Import settings? - - - - - Are you sure you want to import settings? - -Importing settings will make permanent changes to your current OpenLP configuration. - -Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - - - - - Open File - - - - - OpenLP Export Settings Files (*.conf) - - - - - Import settings - - - - - OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - - - - - Export Settings File - - - - - OpenLP Export Settings File (*.conf) - - - - - New Data Directory Error - - - - - OpenLP.Manager - - - Database Error - - - - - The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. - -Database: %s - - - - - OpenLP cannot load your database. - -Database: %s - - - - - OpenLP.MediaManagerItem - - - No Items Selected - - - - - &Add to selected Service Item - - - - - You must select one or more items to preview. - - - - - You must select one or more items to send live. - - - - - You must select one or more items. - - - - - You must select an existing service item to add to. - - - - - Invalid Service Item - - - - - You must select a %s service item. - - - - - You must select one or more items to add. - - - - - No Search Results - - - - - Invalid File Type - - - - - Invalid File %s. -Suffix not supported - - - - - &Clone - - - - - Duplicate files were found on import and were ignored. - - - - - OpenLP.OpenLyricsImportError - - - <lyrics> tag is missing. - - - - - <verse> tag is missing. - - - - - OpenLP.PluginForm - - - Plugin List - - - - - Plugin Details - - - - - Status: - - - - - Active - - - - - Inactive - - - - - %s (Inactive) - - - - - %s (Active) - - - - - %s (Disabled) - - - - - OpenLP.PrintServiceDialog - - - Fit Page - - - - - Fit Width - - - - - OpenLP.PrintServiceForm - - - Options - - - - - Copy - - - - - Copy as HTML - - - - - Zoom In - - - - - Zoom Out - - - - - Zoom Original - - - - - Other Options - - - - - Include slide text if available - - - - - Include service item notes - - - - - Include play length of media items - - - - - Add page break before each text item - - - - - Service Sheet - - - - - Print - - - - - Title: - - - - - Custom Footer Text: - - - - - OpenLP.ScreenList - - - Screen - - - - - primary - - - - - OpenLP.ServiceItem - - - <strong>Start</strong>: %s - - - - - <strong>Length</strong>: %s - - - - - OpenLP.ServiceItemEditForm - - - Reorder Service Item - - - - - OpenLP.ServiceManager - - - Move to &top - - - - - Move item to the top of the service. - - - - - Move &up - - - - - Move item up one position in the service. - - - - - Move &down - - - - - Move item down one position in the service. - - - - - Move to &bottom - - - - - Move item to the end of the service. - - - - - &Delete From Service - - - - - Delete the selected item from the service. - - - - - &Add New Item - - - - - &Add to Selected Item - - - - - &Edit Item - - - - - &Reorder Item - - - - - &Notes - - - - - &Change Item Theme - - - - - OpenLP Service Files (*.osz) - - - - - File is not a valid service. -The content encoding is not UTF-8. - - - - - File is not a valid service. - - - - - Missing Display Handler - - - - - Your item cannot be displayed as there is no handler to display it - - - - - Your item cannot be displayed as the plugin required to display it is missing or inactive - - - - - &Expand all - - - - - Expand all the service items. - - - - - &Collapse all - - - - - Collapse all the service items. - - - - - Open File - - - - - Moves the selection down the window. - - - - - Move up - - - - - Moves the selection up the window. - - - - - Go Live - - - - - Send the selected item to Live. - - - - - &Start Time - - - - - Show &Preview - - - - - Modified Service - - - - - The current service has been modified. Would you like to save this service? - - - - - Custom Service Notes: - - - - - Notes: - - - - - Playing time: - - - - - Untitled Service - - - - - File could not be opened because it is corrupt. - - - - - Empty File - - - - - This service file does not contain any data. - - - - - Corrupt File - - - - - Load an existing service. - - - - - Save this service. - - - - - Select a theme for the service. - - - - - This file is either corrupt or it is not an OpenLP 2.0 service file. - - - - - Service File Missing - - - - - Slide theme - - - - - Notes - - - - - Edit - - - - - Service copy only - - - - - Error Saving File - - - - - There was an error saving your file. - - - - - OpenLP.ServiceNoteForm - - - Service Item Notes - - - - - OpenLP.SettingsForm - - - Configure OpenLP - - - - - OpenLP.ShortcutListDialog - - - Action - - - - - Shortcut - - - - - Duplicate Shortcut - - - - - The shortcut "%s" is already assigned to another action, please use a different shortcut. - - - - - Alternate - - - - - Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - - - - - Default - - - - - Custom - - - - - Capture shortcut. - - - - - Restore the default shortcut of this action. - - - - - Restore Default Shortcuts - - - - - Do you want to restore all shortcuts to their defaults? - - - - - Configure Shortcuts - - - - - OpenLP.SlideController - - - Hide - - - - - Go To - - - - - Blank Screen - - - - - Blank to Theme - - - - - Show Desktop - - - - - Previous Service - - - - - Next Service - - - - - Escape Item - - - - - Move to previous. - - - - - Move to next. - - - - - Play Slides - - - - - Delay between slides in seconds. - - - - - Move to live. - - - - - Add to Service. - - - - - Edit and reload song preview. - - - - - Start playing media. - - - - - Pause audio. - - - - - Pause playing media. - - - - - Stop playing media. - - - - - Video position. - - - - - Audio Volume. - - - - - Go to "Verse" - - - - - Go to "Chorus" - - - - - Go to "Bridge" - - - - - Go to "Pre-Chorus" - - - - - Go to "Intro" - - - - - Go to "Ending" - - - - - Go to "Other" - - - - - Previous Slide - - - - - Next Slide - - - - - Pause Audio - - - - - Background Audio - - - - - Go to next audio track. - - - - - Tracks - - - - - OpenLP.SpellTextEdit - - - Spelling Suggestions - - - - - Formatting Tags - - - - - Language: - - - - - OpenLP.StartTimeForm - - - Hours: - - - - - Minutes: - - - - - Seconds: - - - - - Item Start and Finish Time - - - - - Start - - - - - Finish - - - - - Length - - - - - Time Validation Error - - - - - Finish time is set after the end of the media item - - - - - Start time is after the finish time of the media item - - - - - Theme Layout - - - - - The blue box shows the main area. - - - - - The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - - - - - OpenLP.ThemeManager - - - Create a new theme. - - - - - Edit Theme - - - - - Edit a theme. - - - - - Delete Theme - - - - - Delete a theme. - - - - - Import Theme - - - - - Import a theme. - - - - - Export Theme - - - - - Export a theme. - - - - - &Edit Theme - - - - - &Delete Theme - - - - - Set As &Global Default - - - - - %s (default) - - - - - You must select a theme to edit. - - - - - You are unable to delete the default theme. - - - - - Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - - - - - Save Theme - (%s) - - - - - Theme Exported - - - - - Your theme has been successfully exported. - - - - - Theme Export Failed - - - - - Your theme could not be exported due to an error. - - - - - Select Theme Import File - - - - - File is not a valid theme. - - - - - &Copy Theme - - - - - &Rename Theme - - - - - &Export Theme - - - - - You must select a theme to rename. - - - - - Rename Confirmation - - - - - Rename %s theme? - - - - - You must select a theme to delete. - - - - - Delete Confirmation - - - - - Delete %s theme? - - - - - Validation Error - - - - - A theme with this name already exists. - - - - - OpenLP Themes (*.theme *.otz) - - - - - Copy of %s - Copy of <theme name> - - - - - Theme Already Exists - - - - - OpenLP.ThemeWizard - - - Theme Wizard - - - - - Welcome to the Theme Wizard - - - - - Set Up Background - - - - - Set up your theme's background according to the parameters below. - - - - - Background type: - - - - - Solid Color - - - - - Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - - - - - Size: - - - - - Line Spacing: - - - - - &Outline: - - - - - &Shadow: - - - - - Bold - - - - - Italic - - - - - Footer Area Font Details - - - - - Define the font and display characteristics for the Footer text - - - - - Text Formatting Details - - - - - Allows additional display formatting information to be defined - - - - - Horizontal Align: - - - - - Left - - - - - Right - - - - - Center - - - - - Output Area Locations - - - - - Allows you to change and move the main and footer areas. - - - - - &Main Area - - - - - &Use default location - - - - - X position: - - - - - px - - - - - Y position: - - - - - Width: - - - - - Height: - - - - - Use default location - - - - - Theme name: - - - - - Edit Theme - %s - - - - - This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - - - - - Transitions: - - - - - &Footer Area - - - - - Starting color: - - - - - Ending color: - - - - - Background color: - - - - - Justify - - - - - Layout Preview - - - - - Transparent - - - - - Preview and Save - - - - - Preview the theme and save it. - - - - - OpenLP.ThemesTab - - - Global Theme - - - - - Theme Level - - - - - S&ong Level - - - - - Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - - - - - &Service Level - - - - - Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - - - - - &Global Level - - - - - Use the global theme, overriding any themes associated with either the service or the songs. - - - - - Themes - - - - - OpenLP.Ui - - - Error - - - - - About - - - - - &Add - - - - - Advanced - - - - - All Files - - - - - Bottom - - - - - Browse... - - - - - Cancel - - - - - CCLI number: - - - - - Create a new service. - - - - - &Delete - - - - - &Edit - - - - - Empty Field - - - - - Export - - - - - pt - Abbreviated font pointsize unit - - - - - Image - - - - - Import - - - - - Live - - - - - Live Background Error - - - - - Load - - - - - Middle - - - - - New - - - - - New Service - - - - - New Theme - - - - - No File Selected - Singular - - - - - No Files Selected - Plural - - - - - No Item Selected - Singular - - - - - No Items Selected - Plural - - - - - openlp.org 1.x - - - - - OpenLP 2.0 - - - - - Preview - - - - - Replace Background - - - - - Reset Background - - - - - s - The abbreviated unit for seconds - - - - - Save && Preview - - - - - Search - - - - - You must select an item to delete. - - - - - You must select an item to edit. - - - - - Save Service - - - - - Service - - - - - Start %s - - - - - Theme - Singular - - - - - Themes - Plural - - - - - Top - - - - - Version - - - - - Delete the selected item. - - - - - Move selection up one position. - - - - - Move selection down one position. - - - - - &Vertical Align: - - - - - Finished import. - - - - - Format: - - - - - Importing - - - - - Importing "%s"... - - - - - Select Import Source - - - - - Select the import format and the location to import from. - - - - - The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - - - - - Open %s File - - - - - %p% - - - - - Ready. - - - - - Starting import... - - - - - You need to specify at least one %s file to import from. - A file type e.g. OpenSong - - - - - Welcome to the Bible Import Wizard - - - - - Welcome to the Song Export Wizard - - - - - Welcome to the Song Import Wizard - - - - - Author - Singular - - - - - Authors - Plural - - - - - © - Copyright symbol. - - - - - Song Book - Singular - - - - - Song Books - Plural - - - - - Song Maintenance - - - - - Topic - Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - - - - - Title and/or verses not found - - - - - XML syntax error - - - - - View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - - - - - Play Slides in Loop - - - - - Play Slides to End - - - - - Stop Play Slides in Loop - - - - - Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - - - - - No Folder Selected - Singular - - - - - Open %s Folder - - - - - You need to specify one %s file to import from. - A file type e.g. OpenSong - - - - - You need to specify one %s folder to import from. - A song format e.g. PowerSong - - - - - OpenLP.core.lib - - - %1 and %2 - Locale list separator: 2 items - - - - - %1, and %2 - Locale list separator: end - - - - - %1, %2 - Locale list separator: middle - - - - - %1, %2 - Locale list separator: start - - - - - PresentationPlugin - - - <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - - - - - Presentation - name singular - - - - - Presentations - name plural - - - - - Presentations - container title - - - - - Load a new presentation. - - - - - Delete the selected presentation. - - - - - Preview the selected presentation. - - - - - Send the selected presentation live. - - - - - Add the selected presentation to the service. - - - - - PresentationPlugin.MediaItem - - - Select Presentation(s) - - - - - Automatic - - - - - Present using: - - - - - File Exists - - - - - A presentation with that filename already exists. - - - - - This type of presentation is not supported. - - - - - Presentations (%s) - - - - - Missing Presentation - - - - - The presentation %s is incomplete, please reload. - - - - - The presentation %s no longer exists. - - - - - PresentationPlugin.PresentationTab - - - Available Controllers - - - - - %s (unavailable) - - - - - Allow presentation application to be overridden - - - - - RemotePlugin - - - <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - - - - - Remotes - name plural - - - - - Remote - container title - - - - - RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - - - - OpenLP 2.0 Stage View - - - - - Service Manager - - - - - Slide Controller - - - - - Alerts - - - - - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - - - - - Home - - - - - Theme - - - - - Desktop - - - - - Add &amp; Go to Service - - - - - RemotePlugin.RemoteTab - - - Serve on IP address: - - - - - Port number: - - - - - Server Settings - - - - - Remote URL: - - - - - Stage view URL: - - - - - Display stage time in 12h format - - - - - Android App - - - - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - - - - - SongUsagePlugin - - - &Song Usage Tracking - - - - - &Delete Tracking Data - - - - - Delete song usage data up to a specified date. - - - - - &Extract Tracking Data - - - - - Generate a report on song usage. - - - - - Toggle Tracking - - - - - Toggle the tracking of song usage. - - - - - <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - - - - - SongUsage - name singular - - - - - SongUsage - name plural - - - - - SongUsage - container title - - - - - Song Usage - - - - - Song usage tracking is active. - - - - - Song usage tracking is inactive. - - - - - display - - - - - printed - - - - - SongUsagePlugin.SongUsageDeleteForm - - - Delete Song Usage Data - - - - - Delete Selected Song Usage Events? - - - - - Are you sure you want to delete selected Song Usage data? - - - - - Deletion Successful - - - - - All requested data has been deleted successfully. - - - - - Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - - - - - SongUsagePlugin.SongUsageDetailForm - - - Song Usage Extraction - - - - - Select Date Range - - - - - to - - - - - Report Location - - - - - Output File Location - - - - - usage_detail_%s_%s.txt - - - - - Report Creation - - - - - Report -%s -has been successfully created. - - - - - Output Path Not Selected - - - - - You have not set a valid output location for your song usage report. Please select an existing path on your computer. - - - - - SongsPlugin - - - &Song - - - - - Import songs using the import wizard. - - - - - <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - - - - - &Re-index Songs - - - - - Re-index the songs database to improve searching and ordering. - - - - - Reindexing songs... - - - - - Arabic (CP-1256) - - - - - Baltic (CP-1257) - - - - - Central European (CP-1250) - - - - - Cyrillic (CP-1251) - - - - - Greek (CP-1253) - - - - - Hebrew (CP-1255) - - - - - Japanese (CP-932) - - - - - Korean (CP-949) - - - - - Simplified Chinese (CP-936) - - - - - Thai (CP-874) - - - - - Traditional Chinese (CP-950) - - - - - Turkish (CP-1254) - - - - - Vietnam (CP-1258) - - - - - Western European (CP-1252) - - - - - Character Encoding - - - - - The codepage setting is responsible -for the correct character representation. -Usually you are fine with the preselected choice. - - - - - Please choose the character encoding. -The encoding is responsible for the correct character representation. - - - - - Song - name singular - - - - - Songs - name plural - - - - - Songs - container title - - - - - Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - - - - - Preview the selected song. - - - - - Send the selected song live. - - - - - Add the selected song to the service. - - - - - SongsPlugin.AuthorsForm - - - Author Maintenance - - - - - Display name: - - - - - First name: - - - - - Last name: - - - - - You need to type in the first name of the author. - - - - - You need to type in the last name of the author. - - - - - You have not set a display name for the author, combine the first and last names? - - - - - SongsPlugin.CCLIFileImport - - - The file does not have a valid extension. - - - - - SongsPlugin.EasyWorshipSongImport - - - Administered by %s - - - - - -[above are Song Tags with notes imported from - EasyWorship] - - - - - SongsPlugin.EditBibleForm - - - Meta Data - - - - - Custom Book Names - - - - - SongsPlugin.EditSongForm - - - Song Editor - - - - - &Title: - - - - - Alt&ernate title: - - - - - &Lyrics: - - - - - &Verse order: - - - - - Ed&it All - - - - - Title && Lyrics - - - - - &Add to Song - - - - - &Remove - - - - - &Manage Authors, Topics, Song Books - - - - - A&dd to Song - - - - - R&emove - - - - - Book: - - - - - Number: - - - - - Authors, Topics && Song Book - - - - - New &Theme - - - - - Copyright Information - - - - - Comments - - - - - Theme, Copyright Info && Comments - - - - - Add Author - - - - - This author does not exist, do you want to add them? - - - - - This author is already in the list. - - - - - You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - - - - - Add Topic - - - - - This topic does not exist, do you want to add it? - - - - - This topic is already in the list. - - - - - You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - - - - - You need to type in a song title. - - - - - You need to type in at least one verse. - - - - - The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - - - - - Add Book - - - - - This song book does not exist, do you want to add it? - - - - - You need to have an author for this song. - - - - - You need to type some text in to the verse. - - - - - Linked Audio - - - - - Add &File(s) - - - - - Add &Media - - - - - Remove &All - - - - - Open File(s) - - - - - <strong>Warning:</strong> Not all of the verses are in use. - - - - - The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - - - - - SongsPlugin.EditVerseForm - - - Edit Verse - - - - - &Verse type: - - - - - &Insert - - - - - Split a slide into two by inserting a verse splitter. - - - - - SongsPlugin.ExportWizardForm - - - Song Export Wizard - - - - - Select Songs - - - - - Check the songs you want to export. - - - - - Uncheck All - - - - - Check All - - - - - Select Directory - - - - - Directory: - - - - - Exporting - - - - - Please wait while your songs are exported. - - - - - You need to add at least one Song to export. - - - - - No Save Location specified - - - - - Starting export... - - - - - You need to specify a directory. - - - - - Select Destination Folder - - - - - Select the directory where you want the songs to be saved. - - - - - This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - - - - - SongsPlugin.ImportWizardForm - - - Select Document/Presentation Files - - - - - Song Import Wizard - - - - - This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - - - - - Generic Document/Presentation - - - - - Add Files... - - - - - Remove File(s) - - - - - Please wait while your songs are imported. - - - - - OpenLP 2.0 Databases - - - - - openlp.org v1.x Databases - - - - - Words Of Worship Song Files - - - - - Songs Of Fellowship Song Files - - - - - SongBeamer Files - - - - - SongShow Plus Song Files - - - - - Foilpresenter Song Files - - - - - Copy - - - - - Save to File - - - - - The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - - - - - The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - - - - - OpenLyrics or OpenLP 2.0 Exported Song - - - - - OpenLyrics Files - - - - - CCLI SongSelect Files - - - - - EasySlides XML File - - - - - EasyWorship Song Database - - - - - DreamBeam Song Files - - - - - You need to specify a valid PowerSong 1.0 database folder. - - - - - ZionWorx (CSV) - - - - - First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - - - - - SundayPlus Song Files - - - - - This importer has been disabled. - - - - - MediaShout Database - - - - - The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - - - - - SongPro Text Files - - - - - SongPro (Export File) - - - - - In SongPro, export your songs using the File -> Export menu - - - - - SongsPlugin.MediaFilesForm - - - Select Media File(s) - - - - - Select one or more audio files from the list below, and click OK to import them into this song. - - - - - SongsPlugin.MediaItem - - - Titles - - - - - Lyrics - - - - - CCLI License: - - - - - Entire Song - - - - - Are you sure you want to delete the %n selected song(s)? - - - - - Maintain the lists of authors, topics and books. - - - - - copy - For song cloning - - - - - Search Titles... - - - - - Search Entire Song... - - - - - Search Lyrics... - - - - - Search Authors... - - - - - Search Song Books... - - - - - SongsPlugin.MediaShoutImport - - - Unable to open the MediaShout database. - - - - - SongsPlugin.OpenLP1SongImport - - - Not a valid openlp.org 1.x song database. - - - - - SongsPlugin.OpenLPSongImport - - - Not a valid OpenLP 2.0 song database. - - - - - SongsPlugin.OpenLyricsExport - - - Exporting "%s"... - - - - - SongsPlugin.PowerSongImport - - - No songs to import. - - - - - Verses not found. Missing "PART" header. - - - - - SongsPlugin.SongBookForm - - - Song Book Maintenance - - - - - &Name: - - - - - &Publisher: - - - - - You need to type in a name for the book. - - - - - SongsPlugin.SongExportForm - - - Your song export failed. - - - - - Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - - - - - SongsPlugin.SongImport - - - copyright - - - - - The following songs could not be imported: - - - - - Cannot access OpenOffice or LibreOffice - - - - - Unable to open file - - - - - File not found - - - - - SongsPlugin.SongMaintenanceForm - - - Could not add your author. - - - - - This author already exists. - - - - - Could not add your topic. - - - - - This topic already exists. - - - - - Could not add your book. - - - - - This book already exists. - - - - - Could not save your changes. - - - - - Could not save your modified author, because the author already exists. - - - - - Could not save your modified topic, because it already exists. - - - - - Delete Author - - - - - Are you sure you want to delete the selected author? - - - - - This author cannot be deleted, they are currently assigned to at least one song. - - - - - Delete Topic - - - - - Are you sure you want to delete the selected topic? - - - - - This topic cannot be deleted, it is currently assigned to at least one song. - - - - - Delete Book - - - - - Are you sure you want to delete the selected book? - - - - - This book cannot be deleted, it is currently assigned to at least one song. - - - - - The author %s already exists. Would you like to make songs with author %s use the existing author %s? - - - - - The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - - - - - The book %s already exists. Would you like to make songs with book %s use the existing book %s? - - - - - SongsPlugin.SongsTab - - - Songs Mode - - - - - Enable search as you type - - - - - Display verses on live tool bar - - - - - Update service from song edit - - - - - Import missing songs from service files - - - - - SongsPlugin.TopicsForm - - - Topic Maintenance - - - - - Topic name: - - - - - You need to type in a topic name. - - - - - SongsPlugin.VerseType - - - Verse - - - - - Chorus - - - - - Bridge - - - - - Pre-Chorus - - - - - Intro - - - - - Ending - - - - - Other - - - - - SongsPlugin.ZionWorxImport - - - Error reading CSV file. - - - - - File not valid ZionWorx CSV format. - - - - \ No newline at end of file diff --git a/resources/i18n/sv.ts b/resources/i18n/sv.ts index 4b6fafb86..b0c386a11 100644 --- a/resources/i18n/sv.ts +++ b/resources/i18n/sv.ts @@ -1,36 +1,37 @@ - + + AlertsPlugin - + &Alert &Meddelande - + Show an alert message. Visa ett publikt meddelande. - + Alert name singular Meddelande - + Alerts name plural Meddelanden - + Alerts container title Meddelanden - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. <strong>Meddelandemodul</strong><br />Meddelandemodulen kontrollerar visningen av publika meddelanden på visningsskärmen. @@ -38,70 +39,70 @@ AlertsPlugin.AlertForm - + Alert Message Meddelande - + Alert &text: Meddelande&text: - + &New &Nytt - + &Save &Spara - + Displ&ay &Visa - + Display && Cl&ose Visa && stän&g - + New Alert Nytt meddelande - + You haven't specified any text for your alert. Please type in some text before clicking New. Du har inte angivit någon text för ditt meddelande. Ange en text innan du klickar på Nytt. - + &Parameter: &Parameter: - + No Parameter Found Parameter saknas - + You have not entered a parameter to be replaced. Do you want to continue anyway? Du har inte angivit någon parameter. Vill du fortsätta ändå? - + No Placeholder Found Platshållare saknas - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? Meddelandet innehåller inte '<>'. Vill du fortsätta ändå? @@ -118,32 +119,32 @@ Vill du fortsätta ändå? AlertsPlugin.AlertsTab - + Font Teckensnitt - + Font name: Teckensnitt: - + Font color: Teckenfärg: - + Background color: Bakgrundsfärg: - + Font size: Teckenstorlek: - + Alert timeout: Visningstid: @@ -151,510 +152,510 @@ Vill du fortsätta ändå? BiblesPlugin - + &Bible &Bibel - + Bible name singular Bibel - + Bibles name plural Biblar - + Bibles container title Biblar - + No Book Found Bok saknas - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. Ingen bok hittades i vald bibel. Kontrollera stavningen av bokens namn. - + Import a Bible. Importera en bibelöversättning. - + Add a new Bible. Lägg till en ny bibel. - + Edit the selected Bible. Redigera vald bibel. - + Delete the selected Bible. Ta bort vald bibel. - + Preview the selected Bible. Förhandsgranska bibeltexten. - + Send the selected Bible live. Visa bibeltexten live. - + Add the selected Bible to the service. Lägg till bibeltexten i körschemat. - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. <strong>Bibelmodul</strong><br />Bibelmodulen gör det möjligt att visa bibelverser från olika översättningar under gudstjänsten. - + &Upgrade older Bibles &Uppgradera äldre biblar - + Upgrade the Bible databases to the latest format. Uppgradera bibeldatabasen till det senaste formatet. - + Genesis Första Moseboken - + Exodus Andra Moseboken - + Leviticus Tredje Moseboken - + Numbers Fjärde Moseboken - + Deuteronomy Femte Moseboken - + Joshua Josua - + Judges Domarboken - + Ruth Rut - + 1 Samuel Första Samuelsboken - + 2 Samuel Andra Samuelsboken - + 1 Kings Första Kungaboken - + 2 Kings Andra Kungaboken - + 1 Chronicles Första Krönikeboken - + 2 Chronicles Andra Krönikeboken - + Ezra Esra - + Nehemiah Nehemja - + Esther Ester - + Job Job - + Psalms Psaltaren - + Proverbs Ordspråksboken - + Ecclesiastes Predikaren - + Song of Solomon Höga Visan - + Isaiah Jesaja - + Jeremiah Jeremia - + Lamentations Klagovisorna - + Ezekiel Hesekiel - + Daniel Daniel - + Hosea Hosea - + Joel Joel - + Amos Amos - + Obadiah Obadja - + Jonah Jona - + Micah Mika - + Nahum Nahum - + Habakkuk Habackuk - + Zephaniah Sefanja - + Haggai Haggaj - + Zechariah Sakarja - + Malachi Malaki - + Matthew Matteusevangeliet - + Mark Markusevangeliet - + Luke Lukasevangeliet - + John Johannesevangeliet - + Acts Apostlagärningarna - + Romans Romarbrevet - + 1 Corinthians Första Korinthierbrevet - + 2 Corinthians Andra Korinthierbrevet - + Galatians Galaterbrevet - + Ephesians Efesierbrevet - + Philippians Filipperbrevet - + Colossians Kolosserbrevet - + 1 Thessalonians Första Thessalonikerbrevet - + 2 Thessalonians Andra Thessalonikerbrevet - + 1 Timothy Första Timotheosbrevet - + 2 Timothy Andra Timotheosbrevet - + Titus Titusbrevet - + Philemon Filemonbrevet - + Hebrews Hebreerbrevet - + James Jakobsbrevet - + 1 Peter Första Petrusbrevet - + 2 Peter Andra Petrusbrevet - + 1 John Första Johannesbrevet - + 2 John Andra Johannesbrevet - + 3 John Tredje Johannesbrevet - + Jude Judasbrevet - + Revelation Uppenbarelseboken - + Judith Judit - + Wisdom Salomos vishet - + Tobit Tobit - + Sirach Jesus Syraks vishet - + Baruch Baruk - + 1 Maccabees Första Mackabeerboken - + 2 Maccabees Andra Mackabeerboken - + 3 Maccabees Tredje Mackabeerboken - + 4 Maccabees Fjärde Mackabeerboken - + Rest of Daniel Tillägg till Daniel - + Rest of Esther Ester enligt den grekiska texten - + Prayer of Manasses Manasses bön - + Letter of Jeremiah Jeremias brev - + Prayer of Azariah Asarjas bön - + Susanna Susanna i badet - + Bel Bel i Babylon - + 1 Esdras Tredje Esra - + 2 Esdras Fjärde Esra - + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. :|v|V|vers|verser;;-|till;;,|och;;slut @@ -663,32 +664,32 @@ Vill du fortsätta ändå? BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. Du måste ange ett namn på bibelöversättningen. - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. Du måste ange copyright för bibeln. Biblar i public domain måste markeras som sådana. - + Bible Exists Bibeln finns redan - + This Bible already exists. Please import a different Bible or first delete the existing one. Bibeln finns redan. Importera en annan bibel eller ta först bort den existerande. - + You need to specify a book name for "%s". Du måste ange ett boknamn för "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. @@ -697,12 +698,12 @@ Siffror kan bara användas i början och måste följas av ett eller flera ickenumeriska tecken. - + Duplicate Book Name Dublettnamn på bok - + The Book Name "%s" has been entered more than once. Boknamnet "%s" har angivits flera gånger. @@ -710,39 +711,39 @@ följas av ett eller flera ickenumeriska tecken. BiblesPlugin.BibleManager - + Scripture Reference Error Felaktig bibelreferens - + Web Bible cannot be used Webb-bibel kan inte användas - + Text Search is not available with Web Bibles. Textsökning är inte tillgänglig för webb-biblar. - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. Du angav inget sökord. Du kan ange flera sökord avskilda med mellanslag för att söka på alla sökord och du kan avskilja sökorden med kommatecken för att söka efter ett av sökorden. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. Det finns inga biblar installerade. Använd guiden för bibelimport och installera en eller flera bibelöversättningar. - + No Bibles Available Inga biblar tillgängliga - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -765,79 +766,79 @@ Bok Kapitel%(verse)sVers%(range)sKapitel%(verse)sVers BiblesPlugin.BiblesTab - + Verse Display Visning av bibeltext - + Only show new chapter numbers Visa bara nummer för nya kapitel - + Bible theme: Bibeltema: - + No Brackets Inga parenteser - + ( And ) ( och ) - + { And } { och } - + [ And ] [ och ] - + Note: Changes do not affect verses already in the service. Observera: Ändringar kommer inte att påverka verser som redan finns i körschemat. - + Display second Bible verses Visa andra bibelns verser - + Custom Scripture References Anpassade bibelreferenser - + Verse Separator: Versavskiljare: - + Range Separator: Intervallavskiljare: - + List Separator: Listavskiljare: - + End Mark: Slutmärke: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -846,7 +847,7 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -855,7 +856,7 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -864,7 +865,7 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. @@ -873,29 +874,29 @@ De måste separeras med ett lodrätt streck "|". Lämna fältet tomt för att använda standardvärdet. - + English Engelska - + Default Bible Language Förvalt bibelspråk - + Book name language in search field, search results and on display: Språk på boknamn i sökfält, sökresultat och vid visning: - + Bible Language Bibelspråk - + Application Language Programmets språk @@ -903,42 +904,42 @@ sökresultat och vid visning: BiblesPlugin.BookNameDialog - + Select Book Name Välj bok - + Current name: Nuvarande namn: - + Corresponding name: Motsvarande namn: - + Show Books From Visa böcker från - + Old Testament Gamla testamentet - + New Testament Nya testamentet - + Apocrypha Apokryferna - + The following book name cannot be matched up internally. Please select the corresponding name from the list. Följande boknamn kan inte kopplas till någon bok. Välj tillhörande namn från listan. @@ -946,7 +947,7 @@ sökresultat och vid visning: BiblesPlugin.BookNameForm - + You need to select a book. Du måste välja en bok. @@ -954,18 +955,18 @@ sökresultat och vid visning: BiblesPlugin.CSVBible - + Importing books... %s Importerar böcker... %s - + Importing verses from %s... Importing verses from <book name>... Importerar verser från %s... - + Importing verses... done. Importerar verser... klart. @@ -973,69 +974,69 @@ sökresultat och vid visning: BiblesPlugin.EditBibleForm - + Bible Editor Bibelredigering - + License Details Licensdetaljer - + Version name: Namn på översättningen: - + Copyright: Copyright: - + Permissions: Tillstånd: - + Default Bible Language Förvalt bibelspråk - + Book name language in search field, search results and on display: Språk på boknamn i sökfält, sökresultat och vid visning: - + Global Settings Globala inställningar - + Bible Language Bibelspråk - + Application Language Programmets språk - + English Engelska - + This is a Web Download Bible. It is not possible to customize the Book Names. Det här är en webb-bibel. Det går inte att anpassa boknamnen. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. För att kunna använda anpassade boknamn måste "Bibelspråk" vara valt under fliken "Metadata" eller, om "Globala inställningar" är valt, på bibelsidan i OpenLP-inställningarna. @@ -1043,38 +1044,38 @@ Det går inte att anpassa boknamnen. BiblesPlugin.HTTPBible - + Registering Bible and loading books... Registrerar bibel och laddar böcker... - + Registering Language... Registrerar språk... - + Importing %s... Importing <book name>... Importerar %s... - + Download Error Fel vid nedladdning - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. Det uppstod problem vid nedladdningen av versurvalet. Kontrollera Internetanslutningen och om problemet återkommer, överväg att rapportera det som en bugg. - + Parse Error Fel vid tolkning - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. Det uppstod problem vid extraherande av vers-urvalet. Om problemet uppstår igen, överväg att rapportera det som en bugg. @@ -1252,17 +1253,17 @@ vid behov, och därför behövs en Internetanslutning. BiblesPlugin.LanguageDialog - + Select Language Välj språk - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. OpenLP kan inte avgöra den här bibelöversättningens språk. Välj språk från listan nedan. - + Language: Språk: @@ -1270,7 +1271,7 @@ vid behov, och därför behövs en Internetanslutning. BiblesPlugin.LanguageForm - + You need to choose a language. Du måste välja ett språk. @@ -1278,92 +1279,92 @@ vid behov, och därför behövs en Internetanslutning. BiblesPlugin.MediaItem - + Quick Enkelt - + Find: Sök efter: - + Book: Bok: - + Chapter: Kapitel: - + Verse: Vers: - + From: Från: - + To: Till: - + Text Search Textsökning - + Second: Alternativ: - + Scripture Reference Bibelreferens - + Toggle to keep or clear the previous results. Växla mellan att behålla eller rensa föregående sökresultat. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? Du kan inte kombinera resultat från sökning i en bibel med resultat från sökning i två biblar. Vill du ta bort dina sökresultat och starta en ny sökning? - + Bible not fully loaded. Bibeln är inte helt laddad. - + Information Information - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. Den alternativa bibelöversättningen innehåller inte alla verser som finns i huvudöversättningen. Endast verser som finns i båda översättningar kommer att visas. %d verser har utelämnats. - + Search Scripture Reference... Sök bibelvers... - + Search Text... Sök text... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. @@ -1375,7 +1376,7 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. Ogiltig filtyp på den valda bibeln. OpenSong-biblar kan vara komprimerade. Du måste packa upp dem före import. @@ -1383,7 +1384,7 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... Importerar %s %s... @@ -1392,12 +1393,12 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... Analyserar kodning (detta kan ta några minuter)... - + Importing %s %s... Importing <book name> <chapter>... Importerar %s %s... @@ -1406,149 +1407,149 @@ För att bibeln ska gå att använda igen måste den importeras på nytt. BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory Välj en backupmapp - + Bible Upgrade Wizard Bibeluppgraderingsguiden - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. Den här guiden hjälper dig att uppgradera dina befintliga biblar från en tidigare version av OpenLP 2. Klicka på Nästa för att starta uppgraderingsprocessen. - + Select Backup Directory Välj backupmapp - + Please select a backup directory for your Bibles Välj en mapp för backup av dina biblar - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - Tidigare utgåvor av OpenLP 2.0 kan inte använda uppgraderade biblar. Nu skapas en backup av dina nuvarande biblar så att du enkelt kan kopiera tillbaks filerna till din OpenLP-datamapp om du skulle behöva återgå till en tidigare utgåva av OpenLP. Instruktioner om hur man återställer finns i vår <a href="http://wiki.openlp.org/faq">FAQ</a>. + Tidigare utgåvor av OpenLP 2.0 kan inte använda uppgraderade biblar. Nu skapas en backup av dina nuvarande biblar så att du enkelt kan kopiera tillbaks filerna till din OpenLP-datakatalog om du skulle behöva återgå till en tidigare utgåva av OpenLP. Instruktioner om hur man återställer finns i vår <a href="http://wiki.openlp.org/faq">FAQ</a>. - + Please select a backup location for your Bibles. Välj en mapp för backup av dina biblar. - + Backup Directory: Backupmapp: - + There is no need to backup my Bibles Det är inte nödvändigt med backup av mina biblar - + Select Bibles Välj biblar - + Please select the Bibles to upgrade Välj biblar att uppgradera - + Upgrading Uppgraderar - + Please wait while your Bibles are upgraded. Vänta medan biblarna uppgraderas. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. Backuptagningen lyckades inte. För att kunna göra backup av dina biblar krävs skrivrättigheter i den givna mappen. - + Upgrading Bible %s of %s: "%s" Failed Uppgraderar bibel %s av %s: "%s" Misslyckades - + Upgrading Bible %s of %s: "%s" Upgrading ... Uppgraderar bibel %s av %s: "%s" Uppgraderar ... - + Download Error Fel vid nedladdning - + To upgrade your Web Bibles an Internet connection is required. För att uppgradera dina webb-biblar krävs en Internetanslutning. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... Uppgraderar bibel %s av %s: "%s" Uppgraderar %s ... - + Upgrading Bible %s of %s: "%s" Complete Uppgraderar bibel %s av %s: "%s" Färdig - + , %s failed , %s misslyckades - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. Uppgradering av biblar: %s lyckades%s Observera att verser från webb-biblar kommer att laddas ner vid behov, och därför behövs en Internetanslutning. - + Upgrading Bible(s): %s successful%s Uppgradering av biblar: %s lyckades%s - + Upgrade failed. Uppgradering misslyckades. - + You need to specify a backup directory for your Bibles. Du måste välja en backupmapp för dina biblar. - + Starting upgrade... Startar uppgradering... - + There are no Bibles that need to be upgraded. Det finns inga biblar som behöver uppgraderas. @@ -1556,65 +1557,65 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. <strong>Modul för anpassade sidor</strong><br />Modulen för anpassade sidor ger möjlighet att skapa anpassade sidor med text som kan visas på skärmen på samma sätt som sånger. Modulen ger större frihet jämfört med sångmodulen. - + Custom Slide name singular Anpassad sida - + Custom Slides name plural Anpassad sida - + Custom Slides container title Anpassade sidor - + Load a new custom slide. Ladda en ny uppsättning sidor. - + Import a custom slide. Importera en uppsättning sidor. - + Add a new custom slide. Lägg till en ny uppsättning sidor. - + Edit the selected custom slide. Redigera den valda uppsättningen sidor. - + Delete the selected custom slide. Ta bort den valda uppsättningen sidor. - + Preview the selected custom slide. Förhandsgranska den valda uppsättningen sidor. - + Send the selected custom slide live. Visa den valda uppsättningen sidor live. - + Add the selected custom slide to the service. Lägg till den valda uppsättningen sidor i körschemat. @@ -1622,12 +1623,12 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.CustomTab - + Custom Display Anpassad visning - + Display footer Visa sidfot @@ -1635,62 +1636,62 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.EditCustomForm - + Edit Custom Slides Redigera anpassade diabilder - + &Title: &Titel: - + Add a new slide at bottom. Lägg till en ny diabild sist. - + Edit the selected slide. Redigera vald diabild. - + Edit all the slides at once. Redigera alla diabilder på en gång. - + Split a slide into two by inserting a slide splitter. Dela diabilden i två genom att lägga till en diabild delare. - + The&me: Te&ma: - + &Credits: &Erkännande: - + You need to type in a title. Du måste ange en titel. - + You need to add at least one slide Du måste lägga till minst en diabild - + Ed&it All Red&igera alla - + Insert Slide Infoga sida @@ -1698,7 +1699,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.EditVerseForm - + Edit Slide Redigera bild @@ -1706,68 +1707,71 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - Är du säker på att du vill ta bort den valda bilden?Är du säker på att du vill ta bort de %n valda bilderna? + + Är du säker på att du vill ta bort den valda bilden? + Är du säker på att du vill ta bort de %n valda bilderna? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. <strong>Bildmodul</strong><br />Bildmodulen erbjuder visning av bilder.<br />En av funktionerna i modulen är möjligheten att gruppera bilder i körschemat, vilket gör visning av flera bilder enklare. Modulen kan även använda OpenLP:s funktion för "tidsstyrd bildväxling" för att skapa ett bildspel som rullar automatiskt. Dessutom kan bilder från modulen användas för att ersätta det aktuella temats bakgrund, så att textbaserade sidor som till exempel sånger visas med den valda bilden som bakgrund i stället för temats bakgrund. - + Image name singular Bild - + Images name plural Bilder - + Images container title Bilder - + Load a new image. Ladda en ny bild. - + Add a new image. Lägg till en ny bild. - + Edit the selected image. Redigera den valda bilden. - + Delete the selected image. Ta bort den valda bilden. - + Preview the selected image. Förhandsgranska den valda bilden. - + Send the selected image live. Visa den valda bilden live. - + Add the selected image to the service. Lägg till den valda bilden i körschemat. @@ -1775,7 +1779,7 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där ImagePlugin.ExceptionDialog - + Select Attachment Välj bilaga @@ -1783,44 +1787,44 @@ Observera att verser från webb-biblar kommer att laddas ner vid behov, och där ImagePlugin.MediaItem - + Select Image(s) Välj bild(er) - + You must select an image to delete. Du måste välja en bild som skall tas bort. - + You must select an image to replace the background with. Du måste välja en bild att ersätta bakgrundsbilden med. - + Missing Image(s) Bild(er) saknas - + The following image(s) no longer exist: %s Följande bild(er) finns inte längre: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? Följande bild(er) finns inte längre: %s Vill du lägga till dom andra bilderna ändå? - + There was a problem replacing your background, the image file "%s" no longer exists. Det uppstod ett problem med att ersätta din bakgrund, bildfilen "%s" finns inte längre. - + There was no display item to amend. Det fanns ingen visningspost att ändra. @@ -1828,17 +1832,17 @@ Vill du lägga till dom andra bilderna ändå? ImagesPlugin.ImageTab - + Background Color Bakgrundsfärg - + Default Color: Standardfärg: - + Visible background for images with aspect ratio different to screen. Synlig bakgrund för bilder med annat bildformat än skärmen. @@ -1846,60 +1850,60 @@ Vill du lägga till dom andra bilderna ändå? MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. <strong>Mediamodul</strong><br />Mediamodulen gör det möjligt att spela upp ljud och video. - + Media name singular Media - + Media name plural Media - + Media container title Media - + Load new media. Ladda en ny mediafil. - + Add new media. Lägg till media. - + Edit the selected media. Redigera den valda mediaposten. - + Delete the selected media. Ta bort den valda mediaposten. - + Preview the selected media. Förhandsgranska den valda mediaposten. - + Send the selected media live. Visa den valda mediaposten live. - + Add the selected media to the service. Lägg till den valda mediaposten i körschemat. @@ -1907,57 +1911,57 @@ Vill du lägga till dom andra bilderna ändå? MediaPlugin.MediaItem - + Select Media Välj media - + You must select a media file to delete. Du måste välja en mediafil för borttagning. - + You must select a media file to replace the background with. Du måste välja en mediafil att ersätta bakgrunden med. - + There was a problem replacing your background, the media file "%s" no longer exists. Det uppstod problem när bakgrunden skulle ersättas: mediafilen "%s" finns inte längre. - + Missing Media File Mediafil saknas - + The file %s no longer exists. Filen %s finns inte längre. - + Videos (%s);;Audio (%s);;%s (*) Videor (%s);;Ljud (%s);;%s (*) - + There was no display item to amend. Det fanns ingen visningspost att ändra. - + Unsupported File Ej stödd fil - + Automatic Automatiskt - + Use Player: Använd uppspelare: @@ -1965,22 +1969,22 @@ Vill du lägga till dom andra bilderna ändå? MediaPlugin.MediaTab - + Available Media Players Tillgängliga mediaspelare - + %s (unavailable) %s (ej tillgänglig) - + Player Order Spelarordning - + Allow media player to be overridden Tillåt åsidosättning av vald mediaspelare @@ -1988,17 +1992,17 @@ Vill du lägga till dom andra bilderna ändå? OpenLP - + Image Files Bildfiler - + Information Information - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? @@ -2010,37 +2014,61 @@ Ska OpenLP uppgradera nu? OpenLP.AboutForm - + Credits Lista över medverkande - + License Licens - - Contribute - Bidra - - - + build %s build %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. Det här programmet är fri mjukvara; du får sprida den vidare och/eller ändra i den under villkoren i GNU General Public License så som publicerade av Free Software Foundation; version 2 av licensen. - + This program 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 below for more details. Det här programmet ges ut i hopp om att det kan vara användbart, men UTAN NÅGON GARANTI; inte ens någon underförstådd garanti vid köp eller lämplighet för ett särskilt ändamål. Se nedan för mer detaljer. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + Copyright © 2004-2012 %s +Del-copyright © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - Öppen källkods-program för sångvisning + +OpenLP är fri mjukvara för kyrkpresentation eller sångvisning, gjord för att visa sångtexter, bibeltexter, videor, bilder och även presentationer (om Impress, PowerPoint eller PowerPoint Viewer är installerat) i gudstjänster med hjälp av dator och projektor. + +Läs mer om OpenLP: http://openlp.org/ + +OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mjukvara utvecklad, klicka gärna på knappen nedan för att se hur du kan bidra. + + + + Volunteer + Bidra + + + Project Lead %s @@ -2059,12 +2087,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2073,7 +2109,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2081,13 +2117,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2114,18 +2152,26 @@ Med hjälp från Testare %s -Packetering +Paketering %s Översättare Afrikaans (af) %s + Tjeckiska (cs) + %s + Danska (da) + %s Tyska (de) %s + Grekiska (el) + %s Engelska, brittisk (en_GB) %s Engelska, sydafrikansk (en_ZA) %s + Spanska (es) + %s Estniska (et) %s Franska (fr) @@ -2142,13 +2188,15 @@ Packetering %s Ryska (ru) %s + Svenska (sv) + %s Dokumentation %s Byggt med Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2164,207 +2212,183 @@ Slutligt tack Vi ger den här mjukvaran till dig fritt, eftersom han har gjort oss fria. - - - OpenLP <version><revision> - Open Source Lyrics Projection - -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - OpenLP <version><revision> - Öppen källkods-program för sångvisning - -OpenLP är fri mjukvara för kyrkpresentation eller sångvisning, gjord för att visa sångtexter, bibelverser, video, bilder och även presentationer (om Impress, PowerPoint eller PowerPoint Viewer är installerat) i gudstjänster med hjälp av dator och projektor. - -Läs mer om OpenLP: http://openlp.org/ - -OpenLP utvecklas och underhålls av frivilliga. Om du vill se mer fri kristen mjukvara utvecklad, klicka gärna på knappen nedan för att se hur du kan bidra. - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - Copyright © 2004-2012 %s -Del-copyright © 2004-2012 %s - OpenLP.AdvancedTab - + UI Settings Inställningar för användargränssnitt - + Number of recent files to display: Antal tidigare körscheman att visa: - + Remember active media manager tab on startup Kom ihåg aktiv mediaflik vid start - + Double-click to send items straight to live Dubbelklicka för att visa poster live - + Expand new service items on creation Expandera nya poster i körschemat vid skapandet - + Enable application exit confirmation Bekräfta för att avsluta programmet - + Mouse Cursor Muspekare - + Hide mouse cursor when over display window Dölj muspekaren över visningsfönstret - + Default Image Standardbild - + Background color: Bakgrundsfärg: - + Image file: Bildfil: - + Open File Öppna fil - + Advanced Avancerat - + Preview items when clicked in Media Manager Förhandsgranska poster vid klick i mediahanteraren - + Click to select a color. Klicka för att välja en färg. - + Browse for an image file to display. Välj en bildfil att visa. - + Revert to the default OpenLP logo. Återställ till OpenLP:s standardlogotyp. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. Körschema %Y-%m-%d %H-%M - + Default Service Name Förvalt namn på körschema - + Enable default service name Aktivera förvalt namn på körschema - + Date and Time: Datum och tid: - + Monday Måndag - + Tuesday Tisdag - + Wednesday Onsdag - + Thurdsday Torsdag - + Friday Fredag - + Saturday Lördag - + Sunday Söndag - + Now Nu - + Time when usual service starts. Tid när schemat vanligen börjar. - + Name: Namn: - + Consult the OpenLP manual for usage. Läs i OpenLP-manualen för information om funktionen. - + Revert to the default service name "%s". Återställ till körschemats standardnamn "%s". - + Example: Exempel: - + X11 X11 @@ -2374,82 +2398,82 @@ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for Kringgå X11:s fönsterhanterare - + Syntax error. Syntaxfel. - + Data Location Datalagring - + Current path: Nuvarande sökväg: - + Custom path: Anpassad sökväg: - + Browse for new data file location. Bläddra efter ny plats för datalagring. - + Set the data location to the default. Återställ plats för datalagring till standardinställningen. - + Cancel Avbryt - + Cancel OpenLP data directory location change. Avbryt ändring av plats för OpenLP:s datalagring. - + Copy data to new location. Kopiera data till ny plats. - + Copy the OpenLP data files to the new location. Kopiera OpenLP:s data till den nya platsen. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. <strong>VARNING:</strong> Den nya datakatalogen innehåller OpenLP-datafiler. Dessa filer kommer att ersättas vid kopieringen. - + Data Directory Error Datakatalogfel - + Select Data Directory Location Välj plats för datakatalog - + Confirm Data Directory Change Bekräfta ändring av datakatalog - + Reset Data Directory Återställ datakatalog - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. @@ -2458,47 +2482,98 @@ This location will be used after OpenLP is closed. Den nya platsen kommer att användas efter att OpenLP har avslutats. - + Overwrite Existing Data Skriv över befintlig data + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP:s datakatalog hittades inte + +%s + +Datakatalogen har tidigare ändrats från OpenLP:s förvalda plats. Om den nya platsen var på ett portabelt lagringsmedium måste det finnas tillgängligt. + +Klicka "Nej" för att avbryta starten av OpenLP så att du kan lösa problemet. + +Klicka "Ja" för att återställa datakatalogen till förvald plats. + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + Är du säker på att du vill ändra plats för OpenLP:s datakatalog till: + +%s + +Datakatalogen kommer att ändras när OpenLP avslutas. + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + VARNING: + +Platsen du valde + +%s + +verkar innehålla OpenLP-data. Vill du ersätta de filerna med nuvarande data? + OpenLP.ExceptionDialog - + Error Occurred Fel uppstod - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. Hoppsan! OpenLP stötte på ett problem som inte hanterades. Texten i rutan nedan innehåller information som kan vara användbar för utvecklarna av OpenLP, så e-posta den gärna till bugs@openlp.org, tillsammans med en detaljerad beskrivning av vad du gjorde när problemet uppstod. - + Send E-Mail Skicka e-post - + Save to File Spara till fil - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) Skriv gärna en beskrivning av vad du gjorde för att få det här felet (minst 20 tecken) - + Attach File Lägg till fil - + Description characters to enter : %s Beskrivningstecken att ange: %s @@ -2506,24 +2581,24 @@ Den nya platsen kommer att användas efter att OpenLP har avslutats. OpenLP.ExceptionForm - + Platform: %s Plattform: %s - + Save Crash Report Spara kraschrapport - + Text files (*.txt *.log *.text) Textfiler (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2554,7 +2629,7 @@ Version: %s - + *OpenLP Bug Report* Version: %s @@ -2589,17 +2664,17 @@ Version: %s OpenLP.FileRenameForm - + File Rename Byt namn på fil - + New File Name: Nytt filnamn: - + File Copy Kopiera fil @@ -2607,17 +2682,17 @@ Version: %s OpenLP.FirstTimeLanguageForm - + Select Translation Välj språk - + Choose the translation you'd like to use in OpenLP. Välj språk som du vill använda i OpenLP. - + Translation: Språk: @@ -2625,192 +2700,192 @@ Version: %s OpenLP.FirstTimeWizard - + Songs Sånger - + First Time Wizard Kom igång-guiden - + Welcome to the First Time Wizard Välkommen till kom igång-guiden - + Activate required Plugins Aktivera önskade moduler - + Select the Plugins you wish to use. Välj de moduler du vill använda. - + Bible Bibel - + Images Bilder - + Presentations Presentationer - + Media (Audio and Video) Media (ljud och video) - + Allow remote access Tillåt fjärråtkomst - + Monitor Song Usage Loggning av sånganvändning - + Allow Alerts Tillåt meddelanden - + Default Settings Standardinställningar - + Downloading %s... Hämtar %s... - + Download complete. Click the finish button to start OpenLP. Nedladdning färdig. Klicka på Slutför för att starta OpenLP. - + Enabling selected plugins... Aktivera valda moduler... - + No Internet Connection Ingen Internetanslutning - + Unable to detect an Internet connection. Lyckades inte ansluta till Internet. - + Sample Songs Exempelsånger - + Select and download public domain songs. Välj och ladda ner sånger som är i public domain. - + Sample Bibles Exempelbiblar - + Select and download free Bibles. Välj och ladda ner fria bibelöversättningar. - + Sample Themes Exempelteman - + Select and download sample themes. Välj och ladda ner exempelteman. - + Set up default settings to be used by OpenLP. Gör standardinställningar för OpenLP. - + Default output display: Standardskärm för visning: - + Select default theme: Välj standardtema: - + Starting configuration process... Startar konfigurationsprocess... - + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. Den här guiden hjälper dig att ställa in OpenLP före första användningen. Klicka på Nästa för att starta. - + Setting Up And Downloading Ställer in och laddar ner - + Please wait while OpenLP is set up and your data is downloaded. Vänta medan OpenLP ställs in och din data laddas ner. - + Setting Up Ställer in - + Click the finish button to start OpenLP. Klicka på Slutför för att starta OpenLP. - + Download complete. Click the finish button to return to OpenLP. Nedladdning färdig. Klicka på Slutför för att återvända till OpenLP. - + Click the finish button to return to OpenLP. Klicka på Slutför för att återvända till OpenLP. - + Custom Slides Anpassade sidor - + Finish Slutför - + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. @@ -2819,7 +2894,7 @@ To re-run the First Time Wizard and import this sample data at a later time, che För att köra Kom igång-guiden igen och importera exempeldatan senare, kontrollera din Internetanslutning och starta om den här guiden genom att välja "Verktyg/Kör kom igång-guiden" från OpenLP. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. @@ -2831,37 +2906,37 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTagDialog - + Configure Formatting Tags Konfigurera format-taggar - + Edit Selection Redigera val - + Save Spara - + Description Beskrivning - + Tag Tagg - + Start HTML Start-HTML - + End HTML Slut-HTML @@ -2869,32 +2944,32 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTagForm - + Update Error Fel vid uppdatering - + Tag "n" already defined. Taggen "n" finns redan. - + New Tag Ny tagg - + <HTML here> <HTML här> - + </and here> </och här> - + Tag %s already defined. Taggen %s finns redan. @@ -2902,82 +2977,82 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.FormattingTags - + Red Röd - + Black Svart - + Blue Blå - + Yellow Gul - + Green Grön - + Pink Rosa - + Orange Orange - + Purple Lila - + White Vit - + Superscript Upphöjt - + Subscript Nedsänkt - + Paragraph Stycke - + Bold Fet - + Italics Kursiv - + Underline Understruken - + Break Radbrytning @@ -2985,122 +3060,122 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.GeneralTab - + General Allmänt - + Monitors Skärmar - + Select monitor for output display: Välj skärm för bildvisning: - + Display if a single screen Visa även på enkel skärm - + Application Startup Programstart - + Show blank screen warning Visa varning vid tom skärm - + Automatically open the last service Öppna det senaste körschemat automatiskt - + Show the splash screen Visa startbilden - + Application Settings Programinställningar - + Prompt to save before starting a new service Fråga om att spara innan ett nytt körschema skapas - + Automatically preview next item in service Förhandsgranska nästa post i körschemat automatiskt - + sec sekunder - + CCLI Details CCLI-detaljer - + SongSelect username: SongSelect användarnamn: - + SongSelect password: SongSelect lösenord: - + X X - + Y Y - + Height Höjd - + Width Bredd - + Check for updates to OpenLP Sök efter uppdateringar till OpenLP - + Unblank display when adding new live item Lägg ut bilden direkt när en ny live-bild läggs till - + Timed slide interval: Tidsstyrd bildväxling: - + Background Audio Bakgrundsljud - + Start background audio paused Starta bakgrundsljud pausat @@ -3110,12 +3185,12 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna Bildväxlingsgräns - + Override display position: Manuell skärmposition: - + Repeat track list Repetera spellistan @@ -3143,12 +3218,12 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.LanguageManager - + Language Språk - + Please restart OpenLP to use your new language setting. Vänligen starta om OpenLP för att aktivera dina nya språkinställningar. @@ -3156,7 +3231,7 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.MainDisplay - + OpenLP Display OpenLP-visning @@ -3164,287 +3239,287 @@ För att avbryta Kom igång-guiden helt (och inte starta OpenLP), klicka på kna OpenLP.MainWindow - + &File &Arkiv - + &Import &Importera - + &Export &Exportera - + &View &Visa - + M&ode &Läge - + &Tools &Verktyg - + &Settings &Inställningar - + &Language &Språk - + &Help &Hjälp - + Media Manager Mediahanterare - + Service Manager Körschema - + Theme Manager Temahanterare - + &New &Nytt - + &Open &Öppna - + Open an existing service. Öppna ett befintligt körschema. - + &Save &Spara - + Save the current service to disk. Spara det nuvarande körschemat till disk. - + Save &As... Spara s&om... - + Save Service As Spara körschema som - + Save the current service under a new name. Spara det nuvarande körschemat under ett nytt namn. - + E&xit A&vsluta - + Quit OpenLP Avsluta OpenLP - + &Theme &Tema - + &Configure OpenLP... &Konfigurera OpenLP... - + &Media Manager &Mediahanterare - + Toggle Media Manager Växla mediahanterare - + Toggle the visibility of the media manager. Växla visning av mediahanteraren. - + &Theme Manager &Temahanterare - + Toggle Theme Manager Växla temahanteraren - + Toggle the visibility of the theme manager. Växla visning av temahanteraren. - + &Service Manager &Körschema - + Toggle Service Manager Växla körschema - + Toggle the visibility of the service manager. Växla visning av körschemat. - + &Preview Panel &Förhandsgranskningpanel - + Toggle Preview Panel Växla förhandsgranskning - + Toggle the visibility of the preview panel. Växla visning av förhandsgranskning. - + &Live Panel Li&ve - + Toggle Live Panel Växla live-rutan - + Toggle the visibility of the live panel. Växla visning av live-rutan. - + &Plugin List &Modullista - + List the Plugins Lista modulerna - + &User Guide &Bruksanvisning - + &About &Om - + More information about OpenLP Mer information om OpenLP - + &Online Help &Hjälp online - + &Web Site &Webbplats - + Use the system language, if available. Använd systemspråket om möjligt. - + Set the interface language to %s Sätt användargränssnittets språk till %s - + Add &Tool... Lägg till &verktyg... - + Add an application to the list of tools. Lägg till en applikation i verktygslistan. - + &Default &Standard - + Set the view mode back to the default. Återställ visningslayouten till standardinställningen. - + &Setup &Förberedelse - + Set the view mode to Setup. Ställ in visningslayouten förberedelseläge. - + &Live &Live - + Set the view mode to Live. Ställ in visningslayouten till live-läge. - + Version %s of OpenLP is now available for download (you are currently running version %s). You can download the latest version from http://openlp.org/. @@ -3453,108 +3528,108 @@ You can download the latest version from http://openlp.org/. Du kan ladda ner den senaste versionen från http://openlp.org/. - + OpenLP Version Updated Ny version av OpenLP - + OpenLP Main Display Blanked OpenLPs huvudbild släckt - + The Main Display has been blanked out Huvudbilden har släckts - + Default Theme: %s Standardtema: %s - + English Please add the name of your language here Svenska - + Configure &Shortcuts... Konfigurera &genvägar... - + Close OpenLP Avsluta OpenLP - + Are you sure you want to close OpenLP? Är du säker på att du vill avsluta OpenLP? - + Open &Data Folder... - Öppna &datamapp... + Öppna &datakatalog... - + Open the folder where songs, bibles and other data resides. Öppna mappen där sånger, biblar och annan data lagras. - + &Autodetect Detektera &automatiskt - + Update Theme Images Uppdatera temabilder - + Update the preview images for all themes. Uppdatera förhandsgranskningsbilder för alla teman. - + Print the current service. Skriv ut den nuvarande körschemat. - + &Recent Files Senaste &körscheman - + L&ock Panels L&ås paneler - + Prevent the panels being moved. Förhindra att panelerna flyttas. - + Re-run First Time Wizard Kör kom igång-guiden - + Re-run the First Time Wizard, importing songs, Bibles and themes. Kör kom igång-guiden och importera sånger, biblar och teman. - + Re-run First Time Wizard? Kör kom igång-guiden? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. @@ -3563,43 +3638,43 @@ Re-running this wizard may make changes to your current OpenLP configuration and Om du kör den här guiden kan din nuvarande konfiguration av OpenLP komma att ändras, sånger eventuellt läggas till din befintliga sånglista, och standardtemat bytas. - + Clear List Clear List of recent files Rensa listan - + Clear the list of recent files. Rensa listan med senaste körscheman. - + Configure &Formatting Tags... Konfigurera &format-taggar... - + Export OpenLP settings to a specified *.config file Exportera OpenLP-inställningar till en given *.config-fil - + Settings Inställningar - + Import OpenLP settings from a specified *.config file previously exported on this or another machine Importera OpenLP-inställningar från en given *.config-fil som tidigare har exporterats på den här datorn eller någon annan - + Import settings? Importera inställningar? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. @@ -3612,50 +3687,77 @@ Om du importerar inställningar görs ändringar i din nuvarande OpenLP-konfigur Att importera inställningar kan leda till oväntade beteenden eller att OpenLP avslutas onormalt. - + Open File Öppna fil - + OpenLP Export Settings Files (*.conf) OpenLP-inställningsfiler (*.conf) - + Import settings Importera inställningar - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. OpenLP kommer nu att avslutas. Importerade inställningar kommer att tillämpas nästa gång du startar OpenLP. - + Export Settings File Exportera inställningsfil - + OpenLP Export Settings File (*.conf) OpenLP-inställningsfiler (*.conf) - + New Data Directory Error Ny datakatalog-fel + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + Filen du valde verkar vara en giltig OpenLP-konfigurationsfil. + +Delen [%s] är inte giltig + +Processen har avbrutits och inga ändringar gjordes. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + Kopierar OpenLP-data till ny plats för datakatalogen - %s - Vänta tills kopieringen är avslutad + + + + OpenLP Data directory copy failed + +%s + Kopiering av OpenLP:s datakatalog misslyckades + +%s + OpenLP.Manager - + Database Error Databasfel - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s @@ -3664,7 +3766,7 @@ Database: %s Databas: %s - + OpenLP cannot load your database. Database: %s @@ -3676,74 +3778,74 @@ Databas: %s OpenLP.MediaManagerItem - + No Items Selected Inga poster valda - + &Add to selected Service Item &Lägg till i vald post i körschemat - + You must select one or more items to preview. Du måste välja en eller flera poster att förhandsgranska. - + You must select one or more items to send live. Du måste välja en eller flera poster att visa live. - + You must select one or more items. Du måste välja en eller flera poster. - + You must select an existing service item to add to. Du måste välja en befintlig post i körschemat att lägga till i. - + Invalid Service Item Ogiltig körschemapost - + You must select a %s service item. Du måste välja en post av typen %s i körschemat. - + You must select one or more items to add. Du måste välja en eller flera poster att lägga till. - + No Search Results Inga sökresultat - + Invalid File Type Ogiltig filtyp - + Invalid File %s. Suffix not supported Ogiltig fil %s. Filändelsen stöds ej - + &Clone &Klona - + Duplicate files were found on import and were ignored. Dubblettfiler hittades vid importen och ignorerades. @@ -3751,12 +3853,12 @@ Filändelsen stöds ej OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. <lyrics>-tagg saknas. - + <verse> tag is missing. <verse>-tagg saknas. @@ -3764,42 +3866,42 @@ Filändelsen stöds ej OpenLP.PluginForm - + Plugin List Modullista - + Plugin Details Moduldetaljer - + Status: Status: - + Active Aktiv - + Inactive Inaktiv - + %s (Inactive) %s (Inaktiv) - + %s (Active) %s (Aktiv) - + %s (Disabled) %s (Ej valbar) @@ -3807,12 +3909,12 @@ Filändelsen stöds ej OpenLP.PrintServiceDialog - + Fit Page Passa sidan - + Fit Width Passa bredden @@ -3820,77 +3922,77 @@ Filändelsen stöds ej OpenLP.PrintServiceForm - + Options Alternativ - + Copy Kopiera - + Copy as HTML Kopiera som HTML - + Zoom In Zooma in - + Zoom Out Zooma ut - + Zoom Original Återställ zoom - + Other Options Övriga alternativ - + Include slide text if available Inkludera sidtext om tillgänglig - + Include service item notes Inkludera anteckningar - + Include play length of media items Inkludera spellängd för mediaposter - + Add page break before each text item Lägg till sidbrytning före varje textpost - + Service Sheet Körschema - + Print Skriv ut - + Title: Titel: - + Custom Footer Text: Anpassad sidfot: @@ -3898,12 +4000,12 @@ Filändelsen stöds ej OpenLP.ScreenList - + Screen Skärm - + primary primär @@ -3911,12 +4013,12 @@ Filändelsen stöds ej OpenLP.ServiceItem - + <strong>Start</strong>: %s <strong>Start</strong>: %s - + <strong>Length</strong>: %s <strong>Längd</strong>: %s @@ -3924,7 +4026,7 @@ Filändelsen stöds ej OpenLP.ServiceItemEditForm - + Reorder Service Item Arrangera om körschemapost @@ -3932,287 +4034,296 @@ Filändelsen stöds ej OpenLP.ServiceManager - + Move to &top Lägg &först - + Move item to the top of the service. Lägg posten först i körschemat. - + Move &up Flytta &upp - + Move item up one position in the service. Flytta upp posten ett steg i körschemat. - + Move &down Flytta &ner - + Move item down one position in the service. Flytta ner posten ett steg i körschemat. - + Move to &bottom Lägg &sist - + Move item to the end of the service. Lägg posten sist i körschemat. - + &Delete From Service &Ta bort från körschemat - + Delete the selected item from the service. Ta bort den valda posten från körschemat. - + &Add New Item &Lägg till ny post - + &Add to Selected Item Lägg till i &vald post - + &Edit Item &Redigera post - + &Reorder Item Arrangera &om post - + &Notes &Anteckningar - + &Change Item Theme &Byt postens tema - + OpenLP Service Files (*.osz) OpenLP körschemafiler (*.osz) - + File is not a valid service. The content encoding is not UTF-8. Filen är inte ett giltigt körschema. Innehållets teckenkodning är inte UTF-8. - + File is not a valid service. Filen är inte ett giltigt körschema. - + Missing Display Handler Visningsmodul saknas - + Your item cannot be displayed as there is no handler to display it Posten kan inte visas eftersom det inte finns någon visningsmodul för att visa den - + Your item cannot be displayed as the plugin required to display it is missing or inactive Posten kan inte visas eftersom modulen som krävs för att visa den saknas eller är inaktiv - + &Expand all &Expandera alla - + Expand all the service items. Expandera alla poster i körschemat. - + &Collapse all &Fäll ihop alla - + Collapse all the service items. Fäll ihop alla poster i körschemat. - + Open File Öppna fil - + Moves the selection down the window. Flyttar urvalet neråt i fönstret. - + Move up Flytta upp - + Moves the selection up the window. Flyttar urvalet uppåt i fönstret. - + Go Live Lägg ut live-bilden - + Send the selected item to Live. Visa den valda posten live. - + &Start Time &Starttid - + Show &Preview &Förhandsgranska - + Modified Service Körschemat ändrat - + The current service has been modified. Would you like to save this service? Det nuvarande körschemat har ändrats. Vill du spara körschemat? - + Custom Service Notes: Egna körschemaanteckningar: - + Notes: Anteckningar: - + Playing time: Speltid: - + Untitled Service Nytt körschema - + File could not be opened because it is corrupt. Filen kunde inte öppnas eftersom den är korrupt. - + Empty File Tom fil - + This service file does not contain any data. Det här körschemat innehåller inte någon data. - + Corrupt File Korrupt fil - + Load an existing service. Ladda ett befintligt körschema. - + Save this service. Spara körschemat. - + Select a theme for the service. Välj ett tema för körschemat. - + This file is either corrupt or it is not an OpenLP 2.0 service file. Filen är antingen korrupt eller inte en OpenLP 2.0 körschemafil. - - Service File Missing - Körschemafil saknas - - - + Slide theme Sidtema - + Notes Anteckningar - + Edit Redigera - + Service copy only Endast kopian i körschemat - + Error Saving File Fel vid filsparande - + There was an error saving your file. Det inträffade ett fel när filen skulle sparas. + + + Service File(s) Missing + Fil(er) i körschemat saknas + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + Följande fil(er) i körschemat saknas:⏎ <byte value="x9"/>%s⏎ ⏎ +Filerna kommer att tas bort om du fortsätter att spara. + OpenLP.ServiceNoteForm - + Service Item Notes Körschemaanteckningar @@ -4220,7 +4331,7 @@ Innehållets teckenkodning är inte UTF-8. OpenLP.SettingsForm - + Configure OpenLP Konfigurera OpenLP @@ -4228,67 +4339,67 @@ Innehållets teckenkodning är inte UTF-8. OpenLP.ShortcutListDialog - + Action Åtgärd - + Shortcut Genväg - + Duplicate Shortcut Dubblett - + The shortcut "%s" is already assigned to another action, please use a different shortcut. Genvägen "%s" är redan kopplad till en annan åtgärd; välj en annan genväg. - + Alternate Alternativ - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. Välj en åtgärd och använd knapparna nedan för att skapa en ny primär eller alternativ genväg. - + Default Standard - + Custom Anpassad - + Capture shortcut. Skapa genväg. - + Restore the default shortcut of this action. Återställ till standardgenvägen för den här åtgärden. - + Restore Default Shortcuts Återställ till standardgenvägar - + Do you want to restore all shortcuts to their defaults? Vill du återställa alla genvägar till standardvärdena? - + Configure Shortcuts Konfigurera genvägar @@ -4296,172 +4407,172 @@ Innehållets teckenkodning är inte UTF-8. OpenLP.SlideController - + Hide Dölj - + Go To Gå till - + Blank Screen Släck skärm - + Blank to Theme Släck till tema - + Show Desktop Visa skrivbord - + Previous Service Föregående post - + Next Service Nästa post - + Escape Item Avbryt post - + Move to previous. Flytta till föregående. - + Move to next. Flytta till nästa. - + Play Slides Sidvisning - + Delay between slides in seconds. Tid i sekunder mellan sidorna. - + Move to live. Visa live. - + Add to Service. Lägg till i körschema. - + Edit and reload song preview. Redigera och uppdatera förhandsvisning. - + Start playing media. Starta uppspelning. - + Pause audio. Pausa ljud. - + Pause playing media. Pausa spelande media. - + Stop playing media. Stoppa spelande media. - + Video position. Videoposition. - + Audio Volume. Ljudvolym. - + Go to "Verse" Gå till "Vers" - + Go to "Chorus" Gå till "Refräng" - + Go to "Bridge" Gå till "Stick" - + Go to "Pre-Chorus" Gå till "Brygga" - + Go to "Intro" Gå till "Intro" - + Go to "Ending" Gå till "Avslut" - + Go to "Other" Gå till "Övrigt" - + Previous Slide Föregående bild - + Next Slide Nästa bild - + Pause Audio Pausa ljud - + Background Audio Bakgrundsljud - + Go to next audio track. Gå till nästa ljudspår - + Tracks Spår @@ -4469,17 +4580,17 @@ Innehållets teckenkodning är inte UTF-8. OpenLP.SpellTextEdit - + Spelling Suggestions Stavningsförslag - + Formatting Tags Format-taggar - + Language: Språk: @@ -4487,615 +4598,627 @@ Innehållets teckenkodning är inte UTF-8. OpenLP.StartTimeForm - + Hours: Timmar: - + Minutes: Minuter: - + Seconds: Sekunder: - + Item Start and Finish Time Start- och sluttid - + Start Start - + Finish Slut - + Length Längd - + Time Validation Error Tidvalideringsfel - + Finish time is set after the end of the media item Sluttiden är satt till efter mediapostens slut - + Start time is after the finish time of the media item Starttiden är efter mediapostens slut - + Theme Layout Temalayout - + The blue box shows the main area. Den blåa rutan visar huvudytan. - + The red box shows the footer. Den röda rutan visar sidfoten. - - OpenLP.ThemeForm - - - Select Image - Välj bild - - - - Theme Name Missing - Temanamn saknas - - - - There is no name for this theme. Please enter one. - Det finns inget namn på temat. Var vänlig att ange ett. - - - - Theme Name Invalid - Ogiltigt temanamn - - - - Invalid theme name. Please enter one. - Ogiltigt temanamn. Ange ett giltigt namn. - - - - (approximately %d lines per slide) - (ungefär %d rader per sida) - - OpenLP.ThemeManager - + Create a new theme. Skapa ett nytt tema. - + Edit Theme Redigera tema - + Edit a theme. Redigera ett tema. - + Delete Theme Ta bort tema - + Delete a theme. Ta bort ett tema. - + Import Theme Importera tema - + Import a theme. Importera tema. - + Export Theme Exportera tema - + Export a theme. Exportera tema. - + &Edit Theme &Redigera tema - + &Delete Theme &Ta bort tema - + Set As &Global Default Ange som &globalt tema - + %s (default) %s (standard) - + You must select a theme to edit. Du måste välja ett tema att redigera. - + You are unable to delete the default theme. Du kan inte ta bort standardtemat. - + Theme %s is used in the %s plugin. Temat %s används i modulen %s. - + You have not selected a theme. Du har inte valt ett tema. - + Save Theme - (%s) Spara tema - (%s) - + Theme Exported Tema exporterat - + Your theme has been successfully exported. Temat exporterades utan problem. - + Theme Export Failed Temaexport misslyckades - + Your theme could not be exported due to an error. Ett fel inträffade när temat skulle exporteras. - + Select Theme Import File Välj temafil - + File is not a valid theme. Filen är inte ett giltigt tema. - + &Copy Theme &Kopiera tema - + &Rename Theme &Byt namn på tema - + &Export Theme &Exportera tema - + You must select a theme to rename. Du måste välja ett tema att byta namn på. - + Rename Confirmation Bekräftelse av namnbyte - + Rename %s theme? Byt namn på temat %s? - + You must select a theme to delete. Du måste välja ett tema att ta bort. - + Delete Confirmation Borttagningsbekräftelse - + Delete %s theme? Ta bort temat %s? - + Validation Error Valideringsfel - + A theme with this name already exists. Ett tema med det här namnet finns redan. - + OpenLP Themes (*.theme *.otz) OpenLP-teman (*.theme *.otz) - + Copy of %s Copy of <theme name> Kopia av %s - + Theme Already Exists Tema finns redan + + + Theme %s already exists. Do you want to replace it? + Temat %s finns redan. Vill du ersätta det? + OpenLP.ThemeWizard - + Theme Wizard Temaguiden - + Welcome to the Theme Wizard Välkommen till temaguiden - + Set Up Background Ställ in bakgrund - + Set up your theme's background according to the parameters below. Ställ in temats bakgrund enligt parametrarna nedan. - + Background type: Bakgrundstyp: - + Solid Color Solid färg - + Gradient Gradient - + Color: Färg: - + Gradient: Gradient: - + Horizontal Horisontell - + Vertical Vertikal - + Circular Cirkulär - + Top Left - Bottom Right Uppe vänster - nere höger - + Bottom Left - Top Right Nere vänster - uppe höger - + Main Area Font Details Huvudytans tecken - + Define the font and display characteristics for the Display text Definiera font och egenskaper för visningstexten - + Font: Teckensnitt: - + Size: Storlek: - + Line Spacing: Radavstånd: - + &Outline: &Kant: - + &Shadow: Sk&ugga: - + Bold Fetstil - + Italic Kursiv - + Footer Area Font Details Sidfotens tecken - + Define the font and display characteristics for the Footer text Definiera font och egenskaper för sidfotstexten - + Text Formatting Details Textformatering - + Allows additional display formatting information to be defined Ytterligare inställningsmöjligheter för visningsformatet - + Horizontal Align: Horisontell justering: - + Left Vänster - + Right Höger - + Center Centrera - + Output Area Locations Visningsytornas positioner - + Allows you to change and move the main and footer areas. Låter dig ändra och flytta huvud- och sidfotsytorna. - + &Main Area &Huvudyta - + &Use default location Använd &standardposition - + X position: X-position: - + px px - + Y position: Y-position: - + Width: Bredd: - + Height: Höjd: - + Use default location Använd standardposition - + Theme name: Temanamn: - + Edit Theme - %s Redigera tema - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. Den här guiden hjälper dig att skapa och redigera dina teman. Klicka på Nästa för att börja processen med att ställa in bakgrund. - + Transitions: Övergångar: - + &Footer Area &Sidfotsyta - + Starting color: Startfärg: - + Ending color: Slutfärg: - + Background color: Bakgrundsfärg: - + Justify Marginaljustera - + Layout Preview Förhandsgranskning av layout - + Transparent Transparent - + Preview and Save Förhandsgranska och spara - + Preview the theme and save it. Förhanskgranska temat och spara det. + + + (approximately %d lines per slide) + (ungefär %d rader per sida) + + + + Background Image Empty + Bakgrundsbild tom + + + + You have not selected a background image. Please select one before continuing. + Du har inte valt bakgrundsbild. Välj en innan du fortsätter. + + + + Select Image + Välj bild + + + + Theme Name Missing + Temanamn saknas + + + + There is no name for this theme. Please enter one. + Temat saknar namn. Välj ett namn för temat. + + + + Theme Name Invalid + Temanamn ogiltigt + + + + Invalid theme name. Please enter one. + Ogiltigt namn på temat. Välj ett nytt. + OpenLP.ThemesTab - + Global Theme Globalt tema - + Theme Level Temanivå - + S&ong Level &Sångnivå - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. Använd temat för varje sång i databasen indviduellt. Om en sång inte har ett associerat tema, använd körschemats tema. Om körschemat inte har ett tema, använd det globala temat. - + &Service Level &Körschemanivå - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. Använd temat för körschemat och ignorera sångernas individuella teman. Om körschemat inte har ett tema, använd det globala temat. - + &Global Level &Global nivå - + Use the global theme, overriding any themes associated with either the service or the songs. Använd det globala temat och ignorera teman associerade med körschemat eller sångerna. - + Themes Teman @@ -5103,315 +5226,315 @@ Innehållets teckenkodning är inte UTF-8. OpenLP.Ui - + Error Fel - + About Om - + &Add &Lägg till - + Advanced Avancerat - + All Files Alla filer - + Bottom Botten - + Browse... Bläddra... - + Cancel Avbryt - + CCLI number: CCLI-nummer: - + Create a new service. Skapa ett nytt körschema. - + &Delete &Ta bort - + &Edit &Redigera - + Empty Field Tomt fält - + Export Exportera - + pt Abbreviated font pointsize unit pt - + Image Bild - + Import Importera - + Live Live - + Live Background Error Live-bakgrundsproblem - + Load Ladda - + Middle Mitten - + New Nytt - + New Service Nytt körschema - + New Theme Nytt tema - + No File Selected Singular Ingen fil vald - + No Files Selected Plural Inga filer valda - + No Item Selected Singular Ingen post vald - + No Items Selected Plural Inga poster valda - + openlp.org 1.x openlp.org 1.x - + OpenLP 2.0 OpenLP 2.0 - + Preview Förhandsgranskning - + Replace Background Ersätt bakgrund - + Reset Background Återställ bakgrund - + s The abbreviated unit for seconds s - + Save && Preview Spara && förhandsgranska - + Search Sök - + You must select an item to delete. Du måste välja en post att ta bort. - + You must select an item to edit. Du måste välja en post att redigera. - + Save Service Spara körschema - + Service Körschema - + Start %s Starta %s - + Theme Singular Tema - + Themes Plural Teman - + Top Toppen - + Version Version - + Delete the selected item. Ta bort den valda posten. - + Move selection up one position. Flytta upp urvalet ett steg. - + Move selection down one position. Flytta ner urvalet ett steg. - + &Vertical Align: &Vertikal justering: - + Finished import. Importen är slutförd. - + Format: Format: - + Importing Importerar - + Importing "%s"... Importerar "%s"... - + Select Import Source Välj importkälla - + Select the import format and the location to import from. Välj importformat och plats att importera från. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. openlp.org 1.x-import är inaktiverad på grund av en saknad Python-modul. Om du vill göra den här importen måste du installera modulen "python-sqlite". - + Open %s File Öppna %s-fil - + %p% %p % - + Ready. Klar. - + Starting import... Startar import... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong Du måste ange åtminstone en %s-fil att importera från. @@ -5422,299 +5545,304 @@ Innehållets teckenkodning är inte UTF-8. Välkommen till bibelimportguiden - + Welcome to the Song Export Wizard Välkommen till sångexportguiden - + Welcome to the Song Import Wizard Välkommen till sångimportguiden - + Author Singular Författare - + Authors Plural Författare - - © + + © Copyright symbol. © - + Song Book Singular Sångbok - + Song Books Plural Sångböcker - + Song Maintenance Sångunderhåll - + Topic Singular Ämne - + Topics Plural Ämnen - + Continuous Kontinuerlig - + Default Standard - + Display style: Visningsstil: - + Duplicate Error Dubblettfel - + File Fil - + Help Hjälp - + h The abbreviated unit for hours h - + Layout style: Layout: - + Live Toolbar Live-verktygsrad - + m The abbreviated unit for minutes min - + OpenLP is already running. Do you wish to continue? OpenLP körs redan. Vill du fortsätta? - + Settings Inställningar - + Tools Verktyg - + Unsupported File Okänd filtyp - + Verse Per Slide En vers per sida - + Verse Per Line En vers per rad - + View Visa - + Title and/or verses not found Titel och/eller verser hittades inte - + XML syntax error XML-syntaxfel - + View Mode Visningsläge - + Open service. Öppna körschema. - + Print Service Skriv ut körschema - + Replace live background. Ersätt live-bakgrund. - + Reset live background. Återställ live-bakgrund. - + Split a slide into two only if it does not fit on the screen as one slide. Dela en sida i två bara om den inte ryms som en sida på skärmen. - + Welcome to the Bible Upgrade Wizard Välkommen till bibeluppgraderingsguiden - + Confirm Delete Bekräfta borttagning - + Play Slides in Loop Kör visning i slinga - + Play Slides to End Kör visning till slutet - + Stop Play Slides in Loop Stoppa slingvisning - + Stop Play Slides to End Stoppa visning till slutet - + Next Track Nästa spår - + Search Themes... Search bar place holder text Sök teman... - + Optional &Split &Brytanvisning - + Invalid Folder Selected Singular Felaktig katalog vald - + Invalid File Selected Singular Felaktig fil vald - + Invalid Files Selected Plural Felaktiga filer valda - + No Folder Selected Singular Ingen katalog vald - + Open %s Folder Öppna %s-katalog - + You need to specify one %s file to import from. A file type e.g. OpenSong Du måste ange en %s-fil att importera från. - + You need to specify one %s folder to import from. A song format e.g. PowerSong Du måste ange en %s-katalog att importera från. + + + Importing Songs + Importerar sånger + OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items %1 och %2 - + %1, and %2 Locale list separator: end %1, och %2 - + %1, %2 Locale list separator: middle %1, %2 - + %1, %2 Locale list separator: start %1, %2 @@ -5723,50 +5851,50 @@ Innehållets teckenkodning är inte UTF-8. PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. <strong>Presentationsmodul</strong><br />Presentationsmodulen ger möjlighet att visa presentationer med en mängd olika program. Val av presentationsprogram görs av användaren i en flervalslista. - + Presentation name singular Presentation - + Presentations name plural Presentationer - + Presentations container title Presentationer - + Load a new presentation. Ladda en ny presentation. - + Delete the selected presentation. Ta bort den valda presentationen. - + Preview the selected presentation. Förhandsgranska den valda presentationen. - + Send the selected presentation live. Visa den valda presentationen live. - + Add the selected presentation to the service. Lägg till den valda presentationen i körschemat. @@ -5774,52 +5902,52 @@ Innehållets teckenkodning är inte UTF-8. PresentationPlugin.MediaItem - + Select Presentation(s) Välj presentation(er) - + Automatic Automatiskt - + Present using: Presentera med: - + File Exists Fil finns redan - + A presentation with that filename already exists. En presentation med det namnet finns redan. - + This type of presentation is not supported. Den här presentationstypen stöds inte. - + Presentations (%s) Presentationer (%s) - + Missing Presentation Presentation saknas - + The presentation %s is incomplete, please reload. Presentationen %s är inte komplett. Försök att ladda om den. - + The presentation %s no longer exists. Presentationen %s finns inte längre. @@ -5827,17 +5955,17 @@ Innehållets teckenkodning är inte UTF-8. PresentationPlugin.PresentationTab - + Available Controllers Tillgängliga presentationsprogram - + %s (unavailable) %s (inte tillgängligt) - + Allow presentation application to be overridden Tillåt åsidosättning av valt presentationsprogram @@ -5845,24 +5973,24 @@ Innehållets teckenkodning är inte UTF-8. RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. <strong>Fjärrstyrningsmodul</strong><br />Fjärrstyrningsmodulen ger möjlighet att skicka meddelanden till OpenLP på en annan dator via en webbläsare eller via fjärrstyrnings-API:et. - + Remote name singular Fjärrstyrning - + Remotes name plural Fjärrstyrningar - + Remote container title Fjärrstyrning @@ -5871,236 +5999,246 @@ Innehållets teckenkodning är inte UTF-8. RemotePlugin.Mobile - + OpenLP 2.0 Remote OpenLP 2.0 fjärrstyrning - + OpenLP 2.0 Stage View OpenLP 2.0 scenvisning - + Service Manager Körschema - + Slide Controller Visningskontroll - + Alerts Meddelanden - + Search Sök - + Refresh Uppdatera - + Blank Släck - + Show Visa - + Prev Förra - + Next Nästa - + Text Text - + Show Alert Visa meddelande - + Go Live Lägg ut bilden - + No Results Inga resultat - + Options Alternativ - + Add to Service Lägg till i körschema - + Home Hem - + Theme Tema - + Desktop Skrivbord - + Add &amp; Go to Service Lägg till &amp; gå till körschema + + + Service + Körschema + + + + Slides + Bilder + RemotePlugin.RemoteTab - + Serve on IP address: Kör på IP-adress: - + Port number: Portnummer: - + Server Settings Serverinställningar - + Remote URL: Fjärrstyrningsadress: - + Stage view URL: Scenvisningsadress: - + Display stage time in 12h format Visa scentiden i 12-timmarsformat - + Android App Android-app - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - Skanna QR-koden eller välj <a href="https://market.android.com/details?id=org.openlp.android">ladda ner</a> för att installera Android-appen från butiken. + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + Skanna QR-koden eller klicka <a href="https://play.google.com/store/apps/details?id=org.openlp.android">hämta</a> för att installera Android-appen från Google Play. SongUsagePlugin - + &Song Usage Tracking &Sångloggning - + &Delete Tracking Data &Ta bort loggdata - + Delete song usage data up to a specified date. Ta bort sånganvändningsdata fram till ett givet datum. - + &Extract Tracking Data &Extrahera loggdata - + Generate a report on song usage. Generera en rapport över sånganvändning. - + Toggle Tracking Växla loggning - + Toggle the tracking of song usage. Växla sångloggning på/av. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. <strong>Sånganvändningsmodul</strong><br />Den här modulen loggar användning av sångerna som visas. - + SongUsage name singular Sånganvändning - + SongUsage name plural Sånganvändning - + SongUsage container title Sånganvändning - + Song Usage Sånganvändning - + Song usage tracking is active. Sångloggning är aktiv. - + Song usage tracking is inactive. Sångloggning är inaktiv. - + display visa - + printed utskriven @@ -6108,32 +6246,32 @@ Innehållets teckenkodning är inte UTF-8. SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data Ta bort sånganvändningsdata - + Delete Selected Song Usage Events? Ta bort vald sånganvändningsdata? - + Are you sure you want to delete selected Song Usage data? Vill du verkligen ta bort vald sånganvändningsdata? - + Deletion Successful Borttagning lyckades - + All requested data has been deleted successfully. All vald data har tagits bort. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. Välj datum fram till vilket sånganvändningsdatan ska tas bort. All data loggad före det datumet kommer att tas bort permanent. @@ -6141,42 +6279,42 @@ Innehållets teckenkodning är inte UTF-8. SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction Sånganvändningsutdrag - + Select Date Range Välj datumspann - + to till - + Report Location Målmapp - + Output File Location Lagringssökväg - + usage_detail_%s_%s.txt användning_%s_%s.txt - + Report Creation Rapportskapande - + Report %s has been successfully created. @@ -6185,12 +6323,12 @@ has been successfully created. skapades utan problem. - + Output Path Not Selected Målmapp inte vald - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. Du måste välja en giltig målmapp för sångrapporten. Välj en befintlig sökväg på datorn. @@ -6198,112 +6336,112 @@ skapades utan problem. SongsPlugin - + &Song &Sång - + Import songs using the import wizard. Importera sånger med importguiden. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. <strong>Sångmodul</strong><br />Sångmodulen ger möjlighet att visa och hantera sånger. - + &Re-index Songs - &Indexera om sånger + Uppdatera sång&index - + Re-index the songs database to improve searching and ordering. Indexera om sångdatabasen för att förbättra sökning och sortering. - + Reindexing songs... Indexerar om sånger... - + Arabic (CP-1256) Arabiska (CP-1256) - + Baltic (CP-1257) Baltiska (CP-1257) - + Central European (CP-1250) Centraleuropeisk (CP-1250) - + Cyrillic (CP-1251) Kyrilliska (CP-1251) - + Greek (CP-1253) Grekiska (CP-1253) - + Hebrew (CP-1255) Hebreiska (CP-1255) - + Japanese (CP-932) Japanska (CP-932) - + Korean (CP-949) Koreanska (CP-949) - + Simplified Chinese (CP-936) Förenklad kinesiska (CP-936) - + Thai (CP-874) Thai (CP-874) - + Traditional Chinese (CP-950) Traditionell kinesiska (CP-950) - + Turkish (CP-1254) Turkiska (CP-1254) - + Vietnam (CP-1258) Vietnamesiska (CP-1258) - + Western European (CP-1252) Västeuropeisk (CP-1252) - + Character Encoding Teckenkodning - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. @@ -6312,100 +6450,105 @@ rätt teckenrepresentation. Vanligtvis fungerar den förvalda inställningen bra. - + Please choose the character encoding. The encoding is responsible for the correct character representation. Välj teckenkodning. Teckenkodningen ansvarar för rätt teckenrepresentation. - + Song name singular Sång - + Songs name plural Sånger - + Songs container title Sånger - + Exports songs using the export wizard. Exportera sånger med exportguiden. - + Add a new song. Lägg till en ny sång. - + Edit the selected song. Redigera den valda sången. - + Delete the selected song. Ta bort den valda sången. - + Preview the selected song. Förhandsgranska den valda sången. - + Send the selected song live. Visa den valda sången live. - + Add the selected song to the service. Lägg till den valda sången i körschemat. + + + Reindexing songs + Indexerar om sånger + SongsPlugin.AuthorsForm - + Author Maintenance Författarhantering - + Display name: Visningsnamn: - + First name: Förnamn: - + Last name: Efternamn: - + You need to type in the first name of the author. Du måste ange författarens förnamn. - + You need to type in the last name of the author. Du måste ange författarens efternamn. - + You have not set a display name for the author, combine the first and last names? Du har inte angett ett visningsnamn för författaren; kombinera för- och efternamn? @@ -6413,7 +6556,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.CCLIFileImport - + The file does not have a valid extension. Filen saknar giltig filändelse. @@ -6421,12 +6564,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EasyWorshipSongImport - + Administered by %s Administrerad av %s - + [above are Song Tags with notes imported from EasyWorship] @@ -6438,12 +6581,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EditBibleForm - + Meta Data Metadata - + Custom Book Names Anpassade boknamn @@ -6451,207 +6594,202 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EditSongForm - + Song Editor Sångredigering - + &Title: &Titel: - + Alt&ernate title: &Alternativ titel: - + &Lyrics: &Sångtext: - + &Verse order: &Versordning: - + Ed&it All Red&igera alla - + Title && Lyrics Titel && sångtext - + &Add to Song &Lägg till för sång - + &Remove &Ta bort - + &Manage Authors, Topics, Song Books &Hantera författare, ämnen, sångböcker - + A&dd to Song Lä&gg till för sång - + R&emove Ta &bort - + Book: Bok: - + Number: Nummer: - + Authors, Topics && Song Book Författare, ämnen && sångböcker - + New &Theme Nytt &tema - + Copyright Information Copyrightinformation - + Comments Kommentarer - + Theme, Copyright Info && Comments Tema, copyrightinfo && kommentarer - + Add Author Lägg till författare - + This author does not exist, do you want to add them? Författaren finns inte; vill du lägga till den? - + This author is already in the list. Författaren finns redan i listan. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. Du har inte valt en giltig författare. Välj antingen en författare från listan, eller skriv in en ny författare och klicka "Lägg till för sång" för att lägga till den nya författaren. - + Add Topic Lägg till ämne - + This topic does not exist, do you want to add it? Ämnet finns inte; vill du skapa det? - + This topic is already in the list. Ämnet finns redan i listan. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. Du har inte valt ett giltigt ämne. Välj antingen ett ämne från listan, eller skriv in ett nytt ämne och klicka "Lägg till för sång" för att lägga till det nya ämnet. - + You need to type in a song title. Du måste ange en sångtitel. - + You need to type in at least one verse. Du måste ange åtminstone en vers. - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. Versordningen är ogiltig. Det finns ingen vers motsvarande %s. Giltiga värden är %s. - + Add Book Lägg till bok - + This song book does not exist, do you want to add it? Boken finns inte; vill du skapa den? - + You need to have an author for this song. Du måste ange en författare för sången. - - You need to type some text in to the verse. - Du måste skriva någon text i versen. - - - + Linked Audio Länkat ljud - + Add &File(s) Lägg till &fil(er) - + Add &Media Lägg till &media - + Remove &All &Ta bort alla - + Open File(s) Öppna fil(er) - + <strong>Warning:</strong> Not all of the verses are in use. <strong>Varning:</strong> Alla verser används inte. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. Versordningen är ogiltig. Det finns inga verser som hör till %s. Giltiga värden är %s. @@ -6659,22 +6797,22 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.EditVerseForm - + Edit Verse Redigera vers - + &Verse type: &Verstyp: - + &Insert &Infoga - + Split a slide into two by inserting a verse splitter. Dela en sida i två genom att infoga en versdelare. @@ -6682,82 +6820,82 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ExportWizardForm - + Song Export Wizard Sångexportguiden - + Select Songs Välj sånger - + Check the songs you want to export. Kryssa för sångerna du vill exportera. - + Uncheck All Kryssa ingen - + Check All Kryssa alla - + Select Directory Välj mapp - + Directory: Mapp: - + Exporting Exporterar - + Please wait while your songs are exported. Vänta medan sångerna exporteras. - + You need to add at least one Song to export. Du måste lägga till minst en sång att exportera. - + No Save Location specified Ingen målmapp angiven - + Starting export... Startar export... - + You need to specify a directory. Du måste ange en mapp. - + Select Destination Folder Välj målmapp - + Select the directory where you want the songs to be saved. Välj mappen där du vill att sångerna sparas. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. Den här guiden hjälper dig att exportera dina sånger till det öppna och fria lovsångsformatet <strong>OpenLyrics</strong>. @@ -6765,172 +6903,172 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files Välj dokument/presentation - + Song Import Wizard Sångimportguiden - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. Den här guiden hjälper dig att importera sånger från en mängd olika format. Klicka på Nästa för att börja processen med att välja ett format att importera från. - + Generic Document/Presentation Vanligt dokument/presentation - + Add Files... Lägg till filer... - + Remove File(s) Ta bort fil(er) - + Please wait while your songs are imported. Vänta medan sångerna importeras. - + OpenLP 2.0 Databases OpenLP 2.0-databas - + openlp.org v1.x Databases openlp.org v1.x-databas - + Words Of Worship Song Files Words of Worship-sångfiler - + Songs Of Fellowship Song Files Songs of Fellowship-sångfiler - + SongBeamer Files SongBeamer-filer - + SongShow Plus Song Files SongShow Plus-sångfiler - + Foilpresenter Song Files Foilpresenter-sångfiler - + Copy Kopiera - + Save to File Spara till fil - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av Songs of Fellowship har inaktiverats eftersom OpenLP inte kan hitta OpenOffice eller LibreOffice. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. Import av vanliga dokument/presentationer har inaktiverats eftersom OpenLP inte hittar OpenOffice eller LibreOffice. - + OpenLyrics or OpenLP 2.0 Exported Song OpenLyrics eller sång exporterad från OpenLP 2.0 - + OpenLyrics Files OpenLyrics-filer - + CCLI SongSelect Files CCLI SongSelect-filer - + EasySlides XML File EasySlides XML-fil - + EasyWorship Song Database EasyWorship sångdatabas - + DreamBeam Song Files DreamBeam sångfiler - + You need to specify a valid PowerSong 1.0 database folder. Du måste ange en giltig PowerSong 1.0-databaskatalog. - + ZionWorx (CSV) ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. Konvertera först din ZionWorx-databas till en CSV-textfil, som beskrivs i <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">Användarmanualen</a>. - + SundayPlus Song Files SundayPlus-sångfiler - + This importer has been disabled. Den här importfunktionen har inaktiverats. - + MediaShout Database MediaShout-databas - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. Importfunktionen för MediaShout stöds bara på Windows. Den har inaktiverats på grund av en saknad Python-modul. Om du vill använda den här importfunktionen måste du installera modulen "pyodbc". - + SongPro Text Files SongPro-textfiler - + SongPro (Export File) SongPro (exporterad fil) - + In SongPro, export your songs using the File -> Export menu I SongPro exporterar du sånger via menyn Arkiv -> Exportera @@ -6938,12 +7076,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.MediaFilesForm - + Select Media File(s) Välj mediafil(er) - + Select one or more audio files from the list below, and click OK to import them into this song. Välj en eller flera ljudfiler från listan nedan, och klicka OK för att importera dem till sången. @@ -6951,63 +7089,66 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.MediaItem - + Titles Titel - + Lyrics Sångtext - + CCLI License: CCLI-licens: - + Entire Song Allt sånginnehåll - + Are you sure you want to delete the %n selected song(s)? - Är du säker på att du vill ta bort den valda sången?Är du säker på att du vill ta bort de %n valda sångerna? + + Är du säker på att du vill ta bort den valda sången? + Är du säker på att du vill ta bort de %n valda sångerna? + - + Maintain the lists of authors, topics and books. Underhåll listan över författare, ämnen och böcker. - + copy For song cloning kopia - + Search Titles... Sök titel... - + Search Entire Song... Sök i allt sånginnehåll... - + Search Lyrics... Sök i sångtexter... - + Search Authors... Sök författare... - + Search Song Books... Sök sångbok... @@ -7015,7 +7156,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. Kan inte öppna MediaShout-databasen. @@ -7023,7 +7164,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. Inte en giltig openlp.org 1.x-sångdatabas. @@ -7031,7 +7172,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. Inte en giltig OpenLP 2.0-sångdatabas. @@ -7039,7 +7180,7 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.OpenLyricsExport - + Exporting "%s"... Exporterar "%s"... @@ -7047,35 +7188,55 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.PowerSongImport - + No songs to import. Inga sånger att importera. - + Verses not found. Missing "PART" header. Inga verser hittade. "PART"-huvud saknas. + + + No %s files found. + Inga %s-filer hittades. + + + + Invalid %s file. Unexpected byte value. + Ogiltig %s-fil. Oväntat byte-värde. + + + + Invalid %s file. Missing "TITLE" header. + Ogiltig %s-fil. "TITLE"-huvud saknas. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + Ogiltig %s-fil. "COPYRIGHTLINE"-huvud saknas. + SongsPlugin.SongBookForm - + Song Book Maintenance Sångboksunderhåll - + &Name: &Namn: - + &Publisher: &Utgivare: - + You need to type in a name for the book. Du måste ange ett namn på boken. @@ -7083,12 +7244,12 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongExportForm - + Your song export failed. Sångexporten misslyckades. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. Exporten är slutförd. För att importera filerna, använd importen <strong>OpenLyrics</strong>. @@ -7096,27 +7257,27 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongImport - + copyright copyright - + The following songs could not be imported: De följande sångerna kunde inte importeras: - + Cannot access OpenOffice or LibreOffice Kan inte hitta OpenOffice eller LibreOffice - + Unable to open file Kan inte öppna fil - + File not found Fil hittas inte @@ -7124,107 +7285,107 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongMaintenanceForm - + Could not add your author. Kunde inte lägga till författaren. - + This author already exists. Författaren finns redan. - + Could not add your topic. Kunde inte lägga till ämnet. - + This topic already exists. Ämnet finns redan. - + Could not add your book. Kunde inte lägga till boken. - + This book already exists. Boken finns redan. - + Could not save your changes. Kunde inte spara ändringarna. - + Could not save your modified author, because the author already exists. Kunde inte spara den ändrade författaren eftersom den redan finns. - + Could not save your modified topic, because it already exists. Kunde inte spara det ändrade ämnet eftersom det redan finns. - + Delete Author Ta bort författare - + Are you sure you want to delete the selected author? Är du säker på att du vill ta bort den valda författaren? - + This author cannot be deleted, they are currently assigned to at least one song. Författaren kan inte tas bort; den används för närvarande av minst en sång. - + Delete Topic Ta bort ämne - + Are you sure you want to delete the selected topic? Är du säker på att du vill ta bort det valda ämnet? - + This topic cannot be deleted, it is currently assigned to at least one song. Ämnet kan inte tas bort; det används för närvarande av minst en sång. - + Delete Book Ta bort bok - + Are you sure you want to delete the selected book? Är du säker på att du vill ta bort den valda boken? - + This book cannot be deleted, it is currently assigned to at least one song. Boken kan inte tas bort; den används för närvarande av minst en sång. - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? Författaren %s finns redan. Vill du låta sånger med författaren %s använda den befintliga författaren %s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? Ämnet %s finns redan. Vill du låta sånger med ämnet %s använda det befintliga ämnet %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? Boken %s finns redan. Vill du låta sånger med boken %s använda den befintliga boken %s? @@ -7232,27 +7393,27 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.SongsTab - + Songs Mode Sångläge - + Enable search as you type Sök när du skriver - + Display verses on live tool bar Visa verser i live-verktygsraden - + Update service from song edit Uppdatera körschemat från sångredigeringen - + Import missing songs from service files Importera saknade sånger från körschemafiler @@ -7260,17 +7421,17 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.TopicsForm - + Topic Maintenance Ämnesunderhåll - + Topic name: Ämnesnamn: - + You need to type in a topic name. Du måste ange ett ämnesnamn. @@ -7278,37 +7439,37 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.VerseType - + Verse Vers - + Chorus Refräng - + Bridge Stick - + Pre-Chorus Brygga - + Intro Intro - + Ending Avslut - + Other Övrigt @@ -7316,14 +7477,29 @@ Teckenkodningen ansvarar för rätt teckenrepresentation. SongsPlugin.ZionWorxImport - + Error reading CSV file. Fel vid läsning från CSV-fil. - + File not valid ZionWorx CSV format. Filen är inte i giltigt ZionWorx CSV-format. + + + Line %d: %s + Rad %d: %s + + + + Decoding error: %s + Avkodningsfel: %s + + + + Record %d + Post %d + - \ No newline at end of file + diff --git a/resources/i18n/it.ts b/resources/i18n/ta_LK.ts similarity index 52% rename from resources/i18n/it.ts rename to resources/i18n/ta_LK.ts index 2ded09027..33734db7e 100644 --- a/resources/i18n/it.ts +++ b/resources/i18n/ta_LK.ts @@ -1,110 +1,109 @@ - + + AlertsPlugin - + &Alert - &Avviso + &எச்சரிக்கை செய - + Show an alert message. - Mostra un messaggio di avviso. + ஒரு எச்சரிக்கை செய்தி காட்டு. - + Alert name singular - Avviso + எச்சரிக்கை செய - + Alerts name plural - Avvisi + எச்சரிக்கைகள் - + Alerts container title - Avvisi + எச்சரிக்கைகள் - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - <strong>Plugin di Avvisi</strong><br />Il plugin di allarme controlla la visualizzazione di avvisi sul display. + <strong>விழிப்பூட்டல் Plugin</strong><br />விழிப்பூட்டல் Plugin காட்சி திரையில் நாற்றங்கால் விழிப்பூட்டல்களில் காண்பிக்கும் கட்டுப்படுத்துகிறது. AlertsPlugin.AlertForm - + Alert Message - Messaggio di avviso + எச்சரிக்கைகள் செய்தி - + Alert &text: - Avviso &testo: + எச்சரிக்கை செய &உரை - + &New - &Nuovo + &புதிய - + &Save - &Salva + &சேமிக்க - + Displ&ay - Visualiz&za + காட்&சி - + Display && Cl&ose - Visualizza && Ch&iudi + காட்சி && அ&ருகில் - + New Alert - Nuovo Avviso + புதிய எச்சரிக்கை - + You haven't specified any text for your alert. Please type in some text before clicking New. - Non è stato specificato alcun testo per l'avviso. Si prega di digitare un testo prima di cliccare su Nuovo. + உங்கள் விழிப்பூட்டல் எந்த உரை குறிப்பிடப்படவில்லை. புதிய என்பதை கிளிக் செய்வதன் முன் சில உரை தட்டச்சு செய்யவும். - + &Parameter: - &Parametro: + &அளவுரு: - + No Parameter Found - Nessun parametro Trovato + அளவுரு காணப்படவில்லை - + You have not entered a parameter to be replaced. Do you want to continue anyway? - Non è stato inserito un parametro da sostituire..⏎ -Vuoi continuare comunque? + நீங்கள் பதிலாக ஒரு அளவுரு உள்ளிட்ட இல்லை. ⏎ தொடர விரும்புகிறீர்களா? - + No Placeholder Found - Nessun Segnaposto Trovato + எந்த ஒதுக்கிட இல்லை - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? - Il testo di avviso non contiene '<>'.⏎ -Vuoi continuare comunque? + விழிப்பூட்டல் உரை இல்லை '<>'. ⏎ தொடர விரும்புகிறீர்களா? @@ -112,635 +111,635 @@ Vuoi continuare comunque? Alert message created and displayed. - Messaggio di avviso creato e visualizzato. + எச்சரிக்கை செய்தி உருவாக்கப்பட்ட மற்றும் காண்பிக்கப்படும். AlertsPlugin.AlertsTab - + Font - Carattere + எழுத்து - + Font name: - Nome del Carattere + எழுத்து பெயர் - + Font color: - Colore del Carattere + எழுத்து வண்ணம் - + Background color: - Colore di sfondo: + பின்புல வண்ணம்: - + Font size: - Dimensione Carattere: + எழுத்து அளவு - + Alert timeout: - Avviso Timeout: + முடிதல் எச்சரிக்கை: BiblesPlugin - + &Bible - &Bibbia - - - - Bible - name singular - Bibbia + &Bible + Bible + name singular + பரிசுத்த வேதாகமம் + + + Bibles name plural - Bibbie + அதிக பரிசுத்த வேதாகமம் - + Bibles container title - Bibbie + அதிக பரிசுத்த வேதாகமம் - + No Book Found - Nessun libro trovato + எதுவுமில்லை புத்தக இல்லை - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - Nessun libro analogo può essere trovato in questa Bibbia. Verificare di aver digitato il nome del libro in modo corretto. - - - - Import a Bible. - Importa una Bibbia. + பொருத்துதல் புத்தகத்தில் இந்த காணப்படும் முடியும் இல்லை பரிசுத்த வேதாகமம். நீங்கள் சரியாக புத்தகத்தின் பெயர் எழுத்துக்கூட்டப்பட்டுள்ளதை என்று பாருங்கள். - Add a new Bible. - Aggiungi una nuova Bibbia. + Import a Bible. + ஒரு பரிசுத்த வேதாகமம் இறக்குமதி - Edit the selected Bible. - Modifica la Bibbia selezionata. + Add a new Bible. + ஒரு புதிய பரிசுத்த வேதாகமம் சேர்க்கவும - Delete the selected Bible. - Cancella la Bibbia selezionata + Edit the selected Bible. + தேர்ந்தெடுத்த பரிசுத்த வேதாகமம் திருத்தி - Preview the selected Bible. - Anteprima della Bibbia selezionata. + Delete the selected Bible. + தேர்ந்தெடுத்த பரிசுத்த வேதாகமம் நீக்கு - - Send the selected Bible live. - Invia la Bibbia selezionata dal vivo. + + Preview the selected Bible. + தேர்ந்தெடுத்த பரிசுத்த வேதாகமம் முன்னோட்டம் + Send the selected Bible live. + தேர்ந்தெடுத்த பரிசுத்த வேதாகமம் அனுப்பு + + + Add the selected Bible to the service. - Aggiungi la Bibbia selezionata al servizio. + சேவை தேர்ந்தெடுத்த பரிசுத்த வேதாகமம் சேர்க்க - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - <strong>Bibbia Plugin</strong><br />Il plugin della Bibbia offre la possibilità di visualizzare i versetti della Bibbia da fonti diverse durante il servizio. + <strong>பரிசுத்த வேதாகமம் Plugin</strong><br />பரிசுத்த வேதாகமம் Plugin சேவையை போது பல்வேறு ஆதாரங்களில் இருந்து பைபிள் வசனங்கள் காட்ட உதவுகிறது. - + &Upgrade older Bibles - &Aggiornamento vecchie Bibbie + &மேம்படுத்தவும் பல பழைய பரிசுத்த வேதாகமம் - + Upgrade the Bible databases to the latest format. - Aggiorna i database della Bibbia al formato più recente. - - - - Genesis - Genesi + சமீபத்திய வடிவம் பரிசுத்த வேதாகமம் தரவுத்தளங்கள் மேம்படுத்த. - Exodus - Esodo + Genesis + ஆதியாகமம் - Leviticus - Levitico + Exodus + யாத்திராகமம் - Numbers - Numeri + Leviticus + லேவியராகமம் - Deuteronomy - Deuteronomio + Numbers + எண்ணாகமம் - Joshua - Giosuè + Deuteronomy + உபாகமம் - Judges - Giudici + Joshua + யோசுவா - Ruth - Ruth + Judges + நியாயாதிபதிகள - 1 Samuel - 1 Samuele + Ruth + ரூத் - 2 Samuel - 2 Samuele + 1 Samuel + 1 சாமுவேல் - 1 Kings - 1 Re + 2 Samuel + 2 சாமுவேல் - 2 Kings - 2 Re + 1 Kings + 1 இராஜாக்கள் - 1 Chronicles - + 2 Kings + 2 இராஜாக்கள் - 2 Chronicles - + 1 Chronicles + 1 நாளாகமம் - Ezra - + 2 Chronicles + 2 நாளாகமம் - Nehemiah - + Ezra + எஸ்ரா - Esther - + Nehemiah + நெகேமியா - Job - + Esther + எஸ்தர் - Psalms - + Job + யோபு - Proverbs - + Psalms + சங்கீதம் - Ecclesiastes - + Proverbs + நீதிமொழிகள் - Song of Solomon - + Ecclesiastes + பிரசங்கி - Isaiah - + Song of Solomon + உன்னதப்பாட்டு - Jeremiah - + Isaiah + ஏசாயா - Lamentations - Lamentazioni + Jeremiah + எரேமியா - Ezekiel - Ezechiele + Lamentations + புலம்பல் - Daniel - Daniele + Ezekiel + எசேக்கியேல் - Hosea - Osea + Daniel + தானியேல - Joel - Gioele + Hosea + ஓசியா - Amos - Amos + Joel + யோவேல - Obadiah - Abdia + Amos + ஆமோஸ் - Jonah - Giona + Obadiah + ஒபதியா - Micah - Michea + Jonah + யோனா - Nahum - Nahum + Micah + மீகா - Habakkuk - Habacuc + Nahum + நாகூம் - Zephaniah - Sofonia + Habakkuk + ஆபகூக் - Haggai - Aggeo + Zephaniah + செப்பனியா - Zechariah - Zaccaria + Haggai + ஆகாய் - Malachi - Malachia + Zechariah + சகரியா - Matthew - Matteo + Malachi + மல்கியா - Mark - Marco + Matthew + மத்தேயு - Luke - Luca + Mark + மாற்கு - John - Giovanni + Luke + லூக்கா - Acts - Atti degli Apostoli + John + யோவான் - Romans - Romani + Acts + அப்போஸ்தலர - 1 Corinthians - 1 Corinzi + Romans + ரோமர் - 2 Corinthians - 2 Corinzi + 1 Corinthians + 1 கொரிந்தியர் - Galatians - Galati + 2 Corinthians + 2 கொரிந்தியர் - Ephesians - Efesini + Galatians + கலாத்தியர் - Philippians - Filippesi + Ephesians + எபேசியர் - Colossians - Colossesi + Philippians + பிலிப்பியர் - 1 Thessalonians - 1 Tessalonicesi + Colossians + கொலோசெயர் - 2 Thessalonians - 2 Tessalonicesi + 1 Thessalonians + 1 தெசலோனிக்கேயர் - 1 Timothy - 1 Timoteo + 2 Thessalonians + 2 தெசலோனிக்கேயர் - 2 Timothy - 2 Timoteo + 1 Timothy + 1 தீமோத்தேயு - Titus - Tito + 2 Timothy + 2 தீமோத்தேயு - Philemon - Filemone + Titus + தீத்து - Hebrews - Ebrei + Philemon + பிலேமோன் - James - Giacomo + Hebrews + எபிரேயர் - 1 Peter - 1 Pietro + James + யாக்கோபு - 2 Peter - 2 Pietro + 1 Peter + 1 பேதுரு - 1 John - 1 Giovanni + 2 Peter + 2 பேதுரு - 2 John - 2 Giovanni + 1 John + 1 யோவான் - 3 John - 3 Giovanni + 2 John + 2 யோவான் - Jude - Giuda + 3 John + 3 யோவான் - Revelation - Apocalisse + Jude + யூதா - Judith - + Revelation + வெளி - Wisdom - + Judith + ஜூடித் - Tobit - + Wisdom + ஞானத்தை - Sirach - + Tobit + டோபிட் - Baruch - + Sirach + Sirach - 1 Maccabees - + Baruch + பரூச் - 2 Maccabees - + 1 Maccabees + 1 Maccabees - 3 Maccabees - + 2 Maccabees + 2 Maccabees - 4 Maccabees - + 3 Maccabees + 3 Maccabees - Rest of Daniel - + 4 Maccabees + 4 Maccabees - Rest of Esther - + Rest of Daniel + டேனியல் மீதமுள்ள - Prayer of Manasses - + Rest of Esther + எஸ்தர் மீதமுள்ள - Letter of Jeremiah - + Prayer of Manasses + Manasses பிரார்த்தனை - Prayer of Azariah - + Letter of Jeremiah + ஜெரிமியா கடிதம் - Susanna - + Prayer of Azariah + Azariah பிரார்த்தனை - Bel - + Susanna + சுசானா - 1 Esdras - + Bel + Bel - 2 Esdras - + 1 Esdras + 1 எஸ்ட்ராஸ் - + + 2 Esdras + 2 எஸ்ட்ராஸ் + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|verse|verses;;-|to;;,|and;;end BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + உங்கள் பதிப்பு பைபிள் ஒரு பெயரை குறிப்பிட வேண்டும். - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + நீங்கள் உங்கள் வேதாகமம் ஒரு பதிப்புரிமை அமைக்க வேண்டும். பொது டொமைன் பைபிள் போன்ற குறித்தது வேண்டும். - + Bible Exists - + பைபிள் உள்ளது - + This Bible already exists. Please import a different Bible or first delete the existing one. - + இந்த வேதாகமம் முன்பே இருக்கிறது. வேறு வேதாகமம் இறக்குமதி அல்லது முதல் இருக்கும் ஒரு நீக்கவும். - + You need to specify a book name for "%s". - + நீங்கள் ஒரு புத்தகம் பெயரை குறிப்பிட வேண்டும் "%s". - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + இந்த புத்தகம் பெயர் "%s" சரியான அல்ல. + எண்கள் மட்டுமே ஆரம்பத்தில் பயன்படுத்தலாம் மற்றும் அல்லது அதற்கு மேற்பட்ட அல்லாத எண் எழுத்துகள் ஒன்று தொடர்ந்து வேண்டும். - + Duplicate Book Name - + புத்தக பெயர் நகல - + The Book Name "%s" has been entered more than once. - + இந்த புத்தகம் பெயர் "%s" க்கும் மேற்பட்ட ஒருமுறை நுழைந்தது. BiblesPlugin.BibleManager - + Scripture Reference Error - Errore di Riferimento nella Scrittura + நூல் குறிப்பு பிழை - + Web Bible cannot be used - La Bibbia nel Web non può essere utilizzato + இண்டர்நெட் பரிசுத்த வேதாகமம் பயன்படுத்த முடியாது - + Text Search is not available with Web Bibles. - Cerca testo non è disponibile con La Bibbia sul Web. + உரை தேடுதல் இண்டர்நெட் உடன் இல்லை பரிசுத்த வேதாகமம். - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - Non hai inserito una parola chiave di ricerca. ⏎ -È possibile separare parole chiave diverse da uno spazio per la ricerca di tutte le parole chiave e si possono separare con una virgola per la ricerca di uno di loro. + நீங்கள் ஒரு தேடல் திறவுச்சொல் நுழைய முடியவில்லை. ⏎ நீங்கள் உங்கள் முக்கிய வார்த்தைகள் அனைத்து தேட ஒரு இடைவெளி மூலம் வெவ்வேறு திறவுச்சொற்களை பிரிக்க முடியாது, நீங்கள் அவர்களுக்கு ஒரு தேட ஒரு கமா மூலம் பிரிக்க முடியாது. - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - Non ci sono Bibbie attualmente installati. Si prega di utilizzare l'importazione guidata per installare uno o più Bibbie. + பரிசுத்த வேதாகமம் தற்போது நிறுவப்பட்ட இல்லை உள்ளன. ஒன்று அல்லது அதற்கு மேற்பட்ட பரிசுத்த வேதாகமம் நிறுவ இறக்குமதி வழிகாட்டி பயன்படுத்தவும். - + No Bibles Available - Bibbia non disponibile + எந்த பரிசுத்த வேதாகமம் கிடைக்கும் இல்லை - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -750,314 +749,327 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + உங்கள் நூல் குறிப்பு ஒன்று OpenLP ஆதரவு அல்லது தவறானது அல்ல. உங்கள் குறிப்பு பின்வரும் முறைகளில் ஒன்று ரத்து போகிறது என்பதை உறுதி அல்லது கைமுறை கலந்தாலோசிக்கவும்: + +Book Chapter +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display - Visualizza Versetto + வசனம் காண்பி - + Only show new chapter numbers - Mostra solo i numeri del nuovo capitolo + புதிய அத்தியாயம் எண்கள் காட்ட - + Bible theme: - Tema della Bibbia + வேதாகமம் தீம்: - + No Brackets - Senza Parentesi Quadre + எந்த அடைப்புக்குறிகள் இல்லை - + ( And ) - (E) + ( மற்றும ) - + { And } - {E} + { மற்றும } - + [ And ] - [E] + [ மற்றும ] - + Note: Changes do not affect verses already in the service. - Nota: ⏎ - Le modifiche non influiscono i versetti già nel servizio. + குறிப்பு: +மாற்றங்கள் ஏற்கனவே சேவையில் உள்ள வசனங்கள் பாதிப்பதில்லை. - + Display second Bible verses - Visualizza i Secondi versetti della Bibbia + இரண்டாவது வேதாகமம் வசனங்கள் காட்ட - + Custom Scripture References - + தனிபயன் புனித குறிப்புகள் - + Verse Separator: - + வசனம் பிரிப்பான்: - + Range Separator: - + எல்லை பிரிப்பான்: - + List Separator: - + பட்டியல் பிரிப்பான்: - + End Mark: - + முடிவு மார்க் செய்யவேண்டும்: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + பல மாற்று வசனம் பிரிப்பான்களுக்கு குறிப்பிடப்படும் +அவர்கள் ஒரு செங்குத்து பட்டை பிரிக்கப்பட்ட வேண்டும். "|" முன்னிருப்பு மதிப்பு பயன்படுத்த இந்த தொகு வரி அழிக்க தயவு செய்து. - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + பல மாற்று வீச்சு பிரிப்பான்களுக்கு குறிப்பிடப்படும் +அவர்கள் ஒரு செங்குத்து பட்டை பிரிக்கப்பட்ட வேண்டும். "|" முன்னிருப்பு மதிப்பு பயன்படுத்த இந்த தொகு வரி அழிக்க தயவு செய்து. - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + பல மாற்று பட்டியலில் பிரிப்பான்களுக்கு குறிப்பிடப்படும் +அவர்கள் ஒரு செங்குத்து பட்டை பிரிக்கப்பட்ட வேண்டும். "|" முன்னிருப்பு மதிப்பு பயன்படுத்த இந்த தொகு வரி அழிக்க தயவு செய்து. - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + பல மாற்று முடிவில் மதிப்பெண்கள் வரையறுக்கப்பட்ட +அவர்கள் ஒரு செங்குத்து பட்டை பிரிக்கப்பட்ட வேண்டும். "|" முன்னிருப்பு மதிப்பு பயன்படுத்த இந்த தொகு வரி அழிக்க தயவு செய்து. - + English - + ஆங்கிலம் - + Default Bible Language - + முன்னிருப்பு பைபிள் மொழி - + Book name language in search field, search results and on display: - + தேடல் துறையில் புத்தகத்தில் பெயர் மொழி, +தேடல் முடிவுகள் மற்றும் காட்சி: - + Bible Language - + பைபிள் மொழி - + Application Language - + பயன்பாட்டு மொழி BiblesPlugin.BookNameDialog - + Select Book Name - Seleziona il Nome del Libro + புத்தக பெயர் தேர்ந்தெடுக்கவும் - + Current name: - Nome Attuale: + தற்போதைய பெயர்: - + Corresponding name: - Nome corrispondente: + தொடர்புடைய பெயர்: - + Show Books From - Mostra i Libri da + புத்தகங்களை காட்டு - + Old Testament - Vecchio Testamento + பழைய ஏற்பாடு - + New Testament - Nuovo Testamento + புதிய ஏற்பாட - + Apocrypha - Libri Apocrifi + அதிகாரப்பூர்வமற்ற திருமறை ஏடுகள் - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + பின்வரும் புத்தகத்தில் பெயர் உள்நாட்டில் பொருந்தும் முடியாது. பட்டியலில் இருந்து தொடர்புடைய பெயர் தேர்ந்தெடுக்கவும். BiblesPlugin.BookNameForm - + You need to select a book. - È necessario selezionare un libro. + நீங்கள் ஒரு புத்தகத்தை தேர்ந்தெடுக்க வேண்டும். BiblesPlugin.CSVBible - + Importing books... %s - Importazione di libri ... %s + இறக்குமதி புத்தகங்கள்... %s - + Importing verses from %s... Importing verses from <book name>... - Importazione dei versetti da%s... + இருந்து வசனங்கள் இறக்குமதி... %s - + Importing verses... done. - Importazione dei versetti ... finito. + வசனங்கள் இறக்குமதி ... முடித்து BiblesPlugin.EditBibleForm - + Bible Editor - + பைபிள் எடிட்டர் - + License Details - + உரிமம் விவரம் - + Version name: - + பதிப்பை பெயர்: - + Copyright: - + காப்புரிமை: - + Permissions: - + அனுமதிகள்: - + Default Bible Language - + முன்னிருப்பு பைபிள் மொழி - + Book name language in search field, search results and on display: - + தேடல் புலம், தேடல் முடிவுகள் மற்றும் காட்சி புத்தக பெயரை மொழி: - + Global Settings - + குளோபல் அமைப்புகள் - + Bible Language - + பைபிள் மொழி - + Application Language - + பயன்பாட்டு மொழி - + English - + ஆங்கிலம் - + This is a Web Download Bible. It is not possible to customize the Book Names. - + இந்த ஒரு வலை பதிவிறக்கம் வேதாகமம் உள்ளது. +அது புத்தக பெயர்கள் தனிப்பயனாக்க முடியாது. - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + தனிப்பயனாக்கப்பட்ட புத்தகம் பெயர்களை பயன்படுத்த, "வேதாகமம் மொழி" என்ற தேர்ந்தெடுத்த Meta Data tab அல்லது "உலகளாவிய அமைப்புகள்" கட்டமைத்தல் OpenLP பைபிள் பக்கத்திலும், தேர்வு. BiblesPlugin.HTTPBible - + Registering Bible and loading books... - Registrazione della Bibbia e caricamento dei libri... + பதிவுசெய்யும் வேதாகமம் மற்றும் ஏற்றுவதில் புத்தகங்கள்... - + Registering Language... - Registrazione Lingua... + மொழி பதிவு செய்ய... - + Importing %s... Importing <book name>... - Importazione %s... + இறக்குமதி %s... - + Download Error - Errore di Download + பிழை பதிவிறக்கம் - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - C'è stato un problema nel scaricare il versetto selezionato. Si prega di verificare la connessione internet, se questo errore persiste considera di segnalarlo. + உங்கள் வசனம் தேர்வு பதிவிறக்கும் ஒரு பிரச்சனை இருந்தது. உங்கள் இணைய இணைப்பை சரிபார்த்து, இந்த பிழை ஏற்படலாம் தொடர்ந்து ஒரு பிழை அறிக்கை கருத்தில் தயவு செய்து தயவு செய்து. - + Parse Error - Errore di interpretazione + பிழை பாகுபடுத்த - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - C'è stato un problema di estrazione del versetto selezionato. Se questo errore persiste ti prego di segnalarlo. + உங்கள் வசனம் தேர்வு பிரித்தெடுப்பதில் சிக்கல் ஏற்பட்டது. இந்த பிழை ஏற்படலாம் தொடர்ந்து ஒரு பிழை அறிக்கை முயற்சியுங்கள். @@ -1065,27 +1077,27 @@ It is not possible to customize the Book Names. Bible Import Wizard - Importazione Guidata della Bibbia + வேதாகமம் இறக்குமதி வழிகாட்டி This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - Questa procedura guidata consente di importare Bibbie da una varietà di formati. Clicca il pulsante sottostante per avviare il processo, selezionando un formato da cui importare. + இந்த வழிகாட்டி நீங்கள் பல வடிவமைப்புகளில் இருந்து விவிலியங்களும் இறக்குமதி செய்ய உதவும். இருந்து இறக்குமதி செய்ய ஒரு வடிவம் தேர்ந்தெடுத்து துவங்கும் கீழே உள்ள அடுத்த பொத்தானை கிளிக் செய்யவும். Web Download - Web Download + இண்டர்நெட் பதிவிறக்கம் Location: - Località: + இடம்: Crosswalk - Crosswalk + கிராஸ்வாக் @@ -1095,929 +1107,962 @@ It is not possible to customize the Book Names. Bible: - Bibbia: + பரிசுத்த வேதாகமம்: Download Options - Opzione di Download + விருப்பங்கள் பதிவிறக்கம் Server: - Server: + சர்வர்: Username: - Nome utente: + பெயர்: Password: - Password: + கடவுச்சொல்லை: Proxy Server (Optional) - Proxy Server (Opzionale) + பதிலாள் சேவையகம் (விரும்பினால்) License Details - Dettaglio Licenza + உரிமம் விவரம் Set up the Bible's license details. - Configura i dettagli nelle Licenze delle Bibbie + வேதாகமம் உரிம விவரங்கள் அமைக்க. Version name: - Nome Versione: + பதிப்பு பெயர்: Copyright: - Copyright: + பதிப்புரிமை: Please wait while your Bible is imported. - Per favore attendi mentre la tua Bibbia viene importata. + உங்கள் வேதாகமம் இறக்குமதி வரை காத்திருங்கள். You need to specify a file with books of the Bible to use in the import. - È necessario specificare un file con i libri della Bibbia da utilizzare nell' importazione. + நீங்கள் இறக்குமதி பயன்படுத்த வேதாகமம் புத்தகங்களை ஒரு கோப்பு குறிப்பிட வேண்டும். You need to specify a file of Bible verses to import. - È necessario specificare un file dei versetti biblici da importare. + நீங்கள் இறக்குமதி செய்ய வேதாகமம் வசனங்கள் ஒரு கோப்பு குறிப்பிட வேண்டும். You need to specify a version name for your Bible. - Devi inserire un nome per la tua Bibbia + நீங்கள் உங்கள் வேதாகமம் ஒரு பதிப்பு பெயரை குறிப்பிட வேண்டும். You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - Devi inserire un copyright per la tua Bibbia. Bibbie di pubblico dominio devono essere contrassegnate come tali. + நீங்கள் உங்கள் வேதாகமம் ஒரு பதிப்புரிமை அமைக்க வேண்டும். பொது டொமைன் பைபிள் போன்ற குறித்தது வேண்டும். Bible Exists - La Bibbia esiste. + வேதாகமம் இருக்கிறது This Bible already exists. Please import a different Bible or first delete the existing one. - La bibbia esiste già. Importa una Bibbia differente o cancella quella inserita. + இந்த வேதாகமம் முன்பே இருக்கிறது. வேறு வேதாகமம் இறக்குமதி அல்லது முதல் இருக்கும் ஒரு நீக்கவும். Your Bible import failed. - Importazione della Bibbia fallita + உங்கள் வேதாகமம் இறக்குமதி தோல்வியடைந்தது. CSV File - File CSV + CSV கோப்பு Bibleserver - bibleserver + Bibleserver Permissions: - Permessi + அனுமதி: Bible file: - File della Bibbia + வேதாகமம் கோப்பு: Books file: - File dei libri + புத்தகங்கள் கோப்பு: Verses file: - File dei versi + வசனங்கள கோப்பு: openlp.org 1.x Bible Files - file openlp.org 1.x + openlp.org 1.x வேதாகமம் கோப்புகள் Registering Bible... - Aggigungendo la Bibbia + வேதாகமம் பதிவு செய்ய... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - Bibbia registrata. Attenzione, i versi saranno scaricati on demand è quindi richiesta una connessione internet + வேதாகமம் பதிவு. தயவு செய்து, அந்த வசனங்கள் +தேவையை பதிவிறக்கம் இதனால் இணைய இணைப்பு தேவை. BiblesPlugin.LanguageDialog - + Select Language - seleziona una lingua + மொழி தேர்ந்தெடு - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - OpenLP non è riuscito a determinare la lingua della Bibbia. Selezionala dalla lista sotto + OpenLP வேதாகமம் இந்த மொழிபெயர்ப்பு மொழியை தீர்மானிக்க முடியவில்லை. கீழே உள்ள பட்டியலில் இருந்து மொழி தேர்ந்தெடுக்கவும். - + Language: - Lingua: + மொழி: BiblesPlugin.LanguageForm - + You need to choose a language. - Devi scegliere una lingua. + நீங்கள் ஒரு மொழி தேர்வு செய்ய வேண்டும். BiblesPlugin.MediaItem - + Quick - Veloce + வேகமாக - + Find: - Cerca: + கண்டறிய: - + Book: - Libro: + புத்தகம்: - + Chapter: - Capitolo + பாடம்: - + Verse: - Verso + வசனம்: - + From: - Da: + இருந்து: - + To: - A: + அந்த: - + Text Search - Ricerca testo + உரை தேடல் - + Second: - Seconda + இரண்டாவது: - + Scripture Reference - Riferimento Biblico + நூல் குறிப்பு - + Toggle to keep or clear the previous results. - + முந்தைய முடிவுகளை வைத்து அல்லது அழிக்க மாறுவதற்கு. - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + நீங்கள் ஒற்றை மற்றும் இரட்டை வேதாகமம் வசனம் தேடல் முடிவுகளை இணைக்க முடியாது. உங்கள் தேடல் முடிவுகளை நீக்க மற்றும் ஒரு புதிய தேடலை தொடங்க வேண்டுமா? - + Bible not fully loaded. - Bibbia caricata parzialmente + வேதாகமம் முழுவதும் ஏற்ற. - + Information - Informazioni + தகவல் - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - La seconda Bibbia non contiene tutti i versi che sono nella Bibbia principale. Saranno mostrati solo i versi trovati in entrambe le Bibbie. %d versi non sono stati inclusi nei risultati + இரண்டாவது வேதாகமம் முக்கிய வேதாகமத்தில் அனைத்து வசனங்கள் இல்லை. இரண்டு விவிலியங்களும் காணப்படும் மட்டுமே வசனங்கள் காண்பிக்கப்படும். %d வசனங்கள் முடிவு சேர்க்கப்பட்டுள்ளது. - + Search Scripture Reference... - + தேடல் புனித குறிப்பு ... - + Search Text... - + உரை தேட ... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + நீங்கள் முற்றிலும் நீக்க வேண்டுமா "%s" பைபிள் OpenLP இருந்து? + +நீங்கள் இந்த பைபிள் மீண்டும் பயன்படுத்த மீண்டும் இறக்குமதி செய்ய வேண்டும். BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + தவறான பைபிள் கோப்பு வகை வழங்கப்படும். OpenSong விவிலியங்களும் சுருக்கப்படவில்லை. நீங்கள் இறக்குமதி முன் அவர்கள் decompress வேண்டும். BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... - Importando %s %s... + இறக்குமதி %s %s... BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + கண்டறியும் எழுத்துரு (இதற்கு சில நிமிடங்கள் ஆகக்கூடும்) ... - + Importing %s %s... Importing <book name> <chapter>... - Importando %s %s... + இறக்குமதி %s %s... BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - Seleziona una cartella per il backup + ஒரு காப்பு அடைவை தேர்ந்தெடு - + Bible Upgrade Wizard - + வேதாகமம் மேம்படுத்து வழிகாட்டி - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + இந்த வழிகாட்டி நீங்கள் OpenLP 2 ஒரு முன் பதிப்பு உங்கள் ஏற்கனவே விவிலியங்களும் மேம்படுத்த உதவும். மேம்படுத்தல் துவங்கும் கீழே உள்ள அடுத்த பொத்தானை கிளிக் செய்யவும். - + Select Backup Directory - Seleziona la cartella di backup + காப்பு அடைவை தேர்ந்தெடு - + Please select a backup directory for your Bibles - Seleziona la cartella di backup per le tue Bibbie + உங்கள் விவிலியங்களும் ஒரு காப்பு அடைவு தேர்ந்தெடுக்கவும் - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - Le precedenti versioni di OpenLP 2.0 non sono in grado di aggiornare le Bibbie. Verrà creata una copia di backup delle Bibbie attuali in modo che basterà copiare i files di backup nella cartella dei dati di OpenLp se c'è bisogno di ritornare a una vecchia versione di OpenLP. Le istruzioni su come ripristinare i files possono essere trovati nelle nostre <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. + OpenLP 2.0 முந்தைய வெளியீடுகளில் மேம்படுத்தப்பட்ட விவிலியங்களும் பயன்படுத்த முடியவில்லை. நீங்கள் OpenLP முந்தைய வெளியீட்டில் மாற்றியமைக்க வேண்டும் என்றால் நீங்கள் உங்கள் OpenLP தரவு அடைவு திரும்ப கோப்புகளை நகலெடுக்க முடியாது என்று இந்த உங்கள் தற்போதைய விவிலியங்களும் ஒரு காப்பு உருவாக்கும். கோப்புகளை மீட்க எவ்வாறு நம் காணலாம்<a href="http://wiki.openlp.org/faq">அடிக்கடி கேட்கப்படும் கேள்விகள்</a>. - + Please select a backup location for your Bibles. - + உங்கள் விவிலியங்களும் ஒரு காப்பு இருப்பிடத்தை தேர்ந்தெடுக்கவும். - + Backup Directory: - Cartella di backup: + காப்பு அடைவு: - + There is no need to backup my Bibles - Non eseguire il backup delle Bibbie + என் விவிலியங்களும் காப்பெடுக்க வேண்டிய அவசியம் இல்லை - + Select Bibles - Seleziona le Bibbie + விவிலியங்களும் தேர்ந்தெடுக்கவும் - + Please select the Bibles to upgrade - Seleziona le Bibbie da aggiornare + விவிலியங்களும் மேம்படுத்த தேர்ந்தெடுக்கவும் - + Upgrading - Aggiornamento + மேம்படுத்தும் - + Please wait while your Bibles are upgraded. - Attendi mentre la Bibbia viene aggiornata + உங்கள் விவிலியங்களும் மேம்படுத்தப்படும் போது UpgradingPlease காத்திருக்க. - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - Backup non riuscito. Necessari i permessi in scrittura per la cartella data. + காப்பு வெற்றிகரமாக அமையவில்லை. +நீங்கள் கொடுத்த அடைவில் எழுத அனுமதி தேவை உங்கள் விவிலியங்களும் காப்பெடுக்க. - + Upgrading Bible %s of %s: "%s" Failed - Aggiornamento della Bibbia %s di %s: "%s" -Fallito + தரத்தை உயர்த்துதல் வேதாகமம் %s of %s: "%s" +தோல்வியடைந்தது - + Upgrading Bible %s of %s: "%s" Upgrading ... - Aggiornamento della Bibbia %s di %s: "%s" -Aggiornamento + தரத்தை உயர்த்துதல் வேதாகமம் %s of %s: "%s" +தரத்தை உயர்த்துதல்... - + Download Error - Download Error + பிழை பதிவிறக்கம் - + To upgrade your Web Bibles an Internet connection is required. - Per aggiornare le Bibbie è richiesta una connessione internet + உங்கள் வலை விவிலியங்களும் மேம்படுத்த ஒரு இணைய இணைப்பு தேவை. - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - Aggiornamento della Bibbia %s di %s: "%s" -Aggiornamento %s + தரத்தை உயர்த்துதல் வேதாகமம் %s of %s: "%s" +தரத்தை உயர்த்துதல் %s ... - + Upgrading Bible %s of %s: "%s" Complete - Aggiornamento della Bibbia %s di %s: "%s" -Completato + தரத்தை உயர்த்துதல் வேதாகமம் %s of %s: "%s" +முடிக்க - + , %s failed - , %s fallito + , %s பிழை - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - Aggiornamento della\e Bibbia\e: %s riuscito %s -Attenzione i versi delle Bibbie Online saranno scaricati on demand è quindi richiesta una connessione a internet. + தரத்தை உயர்த்துதல் வேதாகமம் (கள்): %s நன்றாக முடித்து%s +இண்டர்நெட் விவிலியங்களும் இருந்து வசனங்கள் தேவையை பதிவிறக்கப்படும் மற்றும் இணைய இணைப்பு தேவை என்பதை நினைவில் கொள்ளவும். - + Upgrading Bible(s): %s successful%s - Aggiornamento Bibbia\e: %s completato %s + தரத்தை உயர்த்துதல் வேதாகமம் (கள்): %s நன்றாக முடித்து%s - + Upgrade failed. - Aggiornamento fallito. + மேம்படுத்த தோல்வியடைந்தது. - + You need to specify a backup directory for your Bibles. - Devi specificare una cartella per il backup delle Bibbie + உங்கள் விவிலியங்களும் ஒரு காப்பு அடைவு குறிப்பிட வேண்டும். - + Starting upgrade... - Avvio aggiornamento... + மேம்படுத்தப்பட்ட ஆரம்ப... - + There are no Bibles that need to be upgraded. - Non ci sono Bibbie che devono essere aggiornate. + ஒரு விவிலியங்களும் மேம்படுத்தப்பட வேண்டும் என்று இல்லை. CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>விருப்ப படவில்லை Plugin</strong><br /> +விருப்ப படவில்லை Plugin அதே வழியில் பாடல்கள் திரையில் முடியும் தனிப்பயன் உரை ஸ்லைடுகள் அமைக்க உதவுகிறது. இந்த Plugin இசை Plugin அதிகமான சுதந்திரத்தை வழங்குகிறது. - + Custom Slide name singular - Presentazione personalizzata + விருப்ப படவில்லை - + Custom Slides name plural - Presentazioni personalizzate + தனிபயன் படவில்லைகள் - + Custom Slides container title - Presentazioni Personalizzate - - - - Load a new custom slide. - Carica una nuova presentazione + தனிபயன் படவில்லைகள் - Import a custom slide. - Importa una presentazione + Load a new custom slide. + புதிய தனிப்பயன் ஸ்லைடை ஏற்ற. - Add a new custom slide. - Aggiungi una nuova presentazione + Import a custom slide. + விருப்ப படவில்லை இறக்குமதி. + Add a new custom slide. + புதிய தனிப்பயன் ஸ்லைடை சேர்க்க. + + + Edit the selected custom slide. - Modifica la presentazione selezionata + தேர்ந்தெடுத்த விருப்ப படவில்லை திருத்த. - + Delete the selected custom slide. - Cancella la presentazione selezionata + தேர்ந்தெடுத்த விருப்ப ஸ்லைடை நீக்க. - + Preview the selected custom slide. - Anteprima della presentazione selezionata + தேர்ந்தெடுத்த விருப்ப படவில்லை முன்னோட்டம். - + Send the selected custom slide live. - Manda live la presentazione selezionata + தற்சமயம் தேர்ந்தெடுத்த விருப்ப படவில்லை அனுப்ப. - + Add the selected custom slide to the service. - Aggiungi la presentazione selezionata al servizio + சேவைக்கு தேர்ந்தெடுத்த விருப்ப ஸ்லைடை சேர்க்க. CustomPlugin.CustomTab - + Custom Display - + தனிப்பயன் காட்சி - + Display footer - Mostra footer + அடிக்குறிப்பில் காட்ட CustomPlugin.EditCustomForm - + Edit Custom Slides - Modifica la presentazione + தனிபயன் படவில்லைகள் திருத்த - + &Title: - &Title: + &தலைப்பு: - + Add a new slide at bottom. - aggiungi una nuova diapositiva sotto + கீழே ஒரு புதிய ஸ்லைடை சேர்க்க. - + Edit the selected slide. - modifica la diapositiva selezionata + தேர்ந்தெடுத்த ஸ்லைடு திருத்த. - + Edit all the slides at once. - Modifica tutte le diapositive + ஒரே நேரத்தில் அனைத்து ஸ்லைடுகளையும் திருத்த. - + Split a slide into two by inserting a slide splitter. - Dividi la diapositiva in due inserendo un divisore + ஒரு ஸ்லைடு பிரிப்பி சேர்த்துக்கொள்வதன் மூலம் இரண்டு ஒரு ஸ்லைடு பிரிந்தது. - + The&me: - The&me: + தீ&ம்: - + &Credits: - &Credits: + &வரவுகளை: - + You need to type in a title. - Inserisci il titolo + நீங்கள் ஒரு தலைப்பை தட்டச்சு செய்ய வேண்டும். - + You need to add at least one slide - Inserisci almeno una diapositiva + நீங்கள் குறைந்தது ஒரு ஸ்லைடை சேர்க்க வேண்டும் - + Ed&it All - Ed&it Tutto + எல்லா தி&ருத்த - + Insert Slide - Inserisci diapositiva + படவில்லையை சேர்க்க CustomPlugin.EditVerseForm - + Edit Slide - + படவில்லை பதிப்பி CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + நீங்கள் %n தேர்ந்தெடுக்கப்பட்ட விருப்ப படவில்லை (கள்) நீக்க வேண்டுமா? + நீங்கள் %n தேர்ந்தெடுக்கப்பட்ட விருப்ப படவில்லை (கள்) நீக்க வேண்டுமா? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - - - - - Image - name singular - immagine + <strong>படம் Plugin</strong><br />படத்தை Plugin படங்களை காண்பிக்கும் வழங்குகிறது.<br /> +இந்த Plugin மேன்மையான அம்சங்கள் ஒரு சேவையை மேலாளர் ஒன்றாக படங்களை பல குழு திறன் ஆகும். பல படங்களை காண்பிக்கும் எளிதாக்கும். இந்த Plugin அந்த தானாக இயங்கும் ஒரு காட்சியை உருவாக்க OpenLP தான் "காலக்கெடு வளைவு" அம்சத்தை பயன்படுத்தலாம். இந்த கூடுதலாக, Plugin இருந்து படங்களை தற்போதைய தீம் பின்னணி புறக்கணிக்க பயன்படுத்த முடியும். அதற்கு பதிலாக வழங்கப்பட்ட பின்னணி ஒரு பின்னணி போன்ற தேர்ந்தெடுத்த படத்தை கொண்ட இசை போன்ற உரை சார்ந்த உருப்படிகளை வழங்குவதுமான இது + Image + name singular + படம் + + + Images name plural - Immagini + படிமங்கள் - + Images container title - Immagini + படிமங்கள் - + Load a new image. - Carica una nuova immagine - - - - Add a new image. - Aggiungi una nuova immagine + ஒரு புதிய படத்தை ஏற்ற. - Edit the selected image. - Modifica l'immagine selezionata + Add a new image. + ஒரு புதிய படத்தை சேர்க்க. - Delete the selected image. - Cancella l'immagine selezionata + Edit the selected image. + தேர்ந்தெடுத்த படத்தை திருத்த. - Preview the selected image. - Anteprima dell'immagine selezionata + Delete the selected image. + தேர்ந்தெடுத்த படத்தை நீக்கு. - Send the selected image live. - Invia l'immagine live + Preview the selected image. + தேர்ந்தெடுத்த படத்தை முன்னோட்டம். + Send the selected image live. + தற்சமயம் தேர்ந்தெடுத்த படம் அனுப்ப. + + + Add the selected image to the service. - Aggiungi l'immagine selezionata al servizio + சேவைக்கு தேர்ந்தெடுத்த படத்தை சேர்க்க. ImagePlugin.ExceptionDialog - + Select Attachment - Seleziona allegati + இணைப்பு தேர்ந்தெடுக்கவும ImagePlugin.MediaItem - + Select Image(s) - Seleziona immagine(i) + தேர்ந்தெடுக்கவும் படம் (கள்) - + You must select an image to delete. - Seleziona almeno 1 immagine da eliminare + நீங்கள் நீக்க ஒரு படத்தை தேர்ந்தெடுக்க வேண்டும். - + You must select an image to replace the background with. - Devi selezionare almeno 1 immagine con cui sostituire lo sfondo + நீங்கள் பின்னணி பதிலாக ஒரு படத்தை தேர்வு செய்ய வேண்டும் - + Missing Image(s) - Immagini mancanti + காணாமல் போன படம் (கள்) - + The following image(s) no longer exist: %s - Impossibile trovare le seguenti immagini: %s + இந்த படம் (கள்) இல்லை: %s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - Impossibile trovare le seguenti immagini: %s -Vuoi comunque caricare le altre immagini? + பின்வரும் படத்தை (கள்) இனி இல்லை: %s +இருப்பினும் மற்ற படங்களை சேர்க்கவும் வேண்டுமா? - + There was a problem replacing your background, the image file "%s" no longer exists. - E' stato riscontrato un errore nel sostituire lo sfondo, impossibile trovare il file "%s". + உங்கள் பின்னணி பதிலாக ஒரு பிரச்சனை இருந்தது, பட கோப்பு "%s" இல்லை. - + There was no display item to amend. - Nessun elemento visualizzato da modificare + திருத்தும் இல்லை காட்சி பொருளாக இருந்தது. ImagesPlugin.ImageTab - + Background Color - Colore di sfondo + பின்புல நிறம் - + Default Color: - Colore di default: + இயல்பான நிறம்: - + Visible background for images with aspect ratio different to screen. - + திரையில் பல்வேறு அம்சம் விகிதம் படங்களை பார்க்க பின்னணி. MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - <strong>Media Plugin</strong><br />Il plug in multimediale fornisce supporto per l'audio e il video - - - - Media - name singular - Media + <strong>ஊடக Plugin</strong><br /> ஊடக Plugin ஆடியோ மற்றும் வீடியோ பின்னணி வழங்குகிறது. Media - name plural - Media + name singular + ஊடக - + + Media + name plural + ஊடக + + + Media container title - Media + ஊடக - + Load new media. - Carica un nuovo media - - - - Add new media. - Aggiungi un nuovo media + புதிய ஊடக ஏற்ற. - Edit the selected media. - modifica il media selezionato + Add new media. + புதிய ஊடக சேர்க்கவும். - Delete the selected media. - cancella il media selezionato + Edit the selected media. + தேர்ந்தெடுத்த ஊடக திருத்து. - Preview the selected media. - Anteprima del media selezionato + Delete the selected media. + தேர்ந்தெடுத்த ஊடக நீக்கு - Send the selected media live. - Manda live il media selezionato + Preview the selected media. + தேர்ந்தெடுத்த ஊடக முன்னோட்டம். + Send the selected media live. + தற்சமயம் தேர்ந்தெடுத்த ஊடக அனுப்ப + + + Add the selected media to the service. - Aggiungi il media selezionato al servizio + சேவைக்கு தேர்ந்தெடுத்த ஊடக சேர்க்கவும் MediaPlugin.MediaItem - + Select Media - Seleziona media + ஊடக தேர்ந்தெடுக்கவும் - + You must select a media file to delete. - Devi prima selezionare un media da cancellare + நீங்கள் ஒரு ஊடக கோப்பு நீக்க ஒரு கோப்பை தேர்ந்தெடுக்கவும். - + You must select a media file to replace the background with. - Devi prima selezionare un file multimediale con cui sostituire lo sfondo + நீங்கள் பின்னணி இடமாற்றம் செய்ய ஒரு ஊடக கோப்பு தேர்ந்தெடுக்க வேண்டும். - + There was a problem replacing your background, the media file "%s" no longer exists. - E' stato riscontrato un errore nel sostituire lo sfondo, impossibile trovare il file "%s". + உங்கள் பின்னணி பதிலாக ஒரு பிரச்சனை உள்ளது, ஊடக கோப்பு "%s" இல்லை. - + Missing Media File - impossibile trovare il file multimediale + ஊடக கோப்பு காணவில்லை - + The file %s no longer exists. - Impossibile trovare il file %s + கோப்பு %s உள்ளது இல்லை. - + Videos (%s);;Audio (%s);;%s (*) - Video (%s);;Audio (%s);;%s (*) + வீடியோக்கள (%s);;ஆடியோ (%s);;%s (*) - + There was no display item to amend. - Nessun elemento visualizzato da modificare + திருத்தும் இல்லை காட்சி பொருளாக இருந்தது. - + Unsupported File - File non supportato + ஆதரிக்கப்படவில்லை கோப்பு - + Automatic - Automatico + தானியங்கு - + Use Player: - Usa player: + பயன்படுத்த பிளேயர் MediaPlugin.MediaTab - + Available Media Players - Media player disponibili + கிடைக்கும மீடியா பிளேயர் - + %s (unavailable) - %s (non disponibile) + %s (கிடைக்கவில்லை) - + Player Order - Ordine di riproduzione + பிளேயர் ஒழுங்கு - + Allow media player to be overridden - + மீடியா பிளேயர் மேலெழுதப்படலாம் அனுமதி OpenLP - + Image Files - File immagine + படம் கோப்புகள் - + Information - Informazione + தகவல் - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - Il formato della Bibbia è stato modificato. -Aggiorna le Bibbie esistenti. -OpenLP deve aggiornarle ora? + வேதாகமம் வடிவம் மாறிவிட்டது. +நீங்கள் உங்கள் இருக்கும் விவிலியங்களும் மேம்படுத்த வேண்டும். +OpenLP இப்போது மேம்படுத்த வேண்டும்? OpenLP.AboutForm - + Credits - Crediti + நற்பெயர்களை - + License - Licensa + உரிமம் - - Contribute - Contributi - - - + build %s - build %s + கட்ட %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + இந்த திட்டத்தின் ஒரு இலவச மென்பொருள்; நீங்கள் விதிகளின் கீழ் அது மறுவிநியோகம் / அல்லது அதை மாற்ற முடியாது GNU General Public License என வெளியிடப்பட்டது Free Software Foundation; version 2 of the License. - + This program 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 below for more details. - + இந்த திட்டம் பயனுள்ளதாக இருக்கும் என்று நம்பிக்கையில் விநியோகிக்கப்படுகிறது, ஆனால் எந்த உத்தரவாதமும் இல்லாதது; ஒரு குறிப்பிட்ட நோக்கத்துக்கு சந்தைப்படுத்துதல் அல்லது கூட மறைமுகமான காப்புறுதிகளும் இல்லாமல். மேலும் விவரங்களுக்கு கீழே காண்க. - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + பதிப்புரிமை © 2004-2012 %s +பகுதிகள் காப்புரிமை © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <version><revision> - திற மூல பாடல்வரிகளை கணிப்பு + +OpenLP பயன்படுத்தி வணங்க சபைக்காக (ஈர்க்க, பவர்பாயிண்ட் அல்லது பவர்பாயிண்ட் பார்வையாளர் நிறுவப்பட்டிருந்தால்) பாடல்கள், பைபிள் வசனங்கள், வீடியோக்கள், படங்கள், மற்றும் விளக்கக்காட்சிகளை ஸ்லைடுகளை காட்ட பயன்படுத்தப்படுகிறது இலவச தேவாலயத்தில் வழங்கல் மென்பொருள், அல்லது பாடல் திட்டம் மென்பொருள் ஆகும் ஒரு கணினி மற்றும் ஒரு தரவு ப்ரொஜெக்டர் + +OpenLP பற்றி மேலும் அறிய.: http://openlp.org/ + +OpenLP தொண்டர்கள் எழுதி பராமரிக்கப்படுகிறது. மேலும் இலவச கிரிஸ்துவர் மென்பொருள் எழுதி பார்க்க விரும்பினால், கீழே உள்ள பொத்தானை பயன்படுத்தி தன்னார்வ முயற்சியுங்கள். + + + + Volunteer + மேற்கொள் + + + Project Lead %s @@ -2036,12 +2081,20 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2050,7 +2103,7 @@ Translators %s Japanese (ja) %s - Norwegian Bokmål (nb) + Norwegian Bokmål (nb) %s Dutch (nl) %s @@ -2058,13 +2111,15 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s Documentation %s Built With Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ @@ -2079,419 +2134,465 @@ Final Credit on the cross, setting us free from sin. We bring this software to you for free because He has set us free. - Project Lead - %s + திட்டம் முன்னணி +%s -Developers - %s +டெவலப்பர்கள் + %s -Contributors - %s +பங்களிப்பாளர்கள் +%s -Testers - %s +சோதனையாளர்களுக்கு +%s -Packagers - %s +சிப்பமிடுபவர்கள் +%s -Translators - Afrikaans (af) - %s - German (de) - %s - English, United Kingdom (en_GB) - %s - English, South Africa (en_ZA) - %s - Estonian (et) - %s - French (fr) - %s - Hungarian (hu) - %s - Japanese (ja) - %s - Norwegian Bokmål (nb) - %s - Dutch (nl) - %s - Portuguese, Brazil (pt_BR) - %s - Russian (ru) - %s +மொழிபெயர்ப்பாளர் +ஆஃப்ரிகான்ஸ் (af) +%s + செக் (cs) +%s +டேனிஷ் (da) +%s +ஜெர்மன் (de) +%s +கிரேக்கம் (el) +%s +ஆங்கிலம், ஐக்கிய ராஜ்யம் (en_GB) +%s +ஆங்கிலம், தென் ஆப்ரிக்கா (en_ZA) +%s +ஸ்பானிஷ் (es) +%s +எஸ்தானியம் (et) +%s +பிரஞ்சு (fr) +%s +ஹங்கேரிய (hu) +%s +ஜப்பனீஸ் (ja) +%s +நோர்வே போக்மால் (nb) +%s +டச்சு (nl) +%s +போர்த்துகீசியம், பிரேசில் (pt_BR) +%s +ரஷியன் (ru) +%s +ஸ்வீடிஷ் (sv) +%s Documentation - %s +%s -Built With - Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ - PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro - Oxygen Icons: http://oxygen-icons.org/ +பில்ட் நிலையில் +Python: http://www.python.org/ +Qt4: http://qt.digia.com/ +PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro +Oxygen Icons: http://oxygen-icons.org/ -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 +இறுதி கடன் +"தேவன், தம்முடைய ஒரேபேறான குமாரனை +விசுவாசிக்கிறவன் எவனோ அவன் +கெட்டுப்போகாமல் நித்தியஜீவனை அடையும்படிக்கு, அவரைத் தந்தருளி, இவ்வளவாய் உலகத்தில் அன்புகூர்ந்தார்." --யோவான 3:16 - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - OpenLP <version><revision> - Open Source Lyrics Projection +குறைந்தது கடந்த ஆனால், இறுதி கடன் பாவம் +நம்மை இலவச அமைக்க, சிலுவையில் இறக்க அவரது மகன் அனுப்புவதற்கு,கடவுள் எங்கள் தந்தையின் செல்லும். நாம் அவர் நம்மை விடுவிக்க ஏனெனில் இலவசமாக +நீங்கள் இந்த மென்பொருள் கொண்டு. -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + OpenLP.AdvancedTab - + UI Settings - + பயனர் இடைமுக அமைப்புகள் - + Number of recent files to display: - Numero di files recenti da visualizzare + காண்பிக்க சமீபத்திய கோப்புகளை எண்: - + Remember active media manager tab on startup - + செயலில் ஊடக மேலாளர் நினைவிருக்கிறதா தொடக்கத்தில் தாவல் - + Double-click to send items straight to live - Doppio click, invia direttamente al live + உருப்படிகள தற்சமயம் அனுப்ப இருமடங்காக கிளிக செய - + Expand new service items on creation - Espandi i nuovi elementi del servizio alla creazione + உருவாக்கம் புதிய சேவையை உருப்படிகள் விரிவாக்கம் - + Enable application exit confirmation - Chiedi prima di uscire + பயன்பாடு வெளியேறும் உறுதி செயல்படுத்த - + Mouse Cursor - Cursore del mouse + இடஞ்சுட்டியை - + Hide mouse cursor when over display window - Nascondi il cursore del mouse sopra la finestra di visualizzazione + இடஞ்சுட்டியை மறைக்க போது காட்சி ஜன்னல் வழியாக - + Default Image - Immagine di default + இயல்பான படம் - + Background color: - Colore di sfondo: + பின்னணி நிறம்: - + Image file: - File immagine: + படம் கோப்பு: - + Open File - Apri file + கோப்பு திற - + Advanced - Avanzate + முன்னேறிய - + Preview items when clicked in Media Manager - Anteprima degli elementi clikkati in media manager + முன்னோட்டம் உருப்படிகள் ஊடக மேலாளர் சொடுக்கப்படும் போது - + Click to select a color. - Click per scegliere un colore + ஒரு வண்ண தேர்ந்தெடுக்க கிளிக். - + Browse for an image file to display. - Scegli un'immagine da visualizzare + காண்பிக்க ஒரு படத்தை கோப்பு உலவ. - + Revert to the default OpenLP logo. - Ritorna al logo di openLP di default + முன்னிருப்பு OpenLP லோகோ மீட்டெடு. - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + சேவையை %Y-%m-%d %H-%M - + Default Service Name - + இயல்பான சேவையை பெயர - + Enable default service name - + இயல்பான சேவை பெயர் செயல்படுத்த - + Date and Time: - + தேதி மற்றும் நேரம்: - + Monday - + திங்கட்கிழமை - + Tuesday - + செவ்வாய்க்கிழமை - + Wednesday - + புதன்கிழமை - + Thurdsday - + வியாழக்கிழமை - + Friday - + வெள்ளி - + Saturday - + சனிக்கிழமை - + Sunday - + ஞாயிற்றுக்கிழமை - + Now - + இப்பொழுது - + Time when usual service starts. - + வழக்கம்போல் சேவையை தொடங்கும்நேரம். - + Name: - + பெயர்: - + Consult the OpenLP manual for usage. - + பயன்பாட்டுக்கு OpenLP கையேட்டினை. - + Revert to the default service name "%s". - + இயல்பான சேவை பெயர் மாற்றியமை "%s". - + Example: - + உதாரணமாக: - + X11 - + X11 Bypass X11 Window Manager - + விண்டோ மேலாளர் புறவழி X11 - + Syntax error. - + தொடரியல் பிழை. - + Data Location - + தரவு இடம் - + Current path: - + இப்பொழுது பாதையை: - + Custom path: - + உங்கள் பாதையை: - + Browse for new data file location. - + புதிய தரவு கோப்பு இடத்திற்கு உலவ. - + Set the data location to the default. - + முன்னிருப்பு தரவு இடத்தில் அமைக்க. - + Cancel - + ரத்து - + Cancel OpenLP data directory location change. - + OpenLP தரவு அடைவு இடம் மாற்றம் ரத்து. - + Copy data to new location. - + புதிய இடத்திற்கு தரவு நகலெடுக்க. - + Copy the OpenLP data files to the new location. - + புதிய இடத்திற்கு OpenLP தரவு கோப்புகளை நகலெடுக்க. - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>எச்சரிக்கை:</strong> புதிய தரவு அடைவு இடம் OpenLP தரவு கோப்புகளை கொண்டுள்ளது. இந்த கோப்புகள் ஒரு பிரதியை போது இடமாற்றப்படும். - + Data Directory Error - + தரவு இடத்தில் பிழை - + Select Data Directory Location - + தரவு இடம் தேர்ந்தெடு - + Confirm Data Directory Change - + தரவு அடைவு மாற்றம் உறுதி - + Reset Data Directory - + தரவு இடத்தில் மீட்டமை - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + நீங்கள் முன்னிருப்பு இடத்திற்கு OpenLP தரவு அடைவு இடம் மாற்ற வேண்டுமா? + +OpenLP மூடிய பிறகு இந்த இடம் பயன்படுத்தப்படும். - + Overwrite Existing Data - + ஏற்கனவே தகவல்கள் மேலெழுதும் + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + OpenLP தரவு அடைவு இல்லை + +%s + + +இந்த தரவு அடைவு முன்னர் OpenLP முன்னிருப்பு இடம் மாற்றப்பட்டது. புதிய இடம் நீக்கக்கூடிய ஊடகத்தில் இருந்தால், அந்த ஊடக கிடைக்க வேண்டும். + +OpenLP ஏற்றும் நிறுத்த "இல்லை" என்பதை கிளிக் செய்யவும். நீங்கள் இந்த சிக்கலை தீர்க்க அனுமதிக்கிறது. + +இயல்புநிலை இருப்பிடம் தரவு அடைவு மீட்டமைக்க "ஆம்" கிளிக் செய்யவும். + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + நீங்கள் OpenLP தரவு அடைவு இடம் மாற்ற வேண்டுமா: + +%s + +OpenLP மூடப்படும் போது தரவு அடைவு மாற்றப்படும். + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + எச்சரிக்கை: + +நீங்கள் தேர்ந்தெடுத்த இடம் + +%s + +OpenLP தரவு கோப்புகள் கொண்டிருப்பதாக தோன்றுகிறது. தற்போதைய தரவு இந்த கோப்புகளை பதிலாக விரும்புகிறீர்களா OpenLP.ExceptionDialog - + Error Occurred - Errore + பிழை ஏற்பட்டது - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + அடடா! OpenLP பிரச்சனை வெற்றி, மற்றும் மீட்க முடியவில்லை. பெட்டியில் உரை கீழே OpenLP டெவலப்பர்களுக்கு பயனுள்ளதாக இருக்கும் என்று தகவல்கள், அதனால் பிரச்சனை ஏற்பட்டது போது நீங்கள் என்ன செய்கிறீர்கள் என்று ஒரு விரிவான விளக்கத்தை சேர்த்து, bugs@openlp.org மின்னஞ்சல் செய்யவும். - + Send E-Mail - Invia una E-Mail + மின்னஞ்சல் அனுப்ப - + Save to File - Save to File + கோப்பு சேமிக்க - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - Inserisci una descrizione di quello che stavi facendo quando si è verificato l'errore -(minimo 20 caratteri) + நீங்கள் இந்த பிழை +ஏற்படுத்த என்ன செய்கிறீர்கள் என்று ஒரு விவரத்தை (குறைந்தது 20 எழுத்துகள்) உள்ளிடவும் - + Attach File - Allega file + கோப்பை இணை - + Description characters to enter : %s - Descrizione dei caratteri da inserire: %s + விளக்கம் எழுத்துகள் நுழைய: %s OpenLP.ExceptionForm - + Platform: %s - Platform: %s + தளம்: %s - + Save Crash Report - Salva il report dei crash + க்ராஷ் அறிக்கையை சேமிக்க - + Text files (*.txt *.log *.text) - File di testo (*.txt *.log *.text) + உரை கோப்புகள (*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2506,10 +2607,23 @@ Version: %s --- Library Versions --- %s - + **OpenLP Bug Report** +Version: %s + +--- Details of the Exception. --- + +%s + +--- Exception Traceback --- +%s +--- System information --- +%s + --- Library Versions --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2525,4722 +2639,4868 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + *OpenLP Bug Report* +Version: %s + +--- Details of the Exception. --- + +%s + +--- Exception Traceback --- +%s +--- System information --- +%s +--- Library Versions --- +%s + OpenLP.FileRenameForm - + File Rename - Rinomina file + மறுபெயரிடு தாக்கல் - + New File Name: - Nuovo nome file + புதிய கோப்பு பெயர்: - + File Copy - copia file + கோப்பு நகல் OpenLP.FirstTimeLanguageForm - + Select Translation - Seleziona Traduzione + மொழிபெயர்ப்பு தேர்ந்தெடுக்கவும் - + Choose the translation you'd like to use in OpenLP. - Seleziona la traduzione che vuoi usare in OpenLP + நீங்கள் OpenLP பயன்படுத்த விரும்பும் மொழிபெயர்ப்பு தேர்வு. - + Translation: - Traduzione: + மொழிபெயர்ப்பு: OpenLP.FirstTimeWizard - + Songs - Canti + பாடல்கள் - + First Time Wizard - + முதல் நேரம் விசார்ட் - + Welcome to the First Time Wizard - + முதலில் நேரம் விசார்ட் வரவேற்கிறோம் - + Activate required Plugins - Attiva i plug in richiesti + தேவையான Plugins செயல்படுத்த - + Select the Plugins you wish to use. - Seleziona i plugin che vuoi usare - - - - Bible - Bibbia + நீங்கள் பயன்படுத்தும் விரும்பும் Plugins தேர்ந்தெடுக்கவும். - Images - Immagini + Bible + வேதாகமம் - - Presentations - Presentazioni + + Images + படிமங்கள் - Media (Audio and Video) - Media (audio e video) + Presentations + விளக்கக்காட்சிகள் - Allow remote access - Permetti accesso remoto + Media (Audio and Video) + ஊடக (ஆடியோ ,வீடியோ) - Monitor Song Usage - + Allow remote access + தொலைநிலை அணுகல் அனுமதி - Allow Alerts - Permetti avvertimenti - - - - Default Settings - Impostazioni di default - - - - Downloading %s... - Downloading %s... - - - - Download complete. Click the finish button to start OpenLP. - Download completato. Click il pulsante fine per avviare OpenLP - - - - Enabling selected plugins... - Abilito i plugin selezionati... + Monitor Song Usage + பாடல் பயன்பாடு கண்காணிக்க - No Internet Connection - Nessuna connessione a internet - - - - Unable to detect an Internet connection. - Impossibile rilevare una connessione internet - - - - Sample Songs - Canti di esempio - - - - Select and download public domain songs. - Seleziona e scarica canti di pubblico dominio - - - - Sample Bibles - Bibbie campione - - - - Select and download free Bibles. - Seleziona e scarica Bibbie free - - - - Sample Themes - Themi campione - - - - Select and download sample themes. - Seleziona e scarica i temi campione + Allow Alerts + எச்சரிக்கை அனுமதி - Set up default settings to be used by OpenLP. - Impostazioni di default per OpenLP + Default Settings + இயல்புநிலை அமைப்புகள் + + + + Downloading %s... + பதிவிறக்குகிறது %s... + + + + Download complete. Click the finish button to start OpenLP. + முழு பதிவிறக்கம். OpenLP தொடங்க முடித்து பொத்தானை கிளிக் செய்யவும். + + + + Enabling selected plugins... + தேர்ந்தெடுத்த plugins செயல்படுத்துகிறது ... + + + + No Internet Connection + இண்டர்நெட் இணைப்பு இல்லை + + + + Unable to detect an Internet connection. + இணைய இணைப்பு கண்டறிய முடியவில்லை. + + + + Sample Songs + மாதிரி பாடல்கள் + + + + Select and download public domain songs. + பொது டொமைன் இசை தேர்வு மற்றும் பதிவிறக்க. + + + + Sample Bibles + மாதிரி விவிலியங்களும் + + + + Select and download free Bibles. + ேர்வு மற்றும் இலவச விவிலியங்களும் பதிவிறக்க. + + + + Sample Themes + மாதிரி தீம்கள் + + + + Select and download sample themes. + தேர்வு மற்றும் மாதிரி கருப்பொருள்கள் பதிவிறக்க. - Default output display: - Schermo di output predefinito + Set up default settings to be used by OpenLP. + OpenLP பயன்படுத்த வேண்டிய இயல்புநிலை அமைப்புகளை அமைக்கவும். - Select default theme: - Seleziona il tema di default + Default output display: + இயல்பான வெளிப்பாடு காட்சி: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + இயல்புநிலை தீம் தேர்வு: - Finish - + Starting configuration process... + கட்டமைப்பு பணியை துவக்க ... - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + இந்த வழிகாட்டி நீங்கள் ஆரம்ப பயன்படுத்த OpenLP கட்டமைக்க உதவும். துவக்க கீழே அடுத்த பொத்தானை கிளிக் செய்யவும். + + + + Setting Up And Downloading + அமைக்கவும் மற்றும் பதிவிறக்குகிறது + + + + Please wait while OpenLP is set up and your data is downloaded. + OpenLP அமைக்கப்பட்டுள்ளது உங்கள் தரவு பதிவிறக்கம் வரை காத்திருக்கவும். + + + + Setting Up + அமைக்கவும் + + + + Click the finish button to start OpenLP. + OpenLP தொடங்க முடிவில் பொத்தானை கிளிக் செய்யவும். + + + + Download complete. Click the finish button to return to OpenLP. + முழு பதிவிறக்க. OpenLP திரும்ப முடிவில் பொத்தானை கிளிக் செய்யவும். + + + + Click the finish button to return to OpenLP. + OpenLP திரும்ப முடிவில் பொத்தானை கிளிக் செய்யவும். + + + + Custom Slides + தனிபயன் படவில்லைகள் + + + + Finish + முடித்துவிடு + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + இணைய இணைப்பு கிடைத்தது இல்லை. மாதிரி பாடல்கள், விவிலியங்களும் மற்றும் தீம்களை பதிவிறக்க முடியும் பொருட்டு முதல் நேரம் வழிகாட்டி இணைய இணைப்பு தேவை. ஆரம்ப அமைப்புகள் மற்றும் மாதிரி தரவு OpenLP தொடங்க இப்போது பினிஷ் பொத்தானை கிளிக் செய்யவும். + +முதல் நேரம் விசார்ட் மீண்டும் இயக்க மற்றும் ஒரு பின்னர் நேரத்தில் இந்த மாதிரி தரவு இறக்குமதி, உங்கள் இணைய இணைப்பு சரிபார்க்க இந்த வழிகாட்டி "கருவிகள் தேர்ந்தெடுப்பதன் மூலம் மீண்டும் இயக்க / OpenLP இருந்து "முதல் நேரம் விசார்ட் மீண்டும் இயக்க. - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + + +முற்றிலும் முதல் நேரம் வழிகாட்டி (மற்றும் OpenLP தொடங்க) ரத்து செய்ய, இப்போது ரத்து பொத்தானை கிளிக் செய்யவும். OpenLP.FormattingTagDialog - + Configure Formatting Tags - + வடிவமைத்தல் குறிச்சொற்கள் கட்டமைக்க - + Edit Selection - + தேர்வு தொகு - + Save - + சேமி - + Description - + விளக்கம் - + Tag - + Tag - + Start HTML - + HTML தொடங்கு - + End HTML - + HTML முடிவுக்கு OpenLP.FormattingTagForm - + Update Error - + பிழை ஏற்பட்டது புதுப்பிக்க - + Tag "n" already defined. - + Tag "n" ஏற்கனவே இருக்கிறது. - + New Tag - + புதிய Tag - + <HTML here> - + <HTML here> - + </and here> - + </மற்றும் இங்கே> - + Tag %s already defined. - + Tag %s ஏற்கனவே இருக்கிறது. OpenLP.FormattingTags - + Red - + சிவப்பு - + Black - + கருப்பு - + Blue - + நீலம் - + Yellow - + மஞ்சள் - + Green - + பச்சை - + Pink - + இளஞ்சிவப்பு - + Orange - + ஆரஞ்சு - + Purple - + ஊதா வர்ணம் - + White - + வெண்மையான - + Superscript - + Superscript - + Subscript - + Subscript - + Paragraph - + பத்தி - + Bold - + போல்ட் - + Italics - + இடாலிக்ஸில் - + Underline - + வலியுறுத்து - + Break - + இடைநிறுத்து OpenLP.GeneralTab - - - General - - + General + பொதுவான + + + Monitors - + திரைகள் - + Select monitor for output display: - + வெளியீடு காட்சிக்கு கண்காணிக்க தேர்வு: - + Display if a single screen - + காண்பிக்க ஒரு ஒற்றை திரை - + Application Startup - + பயன்பாடு தொடக்க - + Show blank screen warning - + வெற்று திரையில் எச்சரிக்கை காட்டு - + Automatically open the last service - + தானாக கடந்த சேவையை திறக்க - + Show the splash screen - + தெறித்தால் திரையில் காண்பிக்க - + Application Settings - + பயன்பாடு அமைப்புகள் - + Prompt to save before starting a new service - + ஒரு புதிய சேவையை துவங்கும் முன் சேமிக்க கேட்கும் - + Automatically preview next item in service - - - - - sec - + தானாக சேவை அடுத்த உருப்படியை முன்னோட்டத்தை + sec + sec + + + CCLI Details - + CCLI விவரம் - + SongSelect username: - + SongSelect பயனர்பெயர்: - + SongSelect password: - - - - - X - + SongSelect கடவுச்சொல்லை: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + உயரம் - Background Audio - + Width + அகலம் - + + Check for updates to OpenLP + மேம்படுத்தல்கள் OpenLP என்று சோதிக்க + + + + Unblank display when adding new live item + புதிய உருப்படியை சேர்க்கும் போது வெற்று டிஸ்ப்ளே மீளமை செய் + + + + Timed slide interval: + நேரம் முடிந்துவிட்டது ஸ்லைடு இடைவெளியில்: + + + + Background Audio + பின்னணி இசை + + + Start background audio paused - + தொடங்கு பின்னணி ஆடியோ இடைநிறுத்தப்படும் Service Item Slide Limits - + சேவையை பொருள் படவில்லை எல்லைகள் - + Override display position: - + நிலையை காட்ட புறக்கணிக்க: - + Repeat track list - + டிராக் பட்டியலில் மீண்டும் போட்டு Behavior of next/previous on the last/first slide: - + அடுத்த / முந்தைய கடைசி / முதல் ஸ்லைடு நடத்தை: &Remain on Slide - + &படவில்லை இருக்கும் &Wrap around - + &சுற்றி வளைத்துக்கொள்கின்றன &Move to next/previous service item - + &முந்தைய / அடுத்த சேவை உருப்படியை வைக்க OpenLP.LanguageManager - + Language - + மொழி - + Please restart OpenLP to use your new language setting. - + உங்கள் புதிய மொழி அமைப்பு பயன்படுத்த OpenLP மறுதொடக்கம் செய்க. OpenLP.MainDisplay - + OpenLP Display - + OpenLP காட்சி OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - &Tools - + &File + &கோப்பு - &Settings - + &Import + &இறக்குமதி - - &Language - - - - - &Help - + + &Export + &ஏற்றுமதி - Media Manager - + &View + &பார்க்க + + + + M&ode + ப&யன்முறை - Service Manager - + &Tools + &கருவிகள் - - Theme Manager - + + &Settings + &அமைப்புகள் + + + + &Language + &மொழி - &New - + &Help + &உதவி + + + + Media Manager + ஊடக மேலாளர - &Open - + Service Manager + சேவையை மேலாளர் - Open an existing service. - + Theme Manager + தீம் மேலாளர் + &New + &புதிய + + + + &Open + &திறந்த + + + + Open an existing service. + ஏற்கனவே சேவை திறக்க. + + + &Save - + &சேமி - + Save the current service to disk. - - - - - Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - - - - - E&xit - - - - - Quit OpenLP - - - - - &Theme - - - - - &Configure OpenLP... - - - - - &Media Manager - - - - - Toggle Media Manager - - - - - Toggle the visibility of the media manager. - - - - - &Theme Manager - - - - - Toggle Theme Manager - - - - - Toggle the visibility of the theme manager. - - - - - &Service Manager - - - - - Toggle Service Manager - - - - - Toggle the visibility of the service manager. - - - - - &Preview Panel - - - - - Toggle Preview Panel - - - - - Toggle the visibility of the preview panel. - - - - - &Live Panel - - - - - Toggle Live Panel - - - - - Toggle the visibility of the live panel. - - - - - &Plugin List - - - - - List the Plugins - - - - - &User Guide - - - - - &About - - - - - More information about OpenLP - - - - - &Online Help - - - - - &Web Site - - - - - Use the system language, if available. - - - - - Set the interface language to %s - - - - - Add &Tool... - - - - - Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - - - - - &Live - - - - - Set the view mode to Live. - - - - - Version %s of OpenLP is now available for download (you are currently running version %s). - -You can download the latest version from http://openlp.org/. - - - - - OpenLP Version Updated - - - - - OpenLP Main Display Blanked - - - - - The Main Display has been blanked out - - - - - Default Theme: %s - - - - - English - Please add the name of your language here - Italian - - - - Configure &Shortcuts... - - - - - Close OpenLP - - - - - Are you sure you want to close OpenLP? - - - - - Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - - - - - Update Theme Images - - - - - Update the preview images for all themes. - + வட்டு தற்போதைய சேவை சேமி. + Save &As... + இவ்வாறு &சேமி... + + + + Save Service As + சேவையை இவ்வாறு சேமி + + + + Save the current service under a new name. + ஒரு புதிய பெயரின் கீழ் நடப்பு சேவை சேமி. + + + + E&xit + வெ&ளியேற + + + + Quit OpenLP + OpenLP முடி + + + + &Theme + &தீம் + + + + &Configure OpenLP... + &OpenLP கட்டமைக்க ... + + + + &Media Manager + &ஊடக மேலாளர் + + + + Toggle Media Manager + நிலைமாற்று ஊடக மேலாளர் + + + + Toggle the visibility of the media manager. + ஊடக மேலாளர் தெரிவுநிலையை மாறுவதற்கு. + + + + &Theme Manager + &தீம் மேலாளர் + + + + Toggle Theme Manager + நிலைமாற்று கருத்து மேலாளர் + + + + Toggle the visibility of the theme manager. + தீம் மேலாளர் தெரிவுநிலையை மாறுவதற்கு. + + + + &Service Manager + &சேவையை மேலாளர் + + + + Toggle Service Manager + நிலைமாற்று சேவையை மேலாளர் + + + + Toggle the visibility of the service manager. + சேவையை மேலாளர் தெரிவுநிலையை மாறுவதற்கு. + + + + &Preview Panel + &முன்னோட்ட பலகம் + + + + Toggle Preview Panel + நிலைமாற்று முன்னோட்டம் குழு + + + + Toggle the visibility of the preview panel. + முன்னோட்ட குழுவின் தன்மை மாறுவதற்கு. + + + + &Live Panel + &தற்சமயம் பலகம் + + + + Toggle Live Panel + நிலைமாற்று தற்சமயம் பலகம் + + + + Toggle the visibility of the live panel. + நேரடி குழுவின் தன்மை மாறுவதற்கு. + + + + &Plugin List + &Plugin பட்டியல் + + + + List the Plugins + Plugin காண்பி + + + + &User Guide + &பயனர் வழிகாட்டி + + + + &About + &பற்றி + + + + More information about OpenLP + OpenLP பற்றி மேலும் தகவல + + + + &Online Help + &இண்டர்நெட் உதவி + + + + &Web Site + &இண்டர்நெட் பக்கம் + + + + Use the system language, if available. + கிடைக்கும் இருந்தால், கணினி மொழி பயன்படுத்த. + + + + Set the interface language to %s + இடைமுக மொழி அமைத்தல் இடம் %s + + + + Add &Tool... + சேர்க்கலாம் &கருவி ... + + + + Add an application to the list of tools. + கருவிகள் பட்டியலில் ஒரு பயன்பாட்டை சேர்க்க. + + + + &Default + &தவறுதல் + + + + Set the view mode back to the default. + மீண்டும் முன்னிருப்பு காட்சி பயன்முறை அமைத்தல். + + + + &Setup + &அமைப்பு முறை + + + + Set the view mode to Setup. + அமைப்பது காட்சி பயன்முறை அமைத்தல். + + + + &Live + &தற்சமயம் + + + + Set the view mode to Live. + காட்சி முறையில் அமைக்கப்பட தற்சமயம் + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org/. + பதிப்பை %s OpenLP இப்போது பதிவிறக்க கிடைக்கும் என்ற (நீங்கள் தற்சமயம் பதிப்பில் இயங்கும்%s). + +நீங்கள் http://openlp.org/ சமீபத்திய பதிப்பை பதிவிறக்கம் செய்து கொள்ளலாம். + + + + OpenLP Version Updated + OpenLP பதிப்பு புதுப்பிக்கப்பட்டது + + + + OpenLP Main Display Blanked + OpenLP முக்கிய காட்சி வெற்றாக + + + + The Main Display has been blanked out + முக்கிய காட்சி அவுட் வெற்றாக + + + + Default Theme: %s + இயல்புநிலை தீம்: %s + + + + English + Please add the name of your language here + ஆங்கிலம் + + + + Configure &Shortcuts... + உள்ளமைக்கவும் &குறுக்குவழிகளை... + + + + Close OpenLP + OpenLP மூட + + + + Are you sure you want to close OpenLP? + நீங்கள் OpenLP மூடப்பட வேண்டுமா? + + + + Open &Data Folder... + திறந்த &தரவு அடைவு... + + + + Open the folder where songs, bibles and other data resides. + இசை, பைபிள் மற்றும் பிற தரவு வாழ்கிறது கோப்புறையை திறக்க. + + + + &Autodetect + &Autodetect + + + + Update Theme Images + தீம் படங்கள் புதுப்பிக்க + + + + Update the preview images for all themes. + அனைத்து கருப்பொருள்கள் முன்னோட்ட படங்களை மேம்படுத்த. + + + Print the current service. - + தற்போதைய சேவையை அச்சிட்டு. - + &Recent Files - + &சமீபத்திய கோப்புகள் - + L&ock Panels - + பலகங்கள் பாரு&ங்கள் - + Prevent the panels being moved. - + நகர்த்தப்படுகிறது பேனல்கள் தடுக்க. - + Re-run First Time Wizard - + மீண்டும் முதல் நேரம் விசார்ட் செய்ய - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + மீண்டும் முதல் நேரம் விசார்ட் செய்ய, இசை, விவிலியங்களும் மற்றும் தீம்களை இறக்குமதி. - + Re-run First Time Wizard? - + மீண்டும் முதல் நேரம் விசார்ட் செய்வது? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + நீங்கள் முதலில் நேரம் விசார்ட் மீண்டும் இயக்க வேண்டுமா? + +மீண்டும் இயங்கும் இந்த வழிகாட்டி உங்கள் தற்போதைய OpenLP கட்டமைப்பு மாற்றங்கள் மற்றும் சாத்தியமான ஏற்கனவே இசை பட்டியலில் இசை சேர்க்க, உங்கள் இயல்புநிலை தீம் மாற்றலாம். - + Clear List Clear List of recent files - + தெளிவான பட்டியல் - + Clear the list of recent files. - + சமீபத்திய கோப்புகளை அழிக்கவும். - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + உள்ளமைக்கவும் &நீக்கு Tags... + Export OpenLP settings to a specified *.config file + ஒரு குறிப்பிட்ட வகையில் OpenLP ஏற்றுமதி அமைப்புகள் *.config file + + + Settings - + அமைப்புகள் - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + ஒரு குறிப்பிட்ட இருந்து OpenLP இறக்குமதி அமைப்புகள் *.config file +தாக்கல் முன்னர் இந்த அல்லது மற்றொரு கணினியில் ஏற்றுமதி - + Import settings? - + அமைப்புகள் இறக்குமதி செய்வது? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + நீங்கள் அமைப்புகளை இறக்குமதி செய்ய வேண்டுமா? + +அமைப்புகளை இறக்குமதி உங்கள் தற்போதைய OpenLP கட்டமைப்பு நிரந்தர மாற்றங்களை செய்யும். + +தவறான அமைப்புகளை இறக்குமதி மாறாக நிறுத்துவதற்காக ஒழுங்கற்ற நடத்தை அல்லது OpenLP ஏற்படுத்தலாம். - + Open File - + கோப்பு திற - + OpenLP Export Settings Files (*.conf) - + OpenLP ஏற்றுமதி அமைப்புகள் கோப்புகள் (*.conf) - + Import settings - + அமைப்புகள் இறக்குமதி - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP இப்போது மூடிவிடும். இறக்குமதி அமைப்புகளை நீங்கள் OpenLP தொடங்க அடுத்த முறை பயன்படுத்தப்படும். - + Export Settings File - + அமைப்புகள் கோப்பு ஏற்றுமதி செய்க - + OpenLP Export Settings File (*.conf) - + OpenLP ஏற்றுமதி அமைப்புகள் கோப்ப (*.conf) - + New Data Directory Error - + புதிய தகவல்கள் டைரக்டரி பிழை + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + நீங்கள் தேர்ந்தெடுத்த கோப்பு ஒரு செல்லுபடியாகும் OpenLP அமைப்புகள் கோப்பு தோன்றும். + +Section [%s] is not valid + +செயலாக்க செய்யப்பட்டுள்ளது நிறுத்தப்பட்டது மற்றும் மாறிவிட்டது. + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + புதிய தரவு அடைவு இடத்திற்கு OpenLP தரவு நகல் - %s - நகல் முடிக்க காத்திருக்கவும + + + + OpenLP Data directory copy failed + +%s + OpenLP தரவு அடைவு நகல் தோல்வியடைந்தது + +%s OpenLP.Manager - + Database Error - + தரவுத்தள பிழை ஏற்பட்டது - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + ஏற்றாமல் தரவுத்தள OpenLP மிகவும் சமீபத்திய பதிப்பு ல் உருவாக்கப்பட்டது. தரவுத்தள பதிப்பு %d, OpenLP பதிப்பு எதிர்பார்க்கிறது போது %d. +The database will not be loaded. + +Database: %s - + OpenLP cannot load your database. Database: %s - + OpenLP உங்கள் தரவுத்தள + +தரவுத்தளம் ஏற்ற முடியாது: %s OpenLP.MediaManagerItem - + No Items Selected - + உருப்படிகள் எதுவும் தேர்ந்தெடுக்கப்படவில்லை - + &Add to selected Service Item - + &தேர்வு சேவைகள் உருப்படி சேர்க்கவும் - + You must select one or more items to preview. - + நீங்கள் முன்னோட்ட ஒன்று அல்லது அதற்கு மேற்பட்ட உருப்படிகள் தேர்ந்தெடுக்கவும் வேண்டும். - + You must select one or more items to send live. - + நீங்கள் தற்சமயம் அனுப்ப ஒன்று அல்லது அதற்கு மேற்பட்ட உருப்படிகள் தேர்ந்தெடுக்கவும் வேண்டும். - + You must select one or more items. - + நீங்கள் ஒன்று அல்லது அதற்கு மேற்பட்ட உருப்படிகள் தேர்ந்தெடுக்கவும் வேண்டும். - + You must select an existing service item to add to. - + நீங்கள் சேர்க்க ஏற்கனவே சேவையை உருப்படியை தேர்ந்தெடுக்கவும் வேண்டும். - + Invalid Service Item - + தவறான சேவையை உருப்படி - + You must select a %s service item. - + நீங்கள் ஒரு %s சேவையை உருப்படியை தேர்ந்தெடுக்கவும் வேண்டும். - + You must select one or more items to add. - + நீங்கள் சேர்க்க ஒன்று அல்லது அதற்கு மேற்பட்ட உருப்படிகள் தேர்ந்தெடுக்கவும் வேண்டும். - + No Search Results - + தேடல் முடிவுகள் இல்லை - + Invalid File Type - + தவறான கோப்பு வகை - + Invalid File %s. Suffix not supported - + தவறான கோப்பு %s. +பின்னொட்டு ஆதரவு - + &Clone - + &க்ளோன் செய்வது - + Duplicate files were found on import and were ignored. - + நகல் கோப்புகளை இறக்குமதி காணப்படும் மற்றும் புறக்கணிக்கப்பட்டனர். OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <lyrics> tag இல்லை. - + <verse> tag is missing. - + <verse> tag இல்லை. OpenLP.PluginForm - + Plugin List - + Plugin பட்டியல் - + Plugin Details - + Plugin விவரம் - + Status: - + இப்போது தகுதி: - + Active - + செயலில் - + Inactive - + ஜடமான - + %s (Inactive) - + %s (ஜடமான) - + %s (Active) - + %s (செயலில்) - + %s (Disabled) - + %s (முடக்கப்பட்டது) OpenLP.PrintServiceDialog - + Fit Page - + சரியா பக்க செய்வது - + Fit Width - + சரியா அகலம் செய்வது OpenLP.PrintServiceForm - + Options - + விருப்பங்கள் - + Copy - + நகலெடுக்க - + Copy as HTML - + நகலெடுக்க HTML - + Zoom In - + பெரிதாக்கு - + Zoom Out - + சிறிதாக்கவோ - + Zoom Original - + இதற்கு முன்னர் பெரிதாக்க - + Other Options - + மற்ற விருப்பங்கள் - + Include slide text if available - + ஸ்லைடு உரை ஆகியவை கிடைக்கும் என்றால் - + Include service item notes - + சேவையை உருப்படியை குறிப்புகள் ஆகியவை அடங்கும் - + Include play length of media items - + ஊடக பொருட்களை நீளம் விளையாட அடங்கும் - + Add page break before each text item - + ஒவ்வொரு உரை உருப்படியை முன் பக்கம் முறித்து சேர்க்கலாம் - + Service Sheet - + சேவையை Sheet - + Print - - - - - Title: - + அச்சிட்டு + Title: + தலைப்பு: + + + Custom Footer Text: - + தனிபயன் அடிக்குறிப்பு உரை: OpenLP.ScreenList - + Screen - + திரை - + primary - + முதன்மையான OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>ஆரம்பி</strong>: %s - + <strong>Length</strong>: %s - + <strong>நீளம்</strong>: %s OpenLP.ServiceItemEditForm - + Reorder Service Item - + சேவையை பொருள் மறுவரிசைப்படுத்து OpenLP.ServiceManager - + Move to &top - + &மேலே போட்டு - + Move item to the top of the service. - + உருப்படியை சேவையை மேல் போட்டு. - + Move &up - + போட்ட &மேல் - + Move item up one position in the service. - + உருப்படியை சேவையை ஒரு இடத்தில் மேல் போட்டு. - + Move &down - + போட்ட &கீழே - + Move item down one position in the service. - + உருப்படியை சேவையை ஒரு இடத்தில் கீழே போட்டு. - + Move to &bottom - + போட்ட &கீழே - + Move item to the end of the service. - + உருப்படியை சேவையை முடிவில் போட்டு. - + &Delete From Service - + &சேவைகள் நீக்கு - + Delete the selected item from the service. - + சேவையை இருந்து தேர்ந்தெடுக்கப்பட்ட உருப்படியை நீக்கு. - + &Add New Item - + &புதிய சேர் - + &Add to Selected Item - + &தேர்ந்தெடுக்கப்பட்ட பொருள் சேர்க்கவும் - + &Edit Item - + &உருப்படி தொகு செய்வது - + &Reorder Item - + &உருப்படி மறுவரிசைப்படுத்து - + &Notes - + &குறிப்புகள் - + &Change Item Theme - + &உருப்படி தீம் மாற்ற - + OpenLP Service Files (*.osz) - + OpenLP Service Files (*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + கோப்பு ஒரு செல்லுபடியாகும் சேவையை அல்ல. +உள்ளடக்கத்தை குறியாக்கம் UTF-8. இல்லை - + File is not a valid service. - + கோப்பு ஒரு செல்லுபடியாகும் சேவையை அல்ல. - + Missing Display Handler - + காட்சி ஹேண்ட்லர் காணவில்லை - + Your item cannot be displayed as there is no handler to display it - + அதை காண்பிக்க இல்லை கையாளுதல் உள்ளது போல் உங்கள் உருப்படியை காண்பிக்க முடியாது - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + உங்கள் உருப்படியை அதை காணவில்லை அல்லது செயலற்று காட்ட வேண்டும் நீட்சியாக காண்பிக்க முடியாது - + &Expand all - + &அனைத்து விரிவாக்க - + Expand all the service items. - + அனைத்து விரிவாக்க சேவையை பொருட்கள். - + &Collapse all - + &அனைத்தையும் சுருக்கு - + Collapse all the service items. - + அனைத்து சேவையை பொருட்கள் உடைந்து. - + Open File - + திற கோப்பு - + Moves the selection down the window. - + சாளரத்தின் கீழே தேர்வு நகரும். - + Move up - + மேலே போக - + Moves the selection up the window. - + சாளரம் மேலே தேர்வு போக. - + Go Live - + தற்சமயம் போக - + Send the selected item to Live. - + தற்சமயம் தேர்ந்தெடுத்த உருப்படியை அனுப்ப - + &Start Time - + &தொடங்கு நேரம் - + Show &Preview - + காண்பி &முன்னோட்டம் - + Modified Service - + மாற்றப்பட்ட சேவையை - + The current service has been modified. Would you like to save this service? - + தற்போதைய சேவை மாற்றப்பட்டுள்ளது. இந்த சேவை சேமிக்க விரும்புகிறீர்களா? - + Custom Service Notes: - + தனிபயன் சேவையை குறிப்புகள்: - + Notes: - + குறிப்புகள்: - + Playing time: - + தொடங்கி நேரம்: - + Untitled Service - + தலைப்பிடாத சேவையை - + File could not be opened because it is corrupt. - + இது ஊழல் ஏனெனில் கோப்பு திறக்க முடியவில்லை. - + Empty File - + காலியாக கோப்பு - + This service file does not contain any data. - + இந்த சேவையை கோப்பில் தரவு ஏதும் இல்லை. - + Corrupt File - + ஊழல் மிகுந்த கோப்பு - + Load an existing service. - + ஏற்கனவே சேவையை ஏற்ற. - + Save this service. - + இந்த சேவையை சேமி. - + Select a theme for the service. - + சேவையை ஒரு தீம் தேர்வு. - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + இந்த கோப்பு ஒன்று ஊழல் அல்லது அது ஒரு OpenLP 2.0 சேவையை கோப்பை அல்ல. - - Service File Missing - - - - + Slide theme - + ஸ்லைடு தீம் - + Notes - + குறிப்புகள் - + Edit - + பதிப்பி - + Service copy only - + சேவையை நகல் மட்டுமே - + Error Saving File - + பிழை சேமிப்பு கோப்பு - + There was an error saving your file. - + உங்கள் கோப்பை சேமிப்பதில் பிழை ஏற்பட்டது. + + + + Service File(s) Missing + சேவையை கோப்பு (கள்) இல்லை + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + சேவையை இந்த கோப்பு (கள்) காணப்படவில்லை: ⏎ <byte value="x9"/>%s⏎ ⏎ +நீங்கள் சேமிக்க தொடர்ந்து இந்த கோப்புகளை நீக்கப்படும். OpenLP.ServiceNoteForm - + Service Item Notes - + சேவையை உருப்படி குறிப்புகள OpenLP.SettingsForm - + Configure OpenLP - + OpenLP உள்ளமைக்கவும் OpenLP.ShortcutListDialog - + Action - + செயல் - + Shortcut - + குறுக்கு வழி - + Duplicate Shortcut - + குறுக்குவழி நகல் - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + குறுக்கு வழி "%s" ஏற்கனவே மற்றொரு நடவடிக்கை ஒதுக்கப்படும், வேறு குறுக்குவழி பயன்படுத்தவும். - + Alternate - + மாறுபட்ட - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + ஒரு நடவடிக்கை தேர்ந்தெடுத்து முறையே, ஒரு புதிய முதன்மையான அல்லது மாற்று குறுக்குவழி கைப்பற்றி தொடங்க பின்வரும் பொத்தான்களில் ஒன்றை கிளிக். - + Default - + தவறுதல் - + Custom - + வழக்கம் - + Capture shortcut. - + குறுக்குவழி பிடிக்கும். - + Restore the default shortcut of this action. - + இந்த நடவடிக்கை முன்னிருப்பு குறுக்குவழி மீட்க. - + Restore Default Shortcuts - + இயல்புநிலை குறுக்குவழிகள் மீட்க - + Do you want to restore all shortcuts to their defaults? - + அவர்கள் இயல்பாக அனைத்து குறுக்குவழிகளை மீட்க வேண்டும்? - + Configure Shortcuts - + குறுக்குவழிகள் உள்ளமைக்கவும் OpenLP.SlideController - + Hide - + மறைக்க - + Go To - + செல்லுமிடம - + Blank Screen - + வெறுமையாக திரை - + Blank to Theme - + தீம் வெறுமையான - + Show Desktop - + டெஸ்க்டாப் காண்பி - + Previous Service - + முந்தைய சேவையை - + Next Service - + அடுத்த சேவையை - + Escape Item - + தப்ப உருப்படி - + Move to previous. - + முந்தைய போக. - + Move to next. - + அடுத்த போக. - + Play Slides - + ஸ்லைடுகளை போட்டு - + Delay between slides in seconds. - + நொடிகளில் ஸ்லைடுகள் இடையே தாமதம். - + Move to live. - + தற்சமயம் போக - + Add to Service. - + சேவைகள் சேர்க்க - + Edit and reload song preview. - + தொகு மற்றும் பாடல் முன்னோட்ட ஏற்றவும். - + Start playing media. - + ஊடக போட்டு தொடங்கு. - + Pause audio. - + இடைநிறுத்து ஆடியோ. - + Pause playing media. - + இடைநிறுத்து ஊடக போட்டு. - + Stop playing media. - + ஊடக போட்டு நிறுத்த. - + Video position. - + வீடியோ நிலை. - + Audio Volume. - - - - - Go to "Verse" - + ஆடியோ தொகுதி. - Go to "Chorus" - + Go to "Verse" + "வசனம்" போக - Go to "Bridge" - + Go to "Chorus" + "கோரஸ்" போக - Go to "Pre-Chorus" - + Go to "Bridge" + "Bridge" போக - - Go to "Intro" - + + Go to "Pre-Chorus" + "முன் கோரஸ்" போக - Go to "Ending" - + Go to "Intro" + "இன்ட்ரோ" போக + Go to "Ending" + "முடிவு" போக + + + Go to "Other" - + "வேறு" போக - + Previous Slide - + முந்தைய படவில்லை - + Next Slide - + அடுத்த படவில்லை - + Pause Audio - + இடைநிறுத்து ஆடியோ - + Background Audio - + பின்னணி ஆடியோ - + Go to next audio track. - + அடுத்த ஆடியோ டிராக் சென்று. - + Tracks - + தடங்கள் OpenLP.SpellTextEdit - + Spelling Suggestions - + எழுத்து சரிபார்ப்பு பரிந்துரைகள - + Formatting Tags - + Tags அழிக்க - + Language: - + மொழி: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + மணிநேரம்: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + நிமிடங்கள்: - Start - + Seconds: + விநாடிகள்: + + + + Item Start and Finish Time + உருப்படியை நேரம் தொடக்கம் மற்றும் நிறைவு - Finish - + Start + தொடங்கு + Finish + முடிக்க + + + Length - + நீளம் - + Time Validation Error - + நேரம் செல்லத்தக்கதாக்குதலும் பிழை ஏற்பட்டது - + Finish time is set after the end of the media item - + இறுதி நேரத்தில் ஊடக உருப்படியை முடிவில் அமைக்கப்படுகிறது - + Start time is after the finish time of the media item - + தொடக்க நேரம் ஊடக உருப்படியின் பூச்சு நேரம் கழித்து தான் - + Theme Layout - + தீம் தளவமைப்பு - + The blue box shows the main area. - + நீல பெட்டி முக்கிய பகுதி காட்டுகிறது. - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + சிவப்பு பெட்டியில் அடிக்குறிப்பில் காட்டுகிறது. OpenLP.ThemeManager - + Create a new theme. - + ஒரு புதிய தீம் உருவாக்க. - + Edit Theme - + தீம் பதிப்பி - + Edit a theme. - + ஒரு தீம் பதிப்பி - + Delete Theme - + தீம் நீக்கு - + Delete a theme. - + ஒரு தீம் நீக்கு. - + Import Theme - + தீம் இறக்குமதி - + Import a theme. - + ஒரு தீம் இறக்குமதி. - + Export Theme - + தீம் ஏற்றுமதி - + Export a theme. - + ஒரு தீம் ஏற்றுமதி. - + &Edit Theme - + &தீம் பதிப்பி - + &Delete Theme - + &தீம் நீக்கு - + Set As &Global Default - + அமை &குளோபல் இயல்புநிலை - + %s (default) - + %s (இயல்புநிலை) - + You must select a theme to edit. - + நீங்கள் திருத்த ஒரு தீம் தேர்ந்தெடுக்க வேண்டும். - + You are unable to delete the default theme. - + நீங்கள் முன்னிருப்பு தீம் நீக்க முடியவில்லை. - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + தீம் %s பயன்படுத்தப்படுகிறது %s plugin. + You have not selected a theme. + நீங்கள் ஒரு தீம் தேர்ந்தெடுக்கவில்லை. + + + Save Theme - (%s) - + தீம் சேமிக்க - (%s) - + Theme Exported - + தீம் ஏற்றுமதி செய்யப்பட்ட - + Your theme has been successfully exported. - + உங்கள் தீம் வெற்றிகரமாக ஏற்றுமதி செய்யப்பட்டது. - + Theme Export Failed - + தீம் ஏற்றுமதி தோல்வியுற்றது - + Your theme could not be exported due to an error. - + உங்கள் கருத்து பிழை காரணமாக ஏற்றுமதி செய்ய முடியவில்லை. - + Select Theme Import File - + தீம் இறக்குமதி கோப்பு தேர்வு - + File is not a valid theme. - + கோப்பு சரியான தீம் அல்ல. - + &Copy Theme - + &தீம் நகல் - + &Rename Theme - + &தீம் மறுபெயரிடு - + &Export Theme - + &தீம் ஏற்றுமதி - + You must select a theme to rename. - + நீங்கள் மறுபெயரிட ஒரு தீம் தேர்ந்தெடுக்க வேண்டும். - + Rename Confirmation - + உறுதிப்படுத்தல் மறுபெயரிடு - + Rename %s theme? - + மறுபெயரிடு %s தீம்? - + You must select a theme to delete. - + நீங்கள் நீக்க ஒரு தீம் தேர்ந்தெடுக்க வேண்டும். - + Delete Confirmation - + உறுதிப்படுத்தல் நீக்கு - + Delete %s theme? - + தீம் நீக்க %s வேண்டுமா? - + Validation Error - + செல்லத்தக்கதாக்குதலும் பிழை ஏற்பட்டது - + A theme with this name already exists. - + இந்த பெயர் ஒரு தீம் ஏற்கனவே உள்ளது. - + OpenLP Themes (*.theme *.otz) - + OpenLP தீம்களை (*.theme *.otz) - + Copy of %s Copy of <theme name> - + நகல் %s - + Theme Already Exists - + தீம் ஏற்கெனவே உள்ளது + + + + Theme %s already exists. Do you want to replace it? + தீம் %s முன்பே இருக்கிறது. நீங்கள் அதை மாற்ற விரும்புகிறீர்களா? OpenLP.ThemeWizard - + Theme Wizard - + தீம் வழிகாட்டி - + Welcome to the Theme Wizard - + தீம் வழிகாட்டி வரவேற்கிறோம - + Set Up Background - + பின்னணி அமை - + Set up your theme's background according to the parameters below. - + கீழே அளவுருக்கள் ஏற்ப உங்கள் தீம் பின்னணி அமைக்க. - + Background type: - + பின்னணி வகை: - + Solid Color - + திட வண்ணம் - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + சரிவு + Color: + வண்ண: + + + + Gradient: + சாய்வு: + + + + Horizontal + மட்டமான + + + + Vertical + செங்குத்து + + + + Circular + சுற்றறிக்கை + + + + Top Left - Bottom Right + மேல் இடது - கீழே வலது + + + + Bottom Left - Top Right + கீழே இடது - மேல்வலது + + + + Main Area Font Details + முக்கிய பகுதி எழுத்துரு விவரம் + + + + Define the font and display characteristics for the Display text + காட்சி உரை எழுத்துரு மற்றும் காட்சி பண்புகள் வரையறுக்கின்றன + + + + Font: + எழுத்துரு: + + + Size: - + அளவு: - + Line Spacing: - + வரி இடைவெளி: - + &Outline: - + &வெளிக்கோடு: - + &Shadow: - - - - - Bold - + &நிழல்: + Bold + போல்ட் + + + Italic - + (அச்செழுத்துக்கள் வலப்பக்கம்) சாய்ந்துள்ள - + Footer Area Font Details - + அடிக்குறிப்பு பகுதி எழுத்துரு விவரம் - + Define the font and display characteristics for the Footer text - + அடிக்குறிப்பு உரை எழுத்துரு மற்றும் காட்சி பண்புகள் வரையறுக்கின்றன - + Text Formatting Details - + உரை வடிவமைத்தல் விவரம் - + Allows additional display formatting information to be defined - + கூடுதல் காட்சி வடிவமைப்பை தகவல் வரையறுக்கப்பட்ட அனுமதிக்கிறது - + Horizontal Align: - + சீரமை கிடைமட்ட: - + Left - + இடது - + Right - + வலது - + Center - + மையம் - + Output Area Locations - + வெளியீடு பகுதி இருப்பிடங்கள் - + Allows you to change and move the main and footer areas. - + நீங்கள் முக்கிய மற்றும் அடிக்குறிப்பில் பகுதிகளில் மாற்ற மற்றும் நகர அனுமதிக்கிறது. - + &Main Area - + &முக்கிய பரப்பு - + &Use default location - + &இயல்புநிலை இருப்பிடம் பயன்படுத்த - + X position: - + X நிலை: - + px - + px - + Y position: - + Y நிலை: - + Width: - + அகலம்: - + Height: - + உயரம்: - + Use default location - + இயல்புநிலை இருப்பிடம் பயன்படுத்த - + Theme name: - + தீம் பெயர்: - + Edit Theme - %s - + தீம் திருத்து - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + இந்த வழிகாட்டி உங்கள் கருப்பொருள்கள் உருவாக்க மற்றும் திருத்த உதவும். உங்கள் பின்னணி அமைக்க செயலாக்கத்தை தொடங்க, கீழே உள்ள அடுத்த பொத்தானை கிளிக் செய்யவும். - + Transitions: - + ட்ரான்சிஷன்ஸ்: - + &Footer Area - + அடிக்குறிப்பு பரப்பு - + Starting color: - + வண்ண தொடங்கி: - + Ending color: - + வண்ண முடியும்: - + Background color: - + பின்னணி நிறம்: - + Justify - + நியாயப்படுத்த - + Layout Preview - + தளவமைப்பு முன்னோட்டம் - + Transparent - + ஒளி புகும் - + Preview and Save - + மாதிரிக்காட்சியை சேமிக்கவும் - + Preview the theme and save it. - + தீம் முன்னோட்டத்தை மற்றும் அதை காப்பாற்ற. + + + + (approximately %d lines per slide) + (தோராயமாக %d ஸ்லைடு ஒவ்வொரு வரிகளும்) + + + + Background Image Empty + வெற்று பின்னணி படம் + + + + You have not selected a background image. Please select one before continuing. + நீங்கள் ஒரு பின்னணி படத்தை தேர்ந்தெடுக்கவில்லை. தொடர்வதற்கு முன், ஒரு தேர்ந்தெடுக்கவும். + + + + Select Image + பட தேர்ந்தெடு + + + + Theme Name Missing + தீம் பெயர் காணவில்லை + + + + There is no name for this theme. Please enter one. + இந்த தீம் எந்த பெயர் உள்ளது. ஒரு உள்ளிடவும். + + + + Theme Name Invalid + தீம் பெயர் பிழை + + + + Invalid theme name. Please enter one. + தவறான தீம் பெயர். ஒரு உள்ளிடவும். OpenLP.ThemesTab - + Global Theme - + குளோபல் தீம் - + Theme Level - + தீம் மட்டம் - + S&ong Level - + பா%டல் மட்டம் - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + தரவுத்தள ஒவ்வொரு பாடல் இருந்து தீம் பயன்படுத்த. ஒரு பாடல் அது தொடர்புடைய ஒரு தீம் இல்லை என்றால், பின் சேவையை கருப்பொருள் பயன்படுத்த. சேவையை ஒரு தீம் இல்லை என்றால், உலக தீம் பயன்படுத்த. - + &Service Level - + &சேவைகள் மட்டம் - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + தனிப்பட்ட இசை 'கருப்பொருள்கள் எந்த overriding, சேவையில் இருந்து தீம் பயன்படுத்த. சேவையை ஒரு தீம் இல்லை என்றால், உலக தீம் பயன்படுத்த. - + &Global Level - + &குளோபல் மட்டம் - + Use the global theme, overriding any themes associated with either the service or the songs. - + சேவையை அல்லது இசை அல்லது தொடர்புடைய எந்த கருப்பொருள்கள் overriding, உலக தீம் பயன்படுத்த. - + Themes - + தீம்கள் OpenLP.Ui - + Error - - - - - About - + பிழை - &Add - + About + பற்றி - Advanced - + &Add + &சேர் - All Files - + Advanced + முன்னேறிய - Bottom - + All Files + அனைத்து கோப்புகள் - Browse... - + Bottom + கீழே - Cancel - + Browse... + உலவ... - CCLI number: - + Cancel + ரத்துசெய்ய + CCLI number: + CCLI எண்ணை: + + + Create a new service. - + ஒரு புதிய சேவையை உருவாக்க. - + &Delete - - - - - &Edit - + &நீக்கவா + &Edit + &பதிப்பி + + + Empty Field - + காலியாக Field - + Export - + ஏற்றுமதி - + pt Abbreviated font pointsize unit - - - - - Image - + pt - Import - + Image + படம் - - Live - + + Import + இறக்குமதி + Live + தற்போது + + + Live Background Error - + தற்போது பின்னணி பிழை - + Load - - - - - Middle - + Load - New - + Middle + நடுவில் - New Service - + New + புதிய - New Theme - + New Service + புதிய சேவைகள் - - No File Selected - Singular - + + New Theme + புதிய தீம் - No Files Selected - Plural - + No File Selected + Singular + ஒரு கோப்பு தேர்ந்தெடுக்கப்பட்ட இல்லை - No Item Selected - Singular - + No Files Selected + Plural + ஒரு கோப்புகள் தேர்ந்தெடுக்கப்பட்ட இல்லை - No Items Selected - Plural - + No Item Selected + Singular + ஒரு உருப்படி தேர்ந்தெடுக்கப்பட்ட இல்லை - openlp.org 1.x - + No Items Selected + Plural + ஒரு உருப்படிகள் தேர்ந்தெடுக்கப்பட்ட இல்லை + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + முன்னோட்ட - + Replace Background - + பின்னணி மாற்றவும் - + Reset Background - + பின்னணி மீட்டமை - + s The abbreviated unit for seconds - - - - - Save && Preview - + s + Save && Preview + முன்னோட்ட && சேமிக்க + + + Search - + தேடல் - + You must select an item to delete. - + நீங்கள் நீக்க உருப்படியை வேண்டும். - + You must select an item to edit. - - - - - Save Service - + நீங்கள் திருத்த உருப்படியை வேண்டும். + Save Service + சேவைகள் சேமிக்க + + + Service - + சேவைகள் - + Start %s - - - - - Theme - Singular - + தொடங்கு %s + Theme + Singular + தீம் + + + Themes Plural - + தீம்கள் - + Top - + மேலே - + Version - + பதிப்பை - + Delete the selected item. - + தேர்ந்தெடுக்கப்பட்ட உருப்படி நீக்கவா. - + Move selection up one position. - + ஒரு நிலை வரை தேர்வு போடு. - + Move selection down one position. - + ஒரு நிலையில் கீழே தேர்வு போட. - + &Vertical Align: - - - - - Finished import. - + &செங்குத்து சீரமை: - Format: - + Finished import. + இறக்குமதி முடிக்கப்பட்ட. - - Importing - + + Format: + வடிவம்: - Importing "%s"... - + Importing + இறக்குமதி - Select Import Source - + Importing "%s"... + இறக்குமதி "%s"... + Select Import Source + இறக்குமதி மூல தேர்வு + + + Select the import format and the location to import from. - + இறக்குமதி வடிவம் மற்றும் இருந்து இறக்குமதி செய்ய இடம் தேர்வு. - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + Openlp.org 1.x importer இறக்குமதியாளர் ஒரு விடுபட்ட Python தொகுதி காரணமாக முடக்கப்பட்டுள்ளது. இந்த இறக்குமதியாளர் பயன்படுத்த விரும்பினால், நீங்கள் "python-SQLite" தொகுதி நிறுவ வேண்டும். - + Open %s File - - - - - %p% - + கோப்பு %s திற + %p% + %p% + + + Ready. - + முடிக்கப்பட்ட - + Starting import... - + இறக்குமதி தொடங்கும்... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + நீங்கள் இறக்குமதி செய்ய குறைந்தது ஒரு %s கோப்பு குறிப்பிட வேண்டும். Welcome to the Bible Import Wizard - + வேதாகமம் இறக்குமதி வழிகாட்டி வரவேற்கிறோம் - + Welcome to the Song Export Wizard - + பாடல் ஏற்றுமதி செய்யும் விசார்ட் வரவேற்கிறோம் - + Welcome to the Song Import Wizard - - - - - Author - Singular - + பாடல் இறக்குமதி வழிகாட்டி வரவேற்கிறோம் - Authors - Plural - + Author + Singular + நூலாசிரியர் - - © - Copyright symbol. - + + Authors + Plural + நூலாசிரியர்கள் - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + பாடல் புத்தகம் - Title and/or verses not found - + Song Books + Plural + பாடல் புத்தகங்கள் + + + + Song Maintenance + பாடல் பராமரிப்பு + + + + Topic + Singular + தலைப்பு - XML syntax error - + Topics + Plural + தலைப்புகள் + + + + Continuous + தொடர்ந்த + + + + Default + தவறுதல் + + + + Display style: + பாணி காட்ட: + + + + Duplicate Error + பிழை நகல் + + + + File + கோப்பு + + + + Help + உதவி + + + + h + The abbreviated unit for hours + h + + + + Layout style: + அமைப்பு பாணி: + + + + Live Toolbar + தற்போது கருவிப்பட்டை + + + + m + The abbreviated unit for minutes + m + + + + OpenLP is already running. Do you wish to continue? + OpenLP ஏற்கனவே இயங்கும். நீங்கள் தொடர விரும்புகிறீர்களா? + + + + Settings + அமைப்புகள் + + + + Tools + கருவிகள் + + + + Unsupported File + ஆதரிக்கப்படவில்லை கோப்பு + + + + Verse Per Slide + ஒவ்வொரு செய்யுள்கள் ஒரு ஸ்லைடு + + + + Verse Per Line + ஒவ்வொரு செய்யுள்கள் ஒர வரிசை + View + பார்க்க + + + + Title and/or verses not found + தலைப்பு மற்றும் / அல்லது வசனங்கள் இல்லை + + + + XML syntax error + XML syntax பிழை + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + பார்க்க முறை - Play Slides in Loop - + Open service. + சேவையை திறக்க. + + + + Print Service + சேவைகள் அச்சிட + + + + Replace live background. + தற்போது பின்னணி பதிலாக. + + + + Reset live background. + தற்போது பின்னணி மீட்டமை. + + + + Split a slide into two only if it does not fit on the screen as one slide. + அது ஒரு ஸ்லைடு என திரையில் பொருந்தும் இல்லை மட்டுமே இரண்டு ஒரு ஸ்லைடு பிரிந்தது.விவரங்கள்பரிந்துரைகள்வரலாறு + + + + Welcome to the Bible Upgrade Wizard + வேதாகமம் மேம்படுத்து வழிகாட்டி வரவேற்கிறோம் + + + + Confirm Delete + நீக்கு உறுதிப்படுத்த + Play Slides in Loop + படவில்லைகள் சுழற்சி செய்யவேண்டும் + + + Play Slides to End - + படவில்லைகள் முடிவுக்கு வரை செய்யவேண்டும் - + Stop Play Slides in Loop - + படவில்லைகள் சுழற்சி இயக்கு நிறுத்து - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + படவில்லைகள் முடிவில் நிறுத்து + Next Track + அடுத்த பாடல் + + + + Search Themes... + Search bar place holder text + தேடல் தீம்கள் ... + + + + Optional &Split + விருப்ப &பிரி + + + + Invalid Folder Selected + Singular + தவறான கோப்புறையை தெரிவு + + + + Invalid File Selected + Singular + தேர்ந்தெடுத்ததை தவறான கோப்பு + + + + Invalid Files Selected + Plural + தேர்ந்தெடுத்ததை தவறான கோப்புகள் + + + No Folder Selected Singular - + இல்லை கோப்புறையை தெரிவ - + Open %s Folder - + கோப்புறை %s திற - + You need to specify one %s file to import from. A file type e.g. OpenSong - + நீங்கள் இறக்குமதி செய்ய ஒரு %s கள் கோப்பு குறிப்பிட வேண்டும். - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + நீங்கள் ஒரு குறிப்பிட வேண்டும் %s இருந்து இறக்குமதி செய்ய அடைவுக்கு. + + + + Importing Songs + இறக்குமதி பாடல்கள் OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1 and %2 - + %1, and %2 Locale list separator: end - + %1, and %2 - + %1, %2 Locale list separator: middle - + %1, %2 - + %1, %2 Locale list separator: start - + %1, %2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>விளக்கக்காட்சி Plugin</strong><br /> +வழங்கல் plugin பல்வேறு திட்டங்கள் பல பயன்படுத்தி விளக்கக்காட்சிகள் காட்ட உதவுகிறது. இன்னும் வழங்கல் திட்டங்கள் தேர்வு பெட்டியை கீழே ஒரு துளி பயனர் கிடைக்கும். - + Presentation name singular - + விளக்கக்காட்சி - + Presentations name plural - + விளக்கக்காட்சிகள் - + Presentations container title - + விளக்கக்காட்சிகள் - + Load a new presentation. - + ஒரு புதிய விளக்கக்காட்சியை ஏற்ற. - + Delete the selected presentation. - + தேர்ந்தெடுக்கப்பட்ட விளக்கக்காட்சியை நீக்கு. - + Preview the selected presentation. - + தேர்ந்தெடுக்கப்பட்ட வழங்கல் முன்னோட்டத்தை. - + Send the selected presentation live. - + தற்போது தேர்ந்தெடுக்கப்பட்ட வழங்கல் அனுப்ப. - + Add the selected presentation to the service. - + சேவை தேர்ந்தெடுக்கப்பட்ட வழங்கல் சேர்க்கலாம். PresentationPlugin.MediaItem - + Select Presentation(s) - + தேர்ந்தெடுக்கப்பட்ட வழங்கல் (கள்) - + Automatic - + தானாக - + Present using: - + பயன்படுத்தி முன்வைக்க: - + File Exists - + கோப்பு உள்ளது - + A presentation with that filename already exists. - + அந்த கோப்பு ஒரு காட்சி ஏற்கனவே உள்ளது. - + This type of presentation is not supported. - + இப்போது இந்த வகை ஆதரிக்கவில்லை. - + Presentations (%s) - + விளக்கக்காட்சிகள் (%s) - + Missing Presentation - + விளக்கக்காட்சி காணவில்லை - + The presentation %s is incomplete, please reload. - + விளக்கக்காட்சி %s முழுமையானதாக இல்லை, மீண்டும் ஏற்றுக. - + The presentation %s no longer exists. - + விளக்கக்காட்சி %s இல்லை. PresentationPlugin.PresentationTab - + Available Controllers - + கிடைக்கும் கட்டுப்படுத்திகளின - + %s (unavailable) - + %s (இல்லை) - + Allow presentation application to be overridden - + விளக்கக்காட்சி மேலெழுதப்படலாம் அனுமதி RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>Remote Plugin</strong><br />Remote ஒரு இணைய உலாவி மூலம் அல்லது API remot மூலம் வேறு ஒரு கணினியில் OpenLP ஒரு இயங்கும் பதிப்பு செய்திகளை அனுப்ப உதவுகிறது. - Remotes - name plural - + Remote + name singular + தொலை - + + Remotes + name plural + தொலைகள + + + Remote container title - + தொலை RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 தொலை + + + OpenLP 2.0 Stage View - + OpenLP 2.0 மேடை காட்சி - + Service Manager - + சேவையை மேலாளர் - + Slide Controller - - - - - Alerts - + ஸ்லைடு கட்டுப்பாட்டாளர் - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + எச்சரிக்கைகள் - Home - + Search + தேடல் + + + + Refresh + புதுப்பி - Theme - + Blank + காலியான + + + + Show + காண்பி + + + + Prev + முந்தைய + + + + Next + அடுத்து + + + + Text + உரை + + + + Show Alert + விழிப்பூட்டல் காண்பி + + + + Go Live + தற்போது போக + + + + No Results + முடிவு இல்லை + + + + Options + விருப்பங்கள் + + + + Add to Service + சேவைகள் சேர்க்க + + + + Home + வீட்டு - Desktop - + Theme + தீம் - + + Desktop + டெஸ்க்டாப் + + + Add &amp; Go to Service - + சேர் &ஆம்ப்; சேவைகள் போ + + + + Service + சேவையை + + + + Slides + ஸ்லைடுகள் RemotePlugin.RemoteTab - + Serve on IP address: - + சேவை IPமுகவரி : - + Port number: - + போர்ட் எண்ணை: - + Server Settings - + சர்வர் அமைப்புகள் - + Remote URL: - + தொலை URL: - + Stage view URL: - + மேடை காட்சி URL: - + Display stage time in 12h format - + 12h வடிவில் மேடை நேரம் காட்ட - + Android App - + Android பயன்பாடு - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + QR குறியீட்டை ஸ்கேன் அல்லது கிளிக் <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> Google Play இல் இருந்து அண்ட்ராய்டு பயன்பாட்டை நிறுவ. SongUsagePlugin - + &Song Usage Tracking - + &பாடல் பயன்பாடு கண்காணிப்ப - + &Delete Tracking Data - + &நோட்ட தரவு நீக்கு - + Delete song usage data up to a specified date. - + ஒரு குறிப்பிட்ட தேதிக்கு பாடல் பயன்பாடு தகவல்களை நீக்கு. - + &Extract Tracking Data - + &நோட்ட தரவு பிரித்தெடுக்க - + Generate a report on song usage. - + பாடல் பயன்பாடு ஒரு அறிக்கையை உருவாக்க. - + Toggle Tracking - + கண்காணிப்பு மாறுவதற்கு - + Toggle the tracking of song usage. - + பாடல் பயன்பாட்டு டிராக்கிங் நிலைமாற்று. - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>SongUsage Plugin</strong><br /> இந்த plugin சேவைகளை பாடல்களில் பயன்பாடு டிராக்குகள். - + SongUsage name singular - + SongUsage - + SongUsage name plural - + SongUsage - + SongUsage container title - + SongUsage - + Song Usage - + பாடல் பயன்பாடு - + Song usage tracking is active. - + பாடல் பயன்பாடு கண்காணிப்பு தீவிரமாக உள்ளது. - + Song usage tracking is inactive. - + பாடல் பயன்பாட்டு டிராக்கிங் முடக்கப்பட்டுள்ளது. - + display - + காட்டு - + printed - + அச்சிடப்பட்ட SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + பாடல் பயன்பாடு தரவு நீக்கு - + Delete Selected Song Usage Events? - + தேர்ந்தெடுத்த பாடல் பயன்பாடு நிகழ்வுகள் நீக்க வேண்டுமா? - + Are you sure you want to delete selected Song Usage data? - + நீங்கள் தேர்ந்தெடுத்த பாடல் பயன்பாடு தரவு நீக்க வேண்டுமா? - + Deletion Successful - + நீக்கியதை முடிந்த - + All requested data has been deleted successfully. - + அனைத்து கோரிய தரவு வெற்றிகரமாக நீக்கப்பட்டது. - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + இந்த பாடல் பயன்பாடு தரவு அழிக்கப்பட வேண்டும் எந்த தேதி என்பதை தேர்ந்தெடுக்கவும். இந்த தேதி முன் பதிவு அனைத்து தரவு நிரந்தரமாக நீக்கப்படும். SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + பாடல் பயன்பாடு பிரித்தெடுத்தல - + Select Date Range - + தேதி வீச்சை தேர்ந்தெடு - + to - + செய்ய - + Report Location - + இடம் சொல்ல - + Output File Location - + வெளியீடு கோப்பு இடம் - + usage_detail_%s_%s.txt - + usage_detail_%s_%s.txt - + Report Creation - + அறிக்கை உருவாக்கம் - + Report %s has been successfully created. - + அறிக்கை +%s +உருவாக்கிய முடிந்தது. - + Output Path Not Selected - + வெளியீடு பாதை தேர்வாகவில்லை - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + உங்கள் பாடல் பயன்பாடு குறித்த சரியான வெளியீடு இடம் அமைக்க வேண்டும். உங்கள் கணினியில் ஏற்கனவே உள்ள பாதையில் தேர்ந்தெடுக்கவும். SongsPlugin - + &Song - + &பாட்டு - + Import songs using the import wizard. - + இறக்குமதி வழிகாட்டியை பயன்படுத்தி இசை இறக்குமதி. - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + strong>பாட்டு Plugin</strong><br /> இசை plugin இசை காண்பிக்க மற்றும் மேலாண்மை திறன் வழங்குகிறது. - + &Re-index Songs - + &மீண்டும் குறியீட்டு பாடல்கள் - + Re-index the songs database to improve searching and ordering. - + தேடி மற்றும் வரிசைப்படுத்தும் மேம்படுத்த மறு குறியீட்டு இசை தொகுப்பு. - + Reindexing songs... - - - - - Arabic (CP-1256) - + ட்டவணையிடுதல் இசை மீண்டும் ... - Baltic (CP-1257) - + Arabic (CP-1256) + அரபு (CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + பால்டிக் (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + மத்திய ஐரோப்பிய (CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + சிரிலிக் (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + கிரேக்கம் (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + ஹீப்ரூ (CP-1255) - Korean (CP-949) - + Japanese (CP-932) + ஜப்பனீஸ் (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + கொரிய (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + எளிமையான சீன (CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + தாய் (CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + பாரம்பரியமான சீன (CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + துருக்கிய (CP-1254) + Vietnam (CP-1258) + வியட்நாம் (CP-1258) + + + Western European (CP-1252) - + மேற்கு ஐரோப்பிய (CP-1252) - + Character Encoding - + எழுத்து குறியீட்டு முறை - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + Codepage அமைப்பை சரியான +தன்மையை பிரதிநிதித்துவம் பொறுப்பு. +பொதுவாக நீங்கள் preselected தேர்வு நன்றாக இருக்கும். - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + எழுத்துரு குறியீட்டு முறையை தேர்வு செய்யவும். +குறியீட்டு சரியான தன்மை பிரதிநிதித்துவம் பொறுப்பு. - + Song name singular - + பாட்டு - + Songs name plural - + பாடல்கள் - + Songs container title - + பாடல்கள் - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + ஏற்றுமதி ஏற்றுமதி வழிகாட்டியை பயன்படுத்தி பாடல்கள். - Preview the selected song. - + Add a new song. + ஒரு புதிய பாடல் சேர்க்க. - Send the selected song live. - + Edit the selected song. + தேர்ந்தெடுக்கப்பட்ட பாடல் பதிப்பி. + Delete the selected song. + தேர்ந்தெடுக்கப்பட்ட பாடல் நீக்கு. + + + + Preview the selected song. + தேர்ந்தெடுக்கப்பட்ட பாடல் மாதிரி. + + + + Send the selected song live. + தற்போது தேர்ந்தெடுக்கப்பட்ட பாடல் அனுப்ப. + + + Add the selected song to the service. - + சேவை தேர்ந்தெடுக்கப்பட்ட பாடல் சேர்க்கலாம். + + + + Reindexing songs + அட்டவணையிடுதல் பாடல்கள் மீண்டும் SongsPlugin.AuthorsForm - + Author Maintenance - + நூலாசிரியர் பராமரிப்பு - + Display name: - + காண்பிக்கபெயர்: - + First name: - + முதல் பெயர்: - + Last name: - + கடைசி பெயர்: - + You need to type in the first name of the author. - + நீங்கள் நூலாசிரியர் முதல் பெயரை தட்டச்சு செய்ய வேண்டும். - + You need to type in the last name of the author. - + நீங்கள் நூலாசிரியர் கடைசி பெயர் தட்டச்சு செய்ய வேண்டும். - + You have not set a display name for the author, combine the first and last names? - + நீங்கள் நூலாசிரியர் ஒரு காட்சி பெயரை அமைக்க வேண்டும், முதல் மற்றும் கடைசி பெயர்களை சேர்த்து? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + கோப்பு ஒரு செல்லுபடியாகும் நீட்டிப்பு இல்லை. SongsPlugin.EasyWorshipSongImport - + Administered by %s - + ஆல் நிர்வகிக்கப்படுகிறது %s - + [above are Song Tags with notes imported from EasyWorship] - + [மேலே பாடல் குறிச்சொற்கள் +இருந்து இறக்குமதி குறிப்புகள் இருக்கின்றன +EasyWorship] SongsPlugin.EditBibleForm - + Meta Data - + Meta Data - + Custom Book Names - + தனிபயன் புத்தக பெயர்கள SongsPlugin.EditSongForm - + Song Editor - + பாடல் எடிட்டர் - + &Title: - + &தலைப்பு: - + Alt&ernate title: - + மாறு&பட்ட தலைப்பு: - + &Lyrics: - + &பாடல்வரிகளை: - + &Verse order: - + &வசனம் ஒழுங்கு: - + Ed&it All - + அனைத்து தொ&கு - + Title && Lyrics - + தலைப்பு && பாடல் வரிகள் - + &Add to Song - + &பாடல் சேர்க்கவும் - + &Remove - + &நீக்க - + &Manage Authors, Topics, Song Books - + &ஆசிரியர்களையும், தலைப்புகள், பாடல் புத்தகங்கள் மேலாண்மை - + A&dd to Song - + பாடல் சே&ர்க்கவும் - + R&emove - + நீ&க்க - + Book: - + புத்தகம்: - + Number: - + எண்ணை: - + Authors, Topics && Song Book - + நூலாசிரியர்கள், தலைப்புகள் && பாடல் புத்தகம் - + New &Theme - + புதிய &தீம் - + Copyright Information - + பதிப்புரிமை விவரம் - + Comments - + கருத்துரைகள் - + Theme, Copyright Info && Comments - + தீம், பதிப்புரிமை தகவல் && கருத்துரைகள் - + Add Author - + படைப்பாளர் சேர்க்கலாம் - + This author does not exist, do you want to add them? - + இந்த நூலாசிரியர் இல்லை, நீங்கள் அவர்களை சேர்க்க வேண்டுமா? - + This author is already in the list. - + இந்த நூலாசிரியர் பட்டியலில் ஏற்கனவே உள்ளது. - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + நீங்கள் சரியான நூலாசிரியர் தேர்ந்தெடுத்த இல்லை. அல்லது ஒரு புதிய நூலாசிரியர் பட்டியல், அல்லது வகை இருந்து ஒரு நூலாசிரியர் தேர்ந்தெடுக்கவும் மற்றும் புதிய நூலாசிரியர் சேர்க்க "பாடல் என ஆசிரியர் சேர்க்கவும்" பொத்தானை கிளிக் செய்யவும். - + Add Topic - + தலைப்பு சேர்க்கலாம் - + This topic does not exist, do you want to add it? - + இந்த தலைப்பை இல்லை, நீங்கள் இதை சேர்க்க வேண்டுமா? - + This topic is already in the list. - + இந்த தலைப்பை பட்டியலில் ஏற்கனவே உள்ளது. - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + நீங்கள் சரியான தலைப்பு தேர்ந்தெடுக்கவில்லை. அல்லது ஒரு புதிய தலைப்பில் ஒரு பட்டியலில் இருந்து தலைப்பை, அல்லது வகை தேர்ந்தெடுக்கவும் மற்றும் புதிய தலைப்பை சேர்க்க "பாடல் என்று தலைப்பு சேர்க்கவும்" பொத்தானை கிளிக் செய்யவும். - + You need to type in a song title. - + நீங்கள் ஒரு பாடலான பெயர் தட்டச்சு செய்ய வேண்டும். - + You need to type in at least one verse. - + நீங்கள் குறைந்தது ஒரு வசனம் தட்டச்சு செய்ய வேண்டும். - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + வசனம் ஒழுங்கு தவறானது. தொடர்பான இல்லை வசனம் உள்ளது %s. +சரியான உள்ளீடுகளை %s. - + Add Book - + புத்தக சேர்க்கலாம் - + This song book does not exist, do you want to add it? - + இந்த பாடல் புத்தகம் இல்லை, நீங்கள் இதை சேர்க்க வேண்டுமா? - + You need to have an author for this song. - + இந்த பாடல் ஒரு நூலாசிரியர் இருக்க வேண்டும். - - You need to type some text in to the verse. - - - - + Linked Audio - + இணைந்த ஆடியோ - + Add &File(s) - + கோப்பு மற்றும் &சேர்க்கலாம் (கள்) - + Add &Media - + சேர்க்கலாம் &ஊடக - + Remove &All - + அனைத்து &நீக்க - + Open File(s) - + கோப்பு (கள்) திற - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>எச்சரிக்கை:</strong> Not all of the verses are in use. +வசனங்களில் எல்லா பயன்பாட்டில் இல்லை. - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + வசனம் ஒழுங்கு தவறானது. தொடர்புடைய இல்லை வசனங்கள் உள்ளன %s. +சரியான உள்ளீடுகளை %s. SongsPlugin.EditVerseForm - + Edit Verse - + பதிப்பி வசனம் - + &Verse type: - + &வசனம் அமைப்பு: - + &Insert - + &செருகு - + Split a slide into two by inserting a verse splitter. - + ஒரு வசனம் பிரிப்பி சேர்த்துக்கொள்வதன் மூலம் இரண்டு ஒரு ஸ்லைடு பிரிந்தது. SongsPlugin.ExportWizardForm - + Song Export Wizard - + பாடல் ஏற்றுமதி செய்யும் விசார்ட் - + Select Songs - + பாடல்கள் தேர்வு - + Check the songs you want to export. - + நீங்கள் ஏற்றுமதி செய்ய வேண்டும் இசை பாருங்கள். - + Uncheck All - + எல்லாவற்றியும் ஒட்டுமொத்தமாக அகற்றிவிட - + Check All - + அனைத்து சரிபார்த்து - + Select Directory - + அடைவை தேர்ந்தெடு - + Directory: - + அடைவு: - + Exporting - + ஏற்றுமதி - + Please wait while your songs are exported. - + உங்கள் இசை ஏற்றுமதி காத்திருங்கள். - + You need to add at least one Song to export. - + நீங்கள் ஏற்றுமதி குறைந்தது ஒரு பாடல் சேர்க்க வேண்டும். - + No Save Location specified - + எந்த குறிப்பிட்ட இடத்தை சேமிக்கவும் இல்லை - + Starting export... - + ஏற்றுமதி தொடங்கும்... - + You need to specify a directory. - + நீங்கள் ஒரு அடைவை குறிப்பிட வேண்டும். - + Select Destination Folder - + கோப்புறையை தேர்ந்தெடுக்கவும் - + Select the directory where you want the songs to be saved. - + நீங்கள் இசை சேமிக்க விரும்பும் அடைவு தேர்வு. - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + இந்த வழிகாட்டி திறந்த மற்றும் இலவச உங்கள் இசை ஏற்றுமதி உதவும் <strong>OpenLyrics</strong> பாடல் வடிவம் தொழுதுக்கொள்ள. SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + ஆவண / வழங்கல் கோப்புகள் தேர்வு - + Song Import Wizard - + பாடல் இறக்குமதி வழிகாட்டி - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + இந்த வழிகாட்டி நீங்கள் பல வடிவமைப்புகளில் இருந்து இசை இறக்குமதி செய்ய உதவும். இருந்து இறக்குமதி செய்ய ஒரு வடிவம் தேர்ந்தெடுத்து துவங்கும் கீழே உள்ள அடுத்த பொத்தானை கிளிக் செய்யவும். - + Generic Document/Presentation - + பொதுவான ஆவண / வழங்கல் - + Add Files... - + கோப்புகள் சேர்க்கலாம்... - + Remove File(s) - + கோப்பு (கள்) நீக்க - + Please wait while your songs are imported. - + உங்கள் இசை இறக்குமதி காத்திருங்கள். - + OpenLP 2.0 Databases - + OpenLP 2.0 Databases - + openlp.org v1.x Databases - + openlp.org v1.x Databases - + Words Of Worship Song Files - + வழிபாடு பாடல் கோப்புகளை வார்த்தைகள் - + Songs Of Fellowship Song Files - + Songs Of Fellowship பாடல் கோப்புகள் - + SongBeamer Files - + SongBeamer கோப்புகள் - + SongShow Plus Song Files - + SongShow Plus பாடல் கோப்புகள் - + Foilpresenter Song Files - + Foilpresenter பாடல் கோப்புகள் - + Copy - + நகலெடுக்க - + Save to File - + கோப்பு சேமிக்க - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + Fellowship importer பாடல்கள் முடக்கப்பட்டுள்ளதால், OpenLP ஏனெனில் OpenOffice அல்லது LibreOffice திறக்க முடியாது. - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + OpenLP இப்பொழுது OpenOffice அல்லது LibreOffice திறக்க முடியாது, ஏனெனில் generic ஆவணம் / விளக்கக்காட்சி இறக்குமதியாளர் முடக்கப்பட்டுள்ளது. - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics அல்லது OpenLP 2.0 ஏற்றுமதி பாடல் - + OpenLyrics Files - + OpenLyrics கோப்ப - + CCLI SongSelect Files - + CCLI SongSelect கோப்புகள் - + EasySlides XML File - + EasySlides XML கோப்புகள் - + EasyWorship Song Database - + பாடல் தரவுத்தளம் - + DreamBeam Song Files - + DreamBeam பாடல் கோப்புகள் - + You need to specify a valid PowerSong 1.0 database folder. - + நீங்கள் சரியான குறிப்பிட வேண்டும் PowerSong 1.0 database அடைவை. - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + முதலில் உங்கள் மாற்ற ZionWorx ஒரு CSV உரை கோப்பில் தரவுத்தள, என விளக்கினார் <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + SundayPlus Song Files - + SundayPlus பாடல் கோப்புகள் - + This importer has been disabled. - + இந்த இறக்குமதியாளர் முடக்கப்பட்டுள்ளது. - + MediaShout Database - + MediaShout தரவுத்தளம் - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShout இறக்குமதியாளர் இது விண்டோஸ் இல் மட்டுமே துணைபுரிகிறது. அது ஒரு விடுபட்ட Python தொகுதி காரணமாக முடக்கப்பட்டுள்ளது. இந்த இறக்குமதியாளர் பயன்படுத்த விரும்பினால், நீங்கள் "pyodbc" தொகுதி நிறுவ வேண்டும். - + SongPro Text Files - + SongPro உரை கோப்புகள் - + SongPro (Export File) - + SongPro (ஏற்றுமதி கோப்பு) - + In SongPro, export your songs using the File -> Export menu - + SongPro உள்ள, கோப்பு பயன்படுத்தி உங்கள் பாடல்கள் ஏற்றுமதி -> ஏற்றுமதி பட்டி SongsPlugin.MediaFilesForm - + Select Media File(s) - + தேர்ந்தெடுக்கப்பட்ட மீடியா கோப்பு (கள்) - + Select one or more audio files from the list below, and click OK to import them into this song. - + கீழே உள்ள பட்டியலில் இருந்து ஒன்று அல்லது அதற்கு மேற்பட்ட ஆடியோ கோப்புகளை தேர்ந்தெடுக்கவும், மற்றும் இந்த பாடல் அவற்றை இறக்குமதி செய்ய சரி என்பதை கிளிக் செய்யவும். SongsPlugin.MediaItem - + Titles - + தலைப்புகள் - + Lyrics - + பாடல்வரிகளை - + CCLI License: - + CCLI உரிமம்: - + Entire Song - + முழு பாடல் - + Are you sure you want to delete the %n selected song(s)? - + + நீங்கள் நீக்க வேண்டுமா %n தேர்வு பாடல் (கள்)? + நீங்கள் நிச்சயமாக நீக்க வேண்டுமா இல்லை %n தேர்வு பாடல் (கள்)? + - + Maintain the lists of authors, topics and books. - + ஆசிரியர்கள், தலைப்புகள் மற்றும் புத்தகங்கள் பட்டியலை பராமரிக்க. - + copy For song cloning - + நகலெடுக்க - + Search Titles... - + தேடல் தலைப்புகள் ... - + Search Entire Song... - + முழு பாடல் தேட ... - + Search Lyrics... - + தேடல் பாடல்வரிகளை ... - + Search Authors... - + தேடல் ஆசிரியர்களையும் ... - + Search Song Books... - + தேடல் பாடல் புத்தகங்கள் ... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + MediaShout database திறக்க முடியவில்லை. SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + ஒரு செல்லுபடியாகும் openlp.org 1.x பாடல் தொகுப்பு. SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + ஒரு செல்லுபடியாகும் OpenLP 2.0 பாடல் தொகுப்பு. SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + ஏற்றுமதி %s"... SongsPlugin.PowerSongImport - + No songs to import. - + இறக்குமதி பாடல்கள் இல்லை. - + Verses not found. Missing "PART" header. - + செய்யுள்கள் இல்லை. "பாகம்" மேற்குறிப்பு இல்லை. + + + + No %s files found. + எந்த %s கோப்புகளும் இல்லை. + + + + Invalid %s file. Unexpected byte value. + தவறான %s கோப்பு. எதிர்பாராத பைட் மதிப்பு. + + + + Invalid %s file. Missing "TITLE" header. + தவறான %s கோப்பு. "TITLE" header இல்லை. + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + தவறான %s கோப்பு. "COPYRIGHTLINE" header இல்லை. SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + பாடல் புத்தக பராமரிப்பு - &Publisher: - + &Name: + &பெயர்: - + + &Publisher: + &வெளியீட்டாளர்: + + + You need to type in a name for the book. - + நீங்கள் புத்தகத்தை ஒரு பெயரை தட்டச்சு செய்ய வேண்டும். SongsPlugin.SongExportForm - + Your song export failed. - + உங்கள் பாடல் ஏற்றுமதி தோல்வியடைந்தது. - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + ஏற்றுமதி முடிக்கப்பட்ட. இந்த கோப்புகளை இறக்குமதி செய்ய பயன்படுத்த + SongsPlugin.SongImport - + copyright - + பதிப்புரிமை - + The following songs could not be imported: - + இந்த இசை இறக்குமதி செய்ய முடியாது: - + Cannot access OpenOffice or LibreOffice - + OpenOffice அல்லது LibreOffice அணுக முடியாது - + Unable to open file - + கோப்பை திறக்க முடியவில்லை - + File not found - + கோப்பு காணவில்லை SongsPlugin.SongMaintenanceForm - + Could not add your author. - + உங்கள் நூலாசிரியர் சேர்க்க முடியவில்லை. - + This author already exists. - + இந்த நூலாசிரியர் முன்பே இருக்கிறது. - + Could not add your topic. - + உங்கள் தலைப்பை சேர்க்க முடியவில்லை. - + This topic already exists. - + இந்த தலைப்பு ஏற்கனவே உள்ளது. - + Could not add your book. - + உங்கள் புத்தகத்தில் சேர்க்க முடியவில்லை. - + This book already exists. - + இந்த புத்தகம் முன்பே இருக்கிறது. - + Could not save your changes. - + உங்கள் மாற்றங்களை சேமிக்க முடியவில்லை. - + Could not save your modified author, because the author already exists. - + நூலாசிரியர் ஏற்கனவே உள்ளது, ஏனெனில், உங்கள் மணிக்கு நூலாசிரியர் காப்பாற்ற முடியவில்லை. - + Could not save your modified topic, because it already exists. - + இது ஏற்கனவே உள்ளது, ஏனெனில், உங்கள் மணிக்கு தலைப்பை சேமிக்க முடியவில்லை. - + Delete Author - + படைப்பாளர் நீக்கு - + Are you sure you want to delete the selected author? - + நீங்கள் தேர்ந்தெடுத்த நூலாசிரியர் நீக்க வேண்டுமா? - + This author cannot be deleted, they are currently assigned to at least one song. - + இந்த நூலாசிரியர் நீக்க முடியாது, அவர்கள் தற்சமயம் குறைந்தபட்சம் ஒரு பாடல் ஒதுக்கப்படும். - + Delete Topic - + தலைப்பு நீக்கு - + Are you sure you want to delete the selected topic? - + நீங்கள் தேர்ந்தெடுத்த தலைப்பு நீக்க வேண்டுமா? - + This topic cannot be deleted, it is currently assigned to at least one song. - + இந்த தலைப்பை நீக்க முடியாது, அது தற்சமயம் குறைந்தது ஒரு பாடல் ஒதுக்கப்படும். - + Delete Book - + புத்தக நீக்கு - + Are you sure you want to delete the selected book? - + நீங்கள் தேர்ந்தெடுத்த புத்தகம் நீக்க வேண்டுமா? - + This book cannot be deleted, it is currently assigned to at least one song. - + இந்த புத்தகம் நீக்க முடியாது, அது தற்சமயம் குறைந்தது ஒரு பாடல் ஒதுக்கப்படும். - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + இந்த நூலாசிரியர் %s முன்பே இருக்கிறது. நீங்கள் நூலாசிரியர் என்ற இசை செய்ய விரும்புகிறேன் %s ஏற்கனவே இருக்கும் நூலாசிரியர் பயன்படுத்தும்%s? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + இந்த தலைப்பை %s முன்பே இருக்கிறது. நீங்கள் தலைப்பை கொண்ட இசை செய்ய விரும்புகிறேன் %s ஏற்கனவே தலைப்பை பயன்படுத்த %s? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + இந்த புத்தகம் %s ஏற்கனவே உள்ளது. நீங்கள் புத்தகம் இசை செய்ய விரும்புகிறேன் %s ஏற்கனவே புத்தகத்தில் பயன்படுத்த %s? SongsPlugin.SongsTab - + Songs Mode - + பாடல்கள் முறை - + Enable search as you type - + நீங்கள் தட்டச்சு தேடல் செயல்படுத்த - + Display verses on live tool bar - + நேரடி கருவி பட்டியில் வசனங்கள் காண்பிக்க - + Update service from song edit - + பாடல் தொகு இருந்து சேவையை மேம்படுத்த - + Import missing songs from service files - + சேவை கோப்புகளை காணவில்லை பாடல்கள் இறக்குமதி SongsPlugin.TopicsForm - + Topic Maintenance - + தலைப்ப பராமரிப்பு - + Topic name: - + தலைப்பு பெயர்: - + You need to type in a topic name. - + நீங்கள் ஒரு தலைப்பை பெயரை தட்டச்சு செய்ய வேண்டும். SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + வசனம் - Bridge - + Chorus + கோரஸ் - Pre-Chorus - + Bridge + Bridge - Intro - + Pre-Chorus + முன் கோரஸ் - Ending - + Intro + அறிமுகமே + Ending + முடிவுக்கு + + + Other - + வேறு SongsPlugin.ZionWorxImport - + Error reading CSV file. - + படிப்பதில் பிழை CSV கோப்பு. - + File not valid ZionWorx CSV format. - + செல்லாத ZionWorx CSV வடிவத்தில் தாக்கல். + + + + Line %d: %s + வரிசை %d: %s + + + + Decoding error: %s + நீக்கத்திற்கு பிழை: %s + + + + Record %d + சாதனையை %d - \ No newline at end of file + diff --git a/resources/i18n/zh_CN.ts b/resources/i18n/zh_CN.ts index ef3da7b77..2581c217b 100644 --- a/resources/i18n/zh_CN.ts +++ b/resources/i18n/zh_CN.ts @@ -1,108 +1,109 @@ - + + AlertsPlugin - + &Alert - + 警告(A) - + Show an alert message. - + 显示一个警告信息. - + Alert name singular - + 警告 - + Alerts name plural - + 警告 - + Alerts container title - + 警告 - + <strong>Alerts Plugin</strong><br />The alert plugin controls the displaying of nursery alerts on the display screen. - + <strong>警告插件</strong><br />警告插件控制在显示屏幕上控制儿童班的警告显示。 AlertsPlugin.AlertForm - + Alert Message - + 警告信息 - + Alert &text: - + 警告文本(T): - + &New - + 新建(N) - + &Save - + 保存(S) - + Displ&ay - + 显示(A) - + Display && Cl&ose - + 显示关闭(O) - + New Alert - + 新建警告 - + You haven't specified any text for your alert. Please type in some text before clicking New. - + 您尚未指定警告的文字内容。请在点击新建之前输入一些文字。 - + &Parameter: - + 参数(P): - + No Parameter Found - + 未找到参数 - + You have not entered a parameter to be replaced. Do you want to continue anyway? - + 您还没有输入需要被替换的参数,仍然希望继续吗? - + No Placeholder Found - + 未找到占位符 - - The alert text does not contain '<>'. + + The alert text does not contain '<>'. Do you want to continue anyway? - + 警告文字并不包含'<>'。您依然希望继续吗? @@ -110,634 +111,635 @@ Do you want to continue anyway? Alert message created and displayed. - + 警告信息已创建并显示. AlertsPlugin.AlertsTab - + Font - + 字体 - + Font name: - + 字体名称: - + Font color: - + 字体颜色: - + Background color: - + 背景颜色: - + Font size: - + 字号: - + Alert timeout: - + 警告时长: BiblesPlugin - + &Bible - - - - - Bible - name singular - + 圣经(B) + Bible + name singular + 圣经 + + + Bibles name plural - + 圣经 - + Bibles container title - + 圣经 - + No Book Found - + 未找到任何书卷 - + No matching book could be found in this Bible. Check that you have spelled the name of the book correctly. - - - - - Import a Bible. - + 在这本圣经中未发现任何匹配的书卷,请检查您输入的书名是否正确。 - Add a new Bible. - + Import a Bible. + 导入一本圣经 - Edit the selected Bible. - + Add a new Bible. + 新增一本圣经 - Delete the selected Bible. - + Edit the selected Bible. + 编辑选中的圣经 - Preview the selected Bible. - + Delete the selected Bible. + 删除选中的圣经 - - Send the selected Bible live. - + + Preview the selected Bible. + 预览选中的圣经 + Send the selected Bible live. + 将选中的圣经发送到现场 + + + Add the selected Bible to the service. - + 将选中的圣经增加到聚会 - + <strong>Bible Plugin</strong><br />The Bible plugin provides the ability to display Bible verses from different sources during the service. - + <strong>圣经插件</strong><br />在敬拜时圣经插件提供从不同来源显示圣经经节的功能 - + &Upgrade older Bibles - + 升级旧版本的圣经(U) - + Upgrade the Bible databases to the latest format. - - - - - Genesis - + 升级圣经数据库到最新的格式 - Exodus - + Genesis + 创世纪 - Leviticus - + Exodus + 出埃及记 - Numbers - + Leviticus + 利未记 - Deuteronomy - + Numbers + 民数记 - Joshua - + Deuteronomy + 申命记 - Judges - + Joshua + 约书亚记 - Ruth - + Judges + 士师记 - 1 Samuel - + Ruth + 路得记 - 2 Samuel - + 1 Samuel + 撒母耳记上 - 1 Kings - + 2 Samuel + 撒母耳记下 - 2 Kings - + 1 Kings + 列王纪上 - 1 Chronicles - + 2 Kings + 列王纪下 - 2 Chronicles - + 1 Chronicles + 历代志上 - Ezra - + 2 Chronicles + 历代志下 - Nehemiah - + Ezra + 以斯拉记 - Esther - + Nehemiah + 尼希米记 - Job - + Esther + 以斯帖记 - Psalms - + Job + 约伯记 - Proverbs - + Psalms + 诗篇 - Ecclesiastes - + Proverbs + 箴言 - Song of Solomon - + Ecclesiastes + 传道书 - Isaiah - + Song of Solomon + 雅歌 - Jeremiah - + Isaiah + 以赛亚书 - Lamentations - + Jeremiah + 耶利米书 - Ezekiel - + Lamentations + 耶利米哀歌 - Daniel - + Ezekiel + 以西结书 - Hosea - + Daniel + 但以理书 - Joel - + Hosea + 何西阿书 - Amos - + Joel + 约珥书 - Obadiah - + Amos + 阿摩司书 - Jonah - + Obadiah + 俄巴底亚书 - Micah - + Jonah + 约拿书 - Nahum - + Micah + 弥迦书 - Habakkuk - + Nahum + 那鸿书 - Zephaniah - + Habakkuk + 哈巴谷书 - Haggai - + Zephaniah + 西番雅书 - Zechariah - + Haggai + 哈该书 - Malachi - + Zechariah + 撒加利亚书 - Matthew - + Malachi + 玛拉基书 - Mark - + Matthew + 马太福音 - Luke - + Mark + 马可福音 - John - + Luke + 路加福音 - Acts - + John + 约翰福音 - Romans - + Acts + 使徒行传 - 1 Corinthians - + Romans + 罗马书 - 2 Corinthians - + 1 Corinthians + 哥林多前书 - Galatians - + 2 Corinthians + 哥林多后书 - Ephesians - + Galatians + 加拉太书 - Philippians - + Ephesians + 以弗所书 - Colossians - + Philippians + 腓力比书 - 1 Thessalonians - + Colossians + 哥罗西书 - 2 Thessalonians - + 1 Thessalonians + 帖撒罗尼迦前书 - 1 Timothy - + 2 Thessalonians + 帖撒罗尼迦后书 - 2 Timothy - + 1 Timothy + 提摩太前书 - Titus - + 2 Timothy + 提摩太后书 - Philemon - + Titus + 提多书 - Hebrews - + Philemon + 腓力门书 - James - + Hebrews + 希伯来书 - 1 Peter - + James + 雅各书 - 2 Peter - + 1 Peter + 彼得前书 - 1 John - + 2 Peter + 彼得后书 - 2 John - + 1 John + 约翰一书 - 3 John - + 2 John + 约翰二书 - Jude - + 3 John + 约翰三书 - Revelation - + Jude + 犹大书 - Judith - + Revelation + 启示录 - Wisdom - + Judith + 犹滴传 - Tobit - + Wisdom + 智慧篇 - Sirach - + Tobit + 多比传 - Baruch - + Sirach + 德训篇 - 1 Maccabees - + Baruch + 巴鲁书 - 2 Maccabees - + 1 Maccabees + 马加比一书 - 3 Maccabees - + 2 Maccabees + 马加比二书 - 4 Maccabees - + 3 Maccabees + 马加比三书 - Rest of Daniel - + 4 Maccabees + 马加比四书 - Rest of Esther - + Rest of Daniel + 但以理补编 - Prayer of Manasses - + Rest of Esther + 以斯帖补编 - Letter of Jeremiah - + Prayer of Manasses + 玛拿西祷言 - Prayer of Azariah - + Letter of Jeremiah + 耶利米书信 - Susanna - + Prayer of Azariah + 亚撒利雅祷词 - Bel - + Susanna + 苏珊娜传 - 1 Esdras - + Bel + 比勒 - 2 Esdras - + 1 Esdras + 艾斯达前书 - + + 2 Esdras + 艾斯达后书 + + + :|v|V|verse|verses;;-|to;;,|and;;end Double-semicolon delimited separators for parsing references. Consult the developers for further information. - + :|v|V|经节|经节;;-|到;;,|和;;完 BiblesPlugin.BibleEditForm - + You need to specify a version name for your Bible. - + 您需要为您的圣经指定一个版本名称 - + You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + 您需要为您的圣经设定版权信息。在公有领域的圣经也需要如此标注 - + Bible Exists - + 圣经已存在 - + This Bible already exists. Please import a different Bible or first delete the existing one. - + 这本圣经已经存在,请导入另一本圣经或是删除存在的那本。 - + You need to specify a book name for "%s". - + 您需要为"%s"指定一个书卷名。 - + The book name "%s" is not correct. Numbers can only be used at the beginning and must be followed by one or more non-numeric characters. - + 书卷名称 "%s"不正确。 +数字只能放在开头并且必须后接一个或多个非数字字符。 - + Duplicate Book Name - + 重复的书卷名 - + The Book Name "%s" has been entered more than once. - + 书卷名"%s"已被输入过一次 BiblesPlugin.BibleManager - + Scripture Reference Error - + 经文标识错误 - + Web Bible cannot be used - + 无法使用网络圣经 - + Text Search is not available with Web Bibles. - + 无法在网络圣经上启用文本搜索 - + You did not enter a search keyword. You can separate different keywords by a space to search for all of your keywords and you can separate them by a comma to search for one of them. - + 您没有输入搜索的关键字。您可以使用空格来分隔所有需要被搜索的关键字。若想搜索几个关键字中的任何一个,请使用逗号来分隔它们。 - + There are no Bibles currently installed. Please use the Import Wizard to install one or more Bibles. - + 尚未安装任何圣经,请使用导入向导来安装一个或多个版本的圣经 - + No Bibles Available - + 无任何圣经可用 - + Your scripture reference is either not supported by OpenLP or is invalid. Please make sure your reference conforms to one of the following patterns or consult the manual: Book Chapter @@ -747,313 +749,331 @@ Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse Please pay attention to the appended "s" of the wildcards and refrain from translating the words inside the names in the brackets. - + 您的经文标识不受OpenLP支持或是无效的,请确保您的标识符和下列任意一种格式或是参阅说明文档: + +Book Chapter +Book Chapter%(range)sChapter +Book Chapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sVerse%(list)sChapter%(verse)sVerse%(range)sVerse +Book Chapter%(verse)sVerse%(range)sChapter%(verse)sVerse BiblesPlugin.BiblesTab - + Verse Display - + 经节显示 - + Only show new chapter numbers - + 只显示新的篇章号 - + Bible theme: - + 圣经主题: - + No Brackets - + 无括号 - + ( And ) - + ( 和 ) - + { And } - + { 和 } - + [ And ] - + [ 和 ] - + Note: Changes do not affect verses already in the service. - + 注意: +改动并不影响已在敬拜仪式中的经文 - + Display second Bible verses - + 显示第二种圣经经文 - + Custom Scripture References - + 自定义经文标识 - + Verse Separator: - + 经节分隔符: - + Range Separator: - + 范围分隔符: - + List Separator: - + 表单分隔符: - + End Mark: - + 终止符: - + Multiple alternative verse separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + 可定义多种不同的经节分隔符。 +它们必须被一条竖线"|"分隔。 +若要使用默认值,请清空这一行。 - + Multiple alternative range separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + 可定义多种不同的范围分隔符。 +它们必须被一条竖线"|"分隔。 +若要使用默认值,请清空这一行。 - + Multiple alternative list separators may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + 可定义多种不同的表单分隔符。 +它们必须被一条竖线"|"分隔。 +若要使用默认值,请清空这一行。 - + Multiple alternative end marks may be defined. They have to be separated by a vertical bar "|". Please clear this edit line to use the default value. - + 可定义多种不同的终止符。 +它们必须被一条竖线"|"分隔。 +若要使用默认值,请清空这一行。 - + English - + 英语 - + Default Bible Language - + 默认圣经语言 - + Book name language in search field, search results and on display: - + 书卷名称语言在搜索栏, +搜索结果和显示器上: - + Bible Language - + 圣经语言 - + Application Language - + 应用程序语言 BiblesPlugin.BookNameDialog - + Select Book Name - + 选择书卷名 - + Current name: - + 当前名称: - + Corresponding name: - + 对应名称: - + Show Books From - + 显示书卷从 - + Old Testament - + 旧约 - + New Testament - + 新约 - + Apocrypha - + 次经 - + The following book name cannot be matched up internally. Please select the corresponding name from the list. - + 以下书卷名无法进行内部配对。请从列表中选择对应的名称。 BiblesPlugin.BookNameForm - + You need to select a book. - + 您需要选择一册书卷。 BiblesPlugin.CSVBible - + Importing books... %s - + 正在导入书卷... %s - + Importing verses from %s... Importing verses from <book name>... - + 正在从 %s 中导入经节... - + Importing verses... done. - + 正在导入经节... 完成。 BiblesPlugin.EditBibleForm - + Bible Editor - + 圣经编辑器 - + License Details - + 版权许可细节 - + Version name: - + 版本名称: - + Copyright: - + 版权: - + Permissions: - + 许可: - + Default Bible Language - + 默认圣经语言 - + Book name language in search field, search results and on display: - + 书卷名称语言在搜索栏,搜索结果和显示器上: - + Global Settings - + 全局设定 - + Bible Language - + 圣经语言 - + Application Language - + 应用程序语言 - + English - + 英语 - + This is a Web Download Bible. It is not possible to customize the Book Names. - + 这是一本网络版圣经。 +不可能自定义书卷名。 - + To use the customized book names, "Bible language" must be selected on the Meta Data tab or, if "Global settings" is selected, on the Bible page in Configure OpenLP. - + 要使用自定义书卷名称,"圣经语言" 必须在Meta数据标签上被选中,或者,在配置OpenLP里的圣经页面上(如果已选择 "全局设定"的话)。 BiblesPlugin.HTTPBible - + Registering Bible and loading books... - + 正在注册圣经并载入书卷... - + Registering Language... - + 正在注册语言... - + Importing %s... Importing <book name>... - + 正在导入 %s... - + Download Error - + 下载错误 - + There was a problem downloading your verse selection. Please check your Internet connection, and if this error continues to occur please consider reporting a bug. - + 在下载您选择的经节时出现一个问题。请检查您的网络连接,如果此错误继续出现请考虑报告软件缺陷。 - + Parse Error - + 解析错误 - + There was a problem extracting your verse selection. If this error continues to occur please consider reporting a bug. - + 在解包您选择的经节时出现问题。如果此错误继续出现请考虑报告软件缺陷。 @@ -1061,951 +1081,989 @@ It is not possible to customize the Book Names. Bible Import Wizard - + 圣经导入向导 This wizard will help you to import Bibles from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + 该向导将帮助您导入各种不同格式的圣经。点击下面的下一步选择导入的格式来启动导入过程。 Web Download - + 网络下载 Location: - + 位置: Crosswalk - + Crosswalk BibleGateway - + BibleGateway Bible: - + 圣经: Download Options - + 下载选项 Server: - + 服务器: Username: - + 用户名: Password: - + 密码: Proxy Server (Optional) - + 代理服务器(可选) License Details - + 许可证细节 Set up the Bible's license details. - + 设置圣经的许可证细节 Version name: - + 版本名称: Copyright: - + 版权: Please wait while your Bible is imported. - + 请稍等,正在导入您的圣经。 You need to specify a file with books of the Bible to use in the import. - + 您需要指定包含圣经书卷的文件来使用导入。 You need to specify a file of Bible verses to import. - + 您需要指定包含圣经经节的文件来使用导入。 You need to specify a version name for your Bible. - + 您需要为您的圣经指定一个版本名称。 You need to set a copyright for your Bible. Bibles in the Public Domain need to be marked as such. - + 您需要为您的圣经设置版权。在公有领域的圣经需要被标注出来。 Bible Exists - + 圣经版本存在 This Bible already exists. Please import a different Bible or first delete the existing one. - + 该版本圣经已存在。请导入一个不同版本的圣经或是先删除已存在的那个。 Your Bible import failed. - + 你的圣经导入失败 CSV File - + CSV文件 Bibleserver - + 圣经服务器 Permissions: - + 权限: Bible file: - + 圣经文件: Books file: - + 书卷文件: Verses file: - + 经节文件: openlp.org 1.x Bible Files - + openlp.org 1.x 圣经文件 Registering Bible... - + 正在注册圣经... Registered Bible. Please note, that verses will be downloaded on demand and thus an internet connection is required. - + 已注册圣经。请注意,经节将根据 +需要下载,因此需要网络连接。 BiblesPlugin.LanguageDialog - + Select Language - + 选择语言 - + OpenLP is unable to determine the language of this translation of the Bible. Please select the language from the list below. - + OpenLP无法确定此翻译本圣经的语言,请在下列菜单中选择语言。 - + Language: - + 语言: BiblesPlugin.LanguageForm - + You need to choose a language. - + 您需要选择一种语言。 BiblesPlugin.MediaItem - + Quick - + 快速 - + Find: - + 寻找: - + Book: - + 书卷: - + Chapter: - + 篇章: - + Verse: - + 经节: - + From: - + 从: - + To: - + 到: - + Text Search - + 文本搜索 - + Second: - + 第二版本: - + Scripture Reference - + 经文出处: - + Toggle to keep or clear the previous results. - + 切换保留或清空之前的结果。 - + You cannot combine single and dual Bible verse search results. Do you want to delete your search results and start a new search? - + 您不能结合单和双圣经经节搜索结果。您希望删除搜索结果并开始新的搜索吗? - + Bible not fully loaded. - + 圣经没有完全载入。 - + Information - + 信息 - + The second Bible does not contain all the verses that are in the main Bible. Only verses found in both Bibles will be shown. %d verses have not been included in the results. - + 第二本圣经并不包含主圣经里所有的经节。只有两本圣经都包含的经节才会被显示。 %d条经节没有被包括在结果里。 - + Search Scripture Reference... - + 搜索经文出处... - + Search Text... - + 搜索文本... - + Are you sure you want to completely delete "%s" Bible from OpenLP? You will need to re-import this Bible to use it again. - + 您确认要从OpenLP彻底删除 "%s" 圣经? + +要再次使用,您需要重新导入。 BiblesPlugin.OpenSongImport - + Incorrect Bible file type supplied. OpenSong Bibles may be compressed. You must decompress them before import. - + 提供了不正确的圣经文件。OpenSong圣经也许被压缩过。您必须在导入前解压它们。 BiblesPlugin.Opensong - + Importing %s %s... Importing <book name> <chapter>... - + 正在导入 %s %s BiblesPlugin.OsisImport - + Detecting encoding (this may take a few minutes)... - + 正在检测编码(可能需要几分钟时间)... - + Importing %s %s... Importing <book name> <chapter>... - + 正在导入 %s 第 %s 章... BiblesPlugin.UpgradeWizardForm - + Select a Backup Directory - + 选择一个备份目录 - + Bible Upgrade Wizard - + 圣经升级向导 - + This wizard will help you to upgrade your existing Bibles from a prior version of OpenLP 2. Click the next button below to start the upgrade process. - + 该向导将帮助您升级您目前OpenLP 2之前版本的圣经。点击下面的下一步来开始升级过程 - + Select Backup Directory - + 选择备份目录 - + Please select a backup directory for your Bibles - + 请为您的圣经选择一个备份目录 - + Previous releases of OpenLP 2.0 are unable to use upgraded Bibles. This will create a backup of your current Bibles so that you can simply copy the files back to your OpenLP data directory if you need to revert to a previous release of OpenLP. Instructions on how to restore the files can be found in our <a href="http://wiki.openlp.org/faq">Frequently Asked Questions</a>. - + OpenLP 2.0之前发布的版本将无法使用升级过的圣经。这将会为您目前的圣经创建一个备份,因此如果您需要恢复到过去发布的OpenLP,您可以简单地将文件复制回OpenLP的数据目录。如何恢复文件的指导可在我们的<a href="http://wiki.openlp.org/faq">常见问题</a>里找到。 - + Please select a backup location for your Bibles. - + 请为您的圣经选择一个备份目录 - + Backup Directory: - + 备份目录: - + There is no need to backup my Bibles - + 不需要备份我的圣经 - + Select Bibles - + 选择圣经版本 - + Please select the Bibles to upgrade - + 请选择需要升级的圣经 - + Upgrading - + 正在升级 - + Please wait while your Bibles are upgraded. - + 请稍等,您的圣经正在被升级。 - + The backup was not successful. To backup your Bibles you need permission to write to the given directory. - + 备份不成功。 +您需要对给定的目录有写入权限才能备份您的圣经。 - + Upgrading Bible %s of %s: "%s" Failed - + 正在升级第%s本圣经,总共%s本:"%s" +失败 - + Upgrading Bible %s of %s: "%s" Upgrading ... - + 正在升级第%s本圣经,总共%s本: "%s" +正在升级... - + Download Error - + 下载时出现错误 - + To upgrade your Web Bibles an Internet connection is required. - + 升级您的网络圣经需要网络连接 - + Upgrading Bible %s of %s: "%s" Upgrading %s ... - + 正在升级第%s本圣经,总共%s本: "%s" +正在升级 %s... - + Upgrading Bible %s of %s: "%s" Complete - + 正在升级第%s本圣经,总共%s本: "%s" +完成 - + , %s failed - + , %s 失败 - + Upgrading Bible(s): %s successful%s Please note that verses from Web Bibles will be downloaded on demand and so an Internet connection is required. - + 正在升级圣经:%s 成功%s +请注意网络圣经的经节将该根据需要下载,因此需要网络连接。 - + Upgrading Bible(s): %s successful%s - + 升级圣经: %s 成功%s - + Upgrade failed. - + 升级失败 - + You need to specify a backup directory for your Bibles. - + 您需要为您的圣经指定一个备份目录 - + Starting upgrade... - + 正在开始升级... - + There are no Bibles that need to be upgraded. - + 没有任何圣经版本需要升级。 CustomPlugin - + <strong>Custom Slide Plugin</strong><br />The custom slide plugin provides the ability to set up custom text slides that can be displayed on the screen the same way songs are. This plugin provides greater freedom over the songs plugin. - + <strong>自定义幻灯片插件</strong><br />自定义幻灯片插件提供设置可像歌曲一样放置在屏幕上的自定义文本幻灯片。这个插件提供比歌曲插件更大的自由度。 - + Custom Slide name singular - + 自定义幻灯片 - + Custom Slides name plural - + 自定义幻灯片 - + Custom Slides container title - - - - - Load a new custom slide. - + 自定义幻灯片 - Import a custom slide. - + Load a new custom slide. + 载入一张新的自定义幻灯片。 - Add a new custom slide. - + Import a custom slide. + 导入一张自定义幻灯片。 + Add a new custom slide. + 新增一张自定义幻灯片。 + + + Edit the selected custom slide. - + 编辑选中的自定义幻灯片。 - + Delete the selected custom slide. - + 删除选中的自定义幻灯片。 - + Preview the selected custom slide. - + 预览选中的自定义幻灯片 - + Send the selected custom slide live. - + 将选中的自定义幻灯片发送到现场 - + Add the selected custom slide to the service. - + 将选中的自定义幻灯片添加到敬拜仪式里。 CustomPlugin.CustomTab - + Custom Display - + 自定义显示 - + Display footer - + 显示页脚 CustomPlugin.EditCustomForm - + Edit Custom Slides - + 编辑自定义幻灯片 - + &Title: - + 标题(T): - + Add a new slide at bottom. - + 在底部新增一张幻灯片 - + Edit the selected slide. - + 编辑所选中的幻灯片 - + Edit all the slides at once. - + 同时编辑所有幻灯片 - + Split a slide into two by inserting a slide splitter. - + 插入一个幻灯片分隔符来将一张幻灯片拆分为两张 - + The&me: - + 主题(M): - + &Credits: - + 制作名单(C): - + You need to type in a title. - + 您需要输入一个标题 - + You need to add at least one slide - + 您需要插入至少一张幻灯片 - + Ed&it All - + 编辑所有(I) - + Insert Slide - + 插入幻灯片 CustomPlugin.EditVerseForm - + Edit Slide - + 编辑幻灯片 CustomPlugin.MediaItem - + Are you sure you want to delete the %n selected custom slide(s)? - + + 您确定想要删除这%n张选中的自定义幻灯片吗? + ImagePlugin - + <strong>Image Plugin</strong><br />The image plugin provides displaying of images.<br />One of the distinguishing features of this plugin is the ability to group a number of images together in the service manager, making the displaying of multiple images easier. This plugin can also make use of OpenLP's "timed looping" feature to create a slide show that runs automatically. In addition to this, images from the plugin can be used to override the current theme's background, which renders text-based items like songs with the selected image as a background instead of the background provided by the theme. - - - - - Image - name singular - + <strong>图片插件</strong><br />图片插件提供图片展示。<br />这个插件其中一个显著的特征是它可在敬拜管理器中将多张照片分组,使显示多张照片更容易。这个插件也可以使用OpenLP的计时循环特征来创建可自动播放的幻灯演示。除此以外,该插件中的图片可以被用来覆盖当前主题的背景,使基于文本的项目(比如歌曲)使用选中的图片作为背景而不是主题提供的背景。 + Image + name singular + 图片 + + + Images name plural - + 图片 - + Images container title - + 图片 - + Load a new image. - - - - - Add a new image. - + 载入一张新图片 - Edit the selected image. - + Add a new image. + 新增一张图片 - Delete the selected image. - + Edit the selected image. + 编辑选中的图片 - Preview the selected image. - + Delete the selected image. + 删除选中的图片 - Send the selected image live. - + Preview the selected image. + 预览选中的图片 + Send the selected image live. + 将选中的图片发送到现场。 + + + Add the selected image to the service. - + 将选中的图片添加到敬拜仪式里。 ImagePlugin.ExceptionDialog - + Select Attachment - + 选择附件 ImagePlugin.MediaItem - + Select Image(s) - + 选择图片 - + You must select an image to delete. - + 您必须选择一张图片来删除。 - + You must select an image to replace the background with. - + 您必须选择一张图片来替换背景。 - + Missing Image(s) - + 遗失图片 - + The following image(s) no longer exist: %s - + 以下图片已不存在:%s - + The following image(s) no longer exist: %s Do you want to add the other images anyway? - + 以下图片已不存在:%s +您仍然想加入其它图片吗? - + There was a problem replacing your background, the image file "%s" no longer exists. - + 替换背景时出现一个问题,图片文件"%s"已不存在。 - + There was no display item to amend. - + 没有显示项目可以修改。 ImagesPlugin.ImageTab - + Background Color - + 背景颜色 - + Default Color: - + 默认颜色: - + Visible background for images with aspect ratio different to screen. - + 长宽比例与屏幕不同的图片的可见背景 MediaPlugin - + <strong>Media Plugin</strong><br />The media plugin provides playback of audio and video. - - - - - Media - name singular - + <strong>媒体插件</strong><br />媒体插件提供音频和视频的回放。 Media - name plural - + name singular + 媒体 - + + Media + name plural + 媒体 + + + Media container title - + 媒体 - + Load new media. - - - - - Add new media. - + 载入新媒体 - Edit the selected media. - + Add new media. + 新增媒体 - Delete the selected media. - + Edit the selected media. + 编辑选中的媒体 - Preview the selected media. - + Delete the selected media. + 删除选中的媒体 - Send the selected media live. - + Preview the selected media. + 预览选中的媒体 + Send the selected media live. + 将选中的媒体发送到现场 + + + Add the selected media to the service. - + 将选中的媒体添加到敬拜仪式 MediaPlugin.MediaItem - + Select Media - + 选择媒体 - + You must select a media file to delete. - + 您必须先选中一个媒体文件才能删除 - + You must select a media file to replace the background with. - + 您必须选择一个媒体文件来替换背景。 - + There was a problem replacing your background, the media file "%s" no longer exists. - + 替换您的背景时发生问题,媒体文件"%s"已不存在。 - + Missing Media File - + 缺少媒体文件 - + The file %s no longer exists. - + 文件 %s 已不存在。 - + Videos (%s);;Audio (%s);;%s (*) - + 视频 (%s);;音频 (%s);;%s (*) - + There was no display item to amend. - + 没有显示项目可以修改 - + Unsupported File - + 不支持的文件 - + Automatic - + 自动 - + Use Player: - + 使用播放器: MediaPlugin.MediaTab - + Available Media Players - + 可用媒体播放器 - + %s (unavailable) - + %s (不可用) - + Player Order - + 播放器顺序 - + Allow media player to be overridden - + 允许媒体播放器被覆盖 OpenLP - + Image Files - + 图片文件 - + Information - + 信息 - + Bible format has changed. You have to upgrade your existing Bibles. Should OpenLP upgrade now? - + 圣经格式已改变, +您必须升级您现有的圣经。 +希望OpenLP现在就升级它们吗? OpenLP.AboutForm - + Credits - + 参与人名单 - + License - + 许可 - - Contribute - - - - + build %s - + 修订 %s - + This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2 of the License. - + 这个程序是自由软件,您可以在由自由软件基金会发布的GNU通用公共许可证的条款,第2版的许可下重新分配和/或修改它。 - + This program 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 below for more details. - + 这个程序是在它将会有用的期望下分发的,但没有任何保障,甚至没有任何暗示的适销性或针对特定用途的保障。参阅以下更多细节。 - + + Copyright © 2004-2012 %s +Portions copyright © 2004-2012 %s + 版权所有 © 2004-2012 %s +部分版权所有 © 2004-2012 %s + + + + OpenLP <version><revision> - Open Source Lyrics Projection + +OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. + +Find out more about OpenLP: http://openlp.org/ + +OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider volunteering by using the button below. + OpenLP <版本><修订> - 开源歌词演示 + +OpenLP是一个免费的教会演示软件,或歌词演示软件,被用在教会敬拜时使用电脑和数字投影仪来展示歌词,圣经经节,视频,图片,甚至幻灯片演示(如果已安装Impress, PowerPoint或PowerPoint Viewer的话)。 + +参阅更多OpenLP的信息: http://openlp.org/ + +OpenLP是由志愿者编写和维护的。如果您想看到更多基督教的软件被编写出来,请考虑点击下面的按钮来志愿加入。 + + + + Volunteer + 志愿者 + + + Project Lead %s @@ -2024,12 +2082,91 @@ Packagers Translators Afrikaans (af) %s + Czeck (cs) + %s + Danish (da) + %s German (de) %s + Greek (el) + %s English, United Kingdom (en_GB) %s English, South Africa (en_ZA) %s + Spanish (es) + %s + Estonian (et) + %s + French (fr) + %s + Hungarian (hu) + %s + Japanese (ja) + %s + Norwegian Bokmål (nb) + %s + Dutch (nl) + %s + Portuguese, Brazil (pt_BR) + %s + Russian (ru) + %s + Swedish (sv) + %s + +Documentation + %s + +Built With + Python: http://www.python.org/ + Qt4: http://qt.digia.com/ + PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro + Oxygen Icons: http://oxygen-icons.org/ + +Final Credit + "For God so loved the world that He gave + His one and only Son, so that whoever + believes in Him will not perish but inherit + eternal life." -- John 3:16 + + And last but not least, final credit goes to + God our Father, for sending His Son to die + on the cross, setting us free from sin. We + bring this software to you for free because + He has set us free. + 项目领导 + %s + +开发 + %s + +贡献 + %s + +测试 + %s + +包装 + %s + +翻译 + Afrikaans (af) + %s + Czeck (cs) + %s + Danish (da) + %s + German (de) + %s + Greek (el) + %s + English, United Kingdom (en_GB) + %s + English, South Africa (en_ZA) + %s + Spanish (es) + %s Estonian (et) %s French (fr) @@ -2046,378 +2183,415 @@ Translators %s Russian (ru) %s + Swedish (sv) + %s -Documentation +文档 %s -Built With +编译工具 Python: http://www.python.org/ - Qt4: http://qt.nokia.com/ + Qt4: http://qt.digia.com/ PyQt4: http://www.riverbankcomputing.co.uk/software/pyqt/intro Oxygen Icons: http://oxygen-icons.org/ -Final Credit - "For God so loved the world that He gave - His one and only Son, so that whoever - believes in Him will not perish but inherit - eternal life." -- John 3:16 +最后感谢 + "神爱世人, +甚至将他的独生子赐给他们, +叫一切信他的不致灭亡,反得永生。" +-- 约翰福音 3:16 - And last but not least, final credit goes to - God our Father, for sending His Son to die - on the cross, setting us free from sin. We - bring this software to you for free because - He has set us free. - - - - - OpenLP <version><revision> - Open Source Lyrics Projection -OpenLP is free church presentation software, or lyrics projection software, used to display slides of songs, Bible verses, videos, images, and even presentations (if Impress, PowerPoint or PowerPoint Viewer is installed) for church worship using a computer and a data projector. - -Find out more about OpenLP: http://openlp.org/ - -OpenLP is written and maintained by volunteers. If you would like to see more free Christian software being written, please consider contributing by using the button below. - - - - - Copyright © 2004-2012 %s -Portions copyright © 2004-2012 %s - + 最后但同样重要的,感谢归于 + 神我们的父,因他差他的儿子死在十字架上,使我们由罪中得自由释放。 + 我们免费地提供这个软件,因为他让我们得到自由。 OpenLP.AdvancedTab - + UI Settings - + 用户界面设置 - + Number of recent files to display: - + 显示最近文件个数: - + Remember active media manager tab on startup - + 记得启动时启用媒体管理器标签 - + Double-click to send items straight to live - + 双击直接将项目发送到现场 - + Expand new service items on creation - + 创建时扩展新的敬拜仪式项目 - + Enable application exit confirmation - + 启用应用程序退出时确认 - + Mouse Cursor - + 鼠标指针 - + Hide mouse cursor when over display window - + 当移动到显示窗口时隐藏鼠标指针 - + Default Image - + 默认图片 - + Background color: - + 背景颜色: - + Image file: - + 图片文件: - + Open File - + 打开文件 - + Advanced - + 高级 - + Preview items when clicked in Media Manager - + 点击媒体管理器中的项目时启用预览 - + Click to select a color. - + 点击以选取一种颜色。 - + Browse for an image file to display. - + 浏览一个图片文件来显示 - + Revert to the default OpenLP logo. - + 恢复为默认的OpenLP标志 - + Service %Y-%m-%d %H-%M This may not contain any of the following characters: /\?*|<>[]":+ See http://docs.python.org/library/datetime.html#strftime-strptime-behavior for more information. - + 敬拜仪式 %Y-%m-%d %H-%M - + Default Service Name - + 默认敬拜仪式名称 - + Enable default service name - + 启用默认敬拜仪式名称 - + Date and Time: - + 时间和日期: - + Monday - + 周一 - + Tuesday - + 周二 - + Wednesday - + 周三 - + Thurdsday - + 周四 - + Friday - + 周五 - + Saturday - + 周六 - + Sunday - + 周日 - + Now - + 现在 - + Time when usual service starts. - + 通常敬拜开始时间 - + Name: - + 名称: - + Consult the OpenLP manual for usage. - + 参阅OpenLP说明书来使用。 - + Revert to the default service name "%s". - + 恢复为默认的敬拜仪式名称 "%s"。 - + Example: - + 样本: - + X11 - + X11 Bypass X11 Window Manager - + 绕过X11窗口管理器 - + Syntax error. - + 语法错误。 - + Data Location - + 数据位置 - + Current path: - + 当前路径: - + Custom path: - + 自定义路径: - + Browse for new data file location. - + 浏览新的数据文件位置 - + Set the data location to the default. - + 将数据位置设置为默认。 - + Cancel - + 取消 - + Cancel OpenLP data directory location change. - + 取消OpenLP数据目录位置的改变 - + Copy data to new location. - + 复制数据到新位置 - + Copy the OpenLP data files to the new location. - + 将OpenLP数据文件复制到新位置。 - + <strong>WARNING:</strong> New data directory location contains OpenLP data files. These files WILL be replaced during a copy. - + <strong>警告:</strong> 新数据目录包含OpenLP数据文件。这些文件将会在复制时被替换。 - + Data Directory Error - + 数据目录错误 - + Select Data Directory Location - + 选择数据目录位置 - + Confirm Data Directory Change - + 确认数据目录改变 - + Reset Data Directory - + 重置数据目录 - + Are you sure you want to change the location of the OpenLP data directory to the default location? This location will be used after OpenLP is closed. - + 您确定要改变OpenLP数据目录的位置到默认位置吗? + +该位置将会在OpenLP关闭时被使用。 - + Overwrite Existing Data - + 覆盖已存在的数据 + + + + OpenLP data directory was not found + +%s + +This data directory was previously changed from the OpenLP default location. If the new location was on removable media, that media needs to be made available. + +Click "No" to stop loading OpenLP. allowing you to fix the the problem. + +Click "Yes" to reset the data directory to the default location. + 未找到OpenLP数据目录 + +%s + +这个数据目录之前由OpenLP的默认位置改变而来。如果新位置是在一个可移动媒介上,该媒介需要成为可用 + +点击 "否" 来停止加载OpenLP,允许您修复这个问题。 + +点击 "是" 来重置数据目录到默认位置。 + + + + Are you sure you want to change the location of the OpenLP data directory to: + +%s + +The data directory will be changed when OpenLP is closed. + 您确定要将OpenLP的数据目录位置改变为: + +%s + +数据目录将在OpenLP关闭时改变。 + + + + + WARNING: + +The location you have selected + +%s + +appears to contain OpenLP data files. Do you wish to replace these files with the current data files? + 警告: + +您选择的位置 + +%s + +似乎包含OpenLP的数据文件。您希望将这些文件替换为当前的数据文件吗? OpenLP.ExceptionDialog - + Error Occurred - + 发生错误 - + Oops! OpenLP hit a problem, and couldn't recover. The text in the box below contains information that might be helpful to the OpenLP developers, so please e-mail it to bugs@openlp.org, along with a detailed description of what you were doing when the problem occurred. - + 啊!OpenLP遇到了一个问题,并且不能恢复。以下文本框内的文字包含了一些可能对OpenLP开发者有帮助的信息,所以请将它发送给bugs@openlp.org,并附上发生这个问题时您正在做什么的详细描述。 - + Send E-Mail - + 发送邮件 - + Save to File - + 保存到文件 - + Please enter a description of what you were doing to cause this error (Minimum 20 characters) - + 请描述发生此错误时您正在做什么(至少20个字母) - + Attach File - + 附加文件 - + Description characters to enter : %s - + 输入描述文字: %s OpenLP.ExceptionForm - + Platform: %s - + 平台:%s - + Save Crash Report - + 保存崩溃报告 - + Text files (*.txt *.log *.text) - + 文本文件(*.txt *.log *.text) - + **OpenLP Bug Report** Version: %s @@ -2432,10 +2606,24 @@ Version: %s --- Library Versions --- %s - + + **OpenLP 问题报告** +版本: %s + +--- 异常细节 --- + +%s + + --- 异常跟踪 --- +%s +--- 系统信息 --- +%s +--- 链接库版本 --- +%s + - + *OpenLP Bug Report* Version: %s @@ -2451,4722 +2639,4859 @@ Version: %s %s Please add the information that bug reports are favoured written in English. - + + *OpenLP 问题报告* +版本: %s + +--- 异常细节 --- + +%s + + --- 异常跟踪 --- +%s +--- 系统信息 --- +%s +--- 链接库版本 --- +%s +注意:请尽量使用英语来描述您的报告。 + OpenLP.FileRenameForm - + File Rename - + 重命名文件 - + New File Name: - + 新建文件名: - + File Copy - + 复制文件 OpenLP.FirstTimeLanguageForm - + Select Translation - + 选择翻译版本 - + Choose the translation you'd like to use in OpenLP. - + 选择您希望使用的OpenLP翻译版本。 - + Translation: - + 翻译版本: OpenLP.FirstTimeWizard - + Songs - + 歌曲 - + First Time Wizard - + 首次使用向导 - + Welcome to the First Time Wizard - + 欢迎来到首次使用向导 - + Activate required Plugins - + 启用所需的插件 - + Select the Plugins you wish to use. - - - - - Bible - + 选择您希望使用的插件。 - Images - + Bible + 圣经 - - Presentations - + + Images + 图片 - Media (Audio and Video) - + Presentations + 演示 - Allow remote access - + Media (Audio and Video) + 媒体(音频与视频) - Monitor Song Usage - + Allow remote access + 允许远程访问 - Allow Alerts - - - - - Default Settings - - - - - Downloading %s... - - - - - Download complete. Click the finish button to start OpenLP. - - - - - Enabling selected plugins... - + Monitor Song Usage + 监视歌曲使用 - No Internet Connection - - - - - Unable to detect an Internet connection. - - - - - Sample Songs - - - - - Select and download public domain songs. - - - - - Sample Bibles - - - - - Select and download free Bibles. - - - - - Sample Themes - - - - - Select and download sample themes. - + Allow Alerts + 允许警告 - Set up default settings to be used by OpenLP. - + Default Settings + 默认设置 + + + + Downloading %s... + 正在下载 %s... + + + + Download complete. Click the finish button to start OpenLP. + 下载完成。点击结束按钮来开始运行OpenLP。 + + + + Enabling selected plugins... + 正在启用选中的插件... + + + + No Internet Connection + 无网络连接 + + + + Unable to detect an Internet connection. + 未检测到Internet网络连接 + + + + Sample Songs + 歌曲样本 + + + + Select and download public domain songs. + 选择并下载属于公有领域的歌曲 + + + + Sample Bibles + 圣经样本 + + + + Select and download free Bibles. + 选择并下载免费圣经。 + + + + Sample Themes + 主题样本 + + + + Select and download sample themes. + 选择并下载主题样本。 - Default output display: - + Set up default settings to be used by OpenLP. + 设置OpenLP将使用的默认设定。 - Select default theme: - + Default output display: + 默认输出显示: - Starting configuration process... - - - - - This wizard will help you to configure OpenLP for initial use. Click the next button below to start. - - - - - Setting Up And Downloading - - - - - Please wait while OpenLP is set up and your data is downloaded. - - - - - Setting Up - - - - - Click the finish button to start OpenLP. - - - - - Download complete. Click the finish button to return to OpenLP. - - - - - Click the finish button to return to OpenLP. - - - - - Custom Slides - + Select default theme: + 选择默认主题: - Finish - + Starting configuration process... + 正在启动配置进程... - + + This wizard will help you to configure OpenLP for initial use. Click the next button below to start. + 该向导将为您初次使用OpenLP进行配置。点击下面的下一步按钮来开始 + + + + Setting Up And Downloading + 正在设置并下载 + + + + Please wait while OpenLP is set up and your data is downloaded. + 请稍等,OpenLP正在进行设置并下载您的数据。 + + + + Setting Up + 正在设置 + + + + Click the finish button to start OpenLP. + 点击结束按钮来开始使用OpenLP + + + + Download complete. Click the finish button to return to OpenLP. + 下载完成。点击结束按钮回到OpenLP。 + + + + Click the finish button to return to OpenLP. + 点击结束按钮来返回到OpenLP。 + + + + Custom Slides + 自定义幻灯片 + + + + Finish + 结束 + + + No Internet connection was found. The First Time Wizard needs an Internet connection in order to be able to download sample songs, Bibles and themes. Click the Finish button now to start OpenLP with initial settings and no sample data. To re-run the First Time Wizard and import this sample data at a later time, check your Internet connection and re-run this wizard by selecting "Tools/Re-run First Time Wizard" from OpenLP. - + 没有发现Internet网络连接。首次运行向导需要一个网络连接才可以下载歌曲,圣经和主题样本。现在点击结束按钮来以初始设定和无样本数据的状态下启动OpenLP。 + +要在以后重新运行首次运行向导并导入这些样本数据,检查您的网络连接并在OpenLP里选择"工具/重新运行首次运行向导"。 - + To cancel the First Time Wizard completely (and not start OpenLP), click the Cancel button now. - + 要完全取消首次运行向导(并且不启动OpenLP),现在点击取消按钮。 OpenLP.FormattingTagDialog - + Configure Formatting Tags - + 配置格式标签 - + Edit Selection - + 编辑选中 - + Save - + 保存 - + Description - + 描述 - + Tag - + 标签 - + Start HTML - + HTML起始 - + End HTML - + HTML终止 OpenLP.FormattingTagForm - + Update Error - + 升级错误 - + Tag "n" already defined. - + 标签 "n" 已被定义。 - + New Tag - + 新建标签 - + <HTML here> - + <HTML 这里> - + </and here> - + </和这里> - + Tag %s already defined. - + 标签 %s 已被定义。 OpenLP.FormattingTags - + Red - + 红色 - + Black - + 黑色 - + Blue - + 蓝色 - + Yellow - + 黄色 - + Green - + 绿色 - + Pink - + 粉红 - + Orange - + 橘黄 - + Purple - + 紫色 - + White - + 白色 - + Superscript - + 上标 - + Subscript - + 下标 - + Paragraph - + 段落 - + Bold - + 粗体 - + Italics - + 斜体 - + Underline - + 下划线 - + Break - + 换行 OpenLP.GeneralTab - - - General - - + General + 通用 + + + Monitors - + 监视器 - + Select monitor for output display: - + 选择输出监视器: - + Display if a single screen - + 显示如果是单屏幕 - + Application Startup - + 应用程序启动 - + Show blank screen warning - + 显示空白屏幕警告 - + Automatically open the last service - + 自动打开最新的敬拜仪式 - + Show the splash screen - + 显示斑点屏幕 - + Application Settings - + 应用程序设置 - + Prompt to save before starting a new service - + 在开始新的敬拜仪式前提示保存 - + Automatically preview next item in service - - - - - sec - + 在敬拜仪式时自动预览下一个项目 + sec + + + + CCLI Details - + CCLI细节 - + SongSelect username: - + SongSelect 用户名: - + SongSelect password: - - - - - X - + SongSelect 密码: - Y - + X + X - Height - + Y + Y - Width - - - - - Check for updates to OpenLP - - - - - Unblank display when adding new live item - - - - - Timed slide interval: - + Height + 高度 - Background Audio - + Width + 宽度 - + + Check for updates to OpenLP + 检查OpenLP更新 + + + + Unblank display when adding new live item + 当添加项目时取消屏幕空白 + + + + Timed slide interval: + 计时幻灯片间隔: + + + + Background Audio + 背景音频 + + + Start background audio paused - + 开始背景音频已暂停 Service Item Slide Limits - + 敬拜仪式项目幻灯片限制: - + Override display position: - + 覆盖显示位置: - + Repeat track list - + 重复音轨列表 Behavior of next/previous on the last/first slide: - + 在 第一张/最后一张 幻灯片时 下一张/上一张 的行为 &Remain on Slide - + 停留在当前幻灯片(R) &Wrap around - + 绕回开头(W) &Move to next/previous service item - + 移至下一个/上一个敬拜仪式项目(M) OpenLP.LanguageManager - + Language - + 语言 - + Please restart OpenLP to use your new language setting. - + 请重新启动OpenLP来使用您新的语言设置。 OpenLP.MainDisplay - + OpenLP Display - + OpenLP 显示 OpenLP.MainWindow - - - &File - - - - - &Import - - - - - &Export - - - - - &View - - - - - M&ode - - - &Tools - + &File + 文件(F) - &Settings - + &Import + 导入(I) - - &Language - - - - - &Help - + + &Export + 导出(E) - Media Manager - + &View + 显示(V) + + + + M&ode + 模式(O) - Service Manager - + &Tools + 工具(T) - - Theme Manager - + + &Settings + 设定(S) + + + + &Language + 语言(L) - &New - + &Help + 帮助(H) + + + + Media Manager + 媒体管理器 - &Open - + Service Manager + 敬拜仪式管理器 - Open an existing service. - + Theme Manager + 主题管理器 + &New + 新建(N) + + + + &Open + 打开(O) + + + + Open an existing service. + 打开一个存在的敬拜仪式。 + + + &Save - + 保存(S) - + Save the current service to disk. - - - - - Save &As... - - - - - Save Service As - - - - - Save the current service under a new name. - - - - - E&xit - - - - - Quit OpenLP - - - - - &Theme - - - - - &Configure OpenLP... - - - - - &Media Manager - - - - - Toggle Media Manager - - - - - Toggle the visibility of the media manager. - - - - - &Theme Manager - - - - - Toggle Theme Manager - - - - - Toggle the visibility of the theme manager. - - - - - &Service Manager - - - - - Toggle Service Manager - - - - - Toggle the visibility of the service manager. - - - - - &Preview Panel - - - - - Toggle Preview Panel - - - - - Toggle the visibility of the preview panel. - - - - - &Live Panel - - - - - Toggle Live Panel - - - - - Toggle the visibility of the live panel. - - - - - &Plugin List - - - - - List the Plugins - - - - - &User Guide - - - - - &About - - - - - More information about OpenLP - - - - - &Online Help - - - - - &Web Site - - - - - Use the system language, if available. - - - - - Set the interface language to %s - - - - - Add &Tool... - - - - - Add an application to the list of tools. - - - - - &Default - - - - - Set the view mode back to the default. - - - - - &Setup - - - - - Set the view mode to Setup. - - - - - &Live - - - - - Set the view mode to Live. - - - - - Version %s of OpenLP is now available for download (you are currently running version %s). - -You can download the latest version from http://openlp.org/. - - - - - OpenLP Version Updated - - - - - OpenLP Main Display Blanked - - - - - The Main Display has been blanked out - - - - - Default Theme: %s - - - - - English - Please add the name of your language here - 中国 - - - - Configure &Shortcuts... - - - - - Close OpenLP - - - - - Are you sure you want to close OpenLP? - - - - - Open &Data Folder... - - - - - Open the folder where songs, bibles and other data resides. - - - - - &Autodetect - - - - - Update Theme Images - - - - - Update the preview images for all themes. - + 将当前的敬拜仪式保存到磁盘。 + Save &As... + 另存为(A)... + + + + Save Service As + 敬拜仪式另存为 + + + + Save the current service under a new name. + 以新名称保存当前的敬拜仪式。 + + + + E&xit + 退出(X) + + + + Quit OpenLP + 退出OpenLP + + + + &Theme + 主题(T) + + + + &Configure OpenLP... + 配置OpenLP(C) + + + + &Media Manager + 媒体管理器(M) + + + + Toggle Media Manager + 切换媒体管理器 + + + + Toggle the visibility of the media manager. + 切换媒体管理器可见度。 + + + + &Theme Manager + 主题管理器(T) + + + + Toggle Theme Manager + 切换主题管理器 + + + + Toggle the visibility of the theme manager. + 切换主题管理器可见度。 + + + + &Service Manager + 敬拜仪式管理器(S) + + + + Toggle Service Manager + 切换敬拜仪式管理器 + + + + Toggle the visibility of the service manager. + 切换敬拜仪式管理器可见度。 + + + + &Preview Panel + 预览面板(P) + + + + Toggle Preview Panel + 切换预览面板 + + + + Toggle the visibility of the preview panel. + 切换预览面板可见度。 + + + + &Live Panel + 现场面板(L) + + + + Toggle Live Panel + 切换现场面板 + + + + Toggle the visibility of the live panel. + 切换现场面板可见度。 + + + + &Plugin List + 插件列表(P) + + + + List the Plugins + 列出插件 + + + + &User Guide + 用户指南(U) + + + + &About + 关于(A) + + + + More information about OpenLP + 更多关于OpenLP的信息 + + + + &Online Help + 在线帮助(O) + + + + &Web Site + 网站(W) + + + + Use the system language, if available. + 如果可用,使用系统语言。 + + + + Set the interface language to %s + 将界面语言设置为%s + + + + Add &Tool... + 添加工具(T) + + + + Add an application to the list of tools. + 向工具列表中添加应用。 + + + + &Default + 默认(D) + + + + Set the view mode back to the default. + 将查看模式设定回默认。 + + + + &Setup + 设置(S) + + + + Set the view mode to Setup. + 将查看模式设定为设置 + + + + &Live + 现场(L) + + + + Set the view mode to Live. + 将查看模式设定为现场。 + + + + Version %s of OpenLP is now available for download (you are currently running version %s). + +You can download the latest version from http://openlp.org/. + 版本为 %s 的OpenLP已经可以下载了(您目前正在使用的版本为%s). + +您可以从http://openlp.org/上下载最新版本。 + + + + OpenLP Version Updated + OpenLP版本已升级 + + + + OpenLP Main Display Blanked + OpenLP主显示已清空 + + + + The Main Display has been blanked out + 主显示已经被完全清空 + + + + Default Theme: %s + 默认主题: %s + + + + English + Please add the name of your language here + 中文 + + + + Configure &Shortcuts... + 配置快捷键(S) + + + + Close OpenLP + 关闭OpenLP + + + + Are you sure you want to close OpenLP? + 您真的想退出OpenLP? + + + + Open &Data Folder... + 打开数据文件夹(D)... + + + + Open the folder where songs, bibles and other data resides. + 打开歌曲,圣经及其它数据所在的文件夹。 + + + + &Autodetect + 自动检测(A) + + + + Update Theme Images + 更新主题图片 + + + + Update the preview images for all themes. + 为所有主题更新预览图片。 + + + Print the current service. - + 打印当前敬拜仪式 - + &Recent Files - + 近期文件(R) - + L&ock Panels - + 锁定面板(O) - + Prevent the panels being moved. - + 防止移动面板。 - + Re-run First Time Wizard - + 重新运行首次运行向导 - + Re-run the First Time Wizard, importing songs, Bibles and themes. - + 重新运行首次运行向导,导入歌曲,圣经和主题。 - + Re-run First Time Wizard? - + 再次运行首次运行向导? - + Are you sure you want to re-run the First Time Wizard? Re-running this wizard may make changes to your current OpenLP configuration and possibly add songs to your existing songs list and change your default theme. - + 您确定要再次运行首次运行向导吗? + +再次运行这个想到可能会改变您当前的OpenLP配置并可能向您已存的歌曲列表中添加歌曲和改变默认的主题。 - + Clear List Clear List of recent files - + 清空列表 - + Clear the list of recent files. - + 清空最近使用的文件列表 - + Configure &Formatting Tags... - - - - - Export OpenLP settings to a specified *.config file - + 配置格式标签(F) + Export OpenLP settings to a specified *.config file + 将OpenLP设定导出为指定的*.config文件 + + + Settings - + 设定 - + Import OpenLP settings from a specified *.config file previously exported on this or another machine - + 从之前由本机或其它机器上导出的一个指定*.config文件里导入OpenLP设定 - + Import settings? - + 导入设定? - + Are you sure you want to import settings? Importing settings will make permanent changes to your current OpenLP configuration. Importing incorrect settings may cause erratic behaviour or OpenLP to terminate abnormally. - + 您确定要导入设定吗? + +导入设定将会永久性改变您当前的OpenLP配置。 + +导入不正确的设定可能导致非预期的行为或者OpenLP非正常终止。 - + Open File - + 打开文件 - + OpenLP Export Settings Files (*.conf) - + OpenLP导出设定文件(*.conf) - + Import settings - + 导入设定 - + OpenLP will now close. Imported settings will be applied the next time you start OpenLP. - + OpenLP即将关闭。导入的设定将会在下一次您启动OpenLP时应用。 - + Export Settings File - + 导出设定文件 - + OpenLP Export Settings File (*.conf) - + OpenLP导出设定文件(*.conf) - + New Data Directory Error - + 新数据目录错误 + + + + The file you selected does appear to be a valid OpenLP settings file. + +Section [%s] is not valid + +Processing has terminated and no changed have been made. + 您选择的文件似乎不是一个有效的OpenLP设定文件。 + +区域[%s]无效 + +进程已终止并且没有做任何改动。 + + + + Copying OpenLP data to new data directory location - %s - Please wait for copy to finish + 正在复制OpenLP数据到新的数据目录位置 - %s - 请等待复制完成。 + + + + OpenLP Data directory copy failed + +%s + OpenLP数据目录复制失败 + +%s OpenLP.Manager - + Database Error - + 数据库错误 - + The database being loaded was created in a more recent version of OpenLP. The database is version %d, while OpenLP expects version %d. The database will not be loaded. Database: %s - + 正在载入的数据库是由一个更新版本的OpenLP创建的。数据库的版本是%d,而OpenLP期望的版本为%d。该数据库将不被加载。 - + OpenLP cannot load your database. Database: %s - + OpenLP无法加载您的数据库。 + +数据库: %s OpenLP.MediaManagerItem - + No Items Selected - + 未选择任何项目 - + &Add to selected Service Item - + 添加到选中的敬拜仪式项目(A) - + You must select one or more items to preview. - + 您必须选择一个或多个项目来预览。 - + You must select one or more items to send live. - + 您必须选择一个或多个项目来发送到现场 - + You must select one or more items. - + 您必须选择一个或多个项目。 - + You must select an existing service item to add to. - + 您必须选择一个已存在的敬拜仪式项目来被添加 - + Invalid Service Item - + 无效的敬拜仪式项目 - + You must select a %s service item. - + 您必须选择一个%s敬拜仪式项目。 - + You must select one or more items to add. - + 您必须选择一个或多个项目来添加。 - + No Search Results - + 无搜索结果 - + Invalid File Type - + 无效的文件类型 - + Invalid File %s. Suffix not supported - + 无效的文件 %s。 +不支持该后缀 - + &Clone - + 建立副本(C) - + Duplicate files were found on import and were ignored. - + 在导入时发现并忽略了重复的文件 OpenLP.OpenLyricsImportError - + <lyrics> tag is missing. - + <歌词> 标签丢失。 - + <verse> tag is missing. - + <经节> 标签丢失。 OpenLP.PluginForm - + Plugin List - + 插件列表 - + Plugin Details - + 插件详情 - + Status: - + 状态: - + Active - + 已启用 - + Inactive - + 未启用 - + %s (Inactive) - + %s (未启用) - + %s (Active) - + %s (已启用) - + %s (Disabled) - + %s (禁用) OpenLP.PrintServiceDialog - + Fit Page - + 适合页面 - + Fit Width - + 适合宽度 OpenLP.PrintServiceForm - + Options - + 选项 - + Copy - + 复制 - + Copy as HTML - + 复制为HTML - + Zoom In - + 放大 - + Zoom Out - + 缩小 - + Zoom Original - + 缩放到原始尺寸 - + Other Options - + 其它选项 - + Include slide text if available - + 如果可用,包括幻灯片文字 - + Include service item notes - + 包含敬拜仪式项目注意事项 - + Include play length of media items - + 包含媒体项目的播放时长 - + Add page break before each text item - + 在每个文本项目前添加页面换行符 - + Service Sheet - + 敬拜仪式单张 - + Print - - - - - Title: - + 打印 + Title: + 标题: + + + Custom Footer Text: - + 自定义页脚文本: OpenLP.ScreenList - + Screen - + 屏幕 - + primary - + 主要 OpenLP.ServiceItem - + <strong>Start</strong>: %s - + <strong>开始</strong>:%s - + <strong>Length</strong>: %s - + <strong>长度</strong>:%s OpenLP.ServiceItemEditForm - + Reorder Service Item - + 重新排列敬拜仪式项目 OpenLP.ServiceManager - + Move to &top - + 置顶(T) - + Move item to the top of the service. - + 将项目移至敬拜仪式顶部 - + Move &up - + 上移(U) - + Move item up one position in the service. - + 在该敬拜仪式中上移一位项目 - + Move &down - + 下移(D) - + Move item down one position in the service. - + 在该敬拜仪式中下移一位项目 - + Move to &bottom - + 置底(B) - + Move item to the end of the service. - + 将项目移至敬拜仪式底部 - + &Delete From Service - + 从敬拜仪式中删除 - + Delete the selected item from the service. - + 从敬拜仪式中删除选中的项目 - + &Add New Item - + 添加新项目(A) - + &Add to Selected Item - + 添加到选中的项目(A) - + &Edit Item - + 编辑项目(E) - + &Reorder Item - + 重新排列项目(R) - + &Notes - + 注意事项(N) - + &Change Item Theme - + 改变项目主题(C) - + OpenLP Service Files (*.osz) - + OpenLP敬拜仪式文件(*.osz) - + File is not a valid service. The content encoding is not UTF-8. - + 文件不是一个有效的敬拜仪式。 +内容编码并不是UTF-8。 - + File is not a valid service. - + 文件不是一个有效的敬拜仪式。 - + Missing Display Handler - + 缺少显示处理程序 - + Your item cannot be displayed as there is no handler to display it - + 由于没有相关的处理程序,您的项目无法显示 - + Your item cannot be displayed as the plugin required to display it is missing or inactive - + 由于缺少或未启用显示该项目的插件,你的项目无法显示。 - + &Expand all - + 扩展所有(E) - + Expand all the service items. - + 扩展所有敬拜仪式项目。 - + &Collapse all - + 收起所有(C) - + Collapse all the service items. - + 收起所有敬拜仪式项目。 - + Open File - + 打开文件 - + Moves the selection down the window. - + 将选项下移到窗口。 - + Move up - + 上移 - + Moves the selection up the window. - + 将选项上移到窗口 - + Go Live - + 发送至现场 - + Send the selected item to Live. - + 将选中的项目发送至现场 - + &Start Time - + 开始时间(S) - + Show &Preview - + 显示预览(P) - + Modified Service - + 已修改的敬拜仪式 - + The current service has been modified. Would you like to save this service? - + 当前敬拜仪式已被修改。您想保存这个敬拜仪式吗? - + Custom Service Notes: - + 自定义敬拜仪式注意事项: - + Notes: - + 注意事项: - + Playing time: - + 播放时间: - + Untitled Service - + 未命名敬拜仪式 - + File could not be opened because it is corrupt. - + 文件已损坏,无法打开。 - + Empty File - + 空文件 - + This service file does not contain any data. - + 这个敬拜仪式文件不包含任何数据。 - + Corrupt File - + 损坏的文件 - + Load an existing service. - + 加载一个存在的敬拜仪式。 - + Save this service. - + 保持这个敬拜仪式。 - + Select a theme for the service. - + 选择该敬拜仪式的主题。 - + This file is either corrupt or it is not an OpenLP 2.0 service file. - + 这个文件或者已损坏或者不是一个OpenLP 2.0敬拜程序文件。 - - Service File Missing - - - - + Slide theme - + 幻灯片主题 - + Notes - + 注意 - + Edit - + 编辑 - + Service copy only - + 仅复制敬拜仪式 - + Error Saving File - + 保存文件时发生错误 - + There was an error saving your file. - + 保存您的文件时发生了一个错误。 + + + + Service File(s) Missing + 敬拜仪式文件丢失 + + + + The following file(s) in the service are missing: +%s + +These files will be removed if you continue to save. + 以下敬拜仪式中的文件已丢失: +<byte value="x9"/>%s + +如果您想继续保存的话这些文件将被移除。 OpenLP.ServiceNoteForm - + Service Item Notes - + 敬拜项目注意事项 OpenLP.SettingsForm - + Configure OpenLP - + 配置OpenLP OpenLP.ShortcutListDialog - + Action - + 动作 - + Shortcut - + 快捷方式 - + Duplicate Shortcut - + 重复的快捷键 - + The shortcut "%s" is already assigned to another action, please use a different shortcut. - + 快捷键 "%s" 已被指派给另一个动作,请使用一个不同的快捷键。 - + Alternate - + 代替的 - + Select an action and click one of the buttons below to start capturing a new primary or alternate shortcut, respectively. - + 选择一个动作并点击以下一个按钮来分别开始记录一个新的主要的或替代的快捷键。 - + Default - + 默认 - + Custom - + 自定义 - + Capture shortcut. - + 记录快捷键。 - + Restore the default shortcut of this action. - + 将此动作的快捷键恢复为默认。 - + Restore Default Shortcuts - + 恢复为默认快捷键 - + Do you want to restore all shortcuts to their defaults? - + 您想将所有快捷键恢复为默认吗? - + Configure Shortcuts - + 配置快捷键 OpenLP.SlideController - + Hide - + 隐藏 - + Go To - + 转到 - + Blank Screen - + 清空屏幕 - + Blank to Theme - + 清空屏幕到主题 - + Show Desktop - + 显示桌面 - + Previous Service - + 上一个敬拜仪式 - + Next Service - + 下一个敬拜仪式 - + Escape Item - + 避开项目 - + Move to previous. - + 移到前一项 - + Move to next. - + 移到后一项 - + Play Slides - + 播放幻灯片 - + Delay between slides in seconds. - + 幻灯片之间延时 - + Move to live. - + 移到现场 - + Add to Service. - + 添加到敬拜仪式 - + Edit and reload song preview. - + 编辑并重新载入歌曲预览 - + Start playing media. - + 开始播放媒体 - + Pause audio. - + 暂停声音 - + Pause playing media. - + 暂停媒体播放 - + Stop playing media. - + 停止媒体播放 - + Video position. - + 视频位置 - + Audio Volume. - - - - - Go to "Verse" - + 音频音量 - Go to "Chorus" - + Go to "Verse" + 转到"主歌" - Go to "Bridge" - + Go to "Chorus" + 转到 "副歌" - Go to "Pre-Chorus" - + Go to "Bridge" + 转到"桥段" - - Go to "Intro" - + + Go to "Pre-Chorus" + 转到 "导歌" - Go to "Ending" - + Go to "Intro" + 转到"前奏" + Go to "Ending" + 转到 "结尾" + + + Go to "Other" - + 转到 "其它" - + Previous Slide - + 上一张幻灯片 - + Next Slide - + 下一张幻灯片 - + Pause Audio - + 暂停音频 - + Background Audio - + 背景音频 - + Go to next audio track. - + 切到下一个音轨 - + Tracks - + 音轨 OpenLP.SpellTextEdit - + Spelling Suggestions - + 拼写建议 - + Formatting Tags - + 格式标签 - + Language: - + 语言: OpenLP.StartTimeForm - - - Hours: - - - Minutes: - + Hours: + 小时: - Seconds: - - - - - Item Start and Finish Time - + Minutes: + 分钟: - Start - + Seconds: + 秒: + + + + Item Start and Finish Time + 项目开始和结束时间 - Finish - + Start + 开始 + Finish + 结束 + + + Length - + 长度 - + Time Validation Error - + 时间校验错误 - + Finish time is set after the end of the media item - + 终止时间被设置为媒体项目结束之后 - + Start time is after the finish time of the media item - + 开始时间在媒体项目终止时间之后 - + Theme Layout - + 主题布局 - + The blue box shows the main area. - + 蓝色区块显示主区域。 - + The red box shows the footer. - - - - - OpenLP.ThemeForm - - - Select Image - - - - - Theme Name Missing - - - - - There is no name for this theme. Please enter one. - - - - - Theme Name Invalid - - - - - Invalid theme name. Please enter one. - - - - - (approximately %d lines per slide) - + 红色区块显示页脚。 OpenLP.ThemeManager - + Create a new theme. - + 新建一个主题 - + Edit Theme - + 编辑主题 - + Edit a theme. - + 编辑一个主题 - + Delete Theme - + 删除主题 - + Delete a theme. - + 删除一个主题 - + Import Theme - + 导入主题 - + Import a theme. - + 导入一个主题 - + Export Theme - + 导出主题 - + Export a theme. - + 导出一个主题 - + &Edit Theme - + 编辑主题(E) - + &Delete Theme - + 删除主题(D) - + Set As &Global Default - + 设定为全局默认(G) - + %s (default) - + %s (默认) - + You must select a theme to edit. - + 您必须先选择一个主题来编辑 - + You are unable to delete the default theme. - + 您不能删除默认主题 - + Theme %s is used in the %s plugin. - - - - - You have not selected a theme. - + 主题%s已被插件%s使用。 + You have not selected a theme. + 您还没有选中一个主题 + + + Save Theme - (%s) - + 保存主题 - (%s) - + Theme Exported - + 主题已导出 - + Your theme has been successfully exported. - + 您的主题已成功导出。 - + Theme Export Failed - + 主题导出失败 - + Your theme could not be exported due to an error. - + 由于一个错误,您的主题未能导出。 - + Select Theme Import File - + 选择要导入的主题文件 - + File is not a valid theme. - + 文件不是一个有效的主题 - + &Copy Theme - + 复制主题(C) - + &Rename Theme - + 重命名主题(R) - + &Export Theme - + 导出主题(E) - + You must select a theme to rename. - + 您必须选择一个主题来重命名 - + Rename Confirmation - + 确认重命名 - + Rename %s theme? - + 重命名 %s 主题? - + You must select a theme to delete. - + 您必须选择一个主题来删除。 - + Delete Confirmation - + 确认删除 - + Delete %s theme? - + 删除 %s 主题? - + Validation Error - + 校验错误 - + A theme with this name already exists. - + 以这个名字的主题已经存在。 - + OpenLP Themes (*.theme *.otz) - + OpenLP主题 (*.theme *.otz) - + Copy of %s Copy of <theme name> - + %s的副本 - + Theme Already Exists - + 主题已存在 + + + + Theme %s already exists. Do you want to replace it? + 主题 %s 已存在。您想要替换它吗? OpenLP.ThemeWizard - + Theme Wizard - + 主题向导 - + Welcome to the Theme Wizard - + 欢迎来到主题向导 - + Set Up Background - + 设置背景 - + Set up your theme's background according to the parameters below. - + 根据下列参数设置您的主题背景。 - + Background type: - + 背景类型: - + Solid Color - + 单色 - + Gradient - - - - - Color: - - - - - Gradient: - - - - - Horizontal - - - - - Vertical - - - - - Circular - - - - - Top Left - Bottom Right - - - - - Bottom Left - Top Right - - - - - Main Area Font Details - - - - - Define the font and display characteristics for the Display text - - - - - Font: - + 渐变 + Color: + 颜色: + + + + Gradient: + 渐变: + + + + Horizontal + 水平 + + + + Vertical + 垂直 + + + + Circular + 圆形 + + + + Top Left - Bottom Right + 左上 - 右下 + + + + Bottom Left - Top Right + 左下 - 右上 + + + + Main Area Font Details + 主区域字体细节 + + + + Define the font and display characteristics for the Display text + 为显示文字定义字体和显示特性 + + + + Font: + 字体: + + + Size: - + 字号: - + Line Spacing: - + 行距: - + &Outline: - + 轮廓(O): - + &Shadow: - - - - - Bold - + 阴影(S): + Bold + 粗体 + + + Italic - + 斜体 - + Footer Area Font Details - + 页脚区域字体细节 - + Define the font and display characteristics for the Footer text - + 为页脚文字定义字体和显示特征 - + Text Formatting Details - + 文字格式细节 - + Allows additional display formatting information to be defined - + 允许定义更多的显示格式信息 - + Horizontal Align: - + 水平对齐: - + Left - + 居左 - + Right - + 居右 - + Center - + 居中 - + Output Area Locations - + 输出区域位置 - + Allows you to change and move the main and footer areas. - + 允许您改变和移动主区域或页脚区域。 - + &Main Area - + 主区域(M) - + &Use default location - + 使用默认位置(U) - + X position: - + X坐标: - + px - + 像素 - + Y position: - + Y坐标: - + Width: - + 宽度: - + Height: - + 高度: - + Use default location - + 使用默认位置 - + Theme name: - + 主题名称: - + Edit Theme - %s - + 编辑主题 - %s - + This wizard will help you to create and edit your themes. Click the next button below to start the process by setting up your background. - + 这个向导将帮助您创建并编辑您的主题。要开始这个过程,点击下面的下一步按钮设置您的背景。 - + Transitions: - + 过渡: - + &Footer Area - + 页脚区域(F) - + Starting color: - + 起始颜色: - + Ending color: - + 结束颜色: - + Background color: - + 背景颜色: - + Justify - + 对齐 - + Layout Preview - + 预览布局 - + Transparent - + 透明 - + Preview and Save - + 预览并保存 - + Preview the theme and save it. - + 预览并保存主题 + + + + (approximately %d lines per slide) + (大约每张幻灯片%d行) + + + + Background Image Empty + 背景图片空白 + + + + You have not selected a background image. Please select one before continuing. + 您尚未选择一张背景图片。请在继续前选择一张。 + + + + Select Image + 选择图片 + + + + Theme Name Missing + 缺少主题名称 + + + + There is no name for this theme. Please enter one. + 这个主题还没有名字,请输入一个。 + + + + Theme Name Invalid + 无效的主题名 + + + + Invalid theme name. Please enter one. + 无效的主题名字,请输入另一个。 OpenLP.ThemesTab - + Global Theme - + 全局主题 - + Theme Level - + 主题级别 - + S&ong Level - + 歌曲级别(O) - + Use the theme from each song in the database. If a song doesn't have a theme associated with it, then use the service's theme. If the service doesn't have a theme, then use the global theme. - + 使用每首歌曲在数据库里的主题。如果一首歌曲没有主题与之关联,那么使用敬拜仪式的主题。如果敬拜仪式不包含主题,那么使用全局主题。 - + &Service Level - + 敬拜仪式级别(S) - + Use the theme from the service, overriding any of the individual songs' themes. If the service doesn't have a theme, then use the global theme. - + 使用敬拜仪式的主题,覆盖任何歌曲的主题。如果敬拜仪式不包含主题,那么使用全局主题。 - + &Global Level - + 全局级别(G) - + Use the global theme, overriding any themes associated with either the service or the songs. - + 使用全局主题,覆盖任何与敬拜仪式或歌曲关联的主题。 - + Themes - + 主题 OpenLP.Ui - + Error - - - - - About - + 错误 - &Add - + About + 关于 - Advanced - + &Add + 添加(A) - All Files - + Advanced + 高级 - Bottom - + All Files + 所有文件 - Browse... - + Bottom + 底部 - Cancel - + Browse... + 浏览... - CCLI number: - + Cancel + 取消 + CCLI number: + CCLI号码: + + + Create a new service. - + 创建一个新的敬拜仪式 - + &Delete - - - - - &Edit - + 删除(D) + &Edit + 编辑(E) + + + Empty Field - + 空白区域 - + Export - + 导出 - + pt Abbreviated font pointsize unit - - - - - Image - + - Import - + Image + 图片 - - Live - + + Import + 导入 + Live + 现场 + + + Live Background Error - + 现场背景错误 - + Load - - - - - Middle - + 载入 - New - + Middle + 中间 - New Service - + New + 新建 - New Theme - + New Service + 新建敬拜仪式 - - No File Selected - Singular - + + New Theme + 新建主题 - No Files Selected - Plural - + No File Selected + Singular + 未选择文件 - No Item Selected - Singular - + No Files Selected + Plural + 未选择文件 - No Items Selected - Plural - + No Item Selected + Singular + 未选择项目 - openlp.org 1.x - + No Items Selected + Plural + 未选择项目 + openlp.org 1.x + openlp.org 1.x + + + OpenLP 2.0 - + OpenLP 2.0 - + Preview - + 预览 - + Replace Background - + 替换背景 - + Reset Background - + 重置背景 - + s The abbreviated unit for seconds - - - - - Save && Preview - + + Save && Preview + 保存预览 + + + Search - + 搜索 - + You must select an item to delete. - + 您必须选择一个项目来删除。 - + You must select an item to edit. - - - - - Save Service - + 您必须选择一个项目来编辑。 + Save Service + 保存敬拜仪式 + + + Service - + 敬拜仪式 - + Start %s - - - - - Theme - Singular - + 开始 %s + Theme + Singular + 主题 + + + Themes Plural - + 主题 - + Top - + 顶部 - + Version - + 版本 - + Delete the selected item. - + 删除选中的项目。 - + Move selection up one position. - + 上移一位选项。 - + Move selection down one position. - + 下移一位选项。 - + &Vertical Align: - - - - - Finished import. - + 垂直对齐(V): - Format: - + Finished import. + 导入完成。 - - Importing - + + Format: + 格式: - Importing "%s"... - + Importing + 正在导入 - Select Import Source - + Importing "%s"... + 正在导入"%s"... + Select Import Source + 选择导入源 + + + Select the import format and the location to import from. - + 选择导入格式和被导入的位置 - + The openlp.org 1.x importer has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "python-sqlite" module. - + 由于缺少Python模块,openlp.org 1.x 导入器已被禁用。如果您想使用这个导入器,您需要安装"python-sqlite"模块。 - + Open %s File - - - - - %p% - + 打开 %s 文件 + %p% + %p% + + + Ready. - + 准备就绪。 - + Starting import... - + 正在开始导入... - + You need to specify at least one %s file to import from. A file type e.g. OpenSong - + 您需要指定至少一个 %s 文件来导入。 Welcome to the Bible Import Wizard - + 欢迎来到圣经导入向导 - + Welcome to the Song Export Wizard - + 欢迎来到歌曲导出向导 - + Welcome to the Song Import Wizard - - - - - Author - Singular - + 欢迎来到歌曲导入向导 - Authors - Plural - + Author + Singular + 作者 - - © - Copyright symbol. - + + Authors + Plural + 作者 - Song Book - Singular - + © + Copyright symbol. + © - Song Books - Plural - - - - - Song Maintenance - - - - - Topic + Song Book Singular - - - - - Topics - Plural - - - - - Continuous - - - - - Default - - - - - Display style: - - - - - Duplicate Error - - - - - File - - - - - Help - - - - - h - The abbreviated unit for hours - - - - - Layout style: - - - - - Live Toolbar - - - - - m - The abbreviated unit for minutes - - - - - OpenLP is already running. Do you wish to continue? - - - - - Settings - - - - - Tools - - - - - Unsupported File - - - - - Verse Per Slide - - - - - Verse Per Line - - - - - View - + 曲集 - Title and/or verses not found - + Song Books + Plural + 曲集 + + + + Song Maintenance + 歌曲维护 + + + + Topic + Singular + 题目 - XML syntax error - + Topics + Plural + 题目 + + + + Continuous + 连续的 + + + + Default + 默认 + + + + Display style: + 显示风格: + + + + Duplicate Error + 重复错误 + + + + File + 文件 + + + + Help + 帮助 + + + + h + The abbreviated unit for hours + + + + + Layout style: + 布局风格: + + + + Live Toolbar + 现场工具栏 + + + + m + The abbreviated unit for minutes + + + + + OpenLP is already running. Do you wish to continue? + OpenLP已经在运行了。您希望继续吗? + + + + Settings + 设置 + + + + Tools + 工具 + + + + Unsupported File + 不支持的文件 + + + + Verse Per Slide + 每页显示经节 + + + + Verse Per Line + 每行显示经节 + View + 查看 + + + + Title and/or verses not found + 未找到标题和/或段落 + + + + XML syntax error + XML语法错误 + + + View Mode - - - - - Open service. - - - - - Print Service - - - - - Replace live background. - - - - - Reset live background. - - - - - Split a slide into two only if it does not fit on the screen as one slide. - - - - - Welcome to the Bible Upgrade Wizard - - - - - Confirm Delete - + 显示模式 - Play Slides in Loop - + Open service. + 打开敬拜仪式。 + + + + Print Service + 打印服务 + + + + Replace live background. + 替换现场背景 + + + + Reset live background. + 重置现场背景 + + + + Split a slide into two only if it does not fit on the screen as one slide. + 如果一张幻灯片无法放置在一个屏幕上,那么将它分为两张。 + + + + Welcome to the Bible Upgrade Wizard + 欢迎来到圣经升级向导 + + + + Confirm Delete + 确认删除 + Play Slides in Loop + 循环播放幻灯片 + + + Play Slides to End - + 顺序播放幻灯片 - + Stop Play Slides in Loop - + 停止循环播放幻灯片 - + Stop Play Slides to End - - - - - Next Track - - - - - Search Themes... - Search bar place holder text - - - - - Optional &Split - - - - - Invalid Folder Selected - Singular - - - - - Invalid File Selected - Singular - - - - - Invalid Files Selected - Plural - + 停止顺序播放幻灯片 + Next Track + 下一个音轨 + + + + Search Themes... + Search bar place holder text + 搜索主题... + + + + Optional &Split + 可选分隔(S) + + + + Invalid Folder Selected + Singular + 选中了无效的文件夹 + + + + Invalid File Selected + Singular + 选中了无效的文件 + + + + Invalid Files Selected + Plural + 选中了无效的文件 + + + No Folder Selected Singular - + 未选择文件夹 - + Open %s Folder - + 打开 %s 文件夹 - + You need to specify one %s file to import from. A file type e.g. OpenSong - + 您需要指定一个%s文件来导入。 - + You need to specify one %s folder to import from. A song format e.g. PowerSong - + 您需要指定一个%s文件夹来导入。 + + + + Importing Songs + 导入歌曲 OpenLP.core.lib - + %1 and %2 Locale list separator: 2 items - + %1和%2 - + %1, and %2 Locale list separator: end - + %1,和%2 - + %1, %2 Locale list separator: middle - + %1,%2 - + %1, %2 Locale list separator: start - + %1,%2 PresentationPlugin - + <strong>Presentation Plugin</strong><br />The presentation plugin provides the ability to show presentations using a number of different programs. The choice of available presentation programs is available to the user in a drop down box. - + <strong>演示插件</strong><br />演示插件提供使用许多不同的程序来展示演示的能力。用户可在下拉菜单中选择可用的演示程序选项。 - + Presentation name singular - + 演示 - + Presentations name plural - + 演示 - + Presentations container title - + 演示 - + Load a new presentation. - + 加载一个新演示。 - + Delete the selected presentation. - + 删除选中的演示。 - + Preview the selected presentation. - + 预览选中的演示。 - + Send the selected presentation live. - + 将选中的演示发送到现场。 - + Add the selected presentation to the service. - + 将选中的演示发送到敬拜仪式。 PresentationPlugin.MediaItem - + Select Presentation(s) - + 选择演示 - + Automatic - + 自动 - + Present using: - + 演示使用: - + File Exists - + 文件存在 - + A presentation with that filename already exists. - + 以这个名字命名的演示文件已存在。 - + This type of presentation is not supported. - + 不支持该类型的演示文件。 - + Presentations (%s) - + 演示 (%s) - + Missing Presentation - + 丢失演示文件 - + The presentation %s is incomplete, please reload. - + 演示文件%s不完整,请重新载入。 - + The presentation %s no longer exists. - + 演示文件%s已不存在。 PresentationPlugin.PresentationTab - + Available Controllers - + 可用控制器 - + %s (unavailable) - + %s (不可用) - + Allow presentation application to be overridden - + 允许演示程序被覆盖 RemotePlugin - + <strong>Remote Plugin</strong><br />The remote plugin provides the ability to send messages to a running version of OpenLP on a different computer via a web browser or through the remote API. - - - - - Remote - name singular - + <strong>遥控插件</strong><br />遥控插件可以透过网页浏览器或是远程API向另一台电脑上正在运行的OpenLP发送信息。 - Remotes - name plural - + Remote + name singular + 遥控 - + + Remotes + name plural + 遥控 + + + Remote container title - + 遥控 RemotePlugin.Mobile - - - OpenLP 2.0 Remote - - + OpenLP 2.0 Remote + OpenLP 2.0 遥控 + + + OpenLP 2.0 Stage View - + OpenLP 2.0 舞台视图 - + Service Manager - + 敬拜仪式管理器 - + Slide Controller - - - - - Alerts - + 幻灯片控制器 - Search - - - - - Refresh - - - - - Blank - - - - - Show - - - - - Prev - - - - - Next - - - - - Text - - - - - Show Alert - - - - - Go Live - - - - - No Results - - - - - Options - - - - - Add to Service - + Alerts + 警告 - Home - + Search + 搜索 + + + + Refresh + 刷新 - Theme - + Blank + 空白 + + + + Show + 显示 + + + + Prev + 上一个 + + + + Next + 下一个 + + + + Text + 文本 + + + + Show Alert + 显示警告 + + + + Go Live + 发送到现场 + + + + No Results + 没有结果 + + + + Options + 选项 + + + + Add to Service + 添加到敬拜仪式 + + + + Home + 主页 - Desktop - + Theme + 主题 - + + Desktop + 桌面 + + + Add &amp; Go to Service - + 添加 &amp; 转到敬拜仪式 + + + + Service + 敬拜仪式 + + + + Slides + 幻灯片 RemotePlugin.RemoteTab - + Serve on IP address: - + 服务于IP地址: - + Port number: - + 端口: - + Server Settings - + 服务器设置 - + Remote URL: - + 远程URL: - + Stage view URL: - + 舞台视图URL: - + Display stage time in 12h format - + 以12小时制显示舞台时间。 - + Android App - + Android应用 - - Scan the QR code or click <a href="https://market.android.com/details?id=org.openlp.android">download</a> to install the Android app from the Market. - + + Scan the QR code or click <a href="https://play.google.com/store/apps/details?id=org.openlp.android">download</a> to install the Android app from Google Play. + 扫描QR码或点击<a href="https://play.google.com/store/apps/details?id=org.openlp.android">下载</a>来从Google Play安装Android应用。 SongUsagePlugin - + &Song Usage Tracking - + 歌曲使用状况跟踪(S) - + &Delete Tracking Data - + 删除跟踪数据(D) - + Delete song usage data up to a specified date. - + 删除指定日期之前的歌曲使用数据。 - + &Extract Tracking Data - + 提取跟踪数据(E) - + Generate a report on song usage. - + 生成歌曲使用报告 - + Toggle Tracking - + 切换跟踪 - + Toggle the tracking of song usage. - + 切换歌曲使用跟踪。 - + <strong>SongUsage Plugin</strong><br />This plugin tracks the usage of songs in services. - + <strong>歌曲使用状况插件</strong><br />这个插件跟踪在敬拜仪式中歌曲的使用状况。 - + SongUsage name singular - + 歌曲使用 - + SongUsage name plural - + 歌曲使用 - + SongUsage container title - + 歌曲使用 - + Song Usage - + 歌曲使用 - + Song usage tracking is active. - + 歌曲使用跟踪已启用。 - + Song usage tracking is inactive. - + 歌曲使用跟踪未启用。 - + display - + 显示 - + printed - + 已打印 SongUsagePlugin.SongUsageDeleteForm - + Delete Song Usage Data - + 删除歌曲使用数据 - + Delete Selected Song Usage Events? - + 删除选中的歌曲使用事件? - + Are you sure you want to delete selected Song Usage data? - + 您确定想删除选中的歌曲使用数据? - + Deletion Successful - + 删除成功 - + All requested data has been deleted successfully. - + 所有请求的数据已成功删除。 - + Select the date up to which the song usage data should be deleted. All data recorded before this date will be permanently deleted. - + 选择删除在此日期之前的歌曲使用数据。所有在该日期之前记录下的数据将会被永久删除。 SongUsagePlugin.SongUsageDetailForm - + Song Usage Extraction - + 歌曲使用状况提取 - + Select Date Range - + 选择日期范围 - + to - + - + Report Location - + 报告位置 - + Output File Location - + 输出文件位置 - + usage_detail_%s_%s.txt - + 使用细节_%s_%s.txt - + Report Creation - + 创建报告 - + Report %s has been successfully created. - + 报告 + +%s +已成功创建。 - + Output Path Not Selected - + 未选择输出路径 - + You have not set a valid output location for your song usage report. Please select an existing path on your computer. - + 您还没有为您的歌曲使用报告设定一个有效的输出位置。请在您电脑上选择一个存在的路径。 SongsPlugin - + &Song - + 歌曲(S) - + Import songs using the import wizard. - + 使用导入向导来导入歌曲。 - + <strong>Songs Plugin</strong><br />The songs plugin provides the ability to display and manage songs. - + <strong>歌曲插件</strong><br />歌曲插件提供了显示和管理歌曲的能力。 - + &Re-index Songs - + 重新索引歌曲(R) - + Re-index the songs database to improve searching and ordering. - + 重新索引歌曲数据库来改善搜索和排列 - + Reindexing songs... - - - - - Arabic (CP-1256) - + 正在重新索引歌曲... - Baltic (CP-1257) - + Arabic (CP-1256) + 阿拉伯文(CP-1256) - Central European (CP-1250) - + Baltic (CP-1257) + 波罗的海文 (CP-1257) - Cyrillic (CP-1251) - + Central European (CP-1250) + 中欧(CP-1250) - Greek (CP-1253) - + Cyrillic (CP-1251) + 西里尔文 (CP-1251) - Hebrew (CP-1255) - + Greek (CP-1253) + 希腊文 (CP-1253) - Japanese (CP-932) - + Hebrew (CP-1255) + 希伯来文 (CP-1225) - Korean (CP-949) - + Japanese (CP-932) + 日文 (CP-932) - Simplified Chinese (CP-936) - + Korean (CP-949) + 韩文 (CP-949) - Thai (CP-874) - + Simplified Chinese (CP-936) + 简体中文(CP-936) - Traditional Chinese (CP-950) - + Thai (CP-874) + 泰文(CP-874) - Turkish (CP-1254) - + Traditional Chinese (CP-950) + 繁体中文(CP-950) - Vietnam (CP-1258) - + Turkish (CP-1254) + 土耳其文 (CP-1254) + Vietnam (CP-1258) + 越南文 (CP-1258) + + + Western European (CP-1252) - + 西欧 (CP-1252) - + Character Encoding - + 字符编码 - + The codepage setting is responsible for the correct character representation. Usually you are fine with the preselected choice. - + 编码设定负责正确的字符表示。 +通常您会满意预选的设定。 - + Please choose the character encoding. The encoding is responsible for the correct character representation. - + 请选择字符编码。 +该编码负责正确的字符表示。 - + Song name singular - + 歌曲 - + Songs name plural - + 歌曲 - + Songs container title - + 歌曲 - + Exports songs using the export wizard. - - - - - Add a new song. - - - - - Edit the selected song. - - - - - Delete the selected song. - + 使用导出向导来导出歌曲。 - Preview the selected song. - + Add a new song. + 新增一首歌曲。 - Send the selected song live. - + Edit the selected song. + 编辑选中的歌曲。 + Delete the selected song. + 删除选中的歌曲。 + + + + Preview the selected song. + 预览选中的歌曲。 + + + + Send the selected song live. + 将选中的歌曲发送到现场 + + + Add the selected song to the service. - + 添加选中的歌曲道敬拜仪式 + + + + Reindexing songs + 重新索引歌曲 SongsPlugin.AuthorsForm - + Author Maintenance - + 作者维护 - + Display name: - + 显示名称: - + First name: - + 名: - + Last name: - + 姓: - + You need to type in the first name of the author. - + 您需要输入作者的名。 - + You need to type in the last name of the author. - + 您需要输入作者的姓。 - + You have not set a display name for the author, combine the first and last names? - + 您尚未设定作者的显示名称,是否将姓名组合起来? SongsPlugin.CCLIFileImport - + The file does not have a valid extension. - + 此文件没有有效的扩展名。 SongsPlugin.EasyWorshipSongImport - + Administered by %s - + 由 %s 管理 - + [above are Song Tags with notes imported from EasyWorship] - + +[以上是从EasyWorship导入的歌曲标签] SongsPlugin.EditBibleForm - + Meta Data - + Meta数据 - + Custom Book Names - + 自定义书卷名 SongsPlugin.EditSongForm - + Song Editor - + 歌曲编辑器 - + &Title: - + 标题(T): - + Alt&ernate title: - + 副标题(E): - + &Lyrics: - + 歌词(L): - + &Verse order: - + 段落顺序(V): - + Ed&it All - + 编辑所有(I) - + Title && Lyrics - + 标题歌词 - + &Add to Song - + 添加到歌曲(A) - + &Remove - + 移除(R) - + &Manage Authors, Topics, Song Books - + 管理作者,题目,曲集(M) - + A&dd to Song - + 添加到歌曲(D) - + R&emove - + 移除(E) - + Book: - + 曲集: - + Number: - + 曲号: - + Authors, Topics && Song Book - + 作者,题目 曲集 - + New &Theme - + 新建主题(T) - + Copyright Information - + 版权信息 - + Comments - + 评论 - + Theme, Copyright Info && Comments - + 主题,版权信息 评论 - + Add Author - + 添加作者 - + This author does not exist, do you want to add them? - + 该作者名称不存在,您希望加入他们吗? - + This author is already in the list. - + 该作者已在列表上。 - + You have not selected a valid author. Either select an author from the list, or type in a new author and click the "Add Author to Song" button to add the new author. - + 您没有选择有效的作者。从列表中选择一个作者,或者输入一个新作者名称并点击"将作者添加到歌曲"按钮来新增一个作者名。 - + Add Topic - + 添加题目 - + This topic does not exist, do you want to add it? - + 该题目不存在,您想要添加它吗? - + This topic is already in the list. - + 该题目已在列表上 - + You have not selected a valid topic. Either select a topic from the list, or type in a new topic and click the "Add Topic to Song" button to add the new topic. - + 您还没有选择一个有效的题目。从列表中选择一个题目,或是输入一个新题目并点击"将题目添加到歌曲"按钮来添加一个新题目。 - + You need to type in a song title. - + 您需要为歌曲输入标题。 - + You need to type in at least one verse. - + 您需要输入至少一段歌词。 - + The verse order is invalid. There is no verse corresponding to %s. Valid entries are %s. - + 歌词顺序无效。没有歌词与%s关联。有效的入口是%s。 - + Add Book - + 添加曲集 - + This song book does not exist, do you want to add it? - + 该曲集并不存在,您希望添加吗? - + You need to have an author for this song. - + 您需要给这首歌曲一个作者。 - - You need to type some text in to the verse. - - - - + Linked Audio - + 关联的音频 - + Add &File(s) - + 添加文件(F) - + Add &Media - + 添加媒体(M) - + Remove &All - + 移除所有(A) - + Open File(s) - + 打开文件 - + <strong>Warning:</strong> Not all of the verses are in use. - + <strong>警告:</strong> 没有使用所有歌词。 - + The verse order is invalid. There are no verses corresponding to %s. Valid entries are %s. - + 歌词顺序无效。没有歌词与%s关联。有效的入口是%s。 SongsPlugin.EditVerseForm - + Edit Verse - + 编辑段落 - + &Verse type: - + 段落类型(V): - + &Insert - + 插入(I) - + Split a slide into two by inserting a verse splitter. - + 添加一个歌词分隔符来拆分一张幻灯片。 SongsPlugin.ExportWizardForm - + Song Export Wizard - + 歌曲导出向导 - + Select Songs - + 选择歌曲 - + Check the songs you want to export. - + 选择您希望导出的歌曲。 - + Uncheck All - + 全不选 - + Check All - + 全选 - + Select Directory - + 选择目录 - + Directory: - + 目录: - + Exporting - + 正在导出 - + Please wait while your songs are exported. - + 请稍等,您的歌曲正在导出。 - + You need to add at least one Song to export. - + 您需要添加至少一首歌曲来导出。 - + No Save Location specified - + 未指定保存位置 - + Starting export... - + 正在开始导出... - + You need to specify a directory. - + 您需要指定一个目录 - + Select Destination Folder - + 选择目标文件夹 - + Select the directory where you want the songs to be saved. - + 选择您希望保存歌曲的目录 - + This wizard will help to export your songs to the open and free <strong>OpenLyrics</strong> worship song format. - + 这个向导将帮助导出您的歌曲为开放和免费的<strong>OpenLyrics</strong>崇拜歌曲格式。 SongsPlugin.ImportWizardForm - + Select Document/Presentation Files - + 选择文档/演示文件 - + Song Import Wizard - + 歌曲导入向导 - + This wizard will help you to import songs from a variety of formats. Click the next button below to start the process by selecting a format to import from. - + 这个向导将帮助您导入不同格式的歌曲。点击下面的下一步选择导入格式来开始这个过程。 - + Generic Document/Presentation - + 通用文档/演示 - + Add Files... - + 添加文件... - + Remove File(s) - + 移除文件 - + Please wait while your songs are imported. - + 请等待,您的歌曲正在被导入。 - + OpenLP 2.0 Databases - + OpenLP 2.0 数据库 - + openlp.org v1.x Databases - + openlp.org v1.x 数据库 - + Words Of Worship Song Files - + Word Of Worship 歌曲文件 - + Songs Of Fellowship Song Files - + Songs Of Fellowship 歌曲文件 - + SongBeamer Files - + SongBeamer 文件 - + SongShow Plus Song Files - + SongShow Plus 歌曲文件 - + Foilpresenter Song Files - + Foilpresenter 歌曲文件 - + Copy - + 复制 - + Save to File - + 保存到文件 - + The Songs of Fellowship importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + 由于OpenLP无法访问OpenOffice或LibreOffice,Songs of Fellowship导入器已被禁用。 - + The generic document/presentation importer has been disabled because OpenLP cannot access OpenOffice or LibreOffice. - + 由于OpenLP无法访问OpenOffice或LibreOffice,通用文档/演示导入器已被禁用。 - + OpenLyrics or OpenLP 2.0 Exported Song - + OpenLyrics 或 OpenLP 2.0 导出的歌曲 - + OpenLyrics Files - + OpenLyrics文件 - + CCLI SongSelect Files - + CCLI SongSelect 文件 - + EasySlides XML File - + EasySlides XML 文件 - + EasyWorship Song Database - + EasyWorship 歌曲数据库 - + DreamBeam Song Files - + DreamBeam 歌曲文件 - + You need to specify a valid PowerSong 1.0 database folder. - + 您需要指定一个有效的PowerSong 1.0 数据库文件夹。 - + ZionWorx (CSV) - + ZionWorx (CSV) - + First convert your ZionWorx database to a CSV text file, as explained in the <a href="http://manual.openlp.org/songs.html#importing-from-zionworx">User Manual</a>. - + 首先将您的ZionWorx数据库转换为一个CSV文本文件,如<a href="http://manual.openlp.org/songs.html#importing-from-zionworx">用户指南</a>所解释的。 - + SundayPlus Song Files - + SundayPlus 歌曲文件 - + This importer has been disabled. - + 这个导入器已被禁用。 - + MediaShout Database - + MediaShout 数据库 - + The MediaShout importer is only supported on Windows. It has been disabled due to a missing Python module. If you want to use this importer, you will need to install the "pyodbc" module. - + MediaShout仅支持Windows。由于缺少Python模块它已被禁用。如果您想使用这个导入器,您需要安装"pyodbc"模块。 - + SongPro Text Files - + SongPro 文本文件 - + SongPro (Export File) - + SongPro (导出文件) - + In SongPro, export your songs using the File -> Export menu - + 在SongPro里, 使用 文件->导出 菜单来导出您的歌曲 SongsPlugin.MediaFilesForm - + Select Media File(s) - + 选择媒体文件 - + Select one or more audio files from the list below, and click OK to import them into this song. - + 在以下列表中选择一个或多个音频文件,并点击OK来将它们导入到这首歌曲。 SongsPlugin.MediaItem - + Titles - + 标题 - + Lyrics - + 歌词 - + CCLI License: - + CCLI许可: - + Entire Song - + 整首歌曲 - + Are you sure you want to delete the %n selected song(s)? - + + %n + - + Maintain the lists of authors, topics and books. - + 维护作者,题目和曲集列表 - + copy For song cloning - + 建立歌曲副本 - + Search Titles... - + 搜索标题... - + Search Entire Song... - + 搜索整首歌曲... - + Search Lyrics... - + 搜索歌词... - + Search Authors... - + 搜索作者 - + Search Song Books... - + 搜索曲集... SongsPlugin.MediaShoutImport - + Unable to open the MediaShout database. - + 无法打开MediaShout数据库。 SongsPlugin.OpenLP1SongImport - + Not a valid openlp.org 1.x song database. - + 不是一个有效的openlp.org 1.x歌曲数据库 SongsPlugin.OpenLPSongImport - + Not a valid OpenLP 2.0 song database. - + 不是一个有效的OpenLP 2.0歌曲数据库 SongsPlugin.OpenLyricsExport - + Exporting "%s"... - + 正在导出"%s"... SongsPlugin.PowerSongImport - + No songs to import. - + 没有歌曲可以导入。 - + Verses not found. Missing "PART" header. - + 未找到歌词。缺少 "PART" 标头。 + + + + No %s files found. + 未找到%s文件 + + + + Invalid %s file. Unexpected byte value. + 无效的%s文件。非预期的编码值。 + + + + Invalid %s file. Missing "TITLE" header. + 无效的%s文件。缺少 "TITLE" 标头。 + + + + Invalid %s file. Missing "COPYRIGHTLINE" header. + 无效的%s文件。缺少 "COPYRIGHTLINE" 标头。 SongsPlugin.SongBookForm - + Song Book Maintenance - - - - - &Name: - + 歌曲曲集维护 - &Publisher: - + &Name: + 名称(N): - + + &Publisher: + 出版商(P): + + + You need to type in a name for the book. - + 您需要为曲集输入一个名称 SongsPlugin.SongExportForm - + Your song export failed. - + 您的歌曲导出失败。 - + Finished export. To import these files use the <strong>OpenLyrics</strong> importer. - + 导出完成。要导入这些文件,使用<strong>OpenLyrics</strong>导入器 SongsPlugin.SongImport - + copyright - + 版权 - + The following songs could not be imported: - + 无法导入以下歌曲: - + Cannot access OpenOffice or LibreOffice - + 无法访问OpenOffice或LibreOffice - + Unable to open file - + 无法打开文件 - + File not found - + 找不到文件 SongsPlugin.SongMaintenanceForm - + Could not add your author. - + 无法添加您的作者名称 - + This author already exists. - + 该作者名称已存在 - + Could not add your topic. - + 无法加入您的题目 - + This topic already exists. - + 该题目已存在 - + Could not add your book. - + 无法加入您的书卷 - + This book already exists. - + 该书卷已存在 - + Could not save your changes. - + 无法保存改动。 - + Could not save your modified author, because the author already exists. - + 无法保存您改动的作者名,因为该作者名已存在 - + Could not save your modified topic, because it already exists. - + 无法保存您改动的题目,因为它已经存在了。 - + Delete Author - + 删除作者名 - + Are you sure you want to delete the selected author? - + 你真的要删除选中的作者名吗? - + This author cannot be deleted, they are currently assigned to at least one song. - + 该作者名无法被删除,它目前至少被指派给了一首歌。 - + Delete Topic - + 删除题目 - + Are you sure you want to delete the selected topic? - + 您确定要删除选中的题目吗? - + This topic cannot be deleted, it is currently assigned to at least one song. - + 该题目无法被删除,它目前已被指派给了至少一首歌。 - + Delete Book - + 删除曲集 - + Are you sure you want to delete the selected book? - + 您真的要删除选中的曲集吗? - + This book cannot be deleted, it is currently assigned to at least one song. - + 无法删除这个曲集,它当前被指派给至少一首歌曲。 - + The author %s already exists. Would you like to make songs with author %s use the existing author %s? - + 作者名%s已存在。您想取消创建作者名%s,并用已存在的作者名%s制作歌曲吗? - + The topic %s already exists. Would you like to make songs with topic %s use the existing topic %s? - + 题目%s已存在。您想取消创建题目%s,并用已存在的题目%s制作歌曲吗? - + The book %s already exists. Would you like to make songs with book %s use the existing book %s? - + 曲集%s已存在。您想取消创建曲集%s,并用已存在的曲集%s制作歌曲吗? SongsPlugin.SongsTab - + Songs Mode - + 歌曲模式 - + Enable search as you type - + 启用即敲即搜 - + Display verses on live tool bar - + 在现场工具栏中显示歌词 - + Update service from song edit - + 从音乐编辑中更新敬拜仪式 - + Import missing songs from service files - + 从敬拜仪式文件中导入丢失的歌曲 SongsPlugin.TopicsForm - + Topic Maintenance - + 题目维护 - + Topic name: - + 题目名称: - + You need to type in a topic name. - + 您需要输入一个题目名称 SongsPlugin.VerseType - - - Verse - - - Chorus - + Verse + 主歌 - Bridge - + Chorus + 副歌 - Pre-Chorus - + Bridge + 桥段 - Intro - + Pre-Chorus + 导歌 - Ending - + Intro + 前奏 + Ending + 结束 + + + Other - + 其它 SongsPlugin.ZionWorxImport - + Error reading CSV file. - + 读取CSV文件发生错误。 - + File not valid ZionWorx CSV format. - + 文件不为有效的ZionWorx CSV格式。 + + + + Line %d: %s + 行 %d: %s + + + + Decoding error: %s + 解码错误: %s + + + + Record %d + 录制 %d - \ No newline at end of file + diff --git a/resources/images/media_audio.png b/resources/images/media_audio.png new file mode 100644 index 000000000..f05a5bf55 Binary files /dev/null and b/resources/images/media_audio.png differ diff --git a/resources/images/media_video.png b/resources/images/media_video.png new file mode 100644 index 000000000..6e7340a13 Binary files /dev/null and b/resources/images/media_video.png differ diff --git a/resources/images/openlp-2.qrc b/resources/images/openlp-2.qrc index 128042bf0..689b44197 100644 --- a/resources/images/openlp-2.qrc +++ b/resources/images/openlp-2.qrc @@ -80,8 +80,8 @@ exception.png - openlp-about-logo.png openlp-splash-screen.png + openlp-about-logo.png import_selectall.png @@ -130,7 +130,9 @@ media_time.png media_stop.png - image_clapperboard.png + media_audio.png + media_video.png + slidecontroller_multimedia.png messagebox_critical.png diff --git a/resources/images/openlp-about-logo.png b/resources/images/openlp-about-logo.png index 6b689c533..a20534362 100644 Binary files a/resources/images/openlp-about-logo.png and b/resources/images/openlp-about-logo.png differ diff --git a/resources/images/openlp-about-logo.svg b/resources/images/openlp-about-logo.svg index d378d04c1..d4f9c2dbe 100644 --- a/resources/images/openlp-about-logo.svg +++ b/resources/images/openlp-about-logo.svg @@ -14,15 +14,26 @@ height="85" id="svg4363" sodipodi:version="0.32" - inkscape:version="0.47pre4 r22446" + inkscape:version="0.48.3.1 r9886" version="1.0" - sodipodi:docname="openlp-about-logo.svg" + sodipodi:docname="openlp-website-logo.svg" inkscape:output_extension="org.inkscape.output.svg.inkscape" - inkscape:export-filename="/home/raoul/Projects/openlp/bitsandbobs/resources/images/openlp-about-logo.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90"> + inkscape:export-filename="/home/raoul/Projects/OpenLP/bug-1069109/resources/images/openlp-about-logo.png" + inkscape:export-xdpi="91.058823" + inkscape:export-ydpi="91.058823"> + + + + - - - - - @@ -145,6 +128,35 @@ stdDeviation="4.333215" id="feGaussianBlur5021" /> + + + @@ -183,121 +195,129 @@ inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1"> + + + + + + id="g4991" + transform="matrix(0.5913526,0,0,0.5913526,-290.02996,-588.79058)" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;filter:url(#filter5019)"> + inkscape:connector-curvature="0" + id="path4993" + d="m 801.444,1038.553 15.617,0 c 18.862,0 28.496,10.444 28.496,25.961 0,15.212 -9.634,25.859 -28.496,25.859 l -8.316,0 0,17.139 -7.301,0 0,-68.959 0,0 z m 15.211,45.431 c 15.517,0 21.297,-8.112 21.297,-19.471 0,-11.359 -5.78,-19.471 -21.297,-19.471 l -7.91,0 0,38.941 7.91,0 0,10e-4 z" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + inkscape:connector-curvature="0" + id="path4995" + d="m 852.858,1038.553 41.984,0 0,6.49 -34.684,0 0,32.35 30.931,0 0,6.389 -30.931,0 0,17.24 36.103,0 0,6.49 -43.403,0 0,-68.959 z" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + inkscape:connector-curvature="0" + id="path4997" + d="m 913.197,1059.545 c -1.927,-2.333 -4.767,-6.39 -4.767,-6.39 0,0 0.608,4.868 0.608,7.81 l 0,46.547 -6.896,0 0,-69.669 1.217,0 41.173,48.677 c 1.927,2.333 4.259,5.163 4.259,5.163 0,0 0,-3.642 0,-6.582 l 0,-46.548 6.795,0 0,69.669 -1.217,0 -41.172,-48.677 z" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + inkscape:connector-curvature="0" + id="path4999" + d="m 677.015,1070.032 c 0,-34.836 26.253,-58.564 58.564,-58.564 32.311,0 58.564,23.729 58.564,58.564 0,34.835 -26.253,58.564 -58.564,58.564 -32.311,0 -58.564,-23.728 -58.564,-58.564 z m 110.06,0 c 0,-29.955 -22.045,-52.338 -51.496,-52.338 -29.451,0 -51.496,22.383 -51.496,52.338 0,29.956 22.045,52.338 51.496,52.338 29.451,0 51.496,-22.382 51.496,-52.338 z" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + inkscape:connector-curvature="0" + id="path5001" + d="m 967.521,1012.814 23.561,0 0,93.737 51.833,0 0,20.699 -75.394,0 0,-114.436 z" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.69103849;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + - - - - - - - - - - - - - - - - + style="fill:url(#linearGradient4082);fill-opacity:1.0;stroke:#ffffff;stroke-width:0.84551924000000001;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + transform="matrix(0.5913526,0,0,0.5913526,-290.02996,-590.79058)" + id="g5005" + inkscape:export-xdpi="76.235291" + inkscape:export-ydpi="76.235291"> + + + + + + diff --git a/resources/images/openlp.org-icon-32.bmp b/resources/images/openlp.org-icon-32.bmp deleted file mode 100644 index be77f45b7..000000000 Binary files a/resources/images/openlp.org-icon-32.bmp and /dev/null differ diff --git a/resources/images/slidecontroller_multimedia.png b/resources/images/slidecontroller_multimedia.png new file mode 100644 index 000000000..55f63d880 Binary files /dev/null and b/resources/images/slidecontroller_multimedia.png differ diff --git a/resources/pyinstaller/hook-openlp.core.ui.media.py b/resources/pyinstaller/hook-openlp.core.ui.media.py index 08609441b..522c3349c 100644 --- a/resources/pyinstaller/hook-openlp.core.ui.media.py +++ b/resources/pyinstaller/hook-openlp.core.ui.media.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py index 100d9e1a0..801999c68 100644 --- a/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py +++ b/resources/pyinstaller/hook-openlp.plugins.presentations.presentationplugin.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/pyinstaller/hook-openlp.py b/resources/pyinstaller/hook-openlp.py index 7d0482f7c..eebfbfb1a 100644 --- a/resources/pyinstaller/hook-openlp.py +++ b/resources/pyinstaller/hook-openlp.py @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/resources/videos/AspectRatioTest-16-9-ana.h264.mp4 b/resources/videos/AspectRatioTest-16-9-ana.h264.mp4 deleted file mode 100644 index 18d2674f6..000000000 Binary files a/resources/videos/AspectRatioTest-16-9-ana.h264.mp4 and /dev/null differ diff --git a/resources/videos/AspectRatioTest-16-9-squ.h264.mp4 b/resources/videos/AspectRatioTest-16-9-squ.h264.mp4 deleted file mode 100644 index 007e0d92c..000000000 Binary files a/resources/videos/AspectRatioTest-16-9-squ.h264.mp4 and /dev/null differ diff --git a/resources/videos/AspectRatioTest-16-9-squ.xvid.avi b/resources/videos/AspectRatioTest-16-9-squ.xvid.avi deleted file mode 100644 index 019b2cc4c..000000000 Binary files a/resources/videos/AspectRatioTest-16-9-squ.xvid.avi and /dev/null differ diff --git a/resources/videos/AspectRatioTest-4-3-ana.h264.mp4 b/resources/videos/AspectRatioTest-4-3-ana.h264.mp4 deleted file mode 100644 index aa65750b8..000000000 Binary files a/resources/videos/AspectRatioTest-4-3-ana.h264.mp4 and /dev/null differ diff --git a/resources/videos/AspectRatioTest-4-3-squ.h264.mp4 b/resources/videos/AspectRatioTest-4-3-squ.h264.mp4 deleted file mode 100644 index 425734a81..000000000 Binary files a/resources/videos/AspectRatioTest-4-3-squ.h264.mp4 and /dev/null differ diff --git a/resources/videos/AspectRatioTest-4-3-squ.xvid.avi b/resources/videos/AspectRatioTest-4-3-squ.xvid.avi deleted file mode 100644 index 1414b217a..000000000 Binary files a/resources/videos/AspectRatioTest-4-3-squ.xvid.avi and /dev/null differ diff --git a/resources/videos/AspectRatioTest-rand-squ.h264.mp4 b/resources/videos/AspectRatioTest-rand-squ.h264.mp4 deleted file mode 100644 index 943a7e379..000000000 Binary files a/resources/videos/AspectRatioTest-rand-squ.h264.mp4 and /dev/null differ diff --git a/resources/videos/left-720.png b/resources/videos/left-720.png deleted file mode 100644 index fe4a6aa91..000000000 Binary files a/resources/videos/left-720.png and /dev/null differ diff --git a/resources/videos/normal-720.png b/resources/videos/normal-720.png deleted file mode 100644 index ff11444ec..000000000 Binary files a/resources/videos/normal-720.png and /dev/null differ diff --git a/resources/videos/right-720.png b/resources/videos/right-720.png deleted file mode 100644 index 7347f330f..000000000 Binary files a/resources/videos/right-720.png and /dev/null differ diff --git a/resources/videos/synctest.24.avs b/resources/videos/synctest.24.avs deleted file mode 100644 index fcf29f3a0..000000000 --- a/resources/videos/synctest.24.avs +++ /dev/null @@ -1,6 +0,0 @@ -# audio/video sync test -# by: Andrew Lok -# 2009-06-22 - -Import("synctest.avsi") -SyncClip(23.976, 44100) diff --git a/resources/videos/synctest.24.muxed.avi b/resources/videos/synctest.24.muxed.avi deleted file mode 100644 index 21daf5273..000000000 Binary files a/resources/videos/synctest.24.muxed.avi and /dev/null differ diff --git a/resources/videos/synctest.24.muxed.mp4 b/resources/videos/synctest.24.muxed.mp4 deleted file mode 100644 index 32936d3d9..000000000 Binary files a/resources/videos/synctest.24.muxed.mp4 and /dev/null differ diff --git a/resources/videos/synctest.25.avs b/resources/videos/synctest.25.avs deleted file mode 100644 index bcb2eab7a..000000000 --- a/resources/videos/synctest.25.avs +++ /dev/null @@ -1,6 +0,0 @@ -# audio/video sync test -# by: Andrew Lok -# 2009-06-22 - -Import("synctest.avsi") -SyncClip(25, 48000) diff --git a/resources/videos/synctest.25.muxed.avi b/resources/videos/synctest.25.muxed.avi deleted file mode 100644 index 5fc863a1a..000000000 Binary files a/resources/videos/synctest.25.muxed.avi and /dev/null differ diff --git a/resources/videos/synctest.30.avs b/resources/videos/synctest.30.avs deleted file mode 100644 index 96c2418c3..000000000 --- a/resources/videos/synctest.30.avs +++ /dev/null @@ -1,6 +0,0 @@ -# audio/video sync test -# by: Andrew Lok -# 2009-06-22 - -Import("synctest.avsi") -SyncClip(29.97, 32000) diff --git a/resources/videos/synctest.30.muxed.avi b/resources/videos/synctest.30.muxed.avi deleted file mode 100644 index c79fedc99..000000000 Binary files a/resources/videos/synctest.30.muxed.avi and /dev/null differ diff --git a/resources/videos/synctest.30.small.avs b/resources/videos/synctest.30.small.avs deleted file mode 100644 index 27675dfaf..000000000 --- a/resources/videos/synctest.30.small.avs +++ /dev/null @@ -1,7 +0,0 @@ -# audio/video sync test -# by: Andrew Lok -# 2009-06-22 - -Import("synctest.avsi") -SyncClip(29.97, 22050) -BicubicResize(640,360) diff --git a/resources/videos/synctest.30.small.muxed.avi b/resources/videos/synctest.30.small.muxed.avi deleted file mode 100644 index 479443b32..000000000 Binary files a/resources/videos/synctest.30.small.muxed.avi and /dev/null differ diff --git a/resources/videos/synctest.avsi b/resources/videos/synctest.avsi deleted file mode 100644 index 9f7c8fc8d..000000000 --- a/resources/videos/synctest.avsi +++ /dev/null @@ -1,47 +0,0 @@ -# audio/video sync test -# by: Andrew Lok -# 2009-06-22 - -# -# This code is part of OpenLP's testsuite -# OpenLP - Open Source Lyrics Projection -# Copyright (c) 2009 Andrew Lok -# -# This program is free software; you can redistribute it and/or modify it under -# the terms of the GNU General Public License as published by the Free Software -# Foundation; version 2 of the License. -# -# This program 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 General Public License for more details. -# -# You should have received a copy of the GNU General Public License along with -# this program; if not, write to the Free Software Foundation, Inc., 59 Temple -# Place, Suite 330, Boston, MA 02111-1307 USA -# - -function SyncClip(float framerate, int audiorate) -{ - frames=30 - seconds=frames/framerate - - silence = Tone(seconds, 440, audiorate, 1, "silence", 1.0) - tone = Tone(seconds, 440, audiorate, 1, "sine", 1.0) - - silence2 = MonoToStereo(silence, silence) - left = MonoToStereo(tone, silence) - right = MonoToStereo(silence, tone) - - leftvid=ImageSource("left-720.png",end = frames, fps=framerate, use_DevIL=true) - rightvid=ImageSource("right-720.png",end = frames, fps=framerate, use_DevIL=true) - normalvid=ImageSource("normal-720.png",end = frames, fps=framerate, use_DevIL=true) - - cycle = AudioDub(leftvid,left) ++ AudioDub(normalvid,silence2) ++ AudioDub(rightvid,right) ++ AudioDub(normalvid,silence2) - - final = loop(cycle,times=5) - - final = final.ConvertToYV12() - final = final.info() - - return final -} diff --git a/scripts/check_dependencies.py b/scripts/check_dependencies.py index e81fd2a3b..79739f50f 100755 --- a/scripts/check_dependencies.py +++ b/scripts/check_dependencies.py @@ -5,13 +5,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/generate_resources.sh b/scripts/generate_resources.sh index a555454c6..b6630f997 100755 --- a/scripts/generate_resources.sh +++ b/scripts/generate_resources.sh @@ -4,13 +4,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # -# Portions copyright (c) 2008-2011 Tim Bentley, Gerald Britton, Jonathan # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/openlp-remoteclient.py b/scripts/openlp-remoteclient.py index cc4abb339..db1532800 100644 --- a/scripts/openlp-remoteclient.py +++ b/scripts/openlp-remoteclient.py @@ -5,13 +5,14 @@ ############################################################################### # OpenLP - Open Source Lyrics Projection # # --------------------------------------------------------------------------- # -# Copyright (c) 2008-2011 Raoul Snyman # +# Copyright (c) 2008-2012 Raoul Snyman # # Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # # Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # -# Meinert Jordan, Armin Köhler, Edwin Lunando, Joshua Miller, Stevan Pettit, # -# Andreas Preikschat, Mattias Põldaru, Christian Richter, Philip Ridout, # -# Simon Scudder, Jeffrey Smith, Maikel Stuivenberg, Martin Thompson, Jon # -# Tibble, Dave Warnock, Frode Woldsund # +# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # +# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # +# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # +# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # +# Frode Woldsund, Martin Zibricky # # --------------------------------------------------------------------------- # # This program is free software; you can redistribute it and/or modify it # # under the terms of the GNU General Public License as published by the Free # diff --git a/scripts/resources.patch b/scripts/resources.patch index 8fa2edbe1..98897bef5 100644 --- a/scripts/resources.patch +++ b/scripts/resources.patch @@ -1,6 +1,6 @@ --- openlp/core/resources.py.old Mon Jun 21 23:16:19 2010 +++ openlp/core/resources.py Mon Jun 21 23:27:48 2010 -@@ -1,10 +1,33 @@ +@@ -1,10 +1,35 @@ # -*- coding: utf-8 -*- +# vim: autoindent shiftwidth=4 expandtab textwidth=80 tabstop=4 softtabstop=4 @@ -14,10 +14,12 @@ +# --------------------------------------------------------------------------- # +# Copyright (c) 2008-2012 Raoul Snyman # +# Portions copyright (c) 2008-2012 Tim Bentley, Gerald Britton, Jonathan # -+# Corwin, Michael Gorven, Scott Guerrieri, Matthias Hub, Meinert Jordan, # -+# Armin Köhler, Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias # -+# Põldaru, Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # -+# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Frode Woldsund # ++# Corwin, Samuel Findlay, Michael Gorven, Scott Guerrieri, Matthias Hub, # ++# Meinert Jordan, Armin Köhler, Erik Lundin, Edwin Lunando, Brian T. Meyer. # ++# Joshua Miller, Stevan Pettit, Andreas Preikschat, Mattias Põldaru, # ++# Christian Richter, Philip Ridout, Simon Scudder, Jeffrey Smith, # ++# Maikel Stuivenberg, Martin Thompson, Jon Tibble, Dave Warnock, # ++# Frode Woldsund, Martin Zibricky # +# --------------------------------------------------------------------------- # +# This program is free software; you can redistribute it and/or modify it # +# under the terms of the GNU General Public License as published by the Free #